blob: 06e88a5a036d2ebce586a94f0bf7a635ca8a6405 [file] [log] [blame]
Jiri Bencf0706e822007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/kernel.h>
11#include <linux/if_arp.h>
12#include <linux/netdevice.h>
13#include <linux/rtnetlink.h>
14#include <net/mac80211.h>
15#include "ieee80211_i.h"
16#include "sta_info.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070017#include "debugfs_netdev.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010018#include "mesh.h"
Jiri Bencf0706e822007-05-05 11:45:53 -070019
20void ieee80211_if_sdata_init(struct ieee80211_sub_if_data *sdata)
21{
22 int i;
23
24 /* Default values for sub-interface parameters */
25 sdata->drop_unencrypted = 0;
Jiri Bencf0706e822007-05-05 11:45:53 -070026 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
27 skb_queue_head_init(&sdata->fragments[i].skb_list);
Johannes Berg11a843b2007-08-28 17:01:55 -040028
29 INIT_LIST_HEAD(&sdata->key_list);
Jiri Bencf0706e822007-05-05 11:45:53 -070030}
31
32static void ieee80211_if_sdata_deinit(struct ieee80211_sub_if_data *sdata)
33{
34 int i;
35
36 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
37 __skb_queue_purge(&sdata->fragments[i].skb_list);
38 }
39}
40
41/* Must be called with rtnl lock held. */
42int ieee80211_if_add(struct net_device *dev, const char *name,
Luis Carlos Coboee385852008-02-23 15:17:11 +010043 struct net_device **new_dev, int type,
44 struct vif_params *params)
Jiri Bencf0706e822007-05-05 11:45:53 -070045{
46 struct net_device *ndev;
47 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
48 struct ieee80211_sub_if_data *sdata = NULL;
49 int ret;
50
51 ASSERT_RTNL();
Johannes Berg32bfd352007-12-19 01:31:26 +010052 ndev = alloc_netdev(sizeof(*sdata) + local->hw.vif_data_size,
Jiri Bencf0706e822007-05-05 11:45:53 -070053 name, ieee80211_if_setup);
54 if (!ndev)
55 return -ENOMEM;
56
Johannes Bergf3994ec2008-05-12 20:51:44 -070057 ndev->needed_headroom = local->tx_headroom +
58 4*6 /* four MAC addresses */
59 + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */
60 + 6 /* mesh */
61 + 8 /* rfc1042/bridge tunnel */
62 - ETH_HLEN /* ethernet hard_header_len */
63 + IEEE80211_ENCRYPT_HEADROOM;
64 ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM;
65
Jiri Bencf0706e822007-05-05 11:45:53 -070066 ret = dev_alloc_name(ndev, ndev->name);
67 if (ret < 0)
68 goto fail;
69
70 memcpy(ndev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
71 ndev->base_addr = dev->base_addr;
72 ndev->irq = dev->irq;
73 ndev->mem_start = dev->mem_start;
74 ndev->mem_end = dev->mem_end;
75 SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));
76
77 sdata = IEEE80211_DEV_TO_SUB_IF(ndev);
78 ndev->ieee80211_ptr = &sdata->wdev;
79 sdata->wdev.wiphy = local->hw.wiphy;
Johannes Berg51fb61e2007-12-19 01:31:27 +010080 sdata->vif.type = IEEE80211_IF_TYPE_AP;
Jiri Bencf0706e822007-05-05 11:45:53 -070081 sdata->dev = ndev;
82 sdata->local = local;
83 ieee80211_if_sdata_init(sdata);
84
85 ret = register_netdevice(ndev);
86 if (ret)
87 goto fail;
88
Jiri Bence9f207f2007-05-05 11:46:38 -070089 ieee80211_debugfs_add_netdev(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -070090 ieee80211_if_set_type(ndev, type);
91
Johannes Berg902acc72008-02-23 15:17:19 +010092 if (ieee80211_vif_is_mesh(&sdata->vif) &&
93 params && params->mesh_id_len)
94 ieee80211_if_sta_set_mesh_id(&sdata->u.sta,
95 params->mesh_id_len,
96 params->mesh_id);
Luis Carlos Coboee385852008-02-23 15:17:11 +010097
Johannes Berg79010422007-09-18 17:29:21 -040098 /* we're under RTNL so all this is fine */
Jiri Bencf0706e822007-05-05 11:45:53 -070099 if (unlikely(local->reg_state == IEEE80211_DEV_UNREGISTERED)) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700100 __ieee80211_if_del(local, sdata);
101 return -ENODEV;
102 }
Johannes Berg79010422007-09-18 17:29:21 -0400103 list_add_tail_rcu(&sdata->list, &local->interfaces);
104
Jiri Bencf0706e822007-05-05 11:45:53 -0700105 if (new_dev)
106 *new_dev = ndev;
Jiri Bencf0706e822007-05-05 11:45:53 -0700107
Jiri Bencf0706e822007-05-05 11:45:53 -0700108 return 0;
109
110fail:
111 free_netdev(ndev);
112 return ret;
113}
114
Jiri Bencf0706e822007-05-05 11:45:53 -0700115void ieee80211_if_set_type(struct net_device *dev, int type)
116{
117 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100118 int oldtype = sdata->vif.type;
Jiri Bencf0706e822007-05-05 11:45:53 -0700119
Johannes Berg5b2812e2007-09-26 14:27:23 +0200120 /*
121 * We need to call this function on the master interface
122 * which already has a hard_start_xmit routine assigned
123 * which must not be changed.
124 */
John W. Linville0654ff02007-10-04 14:04:40 -0400125 if (dev != sdata->local->mdev)
Johannes Berg5b2812e2007-09-26 14:27:23 +0200126 dev->hard_start_xmit = ieee80211_subif_start_xmit;
Johannes Berg40f7cac2007-07-10 19:32:08 +0200127
Johannes Berg5b2812e2007-09-26 14:27:23 +0200128 /*
129 * Called even when register_netdevice fails, it would
130 * oops if assigned before initialising the rest.
131 */
132 dev->uninit = ieee80211_if_reinit;
133
134 /* most have no BSS pointer */
135 sdata->bss = NULL;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100136 sdata->vif.type = type;
Johannes Berg5b2812e2007-09-26 14:27:23 +0200137
Johannes Berg8318d782008-01-24 19:38:38 +0100138 sdata->basic_rates = 0;
139
Jiri Bencf0706e822007-05-05 11:45:53 -0700140 switch (type) {
141 case IEEE80211_IF_TYPE_WDS:
Johannes Berg5b2812e2007-09-26 14:27:23 +0200142 /* nothing special */
Jiri Bencf0706e822007-05-05 11:45:53 -0700143 break;
144 case IEEE80211_IF_TYPE_VLAN:
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400145 sdata->u.vlan.ap = NULL;
Jiri Bencf0706e822007-05-05 11:45:53 -0700146 break;
147 case IEEE80211_IF_TYPE_AP:
Jiri Bencf0706e822007-05-05 11:45:53 -0700148 sdata->u.ap.force_unicast_rateidx = -1;
149 sdata->u.ap.max_ratectrl_rateidx = -1;
150 skb_queue_head_init(&sdata->u.ap.ps_bc_buf);
151 sdata->bss = &sdata->u.ap;
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400152 INIT_LIST_HEAD(&sdata->u.ap.vlans);
Jiri Bencf0706e822007-05-05 11:45:53 -0700153 break;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100154 case IEEE80211_IF_TYPE_MESH_POINT:
Jiri Bencf0706e822007-05-05 11:45:53 -0700155 case IEEE80211_IF_TYPE_STA:
156 case IEEE80211_IF_TYPE_IBSS: {
157 struct ieee80211_sub_if_data *msdata;
158 struct ieee80211_if_sta *ifsta;
159
160 ifsta = &sdata->u.sta;
161 INIT_WORK(&ifsta->work, ieee80211_sta_work);
162 setup_timer(&ifsta->timer, ieee80211_sta_timer,
163 (unsigned long) sdata);
164 skb_queue_head_init(&ifsta->skb_queue);
165
166 ifsta->capab = WLAN_CAPABILITY_ESS;
167 ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN |
168 IEEE80211_AUTH_ALG_SHARED_KEY;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400169 ifsta->flags |= IEEE80211_STA_CREATE_IBSS |
170 IEEE80211_STA_WMM_ENABLED |
171 IEEE80211_STA_AUTO_BSSID_SEL |
172 IEEE80211_STA_AUTO_CHANNEL_SEL;
Jiri Bencf0706e822007-05-05 11:45:53 -0700173
174 msdata = IEEE80211_DEV_TO_SUB_IF(sdata->local->mdev);
175 sdata->bss = &msdata->u.ap;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100176
Johannes Berg902acc72008-02-23 15:17:19 +0100177 if (ieee80211_vif_is_mesh(&sdata->vif))
178 ieee80211_mesh_init_sdata(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700179 break;
180 }
181 case IEEE80211_IF_TYPE_MNTR:
182 dev->type = ARPHRD_IEEE80211_RADIOTAP;
Johannes Berg40f7cac2007-07-10 19:32:08 +0200183 dev->hard_start_xmit = ieee80211_monitor_start_xmit;
Michael Wu8cc9a732008-01-31 19:48:23 +0100184 sdata->u.mntr_flags = MONITOR_FLAG_CONTROL |
185 MONITOR_FLAG_OTHER_BSS;
Jiri Bencf0706e822007-05-05 11:45:53 -0700186 break;
187 default:
188 printk(KERN_WARNING "%s: %s: Unknown interface type 0x%x",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800189 dev->name, __func__, type);
Jiri Bencf0706e822007-05-05 11:45:53 -0700190 }
Jiri Bence9f207f2007-05-05 11:46:38 -0700191 ieee80211_debugfs_change_if_type(sdata, oldtype);
Jiri Bencf0706e822007-05-05 11:45:53 -0700192}
193
194/* Must be called with rtnl lock held. */
195void ieee80211_if_reinit(struct net_device *dev)
196{
197 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
198 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg5b2812e2007-09-26 14:27:23 +0200199 struct sk_buff *skb;
Johannes Berg44213b52008-02-25 16:27:49 +0100200 int flushed;
Jiri Bencf0706e822007-05-05 11:45:53 -0700201
202 ASSERT_RTNL();
Johannes Berg11a843b2007-08-28 17:01:55 -0400203
204 ieee80211_free_keys(sdata);
205
Jiri Bencf0706e822007-05-05 11:45:53 -0700206 ieee80211_if_sdata_deinit(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700207
Johannes Berg902acc72008-02-23 15:17:19 +0100208 /* Need to handle mesh specially to allow eliding the function call */
209 if (ieee80211_vif_is_mesh(&sdata->vif))
210 mesh_rmc_free(dev);
211
Johannes Berg51fb61e2007-12-19 01:31:27 +0100212 switch (sdata->vif.type) {
Johannes Berga2897552007-09-28 14:01:25 +0200213 case IEEE80211_IF_TYPE_INVALID:
214 /* cannot happen */
215 WARN_ON(1);
216 break;
Jiri Bencf0706e822007-05-05 11:45:53 -0700217 case IEEE80211_IF_TYPE_AP: {
218 /* Remove all virtual interfaces that use this BSS
219 * as their sdata->bss */
220 struct ieee80211_sub_if_data *tsdata, *n;
Johannes Berge6a5ddf2008-02-25 16:27:42 +0100221 struct beacon_data *beacon;
Jiri Bencf0706e822007-05-05 11:45:53 -0700222
Johannes Berg79010422007-09-18 17:29:21 -0400223 list_for_each_entry_safe(tsdata, n, &local->interfaces, list) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700224 if (tsdata != sdata && tsdata->bss == &sdata->u.ap) {
225 printk(KERN_DEBUG "%s: removing virtual "
226 "interface %s because its BSS interface"
227 " is being removed\n",
228 sdata->dev->name, tsdata->dev->name);
Johannes Berg79010422007-09-18 17:29:21 -0400229 list_del_rcu(&tsdata->list);
230 /*
231 * We have lots of time and can afford
232 * to sync for each interface
233 */
234 synchronize_rcu();
235 __ieee80211_if_del(local, tsdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700236 }
237 }
Jiri Bencf0706e822007-05-05 11:45:53 -0700238
Johannes Berge6a5ddf2008-02-25 16:27:42 +0100239 beacon = sdata->u.ap.beacon;
240 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
241 synchronize_rcu();
242 kfree(beacon);
Jiri Bencf0706e822007-05-05 11:45:53 -0700243
Johannes Berg5b2812e2007-09-26 14:27:23 +0200244 while ((skb = skb_dequeue(&sdata->u.ap.ps_bc_buf))) {
245 local->total_ps_buffered--;
246 dev_kfree_skb(skb);
Jiri Bencf0706e822007-05-05 11:45:53 -0700247 }
248
249 break;
250 }
251 case IEEE80211_IF_TYPE_WDS:
Johannes Berg44213b52008-02-25 16:27:49 +0100252 /* nothing to do */
Jiri Bencf0706e822007-05-05 11:45:53 -0700253 break;
Johannes Berg6032f932008-02-23 15:17:07 +0100254 case IEEE80211_IF_TYPE_MESH_POINT:
Jiri Bencf0706e822007-05-05 11:45:53 -0700255 case IEEE80211_IF_TYPE_STA:
256 case IEEE80211_IF_TYPE_IBSS:
257 kfree(sdata->u.sta.extra_ie);
258 sdata->u.sta.extra_ie = NULL;
259 kfree(sdata->u.sta.assocreq_ies);
260 sdata->u.sta.assocreq_ies = NULL;
261 kfree(sdata->u.sta.assocresp_ies);
262 sdata->u.sta.assocresp_ies = NULL;
263 if (sdata->u.sta.probe_resp) {
264 dev_kfree_skb(sdata->u.sta.probe_resp);
265 sdata->u.sta.probe_resp = NULL;
266 }
267
268 break;
269 case IEEE80211_IF_TYPE_MNTR:
270 dev->type = ARPHRD_ETHER;
271 break;
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400272 case IEEE80211_IF_TYPE_VLAN:
273 sdata->u.vlan.ap = NULL;
274 break;
Jiri Bencf0706e822007-05-05 11:45:53 -0700275 }
276
Johannes Berg44213b52008-02-25 16:27:49 +0100277 flushed = sta_info_flush(local, sdata);
278 WARN_ON(flushed);
Jiri Bencf0706e822007-05-05 11:45:53 -0700279
280 memset(&sdata->u, 0, sizeof(sdata->u));
281 ieee80211_if_sdata_init(sdata);
282}
283
284/* Must be called with rtnl lock held. */
285void __ieee80211_if_del(struct ieee80211_local *local,
286 struct ieee80211_sub_if_data *sdata)
287{
288 struct net_device *dev = sdata->dev;
289
Jiri Bence9f207f2007-05-05 11:46:38 -0700290 ieee80211_debugfs_remove_netdev(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700291 unregister_netdevice(dev);
292 /* Except master interface, the net_device will be freed by
293 * net_device->destructor (i. e. ieee80211_if_free). */
294}
295
296/* Must be called with rtnl lock held. */
297int ieee80211_if_remove(struct net_device *dev, const char *name, int id)
298{
299 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
300 struct ieee80211_sub_if_data *sdata, *n;
301
302 ASSERT_RTNL();
303
Johannes Berg79010422007-09-18 17:29:21 -0400304 list_for_each_entry_safe(sdata, n, &local->interfaces, list) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100305 if ((sdata->vif.type == id || id == -1) &&
Jiri Bencf0706e822007-05-05 11:45:53 -0700306 strcmp(name, sdata->dev->name) == 0 &&
307 sdata->dev != local->mdev) {
Johannes Berg79010422007-09-18 17:29:21 -0400308 list_del_rcu(&sdata->list);
309 synchronize_rcu();
Jiri Bencf0706e822007-05-05 11:45:53 -0700310 __ieee80211_if_del(local, sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700311 return 0;
312 }
313 }
Jiri Bencf0706e822007-05-05 11:45:53 -0700314 return -ENODEV;
315}
316
317void ieee80211_if_free(struct net_device *dev)
318{
Jiri Bencf0706e822007-05-05 11:45:53 -0700319 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
320
Jiri Bencf0706e822007-05-05 11:45:53 -0700321 ieee80211_if_sdata_deinit(sdata);
322 free_netdev(dev);
323}