Line data Source code
1 : /*
2 : * wpa_supplicant - WPA/RSN IE and KDE processing
3 : * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
4 : *
5 : * This software may be distributed under the terms of the BSD license.
6 : * See README for more details.
7 : */
8 :
9 : #include "includes.h"
10 :
11 : #include "common.h"
12 : #include "wpa.h"
13 : #include "pmksa_cache.h"
14 : #include "common/ieee802_11_defs.h"
15 : #include "wpa_i.h"
16 : #include "wpa_ie.h"
17 :
18 :
19 : /**
20 : * wpa_parse_wpa_ie - Parse WPA/RSN IE
21 : * @wpa_ie: Pointer to WPA or RSN IE
22 : * @wpa_ie_len: Length of the WPA/RSN IE
23 : * @data: Pointer to data area for parsing results
24 : * Returns: 0 on success, -1 on failure
25 : *
26 : * Parse the contents of WPA or RSN IE and write the parsed data into data.
27 : */
28 1881 : int wpa_parse_wpa_ie(const u8 *wpa_ie, size_t wpa_ie_len,
29 : struct wpa_ie_data *data)
30 : {
31 1881 : if (wpa_ie_len >= 1 && wpa_ie[0] == WLAN_EID_RSN)
32 1844 : return wpa_parse_wpa_ie_rsn(wpa_ie, wpa_ie_len, data);
33 : else
34 37 : return wpa_parse_wpa_ie_wpa(wpa_ie, wpa_ie_len, data);
35 : }
36 :
37 :
38 18 : static int wpa_gen_wpa_ie_wpa(u8 *wpa_ie, size_t wpa_ie_len,
39 : int pairwise_cipher, int group_cipher,
40 : int key_mgmt)
41 : {
42 : u8 *pos;
43 : struct wpa_ie_hdr *hdr;
44 : u32 suite;
45 :
46 18 : if (wpa_ie_len < sizeof(*hdr) + WPA_SELECTOR_LEN +
47 : 2 + WPA_SELECTOR_LEN + 2 + WPA_SELECTOR_LEN)
48 0 : return -1;
49 :
50 18 : hdr = (struct wpa_ie_hdr *) wpa_ie;
51 18 : hdr->elem_id = WLAN_EID_VENDOR_SPECIFIC;
52 18 : RSN_SELECTOR_PUT(hdr->oui, WPA_OUI_TYPE);
53 18 : WPA_PUT_LE16(hdr->version, WPA_VERSION);
54 18 : pos = (u8 *) (hdr + 1);
55 :
56 18 : suite = wpa_cipher_to_suite(WPA_PROTO_WPA, group_cipher);
57 18 : if (suite == 0) {
58 0 : wpa_printf(MSG_WARNING, "Invalid group cipher (%d).",
59 : group_cipher);
60 0 : return -1;
61 : }
62 18 : RSN_SELECTOR_PUT(pos, suite);
63 18 : pos += WPA_SELECTOR_LEN;
64 :
65 18 : *pos++ = 1;
66 18 : *pos++ = 0;
67 18 : suite = wpa_cipher_to_suite(WPA_PROTO_WPA, pairwise_cipher);
68 36 : if (suite == 0 ||
69 18 : (!wpa_cipher_valid_pairwise(pairwise_cipher) &&
70 : pairwise_cipher != WPA_CIPHER_NONE)) {
71 0 : wpa_printf(MSG_WARNING, "Invalid pairwise cipher (%d).",
72 : pairwise_cipher);
73 0 : return -1;
74 : }
75 18 : RSN_SELECTOR_PUT(pos, suite);
76 18 : pos += WPA_SELECTOR_LEN;
77 :
78 18 : *pos++ = 1;
79 18 : *pos++ = 0;
80 18 : if (key_mgmt == WPA_KEY_MGMT_IEEE8021X) {
81 1 : RSN_SELECTOR_PUT(pos, WPA_AUTH_KEY_MGMT_UNSPEC_802_1X);
82 17 : } else if (key_mgmt == WPA_KEY_MGMT_PSK) {
83 12 : RSN_SELECTOR_PUT(pos, WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X);
84 5 : } else if (key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
85 5 : RSN_SELECTOR_PUT(pos, WPA_AUTH_KEY_MGMT_NONE);
86 0 : } else if (key_mgmt == WPA_KEY_MGMT_CCKM) {
87 0 : RSN_SELECTOR_PUT(pos, WPA_AUTH_KEY_MGMT_CCKM);
88 : } else {
89 0 : wpa_printf(MSG_WARNING, "Invalid key management type (%d).",
90 : key_mgmt);
91 0 : return -1;
92 : }
93 18 : pos += WPA_SELECTOR_LEN;
94 :
95 : /* WPA Capabilities; use defaults, so no need to include it */
96 :
97 18 : hdr->len = (pos - wpa_ie) - 2;
98 :
99 : WPA_ASSERT((size_t) (pos - wpa_ie) <= wpa_ie_len);
100 :
101 18 : return pos - wpa_ie;
102 : }
103 :
104 :
105 680 : static int wpa_gen_wpa_ie_rsn(u8 *rsn_ie, size_t rsn_ie_len,
106 : int pairwise_cipher, int group_cipher,
107 : int key_mgmt, int mgmt_group_cipher,
108 : struct wpa_sm *sm)
109 : {
110 : u8 *pos;
111 : struct rsn_ie_hdr *hdr;
112 : u16 capab;
113 : u32 suite;
114 :
115 680 : if (rsn_ie_len < sizeof(*hdr) + RSN_SELECTOR_LEN +
116 680 : 2 + RSN_SELECTOR_LEN + 2 + RSN_SELECTOR_LEN + 2 +
117 680 : (sm->cur_pmksa ? 2 + PMKID_LEN : 0)) {
118 0 : wpa_printf(MSG_DEBUG, "RSN: Too short IE buffer (%lu bytes)",
119 : (unsigned long) rsn_ie_len);
120 0 : return -1;
121 : }
122 :
123 680 : hdr = (struct rsn_ie_hdr *) rsn_ie;
124 680 : hdr->elem_id = WLAN_EID_RSN;
125 680 : WPA_PUT_LE16(hdr->version, RSN_VERSION);
126 680 : pos = (u8 *) (hdr + 1);
127 :
128 680 : suite = wpa_cipher_to_suite(WPA_PROTO_RSN, group_cipher);
129 680 : if (suite == 0) {
130 0 : wpa_printf(MSG_WARNING, "Invalid group cipher (%d).",
131 : group_cipher);
132 0 : return -1;
133 : }
134 680 : RSN_SELECTOR_PUT(pos, suite);
135 680 : pos += RSN_SELECTOR_LEN;
136 :
137 680 : *pos++ = 1;
138 680 : *pos++ = 0;
139 680 : suite = wpa_cipher_to_suite(WPA_PROTO_RSN, pairwise_cipher);
140 1360 : if (suite == 0 ||
141 680 : (!wpa_cipher_valid_pairwise(pairwise_cipher) &&
142 : pairwise_cipher != WPA_CIPHER_NONE)) {
143 0 : wpa_printf(MSG_WARNING, "Invalid pairwise cipher (%d).",
144 : pairwise_cipher);
145 0 : return -1;
146 : }
147 680 : RSN_SELECTOR_PUT(pos, suite);
148 680 : pos += RSN_SELECTOR_LEN;
149 :
150 680 : *pos++ = 1;
151 680 : *pos++ = 0;
152 680 : if (key_mgmt == WPA_KEY_MGMT_IEEE8021X) {
153 284 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_UNSPEC_802_1X);
154 396 : } else if (key_mgmt == WPA_KEY_MGMT_PSK) {
155 309 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X);
156 87 : } else if (key_mgmt == WPA_KEY_MGMT_CCKM) {
157 0 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_CCKM);
158 : #ifdef CONFIG_IEEE80211R
159 87 : } else if (key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X) {
160 7 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_FT_802_1X);
161 80 : } else if (key_mgmt == WPA_KEY_MGMT_FT_PSK) {
162 17 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_FT_PSK);
163 : #endif /* CONFIG_IEEE80211R */
164 : #ifdef CONFIG_IEEE80211W
165 63 : } else if (key_mgmt == WPA_KEY_MGMT_IEEE8021X_SHA256) {
166 3 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_802_1X_SHA256);
167 60 : } else if (key_mgmt == WPA_KEY_MGMT_PSK_SHA256) {
168 10 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_PSK_SHA256);
169 : #endif /* CONFIG_IEEE80211W */
170 : #ifdef CONFIG_SAE
171 50 : } else if (key_mgmt == WPA_KEY_MGMT_SAE) {
172 44 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_SAE);
173 6 : } else if (key_mgmt == WPA_KEY_MGMT_FT_SAE) {
174 6 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_FT_SAE);
175 : #endif /* CONFIG_SAE */
176 : } else {
177 0 : wpa_printf(MSG_WARNING, "Invalid key management type (%d).",
178 : key_mgmt);
179 0 : return -1;
180 : }
181 680 : pos += RSN_SELECTOR_LEN;
182 :
183 : /* RSN Capabilities */
184 680 : capab = 0;
185 : #ifdef CONFIG_IEEE80211W
186 680 : if (sm->mfp)
187 174 : capab |= WPA_CAPABILITY_MFPC;
188 680 : if (sm->mfp == 2)
189 12 : capab |= WPA_CAPABILITY_MFPR;
190 : #endif /* CONFIG_IEEE80211W */
191 680 : WPA_PUT_LE16(pos, capab);
192 680 : pos += 2;
193 :
194 680 : if (sm->cur_pmksa) {
195 : /* PMKID Count (2 octets, little endian) */
196 15 : *pos++ = 1;
197 15 : *pos++ = 0;
198 : /* PMKID */
199 15 : os_memcpy(pos, sm->cur_pmksa->pmkid, PMKID_LEN);
200 15 : pos += PMKID_LEN;
201 : }
202 :
203 : #ifdef CONFIG_IEEE80211W
204 680 : if (wpa_cipher_valid_mgmt_group(mgmt_group_cipher)) {
205 30 : if (!sm->cur_pmksa) {
206 : /* PMKID Count */
207 30 : WPA_PUT_LE16(pos, 0);
208 30 : pos += 2;
209 : }
210 :
211 : /* Management Group Cipher Suite */
212 30 : RSN_SELECTOR_PUT(pos, wpa_cipher_to_suite(WPA_PROTO_RSN,
213 : mgmt_group_cipher));
214 30 : pos += RSN_SELECTOR_LEN;
215 : }
216 : #endif /* CONFIG_IEEE80211W */
217 :
218 680 : hdr->len = (pos - rsn_ie) - 2;
219 :
220 : WPA_ASSERT((size_t) (pos - rsn_ie) <= rsn_ie_len);
221 :
222 680 : return pos - rsn_ie;
223 : }
224 :
225 :
226 : #ifdef CONFIG_HS20
227 2 : static int wpa_gen_wpa_ie_osen(u8 *wpa_ie, size_t wpa_ie_len,
228 : int pairwise_cipher, int group_cipher,
229 : int key_mgmt)
230 : {
231 : u8 *pos, *len;
232 : u32 suite;
233 :
234 2 : if (wpa_ie_len < 2 + 4 + RSN_SELECTOR_LEN +
235 : 2 + RSN_SELECTOR_LEN + 2 + RSN_SELECTOR_LEN)
236 0 : return -1;
237 :
238 2 : pos = wpa_ie;
239 2 : *pos++ = WLAN_EID_VENDOR_SPECIFIC;
240 2 : len = pos++; /* to be filled */
241 2 : WPA_PUT_BE24(pos, OUI_WFA);
242 2 : pos += 3;
243 2 : *pos++ = HS20_OSEN_OUI_TYPE;
244 :
245 : /* Group Data Cipher Suite */
246 2 : suite = wpa_cipher_to_suite(WPA_PROTO_RSN, group_cipher);
247 2 : if (suite == 0) {
248 0 : wpa_printf(MSG_WARNING, "Invalid group cipher (%d).",
249 : group_cipher);
250 0 : return -1;
251 : }
252 2 : RSN_SELECTOR_PUT(pos, suite);
253 2 : pos += RSN_SELECTOR_LEN;
254 :
255 : /* Pairwise Cipher Suite Count and List */
256 2 : WPA_PUT_LE16(pos, 1);
257 2 : pos += 2;
258 2 : suite = wpa_cipher_to_suite(WPA_PROTO_RSN, pairwise_cipher);
259 4 : if (suite == 0 ||
260 2 : (!wpa_cipher_valid_pairwise(pairwise_cipher) &&
261 : pairwise_cipher != WPA_CIPHER_NONE)) {
262 0 : wpa_printf(MSG_WARNING, "Invalid pairwise cipher (%d).",
263 : pairwise_cipher);
264 0 : return -1;
265 : }
266 2 : RSN_SELECTOR_PUT(pos, suite);
267 2 : pos += RSN_SELECTOR_LEN;
268 :
269 : /* AKM Suite Count and List */
270 2 : WPA_PUT_LE16(pos, 1);
271 2 : pos += 2;
272 2 : RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_OSEN);
273 2 : pos += RSN_SELECTOR_LEN;
274 :
275 2 : *len = pos - len - 1;
276 :
277 : WPA_ASSERT((size_t) (pos - wpa_ie) <= wpa_ie_len);
278 :
279 2 : return pos - wpa_ie;
280 : }
281 : #endif /* CONFIG_HS20 */
282 :
283 :
284 : /**
285 : * wpa_gen_wpa_ie - Generate WPA/RSN IE based on current security policy
286 : * @sm: Pointer to WPA state machine data from wpa_sm_init()
287 : * @wpa_ie: Pointer to memory area for the generated WPA/RSN IE
288 : * @wpa_ie_len: Maximum length of the generated WPA/RSN IE
289 : * Returns: Length of the generated WPA/RSN IE or -1 on failure
290 : */
291 700 : int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len)
292 : {
293 700 : if (sm->proto == WPA_PROTO_RSN)
294 2720 : return wpa_gen_wpa_ie_rsn(wpa_ie, wpa_ie_len,
295 680 : sm->pairwise_cipher,
296 680 : sm->group_cipher,
297 1360 : sm->key_mgmt, sm->mgmt_group_cipher,
298 : sm);
299 : #ifdef CONFIG_HS20
300 20 : else if (sm->proto == WPA_PROTO_OSEN)
301 6 : return wpa_gen_wpa_ie_osen(wpa_ie, wpa_ie_len,
302 2 : sm->pairwise_cipher,
303 2 : sm->group_cipher,
304 2 : sm->key_mgmt);
305 : #endif /* CONFIG_HS20 */
306 : else
307 54 : return wpa_gen_wpa_ie_wpa(wpa_ie, wpa_ie_len,
308 18 : sm->pairwise_cipher,
309 18 : sm->group_cipher,
310 18 : sm->key_mgmt);
311 : }
312 :
313 :
314 : /**
315 : * wpa_parse_vendor_specific - Parse Vendor Specific IEs
316 : * @pos: Pointer to the IE header
317 : * @end: Pointer to the end of the Key Data buffer
318 : * @ie: Pointer to parsed IE data
319 : * Returns: 0 on success, 1 if end mark is found, -1 on failure
320 : */
321 4358 : static int wpa_parse_vendor_specific(const u8 *pos, const u8 *end,
322 : struct wpa_eapol_ie_parse *ie)
323 : {
324 : unsigned int oui;
325 :
326 4358 : if (pos[1] < 4) {
327 0 : wpa_printf(MSG_MSGDUMP, "Too short vendor specific IE ignored (len=%u)",
328 0 : pos[1]);
329 0 : return 1;
330 : }
331 :
332 4358 : oui = WPA_GET_BE24(&pos[2]);
333 4358 : if (oui == OUI_MICROSOFT && pos[5] == WMM_OUI_TYPE && pos[1] > 4) {
334 2070 : if (pos[6] == WMM_OUI_SUBTYPE_INFORMATION_ELEMENT) {
335 0 : ie->wmm = &pos[2];
336 0 : ie->wmm_len = pos[1];
337 0 : wpa_hexdump(MSG_DEBUG, "WPA: WMM IE",
338 0 : ie->wmm, ie->wmm_len);
339 2070 : } else if (pos[6] == WMM_OUI_SUBTYPE_PARAMETER_ELEMENT) {
340 2070 : ie->wmm = &pos[2];
341 2070 : ie->wmm_len = pos[1];
342 4140 : wpa_hexdump(MSG_DEBUG, "WPA: WMM Parameter Element",
343 2070 : ie->wmm, ie->wmm_len);
344 : }
345 : }
346 4358 : return 0;
347 : }
348 :
349 :
350 : /**
351 : * wpa_parse_generic - Parse EAPOL-Key Key Data Generic IEs
352 : * @pos: Pointer to the IE header
353 : * @end: Pointer to the end of the Key Data buffer
354 : * @ie: Pointer to parsed IE data
355 : * Returns: 0 on success, 1 if end mark is found, -1 on failure
356 : */
357 4358 : static int wpa_parse_generic(const u8 *pos, const u8 *end,
358 : struct wpa_eapol_ie_parse *ie)
359 : {
360 4358 : if (pos[1] == 0)
361 0 : return 1;
362 :
363 8481 : if (pos[1] >= 6 &&
364 4199 : RSN_SELECTOR_GET(pos + 2) == WPA_OUI_TYPE &&
365 152 : pos[2 + WPA_SELECTOR_LEN] == 1 &&
366 76 : pos[2 + WPA_SELECTOR_LEN + 1] == 0) {
367 76 : ie->wpa_ie = pos;
368 76 : ie->wpa_ie_len = pos[1] + 2;
369 152 : wpa_hexdump(MSG_DEBUG, "WPA: WPA IE in EAPOL-Key",
370 76 : ie->wpa_ie, ie->wpa_ie_len);
371 76 : return 0;
372 : }
373 :
374 8564 : if (pos + 1 + RSN_SELECTOR_LEN < end &&
375 8129 : pos[1] >= RSN_SELECTOR_LEN + PMKID_LEN &&
376 3847 : RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_PMKID) {
377 285 : ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
378 285 : wpa_hexdump(MSG_DEBUG, "WPA: PMKID in EAPOL-Key",
379 285 : pos, pos[1] + 2);
380 285 : return 0;
381 : }
382 :
383 7759 : if (pos[1] > RSN_SELECTOR_LEN + 2 &&
384 3762 : RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_GROUPKEY) {
385 614 : ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
386 614 : ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
387 614 : wpa_hexdump_key(MSG_DEBUG, "WPA: GTK in EAPOL-Key",
388 614 : pos, pos[1] + 2);
389 614 : return 0;
390 : }
391 :
392 6531 : if (pos[1] > RSN_SELECTOR_LEN + 2 &&
393 3148 : RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_MAC_ADDR) {
394 8 : ie->mac_addr = pos + 2 + RSN_SELECTOR_LEN;
395 8 : ie->mac_addr_len = pos[1] - RSN_SELECTOR_LEN;
396 8 : wpa_hexdump(MSG_DEBUG, "WPA: MAC Address in EAPOL-Key",
397 8 : pos, pos[1] + 2);
398 8 : return 0;
399 : }
400 :
401 : #ifdef CONFIG_PEERKEY
402 6515 : if (pos[1] > RSN_SELECTOR_LEN + 2 &&
403 3140 : RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_SMK) {
404 2 : ie->smk = pos + 2 + RSN_SELECTOR_LEN;
405 2 : ie->smk_len = pos[1] - RSN_SELECTOR_LEN;
406 2 : wpa_hexdump_key(MSG_DEBUG, "WPA: SMK in EAPOL-Key",
407 2 : pos, pos[1] + 2);
408 2 : return 0;
409 : }
410 :
411 6511 : if (pos[1] > RSN_SELECTOR_LEN + 2 &&
412 3138 : RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_NONCE) {
413 2 : ie->nonce = pos + 2 + RSN_SELECTOR_LEN;
414 2 : ie->nonce_len = pos[1] - RSN_SELECTOR_LEN;
415 2 : wpa_hexdump(MSG_DEBUG, "WPA: Nonce in EAPOL-Key",
416 2 : pos, pos[1] + 2);
417 2 : return 0;
418 : }
419 :
420 6507 : if (pos[1] > RSN_SELECTOR_LEN + 2 &&
421 3136 : RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_LIFETIME) {
422 4 : ie->lifetime = pos + 2 + RSN_SELECTOR_LEN;
423 4 : ie->lifetime_len = pos[1] - RSN_SELECTOR_LEN;
424 4 : wpa_hexdump(MSG_DEBUG, "WPA: Lifetime in EAPOL-Key",
425 4 : pos, pos[1] + 2);
426 4 : return 0;
427 : }
428 :
429 6499 : if (pos[1] > RSN_SELECTOR_LEN + 2 &&
430 3132 : RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_ERROR) {
431 3 : ie->error = pos + 2 + RSN_SELECTOR_LEN;
432 3 : ie->error_len = pos[1] - RSN_SELECTOR_LEN;
433 3 : wpa_hexdump(MSG_DEBUG, "WPA: Error in EAPOL-Key",
434 3 : pos, pos[1] + 2);
435 3 : return 0;
436 : }
437 : #endif /* CONFIG_PEERKEY */
438 :
439 : #ifdef CONFIG_IEEE80211W
440 6493 : if (pos[1] > RSN_SELECTOR_LEN + 2 &&
441 3129 : RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_IGTK) {
442 30 : ie->igtk = pos + 2 + RSN_SELECTOR_LEN;
443 30 : ie->igtk_len = pos[1] - RSN_SELECTOR_LEN;
444 30 : wpa_hexdump_key(MSG_DEBUG, "WPA: IGTK in EAPOL-Key",
445 30 : pos, pos[1] + 2);
446 30 : return 0;
447 : }
448 : #endif /* CONFIG_IEEE80211W */
449 :
450 : #ifdef CONFIG_P2P
451 6433 : if (pos[1] >= RSN_SELECTOR_LEN + 1 &&
452 3099 : RSN_SELECTOR_GET(pos + 2) == WFA_KEY_DATA_IP_ADDR_REQ) {
453 0 : ie->ip_addr_req = pos + 2 + RSN_SELECTOR_LEN;
454 0 : wpa_hexdump(MSG_DEBUG, "WPA: IP Address Request in EAPOL-Key",
455 0 : ie->ip_addr_req, pos[1] - RSN_SELECTOR_LEN);
456 0 : return 0;
457 : }
458 :
459 6336 : if (pos[1] >= RSN_SELECTOR_LEN + 3 * 4 &&
460 3002 : RSN_SELECTOR_GET(pos + 2) == WFA_KEY_DATA_IP_ADDR_ALLOC) {
461 75 : ie->ip_addr_alloc = pos + 2 + RSN_SELECTOR_LEN;
462 150 : wpa_hexdump(MSG_DEBUG,
463 : "WPA: IP Address Allocation in EAPOL-Key",
464 150 : ie->ip_addr_alloc, pos[1] - RSN_SELECTOR_LEN);
465 75 : return 0;
466 : }
467 : #endif /* CONFIG_P2P */
468 :
469 3259 : return 0;
470 : }
471 :
472 :
473 : /**
474 : * wpa_supplicant_parse_ies - Parse EAPOL-Key Key Data IEs
475 : * @buf: Pointer to the Key Data buffer
476 : * @len: Key Data Length
477 : * @ie: Pointer to parsed IE data
478 : * Returns: 0 on success, -1 on failure
479 : */
480 3451 : int wpa_supplicant_parse_ies(const u8 *buf, size_t len,
481 : struct wpa_eapol_ie_parse *ie)
482 : {
483 : const u8 *pos, *end;
484 3451 : int ret = 0;
485 :
486 3451 : os_memset(ie, 0, sizeof(*ie));
487 24121 : for (pos = buf, end = pos + len; pos + 1 < end; pos += 2 + pos[1]) {
488 26098 : if (pos[0] == 0xdd &&
489 9786 : ((pos == buf + len - 1) || pos[1] == 0)) {
490 : /* Ignore padding */
491 : break;
492 : }
493 20670 : if (pos + 2 + pos[1] > end) {
494 0 : wpa_printf(MSG_DEBUG, "WPA: EAPOL-Key Key Data "
495 : "underflow (ie=%d len=%d pos=%d)",
496 0 : pos[0], pos[1], (int) (pos - buf));
497 0 : wpa_hexdump_key(MSG_DEBUG, "WPA: Key Data",
498 : buf, len);
499 0 : ret = -1;
500 0 : break;
501 : }
502 20670 : if (*pos == WLAN_EID_RSN) {
503 1520 : ie->rsn_ie = pos;
504 1520 : ie->rsn_ie_len = pos[1] + 2;
505 3040 : wpa_hexdump(MSG_DEBUG, "WPA: RSN IE in EAPOL-Key",
506 1520 : ie->rsn_ie, ie->rsn_ie_len);
507 19150 : } else if (*pos == WLAN_EID_MOBILITY_DOMAIN) {
508 80 : ie->mdie = pos;
509 80 : ie->mdie_len = pos[1] + 2;
510 160 : wpa_hexdump(MSG_DEBUG, "WPA: MDIE in EAPOL-Key",
511 80 : ie->mdie, ie->mdie_len);
512 19070 : } else if (*pos == WLAN_EID_FAST_BSS_TRANSITION) {
513 131 : ie->ftie = pos;
514 131 : ie->ftie_len = pos[1] + 2;
515 262 : wpa_hexdump(MSG_DEBUG, "WPA: FTIE in EAPOL-Key",
516 131 : ie->ftie, ie->ftie_len);
517 18939 : } else if (*pos == WLAN_EID_TIMEOUT_INTERVAL && pos[1] >= 5) {
518 188 : if (pos[2] == WLAN_TIMEOUT_REASSOC_DEADLINE) {
519 16 : ie->reassoc_deadline = pos;
520 32 : wpa_hexdump(MSG_DEBUG, "WPA: Reassoc Deadline "
521 : "in EAPOL-Key",
522 32 : ie->reassoc_deadline, pos[1] + 2);
523 78 : } else if (pos[2] == WLAN_TIMEOUT_KEY_LIFETIME) {
524 78 : ie->key_lifetime = pos;
525 156 : wpa_hexdump(MSG_DEBUG, "WPA: KeyLifetime "
526 : "in EAPOL-Key",
527 156 : ie->key_lifetime, pos[1] + 2);
528 : } else {
529 0 : wpa_hexdump(MSG_DEBUG, "WPA: Unrecognized "
530 : "EAPOL-Key Key Data IE",
531 0 : pos, 2 + pos[1]);
532 : }
533 18845 : } else if (*pos == WLAN_EID_LINK_ID) {
534 94 : if (pos[1] >= 18) {
535 94 : ie->lnkid = pos;
536 94 : ie->lnkid_len = pos[1] + 2;
537 : }
538 18751 : } else if (*pos == WLAN_EID_EXT_CAPAB) {
539 2126 : ie->ext_capab = pos;
540 2126 : ie->ext_capab_len = pos[1] + 2;
541 16625 : } else if (*pos == WLAN_EID_SUPP_RATES) {
542 2126 : ie->supp_rates = pos;
543 2126 : ie->supp_rates_len = pos[1] + 2;
544 14499 : } else if (*pos == WLAN_EID_EXT_SUPP_RATES) {
545 1619 : ie->ext_supp_rates = pos;
546 1619 : ie->ext_supp_rates_len = pos[1] + 2;
547 12880 : } else if (*pos == WLAN_EID_HT_CAP) {
548 2037 : ie->ht_capabilities = pos + 2;
549 2037 : ie->ht_capabilities_len = pos[1];
550 10843 : } else if (*pos == WLAN_EID_VHT_AID) {
551 0 : if (pos[1] >= 2)
552 0 : ie->aid = WPA_GET_LE16(pos + 2);
553 10843 : } else if (*pos == WLAN_EID_VHT_CAP) {
554 7 : ie->vht_capabilities = pos + 2;
555 7 : ie->vht_capabilities_len = pos[1];
556 10836 : } else if (*pos == WLAN_EID_QOS && pos[1] >= 1) {
557 0 : ie->qosinfo = pos[2];
558 10836 : } else if (*pos == WLAN_EID_SUPPORTED_CHANNELS) {
559 0 : ie->supp_channels = pos + 2;
560 0 : ie->supp_channels_len = pos[1];
561 10836 : } else if (*pos == WLAN_EID_SUPPORTED_OPERATING_CLASSES) {
562 : /*
563 : * The value of the Length field of the Supported
564 : * Operating Classes element is between 2 and 253.
565 : * Silently skip invalid elements to avoid interop
566 : * issues when trying to use the value.
567 : */
568 0 : if (pos[1] >= 2 && pos[1] <= 253) {
569 0 : ie->supp_oper_classes = pos + 2;
570 0 : ie->supp_oper_classes_len = pos[1];
571 : }
572 10836 : } else if (*pos == WLAN_EID_VENDOR_SPECIFIC) {
573 4358 : ret = wpa_parse_generic(pos, end, ie);
574 4358 : if (ret < 0)
575 0 : break;
576 4358 : if (ret > 0) {
577 0 : ret = 0;
578 0 : break;
579 : }
580 :
581 4358 : ret = wpa_parse_vendor_specific(pos, end, ie);
582 4358 : if (ret < 0)
583 0 : break;
584 4358 : if (ret > 0) {
585 0 : ret = 0;
586 0 : break;
587 : }
588 : } else {
589 6478 : wpa_hexdump(MSG_DEBUG, "WPA: Unrecognized EAPOL-Key "
590 6478 : "Key Data IE", pos, 2 + pos[1]);
591 : }
592 : }
593 :
594 3451 : return ret;
595 : }
|