Blame view

net/wireless/nl80211.c 93.7 KB
556829657   Johannes Berg   [NL80211]: add ne...
1
2
3
  /*
   * This is the new netlink-based wireless configuration interface.
   *
08645126d   Johannes Berg   cfg80211: impleme...
4
   * Copyright 2006-2009	Johannes Berg <johannes@sipsolutions.net>
556829657   Johannes Berg   [NL80211]: add ne...
5
6
7
8
9
   */
  
  #include <linux/if.h>
  #include <linux/module.h>
  #include <linux/err.h>
556829657   Johannes Berg   [NL80211]: add ne...
10
11
12
13
14
15
  #include <linux/list.h>
  #include <linux/if_ether.h>
  #include <linux/ieee80211.h>
  #include <linux/nl80211.h>
  #include <linux/rtnetlink.h>
  #include <linux/netlink.h>
2a5193119   Johannes Berg   cfg80211/nl80211:...
16
  #include <linux/etherdevice.h>
556829657   Johannes Berg   [NL80211]: add ne...
17
18
19
20
  #include <net/genetlink.h>
  #include <net/cfg80211.h>
  #include "core.h"
  #include "nl80211.h"
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
21
  #include "reg.h"
556829657   Johannes Berg   [NL80211]: add ne...
22
23
24
25
26
27
28
29
30
31
32
  
  /* the netlink family */
  static struct genl_family nl80211_fam = {
  	.id = GENL_ID_GENERATE,	/* don't bother with a hardcoded ID */
  	.name = "nl80211",	/* have users key off the name instead */
  	.hdrsize = 0,		/* no private header */
  	.version = 1,		/* no particular meaning now */
  	.maxattr = NL80211_ATTR_MAX,
  };
  
  /* internal helper: get drv and dev */
bba95fefb   Johannes Berg   nl80211: fix dump...
33
  static int get_drv_dev_by_info_ifindex(struct nlattr **attrs,
556829657   Johannes Berg   [NL80211]: add ne...
34
35
36
37
  				       struct cfg80211_registered_device **drv,
  				       struct net_device **dev)
  {
  	int ifindex;
bba95fefb   Johannes Berg   nl80211: fix dump...
38
  	if (!attrs[NL80211_ATTR_IFINDEX])
556829657   Johannes Berg   [NL80211]: add ne...
39
  		return -EINVAL;
bba95fefb   Johannes Berg   nl80211: fix dump...
40
  	ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
556829657   Johannes Berg   [NL80211]: add ne...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  	*dev = dev_get_by_index(&init_net, ifindex);
  	if (!*dev)
  		return -ENODEV;
  
  	*drv = cfg80211_get_dev_from_ifindex(ifindex);
  	if (IS_ERR(*drv)) {
  		dev_put(*dev);
  		return PTR_ERR(*drv);
  	}
  
  	return 0;
  }
  
  /* policy for the attributes */
  static struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] __read_mostly = {
  	[NL80211_ATTR_WIPHY] = { .type = NLA_U32 },
  	[NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING,
079e24ed8   David S. Miller   nl80211: Eliminat...
58
  				      .len = 20-1 },
318884875   Jouni Malinen   nl80211: Add TX q...
59
  	[NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED },
72bdcf343   Jouni Malinen   nl80211: Add freq...
60
  	[NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 },
094d05dc3   Sujith   mac80211: Fix HT ...
61
  	[NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 },
b9a5f8cab   Jouni Malinen   nl80211: Add set/...
62
63
64
65
  	[NL80211_ATTR_WIPHY_RETRY_SHORT] = { .type = NLA_U8 },
  	[NL80211_ATTR_WIPHY_RETRY_LONG] = { .type = NLA_U8 },
  	[NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 },
  	[NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 },
556829657   Johannes Berg   [NL80211]: add ne...
66
67
68
69
  
  	[NL80211_ATTR_IFTYPE] = { .type = NLA_U32 },
  	[NL80211_ATTR_IFINDEX] = { .type = NLA_U32 },
  	[NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 },
41ade00f2   Johannes Berg   cfg80211/nl80211:...
70
71
72
73
74
75
76
77
  
  	[NL80211_ATTR_MAC] = { .type = NLA_BINARY, .len = ETH_ALEN },
  
  	[NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY,
  				    .len = WLAN_MAX_KEY_LEN },
  	[NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 },
  	[NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 },
  	[NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG },
9f26a9522   Jouni Malinen   nl80211: Validate...
78
  	[NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 8 },
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
79
80
81
82
83
84
85
  
  	[NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 },
  	[NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 },
  	[NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY,
  				       .len = IEEE80211_MAX_DATA_LEN },
  	[NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY,
  				       .len = IEEE80211_MAX_DATA_LEN },
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
86
87
88
89
90
  	[NL80211_ATTR_STA_AID] = { .type = NLA_U16 },
  	[NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED },
  	[NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 },
  	[NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY,
  					       .len = NL80211_MAX_SUPP_RATES },
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
91
  	[NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 },
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
92
  	[NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 },
0a9542ee1   Johannes Berg   nl80211: fix moni...
93
  	[NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ },
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
94
95
96
  	[NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY,
  				.len = IEEE80211_MAX_MESH_ID_LEN },
  	[NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 },
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
97

b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
98
99
  	[NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 },
  	[NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED },
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
100
101
102
  	[NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 },
  	[NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 },
  	[NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 },
90c97a040   Jouni Malinen   nl80211: Add basi...
103
104
  	[NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY,
  					   .len = NL80211_MAX_SUPP_RATES },
36aedc903   Jouni Malinen   mac80211/cfg80211...
105

93da9cc17   colin@cozybit.com   Add nl80211 comma...
106
  	[NL80211_ATTR_MESH_PARAMS] = { .type = NLA_NESTED },
36aedc903   Jouni Malinen   mac80211/cfg80211...
107
108
  	[NL80211_ATTR_HT_CAPABILITY] = { .type = NLA_BINARY,
  					 .len = NL80211_HT_CAPABILITY_LEN },
9aed3cc12   Jouni Malinen   nl80211: New comm...
109
110
111
112
  
  	[NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 },
  	[NL80211_ATTR_IE] = { .type = NLA_BINARY,
  			      .len = IEEE80211_MAX_DATA_LEN },
2a5193119   Johannes Berg   cfg80211/nl80211:...
113
114
  	[NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED },
  	[NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED },
636a5d362   Jouni Malinen   nl80211: Add MLME...
115
116
117
118
119
  
  	[NL80211_ATTR_SSID] = { .type = NLA_BINARY,
  				.len = IEEE80211_MAX_SSID_LEN },
  	[NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 },
  	[NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 },
04a773ade   Johannes Berg   cfg80211/nl80211:...
120
  	[NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG },
1965c8533   Jouni Malinen   nl80211: Add even...
121
  	[NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG },
dc6382ced   Jouni Malinen   nl80211 : Add sup...
122
  	[NL80211_ATTR_USE_MFP] = { .type = NLA_U32 },
eccb8e8f0   Johannes Berg   nl80211: improve ...
123
124
125
  	[NL80211_ATTR_STA_FLAGS2] = {
  		.len = sizeof(struct nl80211_sta_flag_update),
  	},
3f77316c6   Jouni Malinen   nl80211: Add IEEE...
126
  	[NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG },
556829657   Johannes Berg   [NL80211]: add ne...
127
  };
f4a11bb0c   Johannes Berg   nl80211: validate...
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
  /* IE validation */
  static bool is_valid_ie_attr(const struct nlattr *attr)
  {
  	const u8 *pos;
  	int len;
  
  	if (!attr)
  		return true;
  
  	pos = nla_data(attr);
  	len = nla_len(attr);
  
  	while (len) {
  		u8 elemlen;
  
  		if (len < 2)
  			return false;
  		len -= 2;
  
  		elemlen = pos[1];
  		if (elemlen > len)
  			return false;
  
  		len -= elemlen;
  		pos += 2 + elemlen;
  	}
  
  	return true;
  }
556829657   Johannes Berg   [NL80211]: add ne...
157
158
159
160
161
162
163
  /* message building helper */
  static inline void *nl80211hdr_put(struct sk_buff *skb, u32 pid, u32 seq,
  				   int flags, u8 cmd)
  {
  	/* since there is no private header just add the generic one */
  	return genlmsg_put(skb, pid, seq, &nl80211_fam, flags, cmd);
  }
5dab3b8a6   Luis R. Rodriguez   cfg80211: add net...
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  static int nl80211_msg_put_channel(struct sk_buff *msg,
  				   struct ieee80211_channel *chan)
  {
  	NLA_PUT_U32(msg, NL80211_FREQUENCY_ATTR_FREQ,
  		    chan->center_freq);
  
  	if (chan->flags & IEEE80211_CHAN_DISABLED)
  		NLA_PUT_FLAG(msg, NL80211_FREQUENCY_ATTR_DISABLED);
  	if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN)
  		NLA_PUT_FLAG(msg, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN);
  	if (chan->flags & IEEE80211_CHAN_NO_IBSS)
  		NLA_PUT_FLAG(msg, NL80211_FREQUENCY_ATTR_NO_IBSS);
  	if (chan->flags & IEEE80211_CHAN_RADAR)
  		NLA_PUT_FLAG(msg, NL80211_FREQUENCY_ATTR_RADAR);
  
  	NLA_PUT_U32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
  		    DBM_TO_MBM(chan->max_power));
  
  	return 0;
  
   nla_put_failure:
  	return -ENOBUFS;
  }
556829657   Johannes Berg   [NL80211]: add ne...
187
188
189
190
191
192
  /* netlink command implementations */
  
  static int nl80211_send_wiphy(struct sk_buff *msg, u32 pid, u32 seq, int flags,
  			      struct cfg80211_registered_device *dev)
  {
  	void *hdr;
ee688b000   Johannes Berg   nl80211: export h...
193
194
195
  	struct nlattr *nl_bands, *nl_band;
  	struct nlattr *nl_freqs, *nl_freq;
  	struct nlattr *nl_rates, *nl_rate;
f59ac0481   Luis R. Rodriguez   cfg80211: keep tr...
196
  	struct nlattr *nl_modes;
8fdc621dc   Johannes Berg   nl80211: export s...
197
  	struct nlattr *nl_cmds;
ee688b000   Johannes Berg   nl80211: export h...
198
199
200
201
  	enum ieee80211_band band;
  	struct ieee80211_channel *chan;
  	struct ieee80211_rate *rate;
  	int i;
f59ac0481   Luis R. Rodriguez   cfg80211: keep tr...
202
  	u16 ifmodes = dev->wiphy.interface_modes;
556829657   Johannes Berg   [NL80211]: add ne...
203
204
205
206
  
  	hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_WIPHY);
  	if (!hdr)
  		return -1;
b5850a7a4   Luis R. Rodriguez   cfg80211: rename ...
207
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, dev->wiphy_idx);
556829657   Johannes Berg   [NL80211]: add ne...
208
  	NLA_PUT_STRING(msg, NL80211_ATTR_WIPHY_NAME, wiphy_name(&dev->wiphy));
b9a5f8cab   Jouni Malinen   nl80211: Add set/...
209
210
211
212
213
214
215
216
217
  
  	NLA_PUT_U8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT,
  		   dev->wiphy.retry_short);
  	NLA_PUT_U8(msg, NL80211_ATTR_WIPHY_RETRY_LONG,
  		   dev->wiphy.retry_long);
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
  		    dev->wiphy.frag_threshold);
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD,
  		    dev->wiphy.rts_threshold);
2a5193119   Johannes Berg   cfg80211/nl80211:...
218
219
  	NLA_PUT_U8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS,
  		   dev->wiphy.max_scan_ssids);
18a836599   Johannes Berg   cfg80211: introdu...
220
221
  	NLA_PUT_U16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN,
  		    dev->wiphy.max_scan_ie_len);
ee688b000   Johannes Berg   nl80211: export h...
222

25e47c18a   Johannes Berg   cfg80211: add cip...
223
224
225
  	NLA_PUT(msg, NL80211_ATTR_CIPHER_SUITES,
  		sizeof(u32) * dev->wiphy.n_cipher_suites,
  		dev->wiphy.cipher_suites);
f59ac0481   Luis R. Rodriguez   cfg80211: keep tr...
226
227
228
229
230
231
232
233
234
235
236
237
238
  	nl_modes = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_IFTYPES);
  	if (!nl_modes)
  		goto nla_put_failure;
  
  	i = 0;
  	while (ifmodes) {
  		if (ifmodes & 1)
  			NLA_PUT_FLAG(msg, i);
  		ifmodes >>= 1;
  		i++;
  	}
  
  	nla_nest_end(msg, nl_modes);
ee688b000   Johannes Berg   nl80211: export h...
239
240
241
242
243
244
245
246
247
248
249
  	nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS);
  	if (!nl_bands)
  		goto nla_put_failure;
  
  	for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
  		if (!dev->wiphy.bands[band])
  			continue;
  
  		nl_band = nla_nest_start(msg, band);
  		if (!nl_band)
  			goto nla_put_failure;
d51626df5   Johannes Berg   nl80211: export H...
250
251
252
253
254
255
256
257
258
259
260
261
  		/* add HT info */
  		if (dev->wiphy.bands[band]->ht_cap.ht_supported) {
  			NLA_PUT(msg, NL80211_BAND_ATTR_HT_MCS_SET,
  				sizeof(dev->wiphy.bands[band]->ht_cap.mcs),
  				&dev->wiphy.bands[band]->ht_cap.mcs);
  			NLA_PUT_U16(msg, NL80211_BAND_ATTR_HT_CAPA,
  				dev->wiphy.bands[band]->ht_cap.cap);
  			NLA_PUT_U8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR,
  				dev->wiphy.bands[band]->ht_cap.ampdu_factor);
  			NLA_PUT_U8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY,
  				dev->wiphy.bands[band]->ht_cap.ampdu_density);
  		}
ee688b000   Johannes Berg   nl80211: export h...
262
263
264
265
266
267
268
269
270
271
272
  		/* add frequencies */
  		nl_freqs = nla_nest_start(msg, NL80211_BAND_ATTR_FREQS);
  		if (!nl_freqs)
  			goto nla_put_failure;
  
  		for (i = 0; i < dev->wiphy.bands[band]->n_channels; i++) {
  			nl_freq = nla_nest_start(msg, i);
  			if (!nl_freq)
  				goto nla_put_failure;
  
  			chan = &dev->wiphy.bands[band]->channels[i];
5dab3b8a6   Luis R. Rodriguez   cfg80211: add net...
273
274
275
  
  			if (nl80211_msg_put_channel(msg, chan))
  				goto nla_put_failure;
e2f367f26   Jouni Malinen   nl80211: Report m...
276

ee688b000   Johannes Berg   nl80211: export h...
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
  			nla_nest_end(msg, nl_freq);
  		}
  
  		nla_nest_end(msg, nl_freqs);
  
  		/* add bitrates */
  		nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES);
  		if (!nl_rates)
  			goto nla_put_failure;
  
  		for (i = 0; i < dev->wiphy.bands[band]->n_bitrates; i++) {
  			nl_rate = nla_nest_start(msg, i);
  			if (!nl_rate)
  				goto nla_put_failure;
  
  			rate = &dev->wiphy.bands[band]->bitrates[i];
  			NLA_PUT_U32(msg, NL80211_BITRATE_ATTR_RATE,
  				    rate->bitrate);
  			if (rate->flags & IEEE80211_RATE_SHORT_PREAMBLE)
  				NLA_PUT_FLAG(msg,
  					NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE);
  
  			nla_nest_end(msg, nl_rate);
  		}
  
  		nla_nest_end(msg, nl_rates);
  
  		nla_nest_end(msg, nl_band);
  	}
  	nla_nest_end(msg, nl_bands);
8fdc621dc   Johannes Berg   nl80211: export s...
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
  	nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS);
  	if (!nl_cmds)
  		goto nla_put_failure;
  
  	i = 0;
  #define CMD(op, n)						\
  	 do {							\
  		if (dev->ops->op) {				\
  			i++;					\
  			NLA_PUT_U32(msg, i, NL80211_CMD_ ## n);	\
  		}						\
  	} while (0)
  
  	CMD(add_virtual_intf, NEW_INTERFACE);
  	CMD(change_virtual_intf, SET_INTERFACE);
  	CMD(add_key, NEW_KEY);
  	CMD(add_beacon, NEW_BEACON);
  	CMD(add_station, NEW_STATION);
  	CMD(add_mpath, NEW_MPATH);
  	CMD(set_mesh_params, SET_MESH_PARAMS);
  	CMD(change_bss, SET_BSS);
636a5d362   Jouni Malinen   nl80211: Add MLME...
328
329
330
331
  	CMD(auth, AUTHENTICATE);
  	CMD(assoc, ASSOCIATE);
  	CMD(deauth, DEAUTHENTICATE);
  	CMD(disassoc, DISASSOCIATE);
04a773ade   Johannes Berg   cfg80211/nl80211:...
332
  	CMD(join_ibss, JOIN_IBSS);
8fdc621dc   Johannes Berg   nl80211: export s...
333
334
335
  
  #undef CMD
  	nla_nest_end(msg, nl_cmds);
556829657   Johannes Berg   [NL80211]: add ne...
336
337
338
  	return genlmsg_end(msg, hdr);
  
   nla_put_failure:
bc3ed28ca   Thomas Graf   netlink: Improve ...
339
340
  	genlmsg_cancel(msg, hdr);
  	return -EMSGSIZE;
556829657   Johannes Berg   [NL80211]: add ne...
341
342
343
344
345
346
347
  }
  
  static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb)
  {
  	int idx = 0;
  	int start = cb->args[0];
  	struct cfg80211_registered_device *dev;
a1794390f   Luis R. Rodriguez   cfg80211: rename ...
348
  	mutex_lock(&cfg80211_mutex);
556829657   Johannes Berg   [NL80211]: add ne...
349
  	list_for_each_entry(dev, &cfg80211_drv_list, list) {
b46372710   Julius Volz   net/wireless/nl80...
350
  		if (++idx <= start)
556829657   Johannes Berg   [NL80211]: add ne...
351
352
353
  			continue;
  		if (nl80211_send_wiphy(skb, NETLINK_CB(cb->skb).pid,
  				       cb->nlh->nlmsg_seq, NLM_F_MULTI,
b46372710   Julius Volz   net/wireless/nl80...
354
355
  				       dev) < 0) {
  			idx--;
556829657   Johannes Berg   [NL80211]: add ne...
356
  			break;
b46372710   Julius Volz   net/wireless/nl80...
357
  		}
556829657   Johannes Berg   [NL80211]: add ne...
358
  	}
a1794390f   Luis R. Rodriguez   cfg80211: rename ...
359
  	mutex_unlock(&cfg80211_mutex);
556829657   Johannes Berg   [NL80211]: add ne...
360
361
362
363
364
365
366
367
368
369
370
371
372
373
  
  	cb->args[0] = idx;
  
  	return skb->len;
  }
  
  static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info)
  {
  	struct sk_buff *msg;
  	struct cfg80211_registered_device *dev;
  
  	dev = cfg80211_get_dev_from_info(info);
  	if (IS_ERR(dev))
  		return PTR_ERR(dev);
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
374
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
556829657   Johannes Berg   [NL80211]: add ne...
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
  	if (!msg)
  		goto out_err;
  
  	if (nl80211_send_wiphy(msg, info->snd_pid, info->snd_seq, 0, dev) < 0)
  		goto out_free;
  
  	cfg80211_put_dev(dev);
  
  	return genlmsg_unicast(msg, info->snd_pid);
  
   out_free:
  	nlmsg_free(msg);
   out_err:
  	cfg80211_put_dev(dev);
  	return -ENOBUFS;
  }
