]> git.ipfire.org Git - thirdparty/iw.git/blame - iw.h
update nl80211.h
[thirdparty/iw.git] / iw.h
CommitLineData
cad53b3f
JB
1#ifndef __IW_H
2#define __IW_H
3
7fabd346 4#include <stdbool.h>
45d543f0 5#include <netlink/netlink.h>
cad53b3f
JB
6#include <netlink/genl/genl.h>
7#include <netlink/genl/family.h>
8#include <netlink/genl/ctrl.h>
a82abc2c 9#include <endian.h>
cad53b3f 10
f408e01b 11#include "nl80211.h"
a82abc2c 12#include "ieee80211.h"
f408e01b 13
3d1e8704
LCC
14#define ETH_ALEN 6
15
ded667b0
YY
16/* libnl 1.x compatibility code */
17#if !defined(CONFIG_LIBNL20) && !defined(CONFIG_LIBNL30)
57077d64 18# define nl_sock nl_handle
dfd13ee5 19#endif
57077d64
PE
20
21struct nl80211_state {
22 struct nl_sock *nl_sock;
f09cee6d 23 int nl80211_id;
cad53b3f
JB
24};
25
bd396f2a
JB
26enum command_identify_by {
27 CIB_NONE,
28 CIB_PHY,
29 CIB_NETDEV,
290a3dd4 30 CIB_WDEV,
7c37a24d
JB
31};
32
33enum id_input {
34 II_NONE,
35 II_NETDEV,
36 II_PHY_NAME,
37 II_PHY_IDX,
290a3dd4 38 II_WDEV,
bd396f2a 39};
45c7212c 40
bd396f2a 41struct cmd {
bd396f2a
JB
42 const char *name;
43 const char *args;
01ae06f9 44 const char *help;
bd396f2a
JB
45 const enum nl80211_commands cmd;
46 int nl_msg_flags;
ce5af55c 47 int hidden;
bd396f2a 48 const enum command_identify_by idby;
5e75fd04
JB
49 /*
50 * The handler should return a negative error code,
51 * zero on success, 1 if the arguments were wrong
52 * and the usage message should and 2 otherwise.
53 */
7c37a24d
JB
54 int (*handler)(struct nl80211_state *state,
55 struct nl_cb *cb,
bd396f2a 56 struct nl_msg *msg,
05514f95
JB
57 int argc, char **argv,
58 enum id_input id);
1633ddf7 59 const struct cmd *(*selector)(int argc, char **argv);
4698bfc2 60 const struct cmd *parent;
bd396f2a 61};
3d1e8704 62
7d736016 63#define ARRAY_SIZE(ar) (sizeof(ar)/sizeof(ar[0]))
3ff24563 64#define DIV_ROUND_UP(x, y) (((x) + (y - 1)) / (y))
7d736016 65
1633ddf7 66#define __COMMAND(_section, _symname, _name, _args, _nlcmd, _flags, _hidden, _idby, _handler, _help, _sel)\
78bebb71 67 static struct cmd \
9b92e691
JB
68 __cmd ## _ ## _symname ## _ ## _handler ## _ ## _nlcmd ## _ ## _idby ## _ ## _hidden\
69 __attribute__((used)) __attribute__((section("__cmd"))) = { \
9b92e691
JB
70 .name = (_name), \
71 .args = (_args), \
72 .cmd = (_nlcmd), \
73 .nl_msg_flags = (_flags), \
74 .hidden = (_hidden), \
75 .idby = (_idby), \
76 .handler = (_handler), \
01ae06f9 77 .help = (_help), \
4698bfc2 78 .parent = _section, \
1633ddf7
JB
79 .selector = (_sel), \
80 }
81#define __ACMD(_section, _symname, _name, _args, _nlcmd, _flags, _hidden, _idby, _handler, _help, _sel, _alias)\
82 __COMMAND(_section, _symname, _name, _args, _nlcmd, _flags, _hidden, _idby, _handler, _help, _sel);\
83 static const struct cmd *_alias = &__cmd ## _ ## _symname ## _ ## _handler ## _ ## _nlcmd ## _ ## _idby ## _ ## _hidden
01ae06f9 84#define COMMAND(section, name, args, cmd, flags, idby, handler, help) \
1633ddf7
JB
85 __COMMAND(&(__section ## _ ## section), name, #name, args, cmd, flags, 0, idby, handler, help, NULL)
86#define COMMAND_ALIAS(section, name, args, cmd, flags, idby, handler, help, selector, alias)\
87 __ACMD(&(__section ## _ ## section), name, #name, args, cmd, flags, 0, idby, handler, help, selector, alias)
01ae06f9 88#define HIDDEN(section, name, args, cmd, flags, idby, handler) \
1633ddf7 89 __COMMAND(&(__section ## _ ## section), name, #name, args, cmd, flags, 1, idby, handler, NULL, NULL)
4698bfc2
JB
90
91#define TOPLEVEL(_name, _args, _nlcmd, _flags, _idby, _handler, _help) \
78bebb71 92 struct cmd \
4698bfc2
JB
93 __section ## _ ## _name \
94 __attribute__((used)) __attribute__((section("__cmd"))) = { \
95 .name = (#_name), \
96 .args = (_args), \
97 .cmd = (_nlcmd), \
98 .nl_msg_flags = (_flags), \
99 .idby = (_idby), \
100 .handler = (_handler), \
101 .help = (_help), \
102 }
103#define SECTION(_name) \
78bebb71 104 struct cmd __section ## _ ## _name \
4698bfc2
JB
105 __attribute__((used)) __attribute__((section("__cmd"))) = { \
106 .name = (#_name), \
107 .hidden = 1, \
108 }
109
110#define DECLARE_SECTION(_name) \
78bebb71 111 extern struct cmd __section ## _ ## _name;
14a0380d 112
133b069f 113extern const char iw_version[];
7c37a24d 114
957a0f07
JB
115extern int iw_debug;
116
7c37a24d
JB
117int handle_cmd(struct nl80211_state *state, enum id_input idby,
118 int argc, char **argv);
7fabd346
JB
119
120struct print_event_args {
981b21ad
JB
121 struct timeval ts; /* internal */
122 bool have_ts; /* must be set false */
123 bool frame, time, reltime;
7fabd346
JB
124};
125
72041aa0
JB
126__u32 listen_events(struct nl80211_state *state,
127 const int n_waits, const __u32 *waits);
ee374e4d
JB
128int __prepare_listen_events(struct nl80211_state *state);
129__u32 __do_listen_events(struct nl80211_state *state,
130 const int n_waits, const __u32 *waits,
131 struct print_event_args *args);
7c37a24d
JB
132
133
3d1e8704 134int mac_addr_a2n(unsigned char *mac_addr, char *arg);
febeb0c0 135void mac_addr_n2a(char *mac_addr, unsigned char *arg);
3ff24563
JB
136int parse_hex_mask(char *hexmask, unsigned char **result, size_t *result_len,
137 unsigned char **mask);
236d4191 138unsigned char *parse_hex(char *hex, size_t *outlen);
3d1e8704 139
51e9bd80
JB
140int parse_keys(struct nl_msg *msg, char **argv, int argc);
141
7ddfb679 142void print_ht_mcs(const __u8 *mcs);
0950993f
LR
143void print_ampdu_length(__u8 exponent);
144void print_ampdu_spacing(__u8 spacing);
357c1a5d 145void print_ht_capability(__u16 cap);
54eb1613 146void print_vht_info(__u32 capa, const __u8 *mcs);
deb3501c 147
c5df9eb6 148char *channel_width_name(enum nl80211_chan_width width);
541ef425 149const char *iftype_name(enum nl80211_iftype iftype);
9990c1e9 150const char *command_name(enum nl80211_commands cmd);
379f8397
JB
151int ieee80211_channel_to_frequency(int chan);
152int ieee80211_frequency_to_channel(int freq);
541ef425 153
748f8489
JB
154void print_ssid_escaped(const uint8_t len, const uint8_t *data);
155
57077d64 156int nl_get_multicast_id(struct nl_sock *sock, const char *family, const char *group);
2c61ba61 157
601c6ab2
LR
158char *reg_initiator_to_string(__u8 initiator);
159
27c49ed6 160const char *get_reason_str(uint16_t reason);
22c7d879 161const char *get_status_str(uint16_t status);
27c49ed6 162
febeb0c0
JB
163enum print_ie_type {
164 PRINT_SCAN,
165 PRINT_LINK,
166};
167
168#define BIT(x) (1ULL<<(x))
169
170void print_ies(unsigned char *ie, int ielen, bool unknown,
171 enum print_ie_type ptype);
172
4698bfc2
JB
173
174DECLARE_SECTION(set);
175DECLARE_SECTION(get);
176
cad53b3f 177#endif /* __IW_H */