blob: b1a354b7fc06c555b98009b5fb4d79b43f59980f [file] [log] [blame]
Johannes Berg704232c2007-04-23 12:20:05 -07001/*
2 * This is the linux wireless configuration interface.
3 *
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07004 * Copyright 2006-2008 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>
15#include <net/genetlink.h>
16#include <net/cfg80211.h>
17#include <net/wireless.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"
21
22/* name for sysfs, %d is appended */
23#define PHY_NAME "phy"
24
25MODULE_AUTHOR("Johannes Berg");
26MODULE_LICENSE("GPL");
27MODULE_DESCRIPTION("wireless configuration support");
28
29/* RCU might be appropriate here since we usually
30 * only read the list, and that can happen quite
31 * often because we need to do it for each command */
32LIST_HEAD(cfg80211_drv_list);
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050033
34/*
35 * This is used to protect the cfg80211_drv_list, cfg80211_regdomain, and
36 * the last reguluatory request receipt in regd.c
37 */
38DEFINE_MUTEX(cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -070039
40/* for debugfs */
41static struct dentry *ieee80211_debugfs_dir;
42
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050043/* requires cfg80211_mutex to be held! */
44struct cfg80211_registered_device *cfg80211_drv_by_wiphy_idx(int wiphy_idx)
Johannes Berg55682962007-09-20 13:09:35 -040045{
46 struct cfg80211_registered_device *result = NULL, *drv;
47
Luis R. Rodriguez85fd1292009-02-21 00:04:20 -050048 if (!wiphy_idx_valid(wiphy_idx))
49 return NULL;
50
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050051 assert_cfg80211_lock();
52
Johannes Berg55682962007-09-20 13:09:35 -040053 list_for_each_entry(drv, &cfg80211_drv_list, list) {
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -050054 if (drv->wiphy_idx == wiphy_idx) {
Johannes Berg55682962007-09-20 13:09:35 -040055 result = drv;
56 break;
57 }
58 }
59
60 return result;
61}
62
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050063int get_wiphy_idx(struct wiphy *wiphy)
64{
65 struct cfg80211_registered_device *drv;
66 if (!wiphy)
67 return WIPHY_IDX_STALE;
68 drv = wiphy_to_dev(wiphy);
69 return drv->wiphy_idx;
70}
71
72/* requires cfg80211_drv_mutex to be held! */
73struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
74{
75 struct cfg80211_registered_device *drv;
76
77 if (!wiphy_idx_valid(wiphy_idx))
78 return NULL;
79
80 assert_cfg80211_lock();
81
82 drv = cfg80211_drv_by_wiphy_idx(wiphy_idx);
83 if (!drv)
84 return NULL;
85 return &drv->wiphy;
86}
87
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050088/* requires cfg80211_mutex to be held! */
Johannes Berg55682962007-09-20 13:09:35 -040089static struct cfg80211_registered_device *
90__cfg80211_drv_from_info(struct genl_info *info)
91{
92 int ifindex;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -050093 struct cfg80211_registered_device *bywiphyidx = NULL, *byifidx = NULL;
Johannes Berg55682962007-09-20 13:09:35 -040094 struct net_device *dev;
95 int err = -EINVAL;
96
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050097 assert_cfg80211_lock();
98
Johannes Berg55682962007-09-20 13:09:35 -040099 if (info->attrs[NL80211_ATTR_WIPHY]) {
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500100 bywiphyidx = cfg80211_drv_by_wiphy_idx(
Johannes Berg55682962007-09-20 13:09:35 -0400101 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY]));
102 err = -ENODEV;
103 }
104
105 if (info->attrs[NL80211_ATTR_IFINDEX]) {
106 ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
107 dev = dev_get_by_index(&init_net, ifindex);
108 if (dev) {
109 if (dev->ieee80211_ptr)
110 byifidx =
111 wiphy_to_dev(dev->ieee80211_ptr->wiphy);
112 dev_put(dev);
113 }
114 err = -ENODEV;
115 }
116
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500117 if (bywiphyidx && byifidx) {
118 if (bywiphyidx != byifidx)
Johannes Berg55682962007-09-20 13:09:35 -0400119 return ERR_PTR(-EINVAL);
120 else
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500121 return bywiphyidx; /* == byifidx */
Johannes Berg55682962007-09-20 13:09:35 -0400122 }
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500123 if (bywiphyidx)
124 return bywiphyidx;
Johannes Berg55682962007-09-20 13:09:35 -0400125
126 if (byifidx)
127 return byifidx;
128
129 return ERR_PTR(err);
130}
131
132struct cfg80211_registered_device *
133cfg80211_get_dev_from_info(struct genl_info *info)
134{
135 struct cfg80211_registered_device *drv;
136
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500137 mutex_lock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400138 drv = __cfg80211_drv_from_info(info);
139
140 /* if it is not an error we grab the lock on
141 * it to assure it won't be going away while
142 * we operate on it */
143 if (!IS_ERR(drv))
144 mutex_lock(&drv->mtx);
145
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500146 mutex_unlock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400147
148 return drv;
149}
150
151struct cfg80211_registered_device *
152cfg80211_get_dev_from_ifindex(int ifindex)
153{
154 struct cfg80211_registered_device *drv = ERR_PTR(-ENODEV);
155 struct net_device *dev;
156
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500157 mutex_lock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400158 dev = dev_get_by_index(&init_net, ifindex);
159 if (!dev)
160 goto out;
161 if (dev->ieee80211_ptr) {
162 drv = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
163 mutex_lock(&drv->mtx);
164 } else
165 drv = ERR_PTR(-ENODEV);
166 dev_put(dev);
167 out:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500168 mutex_unlock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400169 return drv;
170}
171
172void cfg80211_put_dev(struct cfg80211_registered_device *drv)
173{
174 BUG_ON(IS_ERR(drv));
175 mutex_unlock(&drv->mtx);
176}
177
178int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
179 char *newname)
180{
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700181 struct cfg80211_registered_device *drv;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500182 int wiphy_idx, taken = -1, result, digits;
Johannes Berg55682962007-09-20 13:09:35 -0400183
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500184 mutex_lock(&cfg80211_mutex);
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700185
Johannes Berg55682962007-09-20 13:09:35 -0400186 /* prohibit calling the thing phy%d when %d is not its number */
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500187 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
188 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
189 /* count number of places needed to print wiphy_idx */
Johannes Berg55682962007-09-20 13:09:35 -0400190 digits = 1;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500191 while (wiphy_idx /= 10)
Johannes Berg55682962007-09-20 13:09:35 -0400192 digits++;
193 /*
194 * deny the name if it is phy<idx> where <idx> is printed
195 * without leading zeroes. taken == strlen(newname) here
196 */
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700197 result = -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -0400198 if (taken == strlen(PHY_NAME) + digits)
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700199 goto out_unlock;
Johannes Berg55682962007-09-20 13:09:35 -0400200 }
201
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700202
203 /* Ignore nop renames */
204 result = 0;
205 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
206 goto out_unlock;
207
208 /* Ensure another device does not already have this name. */
209 list_for_each_entry(drv, &cfg80211_drv_list, list) {
210 result = -EINVAL;
211 if (strcmp(newname, dev_name(&drv->wiphy.dev)) == 0)
212 goto out_unlock;
213 }
214
215 /* this will only check for collisions in sysfs
216 * which is not even always compiled in.
217 */
Johannes Berg55682962007-09-20 13:09:35 -0400218 result = device_rename(&rdev->wiphy.dev, newname);
219 if (result)
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700220 goto out_unlock;
Johannes Berg55682962007-09-20 13:09:35 -0400221
Johannes Berg33c03602008-10-08 10:23:48 +0200222 if (rdev->wiphy.debugfsdir &&
223 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
Johannes Berg55682962007-09-20 13:09:35 -0400224 rdev->wiphy.debugfsdir,
225 rdev->wiphy.debugfsdir->d_parent,
226 newname))
227 printk(KERN_ERR "cfg80211: failed to rename debugfs dir to %s!\n",
228 newname);
229
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700230 result = 0;
231out_unlock:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500232 mutex_unlock(&cfg80211_mutex);
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700233 if (result == 0)
234 nl80211_notify_dev_rename(rdev);
Johannes Berg55682962007-09-20 13:09:35 -0400235
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700236 return result;
Johannes Berg55682962007-09-20 13:09:35 -0400237}
238
Johannes Berg704232c2007-04-23 12:20:05 -0700239/* exported functions */
240
241struct wiphy *wiphy_new(struct cfg80211_ops *ops, int sizeof_priv)
242{
Denis ChengRq638af072008-09-23 02:35:37 +0800243 static int wiphy_counter;
244
Johannes Berg704232c2007-04-23 12:20:05 -0700245 struct cfg80211_registered_device *drv;
246 int alloc_size;
247
Johannes Berg41ade002007-12-19 02:03:29 +0100248 WARN_ON(!ops->add_key && ops->del_key);
249 WARN_ON(ops->add_key && !ops->del_key);
250
Johannes Berg704232c2007-04-23 12:20:05 -0700251 alloc_size = sizeof(*drv) + sizeof_priv;
252
253 drv = kzalloc(alloc_size, GFP_KERNEL);
254 if (!drv)
255 return NULL;
256
257 drv->ops = ops;
258
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500259 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700260
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500261 drv->wiphy_idx = wiphy_counter++;
Johannes Berga4d73ee2007-04-26 20:50:35 -0700262
Luis R. Rodriguez85fd1292009-02-21 00:04:20 -0500263 if (unlikely(!wiphy_idx_valid(drv->wiphy_idx))) {
Denis ChengRq638af072008-09-23 02:35:37 +0800264 wiphy_counter--;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500265 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700266 /* ugh, wrapped! */
267 kfree(drv);
268 return NULL;
269 }
Johannes Berg704232c2007-04-23 12:20:05 -0700270
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500271 mutex_unlock(&cfg80211_mutex);
Denis ChengRq638af072008-09-23 02:35:37 +0800272
Johannes Berg704232c2007-04-23 12:20:05 -0700273 /* give it a proper name */
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500274 dev_set_name(&drv->wiphy.dev, PHY_NAME "%d", drv->wiphy_idx);
Johannes Berg704232c2007-04-23 12:20:05 -0700275
Johannes Berg704232c2007-04-23 12:20:05 -0700276 mutex_init(&drv->mtx);
277 mutex_init(&drv->devlist_mtx);
278 INIT_LIST_HEAD(&drv->netdev_list);
Johannes Berg2a519312009-02-10 21:25:55 +0100279 spin_lock_init(&drv->bss_lock);
280 INIT_LIST_HEAD(&drv->bss_list);
Johannes Berg704232c2007-04-23 12:20:05 -0700281
282 device_initialize(&drv->wiphy.dev);
283 drv->wiphy.dev.class = &ieee80211_class;
284 drv->wiphy.dev.platform_data = drv;
285
286 return &drv->wiphy;
287}
288EXPORT_SYMBOL(wiphy_new);
289
290int wiphy_register(struct wiphy *wiphy)
291{
292 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
293 int res;
Johannes Berg8318d782008-01-24 19:38:38 +0100294 enum ieee80211_band band;
295 struct ieee80211_supported_band *sband;
296 bool have_band = false;
297 int i;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700298 u16 ifmodes = wiphy->interface_modes;
299
Johannes Berg2a519312009-02-10 21:25:55 +0100300 if (WARN_ON(wiphy->max_scan_ssids < 1))
301 return -EINVAL;
302
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700303 /* sanity check ifmodes */
304 WARN_ON(!ifmodes);
305 ifmodes &= ((1 << __NL80211_IFTYPE_AFTER_LAST) - 1) & ~1;
306 if (WARN_ON(ifmodes != wiphy->interface_modes))
307 wiphy->interface_modes = ifmodes;
Johannes Berg8318d782008-01-24 19:38:38 +0100308
309 /* sanity check supported bands/channels */
310 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
311 sband = wiphy->bands[band];
312 if (!sband)
313 continue;
314
315 sband->band = band;
316
Johannes Berg881d9482009-01-21 15:13:48 +0100317 if (WARN_ON(!sband->n_channels || !sband->n_bitrates))
Johannes Berg8318d782008-01-24 19:38:38 +0100318 return -EINVAL;
Johannes Berg881d9482009-01-21 15:13:48 +0100319
320 /*
321 * Since we use a u32 for rate bitmaps in
322 * ieee80211_get_response_rate, we cannot
323 * have more than 32 legacy rates.
324 */
325 if (WARN_ON(sband->n_bitrates > 32))
326 return -EINVAL;
Johannes Berg8318d782008-01-24 19:38:38 +0100327
328 for (i = 0; i < sband->n_channels; i++) {
329 sband->channels[i].orig_flags =
330 sband->channels[i].flags;
331 sband->channels[i].orig_mag =
332 sband->channels[i].max_antenna_gain;
333 sband->channels[i].orig_mpwr =
334 sband->channels[i].max_power;
335 sband->channels[i].band = band;
336 }
337
338 have_band = true;
339 }
340
341 if (!have_band) {
342 WARN_ON(1);
343 return -EINVAL;
344 }
345
346 /* check and set up bitrates */
347 ieee80211_set_bitrate_flags(wiphy);
348
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500349 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700350
Johannes Bergf3b407f2008-10-21 09:57:41 +0200351 /* set up regulatory info */
352 wiphy_update_regulatory(wiphy, REGDOM_SET_BY_CORE);
353
Johannes Berg704232c2007-04-23 12:20:05 -0700354 res = device_add(&drv->wiphy.dev);
355 if (res)
356 goto out_unlock;
357
358 list_add(&drv->list, &cfg80211_drv_list);
359
360 /* add to debugfs */
361 drv->wiphy.debugfsdir =
362 debugfs_create_dir(wiphy_name(&drv->wiphy),
363 ieee80211_debugfs_dir);
Johannes Berg33c03602008-10-08 10:23:48 +0200364 if (IS_ERR(drv->wiphy.debugfsdir))
365 drv->wiphy.debugfsdir = NULL;
Johannes Berg704232c2007-04-23 12:20:05 -0700366
367 res = 0;
368out_unlock:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500369 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700370 return res;
371}
372EXPORT_SYMBOL(wiphy_register);
373
374void wiphy_unregister(struct wiphy *wiphy)
375{
376 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
377
Johannes Bergf16bfc12007-04-26 20:51:12 -0700378 /* protect the device list */
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500379 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700380
Johannes Bergf16bfc12007-04-26 20:51:12 -0700381 BUG_ON(!list_empty(&drv->netdev_list));
382
383 /*
384 * Try to grab drv->mtx. If a command is still in progress,
385 * hopefully the driver will refuse it since it's tearing
386 * down the device already. We wait for this command to complete
387 * before unlinking the item from the list.
388 * Note: as codified by the BUG_ON above we cannot get here if
389 * a virtual interface is still associated. Hence, we can only
390 * get to lock contention here if userspace issues a command
391 * that identified the hardware by wiphy index.
392 */
Johannes Berg704232c2007-04-23 12:20:05 -0700393 mutex_lock(&drv->mtx);
Johannes Bergf16bfc12007-04-26 20:51:12 -0700394 /* unlock again before freeing */
Johannes Berg704232c2007-04-23 12:20:05 -0700395 mutex_unlock(&drv->mtx);
396
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800397 /* If this device got a regulatory hint tell core its
398 * free to listen now to a new shiny device regulatory hint */
399 reg_device_remove(wiphy);
400
Johannes Bergf16bfc12007-04-26 20:51:12 -0700401 list_del(&drv->list);
Johannes Berg704232c2007-04-23 12:20:05 -0700402 device_del(&drv->wiphy.dev);
403 debugfs_remove(drv->wiphy.debugfsdir);
404
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500405 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700406}
407EXPORT_SYMBOL(wiphy_unregister);
408
409void cfg80211_dev_free(struct cfg80211_registered_device *drv)
410{
Johannes Berg2a519312009-02-10 21:25:55 +0100411 struct cfg80211_internal_bss *scan, *tmp;
Johannes Berg704232c2007-04-23 12:20:05 -0700412 mutex_destroy(&drv->mtx);
413 mutex_destroy(&drv->devlist_mtx);
Johannes Berg2a519312009-02-10 21:25:55 +0100414 list_for_each_entry_safe(scan, tmp, &drv->bss_list, list)
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100415 cfg80211_put_bss(&scan->pub);
Johannes Berg704232c2007-04-23 12:20:05 -0700416 kfree(drv);
417}
418
419void wiphy_free(struct wiphy *wiphy)
420{
421 put_device(&wiphy->dev);
422}
423EXPORT_SYMBOL(wiphy_free);
424
425static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
426 unsigned long state,
427 void *ndev)
428{
429 struct net_device *dev = ndev;
430 struct cfg80211_registered_device *rdev;
431
432 if (!dev->ieee80211_ptr)
433 return 0;
434
435 rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
436
Johannes Berg60719ff2008-09-16 14:55:09 +0200437 WARN_ON(dev->ieee80211_ptr->iftype == NL80211_IFTYPE_UNSPECIFIED);
438
Johannes Berg704232c2007-04-23 12:20:05 -0700439 switch (state) {
440 case NETDEV_REGISTER:
441 mutex_lock(&rdev->devlist_mtx);
442 list_add(&dev->ieee80211_ptr->list, &rdev->netdev_list);
443 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
444 "phy80211")) {
445 printk(KERN_ERR "wireless: failed to add phy80211 "
446 "symlink to netdev!\n");
447 }
448 dev->ieee80211_ptr->netdev = dev;
449 mutex_unlock(&rdev->devlist_mtx);
450 break;
451 case NETDEV_UNREGISTER:
452 mutex_lock(&rdev->devlist_mtx);
453 if (!list_empty(&dev->ieee80211_ptr->list)) {
454 sysfs_remove_link(&dev->dev.kobj, "phy80211");
455 list_del_init(&dev->ieee80211_ptr->list);
456 }
457 mutex_unlock(&rdev->devlist_mtx);
458 break;
459 }
460
461 return 0;
462}
463
464static struct notifier_block cfg80211_netdev_notifier = {
465 .notifier_call = cfg80211_netdev_notifier_call,
466};
467
468static int cfg80211_init(void)
469{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700470 int err;
471
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700472 err = wiphy_sysfs_init();
Johannes Berg704232c2007-04-23 12:20:05 -0700473 if (err)
474 goto out_fail_sysfs;
475
476 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
477 if (err)
478 goto out_fail_notifier;
479
Johannes Berg55682962007-09-20 13:09:35 -0400480 err = nl80211_init();
481 if (err)
482 goto out_fail_nl80211;
483
Johannes Berg704232c2007-04-23 12:20:05 -0700484 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
485
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700486 err = regulatory_init();
487 if (err)
488 goto out_fail_reg;
489
Johannes Berg704232c2007-04-23 12:20:05 -0700490 return 0;
491
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700492out_fail_reg:
493 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400494out_fail_nl80211:
495 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
Johannes Berg704232c2007-04-23 12:20:05 -0700496out_fail_notifier:
497 wiphy_sysfs_exit();
498out_fail_sysfs:
499 return err;
500}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700501
Johannes Berg3a462462007-09-10 13:44:45 +0200502subsys_initcall(cfg80211_init);
Johannes Berg704232c2007-04-23 12:20:05 -0700503
504static void cfg80211_exit(void)
505{
506 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400507 nl80211_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700508 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
509 wiphy_sysfs_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700510 regulatory_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700511}
512module_exit(cfg80211_exit);