318884875   Jouni Malinen   nl80211: Add TX q...
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
  static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = {
  	[NL80211_TXQ_ATTR_QUEUE]		= { .type = NLA_U8 },
  	[NL80211_TXQ_ATTR_TXOP]			= { .type = NLA_U16 },
  	[NL80211_TXQ_ATTR_CWMIN]		= { .type = NLA_U16 },
  	[NL80211_TXQ_ATTR_CWMAX]		= { .type = NLA_U16 },
  	[NL80211_TXQ_ATTR_AIFS]			= { .type = NLA_U8 },
  };
  
  static int parse_txq_params(struct nlattr *tb[],
  			    struct ieee80211_txq_params *txq_params)
  {
  	if (!tb[NL80211_TXQ_ATTR_QUEUE] || !tb[NL80211_TXQ_ATTR_TXOP] ||
  	    !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] ||
  	    !tb[NL80211_TXQ_ATTR_AIFS])
  		return -EINVAL;
  
  	txq_params->queue = nla_get_u8(tb[NL80211_TXQ_ATTR_QUEUE]);
  	txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]);
  	txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]);
  	txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]);
  	txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]);
  
  	return 0;
  }
556829657   Johannes Berg   [NL80211]: add ne...
415
416
417
  static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *rdev;
318884875   Jouni Malinen   nl80211: Add TX q...
418
419
  	int result = 0, rem_txq_params = 0;
  	struct nlattr *nl_txq_params;
b9a5f8cab   Jouni Malinen   nl80211: Add set/...
420
421
422
  	u32 changed;
  	u8 retry_short = 0, retry_long = 0;
  	u32 frag_threshold = 0, rts_threshold = 0;
556829657   Johannes Berg   [NL80211]: add ne...
423

4bbf4d565   Johannes Berg   cfg80211: fix loc...
424
  	rtnl_lock();
556829657   Johannes Berg   [NL80211]: add ne...
425

4bbf4d565   Johannes Berg   cfg80211: fix loc...
426
427
428
429
430
431
432
433
434
435
436
  	mutex_lock(&cfg80211_mutex);
  
  	rdev = __cfg80211_drv_from_info(info);
  	if (IS_ERR(rdev)) {
  		result = PTR_ERR(rdev);
  		goto unlock;
  	}
  
  	mutex_lock(&rdev->mtx);
  
  	if (info->attrs[NL80211_ATTR_WIPHY_NAME])
318884875   Jouni Malinen   nl80211: Add TX q...
437
438
  		result = cfg80211_dev_rename(
  			rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME]));
4bbf4d565   Johannes Berg   cfg80211: fix loc...
439
440
441
442
443
  
  	mutex_unlock(&cfg80211_mutex);
  
  	if (result)
  		goto bad_res;
318884875   Jouni Malinen   nl80211: Add TX q...
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
  
  	if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) {
  		struct ieee80211_txq_params txq_params;
  		struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1];
  
  		if (!rdev->ops->set_txq_params) {
  			result = -EOPNOTSUPP;
  			goto bad_res;
  		}
  
  		nla_for_each_nested(nl_txq_params,
  				    info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS],
  				    rem_txq_params) {
  			nla_parse(tb, NL80211_TXQ_ATTR_MAX,
  				  nla_data(nl_txq_params),
  				  nla_len(nl_txq_params),
  				  txq_params_policy);
  			result = parse_txq_params(tb, &txq_params);
  			if (result)
  				goto bad_res;
  
  			result = rdev->ops->set_txq_params(&rdev->wiphy,
  							   &txq_params);
  			if (result)
  				goto bad_res;
  		}
  	}
556829657   Johannes Berg   [NL80211]: add ne...
471

72bdcf343   Jouni Malinen   nl80211: Add freq...
472
  	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
094d05dc3   Sujith   mac80211: Fix HT ...
473
  		enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
72bdcf343   Jouni Malinen   nl80211: Add freq...
474
  		struct ieee80211_channel *chan;
306d6112f   Johannes Berg   cfg80211: fix nl8...
475
  		struct ieee80211_sta_ht_cap *ht_cap;
294196ab2   Luis R. Rodriguez   cfg80211: check a...
476
  		u32 freq;
72bdcf343   Jouni Malinen   nl80211: Add freq...
477
478
479
480
481
  
  		if (!rdev->ops->set_channel) {
  			result = -EOPNOTSUPP;
  			goto bad_res;
  		}
306d6112f   Johannes Berg   cfg80211: fix nl8...
482
  		result = -EINVAL;
094d05dc3   Sujith   mac80211: Fix HT ...
483
484
485
486
487
488
489
  		if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
  			channel_type = nla_get_u32(info->attrs[
  					   NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
  			if (channel_type != NL80211_CHAN_NO_HT &&
  			    channel_type != NL80211_CHAN_HT20 &&
  			    channel_type != NL80211_CHAN_HT40PLUS &&
  			    channel_type != NL80211_CHAN_HT40MINUS)
72bdcf343   Jouni Malinen   nl80211: Add freq...
490
  				goto bad_res;
72bdcf343   Jouni Malinen   nl80211: Add freq...
491
492
493
494
  		}
  
  		freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
  		chan = ieee80211_get_channel(&rdev->wiphy, freq);
306d6112f   Johannes Berg   cfg80211: fix nl8...
495
496
497
  
  		/* Primary channel not allowed */
  		if (!chan || chan->flags & IEEE80211_CHAN_DISABLED)
72bdcf343   Jouni Malinen   nl80211: Add freq...
498
  			goto bad_res;
306d6112f   Johannes Berg   cfg80211: fix nl8...
499

294196ab2   Luis R. Rodriguez   cfg80211: check a...
500
501
  		if (channel_type == NL80211_CHAN_HT40MINUS &&
  		    (chan->flags & IEEE80211_CHAN_NO_HT40MINUS))
306d6112f   Johannes Berg   cfg80211: fix nl8...
502
  			goto bad_res;
294196ab2   Luis R. Rodriguez   cfg80211: check a...
503
504
  		else if (channel_type == NL80211_CHAN_HT40PLUS &&
  			 (chan->flags & IEEE80211_CHAN_NO_HT40PLUS))
306d6112f   Johannes Berg   cfg80211: fix nl8...
505
  			goto bad_res;
294196ab2   Luis R. Rodriguez   cfg80211: check a...
506
507
508
509
510
  		/*
  		 * At this point we know if that if HT40 was requested
  		 * we are allowed to use it and the extension channel
  		 * exists.
  		 */
306d6112f   Johannes Berg   cfg80211: fix nl8...
511

294196ab2   Luis R. Rodriguez   cfg80211: check a...
512
  		ht_cap = &rdev->wiphy.bands[chan->band]->ht_cap;
306d6112f   Johannes Berg   cfg80211: fix nl8...
513

294196ab2   Luis R. Rodriguez   cfg80211: check a...
514
515
516
517
  		/* no HT capabilities or intolerant */
  		if (channel_type != NL80211_CHAN_NO_HT) {
  			if (!ht_cap->ht_supported)
  				goto bad_res;
306d6112f   Johannes Berg   cfg80211: fix nl8...
518
519
520
  			if (!(ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) ||
  			    (ht_cap->cap & IEEE80211_HT_CAP_40MHZ_INTOLERANT))
  				goto bad_res;
72bdcf343   Jouni Malinen   nl80211: Add freq...
521
522
523
  		}
  
  		result = rdev->ops->set_channel(&rdev->wiphy, chan,
094d05dc3   Sujith   mac80211: Fix HT ...
524
  						channel_type);
72bdcf343   Jouni Malinen   nl80211: Add freq...
525
526
527
  		if (result)
  			goto bad_res;
  	}
b9a5f8cab   Jouni Malinen   nl80211: Add set/...
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
  	changed = 0;
  
  	if (info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]) {
  		retry_short = nla_get_u8(
  			info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]);
  		if (retry_short == 0) {
  			result = -EINVAL;
  			goto bad_res;
  		}
  		changed |= WIPHY_PARAM_RETRY_SHORT;
  	}
  
  	if (info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]) {
  		retry_long = nla_get_u8(
  			info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]);
  		if (retry_long == 0) {
  			result = -EINVAL;
  			goto bad_res;
  		}
  		changed |= WIPHY_PARAM_RETRY_LONG;
  	}
  
  	if (info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) {
  		frag_threshold = nla_get_u32(
  			info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]);
  		if (frag_threshold < 256) {
  			result = -EINVAL;
  			goto bad_res;
  		}
  		if (frag_threshold != (u32) -1) {
  			/*
  			 * Fragments (apart from the last one) are required to
  			 * have even length. Make the fragmentation code
  			 * simpler by stripping LSB should someone try to use
  			 * odd threshold value.
  			 */
  			frag_threshold &= ~0x1;
  		}
  		changed |= WIPHY_PARAM_FRAG_THRESHOLD;
  	}
  
  	if (info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) {
  		rts_threshold = nla_get_u32(
  			info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]);
  		changed |= WIPHY_PARAM_RTS_THRESHOLD;
  	}
  
  	if (changed) {
  		u8 old_retry_short, old_retry_long;
  		u32 old_frag_threshold, old_rts_threshold;
  
  		if (!rdev->ops->set_wiphy_params) {
  			result = -EOPNOTSUPP;
  			goto bad_res;
  		}
  
  		old_retry_short = rdev->wiphy.retry_short;
  		old_retry_long = rdev->wiphy.retry_long;
  		old_frag_threshold = rdev->wiphy.frag_threshold;
  		old_rts_threshold = rdev->wiphy.rts_threshold;
  
  		if (changed & WIPHY_PARAM_RETRY_SHORT)
  			rdev->wiphy.retry_short = retry_short;
  		if (changed & WIPHY_PARAM_RETRY_LONG)
  			rdev->wiphy.retry_long = retry_long;
  		if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
  			rdev->wiphy.frag_threshold = frag_threshold;
  		if (changed & WIPHY_PARAM_RTS_THRESHOLD)
  			rdev->wiphy.rts_threshold = rts_threshold;
  
  		result = rdev->ops->set_wiphy_params(&rdev->wiphy, changed);
  		if (result) {
  			rdev->wiphy.retry_short = old_retry_short;
  			rdev->wiphy.retry_long = old_retry_long;
  			rdev->wiphy.frag_threshold = old_frag_threshold;
  			rdev->wiphy.rts_threshold = old_rts_threshold;
  		}
  	}
72bdcf343   Jouni Malinen   nl80211: Add freq...
606

306d6112f   Johannes Berg   cfg80211: fix nl8...
607
   bad_res:
4bbf4d565   Johannes Berg   cfg80211: fix loc...
608
609
610
  	mutex_unlock(&rdev->mtx);
   unlock:
  	rtnl_unlock();
556829657   Johannes Berg   [NL80211]: add ne...
611
612
613
614
615
  	return result;
  }
  
  
  static int nl80211_send_iface(struct sk_buff *msg, u32 pid, u32 seq, int flags,
d726405af   Johannes Berg   nl80211: send wip...
616
  			      struct cfg80211_registered_device *rdev,
556829657   Johannes Berg   [NL80211]: add ne...
617
618
619
620
621
622
623
624
625
  			      struct net_device *dev)
  {
  	void *hdr;
  
  	hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_INTERFACE);
  	if (!hdr)
  		return -1;
  
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex);
d726405af   Johannes Berg   nl80211: send wip...
626
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
556829657   Johannes Berg   [NL80211]: add ne...
627
  	NLA_PUT_STRING(msg, NL80211_ATTR_IFNAME, dev->name);
60719ffd7   Johannes Berg   cfg80211: show in...
628
  	NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, dev->ieee80211_ptr->iftype);
556829657   Johannes Berg   [NL80211]: add ne...
629
630
631
  	return genlmsg_end(msg, hdr);
  
   nla_put_failure:
bc3ed28ca   Thomas Graf   netlink: Improve ...
632
633
  	genlmsg_cancel(msg, hdr);
  	return -EMSGSIZE;
556829657   Johannes Berg   [NL80211]: add ne...
634
635
636
637
638
639
640
641
642
643
  }
  
  static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb)
  {
  	int wp_idx = 0;
  	int if_idx = 0;
  	int wp_start = cb->args[0];
  	int if_start = cb->args[1];
  	struct cfg80211_registered_device *dev;
  	struct wireless_dev *wdev;
a1794390f   Luis R. Rodriguez   cfg80211: rename ...
644
  	mutex_lock(&cfg80211_mutex);
556829657   Johannes Berg   [NL80211]: add ne...
645
  	list_for_each_entry(dev, &cfg80211_drv_list, list) {
bba95fefb   Johannes Berg   nl80211: fix dump...
646
647
  		if (wp_idx < wp_start) {
  			wp_idx++;
556829657   Johannes Berg   [NL80211]: add ne...
648
  			continue;
bba95fefb   Johannes Berg   nl80211: fix dump...
649
  		}
556829657   Johannes Berg   [NL80211]: add ne...
650
651
652
653
  		if_idx = 0;
  
  		mutex_lock(&dev->devlist_mtx);
  		list_for_each_entry(wdev, &dev->netdev_list, list) {
bba95fefb   Johannes Berg   nl80211: fix dump...
654
655
  			if (if_idx < if_start) {
  				if_idx++;
556829657   Johannes Berg   [NL80211]: add ne...
656
  				continue;
bba95fefb   Johannes Berg   nl80211: fix dump...
657
  			}
556829657   Johannes Berg   [NL80211]: add ne...
658
659
  			if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).pid,
  					       cb->nlh->nlmsg_seq, NLM_F_MULTI,
d726405af   Johannes Berg   nl80211: send wip...
660
  					       dev, wdev->netdev) < 0) {
bba95fefb   Johannes Berg   nl80211: fix dump...
661
662
663
664
  				mutex_unlock(&dev->devlist_mtx);
  				goto out;
  			}
  			if_idx++;
556829657   Johannes Berg   [NL80211]: add ne...
665
666
  		}
  		mutex_unlock(&dev->devlist_mtx);
bba95fefb   Johannes Berg   nl80211: fix dump...
667
668
  
  		wp_idx++;
556829657   Johannes Berg   [NL80211]: add ne...
669
  	}
bba95fefb   Johannes Berg   nl80211: fix dump...
670
   out:
a1794390f   Luis R. Rodriguez   cfg80211: rename ...
671
  	mutex_unlock(&cfg80211_mutex);
556829657   Johannes Berg   [NL80211]: add ne...
672
673
674
675
676
677
678
679
680
681
682
683
684
  
  	cb->args[0] = wp_idx;
  	cb->args[1] = if_idx;
  
  	return skb->len;
  }
  
  static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info)
  {
  	struct sk_buff *msg;
  	struct cfg80211_registered_device *dev;
  	struct net_device *netdev;
  	int err;
bba95fefb   Johannes Berg   nl80211: fix dump...
685
  	err = get_drv_dev_by_info_ifindex(info->attrs, &dev, &netdev);
556829657   Johannes Berg   [NL80211]: add ne...
686
687
  	if (err)
  		return err;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
688
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
556829657   Johannes Berg   [NL80211]: add ne...
689
690
  	if (!msg)
  		goto out_err;
d726405af   Johannes Berg   nl80211: send wip...
691
692
  	if (nl80211_send_iface(msg, info->snd_pid, info->snd_seq, 0,
  			       dev, netdev) < 0)
556829657   Johannes Berg   [NL80211]: add ne...
693
694
695
696
697
698
699
700
701
702
703
704
705
706
  		goto out_free;
  
  	dev_put(netdev);
  	cfg80211_put_dev(dev);
  
  	return genlmsg_unicast(msg, info->snd_pid);
  
   out_free:
  	nlmsg_free(msg);
   out_err:
  	dev_put(netdev);
  	cfg80211_put_dev(dev);
  	return -ENOBUFS;
  }
66f7ac50e   Michael Wu   nl80211: Add moni...
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
  static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = {
  	[NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG },
  	[NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG },
  	[NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG },
  	[NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG },
  	[NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG },
  };
  
  static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags)
  {
  	struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1];
  	int flag;
  
  	*mntrflags = 0;
  
  	if (!nla)
  		return -EINVAL;
  
  	if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX,
  			     nla, mntr_flags_policy))
  		return -EINVAL;
  
  	for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++)
  		if (flags[flag])
  			*mntrflags |= (1<<flag);
  
  	return 0;
  }
