blob: a8d4b61719169ab218595a2ef353999f550556c6 [file] [log] [blame]
Jiri Bencf0706e822007-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 Bencf0706e822007-05-05 11:45:53 -070026#include "wpa.h"
27#include "aes_ccm.h"
Jiri Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-05-05 11:45:53 -070039
Jouni Malinen22787db2009-01-08 13:32:04 +020040 if (alg == ALG_AES_CMAC) {
41 if (idx < NUM_DEFAULT_KEYS ||
42 idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) {
43 printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d "
44 "(BIP)\n", sdata->dev->name, idx);
45 return -EINVAL;
46 }
47 } else if (idx < 0 || idx >= NUM_DEFAULT_KEYS) {
Volker Braun139c3a02007-09-14 11:10:25 -040048 printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120049 sdata->dev->name, idx);
Volker Braun139c3a02007-09-14 11:10:25 -040050 return -EINVAL;
51 }
52
Johannes Berg628a1402007-09-26 17:53:17 +020053 if (remove) {
Johannes Berg3b967662008-04-08 17:56:52 +020054 rcu_read_lock();
55
56 err = 0;
57
Johannes Bergdb4d1162008-02-25 16:27:45 +010058 if (is_broadcast_ether_addr(sta_addr)) {
59 key = sdata->keys[idx];
60 } else {
61 sta = sta_info_get(local, sta_addr);
Johannes Berg3b967662008-04-08 17:56:52 +020062 if (!sta) {
63 err = -ENOENT;
64 goto out_unlock;
65 }
Johannes Bergdb4d1162008-02-25 16:27:45 +010066 key = sta->key;
Jiri Bencf0706e822007-05-05 11:45:53 -070067 }
Johannes Bergdb4d1162008-02-25 16:27:45 +010068
Johannes Bergd0709a62008-02-25 16:27:46 +010069 ieee80211_key_free(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +010070 } else {
71 key = ieee80211_key_alloc(alg, idx, key_len, _key);
72 if (!key)
73 return -ENOMEM;
74
Johannes Bergd0709a62008-02-25 16:27:46 +010075 sta = NULL;
Johannes Berg3b967662008-04-08 17:56:52 +020076 err = 0;
77
78 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +010079
Johannes Bergdb4d1162008-02-25 16:27:45 +010080 if (!is_broadcast_ether_addr(sta_addr)) {
81 set_tx_key = 0;
82 /*
83 * According to the standard, the key index of a
84 * pairwise key must be zero. However, some AP are
85 * broken when it comes to WEP key indices, so we
86 * work around this.
87 */
88 if (idx != 0 && alg != ALG_WEP) {
Johannes Bergd0709a62008-02-25 16:27:46 +010089 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +020090 err = -EINVAL;
91 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +010092 }
93
94 sta = sta_info_get(local, sta_addr);
95 if (!sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +010096 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +020097 err = -ENOENT;
98 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +010099 }
100 }
101
Emmanuel Grumbach23976ef2008-06-28 02:50:13 +0300102 if (alg == ALG_WEP &&
103 key_len != LEN_WEP40 && key_len != LEN_WEP104) {
104 ieee80211_key_free(key);
105 err = -EINVAL;
106 goto out_unlock;
107 }
108
Johannes Bergdb4d1162008-02-25 16:27:45 +0100109 ieee80211_key_link(key, sdata, sta);
110
111 if (set_tx_key || (!sta && !sdata->default_key && key))
112 ieee80211_set_default_key(sdata, idx);
Jouni Malinen22787db2009-01-08 13:32:04 +0200113 if (alg == ALG_AES_CMAC &&
114 (set_tx_key || (!sta && !sdata->default_mgmt_key && key)))
115 ieee80211_set_default_mgmt_key(sdata, idx);
Jiri Bencf0706e822007-05-05 11:45:53 -0700116 }
117
Johannes Berg3b967662008-04-08 17:56:52 +0200118 out_unlock:
119 rcu_read_unlock();
120
121 return err;
Jiri Bencf0706e822007-05-05 11:45:53 -0700122}
123
124static int ieee80211_ioctl_siwgenie(struct net_device *dev,
125 struct iw_request_info *info,
126 struct iw_point *data, char *extra)
127{
128 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e822007-05-05 11:45:53 -0700129
130 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200131
132 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
133 return -EOPNOTSUPP;
134
Johannes Berg46900292009-02-15 12:44:28 +0100135 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200136 int ret = ieee80211_sta_set_extra_ie(sdata, extra, data->length);
Jiri Bencf0706e822007-05-05 11:45:53 -0700137 if (ret)
138 return ret;
Johannes Berg46900292009-02-15 12:44:28 +0100139 sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
140 ieee80211_sta_req_auth(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700141 return 0;
142 }
143
Jiri Bencf0706e822007-05-05 11:45:53 -0700144 return -EOPNOTSUPP;
145}
146
Johannes Berg9a03d6d2009-02-10 21:26:01 +0100147static u8 ieee80211_get_wstats_flags(struct ieee80211_local *local)
148{
149 u8 wstats_flags = 0;
150
151 wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
152 IEEE80211_HW_SIGNAL_DBM) ?
153 IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
154 wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ?
155 IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
156 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
157 wstats_flags |= IW_QUAL_DBM;
158
159 return wstats_flags;
160}
161
Jiri Bencf0706e822007-05-05 11:45:53 -0700162static int ieee80211_ioctl_giwrange(struct net_device *dev,
163 struct iw_request_info *info,
164 struct iw_point *data, char *extra)
165{
166 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
167 struct iw_range *range = (struct iw_range *) extra;
Johannes Berg8318d782008-01-24 19:38:38 +0100168 enum ieee80211_band band;
Hong Liu333af2f2007-07-10 19:32:08 +0200169 int c = 0;
Jiri Bencf0706e822007-05-05 11:45:53 -0700170
171 data->length = sizeof(struct iw_range);
172 memset(range, 0, sizeof(struct iw_range));
173
174 range->we_version_compiled = WIRELESS_EXT;
175 range->we_version_source = 21;
176 range->retry_capa = IW_RETRY_LIMIT;
177 range->retry_flags = IW_RETRY_LIMIT;
178 range->min_retry = 0;
179 range->max_retry = 255;
180 range->min_rts = 0;
181 range->max_rts = 2347;
182 range->min_frag = 256;
183 range->max_frag = 2346;
184
185 range->encoding_size[0] = 5;
186 range->encoding_size[1] = 13;
187 range->num_encoding_sizes = 2;
188 range->max_encoding_tokens = NUM_DEFAULT_KEYS;
189
Johannes Berg2a519312009-02-10 21:25:55 +0100190 /* cfg80211 requires this, and enforces 0..100 */
Johannes Berg7fee5372009-01-30 11:13:06 +0100191 if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)
Johannes Berg2a519312009-02-10 21:25:55 +0100192 range->max_qual.level = 100;
Bruno Randolf566bfe52008-05-08 19:15:40 +0200193 else if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
194 range->max_qual.level = -110;
195 else
196 range->max_qual.level = 0;
197
198 if (local->hw.flags & IEEE80211_HW_NOISE_DBM)
199 range->max_qual.noise = -110;
200 else
201 range->max_qual.noise = 0;
202
Johannes Berg9a03d6d2009-02-10 21:26:01 +0100203 range->max_qual.updated = ieee80211_get_wstats_flags(local);
Jiri Bencf0706e822007-05-05 11:45:53 -0700204
Johannes Berga77b8552009-02-18 18:27:22 +0100205 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) {
206 /*
207 * cfg80211 assumes -110 to -40 dBm and clamps to that range
208 * for qual.qual, so tell userspace this is what we give it
209 * but take into account that we have to start from 0.
210 */
211 range->max_qual.qual = 70;
212 range->avg_qual.qual = 35;
213 } else {
214 /*
215 * cfg80211 just uses the level value for qual too, and it
216 * requires the level value to be 0 .. 100.
217 */
218 range->max_qual.qual = 100;
219 range->avg_qual.qual = 50;
220 }
Bruno Randolf566bfe52008-05-08 19:15:40 +0200221 /* not always true but better than nothing */
222 range->avg_qual.level = range->max_qual.level / 2;
223 range->avg_qual.noise = range->max_qual.noise / 2;
Johannes Berg9a03d6d2009-02-10 21:26:01 +0100224 range->avg_qual.updated = ieee80211_get_wstats_flags(local);
Jiri Bencf0706e822007-05-05 11:45:53 -0700225
226 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
227 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
228
Hong Liu333af2f2007-07-10 19:32:08 +0200229
Johannes Berg8318d782008-01-24 19:38:38 +0100230 for (band = 0; band < IEEE80211_NUM_BANDS; band ++) {
231 int i;
232 struct ieee80211_supported_band *sband;
233
234 sband = local->hw.wiphy->bands[band];
235
236 if (!sband)
Hong Liu333af2f2007-07-10 19:32:08 +0200237 continue;
238
Johannes Berg8318d782008-01-24 19:38:38 +0100239 for (i = 0; i < sband->n_channels && c < IW_MAX_FREQUENCIES; i++) {
240 struct ieee80211_channel *chan = &sband->channels[i];
Hong Liu333af2f2007-07-10 19:32:08 +0200241
Johannes Berg8318d782008-01-24 19:38:38 +0100242 if (!(chan->flags & IEEE80211_CHAN_DISABLED)) {
243 range->freq[c].i =
244 ieee80211_frequency_to_channel(
245 chan->center_freq);
246 range->freq[c].m = chan->center_freq;
247 range->freq[c].e = 6;
Hong Liu333af2f2007-07-10 19:32:08 +0200248 c++;
249 }
Hong Liu333af2f2007-07-10 19:32:08 +0200250 }
251 }
252 range->num_channels = c;
253 range->num_frequency = c;
254
Jiri Bencf0706e822007-05-05 11:45:53 -0700255 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
Jiri Bencf0706e822007-05-05 11:45:53 -0700256 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
257 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
258
Dan Williams374fdfb2007-12-12 10:25:07 -0500259 range->scan_capa |= IW_SCAN_CAPA_ESSID;
260
Jiri Bencf0706e822007-05-05 11:45:53 -0700261 return 0;
262}
263
264
Jiri Bencf0706e822007-05-05 11:45:53 -0700265static int ieee80211_ioctl_siwfreq(struct net_device *dev,
266 struct iw_request_info *info,
267 struct iw_freq *freq, char *extra)
268{
Jiri Bencf0706e822007-05-05 11:45:53 -0700269 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
270
Johannes Berg46900292009-02-15 12:44:28 +0100271 if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
272 sdata->u.ibss.flags &= ~IEEE80211_IBSS_AUTO_CHANNEL_SEL;
273 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
274 sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e822007-05-05 11:45:53 -0700275
276 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
277 if (freq->e == 0) {
278 if (freq->m < 0) {
Johannes Berg46900292009-02-15 12:44:28 +0100279 if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
280 sdata->u.ibss.flags |=
281 IEEE80211_IBSS_AUTO_CHANNEL_SEL;
282 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
283 sdata->u.mgd.flags |=
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400284 IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e822007-05-05 11:45:53 -0700285 return 0;
286 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200287 return ieee80211_set_freq(sdata,
Johannes Berg8318d782008-01-24 19:38:38 +0100288 ieee80211_channel_to_frequency(freq->m));
Jiri Bencf0706e822007-05-05 11:45:53 -0700289 } else {
290 int i, div = 1000000;
291 for (i = 0; i < freq->e; i++)
292 div /= 10;
293 if (div > 0)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200294 return ieee80211_set_freq(sdata, freq->m / div);
Jiri Bencf0706e822007-05-05 11:45:53 -0700295 else
296 return -EINVAL;
297 }
298}
299
300
301static int ieee80211_ioctl_giwfreq(struct net_device *dev,
302 struct iw_request_info *info,
303 struct iw_freq *freq, char *extra)
304{
305 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
306
Johannes Berg8318d782008-01-24 19:38:38 +0100307 freq->m = local->hw.conf.channel->center_freq;
Jiri Bencf0706e822007-05-05 11:45:53 -0700308 freq->e = 6;
309
310 return 0;
311}
312
313
314static int ieee80211_ioctl_siwessid(struct net_device *dev,
315 struct iw_request_info *info,
316 struct iw_point *data, char *ssid)
317{
Jiri Bencf0706e822007-05-05 11:45:53 -0700318 struct ieee80211_sub_if_data *sdata;
319 size_t len = data->length;
Johannes Berg46900292009-02-15 12:44:28 +0100320 int ret;
Jiri Bencf0706e822007-05-05 11:45:53 -0700321
322 /* iwconfig uses nul termination in SSID.. */
323 if (len > 0 && ssid[len - 1] == '\0')
324 len--;
325
326 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100327 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200328 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700329 if (len > IEEE80211_MAX_SSID_LEN)
330 return -EINVAL;
Johannes Berg46900292009-02-15 12:44:28 +0100331 memcpy(sdata->u.mgd.ssid, ssid, len);
332 sdata->u.mgd.ssid_len = len;
Jiri Bencf0706e822007-05-05 11:45:53 -0700333 return 0;
334 }
Johannes Berg46900292009-02-15 12:44:28 +0100335
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400336 if (data->flags)
Johannes Berg46900292009-02-15 12:44:28 +0100337 sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_SSID_SEL;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400338 else
Johannes Berg46900292009-02-15 12:44:28 +0100339 sdata->u.mgd.flags |= IEEE80211_STA_AUTO_SSID_SEL;
340
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200341 ret = ieee80211_sta_set_ssid(sdata, ssid, len);
Jiri Bencf0706e822007-05-05 11:45:53 -0700342 if (ret)
343 return ret;
Johannes Berg46900292009-02-15 12:44:28 +0100344
345 ieee80211_sta_req_auth(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700346 return 0;
Johannes Berg46900292009-02-15 12:44:28 +0100347 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
348 return ieee80211_ibss_set_ssid(sdata, ssid, len);
Jiri Bencf0706e822007-05-05 11:45:53 -0700349
Jiri Bencf0706e822007-05-05 11:45:53 -0700350 return -EOPNOTSUPP;
351}
352
353
354static int ieee80211_ioctl_giwessid(struct net_device *dev,
355 struct iw_request_info *info,
356 struct iw_point *data, char *ssid)
357{
358 size_t len;
359
360 struct ieee80211_sub_if_data *sdata;
361 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100362 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200363 int res = ieee80211_sta_get_ssid(sdata, ssid, &len);
Jiri Bencf0706e822007-05-05 11:45:53 -0700364 if (res == 0) {
365 data->length = len;
366 data->flags = 1;
367 } else
368 data->flags = 0;
369 return res;
Johannes Berg46900292009-02-15 12:44:28 +0100370 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
371 int res = ieee80211_ibss_get_ssid(sdata, ssid, &len);
372 if (res == 0) {
373 data->length = len;
374 data->flags = 1;
375 } else
376 data->flags = 0;
377 return res;
Jiri Bencf0706e822007-05-05 11:45:53 -0700378 }
379
Jiri Bencf0706e822007-05-05 11:45:53 -0700380 return -EOPNOTSUPP;
381}
382
383
384static int ieee80211_ioctl_siwap(struct net_device *dev,
385 struct iw_request_info *info,
386 struct sockaddr *ap_addr, char *extra)
387{
Jiri Bencf0706e822007-05-05 11:45:53 -0700388 struct ieee80211_sub_if_data *sdata;
389
390 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100391 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700392 int ret;
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200393 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
Johannes Berg46900292009-02-15 12:44:28 +0100394 memcpy(sdata->u.mgd.bssid, (u8 *) &ap_addr->sa_data,
Jiri Bencf0706e822007-05-05 11:45:53 -0700395 ETH_ALEN);
396 return 0;
397 }
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400398 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
Johannes Berg46900292009-02-15 12:44:28 +0100399 sdata->u.mgd.flags |= IEEE80211_STA_AUTO_BSSID_SEL |
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400400 IEEE80211_STA_AUTO_CHANNEL_SEL;
401 else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
Johannes Berg46900292009-02-15 12:44:28 +0100402 sdata->u.mgd.flags |= IEEE80211_STA_AUTO_BSSID_SEL;
Jiri Bencf0706e822007-05-05 11:45:53 -0700403 else
Johannes Berg46900292009-02-15 12:44:28 +0100404 sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200405 ret = ieee80211_sta_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
Jiri Bencf0706e822007-05-05 11:45:53 -0700406 if (ret)
407 return ret;
Johannes Berg46900292009-02-15 12:44:28 +0100408 ieee80211_sta_req_auth(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700409 return 0;
Johannes Berg46900292009-02-15 12:44:28 +0100410 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
411 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
412 sdata->u.ibss.flags |= IEEE80211_IBSS_AUTO_BSSID_SEL |
413 IEEE80211_IBSS_AUTO_CHANNEL_SEL;
414 else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
415 sdata->u.ibss.flags |= IEEE80211_IBSS_AUTO_BSSID_SEL;
416 else
417 sdata->u.ibss.flags &= ~IEEE80211_IBSS_AUTO_BSSID_SEL;
418
419 return ieee80211_ibss_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
Johannes Berg05c914f2008-09-11 00:01:58 +0200420 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
Johannes Berg44213b52008-02-25 16:27:49 +0100421 /*
422 * If it is necessary to update the WDS peer address
423 * while the interface is running, then we need to do
424 * more work here, namely if it is running we need to
425 * add a new and remove the old STA entry, this is
426 * normally handled by _open() and _stop().
427 */
428 if (netif_running(dev))
429 return -EBUSY;
430
431 memcpy(&sdata->u.wds.remote_addr, (u8 *) &ap_addr->sa_data,
432 ETH_ALEN);
433
434 return 0;
Jiri Bencf0706e822007-05-05 11:45:53 -0700435 }
436
437 return -EOPNOTSUPP;
438}
439
440
441static int ieee80211_ioctl_giwap(struct net_device *dev,
442 struct iw_request_info *info,
443 struct sockaddr *ap_addr, char *extra)
444{
445 struct ieee80211_sub_if_data *sdata;
446
447 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100448 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
449 if (sdata->u.mgd.state == IEEE80211_STA_MLME_ASSOCIATED) {
Abhijeet Kolekard4231ca2008-05-23 10:15:26 -0700450 ap_addr->sa_family = ARPHRD_ETHER;
Johannes Berg46900292009-02-15 12:44:28 +0100451 memcpy(&ap_addr->sa_data, sdata->u.mgd.bssid, ETH_ALEN);
452 } else
Abhijeet Kolekard4231ca2008-05-23 10:15:26 -0700453 memset(&ap_addr->sa_data, 0, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100454 return 0;
455 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
456 if (sdata->u.ibss.state == IEEE80211_IBSS_MLME_JOINED) {
457 ap_addr->sa_family = ARPHRD_ETHER;
458 memcpy(&ap_addr->sa_data, sdata->u.ibss.bssid, ETH_ALEN);
459 } else
460 memset(&ap_addr->sa_data, 0, ETH_ALEN);
461 return 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200462 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700463 ap_addr->sa_family = ARPHRD_ETHER;
464 memcpy(&ap_addr->sa_data, sdata->u.wds.remote_addr, ETH_ALEN);
465 return 0;
466 }
467
468 return -EOPNOTSUPP;
469}
470
471
Larry Finger1fd5e582007-07-10 19:32:10 +0200472static int ieee80211_ioctl_siwrate(struct net_device *dev,
473 struct iw_request_info *info,
474 struct iw_param *rate, char *extra)
475{
476 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg8318d782008-01-24 19:38:38 +0100477 int i, err = -EINVAL;
Larry Finger1fd5e582007-07-10 19:32:10 +0200478 u32 target_rate = rate->value / 100000;
479 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100480 struct ieee80211_supported_band *sband;
Larry Finger1fd5e582007-07-10 19:32:10 +0200481
482 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100483
484 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
485
Larry Finger1fd5e582007-07-10 19:32:10 +0200486 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
487 * target_rate = X, rate->fixed = 1 means only rate X
488 * target_rate = X, rate->fixed = 0 means all rates <= X */
Johannes Berg3e122be2008-07-09 14:40:34 +0200489 sdata->max_ratectrl_rateidx = -1;
490 sdata->force_unicast_rateidx = -1;
Larry Finger1fd5e582007-07-10 19:32:10 +0200491 if (rate->value < 0)
492 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100493
494 for (i=0; i< sband->n_bitrates; i++) {
495 struct ieee80211_rate *brate = &sband->bitrates[i];
496 int this_rate = brate->bitrate;
Larry Finger1fd5e582007-07-10 19:32:10 +0200497
Larry Finger1fd5e582007-07-10 19:32:10 +0200498 if (target_rate == this_rate) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200499 sdata->max_ratectrl_rateidx = i;
Larry Finger1fd5e582007-07-10 19:32:10 +0200500 if (rate->fixed)
Johannes Berg3e122be2008-07-09 14:40:34 +0200501 sdata->force_unicast_rateidx = i;
Johannes Berg8318d782008-01-24 19:38:38 +0100502 err = 0;
503 break;
Larry Finger1fd5e582007-07-10 19:32:10 +0200504 }
505 }
Johannes Berg8318d782008-01-24 19:38:38 +0100506 return err;
Larry Finger1fd5e582007-07-10 19:32:10 +0200507}
508
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700509static int ieee80211_ioctl_giwrate(struct net_device *dev,
510 struct iw_request_info *info,
511 struct iw_param *rate, char *extra)
512{
513 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
514 struct sta_info *sta;
515 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100516 struct ieee80211_supported_band *sband;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700517
518 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100519
Johannes Berg05c914f2008-09-11 00:01:58 +0200520 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700521 return -EOPNOTSUPP;
Johannes Berg8318d782008-01-24 19:38:38 +0100522
523 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
524
Johannes Berg380a9422008-04-04 23:40:35 +0200525 rcu_read_lock();
526
Johannes Berg46900292009-02-15 12:44:28 +0100527 sta = sta_info_get(local, sdata->u.mgd.bssid);
Johannes Berg380a9422008-04-04 23:40:35 +0200528
Johannes Berge6a98542008-10-21 12:40:02 +0200529 if (sta && !(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS))
530 rate->value = sband->bitrates[sta->last_tx_rate.idx].bitrate;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700531 else
532 rate->value = 0;
Johannes Berg380a9422008-04-04 23:40:35 +0200533
534 rcu_read_unlock();
535
536 if (!sta)
537 return -ENODEV;
538
Johannes Berg8318d782008-01-24 19:38:38 +0100539 rate->value *= 100000;
Johannes Bergd0709a62008-02-25 16:27:46 +0100540
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700541 return 0;
542}
543
Michael Buesch61609bc2007-09-20 22:06:39 +0200544static int ieee80211_ioctl_siwtxpower(struct net_device *dev,
545 struct iw_request_info *info,
546 union iwreq_data *data, char *extra)
547{
548 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Luis R. Rodriguezd9d29252008-10-22 13:13:53 -0700549 struct ieee80211_channel* chan = local->hw.conf.channel;
Johannes Berge8975582008-10-09 12:18:51 +0200550 u32 reconf_flags = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100551 int new_power_level;
Michael Buesch61609bc2007-09-20 22:06:39 +0200552
553 if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
554 return -EINVAL;
555 if (data->txpower.flags & IW_TXPOW_RANGE)
556 return -EINVAL;
Luis R. Rodriguezd9d29252008-10-22 13:13:53 -0700557 if (!chan)
558 return -EINVAL;
Michael Buesch61609bc2007-09-20 22:06:39 +0200559
Luis R. Rodriguezd9d29252008-10-22 13:13:53 -0700560 if (data->txpower.fixed)
561 new_power_level = min(data->txpower.value, chan->max_power);
562 else /* Automatic power level setting */
Johannes Berg8318d782008-01-24 19:38:38 +0100563 new_power_level = chan->max_power;
Mattias Nissler6a432952007-10-24 23:30:36 +0200564
Johannes Berg2bf30fa2009-01-06 23:23:56 +0100565 local->user_power_level = new_power_level;
Vasanthakumar Thiagarajane3c92df2008-12-24 13:53:11 +0530566 if (local->hw.conf.power_level != new_power_level)
Johannes Berge8975582008-10-09 12:18:51 +0200567 reconf_flags |= IEEE80211_CONF_CHANGE_POWER;
Mattias Nissler6a432952007-10-24 23:30:36 +0200568
Michael Buesch61609bc2007-09-20 22:06:39 +0200569 if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) {
570 local->hw.conf.radio_enabled = !(data->txpower.disabled);
Johannes Berge8975582008-10-09 12:18:51 +0200571 reconf_flags |= IEEE80211_CONF_CHANGE_RADIO_ENABLED;
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100572 ieee80211_led_radio(local, local->hw.conf.radio_enabled);
Michael Buesch61609bc2007-09-20 22:06:39 +0200573 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200574
Johannes Berge8975582008-10-09 12:18:51 +0200575 if (reconf_flags)
576 ieee80211_hw_config(local, reconf_flags);
Michael Buesch61609bc2007-09-20 22:06:39 +0200577
578 return 0;
579}
580
Larry Fingerfe6aa302007-08-10 11:23:20 -0500581static int ieee80211_ioctl_giwtxpower(struct net_device *dev,
582 struct iw_request_info *info,
583 union iwreq_data *data, char *extra)
584{
585 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
586
587 data->txpower.fixed = 1;
588 data->txpower.disabled = !(local->hw.conf.radio_enabled);
589 data->txpower.value = local->hw.conf.power_level;
590 data->txpower.flags = IW_TXPOW_DBM;
591
592 return 0;
593}
594
Jiri Bencf0706e822007-05-05 11:45:53 -0700595static int ieee80211_ioctl_siwrts(struct net_device *dev,
596 struct iw_request_info *info,
597 struct iw_param *rts, char *extra)
598{
599 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
600
601 if (rts->disabled)
602 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
Emmanuel Grumbachfa6adfe2008-06-24 13:37:58 +0300603 else if (!rts->fixed)
604 /* if the rts value is not fixed, then take default */
605 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
Jiri Bencf0706e822007-05-05 11:45:53 -0700606 else if (rts->value < 0 || rts->value > IEEE80211_MAX_RTS_THRESHOLD)
607 return -EINVAL;
608 else
609 local->rts_threshold = rts->value;
610
611 /* If the wlan card performs RTS/CTS in hardware/firmware,
612 * configure it here */
613
614 if (local->ops->set_rts_threshold)
615 local->ops->set_rts_threshold(local_to_hw(local),
616 local->rts_threshold);
617
618 return 0;
619}
620
621static int ieee80211_ioctl_giwrts(struct net_device *dev,
622 struct iw_request_info *info,
623 struct iw_param *rts, char *extra)
624{
625 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
626
627 rts->value = local->rts_threshold;
628 rts->disabled = (rts->value >= IEEE80211_MAX_RTS_THRESHOLD);
629 rts->fixed = 1;
630
631 return 0;
632}
633
634
635static int ieee80211_ioctl_siwfrag(struct net_device *dev,
636 struct iw_request_info *info,
637 struct iw_param *frag, char *extra)
638{
639 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
640
641 if (frag->disabled)
642 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Emmanuel Grumbache4abd4d2008-07-03 18:02:27 +0300643 else if (!frag->fixed)
644 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Jiri Bencf0706e822007-05-05 11:45:53 -0700645 else if (frag->value < 256 ||
646 frag->value > IEEE80211_MAX_FRAG_THRESHOLD)
647 return -EINVAL;
648 else {
649 /* Fragment length must be even, so strip LSB. */
650 local->fragmentation_threshold = frag->value & ~0x1;
651 }
652
Jiri Bencf0706e822007-05-05 11:45:53 -0700653 return 0;
654}
655
656static int ieee80211_ioctl_giwfrag(struct net_device *dev,
657 struct iw_request_info *info,
658 struct iw_param *frag, char *extra)
659{
660 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
661
662 frag->value = local->fragmentation_threshold;
663 frag->disabled = (frag->value >= IEEE80211_MAX_RTS_THRESHOLD);
664 frag->fixed = 1;
665
666 return 0;
667}
668
669
670static int ieee80211_ioctl_siwretry(struct net_device *dev,
671 struct iw_request_info *info,
672 struct iw_param *retry, char *extra)
673{
674 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
675
676 if (retry->disabled ||
677 (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
678 return -EINVAL;
679
Johannes Berg9124b072008-10-14 19:17:54 +0200680 if (retry->flags & IW_RETRY_MAX) {
681 local->hw.conf.long_frame_max_tx_count = retry->value;
682 } else if (retry->flags & IW_RETRY_MIN) {
683 local->hw.conf.short_frame_max_tx_count = retry->value;
684 } else {
685 local->hw.conf.long_frame_max_tx_count = retry->value;
686 local->hw.conf.short_frame_max_tx_count = retry->value;
Jiri Bencf0706e822007-05-05 11:45:53 -0700687 }
688
Johannes Berg9124b072008-10-14 19:17:54 +0200689 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
Jiri Bencf0706e822007-05-05 11:45:53 -0700690
691 return 0;
692}
693
694
695static int ieee80211_ioctl_giwretry(struct net_device *dev,
696 struct iw_request_info *info,
697 struct iw_param *retry, char *extra)
698{
699 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
700
701 retry->disabled = 0;
702 if (retry->flags == 0 || retry->flags & IW_RETRY_MIN) {
703 /* first return min value, iwconfig will ask max value
704 * later if needed */
705 retry->flags |= IW_RETRY_LIMIT;
Johannes Berg9124b072008-10-14 19:17:54 +0200706 retry->value = local->hw.conf.short_frame_max_tx_count;
707 if (local->hw.conf.long_frame_max_tx_count !=
708 local->hw.conf.short_frame_max_tx_count)
Jiri Bencf0706e822007-05-05 11:45:53 -0700709 retry->flags |= IW_RETRY_MIN;
710 return 0;
711 }
712 if (retry->flags & IW_RETRY_MAX) {
713 retry->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
Johannes Berg9124b072008-10-14 19:17:54 +0200714 retry->value = local->hw.conf.long_frame_max_tx_count;
Jiri Bencf0706e822007-05-05 11:45:53 -0700715 }
716
717 return 0;
718}
719
Jiri Bencf0706e822007-05-05 11:45:53 -0700720static int ieee80211_ioctl_siwmlme(struct net_device *dev,
721 struct iw_request_info *info,
722 struct iw_point *data, char *extra)
723{
724 struct ieee80211_sub_if_data *sdata;
725 struct iw_mlme *mlme = (struct iw_mlme *) extra;
726
727 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100728 if (!(sdata->vif.type == NL80211_IFTYPE_STATION))
Jiri Bencf0706e822007-05-05 11:45:53 -0700729 return -EINVAL;
730
731 switch (mlme->cmd) {
732 case IW_MLME_DEAUTH:
733 /* TODO: mlme->addr.sa_data */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200734 return ieee80211_sta_deauthenticate(sdata, mlme->reason_code);
Jiri Bencf0706e822007-05-05 11:45:53 -0700735 case IW_MLME_DISASSOC:
736 /* TODO: mlme->addr.sa_data */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200737 return ieee80211_sta_disassociate(sdata, mlme->reason_code);
Jiri Bencf0706e822007-05-05 11:45:53 -0700738 default:
739 return -EOPNOTSUPP;
740 }
741}
742
743
744static int ieee80211_ioctl_siwencode(struct net_device *dev,
745 struct iw_request_info *info,
746 struct iw_point *erq, char *keybuf)
747{
748 struct ieee80211_sub_if_data *sdata;
749 int idx, i, alg = ALG_WEP;
750 u8 bcaddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Johannes Berg628a1402007-09-26 17:53:17 +0200751 int remove = 0;
Jiri Bencf0706e822007-05-05 11:45:53 -0700752
753 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
754
755 idx = erq->flags & IW_ENCODE_INDEX;
756 if (idx == 0) {
757 if (sdata->default_key)
758 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
759 if (sdata->default_key == sdata->keys[i]) {
760 idx = i;
761 break;
762 }
763 }
764 } else if (idx < 1 || idx > 4)
765 return -EINVAL;
766 else
767 idx--;
768
769 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +0200770 remove = 1;
Jiri Bencf0706e822007-05-05 11:45:53 -0700771 else if (erq->length == 0) {
772 /* No key data - just set the default TX key index */
Johannes Berg11a843b2007-08-28 17:01:55 -0400773 ieee80211_set_default_key(sdata, idx);
Jiri Bencf0706e822007-05-05 11:45:53 -0700774 return 0;
775 }
776
777 return ieee80211_set_encryption(
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200778 sdata, bcaddr,
Johannes Berg628a1402007-09-26 17:53:17 +0200779 idx, alg, remove,
Jiri Bencf0706e822007-05-05 11:45:53 -0700780 !sdata->default_key,
781 keybuf, erq->length);
782}
783
784
785static int ieee80211_ioctl_giwencode(struct net_device *dev,
786 struct iw_request_info *info,
787 struct iw_point *erq, char *key)
788{
789 struct ieee80211_sub_if_data *sdata;
790 int idx, i;
791
792 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
793
794 idx = erq->flags & IW_ENCODE_INDEX;
795 if (idx < 1 || idx > 4) {
796 idx = -1;
797 if (!sdata->default_key)
798 idx = 0;
799 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
800 if (sdata->default_key == sdata->keys[i]) {
801 idx = i;
802 break;
803 }
804 }
805 if (idx < 0)
806 return -EINVAL;
807 } else
808 idx--;
809
810 erq->flags = idx + 1;
811
812 if (!sdata->keys[idx]) {
813 erq->length = 0;
814 erq->flags |= IW_ENCODE_DISABLED;
815 return 0;
816 }
817
Johannes Berg8f20fc22007-08-28 17:01:54 -0400818 memcpy(key, sdata->keys[idx]->conf.key,
Johannes Berg11a843b2007-08-28 17:01:55 -0400819 min_t(int, erq->length, sdata->keys[idx]->conf.keylen));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400820 erq->length = sdata->keys[idx]->conf.keylen;
Jiri Bencf0706e822007-05-05 11:45:53 -0700821 erq->flags |= IW_ENCODE_ENABLED;
822
Johannes Berg05c914f2008-09-11 00:01:58 +0200823 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg46900292009-02-15 12:44:28 +0100824 switch (sdata->u.mgd.auth_alg) {
Emmanuel Grumbachb9fcc4f2008-06-24 13:37:59 +0300825 case WLAN_AUTH_OPEN:
826 case WLAN_AUTH_LEAP:
827 erq->flags |= IW_ENCODE_OPEN;
828 break;
829 case WLAN_AUTH_SHARED_KEY:
830 erq->flags |= IW_ENCODE_RESTRICTED;
831 break;
832 }
833 }
834
Jiri Bencf0706e822007-05-05 11:45:53 -0700835 return 0;
836}
837
Samuel Ortiz49292d52008-07-04 10:49:31 +0200838static int ieee80211_ioctl_siwpower(struct net_device *dev,
839 struct iw_request_info *info,
840 struct iw_param *wrq,
841 char *extra)
842{
Kalle Valoe0cb6862008-12-18 23:35:13 +0200843 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Samuel Ortiz49292d52008-07-04 10:49:31 +0200844 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
845 struct ieee80211_conf *conf = &local->hw.conf;
Kalle Valo520eb822008-12-18 23:35:27 +0200846 int ret = 0, timeout = 0;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200847 bool ps;
848
Johannes Berg4be8c382009-01-07 18:28:20 +0100849 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
850 return -EOPNOTSUPP;
851
Kalle Valoe0cb6862008-12-18 23:35:13 +0200852 if (sdata->vif.type != NL80211_IFTYPE_STATION)
853 return -EINVAL;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200854
855 if (wrq->disabled) {
Kalle Valoe0cb6862008-12-18 23:35:13 +0200856 ps = false;
Kalle Valo520eb822008-12-18 23:35:27 +0200857 timeout = 0;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200858 goto set;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200859 }
860
861 switch (wrq->flags & IW_POWER_MODE) {
862 case IW_POWER_ON: /* If not specified */
863 case IW_POWER_MODE: /* If set all mask */
864 case IW_POWER_ALL_R: /* If explicitely state all */
Kalle Valoe0cb6862008-12-18 23:35:13 +0200865 ps = true;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200866 break;
Kalle Valo520eb822008-12-18 23:35:27 +0200867 default: /* Otherwise we ignore */
Johannes Berge9aeaba2009-01-06 18:12:35 +0100868 return -EINVAL;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200869 }
870
Johannes Berge9aeaba2009-01-06 18:12:35 +0100871 if (wrq->flags & ~(IW_POWER_MODE | IW_POWER_TIMEOUT))
872 return -EINVAL;
873
Kalle Valo520eb822008-12-18 23:35:27 +0200874 if (wrq->flags & IW_POWER_TIMEOUT)
875 timeout = wrq->value / 1000;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200876
Johannes Berg4be8c382009-01-07 18:28:20 +0100877 set:
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100878 if (ps == local->powersave && timeout == conf->dynamic_ps_timeout)
Kalle Valo520eb822008-12-18 23:35:27 +0200879 return ret;
880
Kalle Valoe0cb6862008-12-18 23:35:13 +0200881 local->powersave = ps;
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100882 conf->dynamic_ps_timeout = timeout;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200883
Johannes Berg4be8c382009-01-07 18:28:20 +0100884 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100885 ret = ieee80211_hw_config(local,
886 IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT);
Johannes Berg4be8c382009-01-07 18:28:20 +0100887
Johannes Berg46900292009-02-15 12:44:28 +0100888 if (!(sdata->u.mgd.flags & IEEE80211_STA_ASSOCIATED))
Johannes Berg4be8c382009-01-07 18:28:20 +0100889 return ret;
890
891 if (conf->dynamic_ps_timeout > 0 &&
892 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
893 mod_timer(&local->dynamic_ps_timer, jiffies +
894 msecs_to_jiffies(conf->dynamic_ps_timeout));
895 } else {
896 if (local->powersave) {
897 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800898 ieee80211_send_nullfunc(local, sdata, 1);
Johannes Berg4be8c382009-01-07 18:28:20 +0100899 conf->flags |= IEEE80211_CONF_PS;
900 ret = ieee80211_hw_config(local,
901 IEEE80211_CONF_CHANGE_PS);
902 } else {
903 conf->flags &= ~IEEE80211_CONF_PS;
904 ret = ieee80211_hw_config(local,
905 IEEE80211_CONF_CHANGE_PS);
906 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800907 ieee80211_send_nullfunc(local, sdata, 0);
Vivek Natarajanb8abde42009-01-27 19:26:28 +0530908 del_timer_sync(&local->dynamic_ps_timer);
909 cancel_work_sync(&local->dynamic_ps_enable_work);
Kalle Valo520eb822008-12-18 23:35:27 +0200910 }
Kalle Valoe0cb6862008-12-18 23:35:13 +0200911 }
912
913 return ret;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200914}
915
916static int ieee80211_ioctl_giwpower(struct net_device *dev,
917 struct iw_request_info *info,
918 union iwreq_data *wrqu,
919 char *extra)
920{
921 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Samuel Ortiz49292d52008-07-04 10:49:31 +0200922
Kalle Valoe0cb6862008-12-18 23:35:13 +0200923 wrqu->power.disabled = !local->powersave;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200924
925 return 0;
926}
927
Jiri Bencf0706e822007-05-05 11:45:53 -0700928static int ieee80211_ioctl_siwauth(struct net_device *dev,
929 struct iw_request_info *info,
930 struct iw_param *data, char *extra)
931{
Jiri Bencf0706e822007-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:
Jiri Bencf0706e822007-05-05 11:45:53 -0700937 case IW_AUTH_CIPHER_GROUP:
938 case IW_AUTH_WPA_ENABLED:
939 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
Jiri Bencf0706e822007-05-05 11:45:53 -0700940 case IW_AUTH_KEY_MGMT:
Jouni Malinen54604d32009-01-08 13:32:03 +0200941 case IW_AUTH_CIPHER_GROUP_MGMT:
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000942 break;
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530943 case IW_AUTH_CIPHER_PAIRWISE:
944 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
945 if (data->value & (IW_AUTH_CIPHER_WEP40 |
946 IW_AUTH_CIPHER_WEP104 | IW_AUTH_CIPHER_TKIP))
Johannes Berg46900292009-02-15 12:44:28 +0100947 sdata->u.mgd.flags |=
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530948 IEEE80211_STA_TKIP_WEP_USED;
949 else
Johannes Berg46900292009-02-15 12:44:28 +0100950 sdata->u.mgd.flags &=
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530951 ~IEEE80211_STA_TKIP_WEP_USED;
952 }
953 break;
Johannes Bergb1357a82007-11-28 11:04:21 +0100954 case IW_AUTH_DROP_UNENCRYPTED:
955 sdata->drop_unencrypted = !!data->value;
956 break;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000957 case IW_AUTH_PRIVACY_INVOKED:
Johannes Berg05c914f2008-09-11 00:01:58 +0200958 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e822007-05-05 11:45:53 -0700959 ret = -EINVAL;
960 else {
Johannes Berg46900292009-02-15 12:44:28 +0100961 sdata->u.mgd.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e822007-05-05 11:45:53 -0700962 /*
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000963 * Privacy invoked by wpa_supplicant, store the
964 * value and allow associating to a protected
965 * network without having a key up front.
Jiri Bencf0706e822007-05-05 11:45:53 -0700966 */
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000967 if (data->value)
Johannes Berg46900292009-02-15 12:44:28 +0100968 sdata->u.mgd.flags |=
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000969 IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e822007-05-05 11:45:53 -0700970 }
971 break;
972 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg46900292009-02-15 12:44:28 +0100973 if (sdata->vif.type == NL80211_IFTYPE_STATION)
974 sdata->u.mgd.auth_algs = data->value;
Jiri Bencf0706e822007-05-05 11:45:53 -0700975 else
976 ret = -EOPNOTSUPP;
977 break;
Jouni Malinenfdfacf02009-01-08 13:32:05 +0200978 case IW_AUTH_MFP:
Jouni Malinen4375d082009-01-08 13:32:11 +0200979 if (!(sdata->local->hw.flags & IEEE80211_HW_MFP_CAPABLE)) {
980 ret = -EOPNOTSUPP;
981 break;
982 }
Johannes Berg46900292009-02-15 12:44:28 +0100983 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berge4e5e2b2009-02-10 21:25:40 +0100984 switch (data->value) {
985 case IW_AUTH_MFP_DISABLED:
Johannes Berg46900292009-02-15 12:44:28 +0100986 sdata->u.mgd.mfp = IEEE80211_MFP_DISABLED;
Johannes Berge4e5e2b2009-02-10 21:25:40 +0100987 break;
988 case IW_AUTH_MFP_OPTIONAL:
Johannes Berg46900292009-02-15 12:44:28 +0100989 sdata->u.mgd.mfp = IEEE80211_MFP_OPTIONAL;
Johannes Berge4e5e2b2009-02-10 21:25:40 +0100990 break;
991 case IW_AUTH_MFP_REQUIRED:
Johannes Berg46900292009-02-15 12:44:28 +0100992 sdata->u.mgd.mfp = IEEE80211_MFP_REQUIRED;
Johannes Berge4e5e2b2009-02-10 21:25:40 +0100993 break;
994 default:
995 ret = -EINVAL;
996 }
997 } else
Jouni Malinenfdfacf02009-01-08 13:32:05 +0200998 ret = -EOPNOTSUPP;
999 break;
Jiri Bencf0706e822007-05-05 11:45:53 -07001000 default:
1001 ret = -EOPNOTSUPP;
1002 break;
1003 }
1004 return ret;
1005}
1006
1007/* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
1008static struct iw_statistics *ieee80211_get_wireless_stats(struct net_device *dev)
1009{
1010 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1011 struct iw_statistics *wstats = &local->wstats;
1012 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1013 struct sta_info *sta = NULL;
1014
Johannes Berg98dd6a52008-04-10 15:36:09 +02001015 rcu_read_lock();
1016
Johannes Berg46900292009-02-15 12:44:28 +01001017 if (sdata->vif.type == NL80211_IFTYPE_STATION)
1018 sta = sta_info_get(local, sdata->u.mgd.bssid);
1019
Jiri Bencf0706e822007-05-05 11:45:53 -07001020 if (!sta) {
1021 wstats->discard.fragment = 0;
1022 wstats->discard.misc = 0;
1023 wstats->qual.qual = 0;
1024 wstats->qual.level = 0;
1025 wstats->qual.noise = 0;
1026 wstats->qual.updated = IW_QUAL_ALL_INVALID;
1027 } else {
Bruno Randolf566bfe52008-05-08 19:15:40 +02001028 wstats->qual.level = sta->last_signal;
1029 wstats->qual.qual = sta->last_qual;
Jiri Bencf0706e822007-05-05 11:45:53 -07001030 wstats->qual.noise = sta->last_noise;
Johannes Berg9a03d6d2009-02-10 21:26:01 +01001031 wstats->qual.updated = ieee80211_get_wstats_flags(local);
Jiri Bencf0706e822007-05-05 11:45:53 -07001032 }
Johannes Berg98dd6a52008-04-10 15:36:09 +02001033
1034 rcu_read_unlock();
1035
Jiri Bencf0706e822007-05-05 11:45:53 -07001036 return wstats;
1037}
1038
1039static int ieee80211_ioctl_giwauth(struct net_device *dev,
1040 struct iw_request_info *info,
1041 struct iw_param *data, char *extra)
1042{
1043 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1044 int ret = 0;
1045
1046 switch (data->flags & IW_AUTH_INDEX) {
1047 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg46900292009-02-15 12:44:28 +01001048 if (sdata->vif.type == NL80211_IFTYPE_STATION)
1049 data->value = sdata->u.mgd.auth_algs;
Jiri Bencf0706e822007-05-05 11:45:53 -07001050 else
1051 ret = -EOPNOTSUPP;
1052 break;
1053 default:
1054 ret = -EOPNOTSUPP;
1055 break;
1056 }
1057 return ret;
1058}
1059
1060
1061static int ieee80211_ioctl_siwencodeext(struct net_device *dev,
1062 struct iw_request_info *info,
1063 struct iw_point *erq, char *extra)
1064{
1065 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1066 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
Johannes Berg628a1402007-09-26 17:53:17 +02001067 int uninitialized_var(alg), idx, i, remove = 0;
Jiri Bencf0706e822007-05-05 11:45:53 -07001068
1069 switch (ext->alg) {
1070 case IW_ENCODE_ALG_NONE:
Johannes Berg628a1402007-09-26 17:53:17 +02001071 remove = 1;
Jiri Bencf0706e822007-05-05 11:45:53 -07001072 break;
1073 case IW_ENCODE_ALG_WEP:
1074 alg = ALG_WEP;
1075 break;
1076 case IW_ENCODE_ALG_TKIP:
1077 alg = ALG_TKIP;
1078 break;
1079 case IW_ENCODE_ALG_CCMP:
1080 alg = ALG_CCMP;
1081 break;
Jouni Malinen22787db2009-01-08 13:32:04 +02001082 case IW_ENCODE_ALG_AES_CMAC:
1083 alg = ALG_AES_CMAC;
1084 break;
Jiri Bencf0706e822007-05-05 11:45:53 -07001085 default:
1086 return -EOPNOTSUPP;
1087 }
1088
1089 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +02001090 remove = 1;
Jiri Bencf0706e822007-05-05 11:45:53 -07001091
1092 idx = erq->flags & IW_ENCODE_INDEX;
Jouni Malinen22787db2009-01-08 13:32:04 +02001093 if (alg == ALG_AES_CMAC) {
1094 if (idx < NUM_DEFAULT_KEYS + 1 ||
1095 idx > NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) {
1096 idx = -1;
1097 if (!sdata->default_mgmt_key)
1098 idx = 0;
1099 else for (i = NUM_DEFAULT_KEYS;
1100 i < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS;
1101 i++) {
1102 if (sdata->default_mgmt_key == sdata->keys[i])
1103 {
1104 idx = i;
1105 break;
1106 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001107 }
Jouni Malinen22787db2009-01-08 13:32:04 +02001108 if (idx < 0)
1109 return -EINVAL;
1110 } else
1111 idx--;
1112 } else {
1113 if (idx < 1 || idx > 4) {
1114 idx = -1;
1115 if (!sdata->default_key)
1116 idx = 0;
1117 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1118 if (sdata->default_key == sdata->keys[i]) {
1119 idx = i;
1120 break;
1121 }
1122 }
1123 if (idx < 0)
1124 return -EINVAL;
1125 } else
1126 idx--;
1127 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001128
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001129 return ieee80211_set_encryption(sdata, ext->addr.sa_data, idx, alg,
Johannes Berg628a1402007-09-26 17:53:17 +02001130 remove,
Jiri Bencf0706e822007-05-05 11:45:53 -07001131 ext->ext_flags &
1132 IW_ENCODE_EXT_SET_TX_KEY,
1133 ext->key, ext->key_len);
1134}
1135
1136
Jiri Bencf0706e822007-05-05 11:45:53 -07001137/* Structures to export the Wireless Handlers */
1138
1139static const iw_handler ieee80211_handler[] =
1140{
1141 (iw_handler) NULL, /* SIOCSIWCOMMIT */
Johannes Bergfee52672008-11-26 22:36:31 +01001142 (iw_handler) cfg80211_wext_giwname, /* SIOCGIWNAME */
Jiri Bencf0706e822007-05-05 11:45:53 -07001143 (iw_handler) NULL, /* SIOCSIWNWID */
1144 (iw_handler) NULL, /* SIOCGIWNWID */
1145 (iw_handler) ieee80211_ioctl_siwfreq, /* SIOCSIWFREQ */
1146 (iw_handler) ieee80211_ioctl_giwfreq, /* SIOCGIWFREQ */
Johannes Berge60c7742008-11-26 23:31:40 +01001147 (iw_handler) cfg80211_wext_siwmode, /* SIOCSIWMODE */
1148 (iw_handler) cfg80211_wext_giwmode, /* SIOCGIWMODE */
Jiri Bencf0706e822007-05-05 11:45:53 -07001149 (iw_handler) NULL, /* SIOCSIWSENS */
1150 (iw_handler) NULL, /* SIOCGIWSENS */
1151 (iw_handler) NULL /* not used */, /* SIOCSIWRANGE */
1152 (iw_handler) ieee80211_ioctl_giwrange, /* SIOCGIWRANGE */
1153 (iw_handler) NULL /* not used */, /* SIOCSIWPRIV */
1154 (iw_handler) NULL /* kernel code */, /* SIOCGIWPRIV */
1155 (iw_handler) NULL /* not used */, /* SIOCSIWSTATS */
1156 (iw_handler) NULL /* kernel code */, /* SIOCGIWSTATS */
Johannes Berg5d4ecd92007-09-14 11:10:24 -04001157 (iw_handler) NULL, /* SIOCSIWSPY */
1158 (iw_handler) NULL, /* SIOCGIWSPY */
1159 (iw_handler) NULL, /* SIOCSIWTHRSPY */
1160 (iw_handler) NULL, /* SIOCGIWTHRSPY */
Jiri Bencf0706e822007-05-05 11:45:53 -07001161 (iw_handler) ieee80211_ioctl_siwap, /* SIOCSIWAP */
1162 (iw_handler) ieee80211_ioctl_giwap, /* SIOCGIWAP */
1163 (iw_handler) ieee80211_ioctl_siwmlme, /* SIOCSIWMLME */
1164 (iw_handler) NULL, /* SIOCGIWAPLIST */
Johannes Berg2a519312009-02-10 21:25:55 +01001165 (iw_handler) cfg80211_wext_siwscan, /* SIOCSIWSCAN */
1166 (iw_handler) cfg80211_wext_giwscan, /* SIOCGIWSCAN */
Jiri Bencf0706e822007-05-05 11:45:53 -07001167 (iw_handler) ieee80211_ioctl_siwessid, /* SIOCSIWESSID */
1168 (iw_handler) ieee80211_ioctl_giwessid, /* SIOCGIWESSID */
1169 (iw_handler) NULL, /* SIOCSIWNICKN */
1170 (iw_handler) NULL, /* SIOCGIWNICKN */
1171 (iw_handler) NULL, /* -- hole -- */
1172 (iw_handler) NULL, /* -- hole -- */
Larry Finger1fd5e582007-07-10 19:32:10 +02001173 (iw_handler) ieee80211_ioctl_siwrate, /* SIOCSIWRATE */
Larry Fingerb3d88ad2007-06-10 17:57:33 -07001174 (iw_handler) ieee80211_ioctl_giwrate, /* SIOCGIWRATE */
Jiri Bencf0706e822007-05-05 11:45:53 -07001175 (iw_handler) ieee80211_ioctl_siwrts, /* SIOCSIWRTS */
1176 (iw_handler) ieee80211_ioctl_giwrts, /* SIOCGIWRTS */
1177 (iw_handler) ieee80211_ioctl_siwfrag, /* SIOCSIWFRAG */
1178 (iw_handler) ieee80211_ioctl_giwfrag, /* SIOCGIWFRAG */
Michael Buesch61609bc2007-09-20 22:06:39 +02001179 (iw_handler) ieee80211_ioctl_siwtxpower, /* SIOCSIWTXPOW */
Larry Fingerfe6aa302007-08-10 11:23:20 -05001180 (iw_handler) ieee80211_ioctl_giwtxpower, /* SIOCGIWTXPOW */
Jiri Bencf0706e822007-05-05 11:45:53 -07001181 (iw_handler) ieee80211_ioctl_siwretry, /* SIOCSIWRETRY */
1182 (iw_handler) ieee80211_ioctl_giwretry, /* SIOCGIWRETRY */
1183 (iw_handler) ieee80211_ioctl_siwencode, /* SIOCSIWENCODE */
1184 (iw_handler) ieee80211_ioctl_giwencode, /* SIOCGIWENCODE */
Samuel Ortiz49292d52008-07-04 10:49:31 +02001185 (iw_handler) ieee80211_ioctl_siwpower, /* SIOCSIWPOWER */
1186 (iw_handler) ieee80211_ioctl_giwpower, /* SIOCGIWPOWER */
Jiri Bencf0706e822007-05-05 11:45:53 -07001187 (iw_handler) NULL, /* -- hole -- */
1188 (iw_handler) NULL, /* -- hole -- */
1189 (iw_handler) ieee80211_ioctl_siwgenie, /* SIOCSIWGENIE */
1190 (iw_handler) NULL, /* SIOCGIWGENIE */
1191 (iw_handler) ieee80211_ioctl_siwauth, /* SIOCSIWAUTH */
1192 (iw_handler) ieee80211_ioctl_giwauth, /* SIOCGIWAUTH */
1193 (iw_handler) ieee80211_ioctl_siwencodeext, /* SIOCSIWENCODEEXT */
1194 (iw_handler) NULL, /* SIOCGIWENCODEEXT */
1195 (iw_handler) NULL, /* SIOCSIWPMKSA */
1196 (iw_handler) NULL, /* -- hole -- */
1197};
1198
Jiri Bencf0706e822007-05-05 11:45:53 -07001199const struct iw_handler_def ieee80211_iw_handler_def =
1200{
1201 .num_standard = ARRAY_SIZE(ieee80211_handler),
Jiri Bencf0706e822007-05-05 11:45:53 -07001202 .standard = (iw_handler *) ieee80211_handler,
Jiri Bencf0706e822007-05-05 11:45:53 -07001203 .get_wireless_stats = ieee80211_get_wireless_stats,
1204};