blob: 3d4eaebe590fb3426c1491a64f47e29c4d865aee [file] [log] [blame]
Luis R. Rodriguez21878f32009-02-02 15:39:06 -08001#include <stdbool.h>
Johannes Berg79f99b92008-01-16 00:21:59 +01002#include <errno.h>
Johannes Berg2ef1be62008-04-02 17:40:11 +02003#include <net/if.h>
4
Johannes Berg79f99b92008-01-16 00:21:59 +01005#include <netlink/genl/genl.h>
6#include <netlink/genl/family.h>
7#include <netlink/genl/ctrl.h>
8#include <netlink/msg.h>
9#include <netlink/attr.h>
Johannes Berg79f99b92008-01-16 00:21:59 +010010
Johannes Bergf408e012008-09-18 19:32:11 +020011#include "nl80211.h"
Johannes Berg79f99b92008-01-16 00:21:59 +010012#include "iw.h"
13
14static void print_flag(const char *name, int *open)
15{
16 if (!*open)
17 printf(" (");
18 else
19 printf(", ");
Johannes Berg69283122008-11-23 20:55:23 +010020 printf("%s", name);
Johannes Berg79f99b92008-01-16 00:21:59 +010021 *open = 1;
22}
23
Johannes Berg810e05c2011-10-05 17:38:39 +020024static char *cipher_name(__u32 c)
25{
26 static char buf[20];
27
28 switch (c) {
29 case 0x000fac01:
30 return "WEP40 (00-0f-ac:1)";
31 case 0x000fac05:
32 return "WEP104 (00-0f-ac:5)";
33 case 0x000fac02:
34 return "TKIP (00-0f-ac:2)";
35 case 0x000fac04:
36 return "CCMP (00-0f-ac:4)";
37 case 0x000fac06:
38 return "CMAC (00-0f-ac:6)";
Vladimir Kondratieva8b3da92012-07-05 14:36:20 +030039 case 0x000fac08:
40 return "GCMP (00-0f-ac:8)";
Johannes Berg810e05c2011-10-05 17:38:39 +020041 case 0x00147201:
42 return "WPI-SMS4 (00-14-72:1)";
43 default:
44 sprintf(buf, "%.2x-%.2x-%.2x:%d",
45 c >> 24, (c >> 16) & 0xff,
46 (c >> 8) & 0xff, c & 0xff);
47
48 return buf;
49 }
50}
51
Simon Wunderlich48aaf2d2013-02-08 18:16:22 +010052static char *dfs_state_name(enum nl80211_dfs_state state)
53{
54 switch (state) {
55 case NL80211_DFS_USABLE:
56 return "usable";
57 case NL80211_DFS_AVAILABLE:
58 return "available";
59 case NL80211_DFS_UNAVAILABLE:
60 return "unavailable";
61 default:
62 return "unknown";
63 }
64}
65
Johannes Berg79f99b92008-01-16 00:21:59 +010066static int print_phy_handler(struct nl_msg *msg, void *arg)
67{
68 struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
69 struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
70
71 struct nlattr *tb_band[NL80211_BAND_ATTR_MAX + 1];
72
73 struct nlattr *tb_freq[NL80211_FREQUENCY_ATTR_MAX + 1];
74 static struct nla_policy freq_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
75 [NL80211_FREQUENCY_ATTR_FREQ] = { .type = NLA_U32 },
76 [NL80211_FREQUENCY_ATTR_DISABLED] = { .type = NLA_FLAG },
77 [NL80211_FREQUENCY_ATTR_PASSIVE_SCAN] = { .type = NLA_FLAG },
78 [NL80211_FREQUENCY_ATTR_NO_IBSS] = { .type = NLA_FLAG },
79 [NL80211_FREQUENCY_ATTR_RADAR] = { .type = NLA_FLAG },
Johannes Bergc1081c22008-11-23 12:11:26 +010080 [NL80211_FREQUENCY_ATTR_MAX_TX_POWER] = { .type = NLA_U32 },
Johannes Berg79f99b92008-01-16 00:21:59 +010081 };
82
83 struct nlattr *tb_rate[NL80211_BITRATE_ATTR_MAX + 1];
84 static struct nla_policy rate_policy[NL80211_BITRATE_ATTR_MAX + 1] = {
85 [NL80211_BITRATE_ATTR_RATE] = { .type = NLA_U32 },
86 [NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE] = { .type = NLA_FLAG },
87 };
88
89 struct nlattr *nl_band;
90 struct nlattr *nl_freq;
91 struct nlattr *nl_rate;
Johannes Berg6367e712008-09-05 23:01:11 +020092 struct nlattr *nl_mode;
Marcel Holtmann9990c1e2009-11-14 20:10:21 +010093 struct nlattr *nl_cmd;
Johannes Berg9a4a14b2010-08-24 12:26:56 +020094 struct nlattr *nl_if, *nl_ftype;
Johannes Berg9a4a14b2010-08-24 12:26:56 +020095 int rem_band, rem_freq, rem_rate, rem_mode, rem_cmd, rem_ftype, rem_if;
Johannes Berg79f99b92008-01-16 00:21:59 +010096 int open;
Johannes Bergfb70e112013-02-14 16:32:53 +010097 /*
98 * static variables only work here, other applications need to use the
99 * callback pointer and store them there so they can be multithreaded
100 * and/or have multiple netlink sockets, etc.
101 */
102 static int64_t phy_id = -1;
103 static int last_band = -1;
104 static bool band_had_freq = false;
105 bool print_name = true;
Johannes Berg79f99b92008-01-16 00:21:59 +0100106
107 nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
108 genlmsg_attrlen(gnlh, 0), NULL);
109
Johannes Bergfb70e112013-02-14 16:32:53 +0100110 if (tb_msg[NL80211_ATTR_WIPHY]) {
111 if (nla_get_u32(tb_msg[NL80211_ATTR_WIPHY]) == phy_id)
112 print_name = false;
113 else
114 last_band = -1;
115 phy_id = nla_get_u32(tb_msg[NL80211_ATTR_WIPHY]);
116 }
117 if (print_name && tb_msg[NL80211_ATTR_WIPHY_NAME])
Johannes Bergd6316502008-09-16 17:05:33 +0200118 printf("Wiphy %s\n", nla_get_string(tb_msg[NL80211_ATTR_WIPHY_NAME]));
119
Johannes Bergfb70e112013-02-14 16:32:53 +0100120 /* needed for split dump */
121 if (tb_msg[NL80211_ATTR_WIPHY_BANDS]) {
122 nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band) {
123 if (last_band != nl_band->nla_type) {
124 printf("\tBand %d:\n", nl_band->nla_type + 1);
125 band_had_freq = false;
Johannes Bergee9cd982009-01-18 18:13:54 +0100126 }
Johannes Bergfb70e112013-02-14 16:32:53 +0100127 last_band = nl_band->nla_type;
Simon Wunderlich48aaf2d2013-02-08 18:16:22 +0100128
Johannes Bergfb70e112013-02-14 16:32:53 +0100129 nla_parse(tb_band, NL80211_BAND_ATTR_MAX, nla_data(nl_band),
130 nla_len(nl_band), NULL);
Simon Wunderlich48aaf2d2013-02-08 18:16:22 +0100131
Johannes Bergfb70e112013-02-14 16:32:53 +0100132 if (tb_band[NL80211_BAND_ATTR_HT_CAPA]) {
133 __u16 cap = nla_get_u16(tb_band[NL80211_BAND_ATTR_HT_CAPA]);
134 print_ht_capability(cap);
135 }
136 if (tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR]) {
137 __u8 exponent = nla_get_u8(tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR]);
138 print_ampdu_length(exponent);
139 }
140 if (tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY]) {
141 __u8 spacing = nla_get_u8(tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY]);
142 print_ampdu_spacing(spacing);
143 }
144 if (tb_band[NL80211_BAND_ATTR_HT_MCS_SET] &&
145 nla_len(tb_band[NL80211_BAND_ATTR_HT_MCS_SET]) == 16)
146 print_ht_mcs(nla_data(tb_band[NL80211_BAND_ATTR_HT_MCS_SET]));
147 if (tb_band[NL80211_BAND_ATTR_VHT_CAPA] &&
148 tb_band[NL80211_BAND_ATTR_VHT_MCS_SET])
149 print_vht_info(nla_get_u32(tb_band[NL80211_BAND_ATTR_VHT_CAPA]),
150 nla_data(tb_band[NL80211_BAND_ATTR_VHT_MCS_SET]));
151
152 if (tb_band[NL80211_BAND_ATTR_FREQS]) {
153 if (!band_had_freq) {
154 printf("\t\tFrequencies:\n");
155 band_had_freq = true;
Simon Wunderlich48aaf2d2013-02-08 18:16:22 +0100156 }
Johannes Bergfb70e112013-02-14 16:32:53 +0100157 nla_for_each_nested(nl_freq, tb_band[NL80211_BAND_ATTR_FREQS], rem_freq) {
158 uint32_t freq;
159 nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX, nla_data(nl_freq),
160 nla_len(nl_freq), freq_policy);
161 if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
162 continue;
163 freq = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_FREQ]);
164 printf("\t\t\t* %d MHz [%d]", freq, ieee80211_frequency_to_channel(freq));
165
166 if (tb_freq[NL80211_FREQUENCY_ATTR_MAX_TX_POWER] &&
167 !tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
168 printf(" (%.1f dBm)", 0.01 * nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_MAX_TX_POWER]));
169
170 open = 0;
171 if (tb_freq[NL80211_FREQUENCY_ATTR_DISABLED]) {
172 print_flag("disabled", &open);
173 goto next;
174 }
175 if (tb_freq[NL80211_FREQUENCY_ATTR_PASSIVE_SCAN])
176 print_flag("passive scanning", &open);
177 if (tb_freq[NL80211_FREQUENCY_ATTR_NO_IBSS])
178 print_flag("no IBSS", &open);
179 if (tb_freq[NL80211_FREQUENCY_ATTR_RADAR])
180 print_flag("radar detection", &open);
181next:
182 if (open)
183 printf(")");
184 printf("\n");
185
186 if (tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]) {
187 enum nl80211_dfs_state state = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]);
188 unsigned long time;
189
190 printf("\t\t\t DFS state: %s", dfs_state_name(state));
191 if (tb_freq[NL80211_FREQUENCY_ATTR_DFS_TIME]) {
192 time = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_DFS_TIME]);
193 printf(" (for %lu sec)", time/1000);
194 }
195 printf("\n");
196 }
197 }
198 }
199
200 if (tb_band[NL80211_BAND_ATTR_RATES]) {
201 printf("\t\tBitrates (non-HT):\n");
202 nla_for_each_nested(nl_rate, tb_band[NL80211_BAND_ATTR_RATES], rem_rate) {
203 nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX, nla_data(nl_rate),
204 nla_len(nl_rate), rate_policy);
205 if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
206 continue;
207 printf("\t\t\t* %2.1f Mbps", 0.1 * nla_get_u32(tb_rate[NL80211_BITRATE_ATTR_RATE]));
208 open = 0;
209 if (tb_rate[NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE])
210 print_flag("short preamble supported", &open);
211 if (open)
212 printf(")");
Simon Wunderlich48aaf2d2013-02-08 18:16:22 +0100213 printf("\n");
214 }
Johannes Bergfb70e112013-02-14 16:32:53 +0100215 }
Johannes Berg79f99b92008-01-16 00:21:59 +0100216 }
217 }
218
Johannes Berg41be37f2008-09-19 17:34:55 +0200219 if (tb_msg[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])
220 printf("\tmax # scan SSIDs: %d\n",
221 nla_get_u8(tb_msg[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]));
Johannes Bergf9c112b2010-03-24 23:28:03 -0700222 if (tb_msg[NL80211_ATTR_MAX_SCAN_IE_LEN])
223 printf("\tmax scan IEs length: %d bytes\n",
Johannes Berg8eaa9ee2010-09-26 09:12:07 +0200224 nla_get_u16(tb_msg[NL80211_ATTR_MAX_SCAN_IE_LEN]));
Johannes Berg41be37f2008-09-19 17:34:55 +0200225
Johannes Berg625aa4a2009-08-11 11:26:42 +0200226 if (tb_msg[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) {
227 unsigned int frag;
228
229 frag = nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]);
230 if (frag != (unsigned int)-1)
231 printf("\tFragmentation threshold: %d\n", frag);
232 }
233
234 if (tb_msg[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) {
235 unsigned int rts;
236
237 rts = nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_RTS_THRESHOLD]);
238 if (rts != (unsigned int)-1)
239 printf("\tRTS threshold: %d\n", rts);
240 }
241
Lukáš Turekb2f92dd2010-02-17 21:13:23 -0500242 if (tb_msg[NL80211_ATTR_WIPHY_COVERAGE_CLASS]) {
243 unsigned char coverage;
244
245 coverage = nla_get_u8(tb_msg[NL80211_ATTR_WIPHY_COVERAGE_CLASS]);
246 /* See handle_distance() for an explanation where the '450' comes from */
247 printf("\tCoverage class: %d (up to %dm)\n", coverage, 450 * coverage);
248 }
249
Johannes Berg810e05c2011-10-05 17:38:39 +0200250 if (tb_msg[NL80211_ATTR_CIPHER_SUITES]) {
251 int num = nla_len(tb_msg[NL80211_ATTR_CIPHER_SUITES]) / sizeof(__u32);
252 int i;
253 __u32 *ciphers = nla_data(tb_msg[NL80211_ATTR_CIPHER_SUITES]);
254 if (num > 0) {
255 printf("\tSupported Ciphers:\n");
256 for (i = 0; i < num; i++)
257 printf("\t\t* %s\n",
258 cipher_name(ciphers[i]));
259 }
260 }
261
Bruno Randolfafce7982010-12-22 10:54:39 +0900262 if (tb_msg[NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX] &&
263 tb_msg[NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX])
264 printf("\tAvailable Antennas: TX %#x RX %#x\n",
265 nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX]),
266 nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX]));
267
268 if (tb_msg[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
269 tb_msg[NL80211_ATTR_WIPHY_ANTENNA_RX])
270 printf("\tConfigured Antennas: TX %#x RX %#x\n",
271 nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_ANTENNA_TX]),
272 nla_get_u32(tb_msg[NL80211_ATTR_WIPHY_ANTENNA_RX]));
273
Johannes Berg9a4a14b2010-08-24 12:26:56 +0200274 if (tb_msg[NL80211_ATTR_SUPPORTED_IFTYPES]) {
275 printf("\tSupported interface modes:\n");
276 nla_for_each_nested(nl_mode, tb_msg[NL80211_ATTR_SUPPORTED_IFTYPES], rem_mode)
Johannes Berg8ef6df42011-02-21 22:12:54 +0100277 printf("\t\t * %s\n", iftype_name(nla_type(nl_mode)));
Johannes Berg9a4a14b2010-08-24 12:26:56 +0200278 }
Johannes Berg6367e712008-09-05 23:01:11 +0200279
Johannes Berg1c5b4a82011-05-13 16:53:51 +0200280 if (tb_msg[NL80211_ATTR_SOFTWARE_IFTYPES]) {
281 printf("\tsoftware interface modes (can always be added):\n");
282 nla_for_each_nested(nl_mode, tb_msg[NL80211_ATTR_SOFTWARE_IFTYPES], rem_mode)
283 printf("\t\t * %s\n", iftype_name(nla_type(nl_mode)));
284 }
285
286 if (tb_msg[NL80211_ATTR_INTERFACE_COMBINATIONS]) {
287 struct nlattr *nl_combi;
288 int rem_combi;
Johannes Bergf5f6f152011-06-29 13:20:31 +0200289 bool have_combinations = false;
Johannes Berg1c5b4a82011-05-13 16:53:51 +0200290
291 nla_for_each_nested(nl_combi, tb_msg[NL80211_ATTR_INTERFACE_COMBINATIONS], rem_combi) {
292 static struct nla_policy iface_combination_policy[NUM_NL80211_IFACE_COMB] = {
293 [NL80211_IFACE_COMB_LIMITS] = { .type = NLA_NESTED },
294 [NL80211_IFACE_COMB_MAXNUM] = { .type = NLA_U32 },
295 [NL80211_IFACE_COMB_STA_AP_BI_MATCH] = { .type = NLA_FLAG },
296 [NL80211_IFACE_COMB_NUM_CHANNELS] = { .type = NLA_U32 },
Simon Wunderlichc5df9eb2013-02-08 18:16:21 +0100297 [NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS] = { .type = NLA_U32 },
Johannes Berg1c5b4a82011-05-13 16:53:51 +0200298 };
299 struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB];
300 static struct nla_policy iface_limit_policy[NUM_NL80211_IFACE_LIMIT] = {
301 [NL80211_IFACE_LIMIT_TYPES] = { .type = NLA_NESTED },
302 [NL80211_IFACE_LIMIT_MAX] = { .type = NLA_U32 },
303 };
304 struct nlattr *tb_limit[NUM_NL80211_IFACE_LIMIT];
305 struct nlattr *nl_limit;
306 int err, rem_limit;
307 bool comma = false;
308
Johannes Bergf5f6f152011-06-29 13:20:31 +0200309 if (!have_combinations) {
310 printf("\tvalid interface combinations:\n");
311 have_combinations = true;
312 }
313
Johannes Berg1c5b4a82011-05-13 16:53:51 +0200314 printf("\t\t * ");
315
316 err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB,
317 nl_combi, iface_combination_policy);
318 if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] ||
319 !tb_comb[NL80211_IFACE_COMB_MAXNUM] ||
320 !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]) {
321 printf(" <failed to parse>\n");
322 goto broken_combination;
323 }
324
325 nla_for_each_nested(nl_limit, tb_comb[NL80211_IFACE_COMB_LIMITS], rem_limit) {
326 bool ift_comma = false;
327
328 err = nla_parse_nested(tb_limit, MAX_NL80211_IFACE_LIMIT,
329 nl_limit, iface_limit_policy);
330 if (err || !tb_limit[NL80211_IFACE_LIMIT_TYPES]) {
331 printf("<failed to parse>\n");
332 goto broken_combination;
333 }
334
335 if (comma)
336 printf(", ");
337 comma = true;
338 printf("#{");
339
340 nla_for_each_nested(nl_mode, tb_limit[NL80211_IFACE_LIMIT_TYPES], rem_mode) {
341 printf("%s %s", ift_comma ? "," : "",
342 iftype_name(nla_type(nl_mode)));
343 ift_comma = true;
344 }
345 printf(" } <= %u", nla_get_u32(tb_limit[NL80211_IFACE_LIMIT_MAX]));
346 }
347 printf(",\n\t\t ");
348
Simon Wunderlichc5df9eb2013-02-08 18:16:21 +0100349 printf("total <= %d, #channels <= %d%s",
Johannes Berg1c5b4a82011-05-13 16:53:51 +0200350 nla_get_u32(tb_comb[NL80211_IFACE_COMB_MAXNUM]),
351 nla_get_u32(tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]),
352 tb_comb[NL80211_IFACE_COMB_STA_AP_BI_MATCH] ?
353 ", STA/AP BI must match" : "");
Simon Wunderlichc5df9eb2013-02-08 18:16:21 +0100354 if (tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS]) {
355 unsigned long widths = nla_get_u32(tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS]);
356
357 if (widths) {
358 int width;
359 bool first = true;
360
361 printf(", radar detect widths: {");
362 for (width = 0; width < 32; width++)
363 if (widths & (1 << width)) {
364 printf("%s %s",
365 first ? "":",",
366 channel_width_name(width));
367 first = false;
368 }
369 printf(" }\n");
370 }
371 }
372 printf("\n");
Johannes Berg1c5b4a82011-05-13 16:53:51 +0200373broken_combination:
374 ;
375 }
Johannes Bergf5f6f152011-06-29 13:20:31 +0200376
377 if (!have_combinations)
378 printf("\tinterface combinations are not supported\n");
Johannes Berg1c5b4a82011-05-13 16:53:51 +0200379 }
380
Johannes Berg9a4a14b2010-08-24 12:26:56 +0200381 if (tb_msg[NL80211_ATTR_SUPPORTED_COMMANDS]) {
382 printf("\tSupported commands:\n");
383 nla_for_each_nested(nl_cmd, tb_msg[NL80211_ATTR_SUPPORTED_COMMANDS], rem_cmd)
384 printf("\t\t * %s\n", command_name(nla_get_u32(nl_cmd)));
385 }
Johannes Berg6367e712008-09-05 23:01:11 +0200386
Johannes Berg9a4a14b2010-08-24 12:26:56 +0200387 if (tb_msg[NL80211_ATTR_TX_FRAME_TYPES]) {
388 printf("\tSupported TX frame types:\n");
389 nla_for_each_nested(nl_if, tb_msg[NL80211_ATTR_TX_FRAME_TYPES], rem_if) {
390 bool printed = false;
391 nla_for_each_nested(nl_ftype, nl_if, rem_ftype) {
392 if (!printed)
393 printf("\t\t * %s:", iftype_name(nla_type(nl_if)));
394 printed = true;
Johannes Berg58e34342012-03-13 09:48:23 +0100395 printf(" 0x%.2x", nla_get_u16(nl_ftype));
Johannes Berg9a4a14b2010-08-24 12:26:56 +0200396 }
397 if (printed)
398 printf("\n");
399 }
400 }
Marcel Holtmann9990c1e2009-11-14 20:10:21 +0100401
Johannes Berg9a4a14b2010-08-24 12:26:56 +0200402 if (tb_msg[NL80211_ATTR_RX_FRAME_TYPES]) {
403 printf("\tSupported RX frame types:\n");
404 nla_for_each_nested(nl_if, tb_msg[NL80211_ATTR_RX_FRAME_TYPES], rem_if) {
405 bool printed = false;
406 nla_for_each_nested(nl_ftype, nl_if, rem_ftype) {
407 if (!printed)
408 printf("\t\t * %s:", iftype_name(nla_type(nl_if)));
409 printed = true;
Johannes Berg58e34342012-03-13 09:48:23 +0100410 printf(" 0x%.2x", nla_get_u16(nl_ftype));
Johannes Berg9a4a14b2010-08-24 12:26:56 +0200411 }
412 if (printed)
413 printf("\n");
414 }
415 }
Marcel Holtmann9990c1e2009-11-14 20:10:21 +0100416
Johannes Berg3ff24562011-04-12 13:04:50 +0200417 if (tb_msg[NL80211_ATTR_SUPPORT_IBSS_RSN])
Johannes Berg83f10162011-02-24 15:11:57 +0100418 printf("\tDevice supports RSN-IBSS.\n");
Johannes Berg3ff24562011-04-12 13:04:50 +0200419
420 if (tb_msg[NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED]) {
421 struct nlattr *tb_wowlan[NUM_NL80211_WOWLAN_TRIG];
422 static struct nla_policy wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = {
423 [NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG },
424 [NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG },
425 [NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG },
Amitkumar Karwar1c8f49c2013-02-19 16:44:44 -0800426 [NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .minlen = 12 },
Johannes Berg3a6636b2011-07-12 13:08:37 +0200427 [NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED] = { .type = NLA_FLAG },
428 [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG },
429 [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG },
430 [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG },
431 [NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG },
Johannes Berg819b78c2013-02-19 23:31:27 +0100432 [NL80211_WOWLAN_TRIG_TCP_CONNECTION] = { .type = NLA_NESTED },
Johannes Berg3ff24562011-04-12 13:04:50 +0200433 };
434 struct nl80211_wowlan_pattern_support *pat;
435 int err;
436
437 err = nla_parse_nested(tb_wowlan, MAX_NL80211_WOWLAN_TRIG,
438 tb_msg[NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED],
439 wowlan_policy);
440 printf("\tWoWLAN support:");
441 if (err) {
442 printf(" <failed to parse>\n");
443 } else {
444 printf("\n");
445 if (tb_wowlan[NL80211_WOWLAN_TRIG_ANY])
Johannes Berg3a6636b2011-07-12 13:08:37 +0200446 printf("\t\t * wake up on anything (device continues operating normally)\n");
Johannes Berg3ff24562011-04-12 13:04:50 +0200447 if (tb_wowlan[NL80211_WOWLAN_TRIG_DISCONNECT])
Johannes Berg3a6636b2011-07-12 13:08:37 +0200448 printf("\t\t * wake up on disconnect\n");
Johannes Berg3ff24562011-04-12 13:04:50 +0200449 if (tb_wowlan[NL80211_WOWLAN_TRIG_MAGIC_PKT])
Johannes Berg3a6636b2011-07-12 13:08:37 +0200450 printf("\t\t * wake up on magic packet\n");
Johannes Berg3ff24562011-04-12 13:04:50 +0200451 if (tb_wowlan[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
452 pat = nla_data(tb_wowlan[NL80211_WOWLAN_TRIG_PKT_PATTERN]);
Amitkumar Karwar1c8f49c2013-02-19 16:44:44 -0800453 printf("\t\t * wake up on pattern match, up to %u patterns of %u-%u bytes,\n"
454 "\t\t maximum packet offset %u bytes\n",
455 pat->max_patterns, pat->min_pattern_len, pat->max_pattern_len,
456 (nla_len(tb_wowlan[NL80211_WOWLAN_TRIG_PKT_PATTERN]) <
457 sizeof(*pat)) ? 0 : pat->max_pkt_offset);
Johannes Berg3ff24562011-04-12 13:04:50 +0200458 }
Johannes Berg3a6636b2011-07-12 13:08:37 +0200459 if (tb_wowlan[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
460 printf("\t\t * can do GTK rekeying\n");
461 if (tb_wowlan[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE])
462 printf("\t\t * wake up on GTK rekey failure\n");
463 if (tb_wowlan[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST])
464 printf("\t\t * wake up on EAP identity request\n");
465 if (tb_wowlan[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE])
466 printf("\t\t * wake up on 4-way handshake\n");
467 if (tb_wowlan[NL80211_WOWLAN_TRIG_RFKILL_RELEASE])
468 printf("\t\t * wake up on rfkill release\n");
Johannes Berg819b78c2013-02-19 23:31:27 +0100469 if (tb_wowlan[NL80211_WOWLAN_TRIG_TCP_CONNECTION])
470 printf("\t\t * wake up on TCP connection\n");
Johannes Berg3ff24562011-04-12 13:04:50 +0200471 }
Johannes Berg83f10162011-02-24 15:11:57 +0100472 }
473
Johannes Berg2e4f65c2011-10-04 14:00:47 +0200474 if (tb_msg[NL80211_ATTR_ROAM_SUPPORT])
475 printf("\tDevice supports roaming.\n");
476
Johannes Berg8b469992011-11-04 11:53:18 +0100477 if (tb_msg[NL80211_ATTR_SUPPORT_AP_UAPSD])
478 printf("\tDevice supports AP-side u-APSD.\n");
479
Ben Greeara82abc22011-11-28 10:40:22 -0800480 if (tb_msg[NL80211_ATTR_HT_CAPABILITY_MASK]) {
481 struct ieee80211_ht_cap *cm;
482 printf("\tHT Capability overrides:\n");
483 if (nla_len(tb_msg[NL80211_ATTR_HT_CAPABILITY_MASK]) >= sizeof(*cm)) {
484 cm = nla_data(tb_msg[NL80211_ATTR_HT_CAPABILITY_MASK]);
485 printf("\t\t * MCS: %02hhx %02hhx %02hhx %02hhx %02hhx %02hhx"
486 " %02hhx %02hhx %02hhx %02hhx\n",
487 cm->mcs.rx_mask[0], cm->mcs.rx_mask[1],
488 cm->mcs.rx_mask[2], cm->mcs.rx_mask[3],
489 cm->mcs.rx_mask[4], cm->mcs.rx_mask[5],
490 cm->mcs.rx_mask[6], cm->mcs.rx_mask[7],
491 cm->mcs.rx_mask[8], cm->mcs.rx_mask[9]);
492 if (cm->cap_info & htole16(IEEE80211_HT_CAP_MAX_AMSDU))
493 printf("\t\t * maximum A-MSDU length\n");
494 if (cm->cap_info & htole16(IEEE80211_HT_CAP_SUP_WIDTH_20_40))
495 printf("\t\t * supported channel width\n");
496 if (cm->cap_info & htole16(IEEE80211_HT_CAP_SGI_40))
497 printf("\t\t * short GI for 40 MHz\n");
498 if (cm->ampdu_params_info & IEEE80211_HT_AMPDU_PARM_FACTOR)
499 printf("\t\t * max A-MPDU length exponent\n");
500 if (cm->ampdu_params_info & IEEE80211_HT_AMPDU_PARM_DENSITY)
501 printf("\t\t * min MPDU start spacing\n");
502 } else {
503 printf("\tERROR: capabilities mask is too short, expected: %d, received: %d\n",
504 (int)(sizeof(*cm)),
505 (int)(nla_len(tb_msg[NL80211_ATTR_HT_CAPABILITY_MASK])));
506 }
507 }
508
Johannes Berg632004a2011-12-14 15:08:34 +0100509 if (tb_msg[NL80211_ATTR_FEATURE_FLAGS]) {
Johannes Bergd28df6b2012-10-16 20:12:37 +0200510 unsigned int features = nla_get_u32(tb_msg[NL80211_ATTR_FEATURE_FLAGS]);
511
512 if (features & NL80211_FEATURE_SK_TX_STATUS)
Johannes Berg632004a2011-12-14 15:08:34 +0100513 printf("\tDevice supports TX status socket option.\n");
Johannes Bergd28df6b2012-10-16 20:12:37 +0200514 if (features & NL80211_FEATURE_HT_IBSS)
Johannes Berg632004a2011-12-14 15:08:34 +0100515 printf("\tDevice supports HT-IBSS.\n");
Johannes Bergd28df6b2012-10-16 20:12:37 +0200516 if (features & NL80211_FEATURE_INACTIVITY_TIMER)
517 printf("\tDevice has client inactivity timer.\n");
518 if (features & NL80211_FEATURE_CELL_BASE_REG_HINTS)
519 printf("\tDevice accepts cell base station regulatory hints.\n");
520 if (features & NL80211_FEATURE_P2P_DEVICE_NEEDS_CHANNEL)
521 printf("\tP2P Device uses a channel (of the concurrent ones)\n");
Sam Lefflerfe862232012-10-17 12:20:04 -0700522 if (features & NL80211_FEATURE_LOW_PRIORITY_SCAN)
523 printf("\tDevice supports low priority scan.\n");
524 if (features & NL80211_FEATURE_SCAN_FLUSH)
525 printf("\tDevice supports scan flush.\n");
Antonio Quartulliafa2be22012-10-26 16:41:47 +0200526 if (features & NL80211_FEATURE_AP_SCAN)
527 printf("\tDevice supports AP scan.\n");
Johannes Berg632004a2011-12-14 15:08:34 +0100528 }
529
Johannes Berg79f99b92008-01-16 00:21:59 +0100530 return NL_SKIP;
531}
532
Johannes Berg7c37a242009-04-08 13:13:28 +0200533static int handle_info(struct nl80211_state *state,
534 struct nl_cb *cb,
Johannes Bergd6316502008-09-16 17:05:33 +0200535 struct nl_msg *msg,
Johannes Berg05514f92012-07-19 11:50:50 +0200536 int argc, char **argv,
537 enum id_input id)
Johannes Berg79f99b92008-01-16 00:21:59 +0100538{
Johannes Berg79f99b92008-01-16 00:21:59 +0100539 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_phy_handler, NULL);
Johannes Bergfb70e112013-02-14 16:32:53 +0100540 /* kernels not supporting it will ignore this */
541 nla_put_flag(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
Johannes Berg79f99b92008-01-16 00:21:59 +0100542
Johannes Berg70391cc2008-09-16 18:35:06 +0200543 return 0;
Johannes Berg79f99b92008-01-16 00:21:59 +0100544}
Johannes Bergfb70e112013-02-14 16:32:53 +0100545__COMMAND(NULL, info, "info", NULL, NL80211_CMD_GET_WIPHY, NLM_F_DUMP, 0, CIB_PHY, handle_info,
Johannes Berg1633ddf2010-11-24 08:16:47 +0100546 "Show capabilities for the specified wireless device.", NULL);
Johannes Bergea35fc02009-05-05 14:56:21 +0200547TOPLEVEL(list, NULL, NL80211_CMD_GET_WIPHY, NLM_F_DUMP, CIB_NONE, handle_info,
548 "List all wireless devices and their capabilities.");
Johannes Berg01ae06f2009-05-05 14:48:16 +0200549TOPLEVEL(phy, NULL, NL80211_CMD_GET_WIPHY, NLM_F_DUMP, CIB_NONE, handle_info, NULL);
Johannes Bergbcdff0b2012-11-15 15:15:10 +0100550
551static int handle_commands(struct nl80211_state *state,
552 struct nl_cb *cb, struct nl_msg *msg,
553 int argc, char **argv, enum id_input id)
554{
555 int i;
556 for (i = 1; i < NL80211_CMD_MAX; i++)
557 printf("%d (0x%x): %s\n", i, i, command_name(i));
558 /* don't send netlink messages */
559 return 2;
560}
561TOPLEVEL(commands, NULL, NL80211_CMD_GET_WIPHY, 0, CIB_NONE, handle_commands,
562 "list all known commands and their decimal & hex value");
Johannes Bergfb70e112013-02-14 16:32:53 +0100563
564static int print_feature_handler(struct nl_msg *msg, void *arg)
565{
566 struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
567 struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
568
569 nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
570 genlmsg_attrlen(gnlh, 0), NULL);
571
572 if (tb_msg[NL80211_ATTR_PROTOCOL_FEATURES]) {
573 uint32_t feat = nla_get_u32(tb_msg[NL80211_ATTR_PROTOCOL_FEATURES]);
574
575 printf("nl80211 features: 0x%x\n", feat);
576 if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
577 printf("\t* split wiphy dump\n");
578 }
579
580 return NL_SKIP;
581}
582
583static int handle_features(struct nl80211_state *state,
584 struct nl_cb *cb, struct nl_msg *msg,
585 int argc, char **argv, enum id_input id)
586{
587 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_feature_handler, NULL);
588 return 0;
589}
590
591TOPLEVEL(features, NULL, NL80211_CMD_GET_PROTOCOL_FEATURES, 0, CIB_NONE,
592 handle_features, "");