]> git.ipfire.org Git - thirdparty/hostap.git/blame - wlantest/rx_data.c
wlantest: Check for zero TK even when the real PTK is not known
[thirdparty/hostap.git] / wlantest / rx_data.c
CommitLineData
2d73f0a8
JM
1/*
2 * Received Data frame processing
98cd3d1c 3 * Copyright (c) 2010-2015, Jouni Malinen <j@w1.fi>
2d73f0a8 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
2d73f0a8
JM
7 */
8
9#include "utils/includes.h"
10
11#include "utils/common.h"
a9dd29d3 12#include "common/defs.h"
2d73f0a8
JM
13#include "common/ieee802_11_defs.h"
14#include "wlantest.h"
a0530dff 15
2d73f0a8
JM
16
17static const char * data_stype(u16 stype)
18{
19 switch (stype) {
20 case WLAN_FC_STYPE_DATA:
21 return "DATA";
22 case WLAN_FC_STYPE_DATA_CFACK:
23 return "DATA-CFACK";
24 case WLAN_FC_STYPE_DATA_CFPOLL:
25 return "DATA-CFPOLL";
26 case WLAN_FC_STYPE_DATA_CFACKPOLL:
27 return "DATA-CFACKPOLL";
28 case WLAN_FC_STYPE_NULLFUNC:
29 return "NULLFUNC";
30 case WLAN_FC_STYPE_CFACK:
31 return "CFACK";
32 case WLAN_FC_STYPE_CFPOLL:
33 return "CFPOLL";
34 case WLAN_FC_STYPE_CFACKPOLL:
35 return "CFACKPOLL";
36 case WLAN_FC_STYPE_QOS_DATA:
37 return "QOSDATA";
38 case WLAN_FC_STYPE_QOS_DATA_CFACK:
39 return "QOSDATA-CFACK";
40 case WLAN_FC_STYPE_QOS_DATA_CFPOLL:
41 return "QOSDATA-CFPOLL";
42 case WLAN_FC_STYPE_QOS_DATA_CFACKPOLL:
43 return "QOSDATA-CFACKPOLL";
44 case WLAN_FC_STYPE_QOS_NULL:
45 return "QOS-NULL";
46 case WLAN_FC_STYPE_QOS_CFPOLL:
47 return "QOS-CFPOLL";
48 case WLAN_FC_STYPE_QOS_CFACKPOLL:
49 return "QOS-CFACKPOLL";
50 }
51 return "??";
52}
53
54
722c7d19
JM
55static void rx_data_eth(struct wlantest *wt, const u8 *bssid,
56 const u8 *sta_addr, const u8 *dst, const u8 *src,
57 u16 ethertype, const u8 *data, size_t len, int prot,
58 const u8 *peer_addr);
59
60static void rx_data_vlan(struct wlantest *wt, const u8 *bssid,
61 const u8 *sta_addr, const u8 *dst, const u8 *src,
62 const u8 *data, size_t len, int prot,
63 const u8 *peer_addr)
64{
65 u16 tag;
66
67 if (len < 4)
68 return;
69 tag = WPA_GET_BE16(data);
70 wpa_printf(MSG_MSGDUMP, "VLAN tag: Priority=%u ID=%u",
71 tag >> 12, tag & 0x0ffff);
72 /* ignore VLAN information and process the original frame */
73 rx_data_eth(wt, bssid, sta_addr, dst, src, WPA_GET_BE16(data + 2),
74 data + 4, len - 4, prot, peer_addr);
75}
76
77
ee3b84be
JM
78static void rx_data_eth(struct wlantest *wt, const u8 *bssid,
79 const u8 *sta_addr, const u8 *dst, const u8 *src,
244c9303
JM
80 u16 ethertype, const u8 *data, size_t len, int prot,
81 const u8 *peer_addr)
32234bba 82{
ee3b84be
JM
83 switch (ethertype) {
84 case ETH_P_PAE:
6d014ffc 85 rx_data_eapol(wt, bssid, sta_addr, dst, src, data, len, prot);
ee3b84be
JM
86 break;
87 case ETH_P_IP:
244c9303
JM
88 rx_data_ip(wt, bssid, sta_addr, dst, src, data, len,
89 peer_addr);
ee3b84be 90 break;
b39f5834
JM
91 case 0x890d:
92 rx_data_80211_encap(wt, bssid, sta_addr, dst, src, data, len);
93 break;
722c7d19
JM
94 case ETH_P_8021Q:
95 rx_data_vlan(wt, bssid, sta_addr, dst, src, data, len, prot,
96 peer_addr);
97 break;
ee3b84be 98 }
32234bba
JM
99}
100
101
ee3b84be
JM
102static void rx_data_process(struct wlantest *wt, const u8 *bssid,
103 const u8 *sta_addr,
104 const u8 *dst, const u8 *src,
244c9303
JM
105 const u8 *data, size_t len, int prot,
106 const u8 *peer_addr)
32234bba 107{
4bc82fc7
JM
108 if (len == 0)
109 return;
110
32234bba 111 if (len >= 8 && os_memcmp(data, "\xaa\xaa\x03\x00\x00\x00", 6) == 0) {
ee3b84be 112 rx_data_eth(wt, bssid, sta_addr, dst, src,
244c9303
JM
113 WPA_GET_BE16(data + 6), data + 8, len - 8, prot,
114 peer_addr);
32234bba
JM
115 return;
116 }
117
4bc82fc7 118 wpa_hexdump(MSG_DEBUG, "Unrecognized LLC", data, len > 8 ? 8 : len);
32234bba
JM
119}
120
121
f5849f1c
JM
122static void write_decrypted_note(struct wlantest *wt, const u8 *decrypted,
123 const u8 *tk, size_t tk_len, int keyid)
124{
125 char tk_hex[65];
126
127 if (!decrypted)
128 return;
129
130 wpa_snprintf_hex(tk_hex, sizeof(tk_hex), tk, tk_len);
131 add_note(wt, MSG_EXCESSIVE, "TK[%d] %s", keyid, tk_hex);
132}
133
134
f5f7286b
JM
135static u8 * try_ptk(int pairwise_cipher, struct wpa_ptk *ptk,
136 const struct ieee80211_hdr *hdr,
137 const u8 *data, size_t data_len, size_t *decrypted_len)
138{
139 u8 *decrypted;
140 unsigned int tk_len = ptk->tk_len;
141
142 decrypted = NULL;
143 if ((pairwise_cipher == WPA_CIPHER_CCMP ||
144 pairwise_cipher == 0) && tk_len == 16) {
145 decrypted = ccmp_decrypt(ptk->tk, hdr, data,
146 data_len, decrypted_len);
147 } else if ((pairwise_cipher == WPA_CIPHER_CCMP_256 ||
148 pairwise_cipher == 0) && tk_len == 32) {
149 decrypted = ccmp_256_decrypt(ptk->tk, hdr, data,
150 data_len, decrypted_len);
151 } else if ((pairwise_cipher == WPA_CIPHER_GCMP ||
152 pairwise_cipher == WPA_CIPHER_GCMP_256 ||
153 pairwise_cipher == 0) &&
154 (tk_len == 16 || tk_len == 32)) {
155 decrypted = gcmp_decrypt(ptk->tk, tk_len, hdr,
156 data, data_len, decrypted_len);
157 } else if ((pairwise_cipher == WPA_CIPHER_TKIP ||
158 pairwise_cipher == 0) && tk_len == 32) {
159 decrypted = tkip_decrypt(ptk->tk, hdr, data, data_len,
160 decrypted_len);
161 }
162
163 return decrypted;
164}
165
166
a0530dff 167static u8 * try_all_ptk(struct wlantest *wt, int pairwise_cipher,
f5849f1c 168 const struct ieee80211_hdr *hdr, int keyid,
a0530dff
JM
169 const u8 *data, size_t data_len, size_t *decrypted_len)
170{
171 struct wlantest_ptk *ptk;
172 u8 *decrypted;
173 int prev_level = wpa_debug_level;
174
175 wpa_debug_level = MSG_WARNING;
176 dl_list_for_each(ptk, &wt->ptk, struct wlantest_ptk, list) {
f5f7286b
JM
177 decrypted = try_ptk(pairwise_cipher, &ptk->ptk, hdr,
178 data, data_len, decrypted_len);
a0530dff
JM
179 if (decrypted) {
180 wpa_debug_level = prev_level;
f5849f1c
JM
181 add_note(wt, MSG_DEBUG,
182 "Found PTK match from list of all known PTKs");
183 write_decrypted_note(wt, decrypted, ptk->ptk.tk,
184 ptk->ptk.tk_len, keyid);
a0530dff
JM
185 return decrypted;
186 }
187 }
188 wpa_debug_level = prev_level;
189
190 return NULL;
191}
192
193
80d41221
JM
194static void check_plaintext_prot(struct wlantest *wt,
195 const struct ieee80211_hdr *hdr,
196 const u8 *data, size_t len)
197{
198 if (len < 8 + 3 || data[8] != 0xaa || data[9] != 0xaa ||
199 data[10] != 0x03)
200 return;
201
202 add_note(wt, MSG_DEBUG,
203 "Plaintext payload in protected frame");
204 wpa_printf(MSG_INFO, "Plaintext payload in protected frame #%u: A2="
205 MACSTR " seq=%u",
206 wt->frame_num, MAC2STR(hdr->addr2),
207 WLAN_GET_SEQ_SEQ(le_to_host16(hdr->seq_ctrl)));
208}
209
210
d318c534
JM
211static void rx_data_bss_prot_group(struct wlantest *wt,
212 const struct ieee80211_hdr *hdr,
e45f2e8a 213 size_t hdrlen,
d318c534
JM
214 const u8 *qos, const u8 *dst, const u8 *src,
215 const u8 *data, size_t len)
216{
217 struct wlantest_bss *bss;
218 int keyid;
eb2223e0 219 u8 *decrypted = NULL;
07d0a5be 220 size_t dlen;
2edd5c23 221 u8 pn[6];
4158b80e 222 int replay = 0;
d318c534
JM
223
224 bss = bss_get(wt, hdr->addr2);
225 if (bss == NULL)
226 return;
227 if (len < 4) {
e4d99217 228 add_note(wt, MSG_INFO, "Too short group addressed data frame");
d318c534
JM
229 return;
230 }
231
20062114
JM
232 if (bss->group_cipher & (WPA_CIPHER_TKIP | WPA_CIPHER_CCMP) &&
233 !(data[3] & 0x20)) {
e4d99217
JM
234 add_note(wt, MSG_INFO, "Expected TKIP/CCMP frame from "
235 MACSTR " did not have ExtIV bit set to 1",
236 MAC2STR(bss->bssid));
237 return;
20062114
JM
238 }
239
16b8b6ea
JM
240 if (bss->group_cipher == WPA_CIPHER_TKIP) {
241 if (data[3] & 0x1f) {
e4d99217
JM
242 add_note(wt, MSG_INFO, "TKIP frame from " MACSTR
243 " used non-zero reserved bit",
244 MAC2STR(bss->bssid));
16b8b6ea
JM
245 }
246 if (data[1] != ((data[0] | 0x20) & 0x7f)) {
e4d99217
JM
247 add_note(wt, MSG_INFO, "TKIP frame from " MACSTR
248 " used incorrect WEPSeed[1] (was 0x%x, "
249 "expected 0x%x)",
250 MAC2STR(bss->bssid), data[1],
251 (data[0] | 0x20) & 0x7f);
16b8b6ea
JM
252 }
253 } else if (bss->group_cipher == WPA_CIPHER_CCMP) {
254 if (data[2] != 0 || (data[3] & 0x1f) != 0) {
e4d99217
JM
255 add_note(wt, MSG_INFO, "CCMP frame from " MACSTR
256 " used non-zero reserved bit",
257 MAC2STR(bss->bssid));
16b8b6ea
JM
258 }
259 }
260
80d41221 261 check_plaintext_prot(wt, hdr, data, len);
d318c534 262 keyid = data[3] >> 6;
2e479416
JM
263 if (bss->gtk_len[keyid] == 0 && bss->group_cipher != WPA_CIPHER_WEP40)
264 {
e4d99217
JM
265 add_note(wt, MSG_MSGDUMP, "No GTK known to decrypt the frame "
266 "(A2=" MACSTR " KeyID=%d)",
267 MAC2STR(hdr->addr2), keyid);
d318c534
JM
268 return;
269 }
270
4dac8453
JM
271 if (bss->group_cipher == WPA_CIPHER_TKIP)
272 tkip_get_pn(pn, data);
2e479416
JM
273 else if (bss->group_cipher == WPA_CIPHER_WEP40)
274 goto skip_replay_det;
4dac8453
JM
275 else
276 ccmp_get_pn(pn, data);
2edd5c23 277 if (os_memcmp(pn, bss->rsc[keyid], 6) <= 0) {
01b397dd 278 u16 seq_ctrl = le_to_host16(hdr->seq_ctrl);
f5849f1c
JM
279 char pn_hex[6 * 2 + 1], rsc_hex[6 * 2 + 1];
280
281 wpa_snprintf_hex(pn_hex, sizeof(pn_hex), pn, 6);
282 wpa_snprintf_hex(rsc_hex, sizeof(rsc_hex), bss->rsc[keyid], 6);
283 add_note(wt, MSG_INFO, "replay detected: A1=" MACSTR
284 " A2=" MACSTR " A3=" MACSTR
285 " seq=%u frag=%u%s keyid=%d %s<=%s",
e4d99217
JM
286 MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
287 MAC2STR(hdr->addr3),
288 WLAN_GET_SEQ_SEQ(seq_ctrl),
3a3cb8ee
AKP
289 WLAN_GET_SEQ_FRAG(seq_ctrl),
290 (le_to_host16(hdr->frame_control) & WLAN_FC_RETRY) ?
f5849f1c
JM
291 " Retry" : "",
292 keyid, pn_hex, rsc_hex);
2edd5c23
JM
293 wpa_hexdump(MSG_INFO, "RX PN", pn, 6);
294 wpa_hexdump(MSG_INFO, "RSC", bss->rsc[keyid], 6);
4158b80e 295 replay = 1;
2edd5c23
JM
296 }
297
2e479416 298skip_replay_det:
2924b0eb
JM
299 if (bss->group_cipher == WPA_CIPHER_TKIP)
300 decrypted = tkip_decrypt(bss->gtk[keyid], hdr, data, len,
301 &dlen);
2e479416
JM
302 else if (bss->group_cipher == WPA_CIPHER_WEP40)
303 decrypted = wep_decrypt(wt, hdr, data, len, &dlen);
eb2223e0 304 else if (bss->group_cipher == WPA_CIPHER_CCMP)
2924b0eb
JM
305 decrypted = ccmp_decrypt(bss->gtk[keyid], hdr, data, len,
306 &dlen);
eb2223e0
AKP
307 else if (bss->group_cipher == WPA_CIPHER_CCMP_256)
308 decrypted = ccmp_256_decrypt(bss->gtk[keyid], hdr, data, len,
309 &dlen);
310 else if (bss->group_cipher == WPA_CIPHER_GCMP ||
311 bss->group_cipher == WPA_CIPHER_GCMP_256)
312 decrypted = gcmp_decrypt(bss->gtk[keyid], bss->gtk_len[keyid],
313 hdr, data, len, &dlen);
314
2edd5c23 315 if (decrypted) {
f5849f1c
JM
316 char gtk[65];
317
318 wpa_snprintf_hex(gtk, sizeof(gtk), bss->gtk[keyid],
319 bss->gtk_len[keyid]);
320 add_note(wt, MSG_EXCESSIVE, "GTK[%d] %s", keyid, gtk);
ee3b84be 321 rx_data_process(wt, bss->bssid, NULL, dst, src, decrypted,
244c9303 322 dlen, 1, NULL);
4158b80e
JM
323 if (!replay)
324 os_memcpy(bss->rsc[keyid], pn, 6);
e45f2e8a 325 write_pcap_decrypted(wt, (const u8 *) hdr, hdrlen,
64f45d07 326 decrypted, dlen);
e4d99217
JM
327 } else
328 add_note(wt, MSG_DEBUG, "Failed to decrypt frame");
07d0a5be 329 os_free(decrypted);
d318c534
JM
330}
331
332
32234bba 333static void rx_data_bss_prot(struct wlantest *wt,
e45f2e8a
JM
334 const struct ieee80211_hdr *hdr, size_t hdrlen,
335 const u8 *qos, const u8 *dst, const u8 *src,
336 const u8 *data, size_t len)
32234bba 337{
aab66128 338 struct wlantest_bss *bss, *bss2;
b39f5834 339 struct wlantest_sta *sta, *sta2;
d318c534
JM
340 int keyid;
341 u16 fc = le_to_host16(hdr->frame_control);
8e467e3c 342 u8 *decrypted = NULL;
d318c534 343 size_t dlen;
2edd5c23 344 int tid;
8e467e3c 345 u8 pn[6], *rsc = NULL;
ace4e460 346 struct wlantest_tdls *tdls = NULL, *found;
b39f5834 347 const u8 *tk = NULL;
a0530dff
JM
348 int ptk_iter_done = 0;
349 int try_ptk_iter = 0;
4158b80e 350 int replay = 0;
d318c534
JM
351
352 if (hdr->addr1[0] & 0x01) {
e45f2e8a
JM
353 rx_data_bss_prot_group(wt, hdr, hdrlen, qos, dst, src,
354 data, len);
d318c534
JM
355 return;
356 }
357
e45f2e8a
JM
358 if ((fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) ==
359 (WLAN_FC_TODS | WLAN_FC_FROMDS)) {
360 bss = bss_find(wt, hdr->addr1);
361 if (bss) {
362 sta = sta_find(bss, hdr->addr2);
aab66128 363 if (sta) {
e45f2e8a
JM
364 sta->counters[
365 WLANTEST_STA_COUNTER_PROT_DATA_TX]++;
97302b39
JM
366 }
367 if (!sta || !sta->ptk_set) {
aab66128
JM
368 bss2 = bss_find(wt, hdr->addr2);
369 if (bss2) {
97302b39
JM
370 sta2 = sta_find(bss2, hdr->addr1);
371 if (sta2 && (!sta || sta2->ptk_set)) {
aab66128 372 bss = bss2;
97302b39
JM
373 sta = sta2;
374 }
aab66128
JM
375 }
376 }
e45f2e8a
JM
377 } else {
378 bss = bss_find(wt, hdr->addr2);
379 if (!bss)
380 return;
381 sta = sta_find(bss, hdr->addr1);
382 }
383 } else if (fc & WLAN_FC_TODS) {
d318c534
JM
384 bss = bss_get(wt, hdr->addr1);
385 if (bss == NULL)
386 return;
387 sta = sta_get(bss, hdr->addr2);
0a9ddd92
JM
388 if (sta)
389 sta->counters[WLANTEST_STA_COUNTER_PROT_DATA_TX]++;
b39f5834 390 } else if (fc & WLAN_FC_FROMDS) {
d318c534
JM
391 bss = bss_get(wt, hdr->addr2);
392 if (bss == NULL)
393 return;
394 sta = sta_get(bss, hdr->addr1);
b39f5834
JM
395 } else {
396 bss = bss_get(wt, hdr->addr3);
397 if (bss == NULL)
398 return;
399 sta = sta_find(bss, hdr->addr2);
400 sta2 = sta_find(bss, hdr->addr1);
401 if (sta == NULL || sta2 == NULL)
402 return;
ace4e460 403 found = NULL;
b39f5834
JM
404 dl_list_for_each(tdls, &bss->tdls, struct wlantest_tdls, list)
405 {
406 if ((tdls->init == sta && tdls->resp == sta2) ||
407 (tdls->init == sta2 && tdls->resp == sta)) {
ace4e460
JM
408 found = tdls;
409 if (tdls->link_up)
410 break;
b39f5834
JM
411 }
412 }
ace4e460
JM
413 if (found) {
414 if (!found->link_up)
415 add_note(wt, MSG_DEBUG,
416 "TDLS: Link not up, but Data "
417 "frame seen");
418 tk = found->tpk.tk;
419 tdls = found;
420 }
d318c534 421 }
80d41221 422 check_plaintext_prot(wt, hdr, data, len);
2e479416
JM
423 if ((sta == NULL ||
424 (!sta->ptk_set && sta->pairwise_cipher != WPA_CIPHER_WEP40)) &&
425 tk == NULL) {
e4d99217 426 add_note(wt, MSG_MSGDUMP, "No PTK known to decrypt the frame");
8e467e3c
JM
427 if (dl_list_empty(&wt->ptk)) {
428 if (len >= 4 && sta) {
429 keyid = data[3] >> 6;
430 goto check_zero_tk;
431 }
a0530dff 432 return;
8e467e3c
JM
433 }
434
a0530dff 435 try_ptk_iter = 1;
d318c534
JM
436 }
437
438 if (len < 4) {
e4d99217 439 add_note(wt, MSG_INFO, "Too short encrypted data frame");
d318c534
JM
440 return;
441 }
442
99d7c1de
JM
443 if (sta == NULL)
444 return;
20062114
JM
445 if (sta->pairwise_cipher & (WPA_CIPHER_TKIP | WPA_CIPHER_CCMP) &&
446 !(data[3] & 0x20)) {
e4d99217
JM
447 add_note(wt, MSG_INFO, "Expected TKIP/CCMP frame from "
448 MACSTR " did not have ExtIV bit set to 1",
449 MAC2STR(src));
450 return;
20062114
JM
451 }
452
b39f5834 453 if (tk == NULL && sta->pairwise_cipher == WPA_CIPHER_TKIP) {
16b8b6ea 454 if (data[3] & 0x1f) {
e4d99217
JM
455 add_note(wt, MSG_INFO, "TKIP frame from " MACSTR
456 " used non-zero reserved bit",
457 MAC2STR(hdr->addr2));
16b8b6ea
JM
458 }
459 if (data[1] != ((data[0] | 0x20) & 0x7f)) {
e4d99217
JM
460 add_note(wt, MSG_INFO, "TKIP frame from " MACSTR
461 " used incorrect WEPSeed[1] (was 0x%x, "
462 "expected 0x%x)",
463 MAC2STR(hdr->addr2), data[1],
464 (data[0] | 0x20) & 0x7f);
16b8b6ea 465 }
b39f5834 466 } else if (tk || sta->pairwise_cipher == WPA_CIPHER_CCMP) {
16b8b6ea 467 if (data[2] != 0 || (data[3] & 0x1f) != 0) {
e4d99217
JM
468 add_note(wt, MSG_INFO, "CCMP frame from " MACSTR
469 " used non-zero reserved bit",
470 MAC2STR(hdr->addr2));
16b8b6ea
JM
471 }
472 }
473
d318c534 474 keyid = data[3] >> 6;
6ea7a152
AW
475 if (keyid != 0 &&
476 (!(sta->rsn_capab & WPA_CAPABILITY_EXT_KEY_ID_FOR_UNICAST) ||
477 !(bss->rsn_capab & WPA_CAPABILITY_EXT_KEY_ID_FOR_UNICAST) ||
478 keyid != 1)) {
479 add_note(wt, MSG_INFO,
480 "Unexpected KeyID %d in individually addressed Data frame from "
481 MACSTR,
e4d99217 482 keyid, MAC2STR(hdr->addr2));
d318c534
JM
483 }
484
99d7c1de 485 if (qos) {
2edd5c23 486 tid = qos[0] & 0x0f;
99d7c1de
JM
487 if (fc & WLAN_FC_TODS)
488 sta->tx_tid[tid]++;
489 else
490 sta->rx_tid[tid]++;
491 } else {
2edd5c23 492 tid = 0;
99d7c1de
JM
493 if (fc & WLAN_FC_TODS)
494 sta->tx_tid[16]++;
495 else
496 sta->rx_tid[16]++;
497 }
b39f5834
JM
498 if (tk) {
499 if (os_memcmp(hdr->addr2, tdls->init->addr, ETH_ALEN) == 0)
500 rsc = tdls->rsc_init[tid];
501 else
502 rsc = tdls->rsc_resp[tid];
aab66128
JM
503 } else if ((fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) ==
504 (WLAN_FC_TODS | WLAN_FC_FROMDS)) {
505 if (os_memcmp(sta->addr, hdr->addr2, ETH_ALEN) == 0)
506 rsc = sta->rsc_tods[tid];
507 else
508 rsc = sta->rsc_fromds[tid];
b39f5834 509 } else if (fc & WLAN_FC_TODS)
2edd5c23
JM
510 rsc = sta->rsc_tods[tid];
511 else
512 rsc = sta->rsc_fromds[tid];
513
514
b39f5834 515 if (tk == NULL && sta->pairwise_cipher == WPA_CIPHER_TKIP)
4dac8453 516 tkip_get_pn(pn, data);
2e479416
JM
517 else if (sta->pairwise_cipher == WPA_CIPHER_WEP40)
518 goto skip_replay_det;
4dac8453
JM
519 else
520 ccmp_get_pn(pn, data);
2edd5c23 521 if (os_memcmp(pn, rsc, 6) <= 0) {
01b397dd 522 u16 seq_ctrl = le_to_host16(hdr->seq_ctrl);
f5849f1c
JM
523 char pn_hex[6 * 2 + 1], rsc_hex[6 * 2 + 1];
524
525 wpa_snprintf_hex(pn_hex, sizeof(pn_hex), pn, 6);
526 wpa_snprintf_hex(rsc_hex, sizeof(rsc_hex), rsc, 6);
527 add_note(wt, MSG_INFO, "replay detected: A1=" MACSTR
528 " A2=" MACSTR " A3=" MACSTR
529 " seq=%u frag=%u%s keyid=%d tid=%d %s<=%s",
e4d99217
JM
530 MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
531 MAC2STR(hdr->addr3),
532 WLAN_GET_SEQ_SEQ(seq_ctrl),
3a3cb8ee
AKP
533 WLAN_GET_SEQ_FRAG(seq_ctrl),
534 (le_to_host16(hdr->frame_control) & WLAN_FC_RETRY) ?
f5849f1c
JM
535 " Retry" : "",
536 keyid, tid, pn_hex, rsc_hex);
2edd5c23
JM
537 wpa_hexdump(MSG_INFO, "RX PN", pn, 6);
538 wpa_hexdump(MSG_INFO, "RSC", rsc, 6);
4158b80e 539 replay = 1;
2edd5c23
JM
540 }
541
2e479416 542skip_replay_det:
eb2223e0 543 if (tk) {
f5849f1c 544 if (sta->pairwise_cipher == WPA_CIPHER_CCMP_256) {
eb2223e0 545 decrypted = ccmp_256_decrypt(tk, hdr, data, len, &dlen);
f5849f1c
JM
546 write_decrypted_note(wt, decrypted, tk, 32, keyid);
547 } else if (sta->pairwise_cipher == WPA_CIPHER_GCMP ||
548 sta->pairwise_cipher == WPA_CIPHER_GCMP_256) {
5420bcf4 549 decrypted = gcmp_decrypt(tk, sta->ptk.tk_len, hdr, data,
eb2223e0 550 len, &dlen);
f5849f1c
JM
551 write_decrypted_note(wt, decrypted, tk, sta->ptk.tk_len,
552 keyid);
553 } else {
eb2223e0 554 decrypted = ccmp_decrypt(tk, hdr, data, len, &dlen);
f5849f1c
JM
555 write_decrypted_note(wt, decrypted, tk, 16, keyid);
556 }
eb2223e0 557 } else if (sta->pairwise_cipher == WPA_CIPHER_TKIP) {
98cd3d1c 558 decrypted = tkip_decrypt(sta->ptk.tk, hdr, data, len, &dlen);
f5849f1c 559 write_decrypted_note(wt, decrypted, sta->ptk.tk, 32, keyid);
eb2223e0 560 } else if (sta->pairwise_cipher == WPA_CIPHER_WEP40) {
2e479416 561 decrypted = wep_decrypt(wt, hdr, data, len, &dlen);
eb2223e0
AKP
562 } else if (sta->ptk_set) {
563 if (sta->pairwise_cipher == WPA_CIPHER_CCMP_256)
98cd3d1c 564 decrypted = ccmp_256_decrypt(sta->ptk.tk, hdr, data,
eb2223e0
AKP
565 len, &dlen);
566 else if (sta->pairwise_cipher == WPA_CIPHER_GCMP ||
567 sta->pairwise_cipher == WPA_CIPHER_GCMP_256)
5420bcf4 568 decrypted = gcmp_decrypt(sta->ptk.tk, sta->ptk.tk_len,
eb2223e0
AKP
569 hdr, data, len, &dlen);
570 else
98cd3d1c 571 decrypted = ccmp_decrypt(sta->ptk.tk, hdr, data, len,
eb2223e0 572 &dlen);
f5849f1c
JM
573 write_decrypted_note(wt, decrypted, sta->ptk.tk,
574 sta->ptk.tk_len, keyid);
eb2223e0 575 } else {
f5849f1c
JM
576 decrypted = try_all_ptk(wt, sta->pairwise_cipher, hdr, keyid,
577 data, len, &dlen);
a0530dff
JM
578 ptk_iter_done = 1;
579 }
580 if (!decrypted && !ptk_iter_done) {
f5849f1c
JM
581 decrypted = try_all_ptk(wt, sta->pairwise_cipher, hdr, keyid,
582 data, len, &dlen);
a0530dff
JM
583 if (decrypted) {
584 add_note(wt, MSG_DEBUG, "Current PTK did not work, but found a match from all known PTKs");
585 }
586 }
8e467e3c 587check_zero_tk:
f5f7286b
JM
588 if (!decrypted) {
589 struct wpa_ptk zero_ptk;
8e467e3c 590 int old_debug_level = wpa_debug_level;
f5f7286b
JM
591
592 os_memset(&zero_ptk, 0, sizeof(zero_ptk));
593 zero_ptk.tk_len = wpa_cipher_key_len(sta->pairwise_cipher);
8e467e3c 594 wpa_debug_level = MSG_ERROR;
f5f7286b
JM
595 decrypted = try_ptk(sta->pairwise_cipher, &zero_ptk, hdr,
596 data, len, &dlen);
8e467e3c 597 wpa_debug_level = old_debug_level;
f5f7286b
JM
598 if (decrypted) {
599 add_note(wt, MSG_DEBUG,
600 "Frame was encrypted with zero TK");
8e467e3c
JM
601 wpa_printf(MSG_INFO, "Zero TK used in frame #%u: A2="
602 MACSTR " seq=%u",
603 wt->frame_num, MAC2STR(hdr->addr2),
604 WLAN_GET_SEQ_SEQ(
605 le_to_host16(hdr->seq_ctrl)));
f5f7286b
JM
606 write_decrypted_note(wt, decrypted, zero_ptk.tk,
607 zero_ptk.tk_len, keyid);
608 }
609 }
2edd5c23 610 if (decrypted) {
244c9303 611 u16 fc = le_to_host16(hdr->frame_control);
9559a7f8 612 const u8 *peer_addr = NULL;
244c9303
JM
613 if (!(fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)))
614 peer_addr = hdr->addr1;
8e467e3c 615 if (!replay && rsc)
4158b80e 616 os_memcpy(rsc, pn, 6);
ee3b84be 617 rx_data_process(wt, bss->bssid, sta->addr, dst, src, decrypted,
244c9303 618 dlen, 1, peer_addr);
e45f2e8a 619 write_pcap_decrypted(wt, (const u8 *) hdr, hdrlen,
64f45d07 620 decrypted, dlen);
b3c43c3c
JM
621 } else {
622 if (!try_ptk_iter)
623 add_note(wt, MSG_DEBUG, "Failed to decrypt frame");
624
625 /* Assume the frame was corrupted and there was no FCS to check.
626 * Allow retry of this particular frame to be processed so that
627 * it could end up getting decrypted if it was received without
628 * corruption. */
629 sta->allow_duplicate = 1;
630 }
d318c534 631 os_free(decrypted);
32234bba
JM
632}
633
634
635static void rx_data_bss(struct wlantest *wt, const struct ieee80211_hdr *hdr,
e45f2e8a
JM
636 size_t hdrlen, const u8 *qos, const u8 *dst,
637 const u8 *src, const u8 *data, size_t len)
32234bba
JM
638{
639 u16 fc = le_to_host16(hdr->frame_control);
640 int prot = !!(fc & WLAN_FC_ISWEP);
641
642 if (qos) {
643 u8 ack = (qos[0] & 0x60) >> 5;
644 wpa_printf(MSG_MSGDUMP, "BSS DATA: " MACSTR " -> " MACSTR
645 " len=%u%s tid=%u%s%s",
646 MAC2STR(src), MAC2STR(dst), (unsigned int) len,
647 prot ? " Prot" : "", qos[0] & 0x0f,
648 (qos[0] & 0x10) ? " EOSP" : "",
649 ack == 0 ? "" :
650 (ack == 1 ? " NoAck" :
651 (ack == 2 ? " NoExpAck" : " BA")));
652 } else {
653 wpa_printf(MSG_MSGDUMP, "BSS DATA: " MACSTR " -> " MACSTR
654 " len=%u%s",
655 MAC2STR(src), MAC2STR(dst), (unsigned int) len,
656 prot ? " Prot" : "");
657 }
658
659 if (prot)
e45f2e8a 660 rx_data_bss_prot(wt, hdr, hdrlen, qos, dst, src, data, len);
ee3b84be 661 else {
244c9303 662 const u8 *bssid, *sta_addr, *peer_addr;
99d7c1de
JM
663 struct wlantest_bss *bss;
664
ee3b84be
JM
665 if (fc & WLAN_FC_TODS) {
666 bssid = hdr->addr1;
667 sta_addr = hdr->addr2;
244c9303
JM
668 peer_addr = NULL;
669 } else if (fc & WLAN_FC_FROMDS) {
ee3b84be
JM
670 bssid = hdr->addr2;
671 sta_addr = hdr->addr1;
244c9303
JM
672 peer_addr = NULL;
673 } else {
674 bssid = hdr->addr3;
675 sta_addr = hdr->addr2;
676 peer_addr = hdr->addr1;
ee3b84be 677 }
99d7c1de
JM
678
679 bss = bss_get(wt, bssid);
680 if (bss) {
681 struct wlantest_sta *sta = sta_get(bss, sta_addr);
682
683 if (sta) {
684 if (qos) {
685 int tid = qos[0] & 0x0f;
686 if (fc & WLAN_FC_TODS)
687 sta->tx_tid[tid]++;
688 else
689 sta->rx_tid[tid]++;
690 } else {
691 if (fc & WLAN_FC_TODS)
692 sta->tx_tid[16]++;
693 else
694 sta->rx_tid[16]++;
695 }
696 }
697 }
698
244c9303
JM
699 rx_data_process(wt, bssid, sta_addr, dst, src, data, len, 0,
700 peer_addr);
ee3b84be 701 }
32234bba
JM
702}
703
704
0e42fff3
JM
705static struct wlantest_tdls * get_tdls(struct wlantest *wt, const u8 *bssid,
706 const u8 *sta1_addr,
707 const u8 *sta2_addr)
708{
709 struct wlantest_bss *bss;
710 struct wlantest_sta *sta1, *sta2;
ace4e460 711 struct wlantest_tdls *tdls, *found = NULL;
0e42fff3
JM
712
713 bss = bss_find(wt, bssid);
714 if (bss == NULL)
715 return NULL;
716 sta1 = sta_find(bss, sta1_addr);
717 if (sta1 == NULL)
718 return NULL;
719 sta2 = sta_find(bss, sta2_addr);
720 if (sta2 == NULL)
721 return NULL;
722
723 dl_list_for_each(tdls, &bss->tdls, struct wlantest_tdls, list) {
724 if ((tdls->init == sta1 && tdls->resp == sta2) ||
ace4e460
JM
725 (tdls->init == sta2 && tdls->resp == sta1)) {
726 found = tdls;
727 if (tdls->link_up)
728 break;
729 }
0e42fff3
JM
730 }
731
ace4e460 732 return found;
0e42fff3
JM
733}
734
735
736static void add_direct_link(struct wlantest *wt, const u8 *bssid,
737 const u8 *sta1_addr, const u8 *sta2_addr)
738{
739 struct wlantest_tdls *tdls;
740
741 tdls = get_tdls(wt, bssid, sta1_addr, sta2_addr);
742 if (tdls == NULL)
743 return;
744
745 if (tdls->link_up)
746 tdls->counters[WLANTEST_TDLS_COUNTER_VALID_DIRECT_LINK]++;
747 else
748 tdls->counters[WLANTEST_TDLS_COUNTER_INVALID_DIRECT_LINK]++;
749}
750
751
752static void add_ap_path(struct wlantest *wt, const u8 *bssid,
753 const u8 *sta1_addr, const u8 *sta2_addr)
754{
755 struct wlantest_tdls *tdls;
756
757 tdls = get_tdls(wt, bssid, sta1_addr, sta2_addr);
758 if (tdls == NULL)
759 return;
760
761 if (tdls->link_up)
762 tdls->counters[WLANTEST_TDLS_COUNTER_INVALID_AP_PATH]++;
763 else
764 tdls->counters[WLANTEST_TDLS_COUNTER_VALID_AP_PATH]++;
765}
766
767
2d73f0a8
JM
768void rx_data(struct wlantest *wt, const u8 *data, size_t len)
769{
770 const struct ieee80211_hdr *hdr;
32234bba
JM
771 u16 fc, stype;
772 size_t hdrlen;
773 const u8 *qos = NULL;
2d73f0a8
JM
774
775 if (len < 24)
776 return;
777
778 hdr = (const struct ieee80211_hdr *) data;
779 fc = le_to_host16(hdr->frame_control);
32234bba
JM
780 stype = WLAN_FC_GET_STYPE(fc);
781 hdrlen = 24;
782 if ((fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) ==
783 (WLAN_FC_TODS | WLAN_FC_FROMDS))
784 hdrlen += ETH_ALEN;
785 if (stype & 0x08) {
786 qos = data + hdrlen;
787 hdrlen += 2;
788 }
789 if (len < hdrlen)
790 return;
2d73f0a8
JM
791 wt->rx_data++;
792
793 switch (fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) {
794 case 0:
795 wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s IBSS DA=" MACSTR " SA="
796 MACSTR " BSSID=" MACSTR,
797 data_stype(WLAN_FC_GET_STYPE(fc)),
798 fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
799 fc & WLAN_FC_ISWEP ? " Prot" : "",
800 MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
801 MAC2STR(hdr->addr3));
0e42fff3 802 add_direct_link(wt, hdr->addr3, hdr->addr1, hdr->addr2);
e45f2e8a 803 rx_data_bss(wt, hdr, hdrlen, qos, hdr->addr1, hdr->addr2,
b39f5834 804 data + hdrlen, len - hdrlen);
2d73f0a8
JM
805 break;
806 case WLAN_FC_FROMDS:
807 wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s FromDS DA=" MACSTR
808 " BSSID=" MACSTR " SA=" MACSTR,
809 data_stype(WLAN_FC_GET_STYPE(fc)),
810 fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
811 fc & WLAN_FC_ISWEP ? " Prot" : "",
812 MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
813 MAC2STR(hdr->addr3));
0e42fff3 814 add_ap_path(wt, hdr->addr2, hdr->addr1, hdr->addr3);
e45f2e8a 815 rx_data_bss(wt, hdr, hdrlen, qos, hdr->addr1, hdr->addr3,
32234bba 816 data + hdrlen, len - hdrlen);
2d73f0a8
JM
817 break;
818 case WLAN_FC_TODS:
819 wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s ToDS BSSID=" MACSTR
820 " SA=" MACSTR " DA=" MACSTR,
821 data_stype(WLAN_FC_GET_STYPE(fc)),
822 fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
823 fc & WLAN_FC_ISWEP ? " Prot" : "",
824 MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
825 MAC2STR(hdr->addr3));
0e42fff3 826 add_ap_path(wt, hdr->addr1, hdr->addr3, hdr->addr2);
e45f2e8a 827 rx_data_bss(wt, hdr, hdrlen, qos, hdr->addr3, hdr->addr2,
32234bba 828 data + hdrlen, len - hdrlen);
2d73f0a8
JM
829 break;
830 case WLAN_FC_TODS | WLAN_FC_FROMDS:
831 wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s WDS RA=" MACSTR " TA="
832 MACSTR " DA=" MACSTR " SA=" MACSTR,
833 data_stype(WLAN_FC_GET_STYPE(fc)),
834 fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
835 fc & WLAN_FC_ISWEP ? " Prot" : "",
836 MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
837 MAC2STR(hdr->addr3),
838 MAC2STR((const u8 *) (hdr + 1)));
e45f2e8a
JM
839 rx_data_bss(wt, hdr, hdrlen, qos, hdr->addr1, hdr->addr2,
840 data + hdrlen, len - hdrlen);
2d73f0a8
JM
841 break;
842 }
843}