]> git.ipfire.org Git - thirdparty/iw.git/blame - scan.c
Revert "make iw build on FC8"
[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;
febeb0c0 35 enum print_ie_type type;
575280cc 36 bool show_both_ie_sets;
764fe753
JB
37};
38
2b690f0a
LR
39#define IEEE80211_COUNTRY_EXTENSION_ID 201
40
41struct ieee80211_country_ie_triplet {
42 union {
43 struct {
44 __u8 first_channel;
45 __u8 num_channels;
46 __s8 max_power;
47 } __attribute__ ((packed)) chans;
48 struct {
49 __u8 reg_extension_id;
50 __u8 reg_class;
51 __u8 coverage_class;
52 } __attribute__ ((packed)) ext;
53 };
54} __attribute__ ((packed));
55
7c37a24d
JB
56static int handle_scan(struct nl80211_state *state,
57 struct nl_cb *cb,
3563f4c5
JB
58 struct nl_msg *msg,
59 int argc, char **argv)
60{
559a1713
JB
61 struct nl_msg *ssids = NULL, *freqs = NULL;
62 char *eptr;
3563f4c5 63 int err = -ENOBUFS;
559a1713
JB
64 int i;
65 enum {
66 NONE,
67 FREQ,
64797a7f 68 IES,
559a1713
JB
69 SSID,
70 DONE,
71 } parse = NONE;
72 int freq;
73 bool passive = false, have_ssids = false, have_freqs = false;
64797a7f
JB
74 size_t tmp;
75 unsigned char *ies;
3563f4c5
JB
76
77 ssids = nlmsg_alloc();
78 if (!ssids)
79 return -ENOMEM;
559a1713
JB
80
81 freqs = nlmsg_alloc();
82 if (!freqs) {
83 nlmsg_free(ssids);
84 return -ENOMEM;
85 }
86
87 for (i = 0; i < argc; i++) {
559a1713
JB
88 switch (parse) {
89 case NONE:
64797a7f
JB
90 if (strcmp(argv[i], "freq") == 0) {
91 parse = FREQ;
92 have_freqs = true;
93 break;
94 } else if (strcmp(argv[i], "ies") == 0) {
95 parse = IES;
96 break;
97 } else if (strcmp(argv[i], "ssid") == 0) {
98 parse = SSID;
99 have_ssids = true;
100 break;
101 } else if (strcmp(argv[i], "passive") == 0) {
102 parse = DONE;
103 passive = true;
104 break;
105 }
559a1713
JB
106 case DONE:
107 return 1;
108 case FREQ:
109 freq = strtoul(argv[i], &eptr, 10);
110 if (eptr != argv[i] + strlen(argv[i]))
111 return 1;
112 NLA_PUT_U32(freqs, i, freq);
64797a7f
JB
113 parse = NONE;
114 break;
115 case IES:
116 ies = parse_hex(argv[i], &tmp);
117 if (!ies)
118 goto nla_put_failure;
119 NLA_PUT(msg, NL80211_ATTR_IE, tmp, ies);
120 free(ies);
121 parse = NONE;
559a1713
JB
122 break;
123 case SSID:
124 NLA_PUT(ssids, i, strlen(argv[i]), argv[i]);
125 break;
126 }
127 }
128
129 if (!have_ssids)
130 NLA_PUT(ssids, 1, 0, "");
131 if (!passive)
132 nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids);
133
134 if (have_freqs)
135 nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
3563f4c5
JB
136
137 err = 0;
138 nla_put_failure:
139 nlmsg_free(ssids);
559a1713 140 nlmsg_free(freqs);
3563f4c5
JB
141 return err;
142}
3563f4c5 143
857d966e
MH
144static void tab_on_first(bool *first)
145{
146 if (!*first)
147 printf("\t");
148 else
149 *first = false;
150}
151
83b4934c 152static void print_ssid(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5 153{
83b4934c 154 printf(" ");
748f8489 155 print_ssid_escaped(len, data);
3563f4c5
JB
156 printf("\n");
157}
158
83b4934c 159static void print_supprates(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5
JB
160{
161 int i;
162
83b4934c 163 printf(" ");
3563f4c5 164
83b4934c 165 for (i = 0; i < len; i++) {
3563f4c5
JB
166 int r = data[i] & 0x7f;
167 printf("%d.%d%s ", r/2, 5*(r&1), data[i] & 0x80 ? "*":"");
168 }
169 printf("\n");
170}
171
83b4934c 172static void print_ds(const uint8_t type, uint8_t len, const uint8_t *data)
3563f4c5 173{
83b4934c 174 printf(" channel %d\n", data[0]);
3563f4c5
JB
175}
176
2b690f0a 177static const char *country_env_str(char environment)
b7e8fa37 178{
2b690f0a 179 switch (environment) {
b7e8fa37 180 case 'I':
2b690f0a 181 return "Indoor only";
b7e8fa37 182 case 'O':
2b690f0a 183 return "Outdoor only";
b6c0d634 184 case ' ':
2b690f0a 185 return "Indoor/Outdoor";
b6c0d634 186 default:
2b690f0a 187 return "bogus";
b7e8fa37 188 }
2b690f0a
LR
189}
190
191static void print_country(const uint8_t type, uint8_t len, const uint8_t *data)
192{
193 printf(" %.*s", 2, data);
194
195 printf("\tEnvironment: %s\n", country_env_str(data[2]));
196
197 data += 3;
198 len -= 3;
199
200 if (len < 3) {
201 printf("\t\tNo country IE triplets present\n");
202 return;
203 }
204
205 while (len >= 3) {
206 int end_channel;
207 struct ieee80211_country_ie_triplet *triplet =
208 (struct ieee80211_country_ie_triplet *) data;
209
210 if (triplet->ext.reg_extension_id >= IEEE80211_COUNTRY_EXTENSION_ID) {
211 printf("\t\tExtension ID: %d Regulatory Class: %d Coverage class: %d (up to %dm)\n",
212 triplet->ext.reg_extension_id,
213 triplet->ext.reg_class,
214 triplet->ext.coverage_class,
215 triplet->ext.coverage_class * 450);
216
217 data += 3;
218 len -= 3;
219 continue;
220 }
221
222 /* 2 GHz */
223 if (triplet->chans.first_channel <= 14)
224 end_channel = triplet->chans.first_channel + (triplet->chans.num_channels - 1);
225 else
226 end_channel = triplet->chans.first_channel + (4 * (triplet->chans.num_channels - 1));
227
228 printf("\t\tChannels [%d - %d]\n", triplet->chans.first_channel, end_channel);
229
230 data += 3;
231 len -= 3;
232 }
233
234 return;
b7e8fa37
MH
235}
236
d1563a1b
MH
237static void print_powerconstraint(const uint8_t type, uint8_t len, const uint8_t *data)
238{
239 printf(" %d dB\n", data[0]);
240}
241
83b4934c 242static void print_erp(const uint8_t type, uint8_t len, const uint8_t *data)
fc4d1484
MH
243{
244 if (data[0] == 0x00)
83b4934c 245 printf(" <no flags>");
fc4d1484
MH
246 if (data[0] & 0x01)
247 printf(" NonERP_Present");
248 if (data[0] & 0x02)
249 printf(" Use_Protection");
250 if (data[0] & 0x04)
251 printf(" Barker_Preamble_Mode");
252 printf("\n");
253}
254
83b4934c 255static void print_cipher(const uint8_t *data)
857d966e
MH
256{
257 if (memcmp(data, wifi_oui, 3) == 0) {
258 switch (data[3]) {
510e0e2f 259 case 0:
857d966e
MH
260 printf("Use group cipher suite");
261 break;
510e0e2f 262 case 1:
857d966e
MH
263 printf("WEP-40");
264 break;
510e0e2f 265 case 2:
857d966e
MH
266 printf("TKIP");
267 break;
510e0e2f 268 case 4:
857d966e
MH
269 printf("CCMP");
270 break;
510e0e2f 271 case 5:
857d966e
MH
272 printf("WEP-104");
273 break;
274 default:
332769c6 275 printf("%.02x-%.02x-%.02x:%d",
5594fd23 276 data[0], data[1] ,data[2], data[3]);
857d966e
MH
277 break;
278 }
279 } else if (memcmp(data, ieee80211_oui, 3) == 0) {
280 switch (data[3]) {
510e0e2f 281 case 0:
857d966e
MH
282 printf("Use group cipher suite");
283 break;
510e0e2f 284 case 1:
857d966e
MH
285 printf("WEP-40");
286 break;
510e0e2f 287 case 2:
857d966e
MH
288 printf("TKIP");
289 break;
510e0e2f 290 case 4:
857d966e
MH
291 printf("CCMP");
292 break;
510e0e2f 293 case 5:
857d966e
MH
294 printf("WEP-104");
295 break;
510e0e2f 296 case 6:
857d966e
MH
297 printf("AES-128-CMAC");
298 break;
299 default:
332769c6 300 printf("%.02x-%.02x-%.02x:%d",
5594fd23 301 data[0], data[1] ,data[2], data[3]);
857d966e
MH
302 break;
303 }
304 } else
332769c6 305 printf("%.02x-%.02x-%.02x:%d",
5594fd23 306 data[0], data[1] ,data[2], data[3]);
857d966e
MH
307}
308
83b4934c 309static void print_auth(const uint8_t *data)
857d966e
MH
310{
311 if (memcmp(data, wifi_oui, 3) == 0) {
312 switch (data[3]) {
510e0e2f 313 case 1:
857d966e
MH
314 printf("IEEE 802.1X");
315 break;
510e0e2f 316 case 2:
857d966e
MH
317 printf("PSK");
318 break;
319 default:
332769c6 320 printf("%.02x-%.02x-%.02x:%d",
5594fd23 321 data[0], data[1] ,data[2], data[3]);
857d966e
MH
322 break;
323 }
324 } else if (memcmp(data, ieee80211_oui, 3) == 0) {
325 switch (data[3]) {
510e0e2f 326 case 1:
857d966e
MH
327 printf("IEEE 802.1X");
328 break;
510e0e2f 329 case 2:
857d966e
MH
330 printf("PSK");
331 break;
0fe1c415
JB
332 case 3:
333 printf("FT/IEEE 802.1X");
334 break;
335 case 4:
336 printf("FT/PSK");
337 break;
338 case 5:
339 printf("IEEE 802.1X/SHA-256");
340 break;
341 case 6:
342 printf("PSK/SHA-256");
343 break;
857d966e 344 default:
332769c6 345 printf("%.02x-%.02x-%.02x:%d",
5594fd23 346 data[0], data[1] ,data[2], data[3]);
857d966e
MH
347 break;
348 }
349 } else
332769c6 350 printf("%.02x-%.02x-%.02x:%d",
5594fd23 351 data[0], data[1] ,data[2], data[3]);
857d966e
MH
352}
353
83b4934c
JB
354static void print_rsn_ie(const char *defcipher, const char *defauth,
355 uint8_t len, const uint8_t *data)
857d966e
MH
356{
357 bool first = true;
358 __u16 version, count, capa;
359 int i;
360
857d966e
MH
361 version = data[0] + (data[1] << 8);
362 tab_on_first(&first);
363 printf("\t * Version: %d\n", version);
364
365 data += 2;
366 len -= 2;
367
368 if (len < 4) {
369 tab_on_first(&first);
370 printf("\t * Group cipher: %s\n", defcipher);
371 printf("\t * Pairwise ciphers: %s\n", defcipher);
372 return;
373 }
374
375 tab_on_first(&first);
376 printf("\t * Group cipher: ");
377 print_cipher(data);
378 printf("\n");
379
380 data += 4;
381 len -= 4;
382
383 if (len < 2) {
384 tab_on_first(&first);
385 printf("\t * Pairwise ciphers: %s\n", defcipher);
386 return;
387 }
388
389 count = data[0] | (data[1] << 8);
31d477fb
MH
390 if (2 + (count * 4) > len)
391 goto invalid;
392
857d966e
MH
393 tab_on_first(&first);
394 printf("\t * Pairwise ciphers:");
31d477fb 395 for (i = 0; i < count; i++) {
857d966e
MH
396 printf(" ");
397 print_cipher(data + 2 + (i * 4));
398 }
399 printf("\n");
400
401 data += 2 + (count * 4);
402 len -= 2 + (count * 4);
403
404 if (len < 2) {
405 tab_on_first(&first);
406 printf("\t * Authentication suites: %s\n", defauth);
407 return;
408 }
409
410 count = data[0] | (data[1] << 8);
31d477fb
MH
411 if (2 + (count * 4) > len)
412 goto invalid;
413
857d966e
MH
414 tab_on_first(&first);
415 printf("\t * Authentication suites:");
83b4934c 416 for (i = 0; i < count; i++) {
857d966e
MH
417 printf(" ");
418 print_auth(data + 2 + (i * 4));
419 }
420 printf("\n");
421
422 data += 2 + (count * 4);
423 len -= 2 + (count * 4);
424
6a4f24e8
JB
425 if (len >= 2) {
426 capa = data[0] | (data[1] << 8);
427 tab_on_first(&first);
cadbe89a
JB
428 printf("\t * Capabilities:");
429 if (capa & 0x0001)
430 printf(" PreAuth");
431 if (capa & 0x0002)
432 printf(" NoPairwise");
433 switch ((capa & 0x000c) >> 2) {
434 case 0:
435 break;
436 case 1:
437 printf(" 2-PTKSA-RC");
438 break;
439 case 2:
440 printf(" 4-PTKSA-RC");
441 break;
442 case 3:
443 printf(" 16-PTKSA-RC");
444 break;
445 }
446 switch ((capa & 0x0030) >> 4) {
447 case 0:
448 break;
449 case 1:
450 printf(" 2-GTKSA-RC");
451 break;
452 case 2:
453 printf(" 4-GTKSA-RC");
454 break;
455 case 3:
456 printf(" 16-GTKSA-RC");
457 break;
458 }
459 if (capa & 0x0040)
460 printf(" MFP-required");
461 if (capa & 0x0080)
462 printf(" MFP-capable");
463 if (capa & 0x0200)
464 printf(" Peerkey-enabled");
465 if (capa & 0x0400)
466 printf(" SPP-AMSDU-capable");
467 if (capa & 0x0800)
468 printf(" SPP-AMSDU-required");
469 printf(" (0x%.4x)\n", capa);
6a4f24e8
JB
470 data += 2;
471 len -= 2;
472 }
31d477fb 473
cadbe89a 474 invalid:
31d477fb
MH
475 if (len != 0) {
476 printf("\t\t * bogus tail data (%d):", len);
477 while (len) {
478 printf(" %.2x", *data);
479 data++;
480 len--;
481 }
482 printf("\n");
483 }
857d966e
MH
484}
485
83b4934c 486static void print_rsn(const uint8_t type, uint8_t len, const uint8_t *data)
857d966e 487{
83b4934c 488 print_rsn_ie("CCMP", "IEEE 802.1X", len, data);
857d966e
MH
489}
490
0c445c24
LR
491static void print_ht_capa(const uint8_t type, uint8_t len, const uint8_t *data)
492{
357c1a5d 493 printf("\n");
7ddfb679
JB
494 print_ht_capability(data[0] | (data[1] << 8));
495 print_ampdu_length(data[2] & 3);
c79c7464 496 print_ampdu_spacing((data[2] >> 2) & 7);
7ddfb679 497 print_ht_mcs(data + 3);
0c445c24
LR
498}
499
be7602fb
JB
500static void print_ht_op(const uint8_t type, uint8_t len, const uint8_t *data)
501{
502 static const char *offset[4] = {
503 "no secondary",
504 "above",
505 "[reserved!]",
506 "below",
507 };
508 static const char *protection[4] = {
509 "no",
510 "nonmember",
511 "20 MHz",
512 "non-HT mixed",
513 };
514 static const char *sta_chan_width[2] = {
515 "20 MHz",
516 "any",
517 };
518
519 printf("\n");
520 printf("\t\t * primary channel: %d\n", data[0]);
521 printf("\t\t * secondary channel offset: %s\n",
522 offset[data[1] & 0x3]);
523 printf("\t\t * STA channel width: %s\n", sta_chan_width[(data[1] & 0x4)>>2]);
524 printf("\t\t * RIFS: %d\n", (data[1] & 0x8)>>3);
525 printf("\t\t * HT protection: %s\n", protection[data[2] & 0x3]);
526 printf("\t\t * non-GF present: %d\n", (data[2] & 0x4) >> 2);
527 printf("\t\t * OBSS non-GF present: %d\n", (data[2] & 0x10) >> 4);
528 printf("\t\t * dual beacon: %d\n", (data[4] & 0x40) >> 6);
529 printf("\t\t * dual CTS protection: %d\n", (data[4] & 0x80) >> 7);
530 printf("\t\t * STBC beacon: %d\n", data[5] & 0x1);
531 printf("\t\t * L-SIG TXOP Prot: %d\n", (data[5] & 0x2) >> 1);
532 printf("\t\t * PCO active: %d\n", (data[5] & 0x4) >> 2);
533 printf("\t\t * PCO phase: %d\n", (data[5] & 0x8) >> 3);
534}
535
83b4934c 536static void print_capabilities(const uint8_t type, uint8_t len, const uint8_t *data)
9b880b00 537{
31d2d259
JB
538 int i, base, bit;
539 bool first = true;
540
541
542 for (i = 0; i < len; i++) {
543 base = i * 8;
544
545 for (bit = 0; bit < 8; bit++) {
546 if (!(data[i] & (1 << bit)))
547 continue;
548
549 if (!first)
550 printf(",");
551 else
552 first = false;
553
554 switch (bit + base) {
555 case 0:
556 printf(" HT Information Exchange Supported");
557 break;
558 case 1:
559 printf(" On-demand Beacon");
560 break;
561 case 2:
562 printf(" Extended Channel Switching");
563 break;
564 case 3:
565 printf(" Wave Indication");
566 break;
567 case 4:
568 printf(" PSMP Capability");
569 break;
570 case 5:
571 printf(" Service Interval Granularity");
572 break;
573 case 6:
574 printf(" S-PSMP Capability");
575 break;
576 default:
577 printf(" %d", bit);
578 break;
579 }
580 }
581 }
9b880b00 582
9b880b00
MH
583 printf("\n");
584}
585
575280cc
JM
586static void print_tim(const uint8_t type, uint8_t len, const uint8_t *data)
587{
588 printf(" DTIM Count %u DTIM Period %u Bitmap Control 0x%x "
589 "Bitmap[0] 0x%x",
590 data[0], data[1], data[2], data[3]);
591 if (len - 4)
592 printf(" (+ %u octet%s)", len - 4, len - 4 == 1 ? "" : "s");
593 printf("\n");
594}
595
83b4934c
JB
596struct ie_print {
597 const char *name;
598 void (*print)(const uint8_t type, uint8_t len, const uint8_t *data);
599 uint8_t minlen, maxlen;
febeb0c0 600 uint8_t flags;
764fe753
JB
601};
602
83b4934c
JB
603static void print_ie(const struct ie_print *p, const uint8_t type,
604 uint8_t len, const uint8_t *data)
4673a894 605{
83b4934c
JB
606 int i;
607
608 if (!p->print)
609 return;
610
611 printf("\t%s:", p->name);
612 if (len < p->minlen || len > p->maxlen) {
613 if (len > 1) {
614 printf(" <invalid: %d bytes:", len);
615 for (i = 0; i < len; i++)
616 printf(" %.02x", data[i]);
617 printf(">\n");
618 } else if (len)
619 printf(" <invalid: 1 byte: %.02x>\n", data[0]);
620 else
621 printf(" <invalid: no data>\n");
622 return;
623 }
624
625 p->print(type, len, data);
626}
627
628#define PRINT_IGN { \
629 .name = "IGNORE", \
630 .print = NULL, \
631 .minlen = 0, \
632 .maxlen = 255, \
4673a894
JB
633}
634
83b4934c 635static const struct ie_print ieprinters[] = {
febeb0c0
JB
636 [0] = { "SSID", print_ssid, 0, 32, BIT(PRINT_SCAN) | BIT(PRINT_LINK), },
637 [1] = { "Supported rates", print_supprates, 0, 255, BIT(PRINT_SCAN), },
014d581a 638 [3] = { "DS Parameter set", print_ds, 1, 1, BIT(PRINT_SCAN), },
575280cc 639 [5] = { "TIM", print_tim, 4, 255, BIT(PRINT_SCAN), },
febeb0c0
JB
640 [7] = { "Country", print_country, 3, 255, BIT(PRINT_SCAN), },
641 [32] = { "Power constraint", print_powerconstraint, 1, 1, BIT(PRINT_SCAN), },
642 [42] = { "ERP", print_erp, 1, 255, BIT(PRINT_SCAN), },
a2e61861 643 [45] = { "HT capabilities", print_ht_capa, 26, 26, BIT(PRINT_SCAN), },
be7602fb 644 [61] = { "HT operation", print_ht_op, 22, 22, BIT(PRINT_SCAN), },
febeb0c0
JB
645 [48] = { "RSN", print_rsn, 2, 255, BIT(PRINT_SCAN), },
646 [50] = { "Extended supported rates", print_supprates, 0, 255, BIT(PRINT_SCAN), },
647 [127] = { "Extended capabilities", print_capabilities, 0, 255, BIT(PRINT_SCAN), },
83b4934c
JB
648};
649
650static void print_wifi_wpa(const uint8_t type, uint8_t len, const uint8_t *data)
651{
652 print_rsn_ie("TKIP", "IEEE 802.1X", len, data);
653}
654
1cab57eb
JB
655static bool print_wifi_wmm_param(const uint8_t *data, uint8_t len)
656{
657 int i;
658 static const char *aci_tbl[] = { "BE", "BK", "VI", "VO" };
659
660 if (len < 19)
661 goto invalid;
662
663 if (data[0] != 1) {
cee4fe20 664 printf("Parameter: not version 1: ");
1cab57eb
JB
665 return false;
666 }
667
89ea706f 668 printf("\t * Parameter version 1");
1cab57eb
JB
669
670 data++;
671
672 if (data[0] & 0x80)
89ea706f 673 printf("\n\t\t * u-APSD");
1cab57eb
JB
674
675 data += 2;
676
677 for (i = 0; i < 4; i++) {
89ea706f 678 printf("\n\t\t * %s:", aci_tbl[(data[0] >> 5) & 3]);
1cab57eb
JB
679 if (data[4] & 0x10)
680 printf(" acm");
681 printf(" CW %d-%d", (1 << (data[1] & 0xf)) - 1,
682 (1 << (data[1] >> 4)) - 1);
a2a4c265 683 printf(", AIFSN %d", data[0] & 0xf);
1cab57eb 684 if (data[2] | data[3])
cee4fe20 685 printf(", TXOP %d usec", (data[2] + (data[3] << 8)) * 32);
1cab57eb
JB
686 data += 4;
687 }
688
689 printf("\n");
690 return true;
691
692 invalid:
693 printf("invalid: ");
694 return false;
695}
696
83b4934c 697static void print_wifi_wmm(const uint8_t type, uint8_t len, const uint8_t *data)
6ff0c93a
MH
698{
699 int i;
700
6ff0c93a
MH
701 switch (data[0]) {
702 case 0x00:
83b4934c 703 printf(" information:");
6ff0c93a
MH
704 break;
705 case 0x01:
1cab57eb
JB
706 if (print_wifi_wmm_param(data + 1, len - 1))
707 return;
6ff0c93a
MH
708 break;
709 default:
83b4934c 710 printf(" type %d:", data[0]);
6ff0c93a
MH
711 break;
712 }
713
1cab57eb
JB
714 for(i = 1; i < len; i++)
715 printf(" %.02x", data[i]);
6ff0c93a
MH
716 printf("\n");
717}
718
a6816965
JM
719static const char * wifi_wps_dev_passwd_id(uint16_t id)
720{
721 switch (id) {
722 case 0:
723 return "Default (PIN)";
724 case 1:
725 return "User-specified";
726 case 2:
727 return "Machine-specified";
728 case 3:
729 return "Rekey";
730 case 4:
731 return "PushButton";
732 case 5:
733 return "Registrar-specified";
734 default:
735 return "??";
736 }
737}
738
83b4934c 739static void print_wifi_wps(const uint8_t type, uint8_t len, const uint8_t *data)
4673a894
JB
740{
741 bool first = true;
742 __u16 subtype, sublen;
743
4673a894
JB
744 while (len >= 4) {
745 subtype = (data[0] << 8) + data[1];
746 sublen = (data[2] << 8) + data[3];
747 if (sublen > len)
748 break;
749
750 switch (subtype) {
751 case 0x104a:
752 tab_on_first(&first);
dffc6750 753 printf("\t * Version: %d.%d\n", data[4] >> 4, data[4] & 0xF);
4673a894
JB
754 break;
755 case 0x1011:
756 tab_on_first(&first);
757 printf("\t * Device name: %.*s\n", sublen, data + 4);
758 break;
a6816965
JM
759 case 0x1012: {
760 uint16_t id;
761 tab_on_first(&first);
762 if (sublen != 2) {
763 printf("\t * Device Password ID: (invalid "
764 "length %d)\n", sublen);
765 break;
766 }
767 id = data[4] << 8 | data[5];
768 printf("\t * Device Password ID: %u (%s)\n",
769 id, wifi_wps_dev_passwd_id(id));
770 break;
771 }
4673a894
JB
772 case 0x1021:
773 tab_on_first(&first);
774 printf("\t * Manufacturer: %.*s\n", sublen, data + 4);
775 break;
776 case 0x1023:
777 tab_on_first(&first);
778 printf("\t * Model: %.*s\n", sublen, data + 4);
779 break;
a6816965
JM
780 case 0x1024:
781 tab_on_first(&first);
782 printf("\t * Model Number: %.*s\n", sublen, data + 4);
783 break;
784 case 0x103b: {
785 __u8 val = data[4];
786 tab_on_first(&first);
787 printf("\t * Response Type: %d%s\n",
788 val, val == 3 ? " (AP)" : "");
789 break;
790 }
791 case 0x103c: {
792 __u8 val = data[4];
793 tab_on_first(&first);
794 printf("\t * RF Bands: 0x%x\n", val);
795 break;
796 }
797 case 0x1041: {
798 __u8 val = data[4];
799 tab_on_first(&first);
800 printf("\t * Selected Registrar: 0x%x\n", val);
801 break;
802 }
803 case 0x1042:
804 tab_on_first(&first);
805 printf("\t * Serial Number: %.*s\n", sublen, data + 4);
806 break;
807 case 0x1044: {
808 __u8 val = data[4];
809 tab_on_first(&first);
810 printf("\t * Wi-Fi Protected Setup State: %d%s%s\n",
811 val,
812 val == 1 ? " (Unconfigured)" : "",
813 val == 2 ? " (Configured)" : "");
814 break;
815 }
816 case 0x1054: {
817 tab_on_first(&first);
818 if (sublen != 8) {
819 printf("\t * Primary Device Type: (invalid "
820 "length %d)\n", sublen);
821 break;
822 }
823 printf("\t * Primary Device Type: "
824 "%u-%02x%02x%02x%02x-%u\n",
825 data[4] << 8 | data[5],
826 data[6], data[7], data[8], data[9],
827 data[10] << 8 | data[11]);
828 break;
829 }
7ee5a865 830 case 0x1057: {
fe31a22e 831 __u8 val = data[4];
7ee5a865 832 tab_on_first(&first);
fe31a22e 833 printf("\t * AP setup locked: 0x%.2x\n", val);
7ee5a865
JB
834 break;
835 }
a6816965
JM
836 case 0x1008:
837 case 0x1053: {
4673a894
JB
838 __u16 meth = (data[4] << 8) + data[5];
839 bool comma = false;
840 tab_on_first(&first);
a6816965
JM
841 printf("\t * %sConfig methods:",
842 subtype == 0x1053 ? "Selected Registrar ": "");
4673a894
JB
843#define T(bit, name) do { \
844 if (meth & (1<<bit)) { \
845 if (comma) \
846 printf(","); \
847 comma = true; \
848 printf(" " name); \
849 } } while (0)
850 T(0, "USB");
851 T(1, "Ethernet");
852 T(2, "Label");
853 T(3, "Display");
854 T(4, "Ext. NFC");
855 T(5, "Int. NFC");
856 T(6, "NFC Intf.");
857 T(7, "PBC");
858 T(8, "Keypad");
859 printf("\n");
860 break;
861#undef T
862 }
2650d46b
JB
863 default: {
864 const __u8 *subdata = data + 4;
865 __u16 tmplen = sublen;
866
867 tab_on_first(&first);
868 printf("\t * Unknown TLV (%#.4x, %d bytes):",
869 subtype, tmplen);
870 while (tmplen) {
871 printf(" %.2x", *subdata);
872 subdata++;
873 tmplen--;
874 }
875 printf("\n");
4673a894
JB
876 break;
877 }
2650d46b 878 }
4673a894
JB
879
880 data += sublen + 4;
881 len -= sublen + 4;
882 }
883
884 if (len != 0) {
885 printf("\t\t * bogus tail data (%d):", len);
886 while (len) {
887 printf(" %.2x", *data);
888 data++;
889 len--;
890 }
891 printf("\n");
892 }
893}
894
83b4934c 895static const struct ie_print wifiprinters[] = {
febeb0c0
JB
896 [1] = { "WPA", print_wifi_wpa, 2, 255, BIT(PRINT_SCAN), },
897 [2] = { "WMM", print_wifi_wmm, 1, 255, BIT(PRINT_SCAN), },
898 [4] = { "WPS", print_wifi_wps, 0, 255, BIT(PRINT_SCAN), },
4673a894
JB
899};
900
764fe753 901static void print_vendor(unsigned char len, unsigned char *data,
febeb0c0 902 bool unknown, enum print_ie_type ptype)
3563f4c5
JB
903{
904 int i;
905
fbf80af5 906 if (len < 3) {
4673a894 907 printf("\tVendor specific: <too short> data:");
fbf80af5
JB
908 for(i = 0; i < len; i++)
909 printf(" %.02x", data[i]);
910 printf("\n");
911 return;
912 }
913
857d966e 914 if (len >= 4 && memcmp(data, wifi_oui, 3) == 0) {
febeb0c0
JB
915 if (data[3] < ARRAY_SIZE(wifiprinters) &&
916 wifiprinters[data[3]].name &&
917 wifiprinters[data[3]].flags & BIT(ptype)) {
83b4934c
JB
918 print_ie(&wifiprinters[data[3]], data[3], len - 4, data + 4);
919 return;
920 }
febeb0c0 921 if (!unknown)
4673a894 922 return;
857d966e 923 printf("\tWiFi OUI %#.2x, data:", data[3]);
4673a894
JB
924 for(i = 0; i < len - 4; i++)
925 printf(" %.02x", data[i + 4]);
926 printf("\n");
927 return;
928 }
929
febeb0c0 930 if (!unknown)
764fe753
JB
931 return;
932
fbf80af5 933 printf("\tVendor specific: OUI %.2x:%.2x:%.2x, data:",
3563f4c5 934 data[0], data[1], data[2]);
fbf80af5
JB
935 for (i = 3; i < len; i++)
936 printf(" %.2x", data[i]);
3563f4c5
JB
937 printf("\n");
938}
939
febeb0c0
JB
940void print_ies(unsigned char *ie, int ielen, bool unknown,
941 enum print_ie_type ptype)
3563f4c5
JB
942{
943 while (ielen >= 2 && ielen >= ie[1]) {
febeb0c0
JB
944 if (ie[0] < ARRAY_SIZE(ieprinters) &&
945 ieprinters[ie[0]].name &&
946 ieprinters[ie[0]].flags & BIT(ptype)) {
83b4934c 947 print_ie(&ieprinters[ie[0]], ie[0], ie[1], ie + 2);
764fe753 948 } else if (ie[0] == 221 /* vendor */) {
febeb0c0
JB
949 print_vendor(ie[1], ie + 2, unknown, ptype);
950 } else if (unknown) {
3563f4c5
JB
951 int i;
952
8086b700 953 printf("\tUnknown IE (%d):", ie[0]);
3563f4c5 954 for (i=0; i<ie[1]; i++)
8086b700 955 printf(" %.2x", ie[2+i]);
3563f4c5
JB
956 printf("\n");
957 }
958 ielen -= ie[1] + 2;
959 ie += ie[1] + 2;
960 }
961}
962
963static int print_bss_handler(struct nl_msg *msg, void *arg)
964{
965 struct nlattr *tb[NL80211_ATTR_MAX + 1];
966 struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
967 struct nlattr *bss[NL80211_BSS_MAX + 1];
968 char mac_addr[20], dev[20];
969 static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
970 [NL80211_BSS_TSF] = { .type = NLA_U64 },
971 [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
972 [NL80211_BSS_BSSID] = { },
973 [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
974 [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
975 [NL80211_BSS_INFORMATION_ELEMENTS] = { },
f2e17e1f
JB
976 [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
977 [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
a56117a6 978 [NL80211_BSS_STATUS] = { .type = NLA_U32 },
c04a78df 979 [NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
575280cc 980 [NL80211_BSS_BEACON_IES] = { },
3563f4c5 981 };
febeb0c0 982 struct scan_params *params = arg;
1c5bcd9c 983 int show = params->show_both_ie_sets ? 2 : 1;
3563f4c5
JB
984
985 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
986 genlmsg_attrlen(gnlh, 0), NULL);
987
988 if (!tb[NL80211_ATTR_BSS]) {
5fe70c0e 989 fprintf(stderr, "bss info missing!\n");
3563f4c5
JB
990 return NL_SKIP;
991 }
992 if (nla_parse_nested(bss, NL80211_BSS_MAX,
993 tb[NL80211_ATTR_BSS],
994 bss_policy)) {
5fe70c0e 995 fprintf(stderr, "failed to parse nested attributes!\n");
3563f4c5
JB
996 return NL_SKIP;
997 }
998
999 if (!bss[NL80211_BSS_BSSID])
1000 return NL_SKIP;
1001
1002 mac_addr_n2a(mac_addr, nla_data(bss[NL80211_BSS_BSSID]));
1003 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
a56117a6
JB
1004 printf("BSS %s (on %s)", mac_addr, dev);
1005
1006 if (bss[NL80211_BSS_STATUS]) {
1007 switch (nla_get_u32(bss[NL80211_BSS_STATUS])) {
1008 case NL80211_BSS_STATUS_AUTHENTICATED:
1009 printf(" -- authenticated");
1010 break;
1011 case NL80211_BSS_STATUS_ASSOCIATED:
1012 printf(" -- associated");
1013 break;
1014 case NL80211_BSS_STATUS_IBSS_JOINED:
1015 printf(" -- joined");
1016 break;
1017 default:
1018 printf(" -- unknown status: %d",
1019 nla_get_u32(bss[NL80211_BSS_STATUS]));
1020 break;
1021 }
1022 }
1023 printf("\n");
3563f4c5 1024
e7109a8a
JB
1025 if (bss[NL80211_BSS_TSF]) {
1026 unsigned long long tsf;
1027 tsf = (unsigned long long)nla_get_u64(bss[NL80211_BSS_TSF]);
1028 printf("\tTSF: %llu usec (%llud, %.2lld:%.2llu:%.2llu)\n",
1029 tsf, tsf/1000/1000/60/60/24, (tsf/1000/1000/60/60) % 24,
1030 (tsf/1000/1000/60) % 60, (tsf/1000/1000) % 60);
1031 }
3563f4c5
JB
1032 if (bss[NL80211_BSS_FREQUENCY])
1033 printf("\tfreq: %d\n",
1034 nla_get_u32(bss[NL80211_BSS_FREQUENCY]));
1035 if (bss[NL80211_BSS_BEACON_INTERVAL])
1036 printf("\tbeacon interval: %d\n",
1037 nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]));
92a04ecd
MH
1038 if (bss[NL80211_BSS_CAPABILITY]) {
1039 __u16 capa = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
1040 printf("\tcapability:");
1041 if (capa & WLAN_CAPABILITY_ESS)
1042 printf(" ESS");
1043 if (capa & WLAN_CAPABILITY_IBSS)
1044 printf(" IBSS");
1045 if (capa & WLAN_CAPABILITY_PRIVACY)
1046 printf(" Privacy");
1047 if (capa & WLAN_CAPABILITY_SHORT_PREAMBLE)
1048 printf(" ShortPreamble");
1049 if (capa & WLAN_CAPABILITY_PBCC)
1050 printf(" PBCC");
1051 if (capa & WLAN_CAPABILITY_CHANNEL_AGILITY)
1052 printf(" ChannelAgility");
1053 if (capa & WLAN_CAPABILITY_SPECTRUM_MGMT)
1054 printf(" SpectrumMgmt");
1055 if (capa & WLAN_CAPABILITY_QOS)
1056 printf(" QoS");
1057 if (capa & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1058 printf(" ShortSlotTime");
1059 if (capa & WLAN_CAPABILITY_APSD)
1060 printf(" APSD");
1061 if (capa & WLAN_CAPABILITY_DSSS_OFDM)
1062 printf(" DSSS-OFDM");
1063 printf(" (0x%.4x)\n", capa);
1064 }
f2e17e1f
JB
1065 if (bss[NL80211_BSS_SIGNAL_MBM]) {
1066 int s = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
1067 printf("\tsignal: %d.%.2d dBm\n", s/100, s%100);
1068 }
1069 if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
1070 unsigned char s = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
1071 printf("\tsignal: %d/100\n", s);
1072 }
c04a78df
HS
1073 if (bss[NL80211_BSS_SEEN_MS_AGO]) {
1074 int age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
1075 printf("\tlast seen: %d ms ago\n", age);
1076 }
1c5bcd9c
JB
1077
1078 if (bss[NL80211_BSS_INFORMATION_ELEMENTS] && show--) {
575280cc
JM
1079 if (bss[NL80211_BSS_BEACON_IES])
1080 printf("\tInformation elements from Probe Response "
1081 "frame:\n");
3563f4c5 1082 print_ies(nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
764fe753 1083 nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
febeb0c0 1084 params->unknown, params->type);
575280cc 1085 }
1c5bcd9c 1086 if (bss[NL80211_BSS_BEACON_IES] && show--) {
575280cc
JM
1087 printf("\tInformation elements from Beacon frame:\n");
1088 print_ies(nla_data(bss[NL80211_BSS_BEACON_IES]),
1089 nla_len(bss[NL80211_BSS_BEACON_IES]),
1090 params->unknown, params->type);
1091 }
3563f4c5
JB
1092
1093 return NL_SKIP;
1094}
1095
764fe753 1096static struct scan_params scan_params;
3563f4c5 1097
7c37a24d
JB
1098static int handle_scan_dump(struct nl80211_state *state,
1099 struct nl_cb *cb,
3563f4c5
JB
1100 struct nl_msg *msg,
1101 int argc, char **argv)
1102{
764fe753
JB
1103 if (argc > 1)
1104 return 1;
1105
1c5bcd9c
JB
1106 memset(&scan_params, 0, sizeof(scan_params));
1107
764fe753
JB
1108 if (argc == 1 && !strcmp(argv[0], "-u"))
1109 scan_params.unknown = true;
575280cc
JM
1110 else if (argc == 1 && !strcmp(argv[0], "-b"))
1111 scan_params.show_both_ie_sets = true;
764fe753 1112
febeb0c0
JB
1113 scan_params.type = PRINT_SCAN;
1114
764fe753
JB
1115 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_bss_handler,
1116 &scan_params);
3563f4c5
JB
1117 return 0;
1118}
a5fe4ef2
JB
1119
1120static int handle_scan_combined(struct nl80211_state *state,
1121 struct nl_cb *cb,
1122 struct nl_msg *msg,
1123 int argc, char **argv)
1124{
559a1713 1125 char **trig_argv;
a5fe4ef2
JB
1126 static char *dump_argv[] = {
1127 NULL,
1128 "scan",
1129 "dump",
92649eab 1130 NULL,
a5fe4ef2
JB
1131 };
1132 static const __u32 cmds[] = {
1133 NL80211_CMD_NEW_SCAN_RESULTS,
1134 NL80211_CMD_SCAN_ABORTED,
1135 };
559a1713 1136 int trig_argc, dump_argc, err;
a5fe4ef2 1137
559a1713
JB
1138 if (argc >= 3 && !strcmp(argv[2], "-u")) {
1139 dump_argc = 4;
1140 dump_argv[3] = "-u";
575280cc
JM
1141 } else if (argc >= 3 && !strcmp(argv[2], "-b")) {
1142 dump_argc = 4;
1143 dump_argv[3] = "-b";
559a1713
JB
1144 } else
1145 dump_argc = 3;
1146
1147 trig_argc = 3 + (argc - 2) + (3 - dump_argc);
1148 trig_argv = calloc(trig_argc, sizeof(*trig_argv));
1149 if (!trig_argv)
1150 return -ENOMEM;
a5fe4ef2 1151 trig_argv[0] = argv[0];
559a1713
JB
1152 trig_argv[1] = "scan";
1153 trig_argv[2] = "trigger";
1154 int i;
1155 for (i = 0; i < argc - 2 - (dump_argc - 3); i++)
1156 trig_argv[i + 3] = argv[i + 2 + (dump_argc - 3)];
1157 err = handle_cmd(state, II_NETDEV, trig_argc, trig_argv);
1158 free(trig_argv);
a5fe4ef2
JB
1159 if (err)
1160 return err;
1161
61725dbe
JB
1162 /*
1163 * WARNING: DO NOT COPY THIS CODE INTO YOUR APPLICATION
1164 *
1165 * This code has a bug, which requires creating a separate
1166 * nl80211 socket to fix:
1167 * It is possible for a NL80211_CMD_NEW_SCAN_RESULTS or
1168 * NL80211_CMD_SCAN_ABORTED message to be sent by the kernel
1169 * before (!) we listen to it, because we only start listening
1170 * after we send our scan request.
1171 *
1172 * Doing it the other way around has a race condition as well,
1173 * if you first open the events socket you may get a notification
1174 * for a previous scan.
1175 *
1176 * The only proper way to fix this would be to listen to events
1177 * before sending the command, and for the kernel to send the
1178 * scan request along with the event, so that you can match up
1179 * whether the scan you requested was finished or aborted (this
1180 * may result in processing a scan that another application
1181 * requested, but that doesn't seem to be a problem).
1182 *
1183 * Alas, the kernel doesn't do that (yet).
1184 */
1185
a5fe4ef2
JB
1186 if (listen_events(state, ARRAY_SIZE(cmds), cmds) ==
1187 NL80211_CMD_SCAN_ABORTED) {
1188 printf("scan aborted!\n");
1189 return 0;
1190 }
1191
1192 dump_argv[0] = argv[0];
92649eab 1193 return handle_cmd(state, II_NETDEV, dump_argc, dump_argv);
a5fe4ef2 1194}
64797a7f 1195TOPLEVEL(scan, "[-u] [freq <freq>*] [ies <hex as 00:11:..>] [ssid <ssid>*|passive]", 0, 0,
6ca98d28
JB
1196 CIB_NETDEV, handle_scan_combined,
1197 "Scan on the given frequencies and probe for the given SSIDs\n"
1198 "(or wildcard if not given) unless passive scanning is requested.\n"
64797a7f
JB
1199 "If -u is specified print unknown data in the scan results.\n"
1200 "Specified (vendor) IEs must be well-formed.");
4698bfc2
JB
1201COMMAND(scan, dump, "[-u]",
1202 NL80211_CMD_GET_SCAN, NLM_F_DUMP, CIB_NETDEV, handle_scan_dump,
1203 "Dump the current scan results. If -u is specified, print unknown\n"
1204 "data in scan results.");
64797a7f 1205COMMAND(scan, trigger, "[freq <freq>*] [ies <hex as 00:11:..>] [ssid <ssid>*|passive]",
4698bfc2
JB
1206 NL80211_CMD_TRIGGER_SCAN, 0, CIB_NETDEV, handle_scan,
1207 "Trigger a scan on the given frequencies with probing for the given\n"
1208 "SSIDs (or wildcard if not given) unless passive scanning is requested.");