]>
Commit | Line | Data |
---|---|---|
704232c2 JB |
1 | /* |
2 | * This is the linux wireless configuration interface. | |
3 | * | |
5f2aa25e | 4 | * Copyright 2006-2010 Johannes Berg <[email protected]> |
704232c2 JB |
5 | */ |
6 | ||
e9c0268f JP |
7 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
8 | ||
704232c2 JB |
9 | #include <linux/if.h> |
10 | #include <linux/module.h> | |
11 | #include <linux/err.h> | |
704232c2 | 12 | #include <linux/list.h> |
5a0e3ad6 | 13 | #include <linux/slab.h> |
704232c2 JB |
14 | #include <linux/nl80211.h> |
15 | #include <linux/debugfs.h> | |
16 | #include <linux/notifier.h> | |
17 | #include <linux/device.h> | |
16a832e7 | 18 | #include <linux/etherdevice.h> |
1f87f7d3 | 19 | #include <linux/rtnetlink.h> |
d43c36dc | 20 | #include <linux/sched.h> |
704232c2 JB |
21 | #include <net/genetlink.h> |
22 | #include <net/cfg80211.h> | |
55682965 | 23 | #include "nl80211.h" |
704232c2 JB |
24 | #include "core.h" |
25 | #include "sysfs.h" | |
1ac61302 | 26 | #include "debugfs.h" |
a9a11622 | 27 | #include "wext-compat.h" |
4890e3be | 28 | #include "ethtool.h" |
e35e4d28 | 29 | #include "rdev-ops.h" |
704232c2 JB |
30 | |
31 | /* name for sysfs, %d is appended */ | |
32 | #define PHY_NAME "phy" | |
33 | ||
34 | MODULE_AUTHOR("Johannes Berg"); | |
35 | MODULE_LICENSE("GPL"); | |
36 | MODULE_DESCRIPTION("wireless configuration support"); | |
37 | ||
5f2aa25e | 38 | /* RCU-protected (and cfg80211_mutex for writers) */ |
79c97e97 | 39 | LIST_HEAD(cfg80211_rdev_list); |
f5ea9120 | 40 | int cfg80211_rdev_list_generation; |
a1794390 | 41 | |
a1794390 | 42 | DEFINE_MUTEX(cfg80211_mutex); |
704232c2 JB |
43 | |
44 | /* for debugfs */ | |
45 | static struct dentry *ieee80211_debugfs_dir; | |
46 | ||
e60d7443 AB |
47 | /* for the cleanup, scan and event works */ |
48 | struct workqueue_struct *cfg80211_wq; | |
49 | ||
40db6c77 AK |
50 | static bool cfg80211_disable_40mhz_24ghz; |
51 | module_param(cfg80211_disable_40mhz_24ghz, bool, 0644); | |
52 | MODULE_PARM_DESC(cfg80211_disable_40mhz_24ghz, | |
53 | "Disable 40MHz support in the 2.4GHz band"); | |
54 | ||
806a9e39 | 55 | /* requires cfg80211_mutex to be held! */ |
79c97e97 | 56 | struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx) |
55682965 | 57 | { |
79c97e97 | 58 | struct cfg80211_registered_device *result = NULL, *rdev; |
55682965 | 59 | |
761cf7ec LR |
60 | assert_cfg80211_lock(); |
61 | ||
79c97e97 JB |
62 | list_for_each_entry(rdev, &cfg80211_rdev_list, list) { |
63 | if (rdev->wiphy_idx == wiphy_idx) { | |
64 | result = rdev; | |
55682965 JB |
65 | break; |
66 | } | |
67 | } | |
68 | ||
69 | return result; | |
70 | } | |
71 | ||
806a9e39 LR |
72 | int get_wiphy_idx(struct wiphy *wiphy) |
73 | { | |
f4173766 JB |
74 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); |
75 | ||
79c97e97 | 76 | return rdev->wiphy_idx; |
806a9e39 LR |
77 | } |
78 | ||
79c97e97 | 79 | /* requires cfg80211_rdev_mutex to be held! */ |
806a9e39 LR |
80 | struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx) |
81 | { | |
79c97e97 | 82 | struct cfg80211_registered_device *rdev; |
806a9e39 | 83 | |
806a9e39 LR |
84 | assert_cfg80211_lock(); |
85 | ||
79c97e97 JB |
86 | rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx); |
87 | if (!rdev) | |
806a9e39 | 88 | return NULL; |
79c97e97 | 89 | return &rdev->wiphy; |
806a9e39 LR |
90 | } |
91 | ||
55682965 | 92 | struct cfg80211_registered_device * |
463d0183 | 93 | cfg80211_get_dev_from_ifindex(struct net *net, int ifindex) |
55682965 | 94 | { |
79c97e97 | 95 | struct cfg80211_registered_device *rdev = ERR_PTR(-ENODEV); |
55682965 JB |
96 | struct net_device *dev; |
97 | ||
a1794390 | 98 | mutex_lock(&cfg80211_mutex); |
463d0183 | 99 | dev = dev_get_by_index(net, ifindex); |
55682965 JB |
100 | if (!dev) |
101 | goto out; | |
102 | if (dev->ieee80211_ptr) { | |
79c97e97 JB |
103 | rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy); |
104 | mutex_lock(&rdev->mtx); | |
55682965 | 105 | } else |
79c97e97 | 106 | rdev = ERR_PTR(-ENODEV); |
55682965 JB |
107 | dev_put(dev); |
108 | out: | |
a1794390 | 109 | mutex_unlock(&cfg80211_mutex); |
79c97e97 | 110 | return rdev; |
55682965 JB |
111 | } |
112 | ||
4bbf4d56 | 113 | /* requires cfg80211_mutex to be held */ |
55682965 JB |
114 | int cfg80211_dev_rename(struct cfg80211_registered_device *rdev, |
115 | char *newname) | |
116 | { | |
79c97e97 | 117 | struct cfg80211_registered_device *rdev2; |
7623225f | 118 | int wiphy_idx, taken = -1, result, digits; |
55682965 | 119 | |
4bbf4d56 | 120 | assert_cfg80211_lock(); |
2940bb69 | 121 | |
7623225f JB |
122 | /* prohibit calling the thing phy%d when %d is not its number */ |
123 | sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken); | |
124 | if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) { | |
125 | /* count number of places needed to print wiphy_idx */ | |
126 | digits = 1; | |
127 | while (wiphy_idx /= 10) | |
128 | digits++; | |
129 | /* | |
130 | * deny the name if it is phy<idx> where <idx> is printed | |
131 | * without leading zeroes. taken == strlen(newname) here | |
132 | */ | |
133 | if (taken == strlen(PHY_NAME) + digits) | |
134 | return -EINVAL; | |
135 | } | |
136 | ||
137 | ||
2940bb69 | 138 | /* Ignore nop renames */ |
2940bb69 | 139 | if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0) |
4bbf4d56 | 140 | return 0; |
2940bb69 EB |
141 | |
142 | /* Ensure another device does not already have this name. */ | |
79c97e97 JB |
143 | list_for_each_entry(rdev2, &cfg80211_rdev_list, list) |
144 | if (strcmp(newname, dev_name(&rdev2->wiphy.dev)) == 0) | |
7623225f | 145 | return -EINVAL; |
55682965 | 146 | |
55682965 JB |
147 | result = device_rename(&rdev->wiphy.dev, newname); |
148 | if (result) | |
4bbf4d56 | 149 | return result; |
55682965 | 150 | |
33c0360b JB |
151 | if (rdev->wiphy.debugfsdir && |
152 | !debugfs_rename(rdev->wiphy.debugfsdir->d_parent, | |
55682965 JB |
153 | rdev->wiphy.debugfsdir, |
154 | rdev->wiphy.debugfsdir->d_parent, | |
155 | newname)) | |
e9c0268f | 156 | pr_err("failed to rename debugfs dir to %s!\n", newname); |
55682965 | 157 | |
4bbf4d56 | 158 | nl80211_notify_dev_rename(rdev); |
55682965 | 159 | |
4bbf4d56 | 160 | return 0; |
55682965 JB |
161 | } |
162 | ||
463d0183 JB |
163 | int cfg80211_switch_netns(struct cfg80211_registered_device *rdev, |
164 | struct net *net) | |
165 | { | |
166 | struct wireless_dev *wdev; | |
167 | int err = 0; | |
168 | ||
5be83de5 | 169 | if (!(rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK)) |
463d0183 JB |
170 | return -EOPNOTSUPP; |
171 | ||
89a54e48 | 172 | list_for_each_entry(wdev, &rdev->wdev_list, list) { |
ba22fb5b JB |
173 | if (!wdev->netdev) |
174 | continue; | |
463d0183 JB |
175 | wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL; |
176 | err = dev_change_net_namespace(wdev->netdev, net, "wlan%d"); | |
177 | if (err) | |
178 | break; | |
179 | wdev->netdev->features |= NETIF_F_NETNS_LOCAL; | |
180 | } | |
181 | ||
182 | if (err) { | |
183 | /* failed -- clean up to old netns */ | |
184 | net = wiphy_net(&rdev->wiphy); | |
185 | ||
89a54e48 | 186 | list_for_each_entry_continue_reverse(wdev, &rdev->wdev_list, |
463d0183 | 187 | list) { |
ba22fb5b JB |
188 | if (!wdev->netdev) |
189 | continue; | |
463d0183 JB |
190 | wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL; |
191 | err = dev_change_net_namespace(wdev->netdev, net, | |
192 | "wlan%d"); | |
193 | WARN_ON(err); | |
194 | wdev->netdev->features |= NETIF_F_NETNS_LOCAL; | |
195 | } | |
04600794 JB |
196 | |
197 | return err; | |
463d0183 JB |
198 | } |
199 | ||
200 | wiphy_net_set(&rdev->wiphy, net); | |
201 | ||
04600794 JB |
202 | err = device_rename(&rdev->wiphy.dev, dev_name(&rdev->wiphy.dev)); |
203 | WARN_ON(err); | |
204 | ||
205 | return 0; | |
463d0183 JB |
206 | } |
207 | ||
1f87f7d3 JB |
208 | static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data) |
209 | { | |
79c97e97 | 210 | struct cfg80211_registered_device *rdev = data; |
1f87f7d3 | 211 | |
e35e4d28 | 212 | rdev_rfkill_poll(rdev); |
1f87f7d3 JB |
213 | } |
214 | ||
f9f47529 JB |
215 | void cfg80211_stop_p2p_device(struct cfg80211_registered_device *rdev, |
216 | struct wireless_dev *wdev) | |
217 | { | |
218 | lockdep_assert_held(&rdev->devlist_mtx); | |
219 | lockdep_assert_held(&rdev->sched_scan_mtx); | |
220 | ||
221 | if (WARN_ON(wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)) | |
222 | return; | |
223 | ||
224 | if (!wdev->p2p_started) | |
225 | return; | |
226 | ||
227 | rdev_stop_p2p_device(rdev, wdev); | |
228 | wdev->p2p_started = false; | |
229 | ||
230 | rdev->opencount--; | |
231 | ||
232 | if (rdev->scan_req && rdev->scan_req->wdev == wdev) { | |
233 | bool busy = work_busy(&rdev->scan_done_wk); | |
234 | ||
235 | /* | |
236 | * If the work isn't pending or running (in which case it would | |
237 | * be waiting for the lock we hold) the driver didn't properly | |
238 | * cancel the scan when the interface was removed. In this case | |
239 | * warn and leak the scan request object to not crash later. | |
240 | */ | |
241 | WARN_ON(!busy); | |
242 | ||
243 | rdev->scan_req->aborted = true; | |
244 | ___cfg80211_scan_done(rdev, !busy); | |
245 | } | |
246 | } | |
247 | ||
1f87f7d3 JB |
248 | static int cfg80211_rfkill_set_block(void *data, bool blocked) |
249 | { | |
79c97e97 | 250 | struct cfg80211_registered_device *rdev = data; |
1f87f7d3 JB |
251 | struct wireless_dev *wdev; |
252 | ||
253 | if (!blocked) | |
254 | return 0; | |
255 | ||
256 | rtnl_lock(); | |
f9f47529 JB |
257 | |
258 | /* read-only iteration need not hold the devlist_mtx */ | |
1f87f7d3 | 259 | |
98104fde JB |
260 | list_for_each_entry(wdev, &rdev->wdev_list, list) { |
261 | if (wdev->netdev) { | |
ba22fb5b | 262 | dev_close(wdev->netdev); |
98104fde JB |
263 | continue; |
264 | } | |
265 | /* otherwise, check iftype */ | |
266 | switch (wdev->iftype) { | |
267 | case NL80211_IFTYPE_P2P_DEVICE: | |
f9f47529 JB |
268 | /* but this requires it */ |
269 | mutex_lock(&rdev->devlist_mtx); | |
270 | mutex_lock(&rdev->sched_scan_mtx); | |
271 | cfg80211_stop_p2p_device(rdev, wdev); | |
272 | mutex_unlock(&rdev->sched_scan_mtx); | |
273 | mutex_unlock(&rdev->devlist_mtx); | |
98104fde JB |
274 | break; |
275 | default: | |
276 | break; | |
277 | } | |
278 | } | |
1f87f7d3 | 279 | |
1f87f7d3 JB |
280 | rtnl_unlock(); |
281 | ||
282 | return 0; | |
283 | } | |
284 | ||
285 | static void cfg80211_rfkill_sync_work(struct work_struct *work) | |
286 | { | |
79c97e97 | 287 | struct cfg80211_registered_device *rdev; |
1f87f7d3 | 288 | |
79c97e97 JB |
289 | rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync); |
290 | cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill)); | |
1f87f7d3 JB |
291 | } |
292 | ||
667503dd JB |
293 | static void cfg80211_event_work(struct work_struct *work) |
294 | { | |
295 | struct cfg80211_registered_device *rdev; | |
667503dd JB |
296 | |
297 | rdev = container_of(work, struct cfg80211_registered_device, | |
298 | event_work); | |
299 | ||
300 | rtnl_lock(); | |
301 | cfg80211_lock_rdev(rdev); | |
667503dd | 302 | |
3d54d255 | 303 | cfg80211_process_rdev_events(rdev); |
667503dd JB |
304 | cfg80211_unlock_rdev(rdev); |
305 | rtnl_unlock(); | |
306 | } | |
307 | ||
704232c2 JB |
308 | /* exported functions */ |
309 | ||
3dcf670b | 310 | struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv) |
704232c2 | 311 | { |
638af073 | 312 | static int wiphy_counter; |
7623225f JB |
313 | |
314 | struct cfg80211_registered_device *rdev; | |
704232c2 JB |
315 | int alloc_size; |
316 | ||
0b20633d JB |
317 | WARN_ON(ops->add_key && (!ops->del_key || !ops->set_default_key)); |
318 | WARN_ON(ops->auth && (!ops->assoc || !ops->deauth || !ops->disassoc)); | |
319 | WARN_ON(ops->connect && !ops->disconnect); | |
320 | WARN_ON(ops->join_ibss && !ops->leave_ibss); | |
321 | WARN_ON(ops->add_virtual_intf && !ops->del_virtual_intf); | |
322 | WARN_ON(ops->add_station && !ops->del_station); | |
323 | WARN_ON(ops->add_mpath && !ops->del_mpath); | |
29cbe68c | 324 | WARN_ON(ops->join_mesh && !ops->leave_mesh); |
41ade00f | 325 | |
79c97e97 | 326 | alloc_size = sizeof(*rdev) + sizeof_priv; |
704232c2 | 327 | |
79c97e97 JB |
328 | rdev = kzalloc(alloc_size, GFP_KERNEL); |
329 | if (!rdev) | |
704232c2 JB |
330 | return NULL; |
331 | ||
79c97e97 | 332 | rdev->ops = ops; |
704232c2 | 333 | |
a1794390 | 334 | mutex_lock(&cfg80211_mutex); |
704232c2 | 335 | |
79c97e97 | 336 | rdev->wiphy_idx = wiphy_counter++; |
a4d73ee1 | 337 | |
f4173766 | 338 | if (unlikely(rdev->wiphy_idx < 0)) { |
638af073 | 339 | wiphy_counter--; |
a1794390 | 340 | mutex_unlock(&cfg80211_mutex); |
7623225f | 341 | /* ugh, wrapped! */ |
79c97e97 | 342 | kfree(rdev); |
704232c2 JB |
343 | return NULL; |
344 | } | |
704232c2 | 345 | |
5a254ffe | 346 | mutex_unlock(&cfg80211_mutex); |
79c97e97 | 347 | |
7623225f JB |
348 | /* give it a proper name */ |
349 | dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx); | |
350 | ||
79c97e97 JB |
351 | mutex_init(&rdev->mtx); |
352 | mutex_init(&rdev->devlist_mtx); | |
c10841ca | 353 | mutex_init(&rdev->sched_scan_mtx); |
89a54e48 | 354 | INIT_LIST_HEAD(&rdev->wdev_list); |
37c73b5f BG |
355 | INIT_LIST_HEAD(&rdev->beacon_registrations); |
356 | spin_lock_init(&rdev->beacon_registrations_lock); | |
79c97e97 JB |
357 | spin_lock_init(&rdev->bss_lock); |
358 | INIT_LIST_HEAD(&rdev->bss_list); | |
359 | INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done); | |
807f8a8c | 360 | INIT_WORK(&rdev->sched_scan_results_wk, __cfg80211_sched_scan_results); |
04f39047 SW |
361 | INIT_DELAYED_WORK(&rdev->dfs_update_channels_wk, |
362 | cfg80211_dfs_channels_update_work); | |
3d23e349 JB |
363 | #ifdef CONFIG_CFG80211_WEXT |
364 | rdev->wiphy.wext = &cfg80211_wext_handler; | |
365 | #endif | |
366 | ||
79c97e97 JB |
367 | device_initialize(&rdev->wiphy.dev); |
368 | rdev->wiphy.dev.class = &ieee80211_class; | |
369 | rdev->wiphy.dev.platform_data = rdev; | |
370 | ||
5be83de5 JB |
371 | #ifdef CONFIG_CFG80211_DEFAULT_PS |
372 | rdev->wiphy.flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT; | |
373 | #endif | |
16cb9d42 | 374 | |
463d0183 JB |
375 | wiphy_net_set(&rdev->wiphy, &init_net); |
376 | ||
79c97e97 JB |
377 | rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block; |
378 | rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev), | |
379 | &rdev->wiphy.dev, RFKILL_TYPE_WLAN, | |
380 | &rdev->rfkill_ops, rdev); | |
381 | ||
382 | if (!rdev->rfkill) { | |
383 | kfree(rdev); | |
1f87f7d3 JB |
384 | return NULL; |
385 | } | |
386 | ||
79c97e97 JB |
387 | INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work); |
388 | INIT_WORK(&rdev->conn_work, cfg80211_conn_work); | |
389 | INIT_WORK(&rdev->event_work, cfg80211_event_work); | |
1f87f7d3 | 390 | |
ad002395 JB |
391 | init_waitqueue_head(&rdev->dev_wait); |
392 | ||
b9a5f8ca JM |
393 | /* |
394 | * Initialize wiphy parameters to IEEE 802.11 MIB default values. | |
395 | * Fragmentation and RTS threshold are disabled by default with the | |
396 | * special -1 value. | |
397 | */ | |
79c97e97 JB |
398 | rdev->wiphy.retry_short = 7; |
399 | rdev->wiphy.retry_long = 4; | |
400 | rdev->wiphy.frag_threshold = (u32) -1; | |
401 | rdev->wiphy.rts_threshold = (u32) -1; | |
81077e82 | 402 | rdev->wiphy.coverage_class = 0; |
b9a5f8ca | 403 | |
d0ae708d | 404 | rdev->wiphy.features = NL80211_FEATURE_SCAN_FLUSH; |
15d6030b | 405 | |
79c97e97 | 406 | return &rdev->wiphy; |
704232c2 JB |
407 | } |
408 | EXPORT_SYMBOL(wiphy_new); | |
409 | ||
7527a782 JB |
410 | static int wiphy_verify_combinations(struct wiphy *wiphy) |
411 | { | |
412 | const struct ieee80211_iface_combination *c; | |
413 | int i, j; | |
414 | ||
7527a782 JB |
415 | for (i = 0; i < wiphy->n_iface_combinations; i++) { |
416 | u32 cnt = 0; | |
417 | u16 all_iftypes = 0; | |
418 | ||
419 | c = &wiphy->iface_combinations[i]; | |
420 | ||
11c4a075 SW |
421 | /* |
422 | * Combinations with just one interface aren't real, | |
423 | * however we make an exception for DFS. | |
424 | */ | |
425 | if (WARN_ON((c->max_interfaces < 2) && !c->radar_detect_widths)) | |
7527a782 JB |
426 | return -EINVAL; |
427 | ||
428 | /* Need at least one channel */ | |
429 | if (WARN_ON(!c->num_different_channels)) | |
430 | return -EINVAL; | |
431 | ||
d4e50c59 MK |
432 | /* |
433 | * Put a sane limit on maximum number of different | |
434 | * channels to simplify channel accounting code. | |
435 | */ | |
436 | if (WARN_ON(c->num_different_channels > | |
437 | CFG80211_MAX_NUM_DIFFERENT_CHANNELS)) | |
438 | return -EINVAL; | |
439 | ||
11c4a075 SW |
440 | /* DFS only works on one channel. */ |
441 | if (WARN_ON(c->radar_detect_widths && | |
442 | (c->num_different_channels > 1))) | |
443 | return -EINVAL; | |
444 | ||
7527a782 JB |
445 | if (WARN_ON(!c->n_limits)) |
446 | return -EINVAL; | |
447 | ||
448 | for (j = 0; j < c->n_limits; j++) { | |
449 | u16 types = c->limits[j].types; | |
450 | ||
451 | /* | |
452 | * interface types shouldn't overlap, this is | |
453 | * used in cfg80211_can_change_interface() | |
454 | */ | |
455 | if (WARN_ON(types & all_iftypes)) | |
456 | return -EINVAL; | |
457 | all_iftypes |= types; | |
458 | ||
459 | if (WARN_ON(!c->limits[j].max)) | |
460 | return -EINVAL; | |
461 | ||
462 | /* Shouldn't list software iftypes in combinations! */ | |
463 | if (WARN_ON(wiphy->software_iftypes & types)) | |
464 | return -EINVAL; | |
465 | ||
98104fde JB |
466 | /* Only a single P2P_DEVICE can be allowed */ |
467 | if (WARN_ON(types & BIT(NL80211_IFTYPE_P2P_DEVICE) && | |
468 | c->limits[j].max > 1)) | |
469 | return -EINVAL; | |
470 | ||
7527a782 JB |
471 | cnt += c->limits[j].max; |
472 | /* | |
473 | * Don't advertise an unsupported type | |
474 | * in a combination. | |
475 | */ | |
476 | if (WARN_ON((wiphy->interface_modes & types) != types)) | |
477 | return -EINVAL; | |
478 | } | |
479 | ||
480 | /* You can't even choose that many! */ | |
481 | if (WARN_ON(cnt < c->max_interfaces)) | |
482 | return -EINVAL; | |
483 | } | |
484 | ||
485 | return 0; | |
486 | } | |
487 | ||
704232c2 JB |
488 | int wiphy_register(struct wiphy *wiphy) |
489 | { | |
79c97e97 | 490 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); |
704232c2 | 491 | int res; |
8318d78a JB |
492 | enum ieee80211_band band; |
493 | struct ieee80211_supported_band *sband; | |
494 | bool have_band = false; | |
495 | int i; | |
f59ac048 LR |
496 | u16 ifmodes = wiphy->interface_modes; |
497 | ||
dfb89c56 | 498 | #ifdef CONFIG_PM |
77dbbb13 JB |
499 | if (WARN_ON((wiphy->wowlan.flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) && |
500 | !(wiphy->wowlan.flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY))) | |
501 | return -EINVAL; | |
dfb89c56 | 502 | #endif |
77dbbb13 | 503 | |
562a7480 JB |
504 | if (WARN_ON(wiphy->ap_sme_capa && |
505 | !(wiphy->flags & WIPHY_FLAG_HAVE_AP_SME))) | |
506 | return -EINVAL; | |
507 | ||
ef15aac6 JB |
508 | if (WARN_ON(wiphy->addresses && !wiphy->n_addresses)) |
509 | return -EINVAL; | |
510 | ||
511 | if (WARN_ON(wiphy->addresses && | |
512 | !is_zero_ether_addr(wiphy->perm_addr) && | |
513 | memcmp(wiphy->perm_addr, wiphy->addresses[0].addr, | |
514 | ETH_ALEN))) | |
515 | return -EINVAL; | |
516 | ||
77765eaf VT |
517 | if (WARN_ON(wiphy->max_acl_mac_addrs && |
518 | (!(wiphy->flags & WIPHY_FLAG_HAVE_AP_SME) || | |
519 | !rdev->ops->set_mac_acl))) | |
520 | return -EINVAL; | |
521 | ||
ef15aac6 JB |
522 | if (wiphy->addresses) |
523 | memcpy(wiphy->perm_addr, wiphy->addresses[0].addr, ETH_ALEN); | |
524 | ||
f59ac048 LR |
525 | /* sanity check ifmodes */ |
526 | WARN_ON(!ifmodes); | |
2e161f78 | 527 | ifmodes &= ((1 << NUM_NL80211_IFTYPES) - 1) & ~1; |
f59ac048 LR |
528 | if (WARN_ON(ifmodes != wiphy->interface_modes)) |
529 | wiphy->interface_modes = ifmodes; | |
8318d78a | 530 | |
7527a782 JB |
531 | res = wiphy_verify_combinations(wiphy); |
532 | if (res) | |
533 | return res; | |
534 | ||
8318d78a JB |
535 | /* sanity check supported bands/channels */ |
536 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | |
537 | sband = wiphy->bands[band]; | |
538 | if (!sband) | |
539 | continue; | |
540 | ||
541 | sband->band = band; | |
3a0c52a6 VK |
542 | if (WARN_ON(!sband->n_channels)) |
543 | return -EINVAL; | |
544 | /* | |
545 | * on 60gHz band, there are no legacy rates, so | |
546 | * n_bitrates is 0 | |
547 | */ | |
548 | if (WARN_ON(band != IEEE80211_BAND_60GHZ && | |
549 | !sband->n_bitrates)) | |
881d948c JB |
550 | return -EINVAL; |
551 | ||
40db6c77 AK |
552 | /* |
553 | * Since cfg80211_disable_40mhz_24ghz is global, we can | |
554 | * modify the sband's ht data even if the driver uses a | |
555 | * global structure for that. | |
556 | */ | |
557 | if (cfg80211_disable_40mhz_24ghz && | |
558 | band == IEEE80211_BAND_2GHZ && | |
559 | sband->ht_cap.ht_supported) { | |
560 | sband->ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40; | |
561 | sband->ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_40; | |
562 | } | |
563 | ||
881d948c JB |
564 | /* |
565 | * Since we use a u32 for rate bitmaps in | |
566 | * ieee80211_get_response_rate, we cannot | |
567 | * have more than 32 legacy rates. | |
568 | */ | |
569 | if (WARN_ON(sband->n_bitrates > 32)) | |
8318d78a | 570 | return -EINVAL; |
8318d78a JB |
571 | |
572 | for (i = 0; i < sband->n_channels; i++) { | |
573 | sband->channels[i].orig_flags = | |
574 | sband->channels[i].flags; | |
c4a9fafc | 575 | sband->channels[i].orig_mag = INT_MAX; |
8318d78a JB |
576 | sband->channels[i].orig_mpwr = |
577 | sband->channels[i].max_power; | |
578 | sband->channels[i].band = band; | |
579 | } | |
580 | ||
581 | have_band = true; | |
582 | } | |
583 | ||
584 | if (!have_band) { | |
585 | WARN_ON(1); | |
586 | return -EINVAL; | |
587 | } | |
588 | ||
dfb89c56 | 589 | #ifdef CONFIG_PM |
ff1b6e69 JB |
590 | if (rdev->wiphy.wowlan.n_patterns) { |
591 | if (WARN_ON(!rdev->wiphy.wowlan.pattern_min_len || | |
592 | rdev->wiphy.wowlan.pattern_min_len > | |
593 | rdev->wiphy.wowlan.pattern_max_len)) | |
594 | return -EINVAL; | |
595 | } | |
dfb89c56 | 596 | #endif |
ff1b6e69 | 597 | |
8318d78a JB |
598 | /* check and set up bitrates */ |
599 | ieee80211_set_bitrate_flags(wiphy); | |
600 | ||
5a652052 MB |
601 | mutex_lock(&cfg80211_mutex); |
602 | ||
79c97e97 | 603 | res = device_add(&rdev->wiphy.dev); |
c3d34d5d JL |
604 | if (res) { |
605 | mutex_unlock(&cfg80211_mutex); | |
606 | return res; | |
607 | } | |
1f87f7d3 | 608 | |
2f0accc1 | 609 | /* set up regulatory info */ |
57b5ce07 | 610 | wiphy_regulatory_register(wiphy); |
2f0accc1 | 611 | |
5f2aa25e | 612 | list_add_rcu(&rdev->list, &cfg80211_rdev_list); |
f5ea9120 | 613 | cfg80211_rdev_list_generation++; |
704232c2 JB |
614 | |
615 | /* add to debugfs */ | |
79c97e97 JB |
616 | rdev->wiphy.debugfsdir = |
617 | debugfs_create_dir(wiphy_name(&rdev->wiphy), | |
704232c2 | 618 | ieee80211_debugfs_dir); |
79c97e97 JB |
619 | if (IS_ERR(rdev->wiphy.debugfsdir)) |
620 | rdev->wiphy.debugfsdir = NULL; | |
704232c2 | 621 | |
5be83de5 | 622 | if (wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) { |
73d54c9e LR |
623 | struct regulatory_request request; |
624 | ||
625 | request.wiphy_idx = get_wiphy_idx(wiphy); | |
626 | request.initiator = NL80211_REGDOM_SET_BY_DRIVER; | |
627 | request.alpha2[0] = '9'; | |
628 | request.alpha2[1] = '9'; | |
629 | ||
630 | nl80211_send_reg_change_event(&request); | |
631 | } | |
632 | ||
79c97e97 | 633 | cfg80211_debugfs_rdev_add(rdev); |
5a652052 | 634 | mutex_unlock(&cfg80211_mutex); |
1ac61302 | 635 | |
c3d34d5d JL |
636 | /* |
637 | * due to a locking dependency this has to be outside of the | |
638 | * cfg80211_mutex lock | |
639 | */ | |
640 | res = rfkill_register(rdev->rfkill); | |
641 | if (res) | |
642 | goto out_rm_dev; | |
643 | ||
ecb44335 SG |
644 | rtnl_lock(); |
645 | rdev->wiphy.registered = true; | |
646 | rtnl_unlock(); | |
2f0accc1 | 647 | return 0; |
1f87f7d3 | 648 | |
5a652052 | 649 | out_rm_dev: |
79c97e97 | 650 | device_del(&rdev->wiphy.dev); |
704232c2 JB |
651 | return res; |
652 | } | |
653 | EXPORT_SYMBOL(wiphy_register); | |
654 | ||
1f87f7d3 JB |
655 | void wiphy_rfkill_start_polling(struct wiphy *wiphy) |
656 | { | |
79c97e97 | 657 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); |
1f87f7d3 | 658 | |
79c97e97 | 659 | if (!rdev->ops->rfkill_poll) |
1f87f7d3 | 660 | return; |
79c97e97 JB |
661 | rdev->rfkill_ops.poll = cfg80211_rfkill_poll; |
662 | rfkill_resume_polling(rdev->rfkill); | |
1f87f7d3 JB |
663 | } |
664 | EXPORT_SYMBOL(wiphy_rfkill_start_polling); | |
665 | ||
666 | void wiphy_rfkill_stop_polling(struct wiphy *wiphy) | |
667 | { | |
79c97e97 | 668 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); |
1f87f7d3 | 669 | |
79c97e97 | 670 | rfkill_pause_polling(rdev->rfkill); |
1f87f7d3 JB |
671 | } |
672 | EXPORT_SYMBOL(wiphy_rfkill_stop_polling); | |
673 | ||
704232c2 JB |
674 | void wiphy_unregister(struct wiphy *wiphy) |
675 | { | |
79c97e97 | 676 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); |
704232c2 | 677 | |
ecb44335 SG |
678 | rtnl_lock(); |
679 | rdev->wiphy.registered = false; | |
680 | rtnl_unlock(); | |
681 | ||
79c97e97 | 682 | rfkill_unregister(rdev->rfkill); |
1f87f7d3 | 683 | |
f16bfc1c | 684 | /* protect the device list */ |
a1794390 | 685 | mutex_lock(&cfg80211_mutex); |
704232c2 | 686 | |
ad002395 JB |
687 | wait_event(rdev->dev_wait, ({ |
688 | int __count; | |
689 | mutex_lock(&rdev->devlist_mtx); | |
690 | __count = rdev->opencount; | |
691 | mutex_unlock(&rdev->devlist_mtx); | |
c4f60846 | 692 | __count == 0; })); |
ad002395 JB |
693 | |
694 | mutex_lock(&rdev->devlist_mtx); | |
89a54e48 | 695 | BUG_ON(!list_empty(&rdev->wdev_list)); |
ad002395 JB |
696 | mutex_unlock(&rdev->devlist_mtx); |
697 | ||
698 | /* | |
699 | * First remove the hardware from everywhere, this makes | |
700 | * it impossible to find from userspace. | |
701 | */ | |
7bcfaf2f | 702 | debugfs_remove_recursive(rdev->wiphy.debugfsdir); |
5f2aa25e JB |
703 | list_del_rcu(&rdev->list); |
704 | synchronize_rcu(); | |
f16bfc1c JB |
705 | |
706 | /* | |
79c97e97 | 707 | * Try to grab rdev->mtx. If a command is still in progress, |
f16bfc1c JB |
708 | * hopefully the driver will refuse it since it's tearing |
709 | * down the device already. We wait for this command to complete | |
710 | * before unlinking the item from the list. | |
711 | * Note: as codified by the BUG_ON above we cannot get here if | |
ad002395 JB |
712 | * a virtual interface is still present. Hence, we can only get |
713 | * to lock contention here if userspace issues a command that | |
714 | * identified the hardware by wiphy index. | |
f16bfc1c | 715 | */ |
0ff6ce7b | 716 | cfg80211_lock_rdev(rdev); |
ad002395 | 717 | /* nothing */ |
0ff6ce7b | 718 | cfg80211_unlock_rdev(rdev); |
704232c2 | 719 | |
bfead080 LR |
720 | /* |
721 | * If this device got a regulatory hint tell core its | |
722 | * free to listen now to a new shiny device regulatory hint | |
723 | */ | |
724 | wiphy_regulatory_deregister(wiphy); | |
3f2355cb | 725 | |
f5ea9120 | 726 | cfg80211_rdev_list_generation++; |
79c97e97 | 727 | device_del(&rdev->wiphy.dev); |
704232c2 | 728 | |
a1794390 | 729 | mutex_unlock(&cfg80211_mutex); |
6682588a | 730 | |
36e6fea8 | 731 | flush_work(&rdev->scan_done_wk); |
6682588a | 732 | cancel_work_sync(&rdev->conn_work); |
6682588a | 733 | flush_work(&rdev->event_work); |
04f39047 | 734 | cancel_delayed_work_sync(&rdev->dfs_update_channels_wk); |
6d52563f JB |
735 | |
736 | if (rdev->wowlan && rdev->ops->set_wakeup) | |
e35e4d28 | 737 | rdev_set_wakeup(rdev, false); |
6d52563f | 738 | cfg80211_rdev_free_wowlan(rdev); |
704232c2 JB |
739 | } |
740 | EXPORT_SYMBOL(wiphy_unregister); | |
741 | ||
79c97e97 | 742 | void cfg80211_dev_free(struct cfg80211_registered_device *rdev) |
704232c2 | 743 | { |
2a519311 | 744 | struct cfg80211_internal_bss *scan, *tmp; |
37c73b5f | 745 | struct cfg80211_beacon_registration *reg, *treg; |
79c97e97 JB |
746 | rfkill_destroy(rdev->rfkill); |
747 | mutex_destroy(&rdev->mtx); | |
748 | mutex_destroy(&rdev->devlist_mtx); | |
c10841ca | 749 | mutex_destroy(&rdev->sched_scan_mtx); |
37c73b5f BG |
750 | list_for_each_entry_safe(reg, treg, &rdev->beacon_registrations, list) { |
751 | list_del(®->list); | |
752 | kfree(reg); | |
753 | } | |
79c97e97 | 754 | list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list) |
5b112d3d | 755 | cfg80211_put_bss(&rdev->wiphy, &scan->pub); |
79c97e97 | 756 | kfree(rdev); |
704232c2 JB |
757 | } |
758 | ||
759 | void wiphy_free(struct wiphy *wiphy) | |
760 | { | |
761 | put_device(&wiphy->dev); | |
762 | } | |
763 | EXPORT_SYMBOL(wiphy_free); | |
764 | ||
1f87f7d3 JB |
765 | void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked) |
766 | { | |
79c97e97 | 767 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); |
1f87f7d3 | 768 | |
79c97e97 JB |
769 | if (rfkill_set_hw_state(rdev->rfkill, blocked)) |
770 | schedule_work(&rdev->rfkill_sync); | |
1f87f7d3 JB |
771 | } |
772 | EXPORT_SYMBOL(wiphy_rfkill_set_hw_state); | |
773 | ||
ad002395 JB |
774 | static void wdev_cleanup_work(struct work_struct *work) |
775 | { | |
776 | struct wireless_dev *wdev; | |
777 | struct cfg80211_registered_device *rdev; | |
778 | ||
779 | wdev = container_of(work, struct wireless_dev, cleanup_work); | |
780 | rdev = wiphy_to_dev(wdev->wiphy); | |
781 | ||
f9f47529 | 782 | mutex_lock(&rdev->sched_scan_mtx); |
ad002395 | 783 | |
fd014284 | 784 | if (WARN_ON(rdev->scan_req && rdev->scan_req->wdev == wdev)) { |
ad002395 | 785 | rdev->scan_req->aborted = true; |
01a0ac41 | 786 | ___cfg80211_scan_done(rdev, true); |
ad002395 JB |
787 | } |
788 | ||
807f8a8c LC |
789 | if (WARN_ON(rdev->sched_scan_req && |
790 | rdev->sched_scan_req->dev == wdev->netdev)) { | |
791 | __cfg80211_stop_sched_scan(rdev, false); | |
792 | } | |
793 | ||
c10841ca | 794 | mutex_unlock(&rdev->sched_scan_mtx); |
ad002395 JB |
795 | |
796 | mutex_lock(&rdev->devlist_mtx); | |
797 | rdev->opencount--; | |
798 | mutex_unlock(&rdev->devlist_mtx); | |
799 | wake_up(&rdev->dev_wait); | |
800 | ||
801 | dev_put(wdev->netdev); | |
802 | } | |
803 | ||
98104fde JB |
804 | void cfg80211_unregister_wdev(struct wireless_dev *wdev) |
805 | { | |
806 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy); | |
807 | ||
808 | ASSERT_RTNL(); | |
809 | ||
810 | if (WARN_ON(wdev->netdev)) | |
811 | return; | |
812 | ||
813 | mutex_lock(&rdev->devlist_mtx); | |
f9f47529 | 814 | mutex_lock(&rdev->sched_scan_mtx); |
98104fde JB |
815 | list_del_rcu(&wdev->list); |
816 | rdev->devlist_generation++; | |
817 | ||
818 | switch (wdev->iftype) { | |
819 | case NL80211_IFTYPE_P2P_DEVICE: | |
f9f47529 | 820 | cfg80211_stop_p2p_device(rdev, wdev); |
98104fde JB |
821 | break; |
822 | default: | |
823 | WARN_ON_ONCE(1); | |
824 | break; | |
825 | } | |
f9f47529 | 826 | mutex_unlock(&rdev->sched_scan_mtx); |
98104fde JB |
827 | mutex_unlock(&rdev->devlist_mtx); |
828 | } | |
829 | EXPORT_SYMBOL(cfg80211_unregister_wdev); | |
830 | ||
053a93dd MH |
831 | static struct device_type wiphy_type = { |
832 | .name = "wlan", | |
833 | }; | |
834 | ||
dbbae26a MK |
835 | void cfg80211_update_iface_num(struct cfg80211_registered_device *rdev, |
836 | enum nl80211_iftype iftype, int num) | |
837 | { | |
c5a7e582 | 838 | ASSERT_RTNL(); |
dbbae26a MK |
839 | |
840 | rdev->num_running_ifaces += num; | |
841 | if (iftype == NL80211_IFTYPE_MONITOR) | |
842 | rdev->num_running_monitor_ifaces += num; | |
dbbae26a MK |
843 | } |
844 | ||
c4f60846 | 845 | static int cfg80211_netdev_notifier_call(struct notifier_block *nb, |
704232c2 JB |
846 | unsigned long state, |
847 | void *ndev) | |
848 | { | |
849 | struct net_device *dev = ndev; | |
2a783c13 | 850 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
704232c2 | 851 | struct cfg80211_registered_device *rdev; |
7527a782 | 852 | int ret; |
704232c2 | 853 | |
2a783c13 | 854 | if (!wdev) |
1f87f7d3 | 855 | return NOTIFY_DONE; |
704232c2 | 856 | |
2a783c13 | 857 | rdev = wiphy_to_dev(wdev->wiphy); |
704232c2 | 858 | |
2a783c13 | 859 | WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED); |
60719ffd | 860 | |
704232c2 | 861 | switch (state) { |
053a93dd MH |
862 | case NETDEV_POST_INIT: |
863 | SET_NETDEV_DEVTYPE(dev, &wiphy_type); | |
864 | break; | |
704232c2 | 865 | case NETDEV_REGISTER: |
0ff6ce7b JB |
866 | /* |
867 | * NB: cannot take rdev->mtx here because this may be | |
868 | * called within code protected by it when interfaces | |
869 | * are added with nl80211. | |
870 | */ | |
667503dd | 871 | mutex_init(&wdev->mtx); |
ad002395 | 872 | INIT_WORK(&wdev->cleanup_work, wdev_cleanup_work); |
667503dd JB |
873 | INIT_LIST_HEAD(&wdev->event_list); |
874 | spin_lock_init(&wdev->event_lock); | |
2e161f78 JB |
875 | INIT_LIST_HEAD(&wdev->mgmt_registrations); |
876 | spin_lock_init(&wdev->mgmt_registrations_lock); | |
026331c4 | 877 | |
704232c2 | 878 | mutex_lock(&rdev->devlist_mtx); |
89a54e48 JB |
879 | wdev->identifier = ++rdev->wdev_id; |
880 | list_add_rcu(&wdev->list, &rdev->wdev_list); | |
f5ea9120 | 881 | rdev->devlist_generation++; |
463d0183 JB |
882 | /* can only change netns with wiphy */ |
883 | dev->features |= NETIF_F_NETNS_LOCAL; | |
884 | ||
704232c2 JB |
885 | if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj, |
886 | "phy80211")) { | |
e9c0268f | 887 | pr_err("failed to add phy80211 symlink to netdev!\n"); |
704232c2 | 888 | } |
2a783c13 | 889 | wdev->netdev = dev; |
b23aa676 | 890 | wdev->sme_state = CFG80211_SME_IDLE; |
bc92afd9 | 891 | mutex_unlock(&rdev->devlist_mtx); |
3d23e349 | 892 | #ifdef CONFIG_CFG80211_WEXT |
2a783c13 JB |
893 | wdev->wext.default_key = -1; |
894 | wdev->wext.default_mgmt_key = -1; | |
f2129354 | 895 | wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC; |
ffb9eb3d KV |
896 | #endif |
897 | ||
5be83de5 | 898 | if (wdev->wiphy->flags & WIPHY_FLAG_PS_ON_BY_DEFAULT) |
ffb9eb3d | 899 | wdev->ps = true; |
5be83de5 | 900 | else |
ffb9eb3d | 901 | wdev->ps = false; |
9043f3b8 JO |
902 | /* allow mac80211 to determine the timeout */ |
903 | wdev->ps_timeout = -1; | |
ffb9eb3d | 904 | |
d07d7507 | 905 | netdev_set_default_ethtool_ops(dev, &cfg80211_ethtool_ops); |
ad4bb6f8 JB |
906 | |
907 | if ((wdev->iftype == NL80211_IFTYPE_STATION || | |
074ac8df | 908 | wdev->iftype == NL80211_IFTYPE_P2P_CLIENT || |
ad4bb6f8 JB |
909 | wdev->iftype == NL80211_IFTYPE_ADHOC) && !wdev->use_4addr) |
910 | dev->priv_flags |= IFF_DONT_BRIDGE; | |
704232c2 | 911 | break; |
04a773ad | 912 | case NETDEV_GOING_DOWN: |
b23aa676 SO |
913 | switch (wdev->iftype) { |
914 | case NL80211_IFTYPE_ADHOC: | |
915 | cfg80211_leave_ibss(rdev, dev, true); | |
916 | break; | |
074ac8df | 917 | case NL80211_IFTYPE_P2P_CLIENT: |
b23aa676 | 918 | case NL80211_IFTYPE_STATION: |
c10841ca | 919 | mutex_lock(&rdev->sched_scan_mtx); |
807f8a8c | 920 | __cfg80211_stop_sched_scan(rdev, false); |
c10841ca | 921 | mutex_unlock(&rdev->sched_scan_mtx); |
807f8a8c | 922 | |
667503dd | 923 | wdev_lock(wdev); |
3d23e349 | 924 | #ifdef CONFIG_CFG80211_WEXT |
f2129354 JB |
925 | kfree(wdev->wext.ie); |
926 | wdev->wext.ie = NULL; | |
927 | wdev->wext.ie_len = 0; | |
0eb14647 | 928 | wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC; |
f2129354 | 929 | #endif |
667503dd JB |
930 | __cfg80211_disconnect(rdev, dev, |
931 | WLAN_REASON_DEAUTH_LEAVING, true); | |
19957bb3 | 932 | cfg80211_mlme_down(rdev, dev); |
667503dd | 933 | wdev_unlock(wdev); |
b23aa676 | 934 | break; |
29cbe68c JB |
935 | case NL80211_IFTYPE_MESH_POINT: |
936 | cfg80211_leave_mesh(rdev, dev); | |
937 | break; | |
ac800140 MK |
938 | case NL80211_IFTYPE_AP: |
939 | cfg80211_stop_ap(rdev, dev); | |
940 | break; | |
b23aa676 SO |
941 | default: |
942 | break; | |
943 | } | |
56d1893d | 944 | wdev->beacon_interval = 0; |
01a0ac41 JB |
945 | break; |
946 | case NETDEV_DOWN: | |
dbbae26a | 947 | cfg80211_update_iface_num(rdev, wdev->iftype, -1); |
c5a7e582 | 948 | dev_hold(dev); |
e60d7443 | 949 | queue_work(cfg80211_wq, &wdev->cleanup_work); |
04a773ad JB |
950 | break; |
951 | case NETDEV_UP: | |
ad002395 JB |
952 | /* |
953 | * If we have a really quick DOWN/UP succession we may | |
954 | * have this work still pending ... cancel it and see | |
955 | * if it was pending, in which case we need to account | |
956 | * for some of the work it would have done. | |
957 | */ | |
958 | if (cancel_work_sync(&wdev->cleanup_work)) { | |
959 | mutex_lock(&rdev->devlist_mtx); | |
960 | rdev->opencount--; | |
961 | mutex_unlock(&rdev->devlist_mtx); | |
962 | dev_put(dev); | |
963 | } | |
4290cb4b | 964 | cfg80211_update_iface_num(rdev, wdev->iftype, 1); |
667503dd | 965 | cfg80211_lock_rdev(rdev); |
aee83eaf | 966 | mutex_lock(&rdev->devlist_mtx); |
f9f47529 | 967 | mutex_lock(&rdev->sched_scan_mtx); |
667503dd | 968 | wdev_lock(wdev); |
f2129354 | 969 | switch (wdev->iftype) { |
29cbe68c | 970 | #ifdef CONFIG_CFG80211_WEXT |
f2129354 | 971 | case NL80211_IFTYPE_ADHOC: |
fffd0934 | 972 | cfg80211_ibss_wext_join(rdev, wdev); |
04a773ad | 973 | break; |
f2129354 | 974 | case NL80211_IFTYPE_STATION: |
fffd0934 | 975 | cfg80211_mgd_wext_connect(rdev, wdev); |
f2129354 | 976 | break; |
29cbe68c | 977 | #endif |
c80d545d | 978 | #ifdef CONFIG_MAC80211_MESH |
29cbe68c | 979 | case NL80211_IFTYPE_MESH_POINT: |
c80d545d JC |
980 | { |
981 | /* backward compat code... */ | |
982 | struct mesh_setup setup; | |
983 | memcpy(&setup, &default_mesh_setup, | |
984 | sizeof(setup)); | |
985 | /* back compat only needed for mesh_id */ | |
986 | setup.mesh_id = wdev->ssid; | |
987 | setup.mesh_id_len = wdev->mesh_id_up_len; | |
988 | if (wdev->mesh_id_up_len) | |
989 | __cfg80211_join_mesh(rdev, dev, | |
990 | &setup, | |
991 | &default_mesh_config); | |
992 | break; | |
993 | } | |
994 | #endif | |
f2129354 | 995 | default: |
04a773ad | 996 | break; |
f2129354 | 997 | } |
667503dd | 998 | wdev_unlock(wdev); |
f9f47529 | 999 | mutex_unlock(&rdev->sched_scan_mtx); |
ad002395 | 1000 | rdev->opencount++; |
aee83eaf | 1001 | mutex_unlock(&rdev->devlist_mtx); |
667503dd | 1002 | cfg80211_unlock_rdev(rdev); |
bf6a0579 JO |
1003 | |
1004 | /* | |
1005 | * Configure power management to the driver here so that its | |
1006 | * correctly set also after interface type changes etc. | |
1007 | */ | |
5966f2dd EP |
1008 | if ((wdev->iftype == NL80211_IFTYPE_STATION || |
1009 | wdev->iftype == NL80211_IFTYPE_P2P_CLIENT) && | |
bf6a0579 | 1010 | rdev->ops->set_power_mgmt) |
e35e4d28 HG |
1011 | if (rdev_set_power_mgmt(rdev, dev, wdev->ps, |
1012 | wdev->ps_timeout)) { | |
bf6a0579 JO |
1013 | /* assume this means it's off */ |
1014 | wdev->ps = false; | |
1015 | } | |
2a783c13 | 1016 | break; |
704232c2 | 1017 | case NETDEV_UNREGISTER: |
0ff6ce7b JB |
1018 | /* |
1019 | * NB: cannot take rdev->mtx here because this may be | |
1020 | * called within code protected by it when interfaces | |
1021 | * are removed with nl80211. | |
1022 | */ | |
704232c2 | 1023 | mutex_lock(&rdev->devlist_mtx); |
e40cbdac JB |
1024 | /* |
1025 | * It is possible to get NETDEV_UNREGISTER | |
1026 | * multiple times. To detect that, check | |
1027 | * that the interface is still on the list | |
1028 | * of registered interfaces, and only then | |
1029 | * remove and clean it up. | |
1030 | */ | |
2a783c13 | 1031 | if (!list_empty(&wdev->list)) { |
704232c2 | 1032 | sysfs_remove_link(&dev->dev.kobj, "phy80211"); |
5f2aa25e | 1033 | list_del_rcu(&wdev->list); |
f5ea9120 | 1034 | rdev->devlist_generation++; |
2e161f78 | 1035 | cfg80211_mlme_purge_registrations(wdev); |
3d23e349 | 1036 | #ifdef CONFIG_CFG80211_WEXT |
e40cbdac | 1037 | kfree(wdev->wext.keys); |
fffd0934 | 1038 | #endif |
e40cbdac JB |
1039 | } |
1040 | mutex_unlock(&rdev->devlist_mtx); | |
5f2aa25e JB |
1041 | /* |
1042 | * synchronise (so that we won't find this netdev | |
1043 | * from other code any more) and then clear the list | |
1044 | * head so that the above code can safely check for | |
1045 | * !list_empty() to avoid double-cleanup. | |
1046 | */ | |
1047 | synchronize_rcu(); | |
1048 | INIT_LIST_HEAD(&wdev->list); | |
1f6fc43e DD |
1049 | /* |
1050 | * Ensure that all events have been processed and | |
1051 | * freed. | |
1052 | */ | |
1053 | cfg80211_process_wdev_events(wdev); | |
704232c2 | 1054 | break; |
1f87f7d3 | 1055 | case NETDEV_PRE_UP: |
0b20633d JB |
1056 | if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype))) |
1057 | return notifier_from_errno(-EOPNOTSUPP); | |
1f87f7d3 JB |
1058 | if (rfkill_blocked(rdev->rfkill)) |
1059 | return notifier_from_errno(-ERFKILL); | |
e4e32459 | 1060 | mutex_lock(&rdev->devlist_mtx); |
7527a782 | 1061 | ret = cfg80211_can_add_interface(rdev, wdev->iftype); |
e4e32459 | 1062 | mutex_unlock(&rdev->devlist_mtx); |
7527a782 JB |
1063 | if (ret) |
1064 | return notifier_from_errno(ret); | |
1f87f7d3 | 1065 | break; |
704232c2 JB |
1066 | } |
1067 | ||
1f87f7d3 | 1068 | return NOTIFY_DONE; |
704232c2 JB |
1069 | } |
1070 | ||
1071 | static struct notifier_block cfg80211_netdev_notifier = { | |
1072 | .notifier_call = cfg80211_netdev_notifier_call, | |
1073 | }; | |
1074 | ||
463d0183 JB |
1075 | static void __net_exit cfg80211_pernet_exit(struct net *net) |
1076 | { | |
1077 | struct cfg80211_registered_device *rdev; | |
1078 | ||
1079 | rtnl_lock(); | |
1080 | mutex_lock(&cfg80211_mutex); | |
1081 | list_for_each_entry(rdev, &cfg80211_rdev_list, list) { | |
1082 | if (net_eq(wiphy_net(&rdev->wiphy), net)) | |
1083 | WARN_ON(cfg80211_switch_netns(rdev, &init_net)); | |
1084 | } | |
1085 | mutex_unlock(&cfg80211_mutex); | |
1086 | rtnl_unlock(); | |
1087 | } | |
1088 | ||
1089 | static struct pernet_operations cfg80211_pernet_ops = { | |
1090 | .exit = cfg80211_pernet_exit, | |
1091 | }; | |
1092 | ||
1093 | static int __init cfg80211_init(void) | |
704232c2 | 1094 | { |
b2e1b302 LR |
1095 | int err; |
1096 | ||
463d0183 JB |
1097 | err = register_pernet_device(&cfg80211_pernet_ops); |
1098 | if (err) | |
1099 | goto out_fail_pernet; | |
1100 | ||
b2e1b302 | 1101 | err = wiphy_sysfs_init(); |
704232c2 JB |
1102 | if (err) |
1103 | goto out_fail_sysfs; | |
1104 | ||
1105 | err = register_netdevice_notifier(&cfg80211_netdev_notifier); | |
1106 | if (err) | |
1107 | goto out_fail_notifier; | |
1108 | ||
55682965 JB |
1109 | err = nl80211_init(); |
1110 | if (err) | |
1111 | goto out_fail_nl80211; | |
1112 | ||
704232c2 JB |
1113 | ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL); |
1114 | ||
b2e1b302 LR |
1115 | err = regulatory_init(); |
1116 | if (err) | |
1117 | goto out_fail_reg; | |
1118 | ||
e60d7443 AB |
1119 | cfg80211_wq = create_singlethread_workqueue("cfg80211"); |
1120 | if (!cfg80211_wq) | |
1121 | goto out_fail_wq; | |
1122 | ||
704232c2 JB |
1123 | return 0; |
1124 | ||
e60d7443 AB |
1125 | out_fail_wq: |
1126 | regulatory_exit(); | |
b2e1b302 LR |
1127 | out_fail_reg: |
1128 | debugfs_remove(ieee80211_debugfs_dir); | |
55682965 JB |
1129 | out_fail_nl80211: |
1130 | unregister_netdevice_notifier(&cfg80211_netdev_notifier); | |
704232c2 JB |
1131 | out_fail_notifier: |
1132 | wiphy_sysfs_exit(); | |
1133 | out_fail_sysfs: | |
463d0183 JB |
1134 | unregister_pernet_device(&cfg80211_pernet_ops); |
1135 | out_fail_pernet: | |
704232c2 JB |
1136 | return err; |
1137 | } | |
3a462465 | 1138 | subsys_initcall(cfg80211_init); |
704232c2 | 1139 | |
f884e387 | 1140 | static void __exit cfg80211_exit(void) |
704232c2 JB |
1141 | { |
1142 | debugfs_remove(ieee80211_debugfs_dir); | |
55682965 | 1143 | nl80211_exit(); |
704232c2 JB |
1144 | unregister_netdevice_notifier(&cfg80211_netdev_notifier); |
1145 | wiphy_sysfs_exit(); | |
b2e1b302 | 1146 | regulatory_exit(); |
463d0183 | 1147 | unregister_pernet_device(&cfg80211_pernet_ops); |
e60d7443 | 1148 | destroy_workqueue(cfg80211_wq); |
704232c2 JB |
1149 | } |
1150 | module_exit(cfg80211_exit); |