2007-05-05 18:45:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2002-2005, Instant802 Networks, Inc.
|
|
|
|
* Copyright 2005-2006, Devicescape Software, Inc.
|
|
|
|
* Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
|
2008-07-09 12:40:35 +00:00
|
|
|
* Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
|
2007-05-05 18:45:53 +00:00
|
|
|
*
|
|
|
|
* 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/kernel.h>
|
|
|
|
#include <linux/if_arp.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
#include <net/mac80211.h>
|
|
|
|
#include "ieee80211_i.h"
|
|
|
|
#include "sta_info.h"
|
2007-05-05 18:46:38 +00:00
|
|
|
#include "debugfs_netdev.h"
|
2008-02-23 14:17:11 +00:00
|
|
|
#include "mesh.h"
|
2007-05-05 18:45:53 +00:00
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
/*
|
|
|
|
* Called when the netdev is removed or, by the code below, before
|
|
|
|
* the interface type changes.
|
|
|
|
*/
|
|
|
|
static void ieee80211_teardown_sdata(struct net_device *dev)
|
2007-05-05 18:45:53 +00:00
|
|
|
{
|
2008-07-09 12:40:35 +00:00
|
|
|
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
|
|
struct ieee80211_local *local = sdata->local;
|
|
|
|
struct beacon_data *beacon;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
int flushed;
|
2007-05-05 18:45:53 +00:00
|
|
|
int i;
|
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
/* free extra data */
|
|
|
|
ieee80211_free_keys(sdata);
|
|
|
|
|
2008-09-09 14:33:15 +00:00
|
|
|
ieee80211_debugfs_remove_netdev(sdata);
|
|
|
|
|
2007-05-05 18:45:53 +00:00
|
|
|
for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
|
2008-07-09 12:40:35 +00:00
|
|
|
__skb_queue_purge(&sdata->fragments[i].skb_list);
|
|
|
|
sdata->fragment_next = 0;
|
2007-08-28 21:01:55 +00:00
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
switch (sdata->vif.type) {
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_AP:
|
2008-07-09 12:40:35 +00:00
|
|
|
beacon = sdata->u.ap.beacon;
|
|
|
|
rcu_assign_pointer(sdata->u.ap.beacon, NULL);
|
|
|
|
synchronize_rcu();
|
|
|
|
kfree(beacon);
|
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
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
while ((skb = skb_dequeue(&sdata->u.ap.ps_bc_buf))) {
|
|
|
|
local->total_ps_buffered--;
|
|
|
|
dev_kfree_skb(skb);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_MESH_POINT:
|
2008-07-09 12:40:35 +00:00
|
|
|
if (ieee80211_vif_is_mesh(&sdata->vif))
|
2008-08-03 00:04:37 +00:00
|
|
|
mesh_rmc_free(sdata);
|
2008-09-10 22:01:49 +00:00
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_STATION:
|
|
|
|
case NL80211_IFTYPE_ADHOC:
|
2008-07-09 12:40:35 +00:00
|
|
|
kfree(sdata->u.sta.extra_ie);
|
|
|
|
kfree(sdata->u.sta.assocreq_ies);
|
|
|
|
kfree(sdata->u.sta.assocresp_ies);
|
|
|
|
kfree_skb(sdata->u.sta.probe_resp);
|
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_WDS:
|
|
|
|
case NL80211_IFTYPE_AP_VLAN:
|
|
|
|
case NL80211_IFTYPE_MONITOR:
|
2008-07-09 12:40:35 +00:00
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_UNSPECIFIED:
|
|
|
|
case __NL80211_IFTYPE_AFTER_LAST:
|
2008-07-09 12:40:35 +00:00
|
|
|
BUG();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
flushed = sta_info_flush(local, sdata);
|
|
|
|
WARN_ON(flushed);
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
/*
|
|
|
|
* Helper function to initialise an interface to a specific type.
|
|
|
|
*/
|
|
|
|
static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata,
|
2008-09-10 22:01:58 +00:00
|
|
|
enum nl80211_iftype type)
|
2007-05-05 18:45:53 +00:00
|
|
|
{
|
2008-07-09 12:40:35 +00:00
|
|
|
/* clear type-dependent union */
|
|
|
|
memset(&sdata->u, 0, sizeof(sdata->u));
|
|
|
|
|
|
|
|
/* and set some type-dependent values */
|
|
|
|
sdata->vif.type = type;
|
|
|
|
|
|
|
|
/* only monitor differs */
|
|
|
|
sdata->dev->type = ARPHRD_ETHER;
|
|
|
|
|
|
|
|
switch (type) {
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_AP:
|
2008-07-09 12:40:35 +00:00
|
|
|
skb_queue_head_init(&sdata->u.ap.ps_bc_buf);
|
|
|
|
INIT_LIST_HEAD(&sdata->u.ap.vlans);
|
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_STATION:
|
|
|
|
case NL80211_IFTYPE_ADHOC:
|
2008-09-10 22:01:52 +00:00
|
|
|
ieee80211_sta_setup_sdata(sdata);
|
2008-09-10 22:01:49 +00:00
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_MESH_POINT:
|
2008-07-09 12:40:35 +00:00
|
|
|
if (ieee80211_vif_is_mesh(&sdata->vif))
|
|
|
|
ieee80211_mesh_init_sdata(sdata);
|
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_MONITOR:
|
2008-07-09 12:40:35 +00:00
|
|
|
sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP;
|
|
|
|
sdata->dev->hard_start_xmit = ieee80211_monitor_start_xmit;
|
|
|
|
sdata->u.mntr_flags = MONITOR_FLAG_CONTROL |
|
|
|
|
MONITOR_FLAG_OTHER_BSS;
|
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_WDS:
|
|
|
|
case NL80211_IFTYPE_AP_VLAN:
|
2008-07-09 12:40:35 +00:00
|
|
|
break;
|
2008-09-10 22:01:58 +00:00
|
|
|
case NL80211_IFTYPE_UNSPECIFIED:
|
|
|
|
case __NL80211_IFTYPE_AFTER_LAST:
|
2008-07-09 12:40:35 +00:00
|
|
|
BUG();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ieee80211_debugfs_add_netdev(sdata);
|
|
|
|
}
|
|
|
|
|
2008-07-09 12:40:36 +00:00
|
|
|
int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata,
|
2008-09-10 22:01:58 +00:00
|
|
|
enum nl80211_iftype type)
|
2008-07-09 12:40:35 +00:00
|
|
|
{
|
2008-07-09 12:40:36 +00:00
|
|
|
ASSERT_RTNL();
|
|
|
|
|
|
|
|
if (type == sdata->vif.type)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We could, here, on changes between IBSS/STA/MESH modes,
|
|
|
|
* invoke an MLME function instead that disassociates etc.
|
|
|
|
* and goes into the requested mode.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (netif_running(sdata->dev))
|
|
|
|
return -EBUSY;
|
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
/* Purge and reset type-dependent state. */
|
|
|
|
ieee80211_teardown_sdata(sdata->dev);
|
|
|
|
ieee80211_setup_sdata(sdata, type);
|
|
|
|
|
|
|
|
/* reset some values that shouldn't be kept across type changes */
|
2008-09-10 22:01:57 +00:00
|
|
|
sdata->bss_conf.basic_rates =
|
|
|
|
ieee80211_mandatory_rates(sdata->local,
|
|
|
|
sdata->local->hw.conf.channel->band);
|
2008-07-09 12:40:35 +00:00
|
|
|
sdata->drop_unencrypted = 0;
|
2008-07-09 12:40:36 +00:00
|
|
|
|
|
|
|
return 0;
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
int ieee80211_if_add(struct ieee80211_local *local, const char *name,
|
2008-09-10 22:01:58 +00:00
|
|
|
struct net_device **new_dev, enum nl80211_iftype type,
|
2008-02-23 14:17:11 +00:00
|
|
|
struct vif_params *params)
|
2007-05-05 18:45:53 +00:00
|
|
|
{
|
|
|
|
struct net_device *ndev;
|
|
|
|
struct ieee80211_sub_if_data *sdata = NULL;
|
2008-07-09 12:40:35 +00:00
|
|
|
int ret, i;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
ASSERT_RTNL();
|
2008-07-09 12:40:35 +00:00
|
|
|
|
2007-12-19 00:31:26 +00:00
|
|
|
ndev = alloc_netdev(sizeof(*sdata) + local->hw.vif_data_size,
|
2007-05-05 18:45:53 +00:00
|
|
|
name, ieee80211_if_setup);
|
|
|
|
if (!ndev)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2008-05-13 03:51:44 +00:00
|
|
|
ndev->needed_headroom = local->tx_headroom +
|
|
|
|
4*6 /* four MAC addresses */
|
|
|
|
+ 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */
|
|
|
|
+ 6 /* mesh */
|
|
|
|
+ 8 /* rfc1042/bridge tunnel */
|
|
|
|
- ETH_HLEN /* ethernet hard_header_len */
|
|
|
|
+ IEEE80211_ENCRYPT_HEADROOM;
|
|
|
|
ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM;
|
|
|
|
|
2007-05-05 18:45:53 +00:00
|
|
|
ret = dev_alloc_name(ndev, ndev->name);
|
|
|
|
if (ret < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
memcpy(ndev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
|
|
|
|
SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));
|
|
|
|
|
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
|
|
|
/* don't use IEEE80211_DEV_TO_SUB_IF because it checks too much */
|
|
|
|
sdata = netdev_priv(ndev);
|
2007-05-05 18:45:53 +00:00
|
|
|
ndev->ieee80211_ptr = &sdata->wdev;
|
2008-07-09 12:40:35 +00:00
|
|
|
|
|
|
|
/* initialise type-independent data */
|
2007-05-05 18:45:53 +00:00
|
|
|
sdata->wdev.wiphy = local->hw.wiphy;
|
|
|
|
sdata->local = local;
|
2008-07-09 12:40:35 +00:00
|
|
|
sdata->dev = ndev;
|
|
|
|
|
|
|
|
for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
|
|
|
|
skb_queue_head_init(&sdata->fragments[i].skb_list);
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&sdata->key_list);
|
|
|
|
|
|
|
|
sdata->force_unicast_rateidx = -1;
|
|
|
|
sdata->max_ratectrl_rateidx = -1;
|
|
|
|
|
|
|
|
/* setup type-dependent data */
|
|
|
|
ieee80211_setup_sdata(sdata, type);
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
ret = register_netdevice(ndev);
|
|
|
|
if (ret)
|
|
|
|
goto fail;
|
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
ndev->uninit = ieee80211_teardown_sdata;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
2008-02-23 14:17:19 +00:00
|
|
|
if (ieee80211_vif_is_mesh(&sdata->vif) &&
|
|
|
|
params && params->mesh_id_len)
|
2008-09-10 22:01:49 +00:00
|
|
|
ieee80211_sdata_set_mesh_id(sdata,
|
|
|
|
params->mesh_id_len,
|
|
|
|
params->mesh_id);
|
2008-02-23 14:17:11 +00:00
|
|
|
|
2007-09-18 21:29:21 +00:00
|
|
|
list_add_tail_rcu(&sdata->list, &local->interfaces);
|
|
|
|
|
2007-05-05 18:45:53 +00:00
|
|
|
if (new_dev)
|
|
|
|
*new_dev = ndev;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
fail:
|
2007-05-05 18:45:53 +00:00
|
|
|
free_netdev(ndev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-08-03 00:04:37 +00:00
|
|
|
void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata)
|
2007-05-05 18:45:53 +00:00
|
|
|
{
|
|
|
|
ASSERT_RTNL();
|
2007-08-28 21:01:55 +00:00
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
list_del_rcu(&sdata->list);
|
|
|
|
synchronize_rcu();
|
2008-08-03 00:04:37 +00:00
|
|
|
unregister_netdevice(sdata->dev);
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
/*
|
|
|
|
* Remove all interfaces, may only be called at hardware unregistration
|
|
|
|
* time because it doesn't do RCU-safe list removals.
|
|
|
|
*/
|
|
|
|
void ieee80211_remove_interfaces(struct ieee80211_local *local)
|
2007-05-05 18:45:53 +00:00
|
|
|
{
|
2008-07-09 12:40:35 +00:00
|
|
|
struct ieee80211_sub_if_data *sdata, *tmp;
|
2007-05-05 18:45:53 +00:00
|
|
|
|
|
|
|
ASSERT_RTNL();
|
|
|
|
|
2008-07-09 12:40:35 +00:00
|
|
|
list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
|
|
|
|
list_del(&sdata->list);
|
|
|
|
unregister_netdevice(sdata->dev);
|
2007-05-05 18:45:53 +00:00
|
|
|
}
|
|
|
|
}
|