mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 05:36:24 +00:00
[MAC80211]: make userspace-mlme a per-interface setting
Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
58d4185e36
commit
ddd3d2be85
4 changed files with 9 additions and 12 deletions
|
@ -254,7 +254,7 @@ static int ieee80211_open(struct net_device *dev)
|
||||||
ieee80211_enable_keys(sdata);
|
ieee80211_enable_keys(sdata);
|
||||||
|
|
||||||
if (sdata->type == IEEE80211_IF_TYPE_STA &&
|
if (sdata->type == IEEE80211_IF_TYPE_STA &&
|
||||||
!local->user_space_mlme)
|
!(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME))
|
||||||
netif_carrier_off(dev);
|
netif_carrier_off(dev);
|
||||||
else
|
else
|
||||||
netif_carrier_on(dev);
|
netif_carrier_on(dev);
|
||||||
|
|
|
@ -287,6 +287,7 @@ struct ieee80211_if_sta {
|
||||||
* generator reports that there are no present stations that cannot support short
|
* generator reports that there are no present stations that cannot support short
|
||||||
* preambles */
|
* preambles */
|
||||||
#define IEEE80211_SDATA_SHORT_PREAMBLE BIT(3)
|
#define IEEE80211_SDATA_SHORT_PREAMBLE BIT(3)
|
||||||
|
#define IEEE80211_SDATA_USERSPACE_MLME BIT(4)
|
||||||
struct ieee80211_sub_if_data {
|
struct ieee80211_sub_if_data {
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
enum ieee80211_if_types type;
|
enum ieee80211_if_types type;
|
||||||
|
@ -553,8 +554,6 @@ struct ieee80211_local {
|
||||||
unsigned int hw_modes; /* bitfield of supported hardware modes;
|
unsigned int hw_modes; /* bitfield of supported hardware modes;
|
||||||
* (1 << MODE_*) */
|
* (1 << MODE_*) */
|
||||||
|
|
||||||
int user_space_mlme;
|
|
||||||
|
|
||||||
#ifdef CONFIG_MAC80211_DEBUGFS
|
#ifdef CONFIG_MAC80211_DEBUGFS
|
||||||
struct local_debugfsdentries {
|
struct local_debugfsdentries {
|
||||||
struct dentry *channel;
|
struct dentry *channel;
|
||||||
|
|
|
@ -105,12 +105,12 @@ static int ieee80211_ioctl_siwgenie(struct net_device *dev,
|
||||||
struct iw_point *data, char *extra)
|
struct iw_point *data, char *extra)
|
||||||
{
|
{
|
||||||
struct ieee80211_sub_if_data *sdata;
|
struct ieee80211_sub_if_data *sdata;
|
||||||
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
||||||
|
|
||||||
if (local->user_space_mlme)
|
|
||||||
return -EOPNOTSUPP;
|
|
||||||
|
|
||||||
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
||||||
|
|
||||||
|
if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
|
||||||
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
if (sdata->type == IEEE80211_IF_TYPE_STA ||
|
if (sdata->type == IEEE80211_IF_TYPE_STA ||
|
||||||
sdata->type == IEEE80211_IF_TYPE_IBSS) {
|
sdata->type == IEEE80211_IF_TYPE_IBSS) {
|
||||||
int ret = ieee80211_sta_set_extra_ie(dev, extra, data->length);
|
int ret = ieee80211_sta_set_extra_ie(dev, extra, data->length);
|
||||||
|
@ -374,7 +374,6 @@ static int ieee80211_ioctl_siwessid(struct net_device *dev,
|
||||||
struct iw_request_info *info,
|
struct iw_request_info *info,
|
||||||
struct iw_point *data, char *ssid)
|
struct iw_point *data, char *ssid)
|
||||||
{
|
{
|
||||||
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
||||||
struct ieee80211_sub_if_data *sdata;
|
struct ieee80211_sub_if_data *sdata;
|
||||||
size_t len = data->length;
|
size_t len = data->length;
|
||||||
|
|
||||||
|
@ -386,7 +385,7 @@ static int ieee80211_ioctl_siwessid(struct net_device *dev,
|
||||||
if (sdata->type == IEEE80211_IF_TYPE_STA ||
|
if (sdata->type == IEEE80211_IF_TYPE_STA ||
|
||||||
sdata->type == IEEE80211_IF_TYPE_IBSS) {
|
sdata->type == IEEE80211_IF_TYPE_IBSS) {
|
||||||
int ret;
|
int ret;
|
||||||
if (local->user_space_mlme) {
|
if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
|
||||||
if (len > IEEE80211_MAX_SSID_LEN)
|
if (len > IEEE80211_MAX_SSID_LEN)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
memcpy(sdata->u.sta.ssid, ssid, len);
|
memcpy(sdata->u.sta.ssid, ssid, len);
|
||||||
|
@ -451,14 +450,13 @@ static int ieee80211_ioctl_siwap(struct net_device *dev,
|
||||||
struct iw_request_info *info,
|
struct iw_request_info *info,
|
||||||
struct sockaddr *ap_addr, char *extra)
|
struct sockaddr *ap_addr, char *extra)
|
||||||
{
|
{
|
||||||
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
|
|
||||||
struct ieee80211_sub_if_data *sdata;
|
struct ieee80211_sub_if_data *sdata;
|
||||||
|
|
||||||
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
||||||
if (sdata->type == IEEE80211_IF_TYPE_STA ||
|
if (sdata->type == IEEE80211_IF_TYPE_STA ||
|
||||||
sdata->type == IEEE80211_IF_TYPE_IBSS) {
|
sdata->type == IEEE80211_IF_TYPE_IBSS) {
|
||||||
int ret;
|
int ret;
|
||||||
if (local->user_space_mlme) {
|
if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME) {
|
||||||
memcpy(sdata->u.sta.bssid, (u8 *) &ap_addr->sa_data,
|
memcpy(sdata->u.sta.bssid, (u8 *) &ap_addr->sa_data,
|
||||||
ETH_ALEN);
|
ETH_ALEN);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -1199,7 +1199,7 @@ ieee80211_rx_h_mgmt(struct ieee80211_txrx_data *rx)
|
||||||
sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
|
sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
|
||||||
if ((sdata->type == IEEE80211_IF_TYPE_STA ||
|
if ((sdata->type == IEEE80211_IF_TYPE_STA ||
|
||||||
sdata->type == IEEE80211_IF_TYPE_IBSS) &&
|
sdata->type == IEEE80211_IF_TYPE_IBSS) &&
|
||||||
!rx->local->user_space_mlme)
|
!(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME))
|
||||||
ieee80211_sta_rx_mgmt(rx->dev, rx->skb, rx->u.rx.status);
|
ieee80211_sta_rx_mgmt(rx->dev, rx->skb, rx->u.rx.status);
|
||||||
else
|
else
|
||||||
return TXRX_DROP;
|
return TXRX_DROP;
|
||||||
|
|
Loading…
Reference in a new issue