2 * This is the linux wireless configuration interface.
4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/module.h>
11 #include <linux/err.h>
12 #include <linux/list.h>
13 #include <linux/slab.h>
14 #include <linux/nl80211.h>
15 #include <linux/debugfs.h>
16 #include <linux/notifier.h>
17 #include <linux/device.h>
18 #include <linux/etherdevice.h>
19 #include <linux/rtnetlink.h>
20 #include <linux/sched.h>
21 #include <net/genetlink.h>
22 #include <net/cfg80211.h>
27 #include "wext-compat.h"
30 /* name for sysfs, %d is appended */
31 #define PHY_NAME "phy"
33 MODULE_AUTHOR("Johannes Berg");
34 MODULE_LICENSE("GPL");
35 MODULE_DESCRIPTION("wireless configuration support");
37 /* RCU-protected (and cfg80211_mutex for writers) */
38 LIST_HEAD(cfg80211_rdev_list
);
39 int cfg80211_rdev_list_generation
;
41 DEFINE_MUTEX(cfg80211_mutex
);
44 static struct dentry
*ieee80211_debugfs_dir
;
46 /* for the cleanup, scan and event works */
47 struct workqueue_struct
*cfg80211_wq
;
49 /* requires cfg80211_mutex to be held! */
50 struct cfg80211_registered_device
*cfg80211_rdev_by_wiphy_idx(int wiphy_idx
)
52 struct cfg80211_registered_device
*result
= NULL
, *rdev
;
54 if (!wiphy_idx_valid(wiphy_idx
))
57 assert_cfg80211_lock();
59 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
60 if (rdev
->wiphy_idx
== wiphy_idx
) {
69 int get_wiphy_idx(struct wiphy
*wiphy
)
71 struct cfg80211_registered_device
*rdev
;
73 return WIPHY_IDX_STALE
;
74 rdev
= wiphy_to_dev(wiphy
);
75 return rdev
->wiphy_idx
;
78 /* requires cfg80211_rdev_mutex to be held! */
79 struct wiphy
*wiphy_idx_to_wiphy(int wiphy_idx
)
81 struct cfg80211_registered_device
*rdev
;
83 if (!wiphy_idx_valid(wiphy_idx
))
86 assert_cfg80211_lock();
88 rdev
= cfg80211_rdev_by_wiphy_idx(wiphy_idx
);
94 /* requires cfg80211_mutex to be held! */
95 struct cfg80211_registered_device
*
96 __cfg80211_rdev_from_info(struct genl_info
*info
)
99 struct cfg80211_registered_device
*bywiphyidx
= NULL
, *byifidx
= NULL
;
100 struct net_device
*dev
;
103 assert_cfg80211_lock();
105 if (info
->attrs
[NL80211_ATTR_WIPHY
]) {
106 bywiphyidx
= cfg80211_rdev_by_wiphy_idx(
107 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY
]));
111 if (info
->attrs
[NL80211_ATTR_IFINDEX
]) {
112 ifindex
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFINDEX
]);
113 dev
= dev_get_by_index(genl_info_net(info
), ifindex
);
115 if (dev
->ieee80211_ptr
)
117 wiphy_to_dev(dev
->ieee80211_ptr
->wiphy
);
123 if (bywiphyidx
&& byifidx
) {
124 if (bywiphyidx
!= byifidx
)
125 return ERR_PTR(-EINVAL
);
127 return bywiphyidx
; /* == byifidx */
138 struct cfg80211_registered_device
*
139 cfg80211_get_dev_from_info(struct genl_info
*info
)
141 struct cfg80211_registered_device
*rdev
;
143 mutex_lock(&cfg80211_mutex
);
144 rdev
= __cfg80211_rdev_from_info(info
);
146 /* if it is not an error we grab the lock on
147 * it to assure it won't be going away while
148 * we operate on it */
150 mutex_lock(&rdev
->mtx
);
152 mutex_unlock(&cfg80211_mutex
);
157 struct cfg80211_registered_device
*
158 cfg80211_get_dev_from_ifindex(struct net
*net
, int ifindex
)
160 struct cfg80211_registered_device
*rdev
= ERR_PTR(-ENODEV
);
161 struct net_device
*dev
;
163 mutex_lock(&cfg80211_mutex
);
164 dev
= dev_get_by_index(net
, ifindex
);
167 if (dev
->ieee80211_ptr
) {
168 rdev
= wiphy_to_dev(dev
->ieee80211_ptr
->wiphy
);
169 mutex_lock(&rdev
->mtx
);
171 rdev
= ERR_PTR(-ENODEV
);
174 mutex_unlock(&cfg80211_mutex
);
178 /* requires cfg80211_mutex to be held */
179 int cfg80211_dev_rename(struct cfg80211_registered_device
*rdev
,
182 struct cfg80211_registered_device
*rdev2
;
183 int wiphy_idx
, taken
= -1, result
, digits
;
185 assert_cfg80211_lock();
187 /* prohibit calling the thing phy%d when %d is not its number */
188 sscanf(newname
, PHY_NAME
"%d%n", &wiphy_idx
, &taken
);
189 if (taken
== strlen(newname
) && wiphy_idx
!= rdev
->wiphy_idx
) {
190 /* count number of places needed to print wiphy_idx */
192 while (wiphy_idx
/= 10)
195 * deny the name if it is phy<idx> where <idx> is printed
196 * without leading zeroes. taken == strlen(newname) here
198 if (taken
== strlen(PHY_NAME
) + digits
)
203 /* Ignore nop renames */
204 if (strcmp(newname
, dev_name(&rdev
->wiphy
.dev
)) == 0)
207 /* Ensure another device does not already have this name. */
208 list_for_each_entry(rdev2
, &cfg80211_rdev_list
, list
)
209 if (strcmp(newname
, dev_name(&rdev2
->wiphy
.dev
)) == 0)
212 result
= device_rename(&rdev
->wiphy
.dev
, newname
);
216 if (rdev
->wiphy
.debugfsdir
&&
217 !debugfs_rename(rdev
->wiphy
.debugfsdir
->d_parent
,
218 rdev
->wiphy
.debugfsdir
,
219 rdev
->wiphy
.debugfsdir
->d_parent
,
221 pr_err("failed to rename debugfs dir to %s!\n", newname
);
223 nl80211_notify_dev_rename(rdev
);
228 int cfg80211_switch_netns(struct cfg80211_registered_device
*rdev
,
231 struct wireless_dev
*wdev
;
234 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_NETNS_OK
))
237 list_for_each_entry(wdev
, &rdev
->netdev_list
, list
) {
238 wdev
->netdev
->features
&= ~NETIF_F_NETNS_LOCAL
;
239 err
= dev_change_net_namespace(wdev
->netdev
, net
, "wlan%d");
242 wdev
->netdev
->features
|= NETIF_F_NETNS_LOCAL
;
246 /* failed -- clean up to old netns */
247 net
= wiphy_net(&rdev
->wiphy
);
249 list_for_each_entry_continue_reverse(wdev
, &rdev
->netdev_list
,
251 wdev
->netdev
->features
&= ~NETIF_F_NETNS_LOCAL
;
252 err
= dev_change_net_namespace(wdev
->netdev
, net
,
255 wdev
->netdev
->features
|= NETIF_F_NETNS_LOCAL
;
261 wiphy_net_set(&rdev
->wiphy
, net
);
263 err
= device_rename(&rdev
->wiphy
.dev
, dev_name(&rdev
->wiphy
.dev
));
269 static void cfg80211_rfkill_poll(struct rfkill
*rfkill
, void *data
)
271 struct cfg80211_registered_device
*rdev
= data
;
273 rdev
->ops
->rfkill_poll(&rdev
->wiphy
);
276 static int cfg80211_rfkill_set_block(void *data
, bool blocked
)
278 struct cfg80211_registered_device
*rdev
= data
;
279 struct wireless_dev
*wdev
;
285 mutex_lock(&rdev
->devlist_mtx
);
287 list_for_each_entry(wdev
, &rdev
->netdev_list
, list
)
288 dev_close(wdev
->netdev
);
290 mutex_unlock(&rdev
->devlist_mtx
);
296 static void cfg80211_rfkill_sync_work(struct work_struct
*work
)
298 struct cfg80211_registered_device
*rdev
;
300 rdev
= container_of(work
, struct cfg80211_registered_device
, rfkill_sync
);
301 cfg80211_rfkill_set_block(rdev
, rfkill_blocked(rdev
->rfkill
));
304 static void cfg80211_event_work(struct work_struct
*work
)
306 struct cfg80211_registered_device
*rdev
;
308 rdev
= container_of(work
, struct cfg80211_registered_device
,
312 cfg80211_lock_rdev(rdev
);
314 cfg80211_process_rdev_events(rdev
);
315 cfg80211_unlock_rdev(rdev
);
319 /* exported functions */
321 struct wiphy
*wiphy_new(const struct cfg80211_ops
*ops
, int sizeof_priv
)
323 static int wiphy_counter
;
325 struct cfg80211_registered_device
*rdev
;
328 WARN_ON(ops
->add_key
&& (!ops
->del_key
|| !ops
->set_default_key
));
329 WARN_ON(ops
->auth
&& (!ops
->assoc
|| !ops
->deauth
|| !ops
->disassoc
));
330 WARN_ON(ops
->connect
&& !ops
->disconnect
);
331 WARN_ON(ops
->join_ibss
&& !ops
->leave_ibss
);
332 WARN_ON(ops
->add_virtual_intf
&& !ops
->del_virtual_intf
);
333 WARN_ON(ops
->add_station
&& !ops
->del_station
);
334 WARN_ON(ops
->add_mpath
&& !ops
->del_mpath
);
335 WARN_ON(ops
->join_mesh
&& !ops
->leave_mesh
);
337 alloc_size
= sizeof(*rdev
) + sizeof_priv
;
339 rdev
= kzalloc(alloc_size
, GFP_KERNEL
);
345 mutex_lock(&cfg80211_mutex
);
347 rdev
->wiphy_idx
= wiphy_counter
++;
349 if (unlikely(!wiphy_idx_valid(rdev
->wiphy_idx
))) {
351 mutex_unlock(&cfg80211_mutex
);
357 mutex_unlock(&cfg80211_mutex
);
359 /* give it a proper name */
360 dev_set_name(&rdev
->wiphy
.dev
, PHY_NAME
"%d", rdev
->wiphy_idx
);
362 mutex_init(&rdev
->mtx
);
363 mutex_init(&rdev
->devlist_mtx
);
364 INIT_LIST_HEAD(&rdev
->netdev_list
);
365 spin_lock_init(&rdev
->bss_lock
);
366 INIT_LIST_HEAD(&rdev
->bss_list
);
367 INIT_WORK(&rdev
->scan_done_wk
, __cfg80211_scan_done
);
369 #ifdef CONFIG_CFG80211_WEXT
370 rdev
->wiphy
.wext
= &cfg80211_wext_handler
;
373 device_initialize(&rdev
->wiphy
.dev
);
374 rdev
->wiphy
.dev
.class = &ieee80211_class
;
375 rdev
->wiphy
.dev
.platform_data
= rdev
;
377 #ifdef CONFIG_CFG80211_DEFAULT_PS
378 rdev
->wiphy
.flags
|= WIPHY_FLAG_PS_ON_BY_DEFAULT
;
381 wiphy_net_set(&rdev
->wiphy
, &init_net
);
383 rdev
->rfkill_ops
.set_block
= cfg80211_rfkill_set_block
;
384 rdev
->rfkill
= rfkill_alloc(dev_name(&rdev
->wiphy
.dev
),
385 &rdev
->wiphy
.dev
, RFKILL_TYPE_WLAN
,
386 &rdev
->rfkill_ops
, rdev
);
393 INIT_WORK(&rdev
->rfkill_sync
, cfg80211_rfkill_sync_work
);
394 INIT_WORK(&rdev
->conn_work
, cfg80211_conn_work
);
395 INIT_WORK(&rdev
->event_work
, cfg80211_event_work
);
397 init_waitqueue_head(&rdev
->dev_wait
);
400 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
401 * Fragmentation and RTS threshold are disabled by default with the
404 rdev
->wiphy
.retry_short
= 7;
405 rdev
->wiphy
.retry_long
= 4;
406 rdev
->wiphy
.frag_threshold
= (u32
) -1;
407 rdev
->wiphy
.rts_threshold
= (u32
) -1;
408 rdev
->wiphy
.coverage_class
= 0;
412 EXPORT_SYMBOL(wiphy_new
);
414 int wiphy_register(struct wiphy
*wiphy
)
416 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
418 enum ieee80211_band band
;
419 struct ieee80211_supported_band
*sband
;
420 bool have_band
= false;
422 u16 ifmodes
= wiphy
->interface_modes
;
424 if (WARN_ON(wiphy
->addresses
&& !wiphy
->n_addresses
))
427 if (WARN_ON(wiphy
->addresses
&&
428 !is_zero_ether_addr(wiphy
->perm_addr
) &&
429 memcmp(wiphy
->perm_addr
, wiphy
->addresses
[0].addr
,
433 if (wiphy
->addresses
)
434 memcpy(wiphy
->perm_addr
, wiphy
->addresses
[0].addr
, ETH_ALEN
);
436 /* sanity check ifmodes */
438 ifmodes
&= ((1 << NUM_NL80211_IFTYPES
) - 1) & ~1;
439 if (WARN_ON(ifmodes
!= wiphy
->interface_modes
))
440 wiphy
->interface_modes
= ifmodes
;
442 /* sanity check supported bands/channels */
443 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
444 sband
= wiphy
->bands
[band
];
450 if (WARN_ON(!sband
->n_channels
|| !sband
->n_bitrates
))
454 * Since we use a u32 for rate bitmaps in
455 * ieee80211_get_response_rate, we cannot
456 * have more than 32 legacy rates.
458 if (WARN_ON(sband
->n_bitrates
> 32))
461 for (i
= 0; i
< sband
->n_channels
; i
++) {
462 sband
->channels
[i
].orig_flags
=
463 sband
->channels
[i
].flags
;
464 sband
->channels
[i
].orig_mag
=
465 sband
->channels
[i
].max_antenna_gain
;
466 sband
->channels
[i
].orig_mpwr
=
467 sband
->channels
[i
].max_power
;
468 sband
->channels
[i
].band
= band
;
479 /* check and set up bitrates */
480 ieee80211_set_bitrate_flags(wiphy
);
482 mutex_lock(&cfg80211_mutex
);
484 res
= device_add(&rdev
->wiphy
.dev
);
486 mutex_unlock(&cfg80211_mutex
);
490 /* set up regulatory info */
491 wiphy_update_regulatory(wiphy
, NL80211_REGDOM_SET_BY_CORE
);
493 list_add_rcu(&rdev
->list
, &cfg80211_rdev_list
);
494 cfg80211_rdev_list_generation
++;
497 rdev
->wiphy
.debugfsdir
=
498 debugfs_create_dir(wiphy_name(&rdev
->wiphy
),
499 ieee80211_debugfs_dir
);
500 if (IS_ERR(rdev
->wiphy
.debugfsdir
))
501 rdev
->wiphy
.debugfsdir
= NULL
;
503 if (wiphy
->flags
& WIPHY_FLAG_CUSTOM_REGULATORY
) {
504 struct regulatory_request request
;
506 request
.wiphy_idx
= get_wiphy_idx(wiphy
);
507 request
.initiator
= NL80211_REGDOM_SET_BY_DRIVER
;
508 request
.alpha2
[0] = '9';
509 request
.alpha2
[1] = '9';
511 nl80211_send_reg_change_event(&request
);
514 cfg80211_debugfs_rdev_add(rdev
);
515 mutex_unlock(&cfg80211_mutex
);
518 * due to a locking dependency this has to be outside of the
519 * cfg80211_mutex lock
521 res
= rfkill_register(rdev
->rfkill
);
528 device_del(&rdev
->wiphy
.dev
);
531 EXPORT_SYMBOL(wiphy_register
);
533 void wiphy_rfkill_start_polling(struct wiphy
*wiphy
)
535 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
537 if (!rdev
->ops
->rfkill_poll
)
539 rdev
->rfkill_ops
.poll
= cfg80211_rfkill_poll
;
540 rfkill_resume_polling(rdev
->rfkill
);
542 EXPORT_SYMBOL(wiphy_rfkill_start_polling
);
544 void wiphy_rfkill_stop_polling(struct wiphy
*wiphy
)
546 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
548 rfkill_pause_polling(rdev
->rfkill
);
550 EXPORT_SYMBOL(wiphy_rfkill_stop_polling
);
552 void wiphy_unregister(struct wiphy
*wiphy
)
554 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
556 rfkill_unregister(rdev
->rfkill
);
558 /* protect the device list */
559 mutex_lock(&cfg80211_mutex
);
561 wait_event(rdev
->dev_wait
, ({
563 mutex_lock(&rdev
->devlist_mtx
);
564 __count
= rdev
->opencount
;
565 mutex_unlock(&rdev
->devlist_mtx
);
568 mutex_lock(&rdev
->devlist_mtx
);
569 BUG_ON(!list_empty(&rdev
->netdev_list
));
570 mutex_unlock(&rdev
->devlist_mtx
);
573 * First remove the hardware from everywhere, this makes
574 * it impossible to find from userspace.
576 debugfs_remove_recursive(rdev
->wiphy
.debugfsdir
);
577 list_del_rcu(&rdev
->list
);
581 * Try to grab rdev->mtx. If a command is still in progress,
582 * hopefully the driver will refuse it since it's tearing
583 * down the device already. We wait for this command to complete
584 * before unlinking the item from the list.
585 * Note: as codified by the BUG_ON above we cannot get here if
586 * a virtual interface is still present. Hence, we can only get
587 * to lock contention here if userspace issues a command that
588 * identified the hardware by wiphy index.
590 cfg80211_lock_rdev(rdev
);
592 cfg80211_unlock_rdev(rdev
);
594 /* If this device got a regulatory hint tell core its
595 * free to listen now to a new shiny device regulatory hint */
596 reg_device_remove(wiphy
);
598 cfg80211_rdev_list_generation
++;
599 device_del(&rdev
->wiphy
.dev
);
601 mutex_unlock(&cfg80211_mutex
);
603 flush_work(&rdev
->scan_done_wk
);
604 cancel_work_sync(&rdev
->conn_work
);
605 flush_work(&rdev
->event_work
);
607 EXPORT_SYMBOL(wiphy_unregister
);
609 void cfg80211_dev_free(struct cfg80211_registered_device
*rdev
)
611 struct cfg80211_internal_bss
*scan
, *tmp
;
612 rfkill_destroy(rdev
->rfkill
);
613 mutex_destroy(&rdev
->mtx
);
614 mutex_destroy(&rdev
->devlist_mtx
);
615 list_for_each_entry_safe(scan
, tmp
, &rdev
->bss_list
, list
)
616 cfg80211_put_bss(&scan
->pub
);
620 void wiphy_free(struct wiphy
*wiphy
)
622 put_device(&wiphy
->dev
);
624 EXPORT_SYMBOL(wiphy_free
);
626 void wiphy_rfkill_set_hw_state(struct wiphy
*wiphy
, bool blocked
)
628 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
630 if (rfkill_set_hw_state(rdev
->rfkill
, blocked
))
631 schedule_work(&rdev
->rfkill_sync
);
633 EXPORT_SYMBOL(wiphy_rfkill_set_hw_state
);
635 static void wdev_cleanup_work(struct work_struct
*work
)
637 struct wireless_dev
*wdev
;
638 struct cfg80211_registered_device
*rdev
;
640 wdev
= container_of(work
, struct wireless_dev
, cleanup_work
);
641 rdev
= wiphy_to_dev(wdev
->wiphy
);
643 cfg80211_lock_rdev(rdev
);
645 if (WARN_ON(rdev
->scan_req
&& rdev
->scan_req
->dev
== wdev
->netdev
)) {
646 rdev
->scan_req
->aborted
= true;
647 ___cfg80211_scan_done(rdev
, true);
650 cfg80211_unlock_rdev(rdev
);
652 mutex_lock(&rdev
->devlist_mtx
);
654 mutex_unlock(&rdev
->devlist_mtx
);
655 wake_up(&rdev
->dev_wait
);
657 dev_put(wdev
->netdev
);
660 static struct device_type wiphy_type
= {
664 static int cfg80211_netdev_notifier_call(struct notifier_block
* nb
,
668 struct net_device
*dev
= ndev
;
669 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
670 struct cfg80211_registered_device
*rdev
;
675 rdev
= wiphy_to_dev(wdev
->wiphy
);
677 WARN_ON(wdev
->iftype
== NL80211_IFTYPE_UNSPECIFIED
);
680 case NETDEV_POST_INIT
:
681 SET_NETDEV_DEVTYPE(dev
, &wiphy_type
);
683 case NETDEV_REGISTER
:
685 * NB: cannot take rdev->mtx here because this may be
686 * called within code protected by it when interfaces
687 * are added with nl80211.
689 mutex_init(&wdev
->mtx
);
690 INIT_WORK(&wdev
->cleanup_work
, wdev_cleanup_work
);
691 INIT_LIST_HEAD(&wdev
->event_list
);
692 spin_lock_init(&wdev
->event_lock
);
693 INIT_LIST_HEAD(&wdev
->mgmt_registrations
);
694 spin_lock_init(&wdev
->mgmt_registrations_lock
);
696 mutex_lock(&rdev
->devlist_mtx
);
697 list_add_rcu(&wdev
->list
, &rdev
->netdev_list
);
698 rdev
->devlist_generation
++;
699 /* can only change netns with wiphy */
700 dev
->features
|= NETIF_F_NETNS_LOCAL
;
702 if (sysfs_create_link(&dev
->dev
.kobj
, &rdev
->wiphy
.dev
.kobj
,
704 pr_err("failed to add phy80211 symlink to netdev!\n");
707 wdev
->sme_state
= CFG80211_SME_IDLE
;
708 mutex_unlock(&rdev
->devlist_mtx
);
709 #ifdef CONFIG_CFG80211_WEXT
710 wdev
->wext
.default_key
= -1;
711 wdev
->wext
.default_mgmt_key
= -1;
712 wdev
->wext
.connect
.auth_type
= NL80211_AUTHTYPE_AUTOMATIC
;
715 if (wdev
->wiphy
->flags
& WIPHY_FLAG_PS_ON_BY_DEFAULT
)
719 /* allow mac80211 to determine the timeout */
720 wdev
->ps_timeout
= -1;
721 if (rdev
->ops
->set_power_mgmt
)
722 if (rdev
->ops
->set_power_mgmt(wdev
->wiphy
, dev
,
725 /* assume this means it's off */
729 if (!dev
->ethtool_ops
)
730 dev
->ethtool_ops
= &cfg80211_ethtool_ops
;
732 if ((wdev
->iftype
== NL80211_IFTYPE_STATION
||
733 wdev
->iftype
== NL80211_IFTYPE_P2P_CLIENT
||
734 wdev
->iftype
== NL80211_IFTYPE_ADHOC
) && !wdev
->use_4addr
)
735 dev
->priv_flags
|= IFF_DONT_BRIDGE
;
737 case NETDEV_GOING_DOWN
:
738 switch (wdev
->iftype
) {
739 case NL80211_IFTYPE_ADHOC
:
740 cfg80211_leave_ibss(rdev
, dev
, true);
742 case NL80211_IFTYPE_P2P_CLIENT
:
743 case NL80211_IFTYPE_STATION
:
745 #ifdef CONFIG_CFG80211_WEXT
746 kfree(wdev
->wext
.ie
);
747 wdev
->wext
.ie
= NULL
;
748 wdev
->wext
.ie_len
= 0;
749 wdev
->wext
.connect
.auth_type
= NL80211_AUTHTYPE_AUTOMATIC
;
751 __cfg80211_disconnect(rdev
, dev
,
752 WLAN_REASON_DEAUTH_LEAVING
, true);
753 cfg80211_mlme_down(rdev
, dev
);
756 case NL80211_IFTYPE_MESH_POINT
:
757 cfg80211_leave_mesh(rdev
, dev
);
765 queue_work(cfg80211_wq
, &wdev
->cleanup_work
);
769 * If we have a really quick DOWN/UP succession we may
770 * have this work still pending ... cancel it and see
771 * if it was pending, in which case we need to account
772 * for some of the work it would have done.
774 if (cancel_work_sync(&wdev
->cleanup_work
)) {
775 mutex_lock(&rdev
->devlist_mtx
);
777 mutex_unlock(&rdev
->devlist_mtx
);
780 cfg80211_lock_rdev(rdev
);
781 mutex_lock(&rdev
->devlist_mtx
);
783 switch (wdev
->iftype
) {
784 #ifdef CONFIG_CFG80211_WEXT
785 case NL80211_IFTYPE_ADHOC
:
786 cfg80211_ibss_wext_join(rdev
, wdev
);
788 case NL80211_IFTYPE_STATION
:
789 cfg80211_mgd_wext_connect(rdev
, wdev
);
792 #ifdef CONFIG_MAC80211_MESH
793 case NL80211_IFTYPE_MESH_POINT
:
795 /* backward compat code... */
796 struct mesh_setup setup
;
797 memcpy(&setup
, &default_mesh_setup
,
799 /* back compat only needed for mesh_id */
800 setup
.mesh_id
= wdev
->ssid
;
801 setup
.mesh_id_len
= wdev
->mesh_id_up_len
;
802 if (wdev
->mesh_id_up_len
)
803 __cfg80211_join_mesh(rdev
, dev
,
805 &default_mesh_config
);
814 mutex_unlock(&rdev
->devlist_mtx
);
815 cfg80211_unlock_rdev(rdev
);
817 case NETDEV_UNREGISTER
:
819 * NB: cannot take rdev->mtx here because this may be
820 * called within code protected by it when interfaces
821 * are removed with nl80211.
823 mutex_lock(&rdev
->devlist_mtx
);
825 * It is possible to get NETDEV_UNREGISTER
826 * multiple times. To detect that, check
827 * that the interface is still on the list
828 * of registered interfaces, and only then
829 * remove and clean it up.
831 if (!list_empty(&wdev
->list
)) {
832 sysfs_remove_link(&dev
->dev
.kobj
, "phy80211");
833 list_del_rcu(&wdev
->list
);
834 rdev
->devlist_generation
++;
835 cfg80211_mlme_purge_registrations(wdev
);
836 #ifdef CONFIG_CFG80211_WEXT
837 kfree(wdev
->wext
.keys
);
840 mutex_unlock(&rdev
->devlist_mtx
);
842 * synchronise (so that we won't find this netdev
843 * from other code any more) and then clear the list
844 * head so that the above code can safely check for
845 * !list_empty() to avoid double-cleanup.
848 INIT_LIST_HEAD(&wdev
->list
);
851 if (!(wdev
->wiphy
->interface_modes
& BIT(wdev
->iftype
)))
852 return notifier_from_errno(-EOPNOTSUPP
);
853 if (rfkill_blocked(rdev
->rfkill
))
854 return notifier_from_errno(-ERFKILL
);
861 static struct notifier_block cfg80211_netdev_notifier
= {
862 .notifier_call
= cfg80211_netdev_notifier_call
,
865 static void __net_exit
cfg80211_pernet_exit(struct net
*net
)
867 struct cfg80211_registered_device
*rdev
;
870 mutex_lock(&cfg80211_mutex
);
871 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
872 if (net_eq(wiphy_net(&rdev
->wiphy
), net
))
873 WARN_ON(cfg80211_switch_netns(rdev
, &init_net
));
875 mutex_unlock(&cfg80211_mutex
);
879 static struct pernet_operations cfg80211_pernet_ops
= {
880 .exit
= cfg80211_pernet_exit
,
883 static int __init
cfg80211_init(void)
887 err
= register_pernet_device(&cfg80211_pernet_ops
);
889 goto out_fail_pernet
;
891 err
= wiphy_sysfs_init();
895 err
= register_netdevice_notifier(&cfg80211_netdev_notifier
);
897 goto out_fail_notifier
;
899 err
= nl80211_init();
901 goto out_fail_nl80211
;
903 ieee80211_debugfs_dir
= debugfs_create_dir("ieee80211", NULL
);
905 err
= regulatory_init();
909 cfg80211_wq
= create_singlethread_workqueue("cfg80211");
918 debugfs_remove(ieee80211_debugfs_dir
);
920 unregister_netdevice_notifier(&cfg80211_netdev_notifier
);
924 unregister_pernet_device(&cfg80211_pernet_ops
);
928 subsys_initcall(cfg80211_init
);
930 static void __exit
cfg80211_exit(void)
932 debugfs_remove(ieee80211_debugfs_dir
);
934 unregister_netdevice_notifier(&cfg80211_netdev_notifier
);
937 unregister_pernet_device(&cfg80211_pernet_ops
);
938 destroy_workqueue(cfg80211_wq
);
940 module_exit(cfg80211_exit
);