iface.c 8.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright 2002-2005, Instant802 Networks, Inc.
 * Copyright 2005-2006, Devicescape Software, Inc.
 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
 *
 * 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"
J
Jiri Benc 已提交
17
#include "debugfs_netdev.h"
18
#include "mesh.h"
19 20 21 22 23 24 25 26 27

void ieee80211_if_sdata_init(struct ieee80211_sub_if_data *sdata)
{
	int i;

	/* Default values for sub-interface parameters */
	sdata->drop_unencrypted = 0;
	for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
		skb_queue_head_init(&sdata->fragments[i].skb_list);
J
Johannes Berg 已提交
28 29

	INIT_LIST_HEAD(&sdata->key_list);
30 31 32 33 34 35
}

static void ieee80211_if_sdata_deinit(struct ieee80211_sub_if_data *sdata)
{
	int i;

J
Johannes Berg 已提交
36
	for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
37 38 39 40 41
		__skb_queue_purge(&sdata->fragments[i].skb_list);
}

/* Must be called with rtnl lock held. */
int ieee80211_if_add(struct net_device *dev, const char *name,
42 43
		     struct net_device **new_dev, int type,
		     struct vif_params *params)
44 45 46 47 48 49 50
{
	struct net_device *ndev;
	struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
	struct ieee80211_sub_if_data *sdata = NULL;
	int ret;

	ASSERT_RTNL();
51
	ndev = alloc_netdev(sizeof(*sdata) + local->hw.vif_data_size,
52 53 54 55
			    name, ieee80211_if_setup);
	if (!ndev)
		return -ENOMEM;

56 57 58 59 60 61 62 63 64
	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;

65 66 67 68 69 70 71 72 73 74 75 76 77 78
	ret = dev_alloc_name(ndev, ndev->name);
	if (ret < 0)
		goto fail;

	memcpy(ndev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
	ndev->base_addr = dev->base_addr;
	ndev->irq = dev->irq;
	ndev->mem_start = dev->mem_start;
	ndev->mem_end = dev->mem_end;
	SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));

	sdata = IEEE80211_DEV_TO_SUB_IF(ndev);
	ndev->ieee80211_ptr = &sdata->wdev;
	sdata->wdev.wiphy = local->hw.wiphy;
79
	sdata->vif.type = IEEE80211_IF_TYPE_AP;
80 81 82 83 84 85 86 87
	sdata->dev = ndev;
	sdata->local = local;
	ieee80211_if_sdata_init(sdata);

	ret = register_netdevice(ndev);
	if (ret)
		goto fail;

J
Jiri Benc 已提交
88
	ieee80211_debugfs_add_netdev(sdata);
89 90
	ieee80211_if_set_type(ndev, type);

J
Johannes Berg 已提交
91 92 93 94 95
	if (ieee80211_vif_is_mesh(&sdata->vif) &&
	    params && params->mesh_id_len)
		ieee80211_if_sta_set_mesh_id(&sdata->u.sta,
					     params->mesh_id_len,
					     params->mesh_id);
96

97
	/* we're under RTNL so all this is fine */
98 99 100 101
	if (unlikely(local->reg_state == IEEE80211_DEV_UNREGISTERED)) {
		__ieee80211_if_del(local, sdata);
		return -ENODEV;
	}
102 103
	list_add_tail_rcu(&sdata->list, &local->interfaces);

104 105 106 107 108 109 110 111 112 113 114 115 116
	if (new_dev)
		*new_dev = ndev;

	return 0;

fail:
	free_netdev(ndev);
	return ret;
}

