]> git.ipfire.org Git - thirdparty/iw.git/blame - station.c
iw: add vendor command response support
[thirdparty/iw.git] / station.c
CommitLineData
2ef1be68 1#include <net/if.h>
3d1e8704 2#include <errno.h>
d5ac8ad3 3#include <string.h>
2ef1be68 4
3d1e8704
LCC
5#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>
3d1e8704 10
f408e01b 11#include "nl80211.h"
3d1e8704
LCC
12#include "iw.h"
13
4698bfc2
JB
14SECTION(station);
15
3d1e8704
LCC
16enum plink_state {
17 LISTEN,
18 OPN_SNT,
19 OPN_RCVD,
20 CNF_RCVD,
21 ESTAB,
22 HOLDING,
23 BLOCKED
24};
25
8012ad28
MP
26static void print_power_mode(struct nlattr *a)
27{
28 enum nl80211_mesh_power_mode pm = nla_get_u32(a);
29
30 switch (pm) {
31 case NL80211_MESH_POWER_ACTIVE:
32 printf("ACTIVE");
33 break;
34 case NL80211_MESH_POWER_LIGHT_SLEEP:
35 printf("LIGHT SLEEP");
36 break;
37 case NL80211_MESH_POWER_DEEP_SLEEP:
38 printf("DEEP SLEEP");
39 break;
40 default:
41 printf("UNKNOWN");
42 break;
43 }
44}
3d1e8704 45
568c7057
AE
46void parse_tid_stats(struct nlattr *tid_stats_attr)
47{
48 struct nlattr *stats_info[NL80211_TID_STATS_MAX + 1], *tidattr, *info;
49 static struct nla_policy stats_policy[NL80211_TID_STATS_MAX + 1] = {
50 [NL80211_TID_STATS_RX_MSDU] = { .type = NLA_U64 },
51 [NL80211_TID_STATS_TX_MSDU] = { .type = NLA_U64 },
52 [NL80211_TID_STATS_TX_MSDU_RETRIES] = { .type = NLA_U64 },
53 [NL80211_TID_STATS_TX_MSDU_FAILED] = { .type = NLA_U64 },
54 };
55 int rem, i = 0;
56
57 printf("\n\tMSDU:\n\t\tTID\trx\ttx\ttx retries\ttx failed");
58 nla_for_each_nested(tidattr, tid_stats_attr, rem) {
59 if (nla_parse_nested(stats_info, NL80211_TID_STATS_MAX,
60 tidattr, stats_policy)) {
61 printf("failed to parse nested stats attributes!");
62 return;
63 }
64 printf("\n\t\t%d", i++);
65 info = stats_info[NL80211_TID_STATS_RX_MSDU];
66 if (info)
67 printf("\t%llu", (unsigned long long)nla_get_u64(info));
68 info = stats_info[NL80211_TID_STATS_TX_MSDU];
69 if (info)
70 printf("\t%llu", (unsigned long long)nla_get_u64(info));
71 info = stats_info[NL80211_TID_STATS_TX_MSDU_RETRIES];
72 if (info)
73 printf("\t%llu", (unsigned long long)nla_get_u64(info));
74 info = stats_info[NL80211_TID_STATS_TX_MSDU_FAILED];
75 if (info)
76 printf("\t\t%llu", (unsigned long long)nla_get_u64(info));
77 }
78}
79
80void parse_bss_param(struct nlattr *bss_param_attr)
81{
82 struct nlattr *bss_param_info[NL80211_STA_BSS_PARAM_MAX + 1], *info;
83 static struct nla_policy bss_poilcy[NL80211_STA_BSS_PARAM_MAX + 1] = {
84 [NL80211_STA_BSS_PARAM_CTS_PROT] = { .type = NLA_FLAG },
85 [NL80211_STA_BSS_PARAM_SHORT_PREAMBLE] = { .type = NLA_FLAG },
86 [NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME] = { .type = NLA_FLAG },
87 [NL80211_STA_BSS_PARAM_DTIM_PERIOD] = { .type = NLA_U8 },
88 [NL80211_STA_BSS_PARAM_BEACON_INTERVAL] = { .type = NLA_U16 },
89 };
90
91 if (nla_parse_nested(bss_param_info, NL80211_STA_BSS_PARAM_MAX,
92 bss_param_attr, bss_poilcy)) {
93 printf("failed to parse nested bss param attributes!");
94 }
95
96 info = bss_param_info[NL80211_STA_BSS_PARAM_DTIM_PERIOD];
97 if (info)
98 printf("\n\tDTIM period:\t%u", nla_get_u8(info));
99 info = bss_param_info[NL80211_STA_BSS_PARAM_BEACON_INTERVAL];
100 if (info)
101 printf("\n\tbeacon interval:%u", nla_get_u16(info));
102 info = bss_param_info[NL80211_STA_BSS_PARAM_CTS_PROT];
103 if (info) {
104 printf("\n\tCTS protection:");
105 if (nla_get_u16(info))
106 printf("\tyes");
107 else
108 printf("\tno");
109 }
110 info = bss_param_info[NL80211_STA_BSS_PARAM_SHORT_PREAMBLE];
111 if (info) {
112 printf("\n\tshort preamble:");
113 if (nla_get_u16(info))
114 printf("\tyes");
115 else
116 printf("\tno");
117 }
118 info = bss_param_info[NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME];
119 if (info) {
120 printf("\n\tshort slot time:");
121 if (nla_get_u16(info))
122 printf("yes");
123 else
124 printf("no");
125 }
126}
127
e94f0201 128void parse_bitrate(struct nlattr *bitrate_attr, char *buf, int buflen)
64179590
JB
129{
130 int rate = 0;
131 char *pos = buf;
132 struct nlattr *rinfo[NL80211_RATE_INFO_MAX + 1];
133 static struct nla_policy rate_policy[NL80211_RATE_INFO_MAX + 1] = {
134 [NL80211_RATE_INFO_BITRATE] = { .type = NLA_U16 },
135 [NL80211_RATE_INFO_BITRATE32] = { .type = NLA_U32 },
136 [NL80211_RATE_INFO_MCS] = { .type = NLA_U8 },
137 [NL80211_RATE_INFO_40_MHZ_WIDTH] = { .type = NLA_FLAG },
138 [NL80211_RATE_INFO_SHORT_GI] = { .type = NLA_FLAG },
139 };
140
141 if (nla_parse_nested(rinfo, NL80211_RATE_INFO_MAX,
142 bitrate_attr, rate_policy)) {
143 snprintf(buf, buflen, "failed to parse nested rate attributes!");
144 return;
145 }
146
147 if (rinfo[NL80211_RATE_INFO_BITRATE32])
148 rate = nla_get_u32(rinfo[NL80211_RATE_INFO_BITRATE32]);
149 else if (rinfo[NL80211_RATE_INFO_BITRATE])
150 rate = nla_get_u16(rinfo[NL80211_RATE_INFO_BITRATE]);
151 if (rate > 0)
152 pos += snprintf(pos, buflen - (pos - buf),
153 "%d.%d MBit/s", rate / 10, rate % 10);
154
155 if (rinfo[NL80211_RATE_INFO_MCS])
156 pos += snprintf(pos, buflen - (pos - buf),
157 " MCS %d", nla_get_u8(rinfo[NL80211_RATE_INFO_MCS]));
158 if (rinfo[NL80211_RATE_INFO_VHT_MCS])
159 pos += snprintf(pos, buflen - (pos - buf),
160 " VHT-MCS %d", nla_get_u8(rinfo[NL80211_RATE_INFO_VHT_MCS]));
161 if (rinfo[NL80211_RATE_INFO_40_MHZ_WIDTH])
162 pos += snprintf(pos, buflen - (pos - buf), " 40MHz");
163 if (rinfo[NL80211_RATE_INFO_80_MHZ_WIDTH])
164 pos += snprintf(pos, buflen - (pos - buf), " 80MHz");
165 if (rinfo[NL80211_RATE_INFO_80P80_MHZ_WIDTH])
166 pos += snprintf(pos, buflen - (pos - buf), " 80P80MHz");
167 if (rinfo[NL80211_RATE_INFO_160_MHZ_WIDTH])
168 pos += snprintf(pos, buflen - (pos - buf), " 160MHz");
169 if (rinfo[NL80211_RATE_INFO_SHORT_GI])
170 pos += snprintf(pos, buflen - (pos - buf), " short GI");
171 if (rinfo[NL80211_RATE_INFO_VHT_NSS])
172 pos += snprintf(pos, buflen - (pos - buf),
173 " VHT-NSS %d", nla_get_u8(rinfo[NL80211_RATE_INFO_VHT_NSS]));
174}
175
7d23bc2d
FF
176static char *get_chain_signal(struct nlattr *attr_list)
177{
178 struct nlattr *attr;
179 static char buf[64];
180 char *cur = buf;
181 int i = 0, rem;
182 const char *prefix;
183
184 if (!attr_list)
185 return "";
186
187 nla_for_each_nested(attr, attr_list, rem) {
188 if (i++ > 0)
189 prefix = ", ";
190 else
191 prefix = "[";
192
193 cur += snprintf(cur, sizeof(buf) - (cur - buf), "%s%d", prefix,
194 (int8_t) nla_get_u8(attr));
195 }
196
197 if (i)
198 snprintf(cur, sizeof(buf) - (cur - buf), "] ");
199
200 return buf;
201}
202
3d1e8704
LCC
203static int print_sta_handler(struct nl_msg *msg, void *arg)
204{
205 struct nlattr *tb[NL80211_ATTR_MAX + 1];
206 struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
207 struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1];
208 char mac_addr[20], state_name[10], dev[20];
b638215d 209 struct nl80211_sta_flag_update *sta_flags;
3d1e8704
LCC
210 static struct nla_policy stats_policy[NL80211_STA_INFO_MAX + 1] = {
211 [NL80211_STA_INFO_INACTIVE_TIME] = { .type = NLA_U32 },
212 [NL80211_STA_INFO_RX_BYTES] = { .type = NLA_U32 },
213 [NL80211_STA_INFO_TX_BYTES] = { .type = NLA_U32 },
568c7057
AE
214 [NL80211_STA_INFO_RX_BYTES64] = { .type = NLA_U64 },
215 [NL80211_STA_INFO_TX_BYTES64] = { .type = NLA_U64 },
859677cb
JB
216 [NL80211_STA_INFO_RX_PACKETS] = { .type = NLA_U32 },
217 [NL80211_STA_INFO_TX_PACKETS] = { .type = NLA_U32 },
568c7057 218 [NL80211_STA_INFO_BEACON_RX] = { .type = NLA_U64},
9cd3f1c1 219 [NL80211_STA_INFO_SIGNAL] = { .type = NLA_U8 },
ea3ade85 220 [NL80211_STA_INFO_T_OFFSET] = { .type = NLA_U64 },
9cd3f1c1 221 [NL80211_STA_INFO_TX_BITRATE] = { .type = NLA_NESTED },
e94f0201 222 [NL80211_STA_INFO_RX_BITRATE] = { .type = NLA_NESTED },
3d1e8704
LCC
223 [NL80211_STA_INFO_LLID] = { .type = NLA_U16 },
224 [NL80211_STA_INFO_PLID] = { .type = NLA_U16 },
225 [NL80211_STA_INFO_PLINK_STATE] = { .type = NLA_U8 },
0f5868ee
BR
226 [NL80211_STA_INFO_TX_RETRIES] = { .type = NLA_U32 },
227 [NL80211_STA_INFO_TX_FAILED] = { .type = NLA_U32 },
568c7057
AE
228 [NL80211_STA_INFO_BEACON_LOSS] = { .type = NLA_U32},
229 [NL80211_STA_INFO_RX_DROP_MISC] = { .type = NLA_U64},
b638215d
HS
230 [NL80211_STA_INFO_STA_FLAGS] =
231 { .minlen = sizeof(struct nl80211_sta_flag_update) },
8012ad28
MP
232 [NL80211_STA_INFO_LOCAL_PM] = { .type = NLA_U32},
233 [NL80211_STA_INFO_PEER_PM] = { .type = NLA_U32},
234 [NL80211_STA_INFO_NONPEER_PM] = { .type = NLA_U32},
7d23bc2d
FF
235 [NL80211_STA_INFO_CHAIN_SIGNAL] = { .type = NLA_NESTED },
236 [NL80211_STA_INFO_CHAIN_SIGNAL_AVG] = { .type = NLA_NESTED },
568c7057
AE
237 [NL80211_STA_INFO_TID_STATS] = { .type = NLA_NESTED },
238 [NL80211_STA_INFO_BSS_PARAM] = { .type = NLA_NESTED },
045c1c6f 239 [NL80211_STA_INFO_RX_DURATION] = { .type = NLA_U64 },
3d1e8704 240 };
7d23bc2d 241 char *chain;
3d1e8704
LCC
242
243 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
244 genlmsg_attrlen(gnlh, 0), NULL);
245
246 /*
247 * TODO: validate the interface and mac address!
248 * Otherwise, there's a race condition as soon as
249 * the kernel starts sending station notifications.
250 */
251
252 if (!tb[NL80211_ATTR_STA_INFO]) {
5fe70c0e 253 fprintf(stderr, "sta stats missing!\n");
3d1e8704
LCC
254 return NL_SKIP;
255 }
256 if (nla_parse_nested(sinfo, NL80211_STA_INFO_MAX,
257 tb[NL80211_ATTR_STA_INFO],
258 stats_policy)) {
5fe70c0e 259 fprintf(stderr, "failed to parse nested attributes!\n");
3d1e8704
LCC
260 return NL_SKIP;
261 }
262
263 mac_addr_n2a(mac_addr, nla_data(tb[NL80211_ATTR_MAC]));
264 if_indextoname(nla_get_u32(tb[NL80211_ATTR_IFINDEX]), dev);
fbb181fa 265 printf("Station %s (on %s)", mac_addr, dev);
3d1e8704
LCC
266
267 if (sinfo[NL80211_STA_INFO_INACTIVE_TIME])
f5c9799c 268 printf("\n\tinactive time:\t%u ms",
3d1e8704 269 nla_get_u32(sinfo[NL80211_STA_INFO_INACTIVE_TIME]));
568c7057
AE
270 if (sinfo[NL80211_STA_INFO_RX_BYTES64])
271 printf("\n\trx bytes:\t%llu",
272 (unsigned long long)nla_get_u64(sinfo[NL80211_STA_INFO_RX_BYTES64]));
273 else if (sinfo[NL80211_STA_INFO_RX_BYTES])
f5c9799c 274 printf("\n\trx bytes:\t%u",
568c7057 275 nla_get_u32(sinfo[NL80211_STA_INFO_RX_BYTES]));
859677cb 276 if (sinfo[NL80211_STA_INFO_RX_PACKETS])
f5c9799c 277 printf("\n\trx packets:\t%u",
859677cb 278 nla_get_u32(sinfo[NL80211_STA_INFO_RX_PACKETS]));
568c7057
AE
279 if (sinfo[NL80211_STA_INFO_TX_BYTES64])
280 printf("\n\ttx bytes:\t%llu",
281 (unsigned long long)nla_get_u64(sinfo[NL80211_STA_INFO_TX_BYTES64]));
282 else if (sinfo[NL80211_STA_INFO_TX_BYTES])
f5c9799c 283 printf("\n\ttx bytes:\t%u",
568c7057 284 nla_get_u32(sinfo[NL80211_STA_INFO_TX_BYTES]));
859677cb 285 if (sinfo[NL80211_STA_INFO_TX_PACKETS])
f5c9799c 286 printf("\n\ttx packets:\t%u",
859677cb 287 nla_get_u32(sinfo[NL80211_STA_INFO_TX_PACKETS]));
0f5868ee
BR
288 if (sinfo[NL80211_STA_INFO_TX_RETRIES])
289 printf("\n\ttx retries:\t%u",
290 nla_get_u32(sinfo[NL80211_STA_INFO_TX_RETRIES]));
291 if (sinfo[NL80211_STA_INFO_TX_FAILED])
292 printf("\n\ttx failed:\t%u",
293 nla_get_u32(sinfo[NL80211_STA_INFO_TX_FAILED]));
568c7057
AE
294 if (sinfo[NL80211_STA_INFO_BEACON_LOSS])
295 printf("\n\tbeacon loss:\t%u",
296 nla_get_u32(sinfo[NL80211_STA_INFO_BEACON_LOSS]));
297 if (sinfo[NL80211_STA_INFO_BEACON_RX])
298 printf("\n\tbeacon rx:\t%llu",
299 (unsigned long long)nla_get_u64(sinfo[NL80211_STA_INFO_BEACON_RX]));
300 if (sinfo[NL80211_STA_INFO_RX_DROP_MISC])
301 printf("\n\trx drop misc:\t%llu",
302 (unsigned long long)nla_get_u64(sinfo[NL80211_STA_INFO_RX_DROP_MISC]));
7d23bc2d
FF
303
304 chain = get_chain_signal(sinfo[NL80211_STA_INFO_CHAIN_SIGNAL]);
9cd3f1c1 305 if (sinfo[NL80211_STA_INFO_SIGNAL])
7d23bc2d
FF
306 printf("\n\tsignal: \t%d %sdBm",
307 (int8_t)nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL]),
308 chain);
309
310 chain = get_chain_signal(sinfo[NL80211_STA_INFO_CHAIN_SIGNAL_AVG]);
ba292ae9 311 if (sinfo[NL80211_STA_INFO_SIGNAL_AVG])
7d23bc2d
FF
312 printf("\n\tsignal avg:\t%d %sdBm",
313 (int8_t)nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL_AVG]),
314 chain);
315
568c7057
AE
316 if (sinfo[NL80211_STA_INFO_BEACON_SIGNAL_AVG])
317 printf("\n\tbeacon signal avg:\t%d dBm",
318 nla_get_u8(sinfo[NL80211_STA_INFO_BEACON_SIGNAL_AVG]));
ea3ade85 319 if (sinfo[NL80211_STA_INFO_T_OFFSET])
568c7057
AE
320 printf("\n\tToffset:\t%llu us",
321 (unsigned long long)nla_get_u64(sinfo[NL80211_STA_INFO_T_OFFSET]));
9cd3f1c1
HR
322
323 if (sinfo[NL80211_STA_INFO_TX_BITRATE]) {
64179590
JB
324 char buf[100];
325
e94f0201 326 parse_bitrate(sinfo[NL80211_STA_INFO_TX_BITRATE], buf, sizeof(buf));
64179590 327 printf("\n\ttx bitrate:\t%s", buf);
9cd3f1c1
HR
328 }
329
e94f0201
FF
330 if (sinfo[NL80211_STA_INFO_RX_BITRATE]) {
331 char buf[100];
332
333 parse_bitrate(sinfo[NL80211_STA_INFO_RX_BITRATE], buf, sizeof(buf));
334 printf("\n\trx bitrate:\t%s", buf);
335 }
336
045c1c6f
MSS
337 if (sinfo[NL80211_STA_INFO_RX_DURATION])
338 printf("\n\trx duration:\t%lld us",
339 (unsigned long long)nla_get_u64(sinfo[NL80211_STA_INFO_RX_DURATION]));
340
cf8a2aab
AQ
341 if (sinfo[NL80211_STA_INFO_EXPECTED_THROUGHPUT]) {
342 uint32_t thr;
343
344 thr = nla_get_u32(sinfo[NL80211_STA_INFO_EXPECTED_THROUGHPUT]);
345 /* convert in Mbps but scale by 1000 to save kbps units */
346 thr = thr * 1000 / 1024;
347
348 printf("\n\texpected throughput:\t%u.%uMbps",
349 thr / 1000, thr % 1000);
350 }
351
3d1e8704 352 if (sinfo[NL80211_STA_INFO_LLID])
fbb181fa 353 printf("\n\tmesh llid:\t%d",
3d1e8704
LCC
354 nla_get_u16(sinfo[NL80211_STA_INFO_LLID]));
355 if (sinfo[NL80211_STA_INFO_PLID])
fbb181fa 356 printf("\n\tmesh plid:\t%d",
3d1e8704
LCC
357 nla_get_u16(sinfo[NL80211_STA_INFO_PLID]));
358 if (sinfo[NL80211_STA_INFO_PLINK_STATE]) {
dbaabba1 359 switch (nla_get_u8(sinfo[NL80211_STA_INFO_PLINK_STATE])) {
3d1e8704
LCC
360 case LISTEN:
361 strcpy(state_name, "LISTEN");
362 break;
363 case OPN_SNT:
364 strcpy(state_name, "OPN_SNT");
365 break;
366 case OPN_RCVD:
367 strcpy(state_name, "OPN_RCVD");
368 break;
369 case CNF_RCVD:
370 strcpy(state_name, "CNF_RCVD");
371 break;
372 case ESTAB:
373 strcpy(state_name, "ESTAB");
374 break;
375 case HOLDING:
376 strcpy(state_name, "HOLDING");
377 break;
378 case BLOCKED:
379 strcpy(state_name, "BLOCKED");
380 break;
381 default:
382 strcpy(state_name, "UNKNOWN");
383 break;
384 }
fbb181fa 385 printf("\n\tmesh plink:\t%s", state_name);
3d1e8704 386 }
8012ad28
MP
387 if (sinfo[NL80211_STA_INFO_LOCAL_PM]) {
388 printf("\n\tmesh local PS mode:\t");
389 print_power_mode(sinfo[NL80211_STA_INFO_LOCAL_PM]);
390 }
391 if (sinfo[NL80211_STA_INFO_PEER_PM]) {
392 printf("\n\tmesh peer PS mode:\t");
393 print_power_mode(sinfo[NL80211_STA_INFO_PEER_PM]);
394 }
395 if (sinfo[NL80211_STA_INFO_NONPEER_PM]) {
396 printf("\n\tmesh non-peer PS mode:\t");
397 print_power_mode(sinfo[NL80211_STA_INFO_NONPEER_PM]);
398 }
3d1e8704 399
b638215d
HS
400 if (sinfo[NL80211_STA_INFO_STA_FLAGS]) {
401 sta_flags = (struct nl80211_sta_flag_update *)
402 nla_data(sinfo[NL80211_STA_INFO_STA_FLAGS]);
403
404 if (sta_flags->mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
405 printf("\n\tauthorized:\t");
406 if (sta_flags->set & BIT(NL80211_STA_FLAG_AUTHORIZED))
407 printf("yes");
408 else
409 printf("no");
410 }
411
412 if (sta_flags->mask & BIT(NL80211_STA_FLAG_AUTHENTICATED)) {
413 printf("\n\tauthenticated:\t");
414 if (sta_flags->set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
415 printf("yes");
416 else
417 printf("no");
418 }
419
568c7057
AE
420 if (sta_flags->mask & BIT(NL80211_STA_FLAG_ASSOCIATED)) {
421 printf("\n\tassociated:\t");
422 if (sta_flags->set & BIT(NL80211_STA_FLAG_ASSOCIATED))
423 printf("yes");
424 else
425 printf("no");
426 }
427
b638215d
HS
428 if (sta_flags->mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
429 printf("\n\tpreamble:\t");
430 if (sta_flags->set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
431 printf("short");
432 else
433 printf("long");
434 }
435
436 if (sta_flags->mask & BIT(NL80211_STA_FLAG_WME)) {
437 printf("\n\tWMM/WME:\t");
438 if (sta_flags->set & BIT(NL80211_STA_FLAG_WME))
439 printf("yes");
440 else
441 printf("no");
442 }
443
444 if (sta_flags->mask & BIT(NL80211_STA_FLAG_MFP)) {
445 printf("\n\tMFP:\t\t");
446 if (sta_flags->set & BIT(NL80211_STA_FLAG_MFP))
447 printf("yes");
448 else
449 printf("no");
450 }
451
452 if (sta_flags->mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
1a463ae3 453 printf("\n\tTDLS peer:\t");
b638215d
HS
454 if (sta_flags->set & BIT(NL80211_STA_FLAG_TDLS_PEER))
455 printf("yes");
456 else
457 printf("no");
458 }
459 }
460
568c7057
AE
461 if (sinfo[NL80211_STA_INFO_TID_STATS] && arg != NULL &&
462 !strcmp((char *)arg, "-v"))
463 parse_tid_stats(sinfo[NL80211_STA_INFO_TID_STATS]);
464 if (sinfo[NL80211_STA_INFO_BSS_PARAM])
465 parse_bss_param(sinfo[NL80211_STA_INFO_BSS_PARAM]);
087d778f
AN
466 if (sinfo[NL80211_STA_INFO_CONNECTED_TIME])
467 printf("\n\tconnected time:\t%u seconds",
468 nla_get_u32(sinfo[NL80211_STA_INFO_CONNECTED_TIME]));
469
3d1e8704
LCC
470 printf("\n");
471 return NL_SKIP;
472}
473
7c37a24d 474static int handle_station_get(struct nl80211_state *state,
b1ca19a8 475 struct nl_msg *msg,
05514f95
JB
476 int argc, char **argv,
477 enum id_input id)
3d1e8704 478{
3d1e8704
LCC
479 unsigned char mac_addr[ETH_ALEN];
480
b1ca19a8 481 if (argc < 1)
5e75fd04 482 return 1;
3d1e8704
LCC
483
484 if (mac_addr_a2n(mac_addr, argv[0])) {
485 fprintf(stderr, "invalid mac address\n");
5e75fd04 486 return 2;
3d1e8704
LCC
487 }
488
489 argc--;
490 argv++;
491
b1ca19a8 492 if (argc)
5e75fd04 493 return 1;
3d1e8704
LCC
494
495 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr);
3d1e8704 496
34b23014 497 register_handler(print_sta_handler, NULL);
3d1e8704 498
70391ccf 499 return 0;
3d1e8704 500 nla_put_failure:
70391ccf 501 return -ENOBUFS;
3d1e8704 502}
b1ca19a8 503COMMAND(station, get, "<MAC address>",
70cf4544
JB
504 NL80211_CMD_GET_STATION, 0, CIB_NETDEV, handle_station_get,
505 "Get information for a specific station.");
b1ca19a8 506COMMAND(station, del, "<MAC address>",
70cf4544
JB
507 NL80211_CMD_DEL_STATION, 0, CIB_NETDEV, handle_station_get,
508 "Remove the given station entry (use with caution!)");
3d1e8704 509
1633ddf7
JB
510static const struct cmd *station_set_plink;
511static const struct cmd *station_set_vlan;
8012ad28 512static const struct cmd *station_set_mesh_power_mode;
1633ddf7
JB
513
514static const struct cmd *select_station_cmd(int argc, char **argv)
515{
516 if (argc < 2)
517 return NULL;
518 if (strcmp(argv[1], "plink_action") == 0)
519 return station_set_plink;
520 if (strcmp(argv[1], "vlan") == 0)
521 return station_set_vlan;
8012ad28
MP
522 if (strcmp(argv[1], "mesh_power_mode") == 0)
523 return station_set_mesh_power_mode;
1633ddf7
JB
524 return NULL;
525}
526
ce0fc33a 527static int handle_station_set_plink(struct nl80211_state *state,
b1ca19a8 528 struct nl_msg *msg,
05514f95
JB
529 int argc, char **argv,
530 enum id_input id)
3d1e8704 531{
3d1e8704
LCC
532 unsigned char plink_action;
533 unsigned char mac_addr[ETH_ALEN];
534
b1ca19a8 535 if (argc < 3)
5e75fd04 536 return 1;
3d1e8704
LCC
537
538 if (mac_addr_a2n(mac_addr, argv[0])) {
539 fprintf(stderr, "invalid mac address\n");
5e75fd04 540 return 2;
3d1e8704
LCC
541 }
542 argc--;
543 argv++;
544
b1ca19a8
JB
545 if (strcmp("plink_action", argv[0]) != 0)
546 return 1;
3d1e8704
LCC
547 argc--;
548 argv++;
549
550 if (strcmp("open", argv[0]) == 0)
ac38f8ad 551 plink_action = NL80211_PLINK_ACTION_OPEN;
3d1e8704 552 else if (strcmp("block", argv[0]) == 0)
ac38f8ad 553 plink_action = NL80211_PLINK_ACTION_BLOCK;
3d1e8704
LCC
554 else {
555 fprintf(stderr, "plink action not supported\n");
5e75fd04 556 return 2;
3d1e8704
LCC
557 }
558 argc--;
559 argv++;
560
b1ca19a8 561 if (argc)
5e75fd04 562 return 1;
3d1e8704
LCC
563
564 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr);
3d1e8704
LCC
565 NLA_PUT_U8(msg, NL80211_ATTR_STA_PLINK_ACTION, plink_action);
566
70391ccf 567 return 0;
3d1e8704 568 nla_put_failure:
70391ccf 569 return -ENOBUFS;
3d1e8704 570}
1633ddf7 571COMMAND_ALIAS(station, set, "<MAC address> plink_action <open|block>",
ce0fc33a 572 NL80211_CMD_SET_STATION, 0, CIB_NETDEV, handle_station_set_plink,
1633ddf7
JB
573 "Set mesh peer link action for this station (peer).",
574 select_station_cmd, station_set_plink);
b1ca19a8 575
ce0fc33a 576static int handle_station_set_vlan(struct nl80211_state *state,
05514f95
JB
577 struct nl_msg *msg,
578 int argc, char **argv,
579 enum id_input id)
ce0fc33a
FF
580{
581 unsigned char mac_addr[ETH_ALEN];
582 unsigned long sta_vlan = 0;
583 char *err = NULL;
584
585 if (argc < 3)
586 return 1;
587
588 if (mac_addr_a2n(mac_addr, argv[0])) {
589 fprintf(stderr, "invalid mac address\n");
590 return 2;
591 }
592 argc--;
593 argv++;
594
595 if (strcmp("vlan", argv[0]) != 0)
596 return 1;
597 argc--;
598 argv++;
599
600 sta_vlan = strtoul(argv[0], &err, 0);
601 if (err && *err) {
602 fprintf(stderr, "invalid vlan id\n");
603 return 2;
604 }
605 argc--;
606 argv++;
607
608 if (argc)
609 return 1;
610
611 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr);
612 NLA_PUT_U32(msg, NL80211_ATTR_STA_VLAN, sta_vlan);
613
614 return 0;
615 nla_put_failure:
616 return -ENOBUFS;
617}
1633ddf7 618COMMAND_ALIAS(station, set, "<MAC address> vlan <ifindex>",
ce0fc33a 619 NL80211_CMD_SET_STATION, 0, CIB_NETDEV, handle_station_set_vlan,
1633ddf7
JB
620 "Set an AP VLAN for this station.",
621 select_station_cmd, station_set_vlan);
ce0fc33a 622
8012ad28 623static int handle_station_set_mesh_power_mode(struct nl80211_state *state,
8012ad28
MP
624 struct nl_msg *msg,
625 int argc, char **argv,
626 enum id_input id)
627{
628 unsigned char mesh_power_mode;
629 unsigned char mac_addr[ETH_ALEN];
630
631 if (argc < 3)
632 return 1;
633
634 if (mac_addr_a2n(mac_addr, argv[0])) {
635 fprintf(stderr, "invalid mac address\n");
636 return 2;
637 }
638 argc--;
639 argv++;
640
641 if (strcmp("mesh_power_mode", argv[0]) != 0)
642 return 1;
643 argc--;
644 argv++;
645
646 if (strcmp("active", argv[0]) == 0)
647 mesh_power_mode = NL80211_MESH_POWER_ACTIVE;
648 else if (strcmp("light", argv[0]) == 0)
649 mesh_power_mode = NL80211_MESH_POWER_LIGHT_SLEEP;
650 else if (strcmp("deep", argv[0]) == 0)
651 mesh_power_mode = NL80211_MESH_POWER_DEEP_SLEEP;
652 else {
653 fprintf(stderr, "unknown mesh power mode\n");
654 return 2;
655 }
656 argc--;
657 argv++;
658
659 if (argc)
660 return 1;
661
662 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr);
663 NLA_PUT_U32(msg, NL80211_ATTR_LOCAL_MESH_POWER_MODE, mesh_power_mode);
664
665 return 0;
666nla_put_failure:
667 return -ENOBUFS;
668}
669COMMAND_ALIAS(station, set, "<MAC address> mesh_power_mode "
670 "<active|light|deep>", NL80211_CMD_SET_STATION, 0, CIB_NETDEV,
671 handle_station_set_mesh_power_mode,
672 "Set link-specific mesh power mode for this station",
673 select_station_cmd, station_set_mesh_power_mode);
ce0fc33a 674
7c37a24d 675static int handle_station_dump(struct nl80211_state *state,
b1ca19a8 676 struct nl_msg *msg,
05514f95
JB
677 int argc, char **argv,
678 enum id_input id)
3d1e8704 679{
568c7057 680 register_handler(print_sta_handler, *argv);
70391ccf 681 return 0;
3d1e8704 682}
568c7057 683COMMAND(station, dump, "[-v]",
70cf4544
JB
684 NL80211_CMD_GET_STATION, NLM_F_DUMP, CIB_NETDEV, handle_station_dump,
685 "List all stations known, e.g. the AP on managed interfaces");