2 * wpa_supplicant - IBSS RSN
3 * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
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.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
18 #include "l2_packet/l2_packet.h"
19 #include "rsn_supp/wpa.h"
20 #include "rsn_supp/wpa_ie.h"
21 #include "ap/wpa_auth.h"
22 #include "wpa_supplicant_i.h"
27 static void ibss_rsn_free(struct ibss_rsn_peer
*peer
)
29 wpa_auth_sta_deinit(peer
->auth
);
30 wpa_sm_deinit(peer
->supp
);
35 static void supp_set_state(void *ctx
, enum wpa_states state
)
37 struct ibss_rsn_peer
*peer
= ctx
;
38 peer
->supp_state
= state
;
42 static int supp_ether_send(void *ctx
, const u8
*dest
, u16 proto
, const u8
*buf
,
45 struct ibss_rsn_peer
*peer
= ctx
;
46 struct wpa_supplicant
*wpa_s
= peer
->ibss_rsn
->wpa_s
;
48 wpa_printf(MSG_DEBUG
, "SUPP: %s(dest=" MACSTR
" proto=0x%04x "
50 __func__
, MAC2STR(dest
), proto
, (unsigned long) len
);
53 return l2_packet_send(wpa_s
->l2
, dest
, proto
, buf
, len
);
55 return wpa_drv_send_eapol(wpa_s
, dest
, proto
, buf
, len
);
59 static u8
* supp_alloc_eapol(void *ctx
, u8 type
, const void *data
,
60 u16 data_len
, size_t *msg_len
, void **data_pos
)
62 struct ieee802_1x_hdr
*hdr
;
64 wpa_printf(MSG_DEBUG
, "SUPP: %s(type=%d data_len=%d)",
65 __func__
, type
, data_len
);
67 *msg_len
= sizeof(*hdr
) + data_len
;
68 hdr
= os_malloc(*msg_len
);
74 hdr
->length
= host_to_be16(data_len
);
77 os_memcpy(hdr
+ 1, data
, data_len
);
79 os_memset(hdr
+ 1, 0, data_len
);
88 static int supp_get_beacon_ie(void *ctx
)
90 struct ibss_rsn_peer
*peer
= ctx
;
92 wpa_printf(MSG_DEBUG
, "SUPP: %s", __func__
);
93 /* TODO: get correct RSN IE */
94 return wpa_sm_set_ap_rsn_ie(peer
->supp
,
95 (u8
*) "\x30\x14\x01\x00"
97 "\x01\x00\x00\x0f\xac\x04"
98 "\x01\x00\x00\x0f\xac\x02"
103 static int supp_set_key(void *ctx
, enum wpa_alg alg
,
104 const u8
*addr
, int key_idx
, int set_tx
,
105 const u8
*seq
, size_t seq_len
,
106 const u8
*key
, size_t key_len
)
108 struct ibss_rsn_peer
*peer
= ctx
;
110 wpa_printf(MSG_DEBUG
, "SUPP: %s(alg=%d addr=" MACSTR
" key_idx=%d "
112 __func__
, alg
, MAC2STR(addr
), key_idx
, set_tx
);
113 wpa_hexdump(MSG_DEBUG
, "SUPP: set_key - seq", seq
, seq_len
);
114 wpa_hexdump_key(MSG_DEBUG
, "SUPP: set_key - key", key
, key_len
);
118 * In IBSS RSN, the pairwise key from the 4-way handshake
119 * initiated by the peer with highest MAC address is used.
121 if (os_memcmp(peer
->ibss_rsn
->wpa_s
->own_addr
, peer
->addr
,
123 wpa_printf(MSG_DEBUG
, "SUPP: Do not use this PTK");
128 return wpa_drv_set_key(peer
->ibss_rsn
->wpa_s
, alg
, addr
, key_idx
,
129 set_tx
, seq
, seq_len
, key
, key_len
);
133 static void * supp_get_network_ctx(void *ctx
)
135 struct ibss_rsn_peer
*peer
= ctx
;
136 return wpa_supplicant_get_ssid(peer
->ibss_rsn
->wpa_s
);
140 static int supp_mlme_setprotection(void *ctx
, const u8
*addr
,
141 int protection_type
, int key_type
)
143 wpa_printf(MSG_DEBUG
, "SUPP: %s(addr=" MACSTR
" protection_type=%d "
145 __func__
, MAC2STR(addr
), protection_type
, key_type
);
150 static void supp_cancel_auth_timeout(void *ctx
)
152 wpa_printf(MSG_DEBUG
, "SUPP: %s", __func__
);
156 int ibss_rsn_supp_init(struct ibss_rsn_peer
*peer
, const u8
*own_addr
,
159 struct wpa_sm_ctx
*ctx
= os_zalloc(sizeof(*ctx
));
164 ctx
->msg_ctx
= peer
->ibss_rsn
->wpa_s
;
165 ctx
->set_state
= supp_set_state
;
166 ctx
->ether_send
= supp_ether_send
;
167 ctx
->get_beacon_ie
= supp_get_beacon_ie
;
168 ctx
->alloc_eapol
= supp_alloc_eapol
;
169 ctx
->set_key
= supp_set_key
;
170 ctx
->get_network_ctx
= supp_get_network_ctx
;
171 ctx
->mlme_setprotection
= supp_mlme_setprotection
;
172 ctx
->cancel_auth_timeout
= supp_cancel_auth_timeout
;
173 peer
->supp
= wpa_sm_init(ctx
);
174 if (peer
->supp
== NULL
) {
175 wpa_printf(MSG_DEBUG
, "SUPP: wpa_sm_init() failed");
179 wpa_sm_set_own_addr(peer
->supp
, own_addr
);
180 wpa_sm_set_param(peer
->supp
, WPA_PARAM_RSN_ENABLED
, 1);
181 wpa_sm_set_param(peer
->supp
, WPA_PARAM_PROTO
, WPA_PROTO_RSN
);
182 wpa_sm_set_param(peer
->supp
, WPA_PARAM_PAIRWISE
, WPA_CIPHER_CCMP
);
183 wpa_sm_set_param(peer
->supp
, WPA_PARAM_GROUP
, WPA_CIPHER_CCMP
);
184 wpa_sm_set_param(peer
->supp
, WPA_PARAM_KEY_MGMT
, WPA_KEY_MGMT_PSK
);
185 wpa_sm_set_pmk(peer
->supp
, psk
, PMK_LEN
);
187 peer
->supp_ie_len
= sizeof(peer
->supp_ie
);
188 if (wpa_sm_set_assoc_wpa_ie_default(peer
->supp
, peer
->supp_ie
,
189 &peer
->supp_ie_len
) < 0) {
190 wpa_printf(MSG_DEBUG
, "SUPP: wpa_sm_set_assoc_wpa_ie_default()"
195 wpa_sm_notify_assoc(peer
->supp
, peer
->addr
);
201 static void auth_logger(void *ctx
, const u8
*addr
, logger_level level
,
205 wpa_printf(MSG_DEBUG
, "AUTH: " MACSTR
" - %s",
208 wpa_printf(MSG_DEBUG
, "AUTH: %s", txt
);
212 static const u8
* auth_get_psk(void *ctx
, const u8
*addr
, const u8
*prev_psk
)
214 struct ibss_rsn
*ibss_rsn
= ctx
;
215 wpa_printf(MSG_DEBUG
, "AUTH: %s (addr=" MACSTR
" prev_psk=%p)",
216 __func__
, MAC2STR(addr
), prev_psk
);
219 return ibss_rsn
->psk
;
223 static int auth_send_eapol(void *ctx
, const u8
*addr
, const u8
*data
,
224 size_t data_len
, int encrypt
)
226 struct ibss_rsn
*ibss_rsn
= ctx
;
227 struct wpa_supplicant
*wpa_s
= ibss_rsn
->wpa_s
;
229 wpa_printf(MSG_DEBUG
, "AUTH: %s(addr=" MACSTR
" data_len=%lu "
231 __func__
, MAC2STR(addr
), (unsigned long) data_len
, encrypt
);
234 return l2_packet_send(wpa_s
->l2
, addr
, ETH_P_EAPOL
, data
,
237 return wpa_drv_send_eapol(wpa_s
, addr
, ETH_P_EAPOL
, data
, data_len
);
241 static int auth_set_key(void *ctx
, int vlan_id
, enum wpa_alg alg
,
242 const u8
*addr
, int idx
, u8
*key
, size_t key_len
)
244 struct ibss_rsn
*ibss_rsn
= ctx
;
247 os_memset(seq
, 0, sizeof(seq
));
250 wpa_printf(MSG_DEBUG
, "AUTH: %s(alg=%d addr=" MACSTR
252 __func__
, alg
, MAC2STR(addr
), idx
);
254 wpa_printf(MSG_DEBUG
, "AUTH: %s(alg=%d key_idx=%d)",
257 wpa_hexdump_key(MSG_DEBUG
, "AUTH: set_key - key", key
, key_len
);
261 * In IBSS RSN, the pairwise key from the 4-way handshake
262 * initiated by the peer with highest MAC address is used.
265 os_memcmp(ibss_rsn
->wpa_s
->own_addr
, addr
, ETH_ALEN
) < 0) {
266 wpa_printf(MSG_DEBUG
, "AUTH: Do not use this PTK");
271 return wpa_drv_set_key(ibss_rsn
->wpa_s
, alg
, addr
, idx
,
272 1, seq
, 6, key
, key_len
);
276 static int ibss_rsn_auth_init_group(struct ibss_rsn
*ibss_rsn
,
279 struct wpa_auth_config conf
;
280 struct wpa_auth_callbacks cb
;
282 wpa_printf(MSG_DEBUG
, "AUTH: Initializing group state machine");
284 os_memset(&conf
, 0, sizeof(conf
));
286 conf
.wpa_key_mgmt
= WPA_KEY_MGMT_PSK
;
287 conf
.wpa_pairwise
= WPA_CIPHER_CCMP
;
288 conf
.rsn_pairwise
= WPA_CIPHER_CCMP
;
289 conf
.wpa_group
= WPA_CIPHER_CCMP
;
290 conf
.eapol_version
= 2;
292 os_memset(&cb
, 0, sizeof(cb
));
294 cb
.logger
= auth_logger
;
295 cb
.send_eapol
= auth_send_eapol
;
296 cb
.get_psk
= auth_get_psk
;
297 cb
.set_key
= auth_set_key
;
299 ibss_rsn
->auth_group
= wpa_init(own_addr
, &conf
, &cb
);
300 if (ibss_rsn
->auth_group
== NULL
) {
301 wpa_printf(MSG_DEBUG
, "AUTH: wpa_init() failed");
309 static int ibss_rsn_auth_init(struct ibss_rsn
*ibss_rsn
,
310 struct ibss_rsn_peer
*peer
)
312 peer
->auth
= wpa_auth_sta_init(ibss_rsn
->auth_group
, peer
->addr
);
313 if (peer
->auth
== NULL
) {
314 wpa_printf(MSG_DEBUG
, "AUTH: wpa_auth_sta_init() failed");
318 /* TODO: get peer RSN IE with Probe Request */
319 if (wpa_validate_wpa_ie(ibss_rsn
->auth_group
, peer
->auth
,
320 (u8
*) "\x30\x14\x01\x00"
322 "\x01\x00\x00\x0f\xac\x04"
323 "\x01\x00\x00\x0f\xac\x02"
324 "\x00\x00", 22, NULL
, 0) !=
326 wpa_printf(MSG_DEBUG
, "AUTH: wpa_validate_wpa_ie() failed");
330 if (wpa_auth_sm_event(peer
->auth
, WPA_ASSOC
))
333 if (wpa_auth_sta_associated(ibss_rsn
->auth_group
, peer
->auth
))
340 int ibss_rsn_start(struct ibss_rsn
*ibss_rsn
, const u8
*addr
)
342 struct ibss_rsn_peer
*peer
;
344 wpa_printf(MSG_DEBUG
, "RSN: Starting IBSS Authenticator and "
345 "Supplicant for peer " MACSTR
, MAC2STR(addr
));
347 peer
= os_zalloc(sizeof(*peer
));
351 peer
->ibss_rsn
= ibss_rsn
;
352 os_memcpy(peer
->addr
, addr
, ETH_ALEN
);
354 if (ibss_rsn_supp_init(peer
, ibss_rsn
->wpa_s
->own_addr
, ibss_rsn
->psk
)
360 if (ibss_rsn_auth_init(ibss_rsn
, peer
) < 0) {
365 peer
->next
= ibss_rsn
->peers
;
366 ibss_rsn
->peers
= peer
;
372 struct ibss_rsn
* ibss_rsn_init(struct wpa_supplicant
*wpa_s
)
374 struct ibss_rsn
*ibss_rsn
;
376 ibss_rsn
= os_zalloc(sizeof(*ibss_rsn
));
377 if (ibss_rsn
== NULL
)
379 ibss_rsn
->wpa_s
= wpa_s
;
381 if (ibss_rsn_auth_init_group(ibss_rsn
, wpa_s
->own_addr
) < 0) {
382 ibss_rsn_deinit(ibss_rsn
);
390 void ibss_rsn_deinit(struct ibss_rsn
*ibss_rsn
)
392 struct ibss_rsn_peer
*peer
, *prev
;
394 if (ibss_rsn
== NULL
)
397 peer
= ibss_rsn
->peers
;
404 wpa_deinit(ibss_rsn
->auth_group
);
410 static int ibss_rsn_eapol_dst_supp(const u8
*buf
, size_t len
)
412 const struct ieee802_1x_hdr
*hdr
;
413 const struct wpa_eapol_key
*key
;
417 /* TODO: Support other EAPOL packets than just EAPOL-Key */
419 if (len
< sizeof(*hdr
) + sizeof(*key
))
422 hdr
= (const struct ieee802_1x_hdr
*) buf
;
423 key
= (const struct wpa_eapol_key
*) (hdr
+ 1);
424 plen
= be_to_host16(hdr
->length
);
426 if (hdr
->version
< EAPOL_VERSION
) {
427 /* TODO: backwards compatibility */
429 if (hdr
->type
!= IEEE802_1X_TYPE_EAPOL_KEY
) {
430 wpa_printf(MSG_DEBUG
, "RSN: EAPOL frame (type %u) discarded, "
431 "not a Key frame", hdr
->type
);
434 if (plen
> len
- sizeof(*hdr
) || plen
< sizeof(*key
)) {
435 wpa_printf(MSG_DEBUG
, "RSN: EAPOL frame payload size %lu "
436 "invalid (frame size %lu)",
437 (unsigned long) plen
, (unsigned long) len
);
441 if (key
->type
!= EAPOL_KEY_TYPE_RSN
) {
442 wpa_printf(MSG_DEBUG
, "RSN: EAPOL-Key type (%d) unknown, "
443 "discarded", key
->type
);
447 key_info
= WPA_GET_BE16(key
->key_info
);
449 return !!(key_info
& WPA_KEY_INFO_ACK
);
453 static int ibss_rsn_process_rx_eapol(struct ibss_rsn
*ibss_rsn
,
454 struct ibss_rsn_peer
*peer
,
455 const u8
*buf
, size_t len
)
460 supp
= ibss_rsn_eapol_dst_supp(buf
, len
);
464 tmp
= os_malloc(len
);
467 os_memcpy(tmp
, buf
, len
);
469 wpa_printf(MSG_DEBUG
, "RSN: IBSS RX EAPOL for Supplicant");
470 wpa_sm_rx_eapol(peer
->supp
, peer
->addr
, tmp
, len
);
472 wpa_printf(MSG_DEBUG
, "RSN: IBSS RX EAPOL for Authenticator");
473 wpa_receive(ibss_rsn
->auth_group
, peer
->auth
, tmp
, len
);
481 int ibss_rsn_rx_eapol(struct ibss_rsn
*ibss_rsn
, const u8
*src_addr
,
482 const u8
*buf
, size_t len
)
484 struct ibss_rsn_peer
*peer
;
486 for (peer
= ibss_rsn
->peers
; peer
; peer
= peer
->next
) {
487 if (os_memcmp(src_addr
, peer
->addr
, ETH_ALEN
) == 0)
488 return ibss_rsn_process_rx_eapol(ibss_rsn
, peer
,
492 if (ibss_rsn_eapol_dst_supp(buf
, len
) > 0) {
494 * Create new IBSS peer based on an EAPOL message from the peer
497 if (ibss_rsn_start(ibss_rsn
, src_addr
) < 0)
499 return ibss_rsn_process_rx_eapol(ibss_rsn
, ibss_rsn
->peers
,
507 void ibss_rsn_set_psk(struct ibss_rsn
*ibss_rsn
, const u8
*psk
)
509 os_memcpy(ibss_rsn
->psk
, psk
, PMK_LEN
);