void ieee80211_if_set_type(struct net_device *dev, int type)
{
	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
117
	int oldtype = sdata->vif.type;
118

119 120 121 122 123
	/*
	 * We need to call this function on the master interface
	 * which already has a hard_start_xmit routine assigned
	 * which must not be changed.
	 */
124
	if (dev != sdata->local->mdev)
125 126 127 128 129 130 131 132 133 134
		dev->hard_start_xmit = ieee80211_subif_start_xmit;

	/*
	 * Called even when register_netdevice fails, it would
	 * oops if assigned before initialising the rest.
	 */
	dev->uninit = ieee80211_if_reinit;

	/* most have no BSS pointer */
	sdata->bss = NULL;
135
	sdata->vif.type = type;
136

137 138
	sdata->basic_rates = 0;

139 140
	switch (type) {
	case IEEE80211_IF_TYPE_WDS:
141
		/* nothing special */
142 143
		break;
	case IEEE80211_IF_TYPE_VLAN:
144
		sdata->u.vlan.ap = NULL;
145 146 147 148 149 150
		break;
	case IEEE80211_IF_TYPE_AP:
		sdata->u.ap.force_unicast_rateidx = -1;
		sdata->u.ap.max_ratectrl_rateidx = -1;
		skb_queue_head_init(&sdata->u.ap.ps_bc_buf);
		sdata->bss = &sdata->u.ap;
151
		INIT_LIST_HEAD(&sdata->u.ap.vlans);
152
		break;
153
	case IEEE80211_IF_TYPE_MESH_POINT:
154 155 156 157 158 159 160 161 162 163 164 165 166 167
	case IEEE80211_IF_TYPE_STA:
	case IEEE80211_IF_TYPE_IBSS: {
		struct ieee80211_sub_if_data *msdata;
		struct ieee80211_if_sta *ifsta;

		ifsta = &sdata->u.sta;
		INIT_WORK(&ifsta->work, ieee80211_sta_work);
		setup_timer(&ifsta->timer, ieee80211_sta_timer,
			    (unsigned long) sdata);
		skb_queue_head_init(&ifsta->skb_queue);

		ifsta->capab = WLAN_CAPABILITY_ESS;
		ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN |
			IEEE80211_AUTH_ALG_SHARED_KEY;
168 169 170
		ifsta->flags |= IEEE80211_STA_CREATE_IBSS |
			IEEE80211_STA_AUTO_BSSID_SEL |
			IEEE80211_STA_AUTO_CHANNEL_SEL;
171
		if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4)
172
			ifsta->flags |= IEEE80211_STA_WMM_ENABLED;
173 174 175

		msdata = IEEE80211_DEV_TO_SUB_IF(sdata->local->mdev);
		sdata->bss = &msdata->u.ap;
176

J
Johannes Berg 已提交
177 178
		if (ieee80211_vif_is_mesh(&sdata->vif))
			ieee80211_mesh_init_sdata(sdata);
179 180 181 182
		break;
	}
	case IEEE80211_IF_TYPE_MNTR:
		dev->type = ARPHRD_IEEE80211_RADIOTAP;
183
		dev->hard_start_xmit = ieee80211_monitor_start_xmit;
184 185
		sdata->u.mntr_flags = MONITOR_FLAG_CONTROL |
				      MONITOR_FLAG_OTHER_BSS;
186 187 188
		break;
	default:
		printk(KERN_WARNING "%s: %s: Unknown interface type 0x%x",
189
		       dev->name, __func__, type);
190
	}
J
Jiri Benc 已提交
191
	ieee80211_debugfs_change_if_type(sdata, oldtype);
192 193 194 195 196 197 198
}

