blob: 1493285b6a4db14925c39b7ce39c765145b11ace [file] [log] [blame]
Johannes Berg704232c2007-04-23 12:20:05 -07001/*
2 * This is the linux wireless configuration interface.
3 *
Johannes Berg08645122009-05-11 13:54:58 +02004 * Copyright 2006-2009 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>
11#include <linux/nl80211.h>
12#include <linux/debugfs.h>
13#include <linux/notifier.h>
14#include <linux/device.h>
Johannes Berg1f87f7d2009-06-02 13:01:41 +020015#include <linux/rtnetlink.h>
Johannes Berg704232c2007-04-23 12:20:05 -070016#include <net/genetlink.h>
17#include <net/cfg80211.h>
Johannes Berg55682962007-09-20 13:09:35 -040018#include "nl80211.h"
Johannes Berg704232c2007-04-23 12:20:05 -070019#include "core.h"
20#include "sysfs.h"
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -040021#include "debugfs.h"
Johannes Berga9a11622009-07-27 12:01:53 +020022#include "wext-compat.h"
Johannes Berg704232c2007-04-23 12:20:05 -070023
24/* name for sysfs, %d is appended */
25#define PHY_NAME "phy"
26
27MODULE_AUTHOR("Johannes Berg");
28MODULE_LICENSE("GPL");
29MODULE_DESCRIPTION("wireless configuration support");
30
31/* RCU might be appropriate here since we usually
32 * only read the list, and that can happen quite
33 * often because we need to do it for each command */
Johannes Berg79c97e92009-07-07 03:56:12 +020034LIST_HEAD(cfg80211_rdev_list);
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050035
36/*
Johannes Berg79c97e92009-07-07 03:56:12 +020037 * This is used to protect the cfg80211_rdev_list, cfg80211_regdomain,
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -050038 * country_ie_regdomain, the reg_beacon_list and the the last regulatory
39 * request receipt (last_request).
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050040 */
41DEFINE_MUTEX(cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -070042
43/* for debugfs */
44static struct dentry *ieee80211_debugfs_dir;
45
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050046/* requires cfg80211_mutex to be held! */
Johannes Berg79c97e92009-07-07 03:56:12 +020047struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx)
Johannes Berg55682962007-09-20 13:09:35 -040048{
Johannes Berg79c97e92009-07-07 03:56:12 +020049 struct cfg80211_registered_device *result = NULL, *rdev;
Johannes Berg55682962007-09-20 13:09:35 -040050
Luis R. Rodriguez85fd1292009-02-21 00:04:20 -050051 if (!wiphy_idx_valid(wiphy_idx))
52 return NULL;
53
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050054 assert_cfg80211_lock();
55
Johannes Berg79c97e92009-07-07 03:56:12 +020056 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
57 if (rdev->wiphy_idx == wiphy_idx) {
58 result = rdev;
Johannes Berg55682962007-09-20 13:09:35 -040059 break;
60 }
61 }
62
63 return result;
64}
65
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050066int get_wiphy_idx(struct wiphy *wiphy)
67{
Johannes Berg79c97e92009-07-07 03:56:12 +020068 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050069 if (!wiphy)
70 return WIPHY_IDX_STALE;
Johannes Berg79c97e92009-07-07 03:56:12 +020071 rdev = wiphy_to_dev(wiphy);
72 return rdev->wiphy_idx;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050073}
74
Johannes Berg79c97e92009-07-07 03:56:12 +020075/* requires cfg80211_rdev_mutex to be held! */
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050076struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
77{
Johannes Berg79c97e92009-07-07 03:56:12 +020078 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050079
80 if (!wiphy_idx_valid(wiphy_idx))
81 return NULL;
82
83 assert_cfg80211_lock();
84
Johannes Berg79c97e92009-07-07 03:56:12 +020085 rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx);
86 if (!rdev)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050087 return NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +020088 return &rdev->wiphy;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050089}
90
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050091/* requires cfg80211_mutex to be held! */
Johannes Berg4bbf4d52009-03-24 09:35:46 +010092struct cfg80211_registered_device *
Johannes Berg79c97e92009-07-07 03:56:12 +020093__cfg80211_rdev_from_info(struct genl_info *info)
Johannes Berg55682962007-09-20 13:09:35 -040094{
95 int ifindex;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -050096 struct cfg80211_registered_device *bywiphyidx = NULL, *byifidx = NULL;
Johannes Berg55682962007-09-20 13:09:35 -040097 struct net_device *dev;
98 int err = -EINVAL;
99
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500100 assert_cfg80211_lock();
101
Johannes Berg55682962007-09-20 13:09:35 -0400102 if (info->attrs[NL80211_ATTR_WIPHY]) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200103 bywiphyidx = cfg80211_rdev_by_wiphy_idx(
Johannes Berg55682962007-09-20 13:09:35 -0400104 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY]));
105 err = -ENODEV;
106 }
107
108 if (info->attrs[NL80211_ATTR_IFINDEX]) {
109 ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
Johannes Berg463d0182009-07-14 00:33:35 +0200110 dev = dev_get_by_index(genl_info_net(info), ifindex);
Johannes Berg55682962007-09-20 13:09:35 -0400111 if (dev) {
112 if (dev->ieee80211_ptr)
113 byifidx =
114 wiphy_to_dev(dev->ieee80211_ptr->wiphy);
115 dev_put(dev);
116 }
117 err = -ENODEV;
118 }
119
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500120 if (bywiphyidx && byifidx) {
121 if (bywiphyidx != byifidx)
Johannes Berg55682962007-09-20 13:09:35 -0400122 return ERR_PTR(-EINVAL);
123 else
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500124 return bywiphyidx; /* == byifidx */
Johannes Berg55682962007-09-20 13:09:35 -0400125 }
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500126 if (bywiphyidx)
127 return bywiphyidx;
Johannes Berg55682962007-09-20 13:09:35 -0400128
129 if (byifidx)
130 return byifidx;
131
132 return ERR_PTR(err);
133}
134
135struct cfg80211_registered_device *
136cfg80211_get_dev_from_info(struct genl_info *info)
137{
Johannes Berg79c97e92009-07-07 03:56:12 +0200138 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400139
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500140 mutex_lock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200141 rdev = __cfg80211_rdev_from_info(info);
Johannes Berg55682962007-09-20 13:09:35 -0400142
143 /* if it is not an error we grab the lock on
144 * it to assure it won't be going away while
145 * we operate on it */
Johannes Berg79c97e92009-07-07 03:56:12 +0200146 if (!IS_ERR(rdev))
147 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400148
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500149 mutex_unlock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400150
Johannes Berg79c97e92009-07-07 03:56:12 +0200151 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400152}
153
154struct cfg80211_registered_device *
Johannes Berg463d0182009-07-14 00:33:35 +0200155cfg80211_get_dev_from_ifindex(struct net *net, int ifindex)
Johannes Berg55682962007-09-20 13:09:35 -0400156{
Johannes Berg79c97e92009-07-07 03:56:12 +0200157 struct cfg80211_registered_device *rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400158 struct net_device *dev;
159
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500160 mutex_lock(&cfg80211_mutex);
Johannes Berg463d0182009-07-14 00:33:35 +0200161 dev = dev_get_by_index(net, ifindex);
Johannes Berg55682962007-09-20 13:09:35 -0400162 if (!dev)
163 goto out;
164 if (dev->ieee80211_ptr) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200165 rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
166 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400167 } else
Johannes Berg79c97e92009-07-07 03:56:12 +0200168 rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400169 dev_put(dev);
170 out:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500171 mutex_unlock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200172 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400173}
174
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100175/* requires cfg80211_mutex to be held */
Johannes Berg55682962007-09-20 13:09:35 -0400176int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
177 char *newname)
178{
Johannes Berg79c97e92009-07-07 03:56:12 +0200179 struct cfg80211_registered_device *rdev2;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500180 int wiphy_idx, taken = -1, result, digits;
Johannes Berg55682962007-09-20 13:09:35 -0400181
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100182 assert_cfg80211_lock();
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700183
Johannes Berg55682962007-09-20 13:09:35 -0400184 /* prohibit calling the thing phy%d when %d is not its number */
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500185 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
186 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
187 /* count number of places needed to print wiphy_idx */
Johannes Berg55682962007-09-20 13:09:35 -0400188 digits = 1;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500189 while (wiphy_idx /= 10)
Johannes Berg55682962007-09-20 13:09:35 -0400190 digits++;
191 /*
192 * deny the name if it is phy<idx> where <idx> is printed
193 * without leading zeroes. taken == strlen(newname) here
194 */
195 if (taken == strlen(PHY_NAME) + digits)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100196 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -0400197 }
198
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700199
200 /* Ignore nop renames */
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700201 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100202 return 0;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700203
204 /* Ensure another device does not already have this name. */
Johannes Berg79c97e92009-07-07 03:56:12 +0200205 list_for_each_entry(rdev2, &cfg80211_rdev_list, list)
206 if (strcmp(newname, dev_name(&rdev2->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100207 return -EINVAL;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700208
Johannes Berg55682962007-09-20 13:09:35 -0400209 result = device_rename(&rdev->wiphy.dev, newname);
210 if (result)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100211 return result;
Johannes Berg55682962007-09-20 13:09:35 -0400212
Johannes Berg33c03602008-10-08 10:23:48 +0200213 if (rdev->wiphy.debugfsdir &&
214 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
Johannes Berg55682962007-09-20 13:09:35 -0400215 rdev->wiphy.debugfsdir,
216 rdev->wiphy.debugfsdir->d_parent,
217 newname))
218 printk(KERN_ERR "cfg80211: failed to rename debugfs dir to %s!\n",
219 newname);
220
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100221 nl80211_notify_dev_rename(rdev);
Johannes Berg55682962007-09-20 13:09:35 -0400222
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100223 return 0;
Johannes Berg55682962007-09-20 13:09:35 -0400224}
225
Johannes Berg463d0182009-07-14 00:33:35 +0200226int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
227 struct net *net)
228{
229 struct wireless_dev *wdev;
230 int err = 0;
231
232 if (!rdev->wiphy.netnsok)
233 return -EOPNOTSUPP;
234
235 list_for_each_entry(wdev, &rdev->netdev_list, list) {
236 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
237 err = dev_change_net_namespace(wdev->netdev, net, "wlan%d");
238 if (err)
239 break;
240 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
241 }
242
243 if (err) {
244 /* failed -- clean up to old netns */
245 net = wiphy_net(&rdev->wiphy);
246
247 list_for_each_entry_continue_reverse(wdev, &rdev->netdev_list,
248 list) {
249 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
250 err = dev_change_net_namespace(wdev->netdev, net,
251 "wlan%d");
252 WARN_ON(err);
253 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
254 }
255 }
256
257 wiphy_net_set(&rdev->wiphy, net);
258
259 return err;
260}
261
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200262static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
263{
Johannes Berg79c97e92009-07-07 03:56:12 +0200264 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200265
Johannes Berg79c97e92009-07-07 03:56:12 +0200266 rdev->ops->rfkill_poll(&rdev->wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200267}
268
269static int cfg80211_rfkill_set_block(void *data, bool blocked)
270{
Johannes Berg79c97e92009-07-07 03:56:12 +0200271 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200272 struct wireless_dev *wdev;
273
274 if (!blocked)
275 return 0;
276
277 rtnl_lock();
Johannes Berg79c97e92009-07-07 03:56:12 +0200278 mutex_lock(&rdev->devlist_mtx);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200279
Johannes Berg79c97e92009-07-07 03:56:12 +0200280 list_for_each_entry(wdev, &rdev->netdev_list, list)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200281 dev_close(wdev->netdev);
282
Johannes Berg79c97e92009-07-07 03:56:12 +0200283 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200284 rtnl_unlock();
285
286 return 0;
287}
288
289static void cfg80211_rfkill_sync_work(struct work_struct *work)
290{
Johannes Berg79c97e92009-07-07 03:56:12 +0200291 struct cfg80211_registered_device *rdev;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200292
Johannes Berg79c97e92009-07-07 03:56:12 +0200293 rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync);
294 cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill));
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200295}
296
Johannes Berg667503dd2009-07-07 03:56:11 +0200297static void cfg80211_process_events(struct wireless_dev *wdev)
298{
299 struct cfg80211_event *ev;
300 unsigned long flags;
301
302 spin_lock_irqsave(&wdev->event_lock, flags);
303 while (!list_empty(&wdev->event_list)) {
304 ev = list_first_entry(&wdev->event_list,
305 struct cfg80211_event, list);
306 list_del(&ev->list);
307 spin_unlock_irqrestore(&wdev->event_lock, flags);
308
309 wdev_lock(wdev);
310 switch (ev->type) {
311 case EVENT_CONNECT_RESULT:
312 __cfg80211_connect_result(
313 wdev->netdev, ev->cr.bssid,
314 ev->cr.req_ie, ev->cr.req_ie_len,
315 ev->cr.resp_ie, ev->cr.resp_ie_len,
316 ev->cr.status,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200317 ev->cr.status == WLAN_STATUS_SUCCESS,
318 NULL);
Johannes Berg667503dd2009-07-07 03:56:11 +0200319 break;
320 case EVENT_ROAMED:
321 __cfg80211_roamed(wdev, ev->rm.bssid,
322 ev->rm.req_ie, ev->rm.req_ie_len,
323 ev->rm.resp_ie, ev->rm.resp_ie_len);
324 break;
325 case EVENT_DISCONNECTED:
326 __cfg80211_disconnected(wdev->netdev,
327 ev->dc.ie, ev->dc.ie_len,
328 ev->dc.reason, true);
329 break;
330 case EVENT_IBSS_JOINED:
331 __cfg80211_ibss_joined(wdev->netdev, ev->ij.bssid);
332 break;
333 }
334 wdev_unlock(wdev);
335
336 kfree(ev);
337
338 spin_lock_irqsave(&wdev->event_lock, flags);
339 }
340 spin_unlock_irqrestore(&wdev->event_lock, flags);
341}
342
343static void cfg80211_event_work(struct work_struct *work)
344{
345 struct cfg80211_registered_device *rdev;
346 struct wireless_dev *wdev;
347
348 rdev = container_of(work, struct cfg80211_registered_device,
349 event_work);
350
351 rtnl_lock();
352 cfg80211_lock_rdev(rdev);
353 mutex_lock(&rdev->devlist_mtx);
354
355 list_for_each_entry(wdev, &rdev->netdev_list, list)
356 cfg80211_process_events(wdev);
357
358 mutex_unlock(&rdev->devlist_mtx);
359 cfg80211_unlock_rdev(rdev);
360 rtnl_unlock();
361}
362
Johannes Berg704232c2007-04-23 12:20:05 -0700363/* exported functions */
364
David Kilroy3dcf6702009-05-16 23:13:46 +0100365struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
Johannes Berg704232c2007-04-23 12:20:05 -0700366{
Denis ChengRq638af072008-09-23 02:35:37 +0800367 static int wiphy_counter;
368
Johannes Berg79c97e92009-07-07 03:56:12 +0200369 struct cfg80211_registered_device *rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700370 int alloc_size;
371
Johannes Berg0b20633d2009-07-07 03:56:13 +0200372 WARN_ON(ops->add_key && (!ops->del_key || !ops->set_default_key));
373 WARN_ON(ops->auth && (!ops->assoc || !ops->deauth || !ops->disassoc));
374 WARN_ON(ops->connect && !ops->disconnect);
375 WARN_ON(ops->join_ibss && !ops->leave_ibss);
376 WARN_ON(ops->add_virtual_intf && !ops->del_virtual_intf);
377 WARN_ON(ops->add_station && !ops->del_station);
378 WARN_ON(ops->add_mpath && !ops->del_mpath);
Johannes Berg41ade002007-12-19 02:03:29 +0100379
Johannes Berg79c97e92009-07-07 03:56:12 +0200380 alloc_size = sizeof(*rdev) + sizeof_priv;
Johannes Berg704232c2007-04-23 12:20:05 -0700381
Johannes Berg79c97e92009-07-07 03:56:12 +0200382 rdev = kzalloc(alloc_size, GFP_KERNEL);
383 if (!rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700384 return NULL;
385
Johannes Berg79c97e92009-07-07 03:56:12 +0200386 rdev->ops = ops;
Johannes Berg704232c2007-04-23 12:20:05 -0700387
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500388 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700389
Johannes Berg79c97e92009-07-07 03:56:12 +0200390 rdev->wiphy_idx = wiphy_counter++;
Johannes Berga4d73ee2007-04-26 20:50:35 -0700391
Johannes Berg79c97e92009-07-07 03:56:12 +0200392 if (unlikely(!wiphy_idx_valid(rdev->wiphy_idx))) {
Denis ChengRq638af072008-09-23 02:35:37 +0800393 wiphy_counter--;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500394 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700395 /* ugh, wrapped! */
Johannes Berg79c97e92009-07-07 03:56:12 +0200396 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700397 return NULL;
398 }
Johannes Berg704232c2007-04-23 12:20:05 -0700399
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500400 mutex_unlock(&cfg80211_mutex);
Denis ChengRq638af072008-09-23 02:35:37 +0800401
Johannes Berg704232c2007-04-23 12:20:05 -0700402 /* give it a proper name */
Johannes Berg79c97e92009-07-07 03:56:12 +0200403 dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx);
Johannes Berg704232c2007-04-23 12:20:05 -0700404
Johannes Berg79c97e92009-07-07 03:56:12 +0200405 mutex_init(&rdev->mtx);
406 mutex_init(&rdev->devlist_mtx);
407 INIT_LIST_HEAD(&rdev->netdev_list);
408 spin_lock_init(&rdev->bss_lock);
409 INIT_LIST_HEAD(&rdev->bss_list);
410 INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done);
Johannes Berg704232c2007-04-23 12:20:05 -0700411
Johannes Berg79c97e92009-07-07 03:56:12 +0200412 device_initialize(&rdev->wiphy.dev);
413 rdev->wiphy.dev.class = &ieee80211_class;
414 rdev->wiphy.dev.platform_data = rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700415
Johannes Berg463d0182009-07-14 00:33:35 +0200416 wiphy_net_set(&rdev->wiphy, &init_net);
417
Johannes Berg79c97e92009-07-07 03:56:12 +0200418 rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block;
419 rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev),
420 &rdev->wiphy.dev, RFKILL_TYPE_WLAN,
421 &rdev->rfkill_ops, rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200422
Johannes Berg79c97e92009-07-07 03:56:12 +0200423 if (!rdev->rfkill) {
424 kfree(rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200425 return NULL;
426 }
427
Johannes Berg79c97e92009-07-07 03:56:12 +0200428 INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work);
429 INIT_WORK(&rdev->conn_work, cfg80211_conn_work);
430 INIT_WORK(&rdev->event_work, cfg80211_event_work);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200431
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200432 /*
433 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
434 * Fragmentation and RTS threshold are disabled by default with the
435 * special -1 value.
436 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200437 rdev->wiphy.retry_short = 7;
438 rdev->wiphy.retry_long = 4;
439 rdev->wiphy.frag_threshold = (u32) -1;
440 rdev->wiphy.rts_threshold = (u32) -1;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200441
Johannes Berg79c97e92009-07-07 03:56:12 +0200442 return &rdev->wiphy;
Johannes Berg704232c2007-04-23 12:20:05 -0700443}
444EXPORT_SYMBOL(wiphy_new);
445
446int wiphy_register(struct wiphy *wiphy)
447{
Johannes Berg79c97e92009-07-07 03:56:12 +0200448 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700449 int res;
Johannes Berg8318d782008-01-24 19:38:38 +0100450 enum ieee80211_band band;
451 struct ieee80211_supported_band *sband;
452 bool have_band = false;
453 int i;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700454 u16 ifmodes = wiphy->interface_modes;
455
456 /* sanity check ifmodes */
457 WARN_ON(!ifmodes);
458 ifmodes &= ((1 << __NL80211_IFTYPE_AFTER_LAST) - 1) & ~1;
459 if (WARN_ON(ifmodes != wiphy->interface_modes))
460 wiphy->interface_modes = ifmodes;
Johannes Berg8318d782008-01-24 19:38:38 +0100461
462 /* sanity check supported bands/channels */
463 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
464 sband = wiphy->bands[band];
465 if (!sband)
466 continue;
467
468 sband->band = band;
469
Johannes Berg881d9482009-01-21 15:13:48 +0100470 if (WARN_ON(!sband->n_channels || !sband->n_bitrates))
Johannes Berg8318d782008-01-24 19:38:38 +0100471 return -EINVAL;
Johannes Berg881d9482009-01-21 15:13:48 +0100472
473 /*
474 * Since we use a u32 for rate bitmaps in
475 * ieee80211_get_response_rate, we cannot
476 * have more than 32 legacy rates.
477 */
478 if (WARN_ON(sband->n_bitrates > 32))
479 return -EINVAL;
Johannes Berg8318d782008-01-24 19:38:38 +0100480
481 for (i = 0; i < sband->n_channels; i++) {
482 sband->channels[i].orig_flags =
483 sband->channels[i].flags;
484 sband->channels[i].orig_mag =
485 sband->channels[i].max_antenna_gain;
486 sband->channels[i].orig_mpwr =
487 sband->channels[i].max_power;
488 sband->channels[i].band = band;
489 }
490
491 have_band = true;
492 }
493
494 if (!have_band) {
495 WARN_ON(1);
496 return -EINVAL;
497 }
498
499 /* check and set up bitrates */
500 ieee80211_set_bitrate_flags(wiphy);
501
Johannes Berg79c97e92009-07-07 03:56:12 +0200502 res = device_add(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700503 if (res)
Johannes Berg2f0accc2009-06-10 16:50:29 +0200504 return res;
Johannes Berg704232c2007-04-23 12:20:05 -0700505
Johannes Berg79c97e92009-07-07 03:56:12 +0200506 res = rfkill_register(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200507 if (res)
508 goto out_rm_dev;
509
Johannes Berg2f0accc2009-06-10 16:50:29 +0200510 mutex_lock(&cfg80211_mutex);
511
512 /* set up regulatory info */
513 wiphy_update_regulatory(wiphy, NL80211_REGDOM_SET_BY_CORE);
514
Johannes Berg79c97e92009-07-07 03:56:12 +0200515 list_add(&rdev->list, &cfg80211_rdev_list);
Johannes Berg704232c2007-04-23 12:20:05 -0700516
Johannes Berg2f0accc2009-06-10 16:50:29 +0200517 mutex_unlock(&cfg80211_mutex);
518
Johannes Berg704232c2007-04-23 12:20:05 -0700519 /* add to debugfs */
Johannes Berg79c97e92009-07-07 03:56:12 +0200520 rdev->wiphy.debugfsdir =
521 debugfs_create_dir(wiphy_name(&rdev->wiphy),
Johannes Berg704232c2007-04-23 12:20:05 -0700522 ieee80211_debugfs_dir);
Johannes Berg79c97e92009-07-07 03:56:12 +0200523 if (IS_ERR(rdev->wiphy.debugfsdir))
524 rdev->wiphy.debugfsdir = NULL;
Johannes Berg704232c2007-04-23 12:20:05 -0700525
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -0400526 if (wiphy->custom_regulatory) {
527 struct regulatory_request request;
528
529 request.wiphy_idx = get_wiphy_idx(wiphy);
530 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
531 request.alpha2[0] = '9';
532 request.alpha2[1] = '9';
533
534 nl80211_send_reg_change_event(&request);
535 }
536
Johannes Berg79c97e92009-07-07 03:56:12 +0200537 cfg80211_debugfs_rdev_add(rdev);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400538
Johannes Berg2f0accc2009-06-10 16:50:29 +0200539 return 0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200540
541 out_rm_dev:
Johannes Berg79c97e92009-07-07 03:56:12 +0200542 device_del(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700543 return res;
544}
545EXPORT_SYMBOL(wiphy_register);
546
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200547void wiphy_rfkill_start_polling(struct wiphy *wiphy)
548{
Johannes Berg79c97e92009-07-07 03:56:12 +0200549 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200550
Johannes Berg79c97e92009-07-07 03:56:12 +0200551 if (!rdev->ops->rfkill_poll)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200552 return;
Johannes Berg79c97e92009-07-07 03:56:12 +0200553 rdev->rfkill_ops.poll = cfg80211_rfkill_poll;
554 rfkill_resume_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200555}
556EXPORT_SYMBOL(wiphy_rfkill_start_polling);
557
558void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
559{
Johannes Berg79c97e92009-07-07 03:56:12 +0200560 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200561
Johannes Berg79c97e92009-07-07 03:56:12 +0200562 rfkill_pause_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200563}
564EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
565
Johannes Berg704232c2007-04-23 12:20:05 -0700566void wiphy_unregister(struct wiphy *wiphy)
567{
Johannes Berg79c97e92009-07-07 03:56:12 +0200568 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700569
Johannes Berg79c97e92009-07-07 03:56:12 +0200570 rfkill_unregister(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200571
Johannes Bergf16bfc12007-04-26 20:51:12 -0700572 /* protect the device list */
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500573 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700574
Johannes Berg79c97e92009-07-07 03:56:12 +0200575 BUG_ON(!list_empty(&rdev->netdev_list));
Johannes Bergf16bfc12007-04-26 20:51:12 -0700576
577 /*
Johannes Berg79c97e92009-07-07 03:56:12 +0200578 * Try to grab rdev->mtx. If a command is still in progress,
Johannes Bergf16bfc12007-04-26 20:51:12 -0700579 * hopefully the driver will refuse it since it's tearing
580 * down the device already. We wait for this command to complete
581 * before unlinking the item from the list.
582 * Note: as codified by the BUG_ON above we cannot get here if
583 * a virtual interface is still associated. Hence, we can only
584 * get to lock contention here if userspace issues a command
585 * that identified the hardware by wiphy index.
586 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200587 mutex_lock(&rdev->mtx);
Johannes Bergf16bfc12007-04-26 20:51:12 -0700588 /* unlock again before freeing */
Johannes Berg79c97e92009-07-07 03:56:12 +0200589 mutex_unlock(&rdev->mtx);
Johannes Berg704232c2007-04-23 12:20:05 -0700590
Johannes Berg79c97e92009-07-07 03:56:12 +0200591 cfg80211_debugfs_rdev_del(rdev);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400592
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 Berg79c97e92009-07-07 03:56:12 +0200597 list_del(&rdev->list);
598 device_del(&rdev->wiphy.dev);
599 debugfs_remove(rdev->wiphy.debugfsdir);
Johannes Berg704232c2007-04-23 12:20:05 -0700600
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500601 mutex_unlock(&cfg80211_mutex);
Johannes Berg66825882009-07-13 13:24:44 +0200602
603 cancel_work_sync(&rdev->conn_work);
604 cancel_work_sync(&rdev->scan_done_wk);
605 kfree(rdev->scan_req);
606 flush_work(&rdev->event_work);
Johannes Berg704232c2007-04-23 12:20:05 -0700607}
608EXPORT_SYMBOL(wiphy_unregister);
609
Johannes Berg79c97e92009-07-07 03:56:12 +0200610void cfg80211_dev_free(struct cfg80211_registered_device *rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700611{
Johannes Berg2a519312009-02-10 21:25:55 +0100612 struct cfg80211_internal_bss *scan, *tmp;
Johannes Berg79c97e92009-07-07 03:56:12 +0200613 rfkill_destroy(rdev->rfkill);
614 mutex_destroy(&rdev->mtx);
615 mutex_destroy(&rdev->devlist_mtx);
616 list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list)
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100617 cfg80211_put_bss(&scan->pub);
Johannes Berg79c97e92009-07-07 03:56:12 +0200618 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700619}
620
621void wiphy_free(struct wiphy *wiphy)
622{
623 put_device(&wiphy->dev);
624}
625EXPORT_SYMBOL(wiphy_free);
626
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200627void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
628{
Johannes Berg79c97e92009-07-07 03:56:12 +0200629 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200630
Johannes Berg79c97e92009-07-07 03:56:12 +0200631 if (rfkill_set_hw_state(rdev->rfkill, blocked))
632 schedule_work(&rdev->rfkill_sync);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200633}
634EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
635
Johannes Berg704232c2007-04-23 12:20:05 -0700636static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
637 unsigned long state,
638 void *ndev)
639{
640 struct net_device *dev = ndev;
Johannes Berg2a783c12009-07-01 21:26:45 +0200641 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg704232c2007-04-23 12:20:05 -0700642 struct cfg80211_registered_device *rdev;
643
Johannes Berg2a783c12009-07-01 21:26:45 +0200644 if (!wdev)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200645 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700646
Johannes Berg2a783c12009-07-01 21:26:45 +0200647 rdev = wiphy_to_dev(wdev->wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700648
Johannes Berg2a783c12009-07-01 21:26:45 +0200649 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
Johannes Berg60719ff2008-09-16 14:55:09 +0200650
Johannes Berg704232c2007-04-23 12:20:05 -0700651 switch (state) {
652 case NETDEV_REGISTER:
Johannes Berg667503dd2009-07-07 03:56:11 +0200653 mutex_init(&wdev->mtx);
654 INIT_LIST_HEAD(&wdev->event_list);
655 spin_lock_init(&wdev->event_lock);
Johannes Berg704232c2007-04-23 12:20:05 -0700656 mutex_lock(&rdev->devlist_mtx);
Johannes Berg2a783c12009-07-01 21:26:45 +0200657 list_add(&wdev->list, &rdev->netdev_list);
Johannes Berg463d0182009-07-14 00:33:35 +0200658 /* can only change netns with wiphy */
659 dev->features |= NETIF_F_NETNS_LOCAL;
660
Johannes Berg704232c2007-04-23 12:20:05 -0700661 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
662 "phy80211")) {
663 printk(KERN_ERR "wireless: failed to add phy80211 "
664 "symlink to netdev!\n");
665 }
Johannes Berg2a783c12009-07-01 21:26:45 +0200666 wdev->netdev = dev;
Samuel Ortizb23aa672009-07-01 21:26:54 +0200667 wdev->sme_state = CFG80211_SME_IDLE;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200668 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg08645122009-05-11 13:54:58 +0200669#ifdef CONFIG_WIRELESS_EXT
Johannes Berga9a11622009-07-27 12:01:53 +0200670 if (!dev->wireless_handlers)
671 dev->wireless_handlers = &cfg80211_wext_handler;
Johannes Berg2a783c12009-07-01 21:26:45 +0200672 wdev->wext.default_key = -1;
673 wdev->wext.default_mgmt_key = -1;
Johannes Bergf2129352009-07-01 21:26:56 +0200674 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200675 wdev->wext.ps = CONFIG_CFG80211_DEFAULT_PS_VALUE;
676 wdev->wext.ps_timeout = 500;
677 if (rdev->ops->set_power_mgmt)
678 if (rdev->ops->set_power_mgmt(wdev->wiphy, dev,
679 wdev->wext.ps,
680 wdev->wext.ps_timeout)) {
681 /* assume this means it's off */
682 wdev->wext.ps = false;
683 }
Johannes Berg08645122009-05-11 13:54:58 +0200684#endif
Johannes Berg704232c2007-04-23 12:20:05 -0700685 break;
Johannes Berg04a773a2009-04-19 21:24:32 +0200686 case NETDEV_GOING_DOWN:
Samuel Ortizb23aa672009-07-01 21:26:54 +0200687 switch (wdev->iftype) {
688 case NL80211_IFTYPE_ADHOC:
689 cfg80211_leave_ibss(rdev, dev, true);
690 break;
691 case NL80211_IFTYPE_STATION:
Johannes Berg667503dd2009-07-07 03:56:11 +0200692 wdev_lock(wdev);
Johannes Bergf2129352009-07-01 21:26:56 +0200693#ifdef CONFIG_WIRELESS_EXT
694 kfree(wdev->wext.ie);
695 wdev->wext.ie = NULL;
696 wdev->wext.ie_len = 0;
Johannes Berg0eb14642009-07-02 15:49:03 +0200697 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Johannes Bergf2129352009-07-01 21:26:56 +0200698#endif
Johannes Berg667503dd2009-07-07 03:56:11 +0200699 __cfg80211_disconnect(rdev, dev,
700 WLAN_REASON_DEAUTH_LEAVING, true);
Johannes Berg19957bb2009-07-02 17:20:43 +0200701 cfg80211_mlme_down(rdev, dev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200702 wdev_unlock(wdev);
Samuel Ortizb23aa672009-07-01 21:26:54 +0200703 break;
704 default:
705 break;
706 }
Johannes Berg04a773a2009-04-19 21:24:32 +0200707 break;
708 case NETDEV_UP:
709#ifdef CONFIG_WIRELESS_EXT
Johannes Berg667503dd2009-07-07 03:56:11 +0200710 cfg80211_lock_rdev(rdev);
711 wdev_lock(wdev);
Johannes Bergf2129352009-07-01 21:26:56 +0200712 switch (wdev->iftype) {
713 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200714 cfg80211_ibss_wext_join(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200715 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200716 case NL80211_IFTYPE_STATION:
Johannes Bergfffd0932009-07-08 14:22:54 +0200717 cfg80211_mgd_wext_connect(rdev, wdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200718 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200719 default:
720 break;
721 }
Johannes Berg667503dd2009-07-07 03:56:11 +0200722 wdev_unlock(wdev);
723 cfg80211_unlock_rdev(rdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200724#endif
Johannes Berg2a783c12009-07-01 21:26:45 +0200725 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700726 case NETDEV_UNREGISTER:
727 mutex_lock(&rdev->devlist_mtx);
Johannes Berge40cbdac2009-07-30 14:04:01 +0200728 /*
729 * It is possible to get NETDEV_UNREGISTER
730 * multiple times. To detect that, check
731 * that the interface is still on the list
732 * of registered interfaces, and only then
733 * remove and clean it up.
734 */
Johannes Berg2a783c12009-07-01 21:26:45 +0200735 if (!list_empty(&wdev->list)) {
Johannes Berg704232c2007-04-23 12:20:05 -0700736 sysfs_remove_link(&dev->dev.kobj, "phy80211");
Johannes Berg2a783c12009-07-01 21:26:45 +0200737 list_del_init(&wdev->list);
Johannes Berge40cbdac2009-07-30 14:04:01 +0200738 mutex_destroy(&wdev->mtx);
739#ifdef CONFIG_WIRELESS_EXT
740 kfree(wdev->wext.keys);
741#endif
Johannes Berg704232c2007-04-23 12:20:05 -0700742 }
743 mutex_unlock(&rdev->devlist_mtx);
744 break;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200745 case NETDEV_PRE_UP:
Johannes Berg0b20633d2009-07-07 03:56:13 +0200746 if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)))
747 return notifier_from_errno(-EOPNOTSUPP);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200748 if (rfkill_blocked(rdev->rfkill))
749 return notifier_from_errno(-ERFKILL);
750 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700751 }
752
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200753 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700754}
755
756static struct notifier_block cfg80211_netdev_notifier = {
757 .notifier_call = cfg80211_netdev_notifier_call,
758};
759
Johannes Berg463d0182009-07-14 00:33:35 +0200760static void __net_exit cfg80211_pernet_exit(struct net *net)
761{
762 struct cfg80211_registered_device *rdev;
763
764 rtnl_lock();
765 mutex_lock(&cfg80211_mutex);
766 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
767 if (net_eq(wiphy_net(&rdev->wiphy), net))
768 WARN_ON(cfg80211_switch_netns(rdev, &init_net));
769 }
770 mutex_unlock(&cfg80211_mutex);
771 rtnl_unlock();
772}
773
774static struct pernet_operations cfg80211_pernet_ops = {
775 .exit = cfg80211_pernet_exit,
776};
777
778static int __init cfg80211_init(void)
Johannes Berg704232c2007-04-23 12:20:05 -0700779{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700780 int err;
781
Johannes Berg463d0182009-07-14 00:33:35 +0200782 err = register_pernet_device(&cfg80211_pernet_ops);
783 if (err)
784 goto out_fail_pernet;
785
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700786 err = wiphy_sysfs_init();
Johannes Berg704232c2007-04-23 12:20:05 -0700787 if (err)
788 goto out_fail_sysfs;
789
790 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
791 if (err)
792 goto out_fail_notifier;
793
Johannes Berg55682962007-09-20 13:09:35 -0400794 err = nl80211_init();
795 if (err)
796 goto out_fail_nl80211;
797
Johannes Berg704232c2007-04-23 12:20:05 -0700798 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
799
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700800 err = regulatory_init();
801 if (err)
802 goto out_fail_reg;
803
Johannes Berg704232c2007-04-23 12:20:05 -0700804 return 0;
805
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700806out_fail_reg:
807 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400808out_fail_nl80211:
809 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
Johannes Berg704232c2007-04-23 12:20:05 -0700810out_fail_notifier:
811 wiphy_sysfs_exit();
812out_fail_sysfs:
Johannes Berg463d0182009-07-14 00:33:35 +0200813 unregister_pernet_device(&cfg80211_pernet_ops);
814out_fail_pernet:
Johannes Berg704232c2007-04-23 12:20:05 -0700815 return err;
816}
Johannes Berg3a462462007-09-10 13:44:45 +0200817subsys_initcall(cfg80211_init);
Johannes Berg704232c2007-04-23 12:20:05 -0700818
819static void cfg80211_exit(void)
820{
821 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400822 nl80211_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700823 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
824 wiphy_sysfs_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700825 regulatory_exit();
Johannes Berg463d0182009-07-14 00:33:35 +0200826 unregister_pernet_device(&cfg80211_pernet_ops);
Johannes Berg704232c2007-04-23 12:20:05 -0700827}
828module_exit(cfg80211_exit);