556829657   Johannes Berg   [NL80211]: add ne...
735
736
737
  static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
738
  	struct vif_params params;
556829657   Johannes Berg   [NL80211]: add ne...
739
  	int err, ifindex;
04a773ade   Johannes Berg   cfg80211/nl80211:...
740
  	enum nl80211_iftype otype, ntype;
556829657   Johannes Berg   [NL80211]: add ne...
741
  	struct net_device *dev;
92ffe055c   Johannes Berg   cfg80211: reject ...
742
  	u32 _flags, *flags = NULL;
ac7f9cfa2   Johannes Berg   cfg80211: accept ...
743
  	bool change = false;
556829657   Johannes Berg   [NL80211]: add ne...
744

2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
745
  	memset(&params, 0, sizeof(params));
3b85875a2   Johannes Berg   nl80211: rework l...
746
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
747
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
556829657   Johannes Berg   [NL80211]: add ne...
748
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
749
  		goto unlock_rtnl;
556829657   Johannes Berg   [NL80211]: add ne...
750
  	ifindex = dev->ifindex;
04a773ade   Johannes Berg   cfg80211/nl80211:...
751
  	otype = ntype = dev->ieee80211_ptr->iftype;
556829657   Johannes Berg   [NL80211]: add ne...
752
  	dev_put(dev);
723b038de   Johannes Berg   cfg80211: allow s...
753
  	if (info->attrs[NL80211_ATTR_IFTYPE]) {
ac7f9cfa2   Johannes Berg   cfg80211: accept ...
754
  		ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
04a773ade   Johannes Berg   cfg80211/nl80211:...
755
  		if (otype != ntype)
ac7f9cfa2   Johannes Berg   cfg80211: accept ...
756
  			change = true;
04a773ade   Johannes Berg   cfg80211/nl80211:...
757
  		if (ntype > NL80211_IFTYPE_MAX) {
ac7f9cfa2   Johannes Berg   cfg80211: accept ...
758
  			err = -EINVAL;
723b038de   Johannes Berg   cfg80211: allow s...
759
  			goto unlock;
ac7f9cfa2   Johannes Berg   cfg80211: accept ...
760
  		}
723b038de   Johannes Berg   cfg80211: allow s...
761
  	}
f59ac0481   Luis R. Rodriguez   cfg80211: keep tr...
762
  	if (!drv->ops->change_virtual_intf ||
04a773ade   Johannes Berg   cfg80211/nl80211:...
763
  	    !(drv->wiphy.interface_modes & (1 << ntype))) {
556829657   Johannes Berg   [NL80211]: add ne...
764
765
766
  		err = -EOPNOTSUPP;
  		goto unlock;
  	}
92ffe055c   Johannes Berg   cfg80211: reject ...
767
  	if (info->attrs[NL80211_ATTR_MESH_ID]) {
04a773ade   Johannes Berg   cfg80211/nl80211:...
768
  		if (ntype != NL80211_IFTYPE_MESH_POINT) {
92ffe055c   Johannes Berg   cfg80211: reject ...
769
770
771
  			err = -EINVAL;
  			goto unlock;
  		}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
772
773
  		params.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
  		params.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
ac7f9cfa2   Johannes Berg   cfg80211: accept ...
774
  		change = true;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
775
  	}
92ffe055c   Johannes Berg   cfg80211: reject ...
776
  	if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) {
04a773ade   Johannes Berg   cfg80211/nl80211:...
777
  		if (ntype != NL80211_IFTYPE_MONITOR) {
92ffe055c   Johannes Berg   cfg80211: reject ...
778
779
780
781
782
  			err = -EINVAL;
  			goto unlock;
  		}
  		err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS],
  					  &_flags);
ac7f9cfa2   Johannes Berg   cfg80211: accept ...
783
784
785
786
787
  		if (err)
  			goto unlock;
  
  		flags = &_flags;
  		change = true;
92ffe055c   Johannes Berg   cfg80211: reject ...
788
  	}
3b85875a2   Johannes Berg   nl80211: rework l...
789

ac7f9cfa2   Johannes Berg   cfg80211: accept ...
790
791
  	if (change)
  		err = drv->ops->change_virtual_intf(&drv->wiphy, ifindex,
04a773ade   Johannes Berg   cfg80211/nl80211:...
792
  						    ntype, flags, &params);
ac7f9cfa2   Johannes Berg   cfg80211: accept ...
793
794
  	else
  		err = 0;
60719ffd7   Johannes Berg   cfg80211: show in...
795
796
  
  	dev = __dev_get_by_index(&init_net, ifindex);
04a773ade   Johannes Berg   cfg80211/nl80211:...
797
798
799
800
  	WARN_ON(!dev || (!err && dev->ieee80211_ptr->iftype != ntype));
  
  	if (dev && !err && (ntype != otype)) {
  		if (otype == NL80211_IFTYPE_ADHOC)
9d308429a   Johannes Berg   cfg80211: clear W...
801
  			cfg80211_clear_ibss(dev, false);
04a773ade   Johannes Berg   cfg80211/nl80211:...
802
  	}
60719ffd7   Johannes Berg   cfg80211: show in...
803

556829657   Johannes Berg   [NL80211]: add ne...
804
805
   unlock:
  	cfg80211_put_dev(drv);
3b85875a2   Johannes Berg   nl80211: rework l...
806
807
   unlock_rtnl:
  	rtnl_unlock();
556829657   Johannes Berg   [NL80211]: add ne...
808
809
810
811
812
813
  	return err;
  }
  
  static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
814
  	struct vif_params params;
556829657   Johannes Berg   [NL80211]: add ne...
815
816
  	int err;
  	enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED;
66f7ac50e   Michael Wu   nl80211: Add moni...
817
  	u32 flags;
556829657   Johannes Berg   [NL80211]: add ne...
818

2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
819
  	memset(&params, 0, sizeof(params));
556829657   Johannes Berg   [NL80211]: add ne...
820
821
822
823
824
825
826
827
  	if (!info->attrs[NL80211_ATTR_IFNAME])
  		return -EINVAL;
  
  	if (info->attrs[NL80211_ATTR_IFTYPE]) {
  		type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
  		if (type > NL80211_IFTYPE_MAX)
  			return -EINVAL;
  	}
3b85875a2   Johannes Berg   nl80211: rework l...
828
  	rtnl_lock();
556829657   Johannes Berg   [NL80211]: add ne...
829
  	drv = cfg80211_get_dev_from_info(info);
3b85875a2   Johannes Berg   nl80211: rework l...
830
831
832
833
  	if (IS_ERR(drv)) {
  		err = PTR_ERR(drv);
  		goto unlock_rtnl;
  	}
556829657   Johannes Berg   [NL80211]: add ne...
834

f59ac0481   Luis R. Rodriguez   cfg80211: keep tr...
835
836
  	if (!drv->ops->add_virtual_intf ||
  	    !(drv->wiphy.interface_modes & (1 << type))) {
556829657   Johannes Berg   [NL80211]: add ne...
837
838
839
  		err = -EOPNOTSUPP;
  		goto unlock;
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
840
841
842
843
844
  	if (type == NL80211_IFTYPE_MESH_POINT &&
  	    info->attrs[NL80211_ATTR_MESH_ID]) {
  		params.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
  		params.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
  	}
66f7ac50e   Michael Wu   nl80211: Add moni...
845
846
847
  	err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ?
  				  info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL,
  				  &flags);
556829657   Johannes Berg   [NL80211]: add ne...
848
  	err = drv->ops->add_virtual_intf(&drv->wiphy,
66f7ac50e   Michael Wu   nl80211: Add moni...
849
  		nla_data(info->attrs[NL80211_ATTR_IFNAME]),
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
850
  		type, err ? NULL : &flags, &params);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
851

556829657   Johannes Berg   [NL80211]: add ne...
852
853
   unlock:
  	cfg80211_put_dev(drv);
3b85875a2   Johannes Berg   nl80211: rework l...
854
855
   unlock_rtnl:
  	rtnl_unlock();
556829657   Johannes Berg   [NL80211]: add ne...
856
857
858
859
860
861
862
863
  	return err;
  }
  
  static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int ifindex, err;
  	struct net_device *dev;
3b85875a2   Johannes Berg   nl80211: rework l...
864
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
865
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
556829657   Johannes Berg   [NL80211]: add ne...
866
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
867
  		goto unlock_rtnl;
556829657   Johannes Berg   [NL80211]: add ne...
868
869
870
871
872
873
874
  	ifindex = dev->ifindex;
  	dev_put(dev);
  
  	if (!drv->ops->del_virtual_intf) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
556829657   Johannes Berg   [NL80211]: add ne...
875
  	err = drv->ops->del_virtual_intf(&drv->wiphy, ifindex);
556829657   Johannes Berg   [NL80211]: add ne...
876
877
878
  
   out:
  	cfg80211_put_dev(drv);
3b85875a2   Johannes Berg   nl80211: rework l...
879
880
   unlock_rtnl:
  	rtnl_unlock();
556829657   Johannes Berg   [NL80211]: add ne...
881
882
  	return err;
  }
41ade00f2   Johannes Berg   cfg80211/nl80211:...
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
  struct get_key_cookie {
  	struct sk_buff *msg;
  	int error;
  };
  
  static void get_key_callback(void *c, struct key_params *params)
  {
  	struct get_key_cookie *cookie = c;
  
  	if (params->key)
  		NLA_PUT(cookie->msg, NL80211_ATTR_KEY_DATA,
  			params->key_len, params->key);
  
  	if (params->seq)
  		NLA_PUT(cookie->msg, NL80211_ATTR_KEY_SEQ,
  			params->seq_len, params->seq);
  
  	if (params->cipher)
  		NLA_PUT_U32(cookie->msg, NL80211_ATTR_KEY_CIPHER,
  			    params->cipher);
  
  	return;
   nla_put_failure:
  	cookie->error = 1;
  }
  
  static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	u8 key_idx = 0;
  	u8 *mac_addr = NULL;
  	struct get_key_cookie cookie = {
  		.error = 0,
  	};
  	void *hdr;
  	struct sk_buff *msg;
  
  	if (info->attrs[NL80211_ATTR_KEY_IDX])
  		key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
3cfcf6ac6   Jouni Malinen   mac80211: 802.11w...
924
  	if (key_idx > 5)
41ade00f2   Johannes Berg   cfg80211/nl80211:...
925
926
927
928
  		return -EINVAL;
  
  	if (info->attrs[NL80211_ATTR_MAC])
  		mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3b85875a2   Johannes Berg   nl80211: rework l...
929
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
930
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
931
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
932
  		goto unlock_rtnl;
41ade00f2   Johannes Berg   cfg80211/nl80211:...
933
934
935
936
937
  
  	if (!drv->ops->get_key) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
938
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
  	if (!msg) {
  		err = -ENOMEM;
  		goto out;
  	}
  
  	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
  			     NL80211_CMD_NEW_KEY);
  
  	if (IS_ERR(hdr)) {
  		err = PTR_ERR(hdr);
  		goto out;
  	}
  
  	cookie.msg = msg;
  
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex);
  	NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
  	if (mac_addr)
  		NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
958
959
  	err = drv->ops->get_key(&drv->wiphy, dev, key_idx, mac_addr,
  				&cookie, get_key_callback);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
  
  	if (err)
  		goto out;
  
  	if (cookie.error)
  		goto nla_put_failure;
  
  	genlmsg_end(msg, hdr);
  	err = genlmsg_unicast(msg, info->snd_pid);
  	goto out;
  
   nla_put_failure:
  	err = -ENOBUFS;
  	nlmsg_free(msg);
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
977
978
   unlock_rtnl:
  	rtnl_unlock();
41ade00f2   Johannes Berg   cfg80211/nl80211:...
979
980
981
982
983
984
985
986
987
  	return err;
  }
  
  static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	u8 key_idx;
3cfcf6ac6   Jouni Malinen   mac80211: 802.11w...
988
989
  	int (*func)(struct wiphy *wiphy, struct net_device *netdev,
  		    u8 key_index);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
990
991
992
993
994
  
  	if (!info->attrs[NL80211_ATTR_KEY_IDX])
  		return -EINVAL;
  
  	key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
3cfcf6ac6   Jouni Malinen   mac80211: 802.11w...
995
996
997
998
  	if (info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT]) {
  		if (key_idx < 4 || key_idx > 5)
  			return -EINVAL;
  	} else if (key_idx > 3)
41ade00f2   Johannes Berg   cfg80211/nl80211:...
999
1000
1001
  		return -EINVAL;
  
  	/* currently only support setting default key */
3cfcf6ac6   Jouni Malinen   mac80211: 802.11w...
1002
1003
  	if (!info->attrs[NL80211_ATTR_KEY_DEFAULT] &&
  	    !info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT])
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1004
  		return -EINVAL;
3b85875a2   Johannes Berg   nl80211: rework l...
1005
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1006
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1007
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1008
  		goto unlock_rtnl;
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1009

3cfcf6ac6   Jouni Malinen   mac80211: 802.11w...
1010
1011
1012
1013
1014
1015
  	if (info->attrs[NL80211_ATTR_KEY_DEFAULT])
  		func = drv->ops->set_default_key;
  	else
  		func = drv->ops->set_default_mgmt_key;
  
  	if (!func) {
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1016
1017
1018
  		err = -EOPNOTSUPP;
  		goto out;
  	}
3cfcf6ac6   Jouni Malinen   mac80211: 802.11w...
1019
  	err = func(&drv->wiphy, dev, key_idx);
08645126d   Johannes Berg   cfg80211: impleme...
1020
1021
1022
1023
1024
1025
1026
1027
  #ifdef CONFIG_WIRELESS_EXT
  	if (!err) {
  		if (func == drv->ops->set_default_key)
  			dev->ieee80211_ptr->wext.default_key = key_idx;
  		else
  			dev->ieee80211_ptr->wext.default_mgmt_key = key_idx;
  	}
  #endif
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1028
1029
1030
1031
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1032
1033
1034
  
   unlock_rtnl:
  	rtnl_unlock();
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1035
1036
1037
1038
1039
1040
  	return err;
  }
  
  static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
25e47c18a   Johannes Berg   cfg80211: add cip...
1041
  	int err, i;
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
  	struct net_device *dev;
  	struct key_params params;
  	u8 key_idx = 0;
  	u8 *mac_addr = NULL;
  
  	memset(&params, 0, sizeof(params));
  
  	if (!info->attrs[NL80211_ATTR_KEY_CIPHER])
  		return -EINVAL;
  
  	if (info->attrs[NL80211_ATTR_KEY_DATA]) {
  		params.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]);
  		params.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]);
  	}
faa8fdc85   Jouni Malinen   nl80211: Add RSC ...
1056
1057
1058
1059
  	if (info->attrs[NL80211_ATTR_KEY_SEQ]) {
  		params.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]);
  		params.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]);
  	}
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1060
1061
1062
1063
1064
1065
1066
  	if (info->attrs[NL80211_ATTR_KEY_IDX])
  		key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
  
  	params.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]);
  
  	if (info->attrs[NL80211_ATTR_MAC])
  		mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
08645126d   Johannes Berg   cfg80211: impleme...
1067
  	if (cfg80211_validate_key_settings(&params, key_idx, mac_addr))
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1068
  		return -EINVAL;
3b85875a2   Johannes Berg   nl80211: rework l...
1069
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1070
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1071
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1072
  		goto unlock_rtnl;
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1073

25e47c18a   Johannes Berg   cfg80211: add cip...
1074
1075
1076
1077
1078
1079
1080
  	for (i = 0; i < drv->wiphy.n_cipher_suites; i++)
  		if (params.cipher == drv->wiphy.cipher_suites[i])
  			break;
  	if (i == drv->wiphy.n_cipher_suites) {
  		err = -EINVAL;
  		goto out;
  	}
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1081
1082
1083
1084
  	if (!drv->ops->add_key) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1085
  	err = drv->ops->add_key(&drv->wiphy, dev, key_idx, mac_addr, &params);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1086
1087
1088
1089
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1090
1091
   unlock_rtnl:
  	rtnl_unlock();
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
  	return err;
  }
  
  static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	u8 key_idx = 0;
  	u8 *mac_addr = NULL;
  
  	if (info->attrs[NL80211_ATTR_KEY_IDX])
  		key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
3cfcf6ac6   Jouni Malinen   mac80211: 802.11w...
1105
  	if (key_idx > 5)
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1106
1107
1108
1109
  		return -EINVAL;
  
  	if (info->attrs[NL80211_ATTR_MAC])
  		mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3b85875a2   Johannes Berg   nl80211: rework l...
1110
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1111
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1112
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1113
  		goto unlock_rtnl;
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1114
1115
1116
1117
1118
  
  	if (!drv->ops->del_key) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1119
  	err = drv->ops->del_key(&drv->wiphy, dev, key_idx, mac_addr);
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1120

08645126d   Johannes Berg   cfg80211: impleme...
1121
1122
1123
1124
1125
1126
1127
1128
  #ifdef CONFIG_WIRELESS_EXT
  	if (!err) {
  		if (key_idx == dev->ieee80211_ptr->wext.default_key)
  			dev->ieee80211_ptr->wext.default_key = -1;
  		else if (key_idx == dev->ieee80211_ptr->wext.default_mgmt_key)
  			dev->ieee80211_ptr->wext.default_mgmt_key = -1;
  	}
  #endif
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1129
1130
1131
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1132
1133
1134
  
   unlock_rtnl:
  	rtnl_unlock();
