2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
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.
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>
22 #include <net/mac80211.h>
23 #include "ieee80211_i.h"
24 #include "hostapd_ioctl.h"
25 #include "ieee80211_rate.h"
28 #include "debugfs_key.h"
30 static void ieee80211_set_hw_encryption(struct net_device *dev,
31 struct sta_info *sta, u8 addr[ETH_ALEN],
32 struct ieee80211_key *key)
34 struct ieee80211_key_conf *keyconf = NULL;
35 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
37 /* default to sw encryption; this will be cleared by low-level
38 * driver if the hw supports requested encryption */
40 key->force_sw_encrypt = 1;
42 if (key && local->ops->set_key &&
43 (keyconf = ieee80211_key_data2conf(local, key))) {
44 if (local->ops->set_key(local_to_hw(local), SET_KEY, addr,
45 keyconf, sta ? sta->aid : 0)) {
46 key->force_sw_encrypt = 1;
47 key->hw_key_idx = HW_KEY_IDX_INVALID;
49 key->force_sw_encrypt =
50 !!(keyconf->flags & IEEE80211_KEY_FORCE_SW_ENCRYPT);
60 static int ieee80211_set_encryption(struct net_device *dev, u8 *sta_addr,
61 int idx, int alg, int set_tx_key,
62 const u8 *_key, size_t key_len)
64 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
67 struct ieee80211_key *key, *old_key;
69 struct ieee80211_key_conf *keyconf;
70 struct ieee80211_sub_if_data *sdata;
72 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
74 if (is_broadcast_ether_addr(sta_addr)) {
76 if (idx >= NUM_DEFAULT_KEYS) {
77 printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d\n",
81 key = sdata->keys[idx];
83 /* TODO: consider adding hwaccel support for these; at least
84 * Atheros key cache should be able to handle this since AP is
85 * only transmitting frames with default keys. */
86 /* FIX: hw key cache can be used when only one virtual
87 * STA is associated with each AP. If more than one STA
88 * is associated to the same AP, software encryption
89 * must be used. This should be done automatically
90 * based on configured station devices. For the time
91 * being, this can be only set at compile time. */
95 printk(KERN_DEBUG "%s: set_encrypt - non-zero idx for "
96 "individual key\n", dev->name);
100 sta = sta_info_get(local, sta_addr);
102 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
103 printk(KERN_DEBUG "%s: set_encrypt - unknown addr "
105 dev->name, MAC_ARG(sta_addr));
106 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
115 * Cannot configure default hwaccel keys with WEP algorithm, if
116 * any of the virtual interfaces is using static WEP
117 * configuration because hwaccel would otherwise try to decrypt
120 * For now, just disable WEP hwaccel for broadcast when there is
121 * possibility of conflict with default keys. This can maybe later be
122 * optimized by using non-default keys (at least with Atheros ar521x).
124 if (!sta && alg == ALG_WEP && !local->default_wep_only &&
125 sdata->type != IEEE80211_IF_TYPE_IBSS &&
126 sdata->type != IEEE80211_IF_TYPE_AP) {
130 if (local->hw.flags & IEEE80211_HW_DEVICE_HIDES_WEP) {
131 /* Software encryption cannot be used with devices that hide
132 * encryption from the host system, so always try to use
133 * hardware acceleration with such devices. */
137 if ((local->hw.flags & IEEE80211_HW_NO_TKIP_WMM_HWACCEL) &&
139 if (sta && (sta->flags & WLAN_STA_WME)) {
140 /* Hardware does not support hwaccel with TKIP when using WMM.
144 else if (sdata->type == IEEE80211_IF_TYPE_STA) {
145 sta = sta_info_get(local, sdata->u.sta.bssid);
147 if (sta->flags & WLAN_STA_WME) {
156 if (alg == ALG_NONE) {
158 if (try_hwaccel && key &&
159 key->hw_key_idx != HW_KEY_IDX_INVALID &&
160 local->ops->set_key &&
161 (keyconf = ieee80211_key_data2conf(local, key)) != NULL &&
162 local->ops->set_key(local_to_hw(local), DISABLE_KEY,
163 sta_addr, keyconf, sta ? sta->aid : 0)) {
164 printk(KERN_DEBUG "%s: set_encrypt - low-level disable"
165 " failed\n", dev->name);
170 if (set_tx_key || sdata->default_key == key) {
171 ieee80211_debugfs_key_remove_default(sdata);
172 sdata->default_key = NULL;
174 ieee80211_debugfs_key_remove(key);
178 sdata->keys[idx] = NULL;
179 ieee80211_key_free(key);
183 key = ieee80211_key_alloc(sta ? NULL : sdata, idx, key_len,
190 /* default to sw encryption; low-level driver sets these if the
191 * requested encryption is supported */
192 key->hw_key_idx = HW_KEY_IDX_INVALID;
193 key->force_sw_encrypt = 1;
197 key->keylen = key_len;
198 memcpy(key->key, _key, key_len);
200 key->default_tx_key = 1;
202 if (alg == ALG_CCMP) {
203 /* Initialize AES key state here as an optimization
204 * so that it does not need to be initialized for every
206 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
208 if (!key->u.ccmp.tfm) {
214 if (set_tx_key || sdata->default_key == old_key) {
215 ieee80211_debugfs_key_remove_default(sdata);
216 sdata->default_key = NULL;
218 ieee80211_debugfs_key_remove(old_key);
222 sdata->keys[idx] = key;
223 ieee80211_key_free(old_key);
224 ieee80211_debugfs_key_add(local, key);
226 ieee80211_debugfs_key_sta_link(key, sta);
229 (alg == ALG_WEP || alg == ALG_TKIP || alg == ALG_CCMP))
230 ieee80211_set_hw_encryption(dev, sta, sta_addr, key);
233 if (set_tx_key || (!sta && !sdata->default_key && key)) {
234 sdata->default_key = key;
236 ieee80211_debugfs_key_add_default(sdata);
238 if (local->ops->set_key_idx &&
239 local->ops->set_key_idx(local_to_hw(local), idx))
240 printk(KERN_DEBUG "%s: failed to set TX key idx for "
241 "low-level driver\n", dev->name);
250 ieee80211_key_free(key);
257 static int ieee80211_ioctl_siwgenie(struct net_device *dev,
258 struct iw_request_info *info,
259 struct iw_point *data, char *extra)
261 struct ieee80211_sub_if_data *sdata;
262 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
264 if (local->user_space_mlme)
267 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
268 if (sdata->type == IEEE80211_IF_TYPE_STA ||
269 sdata->type == IEEE80211_IF_TYPE_IBSS) {
270 int ret = ieee80211_sta_set_extra_ie(dev, extra, data->length);
273 sdata->u.sta.auto_bssid_sel = 0;
274 ieee80211_sta_req_auth(dev, &sdata->u.sta);
278 if (sdata->type == IEEE80211_IF_TYPE_AP) {
279 kfree(sdata->u.ap.generic_elem);
280 sdata->u.ap.generic_elem = kmalloc(data->length, GFP_KERNEL);
281 if (!sdata->u.ap.generic_elem)
283 memcpy(sdata->u.ap.generic_elem, extra, data->length);
284 sdata->u.ap.generic_elem_len = data->length;
285 return ieee80211_if_config(dev);
290 static int ieee80211_ioctl_giwname(struct net_device *dev,
291 struct iw_request_info *info,
292 char *name, char *extra)
294 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
296 switch (local->hw.conf.phymode) {
297 case MODE_IEEE80211A:
298 strcpy(name, "IEEE 802.11a");
300 case MODE_IEEE80211B:
301 strcpy(name, "IEEE 802.11b");
303 case MODE_IEEE80211G:
304 strcpy(name, "IEEE 802.11g");
306 case MODE_ATHEROS_TURBO:
307 strcpy(name, "5GHz Turbo");
310 strcpy(name, "IEEE 802.11");
318 static int ieee80211_ioctl_giwrange(struct net_device *dev,
319 struct iw_request_info *info,
320 struct iw_point *data, char *extra)
322 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
323 struct iw_range *range = (struct iw_range *) extra;
324 struct ieee80211_hw_mode *mode = NULL;
327 data->length = sizeof(struct iw_range);
328 memset(range, 0, sizeof(struct iw_range));
330 range->we_version_compiled = WIRELESS_EXT;
331 range->we_version_source = 21;
332 range->retry_capa = IW_RETRY_LIMIT;
333 range->retry_flags = IW_RETRY_LIMIT;
334 range->min_retry = 0;
335 range->max_retry = 255;
337 range->max_rts = 2347;
338 range->min_frag = 256;
339 range->max_frag = 2346;
341 range->encoding_size[0] = 5;
342 range->encoding_size[1] = 13;
343 range->num_encoding_sizes = 2;
344 range->max_encoding_tokens = NUM_DEFAULT_KEYS;
346 range->max_qual.qual = local->hw.max_signal;
347 range->max_qual.level = local->hw.max_rssi;
348 range->max_qual.noise = local->hw.max_noise;
349 range->max_qual.updated = local->wstats_flags;
351 range->avg_qual.qual = local->hw.max_signal/2;
352 range->avg_qual.level = 0;
353 range->avg_qual.noise = 0;
354 range->avg_qual.updated = local->wstats_flags;
356 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
357 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
359 list_for_each_entry(mode, &local->modes_list, list) {
362 if (!(local->enabled_modes & (1 << mode->mode)) ||
363 (local->hw_modes & local->enabled_modes &
364 (1 << MODE_IEEE80211G) && mode->mode == MODE_IEEE80211B))
367 while (i < mode->num_channels && c < IW_MAX_FREQUENCIES) {
368 struct ieee80211_channel *chan = &mode->channels[i];
370 if (chan->flag & IEEE80211_CHAN_W_SCAN) {
371 range->freq[c].i = chan->chan;
372 range->freq[c].m = chan->freq * 100000;
373 range->freq[c].e = 1;
379 range->num_channels = c;
380 range->num_frequency = c;
382 IW_EVENT_CAPA_SET_KERNEL(range->event_capa);
383 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWTHRSPY);
384 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWAP);
385 IW_EVENT_CAPA_SET(range->event_capa, SIOCGIWSCAN);
391 static int ieee80211_ioctl_siwmode(struct net_device *dev,
392 struct iw_request_info *info,
393 __u32 *mode, char *extra)
395 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
398 if (sdata->type == IEEE80211_IF_TYPE_VLAN)
403 type = IEEE80211_IF_TYPE_STA;
406 type = IEEE80211_IF_TYPE_IBSS;
408 case IW_MODE_MONITOR:
409 type = IEEE80211_IF_TYPE_MNTR;
415 if (type == sdata->type)
417 if (netif_running(dev))
420 ieee80211_if_reinit(dev);
421 ieee80211_if_set_type(dev, type);
427 static int ieee80211_ioctl_giwmode(struct net_device *dev,
428 struct iw_request_info *info,
429 __u32 *mode, char *extra)
431 struct ieee80211_sub_if_data *sdata;
433 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
434 switch (sdata->type) {
435 case IEEE80211_IF_TYPE_AP:
436 *mode = IW_MODE_MASTER;
438 case IEEE80211_IF_TYPE_STA:
439 *mode = IW_MODE_INFRA;
441 case IEEE80211_IF_TYPE_IBSS:
442 *mode = IW_MODE_ADHOC;
444 case IEEE80211_IF_TYPE_MNTR:
445 *mode = IW_MODE_MONITOR;
447 case IEEE80211_IF_TYPE_WDS:
448 *mode = IW_MODE_REPEAT;
450 case IEEE80211_IF_TYPE_VLAN:
451 *mode = IW_MODE_SECOND; /* FIXME */
454 *mode = IW_MODE_AUTO;
460 int ieee80211_set_channel(struct ieee80211_local *local, int channel, int freq)
462 struct ieee80211_hw_mode *mode;
466 list_for_each_entry(mode, &local->modes_list, list) {
467 if (!(local->enabled_modes & (1 << mode->mode)))
469 for (c = 0; c < mode->num_channels; c++) {
470 struct ieee80211_channel *chan = &mode->channels[c];
471 if (chan->flag & IEEE80211_CHAN_W_SCAN &&
472 ((chan->chan == channel) || (chan->freq == freq))) {
473 /* Use next_mode as the mode preference to
474 * resolve non-unique channel numbers. */
475 if (set && mode->mode != local->next_mode)
478 local->oper_channel = chan;
479 local->oper_hw_mode = mode;
486 if (local->sta_scanning)
489 ret = ieee80211_hw_config(local);
491 rate_control_clear(local);
497 static int ieee80211_ioctl_siwfreq(struct net_device *dev,
498 struct iw_request_info *info,
499 struct iw_freq *freq, char *extra)
501 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
502 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
504 if (sdata->type == IEEE80211_IF_TYPE_STA)
505 sdata->u.sta.auto_channel_sel = 0;
507 /* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
510 if (sdata->type == IEEE80211_IF_TYPE_STA)
511 sdata->u.sta.auto_channel_sel = 1;
514 return ieee80211_set_channel(local, freq->m, -1);
516 int i, div = 1000000;
517 for (i = 0; i < freq->e; i++)
520 return ieee80211_set_channel(local, -1, freq->m / div);
527 static int ieee80211_ioctl_giwfreq(struct net_device *dev,
528 struct iw_request_info *info,
529 struct iw_freq *freq, char *extra)
531 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
533 /* TODO: in station mode (Managed/Ad-hoc) might need to poll low-level
534 * driver for the current channel with firmware-based management */
536 freq->m = local->hw.conf.freq;
543 static int ieee80211_ioctl_siwessid(struct net_device *dev,
544 struct iw_request_info *info,
545 struct iw_point *data, char *ssid)
547 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
548 struct ieee80211_sub_if_data *sdata;
549 size_t len = data->length;
551 /* iwconfig uses nul termination in SSID.. */
552 if (len > 0 && ssid[len - 1] == '\0')
555 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
556 if (sdata->type == IEEE80211_IF_TYPE_STA ||
557 sdata->type == IEEE80211_IF_TYPE_IBSS) {
559 if (local->user_space_mlme) {
560 if (len > IEEE80211_MAX_SSID_LEN)
562 memcpy(sdata->u.sta.ssid, ssid, len);
563 sdata->u.sta.ssid_len = len;
566 sdata->u.sta.auto_ssid_sel = !data->flags;
567 ret = ieee80211_sta_set_ssid(dev, ssid, len);
570 ieee80211_sta_req_auth(dev, &sdata->u.sta);
574 if (sdata->type == IEEE80211_IF_TYPE_AP) {
575 memcpy(sdata->u.ap.ssid, ssid, len);
576 memset(sdata->u.ap.ssid + len, 0,
577 IEEE80211_MAX_SSID_LEN - len);
578 sdata->u.ap.ssid_len = len;
579 return ieee80211_if_config(dev);
585 static int ieee80211_ioctl_giwessid(struct net_device *dev,
586 struct iw_request_info *info,
587 struct iw_point *data, char *ssid)
591 struct ieee80211_sub_if_data *sdata;
592 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
593 if (sdata->type == IEEE80211_IF_TYPE_STA ||
594 sdata->type == IEEE80211_IF_TYPE_IBSS) {
595 int res = ieee80211_sta_get_ssid(dev, ssid, &len);
604 if (sdata->type == IEEE80211_IF_TYPE_AP) {
605 len = sdata->u.ap.ssid_len;
606 if (len > IW_ESSID_MAX_SIZE)
607 len = IW_ESSID_MAX_SIZE;
608 memcpy(ssid, sdata->u.ap.ssid, len);
617 static int ieee80211_ioctl_siwap(struct net_device *dev,
618 struct iw_request_info *info,
619 struct sockaddr *ap_addr, char *extra)
621 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
622 struct ieee80211_sub_if_data *sdata;
624 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
625 if (sdata->type == IEEE80211_IF_TYPE_STA ||
626 sdata->type == IEEE80211_IF_TYPE_IBSS) {
628 if (local->user_space_mlme) {
629 memcpy(sdata->u.sta.bssid, (u8 *) &ap_addr->sa_data,
633 if (is_zero_ether_addr((u8 *) &ap_addr->sa_data)) {
634 sdata->u.sta.auto_bssid_sel = 1;
635 sdata->u.sta.auto_channel_sel = 1;
636 } else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
637 sdata->u.sta.auto_bssid_sel = 1;
639 sdata->u.sta.auto_bssid_sel = 0;
640 ret = ieee80211_sta_set_bssid(dev, (u8 *) &ap_addr->sa_data);
643 ieee80211_sta_req_auth(dev, &sdata->u.sta);
645 } else if (sdata->type == IEEE80211_IF_TYPE_WDS) {
646 if (memcmp(sdata->u.wds.remote_addr, (u8 *) &ap_addr->sa_data,
649 return ieee80211_if_update_wds(dev, (u8 *) &ap_addr->sa_data);
656 static int ieee80211_ioctl_giwap(struct net_device *dev,
657 struct iw_request_info *info,
658 struct sockaddr *ap_addr, char *extra)
660 struct ieee80211_sub_if_data *sdata;
662 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
663 if (sdata->type == IEEE80211_IF_TYPE_STA ||
664 sdata->type == IEEE80211_IF_TYPE_IBSS) {
665 ap_addr->sa_family = ARPHRD_ETHER;
666 memcpy(&ap_addr->sa_data, sdata->u.sta.bssid, ETH_ALEN);
668 } else if (sdata->type == IEEE80211_IF_TYPE_WDS) {
669 ap_addr->sa_family = ARPHRD_ETHER;
670 memcpy(&ap_addr->sa_data, sdata->u.wds.remote_addr, ETH_ALEN);
678 static int ieee80211_ioctl_siwscan(struct net_device *dev,
679 struct iw_request_info *info,
680 struct iw_point *data, char *extra)
682 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
683 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
687 if (!netif_running(dev))
690 switch (sdata->type) {
691 case IEEE80211_IF_TYPE_STA:
692 case IEEE80211_IF_TYPE_IBSS:
693 if (local->scan_flags & IEEE80211_SCAN_MATCH_SSID) {
694 ssid = sdata->u.sta.ssid;
695 ssid_len = sdata->u.sta.ssid_len;
698 case IEEE80211_IF_TYPE_AP:
699 if (local->scan_flags & IEEE80211_SCAN_MATCH_SSID) {
700 ssid = sdata->u.ap.ssid;
701 ssid_len = sdata->u.ap.ssid_len;
708 return ieee80211_sta_req_scan(dev, ssid, ssid_len);
712 static int ieee80211_ioctl_giwscan(struct net_device *dev,
713 struct iw_request_info *info,
714 struct iw_point *data, char *extra)
717 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
718 if (local->sta_scanning)
720 res = ieee80211_sta_scan_results(dev, extra, data->length);
730 static int ieee80211_ioctl_siwrate(struct net_device *dev,
731 struct iw_request_info *info,
732 struct iw_param *rate, char *extra)
734 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
735 struct ieee80211_hw_mode *mode;
737 u32 target_rate = rate->value / 100000;
738 struct ieee80211_sub_if_data *sdata;
740 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
743 mode = local->oper_hw_mode;
744 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
745 * target_rate = X, rate->fixed = 1 means only rate X
746 * target_rate = X, rate->fixed = 0 means all rates <= X */
747 sdata->bss->max_ratectrl_rateidx = -1;
748 sdata->bss->force_unicast_rateidx = -1;
751 for (i=0; i< mode->num_rates; i++) {
752 struct ieee80211_rate *rates = &mode->rates[i];
753 int this_rate = rates->rate;
755 if (mode->mode == MODE_ATHEROS_TURBO ||
756 mode->mode == MODE_ATHEROS_TURBOG)
758 if (target_rate == this_rate) {
759 sdata->bss->max_ratectrl_rateidx = i;
761 sdata->bss->force_unicast_rateidx = i;
768 static int ieee80211_ioctl_giwrate(struct net_device *dev,
769 struct iw_request_info *info,
770 struct iw_param *rate, char *extra)
772 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
773 struct sta_info *sta;
774 struct ieee80211_sub_if_data *sdata;
776 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
777 if (sdata->type == IEEE80211_IF_TYPE_STA)
778 sta = sta_info_get(local, sdata->u.sta.bssid);
783 if (sta->txrate < local->oper_hw_mode->num_rates)
784 rate->value = local->oper_hw_mode->rates[sta->txrate].rate * 100000;
791 static int ieee80211_ioctl_giwtxpower(struct net_device *dev,
792 struct iw_request_info *info,
793 union iwreq_data *data, char *extra)
795 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
797 data->txpower.fixed = 1;
798 data->txpower.disabled = !(local->hw.conf.radio_enabled);
799 data->txpower.value = local->hw.conf.power_level;
800 data->txpower.flags = IW_TXPOW_DBM;
805 static int ieee80211_ioctl_siwrts(struct net_device *dev,
806 struct iw_request_info *info,
807 struct iw_param *rts, char *extra)
809 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
812 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
813 else if (rts->value < 0 || rts->value > IEEE80211_MAX_RTS_THRESHOLD)
816 local->rts_threshold = rts->value;
818 /* If the wlan card performs RTS/CTS in hardware/firmware,
819 * configure it here */
821 if (local->ops->set_rts_threshold)
822 local->ops->set_rts_threshold(local_to_hw(local),
823 local->rts_threshold);
828 static int ieee80211_ioctl_giwrts(struct net_device *dev,
829 struct iw_request_info *info,
830 struct iw_param *rts, char *extra)
832 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
834 rts->value = local->rts_threshold;
835 rts->disabled = (rts->value >= IEEE80211_MAX_RTS_THRESHOLD);
842 static int ieee80211_ioctl_siwfrag(struct net_device *dev,
843 struct iw_request_info *info,
844 struct iw_param *frag, char *extra)
846 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
849 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
850 else if (frag->value < 256 ||
851 frag->value > IEEE80211_MAX_FRAG_THRESHOLD)
854 /* Fragment length must be even, so strip LSB. */
855 local->fragmentation_threshold = frag->value & ~0x1;
858 /* If the wlan card performs fragmentation in hardware/firmware,
859 * configure it here */
861 if (local->ops->set_frag_threshold)
862 local->ops->set_frag_threshold(
864 local->fragmentation_threshold);
869 static int ieee80211_ioctl_giwfrag(struct net_device *dev,
870 struct iw_request_info *info,
871 struct iw_param *frag, char *extra)
873 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
875 frag->value = local->fragmentation_threshold;
876 frag->disabled = (frag->value >= IEEE80211_MAX_RTS_THRESHOLD);
883 static int ieee80211_ioctl_siwretry(struct net_device *dev,
884 struct iw_request_info *info,
885 struct iw_param *retry, char *extra)
887 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
889 if (retry->disabled ||
890 (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
893 if (retry->flags & IW_RETRY_MAX)
894 local->long_retry_limit = retry->value;
895 else if (retry->flags & IW_RETRY_MIN)
896 local->short_retry_limit = retry->value;
898 local->long_retry_limit = retry->value;
899 local->short_retry_limit = retry->value;
902 if (local->ops->set_retry_limit) {
903 return local->ops->set_retry_limit(
905 local->short_retry_limit,
906 local->long_retry_limit);
913 static int ieee80211_ioctl_giwretry(struct net_device *dev,
914 struct iw_request_info *info,
915 struct iw_param *retry, char *extra)
917 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
920 if (retry->flags == 0 || retry->flags & IW_RETRY_MIN) {
921 /* first return min value, iwconfig will ask max value
923 retry->flags |= IW_RETRY_LIMIT;
924 retry->value = local->short_retry_limit;
925 if (local->long_retry_limit != local->short_retry_limit)
926 retry->flags |= IW_RETRY_MIN;
929 if (retry->flags & IW_RETRY_MAX) {
930 retry->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
931 retry->value = local->long_retry_limit;
937 static void ieee80211_key_enable_hwaccel(struct ieee80211_local *local,
938 struct ieee80211_key *key)
940 struct ieee80211_key_conf *keyconf;
943 if (!key || key->alg != ALG_WEP || !key->force_sw_encrypt ||
944 (local->hw.flags & IEEE80211_HW_DEVICE_HIDES_WEP))
947 memset(addr, 0xff, ETH_ALEN);
948 keyconf = ieee80211_key_data2conf(local, key);
949 if (keyconf && local->ops->set_key &&
950 local->ops->set_key(local_to_hw(local),
951 SET_KEY, addr, keyconf, 0) == 0) {
952 key->force_sw_encrypt =
953 !!(keyconf->flags & IEEE80211_KEY_FORCE_SW_ENCRYPT);
954 key->hw_key_idx = keyconf->hw_key_idx;
960 static void ieee80211_key_disable_hwaccel(struct ieee80211_local *local,
961 struct ieee80211_key *key)
963 struct ieee80211_key_conf *keyconf;
966 if (!key || key->alg != ALG_WEP || key->force_sw_encrypt ||
967 (local->hw.flags & IEEE80211_HW_DEVICE_HIDES_WEP))
970 memset(addr, 0xff, ETH_ALEN);
971 keyconf = ieee80211_key_data2conf(local, key);
972 if (keyconf && local->ops->set_key)
973 local->ops->set_key(local_to_hw(local), DISABLE_KEY,
976 key->force_sw_encrypt = 1;
980 static int ieee80211_ioctl_default_wep_only(struct ieee80211_local *local,
984 struct ieee80211_sub_if_data *sdata;
986 local->default_wep_only = value;
987 read_lock(&local->sub_if_lock);
988 list_for_each_entry(sdata, &local->sub_if_list, list)
989 for (i = 0; i < NUM_DEFAULT_KEYS; i++)
991 ieee80211_key_enable_hwaccel(local,
994 ieee80211_key_disable_hwaccel(local,
996 read_unlock(&local->sub_if_lock);
1002 void ieee80211_update_default_wep_only(struct ieee80211_local *local)
1005 struct ieee80211_sub_if_data *sdata;
1007 read_lock(&local->sub_if_lock);
1008 list_for_each_entry(sdata, &local->sub_if_list, list) {
1010 if (sdata->dev == local->mdev)
1013 /* If there is an AP interface then depend on userspace to
1014 set default_wep_only correctly. */
1015 if (sdata->type == IEEE80211_IF_TYPE_AP) {
1016 read_unlock(&local->sub_if_lock);
1023 read_unlock(&local->sub_if_lock);
1026 ieee80211_ioctl_default_wep_only(local, 1);
1028 ieee80211_ioctl_default_wep_only(local, 0);
1032 static int ieee80211_ioctl_prism2_param(struct net_device *dev,
1033 struct iw_request_info *info,
1034 void *wrqu, char *extra)
1036 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1037 struct ieee80211_sub_if_data *sdata;
1038 int *i = (int *) extra;
1040 int value = *(i + 1);
1043 if (!capable(CAP_NET_ADMIN))
1046 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1049 case PRISM2_PARAM_IEEE_802_1X:
1050 if (local->ops->set_ieee8021x)
1051 ret = local->ops->set_ieee8021x(local_to_hw(local),
1054 printk(KERN_DEBUG "%s: failed to set IEEE 802.1X (%d) "
1055 "for low-level driver\n", dev->name, value);
1057 sdata->ieee802_1x = value;
1060 case PRISM2_PARAM_CTS_PROTECT_ERP_FRAMES:
1061 if (sdata->type == IEEE80211_IF_TYPE_AP) {
1062 sdata->use_protection = !!value;
1063 ieee80211_erp_info_change_notify(dev, IEEE80211_ERP_CHANGE_PROTECTION);
1069 case PRISM2_PARAM_PREAMBLE:
1070 if (sdata->type != IEEE80211_IF_TYPE_AP) {
1071 sdata->short_preamble = !!value;
1072 ieee80211_erp_info_change_notify(dev, IEEE80211_ERP_CHANGE_PREAMBLE);
1078 case PRISM2_PARAM_SHORT_SLOT_TIME:
1080 local->hw.conf.flags |= IEEE80211_CONF_SHORT_SLOT_TIME;
1082 local->hw.conf.flags &= ~IEEE80211_CONF_SHORT_SLOT_TIME;
1083 if (ieee80211_hw_config(local))
1087 case PRISM2_PARAM_NEXT_MODE:
1088 local->next_mode = value;
1091 case PRISM2_PARAM_STA_ANTENNA_SEL:
1092 local->sta_antenna_sel = value;
1095 case PRISM2_PARAM_TX_POWER_REDUCTION:
1099 local->hw.conf.tx_power_reduction = value;
1102 case PRISM2_PARAM_KEY_TX_RX_THRESHOLD:
1103 local->key_tx_rx_threshold = value;
1106 case PRISM2_PARAM_DEFAULT_WEP_ONLY:
1107 ret = ieee80211_ioctl_default_wep_only(local, value);
1110 case PRISM2_PARAM_WIFI_WME_NOACK_TEST:
1111 local->wifi_wme_noack_test = value;
1114 case PRISM2_PARAM_SCAN_FLAGS:
1115 local->scan_flags = value;
1118 case PRISM2_PARAM_MIXED_CELL:
1119 if (sdata->type != IEEE80211_IF_TYPE_STA &&
1120 sdata->type != IEEE80211_IF_TYPE_IBSS)
1123 sdata->u.sta.mixed_cell = !!value;
1126 case PRISM2_PARAM_HW_MODES:
1127 local->enabled_modes = value;
1130 case PRISM2_PARAM_CREATE_IBSS:
1131 if (sdata->type != IEEE80211_IF_TYPE_IBSS)
1134 sdata->u.sta.create_ibss = !!value;
1136 case PRISM2_PARAM_WMM_ENABLED:
1137 if (sdata->type != IEEE80211_IF_TYPE_STA &&
1138 sdata->type != IEEE80211_IF_TYPE_IBSS)
1141 sdata->u.sta.wmm_enabled = !!value;
1143 case PRISM2_PARAM_RADAR_DETECT:
1144 local->hw.conf.radar_detect = value;
1146 case PRISM2_PARAM_SPECTRUM_MGMT:
1147 local->hw.conf.spect_mgmt = value;
1158 static int ieee80211_ioctl_get_prism2_param(struct net_device *dev,
1159 struct iw_request_info *info,
1160 void *wrqu, char *extra)
1162 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1163 struct ieee80211_sub_if_data *sdata;
1164 int *param = (int *) extra;
1167 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1170 case PRISM2_PARAM_IEEE_802_1X:
1171 *param = sdata->ieee802_1x;
1174 case PRISM2_PARAM_CTS_PROTECT_ERP_FRAMES:
1175 *param = sdata->use_protection;
1178 case PRISM2_PARAM_PREAMBLE:
1179 *param = sdata->short_preamble;
1182 case PRISM2_PARAM_SHORT_SLOT_TIME:
1183 *param = !!(local->hw.conf.flags & IEEE80211_CONF_SHORT_SLOT_TIME);
1186 case PRISM2_PARAM_NEXT_MODE:
1187 *param = local->next_mode;
1190 case PRISM2_PARAM_STA_ANTENNA_SEL:
1191 *param = local->sta_antenna_sel;
1194 case PRISM2_PARAM_TX_POWER_REDUCTION:
1195 *param = local->hw.conf.tx_power_reduction;
1198 case PRISM2_PARAM_KEY_TX_RX_THRESHOLD:
1199 *param = local->key_tx_rx_threshold;
1202 case PRISM2_PARAM_DEFAULT_WEP_ONLY:
1203 *param = local->default_wep_only;
1206 case PRISM2_PARAM_WIFI_WME_NOACK_TEST:
1207 *param = local->wifi_wme_noack_test;
1210 case PRISM2_PARAM_SCAN_FLAGS:
1211 *param = local->scan_flags;
1214 case PRISM2_PARAM_HW_MODES:
1215 *param = local->enabled_modes;
1218 case PRISM2_PARAM_CREATE_IBSS:
1219 if (sdata->type != IEEE80211_IF_TYPE_IBSS)
1222 *param = !!sdata->u.sta.create_ibss;
1225 case PRISM2_PARAM_MIXED_CELL:
1226 if (sdata->type != IEEE80211_IF_TYPE_STA &&
1227 sdata->type != IEEE80211_IF_TYPE_IBSS)
1230 *param = !!sdata->u.sta.mixed_cell;
1232 case PRISM2_PARAM_WMM_ENABLED:
1233 if (sdata->type != IEEE80211_IF_TYPE_STA &&
1234 sdata->type != IEEE80211_IF_TYPE_IBSS)
1237 *param = !!sdata->u.sta.wmm_enabled;
1247 static int ieee80211_ioctl_siwmlme(struct net_device *dev,
1248 struct iw_request_info *info,
1249 struct iw_point *data, char *extra)
1251 struct ieee80211_sub_if_data *sdata;
1252 struct iw_mlme *mlme = (struct iw_mlme *) extra;
1254 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1255 if (sdata->type != IEEE80211_IF_TYPE_STA &&
1256 sdata->type != IEEE80211_IF_TYPE_IBSS)
1259 switch (mlme->cmd) {
1260 case IW_MLME_DEAUTH:
1261 /* TODO: mlme->addr.sa_data */
1262 return ieee80211_sta_deauthenticate(dev, mlme->reason_code);
1263 case IW_MLME_DISASSOC:
1264 /* TODO: mlme->addr.sa_data */
1265 return ieee80211_sta_disassociate(dev, mlme->reason_code);
1272 static int ieee80211_ioctl_siwencode(struct net_device *dev,
1273 struct iw_request_info *info,
1274 struct iw_point *erq, char *keybuf)
1276 struct ieee80211_sub_if_data *sdata;
1277 int idx, i, alg = ALG_WEP;
1278 u8 bcaddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
1280 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1282 idx = erq->flags & IW_ENCODE_INDEX;
1284 if (sdata->default_key)
1285 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1286 if (sdata->default_key == sdata->keys[i]) {
1291 } else if (idx < 1 || idx > 4)
1296 if (erq->flags & IW_ENCODE_DISABLED)
1298 else if (erq->length == 0) {
1299 /* No key data - just set the default TX key index */
1300 if (sdata->default_key != sdata->keys[idx]) {
1301 ieee80211_debugfs_key_remove_default(sdata);
1302 sdata->default_key = sdata->keys[idx];
1303 if (sdata->default_key)
1304 ieee80211_debugfs_key_add_default(sdata);
1309 return ieee80211_set_encryption(
1312 !sdata->default_key,
1313 keybuf, erq->length);
1317 static int ieee80211_ioctl_giwencode(struct net_device *dev,
1318 struct iw_request_info *info,
1319 struct iw_point *erq, char *key)
1321 struct ieee80211_sub_if_data *sdata;
1324 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1326 idx = erq->flags & IW_ENCODE_INDEX;
1327 if (idx < 1 || idx > 4) {
1329 if (!sdata->default_key)
1331 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1332 if (sdata->default_key == sdata->keys[i]) {
1342 erq->flags = idx + 1;
1344 if (!sdata->keys[idx]) {
1346 erq->flags |= IW_ENCODE_DISABLED;
1350 memcpy(key, sdata->keys[idx]->key,
1351 min((int)erq->length, sdata->keys[idx]->keylen));
1352 erq->length = sdata->keys[idx]->keylen;
1353 erq->flags |= IW_ENCODE_ENABLED;
1358 static int ieee80211_ioctl_siwauth(struct net_device *dev,
1359 struct iw_request_info *info,
1360 struct iw_param *data, char *extra)
1362 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1363 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1366 switch (data->flags & IW_AUTH_INDEX) {
1367 case IW_AUTH_WPA_VERSION:
1368 case IW_AUTH_CIPHER_PAIRWISE:
1369 case IW_AUTH_CIPHER_GROUP:
1370 case IW_AUTH_WPA_ENABLED:
1371 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
1373 case IW_AUTH_KEY_MGMT:
1374 if (sdata->type != IEEE80211_IF_TYPE_STA)
1378 * TODO: sdata->u.sta.key_mgmt does not match with WE18
1379 * value completely; could consider modifying this to
1380 * be closer to WE18. For now, this value is not really
1381 * used for anything else than Privacy matching, so the
1382 * current code here should be more or less OK.
1384 if (data->value & IW_AUTH_KEY_MGMT_802_1X) {
1385 sdata->u.sta.key_mgmt =
1386 IEEE80211_KEY_MGMT_WPA_EAP;
1387 } else if (data->value & IW_AUTH_KEY_MGMT_PSK) {
1388 sdata->u.sta.key_mgmt =
1389 IEEE80211_KEY_MGMT_WPA_PSK;
1391 sdata->u.sta.key_mgmt =
1392 IEEE80211_KEY_MGMT_NONE;
1396 case IW_AUTH_80211_AUTH_ALG:
1397 if (sdata->type == IEEE80211_IF_TYPE_STA ||
1398 sdata->type == IEEE80211_IF_TYPE_IBSS)
1399 sdata->u.sta.auth_algs = data->value;
1403 case IW_AUTH_PRIVACY_INVOKED:
1404 if (local->ops->set_privacy_invoked)
1405 ret = local->ops->set_privacy_invoked(
1406 local_to_hw(local), data->value);
1415 /* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
1416 static struct iw_statistics *ieee80211_get_wireless_stats(struct net_device *dev)
1418 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1419 struct iw_statistics *wstats = &local->wstats;
1420 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1421 struct sta_info *sta = NULL;
1423 if (sdata->type == IEEE80211_IF_TYPE_STA ||
1424 sdata->type == IEEE80211_IF_TYPE_IBSS)
1425 sta = sta_info_get(local, sdata->u.sta.bssid);
1427 wstats->discard.fragment = 0;
1428 wstats->discard.misc = 0;
1429 wstats->qual.qual = 0;
1430 wstats->qual.level = 0;
1431 wstats->qual.noise = 0;
1432 wstats->qual.updated = IW_QUAL_ALL_INVALID;
1434 wstats->qual.level = sta->last_rssi;
1435 wstats->qual.qual = sta->last_signal;
1436 wstats->qual.noise = sta->last_noise;
1437 wstats->qual.updated = local->wstats_flags;
1443 static int ieee80211_ioctl_giwauth(struct net_device *dev,
1444 struct iw_request_info *info,
1445 struct iw_param *data, char *extra)
1447 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1450 switch (data->flags & IW_AUTH_INDEX) {
1451 case IW_AUTH_80211_AUTH_ALG:
1452 if (sdata->type == IEEE80211_IF_TYPE_STA ||
1453 sdata->type == IEEE80211_IF_TYPE_IBSS)
1454 data->value = sdata->u.sta.auth_algs;
1466 static int ieee80211_ioctl_siwencodeext(struct net_device *dev,
1467 struct iw_request_info *info,
1468 struct iw_point *erq, char *extra)
1470 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1471 struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
1475 case IW_ENCODE_ALG_NONE:
1478 case IW_ENCODE_ALG_WEP:
1481 case IW_ENCODE_ALG_TKIP:
1484 case IW_ENCODE_ALG_CCMP:
1491 if (erq->flags & IW_ENCODE_DISABLED)
1494 idx = erq->flags & IW_ENCODE_INDEX;
1495 if (idx < 1 || idx > 4) {
1497 if (!sdata->default_key)
1499 else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1500 if (sdata->default_key == sdata->keys[i]) {
1510 return ieee80211_set_encryption(dev, ext->addr.sa_data, idx, alg,
1512 IW_ENCODE_EXT_SET_TX_KEY,
1513 ext->key, ext->key_len);
1517 static const struct iw_priv_args ieee80211_ioctl_priv[] = {
1518 { PRISM2_IOCTL_PRISM2_PARAM,
1519 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "param" },
1520 { PRISM2_IOCTL_GET_PRISM2_PARAM,
1521 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
1522 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, "get_param" },
1525 /* Structures to export the Wireless Handlers */
1527 static const iw_handler ieee80211_handler[] =
1529 (iw_handler) NULL, /* SIOCSIWCOMMIT */
1530 (iw_handler) ieee80211_ioctl_giwname, /* SIOCGIWNAME */
1531 (iw_handler) NULL, /* SIOCSIWNWID */
1532 (iw_handler) NULL, /* SIOCGIWNWID */
1533 (iw_handler) ieee80211_ioctl_siwfreq, /* SIOCSIWFREQ */
1534 (iw_handler) ieee80211_ioctl_giwfreq, /* SIOCGIWFREQ */
1535 (iw_handler) ieee80211_ioctl_siwmode, /* SIOCSIWMODE */
1536 (iw_handler) ieee80211_ioctl_giwmode, /* SIOCGIWMODE */
1537 (iw_handler) NULL, /* SIOCSIWSENS */
1538 (iw_handler) NULL, /* SIOCGIWSENS */
1539 (iw_handler) NULL /* not used */, /* SIOCSIWRANGE */
1540 (iw_handler) ieee80211_ioctl_giwrange, /* SIOCGIWRANGE */
1541 (iw_handler) NULL /* not used */, /* SIOCSIWPRIV */
1542 (iw_handler) NULL /* kernel code */, /* SIOCGIWPRIV */
1543 (iw_handler) NULL /* not used */, /* SIOCSIWSTATS */
1544 (iw_handler) NULL /* kernel code */, /* SIOCGIWSTATS */
1545 iw_handler_set_spy, /* SIOCSIWSPY */
1546 iw_handler_get_spy, /* SIOCGIWSPY */
1547 iw_handler_set_thrspy, /* SIOCSIWTHRSPY */
1548 iw_handler_get_thrspy, /* SIOCGIWTHRSPY */
1549 (iw_handler) ieee80211_ioctl_siwap, /* SIOCSIWAP */
1550 (iw_handler) ieee80211_ioctl_giwap, /* SIOCGIWAP */
1551 (iw_handler) ieee80211_ioctl_siwmlme, /* SIOCSIWMLME */
1552 (iw_handler) NULL, /* SIOCGIWAPLIST */
1553 (iw_handler) ieee80211_ioctl_siwscan, /* SIOCSIWSCAN */
1554 (iw_handler) ieee80211_ioctl_giwscan, /* SIOCGIWSCAN */
1555 (iw_handler) ieee80211_ioctl_siwessid, /* SIOCSIWESSID */
1556 (iw_handler) ieee80211_ioctl_giwessid, /* SIOCGIWESSID */
1557 (iw_handler) NULL, /* SIOCSIWNICKN */
1558 (iw_handler) NULL, /* SIOCGIWNICKN */
1559 (iw_handler) NULL, /* -- hole -- */
1560 (iw_handler) NULL, /* -- hole -- */
1561 (iw_handler) ieee80211_ioctl_siwrate, /* SIOCSIWRATE */
1562 (iw_handler) ieee80211_ioctl_giwrate, /* SIOCGIWRATE */
1563 (iw_handler) ieee80211_ioctl_siwrts, /* SIOCSIWRTS */
1564 (iw_handler) ieee80211_ioctl_giwrts, /* SIOCGIWRTS */
1565 (iw_handler) ieee80211_ioctl_siwfrag, /* SIOCSIWFRAG */
1566 (iw_handler) ieee80211_ioctl_giwfrag, /* SIOCGIWFRAG */
1567 (iw_handler) NULL, /* SIOCSIWTXPOW */
1568 (iw_handler) ieee80211_ioctl_giwtxpower, /* SIOCGIWTXPOW */
1569 (iw_handler) ieee80211_ioctl_siwretry, /* SIOCSIWRETRY */
1570 (iw_handler) ieee80211_ioctl_giwretry, /* SIOCGIWRETRY */
1571 (iw_handler) ieee80211_ioctl_siwencode, /* SIOCSIWENCODE */
1572 (iw_handler) ieee80211_ioctl_giwencode, /* SIOCGIWENCODE */
1573 (iw_handler) NULL, /* SIOCSIWPOWER */
1574 (iw_handler) NULL, /* SIOCGIWPOWER */
1575 (iw_handler) NULL, /* -- hole -- */
1576 (iw_handler) NULL, /* -- hole -- */
1577 (iw_handler) ieee80211_ioctl_siwgenie, /* SIOCSIWGENIE */
1578 (iw_handler) NULL, /* SIOCGIWGENIE */
1579 (iw_handler) ieee80211_ioctl_siwauth, /* SIOCSIWAUTH */
1580 (iw_handler) ieee80211_ioctl_giwauth, /* SIOCGIWAUTH */
1581 (iw_handler) ieee80211_ioctl_siwencodeext, /* SIOCSIWENCODEEXT */
1582 (iw_handler) NULL, /* SIOCGIWENCODEEXT */
1583 (iw_handler) NULL, /* SIOCSIWPMKSA */
1584 (iw_handler) NULL, /* -- hole -- */
1587 static const iw_handler ieee80211_private_handler[] =
1588 { /* SIOCIWFIRSTPRIV + */
1589 (iw_handler) ieee80211_ioctl_prism2_param, /* 0 */
1590 (iw_handler) ieee80211_ioctl_get_prism2_param, /* 1 */
1593 const struct iw_handler_def ieee80211_iw_handler_def =
1595 .num_standard = ARRAY_SIZE(ieee80211_handler),
1596 .num_private = ARRAY_SIZE(ieee80211_private_handler),
1597 .num_private_args = ARRAY_SIZE(ieee80211_ioctl_priv),
1598 .standard = (iw_handler *) ieee80211_handler,
1599 .private = (iw_handler *) ieee80211_private_handler,
1600 .private_args = (struct iw_priv_args *) ieee80211_ioctl_priv,
1601 .get_wireless_stats = ieee80211_get_wireless_stats,