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