/* Must be called with rtnl lock held. */
void ieee80211_if_reinit(struct net_device *dev)
{
	struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
199
	struct sk_buff *skb;
200
	int flushed;
201 202

	ASSERT_RTNL();
J
Johannes Berg 已提交
203 204 205

	ieee80211_free_keys(sdata);

206 207
	ieee80211_if_sdata_deinit(sdata);

J
Johannes Berg 已提交
208 209 210 211
	/* Need to handle mesh specially to allow eliding the function call */
	if (ieee80211_vif_is_mesh(&sdata->vif))
		mesh_rmc_free(dev);

212
	switch (sdata->vif.type) {
213 214 215 216
	case IEEE80211_IF_TYPE_INVALID:
		/* cannot happen */
		WARN_ON(1);
		break;
217 218 219 220
	case IEEE80211_IF_TYPE_AP: {
		/* Remove all virtual interfaces that use this BSS
		 * as their sdata->bss */
		struct ieee80211_sub_if_data *tsdata, *n;
221
		struct beacon_data *beacon;
222

223
		list_for_each_entry_safe(tsdata, n, &local->interfaces, list) {
224 225 226 227 228
			if (tsdata != sdata && tsdata->bss == &sdata->u.ap) {
				printk(KERN_DEBUG "%s: removing virtual "
				       "interface %s because its BSS interface"
				       " is being removed\n",
				       sdata->dev->name, tsdata->dev->name);
229 230 231 232 233 234 235
				list_del_rcu(&tsdata->list);
				/*
				 * We have lots of time and can afford
				 * to sync for each interface
				 */
				synchronize_rcu();
				__ieee80211_if_del(local, tsdata);
236 237 238
			}
		}

239 240 241 242
		beacon = sdata->u.ap.beacon;
		rcu_assign_pointer(sdata->u.ap.beacon, NULL);
		synchronize_rcu();
		kfree(beacon);
243

244 245 246
		while ((skb = skb_dequeue(&sdata->u.ap.ps_bc_buf))) {
			local->total_ps_buffered--;
			dev_kfree_skb(skb);
247 248 249 250 251
		}

		break;
	}
	case IEEE80211_IF_TYPE_WDS:
252
		/* nothing to do */
253
		break;
254
	case IEEE80211_IF_TYPE_MESH_POINT:
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
	case IEEE80211_IF_TYPE_STA:
	case IEEE80211_IF_TYPE_IBSS:
		kfree(sdata->u.sta.extra_ie);
		sdata->u.sta.extra_ie = NULL;
		kfree(sdata->u.sta.assocreq_ies);
		sdata->u.sta.assocreq_ies = NULL;
		kfree(sdata->u.sta.assocresp_ies);
		sdata->u.sta.assocresp_ies = NULL;
		if (sdata->u.sta.probe_resp) {
			dev_kfree_skb(sdata->u.sta.probe_resp);
			sdata->u.sta.probe_resp = NULL;
		}

		break;
	case IEEE80211_IF_TYPE_MNTR:
		dev->type = ARPHRD_ETHER;
		break;
272 273 274
	case IEEE80211_IF_TYPE_VLAN:
		sdata->u.vlan.ap = NULL;
		break;
275 276
	}

277 278
	flushed = sta_info_flush(local, sdata);
	WARN_ON(flushed);
279 280 281 282 283 284 285 286 287 288 289

	memset(&sdata->u, 0, sizeof(sdata->u));
	ieee80211_if_sdata_init(sdata);
}

/* Must be called with rtnl lock held. */
void __ieee80211_if_del(struct ieee80211_local *local,
			struct ieee80211_sub_if_data *sdata)
{
	struct net_device *dev = sdata->dev;

J
Jiri Benc 已提交
290
	ieee80211_debugfs_remove_netdev(sdata);
291 292 293 294 295 296 297 298 299 300 301 302 303
	unregister_netdevice(dev);
	/* Except master interface, the net_device will be freed by
	 * net_device->destructor (i. e. ieee80211_if_free). */
}

/* Must be called with rtnl lock held. */
int ieee80211_if_remove(struct net_device *dev, const char *name, int id)
{
	struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
	struct ieee80211_sub_if_data *sdata, *n;

	ASSERT_RTNL();

304
	list_for_each_entry_safe(sdata, n, &local->interfaces, list) {
305
		if ((sdata->vif.type == id || id == -1) &&
306 307
		    strcmp(name, sdata->dev->name) == 0 &&
		    sdata->dev != local->mdev) {
308 309
			list_del_rcu(&sdata->list);
			synchronize_rcu();
310 311 312 313 314 315 316 317 318 319 320 321 322 323
			__ieee80211_if_del(local, sdata);
			return 0;
		}
	}
	return -ENODEV;
}

void ieee80211_if_free(struct net_device *dev)
{
	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);

	ieee80211_if_sdata_deinit(sdata);
	free_netdev(dev);
}