blob: 1842655fc457a8de16da4a30d84ff9592953ab06 [file] [log] [blame]
Johannes Berg3563f4c2008-09-19 05:08:11 +02001#include <net/if.h>
2#include <errno.h>
3#include <string.h>
4#include <ctype.h>
Johannes Berg764fe752009-02-12 10:30:32 +01005#include <stdbool.h>
Johannes Berg3563f4c2008-09-19 05:08:11 +02006
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
Marcel Holtmann92a04ec2009-05-04 01:48:45 -070016#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)
Vladimir Kondratiev2e8b82c2012-12-17 13:31:36 +020028#define WLAN_CAPABILITY_RADIO_MEASURE (1<<12)
Marcel Holtmann92a04ec2009-05-04 01:48:45 -070029#define WLAN_CAPABILITY_DSSS_OFDM (1<<13)
Vladimir Kondratiev2e8b82c2012-12-17 13:31:36 +020030#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)
Marcel Holtmann92a04ec2009-05-04 01:48:45 -070047
Johannes Berg3bd60ef2011-06-09 20:36:59 +020048static unsigned char ms_oui[3] = { 0x00, 0x50, 0xf2 };
49static unsigned char ieee80211_oui[3] = { 0x00, 0x0f, 0xac };
Johannes Berg9a223742011-06-09 20:55:44 +020050static unsigned char wfa_oui[3] = { 0x50, 0x6f, 0x9a };
Marcel Holtmann857d9662009-05-04 01:48:47 -070051
Johannes Berg764fe752009-02-12 10:30:32 +010052struct scan_params {
53 bool unknown;
Johannes Bergfebeb0c2009-07-25 17:31:08 +020054 enum print_ie_type type;
Jouni Malinen575280c2010-01-06 17:53:59 +020055 bool show_both_ie_sets;
Johannes Berg764fe752009-02-12 10:30:32 +010056};
57
Luis R. Rodriguez2b690f02010-02-19 13:55:58 -050058#define IEEE80211_COUNTRY_EXTENSION_ID 201
59
Johannes Berg72725712010-09-22 11:32:54 +020060union 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;
Luis R. Rodriguez2b690f02010-02-19 13:55:58 -050071} __attribute__ ((packed));
72
Johannes Berg7c37a242009-04-08 13:13:28 +020073static int handle_scan(struct nl80211_state *state,
74 struct nl_cb *cb,
Johannes Berg3563f4c2008-09-19 05:08:11 +020075 struct nl_msg *msg,
Johannes Berg05514f92012-07-19 11:50:50 +020076 int argc, char **argv,
77 enum id_input id)
Johannes Berg3563f4c2008-09-19 05:08:11 +020078{
Johannes Berg559a1712009-05-04 14:06:33 +020079 struct nl_msg *ssids = NULL, *freqs = NULL;
80 char *eptr;
Johannes Berg3563f4c2008-09-19 05:08:11 +020081 int err = -ENOBUFS;
Johannes Berg559a1712009-05-04 14:06:33 +020082 int i;
83 enum {
84 NONE,
85 FREQ,
Johannes Berg64797a72010-03-24 23:38:25 -070086 IES,
Johannes Berg559a1712009-05-04 14:06:33 +020087 SSID,
88 DONE,
89 } parse = NONE;
90 int freq;
91 bool passive = false, have_ssids = false, have_freqs = false;
Johannes Berg64797a72010-03-24 23:38:25 -070092 size_t tmp;
93 unsigned char *ies;
Sam Lefflerfe862232012-10-17 12:20:04 -070094 int flags = 0;
Johannes Berg3563f4c2008-09-19 05:08:11 +020095
96 ssids = nlmsg_alloc();
97 if (!ssids)
98 return -ENOMEM;
Johannes Berg559a1712009-05-04 14:06:33 +020099
100 freqs = nlmsg_alloc();
101 if (!freqs) {
102 nlmsg_free(ssids);
103 return -ENOMEM;
104 }
105
106 for (i = 0; i < argc; i++) {
Johannes Berg559a1712009-05-04 14:06:33 +0200107 switch (parse) {
108 case NONE:
Johannes Berg64797a72010-03-24 23:38:25 -0700109 if (strcmp(argv[i], "freq") == 0) {
110 parse = FREQ;
111 have_freqs = true;
112 break;
113 } else if (strcmp(argv[i], "ies") == 0) {
114 parse = IES;
115 break;
Sam Lefflerfe862232012-10-17 12:20:04 -0700116 } else if (strcmp(argv[i], "lowpri") == 0) {
117 parse = NONE;
118 flags |= NL80211_SCAN_FLAG_LOW_PRIORITY;
119 break;
120 } else if (strcmp(argv[i], "flush") == 0) {
121 parse = NONE;
122 flags |= NL80211_SCAN_FLAG_FLUSH;
123 break;
Antonio Quartulliced94d52012-10-26 16:41:48 +0200124 } else if (strcmp(argv[i], "ap-force") == 0) {
125 parse = NONE;
126 flags |= NL80211_SCAN_FLAG_AP;
127 break;
Johannes Berg64797a72010-03-24 23:38:25 -0700128 } else if (strcmp(argv[i], "ssid") == 0) {
129 parse = SSID;
130 have_ssids = true;
131 break;
132 } else if (strcmp(argv[i], "passive") == 0) {
133 parse = DONE;
134 passive = true;
135 break;
136 }
Johannes Berg559a1712009-05-04 14:06:33 +0200137 case DONE:
138 return 1;
139 case FREQ:
140 freq = strtoul(argv[i], &eptr, 10);
Johannes Bergcc12e892011-03-02 14:45:32 +0100141 if (eptr != argv[i] + strlen(argv[i])) {
142 /* failed to parse as number -- maybe a tag? */
143 i--;
144 parse = NONE;
145 continue;
146 }
Johannes Berg559a1712009-05-04 14:06:33 +0200147 NLA_PUT_U32(freqs, i, freq);
Johannes Berg64797a72010-03-24 23:38:25 -0700148 break;
149 case IES:
150 ies = parse_hex(argv[i], &tmp);
151 if (!ies)
152 goto nla_put_failure;
153 NLA_PUT(msg, NL80211_ATTR_IE, tmp, ies);
154 free(ies);
155 parse = NONE;
Johannes Berg559a1712009-05-04 14:06:33 +0200156 break;
157 case SSID:
158 NLA_PUT(ssids, i, strlen(argv[i]), argv[i]);
159 break;
160 }
161 }
162
163 if (!have_ssids)
164 NLA_PUT(ssids, 1, 0, "");
165 if (!passive)
166 nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids);
167
168 if (have_freqs)
169 nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
Sam Lefflerfe862232012-10-17 12:20:04 -0700170 if (flags)
171 NLA_PUT_U32(msg, NL80211_ATTR_SCAN_FLAGS, flags);
Johannes Berg3563f4c2008-09-19 05:08:11 +0200172
173 err = 0;
174 nla_put_failure:
175 nlmsg_free(ssids);
Johannes Berg559a1712009-05-04 14:06:33 +0200176 nlmsg_free(freqs);
Johannes Berg3563f4c2008-09-19 05:08:11 +0200177 return err;
178}
Johannes Berg3563f4c2008-09-19 05:08:11 +0200179
Marcel Holtmann857d9662009-05-04 01:48:47 -0700180static void tab_on_first(bool *first)
181{
182 if (!*first)
183 printf("\t");
184 else
185 *first = false;
186}
187
Johannes Berg83b49342009-05-04 13:35:22 +0200188static void print_ssid(const uint8_t type, uint8_t len, const uint8_t *data)
Johannes Berg3563f4c2008-09-19 05:08:11 +0200189{
Johannes Berg83b49342009-05-04 13:35:22 +0200190 printf(" ");
Johannes Berg748f8482009-05-24 16:48:17 +0200191 print_ssid_escaped(len, data);
Johannes Berg3563f4c2008-09-19 05:08:11 +0200192 printf("\n");
193}
194
Johannes Bergca159932012-11-20 17:26:14 +0100195#define BSS_MEMBERSHIP_SELECTOR_VHT_PHY 126
Christian Lamparter1fd19c32011-10-11 13:15:25 +0200196#define BSS_MEMBERSHIP_SELECTOR_HT_PHY 127
197
Johannes Berg83b49342009-05-04 13:35:22 +0200198static void print_supprates(const uint8_t type, uint8_t len, const uint8_t *data)
Johannes Berg3563f4c2008-09-19 05:08:11 +0200199{
200 int i;
201
Johannes Berg83b49342009-05-04 13:35:22 +0200202 printf(" ");
Johannes Berg3563f4c2008-09-19 05:08:11 +0200203
Johannes Berg83b49342009-05-04 13:35:22 +0200204 for (i = 0; i < len; i++) {
Johannes Berg3563f4c2008-09-19 05:08:11 +0200205 int r = data[i] & 0x7f;
Christian Lamparter1fd19c32011-10-11 13:15:25 +0200206
Johannes Bergca159932012-11-20 17:26:14 +0100207 if (r == BSS_MEMBERSHIP_SELECTOR_VHT_PHY && data[i] & 0x80)
208 printf("VHT");
209 else if (r == BSS_MEMBERSHIP_SELECTOR_HT_PHY && data[i] & 0x80)
Christian Lamparter1fd19c32011-10-11 13:15:25 +0200210 printf("HT");
211 else
212 printf("%d.%d", r/2, 5*(r&1));
213
214 printf("%s ", data[i] & 0x80 ? "*" : "");
Johannes Berg3563f4c2008-09-19 05:08:11 +0200215 }
216 printf("\n");
217}
218
Johannes Berg83b49342009-05-04 13:35:22 +0200219static void print_ds(const uint8_t type, uint8_t len, const uint8_t *data)
Johannes Berg3563f4c2008-09-19 05:08:11 +0200220{
Johannes Berg83b49342009-05-04 13:35:22 +0200221 printf(" channel %d\n", data[0]);
Johannes Berg3563f4c2008-09-19 05:08:11 +0200222}
223
Luis R. Rodriguez2b690f02010-02-19 13:55:58 -0500224static const char *country_env_str(char environment)
225{
226 switch (environment) {
227 case 'I':
228 return "Indoor only";
229 case 'O':
230 return "Outdoor only";
231 case ' ':
232 return "Indoor/Outdoor";
233 default:
234 return "bogus";
235 }
236}
237
Johannes Berg83b49342009-05-04 13:35:22 +0200238static void print_country(const uint8_t type, uint8_t len, const uint8_t *data)
Marcel Holtmannb7e8fa32009-05-04 01:48:43 -0700239{
Johannes Berg83b49342009-05-04 13:35:22 +0200240 printf(" %.*s", 2, data);
Luis R. Rodriguez2b690f02010-02-19 13:55:58 -0500241
242 printf("\tEnvironment: %s\n", country_env_str(data[2]));
243
244 data += 3;
245 len -= 3;
246
247 if (len < 3) {
248 printf("\t\tNo country IE triplets present\n");
249 return;
Marcel Holtmannb7e8fa32009-05-04 01:48:43 -0700250 }
Luis R. Rodriguez2b690f02010-02-19 13:55:58 -0500251
252 while (len >= 3) {
253 int end_channel;
Johannes Berg72725712010-09-22 11:32:54 +0200254 union ieee80211_country_ie_triplet *triplet = (void *) data;
Luis R. Rodriguez2b690f02010-02-19 13:55:58 -0500255
256 if (triplet->ext.reg_extension_id >= IEEE80211_COUNTRY_EXTENSION_ID) {
257 printf("\t\tExtension ID: %d Regulatory Class: %d Coverage class: %d (up to %dm)\n",
258 triplet->ext.reg_extension_id,
259 triplet->ext.reg_class,
260 triplet->ext.coverage_class,
261 triplet->ext.coverage_class * 450);
262
263 data += 3;
264 len -= 3;
265 continue;
266 }
267
268 /* 2 GHz */
269 if (triplet->chans.first_channel <= 14)
270 end_channel = triplet->chans.first_channel + (triplet->chans.num_channels - 1);
271 else
272 end_channel = triplet->chans.first_channel + (4 * (triplet->chans.num_channels - 1));
273
Luis R. Rodrigueza9859d32010-10-18 11:37:56 -0700274 printf("\t\tChannels [%d - %d] @ %d dBm\n", triplet->chans.first_channel, end_channel, triplet->chans.max_power);
Luis R. Rodriguez2b690f02010-02-19 13:55:58 -0500275
276 data += 3;
277 len -= 3;
278 }
279
280 return;
Marcel Holtmannb7e8fa32009-05-04 01:48:43 -0700281}
282
Marcel Holtmannd1563a12009-05-04 09:06:07 -0700283static void print_powerconstraint(const uint8_t type, uint8_t len, const uint8_t *data)
284{
285 printf(" %d dB\n", data[0]);
286}
287
Joerg Mayer792172b2013-04-19 22:39:05 +0200288static void print_tpcreport(const uint8_t type, uint8_t len, const uint8_t *data)
289{
290 printf(" TX power: %d dBm\n", data[0]);
291 /* printf(" Link Margin (%d dB) is reserved in Beacons\n", data[1]); */
292}
293
Johannes Berg83b49342009-05-04 13:35:22 +0200294static void print_erp(const uint8_t type, uint8_t len, const uint8_t *data)
Marcel Holtmannfc4d1482009-05-04 01:48:42 -0700295{
296 if (data[0] == 0x00)
Johannes Berg83b49342009-05-04 13:35:22 +0200297 printf(" <no flags>");
Marcel Holtmannfc4d1482009-05-04 01:48:42 -0700298 if (data[0] & 0x01)
299 printf(" NonERP_Present");
300 if (data[0] & 0x02)
301 printf(" Use_Protection");
302 if (data[0] & 0x04)
303 printf(" Barker_Preamble_Mode");
304 printf("\n");
305}
306
Johannes Berg83b49342009-05-04 13:35:22 +0200307static void print_cipher(const uint8_t *data)
Marcel Holtmann857d9662009-05-04 01:48:47 -0700308{
Johannes Berg3bd60ef2011-06-09 20:36:59 +0200309 if (memcmp(data, ms_oui, 3) == 0) {
Marcel Holtmann857d9662009-05-04 01:48:47 -0700310 switch (data[3]) {
Johannes Berg510e0e22009-05-05 10:45:30 +0200311 case 0:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700312 printf("Use group cipher suite");
313 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200314 case 1:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700315 printf("WEP-40");
316 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200317 case 2:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700318 printf("TKIP");
319 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200320 case 4:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700321 printf("CCMP");
322 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200323 case 5:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700324 printf("WEP-104");
325 break;
326 default:
Johannes Berg332769c2009-05-05 10:43:33 +0200327 printf("%.02x-%.02x-%.02x:%d",
Johannes Berg5594fd22009-05-04 13:06:07 +0200328 data[0], data[1] ,data[2], data[3]);
Marcel Holtmann857d9662009-05-04 01:48:47 -0700329 break;
330 }
331 } else if (memcmp(data, ieee80211_oui, 3) == 0) {
332 switch (data[3]) {
Johannes Berg510e0e22009-05-05 10:45:30 +0200333 case 0:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700334 printf("Use group cipher suite");
335 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200336 case 1:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700337 printf("WEP-40");
338 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200339 case 2:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700340 printf("TKIP");
341 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200342 case 4:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700343 printf("CCMP");
344 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200345 case 5:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700346 printf("WEP-104");
347 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200348 case 6:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700349 printf("AES-128-CMAC");
350 break;
Vladimir Kondratieva8b3da92012-07-05 14:36:20 +0300351 case 8:
352 printf("GCMP");
353 break;
Marcel Holtmann857d9662009-05-04 01:48:47 -0700354 default:
Johannes Berg332769c2009-05-05 10:43:33 +0200355 printf("%.02x-%.02x-%.02x:%d",
Johannes Berg5594fd22009-05-04 13:06:07 +0200356 data[0], data[1] ,data[2], data[3]);
Marcel Holtmann857d9662009-05-04 01:48:47 -0700357 break;
358 }
359 } else
Johannes Berg332769c2009-05-05 10:43:33 +0200360 printf("%.02x-%.02x-%.02x:%d",
Johannes Berg5594fd22009-05-04 13:06:07 +0200361 data[0], data[1] ,data[2], data[3]);
Marcel Holtmann857d9662009-05-04 01:48:47 -0700362}
363
Johannes Berg83b49342009-05-04 13:35:22 +0200364static void print_auth(const uint8_t *data)
Marcel Holtmann857d9662009-05-04 01:48:47 -0700365{
Johannes Berg3bd60ef2011-06-09 20:36:59 +0200366 if (memcmp(data, ms_oui, 3) == 0) {
Marcel Holtmann857d9662009-05-04 01:48:47 -0700367 switch (data[3]) {
Johannes Berg510e0e22009-05-05 10:45:30 +0200368 case 1:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700369 printf("IEEE 802.1X");
370 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200371 case 2:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700372 printf("PSK");
373 break;
374 default:
Johannes Berg332769c2009-05-05 10:43:33 +0200375 printf("%.02x-%.02x-%.02x:%d",
Johannes Berg5594fd22009-05-04 13:06:07 +0200376 data[0], data[1] ,data[2], data[3]);
Marcel Holtmann857d9662009-05-04 01:48:47 -0700377 break;
378 }
379 } else if (memcmp(data, ieee80211_oui, 3) == 0) {
380 switch (data[3]) {
Johannes Berg510e0e22009-05-05 10:45:30 +0200381 case 1:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700382 printf("IEEE 802.1X");
383 break;
Johannes Berg510e0e22009-05-05 10:45:30 +0200384 case 2:
Marcel Holtmann857d9662009-05-04 01:48:47 -0700385 printf("PSK");
386 break;
Johannes Berg0fe1c412009-05-05 11:21:13 +0200387 case 3:
388 printf("FT/IEEE 802.1X");
389 break;
390 case 4:
391 printf("FT/PSK");
392 break;
393 case 5:
394 printf("IEEE 802.1X/SHA-256");
395 break;
396 case 6:
397 printf("PSK/SHA-256");
398 break;
Marcel Holtmann857d9662009-05-04 01:48:47 -0700399 default:
Johannes Berg332769c2009-05-05 10:43:33 +0200400 printf("%.02x-%.02x-%.02x:%d",
Johannes Berg5594fd22009-05-04 13:06:07 +0200401 data[0], data[1] ,data[2], data[3]);
Marcel Holtmann857d9662009-05-04 01:48:47 -0700402 break;
403 }
404 } else
Johannes Berg332769c2009-05-05 10:43:33 +0200405 printf("%.02x-%.02x-%.02x:%d",
Johannes Berg5594fd22009-05-04 13:06:07 +0200406 data[0], data[1] ,data[2], data[3]);
Marcel Holtmann857d9662009-05-04 01:48:47 -0700407}
408
Johannes Berg83b49342009-05-04 13:35:22 +0200409static void print_rsn_ie(const char *defcipher, const char *defauth,
410 uint8_t len, const uint8_t *data)
Marcel Holtmann857d9662009-05-04 01:48:47 -0700411{
412 bool first = true;
413 __u16 version, count, capa;
414 int i;
415
Marcel Holtmann857d9662009-05-04 01:48:47 -0700416 version = data[0] + (data[1] << 8);
417 tab_on_first(&first);
418 printf("\t * Version: %d\n", version);
419
420 data += 2;
421 len -= 2;
422
423 if (len < 4) {
424 tab_on_first(&first);
425 printf("\t * Group cipher: %s\n", defcipher);
426 printf("\t * Pairwise ciphers: %s\n", defcipher);
427 return;
428 }
429
430 tab_on_first(&first);
431 printf("\t * Group cipher: ");
432 print_cipher(data);
433 printf("\n");
434
435 data += 4;
436 len -= 4;
437
438 if (len < 2) {
439 tab_on_first(&first);
440 printf("\t * Pairwise ciphers: %s\n", defcipher);
441 return;
442 }
443
444 count = data[0] | (data[1] << 8);
Marcel Holtmann31d477f2009-05-04 09:49:09 -0700445 if (2 + (count * 4) > len)
446 goto invalid;
447
Marcel Holtmann857d9662009-05-04 01:48:47 -0700448 tab_on_first(&first);
449 printf("\t * Pairwise ciphers:");
Marcel Holtmann31d477f2009-05-04 09:49:09 -0700450 for (i = 0; i < count; i++) {
Marcel Holtmann857d9662009-05-04 01:48:47 -0700451 printf(" ");
452 print_cipher(data + 2 + (i * 4));
453 }
454 printf("\n");
455
456 data += 2 + (count * 4);
457 len -= 2 + (count * 4);
458
459 if (len < 2) {
460 tab_on_first(&first);
461 printf("\t * Authentication suites: %s\n", defauth);
462 return;
463 }
464
465 count = data[0] | (data[1] << 8);
Marcel Holtmann31d477f2009-05-04 09:49:09 -0700466 if (2 + (count * 4) > len)
467 goto invalid;
468
Marcel Holtmann857d9662009-05-04 01:48:47 -0700469 tab_on_first(&first);
470 printf("\t * Authentication suites:");
Johannes Berg83b49342009-05-04 13:35:22 +0200471 for (i = 0; i < count; i++) {
Marcel Holtmann857d9662009-05-04 01:48:47 -0700472 printf(" ");
473 print_auth(data + 2 + (i * 4));
474 }
475 printf("\n");
476
477 data += 2 + (count * 4);
478 len -= 2 + (count * 4);
479
Johannes Berg6a4f24e2009-05-04 18:57:03 +0200480 if (len >= 2) {
481 capa = data[0] | (data[1] << 8);
482 tab_on_first(&first);
Johannes Bergcadbe892009-05-05 11:33:34 +0200483 printf("\t * Capabilities:");
484 if (capa & 0x0001)
485 printf(" PreAuth");
486 if (capa & 0x0002)
487 printf(" NoPairwise");
488 switch ((capa & 0x000c) >> 2) {
489 case 0:
490 break;
491 case 1:
492 printf(" 2-PTKSA-RC");
493 break;
494 case 2:
495 printf(" 4-PTKSA-RC");
496 break;
497 case 3:
498 printf(" 16-PTKSA-RC");
499 break;
500 }
501 switch ((capa & 0x0030) >> 4) {
502 case 0:
503 break;
504 case 1:
505 printf(" 2-GTKSA-RC");
506 break;
507 case 2:
508 printf(" 4-GTKSA-RC");
509 break;
510 case 3:
511 printf(" 16-GTKSA-RC");
512 break;
513 }
514 if (capa & 0x0040)
515 printf(" MFP-required");
516 if (capa & 0x0080)
517 printf(" MFP-capable");
518 if (capa & 0x0200)
519 printf(" Peerkey-enabled");
520 if (capa & 0x0400)
521 printf(" SPP-AMSDU-capable");
522 if (capa & 0x0800)
523 printf(" SPP-AMSDU-required");
524 printf(" (0x%.4x)\n", capa);
Johannes Berg6a4f24e2009-05-04 18:57:03 +0200525 data += 2;
526 len -= 2;
527 }
Marcel Holtmann31d477f2009-05-04 09:49:09 -0700528
Johannes Berg5ba3f522010-09-29 12:45:06 +0200529 if (len >= 2) {
530 int pmkid_count = data[0] | (data[1] << 8);
531
532 if (len >= 2 + 16 * pmkid_count) {
533 tab_on_first(&first);
534 printf("\t * %d PMKIDs\n", pmkid_count);
535 /* not printing PMKID values */
536 data += 2 + 16 * pmkid_count;
537 len -= 2 + 16 * pmkid_count;
538 } else
539 goto invalid;
540 }
541
542 if (len >= 4) {
543 tab_on_first(&first);
544 printf("\t * Group mgmt cipher suite: ");
545 print_cipher(data);
546 printf("\n");
547 data += 4;
548 len -= 4;
549 }
550
Johannes Bergcadbe892009-05-05 11:33:34 +0200551 invalid:
Marcel Holtmann31d477f2009-05-04 09:49:09 -0700552 if (len != 0) {
553 printf("\t\t * bogus tail data (%d):", len);
554 while (len) {
555 printf(" %.2x", *data);
556 data++;
557 len--;
558 }
559 printf("\n");
560 }
Marcel Holtmann857d9662009-05-04 01:48:47 -0700561}
562
Johannes Berg83b49342009-05-04 13:35:22 +0200563static void print_rsn(const uint8_t type, uint8_t len, const uint8_t *data)
Marcel Holtmann857d9662009-05-04 01:48:47 -0700564{
Johannes Berg83b49342009-05-04 13:35:22 +0200565 print_rsn_ie("CCMP", "IEEE 802.1X", len, data);
Marcel Holtmann857d9662009-05-04 01:48:47 -0700566}
567
Luis R. Rodriguez0c445c22009-12-07 20:55:25 -0500568static void print_ht_capa(const uint8_t type, uint8_t len, const uint8_t *data)
569{
Luis R. Rodriguez357c1a52009-12-07 22:05:42 -0500570 printf("\n");
Johannes Berg7ddfb672009-12-08 10:11:22 +0100571 print_ht_capability(data[0] | (data[1] << 8));
572 print_ampdu_length(data[2] & 3);
Christian Lamparterc79c7462010-06-27 00:51:23 +0200573 print_ampdu_spacing((data[2] >> 2) & 7);
Johannes Berg7ddfb672009-12-08 10:11:22 +0100574 print_ht_mcs(data + 3);
Luis R. Rodriguez0c445c22009-12-07 20:55:25 -0500575}
576
Johannes Berg29f75792012-11-21 15:18:19 +0100577static const char *ht_secondary_offset[4] = {
578 "no secondary",
579 "above",
580 "[reserved!]",
581 "below",
582};
583
Johannes Bergbe7602f2010-09-01 19:43:54 +0200584static void print_ht_op(const uint8_t type, uint8_t len, const uint8_t *data)
585{
Johannes Bergbe7602f2010-09-01 19:43:54 +0200586 static const char *protection[4] = {
587 "no",
588 "nonmember",
589 "20 MHz",
590 "non-HT mixed",
591 };
592 static const char *sta_chan_width[2] = {
593 "20 MHz",
594 "any",
595 };
596
597 printf("\n");
598 printf("\t\t * primary channel: %d\n", data[0]);
599 printf("\t\t * secondary channel offset: %s\n",
Johannes Berg29f75792012-11-21 15:18:19 +0100600 ht_secondary_offset[data[1] & 0x3]);
Johannes Bergbe7602f2010-09-01 19:43:54 +0200601 printf("\t\t * STA channel width: %s\n", sta_chan_width[(data[1] & 0x4)>>2]);
602 printf("\t\t * RIFS: %d\n", (data[1] & 0x8)>>3);
603 printf("\t\t * HT protection: %s\n", protection[data[2] & 0x3]);
604 printf("\t\t * non-GF present: %d\n", (data[2] & 0x4) >> 2);
605 printf("\t\t * OBSS non-GF present: %d\n", (data[2] & 0x10) >> 4);
606 printf("\t\t * dual beacon: %d\n", (data[4] & 0x40) >> 6);
607 printf("\t\t * dual CTS protection: %d\n", (data[4] & 0x80) >> 7);
608 printf("\t\t * STBC beacon: %d\n", data[5] & 0x1);
609 printf("\t\t * L-SIG TXOP Prot: %d\n", (data[5] & 0x2) >> 1);
610 printf("\t\t * PCO active: %d\n", (data[5] & 0x4) >> 2);
611 printf("\t\t * PCO phase: %d\n", (data[5] & 0x8) >> 3);
612}
613
Johannes Berg83b49342009-05-04 13:35:22 +0200614static void print_capabilities(const uint8_t type, uint8_t len, const uint8_t *data)
Marcel Holtmann9b880b02009-05-04 01:48:44 -0700615{
Johannes Berg31d2d252009-05-05 11:44:04 +0200616 int i, base, bit;
617 bool first = true;
Marcel Holtmann9b880b02009-05-04 01:48:44 -0700618
Johannes Berg31d2d252009-05-05 11:44:04 +0200619
620 for (i = 0; i < len; i++) {
621 base = i * 8;
622
623 for (bit = 0; bit < 8; bit++) {
624 if (!(data[i] & (1 << bit)))
625 continue;
626
627 if (!first)
628 printf(",");
629 else
630 first = false;
631
Johannes Berg70c649d2012-11-09 17:07:36 +0100632#define CAPA(bit, name) case bit: printf(" " name); break
633
Johannes Berg31d2d252009-05-05 11:44:04 +0200634 switch (bit + base) {
Johannes Berg70c649d2012-11-09 17:07:36 +0100635 CAPA(0, "HT Information Exchange Supported");
636 CAPA(1, "reserved (On-demand Beacon)");
637 CAPA(2, "Extended Channel Switching");
638 CAPA(3, "reserved (Wave Indication)");
639 CAPA(4, "PSMP Capability");
640 CAPA(5, "reserved (Service Interval Granularity)");
641 CAPA(6, "S-PSMP Capability");
642 CAPA(7, "Event");
643 CAPA(8, "Diagnostics");
644 CAPA(9, "Multicast Diagnostics");
645 CAPA(10, "Location Tracking");
646 CAPA(11, "FMS");
647 CAPA(12, "Proxy ARP Service");
648 CAPA(13, "Collocated Interference Reporting");
649 CAPA(14, "Civic Location");
650 CAPA(15, "Geospatial Location");
651 CAPA(16, "TFS");
652 CAPA(17, "WNM-Sleep Mode");
653 CAPA(18, "TIM Broadcast");
654 CAPA(19, "BSS Transition");
655 CAPA(20, "QoS Traffic Capability");
656 CAPA(21, "AC Station Count");
657 CAPA(22, "Multiple BSSID");
658 CAPA(23, "Timing Measurement");
659 CAPA(24, "Channel Usage");
660 CAPA(25, "SSID List");
661 CAPA(26, "DMS");
662 CAPA(27, "UTC TSF Offset");
663 CAPA(28, "TDLS Peer U-APSD Buffer STA Support");
664 CAPA(29, "TDLS Peer PSM Support");
665 CAPA(30, "TDLS channel switching");
666 CAPA(31, "Interworking");
667 CAPA(32, "QoS Map");
668 CAPA(33, "EBR");
669 CAPA(34, "SSPN Interface");
670 CAPA(35, "Reserved");
671 CAPA(36, "MSGCF Capability");
672 CAPA(37, "TDLS Support");
673 CAPA(38, "TDLS Prohibited");
674 CAPA(39, "TDLS Channel Switching Prohibited");
675 CAPA(40, "Reject Unadmitted Frame");
676 CAPA(44, "Identifier Location");
677 CAPA(45, "U-APSD Coexistence");
678 CAPA(46, "WNM-Notification");
679 CAPA(47, "Reserved");
680 CAPA(48, "UTF-8 SSID");
Johannes Berg31d2d252009-05-05 11:44:04 +0200681 default:
682 printf(" %d", bit);
683 break;
684 }
Johannes Berg70c649d2012-11-09 17:07:36 +0100685#undef CAPA
Johannes Berg31d2d252009-05-05 11:44:04 +0200686 }
687 }
688
Marcel Holtmann9b880b02009-05-04 01:48:44 -0700689 printf("\n");
690}
691
Jouni Malinen575280c2010-01-06 17:53:59 +0200692static void print_tim(const uint8_t type, uint8_t len, const uint8_t *data)
693{
694 printf(" DTIM Count %u DTIM Period %u Bitmap Control 0x%x "
695 "Bitmap[0] 0x%x",
696 data[0], data[1], data[2], data[3]);
697 if (len - 4)
698 printf(" (+ %u octet%s)", len - 4, len - 4 == 1 ? "" : "s");
699 printf("\n");
700}
701
Joerg Mayer792172b2013-04-19 22:39:05 +0200702static void print_ibssatim(const uint8_t type, uint8_t len, const uint8_t *data)
703{
704 printf(" %d TUs", (data[1] << 8) + data[0]);
705}
706
Johannes Berg54eb1612012-11-12 13:07:18 +0100707static void print_vht_capa(const uint8_t type, uint8_t len, const uint8_t *data)
708{
709 printf("\n");
710 print_vht_info(data[0] | (data[1] << 8) |
711 (data[2] << 16) | (data[3] << 24),
712 data + 4);
713}
714
Johannes Bergca159932012-11-20 17:26:14 +0100715static void print_vht_oper(const uint8_t type, uint8_t len, const uint8_t *data)
716{
717 const char *chandwidths[] = {
718 [0] = "20 or 40 MHz",
719 [1] = "80 MHz",
720 [3] = "80+80 MHz",
721 [2] = "160 MHz",
722 };
723
724 printf("\n");
725 printf("\t\t * channel width: %d (%s)\n", data[0],
726 data[0] < ARRAY_SIZE(chandwidths) ? chandwidths[data[0]] : "unknown");
727 printf("\t\t * center freq segment 1: %d\n", data[1]);
728 printf("\t\t * center freq segment 2: %d\n", data[2]);
729 printf("\t\t * VHT basic MCS set: 0x%.2x%.2x\n", data[4], data[3]);
730}
731
Johannes Berg29f75792012-11-21 15:18:19 +0100732static void print_obss_scan_params(const uint8_t type, uint8_t len, const uint8_t *data)
733{
734 printf("\n");
735 printf("\t\t * passive dwell: %d TUs\n", (data[1] << 8) | data[0]);
736 printf("\t\t * active dwell: %d TUs\n", (data[3] << 8) | data[2]);
737 printf("\t\t * channel width trigger scan interval: %d s\n", (data[5] << 8) | data[4]);
738 printf("\t\t * scan passive total per channel: %d TUs\n", (data[7] << 8) | data[6]);
739 printf("\t\t * scan active total per channel: %d TUs\n", (data[9] << 8) | data[8]);
740 printf("\t\t * BSS width channel transition delay factor: %d\n", (data[11] << 8) | data[10]);
741 printf("\t\t * OBSS Scan Activity Threshold: %d.%02d %%\n",
742 ((data[13] << 8) | data[12]) / 100, ((data[13] << 8) | data[12]) % 100);
743}
744
745static void print_secchan_offs(const uint8_t type, uint8_t len, const uint8_t *data)
746{
747 if (data[0] < ARRAY_SIZE(ht_secondary_offset))
748 printf(" %s (%d)\n", ht_secondary_offset[data[0]], data[0]);
749 else
750 printf(" %d\n", data[0]);
751}
752
753static void print_bss_load(const uint8_t type, uint8_t len, const uint8_t *data)
754{
755 printf("\n");
756 printf("\t\t * station count: %d\n", (data[1] << 8) | data[0]);
757 printf("\t\t * channel utilisation: %d/255\n", data[2]);
758 printf("\t\t * available admission capacity: %d [*32us]\n", (data[4] << 8) | data[3]);
759}
760
Johannes Berg83b49342009-05-04 13:35:22 +0200761struct ie_print {
762 const char *name;
763 void (*print)(const uint8_t type, uint8_t len, const uint8_t *data);
764 uint8_t minlen, maxlen;
Johannes Bergfebeb0c2009-07-25 17:31:08 +0200765 uint8_t flags;
Johannes Berg764fe752009-02-12 10:30:32 +0100766};
767
Johannes Berg83b49342009-05-04 13:35:22 +0200768static void print_ie(const struct ie_print *p, const uint8_t type,
769 uint8_t len, const uint8_t *data)
Marcel Holtmann6ff0c932009-05-04 01:48:46 -0700770{
771 int i;
772
Johannes Berg83b49342009-05-04 13:35:22 +0200773 if (!p->print)
774 return;
775
776 printf("\t%s:", p->name);
777 if (len < p->minlen || len > p->maxlen) {
778 if (len > 1) {
779 printf(" <invalid: %d bytes:", len);
780 for (i = 0; i < len; i++)
781 printf(" %.02x", data[i]);
782 printf(">\n");
783 } else if (len)
784 printf(" <invalid: 1 byte: %.02x>\n", data[0]);
785 else
786 printf(" <invalid: no data>\n");
787 return;
788 }
789
790 p->print(type, len, data);
791}
792
793#define PRINT_IGN { \
794 .name = "IGNORE", \
795 .print = NULL, \
796 .minlen = 0, \
797 .maxlen = 255, \
798}
799
800static const struct ie_print ieprinters[] = {
Johannes Bergfebeb0c2009-07-25 17:31:08 +0200801 [0] = { "SSID", print_ssid, 0, 32, BIT(PRINT_SCAN) | BIT(PRINT_LINK), },
802 [1] = { "Supported rates", print_supprates, 0, 255, BIT(PRINT_SCAN), },
Johannes Berg014d5812009-08-10 15:37:20 +0200803 [3] = { "DS Parameter set", print_ds, 1, 1, BIT(PRINT_SCAN), },
Jouni Malinen575280c2010-01-06 17:53:59 +0200804 [5] = { "TIM", print_tim, 4, 255, BIT(PRINT_SCAN), },
Joerg Mayer792172b2013-04-19 22:39:05 +0200805 [6] = { "IBSS ATIM window", print_ibssatim, 2, 2, BIT(PRINT_SCAN), },
Johannes Bergfebeb0c2009-07-25 17:31:08 +0200806 [7] = { "Country", print_country, 3, 255, BIT(PRINT_SCAN), },
Johannes Berg29f75792012-11-21 15:18:19 +0100807 [11] = { "BSS Load", print_bss_load, 5, 5, BIT(PRINT_SCAN), },
Johannes Bergfebeb0c2009-07-25 17:31:08 +0200808 [32] = { "Power constraint", print_powerconstraint, 1, 1, BIT(PRINT_SCAN), },
Joerg Mayer792172b2013-04-19 22:39:05 +0200809 [35] = { "TPC report", print_tpcreport, 2, 2, BIT(PRINT_SCAN), },
Johannes Bergfebeb0c2009-07-25 17:31:08 +0200810 [42] = { "ERP", print_erp, 1, 255, BIT(PRINT_SCAN), },
Johannes Berga2e61862010-09-01 19:28:22 +0200811 [45] = { "HT capabilities", print_ht_capa, 26, 26, BIT(PRINT_SCAN), },
Joerg Mayer792172b2013-04-19 22:39:05 +0200812 [47] = { "ERP D4.0", print_erp, 1, 255, BIT(PRINT_SCAN), },
Johannes Berg29f75792012-11-21 15:18:19 +0100813 [74] = { "Overlapping BSS scan params", print_obss_scan_params, 14, 255, BIT(PRINT_SCAN), },
Johannes Bergbe7602f2010-09-01 19:43:54 +0200814 [61] = { "HT operation", print_ht_op, 22, 22, BIT(PRINT_SCAN), },
Johannes Berg29f75792012-11-21 15:18:19 +0100815 [62] = { "Secondary Channel Offset", print_secchan_offs, 1, 1, BIT(PRINT_SCAN), },
Johannes Berg54eb1612012-11-12 13:07:18 +0100816 [191] = { "VHT capabilities", print_vht_capa, 12, 255, BIT(PRINT_SCAN), },
Johannes Bergca159932012-11-20 17:26:14 +0100817 [192] = { "VHT operation", print_vht_oper, 5, 255, BIT(PRINT_SCAN), },
Johannes Bergfebeb0c2009-07-25 17:31:08 +0200818 [48] = { "RSN", print_rsn, 2, 255, BIT(PRINT_SCAN), },
819 [50] = { "Extended supported rates", print_supprates, 0, 255, BIT(PRINT_SCAN), },
Chun-Yeow Yeoh720583e2012-05-14 23:23:48 +0800820 [114] = { "MESH ID", print_ssid, 0, 32, BIT(PRINT_SCAN) | BIT(PRINT_LINK), },
Johannes Bergfebeb0c2009-07-25 17:31:08 +0200821 [127] = { "Extended capabilities", print_capabilities, 0, 255, BIT(PRINT_SCAN), },
Johannes Berg83b49342009-05-04 13:35:22 +0200822};
823
824static void print_wifi_wpa(const uint8_t type, uint8_t len, const uint8_t *data)
825{
826 print_rsn_ie("TKIP", "IEEE 802.1X", len, data);
827}
828
Johannes Berg1cab57e2009-08-10 15:15:49 +0200829static bool print_wifi_wmm_param(const uint8_t *data, uint8_t len)
830{
831 int i;
832 static const char *aci_tbl[] = { "BE", "BK", "VI", "VO" };
833
834 if (len < 19)
835 goto invalid;
836
837 if (data[0] != 1) {
Johannes Bergcee4fe22009-08-10 15:40:11 +0200838 printf("Parameter: not version 1: ");
Johannes Berg1cab57e2009-08-10 15:15:49 +0200839 return false;
840 }
841
Marcel Holtmann89ea7062009-12-19 19:49:24 -0800842 printf("\t * Parameter version 1");
Johannes Berg1cab57e2009-08-10 15:15:49 +0200843
844 data++;
845
846 if (data[0] & 0x80)
Marcel Holtmann89ea7062009-12-19 19:49:24 -0800847 printf("\n\t\t * u-APSD");
Johannes Berg1cab57e2009-08-10 15:15:49 +0200848
849 data += 2;
850
851 for (i = 0; i < 4; i++) {
Marcel Holtmann89ea7062009-12-19 19:49:24 -0800852 printf("\n\t\t * %s:", aci_tbl[(data[0] >> 5) & 3]);
Yoni Divinsky87181512011-11-16 14:55:11 +0200853 if (data[0] & 0x10)
Johannes Berg1cab57e2009-08-10 15:15:49 +0200854 printf(" acm");
855 printf(" CW %d-%d", (1 << (data[1] & 0xf)) - 1,
856 (1 << (data[1] >> 4)) - 1);
Johannes Berga2a4c262009-08-10 16:40:51 +0200857 printf(", AIFSN %d", data[0] & 0xf);
Johannes Berg1cab57e2009-08-10 15:15:49 +0200858 if (data[2] | data[3])
Johannes Bergcee4fe22009-08-10 15:40:11 +0200859 printf(", TXOP %d usec", (data[2] + (data[3] << 8)) * 32);
Johannes Berg1cab57e2009-08-10 15:15:49 +0200860 data += 4;
861 }
862
863 printf("\n");
864 return true;
865
866 invalid:
867 printf("invalid: ");
868 return false;
869}
870
Johannes Berg83b49342009-05-04 13:35:22 +0200871static void print_wifi_wmm(const uint8_t type, uint8_t len, const uint8_t *data)
872{
873 int i;
874
Marcel Holtmann6ff0c932009-05-04 01:48:46 -0700875 switch (data[0]) {
876 case 0x00:
Johannes Berg83b49342009-05-04 13:35:22 +0200877 printf(" information:");
Marcel Holtmann6ff0c932009-05-04 01:48:46 -0700878 break;
879 case 0x01:
Johannes Berg1cab57e2009-08-10 15:15:49 +0200880 if (print_wifi_wmm_param(data + 1, len - 1))
881 return;
Marcel Holtmann6ff0c932009-05-04 01:48:46 -0700882 break;
883 default:
Johannes Berg83b49342009-05-04 13:35:22 +0200884 printf(" type %d:", data[0]);
Marcel Holtmann6ff0c932009-05-04 01:48:46 -0700885 break;
886 }
887
Johannes Berg1cab57e2009-08-10 15:15:49 +0200888 for(i = 1; i < len; i++)
889 printf(" %.02x", data[i]);
Marcel Holtmann6ff0c932009-05-04 01:48:46 -0700890 printf("\n");
891}
892
Jouni Malinena6816962010-04-06 18:03:57 +0300893static const char * wifi_wps_dev_passwd_id(uint16_t id)
894{
895 switch (id) {
896 case 0:
897 return "Default (PIN)";
898 case 1:
899 return "User-specified";
900 case 2:
901 return "Machine-specified";
902 case 3:
903 return "Rekey";
904 case 4:
905 return "PushButton";
906 case 5:
907 return "Registrar-specified";
908 default:
909 return "??";
910 }
911}
912
Johannes Berg83b49342009-05-04 13:35:22 +0200913static void print_wifi_wps(const uint8_t type, uint8_t len, const uint8_t *data)
Johannes Berg4673a892009-04-30 20:05:59 +0200914{
915 bool first = true;
916 __u16 subtype, sublen;
917
Johannes Berg4673a892009-04-30 20:05:59 +0200918 while (len >= 4) {
919 subtype = (data[0] << 8) + data[1];
920 sublen = (data[2] << 8) + data[3];
921 if (sublen > len)
922 break;
923
924 switch (subtype) {
925 case 0x104a:
926 tab_on_first(&first);
Johannes Bergdffc6752009-05-04 13:07:16 +0200927 printf("\t * Version: %d.%d\n", data[4] >> 4, data[4] & 0xF);
Johannes Berg4673a892009-04-30 20:05:59 +0200928 break;
929 case 0x1011:
930 tab_on_first(&first);
931 printf("\t * Device name: %.*s\n", sublen, data + 4);
932 break;
Jouni Malinena6816962010-04-06 18:03:57 +0300933 case 0x1012: {
934 uint16_t id;
935 tab_on_first(&first);
936 if (sublen != 2) {
937 printf("\t * Device Password ID: (invalid "
938 "length %d)\n", sublen);
939 break;
940 }
941 id = data[4] << 8 | data[5];
942 printf("\t * Device Password ID: %u (%s)\n",
943 id, wifi_wps_dev_passwd_id(id));
944 break;
945 }
Johannes Berg4673a892009-04-30 20:05:59 +0200946 case 0x1021:
947 tab_on_first(&first);
948 printf("\t * Manufacturer: %.*s\n", sublen, data + 4);
949 break;
950 case 0x1023:
951 tab_on_first(&first);
952 printf("\t * Model: %.*s\n", sublen, data + 4);
953 break;
Jouni Malinena6816962010-04-06 18:03:57 +0300954 case 0x1024:
955 tab_on_first(&first);
956 printf("\t * Model Number: %.*s\n", sublen, data + 4);
957 break;
958 case 0x103b: {
959 __u8 val = data[4];
960 tab_on_first(&first);
961 printf("\t * Response Type: %d%s\n",
962 val, val == 3 ? " (AP)" : "");
963 break;
964 }
965 case 0x103c: {
966 __u8 val = data[4];
967 tab_on_first(&first);
968 printf("\t * RF Bands: 0x%x\n", val);
969 break;
970 }
971 case 0x1041: {
972 __u8 val = data[4];
973 tab_on_first(&first);
974 printf("\t * Selected Registrar: 0x%x\n", val);
975 break;
976 }
977 case 0x1042:
978 tab_on_first(&first);
979 printf("\t * Serial Number: %.*s\n", sublen, data + 4);
980 break;
981 case 0x1044: {
982 __u8 val = data[4];
983 tab_on_first(&first);
984 printf("\t * Wi-Fi Protected Setup State: %d%s%s\n",
985 val,
986 val == 1 ? " (Unconfigured)" : "",
987 val == 2 ? " (Configured)" : "");
988 break;
989 }
Johannes Berg09fe09d2011-06-09 20:34:59 +0200990 case 0x1047:
991 tab_on_first(&first);
992 printf("\t * UUID: ");
993 if (sublen != 16) {
994 printf("(invalid, length=%d)\n", sublen);
995 break;
996 }
997 printf("%02x%02x%02x%02x-%02x%02x-%02x%02x-"
998 "%02x%02x-%02x%02x%02x%02x%02x%02x\n",
999 data[4], data[5], data[6], data[7],
1000 data[8], data[9], data[10], data[11],
1001 data[12], data[13], data[14], data[15],
1002 data[16], data[17], data[18], data[19]);
1003 break;
Jouni Malinena6816962010-04-06 18:03:57 +03001004 case 0x1054: {
1005 tab_on_first(&first);
1006 if (sublen != 8) {
1007 printf("\t * Primary Device Type: (invalid "
1008 "length %d)\n", sublen);
1009 break;
1010 }
1011 printf("\t * Primary Device Type: "
1012 "%u-%02x%02x%02x%02x-%u\n",
1013 data[4] << 8 | data[5],
1014 data[6], data[7], data[8], data[9],
1015 data[10] << 8 | data[11]);
1016 break;
1017 }
Johannes Berg7ee5a862009-05-01 11:52:51 +02001018 case 0x1057: {
Johannes Bergfe31a222009-06-08 12:46:43 +02001019 __u8 val = data[4];
Johannes Berg7ee5a862009-05-01 11:52:51 +02001020 tab_on_first(&first);
Johannes Bergfe31a222009-06-08 12:46:43 +02001021 printf("\t * AP setup locked: 0x%.2x\n", val);
Johannes Berg7ee5a862009-05-01 11:52:51 +02001022 break;
1023 }
Jouni Malinena6816962010-04-06 18:03:57 +03001024 case 0x1008:
1025 case 0x1053: {
Johannes Berg4673a892009-04-30 20:05:59 +02001026 __u16 meth = (data[4] << 8) + data[5];
1027 bool comma = false;
1028 tab_on_first(&first);
Jouni Malinena6816962010-04-06 18:03:57 +03001029 printf("\t * %sConfig methods:",
1030 subtype == 0x1053 ? "Selected Registrar ": "");
Johannes Berg4673a892009-04-30 20:05:59 +02001031#define T(bit, name) do { \
1032 if (meth & (1<<bit)) { \
1033 if (comma) \
1034 printf(","); \
1035 comma = true; \
1036 printf(" " name); \
1037 } } while (0)
1038 T(0, "USB");
1039 T(1, "Ethernet");
1040 T(2, "Label");
1041 T(3, "Display");
1042 T(4, "Ext. NFC");
1043 T(5, "Int. NFC");
1044 T(6, "NFC Intf.");
1045 T(7, "PBC");
1046 T(8, "Keypad");
1047 printf("\n");
1048 break;
1049#undef T
1050 }
Johannes Berg2650d462010-03-24 23:09:52 -07001051 default: {
1052 const __u8 *subdata = data + 4;
1053 __u16 tmplen = sublen;
1054
1055 tab_on_first(&first);
1056 printf("\t * Unknown TLV (%#.4x, %d bytes):",
1057 subtype, tmplen);
1058 while (tmplen) {
1059 printf(" %.2x", *subdata);
1060 subdata++;
1061 tmplen--;
1062 }
1063 printf("\n");
Johannes Berg4673a892009-04-30 20:05:59 +02001064 break;
1065 }
Johannes Berg2650d462010-03-24 23:09:52 -07001066 }
Johannes Berg4673a892009-04-30 20:05:59 +02001067
1068 data += sublen + 4;
1069 len -= sublen + 4;
1070 }
1071
1072 if (len != 0) {
1073 printf("\t\t * bogus tail data (%d):", len);
1074 while (len) {
1075 printf(" %.2x", *data);
1076 data++;
1077 len--;
1078 }
1079 printf("\n");
1080 }
1081}
1082
Johannes Berg83b49342009-05-04 13:35:22 +02001083static const struct ie_print wifiprinters[] = {
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001084 [1] = { "WPA", print_wifi_wpa, 2, 255, BIT(PRINT_SCAN), },
1085 [2] = { "WMM", print_wifi_wmm, 1, 255, BIT(PRINT_SCAN), },
1086 [4] = { "WPS", print_wifi_wps, 0, 255, BIT(PRINT_SCAN), },
Johannes Berg4673a892009-04-30 20:05:59 +02001087};
1088
Johannes Berg9a223742011-06-09 20:55:44 +02001089static inline void print_p2p(const uint8_t type, uint8_t len, const uint8_t *data)
1090{
1091 bool first = true;
1092 __u8 subtype;
1093 __u16 sublen;
1094
1095 while (len >= 3) {
1096 subtype = data[0];
1097 sublen = (data[2] << 8) + data[1];
1098
1099 if (sublen > len - 3)
1100 break;
1101
1102 switch (subtype) {
1103 case 0x02: /* capability */
1104 tab_on_first(&first);
1105 if (sublen < 2) {
1106 printf("\t * malformed capability\n");
1107 break;
1108 }
1109 printf("\t * Group capa: 0x%.2x, Device capa: 0x%.2x\n",
1110 data[3], data[4]);
1111 break;
1112 case 0x0d: /* device info */
1113 if (sublen < 6 + 2 + 8 + 1) {
1114 printf("\t * malformed device info\n");
1115 break;
1116 }
1117 /* fall through for now */
1118 case 0x00: /* status */
1119 case 0x01: /* minor reason */
1120 case 0x03: /* device ID */
1121 case 0x04: /* GO intent */
1122 case 0x05: /* configuration timeout */
1123 case 0x06: /* listen channel */
1124 case 0x07: /* group BSSID */
1125 case 0x08: /* ext listen timing */
1126 case 0x09: /* intended interface address */
1127 case 0x0a: /* manageability */
1128 case 0x0b: /* channel list */
1129 case 0x0c: /* NoA */
1130 case 0x0e: /* group info */
1131 case 0x0f: /* group ID */
1132 case 0x10: /* interface */
1133 case 0x11: /* operating channel */
1134 case 0x12: /* invitation flags */
1135 case 0xdd: /* vendor specific */
1136 default: {
1137 const __u8 *subdata = data + 4;
1138 __u16 tmplen = sublen;
1139
1140 tab_on_first(&first);
1141 printf("\t * Unknown TLV (%#.2x, %d bytes):",
1142 subtype, tmplen);
1143 while (tmplen) {
1144 printf(" %.2x", *subdata);
1145 subdata++;
1146 tmplen--;
1147 }
1148 printf("\n");
1149 break;
1150 }
1151 }
1152
1153 data += sublen + 3;
1154 len -= sublen + 3;
1155 }
1156
1157 if (len != 0) {
1158 tab_on_first(&first);
1159 printf("\t * bogus tail data (%d):", len);
1160 while (len) {
1161 printf(" %.2x", *data);
1162 data++;
1163 len--;
1164 }
1165 printf("\n");
1166 }
1167}
1168
1169static const struct ie_print wfa_printers[] = {
1170 [9] = { "P2P", print_p2p, 2, 255, BIT(PRINT_SCAN), },
1171};
1172
Johannes Berg764fe752009-02-12 10:30:32 +01001173static void print_vendor(unsigned char len, unsigned char *data,
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001174 bool unknown, enum print_ie_type ptype)
Johannes Berg3563f4c2008-09-19 05:08:11 +02001175{
1176 int i;
1177
Johannes Bergfbf80af2009-04-30 18:49:44 +02001178 if (len < 3) {
Johannes Berg4673a892009-04-30 20:05:59 +02001179 printf("\tVendor specific: <too short> data:");
Johannes Bergfbf80af2009-04-30 18:49:44 +02001180 for(i = 0; i < len; i++)
1181 printf(" %.02x", data[i]);
1182 printf("\n");
1183 return;
1184 }
1185
Johannes Berg3bd60ef2011-06-09 20:36:59 +02001186 if (len >= 4 && memcmp(data, ms_oui, 3) == 0) {
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001187 if (data[3] < ARRAY_SIZE(wifiprinters) &&
1188 wifiprinters[data[3]].name &&
1189 wifiprinters[data[3]].flags & BIT(ptype)) {
Johannes Berg83b49342009-05-04 13:35:22 +02001190 print_ie(&wifiprinters[data[3]], data[3], len - 4, data + 4);
1191 return;
1192 }
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001193 if (!unknown)
Johannes Berg4673a892009-04-30 20:05:59 +02001194 return;
Johannes Berg3bd60ef2011-06-09 20:36:59 +02001195 printf("\tMS/WiFi %#.2x, data:", data[3]);
Johannes Berg4673a892009-04-30 20:05:59 +02001196 for(i = 0; i < len - 4; i++)
1197 printf(" %.02x", data[i + 4]);
1198 printf("\n");
1199 return;
1200 }
1201
Johannes Berg9a223742011-06-09 20:55:44 +02001202 if (len >= 4 && memcmp(data, wfa_oui, 3) == 0) {
1203 if (data[3] < ARRAY_SIZE(wfa_printers) &&
1204 wfa_printers[data[3]].name &&
1205 wfa_printers[data[3]].flags & BIT(ptype)) {
1206 print_ie(&wfa_printers[data[3]], data[3], len - 4, data + 4);
1207 return;
1208 }
1209 if (!unknown)
1210 return;
1211 printf("\tWFA %#.2x, data:", data[3]);
1212 for(i = 0; i < len - 4; i++)
1213 printf(" %.02x", data[i + 4]);
1214 printf("\n");
1215 return;
1216 }
1217
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001218 if (!unknown)
Johannes Berg764fe752009-02-12 10:30:32 +01001219 return;
1220
Johannes Bergfbf80af2009-04-30 18:49:44 +02001221 printf("\tVendor specific: OUI %.2x:%.2x:%.2x, data:",
Johannes Berg3563f4c2008-09-19 05:08:11 +02001222 data[0], data[1], data[2]);
Johannes Bergfbf80af2009-04-30 18:49:44 +02001223 for (i = 3; i < len; i++)
1224 printf(" %.2x", data[i]);
Johannes Berg3563f4c2008-09-19 05:08:11 +02001225 printf("\n");
1226}
1227
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001228void print_ies(unsigned char *ie, int ielen, bool unknown,
1229 enum print_ie_type ptype)
Johannes Berg3563f4c2008-09-19 05:08:11 +02001230{
1231 while (ielen >= 2 && ielen >= ie[1]) {
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001232 if (ie[0] < ARRAY_SIZE(ieprinters) &&
1233 ieprinters[ie[0]].name &&
1234 ieprinters[ie[0]].flags & BIT(ptype)) {
Johannes Berg83b49342009-05-04 13:35:22 +02001235 print_ie(&ieprinters[ie[0]], ie[0], ie[1], ie + 2);
Johannes Berg764fe752009-02-12 10:30:32 +01001236 } else if (ie[0] == 221 /* vendor */) {
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001237 print_vendor(ie[1], ie + 2, unknown, ptype);
1238 } else if (unknown) {
Johannes Berg3563f4c2008-09-19 05:08:11 +02001239 int i;
1240
Johannes Berg8086b702009-04-30 18:57:06 +02001241 printf("\tUnknown IE (%d):", ie[0]);
Johannes Berg3563f4c2008-09-19 05:08:11 +02001242 for (i=0; i<ie[1]; i++)
Johannes Berg8086b702009-04-30 18:57:06 +02001243 printf(" %.2x", ie[2+i]);
Johannes Berg3563f4c2008-09-19 05:08:11 +02001244 printf("\n");
1245 }
1246 ielen -= ie[1] + 2;
1247 ie += ie[1] + 2;
1248 }
1249}
1250
Vladimir Kondratiev2e8b82c2012-12-17 13:31:36 +02001251static void print_capa_dmg(__u16 capa)
1252{
1253 switch (capa & WLAN_CAPABILITY_DMG_TYPE_MASK) {
1254 case WLAN_CAPABILITY_DMG_TYPE_AP:
1255 printf(" DMG_ESS");
1256 break;
1257 case WLAN_CAPABILITY_DMG_TYPE_PBSS:
1258 printf(" DMG_PCP");
1259 break;
1260 case WLAN_CAPABILITY_DMG_TYPE_IBSS:
1261 printf(" DMG_IBSS");
1262 break;
1263 }
1264
1265 if (capa & WLAN_CAPABILITY_DMG_CBAP_ONLY)
1266 printf(" CBAP_Only");
1267 if (capa & WLAN_CAPABILITY_DMG_CBAP_SOURCE)
1268 printf(" CBAP_Src");
1269 if (capa & WLAN_CAPABILITY_DMG_PRIVACY)
1270 printf(" Privacy");
1271 if (capa & WLAN_CAPABILITY_DMG_ECPAC)
1272 printf(" ECPAC");
1273 if (capa & WLAN_CAPABILITY_DMG_SPECTRUM_MGMT)
1274 printf(" SpectrumMgmt");
1275 if (capa & WLAN_CAPABILITY_DMG_RADIO_MEASURE)
1276 printf(" RadioMeasure");
1277}
1278
1279static void print_capa_non_dmg(__u16 capa)
1280{
1281 if (capa & WLAN_CAPABILITY_ESS)
1282 printf(" ESS");
1283 if (capa & WLAN_CAPABILITY_IBSS)
1284 printf(" IBSS");
1285 if (capa & WLAN_CAPABILITY_CF_POLLABLE)
1286 printf(" CfPollable");
1287 if (capa & WLAN_CAPABILITY_CF_POLL_REQUEST)
1288 printf(" CfPollReq");
1289 if (capa & WLAN_CAPABILITY_PRIVACY)
1290 printf(" Privacy");
1291 if (capa & WLAN_CAPABILITY_SHORT_PREAMBLE)
1292 printf(" ShortPreamble");
1293 if (capa & WLAN_CAPABILITY_PBCC)
1294 printf(" PBCC");
1295 if (capa & WLAN_CAPABILITY_CHANNEL_AGILITY)
1296 printf(" ChannelAgility");
1297 if (capa & WLAN_CAPABILITY_SPECTRUM_MGMT)
1298 printf(" SpectrumMgmt");
1299 if (capa & WLAN_CAPABILITY_QOS)
1300 printf(" QoS");
1301 if (capa & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1302 printf(" ShortSlotTime");
1303 if (capa & WLAN_CAPABILITY_APSD)
1304 printf(" APSD");
1305 if (capa & WLAN_CAPABILITY_RADIO_MEASURE)
1306 printf(" RadioMeasure");
1307 if (capa & WLAN_CAPABILITY_DSSS_OFDM)
1308 printf(" DSSS-OFDM");
1309 if (capa & WLAN_CAPABILITY_DEL_BACK)
1310 printf(" DelayedBACK");
1311 if (capa & WLAN_CAPABILITY_IMM_BACK)
1312 printf(" ImmediateBACK");
1313}
1314
Johannes Berg3563f4c2008-09-19 05:08:11 +02001315static int print_bss_handler(struct nl_msg *msg, void *arg)
1316{
1317 struct nlattr *tb[NL80211_ATTR_MAX + 1];
1318 struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
1319 struct nlattr *bss[NL80211_BSS_MAX + 1];
1320 char mac_addr[20], dev[20];
1321 static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
1322 [NL80211_BSS_TSF] = { .type = NLA_U64 },
1323 [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
1324 [NL80211_BSS_BSSID] = { },
1325 [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
1326 [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
1327 [NL80211_BSS_INFORMATION_ELEMENTS] = { },
Johannes Bergf2e17e12009-01-07 22:05:49 +01001328 [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
1329 [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
Johannes Berga56117a2009-07-10 18:31:59 +02001330 [NL80211_BSS_STATUS] = { .type = NLA_U32 },
Holger Schurigc04a78d2009-09-24 11:20:47 +02001331 [NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
Jouni Malinen575280c2010-01-06 17:53:59 +02001332 [NL80211_BSS_BEACON_IES] = { },
Johannes Berg3563f4c2008-09-19 05:08:11 +02001333 };
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001334 struct scan_params *params = arg;
Johannes Berg1c5bcd92010-02-06 15:16:29 +01001335 int show = params->show_both_ie_sets ? 2 : 1;
Vladimir Kondratiev2e8b82c2012-12-17 13:31:36 +02001336 bool is_dmg = false;
Johannes Berg3563f4c2008-09-19 05:08:11 +02001337
1338 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
1339 genlmsg_attrlen(gnlh, 0), NULL);
1340
1341 if (!tb[NL80211_ATTR_BSS]) {
Johannes Berg5fe70c02009-11-11 15:18:43 +01001342 fprintf(stderr, "bss info missing!\n");
Johannes Berg3563f4c2008-09-19 05:08:11 +02001343 return NL_SKIP;
1344 }
1345 if (nla_parse_nested(bss, NL80211_BSS_MAX,
1346 tb[NL80211_ATTR_BSS],
1347 bss_policy)) {
Johannes Berg5fe70c02009-11-11 15:18:43 +01001348 fprintf(stderr, "failed to parse nested attributes!\n");
Johannes Berg3563f4c2008-09-19 05:08:11 +02001349 return NL_SKIP;
1350 }
1351
1352 if (!bss[NL80211_BSS_BSSID])
1353 return NL_SKIP;
1354
1355 mac_addr_n2a(mac_addr, nla_data(bss[NL80211_BSS_BSSID]));
Johannes Berg00889fb2013-04-19 00:48:16 +02001356 printf("BSS %s", mac_addr);
1357 if (tb[NL80211_ATTR_IFINDEX]) {
1358 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
1359 printf("(on %s)", dev);
1360 }
Johannes Berga56117a2009-07-10 18:31:59 +02001361
1362 if (bss[NL80211_BSS_STATUS]) {
1363 switch (nla_get_u32(bss[NL80211_BSS_STATUS])) {
1364 case NL80211_BSS_STATUS_AUTHENTICATED:
1365 printf(" -- authenticated");
1366 break;
1367 case NL80211_BSS_STATUS_ASSOCIATED:
1368 printf(" -- associated");
1369 break;
1370 case NL80211_BSS_STATUS_IBSS_JOINED:
1371 printf(" -- joined");
1372 break;
1373 default:
1374 printf(" -- unknown status: %d",
1375 nla_get_u32(bss[NL80211_BSS_STATUS]));
1376 break;
1377 }
1378 }
1379 printf("\n");
Johannes Berg3563f4c2008-09-19 05:08:11 +02001380
Johannes Berge7109a82009-02-10 21:14:45 +01001381 if (bss[NL80211_BSS_TSF]) {
1382 unsigned long long tsf;
1383 tsf = (unsigned long long)nla_get_u64(bss[NL80211_BSS_TSF]);
1384 printf("\tTSF: %llu usec (%llud, %.2lld:%.2llu:%.2llu)\n",
1385 tsf, tsf/1000/1000/60/60/24, (tsf/1000/1000/60/60) % 24,
1386 (tsf/1000/1000/60) % 60, (tsf/1000/1000) % 60);
1387 }
Vladimir Kondratiev2e8b82c2012-12-17 13:31:36 +02001388 if (bss[NL80211_BSS_FREQUENCY]) {
1389 int freq = nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
1390 printf("\tfreq: %d\n", freq);
1391 if (freq > 45000)
1392 is_dmg = true;
1393 }
Johannes Berg3563f4c2008-09-19 05:08:11 +02001394 if (bss[NL80211_BSS_BEACON_INTERVAL])
Joerg Mayer792172b2013-04-19 22:39:05 +02001395 printf("\tbeacon interval: %d TUs\n",
Johannes Berg3563f4c2008-09-19 05:08:11 +02001396 nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]));
Marcel Holtmann92a04ec2009-05-04 01:48:45 -07001397 if (bss[NL80211_BSS_CAPABILITY]) {
1398 __u16 capa = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
1399 printf("\tcapability:");
Vladimir Kondratiev2e8b82c2012-12-17 13:31:36 +02001400 if (is_dmg)
1401 print_capa_dmg(capa);
1402 else
1403 print_capa_non_dmg(capa);
Marcel Holtmann92a04ec2009-05-04 01:48:45 -07001404 printf(" (0x%.4x)\n", capa);
1405 }
Johannes Bergf2e17e12009-01-07 22:05:49 +01001406 if (bss[NL80211_BSS_SIGNAL_MBM]) {
1407 int s = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
1408 printf("\tsignal: %d.%.2d dBm\n", s/100, s%100);
1409 }
1410 if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
1411 unsigned char s = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
1412 printf("\tsignal: %d/100\n", s);
1413 }
Holger Schurigc04a78d2009-09-24 11:20:47 +02001414 if (bss[NL80211_BSS_SEEN_MS_AGO]) {
1415 int age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
1416 printf("\tlast seen: %d ms ago\n", age);
1417 }
Johannes Bergc5514492011-12-07 09:08:40 +01001418
Johannes Berg1c5bcd92010-02-06 15:16:29 +01001419 if (bss[NL80211_BSS_INFORMATION_ELEMENTS] && show--) {
Jouni Malinen575280c2010-01-06 17:53:59 +02001420 if (bss[NL80211_BSS_BEACON_IES])
1421 printf("\tInformation elements from Probe Response "
1422 "frame:\n");
Johannes Berg3563f4c2008-09-19 05:08:11 +02001423 print_ies(nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
Johannes Berg764fe752009-02-12 10:30:32 +01001424 nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]),
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001425 params->unknown, params->type);
Jouni Malinen575280c2010-01-06 17:53:59 +02001426 }
Johannes Berg1c5bcd92010-02-06 15:16:29 +01001427 if (bss[NL80211_BSS_BEACON_IES] && show--) {
Jouni Malinen575280c2010-01-06 17:53:59 +02001428 printf("\tInformation elements from Beacon frame:\n");
1429 print_ies(nla_data(bss[NL80211_BSS_BEACON_IES]),
1430 nla_len(bss[NL80211_BSS_BEACON_IES]),
1431 params->unknown, params->type);
1432 }
Johannes Berg3563f4c2008-09-19 05:08:11 +02001433
1434 return NL_SKIP;
1435}
1436
Johannes Berg764fe752009-02-12 10:30:32 +01001437static struct scan_params scan_params;
Johannes Berg3563f4c2008-09-19 05:08:11 +02001438
Johannes Berg7c37a242009-04-08 13:13:28 +02001439static int handle_scan_dump(struct nl80211_state *state,
1440 struct nl_cb *cb,
Johannes Berg3563f4c2008-09-19 05:08:11 +02001441 struct nl_msg *msg,
Johannes Berg05514f92012-07-19 11:50:50 +02001442 int argc, char **argv,
1443 enum id_input id)
Johannes Berg3563f4c2008-09-19 05:08:11 +02001444{
Johannes Berg764fe752009-02-12 10:30:32 +01001445 if (argc > 1)
1446 return 1;
1447
Johannes Berg1c5bcd92010-02-06 15:16:29 +01001448 memset(&scan_params, 0, sizeof(scan_params));
1449
Johannes Berg764fe752009-02-12 10:30:32 +01001450 if (argc == 1 && !strcmp(argv[0], "-u"))
1451 scan_params.unknown = true;
Jouni Malinen575280c2010-01-06 17:53:59 +02001452 else if (argc == 1 && !strcmp(argv[0], "-b"))
1453 scan_params.show_both_ie_sets = true;
Johannes Berg764fe752009-02-12 10:30:32 +01001454
Johannes Bergfebeb0c2009-07-25 17:31:08 +02001455 scan_params.type = PRINT_SCAN;
1456
Johannes Berg764fe752009-02-12 10:30:32 +01001457 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_bss_handler,
1458 &scan_params);
Johannes Berg3563f4c2008-09-19 05:08:11 +02001459 return 0;
1460}
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001461
1462static int handle_scan_combined(struct nl80211_state *state,
1463 struct nl_cb *cb,
1464 struct nl_msg *msg,
Johannes Berg05514f92012-07-19 11:50:50 +02001465 int argc, char **argv,
1466 enum id_input id)
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001467{
Johannes Berg559a1712009-05-04 14:06:33 +02001468 char **trig_argv;
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001469 static char *dump_argv[] = {
1470 NULL,
1471 "scan",
1472 "dump",
Marcel Holtmann92649ea2009-05-02 13:07:24 -07001473 NULL,
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001474 };
1475 static const __u32 cmds[] = {
1476 NL80211_CMD_NEW_SCAN_RESULTS,
1477 NL80211_CMD_SCAN_ABORTED,
1478 };
Johannes Berg559a1712009-05-04 14:06:33 +02001479 int trig_argc, dump_argc, err;
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001480
Johannes Berg559a1712009-05-04 14:06:33 +02001481 if (argc >= 3 && !strcmp(argv[2], "-u")) {
1482 dump_argc = 4;
1483 dump_argv[3] = "-u";
Jouni Malinen575280c2010-01-06 17:53:59 +02001484 } else if (argc >= 3 && !strcmp(argv[2], "-b")) {
1485 dump_argc = 4;
1486 dump_argv[3] = "-b";
Johannes Berg559a1712009-05-04 14:06:33 +02001487 } else
1488 dump_argc = 3;
1489
1490 trig_argc = 3 + (argc - 2) + (3 - dump_argc);
1491 trig_argv = calloc(trig_argc, sizeof(*trig_argv));
1492 if (!trig_argv)
1493 return -ENOMEM;
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001494 trig_argv[0] = argv[0];
Johannes Berg559a1712009-05-04 14:06:33 +02001495 trig_argv[1] = "scan";
1496 trig_argv[2] = "trigger";
1497 int i;
1498 for (i = 0; i < argc - 2 - (dump_argc - 3); i++)
1499 trig_argv[i + 3] = argv[i + 2 + (dump_argc - 3)];
Johannes Berg75f42042012-07-19 08:36:05 +02001500 err = handle_cmd(state, id, trig_argc, trig_argv);
Johannes Berg559a1712009-05-04 14:06:33 +02001501 free(trig_argv);
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001502 if (err)
1503 return err;
1504
Johannes Berg61725db2009-04-23 15:57:38 +02001505 /*
1506 * WARNING: DO NOT COPY THIS CODE INTO YOUR APPLICATION
1507 *
1508 * This code has a bug, which requires creating a separate
1509 * nl80211 socket to fix:
1510 * It is possible for a NL80211_CMD_NEW_SCAN_RESULTS or
1511 * NL80211_CMD_SCAN_ABORTED message to be sent by the kernel
1512 * before (!) we listen to it, because we only start listening
1513 * after we send our scan request.
1514 *
1515 * Doing it the other way around has a race condition as well,
1516 * if you first open the events socket you may get a notification
1517 * for a previous scan.
1518 *
1519 * The only proper way to fix this would be to listen to events
1520 * before sending the command, and for the kernel to send the
1521 * scan request along with the event, so that you can match up
1522 * whether the scan you requested was finished or aborted (this
1523 * may result in processing a scan that another application
1524 * requested, but that doesn't seem to be a problem).
1525 *
1526 * Alas, the kernel doesn't do that (yet).
1527 */
1528
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001529 if (listen_events(state, ARRAY_SIZE(cmds), cmds) ==
1530 NL80211_CMD_SCAN_ABORTED) {
1531 printf("scan aborted!\n");
1532 return 0;
1533 }
1534
1535 dump_argv[0] = argv[0];
Johannes Berg75f42042012-07-19 08:36:05 +02001536 return handle_cmd(state, id, dump_argc, dump_argv);
Johannes Berga5fe4ef2009-04-08 14:11:47 +02001537}
Antonio Quartulliced94d52012-10-26 16:41:48 +02001538TOPLEVEL(scan, "[-u] [freq <freq>*] [ies <hex as 00:11:..>] [lowpri,flush,ap-force] [ssid <ssid>*|passive]", 0, 0,
Johannes Berg6ca98d22009-05-05 15:00:56 +02001539 CIB_NETDEV, handle_scan_combined,
1540 "Scan on the given frequencies and probe for the given SSIDs\n"
1541 "(or wildcard if not given) unless passive scanning is requested.\n"
Johannes Berg64797a72010-03-24 23:38:25 -07001542 "If -u is specified print unknown data in the scan results.\n"
1543 "Specified (vendor) IEs must be well-formed.");
Johannes Berg4698bfc2009-08-24 12:53:34 +02001544COMMAND(scan, dump, "[-u]",
1545 NL80211_CMD_GET_SCAN, NLM_F_DUMP, CIB_NETDEV, handle_scan_dump,
1546 "Dump the current scan results. If -u is specified, print unknown\n"
1547 "data in scan results.");
Antonio Quartulliced94d52012-10-26 16:41:48 +02001548COMMAND(scan, trigger, "[freq <freq>*] [ies <hex as 00:11:..>] [lowpri,flush,ap-force] [ssid <ssid>*|passive]",
Johannes Berg4698bfc2009-08-24 12:53:34 +02001549 NL80211_CMD_TRIGGER_SCAN, 0, CIB_NETDEV, handle_scan,
1550 "Trigger a scan on the given frequencies with probing for the given\n"
1551 "SSIDs (or wildcard if not given) unless passive scanning is requested.");