2007-05-05 18:45:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2002-2005, Instant802 Networks, Inc.
|
|
|
|
* Copyright 2005-2006, Devicescape Software, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/etherdevice.h>
|
|
|
|
#include <linux/if_arp.h>
|
|
|
|
#include <linux/wireless.h>
|
|
|
|
#include <net/iw_handler.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
|
|
|
|
#include <net/mac80211.h>
|
|
|
|
#include "ieee80211_i.h"
|
2008-04-08 19:14:40 +00:00
|
|
|
#include "led.h"
|
|
|
|
#include "rate.h"
|
2007-05-05 18:45:53 +00:00
|
|
|
#include "wpa.h"
|
|
|
|
#include "aes_ccm.h"
|
|
|
|
|
2007-09-14 15:10:25 +00:00
|
|
|
|
2008-08-03 00:04:37 +00:00
|
|
|
static int ieee80211_set_encryption(struct ieee80211_sub_if_data *sdata, u8 *sta_addr,
|
2007-09-26 15:53:17 +00:00
|
|
|
int idx, int alg, int remove,
|
|
|
|
int set_tx_key, const u8 *_key,
|
|
|
|
size_t key_len)
|
2007-05-05 18:45:53 +00:00
|
|
|
{
|
2008-08-03 00:04:37 +00:00
|
|
|
struct ieee80211_local *local = sdata->local;
|
2008-02-25 15:27:46 +00:00
|
|
|
struct sta_info *sta;
|
2007-08-28 21:01:55 +00:00
|
|
|
struct ieee80211_key *key;
|
2008-04-08 15:56:52 +00:00
|
|
|
int err;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
2009-01-08 11:32:04 +00:00
|
|
|
if (alg == ALG_AES_CMAC) {
|
|
|
|
if (idx < NUM_DEFAULT_KEYS ||
|
|
|
|
idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) {
|
|
|
|
printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d "
|
|
|
|
"(BIP)\n", sdata->dev->name, idx);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
} else if (idx < 0 || idx >= NUM_DEFAULT_KEYS) {
|
2007-09-14 15:10:25 +00:00
|
|
|
printk(KERN_DEBUG "%s: set_encrypt - invalid idx=%d\n",
|
2008-08-03 00:04:37 +00:00
|
|
|
sdata->dev->name, idx);
|
2007-09-14 15:10:25 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2008-02-25 15:27:45 +00:00
|
|
|
if (remove) {
|
2008-04-08 15:56:52 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
|
|
|
|
err = 0;
|
|
|
|
|
2008-02-25 15:27:45 +00:00
|
|
|
if (is_broadcast_ether_addr(sta_addr)) {
|
|
|
|
key = sdata->keys[idx];
|
|
|
|
} else {
|
|
|
|
sta = sta_info_get(local, sta_addr);
|
2008-04-08 15:56:52 +00:00
|
|
|
if (!sta) {
|
|
|
|
err = -ENOENT;
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
2008-02-25 15:27:45 +00:00
|
|
|
key = sta->key;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
2008-02-25 15:27:46 +00:00
|
|
|
ieee80211_key_free(key);
|
2008-02-25 15:27:45 +00:00
|
|
|
} else {
|
|
|
|
key = ieee80211_key_alloc(alg, idx, key_len, _key);
|
|
|
|
if (!key)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2008-02-25 15:27:46 +00:00
|
|
|
sta = NULL;
|
2008-04-08 15:56:52 +00:00
|
|
|
err = 0;
|
|
|
|
|
|
|
|
rcu_read_lock();
|
2008-02-25 15:27:46 +00:00
|
|
|
|
2008-02-25 15:27:45 +00:00
|
|
|
if (!is_broadcast_ether_addr(sta_addr)) {
|
|
|
|
set_tx_key = 0;
|
|
|
|
/*
|
|
|
|
* According to the standard, the key index of a
|
|
|
|
* pairwise key must be zero. However, some AP are
|
|
|
|
* broken when it comes to WEP key indices, so we
|
|
|
|
* work around this.
|
|
|
|
*/
|
|
|
|
if (idx != 0 && alg != ALG_WEP) {
|
2008-02-25 15:27:46 +00:00
|
|
|
ieee80211_key_free(key);
|
2008-04-08 15:56:52 +00:00
|
|
|
err = -EINVAL;
|
|
|
|
goto out_unlock;
|
2008-02-25 15:27:45 +00:00
|
|
|
}
|
2007-05-05 18:45:53 +00:00
|
|
|
|
2008-02-25 15:27:45 +00:00
|
|
|
sta = sta_info_get(local, sta_addr);
|
|
|
|
if (!sta) {
|
2008-02-25 15:27:46 +00:00
|
|
|
ieee80211_key_free(key);
|
2008-04-08 15:56:52 +00:00
|
|
|
err = -ENOENT;
|
|
|
|
goto out_unlock;
|
2008-02-25 15:27:45 +00:00
|
|
|
}
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 23:50:13 +00:00
|
|
|
if (alg == ALG_WEP &&
|
|
|
|
key_len != LEN_WEP40 && key_len != LEN_WEP104) {
|
|
|
|
ieee80211_key_free(key);
|
|
|
|
err = -EINVAL;
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
|
|
|
|
2008-02-25 15:27:45 +00:00
|
|
|
ieee80211_key_link(key, sdata, sta);
|
2007-05-05 18:45:53 +00:00
|
|
|
|
2008-02-25 15:27:45 +00:00
|
|
|
if (set_tx_key || (!sta && !sdata->default_key && key))
|
|
|
|
ieee80211_set_default_key(sdata, idx);
|
2009-01-08 11:32:04 +00:00
|
|
|
if (alg == ALG_AES_CMAC &&
|
|
|
|
(set_tx_key || (!sta && !sdata->default_mgmt_key && key)))
|
|
|
|
ieee80211_set_default_mgmt_key(sdata, idx);
|
2008-02-25 15:27:45 +00:00
|
|
|
}
|
2007-05-05 18:45:53 +00:00
|
|
|
|
2008-04-08 15:56:52 +00:00
|
|
|
out_unlock:
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
return err;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwgenie(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_point *data, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
|
2007-09-26 15:53:20 +00:00
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
|
|
|
|
if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
|
2007-05-05 18:45:53 +00:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
2008-08-03 00:04:37 +00:00
|
|
|
int ret = ieee80211_sta_set_extra_ie(sdata, extra, data->length);
|
2007-05-05 18:45:53 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
|
|
|
|
ieee80211_sta_req_auth(sdata);
|
2007-05-05 18:45:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwfreq(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_freq *freq, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
|
|
|
|
sdata->u.ibss.flags &= ~IEEE80211_IBSS_AUTO_CHANNEL_SEL;
|
|
|
|
else if (sdata->vif.type == NL80211_IFTYPE_STATION)
|
|
|
|
sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_CHANNEL_SEL;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
/* freq->e == 0: freq->m = channel; otherwise freq = m * 10^e */
|
|
|
|
if (freq->e == 0) {
|
|
|
|
if (freq->m < 0) {
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
|
|
|
|
sdata->u.ibss.flags |=
|
|
|
|
IEEE80211_IBSS_AUTO_CHANNEL_SEL;
|
|
|
|
else if (sdata->vif.type == NL80211_IFTYPE_STATION)
|
|
|
|
sdata->u.mgd.flags |=
|
2007-08-28 21:01:54 +00:00
|
|
|
IEEE80211_STA_AUTO_CHANNEL_SEL;
|
2007-05-05 18:45:53 +00:00
|
|
|
return 0;
|
|
|
|
} else
|
2008-08-03 00:04:37 +00:00
|
|
|
return ieee80211_set_freq(sdata,
|
2008-01-24 18:38:38 +00:00
|
|
|
ieee80211_channel_to_frequency(freq->m));
|
2007-05-05 18:45:53 +00:00
|
|
|
} else {
|
|
|
|
int i, div = 1000000;
|
|
|
|
for (i = 0; i < freq->e; i++)
|
|
|
|
div /= 10;
|
|
|
|
if (div > 0)
|
2008-08-03 00:04:37 +00:00
|
|
|
return ieee80211_set_freq(sdata, freq->m / div);
|
2007-05-05 18:45:53 +00:00
|
|
|
else
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwfreq(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_freq *freq, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
2008-01-24 18:38:38 +00:00
|
|
|
freq->m = local->hw.conf.channel->center_freq;
|
2007-05-05 18:45:53 +00:00
|
|
|
freq->e = 6;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwessid(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_point *data, char *ssid)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
size_t len = data->length;
|
2009-02-15 11:44:28 +00:00
|
|
|
int ret;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
/* iwconfig uses nul termination in SSID.. */
|
|
|
|
if (len > 0 && ssid[len - 1] == '\0')
|
|
|
|
len--;
|
|
|
|
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
2007-09-26 15:53:20 +00:00
|
|
|
if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
|
2007-05-05 18:45:53 +00:00
|
|
|
if (len > IEEE80211_MAX_SSID_LEN)
|
|
|
|
return -EINVAL;
|
2009-02-15 11:44:28 +00:00
|
|
|
memcpy(sdata->u.mgd.ssid, ssid, len);
|
|
|
|
sdata->u.mgd.ssid_len = len;
|
2007-05-05 18:45:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2009-02-15 11:44:28 +00:00
|
|
|
|
2007-08-28 21:01:54 +00:00
|
|
|
if (data->flags)
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_SSID_SEL;
|
2007-08-28 21:01:54 +00:00
|
|
|
else
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags |= IEEE80211_STA_AUTO_SSID_SEL;
|
|
|
|
|
2008-08-03 00:04:37 +00:00
|
|
|
ret = ieee80211_sta_set_ssid(sdata, ssid, len);
|
2007-05-05 18:45:53 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-02-15 11:44:28 +00:00
|
|
|
|
|
|
|
ieee80211_sta_req_auth(sdata);
|
2007-05-05 18:45:53 +00:00
|
|
|
return 0;
|
2009-02-15 11:44:28 +00:00
|
|
|
} else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
|
|
|
|
return ieee80211_ibss_set_ssid(sdata, ssid, len);
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwessid(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_point *data, char *ssid)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
2008-08-03 00:04:37 +00:00
|
|
|
int res = ieee80211_sta_get_ssid(sdata, ssid, &len);
|
2007-05-05 18:45:53 +00:00
|
|
|
if (res == 0) {
|
|
|
|
data->length = len;
|
|
|
|
data->flags = 1;
|
|
|
|
} else
|
|
|
|
data->flags = 0;
|
|
|
|
return res;
|
2009-02-15 11:44:28 +00:00
|
|
|
} else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
|
|
|
|
int res = ieee80211_ibss_get_ssid(sdata, ssid, &len);
|
|
|
|
if (res == 0) {
|
|
|
|
data->length = len;
|
|
|
|
data->flags = 1;
|
|
|
|
} else
|
|
|
|
data->flags = 0;
|
|
|
|
return res;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwap(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct sockaddr *ap_addr, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
2007-05-05 18:45:53 +00:00
|
|
|
int ret;
|
2007-09-26 15:53:20 +00:00
|
|
|
if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
|
2009-02-15 11:44:28 +00:00
|
|
|
memcpy(sdata->u.mgd.bssid, (u8 *) &ap_addr->sa_data,
|
2007-05-05 18:45:53 +00:00
|
|
|
ETH_ALEN);
|
|
|
|
return 0;
|
|
|
|
}
|
2007-08-28 21:01:54 +00:00
|
|
|
if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags |= IEEE80211_STA_AUTO_BSSID_SEL |
|
2007-08-28 21:01:54 +00:00
|
|
|
IEEE80211_STA_AUTO_CHANNEL_SEL;
|
|
|
|
else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags |= IEEE80211_STA_AUTO_BSSID_SEL;
|
2007-05-05 18:45:53 +00:00
|
|
|
else
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags &= ~IEEE80211_STA_AUTO_BSSID_SEL;
|
2008-08-03 00:04:37 +00:00
|
|
|
ret = ieee80211_sta_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
|
2007-05-05 18:45:53 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-02-15 11:44:28 +00:00
|
|
|
ieee80211_sta_req_auth(sdata);
|
2007-05-05 18:45:53 +00:00
|
|
|
return 0;
|
2009-02-15 11:44:28 +00:00
|
|
|
} else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
|
|
|
|
if (is_zero_ether_addr((u8 *) &ap_addr->sa_data))
|
|
|
|
sdata->u.ibss.flags |= IEEE80211_IBSS_AUTO_BSSID_SEL |
|
|
|
|
IEEE80211_IBSS_AUTO_CHANNEL_SEL;
|
|
|
|
else if (is_broadcast_ether_addr((u8 *) &ap_addr->sa_data))
|
|
|
|
sdata->u.ibss.flags |= IEEE80211_IBSS_AUTO_BSSID_SEL;
|
|
|
|
else
|
|
|
|
sdata->u.ibss.flags &= ~IEEE80211_IBSS_AUTO_BSSID_SEL;
|
|
|
|
|
|
|
|
return ieee80211_ibss_set_bssid(sdata, (u8 *) &ap_addr->sa_data);
|
2008-09-10 22:01:58 +00:00
|
|
|
} else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
|
2008-02-25 15:27:49 +00:00
|
|
|
/*
|
|
|
|
* If it is necessary to update the WDS peer address
|
|
|
|
* while the interface is running, then we need to do
|
|
|
|
* more work here, namely if it is running we need to
|
|
|
|
* add a new and remove the old STA entry, this is
|
|
|
|
* normally handled by _open() and _stop().
|
|
|
|
*/
|
|
|
|
if (netif_running(dev))
|
|
|
|
return -EBUSY;
|
|
|
|
|
|
|
|
memcpy(&sdata->u.wds.remote_addr, (u8 *) &ap_addr->sa_data,
|
|
|
|
ETH_ALEN);
|
|
|
|
|
|
|
|
return 0;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwap(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct sockaddr *ap_addr, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
|
|
|
if (sdata->u.mgd.state == IEEE80211_STA_MLME_ASSOCIATED) {
|
2008-05-23 17:15:26 +00:00
|
|
|
ap_addr->sa_family = ARPHRD_ETHER;
|
2009-02-15 11:44:28 +00:00
|
|
|
memcpy(&ap_addr->sa_data, sdata->u.mgd.bssid, ETH_ALEN);
|
|
|
|
} else
|
2008-05-23 17:15:26 +00:00
|
|
|
memset(&ap_addr->sa_data, 0, ETH_ALEN);
|
2009-02-15 11:44:28 +00:00
|
|
|
return 0;
|
|
|
|
} else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
|
|
|
|
if (sdata->u.ibss.state == IEEE80211_IBSS_MLME_JOINED) {
|
|
|
|
ap_addr->sa_family = ARPHRD_ETHER;
|
|
|
|
memcpy(&ap_addr->sa_data, sdata->u.ibss.bssid, ETH_ALEN);
|
|
|
|
} else
|
|
|
|
memset(&ap_addr->sa_data, 0, ETH_ALEN);
|
|
|
|
return 0;
|
2008-09-10 22:01:58 +00:00
|
|
|
} else if (sdata->vif.type == NL80211_IFTYPE_WDS) {
|
2007-05-05 18:45:53 +00:00
|
|
|
ap_addr->sa_family = ARPHRD_ETHER;
|
|
|
|
memcpy(&ap_addr->sa_data, sdata->u.wds.remote_addr, ETH_ALEN);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-10 17:32:10 +00:00
|
|
|
static int ieee80211_ioctl_siwrate(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *rate, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
2008-01-24 18:38:38 +00:00
|
|
|
int i, err = -EINVAL;
|
2007-07-10 17:32:10 +00:00
|
|
|
u32 target_rate = rate->value / 100000;
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
2008-01-24 18:38:38 +00:00
|
|
|
struct ieee80211_supported_band *sband;
|
2007-07-10 17:32:10 +00:00
|
|
|
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
2008-01-24 18:38:38 +00:00
|
|
|
|
|
|
|
sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
|
|
|
|
|
2007-07-10 17:32:10 +00:00
|
|
|
/* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
|
|
|
|
* target_rate = X, rate->fixed = 1 means only rate X
|
|
|
|
* target_rate = X, rate->fixed = 0 means all rates <= X */
|
mac80211: make master netdev handling sane
Currently, almost every interface type has a 'bss' pointer
pointing to BSS information. This BSS information, however,
is for a _local_ BSS, not for the BSS we joined, so having
it on a STA mode interface makes little sense, but now they
have it pointing to the master device, which is an AP mode
virtual interface. However, except for some bitrate control
data, this pointer is only used in AP/VLAN modes (for power
saving stations.)
Overall, it is not necessary to even have the master netdev
be a valid virtual interface, and it doesn't have to be on
the list of interfaces either.
This patch changes the master netdev to be special, it now
- no longer is on the list of virtual interfaces, which
lets me remove a lot of tests for that
- no longer has sub_if_data attached, since that isn't used
Additionally, this patch changes some vlan/ap mode handling
that is related to these 'bss' pointers described above (but
in the VLAN case they actually make sense because there they
point to the AP they belong to); it also adds some debugging
code to IEEE80211_DEV_TO_SUB_IF to validate it is not called
on the master netdev any more.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-07-09 12:40:34 +00:00
|
|
|
sdata->max_ratectrl_rateidx = -1;
|
|
|
|
sdata->force_unicast_rateidx = -1;
|
2007-07-10 17:32:10 +00:00
|
|
|
if (rate->value < 0)
|
|
|
|
return 0;
|
2008-01-24 18:38:38 +00:00
|
|
|
|
|
|
|
for (i=0; i< sband->n_bitrates; i++) {
|
|
|
|
struct ieee80211_rate *brate = &sband->bitrates[i];
|
|
|
|
int this_rate = brate->bitrate;
|
2007-07-10 17:32:10 +00:00
|
|
|
|
|
|
|
if (target_rate == this_rate) {
|
mac80211: make master netdev handling sane
Currently, almost every interface type has a 'bss' pointer
pointing to BSS information. This BSS information, however,
is for a _local_ BSS, not for the BSS we joined, so having
it on a STA mode interface makes little sense, but now they
have it pointing to the master device, which is an AP mode
virtual interface. However, except for some bitrate control
data, this pointer is only used in AP/VLAN modes (for power
saving stations.)
Overall, it is not necessary to even have the master netdev
be a valid virtual interface, and it doesn't have to be on
the list of interfaces either.
This patch changes the master netdev to be special, it now
- no longer is on the list of virtual interfaces, which
lets me remove a lot of tests for that
- no longer has sub_if_data attached, since that isn't used
Additionally, this patch changes some vlan/ap mode handling
that is related to these 'bss' pointers described above (but
in the VLAN case they actually make sense because there they
point to the AP they belong to); it also adds some debugging
code to IEEE80211_DEV_TO_SUB_IF to validate it is not called
on the master netdev any more.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-07-09 12:40:34 +00:00
|
|
|
sdata->max_ratectrl_rateidx = i;
|
2007-07-10 17:32:10 +00:00
|
|
|
if (rate->fixed)
|
mac80211: make master netdev handling sane
Currently, almost every interface type has a 'bss' pointer
pointing to BSS information. This BSS information, however,
is for a _local_ BSS, not for the BSS we joined, so having
it on a STA mode interface makes little sense, but now they
have it pointing to the master device, which is an AP mode
virtual interface. However, except for some bitrate control
data, this pointer is only used in AP/VLAN modes (for power
saving stations.)
Overall, it is not necessary to even have the master netdev
be a valid virtual interface, and it doesn't have to be on
the list of interfaces either.
This patch changes the master netdev to be special, it now
- no longer is on the list of virtual interfaces, which
lets me remove a lot of tests for that
- no longer has sub_if_data attached, since that isn't used
Additionally, this patch changes some vlan/ap mode handling
that is related to these 'bss' pointers described above (but
in the VLAN case they actually make sense because there they
point to the AP they belong to); it also adds some debugging
code to IEEE80211_DEV_TO_SUB_IF to validate it is not called
on the master netdev any more.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-07-09 12:40:34 +00:00
|
|
|
sdata->force_unicast_rateidx = i;
|
2008-01-24 18:38:38 +00:00
|
|
|
err = 0;
|
|
|
|
break;
|
2007-07-10 17:32:10 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-24 18:38:38 +00:00
|
|
|
return err;
|
2007-07-10 17:32:10 +00:00
|
|
|
}
|
|
|
|
|
2007-06-11 00:57:33 +00:00
|
|
|
static int ieee80211_ioctl_giwrate(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *rate, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
struct sta_info *sta;
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
2008-01-24 18:38:38 +00:00
|
|
|
struct ieee80211_supported_band *sband;
|
2007-06-11 00:57:33 +00:00
|
|
|
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
2008-01-24 18:38:38 +00:00
|
|
|
|
2008-09-10 22:01:58 +00:00
|
|
|
if (sdata->vif.type != NL80211_IFTYPE_STATION)
|
2007-06-11 00:57:33 +00:00
|
|
|
return -EOPNOTSUPP;
|
2008-01-24 18:38:38 +00:00
|
|
|
|
|
|
|
sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
|
|
|
|
|
2008-04-04 21:40:35 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
|
2009-02-15 11:44:28 +00:00
|
|
|
sta = sta_info_get(local, sdata->u.mgd.bssid);
|
2008-04-04 21:40:35 +00:00
|
|
|
|
2008-10-21 10:40:02 +00:00
|
|
|
if (sta && !(sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS))
|
|
|
|
rate->value = sband->bitrates[sta->last_tx_rate.idx].bitrate;
|
2007-06-11 00:57:33 +00:00
|
|
|
else
|
|
|
|
rate->value = 0;
|
2008-04-04 21:40:35 +00:00
|
|
|
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
if (!sta)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2008-01-24 18:38:38 +00:00
|
|
|
rate->value *= 100000;
|
2008-02-25 15:27:46 +00:00
|
|
|
|
2007-06-11 00:57:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-20 20:06:39 +00:00
|
|
|
static int ieee80211_ioctl_siwtxpower(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
union iwreq_data *data, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
2008-10-22 20:13:53 +00:00
|
|
|
struct ieee80211_channel* chan = local->hw.conf.channel;
|
2008-10-09 10:18:51 +00:00
|
|
|
u32 reconf_flags = 0;
|
2008-01-24 18:38:38 +00:00
|
|
|
int new_power_level;
|
2007-09-20 20:06:39 +00:00
|
|
|
|
|
|
|
if ((data->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
|
|
|
|
return -EINVAL;
|
|
|
|
if (data->txpower.flags & IW_TXPOW_RANGE)
|
|
|
|
return -EINVAL;
|
2008-10-22 20:13:53 +00:00
|
|
|
if (!chan)
|
|
|
|
return -EINVAL;
|
2007-09-20 20:06:39 +00:00
|
|
|
|
2008-10-22 20:13:53 +00:00
|
|
|
if (data->txpower.fixed)
|
|
|
|
new_power_level = min(data->txpower.value, chan->max_power);
|
|
|
|
else /* Automatic power level setting */
|
2008-01-24 18:38:38 +00:00
|
|
|
new_power_level = chan->max_power;
|
2007-10-24 21:30:36 +00:00
|
|
|
|
2009-01-06 22:23:56 +00:00
|
|
|
local->user_power_level = new_power_level;
|
2008-12-24 08:23:11 +00:00
|
|
|
if (local->hw.conf.power_level != new_power_level)
|
2008-10-09 10:18:51 +00:00
|
|
|
reconf_flags |= IEEE80211_CONF_CHANGE_POWER;
|
2007-10-24 21:30:36 +00:00
|
|
|
|
2007-09-20 20:06:39 +00:00
|
|
|
if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) {
|
|
|
|
local->hw.conf.radio_enabled = !(data->txpower.disabled);
|
2008-10-09 10:18:51 +00:00
|
|
|
reconf_flags |= IEEE80211_CONF_CHANGE_RADIO_ENABLED;
|
2008-01-07 18:45:24 +00:00
|
|
|
ieee80211_led_radio(local, local->hw.conf.radio_enabled);
|
2007-09-20 20:06:39 +00:00
|
|
|
}
|
2007-10-24 21:30:36 +00:00
|
|
|
|
2008-10-09 10:18:51 +00:00
|
|
|
if (reconf_flags)
|
|
|
|
ieee80211_hw_config(local, reconf_flags);
|
2007-09-20 20:06:39 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-10 16:23:20 +00:00
|
|
|
static int ieee80211_ioctl_giwtxpower(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
union iwreq_data *data, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
|
|
|
data->txpower.fixed = 1;
|
|
|
|
data->txpower.disabled = !(local->hw.conf.radio_enabled);
|
|
|
|
data->txpower.value = local->hw.conf.power_level;
|
|
|
|
data->txpower.flags = IW_TXPOW_DBM;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-05-05 18:45:53 +00:00
|
|
|
static int ieee80211_ioctl_siwrts(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *rts, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
|
|
|
if (rts->disabled)
|
|
|
|
local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
|
2008-06-24 10:37:58 +00:00
|
|
|
else if (!rts->fixed)
|
|
|
|
/* if the rts value is not fixed, then take default */
|
|
|
|
local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
|
2007-05-05 18:45:53 +00:00
|
|
|
else if (rts->value < 0 || rts->value > IEEE80211_MAX_RTS_THRESHOLD)
|
|
|
|
return -EINVAL;
|
|
|
|
else
|
|
|
|
local->rts_threshold = rts->value;
|
|
|
|
|
|
|
|
/* If the wlan card performs RTS/CTS in hardware/firmware,
|
|
|
|
* configure it here */
|
|
|
|
|
|
|
|
if (local->ops->set_rts_threshold)
|
|
|
|
local->ops->set_rts_threshold(local_to_hw(local),
|
|
|
|
local->rts_threshold);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwrts(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *rts, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
|
|
|
rts->value = local->rts_threshold;
|
|
|
|
rts->disabled = (rts->value >= IEEE80211_MAX_RTS_THRESHOLD);
|
|
|
|
rts->fixed = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwfrag(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *frag, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
|
|
|
if (frag->disabled)
|
|
|
|
local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
|
2008-07-03 15:02:27 +00:00
|
|
|
else if (!frag->fixed)
|
|
|
|
local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
|
2007-05-05 18:45:53 +00:00
|
|
|
else if (frag->value < 256 ||
|
|
|
|
frag->value > IEEE80211_MAX_FRAG_THRESHOLD)
|
|
|
|
return -EINVAL;
|
|
|
|
else {
|
|
|
|
/* Fragment length must be even, so strip LSB. */
|
|
|
|
local->fragmentation_threshold = frag->value & ~0x1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwfrag(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *frag, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
|
|
|
frag->value = local->fragmentation_threshold;
|
|
|
|
frag->disabled = (frag->value >= IEEE80211_MAX_RTS_THRESHOLD);
|
|
|
|
frag->fixed = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwretry(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *retry, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
|
|
|
if (retry->disabled ||
|
|
|
|
(retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2008-10-14 17:17:54 +00:00
|
|
|
if (retry->flags & IW_RETRY_MAX) {
|
|
|
|
local->hw.conf.long_frame_max_tx_count = retry->value;
|
|
|
|
} else if (retry->flags & IW_RETRY_MIN) {
|
|
|
|
local->hw.conf.short_frame_max_tx_count = retry->value;
|
|
|
|
} else {
|
|
|
|
local->hw.conf.long_frame_max_tx_count = retry->value;
|
|
|
|
local->hw.conf.short_frame_max_tx_count = retry->value;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
2008-10-14 17:17:54 +00:00
|
|
|
ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwretry(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *retry, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
|
|
|
retry->disabled = 0;
|
|
|
|
if (retry->flags == 0 || retry->flags & IW_RETRY_MIN) {
|
|
|
|
/* first return min value, iwconfig will ask max value
|
|
|
|
* later if needed */
|
|
|
|
retry->flags |= IW_RETRY_LIMIT;
|
2008-10-14 17:17:54 +00:00
|
|
|
retry->value = local->hw.conf.short_frame_max_tx_count;
|
|
|
|
if (local->hw.conf.long_frame_max_tx_count !=
|
|
|
|
local->hw.conf.short_frame_max_tx_count)
|
2007-05-05 18:45:53 +00:00
|
|
|
retry->flags |= IW_RETRY_MIN;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (retry->flags & IW_RETRY_MAX) {
|
|
|
|
retry->flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
|
2008-10-14 17:17:54 +00:00
|
|
|
retry->value = local->hw.conf.long_frame_max_tx_count;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwmlme(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_point *data, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
struct iw_mlme *mlme = (struct iw_mlme *) extra;
|
|
|
|
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
2009-02-15 11:44:28 +00:00
|
|
|
if (!(sdata->vif.type == NL80211_IFTYPE_STATION))
|
2007-05-05 18:45:53 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
switch (mlme->cmd) {
|
|
|
|
case IW_MLME_DEAUTH:
|
|
|
|
/* TODO: mlme->addr.sa_data */
|
2008-08-03 00:04:37 +00:00
|
|
|
return ieee80211_sta_deauthenticate(sdata, mlme->reason_code);
|
2007-05-05 18:45:53 +00:00
|
|
|
case IW_MLME_DISASSOC:
|
|
|
|
/* TODO: mlme->addr.sa_data */
|
2008-08-03 00:04:37 +00:00
|
|
|
return ieee80211_sta_disassociate(sdata, mlme->reason_code);
|
2007-05-05 18:45:53 +00:00
|
|
|
default:
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwencode(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_point *erq, char *keybuf)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
int idx, i, alg = ALG_WEP;
|
|
|
|
u8 bcaddr[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
2009-03-13 14:56:52 +00:00
|
|
|
int remove = 0, ret;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
|
|
|
|
idx = erq->flags & IW_ENCODE_INDEX;
|
|
|
|
if (idx == 0) {
|
|
|
|
if (sdata->default_key)
|
|
|
|
for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
|
|
|
|
if (sdata->default_key == sdata->keys[i]) {
|
|
|
|
idx = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (idx < 1 || idx > 4)
|
|
|
|
return -EINVAL;
|
|
|
|
else
|
|
|
|
idx--;
|
|
|
|
|
|
|
|
if (erq->flags & IW_ENCODE_DISABLED)
|
2007-09-26 15:53:17 +00:00
|
|
|
remove = 1;
|
2007-05-05 18:45:53 +00:00
|
|
|
else if (erq->length == 0) {
|
|
|
|
/* No key data - just set the default TX key index */
|
2007-08-28 21:01:55 +00:00
|
|
|
ieee80211_set_default_key(sdata, idx);
|
2007-05-05 18:45:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-13 14:56:52 +00:00
|
|
|
ret = ieee80211_set_encryption(
|
2008-08-03 00:04:37 +00:00
|
|
|
sdata, bcaddr,
|
2007-09-26 15:53:17 +00:00
|
|
|
idx, alg, remove,
|
2007-05-05 18:45:53 +00:00
|
|
|
!sdata->default_key,
|
|
|
|
keybuf, erq->length);
|
2009-03-13 14:56:52 +00:00
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
if (remove)
|
|
|
|
sdata->u.mgd.flags &= ~IEEE80211_STA_TKIP_WEP_USED;
|
|
|
|
else
|
|
|
|
sdata->u.mgd.flags |= IEEE80211_STA_TKIP_WEP_USED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwencode(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_point *erq, char *key)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
int idx, i;
|
|
|
|
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
|
|
|
|
idx = erq->flags & IW_ENCODE_INDEX;
|
|
|
|
if (idx < 1 || idx > 4) {
|
|
|
|
idx = -1;
|
|
|
|
if (!sdata->default_key)
|
|
|
|
idx = 0;
|
|
|
|
else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
|
|
|
|
if (sdata->default_key == sdata->keys[i]) {
|
|
|
|
idx = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (idx < 0)
|
|
|
|
return -EINVAL;
|
|
|
|
} else
|
|
|
|
idx--;
|
|
|
|
|
|
|
|
erq->flags = idx + 1;
|
|
|
|
|
|
|
|
if (!sdata->keys[idx]) {
|
|
|
|
erq->length = 0;
|
|
|
|
erq->flags |= IW_ENCODE_DISABLED;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-28 21:01:54 +00:00
|
|
|
memcpy(key, sdata->keys[idx]->conf.key,
|
2007-08-28 21:01:55 +00:00
|
|
|
min_t(int, erq->length, sdata->keys[idx]->conf.keylen));
|
2007-08-28 21:01:54 +00:00
|
|
|
erq->length = sdata->keys[idx]->conf.keylen;
|
2007-05-05 18:45:53 +00:00
|
|
|
erq->flags |= IW_ENCODE_ENABLED;
|
|
|
|
|
2008-09-10 22:01:58 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
2009-02-15 11:44:28 +00:00
|
|
|
switch (sdata->u.mgd.auth_alg) {
|
2008-06-24 10:37:59 +00:00
|
|
|
case WLAN_AUTH_OPEN:
|
|
|
|
case WLAN_AUTH_LEAP:
|
|
|
|
erq->flags |= IW_ENCODE_OPEN;
|
|
|
|
break;
|
|
|
|
case WLAN_AUTH_SHARED_KEY:
|
|
|
|
erq->flags |= IW_ENCODE_RESTRICTED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-05 18:45:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-04 08:49:31 +00:00
|
|
|
static int ieee80211_ioctl_siwpower(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *wrq,
|
|
|
|
char *extra)
|
|
|
|
{
|
2008-12-18 21:35:13 +00:00
|
|
|
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
2008-07-04 08:49:31 +00:00
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
struct ieee80211_conf *conf = &local->hw.conf;
|
2008-12-18 21:35:27 +00:00
|
|
|
int ret = 0, timeout = 0;
|
2008-12-18 21:35:13 +00:00
|
|
|
bool ps;
|
|
|
|
|
2009-01-07 17:28:20 +00:00
|
|
|
if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
2008-12-18 21:35:13 +00:00
|
|
|
if (sdata->vif.type != NL80211_IFTYPE_STATION)
|
|
|
|
return -EINVAL;
|
2008-07-04 08:49:31 +00:00
|
|
|
|
|
|
|
if (wrq->disabled) {
|
2008-12-18 21:35:13 +00:00
|
|
|
ps = false;
|
2008-12-18 21:35:27 +00:00
|
|
|
timeout = 0;
|
2008-12-18 21:35:13 +00:00
|
|
|
goto set;
|
2008-07-04 08:49:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (wrq->flags & IW_POWER_MODE) {
|
|
|
|
case IW_POWER_ON: /* If not specified */
|
|
|
|
case IW_POWER_MODE: /* If set all mask */
|
|
|
|
case IW_POWER_ALL_R: /* If explicitely state all */
|
2008-12-18 21:35:13 +00:00
|
|
|
ps = true;
|
2008-07-04 08:49:31 +00:00
|
|
|
break;
|
2008-12-18 21:35:27 +00:00
|
|
|
default: /* Otherwise we ignore */
|
2009-01-06 17:12:35 +00:00
|
|
|
return -EINVAL;
|
2008-07-04 08:49:31 +00:00
|
|
|
}
|
|
|
|
|
2009-01-06 17:12:35 +00:00
|
|
|
if (wrq->flags & ~(IW_POWER_MODE | IW_POWER_TIMEOUT))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2008-12-18 21:35:27 +00:00
|
|
|
if (wrq->flags & IW_POWER_TIMEOUT)
|
|
|
|
timeout = wrq->value / 1000;
|
2008-12-18 21:35:13 +00:00
|
|
|
|
2009-01-07 17:28:20 +00:00
|
|
|
set:
|
2009-01-06 17:13:18 +00:00
|
|
|
if (ps == local->powersave && timeout == conf->dynamic_ps_timeout)
|
2008-12-18 21:35:27 +00:00
|
|
|
return ret;
|
|
|
|
|
2008-12-18 21:35:13 +00:00
|
|
|
local->powersave = ps;
|
2009-01-06 17:13:18 +00:00
|
|
|
conf->dynamic_ps_timeout = timeout;
|
2008-12-18 21:35:13 +00:00
|
|
|
|
2009-01-07 17:28:20 +00:00
|
|
|
if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
|
2009-01-06 17:13:18 +00:00
|
|
|
ret = ieee80211_hw_config(local,
|
|
|
|
IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT);
|
2009-01-07 17:28:20 +00:00
|
|
|
|
2009-02-15 11:44:28 +00:00
|
|
|
if (!(sdata->u.mgd.flags & IEEE80211_STA_ASSOCIATED))
|
2009-01-07 17:28:20 +00:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (conf->dynamic_ps_timeout > 0 &&
|
|
|
|
!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
|
|
|
|
mod_timer(&local->dynamic_ps_timer, jiffies +
|
|
|
|
msecs_to_jiffies(conf->dynamic_ps_timeout));
|
|
|
|
} else {
|
|
|
|
if (local->powersave) {
|
|
|
|
if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
|
2008-12-24 02:39:02 +00:00
|
|
|
ieee80211_send_nullfunc(local, sdata, 1);
|
2009-01-07 17:28:20 +00:00
|
|
|
conf->flags |= IEEE80211_CONF_PS;
|
|
|
|
ret = ieee80211_hw_config(local,
|
|
|
|
IEEE80211_CONF_CHANGE_PS);
|
|
|
|
} else {
|
|
|
|
conf->flags &= ~IEEE80211_CONF_PS;
|
|
|
|
ret = ieee80211_hw_config(local,
|
|
|
|
IEEE80211_CONF_CHANGE_PS);
|
|
|
|
if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
|
2008-12-24 02:39:02 +00:00
|
|
|
ieee80211_send_nullfunc(local, sdata, 0);
|
2009-01-27 13:56:28 +00:00
|
|
|
del_timer_sync(&local->dynamic_ps_timer);
|
|
|
|
cancel_work_sync(&local->dynamic_ps_enable_work);
|
2008-12-18 21:35:27 +00:00
|
|
|
}
|
2008-12-18 21:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2008-07-04 08:49:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwpower(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
union iwreq_data *wrqu,
|
|
|
|
char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
|
2008-12-18 21:35:13 +00:00
|
|
|
wrqu->power.disabled = !local->powersave;
|
2008-07-04 08:49:31 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-05-05 18:45:53 +00:00
|
|
|
static int ieee80211_ioctl_siwauth(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *data, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
switch (data->flags & IW_AUTH_INDEX) {
|
|
|
|
case IW_AUTH_WPA_VERSION:
|
|
|
|
case IW_AUTH_CIPHER_GROUP:
|
|
|
|
case IW_AUTH_WPA_ENABLED:
|
|
|
|
case IW_AUTH_RX_UNENCRYPTED_EAPOL:
|
|
|
|
case IW_AUTH_KEY_MGMT:
|
2009-01-08 11:32:03 +00:00
|
|
|
case IW_AUTH_CIPHER_GROUP_MGMT:
|
2007-11-03 13:11:10 +00:00
|
|
|
break;
|
2008-12-23 16:00:50 +00:00
|
|
|
case IW_AUTH_CIPHER_PAIRWISE:
|
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
|
|
|
if (data->value & (IW_AUTH_CIPHER_WEP40 |
|
|
|
|
IW_AUTH_CIPHER_WEP104 | IW_AUTH_CIPHER_TKIP))
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags |=
|
2008-12-23 16:00:50 +00:00
|
|
|
IEEE80211_STA_TKIP_WEP_USED;
|
|
|
|
else
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags &=
|
2008-12-23 16:00:50 +00:00
|
|
|
~IEEE80211_STA_TKIP_WEP_USED;
|
|
|
|
}
|
|
|
|
break;
|
2007-11-28 10:04:21 +00:00
|
|
|
case IW_AUTH_DROP_UNENCRYPTED:
|
|
|
|
sdata->drop_unencrypted = !!data->value;
|
|
|
|
break;
|
2007-11-03 13:11:10 +00:00
|
|
|
case IW_AUTH_PRIVACY_INVOKED:
|
2008-09-10 22:01:58 +00:00
|
|
|
if (sdata->vif.type != NL80211_IFTYPE_STATION)
|
2007-05-05 18:45:53 +00:00
|
|
|
ret = -EINVAL;
|
|
|
|
else {
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
|
2007-05-05 18:45:53 +00:00
|
|
|
/*
|
2007-11-03 13:11:10 +00:00
|
|
|
* Privacy invoked by wpa_supplicant, store the
|
|
|
|
* value and allow associating to a protected
|
|
|
|
* network without having a key up front.
|
2007-05-05 18:45:53 +00:00
|
|
|
*/
|
2007-11-03 13:11:10 +00:00
|
|
|
if (data->value)
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.flags |=
|
2007-11-03 13:11:10 +00:00
|
|
|
IEEE80211_STA_PRIVACY_INVOKED;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case IW_AUTH_80211_AUTH_ALG:
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION)
|
|
|
|
sdata->u.mgd.auth_algs = data->value;
|
2007-05-05 18:45:53 +00:00
|
|
|
else
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
break;
|
2009-01-08 11:32:05 +00:00
|
|
|
case IW_AUTH_MFP:
|
2009-01-08 11:32:11 +00:00
|
|
|
if (!(sdata->local->hw.flags & IEEE80211_HW_MFP_CAPABLE)) {
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
}
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
2009-02-10 20:25:40 +00:00
|
|
|
switch (data->value) {
|
|
|
|
case IW_AUTH_MFP_DISABLED:
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.mfp = IEEE80211_MFP_DISABLED;
|
2009-02-10 20:25:40 +00:00
|
|
|
break;
|
|
|
|
case IW_AUTH_MFP_OPTIONAL:
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.mfp = IEEE80211_MFP_OPTIONAL;
|
2009-02-10 20:25:40 +00:00
|
|
|
break;
|
|
|
|
case IW_AUTH_MFP_REQUIRED:
|
2009-02-15 11:44:28 +00:00
|
|
|
sdata->u.mgd.mfp = IEEE80211_MFP_REQUIRED;
|
2009-02-10 20:25:40 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
} else
|
2009-01-08 11:32:05 +00:00
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
break;
|
2007-05-05 18:45:53 +00:00
|
|
|
default:
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get wireless statistics. Called by /proc/net/wireless and by SIOCGIWSTATS */
|
|
|
|
static struct iw_statistics *ieee80211_get_wireless_stats(struct net_device *dev)
|
|
|
|
{
|
|
|
|
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
|
|
struct iw_statistics *wstats = &local->wstats;
|
|
|
|
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
struct sta_info *sta = NULL;
|
|
|
|
|
2008-04-10 13:36:09 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION)
|
|
|
|
sta = sta_info_get(local, sdata->u.mgd.bssid);
|
|
|
|
|
2007-05-05 18:45:53 +00:00
|
|
|
if (!sta) {
|
|
|
|
wstats->discard.fragment = 0;
|
|
|
|
wstats->discard.misc = 0;
|
|
|
|
wstats->qual.qual = 0;
|
|
|
|
wstats->qual.level = 0;
|
|
|
|
wstats->qual.noise = 0;
|
|
|
|
wstats->qual.updated = IW_QUAL_ALL_INVALID;
|
|
|
|
} else {
|
2009-02-27 22:33:55 +00:00
|
|
|
wstats->qual.updated = 0;
|
|
|
|
/*
|
|
|
|
* mirror what cfg80211 does for iwrange/scan results,
|
|
|
|
* otherwise userspace gets confused.
|
|
|
|
*/
|
|
|
|
if (local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
|
|
|
|
IEEE80211_HW_SIGNAL_DBM)) {
|
|
|
|
wstats->qual.updated |= IW_QUAL_LEVEL_UPDATED;
|
|
|
|
wstats->qual.updated |= IW_QUAL_QUAL_UPDATED;
|
|
|
|
} else {
|
|
|
|
wstats->qual.updated |= IW_QUAL_LEVEL_INVALID;
|
|
|
|
wstats->qual.updated |= IW_QUAL_QUAL_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC) {
|
|
|
|
wstats->qual.level = sta->last_signal;
|
|
|
|
wstats->qual.qual = sta->last_signal;
|
|
|
|
} else if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) {
|
|
|
|
int sig = sta->last_signal;
|
|
|
|
|
|
|
|
wstats->qual.updated |= IW_QUAL_DBM;
|
|
|
|
wstats->qual.level = sig;
|
|
|
|
if (sig < -110)
|
|
|
|
sig = -110;
|
|
|
|
else if (sig > -40)
|
|
|
|
sig = -40;
|
|
|
|
wstats->qual.qual = sig + 110;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (local->hw.flags & IEEE80211_HW_NOISE_DBM) {
|
|
|
|
/*
|
|
|
|
* This assumes that if driver reports noise, it also
|
|
|
|
* reports signal in dBm.
|
|
|
|
*/
|
|
|
|
wstats->qual.noise = sta->last_noise;
|
|
|
|
wstats->qual.updated |= IW_QUAL_NOISE_UPDATED;
|
|
|
|
} else {
|
|
|
|
wstats->qual.updated |= IW_QUAL_NOISE_INVALID;
|
|
|
|
}
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
2008-04-10 13:36:09 +00:00
|
|
|
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
2007-05-05 18:45:53 +00:00
|
|
|
return wstats;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_giwauth(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_param *data, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
switch (data->flags & IW_AUTH_INDEX) {
|
|
|
|
case IW_AUTH_80211_AUTH_ALG:
|
2009-02-15 11:44:28 +00:00
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION)
|
|
|
|
data->value = sdata->u.mgd.auth_algs;
|
2007-05-05 18:45:53 +00:00
|
|
|
else
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ieee80211_ioctl_siwencodeext(struct net_device *dev,
|
|
|
|
struct iw_request_info *info,
|
|
|
|
struct iw_point *erq, char *extra)
|
|
|
|
{
|
|
|
|
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
|
2007-09-26 15:53:17 +00:00
|
|
|
int uninitialized_var(alg), idx, i, remove = 0;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
switch (ext->alg) {
|
|
|
|
case IW_ENCODE_ALG_NONE:
|
2007-09-26 15:53:17 +00:00
|
|
|
remove = 1;
|
2007-05-05 18:45:53 +00:00
|
|
|
break;
|
|
|
|
case IW_ENCODE_ALG_WEP:
|
|
|
|
alg = ALG_WEP;
|
|
|
|
break;
|
|
|
|
case IW_ENCODE_ALG_TKIP:
|
|
|
|
alg = ALG_TKIP;
|
|
|
|
break;
|
|
|
|
case IW_ENCODE_ALG_CCMP:
|
|
|
|
alg = ALG_CCMP;
|
|
|
|
break;
|
2009-01-08 11:32:04 +00:00
|
|
|
case IW_ENCODE_ALG_AES_CMAC:
|
|
|
|
alg = ALG_AES_CMAC;
|
|
|
|
break;
|
2007-05-05 18:45:53 +00:00
|
|
|
default:
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (erq->flags & IW_ENCODE_DISABLED)
|
2007-09-26 15:53:17 +00:00
|
|
|
remove = 1;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
idx = erq->flags & IW_ENCODE_INDEX;
|
2009-01-08 11:32:04 +00:00
|
|
|
if (alg == ALG_AES_CMAC) {
|
|
|
|
if (idx < NUM_DEFAULT_KEYS + 1 ||
|
|
|
|
idx > NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) {
|
|
|
|
idx = -1;
|
|
|
|
if (!sdata->default_mgmt_key)
|
|
|
|
idx = 0;
|
|
|
|
else for (i = NUM_DEFAULT_KEYS;
|
|
|
|
i < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS;
|
|
|
|
i++) {
|
|
|
|
if (sdata->default_mgmt_key == sdata->keys[i])
|
|
|
|
{
|
|
|
|
idx = i;
|
|
|
|
break;
|
|
|
|
}
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
2009-01-08 11:32:04 +00:00
|
|
|
if (idx < 0)
|
|
|
|
return -EINVAL;
|
|
|
|
} else
|
|
|
|
idx--;
|
|
|
|
} else {
|
|
|
|
if (idx < 1 || idx > 4) {
|
|
|
|
idx = -1;
|
|
|
|
if (!sdata->default_key)
|
|
|
|
idx = 0;
|
|
|
|
else for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
|
|
|
|
if (sdata->default_key == sdata->keys[i]) {
|
|
|
|
idx = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (idx < 0)
|
|
|
|
return -EINVAL;
|
|
|
|
} else
|
|
|
|
idx--;
|
|
|
|
}
|
2007-05-05 18:45:53 +00:00
|
|
|
|
2008-08-03 00:04:37 +00:00
|
|
|
return ieee80211_set_encryption(sdata, ext->addr.sa_data, idx, alg,
|
2007-09-26 15:53:17 +00:00
|
|
|
remove,
|
2007-05-05 18:45:53 +00:00
|
|
|
ext->ext_flags &
|
|
|
|
IW_ENCODE_EXT_SET_TX_KEY,
|
|
|
|
ext->key, ext->key_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Structures to export the Wireless Handlers */
|
|
|
|
|
|
|
|
static const iw_handler ieee80211_handler[] =
|
|
|
|
{
|
|
|
|
(iw_handler) NULL, /* SIOCSIWCOMMIT */
|
2008-11-26 21:36:31 +00:00
|
|
|
(iw_handler) cfg80211_wext_giwname, /* SIOCGIWNAME */
|
2007-05-05 18:45:53 +00:00
|
|
|
(iw_handler) NULL, /* SIOCSIWNWID */
|
|
|
|
(iw_handler) NULL, /* SIOCGIWNWID */
|
|
|
|
(iw_handler) ieee80211_ioctl_siwfreq, /* SIOCSIWFREQ */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwfreq, /* SIOCGIWFREQ */
|
2008-11-26 22:31:40 +00:00
|
|
|
(iw_handler) cfg80211_wext_siwmode, /* SIOCSIWMODE */
|
|
|
|
(iw_handler) cfg80211_wext_giwmode, /* SIOCGIWMODE */
|
2007-05-05 18:45:53 +00:00
|
|
|
(iw_handler) NULL, /* SIOCSIWSENS */
|
|
|
|
(iw_handler) NULL, /* SIOCGIWSENS */
|
|
|
|
(iw_handler) NULL /* not used */, /* SIOCSIWRANGE */
|
2009-02-18 18:32:08 +00:00
|
|
|
(iw_handler) cfg80211_wext_giwrange, /* SIOCGIWRANGE */
|
2007-05-05 18:45:53 +00:00
|
|
|
(iw_handler) NULL /* not used */, /* SIOCSIWPRIV */
|
|
|
|
(iw_handler) NULL /* kernel code */, /* SIOCGIWPRIV */
|
|
|
|
(iw_handler) NULL /* not used */, /* SIOCSIWSTATS */
|
|
|
|
(iw_handler) NULL /* kernel code */, /* SIOCGIWSTATS */
|
2007-09-14 15:10:24 +00:00
|
|
|
(iw_handler) NULL, /* SIOCSIWSPY */
|
|
|
|
(iw_handler) NULL, /* SIOCGIWSPY */
|
|
|
|
(iw_handler) NULL, /* SIOCSIWTHRSPY */
|
|
|
|
(iw_handler) NULL, /* SIOCGIWTHRSPY */
|
2007-05-05 18:45:53 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_siwap, /* SIOCSIWAP */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwap, /* SIOCGIWAP */
|
|
|
|
(iw_handler) ieee80211_ioctl_siwmlme, /* SIOCSIWMLME */
|
|
|
|
(iw_handler) NULL, /* SIOCGIWAPLIST */
|
2009-02-10 20:25:55 +00:00
|
|
|
(iw_handler) cfg80211_wext_siwscan, /* SIOCSIWSCAN */
|
|
|
|
(iw_handler) cfg80211_wext_giwscan, /* SIOCGIWSCAN */
|
2007-05-05 18:45:53 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_siwessid, /* SIOCSIWESSID */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwessid, /* SIOCGIWESSID */
|
|
|
|
(iw_handler) NULL, /* SIOCSIWNICKN */
|
|
|
|
(iw_handler) NULL, /* SIOCGIWNICKN */
|
|
|
|
(iw_handler) NULL, /* -- hole -- */
|
|
|
|
(iw_handler) NULL, /* -- hole -- */
|
2007-07-10 17:32:10 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_siwrate, /* SIOCSIWRATE */
|
2007-06-11 00:57:33 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_giwrate, /* SIOCGIWRATE */
|
2007-05-05 18:45:53 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_siwrts, /* SIOCSIWRTS */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwrts, /* SIOCGIWRTS */
|
|
|
|
(iw_handler) ieee80211_ioctl_siwfrag, /* SIOCSIWFRAG */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwfrag, /* SIOCGIWFRAG */
|
2007-09-20 20:06:39 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_siwtxpower, /* SIOCSIWTXPOW */
|
2007-08-10 16:23:20 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_giwtxpower, /* SIOCGIWTXPOW */
|
2007-05-05 18:45:53 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_siwretry, /* SIOCSIWRETRY */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwretry, /* SIOCGIWRETRY */
|
|
|
|
(iw_handler) ieee80211_ioctl_siwencode, /* SIOCSIWENCODE */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwencode, /* SIOCGIWENCODE */
|
2008-07-04 08:49:31 +00:00
|
|
|
(iw_handler) ieee80211_ioctl_siwpower, /* SIOCSIWPOWER */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwpower, /* SIOCGIWPOWER */
|
2007-05-05 18:45:53 +00:00
|
|
|
(iw_handler) NULL, /* -- hole -- */
|
|
|
|
(iw_handler) NULL, /* -- hole -- */
|
|
|
|
(iw_handler) ieee80211_ioctl_siwgenie, /* SIOCSIWGENIE */
|
|
|
|
(iw_handler) NULL, /* SIOCGIWGENIE */
|
|
|
|
(iw_handler) ieee80211_ioctl_siwauth, /* SIOCSIWAUTH */
|
|
|
|
(iw_handler) ieee80211_ioctl_giwauth, /* SIOCGIWAUTH */
|
|
|
|
(iw_handler) ieee80211_ioctl_siwencodeext, /* SIOCSIWENCODEEXT */
|
|
|
|
(iw_handler) NULL, /* SIOCGIWENCODEEXT */
|
|
|
|
(iw_handler) NULL, /* SIOCSIWPMKSA */
|
|
|
|
(iw_handler) NULL, /* -- hole -- */
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct iw_handler_def ieee80211_iw_handler_def =
|
|
|
|
{
|
|
|
|
.num_standard = ARRAY_SIZE(ieee80211_handler),
|
|
|
|
.standard = (iw_handler *) ieee80211_handler,
|
|
|
|
.get_wireless_stats = ieee80211_get_wireless_stats,
|
|
|
|
};
|