blob: 630bcf0a2f04b4ace6a2636b228017b25899adca [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"
Johannes Berg704232c2007-04-23 12:20:05 -070029
30/* name for sysfs, %d is appended */
31#define PHY_NAME "phy"
32
33MODULE_AUTHOR("Johannes Berg");
34MODULE_LICENSE("GPL");
35MODULE_DESCRIPTION("wireless configuration support");
36
Johannes Berg5f2aa252010-01-17 15:49:02 +010037/* RCU-protected (and cfg80211_mutex for writers) */
Johannes Berg79c97e92009-07-07 03:56:12 +020038LIST_HEAD(cfg80211_rdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +020039int cfg80211_rdev_list_generation;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050040
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050041DEFINE_MUTEX(cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -070042
43/* for debugfs */
44static struct dentry *ieee80211_debugfs_dir;
45
Alban Browaeyse60d7442009-11-25 15:13:00 +010046/* for the cleanup, scan and event works */
47struct workqueue_struct *cfg80211_wq;
48
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050049/* requires cfg80211_mutex to be held! */
Johannes Berg79c97e92009-07-07 03:56:12 +020050struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx)
Johannes Berg55682962007-09-20 13:09:35 -040051{
Johannes Berg79c97e92009-07-07 03:56:12 +020052 struct cfg80211_registered_device *result = NULL, *rdev;
Johannes Berg55682962007-09-20 13:09:35 -040053
Luis R. Rodriguez85fd1292009-02-21 00:04:20 -050054 if (!wiphy_idx_valid(wiphy_idx))
55 return NULL;
56
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050057 assert_cfg80211_lock();
58
Johannes Berg79c97e92009-07-07 03:56:12 +020059 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
60 if (rdev->wiphy_idx == wiphy_idx) {
61 result = rdev;
Johannes Berg55682962007-09-20 13:09:35 -040062 break;
63 }
64 }
65
66 return result;
67}
68
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050069int get_wiphy_idx(struct wiphy *wiphy)
70{
Johannes Berg79c97e92009-07-07 03:56:12 +020071 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050072 if (!wiphy)
73 return WIPHY_IDX_STALE;
Johannes Berg79c97e92009-07-07 03:56:12 +020074 rdev = wiphy_to_dev(wiphy);
75 return rdev->wiphy_idx;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050076}
77
Johannes Berg79c97e92009-07-07 03:56:12 +020078/* requires cfg80211_rdev_mutex to be held! */
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050079struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
80{
Johannes Berg79c97e92009-07-07 03:56:12 +020081 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050082
83 if (!wiphy_idx_valid(wiphy_idx))
84 return NULL;
85
86 assert_cfg80211_lock();
87
Johannes Berg79c97e92009-07-07 03:56:12 +020088 rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx);
89 if (!rdev)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050090 return NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +020091 return &rdev->wiphy;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050092}
93
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050094/* requires cfg80211_mutex to be held! */
Johannes Berg4bbf4d52009-03-24 09:35:46 +010095struct cfg80211_registered_device *
Johannes Berg79c97e92009-07-07 03:56:12 +020096__cfg80211_rdev_from_info(struct genl_info *info)
Johannes Berg55682962007-09-20 13:09:35 -040097{
98 int ifindex;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -050099 struct cfg80211_registered_device *bywiphyidx = NULL, *byifidx = NULL;
Johannes Berg55682962007-09-20 13:09:35 -0400100 struct net_device *dev;
101 int err = -EINVAL;
102
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500103 assert_cfg80211_lock();
104
Johannes Berg55682962007-09-20 13:09:35 -0400105 if (info->attrs[NL80211_ATTR_WIPHY]) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200106 bywiphyidx = cfg80211_rdev_by_wiphy_idx(
Johannes Berg55682962007-09-20 13:09:35 -0400107 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY]));
108 err = -ENODEV;
109 }
110
111 if (info->attrs[NL80211_ATTR_IFINDEX]) {
112 ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
Johannes Berg463d0182009-07-14 00:33:35 +0200113 dev = dev_get_by_index(genl_info_net(info), ifindex);
Johannes Berg55682962007-09-20 13:09:35 -0400114 if (dev) {
115 if (dev->ieee80211_ptr)
116 byifidx =
117 wiphy_to_dev(dev->ieee80211_ptr->wiphy);
118 dev_put(dev);
119 }
120 err = -ENODEV;
121 }
122
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500123 if (bywiphyidx && byifidx) {
124 if (bywiphyidx != byifidx)
Johannes Berg55682962007-09-20 13:09:35 -0400125 return ERR_PTR(-EINVAL);
126 else
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500127 return bywiphyidx; /* == byifidx */
Johannes Berg55682962007-09-20 13:09:35 -0400128 }
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500129 if (bywiphyidx)
130 return bywiphyidx;
Johannes Berg55682962007-09-20 13:09:35 -0400131
132 if (byifidx)
133 return byifidx;
134
135 return ERR_PTR(err);
136}
137
138struct cfg80211_registered_device *
139cfg80211_get_dev_from_info(struct genl_info *info)
140{
Johannes Berg79c97e92009-07-07 03:56:12 +0200141 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400142
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500143 mutex_lock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200144 rdev = __cfg80211_rdev_from_info(info);
Johannes Berg55682962007-09-20 13:09:35 -0400145
146 /* if it is not an error we grab the lock on
147 * it to assure it won't be going away while
148 * we operate on it */
Johannes Berg79c97e92009-07-07 03:56:12 +0200149 if (!IS_ERR(rdev))
150 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400151
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500152 mutex_unlock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400153
Johannes Berg79c97e92009-07-07 03:56:12 +0200154 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400155}
156
157struct cfg80211_registered_device *
Johannes Berg463d0182009-07-14 00:33:35 +0200158cfg80211_get_dev_from_ifindex(struct net *net, int ifindex)
Johannes Berg55682962007-09-20 13:09:35 -0400159{
Johannes Berg79c97e92009-07-07 03:56:12 +0200160 struct cfg80211_registered_device *rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400161 struct net_device *dev;
162
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500163 mutex_lock(&cfg80211_mutex);
Johannes Berg463d0182009-07-14 00:33:35 +0200164 dev = dev_get_by_index(net, ifindex);
Johannes Berg55682962007-09-20 13:09:35 -0400165 if (!dev)
166 goto out;
167 if (dev->ieee80211_ptr) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200168 rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
169 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400170 } else
Johannes Berg79c97e92009-07-07 03:56:12 +0200171 rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400172 dev_put(dev);
173 out:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500174 mutex_unlock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200175 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400176}
177
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100178/* requires cfg80211_mutex to be held */
Johannes Berg55682962007-09-20 13:09:35 -0400179int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
180 char *newname)
181{
Johannes Berg79c97e92009-07-07 03:56:12 +0200182 struct cfg80211_registered_device *rdev2;
Johannes Berg76232252010-10-11 14:46:52 -0400183 int wiphy_idx, taken = -1, result, digits;
Johannes Berg55682962007-09-20 13:09:35 -0400184
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100185 assert_cfg80211_lock();
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700186
Johannes Berg76232252010-10-11 14:46:52 -0400187 /* prohibit calling the thing phy%d when %d is not its number */
188 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
189 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
190 /* count number of places needed to print wiphy_idx */
191 digits = 1;
192 while (wiphy_idx /= 10)
193 digits++;
194 /*
195 * deny the name if it is phy<idx> where <idx> is printed
196 * without leading zeroes. taken == strlen(newname) here
197 */
198 if (taken == strlen(PHY_NAME) + digits)
199 return -EINVAL;
200 }
201
202
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700203 /* Ignore nop renames */
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700204 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100205 return 0;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700206
207 /* Ensure another device does not already have this name. */
Johannes Berg79c97e92009-07-07 03:56:12 +0200208 list_for_each_entry(rdev2, &cfg80211_rdev_list, list)
209 if (strcmp(newname, dev_name(&rdev2->wiphy.dev)) == 0)
Johannes Berg76232252010-10-11 14:46:52 -0400210 return -EINVAL;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700211
Johannes Berg55682962007-09-20 13:09:35 -0400212 result = device_rename(&rdev->wiphy.dev, newname);
213 if (result)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100214 return result;
Johannes Berg55682962007-09-20 13:09:35 -0400215
Johannes Berg33c03602008-10-08 10:23:48 +0200216 if (rdev->wiphy.debugfsdir &&
217 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
Johannes Berg55682962007-09-20 13:09:35 -0400218 rdev->wiphy.debugfsdir,
219 rdev->wiphy.debugfsdir->d_parent,
220 newname))
Joe Perchese9c02682010-11-16 19:56:49 -0800221 pr_err("failed to rename debugfs dir to %s!\n", newname);
Johannes Berg55682962007-09-20 13:09:35 -0400222
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100223 nl80211_notify_dev_rename(rdev);
Johannes Berg55682962007-09-20 13:09:35 -0400224
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100225 return 0;
Johannes Berg55682962007-09-20 13:09:35 -0400226}
227
Johannes Berg463d0182009-07-14 00:33:35 +0200228int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
229 struct net *net)
230{
231 struct wireless_dev *wdev;
232 int err = 0;
233
Johannes Berg5be83de2009-11-19 00:56:28 +0100234 if (!(rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK))
Johannes Berg463d0182009-07-14 00:33:35 +0200235 return -EOPNOTSUPP;
236
237 list_for_each_entry(wdev, &rdev->netdev_list, list) {
238 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
239 err = dev_change_net_namespace(wdev->netdev, net, "wlan%d");
240 if (err)
241 break;
242 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
243 }
244
245 if (err) {
246 /* failed -- clean up to old netns */
247 net = wiphy_net(&rdev->wiphy);
248
249 list_for_each_entry_continue_reverse(wdev, &rdev->netdev_list,
250 list) {
251 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
252 err = dev_change_net_namespace(wdev->netdev, net,
253 "wlan%d");
254 WARN_ON(err);
255 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
256 }
Johannes Berg04600792010-08-05 17:45:15 +0200257
258 return err;
Johannes Berg463d0182009-07-14 00:33:35 +0200259 }
260
261 wiphy_net_set(&rdev->wiphy, net);
262
Johannes Berg04600792010-08-05 17:45:15 +0200263 err = device_rename(&rdev->wiphy.dev, dev_name(&rdev->wiphy.dev));
264 WARN_ON(err);
265
266 return 0;
Johannes Berg463d0182009-07-14 00:33:35 +0200267}
268
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200269static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
270{
Johannes Berg79c97e92009-07-07 03:56:12 +0200271 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200272
Johannes Berg79c97e92009-07-07 03:56:12 +0200273 rdev->ops->rfkill_poll(&rdev->wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200274}
275
276static int cfg80211_rfkill_set_block(void *data, bool blocked)
277{
Johannes Berg79c97e92009-07-07 03:56:12 +0200278 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200279 struct wireless_dev *wdev;
280
281 if (!blocked)
282 return 0;
283
284 rtnl_lock();
Johannes Berg79c97e92009-07-07 03:56:12 +0200285 mutex_lock(&rdev->devlist_mtx);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200286
Johannes Berg79c97e92009-07-07 03:56:12 +0200287 list_for_each_entry(wdev, &rdev->netdev_list, list)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200288 dev_close(wdev->netdev);
289
Johannes Berg79c97e92009-07-07 03:56:12 +0200290 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200291 rtnl_unlock();
292
293 return 0;
294}
295
296static void cfg80211_rfkill_sync_work(struct work_struct *work)
297{
Johannes Berg79c97e92009-07-07 03:56:12 +0200298 struct cfg80211_registered_device *rdev;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200299
Johannes Berg79c97e92009-07-07 03:56:12 +0200300 rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync);
301 cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill));
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200302}
303
Johannes Berg667503dd2009-07-07 03:56:11 +0200304static void cfg80211_event_work(struct work_struct *work)
305{
306 struct cfg80211_registered_device *rdev;
Johannes Berg667503dd2009-07-07 03:56:11 +0200307
308 rdev = container_of(work, struct cfg80211_registered_device,
309 event_work);
310
311 rtnl_lock();
312 cfg80211_lock_rdev(rdev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200313
Johannes Berg3d54d252009-08-21 14:51:05 +0200314 cfg80211_process_rdev_events(rdev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200315 cfg80211_unlock_rdev(rdev);
316 rtnl_unlock();
317}
318
Johannes Berg704232c2007-04-23 12:20:05 -0700319/* exported functions */
320
David Kilroy3dcf6702009-05-16 23:13:46 +0100321struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
Johannes Berg704232c2007-04-23 12:20:05 -0700322{
Denis ChengRq638af072008-09-23 02:35:37 +0800323 static int wiphy_counter;
Johannes Berg76232252010-10-11 14:46:52 -0400324
325 struct cfg80211_registered_device *rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700326 int alloc_size;
327
Johannes Berg0b20633d2009-07-07 03:56:13 +0200328 WARN_ON(ops->add_key && (!ops->del_key || !ops->set_default_key));
329 WARN_ON(ops->auth && (!ops->assoc || !ops->deauth || !ops->disassoc));
330 WARN_ON(ops->connect && !ops->disconnect);
331 WARN_ON(ops->join_ibss && !ops->leave_ibss);
332 WARN_ON(ops->add_virtual_intf && !ops->del_virtual_intf);
333 WARN_ON(ops->add_station && !ops->del_station);
334 WARN_ON(ops->add_mpath && !ops->del_mpath);
Johannes Berg41ade002007-12-19 02:03:29 +0100335
Johannes Berg79c97e92009-07-07 03:56:12 +0200336 alloc_size = sizeof(*rdev) + sizeof_priv;
Johannes Berg704232c2007-04-23 12:20:05 -0700337
Johannes Berg79c97e92009-07-07 03:56:12 +0200338 rdev = kzalloc(alloc_size, GFP_KERNEL);
339 if (!rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700340 return NULL;
341
Johannes Berg79c97e92009-07-07 03:56:12 +0200342 rdev->ops = ops;
Johannes Berg704232c2007-04-23 12:20:05 -0700343
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500344 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700345
Johannes Berg79c97e92009-07-07 03:56:12 +0200346 rdev->wiphy_idx = wiphy_counter++;
Johannes Berga4d73ee2007-04-26 20:50:35 -0700347
Johannes Berg79c97e92009-07-07 03:56:12 +0200348 if (unlikely(!wiphy_idx_valid(rdev->wiphy_idx))) {
Denis ChengRq638af072008-09-23 02:35:37 +0800349 wiphy_counter--;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500350 mutex_unlock(&cfg80211_mutex);
Johannes Berg76232252010-10-11 14:46:52 -0400351 /* ugh, wrapped! */
Johannes Berg79c97e92009-07-07 03:56:12 +0200352 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700353 return NULL;
354 }
Johannes Berg704232c2007-04-23 12:20:05 -0700355
Ben Greear5a254ff2010-09-27 09:07:26 -0700356 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700357
Johannes Berg76232252010-10-11 14:46:52 -0400358 /* give it a proper name */
359 dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx);
360
Johannes Berg79c97e92009-07-07 03:56:12 +0200361 mutex_init(&rdev->mtx);
362 mutex_init(&rdev->devlist_mtx);
363 INIT_LIST_HEAD(&rdev->netdev_list);
364 spin_lock_init(&rdev->bss_lock);
365 INIT_LIST_HEAD(&rdev->bss_list);
366 INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done);
Johannes Berg704232c2007-04-23 12:20:05 -0700367
Johannes Berg3d23e342009-09-29 23:27:28 +0200368#ifdef CONFIG_CFG80211_WEXT
369 rdev->wiphy.wext = &cfg80211_wext_handler;
370#endif
371
Johannes Berg79c97e92009-07-07 03:56:12 +0200372 device_initialize(&rdev->wiphy.dev);
373 rdev->wiphy.dev.class = &ieee80211_class;
374 rdev->wiphy.dev.platform_data = rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700375
Johannes Berg5be83de2009-11-19 00:56:28 +0100376#ifdef CONFIG_CFG80211_DEFAULT_PS
377 rdev->wiphy.flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
378#endif
Johannes Berg16cb9d42009-08-12 23:33:20 +0200379
Johannes Berg463d0182009-07-14 00:33:35 +0200380 wiphy_net_set(&rdev->wiphy, &init_net);
381
Johannes Berg79c97e92009-07-07 03:56:12 +0200382 rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block;
383 rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev),
384 &rdev->wiphy.dev, RFKILL_TYPE_WLAN,
385 &rdev->rfkill_ops, rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200386
Johannes Berg79c97e92009-07-07 03:56:12 +0200387 if (!rdev->rfkill) {
388 kfree(rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200389 return NULL;
390 }
391
Johannes Berg79c97e92009-07-07 03:56:12 +0200392 INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work);
393 INIT_WORK(&rdev->conn_work, cfg80211_conn_work);
394 INIT_WORK(&rdev->event_work, cfg80211_event_work);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200395
Johannes Bergad002392009-08-18 19:51:57 +0200396 init_waitqueue_head(&rdev->dev_wait);
397
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200398 /*
399 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
400 * Fragmentation and RTS threshold are disabled by default with the
401 * special -1 value.
402 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200403 rdev->wiphy.retry_short = 7;
404 rdev->wiphy.retry_long = 4;
405 rdev->wiphy.frag_threshold = (u32) -1;
406 rdev->wiphy.rts_threshold = (u32) -1;
Lukáš Turek81077e82009-12-21 22:50:47 +0100407 rdev->wiphy.coverage_class = 0;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200408
Johannes Berg79c97e92009-07-07 03:56:12 +0200409 return &rdev->wiphy;
Johannes Berg704232c2007-04-23 12:20:05 -0700410}
411EXPORT_SYMBOL(wiphy_new);
412
413int wiphy_register(struct wiphy *wiphy)
414{
Johannes Berg79c97e92009-07-07 03:56:12 +0200415 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700416 int res;
Johannes Berg8318d782008-01-24 19:38:38 +0100417 enum ieee80211_band band;
418 struct ieee80211_supported_band *sband;
419 bool have_band = false;
420 int i;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700421 u16 ifmodes = wiphy->interface_modes;
422
Johannes Bergef15aac2010-01-20 12:02:33 +0100423 if (WARN_ON(wiphy->addresses && !wiphy->n_addresses))
424 return -EINVAL;
425
426 if (WARN_ON(wiphy->addresses &&
427 !is_zero_ether_addr(wiphy->perm_addr) &&
428 memcmp(wiphy->perm_addr, wiphy->addresses[0].addr,
429 ETH_ALEN)))
430 return -EINVAL;
431
432 if (wiphy->addresses)
433 memcpy(wiphy->perm_addr, wiphy->addresses[0].addr, ETH_ALEN);
434
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700435 /* sanity check ifmodes */
436 WARN_ON(!ifmodes);
Johannes Berg2e161f72010-08-12 15:38:38 +0200437 ifmodes &= ((1 << NUM_NL80211_IFTYPES) - 1) & ~1;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700438 if (WARN_ON(ifmodes != wiphy->interface_modes))
439 wiphy->interface_modes = ifmodes;
Johannes Berg8318d782008-01-24 19:38:38 +0100440
441 /* sanity check supported bands/channels */
442 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
443 sband = wiphy->bands[band];
444 if (!sband)
445 continue;
446
447 sband->band = band;
448
Johannes Berg881d9482009-01-21 15:13:48 +0100449 if (WARN_ON(!sband->n_channels || !sband->n_bitrates))
Johannes Berg8318d782008-01-24 19:38:38 +0100450 return -EINVAL;
Johannes Berg881d9482009-01-21 15:13:48 +0100451
452 /*
453 * Since we use a u32 for rate bitmaps in
454 * ieee80211_get_response_rate, we cannot
455 * have more than 32 legacy rates.
456 */
457 if (WARN_ON(sband->n_bitrates > 32))
458 return -EINVAL;
Johannes Berg8318d782008-01-24 19:38:38 +0100459
460 for (i = 0; i < sband->n_channels; i++) {
461 sband->channels[i].orig_flags =
462 sband->channels[i].flags;
463 sband->channels[i].orig_mag =
464 sband->channels[i].max_antenna_gain;
465 sband->channels[i].orig_mpwr =
466 sband->channels[i].max_power;
467 sband->channels[i].band = band;
468 }
469
470 have_band = true;
471 }
472
473 if (!have_band) {
474 WARN_ON(1);
475 return -EINVAL;
476 }
477
478 /* check and set up bitrates */
479 ieee80211_set_bitrate_flags(wiphy);
480
Maxime Bizon5a652052010-07-21 17:21:38 +0200481 mutex_lock(&cfg80211_mutex);
482
Johannes Berg79c97e92009-07-07 03:56:12 +0200483 res = device_add(&rdev->wiphy.dev);
John W. Linvillec3d34d52010-08-30 17:36:40 -0400484 if (res) {
485 mutex_unlock(&cfg80211_mutex);
486 return res;
487 }
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200488
Johannes Berg2f0accc2009-06-10 16:50:29 +0200489 /* set up regulatory info */
490 wiphy_update_regulatory(wiphy, NL80211_REGDOM_SET_BY_CORE);
491
Johannes Berg5f2aa252010-01-17 15:49:02 +0100492 list_add_rcu(&rdev->list, &cfg80211_rdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200493 cfg80211_rdev_list_generation++;
Johannes Berg704232c2007-04-23 12:20:05 -0700494
495 /* add to debugfs */
Johannes Berg79c97e92009-07-07 03:56:12 +0200496 rdev->wiphy.debugfsdir =
497 debugfs_create_dir(wiphy_name(&rdev->wiphy),
Johannes Berg704232c2007-04-23 12:20:05 -0700498 ieee80211_debugfs_dir);
Johannes Berg79c97e92009-07-07 03:56:12 +0200499 if (IS_ERR(rdev->wiphy.debugfsdir))
500 rdev->wiphy.debugfsdir = NULL;
Johannes Berg704232c2007-04-23 12:20:05 -0700501
Johannes Berg5be83de2009-11-19 00:56:28 +0100502 if (wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) {
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -0400503 struct regulatory_request request;
504
505 request.wiphy_idx = get_wiphy_idx(wiphy);
506 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
507 request.alpha2[0] = '9';
508 request.alpha2[1] = '9';
509
510 nl80211_send_reg_change_event(&request);
511 }
512
Johannes Berg79c97e92009-07-07 03:56:12 +0200513 cfg80211_debugfs_rdev_add(rdev);
Maxime Bizon5a652052010-07-21 17:21:38 +0200514 mutex_unlock(&cfg80211_mutex);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400515
John W. Linvillec3d34d52010-08-30 17:36:40 -0400516 /*
517 * due to a locking dependency this has to be outside of the
518 * cfg80211_mutex lock
519 */
520 res = rfkill_register(rdev->rfkill);
521 if (res)
522 goto out_rm_dev;
523
Johannes Berg2f0accc2009-06-10 16:50:29 +0200524 return 0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200525
Maxime Bizon5a652052010-07-21 17:21:38 +0200526out_rm_dev:
Johannes Berg79c97e92009-07-07 03:56:12 +0200527 device_del(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700528 return res;
529}
530EXPORT_SYMBOL(wiphy_register);
531
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200532void wiphy_rfkill_start_polling(struct wiphy *wiphy)
533{
Johannes Berg79c97e92009-07-07 03:56:12 +0200534 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200535
Johannes Berg79c97e92009-07-07 03:56:12 +0200536 if (!rdev->ops->rfkill_poll)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200537 return;
Johannes Berg79c97e92009-07-07 03:56:12 +0200538 rdev->rfkill_ops.poll = cfg80211_rfkill_poll;
539 rfkill_resume_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200540}
541EXPORT_SYMBOL(wiphy_rfkill_start_polling);
542
543void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
544{
Johannes Berg79c97e92009-07-07 03:56:12 +0200545 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200546
Johannes Berg79c97e92009-07-07 03:56:12 +0200547 rfkill_pause_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200548}
549EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
550
Johannes Berg704232c2007-04-23 12:20:05 -0700551void wiphy_unregister(struct wiphy *wiphy)
552{
Johannes Berg79c97e92009-07-07 03:56:12 +0200553 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700554
Johannes Berg79c97e92009-07-07 03:56:12 +0200555 rfkill_unregister(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200556
Johannes Bergf16bfc12007-04-26 20:51:12 -0700557 /* protect the device list */
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500558 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700559
Johannes Bergad002392009-08-18 19:51:57 +0200560 wait_event(rdev->dev_wait, ({
561 int __count;
562 mutex_lock(&rdev->devlist_mtx);
563 __count = rdev->opencount;
564 mutex_unlock(&rdev->devlist_mtx);
565 __count == 0;}));
566
567 mutex_lock(&rdev->devlist_mtx);
Johannes Berg79c97e92009-07-07 03:56:12 +0200568 BUG_ON(!list_empty(&rdev->netdev_list));
Johannes Bergad002392009-08-18 19:51:57 +0200569 mutex_unlock(&rdev->devlist_mtx);
570
571 /*
572 * First remove the hardware from everywhere, this makes
573 * it impossible to find from userspace.
574 */
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100575 debugfs_remove_recursive(rdev->wiphy.debugfsdir);
Johannes Berg5f2aa252010-01-17 15:49:02 +0100576 list_del_rcu(&rdev->list);
577 synchronize_rcu();
Johannes Bergf16bfc12007-04-26 20:51:12 -0700578
579 /*
Johannes Berg79c97e92009-07-07 03:56:12 +0200580 * Try to grab rdev->mtx. If a command is still in progress,
Johannes Bergf16bfc12007-04-26 20:51:12 -0700581 * hopefully the driver will refuse it since it's tearing
582 * down the device already. We wait for this command to complete
583 * before unlinking the item from the list.
584 * Note: as codified by the BUG_ON above we cannot get here if
Johannes Bergad002392009-08-18 19:51:57 +0200585 * a virtual interface is still present. Hence, we can only get
586 * to lock contention here if userspace issues a command that
587 * identified the hardware by wiphy index.
Johannes Bergf16bfc12007-04-26 20:51:12 -0700588 */
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200589 cfg80211_lock_rdev(rdev);
Johannes Bergad002392009-08-18 19:51:57 +0200590 /* nothing */
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200591 cfg80211_unlock_rdev(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700592
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800593 /* If this device got a regulatory hint tell core its
594 * free to listen now to a new shiny device regulatory hint */
595 reg_device_remove(wiphy);
596
Johannes Bergf5ea9122009-08-07 16:17:38 +0200597 cfg80211_rdev_list_generation++;
Johannes Berg79c97e92009-07-07 03:56:12 +0200598 device_del(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700599
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500600 mutex_unlock(&cfg80211_mutex);
Johannes Berg66825882009-07-13 13:24:44 +0200601
Johannes Berg36e6fea2009-08-12 22:21:21 +0200602 flush_work(&rdev->scan_done_wk);
Johannes Berg66825882009-07-13 13:24:44 +0200603 cancel_work_sync(&rdev->conn_work);
Johannes Berg66825882009-07-13 13:24:44 +0200604 flush_work(&rdev->event_work);
Johannes Berg704232c2007-04-23 12:20:05 -0700605}
606EXPORT_SYMBOL(wiphy_unregister);
607
Johannes Berg79c97e92009-07-07 03:56:12 +0200608void cfg80211_dev_free(struct cfg80211_registered_device *rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700609{
Johannes Berg2a519312009-02-10 21:25:55 +0100610 struct cfg80211_internal_bss *scan, *tmp;
Johannes Berg79c97e92009-07-07 03:56:12 +0200611 rfkill_destroy(rdev->rfkill);
612 mutex_destroy(&rdev->mtx);
613 mutex_destroy(&rdev->devlist_mtx);
614 list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list)
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100615 cfg80211_put_bss(&scan->pub);
Johannes Berg79c97e92009-07-07 03:56:12 +0200616 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700617}
618
619void wiphy_free(struct wiphy *wiphy)
620{
621 put_device(&wiphy->dev);
622}
623EXPORT_SYMBOL(wiphy_free);
624
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200625void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
626{
Johannes Berg79c97e92009-07-07 03:56:12 +0200627 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200628
Johannes Berg79c97e92009-07-07 03:56:12 +0200629 if (rfkill_set_hw_state(rdev->rfkill, blocked))
630 schedule_work(&rdev->rfkill_sync);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200631}
632EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
633
Johannes Bergad002392009-08-18 19:51:57 +0200634static void wdev_cleanup_work(struct work_struct *work)
635{
636 struct wireless_dev *wdev;
637 struct cfg80211_registered_device *rdev;
638
639 wdev = container_of(work, struct wireless_dev, cleanup_work);
640 rdev = wiphy_to_dev(wdev->wiphy);
641
642 cfg80211_lock_rdev(rdev);
643
644 if (WARN_ON(rdev->scan_req && rdev->scan_req->dev == wdev->netdev)) {
645 rdev->scan_req->aborted = true;
Johannes Berg01a0ac42009-08-20 21:36:16 +0200646 ___cfg80211_scan_done(rdev, true);
Johannes Bergad002392009-08-18 19:51:57 +0200647 }
648
649 cfg80211_unlock_rdev(rdev);
650
651 mutex_lock(&rdev->devlist_mtx);
652 rdev->opencount--;
653 mutex_unlock(&rdev->devlist_mtx);
654 wake_up(&rdev->dev_wait);
655
656 dev_put(wdev->netdev);
657}
658
Marcel Holtmann053a93d2009-10-02 05:15:28 +0000659static struct device_type wiphy_type = {
660 .name = "wlan",
661};
662
Johannes Berg704232c2007-04-23 12:20:05 -0700663static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
664 unsigned long state,
665 void *ndev)
666{
667 struct net_device *dev = ndev;
Johannes Berg2a783c12009-07-01 21:26:45 +0200668 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg704232c2007-04-23 12:20:05 -0700669 struct cfg80211_registered_device *rdev;
670
Johannes Berg2a783c12009-07-01 21:26:45 +0200671 if (!wdev)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200672 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700673
Johannes Berg2a783c12009-07-01 21:26:45 +0200674 rdev = wiphy_to_dev(wdev->wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700675
Johannes Berg2a783c12009-07-01 21:26:45 +0200676 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
Johannes Berg60719ff2008-09-16 14:55:09 +0200677
Johannes Berg704232c2007-04-23 12:20:05 -0700678 switch (state) {
Marcel Holtmann053a93d2009-10-02 05:15:28 +0000679 case NETDEV_POST_INIT:
680 SET_NETDEV_DEVTYPE(dev, &wiphy_type);
681 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700682 case NETDEV_REGISTER:
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200683 /*
684 * NB: cannot take rdev->mtx here because this may be
685 * called within code protected by it when interfaces
686 * are added with nl80211.
687 */
Johannes Berg667503dd2009-07-07 03:56:11 +0200688 mutex_init(&wdev->mtx);
Johannes Bergad002392009-08-18 19:51:57 +0200689 INIT_WORK(&wdev->cleanup_work, wdev_cleanup_work);
Johannes Berg667503dd2009-07-07 03:56:11 +0200690 INIT_LIST_HEAD(&wdev->event_list);
691 spin_lock_init(&wdev->event_lock);
Johannes Berg2e161f72010-08-12 15:38:38 +0200692 INIT_LIST_HEAD(&wdev->mgmt_registrations);
693 spin_lock_init(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200694
Johannes Berg704232c2007-04-23 12:20:05 -0700695 mutex_lock(&rdev->devlist_mtx);
Johannes Berg5f2aa252010-01-17 15:49:02 +0100696 list_add_rcu(&wdev->list, &rdev->netdev_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200697 rdev->devlist_generation++;
Johannes Berg463d0182009-07-14 00:33:35 +0200698 /* can only change netns with wiphy */
699 dev->features |= NETIF_F_NETNS_LOCAL;
700
Johannes Berg704232c2007-04-23 12:20:05 -0700701 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
702 "phy80211")) {
Joe Perchese9c02682010-11-16 19:56:49 -0800703 pr_err("failed to add phy80211 symlink to netdev!\n");
Johannes Berg704232c2007-04-23 12:20:05 -0700704 }
Johannes Berg2a783c12009-07-01 21:26:45 +0200705 wdev->netdev = dev;
Samuel Ortizb23aa672009-07-01 21:26:54 +0200706 wdev->sme_state = CFG80211_SME_IDLE;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200707 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg3d23e342009-09-29 23:27:28 +0200708#ifdef CONFIG_CFG80211_WEXT
Johannes Berg2a783c12009-07-01 21:26:45 +0200709 wdev->wext.default_key = -1;
710 wdev->wext.default_mgmt_key = -1;
Johannes Bergf2129352009-07-01 21:26:56 +0200711 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Kalle Valoffb9eb32010-02-17 17:58:10 +0200712#endif
713
Johannes Berg5be83de2009-11-19 00:56:28 +0100714 if (wdev->wiphy->flags & WIPHY_FLAG_PS_ON_BY_DEFAULT)
Kalle Valoffb9eb32010-02-17 17:58:10 +0200715 wdev->ps = true;
Johannes Berg5be83de2009-11-19 00:56:28 +0100716 else
Kalle Valoffb9eb32010-02-17 17:58:10 +0200717 wdev->ps = false;
Juuso Oikarinen9043f3b2010-04-27 12:47:41 +0300718 /* allow mac80211 to determine the timeout */
719 wdev->ps_timeout = -1;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200720 if (rdev->ops->set_power_mgmt)
721 if (rdev->ops->set_power_mgmt(wdev->wiphy, dev,
Kalle Valoffb9eb32010-02-17 17:58:10 +0200722 wdev->ps,
723 wdev->ps_timeout)) {
Johannes Bergbc92afd2009-07-01 21:26:57 +0200724 /* assume this means it's off */
Kalle Valoffb9eb32010-02-17 17:58:10 +0200725 wdev->ps = false;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200726 }
Kalle Valoffb9eb32010-02-17 17:58:10 +0200727
John W. Linville4890e3b2009-09-30 14:50:17 -0400728 if (!dev->ethtool_ops)
729 dev->ethtool_ops = &cfg80211_ethtool_ops;
Johannes Bergad4bb6f2009-11-19 00:56:30 +0100730
731 if ((wdev->iftype == NL80211_IFTYPE_STATION ||
Johannes Berg074ac8d2010-09-16 14:58:22 +0200732 wdev->iftype == NL80211_IFTYPE_P2P_CLIENT ||
Johannes Bergad4bb6f2009-11-19 00:56:30 +0100733 wdev->iftype == NL80211_IFTYPE_ADHOC) && !wdev->use_4addr)
734 dev->priv_flags |= IFF_DONT_BRIDGE;
Johannes Berg704232c2007-04-23 12:20:05 -0700735 break;
Johannes Berg04a773a2009-04-19 21:24:32 +0200736 case NETDEV_GOING_DOWN:
Samuel Ortizb23aa672009-07-01 21:26:54 +0200737 switch (wdev->iftype) {
738 case NL80211_IFTYPE_ADHOC:
739 cfg80211_leave_ibss(rdev, dev, true);
740 break;
Johannes Berg074ac8d2010-09-16 14:58:22 +0200741 case NL80211_IFTYPE_P2P_CLIENT:
Samuel Ortizb23aa672009-07-01 21:26:54 +0200742 case NL80211_IFTYPE_STATION:
Johannes Berg667503dd2009-07-07 03:56:11 +0200743 wdev_lock(wdev);
Johannes Berg3d23e342009-09-29 23:27:28 +0200744#ifdef CONFIG_CFG80211_WEXT
Johannes Bergf2129352009-07-01 21:26:56 +0200745 kfree(wdev->wext.ie);
746 wdev->wext.ie = NULL;
747 wdev->wext.ie_len = 0;
Johannes Berg0eb14642009-07-02 15:49:03 +0200748 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Johannes Bergf2129352009-07-01 21:26:56 +0200749#endif
Johannes Berg667503dd2009-07-07 03:56:11 +0200750 __cfg80211_disconnect(rdev, dev,
751 WLAN_REASON_DEAUTH_LEAVING, true);
Johannes Berg19957bb2009-07-02 17:20:43 +0200752 cfg80211_mlme_down(rdev, dev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200753 wdev_unlock(wdev);
Samuel Ortizb23aa672009-07-01 21:26:54 +0200754 break;
755 default:
756 break;
757 }
Johannes Berg01a0ac42009-08-20 21:36:16 +0200758 break;
759 case NETDEV_DOWN:
Johannes Bergad002392009-08-18 19:51:57 +0200760 dev_hold(dev);
Alban Browaeyse60d7442009-11-25 15:13:00 +0100761 queue_work(cfg80211_wq, &wdev->cleanup_work);
Johannes Berg04a773a2009-04-19 21:24:32 +0200762 break;
763 case NETDEV_UP:
Johannes Bergad002392009-08-18 19:51:57 +0200764 /*
765 * If we have a really quick DOWN/UP succession we may
766 * have this work still pending ... cancel it and see
767 * if it was pending, in which case we need to account
768 * for some of the work it would have done.
769 */
770 if (cancel_work_sync(&wdev->cleanup_work)) {
771 mutex_lock(&rdev->devlist_mtx);
772 rdev->opencount--;
773 mutex_unlock(&rdev->devlist_mtx);
774 dev_put(dev);
775 }
Johannes Berg667503dd2009-07-07 03:56:11 +0200776 cfg80211_lock_rdev(rdev);
Johannes Bergaee83ea2009-08-09 11:51:29 +0200777 mutex_lock(&rdev->devlist_mtx);
Johannes Berg8c5d9802010-01-11 16:14:57 +0100778#ifdef CONFIG_CFG80211_WEXT
Johannes Berg667503dd2009-07-07 03:56:11 +0200779 wdev_lock(wdev);
Johannes Bergf2129352009-07-01 21:26:56 +0200780 switch (wdev->iftype) {
781 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200782 cfg80211_ibss_wext_join(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200783 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200784 case NL80211_IFTYPE_STATION:
Johannes Bergfffd0932009-07-08 14:22:54 +0200785 cfg80211_mgd_wext_connect(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200786 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200787 default:
788 break;
789 }
Johannes Berg667503dd2009-07-07 03:56:11 +0200790 wdev_unlock(wdev);
Johannes Berg8c5d9802010-01-11 16:14:57 +0100791#endif
Johannes Bergad002392009-08-18 19:51:57 +0200792 rdev->opencount++;
Johannes Bergaee83ea2009-08-09 11:51:29 +0200793 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200794 cfg80211_unlock_rdev(rdev);
Johannes Berg2a783c12009-07-01 21:26:45 +0200795 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700796 case NETDEV_UNREGISTER:
Johannes Berg0ff6ce72009-08-17 12:25:37 +0200797 /*
798 * NB: cannot take rdev->mtx here because this may be
799 * called within code protected by it when interfaces
800 * are removed with nl80211.
801 */
Johannes Berg704232c2007-04-23 12:20:05 -0700802 mutex_lock(&rdev->devlist_mtx);
Johannes Berge40cbdac2009-07-30 14:04:01 +0200803 /*
804 * It is possible to get NETDEV_UNREGISTER
805 * multiple times. To detect that, check
806 * that the interface is still on the list
807 * of registered interfaces, and only then
808 * remove and clean it up.
809 */
Johannes Berg2a783c12009-07-01 21:26:45 +0200810 if (!list_empty(&wdev->list)) {
Johannes Berg704232c2007-04-23 12:20:05 -0700811 sysfs_remove_link(&dev->dev.kobj, "phy80211");
Johannes Berg5f2aa252010-01-17 15:49:02 +0100812 list_del_rcu(&wdev->list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200813 rdev->devlist_generation++;
Johannes Berg2e161f72010-08-12 15:38:38 +0200814 cfg80211_mlme_purge_registrations(wdev);
Johannes Berg3d23e342009-09-29 23:27:28 +0200815#ifdef CONFIG_CFG80211_WEXT
Johannes Berge40cbdac2009-07-30 14:04:01 +0200816 kfree(wdev->wext.keys);
817#endif
Johannes Berg704232c2007-04-23 12:20:05 -0700818 }
819 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg5f2aa252010-01-17 15:49:02 +0100820 /*
821 * synchronise (so that we won't find this netdev
822 * from other code any more) and then clear the list
823 * head so that the above code can safely check for
824 * !list_empty() to avoid double-cleanup.
825 */
826 synchronize_rcu();
827 INIT_LIST_HEAD(&wdev->list);
Johannes Berg704232c2007-04-23 12:20:05 -0700828 break;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200829 case NETDEV_PRE_UP:
Johannes Berg0b20633d2009-07-07 03:56:13 +0200830 if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)))
831 return notifier_from_errno(-EOPNOTSUPP);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200832 if (rfkill_blocked(rdev->rfkill))
833 return notifier_from_errno(-ERFKILL);
834 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700835 }
836
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200837 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700838}
839
840static struct notifier_block cfg80211_netdev_notifier = {
841 .notifier_call = cfg80211_netdev_notifier_call,
842};
843
Johannes Berg463d0182009-07-14 00:33:35 +0200844static void __net_exit cfg80211_pernet_exit(struct net *net)
845{
846 struct cfg80211_registered_device *rdev;
847
848 rtnl_lock();
849 mutex_lock(&cfg80211_mutex);
850 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
851 if (net_eq(wiphy_net(&rdev->wiphy), net))
852 WARN_ON(cfg80211_switch_netns(rdev, &init_net));
853 }
854 mutex_unlock(&cfg80211_mutex);
855 rtnl_unlock();
856}
857
858static struct pernet_operations cfg80211_pernet_ops = {
859 .exit = cfg80211_pernet_exit,
860};
861
862static int __init cfg80211_init(void)
Johannes Berg704232c2007-04-23 12:20:05 -0700863{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700864 int err;
865
Johannes Berg463d0182009-07-14 00:33:35 +0200866 err = register_pernet_device(&cfg80211_pernet_ops);
867 if (err)
868 goto out_fail_pernet;
869
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700870 err = wiphy_sysfs_init();
Johannes Berg704232c2007-04-23 12:20:05 -0700871 if (err)
872 goto out_fail_sysfs;
873
874 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
875 if (err)
876 goto out_fail_notifier;
877
Johannes Berg55682962007-09-20 13:09:35 -0400878 err = nl80211_init();
879 if (err)
880 goto out_fail_nl80211;
881
Johannes Berg704232c2007-04-23 12:20:05 -0700882 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
883
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700884 err = regulatory_init();
885 if (err)
886 goto out_fail_reg;
887
Alban Browaeyse60d7442009-11-25 15:13:00 +0100888 cfg80211_wq = create_singlethread_workqueue("cfg80211");
889 if (!cfg80211_wq)
890 goto out_fail_wq;
891
Johannes Berg704232c2007-04-23 12:20:05 -0700892 return 0;
893
Alban Browaeyse60d7442009-11-25 15:13:00 +0100894out_fail_wq:
895 regulatory_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700896out_fail_reg:
897 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400898out_fail_nl80211:
899 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
Johannes Berg704232c2007-04-23 12:20:05 -0700900out_fail_notifier:
901 wiphy_sysfs_exit();
902out_fail_sysfs:
Johannes Berg463d0182009-07-14 00:33:35 +0200903 unregister_pernet_device(&cfg80211_pernet_ops);
904out_fail_pernet:
Johannes Berg704232c2007-04-23 12:20:05 -0700905 return err;
906}
Johannes Berg3a462462007-09-10 13:44:45 +0200907subsys_initcall(cfg80211_init);
Johannes Berg704232c2007-04-23 12:20:05 -0700908
Uwe Kleine-Königf884e382010-06-18 09:38:54 +0200909static void __exit cfg80211_exit(void)
Johannes Berg704232c2007-04-23 12:20:05 -0700910{
911 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400912 nl80211_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700913 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
914 wiphy_sysfs_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700915 regulatory_exit();
Johannes Berg463d0182009-07-14 00:33:35 +0200916 unregister_pernet_device(&cfg80211_pernet_ops);
Alban Browaeyse60d7442009-11-25 15:13:00 +0100917 destroy_workqueue(cfg80211_wq);
Johannes Berg704232c2007-04-23 12:20:05 -0700918}
919module_exit(cfg80211_exit);