]> git.ipfire.org Git - thirdparty/iw.git/blame - util.c
iw: share mimumum ampdu spacing and maximum ampdu length prints
[thirdparty/iw.git] / util.c
CommitLineData
748f8489 1#include <ctype.h>
51e9bd80
JB
2#include <netlink/attr.h>
3#include <errno.h>
4#include <stdbool.h>
3d1e8704 5#include "iw.h"
f5f7b1d0 6#include "nl80211.h"
3d1e8704 7
febeb0c0 8void mac_addr_n2a(char *mac_addr, unsigned char *arg)
3d1e8704 9{
53e5ce7a 10 int i, l;
3d1e8704
LCC
11
12 l = 0;
13 for (i = 0; i < ETH_ALEN ; i++) {
14 if (i == 0) {
53e5ce7a 15 sprintf(mac_addr+l, "%02x", arg[i]);
3d1e8704
LCC
16 l += 2;
17 } else {
53e5ce7a 18 sprintf(mac_addr+l, ":%02x", arg[i]);
3d1e8704
LCC
19 l += 3;
20 }
21 }
3d1e8704
LCC
22}
23
24int mac_addr_a2n(unsigned char *mac_addr, char *arg)
25{
26 int i;
27
28 for (i = 0; i < ETH_ALEN ; i++) {
29 int temp;
30 char *cp = strchr(arg, ':');
31 if (cp) {
32 *cp = 0;
33 cp++;
34 }
35 if (sscanf(arg, "%x", &temp) != 1)
36 return -1;
37 if (temp < 0 || temp > 255)
38 return -1;
39
40 mac_addr[i] = temp;
41 if (!cp)
42 break;
43 arg = cp;
44 }
45 if (i < ETH_ALEN - 1)
46 return -1;
47
48 return 0;
49}
541ef425
JB
50
51static const char *ifmodes[NL80211_IFTYPE_MAX + 1] = {
52 "unspecified",
53 "IBSS",
34e78ed0 54 "managed",
541ef425 55 "AP",
34e78ed0 56 "AP/VLAN",
541ef425 57 "WDS",
34e78ed0 58 "monitor",
541ef425
JB
59 "mesh point"
60};
61
62static char modebuf[100];
63
64const char *iftype_name(enum nl80211_iftype iftype)
65{
66 if (iftype <= NL80211_IFTYPE_MAX)
67 return ifmodes[iftype];
68 sprintf(modebuf, "Unknown mode (%d)", iftype);
69 return modebuf;
70}
379f8397 71
9990c1e9
MH
72static const char *commands[NL80211_CMD_MAX + 1] = {
73 "unspecified",
74 "get_wiphy",
75 "set_wiphy",
76 "new_wiphy",
77 "del_wiphy",
78 "get_interface",
79 "set_interface",
80 "new_interface",
81 "del_interface",
82 "get_key",
83 "set_key",
84 "new_key",
85 "del_key",
86 "get_beacon",
87 "set_beacon",
88 "new_beacon",
89 "del_beacon",
90 "get_station",
91 "set_station",
92 "new_station",
93 "del_station",
94 "get_mpath",
95 "set_mpath",
96 "new_mpath",
97 "del_mpath",
98 "set_bss",
99 "set_reg",
100 "reg_set_reg",
101 "get_mesh_params",
102 "set_mesh_params",
103 "set_mgmt_extra_ie",
104 "get_reg",
105 "get_scan",
106 "trigger_scan",
107 "new_scan_results",
108 "scan_aborted",
109 "reg_change",
110 "authenticate",
111 "associate",
112 "deauthenticate",
113 "disassociate",
114 "michael_mic_failure",
115 "reg_beacon_hint",
116 "join_ibss",
117 "leave_ibss",
118 "testmode",
119 "connect",
120 "roam",
121 "disconnect",
122 "set_wiphy_netns"
123};
124
125static char cmdbuf[100];
126
127const char *command_name(enum nl80211_commands cmd)
128{
129 if (cmd <= NL80211_CMD_MAX)
130 return commands[cmd];
131 sprintf(cmdbuf, "Unknown command (%d)", cmd);
132 return cmdbuf;
133}
134
379f8397
JB
135int ieee80211_channel_to_frequency(int chan)
136{
137 if (chan < 14)
138 return 2407 + chan * 5;
139
140 if (chan == 14)
141 return 2484;
142
143 /* FIXME: dot11ChannelStartingFactor (802.11-2007 17.3.8.3.2) */
144 return (chan + 1000) * 5;
145}
146
147int ieee80211_frequency_to_channel(int freq)
148{
149 if (freq == 2484)
150 return 14;
151
152 if (freq < 2484)
153 return (freq - 2407) / 5;
154
155 /* FIXME: dot11ChannelStartingFactor (802.11-2007 17.3.8.3.2) */
156 return freq/5 - 1000;
157}
748f8489
JB
158
159void print_ssid_escaped(const uint8_t len, const uint8_t *data)
160{
161 int i;
162
163 for (i = 0; i < len; i++) {
164 if (isprint(data[i]))
165 printf("%c", data[i]);
166 else
167 printf("\\x%.2x", data[i]);
168 }
169}
51e9bd80
JB
170
171static int hex2num(char digit)
172{
173 if (!isxdigit(digit))
174 return -1;
175 if (isdigit(digit))
176 return digit - '0';
177 return tolower(digit) - 'a' + 10;
178}
179
180static int hex2byte(char *hex)
181{
182 int d1, d2;
183
184 d1 = hex2num(hex[0]);
185 if (d1 < 0)
186 return -1;
187 d2 = hex2num(hex[1]);
188 if (d2 < 0)
189 return -1;
190 return (d1 << 4) | d2;
191}
192
193static char *hex2bin(char *hex, char *buf)
194{
195 char *result = buf;
196 int d;
197
198 while (hex[0]) {
199 d = hex2byte(hex);
200 if (d < 0)
201 return NULL;
202 buf[0] = d;
203 buf++;
204 hex += 2;
205 }
206
207 return result;
208}
209
210int parse_keys(struct nl_msg *msg, char **argv, int argc)
211{
212 struct nlattr *keys;
213 int i = 0;
041581ce 214 bool have_default = false;
51e9bd80
JB
215 char keybuf[13];
216
217 if (!argc)
218 return 1;
219
220 NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
221
222 keys = nla_nest_start(msg, NL80211_ATTR_KEYS);
223 if (!keys)
224 return -ENOBUFS;
225
226 do {
227 char *arg = *argv;
228 int pos = 0, keylen;
229 struct nlattr *key = nla_nest_start(msg, ++i);
230 char *keydata;
231
232 if (!key)
233 return -ENOBUFS;
234
235 if (arg[pos] == 'd') {
236 NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
237 pos++;
238 if (arg[pos] == ':')
239 pos++;
041581ce 240 have_default = true;
51e9bd80
JB
241 }
242
243 if (!isdigit(arg[pos]))
244 goto explain;
245 NLA_PUT_U8(msg, NL80211_KEY_IDX, arg[pos++] - '0');
246 if (arg[pos++] != ':')
247 goto explain;
248 keydata = arg + pos;
249 switch (strlen(keydata)) {
250 case 10:
251 keydata = hex2bin(keydata, keybuf);
252 case 5:
253 NLA_PUT_U32(msg, NL80211_KEY_CIPHER, 0x000FAC01);
254 keylen = 5;
255 break;
256 case 26:
257 keydata = hex2bin(keydata, keybuf);
258 case 13:
259 NLA_PUT_U32(msg, NL80211_KEY_CIPHER, 0x000FAC05);
260 keylen = 13;
261 break;
262 default:
263 goto explain;
264 }
265
266 if (!keydata)
267 goto explain;
268
269 NLA_PUT(msg, NL80211_KEY_DATA, keylen, keydata);
270
51e9bd80
JB
271 argv++;
272 argc--;
041581ce
JB
273
274 /* one key should be TX key */
275 if (!have_default && !argc)
276 NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
277
278 nla_nest_end(msg, key);
51e9bd80
JB
279 } while (argc);
280
281 nla_nest_end(msg, keys);
282
283 return 0;
284 nla_put_failure:
285 return -ENOBUFS;
286 explain:
287 fprintf(stderr, "key must be [d:]index:data where\n"
288 " 'd:' means default (transmit) key\n"
289 " 'index:' is a single digit (0-3)\n"
290 " 'data' must be 5 or 13 ascii chars\n"
291 " or 10 or 26 hex digits\n"
292 "for example: d:2:6162636465 is the same as d:2:abcde\n");
293 return 2;
294}
deb3501c
LR
295
296void print_mcs_set(const uint8_t *data)
297{
298 unsigned int i;
299
300 for (i = 15; i != 0; i--) {
301 printf(" %.2x", data[i]);
302 }
303}
0950993f
LR
304
305/*
306 * There are only 4 possible values, we just use a case instead of computing it,
307 * but technically this can also be computed through the formula:
308 *
309 * Max AMPDU length = (2 ^ (13 + exponent)) - 1 bytes
310 */
311static __u32 compute_ampdu_length(__u8 exponent)
312{
313 switch (exponent) {
314 case 0: return 8191; /* (2 ^(13 + 0)) -1 */
315 case 1: return 16383; /* (2 ^(13 + 1)) -1 */
316 case 2: return 32767; /* (2 ^(13 + 2)) -1 */
317 case 3: return 65535; /* (2 ^(13 + 3)) -1 */
318 default: return 0;
319 }
320}
321
322static const char *print_ampdu_space(__u8 space)
323{
324 switch (space) {
325 case 0: return "No restriction";
326 case 1: return "1/4 usec";
327 case 2: return "1/2 usec";
328 case 3: return "1 usec";
329 case 4: return "2 usec";
330 case 5: return "4 usec";
331 case 6: return "8 usec";
332 case 7: return "16 usec";
333 default:
334 return "Uknown";
335 }
336}
337
338void print_ampdu_length(__u8 exponent)
339{
340 __u8 max_ampdu_length;
341
342 max_ampdu_length = compute_ampdu_length(exponent);
343
344 if (max_ampdu_length) {
345 printf("\t\tMaximum RX AMPDU length %d bytes (exponent: 0x0%02x)\n",
346 max_ampdu_length, exponent);
347 } else {
348 printf("\t\tMaximum RX AMPDU length: unrecognized bytes "
349 "(exponent: %d)\n", exponent);
350 }
351}
352
353void print_ampdu_spacing(__u8 spacing)
354{
355 printf("\t\tMinimum RX AMPDU time spacing: %s (0x%02x)\n",
356 print_ampdu_space(spacing), spacing);
357}