cfg80211: fix locking
[linux-block.git] / net / wireless / core.c
CommitLineData
704232c2
JB
1/*
2 * This is the linux wireless configuration interface.
3 *
08645126 4 * Copyright 2006-2009 Johannes Berg <johannes@sipsolutions.net>
704232c2
JB
5 */
6
7#include <linux/if.h>
8#include <linux/module.h>
9#include <linux/err.h>
704232c2
JB
10#include <linux/list.h>
11#include <linux/nl80211.h>
12#include <linux/debugfs.h>
13#include <linux/notifier.h>
14#include <linux/device.h>
1f87f7d3 15#include <linux/rtnetlink.h>
704232c2
JB
16#include <net/genetlink.h>
17#include <net/cfg80211.h>
55682965 18#include "nl80211.h"
704232c2
JB
19#include "core.h"
20#include "sysfs.h"
1ac61302 21#include "debugfs.h"
704232c2
JB
22
23/* name for sysfs, %d is appended */
24#define PHY_NAME "phy"
25
26MODULE_AUTHOR("Johannes Berg");
27MODULE_LICENSE("GPL");
28MODULE_DESCRIPTION("wireless configuration support");
29
30/* RCU might be appropriate here since we usually
31 * only read the list, and that can happen quite
32 * often because we need to do it for each command */
33LIST_HEAD(cfg80211_drv_list);
a1794390
LR
34
35/*
e38f8a7a
LR
36 * This is used to protect the cfg80211_drv_list, cfg80211_regdomain,
37 * country_ie_regdomain, the reg_beacon_list and the the last regulatory
38 * request receipt (last_request).
a1794390
LR
39 */
40DEFINE_MUTEX(cfg80211_mutex);
704232c2
JB
41
42/* for debugfs */
43static struct dentry *ieee80211_debugfs_dir;
44
806a9e39
LR
45/* requires cfg80211_mutex to be held! */
46struct cfg80211_registered_device *cfg80211_drv_by_wiphy_idx(int wiphy_idx)
55682965
JB
47{
48 struct cfg80211_registered_device *result = NULL, *drv;
49
85fd129a
LR
50 if (!wiphy_idx_valid(wiphy_idx))
51 return NULL;
52
761cf7ec
LR
53 assert_cfg80211_lock();
54
55682965 55 list_for_each_entry(drv, &cfg80211_drv_list, list) {
b5850a7a 56 if (drv->wiphy_idx == wiphy_idx) {
55682965
JB
57 result = drv;
58 break;
59 }
60 }
61
62 return result;
63}
64
806a9e39
LR
65int get_wiphy_idx(struct wiphy *wiphy)
66{
67 struct cfg80211_registered_device *drv;
68 if (!wiphy)
69 return WIPHY_IDX_STALE;
70 drv = wiphy_to_dev(wiphy);
71 return drv->wiphy_idx;
72}
73
74/* requires cfg80211_drv_mutex to be held! */
75struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
76{
77 struct cfg80211_registered_device *drv;
78
79 if (!wiphy_idx_valid(wiphy_idx))
80 return NULL;
81
82 assert_cfg80211_lock();
83
84 drv = cfg80211_drv_by_wiphy_idx(wiphy_idx);
85 if (!drv)
86 return NULL;
87 return &drv->wiphy;
88}
89
a1794390 90/* requires cfg80211_mutex to be held! */
4bbf4d56 91struct cfg80211_registered_device *
55682965
JB
92__cfg80211_drv_from_info(struct genl_info *info)
93{
94 int ifindex;
b5850a7a 95 struct cfg80211_registered_device *bywiphyidx = NULL, *byifidx = NULL;
55682965
JB
96 struct net_device *dev;
97 int err = -EINVAL;
98
761cf7ec
LR
99 assert_cfg80211_lock();
100
55682965 101 if (info->attrs[NL80211_ATTR_WIPHY]) {
b5850a7a 102 bywiphyidx = cfg80211_drv_by_wiphy_idx(
55682965
JB
103 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY]));
104 err = -ENODEV;
105 }
106
107 if (info->attrs[NL80211_ATTR_IFINDEX]) {
108 ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
109 dev = dev_get_by_index(&init_net, ifindex);
110 if (dev) {
111 if (dev->ieee80211_ptr)
112 byifidx =
113 wiphy_to_dev(dev->ieee80211_ptr->wiphy);
114 dev_put(dev);
115 }
116 err = -ENODEV;
117 }
118
b5850a7a
LR
119 if (bywiphyidx && byifidx) {
120 if (bywiphyidx != byifidx)
55682965
JB
121 return ERR_PTR(-EINVAL);
122 else
b5850a7a 123 return bywiphyidx; /* == byifidx */
55682965 124 }
b5850a7a
LR
125 if (bywiphyidx)
126 return bywiphyidx;
55682965
JB
127
128 if (byifidx)
129 return byifidx;
130
131 return ERR_PTR(err);
132}
133
134struct cfg80211_registered_device *
135cfg80211_get_dev_from_info(struct genl_info *info)
136{
137 struct cfg80211_registered_device *drv;
138
a1794390 139 mutex_lock(&cfg80211_mutex);
55682965
JB
140 drv = __cfg80211_drv_from_info(info);
141
142 /* if it is not an error we grab the lock on
143 * it to assure it won't be going away while
144 * we operate on it */
145 if (!IS_ERR(drv))
146 mutex_lock(&drv->mtx);
147
a1794390 148 mutex_unlock(&cfg80211_mutex);
55682965
JB
149
150 return drv;
151}
152
153struct cfg80211_registered_device *
154cfg80211_get_dev_from_ifindex(int ifindex)
155{
156 struct cfg80211_registered_device *drv = ERR_PTR(-ENODEV);
157 struct net_device *dev;
158
a1794390 159 mutex_lock(&cfg80211_mutex);
55682965
JB
160 dev = dev_get_by_index(&init_net, ifindex);
161 if (!dev)
162 goto out;
163 if (dev->ieee80211_ptr) {
164 drv = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
165 mutex_lock(&drv->mtx);
166 } else
167 drv = ERR_PTR(-ENODEV);
168 dev_put(dev);
169 out:
a1794390 170 mutex_unlock(&cfg80211_mutex);
55682965
JB
171 return drv;
172}
173
4bbf4d56 174/* requires cfg80211_mutex to be held */
55682965
JB
175int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
176 char *newname)
177{
2940bb69 178 struct cfg80211_registered_device *drv;
b5850a7a 179 int wiphy_idx, taken = -1, result, digits;
55682965 180
4bbf4d56 181 assert_cfg80211_lock();
2940bb69 182
55682965 183 /* prohibit calling the thing phy%d when %d is not its number */
b5850a7a
LR
184 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
185 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
186 /* count number of places needed to print wiphy_idx */
55682965 187 digits = 1;
b5850a7a 188 while (wiphy_idx /= 10)
55682965
JB
189 digits++;
190 /*
191 * deny the name if it is phy<idx> where <idx> is printed
192 * without leading zeroes. taken == strlen(newname) here
193 */
194 if (taken == strlen(PHY_NAME) + digits)
4bbf4d56 195 return -EINVAL;
2940bb69
EB
196 }
197
198
199 /* Ignore nop renames */
2940bb69 200 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
4bbf4d56 201 return 0;
2940bb69
EB
202
203 /* Ensure another device does not already have this name. */
4bbf4d56 204 list_for_each_entry(drv, &cfg80211_drv_list, list)
2940bb69 205 if (strcmp(newname, dev_name(&drv->wiphy.dev)) == 0)
4bbf4d56 206 return -EINVAL;
55682965 207
55682965
JB
208 result = device_rename(&rdev->wiphy.dev, newname);
209 if (result)
4bbf4d56 210 return result;
55682965 211
33c0360b
JB
212 if (rdev->wiphy.debugfsdir &&
213 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
55682965
JB
214 rdev->wiphy.debugfsdir,
215 rdev->wiphy.debugfsdir->d_parent,
216 newname))
217 printk(KERN_ERR "cfg80211: failed to rename debugfs dir to %s!\n",
218 newname);
219
4bbf4d56 220 nl80211_notify_dev_rename(rdev);
55682965 221
4bbf4d56 222 return 0;
55682965
JB
223}
224
1f87f7d3
JB
225static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
226{
227 struct cfg80211_registered_device *drv = data;
228
229 drv->ops->rfkill_poll(&drv->wiphy);
230}
231
232static int cfg80211_rfkill_set_block(void *data, bool blocked)
233{
234 struct cfg80211_registered_device *drv = data;
235 struct wireless_dev *wdev;
236
237 if (!blocked)
238 return 0;
239
240 rtnl_lock();
241 mutex_lock(&drv->devlist_mtx);
242
243 list_for_each_entry(wdev, &drv->netdev_list, list)
244 dev_close(wdev->netdev);
245
246 mutex_unlock(&drv->devlist_mtx);
247 rtnl_unlock();
248
249 return 0;
250}
251
252static void cfg80211_rfkill_sync_work(struct work_struct *work)
253{
254 struct cfg80211_registered_device *drv;
255
256 drv = container_of(work, struct cfg80211_registered_device, rfkill_sync);
257 cfg80211_rfkill_set_block(drv, rfkill_blocked(drv->rfkill));
258}
259
667503dd
JB
260static void cfg80211_process_events(struct wireless_dev *wdev)
261{
262 struct cfg80211_event *ev;
263 unsigned long flags;
264
265 spin_lock_irqsave(&wdev->event_lock, flags);
266 while (!list_empty(&wdev->event_list)) {
267 ev = list_first_entry(&wdev->event_list,
268 struct cfg80211_event, list);
269 list_del(&ev->list);
270 spin_unlock_irqrestore(&wdev->event_lock, flags);
271
272 wdev_lock(wdev);
273 switch (ev->type) {
274 case EVENT_CONNECT_RESULT:
275 __cfg80211_connect_result(
276 wdev->netdev, ev->cr.bssid,
277 ev->cr.req_ie, ev->cr.req_ie_len,
278 ev->cr.resp_ie, ev->cr.resp_ie_len,
279 ev->cr.status,
280 ev->cr.status == WLAN_STATUS_SUCCESS);
281 break;
282 case EVENT_ROAMED:
283 __cfg80211_roamed(wdev, ev->rm.bssid,
284 ev->rm.req_ie, ev->rm.req_ie_len,
285 ev->rm.resp_ie, ev->rm.resp_ie_len);
286 break;
287 case EVENT_DISCONNECTED:
288 __cfg80211_disconnected(wdev->netdev,
289 ev->dc.ie, ev->dc.ie_len,
290 ev->dc.reason, true);
291 break;
292 case EVENT_IBSS_JOINED:
293 __cfg80211_ibss_joined(wdev->netdev, ev->ij.bssid);
294 break;
295 }
296 wdev_unlock(wdev);
297
298 kfree(ev);
299
300 spin_lock_irqsave(&wdev->event_lock, flags);
301 }
302 spin_unlock_irqrestore(&wdev->event_lock, flags);
303}
304
305static void cfg80211_event_work(struct work_struct *work)
306{
307 struct cfg80211_registered_device *rdev;
308 struct wireless_dev *wdev;
309
310 rdev = container_of(work, struct cfg80211_registered_device,
311 event_work);
312
313 rtnl_lock();
314 cfg80211_lock_rdev(rdev);
315 mutex_lock(&rdev->devlist_mtx);
316
317 list_for_each_entry(wdev, &rdev->netdev_list, list)
318 cfg80211_process_events(wdev);
319
320 mutex_unlock(&rdev->devlist_mtx);
321 cfg80211_unlock_rdev(rdev);
322 rtnl_unlock();
323}
324
704232c2
JB
325/* exported functions */
326
3dcf670b 327struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
704232c2 328{
638af073
DC
329 static int wiphy_counter;
330
704232c2
JB
331 struct cfg80211_registered_device *drv;
332 int alloc_size;
333
41ade00f
JB
334 WARN_ON(!ops->add_key && ops->del_key);
335 WARN_ON(ops->add_key && !ops->del_key);
336
704232c2
JB
337 alloc_size = sizeof(*drv) + sizeof_priv;
338
339 drv = kzalloc(alloc_size, GFP_KERNEL);
340 if (!drv)
341 return NULL;
342
343 drv->ops = ops;
344
a1794390 345 mutex_lock(&cfg80211_mutex);
704232c2 346
b5850a7a 347 drv->wiphy_idx = wiphy_counter++;
a4d73ee1 348
85fd129a 349 if (unlikely(!wiphy_idx_valid(drv->wiphy_idx))) {
638af073 350 wiphy_counter--;
a1794390 351 mutex_unlock(&cfg80211_mutex);
704232c2
JB
352 /* ugh, wrapped! */
353 kfree(drv);
354 return NULL;
355 }
704232c2 356
a1794390 357 mutex_unlock(&cfg80211_mutex);
638af073 358
704232c2 359 /* give it a proper name */
b5850a7a 360 dev_set_name(&drv->wiphy.dev, PHY_NAME "%d", drv->wiphy_idx);
704232c2 361
704232c2
JB
362 mutex_init(&drv->mtx);
363 mutex_init(&drv->devlist_mtx);
364 INIT_LIST_HEAD(&drv->netdev_list);
2a519311
JB
365 spin_lock_init(&drv->bss_lock);
366 INIT_LIST_HEAD(&drv->bss_list);
667503dd 367 INIT_WORK(&drv->scan_done_wk, __cfg80211_scan_done);
704232c2
JB
368
369 device_initialize(&drv->wiphy.dev);
370 drv->wiphy.dev.class = &ieee80211_class;
371 drv->wiphy.dev.platform_data = drv;
372
1f87f7d3
JB
373 drv->rfkill_ops.set_block = cfg80211_rfkill_set_block;
374 drv->rfkill = rfkill_alloc(dev_name(&drv->wiphy.dev),
375 &drv->wiphy.dev, RFKILL_TYPE_WLAN,
376 &drv->rfkill_ops, drv);
377
378 if (!drv->rfkill) {
379 kfree(drv);
380 return NULL;
381 }
382
383 INIT_WORK(&drv->rfkill_sync, cfg80211_rfkill_sync_work);
6829c878 384 INIT_WORK(&drv->conn_work, cfg80211_conn_work);
667503dd 385 INIT_WORK(&drv->event_work, cfg80211_event_work);
1f87f7d3 386
b9a5f8ca
JM
387 /*
388 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
389 * Fragmentation and RTS threshold are disabled by default with the
390 * special -1 value.
391 */
392 drv->wiphy.retry_short = 7;
393 drv->wiphy.retry_long = 4;
394 drv->wiphy.frag_threshold = (u32) -1;
395 drv->wiphy.rts_threshold = (u32) -1;
396
704232c2
JB
397 return &drv->wiphy;
398}
399EXPORT_SYMBOL(wiphy_new);
400
401int wiphy_register(struct wiphy *wiphy)
402{
403 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
404 int res;
8318d78a
JB
405 enum ieee80211_band band;
406 struct ieee80211_supported_band *sband;
407 bool have_band = false;
408 int i;
f59ac048
LR
409 u16 ifmodes = wiphy->interface_modes;
410
411 /* sanity check ifmodes */
412 WARN_ON(!ifmodes);
413 ifmodes &= ((1 << __NL80211_IFTYPE_AFTER_LAST) - 1) & ~1;
414 if (WARN_ON(ifmodes != wiphy->interface_modes))
415 wiphy->interface_modes = ifmodes;
8318d78a
JB
416
417 /* sanity check supported bands/channels */
418 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
419 sband = wiphy->bands[band];
420 if (!sband)
421 continue;
422
423 sband->band = band;
424
881d948c
JB
425 if (WARN_ON(!sband->n_channels || !sband->n_bitrates))
426 return -EINVAL;
427
428 /*
429 * Since we use a u32 for rate bitmaps in
430 * ieee80211_get_response_rate, we cannot
431 * have more than 32 legacy rates.
432 */
433 if (WARN_ON(sband->n_bitrates > 32))
8318d78a 434 return -EINVAL;
8318d78a
JB
435
436 for (i = 0; i < sband->n_channels; i++) {
437 sband->channels[i].orig_flags =
438 sband->channels[i].flags;
439 sband->channels[i].orig_mag =
440 sband->channels[i].max_antenna_gain;
441 sband->channels[i].orig_mpwr =
442 sband->channels[i].max_power;
443 sband->channels[i].band = band;
444 }
445
446 have_band = true;
447 }
448
449 if (!have_band) {
450 WARN_ON(1);
451 return -EINVAL;
452 }
453
454 /* check and set up bitrates */
455 ieee80211_set_bitrate_flags(wiphy);
456
704232c2
JB
457 res = device_add(&drv->wiphy.dev);
458 if (res)
2f0accc1 459 return res;
704232c2 460
1f87f7d3
JB
461 res = rfkill_register(drv->rfkill);
462 if (res)
463 goto out_rm_dev;
464
2f0accc1
JB
465 mutex_lock(&cfg80211_mutex);
466
467 /* set up regulatory info */
468 wiphy_update_regulatory(wiphy, NL80211_REGDOM_SET_BY_CORE);
469
704232c2
JB
470 list_add(&drv->list, &cfg80211_drv_list);
471
2f0accc1
JB
472 mutex_unlock(&cfg80211_mutex);
473
704232c2
JB
474 /* add to debugfs */
475 drv->wiphy.debugfsdir =
476 debugfs_create_dir(wiphy_name(&drv->wiphy),
477 ieee80211_debugfs_dir);
33c0360b
JB
478 if (IS_ERR(drv->wiphy.debugfsdir))
479 drv->wiphy.debugfsdir = NULL;
704232c2 480
73d54c9e
LR
481 if (wiphy->custom_regulatory) {
482 struct regulatory_request request;
483
484 request.wiphy_idx = get_wiphy_idx(wiphy);
485 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
486 request.alpha2[0] = '9';
487 request.alpha2[1] = '9';
488
489 nl80211_send_reg_change_event(&request);
490 }
491
1ac61302
LR
492 cfg80211_debugfs_drv_add(drv);
493
2f0accc1 494 return 0;
1f87f7d3
JB
495
496 out_rm_dev:
497 device_del(&drv->wiphy.dev);
704232c2
JB
498 return res;
499}
500EXPORT_SYMBOL(wiphy_register);
501
1f87f7d3
JB
502void wiphy_rfkill_start_polling(struct wiphy *wiphy)
503{
504 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
505
506 if (!drv->ops->rfkill_poll)
507 return;
508 drv->rfkill_ops.poll = cfg80211_rfkill_poll;
509 rfkill_resume_polling(drv->rfkill);
510}
511EXPORT_SYMBOL(wiphy_rfkill_start_polling);
512
513void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
514{
515 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
516
517 rfkill_pause_polling(drv->rfkill);
518}
519EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
520
704232c2
JB
521void wiphy_unregister(struct wiphy *wiphy)
522{
523 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
524
1f87f7d3
JB
525 rfkill_unregister(drv->rfkill);
526
f16bfc1c 527 /* protect the device list */
a1794390 528 mutex_lock(&cfg80211_mutex);
704232c2 529
f16bfc1c
JB
530 BUG_ON(!list_empty(&drv->netdev_list));
531
532 /*
533 * Try to grab drv->mtx. If a command is still in progress,
534 * hopefully the driver will refuse it since it's tearing
535 * down the device already. We wait for this command to complete
536 * before unlinking the item from the list.
537 * Note: as codified by the BUG_ON above we cannot get here if
538 * a virtual interface is still associated. Hence, we can only
539 * get to lock contention here if userspace issues a command
540 * that identified the hardware by wiphy index.
541 */
704232c2 542 mutex_lock(&drv->mtx);
f16bfc1c 543 /* unlock again before freeing */
704232c2
JB
544 mutex_unlock(&drv->mtx);
545
6829c878 546 cancel_work_sync(&drv->conn_work);
667503dd
JB
547 cancel_work_sync(&drv->scan_done_wk);
548 kfree(drv->scan_req);
549 flush_work(&drv->event_work);
6829c878 550
1ac61302
LR
551 cfg80211_debugfs_drv_del(drv);
552
3f2355cb
LR
553 /* If this device got a regulatory hint tell core its
554 * free to listen now to a new shiny device regulatory hint */
555 reg_device_remove(wiphy);
556
f16bfc1c 557 list_del(&drv->list);
704232c2
JB
558 device_del(&drv->wiphy.dev);
559 debugfs_remove(drv->wiphy.debugfsdir);
560
a1794390 561 mutex_unlock(&cfg80211_mutex);
704232c2
JB
562}
563EXPORT_SYMBOL(wiphy_unregister);
564
565void cfg80211_dev_free(struct cfg80211_registered_device *drv)
566{
2a519311 567 struct cfg80211_internal_bss *scan, *tmp;
1f87f7d3 568 rfkill_destroy(drv->rfkill);
704232c2
JB
569 mutex_destroy(&drv->mtx);
570 mutex_destroy(&drv->devlist_mtx);
2a519311 571 list_for_each_entry_safe(scan, tmp, &drv->bss_list, list)
78c1c7e1 572 cfg80211_put_bss(&scan->pub);
704232c2
JB
573 kfree(drv);
574}
575
576void wiphy_free(struct wiphy *wiphy)
577{
578 put_device(&wiphy->dev);
579}
580EXPORT_SYMBOL(wiphy_free);
581
1f87f7d3
JB
582void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
583{
584 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
585
586 if (rfkill_set_hw_state(drv->rfkill, blocked))
587 schedule_work(&drv->rfkill_sync);
588}
589EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
590
704232c2
JB
591static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
592 unsigned long state,
593 void *ndev)
594{
595 struct net_device *dev = ndev;
2a783c13 596 struct wireless_dev *wdev = dev->ieee80211_ptr;
704232c2
JB
597 struct cfg80211_registered_device *rdev;
598
2a783c13 599 if (!wdev)
1f87f7d3 600 return NOTIFY_DONE;
704232c2 601
2a783c13 602 rdev = wiphy_to_dev(wdev->wiphy);
704232c2 603
2a783c13 604 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
60719ffd 605
704232c2
JB
606 switch (state) {
607 case NETDEV_REGISTER:
667503dd
JB
608 mutex_init(&wdev->mtx);
609 INIT_LIST_HEAD(&wdev->event_list);
610 spin_lock_init(&wdev->event_lock);
704232c2 611 mutex_lock(&rdev->devlist_mtx);
2a783c13 612 list_add(&wdev->list, &rdev->netdev_list);
704232c2
JB
613 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
614 "phy80211")) {
615 printk(KERN_ERR "wireless: failed to add phy80211 "
616 "symlink to netdev!\n");
617 }
2a783c13 618 wdev->netdev = dev;
b23aa676 619 wdev->sme_state = CFG80211_SME_IDLE;
bc92afd9 620 mutex_unlock(&rdev->devlist_mtx);
08645126 621#ifdef CONFIG_WIRELESS_EXT
2a783c13
JB
622 wdev->wext.default_key = -1;
623 wdev->wext.default_mgmt_key = -1;
f2129354 624 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
bc92afd9
JB
625 wdev->wext.ps = CONFIG_CFG80211_DEFAULT_PS_VALUE;
626 wdev->wext.ps_timeout = 500;
627 if (rdev->ops->set_power_mgmt)
628 if (rdev->ops->set_power_mgmt(wdev->wiphy, dev,
629 wdev->wext.ps,
630 wdev->wext.ps_timeout)) {
631 /* assume this means it's off */
632 wdev->wext.ps = false;
633 }
08645126 634#endif
704232c2 635 break;
04a773ad 636 case NETDEV_GOING_DOWN:
b23aa676
SO
637 switch (wdev->iftype) {
638 case NL80211_IFTYPE_ADHOC:
639 cfg80211_leave_ibss(rdev, dev, true);
640 break;
641 case NL80211_IFTYPE_STATION:
667503dd 642 wdev_lock(wdev);
f2129354
JB
643#ifdef CONFIG_WIRELESS_EXT
644 kfree(wdev->wext.ie);
645 wdev->wext.ie = NULL;
646 wdev->wext.ie_len = 0;
0eb14647 647 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
f2129354 648#endif
667503dd
JB
649 __cfg80211_disconnect(rdev, dev,
650 WLAN_REASON_DEAUTH_LEAVING, true);
19957bb3 651 cfg80211_mlme_down(rdev, dev);
667503dd 652 wdev_unlock(wdev);
b23aa676
SO
653 break;
654 default:
655 break;
656 }
04a773ad
JB
657 break;
658 case NETDEV_UP:
659#ifdef CONFIG_WIRELESS_EXT
667503dd
JB
660 cfg80211_lock_rdev(rdev);
661 wdev_lock(wdev);
f2129354
JB
662 switch (wdev->iftype) {
663 case NL80211_IFTYPE_ADHOC:
664 if (wdev->wext.ibss.ssid_len)
667503dd
JB
665 __cfg80211_join_ibss(rdev, dev,
666 &wdev->wext.ibss);
04a773ad 667 break;
f2129354
JB
668 case NL80211_IFTYPE_STATION:
669 if (wdev->wext.connect.ssid_len)
667503dd
JB
670 __cfg80211_connect(rdev, dev,
671 &wdev->wext.connect);
f2129354
JB
672 break;
673 default:
04a773ad 674 break;
f2129354 675 }
667503dd
JB
676 wdev_unlock(wdev);
677 cfg80211_unlock_rdev(rdev);
04a773ad 678#endif
2a783c13 679 break;
704232c2
JB
680 case NETDEV_UNREGISTER:
681 mutex_lock(&rdev->devlist_mtx);
2a783c13 682 if (!list_empty(&wdev->list)) {
704232c2 683 sysfs_remove_link(&dev->dev.kobj, "phy80211");
2a783c13 684 list_del_init(&wdev->list);
704232c2
JB
685 }
686 mutex_unlock(&rdev->devlist_mtx);
667503dd 687 mutex_destroy(&wdev->mtx);
704232c2 688 break;
1f87f7d3
JB
689 case NETDEV_PRE_UP:
690 if (rfkill_blocked(rdev->rfkill))
691 return notifier_from_errno(-ERFKILL);
692 break;
704232c2
JB
693 }
694
1f87f7d3 695 return NOTIFY_DONE;
704232c2
JB
696}
697
698static struct notifier_block cfg80211_netdev_notifier = {
699 .notifier_call = cfg80211_netdev_notifier_call,
700};
701
702static int cfg80211_init(void)
703{
b2e1b302
LR
704 int err;
705
b2e1b302 706 err = wiphy_sysfs_init();
704232c2
JB
707 if (err)
708 goto out_fail_sysfs;
709
710 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
711 if (err)
712 goto out_fail_notifier;
713
55682965
JB
714 err = nl80211_init();
715 if (err)
716 goto out_fail_nl80211;
717
704232c2
JB
718 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
719
b2e1b302
LR
720 err = regulatory_init();
721 if (err)
722 goto out_fail_reg;
723
704232c2
JB
724 return 0;
725
b2e1b302
LR
726out_fail_reg:
727 debugfs_remove(ieee80211_debugfs_dir);
55682965
JB
728out_fail_nl80211:
729 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
704232c2
JB
730out_fail_notifier:
731 wiphy_sysfs_exit();
732out_fail_sysfs:
733 return err;
734}
b2e1b302 735
3a462465 736subsys_initcall(cfg80211_init);
704232c2
JB
737
738static void cfg80211_exit(void)
739{
740 debugfs_remove(ieee80211_debugfs_dir);
55682965 741 nl80211_exit();
704232c2
JB
742 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
743 wiphy_sysfs_exit();
b2e1b302 744 regulatory_exit();
704232c2
JB
745}
746module_exit(cfg80211_exit);