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