41ade00f2   Johannes Berg   cfg80211/nl80211:...
1135
1136
  	return err;
  }
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1137
1138
1139
1140
1141
1142
1143
1144
1145
  static int nl80211_addset_beacon(struct sk_buff *skb, struct genl_info *info)
  {
          int (*call)(struct wiphy *wiphy, struct net_device *dev,
  		    struct beacon_parameters *info);
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	struct beacon_parameters params;
  	int haveinfo = 0;
f4a11bb0c   Johannes Berg   nl80211: validate...
1146
1147
  	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_BEACON_TAIL]))
  		return -EINVAL;
3b85875a2   Johannes Berg   nl80211: rework l...
1148
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1149
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1150
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1151
  		goto unlock_rtnl;
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1152

eec60b037   Jouni Malinen   nl80211: Check if...
1153
1154
1155
1156
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
  	switch (info->genlhdr->cmd) {
  	case NL80211_CMD_NEW_BEACON:
  		/* these are required for NEW_BEACON */
  		if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] ||
  		    !info->attrs[NL80211_ATTR_DTIM_PERIOD] ||
  		    !info->attrs[NL80211_ATTR_BEACON_HEAD]) {
  			err = -EINVAL;
  			goto out;
  		}
  
  		call = drv->ops->add_beacon;
  		break;
  	case NL80211_CMD_SET_BEACON:
  		call = drv->ops->set_beacon;
  		break;
  	default:
  		WARN_ON(1);
  		err = -EOPNOTSUPP;
  		goto out;
  	}
  
  	if (!call) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
  
  	memset(&params, 0, sizeof(params));
  
  	if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
  		params.interval =
  		    nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
  		haveinfo = 1;
  	}
  
  	if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
  		params.dtim_period =
  		    nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
  		haveinfo = 1;
  	}
  
  	if (info->attrs[NL80211_ATTR_BEACON_HEAD]) {
  		params.head = nla_data(info->attrs[NL80211_ATTR_BEACON_HEAD]);
  		params.head_len =
  		    nla_len(info->attrs[NL80211_ATTR_BEACON_HEAD]);
  		haveinfo = 1;
  	}
  
  	if (info->attrs[NL80211_ATTR_BEACON_TAIL]) {
  		params.tail = nla_data(info->attrs[NL80211_ATTR_BEACON_TAIL]);
  		params.tail_len =
  		    nla_len(info->attrs[NL80211_ATTR_BEACON_TAIL]);
  		haveinfo = 1;
  	}
  
  	if (!haveinfo) {
  		err = -EINVAL;
  		goto out;
  	}
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1215
  	err = call(&drv->wiphy, dev, &params);
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1216
1217
1218
1219
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1220
1221
   unlock_rtnl:
  	rtnl_unlock();
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1222
1223
1224
1225
1226
1227
1228
1229
  	return err;
  }
  
  static int nl80211_del_beacon(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
3b85875a2   Johannes Berg   nl80211: rework l...
1230
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1231
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1232
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1233
  		goto unlock_rtnl;
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1234
1235
1236
1237
1238
  
  	if (!drv->ops->del_beacon) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
1239
1240
1241
1242
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1243
  	err = drv->ops->del_beacon(&drv->wiphy, dev);
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1244
1245
1246
1247
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1248
1249
   unlock_rtnl:
  	rtnl_unlock();
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
1250
1251
  	return err;
  }
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1252
1253
1254
1255
  static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = {
  	[NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG },
  	[NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG },
  	[NL80211_STA_FLAG_WME] = { .type = NLA_FLAG },
0e46724a4   Jouni Malinen   nl80211: Validate...
1256
  	[NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG },
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1257
  };
eccb8e8f0   Johannes Berg   nl80211: improve ...
1258
1259
  static int parse_station_flags(struct genl_info *info,
  			       struct station_parameters *params)
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1260
1261
  {
  	struct nlattr *flags[NL80211_STA_FLAG_MAX + 1];
eccb8e8f0   Johannes Berg   nl80211: improve ...
1262
  	struct nlattr *nla;
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1263
  	int flag;
eccb8e8f0   Johannes Berg   nl80211: improve ...
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
  	/*
  	 * Try parsing the new attribute first so userspace
  	 * can specify both for older kernels.
  	 */
  	nla = info->attrs[NL80211_ATTR_STA_FLAGS2];
  	if (nla) {
  		struct nl80211_sta_flag_update *sta_flags;
  
  		sta_flags = nla_data(nla);
  		params->sta_flags_mask = sta_flags->mask;
  		params->sta_flags_set = sta_flags->set;
  		if ((params->sta_flags_mask |
  		     params->sta_flags_set) & BIT(__NL80211_STA_FLAG_INVALID))
  			return -EINVAL;
  		return 0;
  	}
  
  	/* if present, parse the old attribute */
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1282

eccb8e8f0   Johannes Berg   nl80211: improve ...
1283
  	nla = info->attrs[NL80211_ATTR_STA_FLAGS];
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1284
1285
1286
1287
1288
1289
  	if (!nla)
  		return 0;
  
  	if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX,
  			     nla, sta_flags_policy))
  		return -EINVAL;
eccb8e8f0   Johannes Berg   nl80211: improve ...
1290
1291
  	params->sta_flags_mask = (1 << __NL80211_STA_FLAG_AFTER_LAST) - 1;
  	params->sta_flags_mask &= ~1;
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1292
1293
1294
  
  	for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++)
  		if (flags[flag])
eccb8e8f0   Johannes Berg   nl80211: improve ...
1295
  			params->sta_flags_set |= (1<<flag);
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1296
1297
1298
  
  	return 0;
  }
420e7fabd   Henning Rogge   nl80211: Add sign...
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
  static u16 nl80211_calculate_bitrate(struct rate_info *rate)
  {
  	int modulation, streams, bitrate;
  
  	if (!(rate->flags & RATE_INFO_FLAGS_MCS))
  		return rate->legacy;
  
  	/* the formula below does only work for MCS values smaller than 32 */
  	if (rate->mcs >= 32)
  		return 0;
  
  	modulation = rate->mcs & 7;
  	streams = (rate->mcs >> 3) + 1;
  
  	bitrate = (rate->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH) ?
  			13500000 : 6500000;
  
  	if (modulation < 4)
  		bitrate *= (modulation + 1);
  	else if (modulation == 4)
  		bitrate *= (modulation + 2);
  	else
  		bitrate *= (modulation + 3);
  
  	bitrate *= streams;
  
  	if (rate->flags & RATE_INFO_FLAGS_SHORT_GI)
  		bitrate = (bitrate / 9) * 10;
  
  	/* do NOT round down here */
  	return (bitrate + 50000) / 100000;
  }
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1331
1332
  static int nl80211_send_station(struct sk_buff *msg, u32 pid, u32 seq,
  				int flags, struct net_device *dev,
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1333
  				u8 *mac_addr, struct station_info *sinfo)
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1334
1335
  {
  	void *hdr;
420e7fabd   Henning Rogge   nl80211: Add sign...
1336
1337
  	struct nlattr *sinfoattr, *txrate;
  	u16 bitrate;
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1338
1339
1340
1341
1342
1343
1344
  
  	hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_STATION);
  	if (!hdr)
  		return -1;
  
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex);
  	NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1345
1346
  	sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO);
  	if (!sinfoattr)
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1347
  		goto nla_put_failure;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
  	if (sinfo->filled & STATION_INFO_INACTIVE_TIME)
  		NLA_PUT_U32(msg, NL80211_STA_INFO_INACTIVE_TIME,
  			    sinfo->inactive_time);
  	if (sinfo->filled & STATION_INFO_RX_BYTES)
  		NLA_PUT_U32(msg, NL80211_STA_INFO_RX_BYTES,
  			    sinfo->rx_bytes);
  	if (sinfo->filled & STATION_INFO_TX_BYTES)
  		NLA_PUT_U32(msg, NL80211_STA_INFO_TX_BYTES,
  			    sinfo->tx_bytes);
  	if (sinfo->filled & STATION_INFO_LLID)
  		NLA_PUT_U16(msg, NL80211_STA_INFO_LLID,
  			    sinfo->llid);
  	if (sinfo->filled & STATION_INFO_PLID)
  		NLA_PUT_U16(msg, NL80211_STA_INFO_PLID,
  			    sinfo->plid);
  	if (sinfo->filled & STATION_INFO_PLINK_STATE)
  		NLA_PUT_U8(msg, NL80211_STA_INFO_PLINK_STATE,
  			    sinfo->plink_state);
420e7fabd   Henning Rogge   nl80211: Add sign...
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
  	if (sinfo->filled & STATION_INFO_SIGNAL)
  		NLA_PUT_U8(msg, NL80211_STA_INFO_SIGNAL,
  			   sinfo->signal);
  	if (sinfo->filled & STATION_INFO_TX_BITRATE) {
  		txrate = nla_nest_start(msg, NL80211_STA_INFO_TX_BITRATE);
  		if (!txrate)
  			goto nla_put_failure;
  
  		/* nl80211_calculate_bitrate will return 0 for mcs >= 32 */
  		bitrate = nl80211_calculate_bitrate(&sinfo->txrate);
  		if (bitrate > 0)
  			NLA_PUT_U16(msg, NL80211_RATE_INFO_BITRATE, bitrate);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1378

420e7fabd   Henning Rogge   nl80211: Add sign...
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
  		if (sinfo->txrate.flags & RATE_INFO_FLAGS_MCS)
  			NLA_PUT_U8(msg, NL80211_RATE_INFO_MCS,
  				    sinfo->txrate.mcs);
  		if (sinfo->txrate.flags & RATE_INFO_FLAGS_40_MHZ_WIDTH)
  			NLA_PUT_FLAG(msg, NL80211_RATE_INFO_40_MHZ_WIDTH);
  		if (sinfo->txrate.flags & RATE_INFO_FLAGS_SHORT_GI)
  			NLA_PUT_FLAG(msg, NL80211_RATE_INFO_SHORT_GI);
  
  		nla_nest_end(msg, txrate);
  	}
98c8a60a0   Jouni Malinen   nl80211: Provide ...
1389
1390
1391
1392
1393
1394
  	if (sinfo->filled & STATION_INFO_RX_PACKETS)
  		NLA_PUT_U32(msg, NL80211_STA_INFO_RX_PACKETS,
  			    sinfo->rx_packets);
  	if (sinfo->filled & STATION_INFO_TX_PACKETS)
  		NLA_PUT_U32(msg, NL80211_STA_INFO_TX_PACKETS,
  			    sinfo->tx_packets);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1395
  	nla_nest_end(msg, sinfoattr);
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1396
1397
1398
1399
  
  	return genlmsg_end(msg, hdr);
  
   nla_put_failure:
bc3ed28ca   Thomas Graf   netlink: Improve ...
1400
1401
  	genlmsg_cancel(msg, hdr);
  	return -EMSGSIZE;
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1402
  }
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1403
  static int nl80211_dump_station(struct sk_buff *skb,
bba95fefb   Johannes Berg   nl80211: fix dump...
1404
  				struct netlink_callback *cb)
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1405
  {
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1406
1407
  	struct station_info sinfo;
  	struct cfg80211_registered_device *dev;
bba95fefb   Johannes Berg   nl80211: fix dump...
1408
  	struct net_device *netdev;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1409
  	u8 mac_addr[ETH_ALEN];
bba95fefb   Johannes Berg   nl80211: fix dump...
1410
1411
  	int ifidx = cb->args[0];
  	int sta_idx = cb->args[1];
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1412
  	int err;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1413

bba95fefb   Johannes Berg   nl80211: fix dump...
1414
1415
1416
1417
1418
1419
  	if (!ifidx) {
  		err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
  				  nl80211_fam.attrbuf, nl80211_fam.maxattr,
  				  nl80211_policy);
  		if (err)
  			return err;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1420

bba95fefb   Johannes Berg   nl80211: fix dump...
1421
1422
  		if (!nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX])
  			return -EINVAL;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1423

bba95fefb   Johannes Berg   nl80211: fix dump...
1424
1425
1426
  		ifidx = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]);
  		if (!ifidx)
  			return -EINVAL;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1427
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1428

3b85875a2   Johannes Berg   nl80211: rework l...
1429
1430
1431
1432
1433
1434
1435
  	rtnl_lock();
  
  	netdev = __dev_get_by_index(&init_net, ifidx);
  	if (!netdev) {
  		err = -ENODEV;
  		goto out_rtnl;
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1436

bba95fefb   Johannes Berg   nl80211: fix dump...
1437
1438
1439
  	dev = cfg80211_get_dev_from_ifindex(ifidx);
  	if (IS_ERR(dev)) {
  		err = PTR_ERR(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1440
  		goto out_rtnl;
bba95fefb   Johannes Berg   nl80211: fix dump...
1441
1442
1443
  	}
  
  	if (!dev->ops->dump_station) {
eec60b037   Jouni Malinen   nl80211: Check if...
1444
  		err = -EOPNOTSUPP;
bba95fefb   Johannes Berg   nl80211: fix dump...
1445
1446
  		goto out_err;
  	}
bba95fefb   Johannes Berg   nl80211: fix dump...
1447
1448
1449
1450
1451
1452
  	while (1) {
  		err = dev->ops->dump_station(&dev->wiphy, netdev, sta_idx,
  					     mac_addr, &sinfo);
  		if (err == -ENOENT)
  			break;
  		if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1453
  			goto out_err;
bba95fefb   Johannes Berg   nl80211: fix dump...
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
  
  		if (nl80211_send_station(skb,
  				NETLINK_CB(cb->skb).pid,
  				cb->nlh->nlmsg_seq, NLM_F_MULTI,
  				netdev, mac_addr,
  				&sinfo) < 0)
  			goto out;
  
  		sta_idx++;
  	}
  
  
   out:
  	cb->args[1] = sta_idx;
  	err = skb->len;
bba95fefb   Johannes Berg   nl80211: fix dump...
1469
1470
   out_err:
  	cfg80211_put_dev(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1471
1472
   out_rtnl:
  	rtnl_unlock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1473
1474
  
  	return err;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1475
  }
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1476

5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1477
1478
  static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
  {
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1479
1480
1481
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1482
  	struct station_info sinfo;
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1483
1484
  	struct sk_buff *msg;
  	u8 *mac_addr = NULL;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1485
  	memset(&sinfo, 0, sizeof(sinfo));
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1486
1487
1488
1489
1490
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
  
  	mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3b85875a2   Johannes Berg   nl80211: rework l...
1491
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1492
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1493
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1494
  		goto out_rtnl;
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1495
1496
1497
1498
1499
  
  	if (!drv->ops->get_station) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1500
  	err = drv->ops->get_station(&drv->wiphy, dev, mac_addr, &sinfo);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1501
1502
  	if (err)
  		goto out;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
1503
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1504
1505
1506
1507
  	if (!msg)
  		goto out;
  
  	if (nl80211_send_station(msg, info->snd_pid, info->snd_seq, 0,
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1508
  				 dev, mac_addr, &sinfo) < 0)
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1509
1510
1511
1512
1513
1514
1515
  		goto out_free;
  
  	err = genlmsg_unicast(msg, info->snd_pid);
  	goto out;
  
   out_free:
  	nlmsg_free(msg);
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1516
1517
1518
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1519
1520
   out_rtnl:
  	rtnl_unlock();
fd5b74dcb   Johannes Berg   cfg80211/nl80211:...
1521
  	return err;
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
  }
  
  /*
   * Get vlan interface making sure it is on the right wiphy.
   */
  static int get_vlan(struct nlattr *vlanattr,
  		    struct cfg80211_registered_device *rdev,
  		    struct net_device **vlan)
  {
  	*vlan = NULL;
  
  	if (vlanattr) {
  		*vlan = dev_get_by_index(&init_net, nla_get_u32(vlanattr));
  		if (!*vlan)
  			return -ENODEV;
  		if (!(*vlan)->ieee80211_ptr)
  			return -EINVAL;
  		if ((*vlan)->ieee80211_ptr->wiphy != &rdev->wiphy)
  			return -EINVAL;
  	}
  	return 0;
  }
  
  static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	struct station_parameters params;
  	u8 *mac_addr = NULL;
  
  	memset(&params, 0, sizeof(params));
  
  	params.listen_interval = -1;
  
  	if (info->attrs[NL80211_ATTR_STA_AID])
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
  
  	mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
  
  	if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) {
  		params.supported_rates =
  			nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
  		params.supported_rates_len =
  			nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
  	}
  
  	if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
  		params.listen_interval =
  		    nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
36aedc903   Jouni Malinen   mac80211/cfg80211...
1575
1576
1577
  	if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
  		params.ht_capa =
  			nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
eccb8e8f0   Johannes Berg   nl80211: improve ...
1578
  	if (parse_station_flags(info, &params))
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1579
  		return -EINVAL;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1580
1581
1582
  	if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION])
  		params.plink_action =
  		    nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
3b85875a2   Johannes Berg   nl80211: rework l...
1583
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1584
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1585
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1586
  		goto out_rtnl;
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1587

a97f4424f   Johannes Berg   cfg80211: validat...
1588
1589
  	err = get_vlan(info->attrs[NL80211_ATTR_STA_VLAN], drv, &params.vlan);
  	if (err)
034d655ee   Johannes Berg   cfg80211: disallo...
1590
  		goto out;
a97f4424f   Johannes Berg   cfg80211: validat...
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
  
  	/* validate settings */
  	err = 0;
  
  	switch (dev->ieee80211_ptr->iftype) {
  	case NL80211_IFTYPE_AP:
  	case NL80211_IFTYPE_AP_VLAN:
  		/* disallow mesh-specific things */
  		if (params.plink_action)
  			err = -EINVAL;
  		break;
  	case NL80211_IFTYPE_STATION:
  		/* disallow everything but AUTHORIZED flag */
  		if (params.plink_action)
  			err = -EINVAL;
  		if (params.vlan)
  			err = -EINVAL;
  		if (params.supported_rates)
  			err = -EINVAL;
  		if (params.ht_capa)
  			err = -EINVAL;
  		if (params.listen_interval >= 0)
  			err = -EINVAL;
  		if (params.sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED))
  			err = -EINVAL;
  		break;
  	case NL80211_IFTYPE_MESH_POINT:
  		/* disallow things mesh doesn't support */
  		if (params.vlan)
  			err = -EINVAL;
  		if (params.ht_capa)
  			err = -EINVAL;
  		if (params.listen_interval >= 0)
  			err = -EINVAL;
  		if (params.supported_rates)
  			err = -EINVAL;
  		if (params.sta_flags_mask)
  			err = -EINVAL;
  		break;
  	default:
  		err = -EINVAL;
