]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/mac80211/wext.c
ath9k: Fix bug in TX DMA termination
[mirror_ubuntu-artful-kernel.git] / net / mac80211 / wext.c
CommitLineData
f0706e82
JB
1/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/netdevice.h>
13#include <linux/types.h>
14#include <linux/slab.h>
15#include <linux/skbuff.h>
16#include <linux/etherdevice.h>
17#include <linux/if_arp.h>
18#include <linux/wireless.h>
19#include <net/iw_handler.h>
20#include <asm/uaccess.h>
21
22#include <net/mac80211.h>
23#include "ieee80211_i.h"
2c8dccc7
JB
24#include "led.h"
25#include "rate.h"
f0706e82
JB
26#include "wpa.h"
27#include "aes_ccm.h"
f0706e82 28
b708e610 29
f698d856 30static int ieee80211_set_encryption(struct ieee80211_sub_if_data *sdata, u8 *sta_addr,
628a140b
JB
31 int idx, int alg, int remove,
32 int set_tx_key, const u8 *_key,
33 size_t key_len)
f0706e82 34{
f698d856 35 struct ieee80211_local *local = sdata->local;
d0709a65 36 struct sta_info *sta;
11a843b7 37 struct ieee80211_key *key;
3b96766f 38 int err;
f0706e82 39
22787dba
JM
40 if (alg == ALG_AES_CMAC) {
41 if (idx < NUM_DEFAULT_KEYS ||
42 idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) {
43 printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d "
44 "(BIP)\n", sdata->dev->name, idx);
45 return -EINVAL;
46 }
47 } else if (idx < 0 || idx >= NUM_DEFAULT_KEYS) {
139c3a04 48 printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d\n",
f698d856 49 sdata->dev->name, idx);
139c3a04
VB
50 return -EINVAL;
51 }
52
db4d1169 53 if (remove) {
3b96766f
JB
54 rcu_read_lock();
55
56 err = 0;
57
db4d1169
JB
58 if (is_broadcast_ether_addr(sta_addr)) {
59 key = sdata->keys[idx];
60 } else {
61 sta = sta_info_get(local, sta_addr);
3b96766f
JB
62 if (!sta) {
63 err = -ENOENT;
64 goto out_unlock;
65 }
db4d1169 66 key = sta->key;
f0706e82
JB
67 }
68
d0709a65 69 ieee80211_key_free(key);
db4d1169
JB
70 } else {
71 key = ieee80211_key_alloc(alg, idx, key_len, _key);
72 if (!key)
73 return -ENOMEM;
74
d0709a65 75 sta = NULL;
3b96766f
JB
76 err = 0;
77
78 rcu_read_lock();
d0709a65 79
db4d1169
JB
80 if (!is_broadcast_ether_addr(sta_addr)) {
81 set_tx_key = 0;
82 /*
83 * According to the standard, the key index of a
84 * pairwise key must be zero. However, some AP are
85 * broken when it comes to WEP key indices, so we
86 * work around this.
87 */
88 if (idx != 0 && alg != ALG_WEP) {
d0709a65 89 ieee80211_key_free(key);
3b96766f
JB
90 err = -EINVAL;
91 goto out_unlock;
db4d1169 92 }
f0706e82 93
db4d1169
JB
94 sta = sta_info_get(local, sta_addr);
95 if (!sta) {
d0709a65 96 ieee80211_key_free(key);
3b96766f
JB
97 err = -ENOENT;
98 goto out_unlock;
db4d1169 99 }
f0706e82
JB
100 }
101
23976efe
EG
102 if (alg == ALG_WEP &&
103 key_len != LEN_WEP40 && key_len != LEN_WEP104) {
104 ieee80211_key_free(key);
105 err = -EINVAL;
106 goto out_unlock;
107 }
108
db4d1169 109 ieee80211_key_link(key, sdata, sta);
f0706e82 110
db4d1169
JB
111 if (set_tx_key || (!sta && !sdata->default_key && key))
112 ieee80211_set_default_key(sdata, idx);
22787dba
JM
113 if (alg == ALG_AES_CMAC &&
114 (set_tx_key || (!sta && !sdata->default_mgmt_key && key)))
115 ieee80211_set_default_mgmt_key(sdata, idx);
db4d1169 116 }
f0706e82 117
3b96766f
JB
118 out_unlock:
119 rcu_read_unlock();
120
121 return err;
f0706e82
JB
122}
123
124static int ieee80211_ioctl_siwgenie(struct net_device *dev,
125 struct iw_request_info *info,
126 struct iw_point *data, char *extra)
127{
128 struct ieee80211_sub_if_data *sdata;
f0706e82 129
ddd3d2be
JB
130 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
131
132 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
f0706e82
JB
133 return -EOPNOTSUPP;
134
05c914fe
JB
135 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
136 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
f698d856 137 int ret = ieee80211_sta_set_extra_ie(sdata, extra, data->length);
f0706e82
JB
138 if (ret)
139 return ret;
d6f2da5b 140 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
f698d856 141 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
f0706e82
JB
142 return 0;
143 }
144
f0706e82
JB
145 return -EOPNOTSUPP;
146}
147
f0706e82
JB
148static int ieee80211_ioctl_giwrange(struct net_device *dev,
149 struct iw_request_info *info,
150 struct iw_point *data, char *extra)
151{
152 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
153 struct iw_range *range = (struct iw_range *) extra;
8318d78a 154 enum ieee80211_band band;
333af2f0 155 int c = 0;
f0706e82
JB
156
157 data->length = sizeof(struct iw_range);
158 memset(range, 0, sizeof(struct iw_range));
159
160 range->we_version_compiled = WIRELESS_EXT;
161 range->we_version_source = 21;
162 range->retry_capa = IW_RETRY_LIMIT;
163 range->retry_flags = IW_RETRY_LIMIT;
164 range->min_retry = 0;
165 range->max_retry = 255;
166 range->min_rts = 0;
167 range->max_rts = 2347;
168 range->min_frag = 256;
169 range->max_frag = 2346;
170
171 range->encoding_size[0] = 5;
172 range->encoding_size[1] = 13;
173 range->num_encoding_sizes = 2;
174 range->max_encoding_tokens = NUM_DEFAULT_KEYS;
175
566bfe5a
BR
176 if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC ||
177 local->hw.flags & IEEE80211_HW_SIGNAL_DB)
178 range->max_qual.level = local->hw.max_signal;
179 else if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
180 range->max_qual.level = -110;
181 else
182 range->max_qual.level = 0;
183
184 if (local->hw.flags & IEEE80211_HW_NOISE_DBM)
185 range->max_qual.noise = -110;
186 else
187 range->max_qual.noise = 0;
188
189 range->max_qual.qual = 100;
f0706e82
JB
190 range->max_qual.updated = local->wstats_flags;
191
566bfe5a
BR
192 range->avg_qual.qual = 50;
193 /* not always true but better than nothing */
194 range->avg_qual.level = range->max_qual.level / 2;
195 range->avg_qual.noise = range->max_qual.noise / 2;
f0706e82
JB
196 range->avg_qual.updated = local->wstats_flags;
197
198 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
199 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
200
333af2f0 201
8318d78a
JB
202 for (band = 0; band < IEEE80211_NUM_BANDS; band ++) {
203 int i;
204 struct ieee80211_supported_band *sband;
205
206 sband = local->hw.wiphy->bands[band];
207
208 if (!sband)
333af2f0
HL
209 continue;
210
8318d78a
JB
211 for (i = 0; i < sband->n_channels && c < IW_MAX_FREQUENCIES; i++) {
212 struct ieee80211_channel *chan = &sband->channels[i];
333af2f0 213
8318d78a
JB
214 if (!(chan->flags & IEEE80211_CHAN_DISABLED)) {
215 range->freq[c].i =
216 ieee80211_frequency_to_channel(
217 chan->center_freq);
218 range->freq[c].m = chan->center_freq;
219 range->freq[c].e = 6;
333af2f0
HL
220 c++;
221 }
333af2f0
HL
222 }
223 }
224 range->num_channels = c;
225 range->num_frequency = c;
226
f0706e82 227 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
f0706e82
JB
228 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
229 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
230
374fdfbc
DW
231 range->scan_capa |= IW_SCAN_CAPA_ESSID;
232
f0706e82
JB
233 return 0;
234}
235
236
f0706e82
JB
237static int ieee80211_ioctl_siwfreq(struct net_device *dev,
238 struct iw_request_info *info,
239 struct iw_freq *freq, char *extra)
240{
f0706e82
JB
241 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
242
b522ed56
AF
243 if (sdata->vif.type == NL80211_IFTYPE_ADHOC ||
244 sdata->vif.type == NL80211_IFTYPE_STATION)
d6f2da5b 245 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_CHANNEL_SEL;
f0706e82
JB
246
247 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
248 if (freq->e == 0) {
249 if (freq->m < 0) {
b522ed56
AF
250 if (sdata->vif.type == NL80211_IFTYPE_ADHOC ||
251 sdata->vif.type == NL80211_IFTYPE_STATION)
d6f2da5b
JS
252 sdata->u.sta.flags |=
253 IEEE80211_STA_AUTO_CHANNEL_SEL;
f0706e82
JB
254 return 0;
255 } else
f698d856 256 return ieee80211_set_freq(sdata,
8318d78a 257 ieee80211_channel_to_frequency(freq->m));
f0706e82
JB
258 } else {
259 int i, div = 1000000;
260 for (i = 0; i < freq->e; i++)
261 div /= 10;
262 if (div > 0)
f698d856 263 return ieee80211_set_freq(sdata, freq->m / div);
f0706e82
JB
264 else
265 return -EINVAL;
266 }
267}
268
269
270static int ieee80211_ioctl_giwfreq(struct net_device *dev,
271 struct iw_request_info *info,
272 struct iw_freq *freq, char *extra)
273{
274 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
275
8318d78a 276 freq->m = local->hw.conf.channel->center_freq;
f0706e82
JB
277 freq->e = 6;
278
279 return 0;
280}
281
282
283static int ieee80211_ioctl_siwessid(struct net_device *dev,
284 struct iw_request_info *info,
285 struct iw_point *data, char *ssid)
286{
f0706e82
JB
287 struct ieee80211_sub_if_data *sdata;
288 size_t len = data->length;
289
290 /* iwconfig uses nul termination in SSID.. */
291 if (len > 0 && ssid[len - 1] == '\0')
292 len--;
293
294 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
05c914fe
JB
295 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
296 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
f0706e82 297 int ret;
ddd3d2be 298 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
f0706e82
JB
299 if (len > IEEE80211_MAX_SSID_LEN)
300 return -EINVAL;
301 memcpy(sdata->u.sta.ssid, ssid, len);
302 sdata->u.sta.ssid_len = len;
303 return 0;
304 }
d6f2da5b
JS
305 if (data->flags)
306 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_SSID_SEL;
307 else
308 sdata->u.sta.flags |= IEEE80211_STA_AUTO_SSID_SEL;
f698d856 309 ret = ieee80211_sta_set_ssid(sdata, ssid, len);
f0706e82
JB
310 if (ret)
311 return ret;
f698d856 312 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
f0706e82
JB
313 return 0;
314 }
315
f0706e82
JB
316 return -EOPNOTSUPP;
317}
318
319
320static int ieee80211_ioctl_giwessid(struct net_device *dev,
321 struct iw_request_info *info,
322 struct iw_point *data, char *ssid)
323{
324 size_t len;
325
326 struct ieee80211_sub_if_data *sdata;
327 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
05c914fe
JB
328 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
329 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
f698d856 330 int res = ieee80211_sta_get_ssid(sdata, ssid, &len);
f0706e82
JB
331 if (res == 0) {
332 data->length = len;
333 data->flags = 1;
334 } else
335 data->flags = 0;
336 return res;
337 }
338
f0706e82
JB
339 return -EOPNOTSUPP;
340}
341
342
343static int ieee80211_ioctl_siwap(struct net_device *dev,
344 struct iw_request_info *info,
345 struct sockaddr *ap_addr, char *extra)
346{
f0706e82
JB
347 struct ieee80211_sub_if_data *sdata;
348
349 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
05c914fe
JB
350 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
351 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
f0706e82 352 int ret;
ddd3d2be 353 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
f0706e82
JB
354 memcpy(sdata->u.sta.bssid, (u8 *) &ap_addr->sa_data,
355 ETH_ALEN);
356 return 0;
357 }
d6f2da5b
JS
358 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
359 sdata->u.sta.flags |= IEEE80211_STA_AUTO_BSSID_SEL |
360 IEEE80211_STA_AUTO_CHANNEL_SEL;
361 else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
362 sdata->u.sta.flags |= IEEE80211_STA_AUTO_BSSID_SEL;
f0706e82 363 else
d6f2da5b 364 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
f698d856 365 ret = ieee80211_sta_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
f0706e82
JB
366 if (ret)
367 return ret;
f698d856 368 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
f0706e82 369 return 0;
05c914fe 370 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
44213b5e
JB
371 /*
372 * If it is necessary to update the WDS peer address
373 * while the interface is running, then we need to do
374 * more work here, namely if it is running we need to
375 * add a new and remove the old STA entry, this is
376 * normally handled by _open() and _stop().
377 */
378 if (netif_running(dev))
379 return -EBUSY;
380
381 memcpy(&sdata->u.wds.remote_addr, (u8 *) &ap_addr->sa_data,
382 ETH_ALEN);
383
384 return 0;
f0706e82
JB
385 }
386
387 return -EOPNOTSUPP;
388}
389
390
391static int ieee80211_ioctl_giwap(struct net_device *dev,
392 struct iw_request_info *info,
393 struct sockaddr *ap_addr, char *extra)
394{
395 struct ieee80211_sub_if_data *sdata;
396
397 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
05c914fe
JB
398 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
399 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
48c2fc59
TW
400 if (sdata->u.sta.state == IEEE80211_STA_MLME_ASSOCIATED ||
401 sdata->u.sta.state == IEEE80211_STA_MLME_IBSS_JOINED) {
d4231ca3
AK
402 ap_addr->sa_family = ARPHRD_ETHER;
403 memcpy(&ap_addr->sa_data, sdata->u.sta.bssid, ETH_ALEN);
404 return 0;
405 } else {
406 memset(&ap_addr->sa_data, 0, ETH_ALEN);
407 return 0;
408 }
05c914fe 409 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
f0706e82
JB
410 ap_addr->sa_family = ARPHRD_ETHER;
411 memcpy(&ap_addr->sa_data, sdata->u.wds.remote_addr, ETH_ALEN);
412 return 0;
413 }
414
415 return -EOPNOTSUPP;
416}
417
418
419static int ieee80211_ioctl_siwscan(struct net_device *dev,
420 struct iw_request_info *info,
107acb23 421 union iwreq_data *wrqu, char *extra)
f0706e82 422{
f0706e82 423 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
107acb23 424 struct iw_scan_req *req = NULL;
f0706e82
JB
425 u8 *ssid = NULL;
426 size_t ssid_len = 0;
427
428 if (!netif_running(dev))
429 return -ENETDOWN;
430
05c914fe
JB
431 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
432 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
b7a530d8 433 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
d114f399 434 return -EOPNOTSUPP;
d114f399
JL
435
436 /* if SSID was specified explicitly then use that */
107acb23
BM
437 if (wrqu->data.length == sizeof(struct iw_scan_req) &&
438 wrqu->data.flags & IW_SCAN_THIS_ESSID) {
439 req = (struct iw_scan_req *)extra;
440 ssid = req->essid;
441 ssid_len = req->essid_len;
f0706e82 442 }
f27b62d3 443
c2b13452 444 return ieee80211_request_scan(sdata, ssid, ssid_len);
f0706e82
JB
445}
446
447
448static int ieee80211_ioctl_giwscan(struct net_device *dev,
449 struct iw_request_info *info,
450 struct iw_point *data, char *extra)
451{
452 int res;
453 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
f698d856
JBG
454 struct ieee80211_sub_if_data *sdata;
455
456 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
ece8eddd 457
c2b13452 458 if (local->sw_scanning || local->hw_scanning)
f0706e82 459 return -EAGAIN;
ece8eddd 460
c2b13452 461 res = ieee80211_scan_results(local, info, extra, data->length);
f0706e82
JB
462 if (res >= 0) {
463 data->length = res;
464 return 0;
465 }
466 data->length = 0;
467 return res;
468}
469
470
1fd5e589
LF
471static int ieee80211_ioctl_siwrate(struct net_device *dev,
472 struct iw_request_info *info,
473 struct iw_param *rate, char *extra)
474{
475 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
8318d78a 476 int i, err = -EINVAL;
1fd5e589
LF
477 u32 target_rate = rate->value / 100000;
478 struct ieee80211_sub_if_data *sdata;
8318d78a 479 struct ieee80211_supported_band *sband;
1fd5e589
LF
480
481 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
8318d78a
JB
482
483 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
484
1fd5e589
LF
485 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
486 * target_rate = X, rate->fixed = 1 means only rate X
487 * target_rate = X, rate->fixed = 0 means all rates <= X */
3e122be0
JB
488 sdata->max_ratectrl_rateidx = -1;
489 sdata->force_unicast_rateidx = -1;
1fd5e589
LF
490 if (rate->value < 0)
491 return 0;
8318d78a
JB
492
493 for (i=0; i< sband->n_bitrates; i++) {
494 struct ieee80211_rate *brate = &sband->bitrates[i];
495 int this_rate = brate->bitrate;
1fd5e589 496
1fd5e589 497 if (target_rate == this_rate) {
3e122be0 498 sdata->max_ratectrl_rateidx = i;
1fd5e589 499 if (rate->fixed)
3e122be0 500 sdata->force_unicast_rateidx = i;
8318d78a
JB
501 err = 0;
502 break;
1fd5e589
LF
503 }
504 }
8318d78a 505 return err;
1fd5e589
LF
506}
507
b3d88ad4
LF
508static int ieee80211_ioctl_giwrate(struct net_device *dev,
509 struct iw_request_info *info,
510 struct iw_param *rate, char *extra)
511{
512 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
513 struct sta_info *sta;
514 struct ieee80211_sub_if_data *sdata;
8318d78a 515 struct ieee80211_supported_band *sband;
b3d88ad4
LF
516
517 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
8318d78a 518
05c914fe 519 if (sdata->vif.type != NL80211_IFTYPE_STATION)
b3d88ad4 520 return -EOPNOTSUPP;
8318d78a
JB
521
522 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
523
380a942b
JB
524 rcu_read_lock();
525
526 sta = sta_info_get(local, sdata->u.sta.bssid);
527
e6a9854b
JB
528 if (sta && !(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS))
529 rate->value = sband->bitrates[sta->last_tx_rate.idx].bitrate;
b3d88ad4
LF
530 else
531 rate->value = 0;
380a942b
JB
532
533 rcu_read_unlock();
534
535 if (!sta)
536 return -ENODEV;
537
8318d78a 538 rate->value *= 100000;
d0709a65 539
b3d88ad4
LF
540 return 0;
541}
542
61609bc0
MB
543static int ieee80211_ioctl_siwtxpower(struct net_device *dev,
544 struct iw_request_info *info,
545 union iwreq_data *data, char *extra)
546{
547 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
d9d29257 548 struct ieee80211_channel* chan = local->hw.conf.channel;
e8975581 549 u32 reconf_flags = 0;
8318d78a 550 int new_power_level;
61609bc0
MB
551
552 if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
553 return -EINVAL;
554 if (data->txpower.flags & IW_TXPOW_RANGE)
555 return -EINVAL;
d9d29257
LR
556 if (!chan)
557 return -EINVAL;
61609bc0 558
d9d29257
LR
559 if (data->txpower.fixed)
560 new_power_level = min(data->txpower.value, chan->max_power);
561 else /* Automatic power level setting */
8318d78a 562 new_power_level = chan->max_power;
6a432955 563
2bf30fab 564 local->user_power_level = new_power_level;
e3c92df0 565 if (local->hw.conf.power_level != new_power_level)
e8975581 566 reconf_flags |= IEEE80211_CONF_CHANGE_POWER;
6a432955 567
61609bc0
MB
568 if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) {
569 local->hw.conf.radio_enabled = !(data->txpower.disabled);
e8975581 570 reconf_flags |= IEEE80211_CONF_CHANGE_RADIO_ENABLED;
cdcb006f 571 ieee80211_led_radio(local, local->hw.conf.radio_enabled);
61609bc0 572 }
6a432955 573
e8975581
JB
574 if (reconf_flags)
575 ieee80211_hw_config(local, reconf_flags);
61609bc0
MB
576
577 return 0;
578}
579
fe6aa301
LF
580static int ieee80211_ioctl_giwtxpower(struct net_device *dev,
581 struct iw_request_info *info,
582 union iwreq_data *data, char *extra)
583{
584 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
585
586 data->txpower.fixed = 1;
587 data->txpower.disabled = !(local->hw.conf.radio_enabled);
588 data->txpower.value = local->hw.conf.power_level;
589 data->txpower.flags = IW_TXPOW_DBM;
590
591 return 0;
592}
593
f0706e82
JB
594static int ieee80211_ioctl_siwrts(struct net_device *dev,
595 struct iw_request_info *info,
596 struct iw_param *rts, char *extra)
597{
598 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
599
600 if (rts->disabled)
601 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
fa6adfe9
EG
602 else if (!rts->fixed)
603 /* if the rts value is not fixed, then take default */
604 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
f0706e82
JB
605 else if (rts->value < 0 || rts->value > IEEE80211_MAX_RTS_THRESHOLD)
606 return -EINVAL;
607 else
608 local->rts_threshold = rts->value;
609
610 /* If the wlan card performs RTS/CTS in hardware/firmware,
611 * configure it here */
612
613 if (local->ops->set_rts_threshold)
614 local->ops->set_rts_threshold(local_to_hw(local),
615 local->rts_threshold);
616
617 return 0;
618}
619
620static int ieee80211_ioctl_giwrts(struct net_device *dev,
621 struct iw_request_info *info,
622 struct iw_param *rts, char *extra)
623{
624 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
625
626 rts->value = local->rts_threshold;
627 rts->disabled = (rts->value >= IEEE80211_MAX_RTS_THRESHOLD);
628 rts->fixed = 1;
629
630 return 0;
631}
632
633
634static int ieee80211_ioctl_siwfrag(struct net_device *dev,
635 struct iw_request_info *info,
636 struct iw_param *frag, char *extra)
637{
638 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
639
640 if (frag->disabled)
641 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
e4abd4d4
EG
642 else if (!frag->fixed)
643 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
f0706e82
JB
644 else if (frag->value < 256 ||
645 frag->value > IEEE80211_MAX_FRAG_THRESHOLD)
646 return -EINVAL;
647 else {
648 /* Fragment length must be even, so strip LSB. */
649 local->fragmentation_threshold = frag->value & ~0x1;
650 }
651
f0706e82
JB
652 return 0;
653}
654
655static int ieee80211_ioctl_giwfrag(struct net_device *dev,
656 struct iw_request_info *info,
657 struct iw_param *frag, char *extra)
658{
659 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
660
661 frag->value = local->fragmentation_threshold;
662 frag->disabled = (frag->value >= IEEE80211_MAX_RTS_THRESHOLD);
663 frag->fixed = 1;
664
665 return 0;
666}
667
668
669static int ieee80211_ioctl_siwretry(struct net_device *dev,
670 struct iw_request_info *info,
671 struct iw_param *retry, char *extra)
672{
673 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
674
675 if (retry->disabled ||
676 (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
677 return -EINVAL;
678
9124b077
JB
679 if (retry->flags & IW_RETRY_MAX) {
680 local->hw.conf.long_frame_max_tx_count = retry->value;
681 } else if (retry->flags & IW_RETRY_MIN) {
682 local->hw.conf.short_frame_max_tx_count = retry->value;
683 } else {
684 local->hw.conf.long_frame_max_tx_count = retry->value;
685 local->hw.conf.short_frame_max_tx_count = retry->value;
f0706e82
JB
686 }
687
9124b077 688 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
f0706e82
JB
689
690 return 0;
691}
692
693
694static int ieee80211_ioctl_giwretry(struct net_device *dev,
695 struct iw_request_info *info,
696 struct iw_param *retry, char *extra)
697{
698 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
699
700 retry->disabled = 0;
701 if (retry->flags == 0 || retry->flags & IW_RETRY_MIN) {
702 /* first return min value, iwconfig will ask max value
703 * later if needed */
704 retry->flags |= IW_RETRY_LIMIT;
9124b077
JB
705 retry->value = local->hw.conf.short_frame_max_tx_count;
706 if (local->hw.conf.long_frame_max_tx_count !=
707 local->hw.conf.short_frame_max_tx_count)
f0706e82
JB
708 retry->flags |= IW_RETRY_MIN;
709 return 0;
710 }
711 if (retry->flags & IW_RETRY_MAX) {
712 retry->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
9124b077 713 retry->value = local->hw.conf.long_frame_max_tx_count;
f0706e82
JB
714 }
715
716 return 0;
717}
718
f0706e82
JB
719static int ieee80211_ioctl_siwmlme(struct net_device *dev,
720 struct iw_request_info *info,
721 struct iw_point *data, char *extra)
722{
723 struct ieee80211_sub_if_data *sdata;
724 struct iw_mlme *mlme = (struct iw_mlme *) extra;
725
726 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
05c914fe
JB
727 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
728 sdata->vif.type != NL80211_IFTYPE_ADHOC)
f0706e82
JB
729 return -EINVAL;
730
731 switch (mlme->cmd) {
732 case IW_MLME_DEAUTH:
733 /* TODO: mlme->addr.sa_data */
f698d856 734 return ieee80211_sta_deauthenticate(sdata, mlme->reason_code);
f0706e82
JB
735 case IW_MLME_DISASSOC:
736 /* TODO: mlme->addr.sa_data */
f698d856 737 return ieee80211_sta_disassociate(sdata, mlme->reason_code);
f0706e82
JB
738 default:
739 return -EOPNOTSUPP;
740 }
741}
742
743
744static int ieee80211_ioctl_siwencode(struct net_device *dev,
745 struct iw_request_info *info,
746 struct iw_point *erq, char *keybuf)
747{
748 struct ieee80211_sub_if_data *sdata;
749 int idx, i, alg = ALG_WEP;
750 u8 bcaddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
628a140b 751 int remove = 0;
f0706e82
JB
752
753 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
754
755 idx = erq->flags & IW_ENCODE_INDEX;
756 if (idx == 0) {
757 if (sdata->default_key)
758 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
759 if (sdata->default_key == sdata->keys[i]) {
760 idx = i;
761 break;
762 }
763 }
764 } else if (idx < 1 || idx > 4)
765 return -EINVAL;
766 else
767 idx--;
768
769 if (erq->flags & IW_ENCODE_DISABLED)
628a140b 770 remove = 1;
f0706e82
JB
771 else if (erq->length == 0) {
772 /* No key data - just set the default TX key index */
11a843b7 773 ieee80211_set_default_key(sdata, idx);
f0706e82
JB
774 return 0;
775 }
776
777 return ieee80211_set_encryption(
f698d856 778 sdata, bcaddr,
628a140b 779 idx, alg, remove,
f0706e82
JB
780 !sdata->default_key,
781 keybuf, erq->length);
782}
783
784
785static int ieee80211_ioctl_giwencode(struct net_device *dev,
786 struct iw_request_info *info,
787 struct iw_point *erq, char *key)
788{
789 struct ieee80211_sub_if_data *sdata;
790 int idx, i;
791
792 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
793
794 idx = erq->flags & IW_ENCODE_INDEX;
795 if (idx < 1 || idx > 4) {
796 idx = -1;
797 if (!sdata->default_key)
798 idx = 0;
799 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
800 if (sdata->default_key == sdata->keys[i]) {
801 idx = i;
802 break;
803 }
804 }
805 if (idx < 0)
806 return -EINVAL;
807 } else
808 idx--;
809
810 erq->flags = idx + 1;
811
812 if (!sdata->keys[idx]) {
813 erq->length = 0;
814 erq->flags |= IW_ENCODE_DISABLED;
815 return 0;
816 }
817
8f20fc24 818 memcpy(key, sdata->keys[idx]->conf.key,
11a843b7 819 min_t(int, erq->length, sdata->keys[idx]->conf.keylen));
8f20fc24 820 erq->length = sdata->keys[idx]->conf.keylen;
f0706e82
JB
821 erq->flags |= IW_ENCODE_ENABLED;
822
05c914fe 823 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
b9fcc4f2
EG
824 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
825 switch (ifsta->auth_alg) {
826 case WLAN_AUTH_OPEN:
827 case WLAN_AUTH_LEAP:
828 erq->flags |= IW_ENCODE_OPEN;
829 break;
830 case WLAN_AUTH_SHARED_KEY:
831 erq->flags |= IW_ENCODE_RESTRICTED;
832 break;
833 }
834 }
835
f0706e82
JB
836 return 0;
837}
838
49292d56
SO
839static int ieee80211_ioctl_siwpower(struct net_device *dev,
840 struct iw_request_info *info,
841 struct iw_param *wrq,
842 char *extra)
843{
e0cb686f 844 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
49292d56
SO
845 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
846 struct ieee80211_conf *conf = &local->hw.conf;
520eb820 847 int ret = 0, timeout = 0;
e0cb686f
KV
848 bool ps;
849
4be8c387
JB
850 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
851 return -EOPNOTSUPP;
852
e0cb686f
KV
853 if (sdata->vif.type != NL80211_IFTYPE_STATION)
854 return -EINVAL;
49292d56
SO
855
856 if (wrq->disabled) {
e0cb686f 857 ps = false;
520eb820 858 timeout = 0;
e0cb686f 859 goto set;
49292d56
SO
860 }
861
862 switch (wrq->flags & IW_POWER_MODE) {
863 case IW_POWER_ON: /* If not specified */
864 case IW_POWER_MODE: /* If set all mask */
865 case IW_POWER_ALL_R: /* If explicitely state all */
e0cb686f 866 ps = true;
49292d56 867 break;
520eb820 868 default: /* Otherwise we ignore */
e9aeabae 869 return -EINVAL;
49292d56
SO
870 }
871
e9aeabae
JB
872 if (wrq->flags & ~(IW_POWER_MODE | IW_POWER_TIMEOUT))
873 return -EINVAL;
874
520eb820
KV
875 if (wrq->flags & IW_POWER_TIMEOUT)
876 timeout = wrq->value / 1000;
e0cb686f 877
4be8c387 878 set:
46f2c4bd 879 if (ps == local->powersave && timeout == conf->dynamic_ps_timeout)
520eb820
KV
880 return ret;
881
e0cb686f 882 local->powersave = ps;
46f2c4bd 883 conf->dynamic_ps_timeout = timeout;
e0cb686f 884
4be8c387 885 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
46f2c4bd
JB
886 ret = ieee80211_hw_config(local,
887 IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT);
4be8c387
JB
888
889 if (!(sdata->u.sta.flags & IEEE80211_STA_ASSOCIATED))
890 return ret;
891
892 if (conf->dynamic_ps_timeout > 0 &&
893 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
894 mod_timer(&local->dynamic_ps_timer, jiffies +
895 msecs_to_jiffies(conf->dynamic_ps_timeout));
896 } else {
897 if (local->powersave) {
898 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
a97b77b9 899 ieee80211_send_nullfunc(local, sdata, 1);
4be8c387
JB
900 conf->flags |= IEEE80211_CONF_PS;
901 ret = ieee80211_hw_config(local,
902 IEEE80211_CONF_CHANGE_PS);
903 } else {
904 conf->flags &= ~IEEE80211_CONF_PS;
905 ret = ieee80211_hw_config(local,
906 IEEE80211_CONF_CHANGE_PS);
907 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
a97b77b9 908 ieee80211_send_nullfunc(local, sdata, 0);
520eb820 909 }
e0cb686f
KV
910 }
911
912 return ret;
49292d56
SO
913}
914
915static int ieee80211_ioctl_giwpower(struct net_device *dev,
916 struct iw_request_info *info,
917 union iwreq_data *wrqu,
918 char *extra)
919{
920 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
49292d56 921
e0cb686f 922 wrqu->power.disabled = !local->powersave;
49292d56
SO
923
924 return 0;
925}
926
f0706e82
JB
927static int ieee80211_ioctl_siwauth(struct net_device *dev,
928 struct iw_request_info *info,
929 struct iw_param *data, char *extra)
930{
f0706e82
JB
931 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
932 int ret = 0;
933
934 switch (data->flags & IW_AUTH_INDEX) {
935 case IW_AUTH_WPA_VERSION:
f0706e82
JB
936 case IW_AUTH_CIPHER_GROUP:
937 case IW_AUTH_WPA_ENABLED:
938 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
f0706e82 939 case IW_AUTH_KEY_MGMT:
54604d3a 940 case IW_AUTH_CIPHER_GROUP_MGMT:
5b98b1f7 941 break;
eb46936b
VT
942 case IW_AUTH_CIPHER_PAIRWISE:
943 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
944 if (data->value & (IW_AUTH_CIPHER_WEP40 |
945 IW_AUTH_CIPHER_WEP104 | IW_AUTH_CIPHER_TKIP))
946 sdata->u.sta.flags |=
947 IEEE80211_STA_TKIP_WEP_USED;
948 else
949 sdata->u.sta.flags &=
950 ~IEEE80211_STA_TKIP_WEP_USED;
951 }
952 break;
b1357a81
JB
953 case IW_AUTH_DROP_UNENCRYPTED:
954 sdata->drop_unencrypted = !!data->value;
955 break;
5b98b1f7 956 case IW_AUTH_PRIVACY_INVOKED:
05c914fe 957 if (sdata->vif.type != NL80211_IFTYPE_STATION)
f0706e82
JB
958 ret = -EINVAL;
959 else {
5b98b1f7 960 sdata->u.sta.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
f0706e82 961 /*
5b98b1f7
JB
962 * Privacy invoked by wpa_supplicant, store the
963 * value and allow associating to a protected
964 * network without having a key up front.
f0706e82 965 */
5b98b1f7
JB
966 if (data->value)
967 sdata->u.sta.flags |=
968 IEEE80211_STA_PRIVACY_INVOKED;
f0706e82
JB
969 }
970 break;
971 case IW_AUTH_80211_AUTH_ALG:
05c914fe
JB
972 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
973 sdata->vif.type == NL80211_IFTYPE_ADHOC)
f0706e82
JB
974 sdata->u.sta.auth_algs = data->value;
975 else
976 ret = -EOPNOTSUPP;
977 break;
fdfacf0a 978 case IW_AUTH_MFP:
4375d083
JM
979 if (!(sdata->local->hw.flags & IEEE80211_HW_MFP_CAPABLE)) {
980 ret = -EOPNOTSUPP;
981 break;
982 }
fdfacf0a
JM
983 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
984 sdata->vif.type == NL80211_IFTYPE_ADHOC)
985 sdata->u.sta.mfp = data->value;
986 else
987 ret = -EOPNOTSUPP;
988 break;
f0706e82
JB
989 default:
990 ret = -EOPNOTSUPP;
991 break;
992 }
993 return ret;
994}
995
996/* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
997static struct iw_statistics *ieee80211_get_wireless_stats(struct net_device *dev)
998{
999 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1000 struct iw_statistics *wstats = &local->wstats;
1001 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1002 struct sta_info *sta = NULL;
1003
98dd6a57
JB
1004 rcu_read_lock();
1005
05c914fe
JB
1006 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
1007 sdata->vif.type == NL80211_IFTYPE_ADHOC)
f0706e82
JB
1008 sta = sta_info_get(local, sdata->u.sta.bssid);
1009 if (!sta) {
1010 wstats->discard.fragment = 0;
1011 wstats->discard.misc = 0;
1012 wstats->qual.qual = 0;
1013 wstats->qual.level = 0;
1014 wstats->qual.noise = 0;
1015 wstats->qual.updated = IW_QUAL_ALL_INVALID;
1016 } else {
566bfe5a
BR
1017 wstats->qual.level = sta->last_signal;
1018 wstats->qual.qual = sta->last_qual;
f0706e82
JB
1019 wstats->qual.noise = sta->last_noise;
1020 wstats->qual.updated = local->wstats_flags;
f0706e82 1021 }
98dd6a57
JB
1022
1023 rcu_read_unlock();
1024
f0706e82
JB
1025 return wstats;
1026}
1027
1028static int ieee80211_ioctl_giwauth(struct net_device *dev,
1029 struct iw_request_info *info,
1030 struct iw_param *data, char *extra)
1031{
1032 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1033 int ret = 0;
1034
1035 switch (data->flags & IW_AUTH_INDEX) {
1036 case IW_AUTH_80211_AUTH_ALG:
05c914fe
JB
1037 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
1038 sdata->vif.type == NL80211_IFTYPE_ADHOC)
f0706e82
JB
1039 data->value = sdata->u.sta.auth_algs;
1040 else
1041 ret = -EOPNOTSUPP;
1042 break;
1043 default:
1044 ret = -EOPNOTSUPP;
1045 break;
1046 }
1047 return ret;
1048}
1049
1050
1051static int ieee80211_ioctl_siwencodeext(struct net_device *dev,
1052 struct iw_request_info *info,
1053 struct iw_point *erq, char *extra)
1054{
1055 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1056 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
628a140b 1057 int uninitialized_var(alg), idx, i, remove = 0;
f0706e82
JB
1058
1059 switch (ext->alg) {
1060 case IW_ENCODE_ALG_NONE:
628a140b 1061 remove = 1;
f0706e82
JB
1062 break;
1063 case IW_ENCODE_ALG_WEP:
1064 alg = ALG_WEP;
1065 break;
1066 case IW_ENCODE_ALG_TKIP:
1067 alg = ALG_TKIP;
1068 break;
1069 case IW_ENCODE_ALG_CCMP:
1070 alg = ALG_CCMP;
1071 break;
22787dba
JM
1072 case IW_ENCODE_ALG_AES_CMAC:
1073 alg = ALG_AES_CMAC;
1074 break;
f0706e82
JB
1075 default:
1076 return -EOPNOTSUPP;
1077 }
1078
1079 if (erq->flags & IW_ENCODE_DISABLED)
628a140b 1080 remove = 1;
f0706e82
JB
1081
1082 idx = erq->flags & IW_ENCODE_INDEX;
22787dba
JM
1083 if (alg == ALG_AES_CMAC) {
1084 if (idx < NUM_DEFAULT_KEYS + 1 ||
1085 idx > NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) {
1086 idx = -1;
1087 if (!sdata->default_mgmt_key)
1088 idx = 0;
1089 else for (i = NUM_DEFAULT_KEYS;
1090 i < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS;
1091 i++) {
1092 if (sdata->default_mgmt_key == sdata->keys[i])
1093 {
1094 idx = i;
1095 break;
1096 }
f0706e82 1097 }
22787dba
JM
1098 if (idx < 0)
1099 return -EINVAL;
1100 } else
1101 idx--;
1102 } else {
1103 if (idx < 1 || idx > 4) {
1104 idx = -1;
1105 if (!sdata->default_key)
1106 idx = 0;
1107 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1108 if (sdata->default_key == sdata->keys[i]) {
1109 idx = i;
1110 break;
1111 }
1112 }
1113 if (idx < 0)
1114 return -EINVAL;
1115 } else
1116 idx--;
1117 }
f0706e82 1118
f698d856 1119 return ieee80211_set_encryption(sdata, ext->addr.sa_data, idx, alg,
628a140b 1120 remove,
f0706e82
JB
1121 ext->ext_flags &
1122 IW_ENCODE_EXT_SET_TX_KEY,
1123 ext->key, ext->key_len);
1124}
1125
1126
f0706e82
JB
1127/* Structures to export the Wireless Handlers */
1128
1129static const iw_handler ieee80211_handler[] =
1130{
1131 (iw_handler) NULL, /* SIOCSIWCOMMIT */
fee52678 1132 (iw_handler) cfg80211_wext_giwname, /* SIOCGIWNAME */
f0706e82
JB
1133 (iw_handler) NULL, /* SIOCSIWNWID */
1134 (iw_handler) NULL, /* SIOCGIWNWID */
1135 (iw_handler) ieee80211_ioctl_siwfreq, /* SIOCSIWFREQ */
1136 (iw_handler) ieee80211_ioctl_giwfreq, /* SIOCGIWFREQ */
e60c7744
JB
1137 (iw_handler) cfg80211_wext_siwmode, /* SIOCSIWMODE */
1138 (iw_handler) cfg80211_wext_giwmode, /* SIOCGIWMODE */
f0706e82
JB
1139 (iw_handler) NULL, /* SIOCSIWSENS */
1140 (iw_handler) NULL, /* SIOCGIWSENS */
1141 (iw_handler) NULL /* not used */, /* SIOCSIWRANGE */
1142 (iw_handler) ieee80211_ioctl_giwrange, /* SIOCGIWRANGE */
1143 (iw_handler) NULL /* not used */, /* SIOCSIWPRIV */
1144 (iw_handler) NULL /* kernel code */, /* SIOCGIWPRIV */
1145 (iw_handler) NULL /* not used */, /* SIOCSIWSTATS */
1146 (iw_handler) NULL /* kernel code */, /* SIOCGIWSTATS */
5d4ecd93
JB
1147 (iw_handler) NULL, /* SIOCSIWSPY */
1148 (iw_handler) NULL, /* SIOCGIWSPY */
1149 (iw_handler) NULL, /* SIOCSIWTHRSPY */
1150 (iw_handler) NULL, /* SIOCGIWTHRSPY */
f0706e82
JB
1151 (iw_handler) ieee80211_ioctl_siwap, /* SIOCSIWAP */
1152 (iw_handler) ieee80211_ioctl_giwap, /* SIOCGIWAP */
1153 (iw_handler) ieee80211_ioctl_siwmlme, /* SIOCSIWMLME */
1154 (iw_handler) NULL, /* SIOCGIWAPLIST */
1155 (iw_handler) ieee80211_ioctl_siwscan, /* SIOCSIWSCAN */
1156 (iw_handler) ieee80211_ioctl_giwscan, /* SIOCGIWSCAN */
1157 (iw_handler) ieee80211_ioctl_siwessid, /* SIOCSIWESSID */
1158 (iw_handler) ieee80211_ioctl_giwessid, /* SIOCGIWESSID */
1159 (iw_handler) NULL, /* SIOCSIWNICKN */
1160 (iw_handler) NULL, /* SIOCGIWNICKN */
1161 (iw_handler) NULL, /* -- hole -- */
1162 (iw_handler) NULL, /* -- hole -- */
1fd5e589 1163 (iw_handler) ieee80211_ioctl_siwrate, /* SIOCSIWRATE */
b3d88ad4 1164 (iw_handler) ieee80211_ioctl_giwrate, /* SIOCGIWRATE */
f0706e82
JB
1165 (iw_handler) ieee80211_ioctl_siwrts, /* SIOCSIWRTS */
1166 (iw_handler) ieee80211_ioctl_giwrts, /* SIOCGIWRTS */
1167 (iw_handler) ieee80211_ioctl_siwfrag, /* SIOCSIWFRAG */
1168 (iw_handler) ieee80211_ioctl_giwfrag, /* SIOCGIWFRAG */
61609bc0 1169 (iw_handler) ieee80211_ioctl_siwtxpower, /* SIOCSIWTXPOW */
fe6aa301 1170 (iw_handler) ieee80211_ioctl_giwtxpower, /* SIOCGIWTXPOW */
f0706e82
JB
1171 (iw_handler) ieee80211_ioctl_siwretry, /* SIOCSIWRETRY */
1172 (iw_handler) ieee80211_ioctl_giwretry, /* SIOCGIWRETRY */
1173 (iw_handler) ieee80211_ioctl_siwencode, /* SIOCSIWENCODE */
1174 (iw_handler) ieee80211_ioctl_giwencode, /* SIOCGIWENCODE */
49292d56
SO
1175 (iw_handler) ieee80211_ioctl_siwpower, /* SIOCSIWPOWER */
1176 (iw_handler) ieee80211_ioctl_giwpower, /* SIOCGIWPOWER */
f0706e82
JB
1177 (iw_handler) NULL, /* -- hole -- */
1178 (iw_handler) NULL, /* -- hole -- */
1179 (iw_handler) ieee80211_ioctl_siwgenie, /* SIOCSIWGENIE */
1180 (iw_handler) NULL, /* SIOCGIWGENIE */
1181 (iw_handler) ieee80211_ioctl_siwauth, /* SIOCSIWAUTH */
1182 (iw_handler) ieee80211_ioctl_giwauth, /* SIOCGIWAUTH */
1183 (iw_handler) ieee80211_ioctl_siwencodeext, /* SIOCSIWENCODEEXT */
1184 (iw_handler) NULL, /* SIOCGIWENCODEEXT */
1185 (iw_handler) NULL, /* SIOCSIWPMKSA */
1186 (iw_handler) NULL, /* -- hole -- */
1187};
1188
f0706e82
JB
1189const struct iw_handler_def ieee80211_iw_handler_def =
1190{
1191 .num_standard = ARRAY_SIZE(ieee80211_handler),
f0706e82 1192 .standard = (iw_handler *) ieee80211_handler,
f0706e82
JB
1193 .get_wireless_stats = ieee80211_get_wireless_stats,
1194};