blob: a52fb3a4a455fdc77fe166945978d7a5635c3134 [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
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 Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-05-05 11:45:53 -0700129
130 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200131
Johannes Berg46900292009-02-15 12:44:28 +0100132 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200133 int ret = ieee80211_sta_set_extra_ie(sdata, extra, data->length);
Jiri Bencf0706e82007-05-05 11:45:53 -0700134 if (ret)
135 return ret;
Johannes Berg46900292009-02-15 12:44:28 +0100136 sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jouni Malinen636a5d32009-03-19 13:39:22 +0200137 sdata->u.mgd.flags &= ~IEEE80211_STA_EXT_SME;
Johannes Berg46900292009-02-15 12:44:28 +0100138 ieee80211_sta_req_auth(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700139 return 0;
140 }
141
Jiri Bencf0706e82007-05-05 11:45:53 -0700142 return -EOPNOTSUPP;
143}
144
Jiri Bencf0706e82007-05-05 11:45:53 -0700145static int ieee80211_ioctl_siwfreq(struct net_device *dev,
146 struct iw_request_info *info,
147 struct iw_freq *freq, char *extra)
148{
Jiri Bencf0706e82007-05-05 11:45:53 -0700149 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
150
Johannes Berg46900292009-02-15 12:44:28 +0100151 if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
152 sdata->u.ibss.flags &= ~IEEE80211_IBSS_AUTO_CHANNEL_SEL;
153 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
154 sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700155
156 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
157 if (freq->e == 0) {
158 if (freq->m < 0) {
Johannes Berg46900292009-02-15 12:44:28 +0100159 if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
160 sdata->u.ibss.flags |=
161 IEEE80211_IBSS_AUTO_CHANNEL_SEL;
162 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
163 sdata->u.mgd.flags |=
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400164 IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700165 return 0;
166 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200167 return ieee80211_set_freq(sdata,
Johannes Berg8318d782008-01-24 19:38:38 +0100168 ieee80211_channel_to_frequency(freq->m));
Jiri Bencf0706e82007-05-05 11:45:53 -0700169 } else {
170 int i, div = 1000000;
171 for (i = 0; i < freq->e; i++)
172 div /= 10;
173 if (div > 0)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200174 return ieee80211_set_freq(sdata, freq->m / div);
Jiri Bencf0706e82007-05-05 11:45:53 -0700175 else
176 return -EINVAL;
177 }
178}
179
180
181static int ieee80211_ioctl_giwfreq(struct net_device *dev,
182 struct iw_request_info *info,
183 struct iw_freq *freq, char *extra)
184{
185 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
186
Johannes Berg8318d782008-01-24 19:38:38 +0100187 freq->m = local->hw.conf.channel->center_freq;
Jiri Bencf0706e82007-05-05 11:45:53 -0700188 freq->e = 6;
189
190 return 0;
191}
192
193
194static int ieee80211_ioctl_siwessid(struct net_device *dev,
195 struct iw_request_info *info,
196 struct iw_point *data, char *ssid)
197{
Jiri Bencf0706e82007-05-05 11:45:53 -0700198 struct ieee80211_sub_if_data *sdata;
199 size_t len = data->length;
Johannes Berg46900292009-02-15 12:44:28 +0100200 int ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700201
202 /* iwconfig uses nul termination in SSID.. */
203 if (len > 0 && ssid[len - 1] == '\0')
204 len--;
205
206 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100207 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400208 if (data->flags)
Johannes Berg46900292009-02-15 12:44:28 +0100209 sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_SSID_SEL;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400210 else
Johannes Berg46900292009-02-15 12:44:28 +0100211 sdata->u.mgd.flags |= IEEE80211_STA_AUTO_SSID_SEL;
212
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200213 ret = ieee80211_sta_set_ssid(sdata, ssid, len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700214 if (ret)
215 return ret;
Johannes Berg46900292009-02-15 12:44:28 +0100216
Jouni Malinen636a5d32009-03-19 13:39:22 +0200217 sdata->u.mgd.flags &= ~IEEE80211_STA_EXT_SME;
Johannes Berg46900292009-02-15 12:44:28 +0100218 ieee80211_sta_req_auth(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700219 return 0;
Johannes Berg46900292009-02-15 12:44:28 +0100220 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
221 return ieee80211_ibss_set_ssid(sdata, ssid, len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700222
Jiri Bencf0706e82007-05-05 11:45:53 -0700223 return -EOPNOTSUPP;
224}
225
226
227static int ieee80211_ioctl_giwessid(struct net_device *dev,
228 struct iw_request_info *info,
229 struct iw_point *data, char *ssid)
230{
231 size_t len;
232
233 struct ieee80211_sub_if_data *sdata;
234 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100235 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200236 int res = ieee80211_sta_get_ssid(sdata, ssid, &len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700237 if (res == 0) {
238 data->length = len;
239 data->flags = 1;
240 } else
241 data->flags = 0;
242 return res;
Johannes Berg46900292009-02-15 12:44:28 +0100243 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
244 int res = ieee80211_ibss_get_ssid(sdata, ssid, &len);
245 if (res == 0) {
246 data->length = len;
247 data->flags = 1;
248 } else
249 data->flags = 0;
250 return res;
Jiri Bencf0706e82007-05-05 11:45:53 -0700251 }
252
Jiri Bencf0706e82007-05-05 11:45:53 -0700253 return -EOPNOTSUPP;
254}
255
256
257static int ieee80211_ioctl_siwap(struct net_device *dev,
258 struct iw_request_info *info,
259 struct sockaddr *ap_addr, char *extra)
260{
Jiri Bencf0706e82007-05-05 11:45:53 -0700261 struct ieee80211_sub_if_data *sdata;
262
263 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100264 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700265 int ret;
Johannes Berg7986cf92009-03-21 17:08:43 +0100266
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400267 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
Johannes Berg46900292009-02-15 12:44:28 +0100268 sdata->u.mgd.flags |= IEEE80211_STA_AUTO_BSSID_SEL |
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400269 IEEE80211_STA_AUTO_CHANNEL_SEL;
270 else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
Johannes Berg46900292009-02-15 12:44:28 +0100271 sdata->u.mgd.flags |= IEEE80211_STA_AUTO_BSSID_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700272 else
Johannes Berg46900292009-02-15 12:44:28 +0100273 sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200274 ret = ieee80211_sta_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
Jiri Bencf0706e82007-05-05 11:45:53 -0700275 if (ret)
276 return ret;
Jouni Malinen636a5d32009-03-19 13:39:22 +0200277 sdata->u.mgd.flags &= ~IEEE80211_STA_EXT_SME;
Johannes Berg46900292009-02-15 12:44:28 +0100278 ieee80211_sta_req_auth(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700279 return 0;
Johannes Berg46900292009-02-15 12:44:28 +0100280 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
281 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
282 sdata->u.ibss.flags |= IEEE80211_IBSS_AUTO_BSSID_SEL |
283 IEEE80211_IBSS_AUTO_CHANNEL_SEL;
284 else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
285 sdata->u.ibss.flags |= IEEE80211_IBSS_AUTO_BSSID_SEL;
286 else
287 sdata->u.ibss.flags &= ~IEEE80211_IBSS_AUTO_BSSID_SEL;
288
289 return ieee80211_ibss_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
Johannes Berg05c914f2008-09-11 00:01:58 +0200290 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
Johannes Berg44213b52008-02-25 16:27:49 +0100291 /*
292 * If it is necessary to update the WDS peer address
293 * while the interface is running, then we need to do
294 * more work here, namely if it is running we need to
295 * add a new and remove the old STA entry, this is
296 * normally handled by _open() and _stop().
297 */
298 if (netif_running(dev))
299 return -EBUSY;
300
301 memcpy(&sdata->u.wds.remote_addr, (u8 *) &ap_addr->sa_data,
302 ETH_ALEN);
303
304 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700305 }
306
307 return -EOPNOTSUPP;
308}
309
310
311static int ieee80211_ioctl_giwap(struct net_device *dev,
312 struct iw_request_info *info,
313 struct sockaddr *ap_addr, char *extra)
314{
315 struct ieee80211_sub_if_data *sdata;
316
317 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100318 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
319 if (sdata->u.mgd.state == IEEE80211_STA_MLME_ASSOCIATED) {
Abhijeet Kolekard4231ca2008-05-23 10:15:26 -0700320 ap_addr->sa_family = ARPHRD_ETHER;
Johannes Berg46900292009-02-15 12:44:28 +0100321 memcpy(&ap_addr->sa_data, sdata->u.mgd.bssid, ETH_ALEN);
322 } else
Abhijeet Kolekard4231ca2008-05-23 10:15:26 -0700323 memset(&ap_addr->sa_data, 0, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100324 return 0;
325 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
326 if (sdata->u.ibss.state == IEEE80211_IBSS_MLME_JOINED) {
327 ap_addr->sa_family = ARPHRD_ETHER;
328 memcpy(&ap_addr->sa_data, sdata->u.ibss.bssid, ETH_ALEN);
329 } else
330 memset(&ap_addr->sa_data, 0, ETH_ALEN);
331 return 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200332 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700333 ap_addr->sa_family = ARPHRD_ETHER;
334 memcpy(&ap_addr->sa_data, sdata->u.wds.remote_addr, ETH_ALEN);
335 return 0;
336 }
337
338 return -EOPNOTSUPP;
339}
340
341
Larry Finger1fd5e582007-07-10 19:32:10 +0200342static int ieee80211_ioctl_siwrate(struct net_device *dev,
343 struct iw_request_info *info,
344 struct iw_param *rate, char *extra)
345{
346 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg8318d782008-01-24 19:38:38 +0100347 int i, err = -EINVAL;
Larry Finger1fd5e582007-07-10 19:32:10 +0200348 u32 target_rate = rate->value / 100000;
349 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100350 struct ieee80211_supported_band *sband;
Larry Finger1fd5e582007-07-10 19:32:10 +0200351
352 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100353
354 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
355
Larry Finger1fd5e582007-07-10 19:32:10 +0200356 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
357 * target_rate = X, rate->fixed = 1 means only rate X
358 * target_rate = X, rate->fixed = 0 means all rates <= X */
Johannes Berg3e122be2008-07-09 14:40:34 +0200359 sdata->max_ratectrl_rateidx = -1;
360 sdata->force_unicast_rateidx = -1;
Larry Finger1fd5e582007-07-10 19:32:10 +0200361 if (rate->value < 0)
362 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100363
364 for (i=0; i< sband->n_bitrates; i++) {
365 struct ieee80211_rate *brate = &sband->bitrates[i];
366 int this_rate = brate->bitrate;
Larry Finger1fd5e582007-07-10 19:32:10 +0200367
Larry Finger1fd5e582007-07-10 19:32:10 +0200368 if (target_rate == this_rate) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200369 sdata->max_ratectrl_rateidx = i;
Larry Finger1fd5e582007-07-10 19:32:10 +0200370 if (rate->fixed)
Johannes Berg3e122be2008-07-09 14:40:34 +0200371 sdata->force_unicast_rateidx = i;
Johannes Berg8318d782008-01-24 19:38:38 +0100372 err = 0;
373 break;
Larry Finger1fd5e582007-07-10 19:32:10 +0200374 }
375 }
Johannes Berg8318d782008-01-24 19:38:38 +0100376 return err;
Larry Finger1fd5e582007-07-10 19:32:10 +0200377}
378
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700379static int ieee80211_ioctl_giwrate(struct net_device *dev,
380 struct iw_request_info *info,
381 struct iw_param *rate, char *extra)
382{
383 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
384 struct sta_info *sta;
385 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100386 struct ieee80211_supported_band *sband;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700387
388 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100389
Johannes Berg05c914f2008-09-11 00:01:58 +0200390 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700391 return -EOPNOTSUPP;
Johannes Berg8318d782008-01-24 19:38:38 +0100392
393 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
394
Johannes Berg380a9422008-04-04 23:40:35 +0200395 rcu_read_lock();
396
Johannes Berg46900292009-02-15 12:44:28 +0100397 sta = sta_info_get(local, sdata->u.mgd.bssid);
Johannes Berg380a9422008-04-04 23:40:35 +0200398
Johannes Berge6a98542008-10-21 12:40:02 +0200399 if (sta && !(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS))
400 rate->value = sband->bitrates[sta->last_tx_rate.idx].bitrate;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700401 else
402 rate->value = 0;
Johannes Berg380a9422008-04-04 23:40:35 +0200403
404 rcu_read_unlock();
405
406 if (!sta)
407 return -ENODEV;
408
Johannes Berg8318d782008-01-24 19:38:38 +0100409 rate->value *= 100000;
Johannes Bergd0709a62008-02-25 16:27:46 +0100410
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700411 return 0;
412}
413
Michael Buesch61609bc2007-09-20 22:06:39 +0200414static int ieee80211_ioctl_siwtxpower(struct net_device *dev,
415 struct iw_request_info *info,
416 union iwreq_data *data, char *extra)
417{
418 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Luis R. Rodriguezd9d29252008-10-22 13:13:53 -0700419 struct ieee80211_channel* chan = local->hw.conf.channel;
Johannes Berg47afbaf2009-04-07 15:22:28 +0200420 bool reconf = false;
Johannes Berge8975582008-10-09 12:18:51 +0200421 u32 reconf_flags = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100422 int new_power_level;
Michael Buesch61609bc2007-09-20 22:06:39 +0200423
424 if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
425 return -EINVAL;
426 if (data->txpower.flags & IW_TXPOW_RANGE)
427 return -EINVAL;
Luis R. Rodriguezd9d29252008-10-22 13:13:53 -0700428 if (!chan)
429 return -EINVAL;
Michael Buesch61609bc2007-09-20 22:06:39 +0200430
Johannes Berg47afbaf2009-04-07 15:22:28 +0200431 /* only change when not disabling */
432 if (!data->txpower.disabled) {
433 if (data->txpower.fixed) {
434 if (data->txpower.value < 0)
435 return -EINVAL;
436 new_power_level = data->txpower.value;
437 /*
438 * Debatable, but we cannot do a fixed power
439 * level above the regulatory constraint.
440 * Use "iwconfig wlan0 txpower 15dBm" instead.
441 */
442 if (new_power_level > chan->max_power)
443 return -EINVAL;
444 } else {
445 /*
446 * Automatic power level setting, max being the value
447 * passed in from userland.
448 */
449 if (data->txpower.value < 0)
450 new_power_level = -1;
451 else
452 new_power_level = data->txpower.value;
453 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200454
Johannes Berg47afbaf2009-04-07 15:22:28 +0200455 reconf = true;
456
457 /*
458 * ieee80211_hw_config() will limit to the channel's
459 * max power and possibly power constraint from AP.
460 */
461 local->user_power_level = new_power_level;
462 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200463
Michael Buesch61609bc2007-09-20 22:06:39 +0200464 if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) {
465 local->hw.conf.radio_enabled = !(data->txpower.disabled);
Johannes Berge8975582008-10-09 12:18:51 +0200466 reconf_flags |= IEEE80211_CONF_CHANGE_RADIO_ENABLED;
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100467 ieee80211_led_radio(local, local->hw.conf.radio_enabled);
Michael Buesch61609bc2007-09-20 22:06:39 +0200468 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200469
Johannes Berg47afbaf2009-04-07 15:22:28 +0200470 if (reconf || reconf_flags)
Johannes Berge8975582008-10-09 12:18:51 +0200471 ieee80211_hw_config(local, reconf_flags);
Michael Buesch61609bc2007-09-20 22:06:39 +0200472
473 return 0;
474}
475
Larry Fingerfe6aa302007-08-10 11:23:20 -0500476static int ieee80211_ioctl_giwtxpower(struct net_device *dev,
477 struct iw_request_info *info,
478 union iwreq_data *data, char *extra)
479{
480 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
481
482 data->txpower.fixed = 1;
483 data->txpower.disabled = !(local->hw.conf.radio_enabled);
484 data->txpower.value = local->hw.conf.power_level;
485 data->txpower.flags = IW_TXPOW_DBM;
486
487 return 0;
488}
489
Jiri Bencf0706e82007-05-05 11:45:53 -0700490static int ieee80211_ioctl_siwrts(struct net_device *dev,
491 struct iw_request_info *info,
492 struct iw_param *rts, char *extra)
493{
494 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
495
496 if (rts->disabled)
497 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
Emmanuel Grumbachfa6adfe2008-06-24 13:37:58 +0300498 else if (!rts->fixed)
499 /* if the rts value is not fixed, then take default */
500 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
Jiri Bencf0706e82007-05-05 11:45:53 -0700501 else if (rts->value < 0 || rts->value > IEEE80211_MAX_RTS_THRESHOLD)
502 return -EINVAL;
503 else
504 local->rts_threshold = rts->value;
505
506 /* If the wlan card performs RTS/CTS in hardware/firmware,
507 * configure it here */
508
509 if (local->ops->set_rts_threshold)
510 local->ops->set_rts_threshold(local_to_hw(local),
511 local->rts_threshold);
512
513 return 0;
514}
515
516static int ieee80211_ioctl_giwrts(struct net_device *dev,
517 struct iw_request_info *info,
518 struct iw_param *rts, char *extra)
519{
520 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
521
522 rts->value = local->rts_threshold;
523 rts->disabled = (rts->value >= IEEE80211_MAX_RTS_THRESHOLD);
524 rts->fixed = 1;
525
526 return 0;
527}
528
529
530static int ieee80211_ioctl_siwfrag(struct net_device *dev,
531 struct iw_request_info *info,
532 struct iw_param *frag, char *extra)
533{
534 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
535
536 if (frag->disabled)
537 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Emmanuel Grumbache4abd4d2008-07-03 18:02:27 +0300538 else if (!frag->fixed)
539 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Jiri Bencf0706e82007-05-05 11:45:53 -0700540 else if (frag->value < 256 ||
541 frag->value > IEEE80211_MAX_FRAG_THRESHOLD)
542 return -EINVAL;
543 else {
544 /* Fragment length must be even, so strip LSB. */
545 local->fragmentation_threshold = frag->value & ~0x1;
546 }
547
Jiri Bencf0706e82007-05-05 11:45:53 -0700548 return 0;
549}
550
551static int ieee80211_ioctl_giwfrag(struct net_device *dev,
552 struct iw_request_info *info,
553 struct iw_param *frag, char *extra)
554{
555 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
556
557 frag->value = local->fragmentation_threshold;
Gerrit Renker23a99842009-04-14 06:32:56 +0200558 frag->disabled = (frag->value >= IEEE80211_MAX_FRAG_THRESHOLD);
Jiri Bencf0706e82007-05-05 11:45:53 -0700559 frag->fixed = 1;
560
561 return 0;
562}
563
564
565static int ieee80211_ioctl_siwretry(struct net_device *dev,
566 struct iw_request_info *info,
567 struct iw_param *retry, char *extra)
568{
569 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
570
571 if (retry->disabled ||
572 (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
573 return -EINVAL;
574
Johannes Berg9124b072008-10-14 19:17:54 +0200575 if (retry->flags & IW_RETRY_MAX) {
576 local->hw.conf.long_frame_max_tx_count = retry->value;
577 } else if (retry->flags & IW_RETRY_MIN) {
578 local->hw.conf.short_frame_max_tx_count = retry->value;
579 } else {
580 local->hw.conf.long_frame_max_tx_count = retry->value;
581 local->hw.conf.short_frame_max_tx_count = retry->value;
Jiri Bencf0706e82007-05-05 11:45:53 -0700582 }
583
Johannes Berg9124b072008-10-14 19:17:54 +0200584 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
Jiri Bencf0706e82007-05-05 11:45:53 -0700585
586 return 0;
587}
588
589
590static int ieee80211_ioctl_giwretry(struct net_device *dev,
591 struct iw_request_info *info,
592 struct iw_param *retry, char *extra)
593{
594 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
595
596 retry->disabled = 0;
597 if (retry->flags == 0 || retry->flags & IW_RETRY_MIN) {
598 /* first return min value, iwconfig will ask max value
599 * later if needed */
600 retry->flags |= IW_RETRY_LIMIT;
Johannes Berg9124b072008-10-14 19:17:54 +0200601 retry->value = local->hw.conf.short_frame_max_tx_count;
602 if (local->hw.conf.long_frame_max_tx_count !=
603 local->hw.conf.short_frame_max_tx_count)
Jiri Bencf0706e82007-05-05 11:45:53 -0700604 retry->flags |= IW_RETRY_MIN;
605 return 0;
606 }
607 if (retry->flags & IW_RETRY_MAX) {
608 retry->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
Johannes Berg9124b072008-10-14 19:17:54 +0200609 retry->value = local->hw.conf.long_frame_max_tx_count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700610 }
611
612 return 0;
613}
614
Jiri Bencf0706e82007-05-05 11:45:53 -0700615static int ieee80211_ioctl_siwmlme(struct net_device *dev,
616 struct iw_request_info *info,
617 struct iw_point *data, char *extra)
618{
619 struct ieee80211_sub_if_data *sdata;
620 struct iw_mlme *mlme = (struct iw_mlme *) extra;
621
622 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg46900292009-02-15 12:44:28 +0100623 if (!(sdata->vif.type == NL80211_IFTYPE_STATION))
Jiri Bencf0706e82007-05-05 11:45:53 -0700624 return -EINVAL;
625
626 switch (mlme->cmd) {
627 case IW_MLME_DEAUTH:
628 /* TODO: mlme->addr.sa_data */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200629 return ieee80211_sta_deauthenticate(sdata, mlme->reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -0700630 case IW_MLME_DISASSOC:
631 /* TODO: mlme->addr.sa_data */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200632 return ieee80211_sta_disassociate(sdata, mlme->reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -0700633 default:
634 return -EOPNOTSUPP;
635 }
636}
637
638
639static int ieee80211_ioctl_siwencode(struct net_device *dev,
640 struct iw_request_info *info,
641 struct iw_point *erq, char *keybuf)
642{
643 struct ieee80211_sub_if_data *sdata;
644 int idx, i, alg = ALG_WEP;
645 u8 bcaddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Vasanthakumar Thiagarajanec304152009-03-13 20:26:52 +0530646 int remove = 0, ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700647
648 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
649
650 idx = erq->flags & IW_ENCODE_INDEX;
651 if (idx == 0) {
652 if (sdata->default_key)
653 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
654 if (sdata->default_key == sdata->keys[i]) {
655 idx = i;
656 break;
657 }
658 }
659 } else if (idx < 1 || idx > 4)
660 return -EINVAL;
661 else
662 idx--;
663
664 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +0200665 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700666 else if (erq->length == 0) {
667 /* No key data - just set the default TX key index */
Johannes Berg11a843b2007-08-28 17:01:55 -0400668 ieee80211_set_default_key(sdata, idx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700669 return 0;
670 }
671
Vasanthakumar Thiagarajanec304152009-03-13 20:26:52 +0530672 ret = ieee80211_set_encryption(
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200673 sdata, bcaddr,
Johannes Berg628a1402007-09-26 17:53:17 +0200674 idx, alg, remove,
Jiri Bencf0706e82007-05-05 11:45:53 -0700675 !sdata->default_key,
676 keybuf, erq->length);
Vasanthakumar Thiagarajanec304152009-03-13 20:26:52 +0530677
Vasanthakumar Thiagarajanb0741a12009-03-27 13:08:45 +0530678 if (!ret && sdata->vif.type == NL80211_IFTYPE_STATION) {
Vasanthakumar Thiagarajanec304152009-03-13 20:26:52 +0530679 if (remove)
680 sdata->u.mgd.flags &= ~IEEE80211_STA_TKIP_WEP_USED;
681 else
682 sdata->u.mgd.flags |= IEEE80211_STA_TKIP_WEP_USED;
683 }
684
685 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700686}
687
688
689static int ieee80211_ioctl_giwencode(struct net_device *dev,
690 struct iw_request_info *info,
691 struct iw_point *erq, char *key)
692{
693 struct ieee80211_sub_if_data *sdata;
694 int idx, i;
695
696 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
697
698 idx = erq->flags & IW_ENCODE_INDEX;
699 if (idx < 1 || idx > 4) {
700 idx = -1;
701 if (!sdata->default_key)
702 idx = 0;
703 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
704 if (sdata->default_key == sdata->keys[i]) {
705 idx = i;
706 break;
707 }
708 }
709 if (idx < 0)
710 return -EINVAL;
711 } else
712 idx--;
713
714 erq->flags = idx + 1;
715
716 if (!sdata->keys[idx]) {
717 erq->length = 0;
718 erq->flags |= IW_ENCODE_DISABLED;
719 return 0;
720 }
721
Johannes Berg8f20fc22007-08-28 17:01:54 -0400722 memcpy(key, sdata->keys[idx]->conf.key,
Johannes Berg11a843b2007-08-28 17:01:55 -0400723 min_t(int, erq->length, sdata->keys[idx]->conf.keylen));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400724 erq->length = sdata->keys[idx]->conf.keylen;
Jiri Bencf0706e82007-05-05 11:45:53 -0700725 erq->flags |= IW_ENCODE_ENABLED;
726
Johannes Berg05c914f2008-09-11 00:01:58 +0200727 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg46900292009-02-15 12:44:28 +0100728 switch (sdata->u.mgd.auth_alg) {
Emmanuel Grumbachb9fcc4f2008-06-24 13:37:59 +0300729 case WLAN_AUTH_OPEN:
730 case WLAN_AUTH_LEAP:
731 erq->flags |= IW_ENCODE_OPEN;
732 break;
733 case WLAN_AUTH_SHARED_KEY:
734 erq->flags |= IW_ENCODE_RESTRICTED;
735 break;
736 }
737 }
738
Jiri Bencf0706e82007-05-05 11:45:53 -0700739 return 0;
740}
741
Samuel Ortiz49292d52008-07-04 10:49:31 +0200742static int ieee80211_ioctl_siwpower(struct net_device *dev,
743 struct iw_request_info *info,
744 struct iw_param *wrq,
745 char *extra)
746{
Kalle Valoe0cb6862008-12-18 23:35:13 +0200747 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Samuel Ortiz49292d52008-07-04 10:49:31 +0200748 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
749 struct ieee80211_conf *conf = &local->hw.conf;
Kalle Valo520eb822008-12-18 23:35:27 +0200750 int ret = 0, timeout = 0;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200751 bool ps;
752
Johannes Berg4be8c382009-01-07 18:28:20 +0100753 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
754 return -EOPNOTSUPP;
755
Kalle Valoe0cb6862008-12-18 23:35:13 +0200756 if (sdata->vif.type != NL80211_IFTYPE_STATION)
757 return -EINVAL;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200758
759 if (wrq->disabled) {
Kalle Valoe0cb6862008-12-18 23:35:13 +0200760 ps = false;
Kalle Valo520eb822008-12-18 23:35:27 +0200761 timeout = 0;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200762 goto set;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200763 }
764
765 switch (wrq->flags & IW_POWER_MODE) {
766 case IW_POWER_ON: /* If not specified */
767 case IW_POWER_MODE: /* If set all mask */
768 case IW_POWER_ALL_R: /* If explicitely state all */
Kalle Valoe0cb6862008-12-18 23:35:13 +0200769 ps = true;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200770 break;
Kalle Valo520eb822008-12-18 23:35:27 +0200771 default: /* Otherwise we ignore */
Johannes Berge9aeaba2009-01-06 18:12:35 +0100772 return -EINVAL;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200773 }
774
Johannes Berge9aeaba2009-01-06 18:12:35 +0100775 if (wrq->flags & ~(IW_POWER_MODE | IW_POWER_TIMEOUT))
776 return -EINVAL;
777
Kalle Valo520eb822008-12-18 23:35:27 +0200778 if (wrq->flags & IW_POWER_TIMEOUT)
779 timeout = wrq->value / 1000;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200780
Johannes Berg4be8c382009-01-07 18:28:20 +0100781 set:
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100782 if (ps == local->powersave && timeout == conf->dynamic_ps_timeout)
Kalle Valo520eb822008-12-18 23:35:27 +0200783 return ret;
784
Kalle Valoe0cb6862008-12-18 23:35:13 +0200785 local->powersave = ps;
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100786 conf->dynamic_ps_timeout = timeout;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200787
Johannes Berg4be8c382009-01-07 18:28:20 +0100788 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100789 ret = ieee80211_hw_config(local,
790 IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT);
Johannes Berg4be8c382009-01-07 18:28:20 +0100791
Johannes Berg46900292009-02-15 12:44:28 +0100792 if (!(sdata->u.mgd.flags & IEEE80211_STA_ASSOCIATED))
Johannes Berg4be8c382009-01-07 18:28:20 +0100793 return ret;
794
795 if (conf->dynamic_ps_timeout > 0 &&
796 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
797 mod_timer(&local->dynamic_ps_timer, jiffies +
798 msecs_to_jiffies(conf->dynamic_ps_timeout));
799 } else {
800 if (local->powersave) {
801 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800802 ieee80211_send_nullfunc(local, sdata, 1);
Johannes Berg4be8c382009-01-07 18:28:20 +0100803 conf->flags |= IEEE80211_CONF_PS;
804 ret = ieee80211_hw_config(local,
805 IEEE80211_CONF_CHANGE_PS);
806 } else {
807 conf->flags &= ~IEEE80211_CONF_PS;
808 ret = ieee80211_hw_config(local,
809 IEEE80211_CONF_CHANGE_PS);
810 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800811 ieee80211_send_nullfunc(local, sdata, 0);
Vivek Natarajanb8abde42009-01-27 19:26:28 +0530812 del_timer_sync(&local->dynamic_ps_timer);
813 cancel_work_sync(&local->dynamic_ps_enable_work);
Kalle Valo520eb822008-12-18 23:35:27 +0200814 }
Kalle Valoe0cb6862008-12-18 23:35:13 +0200815 }
816
817 return ret;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200818}
819
820static int ieee80211_ioctl_giwpower(struct net_device *dev,
821 struct iw_request_info *info,
822 union iwreq_data *wrqu,
823 char *extra)
824{
825 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Samuel Ortiz49292d52008-07-04 10:49:31 +0200826
Kalle Valoe0cb6862008-12-18 23:35:13 +0200827 wrqu->power.disabled = !local->powersave;
Samuel Ortiz49292d52008-07-04 10:49:31 +0200828
829 return 0;
830}
831
Jiri Bencf0706e82007-05-05 11:45:53 -0700832static int ieee80211_ioctl_siwauth(struct net_device *dev,
833 struct iw_request_info *info,
834 struct iw_param *data, char *extra)
835{
Jiri Bencf0706e82007-05-05 11:45:53 -0700836 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
837 int ret = 0;
838
839 switch (data->flags & IW_AUTH_INDEX) {
840 case IW_AUTH_WPA_VERSION:
Jiri Bencf0706e82007-05-05 11:45:53 -0700841 case IW_AUTH_CIPHER_GROUP:
842 case IW_AUTH_WPA_ENABLED:
843 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
Jiri Bencf0706e82007-05-05 11:45:53 -0700844 case IW_AUTH_KEY_MGMT:
Jouni Malinen54604d32009-01-08 13:32:03 +0200845 case IW_AUTH_CIPHER_GROUP_MGMT:
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000846 break;
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530847 case IW_AUTH_CIPHER_PAIRWISE:
848 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
849 if (data->value & (IW_AUTH_CIPHER_WEP40 |
850 IW_AUTH_CIPHER_WEP104 | IW_AUTH_CIPHER_TKIP))
Johannes Berg46900292009-02-15 12:44:28 +0100851 sdata->u.mgd.flags |=
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530852 IEEE80211_STA_TKIP_WEP_USED;
853 else
Johannes Berg46900292009-02-15 12:44:28 +0100854 sdata->u.mgd.flags &=
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530855 ~IEEE80211_STA_TKIP_WEP_USED;
856 }
857 break;
Johannes Bergb1357a82007-11-28 11:04:21 +0100858 case IW_AUTH_DROP_UNENCRYPTED:
859 sdata->drop_unencrypted = !!data->value;
860 break;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000861 case IW_AUTH_PRIVACY_INVOKED:
Johannes Berg05c914f2008-09-11 00:01:58 +0200862 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -0700863 ret = -EINVAL;
864 else {
Johannes Berg46900292009-02-15 12:44:28 +0100865 sdata->u.mgd.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700866 /*
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000867 * Privacy invoked by wpa_supplicant, store the
868 * value and allow associating to a protected
869 * network without having a key up front.
Jiri Bencf0706e82007-05-05 11:45:53 -0700870 */
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000871 if (data->value)
Johannes Berg46900292009-02-15 12:44:28 +0100872 sdata->u.mgd.flags |=
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000873 IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700874 }
875 break;
876 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg46900292009-02-15 12:44:28 +0100877 if (sdata->vif.type == NL80211_IFTYPE_STATION)
878 sdata->u.mgd.auth_algs = data->value;
Jiri Bencf0706e82007-05-05 11:45:53 -0700879 else
880 ret = -EOPNOTSUPP;
881 break;
Jouni Malinenfdfacf02009-01-08 13:32:05 +0200882 case IW_AUTH_MFP:
Jouni Malinen4375d082009-01-08 13:32:11 +0200883 if (!(sdata->local->hw.flags & IEEE80211_HW_MFP_CAPABLE)) {
884 ret = -EOPNOTSUPP;
885 break;
886 }
Johannes Berg46900292009-02-15 12:44:28 +0100887 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berge4e5e2b2009-02-10 21:25:40 +0100888 switch (data->value) {
889 case IW_AUTH_MFP_DISABLED:
Johannes Berg46900292009-02-15 12:44:28 +0100890 sdata->u.mgd.mfp = IEEE80211_MFP_DISABLED;
Johannes Berge4e5e2b2009-02-10 21:25:40 +0100891 break;
892 case IW_AUTH_MFP_OPTIONAL:
Johannes Berg46900292009-02-15 12:44:28 +0100893 sdata->u.mgd.mfp = IEEE80211_MFP_OPTIONAL;
Johannes Berge4e5e2b2009-02-10 21:25:40 +0100894 break;
895 case IW_AUTH_MFP_REQUIRED:
Johannes Berg46900292009-02-15 12:44:28 +0100896 sdata->u.mgd.mfp = IEEE80211_MFP_REQUIRED;
Johannes Berge4e5e2b2009-02-10 21:25:40 +0100897 break;
898 default:
899 ret = -EINVAL;
900 }
901 } else
Jouni Malinenfdfacf02009-01-08 13:32:05 +0200902 ret = -EOPNOTSUPP;
903 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700904 default:
905 ret = -EOPNOTSUPP;
906 break;
907 }
908 return ret;
909}
910
911/* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
912static struct iw_statistics *ieee80211_get_wireless_stats(struct net_device *dev)
913{
914 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
915 struct iw_statistics *wstats = &local->wstats;
916 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
917 struct sta_info *sta = NULL;
918
Johannes Berg98dd6a52008-04-10 15:36:09 +0200919 rcu_read_lock();
920
Johannes Berg46900292009-02-15 12:44:28 +0100921 if (sdata->vif.type == NL80211_IFTYPE_STATION)
922 sta = sta_info_get(local, sdata->u.mgd.bssid);
923
Jiri Bencf0706e82007-05-05 11:45:53 -0700924 if (!sta) {
925 wstats->discard.fragment = 0;
926 wstats->discard.misc = 0;
927 wstats->qual.qual = 0;
928 wstats->qual.level = 0;
929 wstats->qual.noise = 0;
930 wstats->qual.updated = IW_QUAL_ALL_INVALID;
931 } else {
Johannes Berg24776cf2009-02-27 16:33:55 -0600932 wstats->qual.updated = 0;
933 /*
934 * mirror what cfg80211 does for iwrange/scan results,
935 * otherwise userspace gets confused.
936 */
937 if (local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
938 IEEE80211_HW_SIGNAL_DBM)) {
939 wstats->qual.updated |= IW_QUAL_LEVEL_UPDATED;
940 wstats->qual.updated |= IW_QUAL_QUAL_UPDATED;
941 } else {
942 wstats->qual.updated |= IW_QUAL_LEVEL_INVALID;
943 wstats->qual.updated |= IW_QUAL_QUAL_INVALID;
944 }
945
946 if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC) {
947 wstats->qual.level = sta->last_signal;
948 wstats->qual.qual = sta->last_signal;
949 } else if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) {
950 int sig = sta->last_signal;
951
952 wstats->qual.updated |= IW_QUAL_DBM;
953 wstats->qual.level = sig;
954 if (sig < -110)
955 sig = -110;
956 else if (sig > -40)
957 sig = -40;
958 wstats->qual.qual = sig + 110;
959 }
960
961 if (local->hw.flags & IEEE80211_HW_NOISE_DBM) {
962 /*
963 * This assumes that if driver reports noise, it also
964 * reports signal in dBm.
965 */
966 wstats->qual.noise = sta->last_noise;
967 wstats->qual.updated |= IW_QUAL_NOISE_UPDATED;
968 } else {
969 wstats->qual.updated |= IW_QUAL_NOISE_INVALID;
970 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700971 }
Johannes Berg98dd6a52008-04-10 15:36:09 +0200972
973 rcu_read_unlock();
974
Jiri Bencf0706e82007-05-05 11:45:53 -0700975 return wstats;
976}
977
978static int ieee80211_ioctl_giwauth(struct net_device *dev,
979 struct iw_request_info *info,
980 struct iw_param *data, char *extra)
981{
982 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
983 int ret = 0;
984
985 switch (data->flags & IW_AUTH_INDEX) {
986 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg46900292009-02-15 12:44:28 +0100987 if (sdata->vif.type == NL80211_IFTYPE_STATION)
988 data->value = sdata->u.mgd.auth_algs;
Jiri Bencf0706e82007-05-05 11:45:53 -0700989 else
990 ret = -EOPNOTSUPP;
991 break;
992 default:
993 ret = -EOPNOTSUPP;
994 break;
995 }
996 return ret;
997}
998
999
1000static int ieee80211_ioctl_siwencodeext(struct net_device *dev,
1001 struct iw_request_info *info,
1002 struct iw_point *erq, char *extra)
1003{
1004 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1005 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
Johannes Berg628a1402007-09-26 17:53:17 +02001006 int uninitialized_var(alg), idx, i, remove = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001007
1008 switch (ext->alg) {
1009 case IW_ENCODE_ALG_NONE:
Johannes Berg628a1402007-09-26 17:53:17 +02001010 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001011 break;
1012 case IW_ENCODE_ALG_WEP:
1013 alg = ALG_WEP;
1014 break;
1015 case IW_ENCODE_ALG_TKIP:
1016 alg = ALG_TKIP;
1017 break;
1018 case IW_ENCODE_ALG_CCMP:
1019 alg = ALG_CCMP;
1020 break;
Jouni Malinen22787db2009-01-08 13:32:04 +02001021 case IW_ENCODE_ALG_AES_CMAC:
1022 alg = ALG_AES_CMAC;
1023 break;
Jiri Bencf0706e82007-05-05 11:45:53 -07001024 default:
1025 return -EOPNOTSUPP;
1026 }
1027
1028 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +02001029 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001030
1031 idx = erq->flags & IW_ENCODE_INDEX;
Jouni Malinen22787db2009-01-08 13:32:04 +02001032 if (alg == ALG_AES_CMAC) {
1033 if (idx < NUM_DEFAULT_KEYS + 1 ||
1034 idx > NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) {
1035 idx = -1;
1036 if (!sdata->default_mgmt_key)
1037 idx = 0;
1038 else for (i = NUM_DEFAULT_KEYS;
1039 i < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS;
1040 i++) {
1041 if (sdata->default_mgmt_key == sdata->keys[i])
1042 {
1043 idx = i;
1044 break;
1045 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001046 }
Jouni Malinen22787db2009-01-08 13:32:04 +02001047 if (idx < 0)
1048 return -EINVAL;
1049 } else
1050 idx--;
1051 } else {
1052 if (idx < 1 || idx > 4) {
1053 idx = -1;
1054 if (!sdata->default_key)
1055 idx = 0;
1056 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1057 if (sdata->default_key == sdata->keys[i]) {
1058 idx = i;
1059 break;
1060 }
1061 }
1062 if (idx < 0)
1063 return -EINVAL;
1064 } else
1065 idx--;
1066 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001067
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001068 return ieee80211_set_encryption(sdata, ext->addr.sa_data, idx, alg,
Johannes Berg628a1402007-09-26 17:53:17 +02001069 remove,
Jiri Bencf0706e82007-05-05 11:45:53 -07001070 ext->ext_flags &
1071 IW_ENCODE_EXT_SET_TX_KEY,
1072 ext->key, ext->key_len);
1073}
1074
1075
Jiri Bencf0706e82007-05-05 11:45:53 -07001076/* Structures to export the Wireless Handlers */
1077
1078static const iw_handler ieee80211_handler[] =
1079{
1080 (iw_handler) NULL, /* SIOCSIWCOMMIT */
Johannes Bergfee52672008-11-26 22:36:31 +01001081 (iw_handler) cfg80211_wext_giwname, /* SIOCGIWNAME */
Jiri Bencf0706e82007-05-05 11:45:53 -07001082 (iw_handler) NULL, /* SIOCSIWNWID */
1083 (iw_handler) NULL, /* SIOCGIWNWID */
1084 (iw_handler) ieee80211_ioctl_siwfreq, /* SIOCSIWFREQ */
1085 (iw_handler) ieee80211_ioctl_giwfreq, /* SIOCGIWFREQ */
Johannes Berge60c7742008-11-26 23:31:40 +01001086 (iw_handler) cfg80211_wext_siwmode, /* SIOCSIWMODE */
1087 (iw_handler) cfg80211_wext_giwmode, /* SIOCGIWMODE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001088 (iw_handler) NULL, /* SIOCSIWSENS */
1089 (iw_handler) NULL, /* SIOCGIWSENS */
1090 (iw_handler) NULL /* not used */, /* SIOCSIWRANGE */
Johannes Berg4aa188e2009-02-18 19:32:08 +01001091 (iw_handler) cfg80211_wext_giwrange, /* SIOCGIWRANGE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001092 (iw_handler) NULL /* not used */, /* SIOCSIWPRIV */
1093 (iw_handler) NULL /* kernel code */, /* SIOCGIWPRIV */
1094 (iw_handler) NULL /* not used */, /* SIOCSIWSTATS */
1095 (iw_handler) NULL /* kernel code */, /* SIOCGIWSTATS */
Johannes Berg5d4ecd92007-09-14 11:10:24 -04001096 (iw_handler) NULL, /* SIOCSIWSPY */
1097 (iw_handler) NULL, /* SIOCGIWSPY */
1098 (iw_handler) NULL, /* SIOCSIWTHRSPY */
1099 (iw_handler) NULL, /* SIOCGIWTHRSPY */
Jiri Bencf0706e82007-05-05 11:45:53 -07001100 (iw_handler) ieee80211_ioctl_siwap, /* SIOCSIWAP */
1101 (iw_handler) ieee80211_ioctl_giwap, /* SIOCGIWAP */
1102 (iw_handler) ieee80211_ioctl_siwmlme, /* SIOCSIWMLME */
1103 (iw_handler) NULL, /* SIOCGIWAPLIST */
Johannes Berg2a519312009-02-10 21:25:55 +01001104 (iw_handler) cfg80211_wext_siwscan, /* SIOCSIWSCAN */
1105 (iw_handler) cfg80211_wext_giwscan, /* SIOCGIWSCAN */
Jiri Bencf0706e82007-05-05 11:45:53 -07001106 (iw_handler) ieee80211_ioctl_siwessid, /* SIOCSIWESSID */
1107 (iw_handler) ieee80211_ioctl_giwessid, /* SIOCGIWESSID */
1108 (iw_handler) NULL, /* SIOCSIWNICKN */
1109 (iw_handler) NULL, /* SIOCGIWNICKN */
1110 (iw_handler) NULL, /* -- hole -- */
1111 (iw_handler) NULL, /* -- hole -- */
Larry Finger1fd5e582007-07-10 19:32:10 +02001112 (iw_handler) ieee80211_ioctl_siwrate, /* SIOCSIWRATE */
Larry Fingerb3d88ad2007-06-10 17:57:33 -07001113 (iw_handler) ieee80211_ioctl_giwrate, /* SIOCGIWRATE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001114 (iw_handler) ieee80211_ioctl_siwrts, /* SIOCSIWRTS */
1115 (iw_handler) ieee80211_ioctl_giwrts, /* SIOCGIWRTS */
1116 (iw_handler) ieee80211_ioctl_siwfrag, /* SIOCSIWFRAG */
1117 (iw_handler) ieee80211_ioctl_giwfrag, /* SIOCGIWFRAG */
Michael Buesch61609bc2007-09-20 22:06:39 +02001118 (iw_handler) ieee80211_ioctl_siwtxpower, /* SIOCSIWTXPOW */
Larry Fingerfe6aa302007-08-10 11:23:20 -05001119 (iw_handler) ieee80211_ioctl_giwtxpower, /* SIOCGIWTXPOW */
Jiri Bencf0706e82007-05-05 11:45:53 -07001120 (iw_handler) ieee80211_ioctl_siwretry, /* SIOCSIWRETRY */
1121 (iw_handler) ieee80211_ioctl_giwretry, /* SIOCGIWRETRY */
1122 (iw_handler) ieee80211_ioctl_siwencode, /* SIOCSIWENCODE */
1123 (iw_handler) ieee80211_ioctl_giwencode, /* SIOCGIWENCODE */
Samuel Ortiz49292d52008-07-04 10:49:31 +02001124 (iw_handler) ieee80211_ioctl_siwpower, /* SIOCSIWPOWER */
1125 (iw_handler) ieee80211_ioctl_giwpower, /* SIOCGIWPOWER */
Jiri Bencf0706e82007-05-05 11:45:53 -07001126 (iw_handler) NULL, /* -- hole -- */
1127 (iw_handler) NULL, /* -- hole -- */
1128 (iw_handler) ieee80211_ioctl_siwgenie, /* SIOCSIWGENIE */
1129 (iw_handler) NULL, /* SIOCGIWGENIE */
1130 (iw_handler) ieee80211_ioctl_siwauth, /* SIOCSIWAUTH */
1131 (iw_handler) ieee80211_ioctl_giwauth, /* SIOCGIWAUTH */
1132 (iw_handler) ieee80211_ioctl_siwencodeext, /* SIOCSIWENCODEEXT */
1133 (iw_handler) NULL, /* SIOCGIWENCODEEXT */
1134 (iw_handler) NULL, /* SIOCSIWPMKSA */
1135 (iw_handler) NULL, /* -- hole -- */
1136};
1137
Jiri Bencf0706e82007-05-05 11:45:53 -07001138const struct iw_handler_def ieee80211_iw_handler_def =
1139{
1140 .num_standard = ARRAY_SIZE(ieee80211_handler),
Jiri Bencf0706e82007-05-05 11:45:53 -07001141 .standard = (iw_handler *) ieee80211_handler,
Jiri Bencf0706e82007-05-05 11:45:53 -07001142 .get_wireless_stats = ieee80211_get_wireless_stats,
1143};