blob: 5a452575719d4e4e2bd3f22b81989b7f7dc387b2 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
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"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040024#include "led.h"
25#include "rate.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070026#include "wpa.h"
27#include "aes_ccm.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070028
Johannes Bergb708e612007-09-14 11:10:25 -040029
Jiri Bencf0706e82007-05-05 11:45:53 -070030static int ieee80211_set_encryption(struct net_device *dev, u8 *sta_addr,
Johannes Berg628a1402007-09-26 17:53:17 +020031 int idx, int alg, int remove,
32 int set_tx_key, const u8 *_key,
33 size_t key_len)
Jiri Bencf0706e82007-05-05 11:45:53 -070034{
35 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergd0709a62008-02-25 16:27:46 +010036 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040037 struct ieee80211_key *key;
Jiri Bencf0706e82007-05-05 11:45:53 -070038 struct ieee80211_sub_if_data *sdata;
Johannes Berg3b967662008-04-08 17:56:52 +020039 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070040
41 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
42
Volker Braun139c3a02007-09-14 11:10:25 -040043 if (idx < 0 || idx >= NUM_DEFAULT_KEYS) {
44 printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d\n",
45 dev->name, idx);
46 return -EINVAL;
47 }
48
Johannes Berg628a1402007-09-26 17:53:17 +020049 if (remove) {
Johannes Berg3b967662008-04-08 17:56:52 +020050 rcu_read_lock();
51
52 err = 0;
53
Johannes Bergdb4d1162008-02-25 16:27:45 +010054 if (is_broadcast_ether_addr(sta_addr)) {
55 key = sdata->keys[idx];
56 } else {
57 sta = sta_info_get(local, sta_addr);
Johannes Berg3b967662008-04-08 17:56:52 +020058 if (!sta) {
59 err = -ENOENT;
60 goto out_unlock;
61 }
Johannes Bergdb4d1162008-02-25 16:27:45 +010062 key = sta->key;
Jiri Bencf0706e82007-05-05 11:45:53 -070063 }
Johannes Bergdb4d1162008-02-25 16:27:45 +010064
Johannes Bergd0709a62008-02-25 16:27:46 +010065 ieee80211_key_free(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +010066 } else {
67 key = ieee80211_key_alloc(alg, idx, key_len, _key);
68 if (!key)
69 return -ENOMEM;
70
Johannes Bergd0709a62008-02-25 16:27:46 +010071 sta = NULL;
Johannes Berg3b967662008-04-08 17:56:52 +020072 err = 0;
73
74 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +010075
Johannes Bergdb4d1162008-02-25 16:27:45 +010076 if (!is_broadcast_ether_addr(sta_addr)) {
77 set_tx_key = 0;
78 /*
79 * According to the standard, the key index of a
80 * pairwise key must be zero. However, some AP are
81 * broken when it comes to WEP key indices, so we
82 * work around this.
83 */
84 if (idx != 0 && alg != ALG_WEP) {
Johannes Bergd0709a62008-02-25 16:27:46 +010085 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +020086 err = -EINVAL;
87 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +010088 }
89
90 sta = sta_info_get(local, sta_addr);
91 if (!sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +010092 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +020093 err = -ENOENT;
94 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +010095 }
96 }
97
98 ieee80211_key_link(key, sdata, sta);
99
100 if (set_tx_key || (!sta && !sdata->default_key && key))
101 ieee80211_set_default_key(sdata, idx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700102 }
103
Johannes Berg3b967662008-04-08 17:56:52 +0200104 out_unlock:
105 rcu_read_unlock();
106
107 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700108}
109
110static int ieee80211_ioctl_siwgenie(struct net_device *dev,
111 struct iw_request_info *info,
112 struct iw_point *data, char *extra)
113{
114 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700115
116 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200117
118 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
119 return -EOPNOTSUPP;
120
Johannes Berg51fb61e2007-12-19 01:31:27 +0100121 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
122 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700123 int ret = ieee80211_sta_set_extra_ie(dev, extra, data->length);
124 if (ret)
125 return ret;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400126 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700127 ieee80211_sta_req_auth(dev, &sdata->u.sta);
128 return 0;
129 }
130
Jiri Bencf0706e82007-05-05 11:45:53 -0700131 return -EOPNOTSUPP;
132}
133
Jiri Bencf0706e82007-05-05 11:45:53 -0700134static int ieee80211_ioctl_giwname(struct net_device *dev,
135 struct iw_request_info *info,
136 char *name, char *extra)
137{
Johannes Berg8318d782008-01-24 19:38:38 +0100138 strcpy(name, "IEEE 802.11");
Jiri Bencf0706e82007-05-05 11:45:53 -0700139
140 return 0;
141}
142
143
144static int ieee80211_ioctl_giwrange(struct net_device *dev,
145 struct iw_request_info *info,
146 struct iw_point *data, char *extra)
147{
148 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
149 struct iw_range *range = (struct iw_range *) extra;
Johannes Berg8318d782008-01-24 19:38:38 +0100150 enum ieee80211_band band;
Hong Liu333af2f2007-07-10 19:32:08 +0200151 int c = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700152
153 data->length = sizeof(struct iw_range);
154 memset(range, 0, sizeof(struct iw_range));
155
156 range->we_version_compiled = WIRELESS_EXT;
157 range->we_version_source = 21;
158 range->retry_capa = IW_RETRY_LIMIT;
159 range->retry_flags = IW_RETRY_LIMIT;
160 range->min_retry = 0;
161 range->max_retry = 255;
162 range->min_rts = 0;
163 range->max_rts = 2347;
164 range->min_frag = 256;
165 range->max_frag = 2346;
166
167 range->encoding_size[0] = 5;
168 range->encoding_size[1] = 13;
169 range->num_encoding_sizes = 2;
170 range->max_encoding_tokens = NUM_DEFAULT_KEYS;
171
172 range->max_qual.qual = local->hw.max_signal;
173 range->max_qual.level = local->hw.max_rssi;
174 range->max_qual.noise = local->hw.max_noise;
175 range->max_qual.updated = local->wstats_flags;
176
177 range->avg_qual.qual = local->hw.max_signal/2;
178 range->avg_qual.level = 0;
179 range->avg_qual.noise = 0;
180 range->avg_qual.updated = local->wstats_flags;
181
182 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
183 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
184
Hong Liu333af2f2007-07-10 19:32:08 +0200185
Johannes Berg8318d782008-01-24 19:38:38 +0100186 for (band = 0; band < IEEE80211_NUM_BANDS; band ++) {
187 int i;
188 struct ieee80211_supported_band *sband;
189
190 sband = local->hw.wiphy->bands[band];
191
192 if (!sband)
Hong Liu333af2f2007-07-10 19:32:08 +0200193 continue;
194
Johannes Berg8318d782008-01-24 19:38:38 +0100195 for (i = 0; i < sband->n_channels && c < IW_MAX_FREQUENCIES; i++) {
196 struct ieee80211_channel *chan = &sband->channels[i];
Hong Liu333af2f2007-07-10 19:32:08 +0200197
Johannes Berg8318d782008-01-24 19:38:38 +0100198 if (!(chan->flags & IEEE80211_CHAN_DISABLED)) {
199 range->freq[c].i =
200 ieee80211_frequency_to_channel(
201 chan->center_freq);
202 range->freq[c].m = chan->center_freq;
203 range->freq[c].e = 6;
Hong Liu333af2f2007-07-10 19:32:08 +0200204 c++;
205 }
Hong Liu333af2f2007-07-10 19:32:08 +0200206 }
207 }
208 range->num_channels = c;
209 range->num_frequency = c;
210
Jiri Bencf0706e82007-05-05 11:45:53 -0700211 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
212 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWTHRSPY);
213 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
214 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
215
Dan Williams374fdfb2007-12-12 10:25:07 -0500216 range->scan_capa |= IW_SCAN_CAPA_ESSID;
217
Jiri Bencf0706e82007-05-05 11:45:53 -0700218 return 0;
219}
220
221
Jiri Bencf0706e82007-05-05 11:45:53 -0700222static int ieee80211_ioctl_siwmode(struct net_device *dev,
223 struct iw_request_info *info,
224 __u32 *mode, char *extra)
225{
226 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
227 int type;
228
Johannes Berg51fb61e2007-12-19 01:31:27 +0100229 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN)
Jiri Bencf0706e82007-05-05 11:45:53 -0700230 return -EOPNOTSUPP;
231
232 switch (*mode) {
233 case IW_MODE_INFRA:
234 type = IEEE80211_IF_TYPE_STA;
235 break;
236 case IW_MODE_ADHOC:
237 type = IEEE80211_IF_TYPE_IBSS;
238 break;
239 case IW_MODE_MONITOR:
240 type = IEEE80211_IF_TYPE_MNTR;
241 break;
242 default:
243 return -EINVAL;
244 }
245
Johannes Berg51fb61e2007-12-19 01:31:27 +0100246 if (type == sdata->vif.type)
Jiri Bencf0706e82007-05-05 11:45:53 -0700247 return 0;
248 if (netif_running(dev))
249 return -EBUSY;
250
251 ieee80211_if_reinit(dev);
252 ieee80211_if_set_type(dev, type);
253
254 return 0;
255}
256
257
258static int ieee80211_ioctl_giwmode(struct net_device *dev,
259 struct iw_request_info *info,
260 __u32 *mode, char *extra)
261{
262 struct ieee80211_sub_if_data *sdata;
263
264 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100265 switch (sdata->vif.type) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700266 case IEEE80211_IF_TYPE_AP:
267 *mode = IW_MODE_MASTER;
268 break;
269 case IEEE80211_IF_TYPE_STA:
270 *mode = IW_MODE_INFRA;
271 break;
272 case IEEE80211_IF_TYPE_IBSS:
273 *mode = IW_MODE_ADHOC;
274 break;
275 case IEEE80211_IF_TYPE_MNTR:
276 *mode = IW_MODE_MONITOR;
277 break;
278 case IEEE80211_IF_TYPE_WDS:
279 *mode = IW_MODE_REPEAT;
280 break;
281 case IEEE80211_IF_TYPE_VLAN:
282 *mode = IW_MODE_SECOND; /* FIXME */
283 break;
284 default:
285 *mode = IW_MODE_AUTO;
286 break;
287 }
288 return 0;
289}
290
Johannes Berg8318d782008-01-24 19:38:38 +0100291int ieee80211_set_freq(struct ieee80211_local *local, int freqMHz)
Jiri Bencf0706e82007-05-05 11:45:53 -0700292{
Jiri Bencf0706e82007-05-05 11:45:53 -0700293 int ret = -EINVAL;
Johannes Berge048c6e2008-03-16 18:35:56 +0100294 struct ieee80211_channel *chan;
Jiri Bencf0706e82007-05-05 11:45:53 -0700295
Johannes Berge048c6e2008-03-16 18:35:56 +0100296 chan = ieee80211_get_channel(local->hw.wiphy, freqMHz);
Johannes Berg8318d782008-01-24 19:38:38 +0100297
Johannes Berge048c6e2008-03-16 18:35:56 +0100298 if (chan && !(chan->flags & IEEE80211_CHAN_DISABLED)) {
299 local->oper_channel = chan;
Johannes Berg8318d782008-01-24 19:38:38 +0100300
Mohamed Abbas675ef582008-03-20 08:14:29 -0700301 if (local->sta_sw_scanning || local->sta_hw_scanning)
Jiri Bencf0706e82007-05-05 11:45:53 -0700302 ret = 0;
303 else
304 ret = ieee80211_hw_config(local);
305
306 rate_control_clear(local);
307 }
308
309 return ret;
310}
311
312static int ieee80211_ioctl_siwfreq(struct net_device *dev,
313 struct iw_request_info *info,
314 struct iw_freq *freq, char *extra)
315{
316 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
317 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
318
Johannes Berg51fb61e2007-12-19 01:31:27 +0100319 if (sdata->vif.type == IEEE80211_IF_TYPE_STA)
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400320 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700321
322 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
323 if (freq->e == 0) {
324 if (freq->m < 0) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100325 if (sdata->vif.type == IEEE80211_IF_TYPE_STA)
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400326 sdata->u.sta.flags |=
327 IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700328 return 0;
329 } else
Johannes Berg8318d782008-01-24 19:38:38 +0100330 return ieee80211_set_freq(local,
331 ieee80211_channel_to_frequency(freq->m));
Jiri Bencf0706e82007-05-05 11:45:53 -0700332 } else {
333 int i, div = 1000000;
334 for (i = 0; i < freq->e; i++)
335 div /= 10;
336 if (div > 0)
Johannes Berg8318d782008-01-24 19:38:38 +0100337 return ieee80211_set_freq(local, freq->m / div);
Jiri Bencf0706e82007-05-05 11:45:53 -0700338 else
339 return -EINVAL;
340 }
341}
342
343
344static int ieee80211_ioctl_giwfreq(struct net_device *dev,
345 struct iw_request_info *info,
346 struct iw_freq *freq, char *extra)
347{
348 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
349
Johannes Berg8318d782008-01-24 19:38:38 +0100350 freq->m = local->hw.conf.channel->center_freq;
Jiri Bencf0706e82007-05-05 11:45:53 -0700351 freq->e = 6;
352
353 return 0;
354}
355
356
357static int ieee80211_ioctl_siwessid(struct net_device *dev,
358 struct iw_request_info *info,
359 struct iw_point *data, char *ssid)
360{
Jiri Bencf0706e82007-05-05 11:45:53 -0700361 struct ieee80211_sub_if_data *sdata;
362 size_t len = data->length;
363
364 /* iwconfig uses nul termination in SSID.. */
365 if (len > 0 && ssid[len - 1] == '\0')
366 len--;
367
368 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100369 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
370 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700371 int ret;
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200372 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700373 if (len > IEEE80211_MAX_SSID_LEN)
374 return -EINVAL;
375 memcpy(sdata->u.sta.ssid, ssid, len);
376 sdata->u.sta.ssid_len = len;
377 return 0;
378 }
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400379 if (data->flags)
380 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_SSID_SEL;
381 else
382 sdata->u.sta.flags |= IEEE80211_STA_AUTO_SSID_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700383 ret = ieee80211_sta_set_ssid(dev, ssid, len);
384 if (ret)
385 return ret;
386 ieee80211_sta_req_auth(dev, &sdata->u.sta);
387 return 0;
388 }
389
Johannes Berg51fb61e2007-12-19 01:31:27 +0100390 if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700391 memcpy(sdata->u.ap.ssid, ssid, len);
392 memset(sdata->u.ap.ssid + len, 0,
393 IEEE80211_MAX_SSID_LEN - len);
394 sdata->u.ap.ssid_len = len;
395 return ieee80211_if_config(dev);
396 }
397 return -EOPNOTSUPP;
398}
399
400
401static int ieee80211_ioctl_giwessid(struct net_device *dev,
402 struct iw_request_info *info,
403 struct iw_point *data, char *ssid)
404{
405 size_t len;
406
407 struct ieee80211_sub_if_data *sdata;
408 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100409 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
410 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700411 int res = ieee80211_sta_get_ssid(dev, ssid, &len);
412 if (res == 0) {
413 data->length = len;
414 data->flags = 1;
415 } else
416 data->flags = 0;
417 return res;
418 }
419
Johannes Berg51fb61e2007-12-19 01:31:27 +0100420 if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700421 len = sdata->u.ap.ssid_len;
422 if (len > IW_ESSID_MAX_SIZE)
423 len = IW_ESSID_MAX_SIZE;
424 memcpy(ssid, sdata->u.ap.ssid, len);
425 data->length = len;
426 data->flags = 1;
427 return 0;
428 }
429 return -EOPNOTSUPP;
430}
431
432
433static int ieee80211_ioctl_siwap(struct net_device *dev,
434 struct iw_request_info *info,
435 struct sockaddr *ap_addr, char *extra)
436{
Jiri Bencf0706e82007-05-05 11:45:53 -0700437 struct ieee80211_sub_if_data *sdata;
438
439 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100440 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
441 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700442 int ret;
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200443 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700444 memcpy(sdata->u.sta.bssid, (u8 *) &ap_addr->sa_data,
445 ETH_ALEN);
446 return 0;
447 }
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400448 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
449 sdata->u.sta.flags |= IEEE80211_STA_AUTO_BSSID_SEL |
450 IEEE80211_STA_AUTO_CHANNEL_SEL;
451 else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
452 sdata->u.sta.flags |= IEEE80211_STA_AUTO_BSSID_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700453 else
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400454 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700455 ret = ieee80211_sta_set_bssid(dev, (u8 *) &ap_addr->sa_data);
456 if (ret)
457 return ret;
458 ieee80211_sta_req_auth(dev, &sdata->u.sta);
459 return 0;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100460 } else if (sdata->vif.type == IEEE80211_IF_TYPE_WDS) {
Johannes Berg44213b52008-02-25 16:27:49 +0100461 /*
462 * If it is necessary to update the WDS peer address
463 * while the interface is running, then we need to do
464 * more work here, namely if it is running we need to
465 * add a new and remove the old STA entry, this is
466 * normally handled by _open() and _stop().
467 */
468 if (netif_running(dev))
469 return -EBUSY;
470
471 memcpy(&sdata->u.wds.remote_addr, (u8 *) &ap_addr->sa_data,
472 ETH_ALEN);
473
474 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700475 }
476
477 return -EOPNOTSUPP;
478}
479
480
481static int ieee80211_ioctl_giwap(struct net_device *dev,
482 struct iw_request_info *info,
483 struct sockaddr *ap_addr, char *extra)
484{
485 struct ieee80211_sub_if_data *sdata;
486
487 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100488 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
489 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700490 ap_addr->sa_family = ARPHRD_ETHER;
491 memcpy(&ap_addr->sa_data, sdata->u.sta.bssid, ETH_ALEN);
492 return 0;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100493 } else if (sdata->vif.type == IEEE80211_IF_TYPE_WDS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700494 ap_addr->sa_family = ARPHRD_ETHER;
495 memcpy(&ap_addr->sa_data, sdata->u.wds.remote_addr, ETH_ALEN);
496 return 0;
497 }
498
499 return -EOPNOTSUPP;
500}
501
502
503static int ieee80211_ioctl_siwscan(struct net_device *dev,
504 struct iw_request_info *info,
Bill Moss107acb22007-10-10 16:23:55 -0400505 union iwreq_data *wrqu, char *extra)
Jiri Bencf0706e82007-05-05 11:45:53 -0700506{
Jiri Bencf0706e82007-05-05 11:45:53 -0700507 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Bill Moss107acb22007-10-10 16:23:55 -0400508 struct iw_scan_req *req = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700509 u8 *ssid = NULL;
510 size_t ssid_len = 0;
511
512 if (!netif_running(dev))
513 return -ENETDOWN;
514
Johannes Berg51fb61e2007-12-19 01:31:27 +0100515 if (sdata->vif.type != IEEE80211_IF_TYPE_STA &&
516 sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
Luis Carlos Coboee385852008-02-23 15:17:11 +0100517 sdata->vif.type != IEEE80211_IF_TYPE_MESH_POINT &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100518 sdata->vif.type != IEEE80211_IF_TYPE_AP)
John W. Linvilled114f392007-10-17 21:16:16 -0700519 return -EOPNOTSUPP;
John W. Linvilled114f392007-10-17 21:16:16 -0700520
521 /* if SSID was specified explicitly then use that */
Bill Moss107acb22007-10-10 16:23:55 -0400522 if (wrqu->data.length == sizeof(struct iw_scan_req) &&
523 wrqu->data.flags & IW_SCAN_THIS_ESSID) {
524 req = (struct iw_scan_req *)extra;
525 ssid = req->essid;
526 ssid_len = req->essid_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700527 }
Daniel Drakef27b62d2007-07-27 15:43:24 +0200528
Jiri Bencf0706e82007-05-05 11:45:53 -0700529 return ieee80211_sta_req_scan(dev, ssid, ssid_len);
530}
531
532
533static int ieee80211_ioctl_giwscan(struct net_device *dev,
534 struct iw_request_info *info,
535 struct iw_point *data, char *extra)
536{
537 int res;
538 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Zhu Yiece8edd2007-11-22 10:53:21 +0800539
540 if (local->sta_sw_scanning || local->sta_hw_scanning)
Jiri Bencf0706e82007-05-05 11:45:53 -0700541 return -EAGAIN;
Zhu Yiece8edd2007-11-22 10:53:21 +0800542
Jiri Bencf0706e82007-05-05 11:45:53 -0700543 res = ieee80211_sta_scan_results(dev, extra, data->length);
544 if (res >= 0) {
545 data->length = res;
546 return 0;
547 }
548 data->length = 0;
549 return res;
550}
551
552
Larry Finger1fd5e582007-07-10 19:32:10 +0200553static int ieee80211_ioctl_siwrate(struct net_device *dev,
554 struct iw_request_info *info,
555 struct iw_param *rate, char *extra)
556{
557 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg8318d782008-01-24 19:38:38 +0100558 int i, err = -EINVAL;
Larry Finger1fd5e582007-07-10 19:32:10 +0200559 u32 target_rate = rate->value / 100000;
560 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100561 struct ieee80211_supported_band *sband;
Larry Finger1fd5e582007-07-10 19:32:10 +0200562
563 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
564 if (!sdata->bss)
565 return -ENODEV;
Johannes Berg8318d782008-01-24 19:38:38 +0100566
567 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
568
Larry Finger1fd5e582007-07-10 19:32:10 +0200569 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
570 * target_rate = X, rate->fixed = 1 means only rate X
571 * target_rate = X, rate->fixed = 0 means all rates <= X */
572 sdata->bss->max_ratectrl_rateidx = -1;
573 sdata->bss->force_unicast_rateidx = -1;
574 if (rate->value < 0)
575 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100576
577 for (i=0; i< sband->n_bitrates; i++) {
578 struct ieee80211_rate *brate = &sband->bitrates[i];
579 int this_rate = brate->bitrate;
Larry Finger1fd5e582007-07-10 19:32:10 +0200580
Larry Finger1fd5e582007-07-10 19:32:10 +0200581 if (target_rate == this_rate) {
582 sdata->bss->max_ratectrl_rateidx = i;
583 if (rate->fixed)
584 sdata->bss->force_unicast_rateidx = i;
Johannes Berg8318d782008-01-24 19:38:38 +0100585 err = 0;
586 break;
Larry Finger1fd5e582007-07-10 19:32:10 +0200587 }
588 }
Johannes Berg8318d782008-01-24 19:38:38 +0100589 return err;
Larry Finger1fd5e582007-07-10 19:32:10 +0200590}
591
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700592static int ieee80211_ioctl_giwrate(struct net_device *dev,
593 struct iw_request_info *info,
594 struct iw_param *rate, char *extra)
595{
596 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
597 struct sta_info *sta;
598 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100599 struct ieee80211_supported_band *sband;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700600
601 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100602
Johannes Berg380a9422008-04-04 23:40:35 +0200603 if (sdata->vif.type != IEEE80211_IF_TYPE_STA)
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700604 return -EOPNOTSUPP;
Johannes Berg8318d782008-01-24 19:38:38 +0100605
606 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
607
Johannes Berg380a9422008-04-04 23:40:35 +0200608 rcu_read_lock();
609
610 sta = sta_info_get(local, sdata->u.sta.bssid);
611
612 if (sta && sta->txrate_idx < sband->n_bitrates)
Johannes Berg8318d782008-01-24 19:38:38 +0100613 rate->value = sband->bitrates[sta->txrate_idx].bitrate;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700614 else
615 rate->value = 0;
Johannes Berg380a9422008-04-04 23:40:35 +0200616
617 rcu_read_unlock();
618
619 if (!sta)
620 return -ENODEV;
621
Johannes Berg8318d782008-01-24 19:38:38 +0100622 rate->value *= 100000;
Johannes Bergd0709a62008-02-25 16:27:46 +0100623
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700624 return 0;
625}
626
Michael Buesch61609bc2007-09-20 22:06:39 +0200627static int ieee80211_ioctl_siwtxpower(struct net_device *dev,
628 struct iw_request_info *info,
629 union iwreq_data *data, char *extra)
630{
631 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
632 bool need_reconfig = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100633 int new_power_level;
Michael Buesch61609bc2007-09-20 22:06:39 +0200634
635 if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
636 return -EINVAL;
637 if (data->txpower.flags & IW_TXPOW_RANGE)
638 return -EINVAL;
Michael Buesch61609bc2007-09-20 22:06:39 +0200639
Mattias Nissler6a432952007-10-24 23:30:36 +0200640 if (data->txpower.fixed) {
641 new_power_level = data->txpower.value;
642 } else {
Johannes Berg8318d782008-01-24 19:38:38 +0100643 /*
644 * Automatic power level. Use maximum power for the current
645 * channel. Should be part of rate control.
646 */
647 struct ieee80211_channel* chan = local->hw.conf.channel;
Mattias Nissler6a432952007-10-24 23:30:36 +0200648 if (!chan)
649 return -EINVAL;
650
Johannes Berg8318d782008-01-24 19:38:38 +0100651 new_power_level = chan->max_power;
Mattias Nissler6a432952007-10-24 23:30:36 +0200652 }
653
654 if (local->hw.conf.power_level != new_power_level) {
655 local->hw.conf.power_level = new_power_level;
Michael Buesch61609bc2007-09-20 22:06:39 +0200656 need_reconfig = 1;
657 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200658
Michael Buesch61609bc2007-09-20 22:06:39 +0200659 if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) {
660 local->hw.conf.radio_enabled = !(data->txpower.disabled);
661 need_reconfig = 1;
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100662 ieee80211_led_radio(local, local->hw.conf.radio_enabled);
Michael Buesch61609bc2007-09-20 22:06:39 +0200663 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200664
Michael Buesch61609bc2007-09-20 22:06:39 +0200665 if (need_reconfig) {
666 ieee80211_hw_config(local);
667 /* The return value of hw_config is not of big interest here,
668 * as it doesn't say that it failed because of _this_ config
669 * change or something else. Ignore it. */
670 }
671
672 return 0;
673}
674
Larry Fingerfe6aa302007-08-10 11:23:20 -0500675static int ieee80211_ioctl_giwtxpower(struct net_device *dev,
676 struct iw_request_info *info,
677 union iwreq_data *data, char *extra)
678{
679 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
680
681 data->txpower.fixed = 1;
682 data->txpower.disabled = !(local->hw.conf.radio_enabled);
683 data->txpower.value = local->hw.conf.power_level;
684 data->txpower.flags = IW_TXPOW_DBM;
685
686 return 0;
687}
688
Jiri Bencf0706e82007-05-05 11:45:53 -0700689static int ieee80211_ioctl_siwrts(struct net_device *dev,
690 struct iw_request_info *info,
691 struct iw_param *rts, char *extra)
692{
693 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
694
695 if (rts->disabled)
696 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
697 else if (rts->value < 0 || rts->value > IEEE80211_MAX_RTS_THRESHOLD)
698 return -EINVAL;
699 else
700 local->rts_threshold = rts->value;
701
702 /* If the wlan card performs RTS/CTS in hardware/firmware,
703 * configure it here */
704
705 if (local->ops->set_rts_threshold)
706 local->ops->set_rts_threshold(local_to_hw(local),
707 local->rts_threshold);
708
709 return 0;
710}
711
712static int ieee80211_ioctl_giwrts(struct net_device *dev,
713 struct iw_request_info *info,
714 struct iw_param *rts, char *extra)
715{
716 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
717
718 rts->value = local->rts_threshold;
719 rts->disabled = (rts->value >= IEEE80211_MAX_RTS_THRESHOLD);
720 rts->fixed = 1;
721
722 return 0;
723}
724
725
726static int ieee80211_ioctl_siwfrag(struct net_device *dev,
727 struct iw_request_info *info,
728 struct iw_param *frag, char *extra)
729{
730 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
731
732 if (frag->disabled)
733 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
734 else if (frag->value < 256 ||
735 frag->value > IEEE80211_MAX_FRAG_THRESHOLD)
736 return -EINVAL;
737 else {
738 /* Fragment length must be even, so strip LSB. */
739 local->fragmentation_threshold = frag->value & ~0x1;
740 }
741
742 /* If the wlan card performs fragmentation in hardware/firmware,
743 * configure it here */
744
745 if (local->ops->set_frag_threshold)
746 local->ops->set_frag_threshold(
747 local_to_hw(local),
748 local->fragmentation_threshold);
749
750 return 0;
751}
752
753static int ieee80211_ioctl_giwfrag(struct net_device *dev,
754 struct iw_request_info *info,
755 struct iw_param *frag, char *extra)
756{
757 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
758
759 frag->value = local->fragmentation_threshold;
760 frag->disabled = (frag->value >= IEEE80211_MAX_RTS_THRESHOLD);
761 frag->fixed = 1;
762
763 return 0;
764}
765
766
767static int ieee80211_ioctl_siwretry(struct net_device *dev,
768 struct iw_request_info *info,
769 struct iw_param *retry, char *extra)
770{
771 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
772
773 if (retry->disabled ||
774 (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
775 return -EINVAL;
776
777 if (retry->flags & IW_RETRY_MAX)
778 local->long_retry_limit = retry->value;
779 else if (retry->flags & IW_RETRY_MIN)
780 local->short_retry_limit = retry->value;
781 else {
782 local->long_retry_limit = retry->value;
783 local->short_retry_limit = retry->value;
784 }
785
786 if (local->ops->set_retry_limit) {
787 return local->ops->set_retry_limit(
788 local_to_hw(local),
789 local->short_retry_limit,
790 local->long_retry_limit);
791 }
792
793 return 0;
794}
795
796
797static int ieee80211_ioctl_giwretry(struct net_device *dev,
798 struct iw_request_info *info,
799 struct iw_param *retry, char *extra)
800{
801 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
802
803 retry->disabled = 0;
804 if (retry->flags == 0 || retry->flags & IW_RETRY_MIN) {
805 /* first return min value, iwconfig will ask max value
806 * later if needed */
807 retry->flags |= IW_RETRY_LIMIT;
808 retry->value = local->short_retry_limit;
809 if (local->long_retry_limit != local->short_retry_limit)
810 retry->flags |= IW_RETRY_MIN;
811 return 0;
812 }
813 if (retry->flags & IW_RETRY_MAX) {
814 retry->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
815 retry->value = local->long_retry_limit;
816 }
817
818 return 0;
819}
820
Jiri Bencf0706e82007-05-05 11:45:53 -0700821static int ieee80211_ioctl_siwmlme(struct net_device *dev,
822 struct iw_request_info *info,
823 struct iw_point *data, char *extra)
824{
825 struct ieee80211_sub_if_data *sdata;
826 struct iw_mlme *mlme = (struct iw_mlme *) extra;
827
828 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100829 if (sdata->vif.type != IEEE80211_IF_TYPE_STA &&
830 sdata->vif.type != IEEE80211_IF_TYPE_IBSS)
Jiri Bencf0706e82007-05-05 11:45:53 -0700831 return -EINVAL;
832
833 switch (mlme->cmd) {
834 case IW_MLME_DEAUTH:
835 /* TODO: mlme->addr.sa_data */
836 return ieee80211_sta_deauthenticate(dev, mlme->reason_code);
837 case IW_MLME_DISASSOC:
838 /* TODO: mlme->addr.sa_data */
839 return ieee80211_sta_disassociate(dev, mlme->reason_code);
840 default:
841 return -EOPNOTSUPP;
842 }
843}
844
845
846static int ieee80211_ioctl_siwencode(struct net_device *dev,
847 struct iw_request_info *info,
848 struct iw_point *erq, char *keybuf)
849{
850 struct ieee80211_sub_if_data *sdata;
851 int idx, i, alg = ALG_WEP;
852 u8 bcaddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Johannes Berg628a1402007-09-26 17:53:17 +0200853 int remove = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700854
855 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
856
857 idx = erq->flags & IW_ENCODE_INDEX;
858 if (idx == 0) {
859 if (sdata->default_key)
860 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
861 if (sdata->default_key == sdata->keys[i]) {
862 idx = i;
863 break;
864 }
865 }
866 } else if (idx < 1 || idx > 4)
867 return -EINVAL;
868 else
869 idx--;
870
871 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +0200872 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700873 else if (erq->length == 0) {
874 /* No key data - just set the default TX key index */
Johannes Berg11a843b2007-08-28 17:01:55 -0400875 ieee80211_set_default_key(sdata, idx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700876 return 0;
877 }
878
879 return ieee80211_set_encryption(
880 dev, bcaddr,
Johannes Berg628a1402007-09-26 17:53:17 +0200881 idx, alg, remove,
Jiri Bencf0706e82007-05-05 11:45:53 -0700882 !sdata->default_key,
883 keybuf, erq->length);
884}
885
886
887static int ieee80211_ioctl_giwencode(struct net_device *dev,
888 struct iw_request_info *info,
889 struct iw_point *erq, char *key)
890{
891 struct ieee80211_sub_if_data *sdata;
892 int idx, i;
893
894 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
895
896 idx = erq->flags & IW_ENCODE_INDEX;
897 if (idx < 1 || idx > 4) {
898 idx = -1;
899 if (!sdata->default_key)
900 idx = 0;
901 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
902 if (sdata->default_key == sdata->keys[i]) {
903 idx = i;
904 break;
905 }
906 }
907 if (idx < 0)
908 return -EINVAL;
909 } else
910 idx--;
911
912 erq->flags = idx + 1;
913
914 if (!sdata->keys[idx]) {
915 erq->length = 0;
916 erq->flags |= IW_ENCODE_DISABLED;
917 return 0;
918 }
919
Johannes Berg8f20fc22007-08-28 17:01:54 -0400920 memcpy(key, sdata->keys[idx]->conf.key,
Johannes Berg11a843b2007-08-28 17:01:55 -0400921 min_t(int, erq->length, sdata->keys[idx]->conf.keylen));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400922 erq->length = sdata->keys[idx]->conf.keylen;
Jiri Bencf0706e82007-05-05 11:45:53 -0700923 erq->flags |= IW_ENCODE_ENABLED;
924
925 return 0;
926}
927
928static int ieee80211_ioctl_siwauth(struct net_device *dev,
929 struct iw_request_info *info,
930 struct iw_param *data, char *extra)
931{
Jiri Bencf0706e82007-05-05 11:45:53 -0700932 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
933 int ret = 0;
934
935 switch (data->flags & IW_AUTH_INDEX) {
936 case IW_AUTH_WPA_VERSION:
937 case IW_AUTH_CIPHER_PAIRWISE:
938 case IW_AUTH_CIPHER_GROUP:
939 case IW_AUTH_WPA_ENABLED:
940 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
Jiri Bencf0706e82007-05-05 11:45:53 -0700941 case IW_AUTH_KEY_MGMT:
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000942 break;
Johannes Bergb1357a82007-11-28 11:04:21 +0100943 case IW_AUTH_DROP_UNENCRYPTED:
944 sdata->drop_unencrypted = !!data->value;
945 break;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000946 case IW_AUTH_PRIVACY_INVOKED:
Johannes Berg51fb61e2007-12-19 01:31:27 +0100947 if (sdata->vif.type != IEEE80211_IF_TYPE_STA)
Jiri Bencf0706e82007-05-05 11:45:53 -0700948 ret = -EINVAL;
949 else {
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000950 sdata->u.sta.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700951 /*
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000952 * Privacy invoked by wpa_supplicant, store the
953 * value and allow associating to a protected
954 * network without having a key up front.
Jiri Bencf0706e82007-05-05 11:45:53 -0700955 */
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000956 if (data->value)
957 sdata->u.sta.flags |=
958 IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700959 }
960 break;
961 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg51fb61e2007-12-19 01:31:27 +0100962 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
963 sdata->vif.type == IEEE80211_IF_TYPE_IBSS)
Jiri Bencf0706e82007-05-05 11:45:53 -0700964 sdata->u.sta.auth_algs = data->value;
965 else
966 ret = -EOPNOTSUPP;
967 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700968 default:
969 ret = -EOPNOTSUPP;
970 break;
971 }
972 return ret;
973}
974
975/* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
976static struct iw_statistics *ieee80211_get_wireless_stats(struct net_device *dev)
977{
978 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
979 struct iw_statistics *wstats = &local->wstats;
980 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
981 struct sta_info *sta = NULL;
982
Johannes Berg98dd6a52008-04-10 15:36:09 +0200983 rcu_read_lock();
984
Johannes Berg51fb61e2007-12-19 01:31:27 +0100985 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
986 sdata->vif.type == IEEE80211_IF_TYPE_IBSS)
Jiri Bencf0706e82007-05-05 11:45:53 -0700987 sta = sta_info_get(local, sdata->u.sta.bssid);
988 if (!sta) {
989 wstats->discard.fragment = 0;
990 wstats->discard.misc = 0;
991 wstats->qual.qual = 0;
992 wstats->qual.level = 0;
993 wstats->qual.noise = 0;
994 wstats->qual.updated = IW_QUAL_ALL_INVALID;
995 } else {
996 wstats->qual.level = sta->last_rssi;
997 wstats->qual.qual = sta->last_signal;
998 wstats->qual.noise = sta->last_noise;
999 wstats->qual.updated = local->wstats_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001000 }
Johannes Berg98dd6a52008-04-10 15:36:09 +02001001
1002 rcu_read_unlock();
1003
Jiri Bencf0706e82007-05-05 11:45:53 -07001004 return wstats;
1005}
1006
1007static int ieee80211_ioctl_giwauth(struct net_device *dev,
1008 struct iw_request_info *info,
1009 struct iw_param *data, char *extra)
1010{
1011 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1012 int ret = 0;
1013
1014 switch (data->flags & IW_AUTH_INDEX) {
1015 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg51fb61e2007-12-19 01:31:27 +01001016 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
1017 sdata->vif.type == IEEE80211_IF_TYPE_IBSS)
Jiri Bencf0706e82007-05-05 11:45:53 -07001018 data->value = sdata->u.sta.auth_algs;
1019 else
1020 ret = -EOPNOTSUPP;
1021 break;
1022 default:
1023 ret = -EOPNOTSUPP;
1024 break;
1025 }
1026 return ret;
1027}
1028
1029
1030static int ieee80211_ioctl_siwencodeext(struct net_device *dev,
1031 struct iw_request_info *info,
1032 struct iw_point *erq, char *extra)
1033{
1034 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1035 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
Johannes Berg628a1402007-09-26 17:53:17 +02001036 int uninitialized_var(alg), idx, i, remove = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001037
1038 switch (ext->alg) {
1039 case IW_ENCODE_ALG_NONE:
Johannes Berg628a1402007-09-26 17:53:17 +02001040 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001041 break;
1042 case IW_ENCODE_ALG_WEP:
1043 alg = ALG_WEP;
1044 break;
1045 case IW_ENCODE_ALG_TKIP:
1046 alg = ALG_TKIP;
1047 break;
1048 case IW_ENCODE_ALG_CCMP:
1049 alg = ALG_CCMP;
1050 break;
1051 default:
1052 return -EOPNOTSUPP;
1053 }
1054
1055 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +02001056 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001057
1058 idx = erq->flags & IW_ENCODE_INDEX;
1059 if (idx < 1 || idx > 4) {
1060 idx = -1;
1061 if (!sdata->default_key)
1062 idx = 0;
1063 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1064 if (sdata->default_key == sdata->keys[i]) {
1065 idx = i;
1066 break;
1067 }
1068 }
1069 if (idx < 0)
1070 return -EINVAL;
1071 } else
1072 idx--;
1073
1074 return ieee80211_set_encryption(dev, ext->addr.sa_data, idx, alg,
Johannes Berg628a1402007-09-26 17:53:17 +02001075 remove,
Jiri Bencf0706e82007-05-05 11:45:53 -07001076 ext->ext_flags &
1077 IW_ENCODE_EXT_SET_TX_KEY,
1078 ext->key, ext->key_len);
1079}
1080
1081
Jiri Bencf0706e82007-05-05 11:45:53 -07001082/* Structures to export the Wireless Handlers */
1083
1084static const iw_handler ieee80211_handler[] =
1085{
1086 (iw_handler) NULL, /* SIOCSIWCOMMIT */
1087 (iw_handler) ieee80211_ioctl_giwname, /* SIOCGIWNAME */
1088 (iw_handler) NULL, /* SIOCSIWNWID */
1089 (iw_handler) NULL, /* SIOCGIWNWID */
1090 (iw_handler) ieee80211_ioctl_siwfreq, /* SIOCSIWFREQ */
1091 (iw_handler) ieee80211_ioctl_giwfreq, /* SIOCGIWFREQ */
1092 (iw_handler) ieee80211_ioctl_siwmode, /* SIOCSIWMODE */
1093 (iw_handler) ieee80211_ioctl_giwmode, /* SIOCGIWMODE */
1094 (iw_handler) NULL, /* SIOCSIWSENS */
1095 (iw_handler) NULL, /* SIOCGIWSENS */
1096 (iw_handler) NULL /* not used */, /* SIOCSIWRANGE */
1097 (iw_handler) ieee80211_ioctl_giwrange, /* SIOCGIWRANGE */
1098 (iw_handler) NULL /* not used */, /* SIOCSIWPRIV */
1099 (iw_handler) NULL /* kernel code */, /* SIOCGIWPRIV */
1100 (iw_handler) NULL /* not used */, /* SIOCSIWSTATS */
1101 (iw_handler) NULL /* kernel code */, /* SIOCGIWSTATS */
Johannes Berg5d4ecd92007-09-14 11:10:24 -04001102 (iw_handler) NULL, /* SIOCSIWSPY */
1103 (iw_handler) NULL, /* SIOCGIWSPY */
1104 (iw_handler) NULL, /* SIOCSIWTHRSPY */
1105 (iw_handler) NULL, /* SIOCGIWTHRSPY */
Jiri Bencf0706e82007-05-05 11:45:53 -07001106 (iw_handler) ieee80211_ioctl_siwap, /* SIOCSIWAP */
1107 (iw_handler) ieee80211_ioctl_giwap, /* SIOCGIWAP */
1108 (iw_handler) ieee80211_ioctl_siwmlme, /* SIOCSIWMLME */
1109 (iw_handler) NULL, /* SIOCGIWAPLIST */
1110 (iw_handler) ieee80211_ioctl_siwscan, /* SIOCSIWSCAN */
1111 (iw_handler) ieee80211_ioctl_giwscan, /* SIOCGIWSCAN */
1112 (iw_handler) ieee80211_ioctl_siwessid, /* SIOCSIWESSID */
1113 (iw_handler) ieee80211_ioctl_giwessid, /* SIOCGIWESSID */
1114 (iw_handler) NULL, /* SIOCSIWNICKN */
1115 (iw_handler) NULL, /* SIOCGIWNICKN */
1116 (iw_handler) NULL, /* -- hole -- */
1117 (iw_handler) NULL, /* -- hole -- */
Larry Finger1fd5e582007-07-10 19:32:10 +02001118 (iw_handler) ieee80211_ioctl_siwrate, /* SIOCSIWRATE */
Larry Fingerb3d88ad2007-06-10 17:57:33 -07001119 (iw_handler) ieee80211_ioctl_giwrate, /* SIOCGIWRATE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001120 (iw_handler) ieee80211_ioctl_siwrts, /* SIOCSIWRTS */
1121 (iw_handler) ieee80211_ioctl_giwrts, /* SIOCGIWRTS */
1122 (iw_handler) ieee80211_ioctl_siwfrag, /* SIOCSIWFRAG */
1123 (iw_handler) ieee80211_ioctl_giwfrag, /* SIOCGIWFRAG */
Michael Buesch61609bc2007-09-20 22:06:39 +02001124 (iw_handler) ieee80211_ioctl_siwtxpower, /* SIOCSIWTXPOW */
Larry Fingerfe6aa302007-08-10 11:23:20 -05001125 (iw_handler) ieee80211_ioctl_giwtxpower, /* SIOCGIWTXPOW */
Jiri Bencf0706e82007-05-05 11:45:53 -07001126 (iw_handler) ieee80211_ioctl_siwretry, /* SIOCSIWRETRY */
1127 (iw_handler) ieee80211_ioctl_giwretry, /* SIOCGIWRETRY */
1128 (iw_handler) ieee80211_ioctl_siwencode, /* SIOCSIWENCODE */
1129 (iw_handler) ieee80211_ioctl_giwencode, /* SIOCGIWENCODE */
1130 (iw_handler) NULL, /* SIOCSIWPOWER */
1131 (iw_handler) NULL, /* SIOCGIWPOWER */
1132 (iw_handler) NULL, /* -- hole -- */
1133 (iw_handler) NULL, /* -- hole -- */
1134 (iw_handler) ieee80211_ioctl_siwgenie, /* SIOCSIWGENIE */
1135 (iw_handler) NULL, /* SIOCGIWGENIE */
1136 (iw_handler) ieee80211_ioctl_siwauth, /* SIOCSIWAUTH */
1137 (iw_handler) ieee80211_ioctl_giwauth, /* SIOCGIWAUTH */
1138 (iw_handler) ieee80211_ioctl_siwencodeext, /* SIOCSIWENCODEEXT */
1139 (iw_handler) NULL, /* SIOCGIWENCODEEXT */
1140 (iw_handler) NULL, /* SIOCSIWPMKSA */
1141 (iw_handler) NULL, /* -- hole -- */
1142};
1143
Jiri Bencf0706e82007-05-05 11:45:53 -07001144const struct iw_handler_def ieee80211_iw_handler_def =
1145{
1146 .num_standard = ARRAY_SIZE(ieee80211_handler),
Jiri Bencf0706e82007-05-05 11:45:53 -07001147 .standard = (iw_handler *) ieee80211_handler,
Jiri Bencf0706e82007-05-05 11:45:53 -07001148 .get_wireless_stats = ieee80211_get_wireless_stats,
1149};