034d655ee   Johannes Berg   cfg80211: disallo...
1632
  	}
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1633
1634
1635
1636
1637
1638
1639
  	if (err)
  		goto out;
  
  	if (!drv->ops->change_station) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1640
  	err = drv->ops->change_station(&drv->wiphy, dev, mac_addr, &params);
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1641
1642
1643
1644
1645
1646
  
   out:
  	if (params.vlan)
  		dev_put(params.vlan);
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1647
1648
   out_rtnl:
  	rtnl_unlock();
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
  	return err;
  }
  
  static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	struct station_parameters params;
  	u8 *mac_addr = NULL;
  
  	memset(&params, 0, sizeof(params));
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
  	if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES])
  		return -EINVAL;
  
  	mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
  	params.supported_rates =
  		nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
  	params.supported_rates_len =
  		nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
  	params.listen_interval =
  		nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
51b50fbeb   Johannes Berg   cfg80211: validat...
1677

a97f4424f   Johannes Berg   cfg80211: validat...
1678
1679
1680
1681
1682
  	if (info->attrs[NL80211_ATTR_STA_AID]) {
  		params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
  		if (!params.aid || params.aid > IEEE80211_MAX_AID)
  			return -EINVAL;
  	}
51b50fbeb   Johannes Berg   cfg80211: validat...
1683

36aedc903   Jouni Malinen   mac80211/cfg80211...
1684
1685
1686
  	if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
  		params.ht_capa =
  			nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1687

eccb8e8f0   Johannes Berg   nl80211: improve ...
1688
  	if (parse_station_flags(info, &params))
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1689
  		return -EINVAL;
3b85875a2   Johannes Berg   nl80211: rework l...
1690
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1691
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1692
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1693
  		goto out_rtnl;
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1694

a97f4424f   Johannes Berg   cfg80211: validat...
1695
1696
  	err = get_vlan(info->attrs[NL80211_ATTR_STA_VLAN], drv, &params.vlan);
  	if (err)
e80cf8537   Johannes Berg   cfg80211: disallo...
1697
  		goto out;
a97f4424f   Johannes Berg   cfg80211: validat...
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
  
  	/* validate settings */
  	err = 0;
  
  	switch (dev->ieee80211_ptr->iftype) {
  	case NL80211_IFTYPE_AP:
  	case NL80211_IFTYPE_AP_VLAN:
  		/* all ok but must have AID */
  		if (!params.aid)
  			err = -EINVAL;
  		break;
  	case NL80211_IFTYPE_MESH_POINT:
  		/* disallow things mesh doesn't support */
  		if (params.vlan)
  			err = -EINVAL;
  		if (params.aid)
  			err = -EINVAL;
  		if (params.ht_capa)
  			err = -EINVAL;
  		if (params.listen_interval >= 0)
  			err = -EINVAL;
  		if (params.supported_rates)
  			err = -EINVAL;
  		if (params.sta_flags_mask)
  			err = -EINVAL;
  		break;
  	default:
  		err = -EINVAL;
e80cf8537   Johannes Berg   cfg80211: disallo...
1726
  	}
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1727
1728
1729
1730
1731
1732
1733
  	if (err)
  		goto out;
  
  	if (!drv->ops->add_station) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
35a8efe1a   Jouni Malinen   nl80211: Check th...
1734
1735
1736
1737
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1738
  	err = drv->ops->add_station(&drv->wiphy, dev, mac_addr, &params);
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1739
1740
1741
1742
1743
1744
  
   out:
  	if (params.vlan)
  		dev_put(params.vlan);
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1745
1746
   out_rtnl:
  	rtnl_unlock();
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
  	return err;
  }
  
  static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	u8 *mac_addr = NULL;
  
  	if (info->attrs[NL80211_ATTR_MAC])
  		mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3b85875a2   Johannes Berg   nl80211: rework l...
1759
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1760
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1761
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1762
  		goto out_rtnl;
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1763

e80cf8537   Johannes Berg   cfg80211: disallo...
1764
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
155cc9e4b   Andrey Yurovsky   cfg80211: allow a...
1765
1766
  	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
  	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) {
e80cf8537   Johannes Berg   cfg80211: disallo...
1767
1768
1769
  		err = -EINVAL;
  		goto out;
  	}
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1770
1771
1772
1773
  	if (!drv->ops->del_station) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1774
  	err = drv->ops->del_station(&drv->wiphy, dev, mac_addr);
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1775
1776
1777
1778
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1779
1780
   out_rtnl:
  	rtnl_unlock();
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
1781
1782
  	return err;
  }
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
  static int nl80211_send_mpath(struct sk_buff *msg, u32 pid, u32 seq,
  				int flags, struct net_device *dev,
  				u8 *dst, u8 *next_hop,
  				struct mpath_info *pinfo)
  {
  	void *hdr;
  	struct nlattr *pinfoattr;
  
  	hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_STATION);
  	if (!hdr)
  		return -1;
  
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex);
  	NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, dst);
  	NLA_PUT(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop);
  
  	pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO);
  	if (!pinfoattr)
  		goto nla_put_failure;
  	if (pinfo->filled & MPATH_INFO_FRAME_QLEN)
  		NLA_PUT_U32(msg, NL80211_MPATH_INFO_FRAME_QLEN,
  			    pinfo->frame_qlen);
  	if (pinfo->filled & MPATH_INFO_DSN)
  		NLA_PUT_U32(msg, NL80211_MPATH_INFO_DSN,
  			    pinfo->dsn);
  	if (pinfo->filled & MPATH_INFO_METRIC)
  		NLA_PUT_U32(msg, NL80211_MPATH_INFO_METRIC,
  			    pinfo->metric);
  	if (pinfo->filled & MPATH_INFO_EXPTIME)
  		NLA_PUT_U32(msg, NL80211_MPATH_INFO_EXPTIME,
  			    pinfo->exptime);
  	if (pinfo->filled & MPATH_INFO_FLAGS)
  		NLA_PUT_U8(msg, NL80211_MPATH_INFO_FLAGS,
  			    pinfo->flags);
  	if (pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT)
  		NLA_PUT_U32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT,
  			    pinfo->discovery_timeout);
  	if (pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES)
  		NLA_PUT_U8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES,
  			    pinfo->discovery_retries);
  
  	nla_nest_end(msg, pinfoattr);
  
  	return genlmsg_end(msg, hdr);
  
   nla_put_failure:
bc3ed28ca   Thomas Graf   netlink: Improve ...
1829
1830
  	genlmsg_cancel(msg, hdr);
  	return -EMSGSIZE;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1831
1832
1833
  }
  
  static int nl80211_dump_mpath(struct sk_buff *skb,
bba95fefb   Johannes Berg   nl80211: fix dump...
1834
  			      struct netlink_callback *cb)
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1835
  {
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1836
1837
  	struct mpath_info pinfo;
  	struct cfg80211_registered_device *dev;
bba95fefb   Johannes Berg   nl80211: fix dump...
1838
  	struct net_device *netdev;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1839
1840
  	u8 dst[ETH_ALEN];
  	u8 next_hop[ETH_ALEN];
bba95fefb   Johannes Berg   nl80211: fix dump...
1841
1842
  	int ifidx = cb->args[0];
  	int path_idx = cb->args[1];
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1843
  	int err;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1844

bba95fefb   Johannes Berg   nl80211: fix dump...
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
  	if (!ifidx) {
  		err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
  				  nl80211_fam.attrbuf, nl80211_fam.maxattr,
  				  nl80211_policy);
  		if (err)
  			return err;
  
  		if (!nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX])
  			return -EINVAL;
  
  		ifidx = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]);
  		if (!ifidx)
  			return -EINVAL;
  	}
3b85875a2   Johannes Berg   nl80211: rework l...
1859
1860
1861
1862
1863
1864
1865
  	rtnl_lock();
  
  	netdev = __dev_get_by_index(&init_net, ifidx);
  	if (!netdev) {
  		err = -ENODEV;
  		goto out_rtnl;
  	}
bba95fefb   Johannes Berg   nl80211: fix dump...
1866
1867
1868
1869
  
  	dev = cfg80211_get_dev_from_ifindex(ifidx);
  	if (IS_ERR(dev)) {
  		err = PTR_ERR(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1870
  		goto out_rtnl;
bba95fefb   Johannes Berg   nl80211: fix dump...
1871
1872
1873
  	}
  
  	if (!dev->ops->dump_mpath) {
eec60b037   Jouni Malinen   nl80211: Check if...
1874
  		err = -EOPNOTSUPP;
bba95fefb   Johannes Berg   nl80211: fix dump...
1875
1876
  		goto out_err;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
1877
1878
1879
1880
  	if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
bba95fefb   Johannes Berg   nl80211: fix dump...
1881
1882
1883
1884
  	while (1) {
  		err = dev->ops->dump_mpath(&dev->wiphy, netdev, path_idx,
  					   dst, next_hop, &pinfo);
  		if (err == -ENOENT)
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1885
  			break;
bba95fefb   Johannes Berg   nl80211: fix dump...
1886
  		if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1887
  			goto out_err;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1888

bba95fefb   Johannes Berg   nl80211: fix dump...
1889
1890
1891
1892
1893
  		if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).pid,
  				       cb->nlh->nlmsg_seq, NLM_F_MULTI,
  				       netdev, dst, next_hop,
  				       &pinfo) < 0)
  			goto out;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1894

bba95fefb   Johannes Berg   nl80211: fix dump...
1895
  		path_idx++;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1896
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1897

2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1898

bba95fefb   Johannes Berg   nl80211: fix dump...
1899
1900
1901
   out:
  	cb->args[1] = path_idx;
  	err = skb->len;
bba95fefb   Johannes Berg   nl80211: fix dump...
1902
1903
   out_err:
  	cfg80211_put_dev(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1904
1905
   out_rtnl:
  	rtnl_unlock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1906
1907
  
  	return err;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
  }
  
  static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	struct mpath_info pinfo;
  	struct sk_buff *msg;
  	u8 *dst = NULL;
  	u8 next_hop[ETH_ALEN];
  
  	memset(&pinfo, 0, sizeof(pinfo));
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
  
  	dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
3b85875a2   Johannes Berg   nl80211: rework l...
1926
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1927
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1928
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1929
  		goto out_rtnl;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1930
1931
1932
1933
1934
  
  	if (!drv->ops->get_mpath) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
1935
1936
1937
1938
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1939
  	err = drv->ops->get_mpath(&drv->wiphy, dev, dst, next_hop, &pinfo);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1940
1941
  	if (err)
  		goto out;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
1942
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
  	if (!msg)
  		goto out;
  
  	if (nl80211_send_mpath(msg, info->snd_pid, info->snd_seq, 0,
  				 dev, dst, next_hop, &pinfo) < 0)
  		goto out_free;
  
  	err = genlmsg_unicast(msg, info->snd_pid);
  	goto out;
  
   out_free:
  	nlmsg_free(msg);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1955
1956
1957
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
1958
1959
   out_rtnl:
  	rtnl_unlock();
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
  	return err;
  }
  
  static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	u8 *dst = NULL;
  	u8 *next_hop = NULL;
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
  		return -EINVAL;
  
  	dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
  	next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
3b85875a2   Johannes Berg   nl80211: rework l...
1979
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
1980
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1981
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
1982
  		goto out_rtnl;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1983
1984
1985
1986
1987
  
  	if (!drv->ops->change_mpath) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
1988
1989
1990
1991
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
35a8efe1a   Jouni Malinen   nl80211: Check th...
1992
1993
1994
1995
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1996
  	err = drv->ops->change_mpath(&drv->wiphy, dev, dst, next_hop);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
1997
1998
1999
2000
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
2001
2002
   out_rtnl:
  	rtnl_unlock();
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
  	return err;
  }
  static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	u8 *dst = NULL;
  	u8 *next_hop = NULL;
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
  		return -EINVAL;
  
  	dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
  	next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
3b85875a2   Johannes Berg   nl80211: rework l...
2021
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
2022
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2023
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
2024
  		goto out_rtnl;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2025
2026
2027
2028
2029
  
  	if (!drv->ops->add_mpath) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
2030
2031
2032
2033
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
35a8efe1a   Jouni Malinen   nl80211: Check th...
2034
2035
2036
2037
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2038
  	err = drv->ops->add_mpath(&drv->wiphy, dev, dst, next_hop);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2039
2040
2041
2042
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
2043
2044
   out_rtnl:
  	rtnl_unlock();
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
  	return err;
  }
  
  static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	u8 *dst = NULL;
  
  	if (info->attrs[NL80211_ATTR_MAC])
  		dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
3b85875a2   Johannes Berg   nl80211: rework l...
2057
  	rtnl_lock();
bba95fefb   Johannes Berg   nl80211: fix dump...
2058
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2059
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
2060
  		goto out_rtnl;
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2061
2062
2063
2064
2065
  
  	if (!drv->ops->del_mpath) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2066
  	err = drv->ops->del_mpath(&drv->wiphy, dev, dst);
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2067
2068
2069
2070
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
2071
2072
   out_rtnl:
  	rtnl_unlock();
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
2073
2074
  	return err;
  }
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
  static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	int err;
  	struct net_device *dev;
  	struct bss_parameters params;
  
  	memset(&params, 0, sizeof(params));
  	/* default to not changing parameters */
  	params.use_cts_prot = -1;
  	params.use_short_preamble = -1;
  	params.use_short_slot_time = -1;
  
  	if (info->attrs[NL80211_ATTR_BSS_CTS_PROT])
  		params.use_cts_prot =
  		    nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]);
  	if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE])
  		params.use_short_preamble =
  		    nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]);
  	if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME])
  		params.use_short_slot_time =
  		    nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]);
90c97a040   Jouni Malinen   nl80211: Add basi...
2097
2098
2099
2100
2101
2102
  	if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
  		params.basic_rates =
  			nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
  		params.basic_rates_len =
  			nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
  	}
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
2103

3b85875a2   Johannes Berg   nl80211: rework l...
2104
  	rtnl_lock();
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
2105
2106
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
2107
  		goto out_rtnl;
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
2108
2109
2110
2111
2112
  
  	if (!drv->ops->change_bss) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
2113
2114
2115
2116
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
2117
  	err = drv->ops->change_bss(&drv->wiphy, dev, &params);
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
2118
2119
2120
2121
  
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
2122
2123
   out_rtnl:
  	rtnl_unlock();
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
2124
2125
  	return err;
  }
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
  static const struct nla_policy
  	reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = {
  	[NL80211_ATTR_REG_RULE_FLAGS]		= { .type = NLA_U32 },
  	[NL80211_ATTR_FREQ_RANGE_START]		= { .type = NLA_U32 },
  	[NL80211_ATTR_FREQ_RANGE_END]		= { .type = NLA_U32 },
  	[NL80211_ATTR_FREQ_RANGE_MAX_BW]	= { .type = NLA_U32 },
  	[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]	= { .type = NLA_U32 },
  	[NL80211_ATTR_POWER_RULE_MAX_EIRP]	= { .type = NLA_U32 },
  };
  
  static int parse_reg_rule(struct nlattr *tb[],
  	struct ieee80211_reg_rule *reg_rule)
  {
  	struct ieee80211_freq_range *freq_range = &reg_rule->freq_range;
  	struct ieee80211_power_rule *power_rule = &reg_rule->power_rule;
  
  	if (!tb[NL80211_ATTR_REG_RULE_FLAGS])
  		return -EINVAL;
  	if (!tb[NL80211_ATTR_FREQ_RANGE_START])
  		return -EINVAL;
  	if (!tb[NL80211_ATTR_FREQ_RANGE_END])
  		return -EINVAL;
  	if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW])
  		return -EINVAL;
  	if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP])
  		return -EINVAL;
  
  	reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]);
  
  	freq_range->start_freq_khz =
  		nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]);
  	freq_range->end_freq_khz =
  		nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]);
  	freq_range->max_bandwidth_khz =
  		nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]);
  
  	power_rule->max_eirp =
  		nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]);
  
  	if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN])
  		power_rule->max_antenna_gain =
  			nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]);
  
  	return 0;
  }
  
  static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info)
  {
  	int r;
  	char *data = NULL;
80778f18c   Luis R. Rodriguez   nl80211: disallow...
2176
2177
2178
2179
2180
2181
2182
2183
  	/*
  	 * You should only get this when cfg80211 hasn't yet initialized
  	 * completely when built-in to the kernel right between the time
  	 * window between nl80211_init() and regulatory_init(), if that is
  	 * even possible.
  	 */
  	mutex_lock(&cfg80211_mutex);
  	if (unlikely(!cfg80211_regdomain)) {
fe33eb390   Luis R. Rodriguez   cfg80211: move al...
2184
2185
  		mutex_unlock(&cfg80211_mutex);
  		return -EINPROGRESS;
80778f18c   Luis R. Rodriguez   nl80211: disallow...
2186
  	}
fe33eb390   Luis R. Rodriguez   cfg80211: move al...
2187
  	mutex_unlock(&cfg80211_mutex);
80778f18c   Luis R. Rodriguez   nl80211: disallow...
2188

fe33eb390   Luis R. Rodriguez   cfg80211: move al...
2189
2190
  	if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
  		return -EINVAL;
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2191
2192
2193
2194
2195
  
  	data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
  
  #ifdef CONFIG_WIRELESS_OLD_REGULATORY
  	/* We ignore world regdom requests with the old regdom setup */
fe33eb390   Luis R. Rodriguez   cfg80211: move al...
2196
2197
  	if (is_world_regdom(data))
  		return -EINVAL;
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2198
  #endif
fe33eb390   Luis R. Rodriguez   cfg80211: move al...
2199
2200
  
  	r = regulatory_hint_user(data);
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2201
2202
  	return r;
  }
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
  static int nl80211_get_mesh_params(struct sk_buff *skb,
  	struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	struct mesh_config cur_params;
  	int err;
  	struct net_device *dev;
  	void *hdr;
  	struct nlattr *pinfoattr;
  	struct sk_buff *msg;
3b85875a2   Johannes Berg   nl80211: rework l...
2213
  	rtnl_lock();
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2214
2215
2216
  	/* Look up our device */
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
2217
  		goto out_rtnl;
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2218

f3f925867   Jouni Malinen   nl80211: Check th...
2219
2220
2221
2222
  	if (!drv->ops->get_mesh_params) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2223
  	/* Get the mesh params */
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2224
  	err = drv->ops->get_mesh_params(&drv->wiphy, dev, &cur_params);
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2225
2226
2227
2228
  	if (err)
  		goto out;
  
  	/* Draw up a netlink message to send back */
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
2229
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
  	if (!msg) {
  		err = -ENOBUFS;
  		goto out;
  	}
  	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
  			     NL80211_CMD_GET_MESH_PARAMS);
  	if (!hdr)
  		goto nla_put_failure;
  	pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_PARAMS);
  	if (!pinfoattr)
  		goto nla_put_failure;
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex);
  	NLA_PUT_U16(msg, NL80211_MESHCONF_RETRY_TIMEOUT,
  			cur_params.dot11MeshRetryTimeout);
  	NLA_PUT_U16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT,
  			cur_params.dot11MeshConfirmTimeout);
  	NLA_PUT_U16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT,
  			cur_params.dot11MeshHoldingTimeout);
  	NLA_PUT_U16(msg, NL80211_MESHCONF_MAX_PEER_LINKS,
  			cur_params.dot11MeshMaxPeerLinks);
  	NLA_PUT_U8(msg, NL80211_MESHCONF_MAX_RETRIES,
  			cur_params.dot11MeshMaxRetries);
  	NLA_PUT_U8(msg, NL80211_MESHCONF_TTL,
  			cur_params.dot11MeshTTL);
  	NLA_PUT_U8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
  			cur_params.auto_open_plinks);
  	NLA_PUT_U8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
  			cur_params.dot11MeshHWMPmaxPREQretries);
  	NLA_PUT_U32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME,
  			cur_params.path_refresh_time);
  	NLA_PUT_U16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
  			cur_params.min_discovery_timeout);
  	NLA_PUT_U32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
  			cur_params.dot11MeshHWMPactivePathTimeout);
  	NLA_PUT_U16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
  			cur_params.dot11MeshHWMPpreqMinInterval);
  	NLA_PUT_U16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
  			cur_params.dot11MeshHWMPnetDiameterTraversalTime);
  	nla_nest_end(msg, pinfoattr);
  	genlmsg_end(msg, hdr);
  	err = genlmsg_unicast(msg, info->snd_pid);
  	goto out;
