]> git.ipfire.org Git - thirdparty/iw.git/blame - scan.c
update version to 3.10
[thirdparty/iw.git] / scan.c
CommitLineData
3563f4c5
JB
1#include <net/if.h>
2#include <errno.h>
3#include <string.h>
4#include <ctype.h>
764fe753 5#include <stdbool.h>
3563f4c5
JB
6
7#include <netlink/genl/genl.h>
8#include <netlink/genl/family.h>
9#include <netlink/genl/ctrl.h>
10#include <netlink/msg.h>
11#include <netlink/attr.h>
12
13#include "nl80211.h"
14#include "iw.h"
15
92a04ecd
MH
16#define WLAN_CAPABILITY_ESS (1<<0)
17#define WLAN_CAPABILITY_IBSS (1<<1)
18#define WLAN_CAPABILITY_CF_POLLABLE (1<<2)
19#define WLAN_CAPABILITY_CF_POLL_REQUEST (1<<3)
20#define WLAN_CAPABILITY_PRIVACY (1<<4)
21#define WLAN_CAPABILITY_SHORT_PREAMBLE (1<<5)
22#define WLAN_CAPABILITY_PBCC (1<<6)
23#define WLAN_CAPABILITY_CHANNEL_AGILITY (1<<7)
24#define WLAN_CAPABILITY_SPECTRUM_MGMT (1<<8)
25#define WLAN_CAPABILITY_QOS (1<<9)
26#define WLAN_CAPABILITY_SHORT_SLOT_TIME (1<<10)
27#define WLAN_CAPABILITY_APSD (1<<11)
2e8b82c1 28#define WLAN_CAPABILITY_RADIO_MEASURE (1<<12)
92a04ecd 29#define WLAN_CAPABILITY_DSSS_OFDM (1<<13)
2e8b82c1
VK
30#define WLAN_CAPABILITY_DEL_BACK (1<<14)
31#define WLAN_CAPABILITY_IMM_BACK (1<<15)
32/* DMG (60gHz) 802.11ad */
33/* type - bits 0..1 */
34#define WLAN_CAPABILITY_DMG_TYPE_MASK (3<<0)
35
36#define WLAN_CAPABILITY_DMG_TYPE_IBSS (1<<0) /* Tx by: STA */
37#define WLAN_CAPABILITY_DMG_TYPE_PBSS (2<<0) /* Tx by: PCP */
38#define WLAN_CAPABILITY_DMG_TYPE_AP (3<<0) /* Tx by: AP */
39
40#define WLAN_CAPABILITY_DMG_CBAP_ONLY (1<<2)
41#define WLAN_CAPABILITY_DMG_CBAP_SOURCE (1<<3)
42#define WLAN_CAPABILITY_DMG_PRIVACY (1<<4)
43#define WLAN_CAPABILITY_DMG_ECPAC (1<<5)
44
45#define WLAN_CAPABILITY_DMG_SPECTRUM_MGMT (1<<8)
46#define WLAN_CAPABILITY_DMG_RADIO_MEASURE (1<<12)
92a04ecd 47
3bd60ef1
JB
48static unsigned char ms_oui[3] = { 0x00, 0x50, 0xf2 };
49static unsigned char ieee80211_oui[3] = { 0x00, 0x0f, 0xac };
9a22374a 50static unsigned char wfa_oui[3] = { 0x50, 0x6f, 0x9a };
857d966e 51
764fe753
JB
52struct scan_params {
53 bool unknown;
febeb0c0 54 enum print_ie_type type;
575280cc 55 bool show_both_ie_sets;
764fe753
JB
56};
57
2b690f0a
LR
58#define IEEE80211_COUNTRY_EXTENSION_ID 201
59
72725719
JB
60union ieee80211_country_ie_triplet {
61 struct {
62 __u8 first_channel;
63 __u8 num_channels;
64 __s8 max_power;
65 } __attribute__ ((packed)) chans;
66 struct {
67 __u8 reg_extension_id;
68 __u8 reg_class;
69 __u8 coverage_class;
70 } __attribute__ ((packed)) ext;
2b690f0a
LR
71} __attribute__ ((packed));
72
7c37a24d
JB
73static int handle_scan(struct nl80211_state *state,
74 struct nl_cb *cb,
3563f4c5 75 struct nl_msg *msg,
05514f95
JB
76 int argc, char **argv,
77 enum id_input id)
3563f4c5 78{
559a1713
JB
79 struct nl_msg *ssids = NULL, *freqs = NULL;
80 char *eptr;
3563f4c5 81 int err = -ENOBUFS;
559a1713
JB
82 int i;
83 enum {
84 NONE,
85 FREQ,
64797a7f 86 IES,
559a1713
JB
87 SSID,
88 DONE,
89 } parse = NONE;
90 int freq;
91 bool passive = false, have_ssids = false, have_freqs = false;
64797a7f
JB
92 size_t tmp;
93 unsigned char *ies;
fe862239 94 int flags = 0;
3563f4c5
JB
95
96 ssids = nlmsg_alloc();
97 if (!ssids)
98 return -ENOMEM;
559a1713
JB
99
100 freqs = nlmsg_alloc();
101 if (!freqs) {
102 nlmsg_free(ssids);
103 return -ENOMEM;
104 }
105
106 for (i = 0; i < argc; i++) {
559a1713
JB
107 switch (parse) {
108 case NONE:
64797a7f
JB
109 if (strcmp(argv[i], "freq") == 0) {
110 parse = FREQ;
111 have_freqs = true;
112 break;
113 } else if (strcmp(argv[i], "ies") == 0) {
114 parse = IES;
115 break;
fe862239
SL
116 } else if (strcmp(argv[i], "lowpri") == 0) {
117 parse = NONE;
118 flags |= NL80211_SCAN_FLAG_LOW_PRIORITY;
119 break;
120 } else if (strcmp(argv[i], "flush") == 0) {
121 parse = NONE;
122 flags |= NL80211_SCAN_FLAG_FLUSH;
123 break;
ced94d5f
AQ
124 } else if (strcmp(argv[i], "ap-force") == 0) {
125 parse = NONE;
126 flags |= NL80211_SCAN_FLAG_AP;
127 break;
64797a7f
JB
128 } else if (strcmp(argv[i], "ssid") == 0) {
129 parse = SSID;
130 have_ssids = true;
131 break;
132 } else if (strcmp(argv[i], "passive") == 0) {
133 parse = DONE;
134 passive = true;
135 break;
136 }
559a1713
JB
137 case DONE:
138 return 1;
139 case FREQ:
140 freq = strtoul(argv[i], &eptr, 10);
cc12e895
JB
141 if (eptr != argv[i] + strlen(argv[i])) {
142 /* failed to parse as number -- maybe a tag? */
143 i--;
144 parse = NONE;
145 continue;
146 }
559a1713 147 NLA_PUT_U32(freqs, i, freq);
64797a7f
JB
148 break;
149 case IES:
150 ies = parse_hex(argv[i], &tmp);
151 if (!ies)
152 goto nla_put_failure;
153 NLA_PUT(msg, NL80211_ATTR_IE, tmp, ies);
154 free(ies);
155 parse = NONE;
559a1713
JB
156 break;
157 case SSID:
158 NLA_PUT(ssids, i, strlen(argv[i]), argv[i]);
159 break;
160 }
161 }
162
163 if (!have_ssids)
164 NLA_PUT(ssids, 1, 0, "");
165 if (!passive)
166 nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids);
167
168 if (have_freqs)
169 nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
fe862239
SL
170 if (flags)
171 NLA_PUT_U32(msg, NL80211_ATTR_SCAN_FLAGS, flags);
3563f4c5
JB
172
173 err = 0;
174 nla_put_failure:
175 nlmsg_free(ssids);
559a1713 176 nlmsg_free(freqs);
3563f4c5
JB
177 return err;
178}
3563f4c5 179
857d966e
MH
180static void tab_on_first(bool *first)
181{
182 if (!*first)
183 printf("\t");
184 else
185 *first = false;
186}
187
83b4934c 188static void print_ssid(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5 189{
83b4934c 190 printf(" ");
748f8489 191 print_ssid_escaped(len, data);
3563f4c5
JB
192 printf("\n");
193}
194
ca159934 195#define BSS_MEMBERSHIP_SELECTOR_VHT_PHY 126
1fd19c39
CL
196#define BSS_MEMBERSHIP_SELECTOR_HT_PHY 127
197
83b4934c 198static void print_supprates(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5
JB
199{
200 int i;
201
83b4934c 202 printf(" ");
3563f4c5 203
83b4934c 204 for (i = 0; i < len; i++) {
3563f4c5 205 int r = data[i] & 0x7f;
1fd19c39 206
ca159934
JB
207 if (r == BSS_MEMBERSHIP_SELECTOR_VHT_PHY && data[i] & 0x80)
208 printf("VHT");
209 else if (r == BSS_MEMBERSHIP_SELECTOR_HT_PHY && data[i] & 0x80)
1fd19c39
CL
210 printf("HT");
211 else
212 printf("%d.%d", r/2, 5*(r&1));
213
214 printf("%s ", data[i] & 0x80 ? "*" : "");
3563f4c5
JB
215 }
216 printf("\n");
217}
218
83b4934c 219static void print_ds(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5 220{
83b4934c 221 printf(" channel %d\n", data[0]);
3563f4c5
JB
222}
223
2b690f0a 224static const char *country_env_str(char environment)
b7e8fa37 225{
2b690f0a 226 switch (environment) {
b7e8fa37 227 case 'I':
2b690f0a 228 return "Indoor only";
b7e8fa37 229 case 'O':
2b690f0a 230 return "Outdoor only";
b6c0d634 231 case ' ':
2b690f0a 232 return "Indoor/Outdoor";
b6c0d634 233 default:
2b690f0a 234 return "bogus";
b7e8fa37 235 }
2b690f0a
LR
236}
237
238static void print_country(const uint8_t type, uint8_t len, const uint8_t *data)
239{
240 printf(" %.*s", 2, data);
241
242 printf("\tEnvironment: %s\n", country_env_str(data[2]));
243
244 data += 3;
245 len -= 3;
246
247 if (len < 3) {
248 printf("\t\tNo country IE triplets present\n");
249 return;
250 }
251
252 while (len >= 3) {
253 int end_channel;
72725719 254 union ieee80211_country_ie_triplet *triplet = (void *) data;
2b690f0a
LR
255
256 if (triplet->ext.reg_extension_id >= IEEE80211_COUNTRY_EXTENSION_ID) {
257 printf("\t\tExtension ID: %d Regulatory Class: %d Coverage class: %d (up to %dm)\n",
258 triplet->ext.reg_extension_id,
259 triplet->ext.reg_class,
260 triplet->ext.coverage_class,
261 triplet->ext.coverage_class * 450);
262
263 data += 3;
264 len -= 3;
265 continue;
266 }
267
268 /* 2 GHz */
269 if (triplet->chans.first_channel <= 14)
270 end_channel = triplet->chans.first_channel + (triplet->chans.num_channels - 1);
271 else
272 end_channel = triplet->chans.first_channel + (4 * (triplet->chans.num_channels - 1));
273
a9859d30 274 printf("\t\tChannels [%d - %d] @ %d dBm\n", triplet->chans.first_channel, end_channel, triplet->chans.max_power);
2b690f0a
LR
275
276 data += 3;
277 len -= 3;
278 }
279
280 return;
b7e8fa37
MH
281}
282
d1563a1b
MH
283static void print_powerconstraint(const uint8_t type, uint8_t len, const uint8_t *data)
284{
285 printf(" %d dB\n", data[0]);
286}
287
792172b0
JM
288static void print_tpcreport(const uint8_t type, uint8_t len, const uint8_t *data)
289{
290 printf(" TX power: %d dBm\n", data[0]);
291 /* printf(" Link Margin (%d dB) is reserved in Beacons\n", data[1]); */
292}
293
83b4934c 294static void print_erp(const uint8_t type, uint8_t len, const uint8_t *data)
fc4d1484
MH
295{
296 if (data[0] == 0x00)
83b4934c 297 printf(" <no flags>");
fc4d1484
MH
298 if (data[0] & 0x01)
299 printf(" NonERP_Present");
300 if (data[0] & 0x02)
301 printf(" Use_Protection");
302 if (data[0] & 0x04)
303 printf(" Barker_Preamble_Mode");
304 printf("\n");
305}
306
83b4934c 307static void print_cipher(const uint8_t *data)
857d966e 308{
3bd60ef1 309 if (memcmp(data, ms_oui, 3) == 0) {
857d966e 310 switch (data[3]) {
510e0e2f 311 case 0:
857d966e
MH
312 printf("Use group cipher suite");
313 break;
510e0e2f 314 case 1:
857d966e
MH
315 printf("WEP-40");
316 break;
510e0e2f 317 case 2:
857d966e
MH
318 printf("TKIP");
319 break;
510e0e2f 320 case 4:
857d966e
MH
321 printf("CCMP");
322 break;
510e0e2f 323 case 5:
857d966e
MH
324 printf("WEP-104");
325 break;
326 default:
332769c6 327 printf("%.02x-%.02x-%.02x:%d",
5594fd23 328 data[0], data[1] ,data[2], data[3]);
857d966e
MH
329 break;
330 }
331 } else if (memcmp(data, ieee80211_oui, 3) == 0) {
332 switch (data[3]) {
510e0e2f 333 case 0:
857d966e
MH
334 printf("Use group cipher suite");
335 break;
510e0e2f 336 case 1:
857d966e
MH
337 printf("WEP-40");
338 break;
510e0e2f 339 case 2:
857d966e
MH
340 printf("TKIP");
341 break;
510e0e2f 342 case 4:
857d966e
MH
343 printf("CCMP");
344 break;
510e0e2f 345 case 5:
857d966e
MH
346 printf("WEP-104");
347 break;
510e0e2f 348 case 6:
857d966e
MH
349 printf("AES-128-CMAC");
350 break;
a8b3da9d
VK
351 case 8:
352 printf("GCMP");
353 break;
857d966e 354 default:
332769c6 355 printf("%.02x-%.02x-%.02x:%d",
5594fd23 356 data[0], data[1] ,data[2], data[3]);
857d966e
MH
357 break;
358 }
359 } else
332769c6 360 printf("%.02x-%.02x-%.02x:%d",
5594fd23 361 data[0], data[1] ,data[2], data[3]);
857d966e
MH
362}
363
83b4934c 364static void print_auth(const uint8_t *data)
857d966e 365{
3bd60ef1 366 if (memcmp(data, ms_oui, 3) == 0) {
857d966e 367 switch (data[3]) {
510e0e2f 368 case 1:
857d966e
MH
369 printf("IEEE 802.1X");
370 break;
510e0e2f 371 case 2:
857d966e
MH
372 printf("PSK");
373 break;
374 default:
332769c6 375 printf("%.02x-%.02x-%.02x:%d",
5594fd23 376 data[0], data[1] ,data[2], data[3]);
857d966e
MH
377 break;
378 }
379 } else if (memcmp(data, ieee80211_oui, 3) == 0) {
380 switch (data[3]) {
510e0e2f 381 case 1:
857d966e
MH
382 printf("IEEE 802.1X");
383 break;
510e0e2f 384 case 2:
857d966e
MH
385 printf("PSK");
386 break;
0fe1c415
JB
387 case 3:
388 printf("FT/IEEE 802.1X");
389 break;
390 case 4:
391 printf("FT/PSK");
392 break;
393 case 5:
394 printf("IEEE 802.1X/SHA-256");
395 break;
396 case 6:
397 printf("PSK/SHA-256");
398 break;
857d966e 399 default:
332769c6 400 printf("%.02x-%.02x-%.02x:%d",
5594fd23 401 data[0], data[1] ,data[2], data[3]);
857d966e
MH
402 break;
403 }
404 } else
332769c6 405 printf("%.02x-%.02x-%.02x:%d",
5594fd23 406 data[0], data[1] ,data[2], data[3]);
857d966e
MH
407}
408
83b4934c
JB
409static void print_rsn_ie(const char *defcipher, const char *defauth,
410 uint8_t len, const uint8_t *data)
857d966e
MH
411{
412 bool first = true;
413 __u16 version, count, capa;
414 int i;
415
857d966e
MH
416 version = data[0] + (data[1] << 8);
417 tab_on_first(&first);
418 printf("\t * Version: %d\n", version);
419
420 data += 2;
421 len -= 2;
422
423 if (len < 4) {
424 tab_on_first(&first);
425 printf("\t * Group cipher: %s\n", defcipher);
426 printf("\t * Pairwise ciphers: %s\n", defcipher);
427 return;
428 }
429
430 tab_on_first(&first);
431 printf("\t * Group cipher: ");
432 print_cipher(data);
433 printf("\n");
434
435 data += 4;
436 len -= 4;
437
438 if (len < 2) {
439 tab_on_first(&first);
440 printf("\t * Pairwise ciphers: %s\n", defcipher);
441 return;
442 }
443
444 count = data[0] | (data[1] << 8);
31d477fb
MH
445 if (2 + (count * 4) > len)
446 goto invalid;
447
857d966e
MH
448 tab_on_first(&first);
449 printf("\t * Pairwise ciphers:");
31d477fb 450 for (i = 0; i < count; i++) {
857d966e
MH
451 printf(" ");
452 print_cipher(data + 2 + (i * 4));
453 }
454 printf("\n");
455
456 data += 2 + (count * 4);
457 len -= 2 + (count * 4);
458
459 if (len < 2) {
460 tab_on_first(&first);
461 printf("\t * Authentication suites: %s\n", defauth);
462 return;
463 }
464
465 count = data[0] | (data[1] << 8);
31d477fb
MH
466 if (2 + (count * 4) > len)
467 goto invalid;
468
857d966e
MH
469 tab_on_first(&first);
470 printf("\t * Authentication suites:");
83b4934c 471 for (i = 0; i < count; i++) {
857d966e
MH
472 printf(" ");
473 print_auth(data + 2 + (i * 4));
474 }
475 printf("\n");
476
477 data += 2 + (count * 4);
478 len -= 2 + (count * 4);
479
6a4f24e8
JB
480 if (len >= 2) {
481 capa = data[0] | (data[1] << 8);
482 tab_on_first(&first);
cadbe89a
JB
483 printf("\t * Capabilities:");
484 if (capa & 0x0001)
485 printf(" PreAuth");
486 if (capa & 0x0002)
487 printf(" NoPairwise");
488 switch ((capa & 0x000c) >> 2) {
489 case 0:
490 break;
491 case 1:
492 printf(" 2-PTKSA-RC");
493 break;
494 case 2:
495 printf(" 4-PTKSA-RC");
496 break;
497 case 3:
498 printf(" 16-PTKSA-RC");
499 break;
500 }
501 switch ((capa & 0x0030) >> 4) {
502 case 0:
503 break;
504 case 1:
505 printf(" 2-GTKSA-RC");
506 break;
507 case 2:
508 printf(" 4-GTKSA-RC");
509 break;
510 case 3:
511 printf(" 16-GTKSA-RC");
512 break;
513 }
514 if (capa & 0x0040)
515 printf(" MFP-required");
516 if (capa & 0x0080)
517 printf(" MFP-capable");
518 if (capa & 0x0200)
519 printf(" Peerkey-enabled");
520 if (capa & 0x0400)
521 printf(" SPP-AMSDU-capable");
522 if (capa & 0x0800)
523 printf(" SPP-AMSDU-required");
524 printf(" (0x%.4x)\n", capa);
6a4f24e8
JB
525 data += 2;
526 len -= 2;
527 }
31d477fb 528
5ba3f523
JB
529 if (len >= 2) {
530 int pmkid_count = data[0] | (data[1] << 8);
531
532 if (len >= 2 + 16 * pmkid_count) {
533 tab_on_first(&first);
534 printf("\t * %d PMKIDs\n", pmkid_count);
535 /* not printing PMKID values */
536 data += 2 + 16 * pmkid_count;
537 len -= 2 + 16 * pmkid_count;
538 } else
539 goto invalid;
540 }
541
542 if (len >= 4) {
543 tab_on_first(&first);
544 printf("\t * Group mgmt cipher suite: ");
545 print_cipher(data);
546 printf("\n");
547 data += 4;
548 len -= 4;
549 }
550
cadbe89a 551 invalid:
31d477fb
MH
552 if (len != 0) {
553 printf("\t\t * bogus tail data (%d):", len);
554 while (len) {
555 printf(" %.2x", *data);
556 data++;
557 len--;
558 }
559 printf("\n");
560 }
857d966e
MH
561}
562
83b4934c 563static void print_rsn(const uint8_t type, uint8_t len, const uint8_t *data)
857d966e 564{
83b4934c 565 print_rsn_ie("CCMP", "IEEE 802.1X", len, data);
857d966e
MH
566}
567
0c445c24
LR
568static void print_ht_capa(const uint8_t type, uint8_t len, const uint8_t *data)
569{
357c1a5d 570 printf("\n");
7ddfb679
JB
571 print_ht_capability(data[0] | (data[1] << 8));
572 print_ampdu_length(data[2] & 3);
c79c7464 573 print_ampdu_spacing((data[2] >> 2) & 7);
7ddfb679 574 print_ht_mcs(data + 3);
0c445c24
LR
575}
576
29f7579e
JB
577static const char *ht_secondary_offset[4] = {
578 "no secondary",
579 "above",
580 "[reserved!]",
581 "below",
582};
583
be7602fb
JB
584static void print_ht_op(const uint8_t type, uint8_t len, const uint8_t *data)
585{
be7602fb
JB
586 static const char *protection[4] = {
587 "no",
588 "nonmember",
589 "20 MHz",
590 "non-HT mixed",
591 };
592 static const char *sta_chan_width[2] = {
593 "20 MHz",
594 "any",
595 };
596
597 printf("\n");
598 printf("\t\t * primary channel: %d\n", data[0]);
599 printf("\t\t * secondary channel offset: %s\n",
29f7579e 600 ht_secondary_offset[data[1] & 0x3]);
be7602fb
JB
601 printf("\t\t * STA channel width: %s\n", sta_chan_width[(data[1] & 0x4)>>2]);
602 printf("\t\t * RIFS: %d\n", (data[1] & 0x8)>>3);
603 printf("\t\t * HT protection: %s\n", protection[data[2] & 0x3]);
604 printf("\t\t * non-GF present: %d\n", (data[2] & 0x4) >> 2);
605 printf("\t\t * OBSS non-GF present: %d\n", (data[2] & 0x10) >> 4);
606 printf("\t\t * dual beacon: %d\n", (data[4] & 0x40) >> 6);
607 printf("\t\t * dual CTS protection: %d\n", (data[4] & 0x80) >> 7);
608 printf("\t\t * STBC beacon: %d\n", data[5] & 0x1);
609 printf("\t\t * L-SIG TXOP Prot: %d\n", (data[5] & 0x2) >> 1);
610 printf("\t\t * PCO active: %d\n", (data[5] & 0x4) >> 2);
611 printf("\t\t * PCO phase: %d\n", (data[5] & 0x8) >> 3);
612}
613
83b4934c 614static void print_capabilities(const uint8_t type, uint8_t len, const uint8_t *data)
9b880b00 615{
31d2d259
JB
616 int i, base, bit;
617 bool first = true;
618
619
620 for (i = 0; i < len; i++) {
621 base = i * 8;
622
623 for (bit = 0; bit < 8; bit++) {
624 if (!(data[i] & (1 << bit)))
625 continue;
626
627 if (!first)
628 printf(",");
629 else
630 first = false;
631
70c649d2
JB
632#define CAPA(bit, name) case bit: printf(" " name); break
633
31d2d259 634 switch (bit + base) {
70c649d2
JB
635 CAPA(0, "HT Information Exchange Supported");
636 CAPA(1, "reserved (On-demand Beacon)");
637 CAPA(2, "Extended Channel Switching");
638 CAPA(3, "reserved (Wave Indication)");
639 CAPA(4, "PSMP Capability");
640 CAPA(5, "reserved (Service Interval Granularity)");
641 CAPA(6, "S-PSMP Capability");
642 CAPA(7, "Event");
643 CAPA(8, "Diagnostics");
644 CAPA(9, "Multicast Diagnostics");
645 CAPA(10, "Location Tracking");
646 CAPA(11, "FMS");
647 CAPA(12, "Proxy ARP Service");
648 CAPA(13, "Collocated Interference Reporting");
649 CAPA(14, "Civic Location");
650 CAPA(15, "Geospatial Location");
651 CAPA(16, "TFS");
652 CAPA(17, "WNM-Sleep Mode");
653 CAPA(18, "TIM Broadcast");
654 CAPA(19, "BSS Transition");
655 CAPA(20, "QoS Traffic Capability");
656 CAPA(21, "AC Station Count");
657 CAPA(22, "Multiple BSSID");
658 CAPA(23, "Timing Measurement");
659 CAPA(24, "Channel Usage");
660 CAPA(25, "SSID List");
661 CAPA(26, "DMS");
662 CAPA(27, "UTC TSF Offset");
663 CAPA(28, "TDLS Peer U-APSD Buffer STA Support");
664 CAPA(29, "TDLS Peer PSM Support");
665 CAPA(30, "TDLS channel switching");
666 CAPA(31, "Interworking");
667 CAPA(32, "QoS Map");
668 CAPA(33, "EBR");
669 CAPA(34, "SSPN Interface");
670 CAPA(35, "Reserved");
671 CAPA(36, "MSGCF Capability");
672 CAPA(37, "TDLS Support");
673 CAPA(38, "TDLS Prohibited");
674 CAPA(39, "TDLS Channel Switching Prohibited");
675 CAPA(40, "Reject Unadmitted Frame");
676 CAPA(44, "Identifier Location");
677 CAPA(45, "U-APSD Coexistence");
678 CAPA(46, "WNM-Notification");
679 CAPA(47, "Reserved");
680 CAPA(48, "UTF-8 SSID");
31d2d259
JB
681 default:
682 printf(" %d", bit);
683 break;
684 }
70c649d2 685#undef CAPA
31d2d259
JB
686 }
687 }
9b880b00 688
9b880b00
MH
689 printf("\n");
690}
691
575280cc
JM
692static void print_tim(const uint8_t type, uint8_t len, const uint8_t *data)
693{
694 printf(" DTIM Count %u DTIM Period %u Bitmap Control 0x%x "
695 "Bitmap[0] 0x%x",
696 data[0], data[1], data[2], data[3]);
697 if (len - 4)
698 printf(" (+ %u octet%s)", len - 4, len - 4 == 1 ? "" : "s");
699 printf("\n");
700}
701
792172b0
JM
702static void print_ibssatim(const uint8_t type, uint8_t len, const uint8_t *data)
703{
704 printf(" %d TUs", (data[1] << 8) + data[0]);
705}
706
54eb1613
JB
707static void print_vht_capa(const uint8_t type, uint8_t len, const uint8_t *data)
708{
709 printf("\n");
710 print_vht_info(data[0] | (data[1] << 8) |
711 (data[2] << 16) | (data[3] << 24),
712 data + 4);
713}
714
ca159934
JB
715static void print_vht_oper(const uint8_t type, uint8_t len, const uint8_t *data)
716{
717 const char *chandwidths[] = {
718 [0] = "20 or 40 MHz",
719 [1] = "80 MHz",
720 [3] = "80+80 MHz",
721 [2] = "160 MHz",
722 };
723
724 printf("\n");
725 printf("\t\t * channel width: %d (%s)\n", data[0],
726 data[0] < ARRAY_SIZE(chandwidths) ? chandwidths[data[0]] : "unknown");
727 printf("\t\t * center freq segment 1: %d\n", data[1]);
728 printf("\t\t * center freq segment 2: %d\n", data[2]);
729 printf("\t\t * VHT basic MCS set: 0x%.2x%.2x\n", data[4], data[3]);
730}
731
29f7579e
JB
732static void print_obss_scan_params(const uint8_t type, uint8_t len, const uint8_t *data)
733{
734 printf("\n");
735 printf("\t\t * passive dwell: %d TUs\n", (data[1] << 8) | data[0]);
736 printf("\t\t * active dwell: %d TUs\n", (data[3] << 8) | data[2]);
737 printf("\t\t * channel width trigger scan interval: %d s\n", (data[5] << 8) | data[4]);
738 printf("\t\t * scan passive total per channel: %d TUs\n", (data[7] << 8) | data[6]);
739 printf("\t\t * scan active total per channel: %d TUs\n", (data[9] << 8) | data[8]);
740 printf("\t\t * BSS width channel transition delay factor: %d\n", (data[11] << 8) | data[10]);
741 printf("\t\t * OBSS Scan Activity Threshold: %d.%02d %%\n",
742 ((data[13] << 8) | data[12]) / 100, ((data[13] << 8) | data[12]) % 100);
743}
744
745static void print_secchan_offs(const uint8_t type, uint8_t len, const uint8_t *data)
746{
747 if (data[0] < ARRAY_SIZE(ht_secondary_offset))
748 printf(" %s (%d)\n", ht_secondary_offset[data[0]], data[0]);
749 else
750 printf(" %d\n", data[0]);
751}
752
753static void print_bss_load(const uint8_t type, uint8_t len, const uint8_t *data)
754{
755 printf("\n");
756 printf("\t\t * station count: %d\n", (data[1] << 8) | data[0]);
757 printf("\t\t * channel utilisation: %d/255\n", data[2]);
758 printf("\t\t * available admission capacity: %d [*32us]\n", (data[4] << 8) | data[3]);
759}
760
83b4934c
JB
761struct ie_print {
762 const char *name;
763 void (*print)(const uint8_t type, uint8_t len, const uint8_t *data);
764 uint8_t minlen, maxlen;
febeb0c0 765 uint8_t flags;
764fe753
JB
766};
767
83b4934c
JB
768static void print_ie(const struct ie_print *p, const uint8_t type,
769 uint8_t len, const uint8_t *data)
4673a894 770{
83b4934c
JB
771 int i;
772
773 if (!p->print)
774 return;
775
776 printf("\t%s:", p->name);
777 if (len < p->minlen || len > p->maxlen) {
778 if (len > 1) {
779 printf(" <invalid: %d bytes:", len);
780 for (i = 0; i < len; i++)
781 printf(" %.02x", data[i]);
782 printf(">\n");
783 } else if (len)
784 printf(" <invalid: 1 byte: %.02x>\n", data[0]);
785 else
786 printf(" <invalid: no data>\n");
787 return;
788 }
789
790 p->print(type, len, data);
791}
792
793#define PRINT_IGN { \
794 .name = "IGNORE", \
795 .print = NULL, \
796 .minlen = 0, \
797 .maxlen = 255, \
4673a894
JB
798}
799
83b4934c 800static const struct ie_print ieprinters[] = {
febeb0c0
JB
801 [0] = { "SSID", print_ssid, 0, 32, BIT(PRINT_SCAN) | BIT(PRINT_LINK), },
802 [1] = { "Supported rates", print_supprates, 0, 255, BIT(PRINT_SCAN), },
014d581a 803 [3] = { "DS Parameter set", print_ds, 1, 1, BIT(PRINT_SCAN), },
575280cc 804 [5] = { "TIM", print_tim, 4, 255, BIT(PRINT_SCAN), },
792172b0 805 [6] = { "IBSS ATIM window", print_ibssatim, 2, 2, BIT(PRINT_SCAN), },
febeb0c0 806 [7] = { "Country", print_country, 3, 255, BIT(PRINT_SCAN), },
29f7579e 807 [11] = { "BSS Load", print_bss_load, 5, 5, BIT(PRINT_SCAN), },
febeb0c0 808 [32] = { "Power constraint", print_powerconstraint, 1, 1, BIT(PRINT_SCAN), },
792172b0 809 [35] = { "TPC report", print_tpcreport, 2, 2, BIT(PRINT_SCAN), },
febeb0c0 810 [42] = { "ERP", print_erp, 1, 255, BIT(PRINT_SCAN), },
a2e61861 811 [45] = { "HT capabilities", print_ht_capa, 26, 26, BIT(PRINT_SCAN), },
792172b0 812 [47] = { "ERP D4.0", print_erp, 1, 255, BIT(PRINT_SCAN), },
29f7579e 813 [74] = { "Overlapping BSS scan params", print_obss_scan_params, 14, 255, BIT(PRINT_SCAN), },
be7602fb 814 [61] = { "HT operation", print_ht_op, 22, 22, BIT(PRINT_SCAN), },
29f7579e 815 [62] = { "Secondary Channel Offset", print_secchan_offs, 1, 1, BIT(PRINT_SCAN), },
54eb1613 816 [191] = { "VHT capabilities", print_vht_capa, 12, 255, BIT(PRINT_SCAN), },
ca159934 817 [192] = { "VHT operation", print_vht_oper, 5, 255, BIT(PRINT_SCAN), },
febeb0c0
JB
818 [48] = { "RSN", print_rsn, 2, 255, BIT(PRINT_SCAN), },
819 [50] = { "Extended supported rates", print_supprates, 0, 255, BIT(PRINT_SCAN), },
720583e9 820 [114] = { "MESH ID", print_ssid, 0, 32, BIT(PRINT_SCAN) | BIT(PRINT_LINK), },
febeb0c0 821 [127] = { "Extended capabilities", print_capabilities, 0, 255, BIT(PRINT_SCAN), },
83b4934c
JB
822};
823
824static void print_wifi_wpa(const uint8_t type, uint8_t len, const uint8_t *data)
825{
826 print_rsn_ie("TKIP", "IEEE 802.1X", len, data);
827}
828
1cab57eb
JB
829static bool print_wifi_wmm_param(const uint8_t *data, uint8_t len)
830{
831 int i;
832 static const char *aci_tbl[] = { "BE", "BK", "VI", "VO" };
833
834 if (len < 19)
835 goto invalid;
836
837 if (data[0] != 1) {
cee4fe20 838 printf("Parameter: not version 1: ");
1cab57eb
JB
839 return false;
840 }
841
89ea706f 842 printf("\t * Parameter version 1");
1cab57eb
JB
843
844 data++;
845
846 if (data[0] & 0x80)
89ea706f 847 printf("\n\t\t * u-APSD");
1cab57eb
JB
848
849 data += 2;
850
851 for (i = 0; i < 4; i++) {
89ea706f 852 printf("\n\t\t * %s:", aci_tbl[(data[0] >> 5) & 3]);
87181516 853 if (data[0] & 0x10)
1cab57eb
JB
854 printf(" acm");
855 printf(" CW %d-%d", (1 << (data[1] & 0xf)) - 1,
856 (1 << (data[1] >> 4)) - 1);
a2a4c265 857 printf(", AIFSN %d", data[0] & 0xf);
1cab57eb 858 if (data[2] | data[3])
cee4fe20 859 printf(", TXOP %d usec", (data[2] + (data[3] << 8)) * 32);
1cab57eb
JB
860 data += 4;
861 }
862
863 printf("\n");
864 return true;
865
866 invalid:
867 printf("invalid: ");
868 return false;
869}
870
83b4934c 871static void print_wifi_wmm(const uint8_t type, uint8_t len, const uint8_t *data)
6ff0c93a
MH
872{
873 int i;
874
6ff0c93a
MH
875 switch (data[0]) {
876 case 0x00:
83b4934c 877 printf(" information:");
6ff0c93a
MH
878 break;
879 case 0x01:
1cab57eb
JB
880 if (print_wifi_wmm_param(data + 1, len - 1))
881 return;
6ff0c93a
MH
882 break;
883 default:
83b4934c 884 printf(" type %d:", data[0]);
6ff0c93a
MH
885 break;
886 }
887
1cab57eb
JB
888 for(i = 1; i < len; i++)
889 printf(" %.02x", data[i]);
6ff0c93a
MH
890 printf("\n");
891}
892
a6816965
JM
893static const char * wifi_wps_dev_passwd_id(uint16_t id)
894{
895 switch (id) {
896 case 0:
897 return "Default (PIN)";
898 case 1:
899 return "User-specified";
900 case 2:
901 return "Machine-specified";
902 case 3:
903 return "Rekey";
904 case 4:
905 return "PushButton";
906 case 5:
907 return "Registrar-specified";
908 default:
909 return "??";
910 }
911}
912
83b4934c 913static void print_wifi_wps(const uint8_t type, uint8_t len, const uint8_t *data)
4673a894
JB
914{
915 bool first = true;
916 __u16 subtype, sublen;
917
4673a894
JB
918 while (len >= 4) {
919 subtype = (data[0] << 8) + data[1];
920 sublen = (data[2] << 8) + data[3];
921 if (sublen > len)
922 break;
923
924 switch (subtype) {
925 case 0x104a:
926 tab_on_first(&first);
dffc6750 927 printf("\t * Version: %d.%d\n", data[4] >> 4, data[4] & 0xF);
4673a894
JB
928 break;
929 case 0x1011:
930 tab_on_first(&first);
931 printf("\t * Device name: %.*s\n", sublen, data + 4);
932 break;
a6816965
JM
933 case 0x1012: {
934 uint16_t id;
935 tab_on_first(&first);
936 if (sublen != 2) {
937 printf("\t * Device Password ID: (invalid "
938 "length %d)\n", sublen);
939 break;
940 }
941 id = data[4] << 8 | data[5];
942 printf("\t * Device Password ID: %u (%s)\n",
943 id, wifi_wps_dev_passwd_id(id));
944 break;
945 }
4673a894
JB
946 case 0x1021:
947 tab_on_first(&first);
948 printf("\t * Manufacturer: %.*s\n", sublen, data + 4);
949 break;
950 case 0x1023:
951 tab_on_first(&first);
952 printf("\t * Model: %.*s\n", sublen, data + 4);
953 break;
a6816965
JM
954 case 0x1024:
955 tab_on_first(&first);
956 printf("\t * Model Number: %.*s\n", sublen, data + 4);
957 break;
958 case 0x103b: {
959 __u8 val = data[4];
960 tab_on_first(&first);
961 printf("\t * Response Type: %d%s\n",
962 val, val == 3 ? " (AP)" : "");
963 break;
964 }
965 case 0x103c: {
966 __u8 val = data[4];
967 tab_on_first(&first);
968 printf("\t * RF Bands: 0x%x\n", val);
969 break;
970 }
971 case 0x1041: {
972 __u8 val = data[4];
973 tab_on_first(&first);
974 printf("\t * Selected Registrar: 0x%x\n", val);
975 break;
976 }
977 case 0x1042:
978 tab_on_first(&first);
979 printf("\t * Serial Number: %.*s\n", sublen, data + 4);
980 break;
981 case 0x1044: {
982 __u8 val = data[4];
983 tab_on_first(&first);
984 printf("\t * Wi-Fi Protected Setup State: %d%s%s\n",
985 val,
986 val == 1 ? " (Unconfigured)" : "",
987 val == 2 ? " (Configured)" : "");
988 break;
989 }
09fe09dc
JB
990 case 0x1047:
991 tab_on_first(&first);
992 printf("\t * UUID: ");
993 if (sublen != 16) {
994 printf("(invalid, length=%d)\n", sublen);
995 break;
996 }
997 printf("%02x%02x%02x%02x-%02x%02x-%02x%02x-"
998 "%02x%02x-%02x%02x%02x%02x%02x%02x\n",
999 data[4], data[5], data[6], data[7],
1000 data[8], data[9], data[10], data[11],
1001 data[12], data[13], data[14], data[15],
1002 data[16], data[17], data[18], data[19]);
1003 break;
a6816965
JM
1004 case 0x1054: {
1005 tab_on_first(&first);
1006 if (sublen != 8) {
1007 printf("\t * Primary Device Type: (invalid "
1008 "length %d)\n", sublen);
1009 break;
1010 }
1011 printf("\t * Primary Device Type: "
1012 "%u-%02x%02x%02x%02x-%u\n",
1013 data[4] << 8 | data[5],
1014 data[6], data[7], data[8], data[9],
1015 data[10] << 8 | data[11]);
1016 break;
1017 }
7ee5a865 1018 case 0x1057: {
fe31a22e 1019 __u8 val = data[4];
7ee5a865 1020 tab_on_first(&first);
fe31a22e 1021 printf("\t * AP setup locked: 0x%.2x\n", val);
7ee5a865
JB
1022 break;
1023 }
a6816965
JM
1024 case 0x1008:
1025 case 0x1053: {
4673a894
JB
1026 __u16 meth = (data[4] << 8) + data[5];
1027 bool comma = false;
1028 tab_on_first(&first);
a6816965
JM
1029 printf("\t * %sConfig methods:",
1030 subtype == 0x1053 ? "Selected Registrar ": "");
4673a894
JB
1031#define T(bit, name) do { \
1032 if (meth & (1<<bit)) { \
1033 if (comma) \
1034 printf(","); \
1035 comma = true; \
1036 printf(" " name); \
1037 } } while (0)
1038 T(0, "USB");
1039 T(1, "Ethernet");
1040 T(2, "Label");
1041 T(3, "Display");
1042 T(4, "Ext. NFC");
1043 T(5, "Int. NFC");
1044 T(6, "NFC Intf.");
1045 T(7, "PBC");
1046 T(8, "Keypad");
1047 printf("\n");
1048 break;
1049#undef T
1050 }
2650d46b
JB
1051 default: {
1052 const __u8 *subdata = data + 4;
1053 __u16 tmplen = sublen;
1054
1055 tab_on_first(&first);
1056 printf("\t * Unknown TLV (%#.4x, %d bytes):",
1057 subtype, tmplen);
1058 while (tmplen) {
1059 printf(" %.2x", *subdata);
1060 subdata++;
1061 tmplen--;
1062 }
1063 printf("\n");
4673a894
JB
1064 break;
1065 }
2650d46b 1066 }
4673a894
JB
1067
1068 data += sublen + 4;
1069 len -= sublen + 4;
1070 }
1071
1072 if (len != 0) {
1073 printf("\t\t * bogus tail data (%d):", len);
1074 while (len) {
1075 printf(" %.2x", *data);
1076 data++;
1077 len--;
1078 }
1079 printf("\n");
1080 }
1081}
1082
83b4934c 1083static const struct ie_print wifiprinters[] = {
febeb0c0
JB
1084 [1] = { "WPA", print_wifi_wpa, 2, 255, BIT(PRINT_SCAN), },
1085 [2] = { "WMM", print_wifi_wmm, 1, 255, BIT(PRINT_SCAN), },
1086 [4] = { "WPS", print_wifi_wps, 0, 255, BIT(PRINT_SCAN), },
4673a894
JB
1087};
1088
9a22374a
JB
1089static inline void print_p2p(const uint8_t type, uint8_t len, const uint8_t *data)
1090{
1091 bool first = true;
1092 __u8 subtype;
1093 __u16 sublen;
1094
1095 while (len >= 3) {
1096 subtype = data[0];
1097 sublen = (data[2] << 8) + data[1];
1098
1099 if (sublen > len - 3)
1100 break;
1101
1102 switch (subtype) {
1103 case 0x02: /* capability */
1104 tab_on_first(&first);
1105 if (sublen < 2) {
1106 printf("\t * malformed capability\n");
1107 break;
1108 }
1109 printf("\t * Group capa: 0x%.2x, Device capa: 0x%.2x\n",
1110 data[3], data[4]);
1111 break;
1112 case 0x0d: /* device info */
1113 if (sublen < 6 + 2 + 8 + 1) {
1114 printf("\t * malformed device info\n");
1115 break;
1116 }
1117 /* fall through for now */
1118 case 0x00: /* status */
1119 case 0x01: /* minor reason */
1120 case 0x03: /* device ID */
1121 case 0x04: /* GO intent */
1122 case 0x05: /* configuration timeout */
1123 case 0x06: /* listen channel */
1124 case 0x07: /* group BSSID */
1125 case 0x08: /* ext listen timing */
1126 case 0x09: /* intended interface address */
1127 case 0x0a: /* manageability */
1128 case 0x0b: /* channel list */
1129 case 0x0c: /* NoA */
1130 case 0x0e: /* group info */
1131 case 0x0f: /* group ID */
1132 case 0x10: /* interface */
1133 case 0x11: /* operating channel */
1134 case 0x12: /* invitation flags */
1135 case 0xdd: /* vendor specific */
1136 default: {
1137 const __u8 *subdata = data + 4;
1138 __u16 tmplen = sublen;
1139
1140 tab_on_first(&first);
1141 printf("\t * Unknown TLV (%#.2x, %d bytes):",
1142 subtype, tmplen);
1143 while (tmplen) {
1144 printf(" %.2x", *subdata);
1145 subdata++;
1146 tmplen--;
1147 }
1148 printf("\n");
1149 break;
1150 }
1151 }
1152
1153 data += sublen + 3;
1154 len -= sublen + 3;
1155 }
1156
1157 if (len != 0) {
1158 tab_on_first(&first);
1159 printf("\t * bogus tail data (%d):", len);
1160 while (len) {
1161 printf(" %.2x", *data);
1162 data++;
1163 len--;
1164 }
1165 printf("\n");
1166 }
1167}
1168
1169static const struct ie_print wfa_printers[] = {
1170 [9] = { "P2P", print_p2p, 2, 255, BIT(PRINT_SCAN), },
1171};
1172
764fe753 1173static void print_vendor(unsigned char len, unsigned char *data,
febeb0c0 1174 bool unknown, enum print_ie_type ptype)
3563f4c5
JB
1175{
1176 int i;
1177
fbf80af5 1178 if (len < 3) {
4673a894 1179 printf("\tVendor specific: <too short> data:");
fbf80af5
JB
1180 for(i = 0; i < len; i++)
1181 printf(" %.02x", data[i]);
1182 printf("\n");
1183 return;
1184 }
1185
3bd60ef1 1186 if (len >= 4 && memcmp(data, ms_oui, 3) == 0) {
febeb0c0
JB
1187 if (data[3] < ARRAY_SIZE(wifiprinters) &&
1188 wifiprinters[data[3]].name &&
1189 wifiprinters[data[3]].flags & BIT(ptype)) {
83b4934c
JB
1190 print_ie(&wifiprinters[data[3]], data[3], len - 4, data + 4);
1191 return;
1192 }
febeb0c0 1193 if (!unknown)
4673a894 1194 return;
3bd60ef1 1195 printf("\tMS/WiFi %#.2x, data:", data[3]);
4673a894
JB
1196 for(i = 0; i < len - 4; i++)
1197 printf(" %.02x", data[i + 4]);
1198 printf("\n");
1199 return;
1200 }
1201
9a22374a
JB
1202 if (len >= 4 && memcmp(data, wfa_oui, 3) == 0) {
1203 if (data[3] < ARRAY_SIZE(wfa_printers) &&
1204 wfa_printers[data[3]].name &&
1205 wfa_printers[data[3]].flags & BIT(ptype)) {
1206 print_ie(&wfa_printers[data[3]], data[3], len - 4, data + 4);
1207 return;
1208 }
1209 if (!unknown)
1210 return;
1211 printf("\tWFA %#.2x, data:", data[3]);
1212 for(i = 0; i < len - 4; i++)
1213 printf(" %.02x", data[i + 4]);
1214 printf("\n");
1215 return;
1216 }
1217
febeb0c0 1218 if (!unknown)
764fe753
JB
1219 return;
1220
fbf80af5 1221 printf("\tVendor specific: OUI %.2x:%.2x:%.2x, data:",
3563f4c5 1222 data[0], data[1], data[2]);
fbf80af5
JB
1223 for (i = 3; i < len; i++)
1224 printf(" %.2x", data[i]);
3563f4c5
JB
1225 printf("\n");
1226}
1227
febeb0c0
JB
1228void print_ies(unsigned char *ie, int ielen, bool unknown,
1229 enum print_ie_type ptype)
3563f4c5
JB
1230{
1231 while (ielen >= 2 && ielen >= ie[1]) {
febeb0c0
JB
1232 if (ie[0] < ARRAY_SIZE(ieprinters) &&
1233 ieprinters[ie[0]].name &&
1234 ieprinters[ie[0]].flags & BIT(ptype)) {
83b4934c 1235 print_ie(&ieprinters[ie[0]], ie[0], ie[1], ie + 2);
764fe753 1236 } else if (ie[0] == 221 /* vendor */) {
febeb0c0
JB
1237 print_vendor(ie[1], ie + 2, unknown, ptype);
1238 } else if (unknown) {
3563f4c5
JB
1239 int i;
1240
8086b700 1241 printf("\tUnknown IE (%d):", ie[0]);
3563f4c5 1242 for (i=0; i<ie[1]; i++)
8086b700 1243 printf(" %.2x", ie[2+i]);
3563f4c5
JB
1244 printf("\n");
1245 }
1246 ielen -= ie[1] + 2;
1247 ie += ie[1] + 2;
1248 }
1249}
1250
2e8b82c1
VK
1251static void print_capa_dmg(__u16 capa)
1252{
1253 switch (capa & WLAN_CAPABILITY_DMG_TYPE_MASK) {
1254 case WLAN_CAPABILITY_DMG_TYPE_AP:
1255 printf(" DMG_ESS");
1256 break;
1257 case WLAN_CAPABILITY_DMG_TYPE_PBSS:
1258 printf(" DMG_PCP");
1259 break;
1260 case WLAN_CAPABILITY_DMG_TYPE_IBSS:
1261 printf(" DMG_IBSS");
1262 break;
1263 }
1264
1265 if (capa & WLAN_CAPABILITY_DMG_CBAP_ONLY)
1266 printf(" CBAP_Only");
1267 if (capa & WLAN_CAPABILITY_DMG_CBAP_SOURCE)
1268 printf(" CBAP_Src");
1269 if (capa & WLAN_CAPABILITY_DMG_PRIVACY)
1270 printf(" Privacy");
1271 if (capa & WLAN_CAPABILITY_DMG_ECPAC)
1272 printf(" ECPAC");
1273 if (capa & WLAN_CAPABILITY_DMG_SPECTRUM_MGMT)
1274 printf(" SpectrumMgmt");
1275 if (capa & WLAN_CAPABILITY_DMG_RADIO_MEASURE)
1276 printf(" RadioMeasure");
1277}
1278
1279static void print_capa_non_dmg(__u16 capa)
1280{
1281 if (capa & WLAN_CAPABILITY_ESS)
1282 printf(" ESS");
1283 if (capa & WLAN_CAPABILITY_IBSS)
1284 printf(" IBSS");
1285 if (capa & WLAN_CAPABILITY_CF_POLLABLE)
1286 printf(" CfPollable");
1287 if (capa & WLAN_CAPABILITY_CF_POLL_REQUEST)
1288 printf(" CfPollReq");
1289 if (capa & WLAN_CAPABILITY_PRIVACY)
1290 printf(" Privacy");
1291 if (capa & WLAN_CAPABILITY_SHORT_PREAMBLE)
1292 printf(" ShortPreamble");
1293 if (capa & WLAN_CAPABILITY_PBCC)
1294 printf(" PBCC");
1295 if (capa & WLAN_CAPABILITY_CHANNEL_AGILITY)
1296 printf(" ChannelAgility");
1297 if (capa & WLAN_CAPABILITY_SPECTRUM_MGMT)
1298 printf(" SpectrumMgmt");
1299 if (capa & WLAN_CAPABILITY_QOS)
1300 printf(" QoS");
1301 if (capa & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1302 printf(" ShortSlotTime");
1303 if (capa & WLAN_CAPABILITY_APSD)
1304 printf(" APSD");
1305 if (capa & WLAN_CAPABILITY_RADIO_MEASURE)
1306 printf(" RadioMeasure");
1307 if (capa & WLAN_CAPABILITY_DSSS_OFDM)
1308 printf(" DSSS-OFDM");
1309 if (capa & WLAN_CAPABILITY_DEL_BACK)
1310 printf(" DelayedBACK");
1311 if (capa & WLAN_CAPABILITY_IMM_BACK)
1312 printf(" ImmediateBACK");
1313}
1314
3563f4c5
JB
1315static int print_bss_handler(struct nl_msg *msg, void *arg)
1316{
1317 struct nlattr *tb[NL80211_ATTR_MAX + 1];
1318 struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
1319 struct nlattr *bss[NL80211_BSS_MAX + 1];
1320 char mac_addr[20], dev[20];
1321 static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
1322 [NL80211_BSS_TSF] = { .type = NLA_U64 },
1323 [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
1324 [NL80211_BSS_BSSID] = { },
1325 [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
1326 [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
1327 [NL80211_BSS_INFORMATION_ELEMENTS] = { },
f2e17e1f
JB
1328 [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
1329 [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
a56117a6 1330 [NL80211_BSS_STATUS] = { .type = NLA_U32 },
c04a78df 1331 [NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
575280cc 1332 [NL80211_BSS_BEACON_IES] = { },
3563f4c5 1333 };
febeb0c0 1334 struct scan_params *params = arg;
1c5bcd9c 1335 int show = params->show_both_ie_sets ? 2 : 1;
2e8b82c1 1336 bool is_dmg = false;
3563f4c5
JB
1337
1338 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
1339 genlmsg_attrlen(gnlh, 0), NULL);
1340
1341 if (!tb[NL80211_ATTR_BSS]) {
5fe70c0e 1342 fprintf(stderr, "bss info missing!\n");
3563f4c5
JB
1343 return NL_SKIP;
1344 }
1345 if (nla_parse_nested(bss, NL80211_BSS_MAX,
1346 tb[NL80211_ATTR_BSS],
1347 bss_policy)) {
5fe70c0e 1348 fprintf(stderr, "failed to parse nested attributes!\n");
3563f4c5
JB
1349 return NL_SKIP;
1350 }
1351
1352 if (!bss[NL80211_BSS_BSSID])
1353 return NL_SKIP;
1354
1355 mac_addr_n2a(mac_addr, nla_data(bss[NL80211_BSS_BSSID]));
00889fb2
JB
1356 printf("BSS %s", mac_addr);
1357 if (tb[NL80211_ATTR_IFINDEX]) {
1358 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
1359 printf("(on %s)", dev);
1360 }
a56117a6
JB
1361
1362 if (bss[NL80211_BSS_STATUS]) {
1363 switch (nla_get_u32(bss[NL80211_BSS_STATUS])) {
1364 case NL80211_BSS_STATUS_AUTHENTICATED:
1365 printf(" -- authenticated");
1366 break;
1367 case NL80211_BSS_STATUS_ASSOCIATED:
1368 printf(" -- associated");
1369 break;
1370 case NL80211_BSS_STATUS_IBSS_JOINED:
1371 printf(" -- joined");
1372 break;
1373 default:
1374 printf(" -- unknown status: %d",
1375 nla_get_u32(bss[NL80211_BSS_STATUS]));
1376 break;
1377 }
1378 }
1379 printf("\n");
3563f4c5 1380
e7109a8a
JB
1381 if (bss[NL80211_BSS_TSF]) {
1382 unsigned long long tsf;
1383 tsf = (unsigned long long)nla_get_u64(bss[NL80211_BSS_TSF]);
1384 printf("\tTSF: %llu usec (%llud, %.2lld:%.2llu:%.2llu)\n",
1385 tsf, tsf/1000/1000/60/60/24, (tsf/1000/1000/60/60) % 24,
1386 (tsf/1000/1000/60) % 60, (tsf/1000/1000) % 60);
1387 }
2e8b82c1
VK
1388 if (bss[NL80211_BSS_FREQUENCY]) {
1389 int freq = nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
1390 printf("\tfreq: %d\n", freq);
1391 if (freq > 45000)
1392 is_dmg = true;
1393 }
3563f4c5 1394 if (bss[NL80211_BSS_BEACON_INTERVAL])
792172b0 1395 printf("\tbeacon interval: %d TUs\n",
3563f4c5 1396 nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]));
92a04ecd
MH
1397 if (bss[NL80211_BSS_CAPABILITY]) {
1398 __u16 capa = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
1399 printf("\tcapability:");
2e8b82c1
VK
1400 if (is_dmg)
1401 print_capa_dmg(capa);
1402 else
1403 print_capa_non_dmg(capa);
92a04ecd
MH
1404 printf(" (0x%.4x)\n", capa);
1405 }
f2e17e1f
JB
1406 if (bss[NL80211_BSS_SIGNAL_MBM]) {
1407 int s = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
1408 printf("\tsignal: %d.%.2d dBm\n", s/100, s%100);
1409 }
1410 if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
1411 unsigned char s = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
1412 printf("\tsignal: %d/100\n", s);
1413 }
c04a78df
HS
1414 if (bss[NL80211_BSS_SEEN_MS_AGO]) {
1415 int age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
1416 printf("\tlast seen: %d ms ago\n", age);
1417 }
c551449a 1418
1c5bcd9c 1419 if (bss[NL80211_BSS_INFORMATION_ELEMENTS] && show--) {
575280cc
JM
1420 if (bss[NL80211_BSS_BEACON_IES])
1421 printf("\tInformation elements from Probe Response "
1422 "frame:\n");
3563f4c5 1423 print_ies(nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
764fe753 1424 nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
febeb0c0 1425 params->unknown, params->type);
575280cc 1426 }
1c5bcd9c 1427 if (bss[NL80211_BSS_BEACON_IES] && show--) {
575280cc
JM
1428 printf("\tInformation elements from Beacon frame:\n");
1429 print_ies(nla_data(bss[NL80211_BSS_BEACON_IES]),
1430 nla_len(bss[NL80211_BSS_BEACON_IES]),
1431 params->unknown, params->type);
1432 }
3563f4c5
JB
1433
1434 return NL_SKIP;
1435}
1436
764fe753 1437static struct scan_params scan_params;
3563f4c5 1438
7c37a24d
JB
1439static int handle_scan_dump(struct nl80211_state *state,
1440 struct nl_cb *cb,
3563f4c5 1441 struct nl_msg *msg,
05514f95
JB
1442 int argc, char **argv,
1443 enum id_input id)
3563f4c5 1444{
764fe753
JB
1445 if (argc > 1)
1446 return 1;
1447
1c5bcd9c
JB
1448 memset(&scan_params, 0, sizeof(scan_params));
1449
764fe753
JB
1450 if (argc == 1 && !strcmp(argv[0], "-u"))
1451 scan_params.unknown = true;
575280cc
JM
1452 else if (argc == 1 && !strcmp(argv[0], "-b"))
1453 scan_params.show_both_ie_sets = true;
764fe753 1454
febeb0c0
JB
1455 scan_params.type = PRINT_SCAN;
1456
764fe753
JB
1457 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_bss_handler,
1458 &scan_params);
3563f4c5
JB
1459 return 0;
1460}
a5fe4ef2
JB
1461
1462static int handle_scan_combined(struct nl80211_state *state,
1463 struct nl_cb *cb,
1464 struct nl_msg *msg,
05514f95
JB
1465 int argc, char **argv,
1466 enum id_input id)
a5fe4ef2 1467{
559a1713 1468 char **trig_argv;
a5fe4ef2
JB
1469 static char *dump_argv[] = {
1470 NULL,
1471 "scan",
1472 "dump",
92649eab 1473 NULL,
a5fe4ef2
JB
1474 };
1475 static const __u32 cmds[] = {
1476 NL80211_CMD_NEW_SCAN_RESULTS,
1477 NL80211_CMD_SCAN_ABORTED,
1478 };
559a1713 1479 int trig_argc, dump_argc, err;
a5fe4ef2 1480
559a1713
JB
1481 if (argc >= 3 && !strcmp(argv[2], "-u")) {
1482 dump_argc = 4;
1483 dump_argv[3] = "-u";
575280cc
JM
1484 } else if (argc >= 3 && !strcmp(argv[2], "-b")) {
1485 dump_argc = 4;
1486 dump_argv[3] = "-b";
559a1713
JB
1487 } else
1488 dump_argc = 3;
1489
1490 trig_argc = 3 + (argc - 2) + (3 - dump_argc);
1491 trig_argv = calloc(trig_argc, sizeof(*trig_argv));
1492 if (!trig_argv)
1493 return -ENOMEM;
a5fe4ef2 1494 trig_argv[0] = argv[0];
559a1713
JB
1495 trig_argv[1] = "scan";
1496 trig_argv[2] = "trigger";
1497 int i;
1498 for (i = 0; i < argc - 2 - (dump_argc - 3); i++)
1499 trig_argv[i + 3] = argv[i + 2 + (dump_argc - 3)];
75f4204c 1500 err = handle_cmd(state, id, trig_argc, trig_argv);
559a1713 1501 free(trig_argv);
a5fe4ef2
JB
1502 if (err)
1503 return err;
1504
61725dbe
JB
1505 /*
1506 * WARNING: DO NOT COPY THIS CODE INTO YOUR APPLICATION
1507 *
1508 * This code has a bug, which requires creating a separate
1509 * nl80211 socket to fix:
1510 * It is possible for a NL80211_CMD_NEW_SCAN_RESULTS or
1511 * NL80211_CMD_SCAN_ABORTED message to be sent by the kernel
1512 * before (!) we listen to it, because we only start listening
1513 * after we send our scan request.
1514 *
1515 * Doing it the other way around has a race condition as well,
1516 * if you first open the events socket you may get a notification
1517 * for a previous scan.
1518 *
1519 * The only proper way to fix this would be to listen to events
1520 * before sending the command, and for the kernel to send the
1521 * scan request along with the event, so that you can match up
1522 * whether the scan you requested was finished or aborted (this
1523 * may result in processing a scan that another application
1524 * requested, but that doesn't seem to be a problem).
1525 *
1526 * Alas, the kernel doesn't do that (yet).
1527 */
1528
a5fe4ef2
JB
1529 if (listen_events(state, ARRAY_SIZE(cmds), cmds) ==
1530 NL80211_CMD_SCAN_ABORTED) {
1531 printf("scan aborted!\n");
1532 return 0;
1533 }
1534
1535 dump_argv[0] = argv[0];
75f4204c 1536 return handle_cmd(state, id, dump_argc, dump_argv);
a5fe4ef2 1537}
ced94d5f 1538TOPLEVEL(scan, "[-u] [freq <freq>*] [ies <hex as 00:11:..>] [lowpri,flush,ap-force] [ssid <ssid>*|passive]", 0, 0,
6ca98d28
JB
1539 CIB_NETDEV, handle_scan_combined,
1540 "Scan on the given frequencies and probe for the given SSIDs\n"
1541 "(or wildcard if not given) unless passive scanning is requested.\n"
64797a7f
JB
1542 "If -u is specified print unknown data in the scan results.\n"
1543 "Specified (vendor) IEs must be well-formed.");
4698bfc2
JB
1544COMMAND(scan, dump, "[-u]",
1545 NL80211_CMD_GET_SCAN, NLM_F_DUMP, CIB_NETDEV, handle_scan_dump,
1546 "Dump the current scan results. If -u is specified, print unknown\n"
1547 "data in scan results.");
ced94d5f 1548COMMAND(scan, trigger, "[freq <freq>*] [ies <hex as 00:11:..>] [lowpri,flush,ap-force] [ssid <ssid>*|passive]",
4698bfc2
JB
1549 NL80211_CMD_TRIGGER_SCAN, 0, CIB_NETDEV, handle_scan,
1550 "Trigger a scan on the given frequencies with probing for the given\n"
1551 "SSIDs (or wildcard if not given) unless passive scanning is requested.");