Merge tag 'v3.10.81' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / wireless / wext-compat.c
CommitLineData
fee52678
JB
1/*
2 * cfg80211 - wext compat code
3 *
4 * This is temporary code until all wireless functionality is migrated
5 * into cfg80211, when that happens all the exports here go away and
6 * we directly assign the wireless handlers of wireless interfaces.
7 *
08645126 8 * Copyright 2008-2009 Johannes Berg <johannes@sipsolutions.net>
fee52678
JB
9 */
10
bc3b2d7f 11#include <linux/export.h>
fee52678
JB
12#include <linux/wireless.h>
13#include <linux/nl80211.h>
691597cb 14#include <linux/if_arp.h>
08645126 15#include <linux/etherdevice.h>
5a0e3ad6 16#include <linux/slab.h>
fee52678 17#include <net/iw_handler.h>
fee52678 18#include <net/cfg80211.h>
262eb9b2 19#include <net/cfg80211-wext.h>
0e82ffe3 20#include "wext-compat.h"
fee52678 21#include "core.h"
e35e4d28 22#include "rdev-ops.h"
fee52678
JB
23
24int cfg80211_wext_giwname(struct net_device *dev,
25 struct iw_request_info *info,
26 char *name, char *extra)
27{
28 struct wireless_dev *wdev = dev->ieee80211_ptr;
29 struct ieee80211_supported_band *sband;
30 bool is_ht = false, is_a = false, is_b = false, is_g = false;
31
32 if (!wdev)
33 return -EOPNOTSUPP;
34
35 sband = wdev->wiphy->bands[IEEE80211_BAND_5GHZ];
36 if (sband) {
37 is_a = true;
38 is_ht |= sband->ht_cap.ht_supported;
39 }
40
41 sband = wdev->wiphy->bands[IEEE80211_BAND_2GHZ];
42 if (sband) {
43 int i;
44 /* Check for mandatory rates */
45 for (i = 0; i < sband->n_bitrates; i++) {
46 if (sband->bitrates[i].bitrate == 10)
47 is_b = true;
48 if (sband->bitrates[i].bitrate == 60)
49 is_g = true;
50 }
51 is_ht |= sband->ht_cap.ht_supported;
52 }
53
54 strcpy(name, "IEEE 802.11");
55 if (is_a)
56 strcat(name, "a");
57 if (is_b)
58 strcat(name, "b");
59 if (is_g)
60 strcat(name, "g");
61 if (is_ht)
62 strcat(name, "n");
63
64 return 0;
65}
ba44cb72 66EXPORT_SYMBOL_GPL(cfg80211_wext_giwname);
e60c7744
JB
67
68int cfg80211_wext_siwmode(struct net_device *dev, struct iw_request_info *info,
69 u32 *mode, char *extra)
70{
71 struct wireless_dev *wdev = dev->ieee80211_ptr;
72 struct cfg80211_registered_device *rdev;
73 struct vif_params vifparams;
74 enum nl80211_iftype type;
ac7f9cfa 75 int ret;
e60c7744 76
e60c7744
JB
77 rdev = wiphy_to_dev(wdev->wiphy);
78
e60c7744
JB
79 switch (*mode) {
80 case IW_MODE_INFRA:
81 type = NL80211_IFTYPE_STATION;
82 break;
83 case IW_MODE_ADHOC:
84 type = NL80211_IFTYPE_ADHOC;
85 break;
86 case IW_MODE_REPEAT:
87 type = NL80211_IFTYPE_WDS;
88 break;
89 case IW_MODE_MONITOR:
90 type = NL80211_IFTYPE_MONITOR;
91 break;
92 default:
93 return -EINVAL;
94 }
95
ac7f9cfa
JB
96 if (type == wdev->iftype)
97 return 0;
98
e60c7744
JB
99 memset(&vifparams, 0, sizeof(vifparams));
100
3d54d255
JB
101 cfg80211_lock_rdev(rdev);
102 ret = cfg80211_change_iface(rdev, dev, type, NULL, &vifparams);
103 cfg80211_unlock_rdev(rdev);
ac7f9cfa
JB
104
105 return ret;
e60c7744 106}
ba44cb72 107EXPORT_SYMBOL_GPL(cfg80211_wext_siwmode);
e60c7744
JB
108
109int cfg80211_wext_giwmode(struct net_device *dev, struct iw_request_info *info,
110 u32 *mode, char *extra)
111{
112 struct wireless_dev *wdev = dev->ieee80211_ptr;
113
114 if (!wdev)
115 return -EOPNOTSUPP;
116
117 switch (wdev->iftype) {
118 case NL80211_IFTYPE_AP:
119 *mode = IW_MODE_MASTER;
120 break;
121 case NL80211_IFTYPE_STATION:
122 *mode = IW_MODE_INFRA;
123 break;
124 case NL80211_IFTYPE_ADHOC:
125 *mode = IW_MODE_ADHOC;
126 break;
127 case NL80211_IFTYPE_MONITOR:
128 *mode = IW_MODE_MONITOR;
129 break;
130 case NL80211_IFTYPE_WDS:
131 *mode = IW_MODE_REPEAT;
132 break;
133 case NL80211_IFTYPE_AP_VLAN:
134 *mode = IW_MODE_SECOND; /* FIXME */
135 break;
136 default:
137 *mode = IW_MODE_AUTO;
138 break;
139 }
140 return 0;
141}
ba44cb72 142EXPORT_SYMBOL_GPL(cfg80211_wext_giwmode);
4aa188e1
JB
143
144
145int cfg80211_wext_giwrange(struct net_device *dev,
146 struct iw_request_info *info,
147 struct iw_point *data, char *extra)
148{
149 struct wireless_dev *wdev = dev->ieee80211_ptr;
150 struct iw_range *range = (struct iw_range *) extra;
151 enum ieee80211_band band;
9834c079 152 int i, c = 0;
4aa188e1
JB
153
154 if (!wdev)
155 return -EOPNOTSUPP;
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
4aa188e1
JB
171 range->max_encoding_tokens = 4;
172
173 range->max_qual.updated = IW_QUAL_NOISE_INVALID;
174
175 switch (wdev->wiphy->signal_type) {
176 case CFG80211_SIGNAL_TYPE_NONE:
177 break;
178 case CFG80211_SIGNAL_TYPE_MBM:
e7d83ed8 179 range->max_qual.level = (u8)-110;
4aa188e1
JB
180 range->max_qual.qual = 70;
181 range->avg_qual.qual = 35;
182 range->max_qual.updated |= IW_QUAL_DBM;
183 range->max_qual.updated |= IW_QUAL_QUAL_UPDATED;
184 range->max_qual.updated |= IW_QUAL_LEVEL_UPDATED;
185 break;
186 case CFG80211_SIGNAL_TYPE_UNSPEC:
187 range->max_qual.level = 100;
188 range->max_qual.qual = 100;
189 range->avg_qual.qual = 50;
190 range->max_qual.updated |= IW_QUAL_QUAL_UPDATED;
191 range->max_qual.updated |= IW_QUAL_LEVEL_UPDATED;
192 break;
193 }
194
195 range->avg_qual.level = range->max_qual.level / 2;
196 range->avg_qual.noise = range->max_qual.noise / 2;
197 range->avg_qual.updated = range->max_qual.updated;
198
9834c079
JB
199 for (i = 0; i < wdev->wiphy->n_cipher_suites; i++) {
200 switch (wdev->wiphy->cipher_suites[i]) {
3daf0975 201 case WLAN_CIPHER_SUITE_TKIP:
27bea66c
DK
202 range->enc_capa |= (IW_ENC_CAPA_CIPHER_TKIP |
203 IW_ENC_CAPA_WPA);
3daf0975
DK
204 break;
205
206 case WLAN_CIPHER_SUITE_CCMP:
27bea66c
DK
207 range->enc_capa |= (IW_ENC_CAPA_CIPHER_CCMP |
208 IW_ENC_CAPA_WPA2);
3daf0975 209 break;
2ab658f9
DK
210
211 case WLAN_CIPHER_SUITE_WEP40:
212 range->encoding_size[range->num_encoding_sizes++] =
213 WLAN_KEY_LEN_WEP40;
214 break;
215
216 case WLAN_CIPHER_SUITE_WEP104:
217 range->encoding_size[range->num_encoding_sizes++] =
218 WLAN_KEY_LEN_WEP104;
219 break;
3daf0975
DK
220 }
221 }
4aa188e1 222
4aa188e1 223 for (band = 0; band < IEEE80211_NUM_BANDS; band ++) {
4aa188e1
JB
224 struct ieee80211_supported_band *sband;
225
226 sband = wdev->wiphy->bands[band];
227
228 if (!sband)
229 continue;
230
231 for (i = 0; i < sband->n_channels && c < IW_MAX_FREQUENCIES; i++) {
232 struct ieee80211_channel *chan = &sband->channels[i];
233
234 if (!(chan->flags & IEEE80211_CHAN_DISABLED)) {
235 range->freq[c].i =
236 ieee80211_frequency_to_channel(
237 chan->center_freq);
238 range->freq[c].m = chan->center_freq;
239 range->freq[c].e = 6;
240 c++;
241 }
242 }
243 }
244 range->num_channels = c;
245 range->num_frequency = c;
246
247 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
248 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
249 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
250
51cd4aab
DK
251 if (wdev->wiphy->max_scan_ssids > 0)
252 range->scan_capa |= IW_SCAN_CAPA_ESSID;
4aa188e1
JB
253
254 return 0;
255}
ba44cb72 256EXPORT_SYMBOL_GPL(cfg80211_wext_giwrange);
691597cb 257
04a773ad
JB
258
259/**
260 * cfg80211_wext_freq - get wext frequency for non-"auto"
261 * @wiphy: the wiphy
262 * @freq: the wext freq encoding
263 *
59bbb6f7 264 * Returns a frequency, or a negative error code, or 0 for auto.
04a773ad 265 */
59bbb6f7 266int cfg80211_wext_freq(struct wiphy *wiphy, struct iw_freq *freq)
04a773ad 267{
0b258582 268 /*
59bbb6f7 269 * Parse frequency - return 0 for auto and
0b258582
JB
270 * -EINVAL for impossible things.
271 */
04a773ad 272 if (freq->e == 0) {
59eb21a6 273 enum ieee80211_band band = IEEE80211_BAND_2GHZ;
04a773ad 274 if (freq->m < 0)
59bbb6f7 275 return 0;
59eb21a6
BR
276 if (freq->m > 14)
277 band = IEEE80211_BAND_5GHZ;
278 return ieee80211_channel_to_frequency(freq->m, band);
04a773ad
JB
279 } else {
280 int i, div = 1000000;
281 for (i = 0; i < freq->e; i++)
282 div /= 10;
0b258582 283 if (div <= 0)
59bbb6f7
JB
284 return -EINVAL;
285 return freq->m / div;
04a773ad 286 }
04a773ad 287}
b9a5f8ca
JM
288
289int cfg80211_wext_siwrts(struct net_device *dev,
290 struct iw_request_info *info,
291 struct iw_param *rts, char *extra)
292{
293 struct wireless_dev *wdev = dev->ieee80211_ptr;
294 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
295 u32 orts = wdev->wiphy->rts_threshold;
296 int err;
297
298 if (rts->disabled || !rts->fixed)
299 wdev->wiphy->rts_threshold = (u32) -1;
300 else if (rts->value < 0)
301 return -EINVAL;
302 else
303 wdev->wiphy->rts_threshold = rts->value;
304
e35e4d28 305 err = rdev_set_wiphy_params(rdev, WIPHY_PARAM_RTS_THRESHOLD);
b9a5f8ca
JM
306 if (err)
307 wdev->wiphy->rts_threshold = orts;
308
309 return err;
310}
ba44cb72 311EXPORT_SYMBOL_GPL(cfg80211_wext_siwrts);
b9a5f8ca
JM
312
313int cfg80211_wext_giwrts(struct net_device *dev,
314 struct iw_request_info *info,
315 struct iw_param *rts, char *extra)
316{
317 struct wireless_dev *wdev = dev->ieee80211_ptr;
318
319 rts->value = wdev->wiphy->rts_threshold;
320 rts->disabled = rts->value == (u32) -1;
321 rts->fixed = 1;
322
323 return 0;
324}
ba44cb72 325EXPORT_SYMBOL_GPL(cfg80211_wext_giwrts);
b9a5f8ca
JM
326
327int cfg80211_wext_siwfrag(struct net_device *dev,
328 struct iw_request_info *info,
329 struct iw_param *frag, char *extra)
330{
331 struct wireless_dev *wdev = dev->ieee80211_ptr;
332 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
333 u32 ofrag = wdev->wiphy->frag_threshold;
334 int err;
335
336 if (frag->disabled || !frag->fixed)
337 wdev->wiphy->frag_threshold = (u32) -1;
338 else if (frag->value < 256)
339 return -EINVAL;
340 else {
341 /* Fragment length must be even, so strip LSB. */
342 wdev->wiphy->frag_threshold = frag->value & ~0x1;
343 }
344
e35e4d28 345 err = rdev_set_wiphy_params(rdev, WIPHY_PARAM_FRAG_THRESHOLD);
b9a5f8ca
JM
346 if (err)
347 wdev->wiphy->frag_threshold = ofrag;
348
349 return err;
350}
ba44cb72 351EXPORT_SYMBOL_GPL(cfg80211_wext_siwfrag);
b9a5f8ca
JM
352
353int cfg80211_wext_giwfrag(struct net_device *dev,
354 struct iw_request_info *info,
355 struct iw_param *frag, char *extra)
356{
357 struct wireless_dev *wdev = dev->ieee80211_ptr;
358
359 frag->value = wdev->wiphy->frag_threshold;
360 frag->disabled = frag->value == (u32) -1;
361 frag->fixed = 1;
362
363 return 0;
364}
ba44cb72 365EXPORT_SYMBOL_GPL(cfg80211_wext_giwfrag);
b9a5f8ca 366
04b0c5c6
JB
367static int cfg80211_wext_siwretry(struct net_device *dev,
368 struct iw_request_info *info,
369 struct iw_param *retry, char *extra)
b9a5f8ca
JM
370{
371 struct wireless_dev *wdev = dev->ieee80211_ptr;
372 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
373 u32 changed = 0;
374 u8 olong = wdev->wiphy->retry_long;
375 u8 oshort = wdev->wiphy->retry_short;
376 int err;
377
378 if (retry->disabled ||
379 (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
380 return -EINVAL;
381
382 if (retry->flags & IW_RETRY_LONG) {
383 wdev->wiphy->retry_long = retry->value;
384 changed |= WIPHY_PARAM_RETRY_LONG;
385 } else if (retry->flags & IW_RETRY_SHORT) {
386 wdev->wiphy->retry_short = retry->value;
387 changed |= WIPHY_PARAM_RETRY_SHORT;
388 } else {
389 wdev->wiphy->retry_short = retry->value;
390 wdev->wiphy->retry_long = retry->value;
391 changed |= WIPHY_PARAM_RETRY_LONG;
392 changed |= WIPHY_PARAM_RETRY_SHORT;
393 }
394
395 if (!changed)
396 return 0;
397
e35e4d28 398 err = rdev_set_wiphy_params(rdev, changed);
b9a5f8ca
JM
399 if (err) {
400 wdev->wiphy->retry_short = oshort;
401 wdev->wiphy->retry_long = olong;
402 }
403
404 return err;
405}
b9a5f8ca
JM
406
407int cfg80211_wext_giwretry(struct net_device *dev,
408 struct iw_request_info *info,
409 struct iw_param *retry, char *extra)
410{
411 struct wireless_dev *wdev = dev->ieee80211_ptr;
412
413 retry->disabled = 0;
414
415 if (retry->flags == 0 || (retry->flags & IW_RETRY_SHORT)) {
416 /*
417 * First return short value, iwconfig will ask long value
418 * later if needed
419 */
420 retry->flags |= IW_RETRY_LIMIT;
421 retry->value = wdev->wiphy->retry_short;
422 if (wdev->wiphy->retry_long != wdev->wiphy->retry_short)
423 retry->flags |= IW_RETRY_LONG;
424
425 return 0;
426 }
427
428 if (retry->flags & IW_RETRY_LONG) {
429 retry->flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
430 retry->value = wdev->wiphy->retry_long;
431 }
432
433 return 0;
434}
ba44cb72 435EXPORT_SYMBOL_GPL(cfg80211_wext_giwretry);
08645126 436
fffd0934 437static int __cfg80211_set_encryption(struct cfg80211_registered_device *rdev,
e31b8213
JB
438 struct net_device *dev, bool pairwise,
439 const u8 *addr, bool remove, bool tx_key,
440 int idx, struct key_params *params)
08645126
JB
441{
442 struct wireless_dev *wdev = dev->ieee80211_ptr;
fffd0934 443 int err, i;
98d3a7ca 444 bool rejoin = false;
fffd0934 445
e31b8213
JB
446 if (pairwise && !addr)
447 return -EINVAL;
448
fffd0934
JB
449 if (!wdev->wext.keys) {
450 wdev->wext.keys = kzalloc(sizeof(*wdev->wext.keys),
451 GFP_KERNEL);
452 if (!wdev->wext.keys)
453 return -ENOMEM;
454 for (i = 0; i < 6; i++)
455 wdev->wext.keys->params[i].key =
456 wdev->wext.keys->data[i];
457 }
458
459 if (wdev->iftype != NL80211_IFTYPE_ADHOC &&
460 wdev->iftype != NL80211_IFTYPE_STATION)
461 return -EOPNOTSUPP;
08645126
JB
462
463 if (params->cipher == WLAN_CIPHER_SUITE_AES_CMAC) {
fffd0934
JB
464 if (!wdev->current_bss)
465 return -ENOLINK;
466
08645126
JB
467 if (!rdev->ops->set_default_mgmt_key)
468 return -EOPNOTSUPP;
469
470 if (idx < 4 || idx > 5)
471 return -EINVAL;
472 } else if (idx < 0 || idx > 3)
473 return -EINVAL;
474
475 if (remove) {
fffd0934 476 err = 0;
98d3a7ca
JB
477 if (wdev->current_bss) {
478 /*
479 * If removing the current TX key, we will need to
480 * join a new IBSS without the privacy bit clear.
481 */
482 if (idx == wdev->wext.default_key &&
483 wdev->iftype == NL80211_IFTYPE_ADHOC) {
484 __cfg80211_leave_ibss(rdev, wdev->netdev, true);
485 rejoin = true;
486 }
e31b8213
JB
487
488 if (!pairwise && addr &&
489 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
490 err = -ENOENT;
491 else
e35e4d28
HG
492 err = rdev_del_key(rdev, dev, idx, pairwise,
493 addr);
98d3a7ca 494 }
d55fb891 495 wdev->wext.connect.privacy = false;
98d3a7ca
JB
496 /*
497 * Applications using wireless extensions expect to be
498 * able to delete keys that don't exist, so allow that.
499 */
500 if (err == -ENOENT)
501 err = 0;
08645126 502 if (!err) {
fffd0934
JB
503 if (!addr) {
504 wdev->wext.keys->params[idx].key_len = 0;
505 wdev->wext.keys->params[idx].cipher = 0;
506 }
08645126
JB
507 if (idx == wdev->wext.default_key)
508 wdev->wext.default_key = -1;
509 else if (idx == wdev->wext.default_mgmt_key)
510 wdev->wext.default_mgmt_key = -1;
511 }
98d3a7ca
JB
512
513 if (!err && rejoin)
514 err = cfg80211_ibss_wext_join(rdev, wdev);
e3da574a 515
08645126 516 return err;
fffd0934 517 }
08645126 518
fffd0934
JB
519 if (addr)
520 tx_key = false;
521
e31b8213 522 if (cfg80211_validate_key_settings(rdev, params, idx, pairwise, addr))
fffd0934 523 return -EINVAL;
08645126 524
fffd0934
JB
525 err = 0;
526 if (wdev->current_bss)
e35e4d28 527 err = rdev_add_key(rdev, dev, idx, pairwise, addr, params);
fffd0934
JB
528 if (err)
529 return err;
530
531 if (!addr) {
532 wdev->wext.keys->params[idx] = *params;
533 memcpy(wdev->wext.keys->data[idx],
534 params->key, params->key_len);
535 wdev->wext.keys->params[idx].key =
536 wdev->wext.keys->data[idx];
537 }
08645126 538
1f00fca5
ZY
539 if ((params->cipher == WLAN_CIPHER_SUITE_WEP40 ||
540 params->cipher == WLAN_CIPHER_SUITE_WEP104) &&
fffd0934 541 (tx_key || (!addr && wdev->wext.default_key == -1))) {
98d3a7ca
JB
542 if (wdev->current_bss) {
543 /*
544 * If we are getting a new TX key from not having
545 * had one before we need to join a new IBSS with
546 * the privacy bit set.
547 */
548 if (wdev->iftype == NL80211_IFTYPE_ADHOC &&
549 wdev->wext.default_key == -1) {
550 __cfg80211_leave_ibss(rdev, wdev->netdev, true);
551 rejoin = true;
552 }
e35e4d28 553 err = rdev_set_default_key(rdev, dev, idx, true, true);
98d3a7ca
JB
554 }
555 if (!err) {
fffd0934 556 wdev->wext.default_key = idx;
98d3a7ca
JB
557 if (rejoin)
558 err = cfg80211_ibss_wext_join(rdev, wdev);
559 }
fffd0934
JB
560 return err;
561 }
08645126 562
fffd0934
JB
563 if (params->cipher == WLAN_CIPHER_SUITE_AES_CMAC &&
564 (tx_key || (!addr && wdev->wext.default_mgmt_key == -1))) {
565 if (wdev->current_bss)
e35e4d28 566 err = rdev_set_default_mgmt_key(rdev, dev, idx);
fffd0934
JB
567 if (!err)
568 wdev->wext.default_mgmt_key = idx;
569 return err;
08645126 570 }
fffd0934
JB
571
572 return 0;
573}
574
575static int cfg80211_set_encryption(struct cfg80211_registered_device *rdev,
e31b8213
JB
576 struct net_device *dev, bool pairwise,
577 const u8 *addr, bool remove, bool tx_key,
578 int idx, struct key_params *params)
fffd0934
JB
579{
580 int err;
581
98d3a7ca
JB
582 /* devlist mutex needed for possible IBSS re-join */
583 mutex_lock(&rdev->devlist_mtx);
fffd0934 584 wdev_lock(dev->ieee80211_ptr);
e31b8213
JB
585 err = __cfg80211_set_encryption(rdev, dev, pairwise, addr,
586 remove, tx_key, idx, params);
fffd0934 587 wdev_unlock(dev->ieee80211_ptr);
98d3a7ca 588 mutex_unlock(&rdev->devlist_mtx);
fffd0934
JB
589
590 return err;
08645126
JB
591}
592
04b0c5c6
JB
593static int cfg80211_wext_siwencode(struct net_device *dev,
594 struct iw_request_info *info,
595 struct iw_point *erq, char *keybuf)
08645126
JB
596{
597 struct wireless_dev *wdev = dev->ieee80211_ptr;
598 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
599 int idx, err;
600 bool remove = false;
601 struct key_params params;
602
fffd0934
JB
603 if (wdev->iftype != NL80211_IFTYPE_STATION &&
604 wdev->iftype != NL80211_IFTYPE_ADHOC)
605 return -EOPNOTSUPP;
606
08645126
JB
607 /* no use -- only MFP (set_default_mgmt_key) is optional */
608 if (!rdev->ops->del_key ||
609 !rdev->ops->add_key ||
610 !rdev->ops->set_default_key)
611 return -EOPNOTSUPP;
612
613 idx = erq->flags & IW_ENCODE_INDEX;
614 if (idx == 0) {
615 idx = wdev->wext.default_key;
616 if (idx < 0)
617 idx = 0;
618 } else if (idx < 1 || idx > 4)
619 return -EINVAL;
620 else
621 idx--;
622
623 if (erq->flags & IW_ENCODE_DISABLED)
624 remove = true;
625 else if (erq->length == 0) {
626 /* No key data - just set the default TX key index */
fffd0934
JB
627 err = 0;
628 wdev_lock(wdev);
629 if (wdev->current_bss)
e35e4d28
HG
630 err = rdev_set_default_key(rdev, dev, idx, true,
631 true);
08645126
JB
632 if (!err)
633 wdev->wext.default_key = idx;
fffd0934 634 wdev_unlock(wdev);
08645126
JB
635 return err;
636 }
637
638 memset(&params, 0, sizeof(params));
639 params.key = keybuf;
640 params.key_len = erq->length;
641 if (erq->length == 5)
642 params.cipher = WLAN_CIPHER_SUITE_WEP40;
643 else if (erq->length == 13)
644 params.cipher = WLAN_CIPHER_SUITE_WEP104;
645 else if (!remove)
646 return -EINVAL;
647
e31b8213 648 return cfg80211_set_encryption(rdev, dev, false, NULL, remove,
08645126
JB
649 wdev->wext.default_key == -1,
650 idx, &params);
651}
08645126 652
04b0c5c6
JB
653static int cfg80211_wext_siwencodeext(struct net_device *dev,
654 struct iw_request_info *info,
655 struct iw_point *erq, char *extra)
08645126
JB
656{
657 struct wireless_dev *wdev = dev->ieee80211_ptr;
658 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
659 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
660 const u8 *addr;
661 int idx;
662 bool remove = false;
663 struct key_params params;
664 u32 cipher;
665
fffd0934
JB
666 if (wdev->iftype != NL80211_IFTYPE_STATION &&
667 wdev->iftype != NL80211_IFTYPE_ADHOC)
668 return -EOPNOTSUPP;
669
08645126
JB
670 /* no use -- only MFP (set_default_mgmt_key) is optional */
671 if (!rdev->ops->del_key ||
672 !rdev->ops->add_key ||
673 !rdev->ops->set_default_key)
674 return -EOPNOTSUPP;
675
676 switch (ext->alg) {
677 case IW_ENCODE_ALG_NONE:
678 remove = true;
679 cipher = 0;
680 break;
681 case IW_ENCODE_ALG_WEP:
682 if (ext->key_len == 5)
683 cipher = WLAN_CIPHER_SUITE_WEP40;
684 else if (ext->key_len == 13)
685 cipher = WLAN_CIPHER_SUITE_WEP104;
686 else
687 return -EINVAL;
688 break;
689 case IW_ENCODE_ALG_TKIP:
690 cipher = WLAN_CIPHER_SUITE_TKIP;
691 break;
692 case IW_ENCODE_ALG_CCMP:
693 cipher = WLAN_CIPHER_SUITE_CCMP;
694 break;
695 case IW_ENCODE_ALG_AES_CMAC:
696 cipher = WLAN_CIPHER_SUITE_AES_CMAC;
697 break;
698 default:
699 return -EOPNOTSUPP;
700 }
701
702 if (erq->flags & IW_ENCODE_DISABLED)
703 remove = true;
704
705 idx = erq->flags & IW_ENCODE_INDEX;
706 if (cipher == WLAN_CIPHER_SUITE_AES_CMAC) {
707 if (idx < 4 || idx > 5) {
708 idx = wdev->wext.default_mgmt_key;
709 if (idx < 0)
710 return -EINVAL;
711 } else
712 idx--;
713 } else {
714 if (idx < 1 || idx > 4) {
715 idx = wdev->wext.default_key;
716 if (idx < 0)
717 return -EINVAL;
718 } else
719 idx--;
720 }
721
722 addr = ext->addr.sa_data;
723 if (is_broadcast_ether_addr(addr))
724 addr = NULL;
725
726 memset(&params, 0, sizeof(params));
727 params.key = ext->key;
728 params.key_len = ext->key_len;
729 params.cipher = cipher;
730
faa8fdc8
JM
731 if (ext->ext_flags & IW_ENCODE_EXT_RX_SEQ_VALID) {
732 params.seq = ext->rx_seq;
733 params.seq_len = 6;
734 }
735
08645126 736 return cfg80211_set_encryption(
e31b8213
JB
737 rdev, dev,
738 !(ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY),
739 addr, remove,
08645126
JB
740 ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY,
741 idx, &params);
742}
08645126 743
04b0c5c6
JB
744static int cfg80211_wext_giwencode(struct net_device *dev,
745 struct iw_request_info *info,
746 struct iw_point *erq, char *keybuf)
08645126
JB
747{
748 struct wireless_dev *wdev = dev->ieee80211_ptr;
fffd0934 749 int idx;
08645126 750
fffd0934
JB
751 if (wdev->iftype != NL80211_IFTYPE_STATION &&
752 wdev->iftype != NL80211_IFTYPE_ADHOC)
08645126
JB
753 return -EOPNOTSUPP;
754
755 idx = erq->flags & IW_ENCODE_INDEX;
756 if (idx == 0) {
757 idx = wdev->wext.default_key;
758 if (idx < 0)
759 idx = 0;
760 } else if (idx < 1 || idx > 4)
761 return -EINVAL;
762 else
763 idx--;
764
765 erq->flags = idx + 1;
766
fffd0934 767 if (!wdev->wext.keys || !wdev->wext.keys->params[idx].cipher) {
08645126
JB
768 erq->flags |= IW_ENCODE_DISABLED;
769 erq->length = 0;
770 return 0;
771 }
772
fffd0934
JB
773 erq->length = min_t(size_t, erq->length,
774 wdev->wext.keys->params[idx].key_len);
775 memcpy(keybuf, wdev->wext.keys->params[idx].key, erq->length);
776 erq->flags |= IW_ENCODE_ENABLED;
777
778 return 0;
08645126 779}
7643a2c3 780
04b0c5c6
JB
781static int cfg80211_wext_siwfreq(struct net_device *dev,
782 struct iw_request_info *info,
783 struct iw_freq *wextfreq, char *extra)
0e82ffe3
JB
784{
785 struct wireless_dev *wdev = dev->ieee80211_ptr;
786 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
683b6d3b 787 struct cfg80211_chan_def chandef = {
3d9d1d66 788 .width = NL80211_CHAN_WIDTH_20_NOHT,
683b6d3b 789 };
59bbb6f7 790 int freq, err;
0e82ffe3
JB
791
792 switch (wdev->iftype) {
793 case NL80211_IFTYPE_STATION:
59bbb6f7 794 return cfg80211_mgd_wext_siwfreq(dev, info, wextfreq, extra);
0e82ffe3 795 case NL80211_IFTYPE_ADHOC:
59bbb6f7 796 return cfg80211_ibss_wext_siwfreq(dev, info, wextfreq, extra);
f444de05 797 case NL80211_IFTYPE_MONITOR:
59bbb6f7
JB
798 freq = cfg80211_wext_freq(wdev->wiphy, wextfreq);
799 if (freq < 0)
800 return freq;
801 if (freq == 0)
0e82ffe3 802 return -EINVAL;
3d9d1d66 803 chandef.center_freq1 = freq;
683b6d3b
JB
804 chandef.chan = ieee80211_get_channel(&rdev->wiphy, freq);
805 if (!chandef.chan)
806 return -EINVAL;
59bbb6f7 807 mutex_lock(&rdev->devlist_mtx);
683b6d3b 808 err = cfg80211_set_monitor_channel(rdev, &chandef);
4f919a3b 809 mutex_unlock(&rdev->devlist_mtx);
59bbb6f7 810 return err;
cc1d2806
JB
811 case NL80211_IFTYPE_MESH_POINT:
812 freq = cfg80211_wext_freq(wdev->wiphy, wextfreq);
813 if (freq < 0)
814 return freq;
815 if (freq == 0)
816 return -EINVAL;
3d9d1d66 817 chandef.center_freq1 = freq;
683b6d3b
JB
818 chandef.chan = ieee80211_get_channel(&rdev->wiphy, freq);
819 if (!chandef.chan)
820 return -EINVAL;
cc1d2806 821 mutex_lock(&rdev->devlist_mtx);
683b6d3b 822 err = cfg80211_set_mesh_channel(rdev, wdev, &chandef);
cc1d2806
JB
823 mutex_unlock(&rdev->devlist_mtx);
824 return err;
f444de05
JB
825 default:
826 return -EOPNOTSUPP;
0e82ffe3
JB
827 }
828}
0e82ffe3 829
04b0c5c6
JB
830static int cfg80211_wext_giwfreq(struct net_device *dev,
831 struct iw_request_info *info,
832 struct iw_freq *freq, char *extra)
0e82ffe3
JB
833{
834 struct wireless_dev *wdev = dev->ieee80211_ptr;
e999882a 835 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
683b6d3b
JB
836 struct cfg80211_chan_def chandef;
837 int ret;
0e82ffe3
JB
838
839 switch (wdev->iftype) {
840 case NL80211_IFTYPE_STATION:
841 return cfg80211_mgd_wext_giwfreq(dev, info, freq, extra);
842 case NL80211_IFTYPE_ADHOC:
843 return cfg80211_ibss_wext_giwfreq(dev, info, freq, extra);
e999882a 844 case NL80211_IFTYPE_MONITOR:
5b7ccaf3 845 if (!rdev->ops->get_channel)
e999882a
JB
846 return -EINVAL;
847
683b6d3b
JB
848 ret = rdev_get_channel(rdev, wdev, &chandef);
849 if (ret)
850 return ret;
851 freq->m = chandef.chan->center_freq;
e999882a
JB
852 freq->e = 6;
853 return 0;
0e82ffe3 854 default:
e8c9bd5b 855 return -EINVAL;
0e82ffe3
JB
856 }
857}
0e82ffe3 858
04b0c5c6
JB
859static int cfg80211_wext_siwtxpower(struct net_device *dev,
860 struct iw_request_info *info,
861 union iwreq_data *data, char *extra)
7643a2c3
JB
862{
863 struct wireless_dev *wdev = dev->ieee80211_ptr;
864 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
fa61cf70 865 enum nl80211_tx_power_setting type;
7643a2c3
JB
866 int dbm = 0;
867
868 if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
869 return -EINVAL;
870 if (data->txpower.flags & IW_TXPOW_RANGE)
871 return -EINVAL;
872
873 if (!rdev->ops->set_tx_power)
874 return -EOPNOTSUPP;
875
876 /* only change when not disabling */
877 if (!data->txpower.disabled) {
1f87f7d3
JB
878 rfkill_set_sw_state(rdev->rfkill, false);
879
7643a2c3
JB
880 if (data->txpower.fixed) {
881 /*
882 * wext doesn't support negative values, see
883 * below where it's for automatic
884 */
885 if (data->txpower.value < 0)
886 return -EINVAL;
887 dbm = data->txpower.value;
fa61cf70 888 type = NL80211_TX_POWER_FIXED;
7643a2c3
JB
889 /* TODO: do regulatory check! */
890 } else {
891 /*
892 * Automatic power level setting, max being the value
893 * passed in from userland.
894 */
895 if (data->txpower.value < 0) {
fa61cf70 896 type = NL80211_TX_POWER_AUTOMATIC;
7643a2c3
JB
897 } else {
898 dbm = data->txpower.value;
fa61cf70 899 type = NL80211_TX_POWER_LIMITED;
7643a2c3
JB
900 }
901 }
902 } else {
1f87f7d3
JB
903 rfkill_set_sw_state(rdev->rfkill, true);
904 schedule_work(&rdev->rfkill_sync);
905 return 0;
7643a2c3
JB
906 }
907
c8442118 908 return rdev_set_tx_power(rdev, wdev, type, DBM_TO_MBM(dbm));
7643a2c3 909}
7643a2c3 910
04b0c5c6
JB
911static int cfg80211_wext_giwtxpower(struct net_device *dev,
912 struct iw_request_info *info,
913 union iwreq_data *data, char *extra)
7643a2c3
JB
914{
915 struct wireless_dev *wdev = dev->ieee80211_ptr;
916 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
917 int err, val;
918
919 if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
920 return -EINVAL;
921 if (data->txpower.flags & IW_TXPOW_RANGE)
922 return -EINVAL;
923
924 if (!rdev->ops->get_tx_power)
925 return -EOPNOTSUPP;
926
c8442118 927 err = rdev_get_tx_power(rdev, wdev, &val);
1f87f7d3 928 if (err)
7643a2c3
JB
929 return err;
930
931 /* well... oh well */
932 data->txpower.fixed = 1;
1f87f7d3 933 data->txpower.disabled = rfkill_blocked(rdev->rfkill);
7643a2c3
JB
934 data->txpower.value = val;
935 data->txpower.flags = IW_TXPOW_DBM;
936
937 return 0;
938}
f2129354
JB
939
940static int cfg80211_set_auth_alg(struct wireless_dev *wdev,
941 s32 auth_alg)
942{
943 int nr_alg = 0;
944
945 if (!auth_alg)
946 return -EINVAL;
947
948 if (auth_alg & ~(IW_AUTH_ALG_OPEN_SYSTEM |
949 IW_AUTH_ALG_SHARED_KEY |
950 IW_AUTH_ALG_LEAP))
951 return -EINVAL;
952
953 if (auth_alg & IW_AUTH_ALG_OPEN_SYSTEM) {
954 nr_alg++;
955 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM;
956 }
957
958 if (auth_alg & IW_AUTH_ALG_SHARED_KEY) {
959 nr_alg++;
960 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_SHARED_KEY;
961 }
962
963 if (auth_alg & IW_AUTH_ALG_LEAP) {
964 nr_alg++;
965 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_NETWORK_EAP;
966 }
967
968 if (nr_alg > 1)
969 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
970
971 return 0;
972}
973
974static int cfg80211_set_wpa_version(struct wireless_dev *wdev, u32 wpa_versions)
975{
f2129354 976 if (wpa_versions & ~(IW_AUTH_WPA_VERSION_WPA |
323d566e
GS
977 IW_AUTH_WPA_VERSION_WPA2|
978 IW_AUTH_WPA_VERSION_DISABLED))
f2129354
JB
979 return -EINVAL;
980
323d566e
GS
981 if ((wpa_versions & IW_AUTH_WPA_VERSION_DISABLED) &&
982 (wpa_versions & (IW_AUTH_WPA_VERSION_WPA|
983 IW_AUTH_WPA_VERSION_WPA2)))
984 return -EINVAL;
985
986 if (wpa_versions & IW_AUTH_WPA_VERSION_DISABLED)
987 wdev->wext.connect.crypto.wpa_versions &=
988 ~(NL80211_WPA_VERSION_1|NL80211_WPA_VERSION_2);
989
f2129354
JB
990 if (wpa_versions & IW_AUTH_WPA_VERSION_WPA)
991 wdev->wext.connect.crypto.wpa_versions |=
992 NL80211_WPA_VERSION_1;
993
994 if (wpa_versions & IW_AUTH_WPA_VERSION_WPA2)
995 wdev->wext.connect.crypto.wpa_versions |=
996 NL80211_WPA_VERSION_2;
997
998 return 0;
999}
1000
4f5dadce 1001static int cfg80211_set_cipher_group(struct wireless_dev *wdev, u32 cipher)
f2129354 1002{
f2129354
JB
1003 if (cipher & IW_AUTH_CIPHER_WEP40)
1004 wdev->wext.connect.crypto.cipher_group =
1005 WLAN_CIPHER_SUITE_WEP40;
1006 else if (cipher & IW_AUTH_CIPHER_WEP104)
1007 wdev->wext.connect.crypto.cipher_group =
1008 WLAN_CIPHER_SUITE_WEP104;
1009 else if (cipher & IW_AUTH_CIPHER_TKIP)
1010 wdev->wext.connect.crypto.cipher_group =
1011 WLAN_CIPHER_SUITE_TKIP;
1012 else if (cipher & IW_AUTH_CIPHER_CCMP)
1013 wdev->wext.connect.crypto.cipher_group =
1014 WLAN_CIPHER_SUITE_CCMP;
1015 else if (cipher & IW_AUTH_CIPHER_AES_CMAC)
1016 wdev->wext.connect.crypto.cipher_group =
1017 WLAN_CIPHER_SUITE_AES_CMAC;
c5f8289c
JM
1018 else if (cipher & IW_AUTH_CIPHER_NONE)
1019 wdev->wext.connect.crypto.cipher_group = 0;
f2129354
JB
1020 else
1021 return -EINVAL;
1022
1023 return 0;
1024}
1025
4f5dadce 1026static int cfg80211_set_cipher_pairwise(struct wireless_dev *wdev, u32 cipher)
f2129354
JB
1027{
1028 int nr_ciphers = 0;
1029 u32 *ciphers_pairwise = wdev->wext.connect.crypto.ciphers_pairwise;
1030
1031 if (cipher & IW_AUTH_CIPHER_WEP40) {
1032 ciphers_pairwise[nr_ciphers] = WLAN_CIPHER_SUITE_WEP40;
1033 nr_ciphers++;
1034 }
1035
1036 if (cipher & IW_AUTH_CIPHER_WEP104) {
1037 ciphers_pairwise[nr_ciphers] = WLAN_CIPHER_SUITE_WEP104;
1038 nr_ciphers++;
1039 }
1040
1041 if (cipher & IW_AUTH_CIPHER_TKIP) {
1042 ciphers_pairwise[nr_ciphers] = WLAN_CIPHER_SUITE_TKIP;
1043 nr_ciphers++;
1044 }
1045
1046 if (cipher & IW_AUTH_CIPHER_CCMP) {
1047 ciphers_pairwise[nr_ciphers] = WLAN_CIPHER_SUITE_CCMP;
1048 nr_ciphers++;
1049 }
1050
1051 if (cipher & IW_AUTH_CIPHER_AES_CMAC) {
1052 ciphers_pairwise[nr_ciphers] = WLAN_CIPHER_SUITE_AES_CMAC;
1053 nr_ciphers++;
1054 }
1055
1056 BUILD_BUG_ON(NL80211_MAX_NR_CIPHER_SUITES < 5);
1057
1058 wdev->wext.connect.crypto.n_ciphers_pairwise = nr_ciphers;
1059
1060 return 0;
1061}
1062
1063
4f5dadce 1064static int cfg80211_set_key_mgt(struct wireless_dev *wdev, u32 key_mgt)
f2129354
JB
1065{
1066 int nr_akm_suites = 0;
1067
1068 if (key_mgt & ~(IW_AUTH_KEY_MGMT_802_1X |
1069 IW_AUTH_KEY_MGMT_PSK))
1070 return -EINVAL;
1071
1072 if (key_mgt & IW_AUTH_KEY_MGMT_802_1X) {
1073 wdev->wext.connect.crypto.akm_suites[nr_akm_suites] =
1074 WLAN_AKM_SUITE_8021X;
1075 nr_akm_suites++;
1076 }
1077
1078 if (key_mgt & IW_AUTH_KEY_MGMT_PSK) {
1079 wdev->wext.connect.crypto.akm_suites[nr_akm_suites] =
1080 WLAN_AKM_SUITE_PSK;
1081 nr_akm_suites++;
1082 }
1083
1084 wdev->wext.connect.crypto.n_akm_suites = nr_akm_suites;
1085
1086 return 0;
1087}
1088
04b0c5c6
JB
1089static int cfg80211_wext_siwauth(struct net_device *dev,
1090 struct iw_request_info *info,
1091 struct iw_param *data, char *extra)
f2129354
JB
1092{
1093 struct wireless_dev *wdev = dev->ieee80211_ptr;
1094
1095 if (wdev->iftype != NL80211_IFTYPE_STATION)
1096 return -EOPNOTSUPP;
1097
1098 switch (data->flags & IW_AUTH_INDEX) {
1099 case IW_AUTH_PRIVACY_INVOKED:
1100 wdev->wext.connect.privacy = data->value;
1101 return 0;
1102 case IW_AUTH_WPA_VERSION:
1103 return cfg80211_set_wpa_version(wdev, data->value);
1104 case IW_AUTH_CIPHER_GROUP:
1105 return cfg80211_set_cipher_group(wdev, data->value);
1106 case IW_AUTH_KEY_MGMT:
1107 return cfg80211_set_key_mgt(wdev, data->value);
1108 case IW_AUTH_CIPHER_PAIRWISE:
1109 return cfg80211_set_cipher_pairwise(wdev, data->value);
1110 case IW_AUTH_80211_AUTH_ALG:
1111 return cfg80211_set_auth_alg(wdev, data->value);
1112 case IW_AUTH_WPA_ENABLED:
1113 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
1114 case IW_AUTH_DROP_UNENCRYPTED:
1115 case IW_AUTH_MFP:
1116 return 0;
1117 default:
1118 return -EOPNOTSUPP;
1119 }
1120}
f2129354 1121
04b0c5c6
JB
1122static int cfg80211_wext_giwauth(struct net_device *dev,
1123 struct iw_request_info *info,
1124 struct iw_param *data, char *extra)
f2129354
JB
1125{
1126 /* XXX: what do we need? */
1127
1128 return -EOPNOTSUPP;
1129}
bc92afd9 1130
04b0c5c6
JB
1131static int cfg80211_wext_siwpower(struct net_device *dev,
1132 struct iw_request_info *info,
1133 struct iw_param *wrq, char *extra)
bc92afd9
JB
1134{
1135 struct wireless_dev *wdev = dev->ieee80211_ptr;
1136 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
ffb9eb3d
KV
1137 bool ps = wdev->ps;
1138 int timeout = wdev->ps_timeout;
bc92afd9
JB
1139 int err;
1140
1141 if (wdev->iftype != NL80211_IFTYPE_STATION)
1142 return -EINVAL;
1143
1144 if (!rdev->ops->set_power_mgmt)
1145 return -EOPNOTSUPP;
1146
1147 if (wrq->disabled) {
1148 ps = false;
1149 } else {
1150 switch (wrq->flags & IW_POWER_MODE) {
1151 case IW_POWER_ON: /* If not specified */
1152 case IW_POWER_MODE: /* If set all mask */
1153 case IW_POWER_ALL_R: /* If explicitely state all */
1154 ps = true;
1155 break;
1156 default: /* Otherwise we ignore */
1157 return -EINVAL;
1158 }
1159
1160 if (wrq->flags & ~(IW_POWER_MODE | IW_POWER_TIMEOUT))
1161 return -EINVAL;
1162
1163 if (wrq->flags & IW_POWER_TIMEOUT)
1164 timeout = wrq->value / 1000;
1165 }
1166
e35e4d28 1167 err = rdev_set_power_mgmt(rdev, dev, ps, timeout);
bc92afd9
JB
1168 if (err)
1169 return err;
1170
ffb9eb3d
KV
1171 wdev->ps = ps;
1172 wdev->ps_timeout = timeout;
bc92afd9
JB
1173
1174 return 0;
1175
1176}
bc92afd9 1177
04b0c5c6
JB
1178static int cfg80211_wext_giwpower(struct net_device *dev,
1179 struct iw_request_info *info,
1180 struct iw_param *wrq, char *extra)
bc92afd9
JB
1181{
1182 struct wireless_dev *wdev = dev->ieee80211_ptr;
1183
ffb9eb3d 1184 wrq->disabled = !wdev->ps;
bc92afd9
JB
1185
1186 return 0;
1187}
ab737a4f 1188
562e4822
JB
1189static int cfg80211_wds_wext_siwap(struct net_device *dev,
1190 struct iw_request_info *info,
1191 struct sockaddr *addr, char *extra)
ab737a4f
JB
1192{
1193 struct wireless_dev *wdev = dev->ieee80211_ptr;
1194 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
1195 int err;
1196
1197 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_WDS))
1198 return -EINVAL;
1199
1200 if (addr->sa_family != ARPHRD_ETHER)
1201 return -EINVAL;
1202
1203 if (netif_running(dev))
1204 return -EBUSY;
1205
1206 if (!rdev->ops->set_wds_peer)
1207 return -EOPNOTSUPP;
1208
e35e4d28 1209 err = rdev_set_wds_peer(rdev, dev, (u8 *)&addr->sa_data);
ab737a4f
JB
1210 if (err)
1211 return err;
1212
1213 memcpy(&wdev->wext.bssid, (u8 *) &addr->sa_data, ETH_ALEN);
1214
1215 return 0;
1216}
ab737a4f 1217
562e4822
JB
1218static int cfg80211_wds_wext_giwap(struct net_device *dev,
1219 struct iw_request_info *info,
1220 struct sockaddr *addr, char *extra)
ab737a4f
JB
1221{
1222 struct wireless_dev *wdev = dev->ieee80211_ptr;
1223
1224 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_WDS))
1225 return -EINVAL;
1226
1227 addr->sa_family = ARPHRD_ETHER;
1228 memcpy(&addr->sa_data, wdev->wext.bssid, ETH_ALEN);
1229
1230 return 0;
1231}
9930380f 1232
04b0c5c6
JB
1233static int cfg80211_wext_siwrate(struct net_device *dev,
1234 struct iw_request_info *info,
1235 struct iw_param *rate, char *extra)
9930380f
JB
1236{
1237 struct wireless_dev *wdev = dev->ieee80211_ptr;
1238 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
1239 struct cfg80211_bitrate_mask mask;
37eb0b16
JM
1240 u32 fixed, maxrate;
1241 struct ieee80211_supported_band *sband;
1242 int band, ridx;
1243 bool match = false;
9930380f
JB
1244
1245 if (!rdev->ops->set_bitrate_mask)
1246 return -EOPNOTSUPP;
1247
37eb0b16
JM
1248 memset(&mask, 0, sizeof(mask));
1249 fixed = 0;
54233261 1250 maxrate = (u32)-1;
9930380f
JB
1251
1252 if (rate->value < 0) {
1253 /* nothing */
1254 } else if (rate->fixed) {
37eb0b16 1255 fixed = rate->value / 100000;
9930380f 1256 } else {
37eb0b16
JM
1257 maxrate = rate->value / 100000;
1258 }
1259
1260 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1261 sband = wdev->wiphy->bands[band];
1262 if (sband == NULL)
1263 continue;
1264 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
1265 struct ieee80211_rate *srate = &sband->bitrates[ridx];
1266 if (fixed == srate->bitrate) {
1267 mask.control[band].legacy = 1 << ridx;
1268 match = true;
1269 break;
1270 }
1271 if (srate->bitrate <= maxrate) {
1272 mask.control[band].legacy |= 1 << ridx;
1273 match = true;
1274 }
1275 }
9930380f
JB
1276 }
1277
37eb0b16
JM
1278 if (!match)
1279 return -EINVAL;
1280
e35e4d28 1281 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
9930380f 1282}
9930380f 1283
04b0c5c6
JB
1284static int cfg80211_wext_giwrate(struct net_device *dev,
1285 struct iw_request_info *info,
1286 struct iw_param *rate, char *extra)
9930380f
JB
1287{
1288 struct wireless_dev *wdev = dev->ieee80211_ptr;
1289 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
1290 /* we are under RTNL - globally locked - so can use a static struct */
1291 static struct station_info sinfo;
a71d62db 1292 u8 addr[ETH_ALEN];
9930380f
JB
1293 int err;
1294
1295 if (wdev->iftype != NL80211_IFTYPE_STATION)
1296 return -EOPNOTSUPP;
1297
1298 if (!rdev->ops->get_station)
1299 return -EOPNOTSUPP;
1300
a71d62db
JB
1301 err = 0;
1302 wdev_lock(wdev);
6c230c02 1303 if (wdev->current_bss)
a71d62db 1304 memcpy(addr, wdev->current_bss->pub.bssid, ETH_ALEN);
6c230c02 1305 else
a71d62db
JB
1306 err = -EOPNOTSUPP;
1307 wdev_unlock(wdev);
1308 if (err)
1309 return err;
9930380f 1310
e35e4d28 1311 err = rdev_get_station(rdev, dev, addr, &sinfo);
9930380f
JB
1312 if (err)
1313 return err;
1314
1315 if (!(sinfo.filled & STATION_INFO_TX_BITRATE))
1316 return -EOPNOTSUPP;
1317
254416aa 1318 rate->value = 100000 * cfg80211_calculate_bitrate(&sinfo.txrate);
9930380f
JB
1319
1320 return 0;
1321}
8990646d
JB
1322
1323/* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
04b0c5c6 1324static struct iw_statistics *cfg80211_wireless_stats(struct net_device *dev)
8990646d
JB
1325{
1326 struct wireless_dev *wdev = dev->ieee80211_ptr;
1327 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
1328 /* we are under RTNL - globally locked - so can use static structs */
1329 static struct iw_statistics wstats;
1330 static struct station_info sinfo;
c56c5714 1331 u8 bssid[ETH_ALEN];
8990646d
JB
1332
1333 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION)
1334 return NULL;
1335
1336 if (!rdev->ops->get_station)
1337 return NULL;
1338
c56c5714
JB
1339 /* Grab BSSID of current BSS, if any */
1340 wdev_lock(wdev);
1341 if (!wdev->current_bss) {
1342 wdev_unlock(wdev);
8990646d 1343 return NULL;
c56c5714
JB
1344 }
1345 memcpy(bssid, wdev->current_bss->pub.bssid, ETH_ALEN);
1346 wdev_unlock(wdev);
8990646d 1347
98d94f20
JB
1348 memset(&sinfo, 0, sizeof(sinfo));
1349
e35e4d28 1350 if (rdev_get_station(rdev, dev, bssid, &sinfo))
8990646d
JB
1351 return NULL;
1352
1353 memset(&wstats, 0, sizeof(wstats));
1354
1355 switch (rdev->wiphy.signal_type) {
1356 case CFG80211_SIGNAL_TYPE_MBM:
1357 if (sinfo.filled & STATION_INFO_SIGNAL) {
1358 int sig = sinfo.signal;
1359 wstats.qual.updated |= IW_QUAL_LEVEL_UPDATED;
1360 wstats.qual.updated |= IW_QUAL_QUAL_UPDATED;
1361 wstats.qual.updated |= IW_QUAL_DBM;
1362 wstats.qual.level = sig;
1363 if (sig < -110)
1364 sig = -110;
1365 else if (sig > -40)
1366 sig = -40;
1367 wstats.qual.qual = sig + 110;
1368 break;
1369 }
1370 case CFG80211_SIGNAL_TYPE_UNSPEC:
1371 if (sinfo.filled & STATION_INFO_SIGNAL) {
1372 wstats.qual.updated |= IW_QUAL_LEVEL_UPDATED;
1373 wstats.qual.updated |= IW_QUAL_QUAL_UPDATED;
1374 wstats.qual.level = sinfo.signal;
1375 wstats.qual.qual = sinfo.signal;
1376 break;
1377 }
1378 default:
1379 wstats.qual.updated |= IW_QUAL_LEVEL_INVALID;
1380 wstats.qual.updated |= IW_QUAL_QUAL_INVALID;
1381 }
1382
1383 wstats.qual.updated |= IW_QUAL_NOISE_INVALID;
5a5c731a
BG
1384 if (sinfo.filled & STATION_INFO_RX_DROP_MISC)
1385 wstats.discard.misc = sinfo.rx_dropped_misc;
1386 if (sinfo.filled & STATION_INFO_TX_FAILED)
1387 wstats.discard.retries = sinfo.tx_failed;
8990646d
JB
1388
1389 return &wstats;
1390}
562e4822 1391
04b0c5c6
JB
1392static int cfg80211_wext_siwap(struct net_device *dev,
1393 struct iw_request_info *info,
1394 struct sockaddr *ap_addr, char *extra)
562e4822
JB
1395{
1396 struct wireless_dev *wdev = dev->ieee80211_ptr;
1397
1398 switch (wdev->iftype) {
1399 case NL80211_IFTYPE_ADHOC:
1400 return cfg80211_ibss_wext_siwap(dev, info, ap_addr, extra);
1401 case NL80211_IFTYPE_STATION:
1402 return cfg80211_mgd_wext_siwap(dev, info, ap_addr, extra);
1403 case NL80211_IFTYPE_WDS:
1404 return cfg80211_wds_wext_siwap(dev, info, ap_addr, extra);
1405 default:
1406 return -EOPNOTSUPP;
1407 }
1408}
562e4822 1409
04b0c5c6
JB
1410static int cfg80211_wext_giwap(struct net_device *dev,
1411 struct iw_request_info *info,
1412 struct sockaddr *ap_addr, char *extra)
562e4822
JB
1413{
1414 struct wireless_dev *wdev = dev->ieee80211_ptr;
1415
1416 switch (wdev->iftype) {
1417 case NL80211_IFTYPE_ADHOC:
1418 return cfg80211_ibss_wext_giwap(dev, info, ap_addr, extra);
1419 case NL80211_IFTYPE_STATION:
1420 return cfg80211_mgd_wext_giwap(dev, info, ap_addr, extra);
1421 case NL80211_IFTYPE_WDS:
1422 return cfg80211_wds_wext_giwap(dev, info, ap_addr, extra);
1423 default:
1424 return -EOPNOTSUPP;
1425 }
1426}
1f9298f9 1427
04b0c5c6
JB
1428static int cfg80211_wext_siwessid(struct net_device *dev,
1429 struct iw_request_info *info,
1430 struct iw_point *data, char *ssid)
1f9298f9
JB
1431{
1432 struct wireless_dev *wdev = dev->ieee80211_ptr;
1433
1434 switch (wdev->iftype) {
1435 case NL80211_IFTYPE_ADHOC:
1436 return cfg80211_ibss_wext_siwessid(dev, info, data, ssid);
1437 case NL80211_IFTYPE_STATION:
1438 return cfg80211_mgd_wext_siwessid(dev, info, data, ssid);
1439 default:
1440 return -EOPNOTSUPP;
1441 }
1442}
1f9298f9 1443
04b0c5c6
JB
1444static int cfg80211_wext_giwessid(struct net_device *dev,
1445 struct iw_request_info *info,
1446 struct iw_point *data, char *ssid)
1f9298f9
JB
1447{
1448 struct wireless_dev *wdev = dev->ieee80211_ptr;
1449
42da2f94
JB
1450 data->flags = 0;
1451 data->length = 0;
1452
1f9298f9
JB
1453 switch (wdev->iftype) {
1454 case NL80211_IFTYPE_ADHOC:
1455 return cfg80211_ibss_wext_giwessid(dev, info, data, ssid);
1456 case NL80211_IFTYPE_STATION:
1457 return cfg80211_mgd_wext_giwessid(dev, info, data, ssid);
1458 default:
1459 return -EOPNOTSUPP;
1460 }
1461}
a9a11622 1462
04b0c5c6
JB
1463static int cfg80211_wext_siwpmksa(struct net_device *dev,
1464 struct iw_request_info *info,
1465 struct iw_point *data, char *extra)
2944b2c2
SO
1466{
1467 struct wireless_dev *wdev = dev->ieee80211_ptr;
1468 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
1469 struct cfg80211_pmksa cfg_pmksa;
1470 struct iw_pmksa *pmksa = (struct iw_pmksa *)extra;
1471
1472 memset(&cfg_pmksa, 0, sizeof(struct cfg80211_pmksa));
1473
1474 if (wdev->iftype != NL80211_IFTYPE_STATION)
1475 return -EINVAL;
1476
1477 cfg_pmksa.bssid = pmksa->bssid.sa_data;
1478 cfg_pmksa.pmkid = pmksa->pmkid;
1479
1480 switch (pmksa->cmd) {
1481 case IW_PMKSA_ADD:
1482 if (!rdev->ops->set_pmksa)
1483 return -EOPNOTSUPP;
1484
e35e4d28 1485 return rdev_set_pmksa(rdev, dev, &cfg_pmksa);
2944b2c2
SO
1486
1487 case IW_PMKSA_REMOVE:
1488 if (!rdev->ops->del_pmksa)
1489 return -EOPNOTSUPP;
1490
e35e4d28 1491 return rdev_del_pmksa(rdev, dev, &cfg_pmksa);
2944b2c2
SO
1492
1493 case IW_PMKSA_FLUSH:
1494 if (!rdev->ops->flush_pmksa)
1495 return -EOPNOTSUPP;
1496
e35e4d28 1497 return rdev_flush_pmksa(rdev, dev);
2944b2c2
SO
1498
1499 default:
1500 return -EOPNOTSUPP;
1501 }
1502}
1503
a9a11622
JB
1504static const iw_handler cfg80211_handlers[] = {
1505 [IW_IOCTL_IDX(SIOCGIWNAME)] = (iw_handler) cfg80211_wext_giwname,
1506 [IW_IOCTL_IDX(SIOCSIWFREQ)] = (iw_handler) cfg80211_wext_siwfreq,
1507 [IW_IOCTL_IDX(SIOCGIWFREQ)] = (iw_handler) cfg80211_wext_giwfreq,
1508 [IW_IOCTL_IDX(SIOCSIWMODE)] = (iw_handler) cfg80211_wext_siwmode,
1509 [IW_IOCTL_IDX(SIOCGIWMODE)] = (iw_handler) cfg80211_wext_giwmode,
1510 [IW_IOCTL_IDX(SIOCGIWRANGE)] = (iw_handler) cfg80211_wext_giwrange,
1511 [IW_IOCTL_IDX(SIOCSIWAP)] = (iw_handler) cfg80211_wext_siwap,
1512 [IW_IOCTL_IDX(SIOCGIWAP)] = (iw_handler) cfg80211_wext_giwap,
1513 [IW_IOCTL_IDX(SIOCSIWMLME)] = (iw_handler) cfg80211_wext_siwmlme,
1514 [IW_IOCTL_IDX(SIOCSIWSCAN)] = (iw_handler) cfg80211_wext_siwscan,
1515 [IW_IOCTL_IDX(SIOCGIWSCAN)] = (iw_handler) cfg80211_wext_giwscan,
1516 [IW_IOCTL_IDX(SIOCSIWESSID)] = (iw_handler) cfg80211_wext_siwessid,
1517 [IW_IOCTL_IDX(SIOCGIWESSID)] = (iw_handler) cfg80211_wext_giwessid,
1518 [IW_IOCTL_IDX(SIOCSIWRATE)] = (iw_handler) cfg80211_wext_siwrate,
1519 [IW_IOCTL_IDX(SIOCGIWRATE)] = (iw_handler) cfg80211_wext_giwrate,
1520 [IW_IOCTL_IDX(SIOCSIWRTS)] = (iw_handler) cfg80211_wext_siwrts,
1521 [IW_IOCTL_IDX(SIOCGIWRTS)] = (iw_handler) cfg80211_wext_giwrts,
1522 [IW_IOCTL_IDX(SIOCSIWFRAG)] = (iw_handler) cfg80211_wext_siwfrag,
1523 [IW_IOCTL_IDX(SIOCGIWFRAG)] = (iw_handler) cfg80211_wext_giwfrag,
1524 [IW_IOCTL_IDX(SIOCSIWTXPOW)] = (iw_handler) cfg80211_wext_siwtxpower,
1525 [IW_IOCTL_IDX(SIOCGIWTXPOW)] = (iw_handler) cfg80211_wext_giwtxpower,
1526 [IW_IOCTL_IDX(SIOCSIWRETRY)] = (iw_handler) cfg80211_wext_siwretry,
1527 [IW_IOCTL_IDX(SIOCGIWRETRY)] = (iw_handler) cfg80211_wext_giwretry,
1528 [IW_IOCTL_IDX(SIOCSIWENCODE)] = (iw_handler) cfg80211_wext_siwencode,
1529 [IW_IOCTL_IDX(SIOCGIWENCODE)] = (iw_handler) cfg80211_wext_giwencode,
1530 [IW_IOCTL_IDX(SIOCSIWPOWER)] = (iw_handler) cfg80211_wext_siwpower,
1531 [IW_IOCTL_IDX(SIOCGIWPOWER)] = (iw_handler) cfg80211_wext_giwpower,
1532 [IW_IOCTL_IDX(SIOCSIWGENIE)] = (iw_handler) cfg80211_wext_siwgenie,
1533 [IW_IOCTL_IDX(SIOCSIWAUTH)] = (iw_handler) cfg80211_wext_siwauth,
1534 [IW_IOCTL_IDX(SIOCGIWAUTH)] = (iw_handler) cfg80211_wext_giwauth,
1535 [IW_IOCTL_IDX(SIOCSIWENCODEEXT)]= (iw_handler) cfg80211_wext_siwencodeext,
2944b2c2 1536 [IW_IOCTL_IDX(SIOCSIWPMKSA)] = (iw_handler) cfg80211_wext_siwpmksa,
a9a11622
JB
1537};
1538
1539const struct iw_handler_def cfg80211_wext_handler = {
1540 .num_standard = ARRAY_SIZE(cfg80211_handlers),
1541 .standard = cfg80211_handlers,
1542 .get_wireless_stats = cfg80211_wireless_stats,
1543};