]> git.ipfire.org Git - thirdparty/iw.git/blame - scan.c
add help for ibss commands
[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)
28#define WLAN_CAPABILITY_DSSS_OFDM (1<<13)
29
857d966e
MH
30static unsigned char wifi_oui[3] = { 0x00, 0x50, 0xf2 };
31static unsigned char ieee80211_oui[3] = { 0x00, 0x0f, 0xac };
32
764fe753
JB
33struct scan_params {
34 bool unknown;
35};
36
7c37a24d
JB
37static int handle_scan(struct nl80211_state *state,
38 struct nl_cb *cb,
3563f4c5
JB
39 struct nl_msg *msg,
40 int argc, char **argv)
41{
559a1713
JB
42 struct nl_msg *ssids = NULL, *freqs = NULL;
43 char *eptr;
3563f4c5 44 int err = -ENOBUFS;
559a1713
JB
45 int i;
46 enum {
47 NONE,
48 FREQ,
49 SSID,
50 DONE,
51 } parse = NONE;
52 int freq;
53 bool passive = false, have_ssids = false, have_freqs = false;
3563f4c5
JB
54
55 ssids = nlmsg_alloc();
56 if (!ssids)
57 return -ENOMEM;
559a1713
JB
58
59 freqs = nlmsg_alloc();
60 if (!freqs) {
61 nlmsg_free(ssids);
62 return -ENOMEM;
63 }
64
65 for (i = 0; i < argc; i++) {
1ddf11eb 66 if (parse == NONE && strcmp(argv[i], "freq") == 0) {
559a1713
JB
67 parse = FREQ;
68 have_freqs = true;
69 continue;
1ddf11eb 70 } else if (parse < SSID && strcmp(argv[i], "ssid") == 0) {
559a1713
JB
71 parse = SSID;
72 have_ssids = true;
73 continue;
1ddf11eb 74 } else if (parse < SSID && strcmp(argv[i], "passive") == 0) {
559a1713
JB
75 parse = DONE;
76 passive = true;
77 continue;
78 }
79
80 switch (parse) {
81 case NONE:
82 case DONE:
83 return 1;
84 case FREQ:
85 freq = strtoul(argv[i], &eptr, 10);
86 if (eptr != argv[i] + strlen(argv[i]))
87 return 1;
88 NLA_PUT_U32(freqs, i, freq);
89 break;
90 case SSID:
91 NLA_PUT(ssids, i, strlen(argv[i]), argv[i]);
92 break;
93 }
94 }
95
96 if (!have_ssids)
97 NLA_PUT(ssids, 1, 0, "");
98 if (!passive)
99 nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids);
100
101 if (have_freqs)
102 nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
3563f4c5
JB
103
104 err = 0;
105 nla_put_failure:
106 nlmsg_free(ssids);
559a1713 107 nlmsg_free(freqs);
3563f4c5
JB
108 return err;
109}
559a1713 110COMMAND(scan, trigger, "[freq <freq>*] [ssid <ssid>*|passive]",
01ae06f9 111 NL80211_CMD_TRIGGER_SCAN, 0, CIB_NETDEV, handle_scan, NULL);
3563f4c5 112
857d966e
MH
113static void tab_on_first(bool *first)
114{
115 if (!*first)
116 printf("\t");
117 else
118 *first = false;
119}
120
83b4934c 121static void print_ssid(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5
JB
122{
123 int i;
83b4934c
JB
124
125 printf(" ");
126
127 for (i = 0; i < len; i++) {
3563f4c5
JB
128 if (isprint(data[i]))
129 printf("%c", data[i]);
130 else
131 printf("\\x%.2x", data[i]);
132 }
133 printf("\n");
134}
135
83b4934c 136static void print_supprates(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5
JB
137{
138 int i;
139
83b4934c 140 printf(" ");
3563f4c5 141
83b4934c 142 for (i = 0; i < len; i++) {
3563f4c5
JB
143 int r = data[i] & 0x7f;
144 printf("%d.%d%s ", r/2, 5*(r&1), data[i] & 0x80 ? "*":"");
145 }
146 printf("\n");
147}
148
83b4934c 149static void print_ds(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5 150{
83b4934c 151 printf(" channel %d\n", data[0]);
3563f4c5
JB
152}
153
83b4934c 154static void print_country(const uint8_t type, uint8_t len, const uint8_t *data)
b7e8fa37
MH
155{
156 int i;
157
83b4934c 158 printf(" %.*s", 2, data);
b7e8fa37
MH
159 switch (data[2]) {
160 case 'I':
161 printf(" (indoor)");
162 break;
163 case 'O':
164 printf(" (outdoor)");
165 break;
b6c0d634
JB
166 case ' ':
167 printf(" (in/outdoor)");
168 break;
169 default:
170 printf(" (invalid environment)");
171 break;
b7e8fa37
MH
172 }
173 printf(", data:");
174 for(i=0; i<len-3; i++)
175 printf(" %.02x", data[i + 3]);
176 printf("\n");
177}
178
d1563a1b
MH
179static void print_powerconstraint(const uint8_t type, uint8_t len, const uint8_t *data)
180{
181 printf(" %d dB\n", data[0]);
182}
183
83b4934c 184static void print_erp(const uint8_t type, uint8_t len, const uint8_t *data)
fc4d1484
MH
185{
186 if (data[0] == 0x00)
83b4934c 187 printf(" <no flags>");
fc4d1484
MH
188 if (data[0] & 0x01)
189 printf(" NonERP_Present");
190 if (data[0] & 0x02)
191 printf(" Use_Protection");
192 if (data[0] & 0x04)
193 printf(" Barker_Preamble_Mode");
194 printf("\n");
195}
196
83b4934c 197static void print_cipher(const uint8_t *data)
857d966e
MH
198{
199 if (memcmp(data, wifi_oui, 3) == 0) {
200 switch (data[3]) {
510e0e2f 201 case 0:
857d966e
MH
202 printf("Use group cipher suite");
203 break;
510e0e2f 204 case 1:
857d966e
MH
205 printf("WEP-40");
206 break;
510e0e2f 207 case 2:
857d966e
MH
208 printf("TKIP");
209 break;
510e0e2f 210 case 4:
857d966e
MH
211 printf("CCMP");
212 break;
510e0e2f 213 case 5:
857d966e
MH
214 printf("WEP-104");
215 break;
216 default:
332769c6 217 printf("%.02x-%.02x-%.02x:%d",
5594fd23 218 data[0], data[1] ,data[2], data[3]);
857d966e
MH
219 break;
220 }
221 } else if (memcmp(data, ieee80211_oui, 3) == 0) {
222 switch (data[3]) {
510e0e2f 223 case 0:
857d966e
MH
224 printf("Use group cipher suite");
225 break;
510e0e2f 226 case 1:
857d966e
MH
227 printf("WEP-40");
228 break;
510e0e2f 229 case 2:
857d966e
MH
230 printf("TKIP");
231 break;
510e0e2f 232 case 4:
857d966e
MH
233 printf("CCMP");
234 break;
510e0e2f 235 case 5:
857d966e
MH
236 printf("WEP-104");
237 break;
510e0e2f 238 case 6:
857d966e
MH
239 printf("AES-128-CMAC");
240 break;
241 default:
332769c6 242 printf("%.02x-%.02x-%.02x:%d",
5594fd23 243 data[0], data[1] ,data[2], data[3]);
857d966e
MH
244 break;
245 }
246 } else
332769c6 247 printf("%.02x-%.02x-%.02x:%d",
5594fd23 248 data[0], data[1] ,data[2], data[3]);
857d966e
MH
249}
250
83b4934c 251static void print_auth(const uint8_t *data)
857d966e
MH
252{
253 if (memcmp(data, wifi_oui, 3) == 0) {
254 switch (data[3]) {
510e0e2f 255 case 1:
857d966e
MH
256 printf("IEEE 802.1X");
257 break;
510e0e2f 258 case 2:
857d966e
MH
259 printf("PSK");
260 break;
261 default:
332769c6 262 printf("%.02x-%.02x-%.02x:%d",
5594fd23 263 data[0], data[1] ,data[2], data[3]);
857d966e
MH
264 break;
265 }
266 } else if (memcmp(data, ieee80211_oui, 3) == 0) {
267 switch (data[3]) {
510e0e2f 268 case 1:
857d966e
MH
269 printf("IEEE 802.1X");
270 break;
510e0e2f 271 case 2:
857d966e
MH
272 printf("PSK");
273 break;
0fe1c415
JB
274 case 3:
275 printf("FT/IEEE 802.1X");
276 break;
277 case 4:
278 printf("FT/PSK");
279 break;
280 case 5:
281 printf("IEEE 802.1X/SHA-256");
282 break;
283 case 6:
284 printf("PSK/SHA-256");
285 break;
857d966e 286 default:
332769c6 287 printf("%.02x-%.02x-%.02x:%d",
5594fd23 288 data[0], data[1] ,data[2], data[3]);
857d966e
MH
289 break;
290 }
291 } else
332769c6 292 printf("%.02x-%.02x-%.02x:%d",
5594fd23 293 data[0], data[1] ,data[2], data[3]);
857d966e
MH
294}
295
83b4934c
JB
296static void print_rsn_ie(const char *defcipher, const char *defauth,
297 uint8_t len, const uint8_t *data)
857d966e
MH
298{
299 bool first = true;
300 __u16 version, count, capa;
301 int i;
302
857d966e
MH
303 version = data[0] + (data[1] << 8);
304 tab_on_first(&first);
305 printf("\t * Version: %d\n", version);
306
307 data += 2;
308 len -= 2;
309
310 if (len < 4) {
311 tab_on_first(&first);
312 printf("\t * Group cipher: %s\n", defcipher);
313 printf("\t * Pairwise ciphers: %s\n", defcipher);
314 return;
315 }
316
317 tab_on_first(&first);
318 printf("\t * Group cipher: ");
319 print_cipher(data);
320 printf("\n");
321
322 data += 4;
323 len -= 4;
324
325 if (len < 2) {
326 tab_on_first(&first);
327 printf("\t * Pairwise ciphers: %s\n", defcipher);
328 return;
329 }
330
331 count = data[0] | (data[1] << 8);
31d477fb
MH
332 if (2 + (count * 4) > len)
333 goto invalid;
334
857d966e
MH
335 tab_on_first(&first);
336 printf("\t * Pairwise ciphers:");
31d477fb 337 for (i = 0; i < count; i++) {
857d966e
MH
338 printf(" ");
339 print_cipher(data + 2 + (i * 4));
340 }
341 printf("\n");
342
343 data += 2 + (count * 4);
344 len -= 2 + (count * 4);
345
346 if (len < 2) {
347 tab_on_first(&first);
348 printf("\t * Authentication suites: %s\n", defauth);
349 return;
350 }
351
352 count = data[0] | (data[1] << 8);
31d477fb
MH
353 if (2 + (count * 4) > len)
354 goto invalid;
355
857d966e
MH
356 tab_on_first(&first);
357 printf("\t * Authentication suites:");
83b4934c 358 for (i = 0; i < count; i++) {
857d966e
MH
359 printf(" ");
360 print_auth(data + 2 + (i * 4));
361 }
362 printf("\n");
363
364 data += 2 + (count * 4);
365 len -= 2 + (count * 4);
366
6a4f24e8
JB
367 if (len >= 2) {
368 capa = data[0] | (data[1] << 8);
369 tab_on_first(&first);
cadbe89a
JB
370 printf("\t * Capabilities:");
371 if (capa & 0x0001)
372 printf(" PreAuth");
373 if (capa & 0x0002)
374 printf(" NoPairwise");
375 switch ((capa & 0x000c) >> 2) {
376 case 0:
377 break;
378 case 1:
379 printf(" 2-PTKSA-RC");
380 break;
381 case 2:
382 printf(" 4-PTKSA-RC");
383 break;
384 case 3:
385 printf(" 16-PTKSA-RC");
386 break;
387 }
388 switch ((capa & 0x0030) >> 4) {
389 case 0:
390 break;
391 case 1:
392 printf(" 2-GTKSA-RC");
393 break;
394 case 2:
395 printf(" 4-GTKSA-RC");
396 break;
397 case 3:
398 printf(" 16-GTKSA-RC");
399 break;
400 }
401 if (capa & 0x0040)
402 printf(" MFP-required");
403 if (capa & 0x0080)
404 printf(" MFP-capable");
405 if (capa & 0x0200)
406 printf(" Peerkey-enabled");
407 if (capa & 0x0400)
408 printf(" SPP-AMSDU-capable");
409 if (capa & 0x0800)
410 printf(" SPP-AMSDU-required");
411 printf(" (0x%.4x)\n", capa);
6a4f24e8
JB
412 data += 2;
413 len -= 2;
414 }
31d477fb 415
cadbe89a 416 invalid:
31d477fb
MH
417 if (len != 0) {
418 printf("\t\t * bogus tail data (%d):", len);
419 while (len) {
420 printf(" %.2x", *data);
421 data++;
422 len--;
423 }
424 printf("\n");
425 }
857d966e
MH
426}
427
83b4934c 428static void print_rsn(const uint8_t type, uint8_t len, const uint8_t *data)
857d966e 429{
83b4934c 430 print_rsn_ie("CCMP", "IEEE 802.1X", len, data);
857d966e
MH
431}
432
83b4934c 433static void print_capabilities(const uint8_t type, uint8_t len, const uint8_t *data)
9b880b00 434{
31d2d259
JB
435 int i, base, bit;
436 bool first = true;
437
438
439 for (i = 0; i < len; i++) {
440 base = i * 8;
441
442 for (bit = 0; bit < 8; bit++) {
443 if (!(data[i] & (1 << bit)))
444 continue;
445
446 if (!first)
447 printf(",");
448 else
449 first = false;
450
451 switch (bit + base) {
452 case 0:
453 printf(" HT Information Exchange Supported");
454 break;
455 case 1:
456 printf(" On-demand Beacon");
457 break;
458 case 2:
459 printf(" Extended Channel Switching");
460 break;
461 case 3:
462 printf(" Wave Indication");
463 break;
464 case 4:
465 printf(" PSMP Capability");
466 break;
467 case 5:
468 printf(" Service Interval Granularity");
469 break;
470 case 6:
471 printf(" S-PSMP Capability");
472 break;
473 default:
474 printf(" %d", bit);
475 break;
476 }
477 }
478 }
9b880b00 479
9b880b00
MH
480 printf("\n");
481}
482
83b4934c
JB
483struct ie_print {
484 const char *name;
485 void (*print)(const uint8_t type, uint8_t len, const uint8_t *data);
486 uint8_t minlen, maxlen;
764fe753
JB
487};
488
83b4934c
JB
489static void print_ie(const struct ie_print *p, const uint8_t type,
490 uint8_t len, const uint8_t *data)
4673a894 491{
83b4934c
JB
492 int i;
493
494 if (!p->print)
495 return;
496
497 printf("\t%s:", p->name);
498 if (len < p->minlen || len > p->maxlen) {
499 if (len > 1) {
500 printf(" <invalid: %d bytes:", len);
501 for (i = 0; i < len; i++)
502 printf(" %.02x", data[i]);
503 printf(">\n");
504 } else if (len)
505 printf(" <invalid: 1 byte: %.02x>\n", data[0]);
506 else
507 printf(" <invalid: no data>\n");
508 return;
509 }
510
511 p->print(type, len, data);
512}
513
514#define PRINT_IGN { \
515 .name = "IGNORE", \
516 .print = NULL, \
517 .minlen = 0, \
518 .maxlen = 255, \
4673a894
JB
519}
520
83b4934c
JB
521static const struct ie_print ieprinters[] = {
522 [0] = { "SSID", print_ssid, 0, 32, },
523 [1] = { "Supported rates", print_supprates, 0, 255, },
524 [3] = { "DS Paramater set", print_ds, 1, 1, },
525 [5] = PRINT_IGN,
526 [7] = { "Country", print_country, 3, 255, },
d1563a1b 527 [32] = { "Power constraint", print_powerconstraint, 1, 1, },
83b4934c
JB
528 [42] = { "ERP", print_erp, 1, 255, },
529 [48] = { "RSN", print_rsn, 2, 255, },
530 [50] = { "Extended supported rates", print_supprates, 0, 255, },
531 [127] = { "Extended capabilities", print_capabilities, 0, 255, },
532};
533
534static void print_wifi_wpa(const uint8_t type, uint8_t len, const uint8_t *data)
535{
536 print_rsn_ie("TKIP", "IEEE 802.1X", len, data);
537}
538
539static void print_wifi_wmm(const uint8_t type, uint8_t len, const uint8_t *data)
6ff0c93a
MH
540{
541 int i;
542
6ff0c93a
MH
543 switch (data[0]) {
544 case 0x00:
83b4934c 545 printf(" information:");
6ff0c93a
MH
546 break;
547 case 0x01:
83b4934c 548 printf(" parameter:");
6ff0c93a
MH
549 break;
550 default:
83b4934c 551 printf(" type %d:", data[0]);
6ff0c93a
MH
552 break;
553 }
554
83b4934c 555 for(i = 0; i < len - 1; i++)
6ff0c93a
MH
556 printf(" %.02x", data[i + 1]);
557 printf("\n");
558}
559
83b4934c 560static void print_wifi_wps(const uint8_t type, uint8_t len, const uint8_t *data)
4673a894
JB
561{
562 bool first = true;
563 __u16 subtype, sublen;
564
4673a894
JB
565 while (len >= 4) {
566 subtype = (data[0] << 8) + data[1];
567 sublen = (data[2] << 8) + data[3];
568 if (sublen > len)
569 break;
570
571 switch (subtype) {
572 case 0x104a:
573 tab_on_first(&first);
dffc6750 574 printf("\t * Version: %d.%d\n", data[4] >> 4, data[4] & 0xF);
4673a894
JB
575 break;
576 case 0x1011:
577 tab_on_first(&first);
578 printf("\t * Device name: %.*s\n", sublen, data + 4);
579 break;
580 case 0x1021:
581 tab_on_first(&first);
582 printf("\t * Manufacturer: %.*s\n", sublen, data + 4);
583 break;
584 case 0x1023:
585 tab_on_first(&first);
586 printf("\t * Model: %.*s\n", sublen, data + 4);
587 break;
7ee5a865
JB
588 case 0x1057: {
589 __u16 val = (data[4] << 8) | data[5];
590 tab_on_first(&first);
591 printf("\t * AP setup locked: 0x%.4x\n", val);
592 break;
593 }
4673a894
JB
594 case 0x1008: {
595 __u16 meth = (data[4] << 8) + data[5];
596 bool comma = false;
597 tab_on_first(&first);
598 printf("\t * Config methods:");
599#define T(bit, name) do { \
600 if (meth & (1<<bit)) { \
601 if (comma) \
602 printf(","); \
603 comma = true; \
604 printf(" " name); \
605 } } while (0)
606 T(0, "USB");
607 T(1, "Ethernet");
608 T(2, "Label");
609 T(3, "Display");
610 T(4, "Ext. NFC");
611 T(5, "Int. NFC");
612 T(6, "NFC Intf.");
613 T(7, "PBC");
614 T(8, "Keypad");
615 printf("\n");
616 break;
617#undef T
618 }
619 default:
620 break;
621 }
622
623 data += sublen + 4;
624 len -= sublen + 4;
625 }
626
627 if (len != 0) {
628 printf("\t\t * bogus tail data (%d):", len);
629 while (len) {
630 printf(" %.2x", *data);
631 data++;
632 len--;
633 }
634 printf("\n");
635 }
636}
637
83b4934c
JB
638static const struct ie_print wifiprinters[] = {
639 [1] = { "WPA", print_wifi_wpa, 2, 255, },
640 [2] = { "WMM", print_wifi_wmm, 1, 255, },
641 [4] = { "WPS", print_wifi_wps, 0, 255, },
4673a894
JB
642};
643
764fe753
JB
644static void print_vendor(unsigned char len, unsigned char *data,
645 struct scan_params *params)
3563f4c5
JB
646{
647 int i;
648
fbf80af5 649 if (len < 3) {
4673a894 650 printf("\tVendor specific: <too short> data:");
fbf80af5
JB
651 for(i = 0; i < len; i++)
652 printf(" %.02x", data[i]);
653 printf("\n");
654 return;
655 }
656
857d966e 657 if (len >= 4 && memcmp(data, wifi_oui, 3) == 0) {
83b4934c
JB
658 if (data[3] < ARRAY_SIZE(wifiprinters) && wifiprinters[data[3]].name) {
659 print_ie(&wifiprinters[data[3]], data[3], len - 4, data + 4);
660 return;
661 }
4673a894
JB
662 if (!params->unknown)
663 return;
857d966e 664 printf("\tWiFi OUI %#.2x, data:", data[3]);
4673a894
JB
665 for(i = 0; i < len - 4; i++)
666 printf(" %.02x", data[i + 4]);
667 printf("\n");
668 return;
669 }
670
764fe753
JB
671 if (!params->unknown)
672 return;
673
fbf80af5 674 printf("\tVendor specific: OUI %.2x:%.2x:%.2x, data:",
3563f4c5 675 data[0], data[1], data[2]);
fbf80af5
JB
676 for (i = 3; i < len; i++)
677 printf(" %.2x", data[i]);
3563f4c5
JB
678 printf("\n");
679}
680
764fe753 681static void print_ies(unsigned char *ie, int ielen, struct scan_params *params)
3563f4c5
JB
682{
683 while (ielen >= 2 && ielen >= ie[1]) {
83b4934c
JB
684 if (ie[0] < ARRAY_SIZE(ieprinters) && ieprinters[ie[0]].name) {
685 print_ie(&ieprinters[ie[0]], ie[0], ie[1], ie + 2);
764fe753
JB
686 } else if (ie[0] == 221 /* vendor */) {
687 print_vendor(ie[1], ie + 2, params);
688 } else if (params->unknown) {
3563f4c5
JB
689 int i;
690
8086b700 691 printf("\tUnknown IE (%d):", ie[0]);
3563f4c5 692 for (i=0; i<ie[1]; i++)
8086b700 693 printf(" %.2x", ie[2+i]);
3563f4c5
JB
694 printf("\n");
695 }
696 ielen -= ie[1] + 2;
697 ie += ie[1] + 2;
698 }
699}
700
701static int print_bss_handler(struct nl_msg *msg, void *arg)
702{
703 struct nlattr *tb[NL80211_ATTR_MAX + 1];
704 struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
705 struct nlattr *bss[NL80211_BSS_MAX + 1];
706 char mac_addr[20], dev[20];
707 static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
708 [NL80211_BSS_TSF] = { .type = NLA_U64 },
709 [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
710 [NL80211_BSS_BSSID] = { },
711 [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
712 [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
713 [NL80211_BSS_INFORMATION_ELEMENTS] = { },
f2e17e1f
JB
714 [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
715 [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
3563f4c5
JB
716 };
717
718 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
719 genlmsg_attrlen(gnlh, 0), NULL);
720
721 if (!tb[NL80211_ATTR_BSS]) {
722 fprintf(stderr, "bss info missing!");
723 return NL_SKIP;
724 }
725 if (nla_parse_nested(bss, NL80211_BSS_MAX,
726 tb[NL80211_ATTR_BSS],
727 bss_policy)) {
728 fprintf(stderr, "failed to parse nested attributes!");
729 return NL_SKIP;
730 }
731
732 if (!bss[NL80211_BSS_BSSID])
733 return NL_SKIP;
734
735 mac_addr_n2a(mac_addr, nla_data(bss[NL80211_BSS_BSSID]));
736 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
737 printf("BSS %s (on %s)\n", mac_addr, dev);
738
e7109a8a
JB
739 if (bss[NL80211_BSS_TSF]) {
740 unsigned long long tsf;
741 tsf = (unsigned long long)nla_get_u64(bss[NL80211_BSS_TSF]);
742 printf("\tTSF: %llu usec (%llud, %.2lld:%.2llu:%.2llu)\n",
743 tsf, tsf/1000/1000/60/60/24, (tsf/1000/1000/60/60) % 24,
744 (tsf/1000/1000/60) % 60, (tsf/1000/1000) % 60);
745 }
3563f4c5
JB
746 if (bss[NL80211_BSS_FREQUENCY])
747 printf("\tfreq: %d\n",
748 nla_get_u32(bss[NL80211_BSS_FREQUENCY]));
749 if (bss[NL80211_BSS_BEACON_INTERVAL])
750 printf("\tbeacon interval: %d\n",
751 nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]));
92a04ecd
MH
752 if (bss[NL80211_BSS_CAPABILITY]) {
753 __u16 capa = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
754 printf("\tcapability:");
755 if (capa & WLAN_CAPABILITY_ESS)
756 printf(" ESS");
757 if (capa & WLAN_CAPABILITY_IBSS)
758 printf(" IBSS");
759 if (capa & WLAN_CAPABILITY_PRIVACY)
760 printf(" Privacy");
761 if (capa & WLAN_CAPABILITY_SHORT_PREAMBLE)
762 printf(" ShortPreamble");
763 if (capa & WLAN_CAPABILITY_PBCC)
764 printf(" PBCC");
765 if (capa & WLAN_CAPABILITY_CHANNEL_AGILITY)
766 printf(" ChannelAgility");
767 if (capa & WLAN_CAPABILITY_SPECTRUM_MGMT)
768 printf(" SpectrumMgmt");
769 if (capa & WLAN_CAPABILITY_QOS)
770 printf(" QoS");
771 if (capa & WLAN_CAPABILITY_SHORT_SLOT_TIME)
772 printf(" ShortSlotTime");
773 if (capa & WLAN_CAPABILITY_APSD)
774 printf(" APSD");
775 if (capa & WLAN_CAPABILITY_DSSS_OFDM)
776 printf(" DSSS-OFDM");
777 printf(" (0x%.4x)\n", capa);
778 }
f2e17e1f
JB
779 if (bss[NL80211_BSS_SIGNAL_MBM]) {
780 int s = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
781 printf("\tsignal: %d.%.2d dBm\n", s/100, s%100);
782 }
783 if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
784 unsigned char s = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
785 printf("\tsignal: %d/100\n", s);
786 }
3563f4c5
JB
787 if (bss[NL80211_BSS_INFORMATION_ELEMENTS])
788 print_ies(nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
764fe753
JB
789 nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
790 arg);
3563f4c5
JB
791
792 return NL_SKIP;
793}
794
764fe753 795static struct scan_params scan_params;
3563f4c5 796
7c37a24d
JB
797static int handle_scan_dump(struct nl80211_state *state,
798 struct nl_cb *cb,
3563f4c5
JB
799 struct nl_msg *msg,
800 int argc, char **argv)
801{
764fe753
JB
802 if (argc > 1)
803 return 1;
804
805 scan_params.unknown = false;
806 if (argc == 1 && !strcmp(argv[0], "-u"))
807 scan_params.unknown = true;
808
809 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_bss_handler,
810 &scan_params);
3563f4c5
JB
811 return 0;
812}
764fe753 813COMMAND(scan, dump, "[-u]",
01ae06f9 814 NL80211_CMD_GET_SCAN, NLM_F_DUMP, CIB_NETDEV, handle_scan_dump, NULL);
a5fe4ef2
JB
815
816static int handle_scan_combined(struct nl80211_state *state,
817 struct nl_cb *cb,
818 struct nl_msg *msg,
819 int argc, char **argv)
820{
559a1713
JB
821 char **trig_argv;
822/* static char *trig_argv[] = {
a5fe4ef2
JB
823 NULL,
824 "scan",
825 "trigger",
559a1713 826 };*/
a5fe4ef2
JB
827 static char *dump_argv[] = {
828 NULL,
829 "scan",
830 "dump",
92649eab 831 NULL,
a5fe4ef2
JB
832 };
833 static const __u32 cmds[] = {
834 NL80211_CMD_NEW_SCAN_RESULTS,
835 NL80211_CMD_SCAN_ABORTED,
836 };
559a1713 837 int trig_argc, dump_argc, err;
a5fe4ef2 838
559a1713
JB
839 if (argc >= 3 && !strcmp(argv[2], "-u")) {
840 dump_argc = 4;
841 dump_argv[3] = "-u";
842 } else
843 dump_argc = 3;
844
845 trig_argc = 3 + (argc - 2) + (3 - dump_argc);
846 trig_argv = calloc(trig_argc, sizeof(*trig_argv));
847 if (!trig_argv)
848 return -ENOMEM;
a5fe4ef2 849 trig_argv[0] = argv[0];
559a1713
JB
850 trig_argv[1] = "scan";
851 trig_argv[2] = "trigger";
852 int i;
853 for (i = 0; i < argc - 2 - (dump_argc - 3); i++)
854 trig_argv[i + 3] = argv[i + 2 + (dump_argc - 3)];
855 err = handle_cmd(state, II_NETDEV, trig_argc, trig_argv);
856 free(trig_argv);
a5fe4ef2
JB
857 if (err)
858 return err;
859
61725dbe
JB
860 /*
861 * WARNING: DO NOT COPY THIS CODE INTO YOUR APPLICATION
862 *
863 * This code has a bug, which requires creating a separate
864 * nl80211 socket to fix:
865 * It is possible for a NL80211_CMD_NEW_SCAN_RESULTS or
866 * NL80211_CMD_SCAN_ABORTED message to be sent by the kernel
867 * before (!) we listen to it, because we only start listening
868 * after we send our scan request.
869 *
870 * Doing it the other way around has a race condition as well,
871 * if you first open the events socket you may get a notification
872 * for a previous scan.
873 *
874 * The only proper way to fix this would be to listen to events
875 * before sending the command, and for the kernel to send the
876 * scan request along with the event, so that you can match up
877 * whether the scan you requested was finished or aborted (this
878 * may result in processing a scan that another application
879 * requested, but that doesn't seem to be a problem).
880 *
881 * Alas, the kernel doesn't do that (yet).
882 */
883
a5fe4ef2
JB
884 if (listen_events(state, ARRAY_SIZE(cmds), cmds) ==
885 NL80211_CMD_SCAN_ABORTED) {
886 printf("scan aborted!\n");
887 return 0;
888 }
889
890 dump_argv[0] = argv[0];
92649eab 891 return handle_cmd(state, II_NETDEV, dump_argc, dump_argv);
a5fe4ef2 892}
01ae06f9 893TOPLEVEL(scan, "[-u] [freq <freq>*] [ssid <ssid>*|passive]", 0, 0, CIB_NETDEV, handle_scan_combined, NULL);