2 * This is the linux wireless configuration interface.
4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright 2013-2014 Intel Mobile Communications GmbH
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/module.h>
12 #include <linux/err.h>
13 #include <linux/list.h>
14 #include <linux/slab.h>
15 #include <linux/nl80211.h>
16 #include <linux/debugfs.h>
17 #include <linux/notifier.h>
18 #include <linux/device.h>
19 #include <linux/etherdevice.h>
20 #include <linux/rtnetlink.h>
21 #include <linux/sched.h>
22 #include <net/genetlink.h>
23 #include <net/cfg80211.h>
28 #include "wext-compat.h"
31 /* name for sysfs, %d is appended */
32 #define PHY_NAME "phy"
34 MODULE_AUTHOR("Johannes Berg");
35 MODULE_LICENSE("GPL");
36 MODULE_DESCRIPTION("wireless configuration support");
37 MODULE_ALIAS_GENL_FAMILY(NL80211_GENL_NAME
);
39 /* RCU-protected (and RTNL for writers) */
40 LIST_HEAD(cfg80211_rdev_list
);
41 int cfg80211_rdev_list_generation
;
44 static struct dentry
*ieee80211_debugfs_dir
;
46 /* for the cleanup, scan and event works */
47 struct workqueue_struct
*cfg80211_wq
;
49 static bool cfg80211_disable_40mhz_24ghz
;
50 module_param(cfg80211_disable_40mhz_24ghz
, bool, 0644);
51 MODULE_PARM_DESC(cfg80211_disable_40mhz_24ghz
,
52 "Disable 40MHz support in the 2.4GHz band");
54 struct cfg80211_registered_device
*cfg80211_rdev_by_wiphy_idx(int wiphy_idx
)
56 struct cfg80211_registered_device
*result
= NULL
, *rdev
;
60 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
61 if (rdev
->wiphy_idx
== wiphy_idx
) {
70 int get_wiphy_idx(struct wiphy
*wiphy
)
72 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
74 return rdev
->wiphy_idx
;
77 struct wiphy
*wiphy_idx_to_wiphy(int wiphy_idx
)
79 struct cfg80211_registered_device
*rdev
;
83 rdev
= cfg80211_rdev_by_wiphy_idx(wiphy_idx
);
89 static int cfg80211_dev_check_name(struct cfg80211_registered_device
*rdev
,
92 struct cfg80211_registered_device
*rdev2
;
93 int wiphy_idx
, taken
= -1, digits
;
97 if (strlen(newname
) > NL80211_WIPHY_NAME_MAXLEN
)
100 /* prohibit calling the thing phy%d when %d is not its number */
101 sscanf(newname
, PHY_NAME
"%d%n", &wiphy_idx
, &taken
);
102 if (taken
== strlen(newname
) && wiphy_idx
!= rdev
->wiphy_idx
) {
103 /* count number of places needed to print wiphy_idx */
105 while (wiphy_idx
/= 10)
108 * deny the name if it is phy<idx> where <idx> is printed
109 * without leading zeroes. taken == strlen(newname) here
111 if (taken
== strlen(PHY_NAME
) + digits
)
115 /* Ensure another device does not already have this name. */
116 list_for_each_entry(rdev2
, &cfg80211_rdev_list
, list
)
117 if (strcmp(newname
, wiphy_name(&rdev2
->wiphy
)) == 0)
123 int cfg80211_dev_rename(struct cfg80211_registered_device
*rdev
,
130 /* Ignore nop renames */
131 if (strcmp(newname
, wiphy_name(&rdev
->wiphy
)) == 0)
134 result
= cfg80211_dev_check_name(rdev
, newname
);
138 result
= device_rename(&rdev
->wiphy
.dev
, newname
);
142 if (rdev
->wiphy
.debugfsdir
&&
143 !debugfs_rename(rdev
->wiphy
.debugfsdir
->d_parent
,
144 rdev
->wiphy
.debugfsdir
,
145 rdev
->wiphy
.debugfsdir
->d_parent
,
147 pr_err("failed to rename debugfs dir to %s!\n", newname
);
149 nl80211_notify_wiphy(rdev
, NL80211_CMD_NEW_WIPHY
);
154 int cfg80211_switch_netns(struct cfg80211_registered_device
*rdev
,
157 struct wireless_dev
*wdev
;
160 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_NETNS_OK
))
163 list_for_each_entry(wdev
, &rdev
->wdev_list
, list
) {
166 wdev
->netdev
->features
&= ~NETIF_F_NETNS_LOCAL
;
167 err
= dev_change_net_namespace(wdev
->netdev
, net
, "wlan%d");
170 wdev
->netdev
->features
|= NETIF_F_NETNS_LOCAL
;
174 /* failed -- clean up to old netns */
175 net
= wiphy_net(&rdev
->wiphy
);
177 list_for_each_entry_continue_reverse(wdev
, &rdev
->wdev_list
,
181 wdev
->netdev
->features
&= ~NETIF_F_NETNS_LOCAL
;
182 err
= dev_change_net_namespace(wdev
->netdev
, net
,
185 wdev
->netdev
->features
|= NETIF_F_NETNS_LOCAL
;
191 wiphy_net_set(&rdev
->wiphy
, net
);
193 err
= device_rename(&rdev
->wiphy
.dev
, dev_name(&rdev
->wiphy
.dev
));
199 static void cfg80211_rfkill_poll(struct rfkill
*rfkill
, void *data
)
201 struct cfg80211_registered_device
*rdev
= data
;
203 rdev_rfkill_poll(rdev
);
206 void cfg80211_stop_p2p_device(struct cfg80211_registered_device
*rdev
,
207 struct wireless_dev
*wdev
)
211 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_P2P_DEVICE
))
214 if (!wdev
->p2p_started
)
217 rdev_stop_p2p_device(rdev
, wdev
);
218 wdev
->p2p_started
= false;
222 if (rdev
->scan_req
&& rdev
->scan_req
->wdev
== wdev
) {
223 if (WARN_ON(!rdev
->scan_req
->notified
))
224 rdev
->scan_req
->aborted
= true;
225 ___cfg80211_scan_done(rdev
, false);
229 void cfg80211_shutdown_all_interfaces(struct wiphy
*wiphy
)
231 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
232 struct wireless_dev
*wdev
;
236 list_for_each_entry(wdev
, &rdev
->wdev_list
, list
) {
238 dev_close(wdev
->netdev
);
241 /* otherwise, check iftype */
242 switch (wdev
->iftype
) {
243 case NL80211_IFTYPE_P2P_DEVICE
:
244 cfg80211_stop_p2p_device(rdev
, wdev
);
251 EXPORT_SYMBOL_GPL(cfg80211_shutdown_all_interfaces
);
253 static int cfg80211_rfkill_set_block(void *data
, bool blocked
)
255 struct cfg80211_registered_device
*rdev
= data
;
261 cfg80211_shutdown_all_interfaces(&rdev
->wiphy
);
267 static void cfg80211_rfkill_sync_work(struct work_struct
*work
)
269 struct cfg80211_registered_device
*rdev
;
271 rdev
= container_of(work
, struct cfg80211_registered_device
, rfkill_sync
);
272 cfg80211_rfkill_set_block(rdev
, rfkill_blocked(rdev
->rfkill
));
275 static void cfg80211_event_work(struct work_struct
*work
)
277 struct cfg80211_registered_device
*rdev
;
279 rdev
= container_of(work
, struct cfg80211_registered_device
,
283 cfg80211_process_rdev_events(rdev
);
287 void cfg80211_destroy_ifaces(struct cfg80211_registered_device
*rdev
)
289 struct cfg80211_iface_destroy
*item
;
293 spin_lock_irq(&rdev
->destroy_list_lock
);
294 while ((item
= list_first_entry_or_null(&rdev
->destroy_list
,
295 struct cfg80211_iface_destroy
,
297 struct wireless_dev
*wdev
, *tmp
;
298 u32 nlportid
= item
->nlportid
;
300 list_del(&item
->list
);
302 spin_unlock_irq(&rdev
->destroy_list_lock
);
304 list_for_each_entry_safe(wdev
, tmp
, &rdev
->wdev_list
, list
) {
305 if (nlportid
== wdev
->owner_nlportid
)
306 rdev_del_virtual_intf(rdev
, wdev
);
309 spin_lock_irq(&rdev
->destroy_list_lock
);
311 spin_unlock_irq(&rdev
->destroy_list_lock
);
314 static void cfg80211_destroy_iface_wk(struct work_struct
*work
)
316 struct cfg80211_registered_device
*rdev
;
318 rdev
= container_of(work
, struct cfg80211_registered_device
,
322 cfg80211_destroy_ifaces(rdev
);
326 static void cfg80211_sched_scan_stop_wk(struct work_struct
*work
)
328 struct cfg80211_registered_device
*rdev
;
330 rdev
= container_of(work
, struct cfg80211_registered_device
,
335 __cfg80211_stop_sched_scan(rdev
, false);
340 /* exported functions */
342 struct wiphy
*wiphy_new_nm(const struct cfg80211_ops
*ops
, int sizeof_priv
,
343 const char *requested_name
)
345 static atomic_t wiphy_counter
= ATOMIC_INIT(0);
347 struct cfg80211_registered_device
*rdev
;
350 WARN_ON(ops
->add_key
&& (!ops
->del_key
|| !ops
->set_default_key
));
351 WARN_ON(ops
->auth
&& (!ops
->assoc
|| !ops
->deauth
|| !ops
->disassoc
));
352 WARN_ON(ops
->connect
&& !ops
->disconnect
);
353 WARN_ON(ops
->join_ibss
&& !ops
->leave_ibss
);
354 WARN_ON(ops
->add_virtual_intf
&& !ops
->del_virtual_intf
);
355 WARN_ON(ops
->add_station
&& !ops
->del_station
);
356 WARN_ON(ops
->add_mpath
&& !ops
->del_mpath
);
357 WARN_ON(ops
->join_mesh
&& !ops
->leave_mesh
);
359 alloc_size
= sizeof(*rdev
) + sizeof_priv
;
361 rdev
= kzalloc(alloc_size
, GFP_KERNEL
);
367 rdev
->wiphy_idx
= atomic_inc_return(&wiphy_counter
);
369 if (unlikely(rdev
->wiphy_idx
< 0)) {
371 atomic_dec(&wiphy_counter
);
376 /* atomic_inc_return makes it start at 1, make it start at 0 */
379 /* give it a proper name */
380 if (requested_name
&& requested_name
[0]) {
384 rv
= cfg80211_dev_check_name(rdev
, requested_name
);
388 goto use_default_name
;
391 rv
= dev_set_name(&rdev
->wiphy
.dev
, "%s", requested_name
);
394 goto use_default_name
;
399 /* NOTE: This is *probably* safe w/out holding rtnl because of
400 * the restrictions on phy names. Probably this call could
401 * fail if some other part of the kernel (re)named a device
402 * phyX. But, might should add some locking and check return
403 * value, and use a different name if this one exists?
405 rv
= dev_set_name(&rdev
->wiphy
.dev
, PHY_NAME
"%d", rdev
->wiphy_idx
);
412 INIT_LIST_HEAD(&rdev
->wdev_list
);
413 INIT_LIST_HEAD(&rdev
->beacon_registrations
);
414 spin_lock_init(&rdev
->beacon_registrations_lock
);
415 spin_lock_init(&rdev
->bss_lock
);
416 INIT_LIST_HEAD(&rdev
->bss_list
);
417 INIT_WORK(&rdev
->scan_done_wk
, __cfg80211_scan_done
);
418 INIT_WORK(&rdev
->sched_scan_results_wk
, __cfg80211_sched_scan_results
);
419 INIT_LIST_HEAD(&rdev
->mlme_unreg
);
420 spin_lock_init(&rdev
->mlme_unreg_lock
);
421 INIT_WORK(&rdev
->mlme_unreg_wk
, cfg80211_mlme_unreg_wk
);
422 INIT_DELAYED_WORK(&rdev
->dfs_update_channels_wk
,
423 cfg80211_dfs_channels_update_work
);
424 #ifdef CONFIG_CFG80211_WEXT
425 rdev
->wiphy
.wext
= &cfg80211_wext_handler
;
428 device_initialize(&rdev
->wiphy
.dev
);
429 rdev
->wiphy
.dev
.class = &ieee80211_class
;
430 rdev
->wiphy
.dev
.platform_data
= rdev
;
431 device_enable_async_suspend(&rdev
->wiphy
.dev
);
433 INIT_LIST_HEAD(&rdev
->destroy_list
);
434 spin_lock_init(&rdev
->destroy_list_lock
);
435 INIT_WORK(&rdev
->destroy_work
, cfg80211_destroy_iface_wk
);
436 INIT_WORK(&rdev
->sched_scan_stop_wk
, cfg80211_sched_scan_stop_wk
);
438 #ifdef CONFIG_CFG80211_DEFAULT_PS
439 rdev
->wiphy
.flags
|= WIPHY_FLAG_PS_ON_BY_DEFAULT
;
442 wiphy_net_set(&rdev
->wiphy
, &init_net
);
444 rdev
->rfkill_ops
.set_block
= cfg80211_rfkill_set_block
;
445 rdev
->rfkill
= rfkill_alloc(dev_name(&rdev
->wiphy
.dev
),
446 &rdev
->wiphy
.dev
, RFKILL_TYPE_WLAN
,
447 &rdev
->rfkill_ops
, rdev
);
454 INIT_WORK(&rdev
->rfkill_sync
, cfg80211_rfkill_sync_work
);
455 INIT_WORK(&rdev
->conn_work
, cfg80211_conn_work
);
456 INIT_WORK(&rdev
->event_work
, cfg80211_event_work
);
458 init_waitqueue_head(&rdev
->dev_wait
);
461 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
462 * Fragmentation and RTS threshold are disabled by default with the
465 rdev
->wiphy
.retry_short
= 7;
466 rdev
->wiphy
.retry_long
= 4;
467 rdev
->wiphy
.frag_threshold
= (u32
) -1;
468 rdev
->wiphy
.rts_threshold
= (u32
) -1;
469 rdev
->wiphy
.coverage_class
= 0;
471 rdev
->wiphy
.max_num_csa_counters
= 1;
473 rdev
->wiphy
.max_sched_scan_plans
= 1;
474 rdev
->wiphy
.max_sched_scan_plan_interval
= U32_MAX
;
478 EXPORT_SYMBOL(wiphy_new_nm
);
480 static int wiphy_verify_combinations(struct wiphy
*wiphy
)
482 const struct ieee80211_iface_combination
*c
;
485 for (i
= 0; i
< wiphy
->n_iface_combinations
; i
++) {
489 c
= &wiphy
->iface_combinations
[i
];
492 * Combinations with just one interface aren't real,
493 * however we make an exception for DFS.
495 if (WARN_ON((c
->max_interfaces
< 2) && !c
->radar_detect_widths
))
498 /* Need at least one channel */
499 if (WARN_ON(!c
->num_different_channels
))
503 * Put a sane limit on maximum number of different
504 * channels to simplify channel accounting code.
506 if (WARN_ON(c
->num_different_channels
>
507 CFG80211_MAX_NUM_DIFFERENT_CHANNELS
))
510 /* DFS only works on one channel. */
511 if (WARN_ON(c
->radar_detect_widths
&&
512 (c
->num_different_channels
> 1)))
515 if (WARN_ON(!c
->n_limits
))
518 for (j
= 0; j
< c
->n_limits
; j
++) {
519 u16 types
= c
->limits
[j
].types
;
521 /* interface types shouldn't overlap */
522 if (WARN_ON(types
& all_iftypes
))
524 all_iftypes
|= types
;
526 if (WARN_ON(!c
->limits
[j
].max
))
529 /* Shouldn't list software iftypes in combinations! */
530 if (WARN_ON(wiphy
->software_iftypes
& types
))
533 /* Only a single P2P_DEVICE can be allowed */
534 if (WARN_ON(types
& BIT(NL80211_IFTYPE_P2P_DEVICE
) &&
535 c
->limits
[j
].max
> 1))
538 cnt
+= c
->limits
[j
].max
;
540 * Don't advertise an unsupported type
543 if (WARN_ON((wiphy
->interface_modes
& types
) != types
))
547 /* You can't even choose that many! */
548 if (WARN_ON(cnt
< c
->max_interfaces
))
555 int wiphy_register(struct wiphy
*wiphy
)
557 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
559 enum ieee80211_band band
;
560 struct ieee80211_supported_band
*sband
;
561 bool have_band
= false;
563 u16 ifmodes
= wiphy
->interface_modes
;
566 if (WARN_ON(wiphy
->wowlan
&&
567 (wiphy
->wowlan
->flags
& WIPHY_WOWLAN_GTK_REKEY_FAILURE
) &&
568 !(wiphy
->wowlan
->flags
& WIPHY_WOWLAN_SUPPORTS_GTK_REKEY
)))
570 if (WARN_ON(wiphy
->wowlan
&&
571 !wiphy
->wowlan
->flags
&& !wiphy
->wowlan
->n_patterns
&&
572 !wiphy
->wowlan
->tcp
))
575 if (WARN_ON((wiphy
->features
& NL80211_FEATURE_TDLS_CHANNEL_SWITCH
) &&
576 (!rdev
->ops
->tdls_channel_switch
||
577 !rdev
->ops
->tdls_cancel_channel_switch
)))
581 * if a wiphy has unsupported modes for regulatory channel enforcement,
582 * opt-out of enforcement checking
584 if (wiphy
->interface_modes
& ~(BIT(NL80211_IFTYPE_STATION
) |
585 BIT(NL80211_IFTYPE_P2P_CLIENT
) |
586 BIT(NL80211_IFTYPE_AP
) |
587 BIT(NL80211_IFTYPE_P2P_GO
) |
588 BIT(NL80211_IFTYPE_ADHOC
) |
589 BIT(NL80211_IFTYPE_P2P_DEVICE
) |
590 BIT(NL80211_IFTYPE_AP_VLAN
) |
591 BIT(NL80211_IFTYPE_MONITOR
)))
592 wiphy
->regulatory_flags
|= REGULATORY_IGNORE_STALE_KICKOFF
;
594 if (WARN_ON((wiphy
->regulatory_flags
& REGULATORY_WIPHY_SELF_MANAGED
) &&
595 (wiphy
->regulatory_flags
&
596 (REGULATORY_CUSTOM_REG
|
597 REGULATORY_STRICT_REG
|
598 REGULATORY_COUNTRY_IE_FOLLOW_POWER
|
599 REGULATORY_COUNTRY_IE_IGNORE
))))
602 if (WARN_ON(wiphy
->coalesce
&&
603 (!wiphy
->coalesce
->n_rules
||
604 !wiphy
->coalesce
->n_patterns
) &&
605 (!wiphy
->coalesce
->pattern_min_len
||
606 wiphy
->coalesce
->pattern_min_len
>
607 wiphy
->coalesce
->pattern_max_len
)))
610 if (WARN_ON(wiphy
->ap_sme_capa
&&
611 !(wiphy
->flags
& WIPHY_FLAG_HAVE_AP_SME
)))
614 if (WARN_ON(wiphy
->addresses
&& !wiphy
->n_addresses
))
617 if (WARN_ON(wiphy
->addresses
&&
618 !is_zero_ether_addr(wiphy
->perm_addr
) &&
619 memcmp(wiphy
->perm_addr
, wiphy
->addresses
[0].addr
,
623 if (WARN_ON(wiphy
->max_acl_mac_addrs
&&
624 (!(wiphy
->flags
& WIPHY_FLAG_HAVE_AP_SME
) ||
625 !rdev
->ops
->set_mac_acl
)))
628 if (wiphy
->addresses
)
629 memcpy(wiphy
->perm_addr
, wiphy
->addresses
[0].addr
, ETH_ALEN
);
631 /* sanity check ifmodes */
633 ifmodes
&= ((1 << NUM_NL80211_IFTYPES
) - 1) & ~1;
634 if (WARN_ON(ifmodes
!= wiphy
->interface_modes
))
635 wiphy
->interface_modes
= ifmodes
;
637 res
= wiphy_verify_combinations(wiphy
);
641 /* sanity check supported bands/channels */
642 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
643 sband
= wiphy
->bands
[band
];
648 if (WARN_ON(!sband
->n_channels
))
651 * on 60GHz band, there are no legacy rates, so
654 if (WARN_ON(band
!= IEEE80211_BAND_60GHZ
&&
659 * Since cfg80211_disable_40mhz_24ghz is global, we can
660 * modify the sband's ht data even if the driver uses a
661 * global structure for that.
663 if (cfg80211_disable_40mhz_24ghz
&&
664 band
== IEEE80211_BAND_2GHZ
&&
665 sband
->ht_cap
.ht_supported
) {
666 sband
->ht_cap
.cap
&= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
667 sband
->ht_cap
.cap
&= ~IEEE80211_HT_CAP_SGI_40
;
671 * Since we use a u32 for rate bitmaps in
672 * ieee80211_get_response_rate, we cannot
673 * have more than 32 legacy rates.
675 if (WARN_ON(sband
->n_bitrates
> 32))
678 for (i
= 0; i
< sband
->n_channels
; i
++) {
679 sband
->channels
[i
].orig_flags
=
680 sband
->channels
[i
].flags
;
681 sband
->channels
[i
].orig_mag
= INT_MAX
;
682 sband
->channels
[i
].orig_mpwr
=
683 sband
->channels
[i
].max_power
;
684 sband
->channels
[i
].band
= band
;
696 if (WARN_ON(rdev
->wiphy
.wowlan
&& rdev
->wiphy
.wowlan
->n_patterns
&&
697 (!rdev
->wiphy
.wowlan
->pattern_min_len
||
698 rdev
->wiphy
.wowlan
->pattern_min_len
>
699 rdev
->wiphy
.wowlan
->pattern_max_len
)))
703 /* check and set up bitrates */
704 ieee80211_set_bitrate_flags(wiphy
);
706 rdev
->wiphy
.features
|= NL80211_FEATURE_SCAN_FLUSH
;
709 res
= device_add(&rdev
->wiphy
.dev
);
715 /* set up regulatory info */
716 wiphy_regulatory_register(wiphy
);
718 list_add_rcu(&rdev
->list
, &cfg80211_rdev_list
);
719 cfg80211_rdev_list_generation
++;
722 rdev
->wiphy
.debugfsdir
=
723 debugfs_create_dir(wiphy_name(&rdev
->wiphy
),
724 ieee80211_debugfs_dir
);
725 if (IS_ERR(rdev
->wiphy
.debugfsdir
))
726 rdev
->wiphy
.debugfsdir
= NULL
;
728 cfg80211_debugfs_rdev_add(rdev
);
729 nl80211_notify_wiphy(rdev
, NL80211_CMD_NEW_WIPHY
);
731 if (wiphy
->regulatory_flags
& REGULATORY_CUSTOM_REG
) {
732 struct regulatory_request request
;
734 request
.wiphy_idx
= get_wiphy_idx(wiphy
);
735 request
.initiator
= NL80211_REGDOM_SET_BY_DRIVER
;
736 request
.alpha2
[0] = '9';
737 request
.alpha2
[1] = '9';
739 nl80211_send_reg_change_event(&request
);
742 rdev
->wiphy
.registered
= true;
745 res
= rfkill_register(rdev
->rfkill
);
747 rfkill_destroy(rdev
->rfkill
);
749 wiphy_unregister(&rdev
->wiphy
);
755 EXPORT_SYMBOL(wiphy_register
);
757 void wiphy_rfkill_start_polling(struct wiphy
*wiphy
)
759 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
761 if (!rdev
->ops
->rfkill_poll
)
763 rdev
->rfkill_ops
.poll
= cfg80211_rfkill_poll
;
764 rfkill_resume_polling(rdev
->rfkill
);
766 EXPORT_SYMBOL(wiphy_rfkill_start_polling
);
768 void wiphy_rfkill_stop_polling(struct wiphy
*wiphy
)
770 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
772 rfkill_pause_polling(rdev
->rfkill
);
774 EXPORT_SYMBOL(wiphy_rfkill_stop_polling
);
776 void wiphy_unregister(struct wiphy
*wiphy
)
778 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
780 wait_event(rdev
->dev_wait
, ({
783 __count
= rdev
->opencount
;
788 rfkill_unregister(rdev
->rfkill
);
791 nl80211_notify_wiphy(rdev
, NL80211_CMD_DEL_WIPHY
);
792 rdev
->wiphy
.registered
= false;
794 WARN_ON(!list_empty(&rdev
->wdev_list
));
797 * First remove the hardware from everywhere, this makes
798 * it impossible to find from userspace.
800 debugfs_remove_recursive(rdev
->wiphy
.debugfsdir
);
801 list_del_rcu(&rdev
->list
);
805 * If this device got a regulatory hint tell core its
806 * free to listen now to a new shiny device regulatory hint
808 wiphy_regulatory_deregister(wiphy
);
810 cfg80211_rdev_list_generation
++;
811 device_del(&rdev
->wiphy
.dev
);
815 flush_work(&rdev
->scan_done_wk
);
816 cancel_work_sync(&rdev
->conn_work
);
817 flush_work(&rdev
->event_work
);
818 cancel_delayed_work_sync(&rdev
->dfs_update_channels_wk
);
819 flush_work(&rdev
->destroy_work
);
820 flush_work(&rdev
->sched_scan_stop_wk
);
821 flush_work(&rdev
->mlme_unreg_wk
);
824 if (rdev
->wiphy
.wowlan_config
&& rdev
->ops
->set_wakeup
)
825 rdev_set_wakeup(rdev
, false);
827 cfg80211_rdev_free_wowlan(rdev
);
828 cfg80211_rdev_free_coalesce(rdev
);
830 EXPORT_SYMBOL(wiphy_unregister
);
832 void cfg80211_dev_free(struct cfg80211_registered_device
*rdev
)
834 struct cfg80211_internal_bss
*scan
, *tmp
;
835 struct cfg80211_beacon_registration
*reg
, *treg
;
836 rfkill_destroy(rdev
->rfkill
);
837 list_for_each_entry_safe(reg
, treg
, &rdev
->beacon_registrations
, list
) {
838 list_del(®
->list
);
841 list_for_each_entry_safe(scan
, tmp
, &rdev
->bss_list
, list
)
842 cfg80211_put_bss(&rdev
->wiphy
, &scan
->pub
);
846 void wiphy_free(struct wiphy
*wiphy
)
848 put_device(&wiphy
->dev
);
850 EXPORT_SYMBOL(wiphy_free
);
852 void wiphy_rfkill_set_hw_state(struct wiphy
*wiphy
, bool blocked
)
854 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
856 if (rfkill_set_hw_state(rdev
->rfkill
, blocked
))
857 schedule_work(&rdev
->rfkill_sync
);
859 EXPORT_SYMBOL(wiphy_rfkill_set_hw_state
);
861 void cfg80211_unregister_wdev(struct wireless_dev
*wdev
)
863 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wdev
->wiphy
);
867 if (WARN_ON(wdev
->netdev
))
870 list_del_rcu(&wdev
->list
);
871 rdev
->devlist_generation
++;
873 switch (wdev
->iftype
) {
874 case NL80211_IFTYPE_P2P_DEVICE
:
875 cfg80211_mlme_purge_registrations(wdev
);
876 cfg80211_stop_p2p_device(rdev
, wdev
);
883 EXPORT_SYMBOL(cfg80211_unregister_wdev
);
885 static const struct device_type wiphy_type
= {
889 void cfg80211_update_iface_num(struct cfg80211_registered_device
*rdev
,
890 enum nl80211_iftype iftype
, int num
)
894 rdev
->num_running_ifaces
+= num
;
895 if (iftype
== NL80211_IFTYPE_MONITOR
)
896 rdev
->num_running_monitor_ifaces
+= num
;
899 void __cfg80211_leave(struct cfg80211_registered_device
*rdev
,
900 struct wireless_dev
*wdev
)
902 struct net_device
*dev
= wdev
->netdev
;
903 struct cfg80211_sched_scan_request
*sched_scan_req
;
906 ASSERT_WDEV_LOCK(wdev
);
908 switch (wdev
->iftype
) {
909 case NL80211_IFTYPE_ADHOC
:
910 __cfg80211_leave_ibss(rdev
, dev
, true);
912 case NL80211_IFTYPE_P2P_CLIENT
:
913 case NL80211_IFTYPE_STATION
:
914 sched_scan_req
= rtnl_dereference(rdev
->sched_scan_req
);
915 if (sched_scan_req
&& dev
== sched_scan_req
->dev
)
916 __cfg80211_stop_sched_scan(rdev
, false);
918 #ifdef CONFIG_CFG80211_WEXT
919 kfree(wdev
->wext
.ie
);
920 wdev
->wext
.ie
= NULL
;
921 wdev
->wext
.ie_len
= 0;
922 wdev
->wext
.connect
.auth_type
= NL80211_AUTHTYPE_AUTOMATIC
;
924 cfg80211_disconnect(rdev
, dev
,
925 WLAN_REASON_DEAUTH_LEAVING
, true);
927 case NL80211_IFTYPE_MESH_POINT
:
928 __cfg80211_leave_mesh(rdev
, dev
);
930 case NL80211_IFTYPE_AP
:
931 case NL80211_IFTYPE_P2P_GO
:
932 __cfg80211_stop_ap(rdev
, dev
, true);
934 case NL80211_IFTYPE_OCB
:
935 __cfg80211_leave_ocb(rdev
, dev
);
937 case NL80211_IFTYPE_WDS
:
938 /* must be handled by mac80211/driver, has no APIs */
940 case NL80211_IFTYPE_P2P_DEVICE
:
941 /* cannot happen, has no netdev */
943 case NL80211_IFTYPE_AP_VLAN
:
944 case NL80211_IFTYPE_MONITOR
:
947 case NL80211_IFTYPE_UNSPECIFIED
:
948 case NUM_NL80211_IFTYPES
:
954 void cfg80211_leave(struct cfg80211_registered_device
*rdev
,
955 struct wireless_dev
*wdev
)
958 __cfg80211_leave(rdev
, wdev
);
962 void cfg80211_stop_iface(struct wiphy
*wiphy
, struct wireless_dev
*wdev
,
965 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
966 struct cfg80211_event
*ev
;
969 trace_cfg80211_stop_iface(wiphy
, wdev
);
971 ev
= kzalloc(sizeof(*ev
), gfp
);
975 ev
->type
= EVENT_STOPPED
;
977 spin_lock_irqsave(&wdev
->event_lock
, flags
);
978 list_add_tail(&ev
->list
, &wdev
->event_list
);
979 spin_unlock_irqrestore(&wdev
->event_lock
, flags
);
980 queue_work(cfg80211_wq
, &rdev
->event_work
);
982 EXPORT_SYMBOL(cfg80211_stop_iface
);
984 static int cfg80211_netdev_notifier_call(struct notifier_block
*nb
,
985 unsigned long state
, void *ptr
)
987 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
988 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
989 struct cfg80211_registered_device
*rdev
;
990 struct cfg80211_sched_scan_request
*sched_scan_req
;
995 rdev
= wiphy_to_rdev(wdev
->wiphy
);
997 WARN_ON(wdev
->iftype
== NL80211_IFTYPE_UNSPECIFIED
);
1000 case NETDEV_POST_INIT
:
1001 SET_NETDEV_DEVTYPE(dev
, &wiphy_type
);
1003 case NETDEV_REGISTER
:
1005 * NB: cannot take rdev->mtx here because this may be
1006 * called within code protected by it when interfaces
1007 * are added with nl80211.
1009 mutex_init(&wdev
->mtx
);
1010 INIT_LIST_HEAD(&wdev
->event_list
);
1011 spin_lock_init(&wdev
->event_lock
);
1012 INIT_LIST_HEAD(&wdev
->mgmt_registrations
);
1013 spin_lock_init(&wdev
->mgmt_registrations_lock
);
1015 wdev
->identifier
= ++rdev
->wdev_id
;
1016 list_add_rcu(&wdev
->list
, &rdev
->wdev_list
);
1017 rdev
->devlist_generation
++;
1018 /* can only change netns with wiphy */
1019 dev
->features
|= NETIF_F_NETNS_LOCAL
;
1021 if (sysfs_create_link(&dev
->dev
.kobj
, &rdev
->wiphy
.dev
.kobj
,
1023 pr_err("failed to add phy80211 symlink to netdev!\n");
1026 #ifdef CONFIG_CFG80211_WEXT
1027 wdev
->wext
.default_key
= -1;
1028 wdev
->wext
.default_mgmt_key
= -1;
1029 wdev
->wext
.connect
.auth_type
= NL80211_AUTHTYPE_AUTOMATIC
;
1032 if (wdev
->wiphy
->flags
& WIPHY_FLAG_PS_ON_BY_DEFAULT
)
1036 /* allow mac80211 to determine the timeout */
1037 wdev
->ps_timeout
= -1;
1039 if ((wdev
->iftype
== NL80211_IFTYPE_STATION
||
1040 wdev
->iftype
== NL80211_IFTYPE_P2P_CLIENT
||
1041 wdev
->iftype
== NL80211_IFTYPE_ADHOC
) && !wdev
->use_4addr
)
1042 dev
->priv_flags
|= IFF_DONT_BRIDGE
;
1044 case NETDEV_GOING_DOWN
:
1045 cfg80211_leave(rdev
, wdev
);
1048 cfg80211_update_iface_num(rdev
, wdev
->iftype
, -1);
1049 if (rdev
->scan_req
&& rdev
->scan_req
->wdev
== wdev
) {
1050 if (WARN_ON(!rdev
->scan_req
->notified
))
1051 rdev
->scan_req
->aborted
= true;
1052 ___cfg80211_scan_done(rdev
, false);
1055 sched_scan_req
= rtnl_dereference(rdev
->sched_scan_req
);
1056 if (WARN_ON(sched_scan_req
&&
1057 sched_scan_req
->dev
== wdev
->netdev
)) {
1058 __cfg80211_stop_sched_scan(rdev
, false);
1062 wake_up(&rdev
->dev_wait
);
1065 cfg80211_update_iface_num(rdev
, wdev
->iftype
, 1);
1067 switch (wdev
->iftype
) {
1068 #ifdef CONFIG_CFG80211_WEXT
1069 case NL80211_IFTYPE_ADHOC
:
1070 cfg80211_ibss_wext_join(rdev
, wdev
);
1072 case NL80211_IFTYPE_STATION
:
1073 cfg80211_mgd_wext_connect(rdev
, wdev
);
1076 #ifdef CONFIG_MAC80211_MESH
1077 case NL80211_IFTYPE_MESH_POINT
:
1079 /* backward compat code... */
1080 struct mesh_setup setup
;
1081 memcpy(&setup
, &default_mesh_setup
,
1083 /* back compat only needed for mesh_id */
1084 setup
.mesh_id
= wdev
->ssid
;
1085 setup
.mesh_id_len
= wdev
->mesh_id_up_len
;
1086 if (wdev
->mesh_id_up_len
)
1087 __cfg80211_join_mesh(rdev
, dev
,
1089 &default_mesh_config
);
1100 * Configure power management to the driver here so that its
1101 * correctly set also after interface type changes etc.
1103 if ((wdev
->iftype
== NL80211_IFTYPE_STATION
||
1104 wdev
->iftype
== NL80211_IFTYPE_P2P_CLIENT
) &&
1105 rdev
->ops
->set_power_mgmt
)
1106 if (rdev_set_power_mgmt(rdev
, dev
, wdev
->ps
,
1107 wdev
->ps_timeout
)) {
1108 /* assume this means it's off */
1112 case NETDEV_UNREGISTER
:
1114 * It is possible to get NETDEV_UNREGISTER
1115 * multiple times. To detect that, check
1116 * that the interface is still on the list
1117 * of registered interfaces, and only then
1118 * remove and clean it up.
1120 if (!list_empty(&wdev
->list
)) {
1121 sysfs_remove_link(&dev
->dev
.kobj
, "phy80211");
1122 list_del_rcu(&wdev
->list
);
1123 rdev
->devlist_generation
++;
1124 cfg80211_mlme_purge_registrations(wdev
);
1125 #ifdef CONFIG_CFG80211_WEXT
1126 kzfree(wdev
->wext
.keys
);
1130 * synchronise (so that we won't find this netdev
1131 * from other code any more) and then clear the list
1132 * head so that the above code can safely check for
1133 * !list_empty() to avoid double-cleanup.
1136 INIT_LIST_HEAD(&wdev
->list
);
1138 * Ensure that all events have been processed and
1141 cfg80211_process_wdev_events(wdev
);
1143 if (WARN_ON(wdev
->current_bss
)) {
1144 cfg80211_unhold_bss(wdev
->current_bss
);
1145 cfg80211_put_bss(wdev
->wiphy
, &wdev
->current_bss
->pub
);
1146 wdev
->current_bss
= NULL
;
1150 if (!(wdev
->wiphy
->interface_modes
& BIT(wdev
->iftype
)))
1151 return notifier_from_errno(-EOPNOTSUPP
);
1152 if (rfkill_blocked(rdev
->rfkill
))
1153 return notifier_from_errno(-ERFKILL
);
1159 wireless_nlevent_flush();
1164 static struct notifier_block cfg80211_netdev_notifier
= {
1165 .notifier_call
= cfg80211_netdev_notifier_call
,
1168 static void __net_exit
cfg80211_pernet_exit(struct net
*net
)
1170 struct cfg80211_registered_device
*rdev
;
1173 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
1174 if (net_eq(wiphy_net(&rdev
->wiphy
), net
))
1175 WARN_ON(cfg80211_switch_netns(rdev
, &init_net
));
1180 static struct pernet_operations cfg80211_pernet_ops
= {
1181 .exit
= cfg80211_pernet_exit
,
1184 static int __init
cfg80211_init(void)
1188 err
= register_pernet_device(&cfg80211_pernet_ops
);
1190 goto out_fail_pernet
;
1192 err
= wiphy_sysfs_init();
1194 goto out_fail_sysfs
;
1196 err
= register_netdevice_notifier(&cfg80211_netdev_notifier
);
1198 goto out_fail_notifier
;
1200 err
= nl80211_init();
1202 goto out_fail_nl80211
;
1204 ieee80211_debugfs_dir
= debugfs_create_dir("ieee80211", NULL
);
1206 err
= regulatory_init();
1210 cfg80211_wq
= create_singlethread_workqueue("cfg80211");
1221 debugfs_remove(ieee80211_debugfs_dir
);
1224 unregister_netdevice_notifier(&cfg80211_netdev_notifier
);
1228 unregister_pernet_device(&cfg80211_pernet_ops
);
1232 subsys_initcall(cfg80211_init
);
1234 static void __exit
cfg80211_exit(void)
1236 debugfs_remove(ieee80211_debugfs_dir
);
1238 unregister_netdevice_notifier(&cfg80211_netdev_notifier
);
1241 unregister_pernet_device(&cfg80211_pernet_ops
);
1242 destroy_workqueue(cfg80211_wq
);
1244 module_exit(cfg80211_exit
);