3b85875a2   Johannes Berg   nl80211: rework l...
2272
   nla_put_failure:
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2273
2274
  	genlmsg_cancel(msg, hdr);
  	err = -EMSGSIZE;
3b85875a2   Johannes Berg   nl80211: rework l...
2275
   out:
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2276
2277
2278
  	/* Cleanup */
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
2279
2280
   out_rtnl:
  	rtnl_unlock();
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
  	return err;
  }
  
  #define FILL_IN_MESH_PARAM_IF_SET(table, cfg, param, mask, attr_num, nla_fn) \
  do {\
  	if (table[attr_num]) {\
  		cfg.param = nla_fn(table[attr_num]); \
  		mask |= (1 << (attr_num - 1)); \
  	} \
  } while (0);\
  
  static struct nla_policy
  nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] __read_mostly = {
  	[NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 },
  	[NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 },
  	[NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 },
  	[NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 },
  	[NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 },
  	[NL80211_MESHCONF_TTL] = { .type = NLA_U8 },
  	[NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
  
  	[NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 },
  	[NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 },
  	[NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 },
  	[NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 },
  	[NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 },
  	[NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 },
  };
  
  static int nl80211_set_mesh_params(struct sk_buff *skb, struct genl_info *info)
  {
  	int err;
  	u32 mask;
  	struct cfg80211_registered_device *drv;
  	struct net_device *dev;
  	struct mesh_config cfg;
  	struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1];
  	struct nlattr *parent_attr;
  
  	parent_attr = info->attrs[NL80211_ATTR_MESH_PARAMS];
  	if (!parent_attr)
  		return -EINVAL;
  	if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX,
  			parent_attr, nl80211_meshconf_params_policy))
  		return -EINVAL;
3b85875a2   Johannes Berg   nl80211: rework l...
2326
  	rtnl_lock();
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2327
2328
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
2329
  		goto out_rtnl;
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2330

f3f925867   Jouni Malinen   nl80211: Check th...
2331
2332
2333
2334
  	if (!drv->ops->set_mesh_params) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
  	/* This makes sure that there aren't more than 32 mesh config
  	 * parameters (otherwise our bitfield scheme would not work.) */
  	BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32);
  
  	/* Fill in the params struct */
  	mask = 0;
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout,
  			mask, NL80211_MESHCONF_RETRY_TIMEOUT, nla_get_u16);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout,
  			mask, NL80211_MESHCONF_CONFIRM_TIMEOUT, nla_get_u16);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout,
  			mask, NL80211_MESHCONF_HOLDING_TIMEOUT, nla_get_u16);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks,
  			mask, NL80211_MESHCONF_MAX_PEER_LINKS, nla_get_u16);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries,
  			mask, NL80211_MESHCONF_MAX_RETRIES, nla_get_u8);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL,
  			mask, NL80211_MESHCONF_TTL, nla_get_u8);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks,
  			mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS, nla_get_u8);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries,
  			mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
  			nla_get_u8);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time,
  			mask, NL80211_MESHCONF_PATH_REFRESH_TIME, nla_get_u32);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout,
  			mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
  			nla_get_u16);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout,
  			mask, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
  			nla_get_u32);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval,
  			mask, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
  			nla_get_u16);
  	FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
  			dot11MeshHWMPnetDiameterTraversalTime,
  			mask, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
  			nla_get_u16);
  
  	/* Apply changes */
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2375
  	err = drv->ops->set_mesh_params(&drv->wiphy, dev, &cfg, mask);
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2376

f3f925867   Jouni Malinen   nl80211: Check th...
2377
   out:
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2378
2379
2380
  	/* cleanup */
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
2381
2382
   out_rtnl:
  	rtnl_unlock();
93da9cc17   colin@cozybit.com   Add nl80211 comma...
2383
2384
2385
2386
  	return err;
  }
  
  #undef FILL_IN_MESH_PARAM_IF_SET
f130347c2   Luis R. Rodriguez   cfg80211: add get...
2387
2388
2389
2390
2391
2392
2393
  static int nl80211_get_reg(struct sk_buff *skb, struct genl_info *info)
  {
  	struct sk_buff *msg;
  	void *hdr = NULL;
  	struct nlattr *nl_reg_rules;
  	unsigned int i;
  	int err = -EINVAL;
a1794390f   Luis R. Rodriguez   cfg80211: rename ...
2394
  	mutex_lock(&cfg80211_mutex);
f130347c2   Luis R. Rodriguez   cfg80211: add get...
2395
2396
2397
  
  	if (!cfg80211_regdomain)
  		goto out;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
2398
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
f130347c2   Luis R. Rodriguez   cfg80211: add get...
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
  	if (!msg) {
  		err = -ENOBUFS;
  		goto out;
  	}
  
  	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
  			     NL80211_CMD_GET_REG);
  	if (!hdr)
  		goto nla_put_failure;
  
  	NLA_PUT_STRING(msg, NL80211_ATTR_REG_ALPHA2,
  		cfg80211_regdomain->alpha2);
  
  	nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES);
  	if (!nl_reg_rules)
  		goto nla_put_failure;
  
  	for (i = 0; i < cfg80211_regdomain->n_reg_rules; i++) {
  		struct nlattr *nl_reg_rule;
  		const struct ieee80211_reg_rule *reg_rule;
  		const struct ieee80211_freq_range *freq_range;
  		const struct ieee80211_power_rule *power_rule;
  
  		reg_rule = &cfg80211_regdomain->reg_rules[i];
  		freq_range = &reg_rule->freq_range;
  		power_rule = &reg_rule->power_rule;
  
  		nl_reg_rule = nla_nest_start(msg, i);
  		if (!nl_reg_rule)
  			goto nla_put_failure;
  
  		NLA_PUT_U32(msg, NL80211_ATTR_REG_RULE_FLAGS,
  			reg_rule->flags);
  		NLA_PUT_U32(msg, NL80211_ATTR_FREQ_RANGE_START,
  			freq_range->start_freq_khz);
  		NLA_PUT_U32(msg, NL80211_ATTR_FREQ_RANGE_END,
  			freq_range->end_freq_khz);
  		NLA_PUT_U32(msg, NL80211_ATTR_FREQ_RANGE_MAX_BW,
  			freq_range->max_bandwidth_khz);
  		NLA_PUT_U32(msg, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN,
  			power_rule->max_antenna_gain);
  		NLA_PUT_U32(msg, NL80211_ATTR_POWER_RULE_MAX_EIRP,
  			power_rule->max_eirp);
  
  		nla_nest_end(msg, nl_reg_rule);
  	}
  
  	nla_nest_end(msg, nl_reg_rules);
  
  	genlmsg_end(msg, hdr);
  	err = genlmsg_unicast(msg, info->snd_pid);
  	goto out;
  
  nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	err = -EMSGSIZE;
  out:
a1794390f   Luis R. Rodriguez   cfg80211: rename ...
2456
  	mutex_unlock(&cfg80211_mutex);
f130347c2   Luis R. Rodriguez   cfg80211: add get...
2457
2458
  	return err;
  }
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
  static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info)
  {
  	struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1];
  	struct nlattr *nl_reg_rule;
  	char *alpha2 = NULL;
  	int rem_reg_rules = 0, r = 0;
  	u32 num_rules = 0, rule_idx = 0, size_of_regd;
  	struct ieee80211_regdomain *rd = NULL;
  
  	if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_REG_RULES])
  		return -EINVAL;
  
  	alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
  
  	nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
  			rem_reg_rules) {
  		num_rules++;
  		if (num_rules > NL80211_MAX_SUPP_REG_RULES)
4776c6e7f   Luis R. Rodriguez   cfg80211: return ...
2480
  			return -EINVAL;
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2481
  	}
61405e977   Luis R. Rodriguez   cfg80211: fix in ...
2482
  	mutex_lock(&cfg80211_mutex);
d0e18f833   Luis R. Rodriguez   cfg80211: cleanup...
2483
2484
2485
2486
  	if (!reg_is_valid_request(alpha2)) {
  		r = -EINVAL;
  		goto bad_reg;
  	}
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2487
2488
2489
2490
2491
  
  	size_of_regd = sizeof(struct ieee80211_regdomain) +
  		(num_rules * sizeof(struct ieee80211_reg_rule));
  
  	rd = kzalloc(size_of_regd, GFP_KERNEL);
d0e18f833   Luis R. Rodriguez   cfg80211: cleanup...
2492
2493
2494
2495
  	if (!rd) {
  		r = -ENOMEM;
  		goto bad_reg;
  	}
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
  
  	rd->n_reg_rules = num_rules;
  	rd->alpha2[0] = alpha2[0];
  	rd->alpha2[1] = alpha2[1];
  
  	nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
  			rem_reg_rules) {
  		nla_parse(tb, NL80211_REG_RULE_ATTR_MAX,
  			nla_data(nl_reg_rule), nla_len(nl_reg_rule),
  			reg_rule_policy);
  		r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]);
  		if (r)
  			goto bad_reg;
  
  		rule_idx++;
d0e18f833   Luis R. Rodriguez   cfg80211: cleanup...
2511
2512
  		if (rule_idx > NL80211_MAX_SUPP_REG_RULES) {
  			r = -EINVAL;
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2513
  			goto bad_reg;
d0e18f833   Luis R. Rodriguez   cfg80211: cleanup...
2514
  		}
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2515
2516
2517
  	}
  
  	BUG_ON(rule_idx != num_rules);
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2518
  	r = set_regdom(rd);
61405e977   Luis R. Rodriguez   cfg80211: fix in ...
2519

a1794390f   Luis R. Rodriguez   cfg80211: rename ...
2520
  	mutex_unlock(&cfg80211_mutex);
d0e18f833   Luis R. Rodriguez   cfg80211: cleanup...
2521

b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2522
  	return r;
d2372b315   Johannes Berg   wireless: make re...
2523
   bad_reg:
61405e977   Luis R. Rodriguez   cfg80211: fix in ...
2524
  	mutex_unlock(&cfg80211_mutex);
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2525
  	kfree(rd);
d0e18f833   Luis R. Rodriguez   cfg80211: cleanup...
2526
  	return r;
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
2527
  }
2a5193119   Johannes Berg   cfg80211/nl80211:...
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
  static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	struct net_device *dev;
  	struct cfg80211_scan_request *request;
  	struct cfg80211_ssid *ssid;
  	struct ieee80211_channel *channel;
  	struct nlattr *attr;
  	struct wiphy *wiphy;
  	int err, tmp, n_ssids = 0, n_channels = 0, i;
  	enum ieee80211_band band;
70692ad29   Jouni Malinen   nl80211: Optional...
2539
  	size_t ie_len;
2a5193119   Johannes Berg   cfg80211/nl80211:...
2540

f4a11bb0c   Johannes Berg   nl80211: validate...
2541
2542
  	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
  		return -EINVAL;
3b85875a2   Johannes Berg   nl80211: rework l...
2543
  	rtnl_lock();
2a5193119   Johannes Berg   cfg80211/nl80211:...
2544
2545
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
3b85875a2   Johannes Berg   nl80211: rework l...
2546
  		goto out_rtnl;
2a5193119   Johannes Berg   cfg80211/nl80211:...
2547
2548
2549
2550
2551
2552
2553
  
  	wiphy = &drv->wiphy;
  
  	if (!drv->ops->scan) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
35a8efe1a   Jouni Malinen   nl80211: Check th...
2554
2555
2556
2557
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
2a5193119   Johannes Berg   cfg80211/nl80211:...
2558
2559
  	if (drv->scan_req) {
  		err = -EBUSY;
3b85875a2   Johannes Berg   nl80211: rework l...
2560
  		goto out;
2a5193119   Johannes Berg   cfg80211/nl80211:...
2561
2562
2563
2564
2565
2566
2567
  	}
  
  	if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
  		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp)
  			n_channels++;
  		if (!n_channels) {
  			err = -EINVAL;
3b85875a2   Johannes Berg   nl80211: rework l...
2568
  			goto out;
2a5193119   Johannes Berg   cfg80211/nl80211:...
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
  		}
  	} else {
  		for (band = 0; band < IEEE80211_NUM_BANDS; band++)
  			if (wiphy->bands[band])
  				n_channels += wiphy->bands[band]->n_channels;
  	}
  
  	if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
  		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
  			n_ssids++;
  
  	if (n_ssids > wiphy->max_scan_ssids) {
  		err = -EINVAL;
3b85875a2   Johannes Berg   nl80211: rework l...
2582
  		goto out;
2a5193119   Johannes Berg   cfg80211/nl80211:...
2583
  	}
70692ad29   Jouni Malinen   nl80211: Optional...
2584
2585
2586
2587
  	if (info->attrs[NL80211_ATTR_IE])
  		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
  	else
  		ie_len = 0;
18a836599   Johannes Berg   cfg80211: introdu...
2588
2589
2590
2591
  	if (ie_len > wiphy->max_scan_ie_len) {
  		err = -EINVAL;
  		goto out;
  	}
2a5193119   Johannes Berg   cfg80211/nl80211:...
2592
2593
  	request = kzalloc(sizeof(*request)
  			+ sizeof(*ssid) * n_ssids
70692ad29   Jouni Malinen   nl80211: Optional...
2594
2595
  			+ sizeof(channel) * n_channels
  			+ ie_len, GFP_KERNEL);
2a5193119   Johannes Berg   cfg80211/nl80211:...
2596
2597
  	if (!request) {
  		err = -ENOMEM;
3b85875a2   Johannes Berg   nl80211: rework l...
2598
  		goto out;
2a5193119   Johannes Berg   cfg80211/nl80211:...
2599
2600
2601
2602
2603
2604
2605
  	}
  
  	request->channels = (void *)((char *)request + sizeof(*request));
  	request->n_channels = n_channels;
  	if (n_ssids)
  		request->ssids = (void *)(request->channels + n_channels);
  	request->n_ssids = n_ssids;
70692ad29   Jouni Malinen   nl80211: Optional...
2606
2607
2608
2609
2610
2611
  	if (ie_len) {
  		if (request->ssids)
  			request->ie = (void *)(request->ssids + n_ssids);
  		else
  			request->ie = (void *)(request->channels + n_channels);
  	}
2a5193119   Johannes Berg   cfg80211/nl80211:...
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
  
  	if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
  		/* user specified, bail out if channel not found */
  		request->n_channels = n_channels;
  		i = 0;
  		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp) {
  			request->channels[i] = ieee80211_get_channel(wiphy, nla_get_u32(attr));
  			if (!request->channels[i]) {
  				err = -EINVAL;
  				goto out_free;
  			}
  			i++;
  		}
  	} else {
  		/* all channels */
  		i = 0;
  		for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
  			int j;
  			if (!wiphy->bands[band])
  				continue;
  			for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
  				request->channels[i] = &wiphy->bands[band]->channels[j];
  				i++;
  			}
  		}
  	}
  
  	i = 0;
  	if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
  		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) {
  			if (request->ssids[i].ssid_len > IEEE80211_MAX_SSID_LEN) {
  				err = -EINVAL;
  				goto out_free;
  			}
  			memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr));
  			request->ssids[i].ssid_len = nla_len(attr);
  			i++;
  		}
  	}
