blob: f7e442f80a171bee51264c31e4d1d3f163de1e53 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/netdevice.h>
13#include <linux/types.h>
14#include <linux/slab.h>
15#include <linux/skbuff.h>
16#include <linux/etherdevice.h>
17#include <linux/if_arp.h>
18#include <linux/wireless.h>
19#include <net/iw_handler.h>
20#include <asm/uaccess.h>
21
22#include <net/mac80211.h>
23#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040024#include "led.h"
25#include "rate.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070026#include "wpa.h"
27#include "aes_ccm.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070028
Johannes Bergb708e612007-09-14 11:10:25 -040029
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120030static int ieee80211_set_encryption(struct ieee80211_sub_if_data *sdata, u8 *sta_addr,
Johannes Berg628a1402007-09-26 17:53:17 +020031 int idx, int alg, int remove,
32 int set_tx_key, const u8 *_key,
33 size_t key_len)
Jiri Bencf0706e82007-05-05 11:45:53 -070034{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120035 struct ieee80211_local *local = sdata->local;
Johannes Bergd0709a62008-02-25 16:27:46 +010036 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040037 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +020038 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070039
Volker Braun139c3a02007-09-14 11:10:25 -040040 if (idx < 0 || idx >= NUM_DEFAULT_KEYS) {
41 printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120042 sdata->dev->name, idx);
Volker Braun139c3a02007-09-14 11:10:25 -040043 return -EINVAL;
44 }
45
Johannes Berg628a1402007-09-26 17:53:17 +020046 if (remove) {
Johannes Berg3b967662008-04-08 17:56:52 +020047 rcu_read_lock();
48
49 err = 0;
50
Johannes Bergdb4d1162008-02-25 16:27:45 +010051 if (is_broadcast_ether_addr(sta_addr)) {
52 key = sdata->keys[idx];
53 } else {
54 sta = sta_info_get(local, sta_addr);
Johannes Berg3b967662008-04-08 17:56:52 +020055 if (!sta) {
56 err = -ENOENT;
57 goto out_unlock;
58 }
Johannes Bergdb4d1162008-02-25 16:27:45 +010059 key = sta->key;
Jiri Bencf0706e82007-05-05 11:45:53 -070060 }
Johannes Bergdb4d1162008-02-25 16:27:45 +010061
Johannes Bergd0709a62008-02-25 16:27:46 +010062 ieee80211_key_free(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +010063 } else {
64 key = ieee80211_key_alloc(alg, idx, key_len, _key);
65 if (!key)
66 return -ENOMEM;
67
Johannes Bergd0709a62008-02-25 16:27:46 +010068 sta = NULL;
Johannes Berg3b967662008-04-08 17:56:52 +020069 err = 0;
70
71 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +010072
Johannes Bergdb4d1162008-02-25 16:27:45 +010073 if (!is_broadcast_ether_addr(sta_addr)) {
74 set_tx_key = 0;
75 /*
76 * According to the standard, the key index of a
77 * pairwise key must be zero. However, some AP are
78 * broken when it comes to WEP key indices, so we
79 * work around this.
80 */
81 if (idx != 0 && alg != ALG_WEP) {
Johannes Bergd0709a62008-02-25 16:27:46 +010082 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +020083 err = -EINVAL;
84 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +010085 }
86
87 sta = sta_info_get(local, sta_addr);
88 if (!sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +010089 ieee80211_key_free(key);
Johannes Berg3b967662008-04-08 17:56:52 +020090 err = -ENOENT;
91 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +010092 }
93 }
94
Emmanuel Grumbach23976ef2008-06-28 02:50:13 +030095 if (alg == ALG_WEP &&
96 key_len != LEN_WEP40 && key_len != LEN_WEP104) {
97 ieee80211_key_free(key);
98 err = -EINVAL;
99 goto out_unlock;
100 }
101
Johannes Bergdb4d1162008-02-25 16:27:45 +0100102 ieee80211_key_link(key, sdata, sta);
103
104 if (set_tx_key || (!sta && !sdata->default_key && key))
105 ieee80211_set_default_key(sdata, idx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700106 }
107
Johannes Berg3b967662008-04-08 17:56:52 +0200108 out_unlock:
109 rcu_read_unlock();
110
111 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700112}
113
114static int ieee80211_ioctl_siwgenie(struct net_device *dev,
115 struct iw_request_info *info,
116 struct iw_point *data, char *extra)
117{
118 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700119
120 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200121
122 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
123 return -EOPNOTSUPP;
124
Johannes Berg05c914f2008-09-11 00:01:58 +0200125 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
126 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200127 int ret = ieee80211_sta_set_extra_ie(sdata, extra, data->length);
Jiri Bencf0706e82007-05-05 11:45:53 -0700128 if (ret)
129 return ret;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400130 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200131 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700132 return 0;
133 }
134
Jiri Bencf0706e82007-05-05 11:45:53 -0700135 return -EOPNOTSUPP;
136}
137
Jiri Bencf0706e82007-05-05 11:45:53 -0700138static int ieee80211_ioctl_giwname(struct net_device *dev,
139 struct iw_request_info *info,
140 char *name, char *extra)
141{
Tomas Winklerf37d08b2008-06-24 15:50:17 +0300142 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
143 struct ieee80211_supported_band *sband;
144 u8 is_ht = 0, is_a = 0, is_b = 0, is_g = 0;
145
146
147 sband = local->hw.wiphy->bands[IEEE80211_BAND_5GHZ];
148 if (sband) {
149 is_a = 1;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200150 is_ht |= sband->ht_cap.ht_supported;
Tomas Winklerf37d08b2008-06-24 15:50:17 +0300151 }
152
153 sband = local->hw.wiphy->bands[IEEE80211_BAND_2GHZ];
154 if (sband) {
155 int i;
156 /* Check for mandatory rates */
157 for (i = 0; i < sband->n_bitrates; i++) {
158 if (sband->bitrates[i].bitrate == 10)
159 is_b = 1;
160 if (sband->bitrates[i].bitrate == 60)
161 is_g = 1;
162 }
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200163 is_ht |= sband->ht_cap.ht_supported;
Tomas Winklerf37d08b2008-06-24 15:50:17 +0300164 }
165
Johannes Berg8318d782008-01-24 19:38:38 +0100166 strcpy(name, "IEEE 802.11");
Tomas Winklerf37d08b2008-06-24 15:50:17 +0300167 if (is_a)
168 strcat(name, "a");
169 if (is_b)
170 strcat(name, "b");
171 if (is_g)
172 strcat(name, "g");
173 if (is_ht)
174 strcat(name, "n");
Jiri Bencf0706e82007-05-05 11:45:53 -0700175
176 return 0;
177}
178
179
180static int ieee80211_ioctl_giwrange(struct net_device *dev,
181 struct iw_request_info *info,
182 struct iw_point *data, char *extra)
183{
184 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
185 struct iw_range *range = (struct iw_range *) extra;
Johannes Berg8318d782008-01-24 19:38:38 +0100186 enum ieee80211_band band;
Hong Liu333af2f2007-07-10 19:32:08 +0200187 int c = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700188
189 data->length = sizeof(struct iw_range);
190 memset(range, 0, sizeof(struct iw_range));
191
192 range->we_version_compiled = WIRELESS_EXT;
193 range->we_version_source = 21;
194 range->retry_capa = IW_RETRY_LIMIT;
195 range->retry_flags = IW_RETRY_LIMIT;
196 range->min_retry = 0;
197 range->max_retry = 255;
198 range->min_rts = 0;
199 range->max_rts = 2347;
200 range->min_frag = 256;
201 range->max_frag = 2346;
202
203 range->encoding_size[0] = 5;
204 range->encoding_size[1] = 13;
205 range->num_encoding_sizes = 2;
206 range->max_encoding_tokens = NUM_DEFAULT_KEYS;
207
Bruno Randolf566bfe52008-05-08 19:15:40 +0200208 if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC ||
209 local->hw.flags & IEEE80211_HW_SIGNAL_DB)
210 range->max_qual.level = local->hw.max_signal;
211 else if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
212 range->max_qual.level = -110;
213 else
214 range->max_qual.level = 0;
215
216 if (local->hw.flags & IEEE80211_HW_NOISE_DBM)
217 range->max_qual.noise = -110;
218 else
219 range->max_qual.noise = 0;
220
221 range->max_qual.qual = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -0700222 range->max_qual.updated = local->wstats_flags;
223
Bruno Randolf566bfe52008-05-08 19:15:40 +0200224 range->avg_qual.qual = 50;
225 /* not always true but better than nothing */
226 range->avg_qual.level = range->max_qual.level / 2;
227 range->avg_qual.noise = range->max_qual.noise / 2;
Jiri Bencf0706e82007-05-05 11:45:53 -0700228 range->avg_qual.updated = local->wstats_flags;
229
230 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
231 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
232
Hong Liu333af2f2007-07-10 19:32:08 +0200233
Johannes Berg8318d782008-01-24 19:38:38 +0100234 for (band = 0; band < IEEE80211_NUM_BANDS; band ++) {
235 int i;
236 struct ieee80211_supported_band *sband;
237
238 sband = local->hw.wiphy->bands[band];
239
240 if (!sband)
Hong Liu333af2f2007-07-10 19:32:08 +0200241 continue;
242
Johannes Berg8318d782008-01-24 19:38:38 +0100243 for (i = 0; i < sband->n_channels && c < IW_MAX_FREQUENCIES; i++) {
244 struct ieee80211_channel *chan = &sband->channels[i];
Hong Liu333af2f2007-07-10 19:32:08 +0200245
Johannes Berg8318d782008-01-24 19:38:38 +0100246 if (!(chan->flags & IEEE80211_CHAN_DISABLED)) {
247 range->freq[c].i =
248 ieee80211_frequency_to_channel(
249 chan->center_freq);
250 range->freq[c].m = chan->center_freq;
251 range->freq[c].e = 6;
Hong Liu333af2f2007-07-10 19:32:08 +0200252 c++;
253 }
Hong Liu333af2f2007-07-10 19:32:08 +0200254 }
255 }
256 range->num_channels = c;
257 range->num_frequency = c;
258
Jiri Bencf0706e82007-05-05 11:45:53 -0700259 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
Jiri Bencf0706e82007-05-05 11:45:53 -0700260 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
261 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
262
Dan Williams374fdfb2007-12-12 10:25:07 -0500263 range->scan_capa |= IW_SCAN_CAPA_ESSID;
264
Jiri Bencf0706e82007-05-05 11:45:53 -0700265 return 0;
266}
267
268
Jiri Bencf0706e82007-05-05 11:45:53 -0700269static int ieee80211_ioctl_siwmode(struct net_device *dev,
270 struct iw_request_info *info,
271 __u32 *mode, char *extra)
272{
273 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
274 int type;
275
Johannes Berg05c914f2008-09-11 00:01:58 +0200276 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Jiri Bencf0706e82007-05-05 11:45:53 -0700277 return -EOPNOTSUPP;
278
279 switch (*mode) {
280 case IW_MODE_INFRA:
Johannes Berg05c914f2008-09-11 00:01:58 +0200281 type = NL80211_IFTYPE_STATION;
Jiri Bencf0706e82007-05-05 11:45:53 -0700282 break;
283 case IW_MODE_ADHOC:
Johannes Berg05c914f2008-09-11 00:01:58 +0200284 type = NL80211_IFTYPE_ADHOC;
Jiri Bencf0706e82007-05-05 11:45:53 -0700285 break;
Johannes Bergb4540482008-04-14 15:37:03 +0200286 case IW_MODE_REPEAT:
Johannes Berg05c914f2008-09-11 00:01:58 +0200287 type = NL80211_IFTYPE_WDS;
Johannes Bergb4540482008-04-14 15:37:03 +0200288 break;
Jiri Bencf0706e82007-05-05 11:45:53 -0700289 case IW_MODE_MONITOR:
Johannes Berg05c914f2008-09-11 00:01:58 +0200290 type = NL80211_IFTYPE_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -0700291 break;
292 default:
293 return -EINVAL;
294 }
295
Johannes Bergf3947e22008-07-09 14:40:36 +0200296 return ieee80211_if_change_type(sdata, type);
Jiri Bencf0706e82007-05-05 11:45:53 -0700297}
298
299
300static int ieee80211_ioctl_giwmode(struct net_device *dev,
301 struct iw_request_info *info,
302 __u32 *mode, char *extra)
303{
304 struct ieee80211_sub_if_data *sdata;
305
306 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100307 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200308 case NL80211_IFTYPE_AP:
Jiri Bencf0706e82007-05-05 11:45:53 -0700309 *mode = IW_MODE_MASTER;
310 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200311 case NL80211_IFTYPE_STATION:
Jiri Bencf0706e82007-05-05 11:45:53 -0700312 *mode = IW_MODE_INFRA;
313 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200314 case NL80211_IFTYPE_ADHOC:
Jiri Bencf0706e82007-05-05 11:45:53 -0700315 *mode = IW_MODE_ADHOC;
316 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200317 case NL80211_IFTYPE_MONITOR:
Jiri Bencf0706e82007-05-05 11:45:53 -0700318 *mode = IW_MODE_MONITOR;
319 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200320 case NL80211_IFTYPE_WDS:
Jiri Bencf0706e82007-05-05 11:45:53 -0700321 *mode = IW_MODE_REPEAT;
322 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200323 case NL80211_IFTYPE_AP_VLAN:
Jiri Bencf0706e82007-05-05 11:45:53 -0700324 *mode = IW_MODE_SECOND; /* FIXME */
325 break;
326 default:
327 *mode = IW_MODE_AUTO;
328 break;
329 }
330 return 0;
331}
332
Jiri Bencf0706e82007-05-05 11:45:53 -0700333static int ieee80211_ioctl_siwfreq(struct net_device *dev,
334 struct iw_request_info *info,
335 struct iw_freq *freq, char *extra)
336{
Jiri Bencf0706e82007-05-05 11:45:53 -0700337 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
338
Johannes Berg05c914f2008-09-11 00:01:58 +0200339 if (sdata->vif.type == NL80211_IFTYPE_STATION)
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400340 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700341
342 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
343 if (freq->e == 0) {
344 if (freq->m < 0) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200345 if (sdata->vif.type == NL80211_IFTYPE_STATION)
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400346 sdata->u.sta.flags |=
347 IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700348 return 0;
349 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200350 return ieee80211_set_freq(sdata,
Johannes Berg8318d782008-01-24 19:38:38 +0100351 ieee80211_channel_to_frequency(freq->m));
Jiri Bencf0706e82007-05-05 11:45:53 -0700352 } else {
353 int i, div = 1000000;
354 for (i = 0; i < freq->e; i++)
355 div /= 10;
356 if (div > 0)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200357 return ieee80211_set_freq(sdata, freq->m / div);
Jiri Bencf0706e82007-05-05 11:45:53 -0700358 else
359 return -EINVAL;
360 }
361}
362
363
364static int ieee80211_ioctl_giwfreq(struct net_device *dev,
365 struct iw_request_info *info,
366 struct iw_freq *freq, char *extra)
367{
368 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
369
Johannes Berg8318d782008-01-24 19:38:38 +0100370 freq->m = local->hw.conf.channel->center_freq;
Jiri Bencf0706e82007-05-05 11:45:53 -0700371 freq->e = 6;
372
373 return 0;
374}
375
376
377static int ieee80211_ioctl_siwessid(struct net_device *dev,
378 struct iw_request_info *info,
379 struct iw_point *data, char *ssid)
380{
Jiri Bencf0706e82007-05-05 11:45:53 -0700381 struct ieee80211_sub_if_data *sdata;
382 size_t len = data->length;
383
384 /* iwconfig uses nul termination in SSID.. */
385 if (len > 0 && ssid[len - 1] == '\0')
386 len--;
387
388 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200389 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
390 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700391 int ret;
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200392 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700393 if (len > IEEE80211_MAX_SSID_LEN)
394 return -EINVAL;
395 memcpy(sdata->u.sta.ssid, ssid, len);
396 sdata->u.sta.ssid_len = len;
397 return 0;
398 }
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400399 if (data->flags)
400 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_SSID_SEL;
401 else
402 sdata->u.sta.flags |= IEEE80211_STA_AUTO_SSID_SEL;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200403 ret = ieee80211_sta_set_ssid(sdata, ssid, len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700404 if (ret)
405 return ret;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200406 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700407 return 0;
408 }
409
Johannes Berg05c914f2008-09-11 00:01:58 +0200410 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700411 memcpy(sdata->u.ap.ssid, ssid, len);
412 memset(sdata->u.ap.ssid + len, 0,
413 IEEE80211_MAX_SSID_LEN - len);
414 sdata->u.ap.ssid_len = len;
Johannes Berg9d139c82008-07-09 14:40:37 +0200415 return ieee80211_if_config(sdata, IEEE80211_IFCC_SSID);
Jiri Bencf0706e82007-05-05 11:45:53 -0700416 }
417 return -EOPNOTSUPP;
418}
419
420
421static int ieee80211_ioctl_giwessid(struct net_device *dev,
422 struct iw_request_info *info,
423 struct iw_point *data, char *ssid)
424{
425 size_t len;
426
427 struct ieee80211_sub_if_data *sdata;
428 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200429 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
430 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200431 int res = ieee80211_sta_get_ssid(sdata, ssid, &len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700432 if (res == 0) {
433 data->length = len;
434 data->flags = 1;
435 } else
436 data->flags = 0;
437 return res;
438 }
439
Johannes Berg05c914f2008-09-11 00:01:58 +0200440 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700441 len = sdata->u.ap.ssid_len;
442 if (len > IW_ESSID_MAX_SIZE)
443 len = IW_ESSID_MAX_SIZE;
444 memcpy(ssid, sdata->u.ap.ssid, len);
445 data->length = len;
446 data->flags = 1;
447 return 0;
448 }
449 return -EOPNOTSUPP;
450}
451
452
453static int ieee80211_ioctl_siwap(struct net_device *dev,
454 struct iw_request_info *info,
455 struct sockaddr *ap_addr, char *extra)
456{
Jiri Bencf0706e82007-05-05 11:45:53 -0700457 struct ieee80211_sub_if_data *sdata;
458
459 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200460 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
461 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700462 int ret;
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200463 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700464 memcpy(sdata->u.sta.bssid, (u8 *) &ap_addr->sa_data,
465 ETH_ALEN);
466 return 0;
467 }
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400468 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
469 sdata->u.sta.flags |= IEEE80211_STA_AUTO_BSSID_SEL |
470 IEEE80211_STA_AUTO_CHANNEL_SEL;
471 else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
472 sdata->u.sta.flags |= IEEE80211_STA_AUTO_BSSID_SEL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700473 else
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400474 sdata->u.sta.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200475 ret = ieee80211_sta_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
Jiri Bencf0706e82007-05-05 11:45:53 -0700476 if (ret)
477 return ret;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200478 ieee80211_sta_req_auth(sdata, &sdata->u.sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700479 return 0;
Johannes Berg05c914f2008-09-11 00:01:58 +0200480 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
Johannes Berg44213b52008-02-25 16:27:49 +0100481 /*
482 * If it is necessary to update the WDS peer address
483 * while the interface is running, then we need to do
484 * more work here, namely if it is running we need to
485 * add a new and remove the old STA entry, this is
486 * normally handled by _open() and _stop().
487 */
488 if (netif_running(dev))
489 return -EBUSY;
490
491 memcpy(&sdata->u.wds.remote_addr, (u8 *) &ap_addr->sa_data,
492 ETH_ALEN);
493
494 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700495 }
496
497 return -EOPNOTSUPP;
498}
499
500
501static int ieee80211_ioctl_giwap(struct net_device *dev,
502 struct iw_request_info *info,
503 struct sockaddr *ap_addr, char *extra)
504{
505 struct ieee80211_sub_if_data *sdata;
506
507 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200508 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
509 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300510 if (sdata->u.sta.state == IEEE80211_STA_MLME_ASSOCIATED ||
511 sdata->u.sta.state == IEEE80211_STA_MLME_IBSS_JOINED) {
Abhijeet Kolekard4231ca2008-05-23 10:15:26 -0700512 ap_addr->sa_family = ARPHRD_ETHER;
513 memcpy(&ap_addr->sa_data, sdata->u.sta.bssid, ETH_ALEN);
514 return 0;
515 } else {
516 memset(&ap_addr->sa_data, 0, ETH_ALEN);
517 return 0;
518 }
Johannes Berg05c914f2008-09-11 00:01:58 +0200519 } else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700520 ap_addr->sa_family = ARPHRD_ETHER;
521 memcpy(&ap_addr->sa_data, sdata->u.wds.remote_addr, ETH_ALEN);
522 return 0;
523 }
524
525 return -EOPNOTSUPP;
526}
527
528
529static int ieee80211_ioctl_siwscan(struct net_device *dev,
530 struct iw_request_info *info,
Bill Moss107acb22007-10-10 16:23:55 -0400531 union iwreq_data *wrqu, char *extra)
Jiri Bencf0706e82007-05-05 11:45:53 -0700532{
Jiri Bencf0706e82007-05-05 11:45:53 -0700533 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Bill Moss107acb22007-10-10 16:23:55 -0400534 struct iw_scan_req *req = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700535 u8 *ssid = NULL;
536 size_t ssid_len = 0;
537
538 if (!netif_running(dev))
539 return -ENETDOWN;
540
Johannes Berg05c914f2008-09-11 00:01:58 +0200541 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
542 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
543 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
544 sdata->vif.type != NL80211_IFTYPE_AP)
John W. Linvilled114f392007-10-17 21:16:16 -0700545 return -EOPNOTSUPP;
John W. Linvilled114f392007-10-17 21:16:16 -0700546
547 /* if SSID was specified explicitly then use that */
Bill Moss107acb22007-10-10 16:23:55 -0400548 if (wrqu->data.length == sizeof(struct iw_scan_req) &&
549 wrqu->data.flags & IW_SCAN_THIS_ESSID) {
550 req = (struct iw_scan_req *)extra;
551 ssid = req->essid;
552 ssid_len = req->essid_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700553 }
Daniel Drakef27b62d2007-07-27 15:43:24 +0200554
Johannes Bergc2b13452008-09-11 00:01:55 +0200555 return ieee80211_request_scan(sdata, ssid, ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700556}
557
558
559static int ieee80211_ioctl_giwscan(struct net_device *dev,
560 struct iw_request_info *info,
561 struct iw_point *data, char *extra)
562{
563 int res;
564 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200565 struct ieee80211_sub_if_data *sdata;
566
567 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Zhu Yiece8edd2007-11-22 10:53:21 +0800568
Johannes Bergc2b13452008-09-11 00:01:55 +0200569 if (local->sw_scanning || local->hw_scanning)
Jiri Bencf0706e82007-05-05 11:45:53 -0700570 return -EAGAIN;
Zhu Yiece8edd2007-11-22 10:53:21 +0800571
Johannes Bergc2b13452008-09-11 00:01:55 +0200572 res = ieee80211_scan_results(local, info, extra, data->length);
Jiri Bencf0706e82007-05-05 11:45:53 -0700573 if (res >= 0) {
574 data->length = res;
575 return 0;
576 }
577 data->length = 0;
578 return res;
579}
580
581
Larry Finger1fd5e582007-07-10 19:32:10 +0200582static int ieee80211_ioctl_siwrate(struct net_device *dev,
583 struct iw_request_info *info,
584 struct iw_param *rate, char *extra)
585{
586 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg8318d782008-01-24 19:38:38 +0100587 int i, err = -EINVAL;
Larry Finger1fd5e582007-07-10 19:32:10 +0200588 u32 target_rate = rate->value / 100000;
589 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100590 struct ieee80211_supported_band *sband;
Larry Finger1fd5e582007-07-10 19:32:10 +0200591
592 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100593
594 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
595
Larry Finger1fd5e582007-07-10 19:32:10 +0200596 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
597 * target_rate = X, rate->fixed = 1 means only rate X
598 * target_rate = X, rate->fixed = 0 means all rates <= X */
Johannes Berg3e122be2008-07-09 14:40:34 +0200599 sdata->max_ratectrl_rateidx = -1;
600 sdata->force_unicast_rateidx = -1;
Larry Finger1fd5e582007-07-10 19:32:10 +0200601 if (rate->value < 0)
602 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100603
604 for (i=0; i< sband->n_bitrates; i++) {
605 struct ieee80211_rate *brate = &sband->bitrates[i];
606 int this_rate = brate->bitrate;
Larry Finger1fd5e582007-07-10 19:32:10 +0200607
Larry Finger1fd5e582007-07-10 19:32:10 +0200608 if (target_rate == this_rate) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200609 sdata->max_ratectrl_rateidx = i;
Larry Finger1fd5e582007-07-10 19:32:10 +0200610 if (rate->fixed)
Johannes Berg3e122be2008-07-09 14:40:34 +0200611 sdata->force_unicast_rateidx = i;
Johannes Berg8318d782008-01-24 19:38:38 +0100612 err = 0;
613 break;
Larry Finger1fd5e582007-07-10 19:32:10 +0200614 }
615 }
Johannes Berg8318d782008-01-24 19:38:38 +0100616 return err;
Larry Finger1fd5e582007-07-10 19:32:10 +0200617}
618
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700619static int ieee80211_ioctl_giwrate(struct net_device *dev,
620 struct iw_request_info *info,
621 struct iw_param *rate, char *extra)
622{
623 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
624 struct sta_info *sta;
625 struct ieee80211_sub_if_data *sdata;
Johannes Berg8318d782008-01-24 19:38:38 +0100626 struct ieee80211_supported_band *sband;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700627
628 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg8318d782008-01-24 19:38:38 +0100629
Johannes Berg05c914f2008-09-11 00:01:58 +0200630 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700631 return -EOPNOTSUPP;
Johannes Berg8318d782008-01-24 19:38:38 +0100632
633 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
634
Johannes Berg380a9422008-04-04 23:40:35 +0200635 rcu_read_lock();
636
637 sta = sta_info_get(local, sdata->u.sta.bssid);
638
Johannes Bergae17e982008-09-11 03:04:36 +0200639 if (sta && sta->last_txrate_idx < sband->n_bitrates)
640 rate->value = sband->bitrates[sta->last_txrate_idx].bitrate;
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700641 else
642 rate->value = 0;
Johannes Berg380a9422008-04-04 23:40:35 +0200643
644 rcu_read_unlock();
645
646 if (!sta)
647 return -ENODEV;
648
Johannes Berg8318d782008-01-24 19:38:38 +0100649 rate->value *= 100000;
Johannes Bergd0709a62008-02-25 16:27:46 +0100650
Larry Fingerb3d88ad2007-06-10 17:57:33 -0700651 return 0;
652}
653
Michael Buesch61609bc2007-09-20 22:06:39 +0200654static int ieee80211_ioctl_siwtxpower(struct net_device *dev,
655 struct iw_request_info *info,
656 union iwreq_data *data, char *extra)
657{
658 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berge8975582008-10-09 12:18:51 +0200659 u32 reconf_flags = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100660 int new_power_level;
Michael Buesch61609bc2007-09-20 22:06:39 +0200661
662 if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
663 return -EINVAL;
664 if (data->txpower.flags & IW_TXPOW_RANGE)
665 return -EINVAL;
Michael Buesch61609bc2007-09-20 22:06:39 +0200666
Mattias Nissler6a432952007-10-24 23:30:36 +0200667 if (data->txpower.fixed) {
668 new_power_level = data->txpower.value;
669 } else {
Johannes Berg8318d782008-01-24 19:38:38 +0100670 /*
671 * Automatic power level. Use maximum power for the current
672 * channel. Should be part of rate control.
673 */
674 struct ieee80211_channel* chan = local->hw.conf.channel;
Mattias Nissler6a432952007-10-24 23:30:36 +0200675 if (!chan)
676 return -EINVAL;
677
Johannes Berg8318d782008-01-24 19:38:38 +0100678 new_power_level = chan->max_power;
Mattias Nissler6a432952007-10-24 23:30:36 +0200679 }
680
681 if (local->hw.conf.power_level != new_power_level) {
682 local->hw.conf.power_level = new_power_level;
Johannes Berge8975582008-10-09 12:18:51 +0200683 reconf_flags |= IEEE80211_CONF_CHANGE_POWER;
Michael Buesch61609bc2007-09-20 22:06:39 +0200684 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200685
Michael Buesch61609bc2007-09-20 22:06:39 +0200686 if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) {
687 local->hw.conf.radio_enabled = !(data->txpower.disabled);
Johannes Berge8975582008-10-09 12:18:51 +0200688 reconf_flags |= IEEE80211_CONF_CHANGE_RADIO_ENABLED;
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100689 ieee80211_led_radio(local, local->hw.conf.radio_enabled);
Michael Buesch61609bc2007-09-20 22:06:39 +0200690 }
Mattias Nissler6a432952007-10-24 23:30:36 +0200691
Johannes Berge8975582008-10-09 12:18:51 +0200692 if (reconf_flags)
693 ieee80211_hw_config(local, reconf_flags);
Michael Buesch61609bc2007-09-20 22:06:39 +0200694
695 return 0;
696}
697
Larry Fingerfe6aa302007-08-10 11:23:20 -0500698static int ieee80211_ioctl_giwtxpower(struct net_device *dev,
699 struct iw_request_info *info,
700 union iwreq_data *data, char *extra)
701{
702 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
703
704 data->txpower.fixed = 1;
705 data->txpower.disabled = !(local->hw.conf.radio_enabled);
706 data->txpower.value = local->hw.conf.power_level;
707 data->txpower.flags = IW_TXPOW_DBM;
708
709 return 0;
710}
711
Jiri Bencf0706e82007-05-05 11:45:53 -0700712static int ieee80211_ioctl_siwrts(struct net_device *dev,
713 struct iw_request_info *info,
714 struct iw_param *rts, char *extra)
715{
716 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
717
718 if (rts->disabled)
719 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
Emmanuel Grumbachfa6adfe2008-06-24 13:37:58 +0300720 else if (!rts->fixed)
721 /* if the rts value is not fixed, then take default */
722 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
Jiri Bencf0706e82007-05-05 11:45:53 -0700723 else if (rts->value < 0 || rts->value > IEEE80211_MAX_RTS_THRESHOLD)
724 return -EINVAL;
725 else
726 local->rts_threshold = rts->value;
727
728 /* If the wlan card performs RTS/CTS in hardware/firmware,
729 * configure it here */
730
731 if (local->ops->set_rts_threshold)
732 local->ops->set_rts_threshold(local_to_hw(local),
733 local->rts_threshold);
734
735 return 0;
736}
737
738static int ieee80211_ioctl_giwrts(struct net_device *dev,
739 struct iw_request_info *info,
740 struct iw_param *rts, char *extra)
741{
742 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
743
744 rts->value = local->rts_threshold;
745 rts->disabled = (rts->value >= IEEE80211_MAX_RTS_THRESHOLD);
746 rts->fixed = 1;
747
748 return 0;
749}
750
751
752static int ieee80211_ioctl_siwfrag(struct net_device *dev,
753 struct iw_request_info *info,
754 struct iw_param *frag, char *extra)
755{
756 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
757
758 if (frag->disabled)
759 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Emmanuel Grumbache4abd4d2008-07-03 18:02:27 +0300760 else if (!frag->fixed)
761 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Jiri Bencf0706e82007-05-05 11:45:53 -0700762 else if (frag->value < 256 ||
763 frag->value > IEEE80211_MAX_FRAG_THRESHOLD)
764 return -EINVAL;
765 else {
766 /* Fragment length must be even, so strip LSB. */
767 local->fragmentation_threshold = frag->value & ~0x1;
768 }
769
770 /* If the wlan card performs fragmentation in hardware/firmware,
771 * configure it here */
772
773 if (local->ops->set_frag_threshold)
Johannes Berg4233df62008-10-13 13:35:05 +0200774 return local->ops->set_frag_threshold(
Jiri Bencf0706e82007-05-05 11:45:53 -0700775 local_to_hw(local),
776 local->fragmentation_threshold);
777
778 return 0;
779}
780
781static int ieee80211_ioctl_giwfrag(struct net_device *dev,
782 struct iw_request_info *info,
783 struct iw_param *frag, char *extra)
784{
785 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
786
787 frag->value = local->fragmentation_threshold;
788 frag->disabled = (frag->value >= IEEE80211_MAX_RTS_THRESHOLD);
789 frag->fixed = 1;
790
791 return 0;
792}
793
794
795static int ieee80211_ioctl_siwretry(struct net_device *dev,
796 struct iw_request_info *info,
797 struct iw_param *retry, char *extra)
798{
799 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
800
801 if (retry->disabled ||
802 (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
803 return -EINVAL;
804
Johannes Berg9124b072008-10-14 19:17:54 +0200805 if (retry->flags & IW_RETRY_MAX) {
806 local->hw.conf.long_frame_max_tx_count = retry->value;
807 } else if (retry->flags & IW_RETRY_MIN) {
808 local->hw.conf.short_frame_max_tx_count = retry->value;
809 } else {
810 local->hw.conf.long_frame_max_tx_count = retry->value;
811 local->hw.conf.short_frame_max_tx_count = retry->value;
Jiri Bencf0706e82007-05-05 11:45:53 -0700812 }
813
Johannes Berg9124b072008-10-14 19:17:54 +0200814 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
Jiri Bencf0706e82007-05-05 11:45:53 -0700815
816 return 0;
817}
818
819
820static int ieee80211_ioctl_giwretry(struct net_device *dev,
821 struct iw_request_info *info,
822 struct iw_param *retry, char *extra)
823{
824 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
825
826 retry->disabled = 0;
827 if (retry->flags == 0 || retry->flags & IW_RETRY_MIN) {
828 /* first return min value, iwconfig will ask max value
829 * later if needed */
830 retry->flags |= IW_RETRY_LIMIT;
Johannes Berg9124b072008-10-14 19:17:54 +0200831 retry->value = local->hw.conf.short_frame_max_tx_count;
832 if (local->hw.conf.long_frame_max_tx_count !=
833 local->hw.conf.short_frame_max_tx_count)
Jiri Bencf0706e82007-05-05 11:45:53 -0700834 retry->flags |= IW_RETRY_MIN;
835 return 0;
836 }
837 if (retry->flags & IW_RETRY_MAX) {
838 retry->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
Johannes Berg9124b072008-10-14 19:17:54 +0200839 retry->value = local->hw.conf.long_frame_max_tx_count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700840 }
841
842 return 0;
843}
844
Jiri Bencf0706e82007-05-05 11:45:53 -0700845static int ieee80211_ioctl_siwmlme(struct net_device *dev,
846 struct iw_request_info *info,
847 struct iw_point *data, char *extra)
848{
849 struct ieee80211_sub_if_data *sdata;
850 struct iw_mlme *mlme = (struct iw_mlme *) extra;
851
852 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg05c914f2008-09-11 00:01:58 +0200853 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
854 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -0700855 return -EINVAL;
856
857 switch (mlme->cmd) {
858 case IW_MLME_DEAUTH:
859 /* TODO: mlme->addr.sa_data */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200860 return ieee80211_sta_deauthenticate(sdata, mlme->reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -0700861 case IW_MLME_DISASSOC:
862 /* TODO: mlme->addr.sa_data */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200863 return ieee80211_sta_disassociate(sdata, mlme->reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -0700864 default:
865 return -EOPNOTSUPP;
866 }
867}
868
869
870static int ieee80211_ioctl_siwencode(struct net_device *dev,
871 struct iw_request_info *info,
872 struct iw_point *erq, char *keybuf)
873{
874 struct ieee80211_sub_if_data *sdata;
875 int idx, i, alg = ALG_WEP;
876 u8 bcaddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
Johannes Berg628a1402007-09-26 17:53:17 +0200877 int remove = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700878
879 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
880
881 idx = erq->flags & IW_ENCODE_INDEX;
882 if (idx == 0) {
883 if (sdata->default_key)
884 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
885 if (sdata->default_key == sdata->keys[i]) {
886 idx = i;
887 break;
888 }
889 }
890 } else if (idx < 1 || idx > 4)
891 return -EINVAL;
892 else
893 idx--;
894
895 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +0200896 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700897 else if (erq->length == 0) {
898 /* No key data - just set the default TX key index */
Johannes Berg11a843b2007-08-28 17:01:55 -0400899 ieee80211_set_default_key(sdata, idx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700900 return 0;
901 }
902
903 return ieee80211_set_encryption(
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200904 sdata, bcaddr,
Johannes Berg628a1402007-09-26 17:53:17 +0200905 idx, alg, remove,
Jiri Bencf0706e82007-05-05 11:45:53 -0700906 !sdata->default_key,
907 keybuf, erq->length);
908}
909
910
911static int ieee80211_ioctl_giwencode(struct net_device *dev,
912 struct iw_request_info *info,
913 struct iw_point *erq, char *key)
914{
915 struct ieee80211_sub_if_data *sdata;
916 int idx, i;
917
918 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
919
920 idx = erq->flags & IW_ENCODE_INDEX;
921 if (idx < 1 || idx > 4) {
922 idx = -1;
923 if (!sdata->default_key)
924 idx = 0;
925 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
926 if (sdata->default_key == sdata->keys[i]) {
927 idx = i;
928 break;
929 }
930 }
931 if (idx < 0)
932 return -EINVAL;
933 } else
934 idx--;
935
936 erq->flags = idx + 1;
937
938 if (!sdata->keys[idx]) {
939 erq->length = 0;
940 erq->flags |= IW_ENCODE_DISABLED;
941 return 0;
942 }
943
Johannes Berg8f20fc22007-08-28 17:01:54 -0400944 memcpy(key, sdata->keys[idx]->conf.key,
Johannes Berg11a843b2007-08-28 17:01:55 -0400945 min_t(int, erq->length, sdata->keys[idx]->conf.keylen));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400946 erq->length = sdata->keys[idx]->conf.keylen;
Jiri Bencf0706e82007-05-05 11:45:53 -0700947 erq->flags |= IW_ENCODE_ENABLED;
948
Johannes Berg05c914f2008-09-11 00:01:58 +0200949 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Emmanuel Grumbachb9fcc4f2008-06-24 13:37:59 +0300950 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
951 switch (ifsta->auth_alg) {
952 case WLAN_AUTH_OPEN:
953 case WLAN_AUTH_LEAP:
954 erq->flags |= IW_ENCODE_OPEN;
955 break;
956 case WLAN_AUTH_SHARED_KEY:
957 erq->flags |= IW_ENCODE_RESTRICTED;
958 break;
959 }
960 }
961
Jiri Bencf0706e82007-05-05 11:45:53 -0700962 return 0;
963}
964
Samuel Ortiz49292d52008-07-04 10:49:31 +0200965static int ieee80211_ioctl_siwpower(struct net_device *dev,
966 struct iw_request_info *info,
967 struct iw_param *wrq,
968 char *extra)
969{
970 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
971 struct ieee80211_conf *conf = &local->hw.conf;
972
973 if (wrq->disabled) {
974 conf->flags &= ~IEEE80211_CONF_PS;
Johannes Berge8975582008-10-09 12:18:51 +0200975 return ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Samuel Ortiz49292d52008-07-04 10:49:31 +0200976 }
977
978 switch (wrq->flags & IW_POWER_MODE) {
979 case IW_POWER_ON: /* If not specified */
980 case IW_POWER_MODE: /* If set all mask */
981 case IW_POWER_ALL_R: /* If explicitely state all */
982 conf->flags |= IEEE80211_CONF_PS;
983 break;
984 default: /* Otherwise we don't support it */
985 return -EINVAL;
986 }
987
Johannes Berge8975582008-10-09 12:18:51 +0200988 return ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Samuel Ortiz49292d52008-07-04 10:49:31 +0200989}
990
991static int ieee80211_ioctl_giwpower(struct net_device *dev,
992 struct iw_request_info *info,
993 union iwreq_data *wrqu,
994 char *extra)
995{
996 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
997 struct ieee80211_conf *conf = &local->hw.conf;
998
999 wrqu->power.disabled = !(conf->flags & IEEE80211_CONF_PS);
1000
1001 return 0;
1002}
1003
Jiri Bencf0706e82007-05-05 11:45:53 -07001004static int ieee80211_ioctl_siwauth(struct net_device *dev,
1005 struct iw_request_info *info,
1006 struct iw_param *data, char *extra)
1007{
Jiri Bencf0706e82007-05-05 11:45:53 -07001008 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1009 int ret = 0;
1010
1011 switch (data->flags & IW_AUTH_INDEX) {
1012 case IW_AUTH_WPA_VERSION:
1013 case IW_AUTH_CIPHER_PAIRWISE:
1014 case IW_AUTH_CIPHER_GROUP:
1015 case IW_AUTH_WPA_ENABLED:
1016 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
Jiri Bencf0706e82007-05-05 11:45:53 -07001017 case IW_AUTH_KEY_MGMT:
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001018 break;
Johannes Bergb1357a82007-11-28 11:04:21 +01001019 case IW_AUTH_DROP_UNENCRYPTED:
1020 sdata->drop_unencrypted = !!data->value;
1021 break;
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001022 case IW_AUTH_PRIVACY_INVOKED:
Johannes Berg05c914f2008-09-11 00:01:58 +02001023 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -07001024 ret = -EINVAL;
1025 else {
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001026 sdata->u.sta.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001027 /*
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001028 * Privacy invoked by wpa_supplicant, store the
1029 * value and allow associating to a protected
1030 * network without having a key up front.
Jiri Bencf0706e82007-05-05 11:45:53 -07001031 */
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001032 if (data->value)
1033 sdata->u.sta.flags |=
1034 IEEE80211_STA_PRIVACY_INVOKED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001035 }
1036 break;
1037 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg05c914f2008-09-11 00:01:58 +02001038 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
1039 sdata->vif.type == NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001040 sdata->u.sta.auth_algs = data->value;
1041 else
1042 ret = -EOPNOTSUPP;
1043 break;
Jiri Bencf0706e82007-05-05 11:45:53 -07001044 default:
1045 ret = -EOPNOTSUPP;
1046 break;
1047 }
1048 return ret;
1049}
1050
1051/* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
1052static struct iw_statistics *ieee80211_get_wireless_stats(struct net_device *dev)
1053{
1054 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1055 struct iw_statistics *wstats = &local->wstats;
1056 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1057 struct sta_info *sta = NULL;
1058
Johannes Berg98dd6a52008-04-10 15:36:09 +02001059 rcu_read_lock();
1060
Johannes Berg05c914f2008-09-11 00:01:58 +02001061 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
1062 sdata->vif.type == NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001063 sta = sta_info_get(local, sdata->u.sta.bssid);
1064 if (!sta) {
1065 wstats->discard.fragment = 0;
1066 wstats->discard.misc = 0;
1067 wstats->qual.qual = 0;
1068 wstats->qual.level = 0;
1069 wstats->qual.noise = 0;
1070 wstats->qual.updated = IW_QUAL_ALL_INVALID;
1071 } else {
Bruno Randolf566bfe52008-05-08 19:15:40 +02001072 wstats->qual.level = sta->last_signal;
1073 wstats->qual.qual = sta->last_qual;
Jiri Bencf0706e82007-05-05 11:45:53 -07001074 wstats->qual.noise = sta->last_noise;
1075 wstats->qual.updated = local->wstats_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001076 }
Johannes Berg98dd6a52008-04-10 15:36:09 +02001077
1078 rcu_read_unlock();
1079
Jiri Bencf0706e82007-05-05 11:45:53 -07001080 return wstats;
1081}
1082
1083static int ieee80211_ioctl_giwauth(struct net_device *dev,
1084 struct iw_request_info *info,
1085 struct iw_param *data, char *extra)
1086{
1087 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1088 int ret = 0;
1089
1090 switch (data->flags & IW_AUTH_INDEX) {
1091 case IW_AUTH_80211_AUTH_ALG:
Johannes Berg05c914f2008-09-11 00:01:58 +02001092 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
1093 sdata->vif.type == NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001094 data->value = sdata->u.sta.auth_algs;
1095 else
1096 ret = -EOPNOTSUPP;
1097 break;
1098 default:
1099 ret = -EOPNOTSUPP;
1100 break;
1101 }
1102 return ret;
1103}
1104
1105
1106static int ieee80211_ioctl_siwencodeext(struct net_device *dev,
1107 struct iw_request_info *info,
1108 struct iw_point *erq, char *extra)
1109{
1110 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1111 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
Johannes Berg628a1402007-09-26 17:53:17 +02001112 int uninitialized_var(alg), idx, i, remove = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001113
1114 switch (ext->alg) {
1115 case IW_ENCODE_ALG_NONE:
Johannes Berg628a1402007-09-26 17:53:17 +02001116 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001117 break;
1118 case IW_ENCODE_ALG_WEP:
1119 alg = ALG_WEP;
1120 break;
1121 case IW_ENCODE_ALG_TKIP:
1122 alg = ALG_TKIP;
1123 break;
1124 case IW_ENCODE_ALG_CCMP:
1125 alg = ALG_CCMP;
1126 break;
1127 default:
1128 return -EOPNOTSUPP;
1129 }
1130
1131 if (erq->flags & IW_ENCODE_DISABLED)
Johannes Berg628a1402007-09-26 17:53:17 +02001132 remove = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001133
1134 idx = erq->flags & IW_ENCODE_INDEX;
1135 if (idx < 1 || idx > 4) {
1136 idx = -1;
1137 if (!sdata->default_key)
1138 idx = 0;
1139 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1140 if (sdata->default_key == sdata->keys[i]) {
1141 idx = i;
1142 break;
1143 }
1144 }
1145 if (idx < 0)
1146 return -EINVAL;
1147 } else
1148 idx--;
1149
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001150 return ieee80211_set_encryption(sdata, ext->addr.sa_data, idx, alg,
Johannes Berg628a1402007-09-26 17:53:17 +02001151 remove,
Jiri Bencf0706e82007-05-05 11:45:53 -07001152 ext->ext_flags &
1153 IW_ENCODE_EXT_SET_TX_KEY,
1154 ext->key, ext->key_len);
1155}
1156
1157
Jiri Bencf0706e82007-05-05 11:45:53 -07001158/* Structures to export the Wireless Handlers */
1159
1160static const iw_handler ieee80211_handler[] =
1161{
1162 (iw_handler) NULL, /* SIOCSIWCOMMIT */
1163 (iw_handler) ieee80211_ioctl_giwname, /* SIOCGIWNAME */
1164 (iw_handler) NULL, /* SIOCSIWNWID */
1165 (iw_handler) NULL, /* SIOCGIWNWID */
1166 (iw_handler) ieee80211_ioctl_siwfreq, /* SIOCSIWFREQ */
1167 (iw_handler) ieee80211_ioctl_giwfreq, /* SIOCGIWFREQ */
1168 (iw_handler) ieee80211_ioctl_siwmode, /* SIOCSIWMODE */
1169 (iw_handler) ieee80211_ioctl_giwmode, /* SIOCGIWMODE */
1170 (iw_handler) NULL, /* SIOCSIWSENS */
1171 (iw_handler) NULL, /* SIOCGIWSENS */
1172 (iw_handler) NULL /* not used */, /* SIOCSIWRANGE */
1173 (iw_handler) ieee80211_ioctl_giwrange, /* SIOCGIWRANGE */
1174 (iw_handler) NULL /* not used */, /* SIOCSIWPRIV */
1175 (iw_handler) NULL /* kernel code */, /* SIOCGIWPRIV */
1176 (iw_handler) NULL /* not used */, /* SIOCSIWSTATS */
1177 (iw_handler) NULL /* kernel code */, /* SIOCGIWSTATS */
Johannes Berg5d4ecd92007-09-14 11:10:24 -04001178 (iw_handler) NULL, /* SIOCSIWSPY */
1179 (iw_handler) NULL, /* SIOCGIWSPY */
1180 (iw_handler) NULL, /* SIOCSIWTHRSPY */
1181 (iw_handler) NULL, /* SIOCGIWTHRSPY */
Jiri Bencf0706e82007-05-05 11:45:53 -07001182 (iw_handler) ieee80211_ioctl_siwap, /* SIOCSIWAP */
1183 (iw_handler) ieee80211_ioctl_giwap, /* SIOCGIWAP */
1184 (iw_handler) ieee80211_ioctl_siwmlme, /* SIOCSIWMLME */
1185 (iw_handler) NULL, /* SIOCGIWAPLIST */
1186 (iw_handler) ieee80211_ioctl_siwscan, /* SIOCSIWSCAN */
1187 (iw_handler) ieee80211_ioctl_giwscan, /* SIOCGIWSCAN */
1188 (iw_handler) ieee80211_ioctl_siwessid, /* SIOCSIWESSID */
1189 (iw_handler) ieee80211_ioctl_giwessid, /* SIOCGIWESSID */
1190 (iw_handler) NULL, /* SIOCSIWNICKN */
1191 (iw_handler) NULL, /* SIOCGIWNICKN */
1192 (iw_handler) NULL, /* -- hole -- */
1193 (iw_handler) NULL, /* -- hole -- */
Larry Finger1fd5e582007-07-10 19:32:10 +02001194 (iw_handler) ieee80211_ioctl_siwrate, /* SIOCSIWRATE */
Larry Fingerb3d88ad2007-06-10 17:57:33 -07001195 (iw_handler) ieee80211_ioctl_giwrate, /* SIOCGIWRATE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001196 (iw_handler) ieee80211_ioctl_siwrts, /* SIOCSIWRTS */
1197 (iw_handler) ieee80211_ioctl_giwrts, /* SIOCGIWRTS */
1198 (iw_handler) ieee80211_ioctl_siwfrag, /* SIOCSIWFRAG */
1199 (iw_handler) ieee80211_ioctl_giwfrag, /* SIOCGIWFRAG */
Michael Buesch61609bc2007-09-20 22:06:39 +02001200 (iw_handler) ieee80211_ioctl_siwtxpower, /* SIOCSIWTXPOW */
Larry Fingerfe6aa302007-08-10 11:23:20 -05001201 (iw_handler) ieee80211_ioctl_giwtxpower, /* SIOCGIWTXPOW */
Jiri Bencf0706e82007-05-05 11:45:53 -07001202 (iw_handler) ieee80211_ioctl_siwretry, /* SIOCSIWRETRY */
1203 (iw_handler) ieee80211_ioctl_giwretry, /* SIOCGIWRETRY */
1204 (iw_handler) ieee80211_ioctl_siwencode, /* SIOCSIWENCODE */
1205 (iw_handler) ieee80211_ioctl_giwencode, /* SIOCGIWENCODE */
Samuel Ortiz49292d52008-07-04 10:49:31 +02001206 (iw_handler) ieee80211_ioctl_siwpower, /* SIOCSIWPOWER */
1207 (iw_handler) ieee80211_ioctl_giwpower, /* SIOCGIWPOWER */
Jiri Bencf0706e82007-05-05 11:45:53 -07001208 (iw_handler) NULL, /* -- hole -- */
1209 (iw_handler) NULL, /* -- hole -- */
1210 (iw_handler) ieee80211_ioctl_siwgenie, /* SIOCSIWGENIE */
1211 (iw_handler) NULL, /* SIOCGIWGENIE */
1212 (iw_handler) ieee80211_ioctl_siwauth, /* SIOCSIWAUTH */
1213 (iw_handler) ieee80211_ioctl_giwauth, /* SIOCGIWAUTH */
1214 (iw_handler) ieee80211_ioctl_siwencodeext, /* SIOCSIWENCODEEXT */
1215 (iw_handler) NULL, /* SIOCGIWENCODEEXT */
1216 (iw_handler) NULL, /* SIOCSIWPMKSA */
1217 (iw_handler) NULL, /* -- hole -- */
1218};
1219
Jiri Bencf0706e82007-05-05 11:45:53 -07001220const struct iw_handler_def ieee80211_iw_handler_def =
1221{
1222 .num_standard = ARRAY_SIZE(ieee80211_handler),
Jiri Bencf0706e82007-05-05 11:45:53 -07001223 .standard = (iw_handler *) ieee80211_handler,
Jiri Bencf0706e82007-05-05 11:45:53 -07001224 .get_wireless_stats = ieee80211_get_wireless_stats,
1225};