blob: 3f2db0bda46ca94d82431404dcf7b2996f923708 [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
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120030static int ieee80211_set_encryption(struct ieee80211_sub_if_data *sdata, 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{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120035 struct ieee80211_local *local = sdata->local;
Johannes Bergd0709a62008-02-25 16:27:46 +010036 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040037 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +020038 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070039
Volker Braun139c3a02007-09-14 11:10:25 -040040 if (idx < 0 || idx >= NUM_DEFAULT_KEYS) {
41 printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120042 sdata->dev->name, idx);
Volker Braun139c3a02007-09-14 11:10:25 -040043 return -EINVAL;
44 }
45
Johannes Berg628a1402007-09-26 17:53:17 +020046 if (remove) {
Johannes Berg3b967662008-04-08 17:56:52 +020047 rcu_read_lock();
48
49 err = 0;
50
Johannes Bergdb4d1162008-02-25 16:27:45 +010051 if (is_broadcast_ether_addr(sta_addr)) {
52 key = sdata->keys[idx];
53 } else {
54 sta = sta_info_get(local, sta_addr);
Johannes Berg3b967662008-04-08 17:56:52 +020055 if (!sta) {
56 err = -ENOENT;
57 goto out_unlock;
58 }
Johannes Bergdb4d1162008-02-25 16:27:45 +010059 key = sta->key;
Jiri Bencf0706e82007-05-05 11:45:53 -070060 }
Johannes Bergdb4d1162008-02-25 16:27:45 +010061
Johannes Bergd0709a62008-02-25 16:27:46 +010062 ieee80211_key_free(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +010063 } else {
64 key = ieee80211_key_alloc(alg, idx, key_len, _key);
65 if (!key)
66 return -ENOMEM;
67
Johannes Bergd0709a62008-02-25 16:27:46 +010068 sta = NULL;
Johannes Berg3b967662008-04-08 17:56:52 +020069 err = 0;
70
71 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +010072
Johannes Bergdb4d1162008-02-25 16:27:45 +010073 if (!is_broadcast_ether_addr(sta_addr)) {
74 set_tx_key = 0;
75 /*
76 * According to the standard, the key index of a
77 * pairwise key must be zero. However, some AP are
78 * broken when it comes to WEP key indices, so we
79 * work around this.
80 */
81 if (idx != 0 && alg != ALG_WEP) {
Johannes Bergd0709a62008-02-25 16:27:46 +010082 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +020083 err = -EINVAL;
84 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +010085 }
86
87 sta = sta_info_get(local, sta_addr);
88 if (!sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +010089 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +020090 err = -ENOENT;
91 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +010092 }
93 }
94
Emmanuel Grumbach23976ef2008-06-28 02:50:13 +030095 if (alg == ALG_WEP &&
96 key_len != LEN_WEP40 && key_len != LEN_WEP104) {
97 ieee80211_key_free(key);
98 err = -EINVAL;
99 goto out_unlock;
100 }
101
Johannes Bergdb4d1162008-02-25 16:27:45 +0100102 ieee80211_key_link(key, sdata, sta);
103
104 if (set_tx_key || (!sta && !sdata->default_key && key))
105 ieee80211_set_default_key(sdata, idx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700106 }
107
Johannes Berg3b967662008-04-08 17:56:52 +0200108 out_unlock:
109 rcu_read_unlock();
110
111 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700112}
113
114static int ieee80211_ioctl_siwgenie(struct net_device *dev,
115 struct iw_request_info *info,
116 struct iw_point *data, char *extra)
117{
118 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700119
120 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200121
122 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
123 return -EOPNOTSUPP;
124
Johannes Berg05c914f2008-09-11 00:01:58 +0200125 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
126 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200127 int ret = ieee80211_sta_set_extra_ie(sdata, extra, data->length);
Jiri Bencf0706e82007-05-05 11:45:53 -0700128 if (ret)
129 return ret;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400130 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200131 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700132 return 0;
133 }
134
Jiri Bencf0706e82007-05-05 11:45:53 -0700135 return -EOPNOTSUPP;
136}
137
Jiri Bencf0706e82007-05-05 11:45:53 -0700138static int ieee80211_ioctl_giwrange(struct net_device *dev,
139 struct iw_request_info *info,
140 struct iw_point *data, char *extra)
141{
142 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
143 struct iw_range *range = (struct iw_range *) extra;
Johannes Berg8318d782008-01-24 19:38:38 +0100144 enum ieee80211_band band;
Hong Liu333af2f2007-07-10 19:32:08 +0200145 int c = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700146
147 data->length = sizeof(struct iw_range);
148 memset(range, 0, sizeof(struct iw_range));
149
150 range->we_version_compiled = WIRELESS_EXT;
151 range->we_version_source = 21;
152 range->retry_capa = IW_RETRY_LIMIT;
153 range->retry_flags = IW_RETRY_LIMIT;
154 range->min_retry = 0;
155 range->max_retry = 255;
156 range->min_rts = 0;
157 range->max_rts = 2347;
158 range->min_frag = 256;
159 range->max_frag = 2346;
160
161 range->encoding_size[0] = 5;
162 range->encoding_size[1] = 13;
163 range->num_encoding_sizes = 2;
164 range->max_encoding_tokens = NUM_DEFAULT_KEYS;
165
Bruno Randolf566bfe52008-05-08 19:15:40 +0200166 if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC ||
167 local->hw.flags & IEEE80211_HW_SIGNAL_DB)
168 range->max_qual.level = local->hw.max_signal;
169 else if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
170 range->max_qual.level = -110;
171 else
172 range->max_qual.level = 0;
173
174 if (local->hw.flags & IEEE80211_HW_NOISE_DBM)
175 range->max_qual.noise = -110;
176 else
177 range->max_qual.noise = 0;
178
179 range->max_qual.qual = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -0700180 range->max_qual.updated = local->wstats_flags;
181
Bruno Randolf566bfe52008-05-08 19:15:40 +0200182 range->avg_qual.qual = 50;
183 /* not always true but better than nothing */
184 range->avg_qual.level = range->max_qual.level / 2;
185 range->avg_qual.noise = range->max_qual.noise / 2;
Jiri Bencf0706e82007-05-05 11:45:53 -0700186 range->avg_qual.updated = local->wstats_flags;
187
188 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
189 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
190
Hong Liu333af2f2007-07-10 19:32:08 +0200191
Johannes Berg8318d782008-01-24 19:38:38 +0100192 for (band = 0; band < IEEE80211_NUM_BANDS; band ++) {
193 int i;
194 struct ieee80211_supported_band *sband;
195
196 sband = local->hw.wiphy->bands[band];
197
198 if (!sband)
Hong Liu333af2f2007-07-10 19:32:08 +0200199 continue;
200
Johannes Berg8318d782008-01-24 19:38:38 +0100201 for (i = 0; i < sband->n_channels && c < IW_MAX_FREQUENCIES; i++) {
202 struct ieee80211_channel *chan = &sband->channels[i];
Hong Liu333af2f2007-07-10 19:32:08 +0200203
Johannes Berg8318d782008-01-24 19:38:38 +0100204 if (!(chan->flags & IEEE80211_CHAN_DISABLED)) {
205 range->freq[c].i =
206 ieee80211_frequency_to_channel(
207 chan->center_freq);
208 range->freq[c].m = chan->center_freq;
209 range->freq[c].e = 6;
Hong Liu333af2f2007-07-10 19:32:08 +0200210 c++;
211 }
Hong Liu333af2f2007-07-10 19:32:08 +0200212 }
213 }
214 range->num_channels = c;
215 range->num_frequency = c;
216
Jiri Bencf0706e82007-05-05 11:45:53 -0700217 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
Jiri Bencf0706e82007-05-05 11:45:53 -0700218 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
219 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
220
Dan Williams374fdfb2007-12-12 10:25:07 -0500221 range->scan_capa |= IW_SCAN_CAPA_ESSID;
222
Jiri Bencf0706e82007-05-05 11:45:53 -0700223 return 0;
224}
225
226
Jiri Bencf0706e82007-05-05 11:45:53 -0700227static int ieee80211_ioctl_siwfreq(struct net_device *dev,
228 struct iw_request_info *info,
229 struct iw_freq *freq, char *extra)
230{
Jiri Bencf0706e82007-05-05 11:45:53 -0700231 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
232
Alina Friedrichsenb522ed52009-01-06 03:15:23 +0100233 if (sdata->vif.type == NL80211_IFTYPE_ADHOC ||
234 sdata->vif.type == NL80211_IFTYPE_STATION)
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400235 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700236
237 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
238 if (freq->e == 0) {
239 if (freq->m < 0) {
Alina Friedrichsenb522ed52009-01-06 03:15:23 +0100240 if (sdata->vif.type == NL80211_IFTYPE_ADHOC ||
241 sdata->vif.type == NL80211_IFTYPE_STATION)
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400242 sdata->u.sta.flags |=
243 IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700244 return 0;
245 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200246 return ieee80211_set_freq(sdata,
Johannes Berg8318d782008-01-24 19:38:38 +0100247 ieee80211_channel_to_frequency(freq->m));
Jiri Bencf0706e82007-05-05 11:45:53 -0700248 } else {
249 int i, div = 1000000;
250 for (i = 0; i < freq->e; i++)
251 div /= 10;
252 if (div > 0)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200253 return ieee80211_set_freq(sdata, freq->m / div);
Jiri Bencf0706e82007-05-05 11:45:53 -0700254 else
255 return -EINVAL;
256 }
257}
258
259
260static int ieee80211_ioctl_giwfreq(struct net_device *dev,
261 struct iw_request_info *info,
262 struct iw_freq *freq, char *extra)
263{
264 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
265
Johannes Berg8318d782008-01-24 19:38:38 +0100266 freq->m = local->hw.conf.channel->center_freq;
Jiri Bencf0706e82007-05-05 11:45:53 -0700267 freq->e = 6;
268
269 return 0;
270}
271
272
273static int ieee80211_ioctl_siwessid(struct net_device *dev,
274 struct iw_request_info *info,
275 struct iw_point *data, char *ssid)
276{
Jiri Bencf0706e82007-05-05 11:45:53 -0700277 struct ieee80211_sub_if_data *sdata;
278 size_t len = data->length;
279
280 /* iwconfig uses nul termination in SSID.. */
281 if (len > 0 && ssid[len - 1] == '\0')
282 len--;
283
284 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200285 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
286 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700287 int ret;
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200288 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700289 if (len > IEEE80211_MAX_SSID_LEN)
290 return -EINVAL;
291 memcpy(sdata->u.sta.ssid, ssid, len);
292 sdata->u.sta.ssid_len = len;
293 return 0;
294 }
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400295 if (data->flags)
296 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_SSID_SEL;
297 else
298 sdata->u.sta.flags |= IEEE80211_STA_AUTO_SSID_SEL;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200299 ret = ieee80211_sta_set_ssid(sdata, ssid, len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700300 if (ret)
301 return ret;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200302 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700303 return 0;
304 }
305
Jiri Bencf0706e82007-05-05 11:45:53 -0700306 return -EOPNOTSUPP;
307}
308
309
310static int ieee80211_ioctl_giwessid(struct net_device *dev,
311 struct iw_request_info *info,
312 struct iw_point *data, char *ssid)
313{
314 size_t len;
315
316 struct ieee80211_sub_if_data *sdata;
317 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200318 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
319 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200320 int res = ieee80211_sta_get_ssid(sdata, ssid, &len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700321 if (res == 0) {
322 data->length = len;
323 data->flags = 1;
324 } else
325 data->flags = 0;
326 return res;
327 }
328
Jiri Bencf0706e82007-05-05 11:45:53 -0700329 return -EOPNOTSUPP;
330}
331
332
333static int ieee80211_ioctl_siwap(struct net_device *dev,
334 struct iw_request_info *info,
335 struct sockaddr *ap_addr, char *extra)
336{
Jiri Bencf0706e82007-05-05 11:45:53 -0700337 struct ieee80211_sub_if_data *sdata;
338
339 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200340 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
341 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700342 int ret;
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200343 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700344 memcpy(sdata->u.sta.bssid, (u8 *) &ap_addr->sa_data,
345 ETH_ALEN);
346 return 0;
347 }
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400348 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
349 sdata->u.sta.flags |= IEEE80211_STA_AUTO_BSSID_SEL |
350 IEEE80211_STA_AUTO_CHANNEL_SEL;
351 else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
352 sdata->u.sta.flags |= IEEE80211_STA_AUTO_BSSID_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700353 else
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400354 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200355 ret = ieee80211_sta_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
Jiri Bencf0706e82007-05-05 11:45:53 -0700356 if (ret)
357 return ret;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200358 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700359 return 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200360 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
Johannes Berg44213b52008-02-25 16:27:49 +0100361 /*
362 * If it is necessary to update the WDS peer address
363 * while the interface is running, then we need to do
364 * more work here, namely if it is running we need to
365 * add a new and remove the old STA entry, this is
366 * normally handled by _open() and _stop().
367 */
368 if (netif_running(dev))
369 return -EBUSY;
370
371 memcpy(&sdata->u.wds.remote_addr, (u8 *) &ap_addr->sa_data,
372 ETH_ALEN);
373
374 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700375 }
376
377 return -EOPNOTSUPP;
378}
379
380
381static int ieee80211_ioctl_giwap(struct net_device *dev,
382 struct iw_request_info *info,
383 struct sockaddr *ap_addr, char *extra)
384{
385 struct ieee80211_sub_if_data *sdata;
386
387 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200388 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
389 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300390 if (sdata->u.sta.state == IEEE80211_STA_MLME_ASSOCIATED ||
391 sdata->u.sta.state == IEEE80211_STA_MLME_IBSS_JOINED) {
Abhijeet Kolekard4231ca2008-05-23 10:15:26 -0700392 ap_addr->sa_family = ARPHRD_ETHER;
393 memcpy(&ap_addr->sa_data, sdata->u.sta.bssid, ETH_ALEN);
394 return 0;
395 } else {
396 memset(&ap_addr->sa_data, 0, ETH_ALEN);
397 return 0;
398 }
Johannes Berg05c914f2008-09-11 00:01:58 +0200399 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700400 ap_addr->sa_family = ARPHRD_ETHER;
401 memcpy(&ap_addr->sa_data, sdata->u.wds.remote_addr, ETH_ALEN);
402 return 0;
403 }
404
405 return -EOPNOTSUPP;
406}
407
408
409static int ieee80211_ioctl_siwscan(struct net_device *dev,
410 struct iw_request_info *info,
Bill Moss107acb22007-10-10 16:23:55 -0400411 union iwreq_data *wrqu, char *extra)
Jiri Bencf0706e82007-05-05 11:45:53 -0700412{
Jiri Bencf0706e82007-05-05 11:45:53 -0700413 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Bill Moss107acb22007-10-10 16:23:55 -0400414 struct iw_scan_req *req = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700415 u8 *ssid = NULL;
416 size_t ssid_len = 0;
417
418 if (!netif_running(dev))
419 return -ENETDOWN;
420
Johannes Berg05c914f2008-09-11 00:01:58 +0200421 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
422 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Jouni Malinenb7a530d2008-12-10 14:51:47 +0200423 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
John W. Linvilled114f392007-10-17 21:16:16 -0700424 return -EOPNOTSUPP;
John W. Linvilled114f392007-10-17 21:16:16 -0700425
426 /* if SSID was specified explicitly then use that */
Bill Moss107acb22007-10-10 16:23:55 -0400427 if (wrqu->data.length == sizeof(struct iw_scan_req) &&
428 wrqu->data.flags & IW_SCAN_THIS_ESSID) {
429 req = (struct iw_scan_req *)extra;
430 ssid = req->essid;
431 ssid_len = req->essid_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700432 }
Daniel Drakef27b62d2007-07-27 15:43:24 +0200433
Johannes Bergc2b13452008-09-11 00:01:55 +0200434 return ieee80211_request_scan(sdata, ssid, ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700435}
436
437
438static int ieee80211_ioctl_giwscan(struct net_device *dev,
439 struct iw_request_info *info,
440 struct iw_point *data, char *extra)
441{
442 int res;
443 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200444 struct ieee80211_sub_if_data *sdata;
445
446 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Zhu Yiece8edd2007-11-22 10:53:21 +0800447
Johannes Bergc2b13452008-09-11 00:01:55 +0200448 if (local->sw_scanning || local->hw_scanning)
Jiri Bencf0706e82007-05-05 11:45:53 -0700449 return -EAGAIN;
Zhu Yiece8edd2007-11-22 10:53:21 +0800450
Johannes Bergc2b13452008-09-11 00:01:55 +0200451 res = ieee80211_scan_results(local, info, extra, data->length);
Jiri Bencf0706e82007-05-05 11:45:53 -0700452 if (res >= 0) {
453 data->length = res;
454 return 0;
455 }
456 data->length = 0;
457 return res;
458}
459
460
Larry Finger1fd5e582007-07-10 19:32:10 +0200461static int ieee80211_ioctl_siwrate(struct net_device *dev,
462 struct iw_request_info *info,
463 struct iw_param *rate, char *extra)
464{
465 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg8318d782008-01-24 19:38:38 +0100466 int i, err = -EINVAL;
Larry Finger1fd5e582007-07-10 19:32:10 +0200467 u32 target_rate = rate->value / 100000;
468 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100469 struct ieee80211_supported_band *sband;
Larry Finger1fd5e582007-07-10 19:32:10 +0200470
471 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100472
473 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
474
Larry Finger1fd5e582007-07-10 19:32:10 +0200475 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
476 * target_rate = X, rate->fixed = 1 means only rate X
477 * target_rate = X, rate->fixed = 0 means all rates <= X */
Johannes Berg3e122be2008-07-09 14:40:34 +0200478 sdata->max_ratectrl_rateidx = -1;
479 sdata->force_unicast_rateidx = -1;
Larry Finger1fd5e582007-07-10 19:32:10 +0200480 if (rate->value < 0)
481 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100482
483 for (i=0; i< sband->n_bitrates; i++) {
484 struct ieee80211_rate *brate = &sband->bitrates[i];
485 int this_rate = brate->bitrate;
Larry Finger1fd5e582007-07-10 19:32:10 +0200486
Larry Finger1fd5e582007-07-10 19:32:10 +0200487 if (target_rate == this_rate) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200488 sdata->max_ratectrl_rateidx = i;
Larry Finger1fd5e582007-07-10 19:32:10 +0200489 if (rate->fixed)
Johannes Berg3e122be2008-07-09 14:40:34 +0200490 sdata->force_unicast_rateidx = i;
Johannes Berg8318d782008-01-24 19:38:38 +0100491 err = 0;
492 break;
Larry Finger1fd5e582007-07-10 19:32:10 +0200493 }
494 }
Johannes Berg8318d782008-01-24 19:38:38 +0100495 return err;
Larry Finger1fd5e582007-07-10 19:32:10 +0200496}
497
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700498static int ieee80211_ioctl_giwrate(struct net_device *dev,
499 struct iw_request_info *info,
500 struct iw_param *rate, char *extra)
501{
502 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
503 struct sta_info *sta;
504 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100505 struct ieee80211_supported_band *sband;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700506
507 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100508
Johannes Berg05c914f2008-09-11 00:01:58 +0200509 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700510 return -EOPNOTSUPP;
Johannes Berg8318d782008-01-24 19:38:38 +0100511
512 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
513
Johannes Berg380a9422008-04-04 23:40:35 +0200514 rcu_read_lock();
515
516 sta = sta_info_get(local, sdata->u.sta.bssid);
517
Johannes Berge6a98542008-10-21 12:40:02 +0200518 if (sta && !(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS))
519 rate->value = sband->bitrates[sta->last_tx_rate.idx].bitrate;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700520 else
521 rate->value = 0;
Johannes Berg380a9422008-04-04 23:40:35 +0200522
523 rcu_read_unlock();
524
525 if (!sta)
526 return -ENODEV;
527
Johannes Berg8318d782008-01-24 19:38:38 +0100528 rate->value *= 100000;
Johannes Bergd0709a62008-02-25 16:27:46 +0100529
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700530 return 0;
531}
532
Michael Buesch61609bc2007-09-20 22:06:39 +0200533static int ieee80211_ioctl_siwtxpower(struct net_device *dev,
534 struct iw_request_info *info,
535 union iwreq_data *data, char *extra)
536{
537 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Luis R. Rodriguezd9d29252008-10-22 13:13:53 -0700538 struct ieee80211_channel* chan = local->hw.conf.channel;
Johannes Berge8975582008-10-09 12:18:51 +0200539 u32 reconf_flags = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100540 int new_power_level;
Michael Buesch61609bc2007-09-20 22:06:39 +0200541
542 if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
543 return -EINVAL;
544 if (data->txpower.flags & IW_TXPOW_RANGE)
545 return -EINVAL;
Luis R. Rodriguezd9d29252008-10-22 13:13:53 -0700546 if (!chan)
547 return -EINVAL;
Michael Buesch61609bc2007-09-20 22:06:39 +0200548
Luis R. Rodriguezd9d29252008-10-22 13:13:53 -0700549 if (data->txpower.fixed)
550 new_power_level = min(data->txpower.value, chan->max_power);
551 else /* Automatic power level setting */
Johannes Berg8318d782008-01-24 19:38:38 +0100552 new_power_level = chan->max_power;
Mattias Nissler6a432952007-10-24 23:30:36 +0200553
Johannes Berg2bf30fa2009-01-06 23:23:56 +0100554 local->user_power_level = new_power_level;
Vasanthakumar Thiagarajane3c92df2008-12-24 13:53:11 +0530555 if (local->hw.conf.power_level != new_power_level)
Johannes Berge8975582008-10-09 12:18:51 +0200556 reconf_flags |= IEEE80211_CONF_CHANGE_POWER;
Mattias Nissler6a432952007-10-24 23:30:36 +0200557
Michael Buesch61609bc2007-09-20 22:06:39 +0200558 if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) {
559 local->hw.conf.radio_enabled = !(data->txpower.disabled);
Johannes Berge8975582008-10-09 12:18:51 +0200560 reconf_flags |= IEEE80211_CONF_CHANGE_RADIO_ENABLED;
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100561 ieee80211_led_radio(local, local->hw.conf.radio_enabled);
Michael Buesch61609bc2007-09-20 22:06:39 +0200562 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200563
Johannes Berge8975582008-10-09 12:18:51 +0200564 if (reconf_flags)
565 ieee80211_hw_config(local, reconf_flags);
Michael Buesch61609bc2007-09-20 22:06:39 +0200566
567 return 0;
568}
569
Larry Fingerfe6aa302007-08-10 11:23:20 -0500570static int ieee80211_ioctl_giwtxpower(struct net_device *dev,
571 struct iw_request_info *info,
572 union iwreq_data *data, char *extra)
573{
574 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
575
576 data->txpower.fixed = 1;
577 data->txpower.disabled = !(local->hw.conf.radio_enabled);
578 data->txpower.value = local->hw.conf.power_level;
579 data->txpower.flags = IW_TXPOW_DBM;
580
581 return 0;
582}
583
Jiri Bencf0706e82007-05-05 11:45:53 -0700584static int ieee80211_ioctl_siwrts(struct net_device *dev,
585 struct iw_request_info *info,
586 struct iw_param *rts, char *extra)
587{
588 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
589
590 if (rts->disabled)
591 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
Emmanuel Grumbachfa6adfe2008-06-24 13:37:58 +0300592 else if (!rts->fixed)
593 /* if the rts value is not fixed, then take default */
594 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
Jiri Bencf0706e82007-05-05 11:45:53 -0700595 else if (rts->value < 0 || rts->value > IEEE80211_MAX_RTS_THRESHOLD)
596 return -EINVAL;
597 else
598 local->rts_threshold = rts->value;
599
600 /* If the wlan card performs RTS/CTS in hardware/firmware,
601 * configure it here */
602
603 if (local->ops->set_rts_threshold)
604 local->ops->set_rts_threshold(local_to_hw(local),
605 local->rts_threshold);
606
607 return 0;
608}
609
610static int ieee80211_ioctl_giwrts(struct net_device *dev,
611 struct iw_request_info *info,
612 struct iw_param *rts, char *extra)
613{
614 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
615
616 rts->value = local->rts_threshold;
617 rts->disabled = (rts->value >= IEEE80211_MAX_RTS_THRESHOLD);
618 rts->fixed = 1;
619
620 return 0;
621}
622
623
624static int ieee80211_ioctl_siwfrag(struct net_device *dev,
625 struct iw_request_info *info,
626 struct iw_param *frag, char *extra)
627{
628 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
629
630 if (frag->disabled)
631 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Emmanuel Grumbache4abd4d2008-07-03 18:02:27 +0300632 else if (!frag->fixed)
633 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Jiri Bencf0706e82007-05-05 11:45:53 -0700634 else if (frag->value < 256 ||
635 frag->value > IEEE80211_MAX_FRAG_THRESHOLD)
636 return -EINVAL;
637 else {
638 /* Fragment length must be even, so strip LSB. */
639 local->fragmentation_threshold = frag->value & ~0x1;
640 }
641
Jiri Bencf0706e82007-05-05 11:45:53 -0700642 return 0;
643}
644
645static int ieee80211_ioctl_giwfrag(struct net_device *dev,
646 struct iw_request_info *info,
647 struct iw_param *frag, char *extra)
648{
649 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
650
651 frag->value = local->fragmentation_threshold;
652 frag->disabled = (frag->value >= IEEE80211_MAX_RTS_THRESHOLD);
653 frag->fixed = 1;
654
655 return 0;
656}
657
658
659static int ieee80211_ioctl_siwretry(struct net_device *dev,
660 struct iw_request_info *info,
661 struct iw_param *retry, char *extra)
662{
663 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
664
665 if (retry->disabled ||
666 (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
667 return -EINVAL;
668
Johannes Berg9124b072008-10-14 19:17:54 +0200669 if (retry->flags & IW_RETRY_MAX) {
670 local->hw.conf.long_frame_max_tx_count = retry->value;
671 } else if (retry->flags & IW_RETRY_MIN) {
672 local->hw.conf.short_frame_max_tx_count = retry->value;
673 } else {
674 local->hw.conf.long_frame_max_tx_count = retry->value;
675 local->hw.conf.short_frame_max_tx_count = retry->value;
Jiri Bencf0706e82007-05-05 11:45:53 -0700676 }
677
Johannes Berg9124b072008-10-14 19:17:54 +0200678 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
Jiri Bencf0706e82007-05-05 11:45:53 -0700679
680 return 0;
681}
682
683
684static int ieee80211_ioctl_giwretry(struct net_device *dev,
685 struct iw_request_info *info,
686 struct iw_param *retry, char *extra)
687{
688 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
689
690 retry->disabled = 0;
691 if (retry->flags == 0 || retry->flags & IW_RETRY_MIN) {
692 /* first return min value, iwconfig will ask max value
693 * later if needed */
694 retry->flags |= IW_RETRY_LIMIT;
Johannes Berg9124b072008-10-14 19:17:54 +0200695 retry->value = local->hw.conf.short_frame_max_tx_count;
696 if (local->hw.conf.long_frame_max_tx_count !=
697 local->hw.conf.short_frame_max_tx_count)
Jiri Bencf0706e82007-05-05 11:45:53 -0700698 retry->flags |= IW_RETRY_MIN;
699 return 0;
700 }
701 if (retry->flags & IW_RETRY_MAX) {
702 retry->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
Johannes Berg9124b072008-10-14 19:17:54 +0200703 retry->value = local->hw.conf.long_frame_max_tx_count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700704 }
705
706 return 0;
707}
708
Jiri Bencf0706e82007-05-05 11:45:53 -0700709static int ieee80211_ioctl_siwmlme(struct net_device *dev,
710 struct iw_request_info *info,
711 struct iw_point *data, char *extra)
712{
713 struct ieee80211_sub_if_data *sdata;
714 struct iw_mlme *mlme = (struct iw_mlme *) extra;
715
716 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200717 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
718 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -0700719 return -EINVAL;
720
721 switch (mlme->cmd) {
722 case IW_MLME_DEAUTH:
723 /* TODO: mlme->addr.sa_data */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200724 return ieee80211_sta_deauthenticate(sdata, mlme->reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -0700725 case IW_MLME_DISASSOC:
726 /* TODO: mlme->addr.sa_data */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200727 return ieee80211_sta_disassociate(sdata, mlme->reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -0700728 default:
729 return -EOPNOTSUPP;
730 }
731}
732
733
734static int ieee80211_ioctl_siwencode(struct net_device *dev,
735 struct iw_request_info *info,
736 struct iw_point *erq, char *keybuf)
737{
738 struct ieee80211_sub_if_data *sdata;
739 int idx, i, alg = ALG_WEP;
740 u8 bcaddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Johannes Berg628a1402007-09-26 17:53:17 +0200741 int remove = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700742
743 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
744
745 idx = erq->flags & IW_ENCODE_INDEX;
746 if (idx == 0) {
747 if (sdata->default_key)
748 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
749 if (sdata->default_key == sdata->keys[i]) {
750 idx = i;
751 break;
752 }
753 }
754 } else if (idx < 1 || idx > 4)
755 return -EINVAL;
756 else
757 idx--;
758
759 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +0200760 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700761 else if (erq->length == 0) {
762 /* No key data - just set the default TX key index */
Johannes Berg11a843b2007-08-28 17:01:55 -0400763 ieee80211_set_default_key(sdata, idx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700764 return 0;
765 }
766
767 return ieee80211_set_encryption(
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200768 sdata, bcaddr,
Johannes Berg628a1402007-09-26 17:53:17 +0200769 idx, alg, remove,
Jiri Bencf0706e82007-05-05 11:45:53 -0700770 !sdata->default_key,
771 keybuf, erq->length);
772}
773
774
775static int ieee80211_ioctl_giwencode(struct net_device *dev,
776 struct iw_request_info *info,
777 struct iw_point *erq, char *key)
778{
779 struct ieee80211_sub_if_data *sdata;
780 int idx, i;
781
782 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
783
784 idx = erq->flags & IW_ENCODE_INDEX;
785 if (idx < 1 || idx > 4) {
786 idx = -1;
787 if (!sdata->default_key)
788 idx = 0;
789 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
790 if (sdata->default_key == sdata->keys[i]) {
791 idx = i;
792 break;
793 }
794 }
795 if (idx < 0)
796 return -EINVAL;
797 } else
798 idx--;
799
800 erq->flags = idx + 1;
801
802 if (!sdata->keys[idx]) {
803 erq->length = 0;
804 erq->flags |= IW_ENCODE_DISABLED;
805 return 0;
806 }
807
Johannes Berg8f20fc22007-08-28 17:01:54 -0400808 memcpy(key, sdata->keys[idx]->conf.key,
Johannes Berg11a843b2007-08-28 17:01:55 -0400809 min_t(int, erq->length, sdata->keys[idx]->conf.keylen));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400810 erq->length = sdata->keys[idx]->conf.keylen;
Jiri Bencf0706e82007-05-05 11:45:53 -0700811 erq->flags |= IW_ENCODE_ENABLED;
812
Johannes Berg05c914f2008-09-11 00:01:58 +0200813 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Emmanuel Grumbachb9fcc4f2008-06-24 13:37:59 +0300814 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
815 switch (ifsta->auth_alg) {
816 case WLAN_AUTH_OPEN:
817 case WLAN_AUTH_LEAP:
818 erq->flags |= IW_ENCODE_OPEN;
819 break;
820 case WLAN_AUTH_SHARED_KEY:
821 erq->flags |= IW_ENCODE_RESTRICTED;
822 break;
823 }
824 }
825
Jiri Bencf0706e82007-05-05 11:45:53 -0700826 return 0;
827}
828
Samuel Ortiz49292d52008-07-04 10:49:31 +0200829static int ieee80211_ioctl_siwpower(struct net_device *dev,
830 struct iw_request_info *info,
831 struct iw_param *wrq,
832 char *extra)
833{
Kalle Valoe0cb6862008-12-18 23:35:13 +0200834 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Samuel Ortiz49292d52008-07-04 10:49:31 +0200835 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
836 struct ieee80211_conf *conf = &local->hw.conf;
Kalle Valo520eb822008-12-18 23:35:27 +0200837 int ret = 0, timeout = 0;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200838 bool ps;
839
840 if (sdata->vif.type != NL80211_IFTYPE_STATION)
841 return -EINVAL;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200842
843 if (wrq->disabled) {
Kalle Valoe0cb6862008-12-18 23:35:13 +0200844 ps = false;
Kalle Valo520eb822008-12-18 23:35:27 +0200845 timeout = 0;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200846 goto set;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200847 }
848
849 switch (wrq->flags & IW_POWER_MODE) {
850 case IW_POWER_ON: /* If not specified */
851 case IW_POWER_MODE: /* If set all mask */
852 case IW_POWER_ALL_R: /* If explicitely state all */
Kalle Valoe0cb6862008-12-18 23:35:13 +0200853 ps = true;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200854 break;
Kalle Valo520eb822008-12-18 23:35:27 +0200855 default: /* Otherwise we ignore */
Johannes Berge9aeaba2009-01-06 18:12:35 +0100856 return -EINVAL;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200857 }
858
Johannes Berge9aeaba2009-01-06 18:12:35 +0100859 if (wrq->flags & ~(IW_POWER_MODE | IW_POWER_TIMEOUT))
860 return -EINVAL;
861
Kalle Valo520eb822008-12-18 23:35:27 +0200862 if (wrq->flags & IW_POWER_TIMEOUT)
863 timeout = wrq->value / 1000;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200864
865set:
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100866 if (ps == local->powersave && timeout == conf->dynamic_ps_timeout)
Kalle Valo520eb822008-12-18 23:35:27 +0200867 return ret;
868
Kalle Valoe0cb6862008-12-18 23:35:13 +0200869 local->powersave = ps;
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100870 conf->dynamic_ps_timeout = timeout;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200871
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100872 if (local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS) {
873 ret = ieee80211_hw_config(local,
874 IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT);
875 } else if (sdata->u.sta.flags & IEEE80211_STA_ASSOCIATED) {
876 if (conf->dynamic_ps_timeout > 0)
Kalle Valo520eb822008-12-18 23:35:27 +0200877 mod_timer(&local->dynamic_ps_timer, jiffies +
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100878 msecs_to_jiffies(conf->dynamic_ps_timeout));
Kalle Valo520eb822008-12-18 23:35:27 +0200879 else {
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800880 if (local->powersave) {
881 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +0200882 conf->flags |= IEEE80211_CONF_PS;
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800883 ret = ieee80211_hw_config(local,
884 IEEE80211_CONF_CHANGE_PS);
885 } else {
Kalle Valo520eb822008-12-18 23:35:27 +0200886 conf->flags &= ~IEEE80211_CONF_PS;
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800887 ret = ieee80211_hw_config(local,
888 IEEE80211_CONF_CHANGE_PS);
889 ieee80211_send_nullfunc(local, sdata, 0);
890 }
Kalle Valo520eb822008-12-18 23:35:27 +0200891 }
Kalle Valoe0cb6862008-12-18 23:35:13 +0200892 }
893
894 return ret;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200895}
896
897static int ieee80211_ioctl_giwpower(struct net_device *dev,
898 struct iw_request_info *info,
899 union iwreq_data *wrqu,
900 char *extra)
901{
902 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Samuel Ortiz49292d52008-07-04 10:49:31 +0200903
Kalle Valoe0cb6862008-12-18 23:35:13 +0200904 wrqu->power.disabled = !local->powersave;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200905
906 return 0;
907}
908
Jiri Bencf0706e82007-05-05 11:45:53 -0700909static int ieee80211_ioctl_siwauth(struct net_device *dev,
910 struct iw_request_info *info,
911 struct iw_param *data, char *extra)
912{
Jiri Bencf0706e82007-05-05 11:45:53 -0700913 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
914 int ret = 0;
915
916 switch (data->flags & IW_AUTH_INDEX) {
917 case IW_AUTH_WPA_VERSION:
Jiri Bencf0706e82007-05-05 11:45:53 -0700918 case IW_AUTH_CIPHER_GROUP:
919 case IW_AUTH_WPA_ENABLED:
920 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
Jiri Bencf0706e82007-05-05 11:45:53 -0700921 case IW_AUTH_KEY_MGMT:
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000922 break;
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530923 case IW_AUTH_CIPHER_PAIRWISE:
924 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
925 if (data->value & (IW_AUTH_CIPHER_WEP40 |
926 IW_AUTH_CIPHER_WEP104 | IW_AUTH_CIPHER_TKIP))
927 sdata->u.sta.flags |=
928 IEEE80211_STA_TKIP_WEP_USED;
929 else
930 sdata->u.sta.flags &=
931 ~IEEE80211_STA_TKIP_WEP_USED;
932 }
933 break;
Johannes Bergb1357a82007-11-28 11:04:21 +0100934 case IW_AUTH_DROP_UNENCRYPTED:
935 sdata->drop_unencrypted = !!data->value;
936 break;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000937 case IW_AUTH_PRIVACY_INVOKED:
Johannes Berg05c914f2008-09-11 00:01:58 +0200938 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -0700939 ret = -EINVAL;
940 else {
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000941 sdata->u.sta.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700942 /*
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000943 * Privacy invoked by wpa_supplicant, store the
944 * value and allow associating to a protected
945 * network without having a key up front.
Jiri Bencf0706e82007-05-05 11:45:53 -0700946 */
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000947 if (data->value)
948 sdata->u.sta.flags |=
949 IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700950 }
951 break;
952 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg05c914f2008-09-11 00:01:58 +0200953 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
954 sdata->vif.type == NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -0700955 sdata->u.sta.auth_algs = data->value;
956 else
957 ret = -EOPNOTSUPP;
958 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700959 default:
960 ret = -EOPNOTSUPP;
961 break;
962 }
963 return ret;
964}
965
966/* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
967static struct iw_statistics *ieee80211_get_wireless_stats(struct net_device *dev)
968{
969 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
970 struct iw_statistics *wstats = &local->wstats;
971 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
972 struct sta_info *sta = NULL;
973
Johannes Berg98dd6a52008-04-10 15:36:09 +0200974 rcu_read_lock();
975
Johannes Berg05c914f2008-09-11 00:01:58 +0200976 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
977 sdata->vif.type == NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -0700978 sta = sta_info_get(local, sdata->u.sta.bssid);
979 if (!sta) {
980 wstats->discard.fragment = 0;
981 wstats->discard.misc = 0;
982 wstats->qual.qual = 0;
983 wstats->qual.level = 0;
984 wstats->qual.noise = 0;
985 wstats->qual.updated = IW_QUAL_ALL_INVALID;
986 } else {
Bruno Randolf566bfe52008-05-08 19:15:40 +0200987 wstats->qual.level = sta->last_signal;
988 wstats->qual.qual = sta->last_qual;
Jiri Bencf0706e82007-05-05 11:45:53 -0700989 wstats->qual.noise = sta->last_noise;
990 wstats->qual.updated = local->wstats_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700991 }
Johannes Berg98dd6a52008-04-10 15:36:09 +0200992
993 rcu_read_unlock();
994
Jiri Bencf0706e82007-05-05 11:45:53 -0700995 return wstats;
996}
997
998static int ieee80211_ioctl_giwauth(struct net_device *dev,
999 struct iw_request_info *info,
1000 struct iw_param *data, char *extra)
1001{
1002 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1003 int ret = 0;
1004
1005 switch (data->flags & IW_AUTH_INDEX) {
1006 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg05c914f2008-09-11 00:01:58 +02001007 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
1008 sdata->vif.type == NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001009 data->value = sdata->u.sta.auth_algs;
1010 else
1011 ret = -EOPNOTSUPP;
1012 break;
1013 default:
1014 ret = -EOPNOTSUPP;
1015 break;
1016 }
1017 return ret;
1018}
1019
1020
1021static int ieee80211_ioctl_siwencodeext(struct net_device *dev,
1022 struct iw_request_info *info,
1023 struct iw_point *erq, char *extra)
1024{
1025 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1026 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
Johannes Berg628a1402007-09-26 17:53:17 +02001027 int uninitialized_var(alg), idx, i, remove = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001028
1029 switch (ext->alg) {
1030 case IW_ENCODE_ALG_NONE:
Johannes Berg628a1402007-09-26 17:53:17 +02001031 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001032 break;
1033 case IW_ENCODE_ALG_WEP:
1034 alg = ALG_WEP;
1035 break;
1036 case IW_ENCODE_ALG_TKIP:
1037 alg = ALG_TKIP;
1038 break;
1039 case IW_ENCODE_ALG_CCMP:
1040 alg = ALG_CCMP;
1041 break;
1042 default:
1043 return -EOPNOTSUPP;
1044 }
1045
1046 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +02001047 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001048
1049 idx = erq->flags & IW_ENCODE_INDEX;
1050 if (idx < 1 || idx > 4) {
1051 idx = -1;
1052 if (!sdata->default_key)
1053 idx = 0;
1054 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1055 if (sdata->default_key == sdata->keys[i]) {
1056 idx = i;
1057 break;
1058 }
1059 }
1060 if (idx < 0)
1061 return -EINVAL;
1062 } else
1063 idx--;
1064
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001065 return ieee80211_set_encryption(sdata, ext->addr.sa_data, idx, alg,
Johannes Berg628a1402007-09-26 17:53:17 +02001066 remove,
Jiri Bencf0706e82007-05-05 11:45:53 -07001067 ext->ext_flags &
1068 IW_ENCODE_EXT_SET_TX_KEY,
1069 ext->key, ext->key_len);
1070}
1071
1072
Jiri Bencf0706e82007-05-05 11:45:53 -07001073/* Structures to export the Wireless Handlers */
1074
1075static const iw_handler ieee80211_handler[] =
1076{
1077 (iw_handler) NULL, /* SIOCSIWCOMMIT */
Johannes Bergfee52672008-11-26 22:36:31 +01001078 (iw_handler) cfg80211_wext_giwname, /* SIOCGIWNAME */
Jiri Bencf0706e82007-05-05 11:45:53 -07001079 (iw_handler) NULL, /* SIOCSIWNWID */
1080 (iw_handler) NULL, /* SIOCGIWNWID */
1081 (iw_handler) ieee80211_ioctl_siwfreq, /* SIOCSIWFREQ */
1082 (iw_handler) ieee80211_ioctl_giwfreq, /* SIOCGIWFREQ */
Johannes Berge60c7742008-11-26 23:31:40 +01001083 (iw_handler) cfg80211_wext_siwmode, /* SIOCSIWMODE */
1084 (iw_handler) cfg80211_wext_giwmode, /* SIOCGIWMODE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001085 (iw_handler) NULL, /* SIOCSIWSENS */
1086 (iw_handler) NULL, /* SIOCGIWSENS */
1087 (iw_handler) NULL /* not used */, /* SIOCSIWRANGE */
1088 (iw_handler) ieee80211_ioctl_giwrange, /* SIOCGIWRANGE */
1089 (iw_handler) NULL /* not used */, /* SIOCSIWPRIV */
1090 (iw_handler) NULL /* kernel code */, /* SIOCGIWPRIV */
1091 (iw_handler) NULL /* not used */, /* SIOCSIWSTATS */
1092 (iw_handler) NULL /* kernel code */, /* SIOCGIWSTATS */
Johannes Berg5d4ecd92007-09-14 11:10:24 -04001093 (iw_handler) NULL, /* SIOCSIWSPY */
1094 (iw_handler) NULL, /* SIOCGIWSPY */
1095 (iw_handler) NULL, /* SIOCSIWTHRSPY */
1096 (iw_handler) NULL, /* SIOCGIWTHRSPY */
Jiri Bencf0706e82007-05-05 11:45:53 -07001097 (iw_handler) ieee80211_ioctl_siwap, /* SIOCSIWAP */
1098 (iw_handler) ieee80211_ioctl_giwap, /* SIOCGIWAP */
1099 (iw_handler) ieee80211_ioctl_siwmlme, /* SIOCSIWMLME */
1100 (iw_handler) NULL, /* SIOCGIWAPLIST */
1101 (iw_handler) ieee80211_ioctl_siwscan, /* SIOCSIWSCAN */
1102 (iw_handler) ieee80211_ioctl_giwscan, /* SIOCGIWSCAN */
1103 (iw_handler) ieee80211_ioctl_siwessid, /* SIOCSIWESSID */
1104 (iw_handler) ieee80211_ioctl_giwessid, /* SIOCGIWESSID */
1105 (iw_handler) NULL, /* SIOCSIWNICKN */
1106 (iw_handler) NULL, /* SIOCGIWNICKN */
1107 (iw_handler) NULL, /* -- hole -- */
1108 (iw_handler) NULL, /* -- hole -- */
Larry Finger1fd5e582007-07-10 19:32:10 +02001109 (iw_handler) ieee80211_ioctl_siwrate, /* SIOCSIWRATE */
Larry Fingerb3d88ad2007-06-10 17:57:33 -07001110 (iw_handler) ieee80211_ioctl_giwrate, /* SIOCGIWRATE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001111 (iw_handler) ieee80211_ioctl_siwrts, /* SIOCSIWRTS */
1112 (iw_handler) ieee80211_ioctl_giwrts, /* SIOCGIWRTS */
1113 (iw_handler) ieee80211_ioctl_siwfrag, /* SIOCSIWFRAG */
1114 (iw_handler) ieee80211_ioctl_giwfrag, /* SIOCGIWFRAG */
Michael Buesch61609bc2007-09-20 22:06:39 +02001115 (iw_handler) ieee80211_ioctl_siwtxpower, /* SIOCSIWTXPOW */
Larry Fingerfe6aa302007-08-10 11:23:20 -05001116 (iw_handler) ieee80211_ioctl_giwtxpower, /* SIOCGIWTXPOW */
Jiri Bencf0706e82007-05-05 11:45:53 -07001117 (iw_handler) ieee80211_ioctl_siwretry, /* SIOCSIWRETRY */
1118 (iw_handler) ieee80211_ioctl_giwretry, /* SIOCGIWRETRY */
1119 (iw_handler) ieee80211_ioctl_siwencode, /* SIOCSIWENCODE */
1120 (iw_handler) ieee80211_ioctl_giwencode, /* SIOCGIWENCODE */
Samuel Ortiz49292d52008-07-04 10:49:31 +02001121 (iw_handler) ieee80211_ioctl_siwpower, /* SIOCSIWPOWER */
1122 (iw_handler) ieee80211_ioctl_giwpower, /* SIOCGIWPOWER */
Jiri Bencf0706e82007-05-05 11:45:53 -07001123 (iw_handler) NULL, /* -- hole -- */
1124 (iw_handler) NULL, /* -- hole -- */
1125 (iw_handler) ieee80211_ioctl_siwgenie, /* SIOCSIWGENIE */
1126 (iw_handler) NULL, /* SIOCGIWGENIE */
1127 (iw_handler) ieee80211_ioctl_siwauth, /* SIOCSIWAUTH */
1128 (iw_handler) ieee80211_ioctl_giwauth, /* SIOCGIWAUTH */
1129 (iw_handler) ieee80211_ioctl_siwencodeext, /* SIOCSIWENCODEEXT */
1130 (iw_handler) NULL, /* SIOCGIWENCODEEXT */
1131 (iw_handler) NULL, /* SIOCSIWPMKSA */
1132 (iw_handler) NULL, /* -- hole -- */
1133};
1134
Jiri Bencf0706e82007-05-05 11:45:53 -07001135const struct iw_handler_def ieee80211_iw_handler_def =
1136{
1137 .num_standard = ARRAY_SIZE(ieee80211_handler),
Jiri Bencf0706e82007-05-05 11:45:53 -07001138 .standard = (iw_handler *) ieee80211_handler,
Jiri Bencf0706e82007-05-05 11:45:53 -07001139 .get_wireless_stats = ieee80211_get_wireless_stats,
1140};