blob: b36ad8efb5e5271e7ddbf87c72a337bb2d12e0a6 [file] [log] [blame]
Johannes Berg704232c2007-04-23 12:20:05 -07001/*
2 * This is the linux wireless configuration interface.
3 *
Johannes Berg5f2aa252010-01-17 15:49:02 +01004 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Berg2740f0c2014-09-03 15:24:58 +03005 * Copyright 2013-2014 Intel Mobile Communications GmbH
Luca Coelhoc4cbaf72018-06-09 09:14:42 +03006 * Copyright 2015-2017 Intel Deutschland GmbH
Johannes Berg9bb7e0f2018-09-10 13:29:12 +02007 * Copyright (C) 2018 Intel Corporation
Johannes Berg704232c2007-04-23 12:20:05 -07008 */
9
Joe Perchese9c02682010-11-16 19:56:49 -080010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Johannes Berg704232c2007-04-23 12:20:05 -070012#include <linux/if.h>
13#include <linux/module.h>
14#include <linux/err.h>
Johannes Berg704232c2007-04-23 12:20:05 -070015#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Johannes Berg704232c2007-04-23 12:20:05 -070017#include <linux/nl80211.h>
18#include <linux/debugfs.h>
19#include <linux/notifier.h>
20#include <linux/device.h>
Zhu Yi16a832e2009-08-19 16:08:22 +080021#include <linux/etherdevice.h>
Johannes Berg1f87f7d2009-06-02 13:01:41 +020022#include <linux/rtnetlink.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040023#include <linux/sched.h>
Johannes Berg704232c2007-04-23 12:20:05 -070024#include <net/genetlink.h>
25#include <net/cfg80211.h>
Johannes Berg55682962007-09-20 13:09:35 -040026#include "nl80211.h"
Johannes Berg704232c2007-04-23 12:20:05 -070027#include "core.h"
28#include "sysfs.h"
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -040029#include "debugfs.h"
Johannes Berga9a11622009-07-27 12:01:53 +020030#include "wext-compat.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030031#include "rdev-ops.h"
Johannes Berg704232c2007-04-23 12:20:05 -070032
33/* name for sysfs, %d is appended */
34#define PHY_NAME "phy"
35
36MODULE_AUTHOR("Johannes Berg");
37MODULE_LICENSE("GPL");
38MODULE_DESCRIPTION("wireless configuration support");
Marcel Holtmannfb4e1562013-04-28 16:22:06 -070039MODULE_ALIAS_GENL_FAMILY(NL80211_GENL_NAME);
Johannes Berg704232c2007-04-23 12:20:05 -070040
Johannes Berg5fe231e2013-05-08 21:45:15 +020041/* RCU-protected (and RTNL for writers) */
Johannes Berg79c97e92009-07-07 03:56:12 +020042LIST_HEAD(cfg80211_rdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +020043int cfg80211_rdev_list_generation;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050044
Johannes Berg704232c2007-04-23 12:20:05 -070045/* for debugfs */
46static struct dentry *ieee80211_debugfs_dir;
47
Alban Browaeyse60d7442009-11-25 15:13:00 +010048/* for the cleanup, scan and event works */
49struct workqueue_struct *cfg80211_wq;
50
Amitkumar Karwar40db6c72011-04-21 14:10:27 -070051static bool cfg80211_disable_40mhz_24ghz;
52module_param(cfg80211_disable_40mhz_24ghz, bool, 0644);
53MODULE_PARM_DESC(cfg80211_disable_40mhz_24ghz,
54 "Disable 40MHz support in the 2.4GHz band");
55
Johannes Berg79c97e92009-07-07 03:56:12 +020056struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx)
Johannes Berg55682962007-09-20 13:09:35 -040057{
Johannes Berg79c97e92009-07-07 03:56:12 +020058 struct cfg80211_registered_device *result = NULL, *rdev;
Johannes Berg55682962007-09-20 13:09:35 -040059
Johannes Berg5fe231e2013-05-08 21:45:15 +020060 ASSERT_RTNL();
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050061
Johannes Berg79c97e92009-07-07 03:56:12 +020062 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
63 if (rdev->wiphy_idx == wiphy_idx) {
64 result = rdev;
Johannes Berg55682962007-09-20 13:09:35 -040065 break;
66 }
67 }
68
69 return result;
70}
71
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050072int get_wiphy_idx(struct wiphy *wiphy)
73{
Zhao, Gangf26cbf42014-04-21 12:53:03 +080074 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Bergf4173762012-12-03 18:23:37 +010075
Johannes Berg79c97e92009-07-07 03:56:12 +020076 return rdev->wiphy_idx;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050077}
78
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050079struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
80{
Johannes Berg79c97e92009-07-07 03:56:12 +020081 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050082
Johannes Berg5fe231e2013-05-08 21:45:15 +020083 ASSERT_RTNL();
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050084
Johannes Berg79c97e92009-07-07 03:56:12 +020085 rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx);
86 if (!rdev)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050087 return NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +020088 return &rdev->wiphy;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050089}
90
Ben Greear1998d902014-10-22 12:23:00 -070091static int cfg80211_dev_check_name(struct cfg80211_registered_device *rdev,
92 const char *newname)
Johannes Berg55682962007-09-20 13:09:35 -040093{
Johannes Berg79c97e92009-07-07 03:56:12 +020094 struct cfg80211_registered_device *rdev2;
Ben Greear1998d902014-10-22 12:23:00 -070095 int wiphy_idx, taken = -1, digits;
Johannes Berg55682962007-09-20 13:09:35 -040096
Johannes Berg5fe231e2013-05-08 21:45:15 +020097 ASSERT_RTNL();
Eric W. Biederman2940bb62008-05-08 14:30:18 -070098
Johannes Berga7cfebc2018-04-03 14:33:49 +020099 if (strlen(newname) > NL80211_WIPHY_NAME_MAXLEN)
100 return -EINVAL;
101
Johannes Berg76232252010-10-11 14:46:52 -0400102 /* prohibit calling the thing phy%d when %d is not its number */
103 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
104 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
105 /* count number of places needed to print wiphy_idx */
106 digits = 1;
107 while (wiphy_idx /= 10)
108 digits++;
109 /*
110 * deny the name if it is phy<idx> where <idx> is printed
111 * without leading zeroes. taken == strlen(newname) here
112 */
113 if (taken == strlen(PHY_NAME) + digits)
114 return -EINVAL;
115 }
116
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700117 /* Ensure another device does not already have this name. */
Johannes Berg79c97e92009-07-07 03:56:12 +0200118 list_for_each_entry(rdev2, &cfg80211_rdev_list, list)
Ben Greear1998d902014-10-22 12:23:00 -0700119 if (strcmp(newname, wiphy_name(&rdev2->wiphy)) == 0)
Johannes Berg76232252010-10-11 14:46:52 -0400120 return -EINVAL;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700121
Ben Greear1998d902014-10-22 12:23:00 -0700122 return 0;
123}
124
125int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
126 char *newname)
127{
128 int result;
129
130 ASSERT_RTNL();
131
132 /* Ignore nop renames */
133 if (strcmp(newname, wiphy_name(&rdev->wiphy)) == 0)
134 return 0;
135
136 result = cfg80211_dev_check_name(rdev, newname);
137 if (result < 0)
138 return result;
139
Johannes Berg55682962007-09-20 13:09:35 -0400140 result = device_rename(&rdev->wiphy.dev, newname);
141 if (result)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100142 return result;
Johannes Berg55682962007-09-20 13:09:35 -0400143
Johannes Berg33c03602008-10-08 10:23:48 +0200144 if (rdev->wiphy.debugfsdir &&
145 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
Johannes Berg55682962007-09-20 13:09:35 -0400146 rdev->wiphy.debugfsdir,
147 rdev->wiphy.debugfsdir->d_parent,
148 newname))
Joe Perchese9c02682010-11-16 19:56:49 -0800149 pr_err("failed to rename debugfs dir to %s!\n", newname);
Johannes Berg55682962007-09-20 13:09:35 -0400150
Johannes Berg3bb20552014-05-26 13:52:25 +0200151 nl80211_notify_wiphy(rdev, NL80211_CMD_NEW_WIPHY);
Johannes Berg55682962007-09-20 13:09:35 -0400152
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100153 return 0;
Johannes Berg55682962007-09-20 13:09:35 -0400154}
155
Johannes Berg463d0182009-07-14 00:33:35 +0200156int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
157 struct net *net)
158{
159 struct wireless_dev *wdev;
160 int err = 0;
161
Johannes Berg5be83de2009-11-19 00:56:28 +0100162 if (!(rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK))
Johannes Berg463d0182009-07-14 00:33:35 +0200163 return -EOPNOTSUPP;
164
Johannes Berg53873f12016-05-03 16:52:04 +0300165 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
Johannes Bergba22fb52012-06-15 18:00:00 +0200166 if (!wdev->netdev)
167 continue;
Johannes Berg463d0182009-07-14 00:33:35 +0200168 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
169 err = dev_change_net_namespace(wdev->netdev, net, "wlan%d");
170 if (err)
171 break;
172 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
173 }
174
175 if (err) {
176 /* failed -- clean up to old netns */
177 net = wiphy_net(&rdev->wiphy);
178
Johannes Berg53873f12016-05-03 16:52:04 +0300179 list_for_each_entry_continue_reverse(wdev,
180 &rdev->wiphy.wdev_list,
Johannes Berg463d0182009-07-14 00:33:35 +0200181 list) {
Johannes Bergba22fb52012-06-15 18:00:00 +0200182 if (!wdev->netdev)
183 continue;
Johannes Berg463d0182009-07-14 00:33:35 +0200184 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
185 err = dev_change_net_namespace(wdev->netdev, net,
186 "wlan%d");
187 WARN_ON(err);
188 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
189 }
Johannes Berg04600792010-08-05 17:45:15 +0200190
191 return err;
Johannes Berg463d0182009-07-14 00:33:35 +0200192 }
193
Martin Willic90b6702018-10-27 09:31:24 +0200194 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
195 if (!wdev->netdev)
196 continue;
197 nl80211_notify_iface(rdev, wdev, NL80211_CMD_DEL_INTERFACE);
198 }
199 nl80211_notify_wiphy(rdev, NL80211_CMD_DEL_WIPHY);
200
Johannes Berg463d0182009-07-14 00:33:35 +0200201 wiphy_net_set(&rdev->wiphy, net);
202
Johannes Berg04600792010-08-05 17:45:15 +0200203 err = device_rename(&rdev->wiphy.dev, dev_name(&rdev->wiphy.dev));
204 WARN_ON(err);
205
Martin Willic90b6702018-10-27 09:31:24 +0200206 nl80211_notify_wiphy(rdev, NL80211_CMD_NEW_WIPHY);
207 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
208 if (!wdev->netdev)
209 continue;
210 nl80211_notify_iface(rdev, wdev, NL80211_CMD_NEW_INTERFACE);
211 }
212
Johannes Berg04600792010-08-05 17:45:15 +0200213 return 0;
Johannes Berg463d0182009-07-14 00:33:35 +0200214}
215
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200216static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
217{
Johannes Berg79c97e92009-07-07 03:56:12 +0200218 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200219
Hila Gonene35e4d22012-06-27 17:19:42 +0300220 rdev_rfkill_poll(rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200221}
222
Johannes Bergf9f47522013-03-19 15:04:07 +0100223void cfg80211_stop_p2p_device(struct cfg80211_registered_device *rdev,
224 struct wireless_dev *wdev)
225{
Johannes Berg5fe231e2013-05-08 21:45:15 +0200226 ASSERT_RTNL();
Johannes Bergf9f47522013-03-19 15:04:07 +0100227
228 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_P2P_DEVICE))
229 return;
230
Arend Van Spriel73c7da32016-10-20 20:08:22 +0100231 if (!wdev_running(wdev))
Johannes Bergf9f47522013-03-19 15:04:07 +0100232 return;
233
234 rdev_stop_p2p_device(rdev, wdev);
Arend Van Spriel73c7da32016-10-20 20:08:22 +0100235 wdev->is_running = false;
Johannes Bergf9f47522013-03-19 15:04:07 +0100236
237 rdev->opencount--;
238
Johannes Berga6173022014-01-22 11:14:18 +0200239 if (rdev->scan_req && rdev->scan_req->wdev == wdev) {
240 if (WARN_ON(!rdev->scan_req->notified))
Avraham Stern1d762502016-07-05 17:10:13 +0300241 rdev->scan_req->info.aborted = true;
Johannes Bergf9d15d12014-01-22 11:14:19 +0200242 ___cfg80211_scan_done(rdev, false);
Johannes Berga6173022014-01-22 11:14:18 +0200243 }
Johannes Bergf9f47522013-03-19 15:04:07 +0100244}
245
Ayala Bekercb3b7d82016-09-20 17:31:13 +0300246void cfg80211_stop_nan(struct cfg80211_registered_device *rdev,
247 struct wireless_dev *wdev)
248{
249 ASSERT_RTNL();
250
251 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_NAN))
252 return;
253
Arend Van Spriel73c7da32016-10-20 20:08:22 +0100254 if (!wdev_running(wdev))
Ayala Bekercb3b7d82016-09-20 17:31:13 +0300255 return;
256
257 rdev_stop_nan(rdev, wdev);
Arend Van Spriel73c7da32016-10-20 20:08:22 +0100258 wdev->is_running = false;
Ayala Bekercb3b7d82016-09-20 17:31:13 +0300259
260 rdev->opencount--;
261}
262
Johannes Bergf6837ba82014-04-30 14:19:04 +0200263void cfg80211_shutdown_all_interfaces(struct wiphy *wiphy)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200264{
Johannes Bergf6837ba82014-04-30 14:19:04 +0200265 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200266 struct wireless_dev *wdev;
267
Johannes Bergf6837ba82014-04-30 14:19:04 +0200268 ASSERT_RTNL();
Johannes Bergf9f47522013-03-19 15:04:07 +0100269
Johannes Berg53873f12016-05-03 16:52:04 +0300270 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
Johannes Berg98104fde2012-06-16 00:19:54 +0200271 if (wdev->netdev) {
Johannes Bergba22fb52012-06-15 18:00:00 +0200272 dev_close(wdev->netdev);
Johannes Berg98104fde2012-06-16 00:19:54 +0200273 continue;
274 }
275 /* otherwise, check iftype */
276 switch (wdev->iftype) {
277 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Bergf9f47522013-03-19 15:04:07 +0100278 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +0200279 break;
Ayala Bekercb3b7d82016-09-20 17:31:13 +0300280 case NL80211_IFTYPE_NAN:
281 cfg80211_stop_nan(rdev, wdev);
282 break;
Johannes Berg98104fde2012-06-16 00:19:54 +0200283 default:
284 break;
285 }
286 }
Johannes Bergf6837ba82014-04-30 14:19:04 +0200287}
288EXPORT_SYMBOL_GPL(cfg80211_shutdown_all_interfaces);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200289
Johannes Bergf6837ba82014-04-30 14:19:04 +0200290static int cfg80211_rfkill_set_block(void *data, bool blocked)
291{
292 struct cfg80211_registered_device *rdev = data;
293
294 if (!blocked)
295 return 0;
296
297 rtnl_lock();
298 cfg80211_shutdown_all_interfaces(&rdev->wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200299 rtnl_unlock();
300
301 return 0;
302}
303
304static void cfg80211_rfkill_sync_work(struct work_struct *work)
305{
Johannes Berg79c97e92009-07-07 03:56:12 +0200306 struct cfg80211_registered_device *rdev;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200307
Johannes Berg79c97e92009-07-07 03:56:12 +0200308 rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync);
309 cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill));
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200310}
311
Johannes Berg667503d2009-07-07 03:56:11 +0200312static void cfg80211_event_work(struct work_struct *work)
313{
314 struct cfg80211_registered_device *rdev;
Johannes Berg667503d2009-07-07 03:56:11 +0200315
316 rdev = container_of(work, struct cfg80211_registered_device,
317 event_work);
318
319 rtnl_lock();
Johannes Berg3d54d252009-08-21 14:51:05 +0200320 cfg80211_process_rdev_events(rdev);
Johannes Berg667503d2009-07-07 03:56:11 +0200321 rtnl_unlock();
322}
323
Johannes Berg78f22b62014-03-24 17:57:27 +0100324void cfg80211_destroy_ifaces(struct cfg80211_registered_device *rdev)
325{
Johannes Bergab810072017-04-26 07:43:41 +0200326 struct wireless_dev *wdev, *tmp;
Johannes Berg78f22b62014-03-24 17:57:27 +0100327
328 ASSERT_RTNL();
329
Johannes Bergab810072017-04-26 07:43:41 +0200330 list_for_each_entry_safe(wdev, tmp, &rdev->wiphy.wdev_list, list) {
331 if (wdev->nl_owner_dead)
332 rdev_del_virtual_intf(rdev, wdev);
Johannes Berg78f22b62014-03-24 17:57:27 +0100333 }
Johannes Berg78f22b62014-03-24 17:57:27 +0100334}
335
336static void cfg80211_destroy_iface_wk(struct work_struct *work)
337{
338 struct cfg80211_registered_device *rdev;
339
340 rdev = container_of(work, struct cfg80211_registered_device,
341 destroy_work);
342
343 rtnl_lock();
344 cfg80211_destroy_ifaces(rdev);
345 rtnl_unlock();
346}
347
Jukka Rissanen93a1e862014-12-15 13:25:39 +0200348static void cfg80211_sched_scan_stop_wk(struct work_struct *work)
349{
350 struct cfg80211_registered_device *rdev;
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100351 struct cfg80211_sched_scan_request *req, *tmp;
Jukka Rissanen93a1e862014-12-15 13:25:39 +0200352
353 rdev = container_of(work, struct cfg80211_registered_device,
354 sched_scan_stop_wk);
355
356 rtnl_lock();
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100357 list_for_each_entry_safe(req, tmp, &rdev->sched_scan_req_list, list) {
358 if (req->nl_owner_dead)
359 cfg80211_stop_sched_scan_req(rdev, req, false);
360 }
Jukka Rissanen93a1e862014-12-15 13:25:39 +0200361 rtnl_unlock();
362}
363
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +0530364static void cfg80211_propagate_radar_detect_wk(struct work_struct *work)
365{
366 struct cfg80211_registered_device *rdev;
367
368 rdev = container_of(work, struct cfg80211_registered_device,
369 propagate_radar_detect_wk);
370
371 rtnl_lock();
372
373 regulatory_propagate_dfs_state(&rdev->wiphy, &rdev->radar_chandef,
374 NL80211_DFS_UNAVAILABLE,
375 NL80211_RADAR_DETECTED);
376
377 rtnl_unlock();
378}
379
380static void cfg80211_propagate_cac_done_wk(struct work_struct *work)
381{
382 struct cfg80211_registered_device *rdev;
383
384 rdev = container_of(work, struct cfg80211_registered_device,
385 propagate_cac_done_wk);
386
387 rtnl_lock();
388
389 regulatory_propagate_dfs_state(&rdev->wiphy, &rdev->cac_done_chandef,
390 NL80211_DFS_AVAILABLE,
391 NL80211_RADAR_CAC_FINISHED);
392
393 rtnl_unlock();
394}
395
Johannes Berg704232c2007-04-23 12:20:05 -0700396/* exported functions */
397
Ben Greear1998d902014-10-22 12:23:00 -0700398struct wiphy *wiphy_new_nm(const struct cfg80211_ops *ops, int sizeof_priv,
399 const char *requested_name)
Johannes Berg704232c2007-04-23 12:20:05 -0700400{
Johannes Berg73810b72013-05-08 21:49:02 +0200401 static atomic_t wiphy_counter = ATOMIC_INIT(0);
Johannes Berg76232252010-10-11 14:46:52 -0400402
403 struct cfg80211_registered_device *rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700404 int alloc_size;
405
Johannes Berg0b20633d2009-07-07 03:56:13 +0200406 WARN_ON(ops->add_key && (!ops->del_key || !ops->set_default_key));
407 WARN_ON(ops->auth && (!ops->assoc || !ops->deauth || !ops->disassoc));
408 WARN_ON(ops->connect && !ops->disconnect);
409 WARN_ON(ops->join_ibss && !ops->leave_ibss);
410 WARN_ON(ops->add_virtual_intf && !ops->del_virtual_intf);
411 WARN_ON(ops->add_station && !ops->del_station);
412 WARN_ON(ops->add_mpath && !ops->del_mpath);
Johannes Berg29cbe682010-12-03 09:20:44 +0100413 WARN_ON(ops->join_mesh && !ops->leave_mesh);
Ola Olssonde3bb772015-12-16 22:43:35 +0100414 WARN_ON(ops->start_p2p_device && !ops->stop_p2p_device);
415 WARN_ON(ops->start_ap && !ops->stop_ap);
416 WARN_ON(ops->join_ocb && !ops->leave_ocb);
417 WARN_ON(ops->suspend && !ops->resume);
418 WARN_ON(ops->sched_scan_start && !ops->sched_scan_stop);
419 WARN_ON(ops->remain_on_channel && !ops->cancel_remain_on_channel);
420 WARN_ON(ops->tdls_channel_switch && !ops->tdls_cancel_channel_switch);
421 WARN_ON(ops->add_tx_ts && !ops->del_tx_ts);
Johannes Berg41ade002007-12-19 02:03:29 +0100422
Johannes Berg79c97e92009-07-07 03:56:12 +0200423 alloc_size = sizeof(*rdev) + sizeof_priv;
Johannes Berg704232c2007-04-23 12:20:05 -0700424
Johannes Berg79c97e92009-07-07 03:56:12 +0200425 rdev = kzalloc(alloc_size, GFP_KERNEL);
426 if (!rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700427 return NULL;
428
Johannes Berg79c97e92009-07-07 03:56:12 +0200429 rdev->ops = ops;
Johannes Berg704232c2007-04-23 12:20:05 -0700430
Johannes Berg73810b72013-05-08 21:49:02 +0200431 rdev->wiphy_idx = atomic_inc_return(&wiphy_counter);
Johannes Berga4d73ee2007-04-26 20:50:35 -0700432
Johannes Bergf4173762012-12-03 18:23:37 +0100433 if (unlikely(rdev->wiphy_idx < 0)) {
Johannes Berg76232252010-10-11 14:46:52 -0400434 /* ugh, wrapped! */
Johannes Berg73810b72013-05-08 21:49:02 +0200435 atomic_dec(&wiphy_counter);
Johannes Berg79c97e92009-07-07 03:56:12 +0200436 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700437 return NULL;
438 }
Johannes Berg704232c2007-04-23 12:20:05 -0700439
Johannes Berg9b881962013-06-04 22:23:36 +0200440 /* atomic_inc_return makes it start at 1, make it start at 0 */
441 rdev->wiphy_idx--;
442
Johannes Berg76232252010-10-11 14:46:52 -0400443 /* give it a proper name */
Ben Greear1998d902014-10-22 12:23:00 -0700444 if (requested_name && requested_name[0]) {
445 int rv;
446
447 rtnl_lock();
448 rv = cfg80211_dev_check_name(rdev, requested_name);
449
450 if (rv < 0) {
451 rtnl_unlock();
452 goto use_default_name;
453 }
454
455 rv = dev_set_name(&rdev->wiphy.dev, "%s", requested_name);
456 rtnl_unlock();
457 if (rv)
458 goto use_default_name;
459 } else {
Johannes Berg59b179b42018-01-15 09:58:27 +0100460 int rv;
461
Ben Greear1998d902014-10-22 12:23:00 -0700462use_default_name:
463 /* NOTE: This is *probably* safe w/out holding rtnl because of
464 * the restrictions on phy names. Probably this call could
465 * fail if some other part of the kernel (re)named a device
466 * phyX. But, might should add some locking and check return
467 * value, and use a different name if this one exists?
468 */
Johannes Berg59b179b42018-01-15 09:58:27 +0100469 rv = dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx);
470 if (rv < 0) {
471 kfree(rdev);
472 return NULL;
473 }
Ben Greear1998d902014-10-22 12:23:00 -0700474 }
Johannes Berg76232252010-10-11 14:46:52 -0400475
Johannes Berg53873f12016-05-03 16:52:04 +0300476 INIT_LIST_HEAD(&rdev->wiphy.wdev_list);
Ben Greear37c73b52012-10-26 14:49:25 -0700477 INIT_LIST_HEAD(&rdev->beacon_registrations);
478 spin_lock_init(&rdev->beacon_registrations_lock);
Johannes Berg79c97e92009-07-07 03:56:12 +0200479 spin_lock_init(&rdev->bss_lock);
480 INIT_LIST_HEAD(&rdev->bss_list);
Arend Van Sprielca986ad2017-04-21 13:05:00 +0100481 INIT_LIST_HEAD(&rdev->sched_scan_req_list);
Johannes Berg79c97e92009-07-07 03:56:12 +0200482 INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done);
Johannes Berg33d87832015-06-23 17:47:05 +0200483 INIT_LIST_HEAD(&rdev->mlme_unreg);
484 spin_lock_init(&rdev->mlme_unreg_lock);
485 INIT_WORK(&rdev->mlme_unreg_wk, cfg80211_mlme_unreg_wk);
Simon Wunderlich04f39042013-02-08 18:16:19 +0100486 INIT_DELAYED_WORK(&rdev->dfs_update_channels_wk,
487 cfg80211_dfs_channels_update_work);
Johannes Berg3d23e342009-09-29 23:27:28 +0200488#ifdef CONFIG_CFG80211_WEXT
489 rdev->wiphy.wext = &cfg80211_wext_handler;
490#endif
491
Johannes Berg79c97e92009-07-07 03:56:12 +0200492 device_initialize(&rdev->wiphy.dev);
493 rdev->wiphy.dev.class = &ieee80211_class;
494 rdev->wiphy.dev.platform_data = rdev;
Fu, Zhonghui9f0e1352015-09-19 10:40:14 +0800495 device_enable_async_suspend(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700496
Johannes Berg78f22b62014-03-24 17:57:27 +0100497 INIT_WORK(&rdev->destroy_work, cfg80211_destroy_iface_wk);
Jukka Rissanen93a1e862014-12-15 13:25:39 +0200498 INIT_WORK(&rdev->sched_scan_stop_wk, cfg80211_sched_scan_stop_wk);
Arend Van Sprielb34939b2017-04-28 13:40:28 +0100499 INIT_WORK(&rdev->sched_scan_res_wk, cfg80211_sched_scan_results_wk);
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +0530500 INIT_WORK(&rdev->propagate_radar_detect_wk,
501 cfg80211_propagate_radar_detect_wk);
502 INIT_WORK(&rdev->propagate_cac_done_wk, cfg80211_propagate_cac_done_wk);
Johannes Berg78f22b62014-03-24 17:57:27 +0100503
Johannes Berg5be83de2009-11-19 00:56:28 +0100504#ifdef CONFIG_CFG80211_DEFAULT_PS
505 rdev->wiphy.flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
506#endif
Johannes Berg16cb9d42009-08-12 23:33:20 +0200507
Johannes Berg463d0182009-07-14 00:33:35 +0200508 wiphy_net_set(&rdev->wiphy, &init_net);
509
Johannes Berg79c97e92009-07-07 03:56:12 +0200510 rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block;
511 rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev),
512 &rdev->wiphy.dev, RFKILL_TYPE_WLAN,
513 &rdev->rfkill_ops, rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200514
Johannes Berg79c97e92009-07-07 03:56:12 +0200515 if (!rdev->rfkill) {
516 kfree(rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200517 return NULL;
518 }
519
Johannes Berg79c97e92009-07-07 03:56:12 +0200520 INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work);
521 INIT_WORK(&rdev->conn_work, cfg80211_conn_work);
522 INIT_WORK(&rdev->event_work, cfg80211_event_work);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200523
Johannes Bergad002392009-08-18 19:51:57 +0200524 init_waitqueue_head(&rdev->dev_wait);
525
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200526 /*
527 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
528 * Fragmentation and RTS threshold are disabled by default with the
529 * special -1 value.
530 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200531 rdev->wiphy.retry_short = 7;
532 rdev->wiphy.retry_long = 4;
533 rdev->wiphy.frag_threshold = (u32) -1;
534 rdev->wiphy.rts_threshold = (u32) -1;
Lukáš Turek81077e82009-12-21 22:50:47 +0100535 rdev->wiphy.coverage_class = 0;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200536
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +0300537 rdev->wiphy.max_num_csa_counters = 1;
538
Avraham Stern3b06d272015-10-12 09:51:34 +0300539 rdev->wiphy.max_sched_scan_plans = 1;
540 rdev->wiphy.max_sched_scan_plan_interval = U32_MAX;
541
Johannes Berg79c97e92009-07-07 03:56:12 +0200542 return &rdev->wiphy;
Johannes Berg704232c2007-04-23 12:20:05 -0700543}
Ben Greear1998d902014-10-22 12:23:00 -0700544EXPORT_SYMBOL(wiphy_new_nm);
Johannes Berg704232c2007-04-23 12:20:05 -0700545
Johannes Berg7527a782011-05-13 10:58:57 +0200546static int wiphy_verify_combinations(struct wiphy *wiphy)
547{
548 const struct ieee80211_iface_combination *c;
549 int i, j;
550
Johannes Berg7527a782011-05-13 10:58:57 +0200551 for (i = 0; i < wiphy->n_iface_combinations; i++) {
552 u32 cnt = 0;
553 u16 all_iftypes = 0;
554
555 c = &wiphy->iface_combinations[i];
556
Simon Wunderlich11c4a072013-01-08 14:04:07 +0100557 /*
558 * Combinations with just one interface aren't real,
559 * however we make an exception for DFS.
560 */
561 if (WARN_ON((c->max_interfaces < 2) && !c->radar_detect_widths))
Johannes Berg7527a782011-05-13 10:58:57 +0200562 return -EINVAL;
563
564 /* Need at least one channel */
565 if (WARN_ON(!c->num_different_channels))
566 return -EINVAL;
567
Michal Kaziord4e50c52012-06-29 12:47:07 +0200568 /*
569 * Put a sane limit on maximum number of different
570 * channels to simplify channel accounting code.
571 */
572 if (WARN_ON(c->num_different_channels >
573 CFG80211_MAX_NUM_DIFFERENT_CHANNELS))
574 return -EINVAL;
575
Simon Wunderlich11c4a072013-01-08 14:04:07 +0100576 /* DFS only works on one channel. */
577 if (WARN_ON(c->radar_detect_widths &&
578 (c->num_different_channels > 1)))
579 return -EINVAL;
580
Johannes Berg7527a782011-05-13 10:58:57 +0200581 if (WARN_ON(!c->n_limits))
582 return -EINVAL;
583
584 for (j = 0; j < c->n_limits; j++) {
585 u16 types = c->limits[j].types;
586
Luciano Coelhob6a55012014-02-27 11:07:21 +0200587 /* interface types shouldn't overlap */
Johannes Berg7527a782011-05-13 10:58:57 +0200588 if (WARN_ON(types & all_iftypes))
589 return -EINVAL;
590 all_iftypes |= types;
591
592 if (WARN_ON(!c->limits[j].max))
593 return -EINVAL;
594
595 /* Shouldn't list software iftypes in combinations! */
596 if (WARN_ON(wiphy->software_iftypes & types))
597 return -EINVAL;
598
Johannes Berg98104fde2012-06-16 00:19:54 +0200599 /* Only a single P2P_DEVICE can be allowed */
600 if (WARN_ON(types & BIT(NL80211_IFTYPE_P2P_DEVICE) &&
601 c->limits[j].max > 1))
602 return -EINVAL;
603
Ayala Bekercb3b7d82016-09-20 17:31:13 +0300604 /* Only a single NAN can be allowed */
605 if (WARN_ON(types & BIT(NL80211_IFTYPE_NAN) &&
606 c->limits[j].max > 1))
607 return -EINVAL;
608
Johannes Berg56271da2016-10-21 14:25:12 +0200609 /*
610 * This isn't well-defined right now. If you have an
611 * IBSS interface, then its beacon interval may change
612 * by joining other networks, and nothing prevents it
613 * from doing that.
614 * So technically we probably shouldn't even allow AP
615 * and IBSS in the same interface, but it seems that
616 * some drivers support that, possibly only with fixed
617 * beacon intervals for IBSS.
618 */
619 if (WARN_ON(types & BIT(NL80211_IFTYPE_ADHOC) &&
620 c->beacon_int_min_gcd)) {
621 return -EINVAL;
622 }
623
Johannes Berg7527a782011-05-13 10:58:57 +0200624 cnt += c->limits[j].max;
625 /*
626 * Don't advertise an unsupported type
627 * in a combination.
628 */
629 if (WARN_ON((wiphy->interface_modes & types) != types))
630 return -EINVAL;
631 }
632
Johannes Berg8f205422016-10-18 10:28:57 +0200633#ifndef CONFIG_WIRELESS_WDS
634 if (WARN_ON(all_iftypes & BIT(NL80211_IFTYPE_WDS)))
635 return -EINVAL;
636#endif
637
Johannes Berg7527a782011-05-13 10:58:57 +0200638 /* You can't even choose that many! */
639 if (WARN_ON(cnt < c->max_interfaces))
640 return -EINVAL;
641 }
642
643 return 0;
644}
645
Johannes Berg704232c2007-04-23 12:20:05 -0700646int wiphy_register(struct wiphy *wiphy)
647{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800648 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700649 int res;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200650 enum nl80211_band band;
Johannes Berg8318d782008-01-24 19:38:38 +0100651 struct ieee80211_supported_band *sband;
652 bool have_band = false;
653 int i;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700654 u16 ifmodes = wiphy->interface_modes;
655
Johannes Bergdfb89c52012-06-27 09:23:48 +0200656#ifdef CONFIG_PM
Johannes Berg964dc9e2013-06-03 17:25:34 +0200657 if (WARN_ON(wiphy->wowlan &&
658 (wiphy->wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
659 !(wiphy->wowlan->flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY)))
660 return -EINVAL;
661 if (WARN_ON(wiphy->wowlan &&
662 !wiphy->wowlan->flags && !wiphy->wowlan->n_patterns &&
663 !wiphy->wowlan->tcp))
Johannes Berg77dbbb12011-07-13 10:48:55 +0200664 return -EINVAL;
Johannes Bergdfb89c52012-06-27 09:23:48 +0200665#endif
Arik Nemtsov1057d352014-11-19 12:54:26 +0200666 if (WARN_ON((wiphy->features & NL80211_FEATURE_TDLS_CHANNEL_SWITCH) &&
667 (!rdev->ops->tdls_channel_switch ||
668 !rdev->ops->tdls_cancel_channel_switch)))
669 return -EINVAL;
Johannes Berg77dbbb12011-07-13 10:48:55 +0200670
Ayala Bekercb3b7d82016-09-20 17:31:13 +0300671 if (WARN_ON((wiphy->interface_modes & BIT(NL80211_IFTYPE_NAN)) &&
Ayala Bekera442b762016-09-20 17:31:15 +0300672 (!rdev->ops->start_nan || !rdev->ops->stop_nan ||
Luca Coelho85859892017-02-08 15:00:34 +0200673 !rdev->ops->add_nan_func || !rdev->ops->del_nan_func ||
674 !(wiphy->nan_supported_bands & BIT(NL80211_BAND_2GHZ)))))
Ayala Bekercb3b7d82016-09-20 17:31:13 +0300675 return -EINVAL;
676
Johannes Berg8f205422016-10-18 10:28:57 +0200677#ifndef CONFIG_WIRELESS_WDS
678 if (WARN_ON(wiphy->interface_modes & BIT(NL80211_IFTYPE_WDS)))
679 return -EINVAL;
680#endif
681
Johannes Berg9bb7e0f2018-09-10 13:29:12 +0200682 if (WARN_ON(wiphy->pmsr_capa && !wiphy->pmsr_capa->ftm.supported))
683 return -EINVAL;
684
685 if (wiphy->pmsr_capa && wiphy->pmsr_capa->ftm.supported) {
686 if (WARN_ON(!wiphy->pmsr_capa->ftm.asap &&
687 !wiphy->pmsr_capa->ftm.non_asap))
688 return -EINVAL;
689 if (WARN_ON(!wiphy->pmsr_capa->ftm.preambles ||
690 !wiphy->pmsr_capa->ftm.bandwidths))
691 return -EINVAL;
692 if (WARN_ON(wiphy->pmsr_capa->ftm.preambles &
693 ~(BIT(NL80211_PREAMBLE_LEGACY) |
694 BIT(NL80211_PREAMBLE_HT) |
695 BIT(NL80211_PREAMBLE_VHT) |
696 BIT(NL80211_PREAMBLE_DMG))))
697 return -EINVAL;
698 if (WARN_ON(wiphy->pmsr_capa->ftm.bandwidths &
699 ~(BIT(NL80211_CHAN_WIDTH_20_NOHT) |
700 BIT(NL80211_CHAN_WIDTH_20) |
701 BIT(NL80211_CHAN_WIDTH_40) |
702 BIT(NL80211_CHAN_WIDTH_80) |
703 BIT(NL80211_CHAN_WIDTH_80P80) |
704 BIT(NL80211_CHAN_WIDTH_160) |
705 BIT(NL80211_CHAN_WIDTH_5) |
706 BIT(NL80211_CHAN_WIDTH_10))))
707 return -EINVAL;
708 }
709
Arik Nemtsovad932f02014-11-27 09:44:55 +0200710 /*
711 * if a wiphy has unsupported modes for regulatory channel enforcement,
712 * opt-out of enforcement checking
713 */
714 if (wiphy->interface_modes & ~(BIT(NL80211_IFTYPE_STATION) |
715 BIT(NL80211_IFTYPE_P2P_CLIENT) |
716 BIT(NL80211_IFTYPE_AP) |
717 BIT(NL80211_IFTYPE_P2P_GO) |
718 BIT(NL80211_IFTYPE_ADHOC) |
719 BIT(NL80211_IFTYPE_P2P_DEVICE) |
Ayala Bekercb3b7d82016-09-20 17:31:13 +0300720 BIT(NL80211_IFTYPE_NAN) |
Arik Nemtsovad932f02014-11-27 09:44:55 +0200721 BIT(NL80211_IFTYPE_AP_VLAN) |
722 BIT(NL80211_IFTYPE_MONITOR)))
723 wiphy->regulatory_flags |= REGULATORY_IGNORE_STALE_KICKOFF;
724
Jonathan Doronb0d7aa52014-12-15 19:26:00 +0200725 if (WARN_ON((wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) &&
726 (wiphy->regulatory_flags &
727 (REGULATORY_CUSTOM_REG |
728 REGULATORY_STRICT_REG |
729 REGULATORY_COUNTRY_IE_FOLLOW_POWER |
730 REGULATORY_COUNTRY_IE_IGNORE))))
731 return -EINVAL;
732
Amitkumar Karwarbe29b99a2013-06-28 11:51:26 -0700733 if (WARN_ON(wiphy->coalesce &&
734 (!wiphy->coalesce->n_rules ||
735 !wiphy->coalesce->n_patterns) &&
736 (!wiphy->coalesce->pattern_min_len ||
737 wiphy->coalesce->pattern_min_len >
738 wiphy->coalesce->pattern_max_len)))
739 return -EINVAL;
740
Johannes Berg562a7482011-11-07 12:39:33 +0100741 if (WARN_ON(wiphy->ap_sme_capa &&
742 !(wiphy->flags & WIPHY_FLAG_HAVE_AP_SME)))
743 return -EINVAL;
744
Johannes Bergef15aac2010-01-20 12:02:33 +0100745 if (WARN_ON(wiphy->addresses && !wiphy->n_addresses))
746 return -EINVAL;
747
748 if (WARN_ON(wiphy->addresses &&
749 !is_zero_ether_addr(wiphy->perm_addr) &&
750 memcmp(wiphy->perm_addr, wiphy->addresses[0].addr,
751 ETH_ALEN)))
752 return -EINVAL;
753
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +0530754 if (WARN_ON(wiphy->max_acl_mac_addrs &&
755 (!(wiphy->flags & WIPHY_FLAG_HAVE_AP_SME) ||
756 !rdev->ops->set_mac_acl)))
757 return -EINVAL;
758
Arend van Spriel38de03d2016-03-02 20:37:18 +0100759 /* assure only valid behaviours are flagged by driver
760 * hence subtract 2 as bit 0 is invalid.
761 */
762 if (WARN_ON(wiphy->bss_select_support &&
763 (wiphy->bss_select_support & ~(BIT(__NL80211_BSS_SELECT_ATTR_AFTER_LAST) - 2))))
764 return -EINVAL;
765
Avraham Stern3a00df52017-06-09 13:08:43 +0100766 if (WARN_ON(wiphy_ext_feature_isset(&rdev->wiphy,
767 NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_1X) &&
768 (!rdev->ops->set_pmk || !rdev->ops->del_pmk)))
769 return -EINVAL;
770
Vidyullatha Kanchanapally7f9a3e12018-05-22 10:19:08 +0200771 if (WARN_ON(!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) &&
772 rdev->ops->update_connect_params))
773 return -EINVAL;
774
Johannes Bergef15aac2010-01-20 12:02:33 +0100775 if (wiphy->addresses)
776 memcpy(wiphy->perm_addr, wiphy->addresses[0].addr, ETH_ALEN);
777
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700778 /* sanity check ifmodes */
779 WARN_ON(!ifmodes);
Johannes Berg2e161f782010-08-12 15:38:38 +0200780 ifmodes &= ((1 << NUM_NL80211_IFTYPES) - 1) & ~1;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700781 if (WARN_ON(ifmodes != wiphy->interface_modes))
782 wiphy->interface_modes = ifmodes;
Johannes Berg8318d782008-01-24 19:38:38 +0100783
Johannes Berg7527a782011-05-13 10:58:57 +0200784 res = wiphy_verify_combinations(wiphy);
785 if (res)
786 return res;
787
Johannes Berg8318d782008-01-24 19:38:38 +0100788 /* sanity check supported bands/channels */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200789 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Luca Coelhoc4cbaf72018-06-09 09:14:42 +0300790 u16 types = 0;
791
Johannes Berg8318d782008-01-24 19:38:38 +0100792 sband = wiphy->bands[band];
793 if (!sband)
794 continue;
795
796 sband->band = band;
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300797 if (WARN_ON(!sband->n_channels))
798 return -EINVAL;
799 /*
Johannes Berg8047d262015-10-15 16:16:09 +0200800 * on 60GHz band, there are no legacy rates, so
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300801 * n_bitrates is 0
802 */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200803 if (WARN_ON(band != NL80211_BAND_60GHZ &&
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300804 !sband->n_bitrates))
Johannes Berg8318d782008-01-24 19:38:38 +0100805 return -EINVAL;
Johannes Berg881d9482009-01-21 15:13:48 +0100806
807 /*
Amitkumar Karwar40db6c72011-04-21 14:10:27 -0700808 * Since cfg80211_disable_40mhz_24ghz is global, we can
809 * modify the sband's ht data even if the driver uses a
810 * global structure for that.
811 */
812 if (cfg80211_disable_40mhz_24ghz &&
Johannes Berg57fbcce2016-04-12 15:56:15 +0200813 band == NL80211_BAND_2GHZ &&
Amitkumar Karwar40db6c72011-04-21 14:10:27 -0700814 sband->ht_cap.ht_supported) {
815 sband->ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
816 sband->ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_40;
817 }
818
819 /*
Johannes Berg881d9482009-01-21 15:13:48 +0100820 * Since we use a u32 for rate bitmaps in
821 * ieee80211_get_response_rate, we cannot
822 * have more than 32 legacy rates.
823 */
824 if (WARN_ON(sband->n_bitrates > 32))
825 return -EINVAL;
Johannes Berg8318d782008-01-24 19:38:38 +0100826
827 for (i = 0; i < sband->n_channels; i++) {
828 sband->channels[i].orig_flags =
829 sband->channels[i].flags;
Felix Fietkauc4a9faf2012-10-17 13:56:19 +0200830 sband->channels[i].orig_mag = INT_MAX;
Johannes Berg8318d782008-01-24 19:38:38 +0100831 sband->channels[i].orig_mpwr =
832 sband->channels[i].max_power;
833 sband->channels[i].band = band;
834 }
835
Luca Coelhoc4cbaf72018-06-09 09:14:42 +0300836 for (i = 0; i < sband->n_iftype_data; i++) {
837 const struct ieee80211_sband_iftype_data *iftd;
838
839 iftd = &sband->iftype_data[i];
840
841 if (WARN_ON(!iftd->types_mask))
842 return -EINVAL;
843 if (WARN_ON(types & iftd->types_mask))
844 return -EINVAL;
845
846 /* at least one piece of information must be present */
847 if (WARN_ON(!iftd->he_cap.has_he))
848 return -EINVAL;
849
850 types |= iftd->types_mask;
851 }
852
Johannes Berg8318d782008-01-24 19:38:38 +0100853 have_band = true;
854 }
855
856 if (!have_band) {
857 WARN_ON(1);
858 return -EINVAL;
859 }
860
Johannes Bergdfb89c52012-06-27 09:23:48 +0200861#ifdef CONFIG_PM
Johannes Berg964dc9e2013-06-03 17:25:34 +0200862 if (WARN_ON(rdev->wiphy.wowlan && rdev->wiphy.wowlan->n_patterns &&
863 (!rdev->wiphy.wowlan->pattern_min_len ||
864 rdev->wiphy.wowlan->pattern_min_len >
865 rdev->wiphy.wowlan->pattern_max_len)))
866 return -EINVAL;
Johannes Bergdfb89c52012-06-27 09:23:48 +0200867#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +0200868
Johannes Berg8318d782008-01-24 19:38:38 +0100869 /* check and set up bitrates */
870 ieee80211_set_bitrate_flags(wiphy);
871
Johannes Berg00c3a6e2013-10-26 17:14:38 +0200872 rdev->wiphy.features |= NL80211_FEATURE_SCAN_FLUSH;
873
Johannes Bergaa5f66d2013-09-26 20:03:45 +0200874 rtnl_lock();
Johannes Berg79c97e92009-07-07 03:56:12 +0200875 res = device_add(&rdev->wiphy.dev);
John W. Linvillec3d34d52010-08-30 17:36:40 -0400876 if (res) {
Johannes Bergaa5f66d2013-09-26 20:03:45 +0200877 rtnl_unlock();
John W. Linvillec3d34d52010-08-30 17:36:40 -0400878 return res;
879 }
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200880
Johannes Berg2f0accc2009-06-10 16:50:29 +0200881 /* set up regulatory info */
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700882 wiphy_regulatory_register(wiphy);
Johannes Berg2f0accc2009-06-10 16:50:29 +0200883
Johannes Berg5f2aa252010-01-17 15:49:02 +0100884 list_add_rcu(&rdev->list, &cfg80211_rdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200885 cfg80211_rdev_list_generation++;
Johannes Berg704232c2007-04-23 12:20:05 -0700886
887 /* add to debugfs */
Johannes Berg79c97e92009-07-07 03:56:12 +0200888 rdev->wiphy.debugfsdir =
889 debugfs_create_dir(wiphy_name(&rdev->wiphy),
Johannes Berg704232c2007-04-23 12:20:05 -0700890 ieee80211_debugfs_dir);
Johannes Berg79c97e92009-07-07 03:56:12 +0200891 if (IS_ERR(rdev->wiphy.debugfsdir))
892 rdev->wiphy.debugfsdir = NULL;
Johannes Berg704232c2007-04-23 12:20:05 -0700893
Tomasz Bursztykaa796dac2014-08-13 16:04:51 +0300894 cfg80211_debugfs_rdev_add(rdev);
895 nl80211_notify_wiphy(rdev, NL80211_CMD_NEW_WIPHY);
896
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +0100897 if (wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -0400898 struct regulatory_request request;
899
900 request.wiphy_idx = get_wiphy_idx(wiphy);
901 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
902 request.alpha2[0] = '9';
903 request.alpha2[1] = '9';
904
905 nl80211_send_reg_change_event(&request);
906 }
907
Kanchanapally, Vidyullatha019ae3a2016-05-16 10:41:04 +0530908 /* Check that nobody globally advertises any capabilities they do not
909 * advertise on all possible interface types.
910 */
911 if (wiphy->extended_capabilities_len &&
912 wiphy->num_iftype_ext_capab &&
913 wiphy->iftype_ext_capab) {
914 u8 supported_on_all, j;
915 const struct wiphy_iftype_ext_capab *capab;
916
917 capab = wiphy->iftype_ext_capab;
918 for (j = 0; j < wiphy->extended_capabilities_len; j++) {
919 if (capab[0].extended_capabilities_len > j)
920 supported_on_all =
921 capab[0].extended_capabilities[j];
922 else
923 supported_on_all = 0x00;
924 for (i = 1; i < wiphy->num_iftype_ext_capab; i++) {
925 if (j >= capab[i].extended_capabilities_len) {
926 supported_on_all = 0x00;
927 break;
928 }
929 supported_on_all &=
930 capab[i].extended_capabilities[j];
931 }
932 if (WARN_ON(wiphy->extended_capabilities[j] &
933 ~supported_on_all))
934 break;
935 }
936 }
937
Stanislaw Gruszkaecb44332011-08-12 14:00:59 +0200938 rdev->wiphy.registered = true;
939 rtnl_unlock();
Johannes Bergaa5f66d2013-09-26 20:03:45 +0200940
941 res = rfkill_register(rdev->rfkill);
942 if (res) {
943 rfkill_destroy(rdev->rfkill);
944 rdev->rfkill = NULL;
945 wiphy_unregister(&rdev->wiphy);
946 return res;
947 }
948
Johannes Berg2f0accc2009-06-10 16:50:29 +0200949 return 0;
Johannes Berg704232c2007-04-23 12:20:05 -0700950}
951EXPORT_SYMBOL(wiphy_register);
952
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200953void wiphy_rfkill_start_polling(struct wiphy *wiphy)
954{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800955 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200956
Johannes Berg79c97e92009-07-07 03:56:12 +0200957 if (!rdev->ops->rfkill_poll)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200958 return;
Johannes Berg79c97e92009-07-07 03:56:12 +0200959 rdev->rfkill_ops.poll = cfg80211_rfkill_poll;
960 rfkill_resume_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200961}
962EXPORT_SYMBOL(wiphy_rfkill_start_polling);
963
964void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
965{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800966 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200967
Johannes Berg79c97e92009-07-07 03:56:12 +0200968 rfkill_pause_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200969}
970EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
971
Johannes Berg704232c2007-04-23 12:20:05 -0700972void wiphy_unregister(struct wiphy *wiphy)
973{
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800974 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700975
Johannes Berg5fe231e2013-05-08 21:45:15 +0200976 wait_event(rdev->dev_wait, ({
977 int __count;
978 rtnl_lock();
979 __count = rdev->opencount;
980 rtnl_unlock();
981 __count == 0; }));
982
Johannes Bergaa5f66d2013-09-26 20:03:45 +0200983 if (rdev->rfkill)
984 rfkill_unregister(rdev->rfkill);
Johannes Berg256c90d2013-06-04 19:21:08 +0200985
Stanislaw Gruszkaecb44332011-08-12 14:00:59 +0200986 rtnl_lock();
Johannes Berg3bb20552014-05-26 13:52:25 +0200987 nl80211_notify_wiphy(rdev, NL80211_CMD_DEL_WIPHY);
Stanislaw Gruszkaecb44332011-08-12 14:00:59 +0200988 rdev->wiphy.registered = false;
Stanislaw Gruszkaecb44332011-08-12 14:00:59 +0200989
Johannes Berg53873f12016-05-03 16:52:04 +0300990 WARN_ON(!list_empty(&rdev->wiphy.wdev_list));
Johannes Bergad002392009-08-18 19:51:57 +0200991
992 /*
993 * First remove the hardware from everywhere, this makes
994 * it impossible to find from userspace.
995 */
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100996 debugfs_remove_recursive(rdev->wiphy.debugfsdir);
Johannes Berg5f2aa252010-01-17 15:49:02 +0100997 list_del_rcu(&rdev->list);
998 synchronize_rcu();
Johannes Bergf16bfc12007-04-26 20:51:12 -0700999
1000 /*
Luis R. Rodriguezbfead082012-07-12 11:49:19 -07001001 * If this device got a regulatory hint tell core its
1002 * free to listen now to a new shiny device regulatory hint
1003 */
1004 wiphy_regulatory_deregister(wiphy);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001005
Johannes Bergf5ea9122009-08-07 16:17:38 +02001006 cfg80211_rdev_list_generation++;
Johannes Berg79c97e92009-07-07 03:56:12 +02001007 device_del(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -07001008
Johannes Berg5fe231e2013-05-08 21:45:15 +02001009 rtnl_unlock();
Johannes Berg66825882009-07-13 13:24:44 +02001010
Johannes Berg36e6fea2009-08-12 22:21:21 +02001011 flush_work(&rdev->scan_done_wk);
Johannes Berg66825882009-07-13 13:24:44 +02001012 cancel_work_sync(&rdev->conn_work);
Johannes Berg66825882009-07-13 13:24:44 +02001013 flush_work(&rdev->event_work);
Simon Wunderlich04f39042013-02-08 18:16:19 +01001014 cancel_delayed_work_sync(&rdev->dfs_update_channels_wk);
Johannes Berg78f22b62014-03-24 17:57:27 +01001015 flush_work(&rdev->destroy_work);
Jukka Rissanen93a1e862014-12-15 13:25:39 +02001016 flush_work(&rdev->sched_scan_stop_wk);
Johannes Berg33d87832015-06-23 17:47:05 +02001017 flush_work(&rdev->mlme_unreg_wk);
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05301018 flush_work(&rdev->propagate_radar_detect_wk);
1019 flush_work(&rdev->propagate_cac_done_wk);
Johannes Berg6d525632012-04-04 15:05:25 +02001020
Johannes Berg6abb9cb2013-05-15 09:30:07 +02001021#ifdef CONFIG_PM
1022 if (rdev->wiphy.wowlan_config && rdev->ops->set_wakeup)
Hila Gonene35e4d22012-06-27 17:19:42 +03001023 rdev_set_wakeup(rdev, false);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02001024#endif
Johannes Berg6d525632012-04-04 15:05:25 +02001025 cfg80211_rdev_free_wowlan(rdev);
Amitkumar Karwarbe29b99a2013-06-28 11:51:26 -07001026 cfg80211_rdev_free_coalesce(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -07001027}
1028EXPORT_SYMBOL(wiphy_unregister);
1029
Johannes Berg79c97e92009-07-07 03:56:12 +02001030void cfg80211_dev_free(struct cfg80211_registered_device *rdev)
Johannes Berg704232c2007-04-23 12:20:05 -07001031{
Johannes Berg2a519312009-02-10 21:25:55 +01001032 struct cfg80211_internal_bss *scan, *tmp;
Ben Greear37c73b52012-10-26 14:49:25 -07001033 struct cfg80211_beacon_registration *reg, *treg;
Johannes Berg79c97e92009-07-07 03:56:12 +02001034 rfkill_destroy(rdev->rfkill);
Ben Greear37c73b52012-10-26 14:49:25 -07001035 list_for_each_entry_safe(reg, treg, &rdev->beacon_registrations, list) {
1036 list_del(&reg->list);
1037 kfree(reg);
1038 }
Johannes Berg79c97e92009-07-07 03:56:12 +02001039 list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list)
Johannes Berg5b112d32013-02-01 01:49:58 +01001040 cfg80211_put_bss(&rdev->wiphy, &scan->pub);
Johannes Berg79c97e92009-07-07 03:56:12 +02001041 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -07001042}
1043
1044void wiphy_free(struct wiphy *wiphy)
1045{
1046 put_device(&wiphy->dev);
1047}
1048EXPORT_SYMBOL(wiphy_free);
1049
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001050void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
1051{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001052 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001053
Johannes Berg79c97e92009-07-07 03:56:12 +02001054 if (rfkill_set_hw_state(rdev->rfkill, blocked))
1055 schedule_work(&rdev->rfkill_sync);
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001056}
1057EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
1058
Andrew Zaborowski4a4b8162017-02-10 10:02:31 +01001059void cfg80211_cqm_config_free(struct wireless_dev *wdev)
1060{
1061 kfree(wdev->cqm_config);
1062 wdev->cqm_config = NULL;
1063}
1064
Johannes Berg85dd3da2018-10-01 14:09:17 +02001065static void __cfg80211_unregister_wdev(struct wireless_dev *wdev, bool sync)
Johannes Berg98104fde2012-06-16 00:19:54 +02001066{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001067 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg98104fde2012-06-16 00:19:54 +02001068
1069 ASSERT_RTNL();
1070
Johannes Berg733504242019-02-06 08:03:10 +02001071 flush_work(&wdev->pmsr_free_wk);
1072
Denis Kenzior7f8ed012016-08-03 16:58:35 -05001073 nl80211_notify_iface(rdev, wdev, NL80211_CMD_DEL_INTERFACE);
1074
Johannes Berg98104fde2012-06-16 00:19:54 +02001075 list_del_rcu(&wdev->list);
Johannes Berg85dd3da2018-10-01 14:09:17 +02001076 if (sync)
1077 synchronize_rcu();
Johannes Berg98104fde2012-06-16 00:19:54 +02001078 rdev->devlist_generation++;
1079
Johannes Berg85dd3da2018-10-01 14:09:17 +02001080 cfg80211_mlme_purge_registrations(wdev);
1081
Johannes Berg98104fde2012-06-16 00:19:54 +02001082 switch (wdev->iftype) {
1083 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Bergf9f47522013-03-19 15:04:07 +01001084 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02001085 break;
Ayala Bekercb3b7d82016-09-20 17:31:13 +03001086 case NL80211_IFTYPE_NAN:
1087 cfg80211_stop_nan(rdev, wdev);
1088 break;
Johannes Berg98104fde2012-06-16 00:19:54 +02001089 default:
Johannes Berg98104fde2012-06-16 00:19:54 +02001090 break;
1091 }
Andrew Zaborowski4a4b8162017-02-10 10:02:31 +01001092
Johannes Berg85dd3da2018-10-01 14:09:17 +02001093#ifdef CONFIG_CFG80211_WEXT
1094 kzfree(wdev->wext.keys);
1095#endif
1096 /* only initialized if we have a netdev */
1097 if (wdev->netdev)
1098 flush_work(&wdev->disconnect_wk);
1099
Andrew Zaborowski4a4b8162017-02-10 10:02:31 +01001100 cfg80211_cqm_config_free(wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02001101}
Johannes Berg85dd3da2018-10-01 14:09:17 +02001102
1103void cfg80211_unregister_wdev(struct wireless_dev *wdev)
1104{
1105 if (WARN_ON(wdev->netdev))
1106 return;
1107
1108 __cfg80211_unregister_wdev(wdev, true);
1109}
Johannes Berg98104fde2012-06-16 00:19:54 +02001110EXPORT_SYMBOL(cfg80211_unregister_wdev);
1111
Johannes Bergf1e3d552014-01-21 00:00:56 +01001112static const struct device_type wiphy_type = {
Marcel Holtmann053a93d2009-10-02 05:15:28 +00001113 .name = "wlan",
1114};
1115
Michal Kaziordbbae262012-06-29 12:47:01 +02001116void cfg80211_update_iface_num(struct cfg80211_registered_device *rdev,
1117 enum nl80211_iftype iftype, int num)
1118{
Johannes Bergc5a7e582012-07-04 13:28:18 +02001119 ASSERT_RTNL();
Michal Kaziordbbae262012-06-29 12:47:01 +02001120
1121 rdev->num_running_ifaces += num;
1122 if (iftype == NL80211_IFTYPE_MONITOR)
1123 rdev->num_running_monitor_ifaces += num;
Michal Kaziordbbae262012-06-29 12:47:01 +02001124}
1125
Michal Kaziorf04c2202014-04-09 15:11:01 +02001126void __cfg80211_leave(struct cfg80211_registered_device *rdev,
1127 struct wireless_dev *wdev)
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001128{
1129 struct net_device *dev = wdev->netdev;
Arend Van Sprielca986ad2017-04-21 13:05:00 +01001130 struct cfg80211_sched_scan_request *pos, *tmp;
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001131
Barak Bercovitz24d584d2013-12-05 11:21:26 +02001132 ASSERT_RTNL();
Michal Kaziorf04c2202014-04-09 15:11:01 +02001133 ASSERT_WDEV_LOCK(wdev);
Barak Bercovitz24d584d2013-12-05 11:21:26 +02001134
Johannes Berg9bb7e0f2018-09-10 13:29:12 +02001135 cfg80211_pmsr_wdev_down(wdev);
1136
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001137 switch (wdev->iftype) {
1138 case NL80211_IFTYPE_ADHOC:
Michal Kaziorf04c2202014-04-09 15:11:01 +02001139 __cfg80211_leave_ibss(rdev, dev, true);
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001140 break;
1141 case NL80211_IFTYPE_P2P_CLIENT:
1142 case NL80211_IFTYPE_STATION:
Arend Van Sprielca986ad2017-04-21 13:05:00 +01001143 list_for_each_entry_safe(pos, tmp, &rdev->sched_scan_req_list,
1144 list) {
1145 if (dev == pos->dev)
1146 cfg80211_stop_sched_scan_req(rdev, pos, false);
1147 }
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001148
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001149#ifdef CONFIG_CFG80211_WEXT
1150 kfree(wdev->wext.ie);
1151 wdev->wext.ie = NULL;
1152 wdev->wext.ie_len = 0;
1153 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
1154#endif
Johannes Berg83739b02013-05-15 17:44:01 +02001155 cfg80211_disconnect(rdev, dev,
1156 WLAN_REASON_DEAUTH_LEAVING, true);
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001157 break;
1158 case NL80211_IFTYPE_MESH_POINT:
Michal Kaziorf04c2202014-04-09 15:11:01 +02001159 __cfg80211_leave_mesh(rdev, dev);
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001160 break;
1161 case NL80211_IFTYPE_AP:
Johannes Berg74418ed2013-07-30 10:11:25 +02001162 case NL80211_IFTYPE_P2P_GO:
Michal Kaziorf04c2202014-04-09 15:11:01 +02001163 __cfg80211_stop_ap(rdev, dev, true);
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001164 break;
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01001165 case NL80211_IFTYPE_OCB:
1166 __cfg80211_leave_ocb(rdev, dev);
1167 break;
Johannes Bergde4fcba2014-10-31 14:16:12 +01001168 case NL80211_IFTYPE_WDS:
1169 /* must be handled by mac80211/driver, has no APIs */
1170 break;
1171 case NL80211_IFTYPE_P2P_DEVICE:
Ayala Bekercb3b7d82016-09-20 17:31:13 +03001172 case NL80211_IFTYPE_NAN:
Johannes Bergde4fcba2014-10-31 14:16:12 +01001173 /* cannot happen, has no netdev */
1174 break;
1175 case NL80211_IFTYPE_AP_VLAN:
1176 case NL80211_IFTYPE_MONITOR:
1177 /* nothing to do */
1178 break;
1179 case NL80211_IFTYPE_UNSPECIFIED:
1180 case NUM_NL80211_IFTYPES:
1181 /* invalid */
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001182 break;
1183 }
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001184}
1185
Michal Kaziorf04c2202014-04-09 15:11:01 +02001186void cfg80211_leave(struct cfg80211_registered_device *rdev,
1187 struct wireless_dev *wdev)
1188{
1189 wdev_lock(wdev);
1190 __cfg80211_leave(rdev, wdev);
1191 wdev_unlock(wdev);
1192}
1193
1194void cfg80211_stop_iface(struct wiphy *wiphy, struct wireless_dev *wdev,
1195 gfp_t gfp)
1196{
1197 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
1198 struct cfg80211_event *ev;
1199 unsigned long flags;
1200
1201 trace_cfg80211_stop_iface(wiphy, wdev);
1202
1203 ev = kzalloc(sizeof(*ev), gfp);
1204 if (!ev)
1205 return;
1206
1207 ev->type = EVENT_STOPPED;
1208
1209 spin_lock_irqsave(&wdev->event_lock, flags);
1210 list_add_tail(&ev->list, &wdev->event_list);
1211 spin_unlock_irqrestore(&wdev->event_lock, flags);
1212 queue_work(cfg80211_wq, &rdev->event_work);
1213}
1214EXPORT_SYMBOL(cfg80211_stop_iface);
1215
Johannes Berge4d42162018-09-13 14:12:03 +02001216void cfg80211_init_wdev(struct cfg80211_registered_device *rdev,
1217 struct wireless_dev *wdev)
1218{
1219 mutex_init(&wdev->mtx);
1220 INIT_LIST_HEAD(&wdev->event_list);
1221 spin_lock_init(&wdev->event_lock);
1222 INIT_LIST_HEAD(&wdev->mgmt_registrations);
1223 spin_lock_init(&wdev->mgmt_registrations_lock);
Johannes Berg9bb7e0f2018-09-10 13:29:12 +02001224 INIT_LIST_HEAD(&wdev->pmsr_list);
1225 spin_lock_init(&wdev->pmsr_lock);
1226 INIT_WORK(&wdev->pmsr_free_wk, cfg80211_pmsr_free_wk);
Johannes Berge4d42162018-09-13 14:12:03 +02001227
1228 /*
1229 * We get here also when the interface changes network namespaces,
1230 * as it's registered into the new one, but we don't want it to
1231 * change ID in that case. Checking if the ID is already assigned
1232 * works, because 0 isn't considered a valid ID and the memory is
1233 * 0-initialized.
1234 */
1235 if (!wdev->identifier)
1236 wdev->identifier = ++rdev->wdev_id;
1237 list_add_rcu(&wdev->list, &rdev->wiphy.wdev_list);
1238 rdev->devlist_generation++;
Johannes Bergec8f170bc2018-10-01 14:18:31 +02001239
1240 nl80211_notify_iface(rdev, wdev, NL80211_CMD_NEW_INTERFACE);
Johannes Berge4d42162018-09-13 14:12:03 +02001241}
1242
Cristian Chilipireac4f60842012-05-08 12:38:53 +03001243static int cfg80211_netdev_notifier_call(struct notifier_block *nb,
Jiri Pirko351638e2013-05-28 01:30:21 +00001244 unsigned long state, void *ptr)
Johannes Berg704232c2007-04-23 12:20:05 -07001245{
Jiri Pirko351638e2013-05-28 01:30:21 +00001246 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Johannes Berg2a783c12009-07-01 21:26:45 +02001247 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg704232c2007-04-23 12:20:05 -07001248 struct cfg80211_registered_device *rdev;
Arend Van Sprielca986ad2017-04-21 13:05:00 +01001249 struct cfg80211_sched_scan_request *pos, *tmp;
Johannes Berg704232c2007-04-23 12:20:05 -07001250
Johannes Berg2a783c12009-07-01 21:26:45 +02001251 if (!wdev)
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001252 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -07001253
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001254 rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -07001255
Johannes Berg2a783c12009-07-01 21:26:45 +02001256 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
Johannes Berg60719ff2008-09-16 14:55:09 +02001257
Johannes Berg704232c2007-04-23 12:20:05 -07001258 switch (state) {
Marcel Holtmann053a93d2009-10-02 05:15:28 +00001259 case NETDEV_POST_INIT:
1260 SET_NETDEV_DEVTYPE(dev, &wiphy_type);
1261 break;
Johannes Berg704232c2007-04-23 12:20:05 -07001262 case NETDEV_REGISTER:
Johannes Berg0ff6ce72009-08-17 12:25:37 +02001263 /*
1264 * NB: cannot take rdev->mtx here because this may be
1265 * called within code protected by it when interfaces
1266 * are added with nl80211.
1267 */
Johannes Berg463d0182009-07-14 00:33:35 +02001268 /* can only change netns with wiphy */
1269 dev->features |= NETIF_F_NETNS_LOCAL;
1270
Johannes Berg704232c2007-04-23 12:20:05 -07001271 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
1272 "phy80211")) {
Joe Perchese9c02682010-11-16 19:56:49 -08001273 pr_err("failed to add phy80211 symlink to netdev!\n");
Johannes Berg704232c2007-04-23 12:20:05 -07001274 }
Johannes Berg2a783c12009-07-01 21:26:45 +02001275 wdev->netdev = dev;
Johannes Berg3d23e342009-09-29 23:27:28 +02001276#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a783c12009-07-01 21:26:45 +02001277 wdev->wext.default_key = -1;
1278 wdev->wext.default_mgmt_key = -1;
Johannes Bergf2129352009-07-01 21:26:56 +02001279 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Kalle Valoffb9eb32010-02-17 17:58:10 +02001280#endif
1281
Johannes Berg5be83de2009-11-19 00:56:28 +01001282 if (wdev->wiphy->flags & WIPHY_FLAG_PS_ON_BY_DEFAULT)
Kalle Valoffb9eb32010-02-17 17:58:10 +02001283 wdev->ps = true;
Johannes Berg5be83de2009-11-19 00:56:28 +01001284 else
Kalle Valoffb9eb32010-02-17 17:58:10 +02001285 wdev->ps = false;
Juuso Oikarinen9043f3b2010-04-27 12:47:41 +03001286 /* allow mac80211 to determine the timeout */
1287 wdev->ps_timeout = -1;
Kalle Valoffb9eb32010-02-17 17:58:10 +02001288
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001289 if ((wdev->iftype == NL80211_IFTYPE_STATION ||
Johannes Berg074ac8d2010-09-16 14:58:22 +02001290 wdev->iftype == NL80211_IFTYPE_P2P_CLIENT ||
Johannes Bergad4bb6f2009-11-19 00:56:30 +01001291 wdev->iftype == NL80211_IFTYPE_ADHOC) && !wdev->use_4addr)
1292 dev->priv_flags |= IFF_DONT_BRIDGE;
Denis Kenzior896ff062016-08-03 16:58:33 -05001293
Andrzej Zaborowskibd2522b2017-01-06 16:33:43 -05001294 INIT_WORK(&wdev->disconnect_wk, cfg80211_autodisconnect_wk);
1295
Johannes Bergec8f170bc2018-10-01 14:18:31 +02001296 cfg80211_init_wdev(rdev, wdev);
Johannes Berg704232c2007-04-23 12:20:05 -07001297 break;
Johannes Berg04a773a2009-04-19 21:24:32 +02001298 case NETDEV_GOING_DOWN:
Stanislaw Gruszka81256962013-02-28 10:55:25 +01001299 cfg80211_leave(rdev, wdev);
Johannes Berg01a0ac42009-08-20 21:36:16 +02001300 break;
1301 case NETDEV_DOWN:
Michal Kaziordbbae262012-06-29 12:47:01 +02001302 cfg80211_update_iface_num(rdev, wdev->iftype, -1);
Johannes Berga6173022014-01-22 11:14:18 +02001303 if (rdev->scan_req && rdev->scan_req->wdev == wdev) {
1304 if (WARN_ON(!rdev->scan_req->notified))
Avraham Stern1d762502016-07-05 17:10:13 +03001305 rdev->scan_req->info.aborted = true;
Johannes Bergf9d15d12014-01-22 11:14:19 +02001306 ___cfg80211_scan_done(rdev, false);
Johannes Berga6173022014-01-22 11:14:18 +02001307 }
Johannes Berg5fe231e2013-05-08 21:45:15 +02001308
Arend Van Sprielca986ad2017-04-21 13:05:00 +01001309 list_for_each_entry_safe(pos, tmp,
1310 &rdev->sched_scan_req_list, list) {
zhong jiangd25d0622018-09-08 19:21:28 +08001311 if (WARN_ON(pos->dev == wdev->netdev))
Arend Van Sprielca986ad2017-04-21 13:05:00 +01001312 cfg80211_stop_sched_scan_req(rdev, pos, false);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001313 }
1314
1315 rdev->opencount--;
1316 wake_up(&rdev->dev_wait);
Johannes Berg04a773a2009-04-19 21:24:32 +02001317 break;
1318 case NETDEV_UP:
Johannes Berg4290cb42012-07-12 22:19:48 +02001319 cfg80211_update_iface_num(rdev, wdev->iftype, 1);
Johannes Berg667503d2009-07-07 03:56:11 +02001320 wdev_lock(wdev);
Johannes Bergf2129352009-07-01 21:26:56 +02001321 switch (wdev->iftype) {
Johannes Berg29cbe682010-12-03 09:20:44 +01001322#ifdef CONFIG_CFG80211_WEXT
Johannes Bergf2129352009-07-01 21:26:56 +02001323 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +02001324 cfg80211_ibss_wext_join(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +02001325 break;
Johannes Bergf2129352009-07-01 21:26:56 +02001326 case NL80211_IFTYPE_STATION:
Johannes Bergfffd0932009-07-08 14:22:54 +02001327 cfg80211_mgd_wext_connect(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +02001328 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01001329#endif
Javier Cardonac80d5452010-12-16 17:37:49 -08001330#ifdef CONFIG_MAC80211_MESH
Johannes Berg29cbe682010-12-03 09:20:44 +01001331 case NL80211_IFTYPE_MESH_POINT:
Javier Cardonac80d5452010-12-16 17:37:49 -08001332 {
1333 /* backward compat code... */
1334 struct mesh_setup setup;
1335 memcpy(&setup, &default_mesh_setup,
1336 sizeof(setup));
1337 /* back compat only needed for mesh_id */
1338 setup.mesh_id = wdev->ssid;
1339 setup.mesh_id_len = wdev->mesh_id_up_len;
1340 if (wdev->mesh_id_up_len)
1341 __cfg80211_join_mesh(rdev, dev,
1342 &setup,
1343 &default_mesh_config);
1344 break;
1345 }
1346#endif
Johannes Bergf2129352009-07-01 21:26:56 +02001347 default:
1348 break;
1349 }
Johannes Berg667503d2009-07-07 03:56:11 +02001350 wdev_unlock(wdev);
Johannes Bergad002392009-08-18 19:51:57 +02001351 rdev->opencount++;
Juuso Oikarinenbf6a0572011-01-31 15:52:58 +02001352
1353 /*
1354 * Configure power management to the driver here so that its
1355 * correctly set also after interface type changes etc.
1356 */
Eliad Peller5966f2d2011-07-19 12:57:13 +03001357 if ((wdev->iftype == NL80211_IFTYPE_STATION ||
1358 wdev->iftype == NL80211_IFTYPE_P2P_CLIENT) &&
Johannes Bergd4f29972017-02-13 20:53:38 +01001359 rdev->ops->set_power_mgmt &&
1360 rdev_set_power_mgmt(rdev, dev, wdev->ps,
1361 wdev->ps_timeout)) {
1362 /* assume this means it's off */
1363 wdev->ps = false;
1364 }
Johannes Berg2a783c12009-07-01 21:26:45 +02001365 break;
Johannes Berg704232c2007-04-23 12:20:05 -07001366 case NETDEV_UNREGISTER:
Johannes Berg0ff6ce72009-08-17 12:25:37 +02001367 /*
Johannes Berge40cbda2009-07-30 14:04:01 +02001368 * It is possible to get NETDEV_UNREGISTER
1369 * multiple times. To detect that, check
1370 * that the interface is still on the list
1371 * of registered interfaces, and only then
1372 * remove and clean it up.
1373 */
Johannes Berg2a783c12009-07-01 21:26:45 +02001374 if (!list_empty(&wdev->list)) {
Johannes Berg85dd3da2018-10-01 14:09:17 +02001375 __cfg80211_unregister_wdev(wdev, false);
Johannes Berg704232c2007-04-23 12:20:05 -07001376 sysfs_remove_link(&dev->dev.kobj, "phy80211");
Johannes Berg704232c2007-04-23 12:20:05 -07001377 }
Johannes Berg5f2aa252010-01-17 15:49:02 +01001378 /*
1379 * synchronise (so that we won't find this netdev
1380 * from other code any more) and then clear the list
1381 * head so that the above code can safely check for
1382 * !list_empty() to avoid double-cleanup.
1383 */
1384 synchronize_rcu();
1385 INIT_LIST_HEAD(&wdev->list);
Daniel Drake1f6fc432012-08-02 18:41:48 +01001386 /*
1387 * Ensure that all events have been processed and
1388 * freed.
1389 */
1390 cfg80211_process_wdev_events(wdev);
Ben Greearf9bef3d2013-06-19 14:06:26 -07001391
1392 if (WARN_ON(wdev->current_bss)) {
1393 cfg80211_unhold_bss(wdev->current_bss);
1394 cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
1395 wdev->current_bss = NULL;
1396 }
Johannes Berg704232c2007-04-23 12:20:05 -07001397 break;
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001398 case NETDEV_PRE_UP:
Johannes Berg0b20633d2009-07-07 03:56:13 +02001399 if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)))
1400 return notifier_from_errno(-EOPNOTSUPP);
Luciano Coelhob6a55012014-02-27 11:07:21 +02001401 if (rfkill_blocked(rdev->rfkill))
1402 return notifier_from_errno(-ERFKILL);
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001403 break;
Zhao, Gang6784c7d2014-04-21 12:53:04 +08001404 default:
1405 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -07001406 }
1407
Johannes Bergcb150b92016-01-27 13:29:34 +01001408 wireless_nlevent_flush();
1409
Zhao, Gang6784c7d2014-04-21 12:53:04 +08001410 return NOTIFY_OK;
Johannes Berg704232c2007-04-23 12:20:05 -07001411}
1412
1413static struct notifier_block cfg80211_netdev_notifier = {
1414 .notifier_call = cfg80211_netdev_notifier_call,
1415};
1416
Johannes Berg463d0182009-07-14 00:33:35 +02001417static void __net_exit cfg80211_pernet_exit(struct net *net)
1418{
1419 struct cfg80211_registered_device *rdev;
1420
1421 rtnl_lock();
Johannes Berg463d0182009-07-14 00:33:35 +02001422 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1423 if (net_eq(wiphy_net(&rdev->wiphy), net))
1424 WARN_ON(cfg80211_switch_netns(rdev, &init_net));
1425 }
Johannes Berg463d0182009-07-14 00:33:35 +02001426 rtnl_unlock();
1427}
1428
1429static struct pernet_operations cfg80211_pernet_ops = {
1430 .exit = cfg80211_pernet_exit,
1431};
1432
1433static int __init cfg80211_init(void)
Johannes Berg704232c2007-04-23 12:20:05 -07001434{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001435 int err;
1436
Johannes Berg463d0182009-07-14 00:33:35 +02001437 err = register_pernet_device(&cfg80211_pernet_ops);
1438 if (err)
1439 goto out_fail_pernet;
1440
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001441 err = wiphy_sysfs_init();
Johannes Berg704232c2007-04-23 12:20:05 -07001442 if (err)
1443 goto out_fail_sysfs;
1444
1445 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
1446 if (err)
1447 goto out_fail_notifier;
1448
Johannes Berg55682962007-09-20 13:09:35 -04001449 err = nl80211_init();
1450 if (err)
1451 goto out_fail_nl80211;
1452
Johannes Berg704232c2007-04-23 12:20:05 -07001453 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
1454
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001455 err = regulatory_init();
1456 if (err)
1457 goto out_fail_reg;
1458
Bhaktipriya Shridhare4819012016-08-31 00:35:07 +05301459 cfg80211_wq = alloc_ordered_workqueue("cfg80211", WQ_MEM_RECLAIM);
Wei Yongjunf00f1882013-03-20 20:22:54 +08001460 if (!cfg80211_wq) {
1461 err = -ENOMEM;
Alban Browaeyse60d7442009-11-25 15:13:00 +01001462 goto out_fail_wq;
Wei Yongjunf00f1882013-03-20 20:22:54 +08001463 }
Alban Browaeyse60d7442009-11-25 15:13:00 +01001464
Johannes Berg704232c2007-04-23 12:20:05 -07001465 return 0;
1466
Alban Browaeyse60d7442009-11-25 15:13:00 +01001467out_fail_wq:
1468 regulatory_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001469out_fail_reg:
1470 debugfs_remove(ieee80211_debugfs_dir);
Junjie Mao81daf732015-01-28 10:03:26 +08001471 nl80211_exit();
Johannes Berg55682962007-09-20 13:09:35 -04001472out_fail_nl80211:
1473 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
Johannes Berg704232c2007-04-23 12:20:05 -07001474out_fail_notifier:
1475 wiphy_sysfs_exit();
1476out_fail_sysfs:
Johannes Berg463d0182009-07-14 00:33:35 +02001477 unregister_pernet_device(&cfg80211_pernet_ops);
1478out_fail_pernet:
Johannes Berg704232c2007-04-23 12:20:05 -07001479 return err;
1480}
Johannes Berg007f6c52015-10-15 11:22:58 +02001481fs_initcall(cfg80211_init);
Johannes Berg704232c2007-04-23 12:20:05 -07001482
Uwe Kleine-Königf884e382010-06-18 09:38:54 +02001483static void __exit cfg80211_exit(void)
Johannes Berg704232c2007-04-23 12:20:05 -07001484{
1485 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -04001486 nl80211_exit();
Johannes Berg704232c2007-04-23 12:20:05 -07001487 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
1488 wiphy_sysfs_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001489 regulatory_exit();
Johannes Berg463d0182009-07-14 00:33:35 +02001490 unregister_pernet_device(&cfg80211_pernet_ops);
Alban Browaeyse60d7442009-11-25 15:13:00 +01001491 destroy_workqueue(cfg80211_wq);
Johannes Berg704232c2007-04-23 12:20:05 -07001492}
1493module_exit(cfg80211_exit);