blob: 68f0c96c05658167e5ce56b02ef4488af61a5222 [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 Berg704232c2007-04-23 12:20:05 -07005 */
6
Joe Perchese9c02682010-11-16 19:56:49 -08007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
Johannes Berg704232c2007-04-23 12:20:05 -07009#include <linux/if.h>
10#include <linux/module.h>
11#include <linux/err.h>
Johannes Berg704232c2007-04-23 12:20:05 -070012#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Johannes Berg704232c2007-04-23 12:20:05 -070014#include <linux/nl80211.h>
15#include <linux/debugfs.h>
16#include <linux/notifier.h>
17#include <linux/device.h>
Zhu Yi16a832e2009-08-19 16:08:22 +080018#include <linux/etherdevice.h>
Johannes Berg1f87f7d2009-06-02 13:01:41 +020019#include <linux/rtnetlink.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040020#include <linux/sched.h>
Johannes Berg704232c2007-04-23 12:20:05 -070021#include <net/genetlink.h>
22#include <net/cfg80211.h>
Johannes Berg55682962007-09-20 13:09:35 -040023#include "nl80211.h"
Johannes Berg704232c2007-04-23 12:20:05 -070024#include "core.h"
25#include "sysfs.h"
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -040026#include "debugfs.h"
Johannes Berga9a11622009-07-27 12:01:53 +020027#include "wext-compat.h"
John W. Linville4890e3b2009-09-30 14:50:17 -040028#include "ethtool.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030029#include "rdev-ops.h"
Johannes Berg704232c2007-04-23 12:20:05 -070030
31/* name for sysfs, %d is appended */
32#define PHY_NAME "phy"
33
34MODULE_AUTHOR("Johannes Berg");
35MODULE_LICENSE("GPL");
36MODULE_DESCRIPTION("wireless configuration support");
Marcel Holtmannfb4e1562013-04-28 16:22:06 -070037MODULE_ALIAS_GENL_FAMILY(NL80211_GENL_NAME);
Johannes Berg704232c2007-04-23 12:20:05 -070038
Johannes Berg5f2aa252010-01-17 15:49:02 +010039/* RCU-protected (and cfg80211_mutex for writers) */
Johannes Berg79c97e92009-07-07 03:56:12 +020040LIST_HEAD(cfg80211_rdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +020041int cfg80211_rdev_list_generation;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050042
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050043DEFINE_MUTEX(cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -070044
45/* 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
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050056/* requires cfg80211_mutex to be held! */
Johannes Berg79c97e92009-07-07 03:56:12 +020057struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx)
Johannes Berg55682962007-09-20 13:09:35 -040058{
Johannes Berg79c97e92009-07-07 03:56:12 +020059 struct cfg80211_registered_device *result = NULL, *rdev;
Johannes Berg55682962007-09-20 13:09:35 -040060
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050061 assert_cfg80211_lock();
62
Johannes Berg79c97e92009-07-07 03:56:12 +020063 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
64 if (rdev->wiphy_idx == wiphy_idx) {
65 result = rdev;
Johannes Berg55682962007-09-20 13:09:35 -040066 break;
67 }
68 }
69
70 return result;
71}
72
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050073int get_wiphy_idx(struct wiphy *wiphy)
74{
Johannes Bergf4173762012-12-03 18:23:37 +010075 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
76
Johannes Berg79c97e92009-07-07 03:56:12 +020077 return rdev->wiphy_idx;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050078}
79
Johannes Berg79c97e92009-07-07 03:56:12 +020080/* requires cfg80211_rdev_mutex to be held! */
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050081struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
82{
Johannes Berg79c97e92009-07-07 03:56:12 +020083 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050084
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050085 assert_cfg80211_lock();
86
Johannes Berg79c97e92009-07-07 03:56:12 +020087 rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx);
88 if (!rdev)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050089 return NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +020090 return &rdev->wiphy;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050091}
92
Johannes Berg55682962007-09-20 13:09:35 -040093struct cfg80211_registered_device *
Johannes Berg463d0182009-07-14 00:33:35 +020094cfg80211_get_dev_from_ifindex(struct net *net, int ifindex)
Johannes Berg55682962007-09-20 13:09:35 -040095{
Johannes Berg79c97e92009-07-07 03:56:12 +020096 struct cfg80211_registered_device *rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -040097 struct net_device *dev;
98
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050099 mutex_lock(&cfg80211_mutex);
Johannes Berg463d0182009-07-14 00:33:35 +0200100 dev = dev_get_by_index(net, ifindex);
Johannes Berg55682962007-09-20 13:09:35 -0400101 if (!dev)
102 goto out;
103 if (dev->ieee80211_ptr) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200104 rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
105 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400106 } else
Johannes Berg79c97e92009-07-07 03:56:12 +0200107 rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400108 dev_put(dev);
109 out:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500110 mutex_unlock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200111 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400112}
113
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100114/* requires cfg80211_mutex to be held */
Johannes Berg55682962007-09-20 13:09:35 -0400115int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
116 char *newname)
117{
Johannes Berg79c97e92009-07-07 03:56:12 +0200118 struct cfg80211_registered_device *rdev2;
Johannes Berg76232252010-10-11 14:46:52 -0400119 int wiphy_idx, taken = -1, result, digits;
Johannes Berg55682962007-09-20 13:09:35 -0400120
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100121 assert_cfg80211_lock();
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700122
Johannes Berg76232252010-10-11 14:46:52 -0400123 /* prohibit calling the thing phy%d when %d is not its number */
124 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
125 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
126 /* count number of places needed to print wiphy_idx */
127 digits = 1;
128 while (wiphy_idx /= 10)
129 digits++;
130 /*
131 * deny the name if it is phy<idx> where <idx> is printed
132 * without leading zeroes. taken == strlen(newname) here
133 */
134 if (taken == strlen(PHY_NAME) + digits)
135 return -EINVAL;
136 }
137
138
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700139 /* Ignore nop renames */
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700140 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100141 return 0;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700142
143 /* Ensure another device does not already have this name. */
Johannes Berg79c97e92009-07-07 03:56:12 +0200144 list_for_each_entry(rdev2, &cfg80211_rdev_list, list)
145 if (strcmp(newname, dev_name(&rdev2->wiphy.dev)) == 0)
Johannes Berg76232252010-10-11 14:46:52 -0400146 return -EINVAL;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700147
Johannes Berg55682962007-09-20 13:09:35 -0400148 result = device_rename(&rdev->wiphy.dev, newname);
149 if (result)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100150 return result;
Johannes Berg55682962007-09-20 13:09:35 -0400151
Johannes Berg33c03602008-10-08 10:23:48 +0200152 if (rdev->wiphy.debugfsdir &&
153 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
Johannes Berg55682962007-09-20 13:09:35 -0400154 rdev->wiphy.debugfsdir,
155 rdev->wiphy.debugfsdir->d_parent,
156 newname))
Joe Perchese9c02682010-11-16 19:56:49 -0800157 pr_err("failed to rename debugfs dir to %s!\n", newname);
Johannes Berg55682962007-09-20 13:09:35 -0400158
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100159 nl80211_notify_dev_rename(rdev);
Johannes Berg55682962007-09-20 13:09:35 -0400160
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100161 return 0;
Johannes Berg55682962007-09-20 13:09:35 -0400162}
163
Johannes Berg463d0182009-07-14 00:33:35 +0200164int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
165 struct net *net)
166{
167 struct wireless_dev *wdev;
168 int err = 0;
169
Johannes Berg5be83de2009-11-19 00:56:28 +0100170 if (!(rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK))
Johannes Berg463d0182009-07-14 00:33:35 +0200171 return -EOPNOTSUPP;
172
Johannes Berg89a54e42012-06-15 14:33:17 +0200173 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Johannes Bergba22fb52012-06-15 18:00:00 +0200174 if (!wdev->netdev)
175 continue;
Johannes Berg463d0182009-07-14 00:33:35 +0200176 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
177 err = dev_change_net_namespace(wdev->netdev, net, "wlan%d");
178 if (err)
179 break;
180 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
181 }
182
183 if (err) {
184 /* failed -- clean up to old netns */
185 net = wiphy_net(&rdev->wiphy);
186
Johannes Berg89a54e42012-06-15 14:33:17 +0200187 list_for_each_entry_continue_reverse(wdev, &rdev->wdev_list,
Johannes Berg463d0182009-07-14 00:33:35 +0200188 list) {
Johannes Bergba22fb52012-06-15 18:00:00 +0200189 if (!wdev->netdev)
190 continue;
Johannes Berg463d0182009-07-14 00:33:35 +0200191 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
192 err = dev_change_net_namespace(wdev->netdev, net,
193 "wlan%d");
194 WARN_ON(err);
195 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
196 }
Johannes Berg04600792010-08-05 17:45:15 +0200197
198 return err;
Johannes Berg463d0182009-07-14 00:33:35 +0200199 }
200
201 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
206 return 0;
Johannes Berg463d0182009-07-14 00:33:35 +0200207}
208
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200209static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
210{
Johannes Berg79c97e92009-07-07 03:56:12 +0200211 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200212
Hila Gonene35e4d22012-06-27 17:19:42 +0300213 rdev_rfkill_poll(rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200214}
215
Johannes Bergf9f47522013-03-19 15:04:07 +0100216void cfg80211_stop_p2p_device(struct cfg80211_registered_device *rdev,
217 struct wireless_dev *wdev)
218{
219 lockdep_assert_held(&rdev->devlist_mtx);
220 lockdep_assert_held(&rdev->sched_scan_mtx);
221
222 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_P2P_DEVICE))
223 return;
224
225 if (!wdev->p2p_started)
226 return;
227
228 rdev_stop_p2p_device(rdev, wdev);
229 wdev->p2p_started = false;
230
231 rdev->opencount--;
232
233 if (rdev->scan_req && rdev->scan_req->wdev == wdev) {
234 bool busy = work_busy(&rdev->scan_done_wk);
235
236 /*
237 * If the work isn't pending or running (in which case it would
238 * be waiting for the lock we hold) the driver didn't properly
239 * cancel the scan when the interface was removed. In this case
240 * warn and leak the scan request object to not crash later.
241 */
242 WARN_ON(!busy);
243
244 rdev->scan_req->aborted = true;
245 ___cfg80211_scan_done(rdev, !busy);
246 }
247}
248
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200249static int cfg80211_rfkill_set_block(void *data, bool blocked)
250{
Johannes Berg79c97e92009-07-07 03:56:12 +0200251 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200252 struct wireless_dev *wdev;
253
254 if (!blocked)
255 return 0;
256
257 rtnl_lock();
Johannes Bergf9f47522013-03-19 15:04:07 +0100258
259 /* read-only iteration need not hold the devlist_mtx */
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200260
Johannes Berg98104fde2012-06-16 00:19:54 +0200261 list_for_each_entry(wdev, &rdev->wdev_list, list) {
262 if (wdev->netdev) {
Johannes Bergba22fb52012-06-15 18:00:00 +0200263 dev_close(wdev->netdev);
Johannes Berg98104fde2012-06-16 00:19:54 +0200264 continue;
265 }
266 /* otherwise, check iftype */
267 switch (wdev->iftype) {
268 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Bergf9f47522013-03-19 15:04:07 +0100269 /* but this requires it */
270 mutex_lock(&rdev->devlist_mtx);
271 mutex_lock(&rdev->sched_scan_mtx);
272 cfg80211_stop_p2p_device(rdev, wdev);
273 mutex_unlock(&rdev->sched_scan_mtx);
274 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg98104fde2012-06-16 00:19:54 +0200275 break;
276 default:
277 break;
278 }
279 }
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200280
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200281 rtnl_unlock();
282
283 return 0;
284}
285
286static void cfg80211_rfkill_sync_work(struct work_struct *work)
287{
Johannes Berg79c97e92009-07-07 03:56:12 +0200288 struct cfg80211_registered_device *rdev;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200289
Johannes Berg79c97e92009-07-07 03:56:12 +0200290 rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync);
291 cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill));
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200292}
293
Johannes Berg667503dd2009-07-07 03:56:11 +0200294static void cfg80211_event_work(struct work_struct *work)
295{
296 struct cfg80211_registered_device *rdev;
Johannes Berg667503dd2009-07-07 03:56:11 +0200297
298 rdev = container_of(work, struct cfg80211_registered_device,
299 event_work);
300
301 rtnl_lock();
302 cfg80211_lock_rdev(rdev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200303
Johannes Berg3d54d252009-08-21 14:51:05 +0200304 cfg80211_process_rdev_events(rdev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200305 cfg80211_unlock_rdev(rdev);
306 rtnl_unlock();
307}
308
Johannes Berg704232c2007-04-23 12:20:05 -0700309/* exported functions */
310
David Kilroy3dcf6702009-05-16 23:13:46 +0100311struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
Johannes Berg704232c2007-04-23 12:20:05 -0700312{
Denis ChengRq638af072008-09-23 02:35:37 +0800313 static int wiphy_counter;
Johannes Berg76232252010-10-11 14:46:52 -0400314
315 struct cfg80211_registered_device *rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700316 int alloc_size;
317
Johannes Berg0b20633d2009-07-07 03:56:13 +0200318 WARN_ON(ops->add_key && (!ops->del_key || !ops->set_default_key));
319 WARN_ON(ops->auth && (!ops->assoc || !ops->deauth || !ops->disassoc));
320 WARN_ON(ops->connect && !ops->disconnect);
321 WARN_ON(ops->join_ibss && !ops->leave_ibss);
322 WARN_ON(ops->add_virtual_intf && !ops->del_virtual_intf);
323 WARN_ON(ops->add_station && !ops->del_station);
324 WARN_ON(ops->add_mpath && !ops->del_mpath);
Johannes Berg29cbe682010-12-03 09:20:44 +0100325 WARN_ON(ops->join_mesh && !ops->leave_mesh);
Johannes Berg41ade002007-12-19 02:03:29 +0100326
Johannes Berg79c97e92009-07-07 03:56:12 +0200327 alloc_size = sizeof(*rdev) + sizeof_priv;
Johannes Berg704232c2007-04-23 12:20:05 -0700328
Johannes Berg79c97e92009-07-07 03:56:12 +0200329 rdev = kzalloc(alloc_size, GFP_KERNEL);
330 if (!rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700331 return NULL;
332
Johannes Berg79c97e92009-07-07 03:56:12 +0200333 rdev->ops = ops;
Johannes Berg704232c2007-04-23 12:20:05 -0700334
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500335 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700336
Johannes Berg79c97e92009-07-07 03:56:12 +0200337 rdev->wiphy_idx = wiphy_counter++;
Johannes Berga4d73ee2007-04-26 20:50:35 -0700338
Johannes Bergf4173762012-12-03 18:23:37 +0100339 if (unlikely(rdev->wiphy_idx < 0)) {
Denis ChengRq638af072008-09-23 02:35:37 +0800340 wiphy_counter--;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500341 mutex_unlock(&cfg80211_mutex);
Johannes Berg76232252010-10-11 14:46:52 -0400342 /* ugh, wrapped! */
Johannes Berg79c97e92009-07-07 03:56:12 +0200343 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700344 return NULL;
345 }
Johannes Berg704232c2007-04-23 12:20:05 -0700346
Ben Greear5a254ff2010-09-27 09:07:26 -0700347 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700348
Johannes Berg76232252010-10-11 14:46:52 -0400349 /* give it a proper name */
350 dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx);
351
Johannes Berg79c97e92009-07-07 03:56:12 +0200352 mutex_init(&rdev->mtx);
353 mutex_init(&rdev->devlist_mtx);
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300354 mutex_init(&rdev->sched_scan_mtx);
Johannes Berg89a54e42012-06-15 14:33:17 +0200355 INIT_LIST_HEAD(&rdev->wdev_list);
Ben Greear37c73b52012-10-26 14:49:25 -0700356 INIT_LIST_HEAD(&rdev->beacon_registrations);
357 spin_lock_init(&rdev->beacon_registrations_lock);
Johannes Berg79c97e92009-07-07 03:56:12 +0200358 spin_lock_init(&rdev->bss_lock);
359 INIT_LIST_HEAD(&rdev->bss_list);
360 INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done);
Luciano Coelho807f8a82011-05-11 17:09:35 +0300361 INIT_WORK(&rdev->sched_scan_results_wk, __cfg80211_sched_scan_results);
Simon Wunderlich04f39042013-02-08 18:16:19 +0100362 INIT_DELAYED_WORK(&rdev->dfs_update_channels_wk,
363 cfg80211_dfs_channels_update_work);
Johannes Berg3d23e342009-09-29 23:27:28 +0200364#ifdef CONFIG_CFG80211_WEXT
365 rdev->wiphy.wext = &cfg80211_wext_handler;
366#endif
367
Johannes Berg79c97e92009-07-07 03:56:12 +0200368 device_initialize(&rdev->wiphy.dev);
369 rdev->wiphy.dev.class = &ieee80211_class;
370 rdev->wiphy.dev.platform_data = rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700371
Johannes Berg5be83de2009-11-19 00:56:28 +0100372#ifdef CONFIG_CFG80211_DEFAULT_PS
373 rdev->wiphy.flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
374#endif
Johannes Berg16cb9d42009-08-12 23:33:20 +0200375
Johannes Berg463d0182009-07-14 00:33:35 +0200376 wiphy_net_set(&rdev->wiphy, &init_net);
377
Johannes Berg79c97e92009-07-07 03:56:12 +0200378 rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block;
379 rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev),
380 &rdev->wiphy.dev, RFKILL_TYPE_WLAN,
381 &rdev->rfkill_ops, rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200382
Johannes Berg79c97e92009-07-07 03:56:12 +0200383 if (!rdev->rfkill) {
384 kfree(rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200385 return NULL;
386 }
387
Johannes Berg79c97e92009-07-07 03:56:12 +0200388 INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work);
389 INIT_WORK(&rdev->conn_work, cfg80211_conn_work);
390 INIT_WORK(&rdev->event_work, cfg80211_event_work);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200391
Johannes Bergad002392009-08-18 19:51:57 +0200392 init_waitqueue_head(&rdev->dev_wait);
393
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200394 /*
395 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
396 * Fragmentation and RTS threshold are disabled by default with the
397 * special -1 value.
398 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200399 rdev->wiphy.retry_short = 7;
400 rdev->wiphy.retry_long = 4;
401 rdev->wiphy.frag_threshold = (u32) -1;
402 rdev->wiphy.rts_threshold = (u32) -1;
Lukáš Turek81077e82009-12-21 22:50:47 +0100403 rdev->wiphy.coverage_class = 0;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200404
Johannes Bergd0ae7082013-02-27 15:08:28 +0100405 rdev->wiphy.features = NL80211_FEATURE_SCAN_FLUSH;
Sam Leffler15d60302012-10-11 21:03:34 -0700406
Johannes Berg79c97e92009-07-07 03:56:12 +0200407 return &rdev->wiphy;
Johannes Berg704232c2007-04-23 12:20:05 -0700408}
409EXPORT_SYMBOL(wiphy_new);
410
Johannes Berg7527a782011-05-13 10:58:57 +0200411static int wiphy_verify_combinations(struct wiphy *wiphy)
412{
413 const struct ieee80211_iface_combination *c;
414 int i, j;
415
Johannes Berg7527a782011-05-13 10:58:57 +0200416 for (i = 0; i < wiphy->n_iface_combinations; i++) {
417 u32 cnt = 0;
418 u16 all_iftypes = 0;
419
420 c = &wiphy->iface_combinations[i];
421
Simon Wunderlich11c4a072013-01-08 14:04:07 +0100422 /*
423 * Combinations with just one interface aren't real,
424 * however we make an exception for DFS.
425 */
426 if (WARN_ON((c->max_interfaces < 2) && !c->radar_detect_widths))
Johannes Berg7527a782011-05-13 10:58:57 +0200427 return -EINVAL;
428
429 /* Need at least one channel */
430 if (WARN_ON(!c->num_different_channels))
431 return -EINVAL;
432
Michal Kaziord4e50c52012-06-29 12:47:07 +0200433 /*
434 * Put a sane limit on maximum number of different
435 * channels to simplify channel accounting code.
436 */
437 if (WARN_ON(c->num_different_channels >
438 CFG80211_MAX_NUM_DIFFERENT_CHANNELS))
439 return -EINVAL;
440
Simon Wunderlich11c4a072013-01-08 14:04:07 +0100441 /* DFS only works on one channel. */
442 if (WARN_ON(c->radar_detect_widths &&
443 (c->num_different_channels > 1)))
444 return -EINVAL;
445
Johannes Berg7527a782011-05-13 10:58:57 +0200446 if (WARN_ON(!c->n_limits))
447 return -EINVAL;
448
449 for (j = 0; j < c->n_limits; j++) {
450 u16 types = c->limits[j].types;
451
452 /*
453 * interface types shouldn't overlap, this is
454 * used in cfg80211_can_change_interface()
455 */
456 if (WARN_ON(types & all_iftypes))
457 return -EINVAL;
458 all_iftypes |= types;
459
460 if (WARN_ON(!c->limits[j].max))
461 return -EINVAL;
462
463 /* Shouldn't list software iftypes in combinations! */
464 if (WARN_ON(wiphy->software_iftypes & types))
465 return -EINVAL;
466
Johannes Berg98104fde2012-06-16 00:19:54 +0200467 /* Only a single P2P_DEVICE can be allowed */
468 if (WARN_ON(types & BIT(NL80211_IFTYPE_P2P_DEVICE) &&
469 c->limits[j].max > 1))
470 return -EINVAL;
471
Johannes Berg7527a782011-05-13 10:58:57 +0200472 cnt += c->limits[j].max;
473 /*
474 * Don't advertise an unsupported type
475 * in a combination.
476 */
477 if (WARN_ON((wiphy->interface_modes & types) != types))
478 return -EINVAL;
479 }
480
481 /* You can't even choose that many! */
482 if (WARN_ON(cnt < c->max_interfaces))
483 return -EINVAL;
484 }
485
486 return 0;
487}
488
Johannes Berg704232c2007-04-23 12:20:05 -0700489int wiphy_register(struct wiphy *wiphy)
490{
Johannes Berg79c97e92009-07-07 03:56:12 +0200491 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700492 int res;
Johannes Berg8318d782008-01-24 19:38:38 +0100493 enum ieee80211_band band;
494 struct ieee80211_supported_band *sband;
495 bool have_band = false;
496 int i;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700497 u16 ifmodes = wiphy->interface_modes;
498
Johannes Bergdfb89c52012-06-27 09:23:48 +0200499#ifdef CONFIG_PM
Johannes Berg77dbbb12011-07-13 10:48:55 +0200500 if (WARN_ON((wiphy->wowlan.flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
501 !(wiphy->wowlan.flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY)))
502 return -EINVAL;
Johannes Bergdfb89c52012-06-27 09:23:48 +0200503#endif
Johannes Berg77dbbb12011-07-13 10:48:55 +0200504
Johannes Berg562a7482011-11-07 12:39:33 +0100505 if (WARN_ON(wiphy->ap_sme_capa &&
506 !(wiphy->flags & WIPHY_FLAG_HAVE_AP_SME)))
507 return -EINVAL;
508
Johannes Bergef15aac2010-01-20 12:02:33 +0100509 if (WARN_ON(wiphy->addresses && !wiphy->n_addresses))
510 return -EINVAL;
511
512 if (WARN_ON(wiphy->addresses &&
513 !is_zero_ether_addr(wiphy->perm_addr) &&
514 memcmp(wiphy->perm_addr, wiphy->addresses[0].addr,
515 ETH_ALEN)))
516 return -EINVAL;
517
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +0530518 if (WARN_ON(wiphy->max_acl_mac_addrs &&
519 (!(wiphy->flags & WIPHY_FLAG_HAVE_AP_SME) ||
520 !rdev->ops->set_mac_acl)))
521 return -EINVAL;
522
Johannes Bergef15aac2010-01-20 12:02:33 +0100523 if (wiphy->addresses)
524 memcpy(wiphy->perm_addr, wiphy->addresses[0].addr, ETH_ALEN);
525
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700526 /* sanity check ifmodes */
527 WARN_ON(!ifmodes);
Johannes Berg2e161f72010-08-12 15:38:38 +0200528 ifmodes &= ((1 << NUM_NL80211_IFTYPES) - 1) & ~1;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700529 if (WARN_ON(ifmodes != wiphy->interface_modes))
530 wiphy->interface_modes = ifmodes;
Johannes Berg8318d782008-01-24 19:38:38 +0100531
Johannes Berg7527a782011-05-13 10:58:57 +0200532 res = wiphy_verify_combinations(wiphy);
533 if (res)
534 return res;
535
Johannes Berg8318d782008-01-24 19:38:38 +0100536 /* sanity check supported bands/channels */
537 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
538 sband = wiphy->bands[band];
539 if (!sband)
540 continue;
541
542 sband->band = band;
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300543 if (WARN_ON(!sband->n_channels))
544 return -EINVAL;
545 /*
546 * on 60gHz band, there are no legacy rates, so
547 * n_bitrates is 0
548 */
549 if (WARN_ON(band != IEEE80211_BAND_60GHZ &&
550 !sband->n_bitrates))
Johannes Berg8318d782008-01-24 19:38:38 +0100551 return -EINVAL;
Johannes Berg881d9482009-01-21 15:13:48 +0100552
553 /*
Amitkumar Karwar40db6c72011-04-21 14:10:27 -0700554 * Since cfg80211_disable_40mhz_24ghz is global, we can
555 * modify the sband's ht data even if the driver uses a
556 * global structure for that.
557 */
558 if (cfg80211_disable_40mhz_24ghz &&
559 band == IEEE80211_BAND_2GHZ &&
560 sband->ht_cap.ht_supported) {
561 sband->ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
562 sband->ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_40;
563 }
564
565 /*
Johannes Berg881d9482009-01-21 15:13:48 +0100566 * Since we use a u32 for rate bitmaps in
567 * ieee80211_get_response_rate, we cannot
568 * have more than 32 legacy rates.
569 */
570 if (WARN_ON(sband->n_bitrates > 32))
571 return -EINVAL;
Johannes Berg8318d782008-01-24 19:38:38 +0100572
573 for (i = 0; i < sband->n_channels; i++) {
574 sband->channels[i].orig_flags =
575 sband->channels[i].flags;
Felix Fietkauc4a9faf2012-10-17 13:56:19 +0200576 sband->channels[i].orig_mag = INT_MAX;
Johannes Berg8318d782008-01-24 19:38:38 +0100577 sband->channels[i].orig_mpwr =
578 sband->channels[i].max_power;
579 sband->channels[i].band = band;
580 }
581
582 have_band = true;
583 }
584
585 if (!have_band) {
586 WARN_ON(1);
587 return -EINVAL;
588 }
589
Johannes Bergdfb89c52012-06-27 09:23:48 +0200590#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +0200591 if (rdev->wiphy.wowlan.n_patterns) {
592 if (WARN_ON(!rdev->wiphy.wowlan.pattern_min_len ||
593 rdev->wiphy.wowlan.pattern_min_len >
594 rdev->wiphy.wowlan.pattern_max_len))
595 return -EINVAL;
596 }
Johannes Bergdfb89c52012-06-27 09:23:48 +0200597#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +0200598
Johannes Berg8318d782008-01-24 19:38:38 +0100599 /* check and set up bitrates */
600 ieee80211_set_bitrate_flags(wiphy);
601
Maxime Bizon5a652052010-07-21 17:21:38 +0200602 mutex_lock(&cfg80211_mutex);
603
Johannes Berg79c97e92009-07-07 03:56:12 +0200604 res = device_add(&rdev->wiphy.dev);
John W. Linvillec3d34d52010-08-30 17:36:40 -0400605 if (res) {
606 mutex_unlock(&cfg80211_mutex);
607 return res;
608 }
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200609
Johannes Berg2f0accc2009-06-10 16:50:29 +0200610 /* set up regulatory info */
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700611 wiphy_regulatory_register(wiphy);
Johannes Berg2f0accc2009-06-10 16:50:29 +0200612
Johannes Berg5f2aa252010-01-17 15:49:02 +0100613 list_add_rcu(&rdev->list, &cfg80211_rdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200614 cfg80211_rdev_list_generation++;
Johannes Berg704232c2007-04-23 12:20:05 -0700615
616 /* add to debugfs */
Johannes Berg79c97e92009-07-07 03:56:12 +0200617 rdev->wiphy.debugfsdir =
618 debugfs_create_dir(wiphy_name(&rdev->wiphy),
Johannes Berg704232c2007-04-23 12:20:05 -0700619 ieee80211_debugfs_dir);
Johannes Berg79c97e92009-07-07 03:56:12 +0200620 if (IS_ERR(rdev->wiphy.debugfsdir))
621 rdev->wiphy.debugfsdir = NULL;
Johannes Berg704232c2007-04-23 12:20:05 -0700622
Johannes Berg5be83de2009-11-19 00:56:28 +0100623 if (wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) {
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -0400624 struct regulatory_request request;
625
626 request.wiphy_idx = get_wiphy_idx(wiphy);
627 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
628 request.alpha2[0] = '9';
629 request.alpha2[1] = '9';
630
631 nl80211_send_reg_change_event(&request);
632 }
633
Johannes Berg79c97e92009-07-07 03:56:12 +0200634 cfg80211_debugfs_rdev_add(rdev);
Maxime Bizon5a652052010-07-21 17:21:38 +0200635 mutex_unlock(&cfg80211_mutex);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400636
John W. Linvillec3d34d52010-08-30 17:36:40 -0400637 /*
638 * due to a locking dependency this has to be outside of the
639 * cfg80211_mutex lock
640 */
641 res = rfkill_register(rdev->rfkill);
642 if (res)
643 goto out_rm_dev;
644
Stanislaw Gruszkaecb44332011-08-12 14:00:59 +0200645 rtnl_lock();
646 rdev->wiphy.registered = true;
647 rtnl_unlock();
Johannes Berg2f0accc2009-06-10 16:50:29 +0200648 return 0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200649
Maxime Bizon5a652052010-07-21 17:21:38 +0200650out_rm_dev:
Johannes Berg79c97e92009-07-07 03:56:12 +0200651 device_del(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700652 return res;
653}
654EXPORT_SYMBOL(wiphy_register);
655
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200656void wiphy_rfkill_start_polling(struct wiphy *wiphy)
657{
Johannes Berg79c97e92009-07-07 03:56:12 +0200658 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200659
Johannes Berg79c97e92009-07-07 03:56:12 +0200660 if (!rdev->ops->rfkill_poll)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200661 return;
Johannes Berg79c97e92009-07-07 03:56:12 +0200662 rdev->rfkill_ops.poll = cfg80211_rfkill_poll;
663 rfkill_resume_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200664}
665EXPORT_SYMBOL(wiphy_rfkill_start_polling);
666
667void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
668{
Johannes Berg79c97e92009-07-07 03:56:12 +0200669 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200670
Johannes Berg79c97e92009-07-07 03:56:12 +0200671 rfkill_pause_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200672}
673EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
674
Johannes Berg704232c2007-04-23 12:20:05 -0700675void wiphy_unregister(struct wiphy *wiphy)
676{
Johannes Berg79c97e92009-07-07 03:56:12 +0200677 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700678
Stanislaw Gruszkaecb44332011-08-12 14:00:59 +0200679 rtnl_lock();
680 rdev->wiphy.registered = false;
681 rtnl_unlock();
682
Johannes Berg79c97e92009-07-07 03:56:12 +0200683 rfkill_unregister(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200684
Johannes Bergf16bfc12007-04-26 20:51:12 -0700685 /* protect the device list */
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500686 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700687
Johannes Bergad002392009-08-18 19:51:57 +0200688 wait_event(rdev->dev_wait, ({
689 int __count;
690 mutex_lock(&rdev->devlist_mtx);
691 __count = rdev->opencount;
692 mutex_unlock(&rdev->devlist_mtx);
Cristian Chilipireac4f60842012-05-08 12:38:53 +0300693 __count == 0; }));
Johannes Bergad002392009-08-18 19:51:57 +0200694
695 mutex_lock(&rdev->devlist_mtx);
Johannes Berg89a54e42012-06-15 14:33:17 +0200696 BUG_ON(!list_empty(&rdev->wdev_list));
Johannes Bergad002392009-08-18 19:51:57 +0200697 mutex_unlock(&rdev->devlist_mtx);
698
699 /*
700 * First remove the hardware from everywhere, this makes
701 * it impossible to find from userspace.
702 */
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100703 debugfs_remove_recursive(rdev->wiphy.debugfsdir);
Johannes Berg5f2aa252010-01-17 15:49:02 +0100704 list_del_rcu(&rdev->list);
705 synchronize_rcu();
Johannes Bergf16bfc12007-04-26 20:51:12 -0700706
707 /*
Johannes Berg79c97e92009-07-07 03:56:12 +0200708 * Try to grab rdev->mtx. If a command is still in progress,
Johannes Bergf16bfc12007-04-26 20:51:12 -0700709 * hopefully the driver will refuse it since it's tearing
710 * down the device already. We wait for this command to complete
711 * before unlinking the item from the list.
712 * Note: as codified by the BUG_ON above we cannot get here if
Johannes Bergad002392009-08-18 19:51:57 +0200713 * a virtual interface is still present. Hence, we can only get
714 * to lock contention here if userspace issues a command that
715 * identified the hardware by wiphy index.
Johannes Bergf16bfc12007-04-26 20:51:12 -0700716 */
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200717 cfg80211_lock_rdev(rdev);
Johannes Bergad002392009-08-18 19:51:57 +0200718 /* nothing */
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200719 cfg80211_unlock_rdev(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700720
Luis R. Rodriguezbfead082012-07-12 11:49:19 -0700721 /*
722 * If this device got a regulatory hint tell core its
723 * free to listen now to a new shiny device regulatory hint
724 */
725 wiphy_regulatory_deregister(wiphy);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800726
Johannes Bergf5ea9122009-08-07 16:17:38 +0200727 cfg80211_rdev_list_generation++;
Johannes Berg79c97e92009-07-07 03:56:12 +0200728 device_del(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700729
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500730 mutex_unlock(&cfg80211_mutex);
Johannes Berg66825882009-07-13 13:24:44 +0200731
Johannes Berg36e6fea2009-08-12 22:21:21 +0200732 flush_work(&rdev->scan_done_wk);
Johannes Berg66825882009-07-13 13:24:44 +0200733 cancel_work_sync(&rdev->conn_work);
Johannes Berg66825882009-07-13 13:24:44 +0200734 flush_work(&rdev->event_work);
Simon Wunderlich04f39042013-02-08 18:16:19 +0100735 cancel_delayed_work_sync(&rdev->dfs_update_channels_wk);
Johannes Berg6d525632012-04-04 15:05:25 +0200736
737 if (rdev->wowlan && rdev->ops->set_wakeup)
Hila Gonene35e4d22012-06-27 17:19:42 +0300738 rdev_set_wakeup(rdev, false);
Johannes Berg6d525632012-04-04 15:05:25 +0200739 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700740}
741EXPORT_SYMBOL(wiphy_unregister);
742
Johannes Berg79c97e92009-07-07 03:56:12 +0200743void cfg80211_dev_free(struct cfg80211_registered_device *rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700744{
Johannes Berg2a519312009-02-10 21:25:55 +0100745 struct cfg80211_internal_bss *scan, *tmp;
Ben Greear37c73b52012-10-26 14:49:25 -0700746 struct cfg80211_beacon_registration *reg, *treg;
Johannes Berg79c97e92009-07-07 03:56:12 +0200747 rfkill_destroy(rdev->rfkill);
748 mutex_destroy(&rdev->mtx);
749 mutex_destroy(&rdev->devlist_mtx);
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300750 mutex_destroy(&rdev->sched_scan_mtx);
Ben Greear37c73b52012-10-26 14:49:25 -0700751 list_for_each_entry_safe(reg, treg, &rdev->beacon_registrations, list) {
752 list_del(&reg->list);
753 kfree(reg);
754 }
Johannes Berg79c97e92009-07-07 03:56:12 +0200755 list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list)
Johannes Berg5b112d32013-02-01 01:49:58 +0100756 cfg80211_put_bss(&rdev->wiphy, &scan->pub);
Johannes Berg79c97e92009-07-07 03:56:12 +0200757 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700758}
759
760void wiphy_free(struct wiphy *wiphy)
761{
762 put_device(&wiphy->dev);
763}
764EXPORT_SYMBOL(wiphy_free);
765
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200766void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
767{
Johannes Berg79c97e92009-07-07 03:56:12 +0200768 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200769
Johannes Berg79c97e92009-07-07 03:56:12 +0200770 if (rfkill_set_hw_state(rdev->rfkill, blocked))
771 schedule_work(&rdev->rfkill_sync);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200772}
773EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
774
Johannes Bergad002392009-08-18 19:51:57 +0200775static void wdev_cleanup_work(struct work_struct *work)
776{
777 struct wireless_dev *wdev;
778 struct cfg80211_registered_device *rdev;
779
780 wdev = container_of(work, struct wireless_dev, cleanup_work);
781 rdev = wiphy_to_dev(wdev->wiphy);
782
Johannes Bergf9f47522013-03-19 15:04:07 +0100783 mutex_lock(&rdev->sched_scan_mtx);
Johannes Bergad002392009-08-18 19:51:57 +0200784
Johannes Bergfd014282012-06-18 19:17:03 +0200785 if (WARN_ON(rdev->scan_req && rdev->scan_req->wdev == wdev)) {
Johannes Bergad002392009-08-18 19:51:57 +0200786 rdev->scan_req->aborted = true;
Johannes Berg01a0ac42009-08-20 21:36:16 +0200787 ___cfg80211_scan_done(rdev, true);
Johannes Bergad002392009-08-18 19:51:57 +0200788 }
789
Luciano Coelho807f8a82011-05-11 17:09:35 +0300790 if (WARN_ON(rdev->sched_scan_req &&
791 rdev->sched_scan_req->dev == wdev->netdev)) {
792 __cfg80211_stop_sched_scan(rdev, false);
793 }
794
Luciano Coelhoc10841c2011-06-30 08:32:41 +0300795 mutex_unlock(&rdev->sched_scan_mtx);
Johannes Bergad002392009-08-18 19:51:57 +0200796
797 mutex_lock(&rdev->devlist_mtx);
798 rdev->opencount--;
799 mutex_unlock(&rdev->devlist_mtx);
800 wake_up(&rdev->dev_wait);
801
802 dev_put(wdev->netdev);
803}
804
Johannes Berg98104fde2012-06-16 00:19:54 +0200805void cfg80211_unregister_wdev(struct wireless_dev *wdev)
806{
807 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
808
809 ASSERT_RTNL();
810
811 if (WARN_ON(wdev->netdev))
812 return;
813
814 mutex_lock(&rdev->devlist_mtx);
Johannes Bergf9f47522013-03-19 15:04:07 +0100815 mutex_lock(&rdev->sched_scan_mtx);
Johannes Berg98104fde2012-06-16 00:19:54 +0200816 list_del_rcu(&wdev->list);
817 rdev->devlist_generation++;
818
819 switch (wdev->iftype) {
820 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Bergf9f47522013-03-19 15:04:07 +0100821 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +0200822 break;
823 default:
824 WARN_ON_ONCE(1);
825 break;
826 }
Johannes Bergf9f47522013-03-19 15:04:07 +0100827 mutex_unlock(&rdev->sched_scan_mtx);
Johannes Berg98104fde2012-06-16 00:19:54 +0200828 mutex_unlock(&rdev->devlist_mtx);
829}
830EXPORT_SYMBOL(cfg80211_unregister_wdev);
831
Marcel Holtmann053a93d2009-10-02 05:15:28 +0000832static struct device_type wiphy_type = {
833 .name = "wlan",
834};
835
Michal Kaziordbbae262012-06-29 12:47:01 +0200836void cfg80211_update_iface_num(struct cfg80211_registered_device *rdev,
837 enum nl80211_iftype iftype, int num)
838{
Johannes Bergc5a7e582012-07-04 13:28:18 +0200839 ASSERT_RTNL();
Michal Kaziordbbae262012-06-29 12:47:01 +0200840
841 rdev->num_running_ifaces += num;
842 if (iftype == NL80211_IFTYPE_MONITOR)
843 rdev->num_running_monitor_ifaces += num;
Michal Kaziordbbae262012-06-29 12:47:01 +0200844}
845
Stanislaw Gruszka81256962013-02-28 10:55:25 +0100846void cfg80211_leave(struct cfg80211_registered_device *rdev,
847 struct wireless_dev *wdev)
848{
849 struct net_device *dev = wdev->netdev;
850
851 switch (wdev->iftype) {
852 case NL80211_IFTYPE_ADHOC:
853 cfg80211_leave_ibss(rdev, dev, true);
854 break;
855 case NL80211_IFTYPE_P2P_CLIENT:
856 case NL80211_IFTYPE_STATION:
857 mutex_lock(&rdev->sched_scan_mtx);
858 __cfg80211_stop_sched_scan(rdev, false);
859 mutex_unlock(&rdev->sched_scan_mtx);
860
861 wdev_lock(wdev);
862#ifdef CONFIG_CFG80211_WEXT
863 kfree(wdev->wext.ie);
864 wdev->wext.ie = NULL;
865 wdev->wext.ie_len = 0;
866 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
867#endif
868 __cfg80211_disconnect(rdev, dev,
869 WLAN_REASON_DEAUTH_LEAVING, true);
870 cfg80211_mlme_down(rdev, dev);
871 wdev_unlock(wdev);
872 break;
873 case NL80211_IFTYPE_MESH_POINT:
874 cfg80211_leave_mesh(rdev, dev);
875 break;
876 case NL80211_IFTYPE_AP:
877 cfg80211_stop_ap(rdev, dev);
878 break;
879 default:
880 break;
881 }
882
883 wdev->beacon_interval = 0;
884}
885
Cristian Chilipireac4f60842012-05-08 12:38:53 +0300886static int cfg80211_netdev_notifier_call(struct notifier_block *nb,
Johannes Berg704232c2007-04-23 12:20:05 -0700887 unsigned long state,
888 void *ndev)
889{
890 struct net_device *dev = ndev;
Johannes Berg2a783c12009-07-01 21:26:45 +0200891 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg704232c2007-04-23 12:20:05 -0700892 struct cfg80211_registered_device *rdev;
Johannes Berg7527a782011-05-13 10:58:57 +0200893 int ret;
Johannes Berg704232c2007-04-23 12:20:05 -0700894
Johannes Berg2a783c12009-07-01 21:26:45 +0200895 if (!wdev)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200896 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700897
Johannes Berg2a783c12009-07-01 21:26:45 +0200898 rdev = wiphy_to_dev(wdev->wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700899
Johannes Berg2a783c12009-07-01 21:26:45 +0200900 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
Johannes Berg60719ff2008-09-16 14:55:09 +0200901
Johannes Berg704232c2007-04-23 12:20:05 -0700902 switch (state) {
Marcel Holtmann053a93d2009-10-02 05:15:28 +0000903 case NETDEV_POST_INIT:
904 SET_NETDEV_DEVTYPE(dev, &wiphy_type);
905 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700906 case NETDEV_REGISTER:
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200907 /*
908 * NB: cannot take rdev->mtx here because this may be
909 * called within code protected by it when interfaces
910 * are added with nl80211.
911 */
Johannes Berg667503dd2009-07-07 03:56:11 +0200912 mutex_init(&wdev->mtx);
Johannes Bergad002392009-08-18 19:51:57 +0200913 INIT_WORK(&wdev->cleanup_work, wdev_cleanup_work);
Johannes Berg667503dd2009-07-07 03:56:11 +0200914 INIT_LIST_HEAD(&wdev->event_list);
915 spin_lock_init(&wdev->event_lock);
Johannes Berg2e161f72010-08-12 15:38:38 +0200916 INIT_LIST_HEAD(&wdev->mgmt_registrations);
917 spin_lock_init(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200918
Johannes Berg704232c2007-04-23 12:20:05 -0700919 mutex_lock(&rdev->devlist_mtx);
Johannes Berg89a54e42012-06-15 14:33:17 +0200920 wdev->identifier = ++rdev->wdev_id;
921 list_add_rcu(&wdev->list, &rdev->wdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200922 rdev->devlist_generation++;
Johannes Berg463d0182009-07-14 00:33:35 +0200923 /* can only change netns with wiphy */
924 dev->features |= NETIF_F_NETNS_LOCAL;
925
Johannes Berg704232c2007-04-23 12:20:05 -0700926 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
927 "phy80211")) {
Joe Perchese9c02682010-11-16 19:56:49 -0800928 pr_err("failed to add phy80211 symlink to netdev!\n");
Johannes Berg704232c2007-04-23 12:20:05 -0700929 }
Johannes Berg2a783c12009-07-01 21:26:45 +0200930 wdev->netdev = dev;
Samuel Ortizb23aa672009-07-01 21:26:54 +0200931 wdev->sme_state = CFG80211_SME_IDLE;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200932 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg3d23e342009-09-29 23:27:28 +0200933#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a783c12009-07-01 21:26:45 +0200934 wdev->wext.default_key = -1;
935 wdev->wext.default_mgmt_key = -1;
Johannes Bergf2129352009-07-01 21:26:56 +0200936 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Kalle Valoffb9eb32010-02-17 17:58:10 +0200937#endif
938
Johannes Berg5be83de2009-11-19 00:56:28 +0100939 if (wdev->wiphy->flags & WIPHY_FLAG_PS_ON_BY_DEFAULT)
Kalle Valoffb9eb32010-02-17 17:58:10 +0200940 wdev->ps = true;
Johannes Berg5be83de2009-11-19 00:56:28 +0100941 else
Kalle Valoffb9eb32010-02-17 17:58:10 +0200942 wdev->ps = false;
Juuso Oikarinen9043f3b2010-04-27 12:47:41 +0300943 /* allow mac80211 to determine the timeout */
944 wdev->ps_timeout = -1;
Kalle Valoffb9eb32010-02-17 17:58:10 +0200945
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +0000946 netdev_set_default_ethtool_ops(dev, &cfg80211_ethtool_ops);
Johannes Bergad4bb6f2009-11-19 00:56:30 +0100947
948 if ((wdev->iftype == NL80211_IFTYPE_STATION ||
Johannes Berg074ac8d2010-09-16 14:58:22 +0200949 wdev->iftype == NL80211_IFTYPE_P2P_CLIENT ||
Johannes Bergad4bb6f2009-11-19 00:56:30 +0100950 wdev->iftype == NL80211_IFTYPE_ADHOC) && !wdev->use_4addr)
951 dev->priv_flags |= IFF_DONT_BRIDGE;
Johannes Berg704232c2007-04-23 12:20:05 -0700952 break;
Johannes Berg04a773a2009-04-19 21:24:32 +0200953 case NETDEV_GOING_DOWN:
Stanislaw Gruszka81256962013-02-28 10:55:25 +0100954 cfg80211_leave(rdev, wdev);
Johannes Berg01a0ac42009-08-20 21:36:16 +0200955 break;
956 case NETDEV_DOWN:
Michal Kaziordbbae262012-06-29 12:47:01 +0200957 cfg80211_update_iface_num(rdev, wdev->iftype, -1);
Johannes Bergc5a7e582012-07-04 13:28:18 +0200958 dev_hold(dev);
Alban Browaeyse60d7442009-11-25 15:13:00 +0100959 queue_work(cfg80211_wq, &wdev->cleanup_work);
Johannes Berg04a773a2009-04-19 21:24:32 +0200960 break;
961 case NETDEV_UP:
Johannes Bergad002392009-08-18 19:51:57 +0200962 /*
963 * If we have a really quick DOWN/UP succession we may
964 * have this work still pending ... cancel it and see
965 * if it was pending, in which case we need to account
966 * for some of the work it would have done.
967 */
968 if (cancel_work_sync(&wdev->cleanup_work)) {
969 mutex_lock(&rdev->devlist_mtx);
970 rdev->opencount--;
971 mutex_unlock(&rdev->devlist_mtx);
972 dev_put(dev);
973 }
Johannes Berg4290cb42012-07-12 22:19:48 +0200974 cfg80211_update_iface_num(rdev, wdev->iftype, 1);
Johannes Berg667503dd2009-07-07 03:56:11 +0200975 cfg80211_lock_rdev(rdev);
Johannes Bergaee83ea2009-08-09 11:51:29 +0200976 mutex_lock(&rdev->devlist_mtx);
Johannes Bergf9f47522013-03-19 15:04:07 +0100977 mutex_lock(&rdev->sched_scan_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200978 wdev_lock(wdev);
Johannes Bergf2129352009-07-01 21:26:56 +0200979 switch (wdev->iftype) {
Johannes Berg29cbe682010-12-03 09:20:44 +0100980#ifdef CONFIG_CFG80211_WEXT
Johannes Bergf2129352009-07-01 21:26:56 +0200981 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200982 cfg80211_ibss_wext_join(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200983 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200984 case NL80211_IFTYPE_STATION:
Johannes Bergfffd0932009-07-08 14:22:54 +0200985 cfg80211_mgd_wext_connect(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200986 break;
Johannes Berg29cbe682010-12-03 09:20:44 +0100987#endif
Javier Cardonac80d5452010-12-16 17:37:49 -0800988#ifdef CONFIG_MAC80211_MESH
Johannes Berg29cbe682010-12-03 09:20:44 +0100989 case NL80211_IFTYPE_MESH_POINT:
Javier Cardonac80d5452010-12-16 17:37:49 -0800990 {
991 /* backward compat code... */
992 struct mesh_setup setup;
993 memcpy(&setup, &default_mesh_setup,
994 sizeof(setup));
995 /* back compat only needed for mesh_id */
996 setup.mesh_id = wdev->ssid;
997 setup.mesh_id_len = wdev->mesh_id_up_len;
998 if (wdev->mesh_id_up_len)
999 __cfg80211_join_mesh(rdev, dev,
1000 &setup,
1001 &default_mesh_config);
1002 break;
1003 }
1004#endif
Johannes Bergf2129352009-07-01 21:26:56 +02001005 default:
1006 break;
1007 }
Johannes Berg667503dd2009-07-07 03:56:11 +02001008 wdev_unlock(wdev);
Johannes Bergf9f47522013-03-19 15:04:07 +01001009 mutex_unlock(&rdev->sched_scan_mtx);
Johannes Bergad002392009-08-18 19:51:57 +02001010 rdev->opencount++;
Johannes Bergaee83ea2009-08-09 11:51:29 +02001011 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +02001012 cfg80211_unlock_rdev(rdev);
Juuso Oikarinenbf6a0572011-01-31 15:52:58 +02001013
1014 /*
1015 * Configure power management to the driver here so that its
1016 * correctly set also after interface type changes etc.
1017 */
Eliad Peller5966f2d2011-07-19 12:57:13 +03001018 if ((wdev->iftype == NL80211_IFTYPE_STATION ||
1019 wdev->iftype == NL80211_IFTYPE_P2P_CLIENT) &&
Juuso Oikarinenbf6a0572011-01-31 15:52:58 +02001020 rdev->ops->set_power_mgmt)
Hila Gonene35e4d22012-06-27 17:19:42 +03001021 if (rdev_set_power_mgmt(rdev, dev, wdev->ps,
1022 wdev->ps_timeout)) {
Juuso Oikarinenbf6a0572011-01-31 15:52:58 +02001023 /* assume this means it's off */
1024 wdev->ps = false;
1025 }
Johannes Berg2a783c12009-07-01 21:26:45 +02001026 break;
Johannes Berg704232c2007-04-23 12:20:05 -07001027 case NETDEV_UNREGISTER:
Johannes Berg0ff6ce72009-08-17 12:25:37 +02001028 /*
1029 * NB: cannot take rdev->mtx here because this may be
1030 * called within code protected by it when interfaces
1031 * are removed with nl80211.
1032 */
Johannes Berg704232c2007-04-23 12:20:05 -07001033 mutex_lock(&rdev->devlist_mtx);
Johannes Berge40cbdac2009-07-30 14:04:01 +02001034 /*
1035 * It is possible to get NETDEV_UNREGISTER
1036 * multiple times. To detect that, check
1037 * that the interface is still on the list
1038 * of registered interfaces, and only then
1039 * remove and clean it up.
1040 */
Johannes Berg2a783c12009-07-01 21:26:45 +02001041 if (!list_empty(&wdev->list)) {
Johannes Berg704232c2007-04-23 12:20:05 -07001042 sysfs_remove_link(&dev->dev.kobj, "phy80211");
Johannes Berg5f2aa252010-01-17 15:49:02 +01001043 list_del_rcu(&wdev->list);
Johannes Bergf5ea9122009-08-07 16:17:38 +02001044 rdev->devlist_generation++;
Johannes Berg2e161f72010-08-12 15:38:38 +02001045 cfg80211_mlme_purge_registrations(wdev);
Johannes Berg3d23e342009-09-29 23:27:28 +02001046#ifdef CONFIG_CFG80211_WEXT
Johannes Berge40cbdac2009-07-30 14:04:01 +02001047 kfree(wdev->wext.keys);
1048#endif
Johannes Berg704232c2007-04-23 12:20:05 -07001049 }
1050 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg5f2aa252010-01-17 15:49:02 +01001051 /*
1052 * synchronise (so that we won't find this netdev
1053 * from other code any more) and then clear the list
1054 * head so that the above code can safely check for
1055 * !list_empty() to avoid double-cleanup.
1056 */
1057 synchronize_rcu();
1058 INIT_LIST_HEAD(&wdev->list);
Daniel Drake1f6fc432012-08-02 18:41:48 +01001059 /*
1060 * Ensure that all events have been processed and
1061 * freed.
1062 */
1063 cfg80211_process_wdev_events(wdev);
Johannes Berg704232c2007-04-23 12:20:05 -07001064 break;
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001065 case NETDEV_PRE_UP:
Johannes Berg0b20633d2009-07-07 03:56:13 +02001066 if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)))
1067 return notifier_from_errno(-EOPNOTSUPP);
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001068 if (rfkill_blocked(rdev->rfkill))
1069 return notifier_from_errno(-ERFKILL);
Michal Kaziore4e32452012-06-29 12:47:08 +02001070 mutex_lock(&rdev->devlist_mtx);
Johannes Berg7527a782011-05-13 10:58:57 +02001071 ret = cfg80211_can_add_interface(rdev, wdev->iftype);
Michal Kaziore4e32452012-06-29 12:47:08 +02001072 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg7527a782011-05-13 10:58:57 +02001073 if (ret)
1074 return notifier_from_errno(ret);
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001075 break;
Johannes Berg704232c2007-04-23 12:20:05 -07001076 }
1077
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001078 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -07001079}
1080
1081static struct notifier_block cfg80211_netdev_notifier = {
1082 .notifier_call = cfg80211_netdev_notifier_call,
1083};
1084
Johannes Berg463d0182009-07-14 00:33:35 +02001085static void __net_exit cfg80211_pernet_exit(struct net *net)
1086{
1087 struct cfg80211_registered_device *rdev;
1088
1089 rtnl_lock();
1090 mutex_lock(&cfg80211_mutex);
1091 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1092 if (net_eq(wiphy_net(&rdev->wiphy), net))
1093 WARN_ON(cfg80211_switch_netns(rdev, &init_net));
1094 }
1095 mutex_unlock(&cfg80211_mutex);
1096 rtnl_unlock();
1097}
1098
1099static struct pernet_operations cfg80211_pernet_ops = {
1100 .exit = cfg80211_pernet_exit,
1101};
1102
1103static int __init cfg80211_init(void)
Johannes Berg704232c2007-04-23 12:20:05 -07001104{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001105 int err;
1106
Johannes Berg463d0182009-07-14 00:33:35 +02001107 err = register_pernet_device(&cfg80211_pernet_ops);
1108 if (err)
1109 goto out_fail_pernet;
1110
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001111 err = wiphy_sysfs_init();
Johannes Berg704232c2007-04-23 12:20:05 -07001112 if (err)
1113 goto out_fail_sysfs;
1114
1115 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
1116 if (err)
1117 goto out_fail_notifier;
1118
Johannes Berg55682962007-09-20 13:09:35 -04001119 err = nl80211_init();
1120 if (err)
1121 goto out_fail_nl80211;
1122
Johannes Berg704232c2007-04-23 12:20:05 -07001123 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
1124
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001125 err = regulatory_init();
1126 if (err)
1127 goto out_fail_reg;
1128
Alban Browaeyse60d7442009-11-25 15:13:00 +01001129 cfg80211_wq = create_singlethread_workqueue("cfg80211");
Wei Yongjunf00f1882013-03-20 20:22:54 +08001130 if (!cfg80211_wq) {
1131 err = -ENOMEM;
Alban Browaeyse60d7442009-11-25 15:13:00 +01001132 goto out_fail_wq;
Wei Yongjunf00f1882013-03-20 20:22:54 +08001133 }
Alban Browaeyse60d7442009-11-25 15:13:00 +01001134
Johannes Berg704232c2007-04-23 12:20:05 -07001135 return 0;
1136
Alban Browaeyse60d7442009-11-25 15:13:00 +01001137out_fail_wq:
1138 regulatory_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001139out_fail_reg:
1140 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -04001141out_fail_nl80211:
1142 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
Johannes Berg704232c2007-04-23 12:20:05 -07001143out_fail_notifier:
1144 wiphy_sysfs_exit();
1145out_fail_sysfs:
Johannes Berg463d0182009-07-14 00:33:35 +02001146 unregister_pernet_device(&cfg80211_pernet_ops);
1147out_fail_pernet:
Johannes Berg704232c2007-04-23 12:20:05 -07001148 return err;
1149}
Johannes Berg3a462462007-09-10 13:44:45 +02001150subsys_initcall(cfg80211_init);
Johannes Berg704232c2007-04-23 12:20:05 -07001151
Uwe Kleine-Königf884e382010-06-18 09:38:54 +02001152static void __exit cfg80211_exit(void)
Johannes Berg704232c2007-04-23 12:20:05 -07001153{
1154 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -04001155 nl80211_exit();
Johannes Berg704232c2007-04-23 12:20:05 -07001156 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
1157 wiphy_sysfs_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001158 regulatory_exit();
Johannes Berg463d0182009-07-14 00:33:35 +02001159 unregister_pernet_device(&cfg80211_pernet_ops);
Alban Browaeyse60d7442009-11-25 15:13:00 +01001160 destroy_workqueue(cfg80211_wq);
Johannes Berg704232c2007-04-23 12:20:05 -07001161}
1162module_exit(cfg80211_exit);