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