70692ad29   Jouni Malinen   nl80211: Optional...
2651
2652
  	if (info->attrs[NL80211_ATTR_IE]) {
  		request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
de95a54b1   Johannes Berg   mac80211: pass al...
2653
2654
  		memcpy((void *)request->ie,
  		       nla_data(info->attrs[NL80211_ATTR_IE]),
70692ad29   Jouni Malinen   nl80211: Optional...
2655
2656
  		       request->ie_len);
  	}
2a5193119   Johannes Berg   cfg80211/nl80211:...
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
  	request->ifidx = dev->ifindex;
  	request->wiphy = &drv->wiphy;
  
  	drv->scan_req = request;
  	err = drv->ops->scan(&drv->wiphy, dev, request);
  
   out_free:
  	if (err) {
  		drv->scan_req = NULL;
  		kfree(request);
  	}
2a5193119   Johannes Berg   cfg80211/nl80211:...
2668
2669
2670
   out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
3b85875a2   Johannes Berg   nl80211: rework l...
2671
2672
   out_rtnl:
  	rtnl_unlock();
2a5193119   Johannes Berg   cfg80211/nl80211:...
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
  	return err;
  }
  
  static int nl80211_send_bss(struct sk_buff *msg, u32 pid, u32 seq, int flags,
  			    struct cfg80211_registered_device *rdev,
  			    struct net_device *dev,
  			    struct cfg80211_bss *res)
  {
  	void *hdr;
  	struct nlattr *bss;
  
  	hdr = nl80211hdr_put(msg, pid, seq, flags,
  			     NL80211_CMD_NEW_SCAN_RESULTS);
  	if (!hdr)
  		return -1;
  
  	NLA_PUT_U32(msg, NL80211_ATTR_SCAN_GENERATION,
  		    rdev->bss_generation);
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex);
  
  	bss = nla_nest_start(msg, NL80211_ATTR_BSS);
  	if (!bss)
  		goto nla_put_failure;
  	if (!is_zero_ether_addr(res->bssid))
  		NLA_PUT(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid);
  	if (res->information_elements && res->len_information_elements)
  		NLA_PUT(msg, NL80211_BSS_INFORMATION_ELEMENTS,
  			res->len_information_elements,
  			res->information_elements);
  	if (res->tsf)
  		NLA_PUT_U64(msg, NL80211_BSS_TSF, res->tsf);
  	if (res->beacon_interval)
  		NLA_PUT_U16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval);
  	NLA_PUT_U16(msg, NL80211_BSS_CAPABILITY, res->capability);
  	NLA_PUT_U32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq);
77965c970   Johannes Berg   cfg80211: clean u...
2708
  	switch (rdev->wiphy.signal_type) {
2a5193119   Johannes Berg   cfg80211/nl80211:...
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
  	case CFG80211_SIGNAL_TYPE_MBM:
  		NLA_PUT_U32(msg, NL80211_BSS_SIGNAL_MBM, res->signal);
  		break;
  	case CFG80211_SIGNAL_TYPE_UNSPEC:
  		NLA_PUT_U8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal);
  		break;
  	default:
  		break;
  	}
  
  	nla_nest_end(msg, bss);
  
  	return genlmsg_end(msg, hdr);
  
   nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	return -EMSGSIZE;
  }
  
  static int nl80211_dump_scan(struct sk_buff *skb,
  			     struct netlink_callback *cb)
  {
  	struct cfg80211_registered_device *dev;
  	struct net_device *netdev;
  	struct cfg80211_internal_bss *scan;
  	int ifidx = cb->args[0];
  	int start = cb->args[1], idx = 0;
  	int err;
  
  	if (!ifidx) {
  		err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
  				  nl80211_fam.attrbuf, nl80211_fam.maxattr,
  				  nl80211_policy);
  		if (err)
  			return err;
  
  		if (!nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX])
  			return -EINVAL;
  
  		ifidx = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]);
  		if (!ifidx)
  			return -EINVAL;
  		cb->args[0] = ifidx;
  	}
  
  	netdev = dev_get_by_index(&init_net, ifidx);
  	if (!netdev)
  		return -ENODEV;
  
  	dev = cfg80211_get_dev_from_ifindex(ifidx);
  	if (IS_ERR(dev)) {
  		err = PTR_ERR(dev);
  		goto out_put_netdev;
  	}
  
  	spin_lock_bh(&dev->bss_lock);
  	cfg80211_bss_expire(dev);
  
  	list_for_each_entry(scan, &dev->bss_list, list) {
  		if (++idx <= start)
  			continue;
  		if (nl80211_send_bss(skb,
  				NETLINK_CB(cb->skb).pid,
  				cb->nlh->nlmsg_seq, NLM_F_MULTI,
  				dev, netdev, &scan->pub) < 0) {
  			idx--;
  			goto out;
  		}
  	}
  
   out:
  	spin_unlock_bh(&dev->bss_lock);
  
  	cb->args[1] = idx;
  	err = skb->len;
  	cfg80211_put_dev(dev);
   out_put_netdev:
  	dev_put(netdev);
  
  	return err;
  }
255e737ea   Jouni Malinen   nl80211: Add more...
2790
2791
2792
2793
2794
2795
2796
  static bool nl80211_valid_auth_type(enum nl80211_auth_type auth_type)
  {
  	return auth_type == NL80211_AUTHTYPE_OPEN_SYSTEM ||
  		auth_type == NL80211_AUTHTYPE_SHARED_KEY ||
  		auth_type == NL80211_AUTHTYPE_FT ||
  		auth_type == NL80211_AUTHTYPE_NETWORK_EAP;
  }
636a5d362   Jouni Malinen   nl80211: Add MLME...
2797
2798
2799
2800
2801
2802
2803
  static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	struct net_device *dev;
  	struct cfg80211_auth_request req;
  	struct wiphy *wiphy;
  	int err;
f4a11bb0c   Johannes Berg   nl80211: validate...
2804
2805
2806
2807
2808
  	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
1778092e1   Jouni Malinen   nl80211: Require ...
2809
2810
  	if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
  		return -EINVAL;
636a5d362   Jouni Malinen   nl80211: Add MLME...
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
  	rtnl_lock();
  
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
  		goto unlock_rtnl;
  
  	if (!drv->ops->auth) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
2821
2822
2823
2824
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
35a8efe1a   Jouni Malinen   nl80211: Check th...
2825
2826
2827
2828
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
636a5d362   Jouni Malinen   nl80211: Add MLME...
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
  	wiphy = &drv->wiphy;
  	memset(&req, 0, sizeof(req));
  
  	req.peer_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
  
  	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
  		req.chan = ieee80211_get_channel(
  			wiphy,
  			nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
  		if (!req.chan) {
  			err = -EINVAL;
  			goto out;
  		}
  	}
  
  	if (info->attrs[NL80211_ATTR_SSID]) {
  		req.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
  		req.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
  	}
  
  	if (info->attrs[NL80211_ATTR_IE]) {
  		req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
  		req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
  	}
1778092e1   Jouni Malinen   nl80211: Require ...
2853
2854
2855
2856
  	req.auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
  	if (!nl80211_valid_auth_type(req.auth_type)) {
  		err = -EINVAL;
  		goto out;
636a5d362   Jouni Malinen   nl80211: Add MLME...
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
  	}
  
  	err = drv->ops->auth(&drv->wiphy, dev, &req);
  
  out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
  unlock_rtnl:
  	rtnl_unlock();
  	return err;
  }
  
  static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	struct net_device *dev;
  	struct cfg80211_assoc_request req;
  	struct wiphy *wiphy;
  	int err;
f4a11bb0c   Johannes Berg   nl80211: validate...
2876
2877
2878
2879
2880
2881
  	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_MAC] ||
  	    !info->attrs[NL80211_ATTR_SSID])
  		return -EINVAL;
636a5d362   Jouni Malinen   nl80211: Add MLME...
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
  	rtnl_lock();
  
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
  		goto unlock_rtnl;
  
  	if (!drv->ops->assoc) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
2892
2893
2894
2895
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
35a8efe1a   Jouni Malinen   nl80211: Check th...
2896
2897
2898
2899
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
636a5d362   Jouni Malinen   nl80211: Add MLME...
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
  	wiphy = &drv->wiphy;
  	memset(&req, 0, sizeof(req));
  
  	req.peer_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
  
  	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
  		req.chan = ieee80211_get_channel(
  			wiphy,
  			nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
  		if (!req.chan) {
  			err = -EINVAL;
  			goto out;
  		}
  	}
636a5d362   Jouni Malinen   nl80211: Add MLME...
2914
2915
2916
2917
2918
2919
2920
  	req.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
  	req.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
  
  	if (info->attrs[NL80211_ATTR_IE]) {
  		req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
  		req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
  	}
dc6382ced   Jouni Malinen   nl80211 : Add sup...
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
  	if (info->attrs[NL80211_ATTR_USE_MFP]) {
  		enum nl80211_mfp use_mfp =
  			nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
  		if (use_mfp == NL80211_MFP_REQUIRED)
  			req.use_mfp = true;
  		else if (use_mfp != NL80211_MFP_NO) {
  			err = -EINVAL;
  			goto out;
  		}
  	}
3f77316c6   Jouni Malinen   nl80211: Add IEEE...
2931
  	req.control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
636a5d362   Jouni Malinen   nl80211: Add MLME...
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
  	err = drv->ops->assoc(&drv->wiphy, dev, &req);
  
  out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
  unlock_rtnl:
  	rtnl_unlock();
  	return err;
  }
  
  static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	struct net_device *dev;
  	struct cfg80211_deauth_request req;
  	struct wiphy *wiphy;
  	int err;
f4a11bb0c   Johannes Berg   nl80211: validate...
2949
2950
2951
2952
2953
2954
2955
2956
  	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_REASON_CODE])
  		return -EINVAL;
636a5d362   Jouni Malinen   nl80211: Add MLME...
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
  	rtnl_lock();
  
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
  		goto unlock_rtnl;
  
  	if (!drv->ops->deauth) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
2967
2968
2969
2970
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
35a8efe1a   Jouni Malinen   nl80211: Check th...
2971
2972
2973
2974
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
636a5d362   Jouni Malinen   nl80211: Add MLME...
2975
2976
2977
2978
  	wiphy = &drv->wiphy;
  	memset(&req, 0, sizeof(req));
  
  	req.peer_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
f4a11bb0c   Johannes Berg   nl80211: validate...
2979
2980
2981
2982
2983
  	req.reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
  	if (req.reason_code == 0) {
  		/* Reason Code 0 is reserved */
  		err = -EINVAL;
  		goto out;
255e737ea   Jouni Malinen   nl80211: Add more...
2984
  	}
636a5d362   Jouni Malinen   nl80211: Add MLME...
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
  
  	if (info->attrs[NL80211_ATTR_IE]) {
  		req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
  		req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
  	}
  
  	err = drv->ops->deauth(&drv->wiphy, dev, &req);
  
  out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
  unlock_rtnl:
  	rtnl_unlock();
  	return err;
  }
  
  static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	struct net_device *dev;
  	struct cfg80211_disassoc_request req;
  	struct wiphy *wiphy;
  	int err;
f4a11bb0c   Johannes Berg   nl80211: validate...
3008
3009
3010
3011
3012
3013
3014
3015
  	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_MAC])
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_REASON_CODE])
  		return -EINVAL;
636a5d362   Jouni Malinen   nl80211: Add MLME...
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
  	rtnl_lock();
  
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
  		goto unlock_rtnl;
  
  	if (!drv->ops->disassoc) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
eec60b037   Jouni Malinen   nl80211: Check if...
3026
3027
3028
3029
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
35a8efe1a   Jouni Malinen   nl80211: Check th...
3030
3031
3032
3033
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
636a5d362   Jouni Malinen   nl80211: Add MLME...
3034
3035
3036
3037
  	wiphy = &drv->wiphy;
  	memset(&req, 0, sizeof(req));
  
  	req.peer_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
f4a11bb0c   Johannes Berg   nl80211: validate...
3038
3039
3040
3041
3042
  	req.reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
  	if (req.reason_code == 0) {
  		/* Reason Code 0 is reserved */
  		err = -EINVAL;
  		goto out;
255e737ea   Jouni Malinen   nl80211: Add more...
3043
  	}
636a5d362   Jouni Malinen   nl80211: Add MLME...
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
  
  	if (info->attrs[NL80211_ATTR_IE]) {
  		req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
  		req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
  	}
  
  	err = drv->ops->disassoc(&drv->wiphy, dev, &req);
  
  out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
  unlock_rtnl:
  	rtnl_unlock();
  	return err;
  }
04a773ade   Johannes Berg   cfg80211/nl80211:...
3059
3060
3061
3062
3063
3064
3065
  static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	struct net_device *dev;
  	struct cfg80211_ibss_params ibss;
  	struct wiphy *wiphy;
  	int err;
8e30bc55d   Johannes Berg   nl80211: allow co...
3066
  	memset(&ibss, 0, sizeof(ibss));
04a773ade   Johannes Berg   cfg80211/nl80211:...
3067
3068
3069
3070
3071
3072
3073
  	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
  		return -EINVAL;
  
  	if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
  	    !info->attrs[NL80211_ATTR_SSID] ||
  	    !nla_len(info->attrs[NL80211_ATTR_SSID]))
  		return -EINVAL;
8e30bc55d   Johannes Berg   nl80211: allow co...
3074
3075
3076
3077
3078
3079
3080
3081
  	ibss.beacon_interval = 100;
  
  	if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
  		ibss.beacon_interval =
  			nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
  		if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
  			return -EINVAL;
  	}
04a773ade   Johannes Berg   cfg80211/nl80211:...
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
  	rtnl_lock();
  
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
  		goto unlock_rtnl;
  
  	if (!drv->ops->join_ibss) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
  
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
  
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
  
  	wiphy = &drv->wiphy;
04a773ade   Johannes Berg   cfg80211/nl80211:...
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
  
  	if (info->attrs[NL80211_ATTR_MAC])
  		ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
  	ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
  	ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
  
  	if (info->attrs[NL80211_ATTR_IE]) {
  		ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
  		ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
  	}
  
  	ibss.channel = ieee80211_get_channel(wiphy,
  		nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
  	if (!ibss.channel ||
  	    ibss.channel->flags & IEEE80211_CHAN_NO_IBSS ||
  	    ibss.channel->flags & IEEE80211_CHAN_DISABLED) {
  		err = -EINVAL;
  		goto out;
  	}
  
  	ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
  
  	err = cfg80211_join_ibss(drv, dev, &ibss);
  
  out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
  unlock_rtnl:
  	rtnl_unlock();
  	return err;
  }
  
  static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
  {
  	struct cfg80211_registered_device *drv;
  	struct net_device *dev;
  	int err;
  
  	rtnl_lock();
  
  	err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
  	if (err)
  		goto unlock_rtnl;
  
  	if (!drv->ops->leave_ibss) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
  
  	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC) {
  		err = -EOPNOTSUPP;
  		goto out;
  	}
  
  	if (!netif_running(dev)) {
  		err = -ENETDOWN;
  		goto out;
  	}
9d308429a   Johannes Berg   cfg80211: clear W...
3162
  	err = cfg80211_leave_ibss(drv, dev, false);
04a773ade   Johannes Berg   cfg80211/nl80211:...
3163
3164
3165
3166
3167
3168
3169
3170
  
  out:
  	cfg80211_put_dev(drv);
  	dev_put(dev);
  unlock_rtnl:
  	rtnl_unlock();
  	return err;
  }
