blob: f65c6494ede982d431afb794fcd39c8e1118c7a0 [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
7#include <linux/if.h>
8#include <linux/module.h>
9#include <linux/err.h>
Johannes Berg704232c2007-04-23 12:20:05 -070010#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Johannes Berg704232c2007-04-23 12:20:05 -070012#include <linux/nl80211.h>
13#include <linux/debugfs.h>
14#include <linux/notifier.h>
15#include <linux/device.h>
Zhu Yi16a832e2009-08-19 16:08:22 +080016#include <linux/etherdevice.h>
Johannes Berg1f87f7d2009-06-02 13:01:41 +020017#include <linux/rtnetlink.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040018#include <linux/sched.h>
Johannes Berg704232c2007-04-23 12:20:05 -070019#include <net/genetlink.h>
20#include <net/cfg80211.h>
Johannes Berg55682962007-09-20 13:09:35 -040021#include "nl80211.h"
Johannes Berg704232c2007-04-23 12:20:05 -070022#include "core.h"
23#include "sysfs.h"
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -040024#include "debugfs.h"
Johannes Berga9a11622009-07-27 12:01:53 +020025#include "wext-compat.h"
John W. Linville4890e3b2009-09-30 14:50:17 -040026#include "ethtool.h"
Johannes Berg704232c2007-04-23 12:20:05 -070027
28/* name for sysfs, %d is appended */
29#define PHY_NAME "phy"
30
31MODULE_AUTHOR("Johannes Berg");
32MODULE_LICENSE("GPL");
33MODULE_DESCRIPTION("wireless configuration support");
34
Johannes Berg5f2aa252010-01-17 15:49:02 +010035/* RCU-protected (and cfg80211_mutex for writers) */
Johannes Berg79c97e92009-07-07 03:56:12 +020036LIST_HEAD(cfg80211_rdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +020037int cfg80211_rdev_list_generation;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050038
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050039DEFINE_MUTEX(cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -070040
41/* for debugfs */
42static struct dentry *ieee80211_debugfs_dir;
43
Alban Browaeyse60d7442009-11-25 15:13:00 +010044/* for the cleanup, scan and event works */
45struct workqueue_struct *cfg80211_wq;
46
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050047/* requires cfg80211_mutex to be held! */
Johannes Berg79c97e92009-07-07 03:56:12 +020048struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx)
Johannes Berg55682962007-09-20 13:09:35 -040049{
Johannes Berg79c97e92009-07-07 03:56:12 +020050 struct cfg80211_registered_device *result = NULL, *rdev;
Johannes Berg55682962007-09-20 13:09:35 -040051
Luis R. Rodriguez85fd1292009-02-21 00:04:20 -050052 if (!wiphy_idx_valid(wiphy_idx))
53 return NULL;
54
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050055 assert_cfg80211_lock();
56
Johannes Berg79c97e92009-07-07 03:56:12 +020057 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
58 if (rdev->wiphy_idx == wiphy_idx) {
59 result = rdev;
Johannes Berg55682962007-09-20 13:09:35 -040060 break;
61 }
62 }
63
64 return result;
65}
66
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050067int get_wiphy_idx(struct wiphy *wiphy)
68{
Johannes Berg79c97e92009-07-07 03:56:12 +020069 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050070 if (!wiphy)
71 return WIPHY_IDX_STALE;
Johannes Berg79c97e92009-07-07 03:56:12 +020072 rdev = wiphy_to_dev(wiphy);
73 return rdev->wiphy_idx;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050074}
75
Johannes Berg79c97e92009-07-07 03:56:12 +020076/* requires cfg80211_rdev_mutex to be held! */
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050077struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
78{
Johannes Berg79c97e92009-07-07 03:56:12 +020079 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050080
81 if (!wiphy_idx_valid(wiphy_idx))
82 return NULL;
83
84 assert_cfg80211_lock();
85
Johannes Berg79c97e92009-07-07 03:56:12 +020086 rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx);
87 if (!rdev)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050088 return NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +020089 return &rdev->wiphy;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050090}
91
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050092/* requires cfg80211_mutex to be held! */
Johannes Berg4bbf4d52009-03-24 09:35:46 +010093struct cfg80211_registered_device *
Johannes Berg79c97e92009-07-07 03:56:12 +020094__cfg80211_rdev_from_info(struct genl_info *info)
Johannes Berg55682962007-09-20 13:09:35 -040095{
96 int ifindex;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -050097 struct cfg80211_registered_device *bywiphyidx = NULL, *byifidx = NULL;
Johannes Berg55682962007-09-20 13:09:35 -040098 struct net_device *dev;
99 int err = -EINVAL;
100
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500101 assert_cfg80211_lock();
102
Johannes Berg55682962007-09-20 13:09:35 -0400103 if (info->attrs[NL80211_ATTR_WIPHY]) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200104 bywiphyidx = cfg80211_rdev_by_wiphy_idx(
Johannes Berg55682962007-09-20 13:09:35 -0400105 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY]));
106 err = -ENODEV;
107 }
108
109 if (info->attrs[NL80211_ATTR_IFINDEX]) {
110 ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
Johannes Berg463d0182009-07-14 00:33:35 +0200111 dev = dev_get_by_index(genl_info_net(info), ifindex);
Johannes Berg55682962007-09-20 13:09:35 -0400112 if (dev) {
113 if (dev->ieee80211_ptr)
114 byifidx =
115 wiphy_to_dev(dev->ieee80211_ptr->wiphy);
116 dev_put(dev);
117 }
118 err = -ENODEV;
119 }
120
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500121 if (bywiphyidx && byifidx) {
122 if (bywiphyidx != byifidx)
Johannes Berg55682962007-09-20 13:09:35 -0400123 return ERR_PTR(-EINVAL);
124 else
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500125 return bywiphyidx; /* == byifidx */
Johannes Berg55682962007-09-20 13:09:35 -0400126 }
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500127 if (bywiphyidx)
128 return bywiphyidx;
Johannes Berg55682962007-09-20 13:09:35 -0400129
130 if (byifidx)
131 return byifidx;
132
133 return ERR_PTR(err);
134}
135
136struct cfg80211_registered_device *
137cfg80211_get_dev_from_info(struct genl_info *info)
138{
Johannes Berg79c97e92009-07-07 03:56:12 +0200139 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400140
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500141 mutex_lock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200142 rdev = __cfg80211_rdev_from_info(info);
Johannes Berg55682962007-09-20 13:09:35 -0400143
144 /* if it is not an error we grab the lock on
145 * it to assure it won't be going away while
146 * we operate on it */
Johannes Berg79c97e92009-07-07 03:56:12 +0200147 if (!IS_ERR(rdev))
148 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400149
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500150 mutex_unlock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400151
Johannes Berg79c97e92009-07-07 03:56:12 +0200152 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400153}
154
155struct cfg80211_registered_device *
Johannes Berg463d0182009-07-14 00:33:35 +0200156cfg80211_get_dev_from_ifindex(struct net *net, int ifindex)
Johannes Berg55682962007-09-20 13:09:35 -0400157{
Johannes Berg79c97e92009-07-07 03:56:12 +0200158 struct cfg80211_registered_device *rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400159 struct net_device *dev;
160
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500161 mutex_lock(&cfg80211_mutex);
Johannes Berg463d0182009-07-14 00:33:35 +0200162 dev = dev_get_by_index(net, ifindex);
Johannes Berg55682962007-09-20 13:09:35 -0400163 if (!dev)
164 goto out;
165 if (dev->ieee80211_ptr) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200166 rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
167 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400168 } else
Johannes Berg79c97e92009-07-07 03:56:12 +0200169 rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400170 dev_put(dev);
171 out:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500172 mutex_unlock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200173 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400174}
175
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100176/* requires cfg80211_mutex to be held */
Johannes Berg55682962007-09-20 13:09:35 -0400177int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
178 char *newname)
179{
Johannes Berg79c97e92009-07-07 03:56:12 +0200180 struct cfg80211_registered_device *rdev2;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500181 int wiphy_idx, taken = -1, result, digits;
Johannes Berg55682962007-09-20 13:09:35 -0400182
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100183 assert_cfg80211_lock();
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700184
Johannes Berg55682962007-09-20 13:09:35 -0400185 /* prohibit calling the thing phy%d when %d is not its number */
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500186 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
187 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
188 /* count number of places needed to print wiphy_idx */
Johannes Berg55682962007-09-20 13:09:35 -0400189 digits = 1;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500190 while (wiphy_idx /= 10)
Johannes Berg55682962007-09-20 13:09:35 -0400191 digits++;
192 /*
193 * deny the name if it is phy<idx> where <idx> is printed
194 * without leading zeroes. taken == strlen(newname) here
195 */
196 if (taken == strlen(PHY_NAME) + digits)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100197 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -0400198 }
199
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700200
201 /* Ignore nop renames */
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700202 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100203 return 0;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700204
205 /* Ensure another device does not already have this name. */
Johannes Berg79c97e92009-07-07 03:56:12 +0200206 list_for_each_entry(rdev2, &cfg80211_rdev_list, list)
207 if (strcmp(newname, dev_name(&rdev2->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100208 return -EINVAL;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700209
Johannes Berg55682962007-09-20 13:09:35 -0400210 result = device_rename(&rdev->wiphy.dev, newname);
211 if (result)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100212 return result;
Johannes Berg55682962007-09-20 13:09:35 -0400213
Johannes Berg33c03602008-10-08 10:23:48 +0200214 if (rdev->wiphy.debugfsdir &&
215 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
Johannes Berg55682962007-09-20 13:09:35 -0400216 rdev->wiphy.debugfsdir,
217 rdev->wiphy.debugfsdir->d_parent,
218 newname))
219 printk(KERN_ERR "cfg80211: failed to rename debugfs dir to %s!\n",
220 newname);
221
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100222 nl80211_notify_dev_rename(rdev);
Johannes Berg55682962007-09-20 13:09:35 -0400223
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100224 return 0;
Johannes Berg55682962007-09-20 13:09:35 -0400225}
226
Johannes Berg463d0182009-07-14 00:33:35 +0200227int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
228 struct net *net)
229{
230 struct wireless_dev *wdev;
231 int err = 0;
232
Johannes Berg5be83de2009-11-19 00:56:28 +0100233 if (!(rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK))
Johannes Berg463d0182009-07-14 00:33:35 +0200234 return -EOPNOTSUPP;
235
236 list_for_each_entry(wdev, &rdev->netdev_list, list) {
237 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
238 err = dev_change_net_namespace(wdev->netdev, net, "wlan%d");
239 if (err)
240 break;
241 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
242 }
243
244 if (err) {
245 /* failed -- clean up to old netns */
246 net = wiphy_net(&rdev->wiphy);
247
248 list_for_each_entry_continue_reverse(wdev, &rdev->netdev_list,
249 list) {
250 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
251 err = dev_change_net_namespace(wdev->netdev, net,
252 "wlan%d");
253 WARN_ON(err);
254 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
255 }
256 }
257
258 wiphy_net_set(&rdev->wiphy, net);
259
260 return err;
261}
262
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200263static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
264{
Johannes Berg79c97e92009-07-07 03:56:12 +0200265 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200266
Johannes Berg79c97e92009-07-07 03:56:12 +0200267 rdev->ops->rfkill_poll(&rdev->wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200268}
269
270static int cfg80211_rfkill_set_block(void *data, bool blocked)
271{
Johannes Berg79c97e92009-07-07 03:56:12 +0200272 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200273 struct wireless_dev *wdev;
274
275 if (!blocked)
276 return 0;
277
278 rtnl_lock();
Johannes Berg79c97e92009-07-07 03:56:12 +0200279 mutex_lock(&rdev->devlist_mtx);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200280
Johannes Berg79c97e92009-07-07 03:56:12 +0200281 list_for_each_entry(wdev, &rdev->netdev_list, list)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200282 dev_close(wdev->netdev);
283
Johannes Berg79c97e92009-07-07 03:56:12 +0200284 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200285 rtnl_unlock();
286
287 return 0;
288}
289
290static void cfg80211_rfkill_sync_work(struct work_struct *work)
291{
Johannes Berg79c97e92009-07-07 03:56:12 +0200292 struct cfg80211_registered_device *rdev;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200293
Johannes Berg79c97e92009-07-07 03:56:12 +0200294 rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync);
295 cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill));
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200296}
297
Johannes Berg667503dd2009-07-07 03:56:11 +0200298static void cfg80211_event_work(struct work_struct *work)
299{
300 struct cfg80211_registered_device *rdev;
Johannes Berg667503dd2009-07-07 03:56:11 +0200301
302 rdev = container_of(work, struct cfg80211_registered_device,
303 event_work);
304
305 rtnl_lock();
306 cfg80211_lock_rdev(rdev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200307
Johannes Berg3d54d252009-08-21 14:51:05 +0200308 cfg80211_process_rdev_events(rdev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200309 cfg80211_unlock_rdev(rdev);
310 rtnl_unlock();
311}
312
Johannes Berg704232c2007-04-23 12:20:05 -0700313/* exported functions */
314
David Kilroy3dcf6702009-05-16 23:13:46 +0100315struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
Johannes Berg704232c2007-04-23 12:20:05 -0700316{
Denis ChengRq638af072008-09-23 02:35:37 +0800317 static int wiphy_counter;
318
Johannes Berg79c97e92009-07-07 03:56:12 +0200319 struct cfg80211_registered_device *rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700320 int alloc_size;
321
Johannes Berg0b20633d2009-07-07 03:56:13 +0200322 WARN_ON(ops->add_key && (!ops->del_key || !ops->set_default_key));
323 WARN_ON(ops->auth && (!ops->assoc || !ops->deauth || !ops->disassoc));
324 WARN_ON(ops->connect && !ops->disconnect);
325 WARN_ON(ops->join_ibss && !ops->leave_ibss);
326 WARN_ON(ops->add_virtual_intf && !ops->del_virtual_intf);
327 WARN_ON(ops->add_station && !ops->del_station);
328 WARN_ON(ops->add_mpath && !ops->del_mpath);
Johannes Berg41ade002007-12-19 02:03:29 +0100329
Johannes Berg79c97e92009-07-07 03:56:12 +0200330 alloc_size = sizeof(*rdev) + sizeof_priv;
Johannes Berg704232c2007-04-23 12:20:05 -0700331
Johannes Berg79c97e92009-07-07 03:56:12 +0200332 rdev = kzalloc(alloc_size, GFP_KERNEL);
333 if (!rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700334 return NULL;
335
Johannes Berg79c97e92009-07-07 03:56:12 +0200336 rdev->ops = ops;
Johannes Berg704232c2007-04-23 12:20:05 -0700337
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500338 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700339
Johannes Berg79c97e92009-07-07 03:56:12 +0200340 rdev->wiphy_idx = wiphy_counter++;
Johannes Berga4d73ee2007-04-26 20:50:35 -0700341
Johannes Berg79c97e92009-07-07 03:56:12 +0200342 if (unlikely(!wiphy_idx_valid(rdev->wiphy_idx))) {
Denis ChengRq638af072008-09-23 02:35:37 +0800343 wiphy_counter--;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500344 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700345 /* ugh, wrapped! */
Johannes Berg79c97e92009-07-07 03:56:12 +0200346 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700347 return NULL;
348 }
Johannes Berg704232c2007-04-23 12:20:05 -0700349
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500350 mutex_unlock(&cfg80211_mutex);
Denis ChengRq638af072008-09-23 02:35:37 +0800351
Johannes Berg704232c2007-04-23 12:20:05 -0700352 /* give it a proper name */
Johannes Berg79c97e92009-07-07 03:56:12 +0200353 dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx);
Johannes Berg704232c2007-04-23 12:20:05 -0700354
Johannes Berg79c97e92009-07-07 03:56:12 +0200355 mutex_init(&rdev->mtx);
356 mutex_init(&rdev->devlist_mtx);
357 INIT_LIST_HEAD(&rdev->netdev_list);
358 spin_lock_init(&rdev->bss_lock);
359 INIT_LIST_HEAD(&rdev->bss_list);
360 INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done);
Johannes Berg704232c2007-04-23 12:20:05 -0700361
Johannes Berg3d23e342009-09-29 23:27:28 +0200362#ifdef CONFIG_CFG80211_WEXT
363 rdev->wiphy.wext = &cfg80211_wext_handler;
364#endif
365
Johannes Berg79c97e92009-07-07 03:56:12 +0200366 device_initialize(&rdev->wiphy.dev);
367 rdev->wiphy.dev.class = &ieee80211_class;
368 rdev->wiphy.dev.platform_data = rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700369
Johannes Berg5be83de2009-11-19 00:56:28 +0100370#ifdef CONFIG_CFG80211_DEFAULT_PS
371 rdev->wiphy.flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
372#endif
Johannes Berg16cb9d42009-08-12 23:33:20 +0200373
Johannes Berg463d0182009-07-14 00:33:35 +0200374 wiphy_net_set(&rdev->wiphy, &init_net);
375
Johannes Berg79c97e92009-07-07 03:56:12 +0200376 rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block;
377 rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev),
378 &rdev->wiphy.dev, RFKILL_TYPE_WLAN,
379 &rdev->rfkill_ops, rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200380
Johannes Berg79c97e92009-07-07 03:56:12 +0200381 if (!rdev->rfkill) {
382 kfree(rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200383 return NULL;
384 }
385
Johannes Berg79c97e92009-07-07 03:56:12 +0200386 INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work);
387 INIT_WORK(&rdev->conn_work, cfg80211_conn_work);
388 INIT_WORK(&rdev->event_work, cfg80211_event_work);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200389
Johannes Bergad002392009-08-18 19:51:57 +0200390 init_waitqueue_head(&rdev->dev_wait);
391
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200392 /*
393 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
394 * Fragmentation and RTS threshold are disabled by default with the
395 * special -1 value.
396 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200397 rdev->wiphy.retry_short = 7;
398 rdev->wiphy.retry_long = 4;
399 rdev->wiphy.frag_threshold = (u32) -1;
400 rdev->wiphy.rts_threshold = (u32) -1;
Lukáš Turek81077e82009-12-21 22:50:47 +0100401 rdev->wiphy.coverage_class = 0;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200402
Johannes Berg79c97e92009-07-07 03:56:12 +0200403 return &rdev->wiphy;
Johannes Berg704232c2007-04-23 12:20:05 -0700404}
405EXPORT_SYMBOL(wiphy_new);
406
407int wiphy_register(struct wiphy *wiphy)
408{
Johannes Berg79c97e92009-07-07 03:56:12 +0200409 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700410 int res;
Johannes Berg8318d782008-01-24 19:38:38 +0100411 enum ieee80211_band band;
412 struct ieee80211_supported_band *sband;
413 bool have_band = false;
414 int i;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700415 u16 ifmodes = wiphy->interface_modes;
416
Johannes Bergef15aac2010-01-20 12:02:33 +0100417 if (WARN_ON(wiphy->addresses && !wiphy->n_addresses))
418 return -EINVAL;
419
420 if (WARN_ON(wiphy->addresses &&
421 !is_zero_ether_addr(wiphy->perm_addr) &&
422 memcmp(wiphy->perm_addr, wiphy->addresses[0].addr,
423 ETH_ALEN)))
424 return -EINVAL;
425
426 if (wiphy->addresses)
427 memcpy(wiphy->perm_addr, wiphy->addresses[0].addr, ETH_ALEN);
428
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700429 /* sanity check ifmodes */
430 WARN_ON(!ifmodes);
431 ifmodes &= ((1 << __NL80211_IFTYPE_AFTER_LAST) - 1) & ~1;
432 if (WARN_ON(ifmodes != wiphy->interface_modes))
433 wiphy->interface_modes = ifmodes;
Johannes Berg8318d782008-01-24 19:38:38 +0100434
435 /* sanity check supported bands/channels */
436 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
437 sband = wiphy->bands[band];
438 if (!sband)
439 continue;
440
441 sband->band = band;
442
Johannes Berg881d9482009-01-21 15:13:48 +0100443 if (WARN_ON(!sband->n_channels || !sband->n_bitrates))
Johannes Berg8318d782008-01-24 19:38:38 +0100444 return -EINVAL;
Johannes Berg881d9482009-01-21 15:13:48 +0100445
446 /*
447 * Since we use a u32 for rate bitmaps in
448 * ieee80211_get_response_rate, we cannot
449 * have more than 32 legacy rates.
450 */
451 if (WARN_ON(sband->n_bitrates > 32))
452 return -EINVAL;
Johannes Berg8318d782008-01-24 19:38:38 +0100453
454 for (i = 0; i < sband->n_channels; i++) {
455 sband->channels[i].orig_flags =
456 sband->channels[i].flags;
457 sband->channels[i].orig_mag =
458 sband->channels[i].max_antenna_gain;
459 sband->channels[i].orig_mpwr =
460 sband->channels[i].max_power;
461 sband->channels[i].band = band;
462 }
463
464 have_band = true;
465 }
466
467 if (!have_band) {
468 WARN_ON(1);
469 return -EINVAL;
470 }
471
472 /* check and set up bitrates */
473 ieee80211_set_bitrate_flags(wiphy);
474
Maxime Bizon5a652052010-07-21 17:21:38 +0200475 mutex_lock(&cfg80211_mutex);
476
Johannes Berg79c97e92009-07-07 03:56:12 +0200477 res = device_add(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700478 if (res)
Maxime Bizon5a652052010-07-21 17:21:38 +0200479 goto out_unlock;
Johannes Berg704232c2007-04-23 12:20:05 -0700480
Johannes Berg79c97e92009-07-07 03:56:12 +0200481 res = rfkill_register(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200482 if (res)
483 goto out_rm_dev;
484
Johannes Berg2f0accc2009-06-10 16:50:29 +0200485 /* set up regulatory info */
486 wiphy_update_regulatory(wiphy, NL80211_REGDOM_SET_BY_CORE);
487
Johannes Berg5f2aa252010-01-17 15:49:02 +0100488 list_add_rcu(&rdev->list, &cfg80211_rdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200489 cfg80211_rdev_list_generation++;
Johannes Berg704232c2007-04-23 12:20:05 -0700490
491 /* add to debugfs */
Johannes Berg79c97e92009-07-07 03:56:12 +0200492 rdev->wiphy.debugfsdir =
493 debugfs_create_dir(wiphy_name(&rdev->wiphy),
Johannes Berg704232c2007-04-23 12:20:05 -0700494 ieee80211_debugfs_dir);
Johannes Berg79c97e92009-07-07 03:56:12 +0200495 if (IS_ERR(rdev->wiphy.debugfsdir))
496 rdev->wiphy.debugfsdir = NULL;
Johannes Berg704232c2007-04-23 12:20:05 -0700497
Johannes Berg5be83de2009-11-19 00:56:28 +0100498 if (wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) {
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -0400499 struct regulatory_request request;
500
501 request.wiphy_idx = get_wiphy_idx(wiphy);
502 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
503 request.alpha2[0] = '9';
504 request.alpha2[1] = '9';
505
506 nl80211_send_reg_change_event(&request);
507 }
508
Johannes Berg79c97e92009-07-07 03:56:12 +0200509 cfg80211_debugfs_rdev_add(rdev);
Maxime Bizon5a652052010-07-21 17:21:38 +0200510 mutex_unlock(&cfg80211_mutex);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400511
Johannes Berg2f0accc2009-06-10 16:50:29 +0200512 return 0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200513
Maxime Bizon5a652052010-07-21 17:21:38 +0200514out_rm_dev:
Johannes Berg79c97e92009-07-07 03:56:12 +0200515 device_del(&rdev->wiphy.dev);
Maxime Bizon5a652052010-07-21 17:21:38 +0200516
517out_unlock:
518 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700519 return res;
520}
521EXPORT_SYMBOL(wiphy_register);
522
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200523void wiphy_rfkill_start_polling(struct wiphy *wiphy)
524{
Johannes Berg79c97e92009-07-07 03:56:12 +0200525 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200526
Johannes Berg79c97e92009-07-07 03:56:12 +0200527 if (!rdev->ops->rfkill_poll)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200528 return;
Johannes Berg79c97e92009-07-07 03:56:12 +0200529 rdev->rfkill_ops.poll = cfg80211_rfkill_poll;
530 rfkill_resume_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200531}
532EXPORT_SYMBOL(wiphy_rfkill_start_polling);
533
534void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
535{
Johannes Berg79c97e92009-07-07 03:56:12 +0200536 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200537
Johannes Berg79c97e92009-07-07 03:56:12 +0200538 rfkill_pause_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200539}
540EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
541
Johannes Berg704232c2007-04-23 12:20:05 -0700542void wiphy_unregister(struct wiphy *wiphy)
543{
Johannes Berg79c97e92009-07-07 03:56:12 +0200544 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700545
Johannes Berg79c97e92009-07-07 03:56:12 +0200546 rfkill_unregister(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200547
Johannes Bergf16bfc12007-04-26 20:51:12 -0700548 /* protect the device list */
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500549 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700550
Johannes Bergad002392009-08-18 19:51:57 +0200551 wait_event(rdev->dev_wait, ({
552 int __count;
553 mutex_lock(&rdev->devlist_mtx);
554 __count = rdev->opencount;
555 mutex_unlock(&rdev->devlist_mtx);
556 __count == 0;}));
557
558 mutex_lock(&rdev->devlist_mtx);
Johannes Berg79c97e92009-07-07 03:56:12 +0200559 BUG_ON(!list_empty(&rdev->netdev_list));
Johannes Bergad002392009-08-18 19:51:57 +0200560 mutex_unlock(&rdev->devlist_mtx);
561
562 /*
563 * First remove the hardware from everywhere, this makes
564 * it impossible to find from userspace.
565 */
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100566 debugfs_remove_recursive(rdev->wiphy.debugfsdir);
Johannes Berg5f2aa252010-01-17 15:49:02 +0100567 list_del_rcu(&rdev->list);
568 synchronize_rcu();
Johannes Bergf16bfc12007-04-26 20:51:12 -0700569
570 /*
Johannes Berg79c97e92009-07-07 03:56:12 +0200571 * Try to grab rdev->mtx. If a command is still in progress,
Johannes Bergf16bfc12007-04-26 20:51:12 -0700572 * hopefully the driver will refuse it since it's tearing
573 * down the device already. We wait for this command to complete
574 * before unlinking the item from the list.
575 * Note: as codified by the BUG_ON above we cannot get here if
Johannes Bergad002392009-08-18 19:51:57 +0200576 * a virtual interface is still present. Hence, we can only get
577 * to lock contention here if userspace issues a command that
578 * identified the hardware by wiphy index.
Johannes Bergf16bfc12007-04-26 20:51:12 -0700579 */
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200580 cfg80211_lock_rdev(rdev);
Johannes Bergad002392009-08-18 19:51:57 +0200581 /* nothing */
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200582 cfg80211_unlock_rdev(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700583
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800584 /* If this device got a regulatory hint tell core its
585 * free to listen now to a new shiny device regulatory hint */
586 reg_device_remove(wiphy);
587
Johannes Bergf5ea9122009-08-07 16:17:38 +0200588 cfg80211_rdev_list_generation++;
Johannes Berg79c97e92009-07-07 03:56:12 +0200589 device_del(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700590
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500591 mutex_unlock(&cfg80211_mutex);
Johannes Berg66825882009-07-13 13:24:44 +0200592
Johannes Berg36e6fea2009-08-12 22:21:21 +0200593 flush_work(&rdev->scan_done_wk);
Johannes Berg66825882009-07-13 13:24:44 +0200594 cancel_work_sync(&rdev->conn_work);
Johannes Berg66825882009-07-13 13:24:44 +0200595 flush_work(&rdev->event_work);
Johannes Berg704232c2007-04-23 12:20:05 -0700596}
597EXPORT_SYMBOL(wiphy_unregister);
598
Johannes Berg79c97e92009-07-07 03:56:12 +0200599void cfg80211_dev_free(struct cfg80211_registered_device *rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700600{
Johannes Berg2a519312009-02-10 21:25:55 +0100601 struct cfg80211_internal_bss *scan, *tmp;
Johannes Berg79c97e92009-07-07 03:56:12 +0200602 rfkill_destroy(rdev->rfkill);
603 mutex_destroy(&rdev->mtx);
604 mutex_destroy(&rdev->devlist_mtx);
605 list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list)
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100606 cfg80211_put_bss(&scan->pub);
Johannes Berg79c97e92009-07-07 03:56:12 +0200607 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700608}
609
610void wiphy_free(struct wiphy *wiphy)
611{
612 put_device(&wiphy->dev);
613}
614EXPORT_SYMBOL(wiphy_free);
615
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200616void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
617{
Johannes Berg79c97e92009-07-07 03:56:12 +0200618 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200619
Johannes Berg79c97e92009-07-07 03:56:12 +0200620 if (rfkill_set_hw_state(rdev->rfkill, blocked))
621 schedule_work(&rdev->rfkill_sync);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200622}
623EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
624
Johannes Bergad002392009-08-18 19:51:57 +0200625static void wdev_cleanup_work(struct work_struct *work)
626{
627 struct wireless_dev *wdev;
628 struct cfg80211_registered_device *rdev;
629
630 wdev = container_of(work, struct wireless_dev, cleanup_work);
631 rdev = wiphy_to_dev(wdev->wiphy);
632
633 cfg80211_lock_rdev(rdev);
634
635 if (WARN_ON(rdev->scan_req && rdev->scan_req->dev == wdev->netdev)) {
636 rdev->scan_req->aborted = true;
Johannes Berg01a0ac42009-08-20 21:36:16 +0200637 ___cfg80211_scan_done(rdev, true);
Johannes Bergad002392009-08-18 19:51:57 +0200638 }
639
640 cfg80211_unlock_rdev(rdev);
641
642 mutex_lock(&rdev->devlist_mtx);
643 rdev->opencount--;
644 mutex_unlock(&rdev->devlist_mtx);
645 wake_up(&rdev->dev_wait);
646
647 dev_put(wdev->netdev);
648}
649
Marcel Holtmann053a93d2009-10-02 05:15:28 +0000650static struct device_type wiphy_type = {
651 .name = "wlan",
652};
653
Johannes Berg704232c2007-04-23 12:20:05 -0700654static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
655 unsigned long state,
656 void *ndev)
657{
658 struct net_device *dev = ndev;
Johannes Berg2a783c12009-07-01 21:26:45 +0200659 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg704232c2007-04-23 12:20:05 -0700660 struct cfg80211_registered_device *rdev;
661
Johannes Berg2a783c12009-07-01 21:26:45 +0200662 if (!wdev)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200663 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700664
Johannes Berg2a783c12009-07-01 21:26:45 +0200665 rdev = wiphy_to_dev(wdev->wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700666
Johannes Berg2a783c12009-07-01 21:26:45 +0200667 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
Johannes Berg60719ff2008-09-16 14:55:09 +0200668
Johannes Berg704232c2007-04-23 12:20:05 -0700669 switch (state) {
Marcel Holtmann053a93d2009-10-02 05:15:28 +0000670 case NETDEV_POST_INIT:
671 SET_NETDEV_DEVTYPE(dev, &wiphy_type);
672 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700673 case NETDEV_REGISTER:
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200674 /*
675 * NB: cannot take rdev->mtx here because this may be
676 * called within code protected by it when interfaces
677 * are added with nl80211.
678 */
Johannes Berg667503dd2009-07-07 03:56:11 +0200679 mutex_init(&wdev->mtx);
Johannes Bergad002392009-08-18 19:51:57 +0200680 INIT_WORK(&wdev->cleanup_work, wdev_cleanup_work);
Johannes Berg667503dd2009-07-07 03:56:11 +0200681 INIT_LIST_HEAD(&wdev->event_list);
682 spin_lock_init(&wdev->event_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200683 INIT_LIST_HEAD(&wdev->action_registrations);
684 spin_lock_init(&wdev->action_registrations_lock);
685
Johannes Berg704232c2007-04-23 12:20:05 -0700686 mutex_lock(&rdev->devlist_mtx);
Johannes Berg5f2aa252010-01-17 15:49:02 +0100687 list_add_rcu(&wdev->list, &rdev->netdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200688 rdev->devlist_generation++;
Johannes Berg463d0182009-07-14 00:33:35 +0200689 /* can only change netns with wiphy */
690 dev->features |= NETIF_F_NETNS_LOCAL;
691
Johannes Berg704232c2007-04-23 12:20:05 -0700692 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
693 "phy80211")) {
694 printk(KERN_ERR "wireless: failed to add phy80211 "
695 "symlink to netdev!\n");
696 }
Johannes Berg2a783c12009-07-01 21:26:45 +0200697 wdev->netdev = dev;
Samuel Ortizb23aa672009-07-01 21:26:54 +0200698 wdev->sme_state = CFG80211_SME_IDLE;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200699 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg3d23e342009-09-29 23:27:28 +0200700#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a783c12009-07-01 21:26:45 +0200701 wdev->wext.default_key = -1;
702 wdev->wext.default_mgmt_key = -1;
Johannes Bergf2129352009-07-01 21:26:56 +0200703 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Kalle Valoffb9eb32010-02-17 17:58:10 +0200704#endif
705
Johannes Berg5be83de2009-11-19 00:56:28 +0100706 if (wdev->wiphy->flags & WIPHY_FLAG_PS_ON_BY_DEFAULT)
Kalle Valoffb9eb32010-02-17 17:58:10 +0200707 wdev->ps = true;
Johannes Berg5be83de2009-11-19 00:56:28 +0100708 else
Kalle Valoffb9eb32010-02-17 17:58:10 +0200709 wdev->ps = false;
Juuso Oikarinen9043f3b2010-04-27 12:47:41 +0300710 /* allow mac80211 to determine the timeout */
711 wdev->ps_timeout = -1;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200712 if (rdev->ops->set_power_mgmt)
713 if (rdev->ops->set_power_mgmt(wdev->wiphy, dev,
Kalle Valoffb9eb32010-02-17 17:58:10 +0200714 wdev->ps,
715 wdev->ps_timeout)) {
Johannes Bergbc92afd2009-07-01 21:26:57 +0200716 /* assume this means it's off */
Kalle Valoffb9eb32010-02-17 17:58:10 +0200717 wdev->ps = false;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200718 }
Kalle Valoffb9eb32010-02-17 17:58:10 +0200719
John W. Linville4890e3b2009-09-30 14:50:17 -0400720 if (!dev->ethtool_ops)
721 dev->ethtool_ops = &cfg80211_ethtool_ops;
Johannes Bergad4bb6f2009-11-19 00:56:30 +0100722
723 if ((wdev->iftype == NL80211_IFTYPE_STATION ||
724 wdev->iftype == NL80211_IFTYPE_ADHOC) && !wdev->use_4addr)
725 dev->priv_flags |= IFF_DONT_BRIDGE;
Johannes Berg704232c2007-04-23 12:20:05 -0700726 break;
Johannes Berg04a773a2009-04-19 21:24:32 +0200727 case NETDEV_GOING_DOWN:
Samuel Ortizb23aa672009-07-01 21:26:54 +0200728 switch (wdev->iftype) {
729 case NL80211_IFTYPE_ADHOC:
730 cfg80211_leave_ibss(rdev, dev, true);
731 break;
732 case NL80211_IFTYPE_STATION:
Johannes Berg667503dd2009-07-07 03:56:11 +0200733 wdev_lock(wdev);
Johannes Berg3d23e342009-09-29 23:27:28 +0200734#ifdef CONFIG_CFG80211_WEXT
Johannes Bergf2129352009-07-01 21:26:56 +0200735 kfree(wdev->wext.ie);
736 wdev->wext.ie = NULL;
737 wdev->wext.ie_len = 0;
Johannes Berg0eb14642009-07-02 15:49:03 +0200738 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Johannes Bergf2129352009-07-01 21:26:56 +0200739#endif
Johannes Berg667503dd2009-07-07 03:56:11 +0200740 __cfg80211_disconnect(rdev, dev,
741 WLAN_REASON_DEAUTH_LEAVING, true);
Johannes Berg19957bb2009-07-02 17:20:43 +0200742 cfg80211_mlme_down(rdev, dev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200743 wdev_unlock(wdev);
Samuel Ortizb23aa672009-07-01 21:26:54 +0200744 break;
745 default:
746 break;
747 }
Johannes Berg01a0ac42009-08-20 21:36:16 +0200748 break;
749 case NETDEV_DOWN:
Johannes Bergad002392009-08-18 19:51:57 +0200750 dev_hold(dev);
Alban Browaeyse60d7442009-11-25 15:13:00 +0100751 queue_work(cfg80211_wq, &wdev->cleanup_work);
Johannes Berg04a773a2009-04-19 21:24:32 +0200752 break;
753 case NETDEV_UP:
Johannes Bergad002392009-08-18 19:51:57 +0200754 /*
755 * If we have a really quick DOWN/UP succession we may
756 * have this work still pending ... cancel it and see
757 * if it was pending, in which case we need to account
758 * for some of the work it would have done.
759 */
760 if (cancel_work_sync(&wdev->cleanup_work)) {
761 mutex_lock(&rdev->devlist_mtx);
762 rdev->opencount--;
763 mutex_unlock(&rdev->devlist_mtx);
764 dev_put(dev);
765 }
Johannes Berg667503dd2009-07-07 03:56:11 +0200766 cfg80211_lock_rdev(rdev);
Johannes Bergaee83ea2009-08-09 11:51:29 +0200767 mutex_lock(&rdev->devlist_mtx);
Johannes Berg8c5d9802010-01-11 16:14:57 +0100768#ifdef CONFIG_CFG80211_WEXT
Johannes Berg667503dd2009-07-07 03:56:11 +0200769 wdev_lock(wdev);
Johannes Bergf2129352009-07-01 21:26:56 +0200770 switch (wdev->iftype) {
771 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200772 cfg80211_ibss_wext_join(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200773 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200774 case NL80211_IFTYPE_STATION:
Johannes Bergfffd0932009-07-08 14:22:54 +0200775 cfg80211_mgd_wext_connect(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200776 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200777 default:
778 break;
779 }
Johannes Berg667503dd2009-07-07 03:56:11 +0200780 wdev_unlock(wdev);
Johannes Berg8c5d9802010-01-11 16:14:57 +0100781#endif
Johannes Bergad002392009-08-18 19:51:57 +0200782 rdev->opencount++;
Johannes Bergaee83ea2009-08-09 11:51:29 +0200783 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200784 cfg80211_unlock_rdev(rdev);
Johannes Berg2a783c12009-07-01 21:26:45 +0200785 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700786 case NETDEV_UNREGISTER:
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200787 /*
788 * NB: cannot take rdev->mtx here because this may be
789 * called within code protected by it when interfaces
790 * are removed with nl80211.
791 */
Johannes Berg704232c2007-04-23 12:20:05 -0700792 mutex_lock(&rdev->devlist_mtx);
Johannes Berge40cbdac2009-07-30 14:04:01 +0200793 /*
794 * It is possible to get NETDEV_UNREGISTER
795 * multiple times. To detect that, check
796 * that the interface is still on the list
797 * of registered interfaces, and only then
798 * remove and clean it up.
799 */
Johannes Berg2a783c12009-07-01 21:26:45 +0200800 if (!list_empty(&wdev->list)) {
Johannes Berg704232c2007-04-23 12:20:05 -0700801 sysfs_remove_link(&dev->dev.kobj, "phy80211");
Johannes Berg5f2aa252010-01-17 15:49:02 +0100802 list_del_rcu(&wdev->list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200803 rdev->devlist_generation++;
Jouni Malinen026331c2010-02-15 12:53:10 +0200804 cfg80211_mlme_purge_actions(wdev);
Johannes Berg3d23e342009-09-29 23:27:28 +0200805#ifdef CONFIG_CFG80211_WEXT
Johannes Berge40cbdac2009-07-30 14:04:01 +0200806 kfree(wdev->wext.keys);
807#endif
Johannes Berg704232c2007-04-23 12:20:05 -0700808 }
809 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg5f2aa252010-01-17 15:49:02 +0100810 /*
811 * synchronise (so that we won't find this netdev
812 * from other code any more) and then clear the list
813 * head so that the above code can safely check for
814 * !list_empty() to avoid double-cleanup.
815 */
816 synchronize_rcu();
817 INIT_LIST_HEAD(&wdev->list);
Johannes Berg704232c2007-04-23 12:20:05 -0700818 break;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200819 case NETDEV_PRE_UP:
Johannes Berg0b20633d2009-07-07 03:56:13 +0200820 if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)))
821 return notifier_from_errno(-EOPNOTSUPP);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200822 if (rfkill_blocked(rdev->rfkill))
823 return notifier_from_errno(-ERFKILL);
824 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700825 }
826
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200827 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700828}
829
830static struct notifier_block cfg80211_netdev_notifier = {
831 .notifier_call = cfg80211_netdev_notifier_call,
832};
833
Johannes Berg463d0182009-07-14 00:33:35 +0200834static void __net_exit cfg80211_pernet_exit(struct net *net)
835{
836 struct cfg80211_registered_device *rdev;
837
838 rtnl_lock();
839 mutex_lock(&cfg80211_mutex);
840 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
841 if (net_eq(wiphy_net(&rdev->wiphy), net))
842 WARN_ON(cfg80211_switch_netns(rdev, &init_net));
843 }
844 mutex_unlock(&cfg80211_mutex);
845 rtnl_unlock();
846}
847
848static struct pernet_operations cfg80211_pernet_ops = {
849 .exit = cfg80211_pernet_exit,
850};
851
852static int __init cfg80211_init(void)
Johannes Berg704232c2007-04-23 12:20:05 -0700853{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700854 int err;
855
Johannes Berg463d0182009-07-14 00:33:35 +0200856 err = register_pernet_device(&cfg80211_pernet_ops);
857 if (err)
858 goto out_fail_pernet;
859
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700860 err = wiphy_sysfs_init();
Johannes Berg704232c2007-04-23 12:20:05 -0700861 if (err)
862 goto out_fail_sysfs;
863
864 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
865 if (err)
866 goto out_fail_notifier;
867
Johannes Berg55682962007-09-20 13:09:35 -0400868 err = nl80211_init();
869 if (err)
870 goto out_fail_nl80211;
871
Johannes Berg704232c2007-04-23 12:20:05 -0700872 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
873
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700874 err = regulatory_init();
875 if (err)
876 goto out_fail_reg;
877
Alban Browaeyse60d7442009-11-25 15:13:00 +0100878 cfg80211_wq = create_singlethread_workqueue("cfg80211");
879 if (!cfg80211_wq)
880 goto out_fail_wq;
881
Johannes Berg704232c2007-04-23 12:20:05 -0700882 return 0;
883
Alban Browaeyse60d7442009-11-25 15:13:00 +0100884out_fail_wq:
885 regulatory_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700886out_fail_reg:
887 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400888out_fail_nl80211:
889 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
Johannes Berg704232c2007-04-23 12:20:05 -0700890out_fail_notifier:
891 wiphy_sysfs_exit();
892out_fail_sysfs:
Johannes Berg463d0182009-07-14 00:33:35 +0200893 unregister_pernet_device(&cfg80211_pernet_ops);
894out_fail_pernet:
Johannes Berg704232c2007-04-23 12:20:05 -0700895 return err;
896}
Johannes Berg3a462462007-09-10 13:44:45 +0200897subsys_initcall(cfg80211_init);
Johannes Berg704232c2007-04-23 12:20:05 -0700898
Uwe Kleine-Königf884e382010-06-18 09:38:54 +0200899static void __exit cfg80211_exit(void)
Johannes Berg704232c2007-04-23 12:20:05 -0700900{
901 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400902 nl80211_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700903 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
904 wiphy_sysfs_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700905 regulatory_exit();
Johannes Berg463d0182009-07-14 00:33:35 +0200906 unregister_pernet_device(&cfg80211_pernet_ops);
Alban Browaeyse60d7442009-11-25 15:13:00 +0100907 destroy_workqueue(cfg80211_wq);
Johannes Berg704232c2007-04-23 12:20:05 -0700908}
909module_exit(cfg80211_exit);