diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-07-09 08:40:35 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-07-14 14:30:07 -0400 |
commit | 75636525fbfa78fa33fd754c89785cfde750acd3 (patch) | |
tree | 2c614681382a53bec50248c621ba4c8bb07ce670 /net/mac80211/iface.c | |
parent | 3e122be089e6fb8d3f322416da4cdbb80ce12927 (diff) |
mac80211: revamp virtual interface handling
This patch revamps the virtual interface handling and makes the
code much easier to follow. Fewer functions, better names, less
spaghetti code.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/iface.c')
-rw-r--r-- | net/mac80211/iface.c | 337 |
1 files changed, 153 insertions, 184 deletions
diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c index f2aefd4b8637..6cf121bebd7a 100644 --- a/net/mac80211/iface.c +++ b/net/mac80211/iface.c | |||
@@ -2,6 +2,7 @@ | |||
2 | * Copyright 2002-2005, Instant802 Networks, Inc. | 2 | * Copyright 2002-2005, Instant802 Networks, Inc. |
3 | * Copyright 2005-2006, Devicescape Software, Inc. | 3 | * Copyright 2005-2006, Devicescape Software, Inc. |
4 | * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz> | 4 | * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz> |
5 | * Copyright 2008, Johannes Berg <johannes@sipsolutions.net> | ||
5 | * | 6 | * |
6 | * This program is free software; you can redistribute it and/or modify | 7 | * 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 | * it under the terms of the GNU General Public License version 2 as |
@@ -17,39 +18,149 @@ | |||
17 | #include "debugfs_netdev.h" | 18 | #include "debugfs_netdev.h" |
18 | #include "mesh.h" | 19 | #include "mesh.h" |
19 | 20 | ||
20 | void ieee80211_if_sdata_init(struct ieee80211_sub_if_data *sdata) | 21 | /* |
22 | * Called when the netdev is removed or, by the code below, before | ||
23 | * the interface type changes. | ||
24 | */ | ||
25 | static void ieee80211_teardown_sdata(struct net_device *dev) | ||
21 | { | 26 | { |
27 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | ||
28 | struct ieee80211_local *local = sdata->local; | ||
29 | struct beacon_data *beacon; | ||
30 | struct sk_buff *skb; | ||
31 | int flushed; | ||
22 | int i; | 32 | int i; |
23 | 33 | ||
24 | /* Default values for sub-interface parameters */ | 34 | ieee80211_debugfs_remove_netdev(sdata); |
25 | sdata->drop_unencrypted = 0; | 35 | |
36 | /* free extra data */ | ||
37 | ieee80211_free_keys(sdata); | ||
38 | |||
26 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) | 39 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) |
27 | skb_queue_head_init(&sdata->fragments[i].skb_list); | 40 | __skb_queue_purge(&sdata->fragments[i].skb_list); |
41 | sdata->fragment_next = 0; | ||
28 | 42 | ||
29 | INIT_LIST_HEAD(&sdata->key_list); | 43 | switch (sdata->vif.type) { |
44 | case IEEE80211_IF_TYPE_AP: | ||
45 | beacon = sdata->u.ap.beacon; | ||
46 | rcu_assign_pointer(sdata->u.ap.beacon, NULL); | ||
47 | synchronize_rcu(); | ||
48 | kfree(beacon); | ||
30 | 49 | ||
31 | sdata->force_unicast_rateidx = -1; | 50 | while ((skb = skb_dequeue(&sdata->u.ap.ps_bc_buf))) { |
32 | sdata->max_ratectrl_rateidx = -1; | 51 | local->total_ps_buffered--; |
52 | dev_kfree_skb(skb); | ||
53 | } | ||
54 | |||
55 | break; | ||
56 | case IEEE80211_IF_TYPE_MESH_POINT: | ||
57 | /* Allow compiler to elide mesh_rmc_free call. */ | ||
58 | if (ieee80211_vif_is_mesh(&sdata->vif)) | ||
59 | mesh_rmc_free(dev); | ||
60 | /* fall through */ | ||
61 | case IEEE80211_IF_TYPE_STA: | ||
62 | case IEEE80211_IF_TYPE_IBSS: | ||
63 | kfree(sdata->u.sta.extra_ie); | ||
64 | kfree(sdata->u.sta.assocreq_ies); | ||
65 | kfree(sdata->u.sta.assocresp_ies); | ||
66 | kfree_skb(sdata->u.sta.probe_resp); | ||
67 | break; | ||
68 | case IEEE80211_IF_TYPE_WDS: | ||
69 | case IEEE80211_IF_TYPE_VLAN: | ||
70 | case IEEE80211_IF_TYPE_MNTR: | ||
71 | break; | ||
72 | case IEEE80211_IF_TYPE_INVALID: | ||
73 | BUG(); | ||
74 | break; | ||
75 | } | ||
76 | |||
77 | flushed = sta_info_flush(local, sdata); | ||
78 | WARN_ON(flushed); | ||
33 | } | 79 | } |
34 | 80 | ||
35 | static void ieee80211_if_sdata_deinit(struct ieee80211_sub_if_data *sdata) | 81 | /* |
82 | * Helper function to initialise an interface to a specific type. | ||
83 | */ | ||
84 | static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata, | ||
85 | enum ieee80211_if_types type) | ||
36 | { | 86 | { |
37 | int i; | 87 | struct ieee80211_if_sta *ifsta; |
38 | 88 | ||
39 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) | 89 | /* clear type-dependent union */ |
40 | __skb_queue_purge(&sdata->fragments[i].skb_list); | 90 | memset(&sdata->u, 0, sizeof(sdata->u)); |
91 | |||
92 | /* and set some type-dependent values */ | ||
93 | sdata->vif.type = type; | ||
94 | |||
95 | /* only monitor differs */ | ||
96 | sdata->dev->type = ARPHRD_ETHER; | ||
97 | |||
98 | switch (type) { | ||
99 | case IEEE80211_IF_TYPE_AP: | ||
100 | skb_queue_head_init(&sdata->u.ap.ps_bc_buf); | ||
101 | INIT_LIST_HEAD(&sdata->u.ap.vlans); | ||
102 | break; | ||
103 | case IEEE80211_IF_TYPE_MESH_POINT: | ||
104 | case IEEE80211_IF_TYPE_STA: | ||
105 | case IEEE80211_IF_TYPE_IBSS: | ||
106 | ifsta = &sdata->u.sta; | ||
107 | INIT_WORK(&ifsta->work, ieee80211_sta_work); | ||
108 | setup_timer(&ifsta->timer, ieee80211_sta_timer, | ||
109 | (unsigned long) sdata); | ||
110 | skb_queue_head_init(&ifsta->skb_queue); | ||
111 | |||
112 | ifsta->capab = WLAN_CAPABILITY_ESS; | ||
113 | ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN | | ||
114 | IEEE80211_AUTH_ALG_SHARED_KEY; | ||
115 | ifsta->flags |= IEEE80211_STA_CREATE_IBSS | | ||
116 | IEEE80211_STA_AUTO_BSSID_SEL | | ||
117 | IEEE80211_STA_AUTO_CHANNEL_SEL; | ||
118 | if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4) | ||
119 | ifsta->flags |= IEEE80211_STA_WMM_ENABLED; | ||
120 | |||
121 | if (ieee80211_vif_is_mesh(&sdata->vif)) | ||
122 | ieee80211_mesh_init_sdata(sdata); | ||
123 | break; | ||
124 | case IEEE80211_IF_TYPE_MNTR: | ||
125 | sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP; | ||
126 | sdata->dev->hard_start_xmit = ieee80211_monitor_start_xmit; | ||
127 | sdata->u.mntr_flags = MONITOR_FLAG_CONTROL | | ||
128 | MONITOR_FLAG_OTHER_BSS; | ||
129 | break; | ||
130 | case IEEE80211_IF_TYPE_WDS: | ||
131 | case IEEE80211_IF_TYPE_VLAN: | ||
132 | break; | ||
133 | case IEEE80211_IF_TYPE_INVALID: | ||
134 | BUG(); | ||
135 | break; | ||
136 | } | ||
137 | |||
138 | ieee80211_debugfs_add_netdev(sdata); | ||
139 | } | ||
140 | |||
141 | void ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata, | ||
142 | enum ieee80211_if_types type) | ||
143 | { | ||
144 | /* Purge and reset type-dependent state. */ | ||
145 | ieee80211_teardown_sdata(sdata->dev); | ||
146 | ieee80211_setup_sdata(sdata, type); | ||
147 | |||
148 | /* reset some values that shouldn't be kept across type changes */ | ||
149 | sdata->basic_rates = 0; | ||
150 | sdata->drop_unencrypted = 0; | ||
151 | sdata->sequence = 0; | ||
41 | } | 152 | } |
42 | 153 | ||
43 | /* Must be called with rtnl lock held. */ | ||
44 | int ieee80211_if_add(struct ieee80211_local *local, const char *name, | 154 | int ieee80211_if_add(struct ieee80211_local *local, const char *name, |
45 | struct net_device **new_dev, int type, | 155 | struct net_device **new_dev, enum ieee80211_if_types type, |
46 | struct vif_params *params) | 156 | struct vif_params *params) |
47 | { | 157 | { |
48 | struct net_device *ndev; | 158 | struct net_device *ndev; |
49 | struct ieee80211_sub_if_data *sdata = NULL; | 159 | struct ieee80211_sub_if_data *sdata = NULL; |
50 | int ret; | 160 | int ret, i; |
51 | 161 | ||
52 | ASSERT_RTNL(); | 162 | ASSERT_RTNL(); |
163 | |||
53 | ndev = alloc_netdev(sizeof(*sdata) + local->hw.vif_data_size, | 164 | ndev = alloc_netdev(sizeof(*sdata) + local->hw.vif_data_size, |
54 | name, ieee80211_if_setup); | 165 | name, ieee80211_if_setup); |
55 | if (!ndev) | 166 | if (!ndev) |
@@ -74,18 +185,28 @@ int ieee80211_if_add(struct ieee80211_local *local, const char *name, | |||
74 | /* don't use IEEE80211_DEV_TO_SUB_IF because it checks too much */ | 185 | /* don't use IEEE80211_DEV_TO_SUB_IF because it checks too much */ |
75 | sdata = netdev_priv(ndev); | 186 | sdata = netdev_priv(ndev); |
76 | ndev->ieee80211_ptr = &sdata->wdev; | 187 | ndev->ieee80211_ptr = &sdata->wdev; |
188 | |||
189 | /* initialise type-independent data */ | ||
77 | sdata->wdev.wiphy = local->hw.wiphy; | 190 | sdata->wdev.wiphy = local->hw.wiphy; |
78 | sdata->vif.type = IEEE80211_IF_TYPE_AP; | ||
79 | sdata->dev = ndev; | ||
80 | sdata->local = local; | 191 | sdata->local = local; |
81 | ieee80211_if_sdata_init(sdata); | 192 | sdata->dev = ndev; |
193 | |||
194 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) | ||
195 | skb_queue_head_init(&sdata->fragments[i].skb_list); | ||
196 | |||
197 | INIT_LIST_HEAD(&sdata->key_list); | ||
198 | |||
199 | sdata->force_unicast_rateidx = -1; | ||
200 | sdata->max_ratectrl_rateidx = -1; | ||
201 | |||
202 | /* setup type-dependent data */ | ||
203 | ieee80211_setup_sdata(sdata, type); | ||
82 | 204 | ||
83 | ret = register_netdevice(ndev); | 205 | ret = register_netdevice(ndev); |
84 | if (ret) | 206 | if (ret) |
85 | goto fail; | 207 | goto fail; |
86 | 208 | ||
87 | ieee80211_debugfs_add_netdev(sdata); | 209 | ndev->uninit = ieee80211_teardown_sdata; |
88 | ieee80211_if_set_type(ndev, type); | ||
89 | 210 | ||
90 | if (ieee80211_vif_is_mesh(&sdata->vif) && | 211 | if (ieee80211_vif_is_mesh(&sdata->vif) && |
91 | params && params->mesh_id_len) | 212 | params && params->mesh_id_len) |
@@ -93,11 +214,6 @@ int ieee80211_if_add(struct ieee80211_local *local, const char *name, | |||
93 | params->mesh_id_len, | 214 | params->mesh_id_len, |
94 | params->mesh_id); | 215 | params->mesh_id); |
95 | 216 | ||
96 | /* we're under RTNL so all this is fine */ | ||
97 | if (unlikely(local->reg_state == IEEE80211_DEV_UNREGISTERED)) { | ||
98 | __ieee80211_if_del(local, sdata); | ||
99 | return -ENODEV; | ||
100 | } | ||
101 | list_add_tail_rcu(&sdata->list, &local->interfaces); | 217 | list_add_tail_rcu(&sdata->list, &local->interfaces); |
102 | 218 | ||
103 | if (new_dev) | 219 | if (new_dev) |
@@ -105,181 +221,34 @@ int ieee80211_if_add(struct ieee80211_local *local, const char *name, | |||
105 | 221 | ||
106 | return 0; | 222 | return 0; |
107 | 223 | ||
108 | fail: | 224 | fail: |
109 | free_netdev(ndev); | 225 | free_netdev(ndev); |
110 | return ret; | 226 | return ret; |
111 | } | 227 | } |
112 | 228 | ||
113 | void ieee80211_if_set_type(struct net_device *dev, int type) | 229 | void ieee80211_if_remove(struct net_device *dev) |
114 | { | 230 | { |
115 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | 231 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
116 | int oldtype = sdata->vif.type; | ||
117 | |||
118 | /* | ||
119 | * Called even when register_netdevice fails, it would | ||
120 | * oops if assigned before initialising the rest. | ||
121 | */ | ||
122 | dev->uninit = ieee80211_if_reinit; | ||
123 | |||
124 | /* most have no BSS pointer */ | ||
125 | sdata->bss = NULL; | ||
126 | sdata->vif.type = type; | ||
127 | |||
128 | sdata->basic_rates = 0; | ||
129 | |||
130 | switch (type) { | ||
131 | case IEEE80211_IF_TYPE_WDS: | ||
132 | case IEEE80211_IF_TYPE_VLAN: | ||
133 | /* nothing special */ | ||
134 | break; | ||
135 | case IEEE80211_IF_TYPE_AP: | ||
136 | skb_queue_head_init(&sdata->u.ap.ps_bc_buf); | ||
137 | INIT_LIST_HEAD(&sdata->u.ap.vlans); | ||
138 | break; | ||
139 | case IEEE80211_IF_TYPE_MESH_POINT: | ||
140 | case IEEE80211_IF_TYPE_STA: | ||
141 | case IEEE80211_IF_TYPE_IBSS: { | ||
142 | struct ieee80211_if_sta *ifsta; | ||
143 | |||
144 | ifsta = &sdata->u.sta; | ||
145 | INIT_WORK(&ifsta->work, ieee80211_sta_work); | ||
146 | setup_timer(&ifsta->timer, ieee80211_sta_timer, | ||
147 | (unsigned long) sdata); | ||
148 | skb_queue_head_init(&ifsta->skb_queue); | ||
149 | |||
150 | ifsta->capab = WLAN_CAPABILITY_ESS; | ||
151 | ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN | | ||
152 | IEEE80211_AUTH_ALG_SHARED_KEY; | ||
153 | ifsta->flags |= IEEE80211_STA_CREATE_IBSS | | ||
154 | IEEE80211_STA_AUTO_BSSID_SEL | | ||
155 | IEEE80211_STA_AUTO_CHANNEL_SEL; | ||
156 | if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4) | ||
157 | ifsta->flags |= IEEE80211_STA_WMM_ENABLED; | ||
158 | |||
159 | if (ieee80211_vif_is_mesh(&sdata->vif)) | ||
160 | ieee80211_mesh_init_sdata(sdata); | ||
161 | break; | ||
162 | } | ||
163 | case IEEE80211_IF_TYPE_MNTR: | ||
164 | dev->type = ARPHRD_IEEE80211_RADIOTAP; | ||
165 | dev->hard_start_xmit = ieee80211_monitor_start_xmit; | ||
166 | sdata->u.mntr_flags = MONITOR_FLAG_CONTROL | | ||
167 | MONITOR_FLAG_OTHER_BSS; | ||
168 | break; | ||
169 | case IEEE80211_IF_TYPE_INVALID: | ||
170 | BUG(); | ||
171 | break; | ||
172 | } | ||
173 | ieee80211_debugfs_change_if_type(sdata, oldtype); | ||
174 | } | ||
175 | |||
176 | /* Must be called with rtnl lock held. */ | ||
177 | void ieee80211_if_reinit(struct net_device *dev) | ||
178 | { | ||
179 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); | ||
180 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | ||
181 | struct sk_buff *skb; | ||
182 | int flushed; | ||
183 | 232 | ||
184 | ASSERT_RTNL(); | 233 | ASSERT_RTNL(); |
185 | 234 | ||
186 | ieee80211_free_keys(sdata); | 235 | list_del_rcu(&sdata->list); |
187 | 236 | synchronize_rcu(); | |
188 | ieee80211_if_sdata_deinit(sdata); | ||
189 | |||
190 | /* Need to handle mesh specially to allow eliding the function call */ | ||
191 | if (ieee80211_vif_is_mesh(&sdata->vif)) | ||
192 | mesh_rmc_free(dev); | ||
193 | |||
194 | switch (sdata->vif.type) { | ||
195 | case IEEE80211_IF_TYPE_INVALID: | ||
196 | /* cannot happen */ | ||
197 | WARN_ON(1); | ||
198 | break; | ||
199 | case IEEE80211_IF_TYPE_AP: { | ||
200 | struct beacon_data *beacon; | ||
201 | |||
202 | beacon = sdata->u.ap.beacon; | ||
203 | rcu_assign_pointer(sdata->u.ap.beacon, NULL); | ||
204 | synchronize_rcu(); | ||
205 | kfree(beacon); | ||
206 | |||
207 | while ((skb = skb_dequeue(&sdata->u.ap.ps_bc_buf))) { | ||
208 | local->total_ps_buffered--; | ||
209 | dev_kfree_skb(skb); | ||
210 | } | ||
211 | |||
212 | break; | ||
213 | } | ||
214 | case IEEE80211_IF_TYPE_WDS: | ||
215 | case IEEE80211_IF_TYPE_VLAN: | ||
216 | /* nothing to do */ | ||
217 | break; | ||
218 | case IEEE80211_IF_TYPE_MESH_POINT: | ||
219 | case IEEE80211_IF_TYPE_STA: | ||
220 | case IEEE80211_IF_TYPE_IBSS: | ||
221 | kfree(sdata->u.sta.extra_ie); | ||
222 | sdata->u.sta.extra_ie = NULL; | ||
223 | kfree(sdata->u.sta.assocreq_ies); | ||
224 | sdata->u.sta.assocreq_ies = NULL; | ||
225 | kfree(sdata->u.sta.assocresp_ies); | ||
226 | sdata->u.sta.assocresp_ies = NULL; | ||
227 | if (sdata->u.sta.probe_resp) { | ||
228 | dev_kfree_skb(sdata->u.sta.probe_resp); | ||
229 | sdata->u.sta.probe_resp = NULL; | ||
230 | } | ||
231 | |||
232 | break; | ||
233 | case IEEE80211_IF_TYPE_MNTR: | ||
234 | dev->type = ARPHRD_ETHER; | ||
235 | break; | ||
236 | } | ||
237 | |||
238 | flushed = sta_info_flush(local, sdata); | ||
239 | WARN_ON(flushed); | ||
240 | |||
241 | memset(&sdata->u, 0, sizeof(sdata->u)); | ||
242 | ieee80211_if_sdata_init(sdata); | ||
243 | } | ||
244 | |||
245 | /* Must be called with rtnl lock held. */ | ||
246 | void __ieee80211_if_del(struct ieee80211_local *local, | ||
247 | struct ieee80211_sub_if_data *sdata) | ||
248 | { | ||
249 | struct net_device *dev = sdata->dev; | ||
250 | |||
251 | ieee80211_debugfs_remove_netdev(sdata); | ||
252 | unregister_netdevice(dev); | 237 | unregister_netdevice(dev); |
253 | /* | ||
254 | * The net_device will be freed by its destructor, | ||
255 | * i.e. ieee80211_if_free. | ||
256 | */ | ||
257 | } | 238 | } |
258 | 239 | ||
259 | /* Must be called with rtnl lock held. */ | 240 | /* |
260 | int ieee80211_if_remove(struct net_device *dev, const char *name, int id) | 241 | * Remove all interfaces, may only be called at hardware unregistration |
242 | * time because it doesn't do RCU-safe list removals. | ||
243 | */ | ||
244 | void ieee80211_remove_interfaces(struct ieee80211_local *local) | ||
261 | { | 245 | { |
262 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); | 246 | struct ieee80211_sub_if_data *sdata, *tmp; |
263 | struct ieee80211_sub_if_data *sdata, *n; | ||
264 | 247 | ||
265 | ASSERT_RTNL(); | 248 | ASSERT_RTNL(); |
266 | 249 | ||
267 | list_for_each_entry_safe(sdata, n, &local->interfaces, list) { | 250 | list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) { |
268 | if ((sdata->vif.type == id || id == -1) && | 251 | list_del(&sdata->list); |
269 | strcmp(name, sdata->dev->name) == 0) { | 252 | unregister_netdevice(sdata->dev); |
270 | list_del_rcu(&sdata->list); | ||
271 | synchronize_rcu(); | ||
272 | __ieee80211_if_del(local, sdata); | ||
273 | return 0; | ||
274 | } | ||
275 | } | 253 | } |
276 | return -ENODEV; | ||
277 | } | ||
278 | |||
279 | void ieee80211_if_free(struct net_device *dev) | ||
280 | { | ||
281 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | ||
282 | |||
283 | ieee80211_if_sdata_deinit(sdata); | ||
284 | free_netdev(dev); | ||
285 | } | 254 | } |