556829657   Johannes Berg   [NL80211]: add ne...
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
  static struct genl_ops nl80211_ops[] = {
  	{
  		.cmd = NL80211_CMD_GET_WIPHY,
  		.doit = nl80211_get_wiphy,
  		.dumpit = nl80211_dump_wiphy,
  		.policy = nl80211_policy,
  		/* can be retrieved by unprivileged users */
  	},
  	{
  		.cmd = NL80211_CMD_SET_WIPHY,
  		.doit = nl80211_set_wiphy,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_GET_INTERFACE,
  		.doit = nl80211_get_interface,
  		.dumpit = nl80211_dump_interface,
  		.policy = nl80211_policy,
  		/* can be retrieved by unprivileged users */
  	},
  	{
  		.cmd = NL80211_CMD_SET_INTERFACE,
  		.doit = nl80211_set_interface,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_NEW_INTERFACE,
  		.doit = nl80211_new_interface,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_DEL_INTERFACE,
  		.doit = nl80211_del_interface,
  		.policy = nl80211_policy,
41ade00f2   Johannes Berg   cfg80211/nl80211:...
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_GET_KEY,
  		.doit = nl80211_get_key,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_SET_KEY,
  		.doit = nl80211_set_key,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_NEW_KEY,
  		.doit = nl80211_new_key,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_DEL_KEY,
  		.doit = nl80211_del_key,
  		.policy = nl80211_policy,
556829657   Johannes Berg   [NL80211]: add ne...
3232
3233
  		.flags = GENL_ADMIN_PERM,
  	},
ed1b6cc7f   Johannes Berg   cfg80211/nl80211:...
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
  	{
  		.cmd = NL80211_CMD_SET_BEACON,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  		.doit = nl80211_addset_beacon,
  	},
  	{
  		.cmd = NL80211_CMD_NEW_BEACON,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  		.doit = nl80211_addset_beacon,
  	},
  	{
  		.cmd = NL80211_CMD_DEL_BEACON,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  		.doit = nl80211_del_beacon,
  	},
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
3252
3253
3254
  	{
  		.cmd = NL80211_CMD_GET_STATION,
  		.doit = nl80211_get_station,
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
3255
  		.dumpit = nl80211_dump_station,
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
3256
  		.policy = nl80211_policy,
5727ef1b2   Johannes Berg   cfg80211/nl80211:...
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
  	},
  	{
  		.cmd = NL80211_CMD_SET_STATION,
  		.doit = nl80211_set_station,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_NEW_STATION,
  		.doit = nl80211_new_station,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_DEL_STATION,
  		.doit = nl80211_del_station,
  		.policy = nl80211_policy,
2ec600d67   Luis Carlos Cobo   nl80211/cfg80211:...
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_GET_MPATH,
  		.doit = nl80211_get_mpath,
  		.dumpit = nl80211_dump_mpath,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_SET_MPATH,
  		.doit = nl80211_set_mpath,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_NEW_MPATH,
  		.doit = nl80211_new_mpath,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_DEL_MPATH,
  		.doit = nl80211_del_mpath,
  		.policy = nl80211_policy,
9f1ba9062   Jouni Malinen   mac80211/cfg80211...
3299
3300
3301
3302
3303
3304
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_SET_BSS,
  		.doit = nl80211_set_bss,
  		.policy = nl80211_policy,
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
3305
3306
3307
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
f130347c2   Luis R. Rodriguez   cfg80211: add get...
3308
3309
3310
3311
3312
3313
  		.cmd = NL80211_CMD_GET_REG,
  		.doit = nl80211_get_reg,
  		.policy = nl80211_policy,
  		/* can be retrieved by unprivileged users */
  	},
  	{
b2e1b3029   Luis R. Rodriguez   cfg80211: Add new...
3314
3315
3316
3317
3318
3319
3320
3321
3322
  		.cmd = NL80211_CMD_SET_REG,
  		.doit = nl80211_set_reg,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_REQ_SET_REG,
  		.doit = nl80211_req_set_reg,
  		.policy = nl80211_policy,
93da9cc17   colin@cozybit.com   Add nl80211 comma...
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_GET_MESH_PARAMS,
  		.doit = nl80211_get_mesh_params,
  		.policy = nl80211_policy,
  		/* can be retrieved by unprivileged users */
  	},
  	{
  		.cmd = NL80211_CMD_SET_MESH_PARAMS,
  		.doit = nl80211_set_mesh_params,
  		.policy = nl80211_policy,
9aed3cc12   Jouni Malinen   nl80211: New comm...
3335
3336
3337
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
2a5193119   Johannes Berg   cfg80211/nl80211:...
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
  		.cmd = NL80211_CMD_TRIGGER_SCAN,
  		.doit = nl80211_trigger_scan,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_GET_SCAN,
  		.policy = nl80211_policy,
  		.dumpit = nl80211_dump_scan,
  	},
636a5d362   Jouni Malinen   nl80211: Add MLME...
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
  	{
  		.cmd = NL80211_CMD_AUTHENTICATE,
  		.doit = nl80211_authenticate,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_ASSOCIATE,
  		.doit = nl80211_associate,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_DEAUTHENTICATE,
  		.doit = nl80211_deauthenticate,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_DISASSOCIATE,
  		.doit = nl80211_disassociate,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
04a773ade   Johannes Berg   cfg80211/nl80211:...
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
  	{
  		.cmd = NL80211_CMD_JOIN_IBSS,
  		.doit = nl80211_join_ibss,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
  	{
  		.cmd = NL80211_CMD_LEAVE_IBSS,
  		.doit = nl80211_leave_ibss,
  		.policy = nl80211_policy,
  		.flags = GENL_ADMIN_PERM,
  	},
556829657   Johannes Berg   [NL80211]: add ne...
3384
  };
6039f6d23   Jouni Malinen   nl80211: Event no...
3385
3386
3387
  static struct genl_multicast_group nl80211_mlme_mcgrp = {
  	.name = "mlme",
  };
556829657   Johannes Berg   [NL80211]: add ne...
3388
3389
3390
3391
3392
  
  /* multicast groups */
  static struct genl_multicast_group nl80211_config_mcgrp = {
  	.name = "config",
  };
2a5193119   Johannes Berg   cfg80211/nl80211:...
3393
3394
3395
  static struct genl_multicast_group nl80211_scan_mcgrp = {
  	.name = "scan",
  };
73d54c9e7   Luis R. Rodriguez   cfg80211: add reg...
3396
3397
3398
  static struct genl_multicast_group nl80211_regulatory_mcgrp = {
  	.name = "regulatory",
  };
556829657   Johannes Berg   [NL80211]: add ne...
3399
3400
3401
3402
3403
3404
  
  /* notification functions */
  
  void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev)
  {
  	struct sk_buff *msg;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
3405
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
556829657   Johannes Berg   [NL80211]: add ne...
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
  	if (!msg)
  		return;
  
  	if (nl80211_send_wiphy(msg, 0, 0, 0, rdev) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	genlmsg_multicast(msg, 0, nl80211_config_mcgrp.id, GFP_KERNEL);
  }
362a415dc   Johannes Berg   nl80211: bounce s...
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
  static int nl80211_add_scan_req(struct sk_buff *msg,
  				struct cfg80211_registered_device *rdev)
  {
  	struct cfg80211_scan_request *req = rdev->scan_req;
  	struct nlattr *nest;
  	int i;
  
  	if (WARN_ON(!req))
  		return 0;
  
  	nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
  	if (!nest)
  		goto nla_put_failure;
  	for (i = 0; i < req->n_ssids; i++)
  		NLA_PUT(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid);
  	nla_nest_end(msg, nest);
  
  	nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
  	if (!nest)
  		goto nla_put_failure;
  	for (i = 0; i < req->n_channels; i++)
  		NLA_PUT_U32(msg, i, req->channels[i]->center_freq);
  	nla_nest_end(msg, nest);
  
  	if (req->ie)
  		NLA_PUT(msg, NL80211_ATTR_IE, req->ie_len, req->ie);
  
  	return 0;
   nla_put_failure:
  	return -ENOBUFS;
  }
2a5193119   Johannes Berg   cfg80211/nl80211:...
3447
  static int nl80211_send_scan_donemsg(struct sk_buff *msg,
362a415dc   Johannes Berg   nl80211: bounce s...
3448
3449
3450
3451
  				     struct cfg80211_registered_device *rdev,
  				     struct net_device *netdev,
  				     u32 pid, u32 seq, int flags,
  				     u32 cmd)
2a5193119   Johannes Berg   cfg80211/nl80211:...
3452
3453
3454
3455
3456
3457
  {
  	void *hdr;
  
  	hdr = nl80211hdr_put(msg, pid, seq, flags, cmd);
  	if (!hdr)
  		return -1;
b5850a7a4   Luis R. Rodriguez   cfg80211: rename ...
3458
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
2a5193119   Johannes Berg   cfg80211/nl80211:...
3459
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
362a415dc   Johannes Berg   nl80211: bounce s...
3460
3461
  	/* ignore errors and send incomplete event anyway */
  	nl80211_add_scan_req(msg, rdev);
2a5193119   Johannes Berg   cfg80211/nl80211:...
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
  
  	return genlmsg_end(msg, hdr);
  
   nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	return -EMSGSIZE;
  }
  
  void nl80211_send_scan_done(struct cfg80211_registered_device *rdev,
  			    struct net_device *netdev)
  {
  	struct sk_buff *msg;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
3474
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2a5193119   Johannes Berg   cfg80211/nl80211:...
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
  	if (!msg)
  		return;
  
  	if (nl80211_send_scan_donemsg(msg, rdev, netdev, 0, 0, 0,
  				      NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	genlmsg_multicast(msg, 0, nl80211_scan_mcgrp.id, GFP_KERNEL);
  }
  
  void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev,
  			       struct net_device *netdev)
  {
  	struct sk_buff *msg;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
3491
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2a5193119   Johannes Berg   cfg80211/nl80211:...
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
  	if (!msg)
  		return;
  
  	if (nl80211_send_scan_donemsg(msg, rdev, netdev, 0, 0, 0,
  				      NL80211_CMD_SCAN_ABORTED) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	genlmsg_multicast(msg, 0, nl80211_scan_mcgrp.id, GFP_KERNEL);
  }
73d54c9e7   Luis R. Rodriguez   cfg80211: add reg...
3503
3504
3505
3506
3507
3508
3509
3510
  /*
   * This can happen on global regulatory changes or device specific settings
   * based on custom world regulatory domains.
   */
  void nl80211_send_reg_change_event(struct regulatory_request *request)
  {
  	struct sk_buff *msg;
  	void *hdr;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
3511
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
73d54c9e7   Luis R. Rodriguez   cfg80211: add reg...
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
  	if (!msg)
  		return;
  
  	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE);
  	if (!hdr) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	/* Userspace can always count this one always being set */
  	NLA_PUT_U8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator);
  
  	if (request->alpha2[0] == '0' && request->alpha2[1] == '0')
  		NLA_PUT_U8(msg, NL80211_ATTR_REG_TYPE,
  			   NL80211_REGDOM_TYPE_WORLD);
  	else if (request->alpha2[0] == '9' && request->alpha2[1] == '9')
  		NLA_PUT_U8(msg, NL80211_ATTR_REG_TYPE,
  			   NL80211_REGDOM_TYPE_CUSTOM_WORLD);
  	else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
  		 request->intersect)
  		NLA_PUT_U8(msg, NL80211_ATTR_REG_TYPE,
  			   NL80211_REGDOM_TYPE_INTERSECTION);
  	else {
  		NLA_PUT_U8(msg, NL80211_ATTR_REG_TYPE,
  			   NL80211_REGDOM_TYPE_COUNTRY);
  		NLA_PUT_STRING(msg, NL80211_ATTR_REG_ALPHA2, request->alpha2);
  	}
  
  	if (wiphy_idx_valid(request->wiphy_idx))
  		NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx);
  
  	if (genlmsg_end(msg, hdr) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	genlmsg_multicast(msg, 0, nl80211_regulatory_mcgrp.id, GFP_KERNEL);
  
  	return;
  
  nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	nlmsg_free(msg);
  }
6039f6d23   Jouni Malinen   nl80211: Event no...
3556
3557
3558
3559
3560
3561
3562
  static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
  				    struct net_device *netdev,
  				    const u8 *buf, size_t len,
  				    enum nl80211_commands cmd)
  {
  	struct sk_buff *msg;
  	void *hdr;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
3563
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
6039f6d23   Jouni Malinen   nl80211: Event no...
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
  	if (!msg)
  		return;
  
  	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
  	if (!hdr) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
  	NLA_PUT(msg, NL80211_ATTR_FRAME, len, buf);
  
  	if (genlmsg_end(msg, hdr) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
d91c01c75   Jouni Malinen   nl80211: Make nl8...
3581
  	genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, GFP_ATOMIC);
6039f6d23   Jouni Malinen   nl80211: Event no...
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
  	return;
  
   nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	nlmsg_free(msg);
  }
  
  void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
  			  struct net_device *netdev, const u8 *buf, size_t len)
  {
  	nl80211_send_mlme_event(rdev, netdev, buf, len,
  				NL80211_CMD_AUTHENTICATE);
  }
  
  void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
  			   struct net_device *netdev, const u8 *buf,
  			   size_t len)
  {
  	nl80211_send_mlme_event(rdev, netdev, buf, len, NL80211_CMD_ASSOCIATE);
  }
53b46b844   Jouni Malinen   nl80211: Generate...
3602
3603
  void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
  			 struct net_device *netdev, const u8 *buf, size_t len)
6039f6d23   Jouni Malinen   nl80211: Event no...
3604
3605
3606
3607
  {
  	nl80211_send_mlme_event(rdev, netdev, buf, len,
  				NL80211_CMD_DEAUTHENTICATE);
  }
53b46b844   Jouni Malinen   nl80211: Generate...
3608
3609
3610
  void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
  			   struct net_device *netdev, const u8 *buf,
  			   size_t len)
6039f6d23   Jouni Malinen   nl80211: Event no...
3611
3612
3613
3614
  {
  	nl80211_send_mlme_event(rdev, netdev, buf, len,
  				NL80211_CMD_DISASSOCIATE);
  }
1b06bb408   Luis R. Rodriguez   cfg80211: make nl...
3615
3616
3617
  static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
  				      struct net_device *netdev, int cmd,
  				      const u8 *addr)
1965c8533   Jouni Malinen   nl80211: Add even...
3618
3619
3620
  {
  	struct sk_buff *msg;
  	void *hdr;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
3621
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1965c8533   Jouni Malinen   nl80211: Add even...
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
  	if (!msg)
  		return;
  
  	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
  	if (!hdr) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
  	NLA_PUT_FLAG(msg, NL80211_ATTR_TIMED_OUT);
  	NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  
  	if (genlmsg_end(msg, hdr) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, GFP_ATOMIC);
  	return;
  
   nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	nlmsg_free(msg);
  }
  
  void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
  			       struct net_device *netdev, const u8 *addr)
  {
  	nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
  				  addr);
  }
  
  void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
  				struct net_device *netdev, const u8 *addr)
  {
  	nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE, addr);
  }
04a773ade   Johannes Berg   cfg80211/nl80211:...
3661
3662
3663
3664
3665
3666
  void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
  			     struct net_device *netdev, const u8 *bssid,
  			     gfp_t gfp)
  {
  	struct sk_buff *msg;
  	void *hdr;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
3667
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
04a773ade   Johannes Berg   cfg80211/nl80211:...
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
  	if (!msg)
  		return;
  
  	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
  	if (!hdr) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
  	NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid);
  
  	if (genlmsg_end(msg, hdr) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, gfp);
  	return;
  
   nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	nlmsg_free(msg);
  }
a3b8b0569   Jouni Malinen   nl80211: Add Mich...
3693
3694
3695
3696
3697
3698
3699
  void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
  				 struct net_device *netdev, const u8 *addr,
  				 enum nl80211_key_type key_type, int key_id,
  				 const u8 *tsc)
  {
  	struct sk_buff *msg;
  	void *hdr;
0f6399c4c   Bob Copeland   nl80211: use GFP_...
3700
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
a3b8b0569   Jouni Malinen   nl80211: Add Mich...
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
  	if (!msg)
  		return;
  
  	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
  	if (!hdr) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
  	NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
  	if (addr)
  		NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  	NLA_PUT_U32(msg, NL80211_ATTR_KEY_TYPE, key_type);
  	NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_id);
  	if (tsc)
  		NLA_PUT(msg, NL80211_ATTR_KEY_SEQ, 6, tsc);
  
  	if (genlmsg_end(msg, hdr) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
0f6399c4c   Bob Copeland   nl80211: use GFP_...
3723
  	genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, GFP_ATOMIC);
a3b8b0569   Jouni Malinen   nl80211: Add Mich...
3724
3725
3726
3727
3728
3729
  	return;
  
   nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	nlmsg_free(msg);
  }
6bad87666   Luis R. Rodriguez   cfg80211: send re...
3730
3731
3732
3733
3734
3735
3736
  void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
  				    struct ieee80211_channel *channel_before,
  				    struct ieee80211_channel *channel_after)
  {
  	struct sk_buff *msg;
  	void *hdr;
  	struct nlattr *nl_freq;
fd2120ca0   Pablo Neira Ayuso   net: use NLMSG_DE...
3737
  	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
6bad87666   Luis R. Rodriguez   cfg80211: send re...
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
  	if (!msg)
  		return;
  
  	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
  	if (!hdr) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	/*
  	 * Since we are applying the beacon hint to a wiphy we know its
  	 * wiphy_idx is valid
  	 */
  	NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy));
  
  	/* Before */
  	nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
  	if (!nl_freq)
  		goto nla_put_failure;
  	if (nl80211_msg_put_channel(msg, channel_before))
  		goto nla_put_failure;
  	nla_nest_end(msg, nl_freq);
  
  	/* After */
  	nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
  	if (!nl_freq)
  		goto nla_put_failure;
  	if (nl80211_msg_put_channel(msg, channel_after))
  		goto nla_put_failure;
  	nla_nest_end(msg, nl_freq);
  
  	if (genlmsg_end(msg, hdr) < 0) {
  		nlmsg_free(msg);
  		return;
  	}
  
  	genlmsg_multicast(msg, 0, nl80211_regulatory_mcgrp.id, GFP_ATOMIC);
  
  	return;
  
  nla_put_failure:
  	genlmsg_cancel(msg, hdr);
  	nlmsg_free(msg);
  }
556829657   Johannes Berg   [NL80211]: add ne...
3782
3783
3784
3785
  /* initialisation/exit functions */
  
  int nl80211_init(void)
  {
0d63cbb53   Michał Mirosław   wireless: Use gen...
3786
  	int err;
556829657   Johannes Berg   [NL80211]: add ne...
3787

0d63cbb53   Michał Mirosław   wireless: Use gen...
3788
3789
  	err = genl_register_family_with_ops(&nl80211_fam,
  		nl80211_ops, ARRAY_SIZE(nl80211_ops));
556829657   Johannes Berg   [NL80211]: add ne...
3790
3791
  	if (err)
  		return err;
556829657   Johannes Berg   [NL80211]: add ne...
3792
3793
3794
  	err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp);
  	if (err)
  		goto err_out;
2a5193119   Johannes Berg   cfg80211/nl80211:...
3795
3796
3797
  	err = genl_register_mc_group(&nl80211_fam, &nl80211_scan_mcgrp);
  	if (err)
  		goto err_out;
73d54c9e7   Luis R. Rodriguez   cfg80211: add reg...
3798
3799
3800
  	err = genl_register_mc_group(&nl80211_fam, &nl80211_regulatory_mcgrp);
  	if (err)
  		goto err_out;
6039f6d23   Jouni Malinen   nl80211: Event no...
3801
3802
3803
  	err = genl_register_mc_group(&nl80211_fam, &nl80211_mlme_mcgrp);
  	if (err)
  		goto err_out;
556829657   Johannes Berg   [NL80211]: add ne...
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
  	return 0;
   err_out:
  	genl_unregister_family(&nl80211_fam);
  	return err;
  }
  
  void nl80211_exit(void)
  {
  	genl_unregister_family(&nl80211_fam);
  }