Added a separate ctx pointer for wpa_msg() calls in WPA supp
[mech_eap.git] / wpa_supplicant / ibss_rsn.c
1 /*
2  * wpa_supplicant - IBSS RSN
3  * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "includes.h"
16
17 #include "common.h"
18 #include "l2_packet/l2_packet.h"
19 #include "wpa_supplicant_i.h"
20 #include "wpa.h"
21 #include "wpa_ie.h"
22 #include "../hostapd/wpa.h"
23 #include "ibss_rsn.h"
24
25
26 static void ibss_rsn_free(struct ibss_rsn_peer *peer)
27 {
28         wpa_auth_sta_deinit(peer->auth);
29         wpa_sm_deinit(peer->supp);
30         os_free(peer);
31 }
32
33
34 static void supp_set_state(void *ctx, wpa_states state)
35 {
36         struct ibss_rsn_peer *peer = ctx;
37         peer->supp_state = state;
38 }
39
40
41 static int supp_ether_send(void *ctx, const u8 *dest, u16 proto, const u8 *buf,
42                            size_t len)
43 {
44         struct ibss_rsn_peer *peer = ctx;
45         struct wpa_supplicant *wpa_s = peer->ibss_rsn->wpa_s;
46
47         wpa_printf(MSG_DEBUG, "SUPP: %s(dest=" MACSTR " proto=0x%04x "
48                    "len=%lu)",
49                    __func__, MAC2STR(dest), proto, (unsigned long) len);
50
51         if (wpa_s->l2)
52                 return l2_packet_send(wpa_s->l2, dest, proto, buf, len);
53
54         return wpa_drv_send_eapol(wpa_s, dest, proto, buf, len);
55 }
56
57
58 static u8 * supp_alloc_eapol(void *ctx, u8 type, const void *data,
59                              u16 data_len, size_t *msg_len, void **data_pos)
60 {
61         struct ieee802_1x_hdr *hdr;
62
63         wpa_printf(MSG_DEBUG, "SUPP: %s(type=%d data_len=%d)",
64                    __func__, type, data_len);
65
66         *msg_len = sizeof(*hdr) + data_len;
67         hdr = os_malloc(*msg_len);
68         if (hdr == NULL)
69                 return NULL;
70
71         hdr->version = 2;
72         hdr->type = type;
73         hdr->length = host_to_be16(data_len);
74
75         if (data)
76                 os_memcpy(hdr + 1, data, data_len);
77         else
78                 os_memset(hdr + 1, 0, data_len);
79
80         if (data_pos)
81                 *data_pos = hdr + 1;
82
83         return (u8 *) hdr;
84 }
85
86
87 static int supp_get_beacon_ie(void *ctx)
88 {
89         struct ibss_rsn_peer *peer = ctx;
90
91         wpa_printf(MSG_DEBUG, "SUPP: %s", __func__);
92         /* TODO: get correct RSN IE */
93         return wpa_sm_set_ap_rsn_ie(peer->supp,
94                                     (u8 *) "\x30\x14\x01\x00"
95                                     "\x00\x0f\xac\x04"
96                                     "\x01\x00\x00\x0f\xac\x04"
97                                     "\x01\x00\x00\x0f\xac\x02"
98                                     "\x00\x00", 22);
99 }
100
101
102 static int supp_set_key(void *ctx, wpa_alg alg,
103                         const u8 *addr, int key_idx, int set_tx,
104                         const u8 *seq, size_t seq_len,
105                         const u8 *key, size_t key_len)
106 {
107         wpa_printf(MSG_DEBUG, "SUPP: %s(alg=%d addr=" MACSTR " key_idx=%d "
108                    "set_tx=%d)",
109                    __func__, alg, MAC2STR(addr), key_idx, set_tx);
110         wpa_hexdump(MSG_DEBUG, "SUPP: set_key - seq", seq, seq_len);
111         wpa_hexdump(MSG_DEBUG, "SUPP: set_key - key", key, key_len);
112         return 0;
113 }
114
115
116 static void * supp_get_network_ctx(void *ctx)
117 {
118         struct ibss_rsn_peer *peer = ctx;
119         return wpa_supplicant_get_ssid(peer->ibss_rsn->wpa_s);
120 }
121
122
123 static int supp_mlme_setprotection(void *ctx, const u8 *addr,
124                                    int protection_type, int key_type)
125 {
126         wpa_printf(MSG_DEBUG, "SUPP: %s(addr=" MACSTR " protection_type=%d "
127                    "key_type=%d)",
128                    __func__, MAC2STR(addr), protection_type, key_type);
129         return 0;
130 }
131
132
133 static void supp_cancel_auth_timeout(void *ctx)
134 {
135         wpa_printf(MSG_DEBUG, "SUPP: %s", __func__);
136 }
137
138
139 int ibss_rsn_supp_init(struct ibss_rsn_peer *peer, const u8 *own_addr,
140                        const u8 *psk)
141 {
142         struct wpa_sm_ctx *ctx = os_zalloc(sizeof(*ctx));
143         if (ctx == NULL)
144                 return -1;
145
146         ctx->ctx = peer;
147         ctx->msg_ctx = peer->ibss_rsn->wpa_s;
148         ctx->set_state = supp_set_state;
149         ctx->ether_send = supp_ether_send;
150         ctx->get_beacon_ie = supp_get_beacon_ie;
151         ctx->alloc_eapol = supp_alloc_eapol;
152         ctx->set_key = supp_set_key;
153         ctx->get_network_ctx = supp_get_network_ctx;
154         ctx->mlme_setprotection = supp_mlme_setprotection;
155         ctx->cancel_auth_timeout = supp_cancel_auth_timeout;
156         peer->supp = wpa_sm_init(ctx);
157         if (peer->supp == NULL) {
158                 wpa_printf(MSG_DEBUG, "SUPP: wpa_sm_init() failed");
159                 return -1;
160         }
161
162         wpa_sm_set_own_addr(peer->supp, own_addr);
163         wpa_sm_set_param(peer->supp, WPA_PARAM_RSN_ENABLED, 1);
164         wpa_sm_set_param(peer->supp, WPA_PARAM_PROTO, WPA_PROTO_RSN);
165         wpa_sm_set_param(peer->supp, WPA_PARAM_PAIRWISE, WPA_CIPHER_CCMP);
166         wpa_sm_set_param(peer->supp, WPA_PARAM_GROUP, WPA_CIPHER_CCMP);
167         wpa_sm_set_param(peer->supp, WPA_PARAM_KEY_MGMT, WPA_KEY_MGMT_PSK);
168         wpa_sm_set_pmk(peer->supp, psk, PMK_LEN);
169
170         peer->supp_ie_len = sizeof(peer->supp_ie);
171         if (wpa_sm_set_assoc_wpa_ie_default(peer->supp, peer->supp_ie,
172                                             &peer->supp_ie_len) < 0) {
173                 wpa_printf(MSG_DEBUG, "SUPP: wpa_sm_set_assoc_wpa_ie_default()"
174                            " failed");
175                 return -1;
176         }
177
178         wpa_sm_notify_assoc(peer->supp, peer->addr);
179
180         return 0;
181 }
182
183
184 static void auth_logger(void *ctx, const u8 *addr, logger_level level,
185                         const char *txt)
186 {
187         if (addr)
188                 wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " - %s",
189                            MAC2STR(addr), txt);
190         else
191                 wpa_printf(MSG_DEBUG, "AUTH: %s", txt);
192 }
193
194
195 static const u8 * auth_get_psk(void *ctx, const u8 *addr, const u8 *prev_psk)
196 {
197         struct ibss_rsn *ibss_rsn = ctx;
198         wpa_printf(MSG_DEBUG, "AUTH: %s (addr=" MACSTR " prev_psk=%p)",
199                    __func__, MAC2STR(addr), prev_psk);
200         if (prev_psk)
201                 return NULL;
202         return ibss_rsn->psk;
203 }
204
205
206 static int auth_send_eapol(void *ctx, const u8 *addr, const u8 *data,
207                            size_t data_len, int encrypt)
208 {
209         struct ibss_rsn *ibss_rsn = ctx;
210         struct wpa_supplicant *wpa_s = ibss_rsn->wpa_s;
211
212         wpa_printf(MSG_DEBUG, "AUTH: %s(addr=" MACSTR " data_len=%lu "
213                    "encrypt=%d)",
214                    __func__, MAC2STR(addr), (unsigned long) data_len, encrypt);
215
216         if (wpa_s->l2)
217                 return l2_packet_send(wpa_s->l2, addr, ETH_P_EAPOL, data,
218                                       data_len);
219
220         return wpa_drv_send_eapol(wpa_s, addr, ETH_P_EAPOL, data, data_len);
221 }
222
223
224 static int ibss_rsn_auth_init_group(struct ibss_rsn *ibss_rsn,
225                                     const u8 *own_addr)
226 {
227         struct wpa_auth_config conf;
228         struct wpa_auth_callbacks cb;
229
230         wpa_printf(MSG_DEBUG, "AUTH: Initializing group state machine");
231
232         os_memset(&conf, 0, sizeof(conf));
233         conf.wpa = 2;
234         conf.wpa_key_mgmt = WPA_KEY_MGMT_PSK;
235         conf.wpa_pairwise = WPA_CIPHER_CCMP;
236         conf.rsn_pairwise = WPA_CIPHER_CCMP;
237         conf.wpa_group = WPA_CIPHER_CCMP;
238         conf.eapol_version = 2;
239
240         os_memset(&cb, 0, sizeof(cb));
241         cb.ctx = ibss_rsn;
242         cb.logger = auth_logger;
243         cb.send_eapol = auth_send_eapol;
244         cb.get_psk = auth_get_psk;
245
246         ibss_rsn->auth_group = wpa_init(own_addr, &conf, &cb);
247         if (ibss_rsn->auth_group == NULL) {
248                 wpa_printf(MSG_DEBUG, "AUTH: wpa_init() failed");
249                 return -1;
250         }
251
252         return 0;
253 }
254
255
256 static int ibss_rsn_auth_init(struct ibss_rsn *ibss_rsn,
257                               struct ibss_rsn_peer *peer)
258 {
259         peer->auth = wpa_auth_sta_init(ibss_rsn->auth_group, peer->addr);
260         if (peer->auth == NULL) {
261                 wpa_printf(MSG_DEBUG, "AUTH: wpa_auth_sta_init() failed");
262                 return -1;
263         }
264
265         /* TODO: get peer RSN IE with Probe Request */
266         if (wpa_validate_wpa_ie(ibss_rsn->auth_group, peer->auth,
267                                 (u8 *) "\x30\x14\x01\x00"
268                                 "\x00\x0f\xac\x04"
269                                 "\x01\x00\x00\x0f\xac\x04"
270                                 "\x01\x00\x00\x0f\xac\x02"
271                                 "\x00\x00", 22, NULL, 0) !=
272             WPA_IE_OK) {
273                 wpa_printf(MSG_DEBUG, "AUTH: wpa_validate_wpa_ie() failed");
274                 return -1;
275         }
276
277         wpa_auth_sm_event(peer->auth, WPA_ASSOC);
278
279         wpa_auth_sta_associated(ibss_rsn->auth_group, peer->auth);
280
281         return 0;
282 }
283
284
285 int ibss_rsn_start(struct ibss_rsn *ibss_rsn, const u8 *addr)
286 {
287         struct ibss_rsn_peer *peer;
288
289         wpa_printf(MSG_DEBUG, "RSN: Starting IBSS Authenticator and "
290                    "Supplicant for peer " MACSTR, MAC2STR(addr));
291
292         peer = os_zalloc(sizeof(*peer));
293         if (peer == NULL)
294                 return -1;
295
296         peer->ibss_rsn = ibss_rsn;
297         os_memcpy(peer->addr, addr, ETH_ALEN);
298
299         if (ibss_rsn_supp_init(peer, ibss_rsn->wpa_s->own_addr, ibss_rsn->psk)
300             < 0) {
301                 ibss_rsn_free(peer);
302                 return -1;
303         }
304
305         if (ibss_rsn_auth_init(ibss_rsn, peer) < 0) {
306                 ibss_rsn_free(peer);
307                 return -1;
308         }
309
310         peer->next = ibss_rsn->peers;
311         ibss_rsn->peers = peer;
312
313         return 0;
314 }
315
316
317 struct ibss_rsn * ibss_rsn_init(struct wpa_supplicant *wpa_s)
318 {
319         struct ibss_rsn *ibss_rsn;
320
321         ibss_rsn = os_zalloc(sizeof(*ibss_rsn));
322         if (ibss_rsn == NULL)
323                 return NULL;
324         ibss_rsn->wpa_s = wpa_s;
325
326         if (ibss_rsn_auth_init_group(ibss_rsn, wpa_s->own_addr) < 0) {
327                 ibss_rsn_deinit(ibss_rsn);
328                 return NULL;
329         }
330
331         return ibss_rsn;
332 }
333
334
335 void ibss_rsn_deinit(struct ibss_rsn *ibss_rsn)
336 {
337         struct ibss_rsn_peer *peer, *prev;
338
339         if (ibss_rsn == NULL)
340                 return;
341
342         peer = ibss_rsn->peers;
343         while (peer) {
344                 prev = peer;
345                 peer = peer->next;
346                 ibss_rsn_free(prev);
347         }
348
349         wpa_deinit(ibss_rsn->auth_group);
350         os_free(ibss_rsn);
351
352 }
353
354
355 static int ibss_rsn_eapol_dst_supp(const u8 *buf, size_t len)
356 {
357         const struct ieee802_1x_hdr *hdr;
358         const struct wpa_eapol_key *key;
359         u16 key_info;
360         size_t plen;
361
362         /* TODO: Support other EAPOL packets than just EAPOL-Key */
363
364         if (len < sizeof(*hdr) + sizeof(*key))
365                 return -1;
366
367         hdr = (const struct ieee802_1x_hdr *) buf;
368         key = (const struct wpa_eapol_key *) (hdr + 1);
369         plen = be_to_host16(hdr->length);
370
371         if (hdr->version < EAPOL_VERSION) {
372                 /* TODO: backwards compatibility */
373         }
374         if (hdr->type != IEEE802_1X_TYPE_EAPOL_KEY) {
375                 wpa_printf(MSG_DEBUG, "RSN: EAPOL frame (type %u) discarded, "
376                         "not a Key frame", hdr->type);
377                 return -1;
378         }
379         if (plen > len - sizeof(*hdr) || plen < sizeof(*key)) {
380                 wpa_printf(MSG_DEBUG, "RSN: EAPOL frame payload size %lu "
381                            "invalid (frame size %lu)",
382                            (unsigned long) plen, (unsigned long) len);
383                 return -1;
384         }
385
386         if (key->type != EAPOL_KEY_TYPE_RSN) {
387                 wpa_printf(MSG_DEBUG, "RSN: EAPOL-Key type (%d) unknown, "
388                            "discarded", key->type);
389                 return -1;
390         }
391
392         key_info = WPA_GET_BE16(key->key_info);
393
394         return !!(key_info & WPA_KEY_INFO_ACK);
395 }
396
397
398 static int ibss_rsn_process_rx_eapol(struct ibss_rsn *ibss_rsn,
399                                      struct ibss_rsn_peer *peer,
400                                      const u8 *buf, size_t len)
401 {
402         int supp;
403         u8 *tmp;
404
405         supp = ibss_rsn_eapol_dst_supp(buf, len);
406         if (supp < 0)
407                 return -1;
408
409         tmp = os_malloc(len);
410         if (tmp == NULL)
411                 return -1;
412         os_memcpy(tmp, buf, len);
413         if (supp) {
414                 wpa_printf(MSG_DEBUG, "RSN: IBSS RX EAPOL for Supplicant");
415                 wpa_sm_rx_eapol(peer->supp, peer->addr, tmp, len);
416         } else {
417                 wpa_printf(MSG_DEBUG, "RSN: IBSS RX EAPOL for Authenticator");
418                 wpa_receive(ibss_rsn->auth_group, peer->auth, tmp, len);
419         }
420         os_free(tmp);
421
422         return 1;
423 }
424
425
426 int ibss_rsn_rx_eapol(struct ibss_rsn *ibss_rsn, const u8 *src_addr,
427                       const u8 *buf, size_t len)
428 {
429         struct ibss_rsn_peer *peer;
430
431         for (peer = ibss_rsn->peers; peer; peer = peer->next) {
432                 if (os_memcmp(src_addr, peer->addr, ETH_ALEN) == 0)
433                         return ibss_rsn_process_rx_eapol(ibss_rsn, peer,
434                                                          buf, len);
435         }
436
437         if (ibss_rsn_eapol_dst_supp(buf, len) > 0) {
438                 /*
439                  * Create new IBSS peer based on an EAPOL message from the peer
440                  * Authenticator.
441                  */
442                 if (ibss_rsn_start(ibss_rsn, src_addr) < 0)
443                         return -1;
444                 return ibss_rsn_process_rx_eapol(ibss_rsn, ibss_rsn->peers,
445                                                  buf, len);
446         }
447
448         return 0;
449 }
450
451
452 void ibss_rsn_set_psk(struct ibss_rsn *ibss_rsn, const u8 *psk)
453 {
454         os_memcpy(ibss_rsn->psk, psk, PMK_LEN);
455 }