b43: Enforce DMA descriptor memory constraints
[deliverable/linux.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>
16a832e7 15#include <linux/etherdevice.h>
1f87f7d3 16#include <linux/rtnetlink.h>
704232c2
JB
17#include <net/genetlink.h>
18#include <net/cfg80211.h>
55682965 19#include "nl80211.h"
704232c2
JB
20#include "core.h"
21#include "sysfs.h"
1ac61302 22#include "debugfs.h"
a9a11622 23#include "wext-compat.h"
4890e3be 24#include "ethtool.h"
704232c2
JB
25
26/* name for sysfs, %d is appended */
27#define PHY_NAME "phy"
28
29MODULE_AUTHOR("Johannes Berg");
30MODULE_LICENSE("GPL");
31MODULE_DESCRIPTION("wireless configuration support");
32
33/* RCU might be appropriate here since we usually
34 * only read the list, and that can happen quite
35 * often because we need to do it for each command */
79c97e97 36LIST_HEAD(cfg80211_rdev_list);
f5ea9120 37int cfg80211_rdev_list_generation;
a1794390
LR
38
39/*
abc7381b 40 * This is used to protect the cfg80211_rdev_list
a1794390
LR
41 */
42DEFINE_MUTEX(cfg80211_mutex);
704232c2
JB
43
44/* for debugfs */
45static struct dentry *ieee80211_debugfs_dir;
46
806a9e39 47/* requires cfg80211_mutex to be held! */
79c97e97 48struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx)
55682965 49{
79c97e97 50 struct cfg80211_registered_device *result = NULL, *rdev;
55682965 51
85fd129a
LR
52 if (!wiphy_idx_valid(wiphy_idx))
53 return NULL;
54
761cf7ec
LR
55 assert_cfg80211_lock();
56
79c97e97
JB
57 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
58 if (rdev->wiphy_idx == wiphy_idx) {
59 result = rdev;
55682965
JB
60 break;
61 }
62 }
63
64 return result;
65}
66
806a9e39
LR
67int get_wiphy_idx(struct wiphy *wiphy)
68{
79c97e97 69 struct cfg80211_registered_device *rdev;
806a9e39
LR
70 if (!wiphy)
71 return WIPHY_IDX_STALE;
79c97e97
JB
72 rdev = wiphy_to_dev(wiphy);
73 return rdev->wiphy_idx;
806a9e39
LR
74}
75
79c97e97 76/* requires cfg80211_rdev_mutex to be held! */
806a9e39
LR
77struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
78{
79c97e97 79 struct cfg80211_registered_device *rdev;
806a9e39
LR
80
81 if (!wiphy_idx_valid(wiphy_idx))
82 return NULL;
83
84 assert_cfg80211_lock();
85
79c97e97
JB
86 rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx);
87 if (!rdev)
806a9e39 88 return NULL;
79c97e97 89 return &rdev->wiphy;
806a9e39
LR
90}
91
a1794390 92/* requires cfg80211_mutex to be held! */
4bbf4d56 93struct cfg80211_registered_device *
79c97e97 94__cfg80211_rdev_from_info(struct genl_info *info)
55682965
JB
95{
96 int ifindex;
b5850a7a 97 struct cfg80211_registered_device *bywiphyidx = NULL, *byifidx = NULL;
55682965
JB
98 struct net_device *dev;
99 int err = -EINVAL;
100
761cf7ec
LR
101 assert_cfg80211_lock();
102
55682965 103 if (info->attrs[NL80211_ATTR_WIPHY]) {
79c97e97 104 bywiphyidx = cfg80211_rdev_by_wiphy_idx(
55682965
JB
105 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY]));
106 err = -ENODEV;
107 }
108
109 if (info->attrs[NL80211_ATTR_IFINDEX]) {
110 ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
463d0183 111 dev = dev_get_by_index(genl_info_net(info), ifindex);
55682965
JB
112 if (dev) {
113 if (dev->ieee80211_ptr)
114 byifidx =
115 wiphy_to_dev(dev->ieee80211_ptr->wiphy);
116 dev_put(dev);
117 }
118 err = -ENODEV;
119 }
120
b5850a7a
LR
121 if (bywiphyidx && byifidx) {
122 if (bywiphyidx != byifidx)
55682965
JB
123 return ERR_PTR(-EINVAL);
124 else
b5850a7a 125 return bywiphyidx; /* == byifidx */
55682965 126 }
b5850a7a
LR
127 if (bywiphyidx)
128 return bywiphyidx;
55682965
JB
129
130 if (byifidx)
131 return byifidx;
132
133 return ERR_PTR(err);
134}
135
136struct cfg80211_registered_device *
137cfg80211_get_dev_from_info(struct genl_info *info)
138{
79c97e97 139 struct cfg80211_registered_device *rdev;
55682965 140
a1794390 141 mutex_lock(&cfg80211_mutex);
79c97e97 142 rdev = __cfg80211_rdev_from_info(info);
55682965
JB
143
144 /* if it is not an error we grab the lock on
145 * it to assure it won't be going away while
146 * we operate on it */
79c97e97
JB
147 if (!IS_ERR(rdev))
148 mutex_lock(&rdev->mtx);
55682965 149
a1794390 150 mutex_unlock(&cfg80211_mutex);
55682965 151
79c97e97 152 return rdev;
55682965
JB
153}
154
155struct cfg80211_registered_device *
463d0183 156cfg80211_get_dev_from_ifindex(struct net *net, int ifindex)
55682965 157{
79c97e97 158 struct cfg80211_registered_device *rdev = ERR_PTR(-ENODEV);
55682965
JB
159 struct net_device *dev;
160
a1794390 161 mutex_lock(&cfg80211_mutex);
463d0183 162 dev = dev_get_by_index(net, ifindex);
55682965
JB
163 if (!dev)
164 goto out;
165 if (dev->ieee80211_ptr) {
79c97e97
JB
166 rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
167 mutex_lock(&rdev->mtx);
55682965 168 } else
79c97e97 169 rdev = ERR_PTR(-ENODEV);
55682965
JB
170 dev_put(dev);
171 out:
a1794390 172 mutex_unlock(&cfg80211_mutex);
79c97e97 173 return rdev;
55682965
JB
174}
175
4bbf4d56 176/* requires cfg80211_mutex to be held */
55682965
JB
177int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
178 char *newname)
179{
79c97e97 180 struct cfg80211_registered_device *rdev2;
b5850a7a 181 int wiphy_idx, taken = -1, result, digits;
55682965 182
4bbf4d56 183 assert_cfg80211_lock();
2940bb69 184
55682965 185 /* prohibit calling the thing phy%d when %d is not its number */
b5850a7a
LR
186 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
187 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
188 /* count number of places needed to print wiphy_idx */
55682965 189 digits = 1;
b5850a7a 190 while (wiphy_idx /= 10)
55682965
JB
191 digits++;
192 /*
193 * deny the name if it is phy<idx> where <idx> is printed
194 * without leading zeroes. taken == strlen(newname) here
195 */
196 if (taken == strlen(PHY_NAME) + digits)
4bbf4d56 197 return -EINVAL;
2940bb69
EB
198 }
199
200
201 /* Ignore nop renames */
2940bb69 202 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
4bbf4d56 203 return 0;
2940bb69
EB
204
205 /* Ensure another device does not already have this name. */
79c97e97
JB
206 list_for_each_entry(rdev2, &cfg80211_rdev_list, list)
207 if (strcmp(newname, dev_name(&rdev2->wiphy.dev)) == 0)
4bbf4d56 208 return -EINVAL;
55682965 209
55682965
JB
210 result = device_rename(&rdev->wiphy.dev, newname);
211 if (result)
4bbf4d56 212 return result;
55682965 213
33c0360b
JB
214 if (rdev->wiphy.debugfsdir &&
215 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
55682965
JB
216 rdev->wiphy.debugfsdir,
217 rdev->wiphy.debugfsdir->d_parent,
218 newname))
219 printk(KERN_ERR "cfg80211: failed to rename debugfs dir to %s!\n",
220 newname);
221
4bbf4d56 222 nl80211_notify_dev_rename(rdev);
55682965 223
4bbf4d56 224 return 0;
55682965
JB
225}
226
463d0183
JB
227int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
228 struct net *net)
229{
230 struct wireless_dev *wdev;
231 int err = 0;
232
233 if (!rdev->wiphy.netnsok)
234 return -EOPNOTSUPP;
235
236 list_for_each_entry(wdev, &rdev->netdev_list, list) {
237 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
238 err = dev_change_net_namespace(wdev->netdev, net, "wlan%d");
239 if (err)
240 break;
241 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
242 }
243
244 if (err) {
245 /* failed -- clean up to old netns */
246 net = wiphy_net(&rdev->wiphy);
247
248 list_for_each_entry_continue_reverse(wdev, &rdev->netdev_list,
249 list) {
250 wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
251 err = dev_change_net_namespace(wdev->netdev, net,
252 "wlan%d");
253 WARN_ON(err);
254 wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
255 }
256 }
257
258 wiphy_net_set(&rdev->wiphy, net);
259
260 return err;
261}
262
1f87f7d3
JB
263static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
264{
79c97e97 265 struct cfg80211_registered_device *rdev = data;
1f87f7d3 266
79c97e97 267 rdev->ops->rfkill_poll(&rdev->wiphy);
1f87f7d3
JB
268}
269
270static int cfg80211_rfkill_set_block(void *data, bool blocked)
271{
79c97e97 272 struct cfg80211_registered_device *rdev = data;
1f87f7d3
JB
273 struct wireless_dev *wdev;
274
275 if (!blocked)
276 return 0;
277
278 rtnl_lock();
79c97e97 279 mutex_lock(&rdev->devlist_mtx);
1f87f7d3 280
79c97e97 281 list_for_each_entry(wdev, &rdev->netdev_list, list)
1f87f7d3
JB
282 dev_close(wdev->netdev);
283
79c97e97 284 mutex_unlock(&rdev->devlist_mtx);
1f87f7d3
JB
285 rtnl_unlock();
286
287 return 0;
288}
289
290static void cfg80211_rfkill_sync_work(struct work_struct *work)
291{
79c97e97 292 struct cfg80211_registered_device *rdev;
1f87f7d3 293
79c97e97
JB
294 rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync);
295 cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill));
1f87f7d3
JB
296}
297
667503dd
JB
298static void cfg80211_event_work(struct work_struct *work)
299{
300 struct cfg80211_registered_device *rdev;
667503dd
JB
301
302 rdev = container_of(work, struct cfg80211_registered_device,
303 event_work);
304
305 rtnl_lock();
306 cfg80211_lock_rdev(rdev);
667503dd 307
3d54d255 308 cfg80211_process_rdev_events(rdev);
667503dd
JB
309 cfg80211_unlock_rdev(rdev);
310 rtnl_unlock();
311}
312
704232c2
JB
313/* exported functions */
314
3dcf670b 315struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
704232c2 316{
638af073
DC
317 static int wiphy_counter;
318
79c97e97 319 struct cfg80211_registered_device *rdev;
704232c2
JB
320 int alloc_size;
321
0b20633d
JB
322 WARN_ON(ops->add_key && (!ops->del_key || !ops->set_default_key));
323 WARN_ON(ops->auth && (!ops->assoc || !ops->deauth || !ops->disassoc));
324 WARN_ON(ops->connect && !ops->disconnect);
325 WARN_ON(ops->join_ibss && !ops->leave_ibss);
326 WARN_ON(ops->add_virtual_intf && !ops->del_virtual_intf);
327 WARN_ON(ops->add_station && !ops->del_station);
328 WARN_ON(ops->add_mpath && !ops->del_mpath);
41ade00f 329
79c97e97 330 alloc_size = sizeof(*rdev) + sizeof_priv;
704232c2 331
79c97e97
JB
332 rdev = kzalloc(alloc_size, GFP_KERNEL);
333 if (!rdev)
704232c2
JB
334 return NULL;
335
79c97e97 336 rdev->ops = ops;
704232c2 337
a1794390 338 mutex_lock(&cfg80211_mutex);
704232c2 339
79c97e97 340 rdev->wiphy_idx = wiphy_counter++;
a4d73ee1 341
79c97e97 342 if (unlikely(!wiphy_idx_valid(rdev->wiphy_idx))) {
638af073 343 wiphy_counter--;
a1794390 344 mutex_unlock(&cfg80211_mutex);
704232c2 345 /* ugh, wrapped! */
79c97e97 346 kfree(rdev);
704232c2
JB
347 return NULL;
348 }
704232c2 349
a1794390 350 mutex_unlock(&cfg80211_mutex);
638af073 351
704232c2 352 /* give it a proper name */
79c97e97
JB
353 dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx);
354
355 mutex_init(&rdev->mtx);
356 mutex_init(&rdev->devlist_mtx);
357 INIT_LIST_HEAD(&rdev->netdev_list);
358 spin_lock_init(&rdev->bss_lock);
359 INIT_LIST_HEAD(&rdev->bss_list);
360 INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done);
361
3d23e349
JB
362#ifdef CONFIG_CFG80211_WEXT
363 rdev->wiphy.wext = &cfg80211_wext_handler;
364#endif
365
79c97e97
JB
366 device_initialize(&rdev->wiphy.dev);
367 rdev->wiphy.dev.class = &ieee80211_class;
368 rdev->wiphy.dev.platform_data = rdev;
369
16cb9d42
JB
370 rdev->wiphy.ps_default = CONFIG_CFG80211_DEFAULT_PS_VALUE;
371
463d0183
JB
372 wiphy_net_set(&rdev->wiphy, &init_net);
373
79c97e97
JB
374 rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block;
375 rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev),
376 &rdev->wiphy.dev, RFKILL_TYPE_WLAN,
377 &rdev->rfkill_ops, rdev);
378
379 if (!rdev->rfkill) {
380 kfree(rdev);
1f87f7d3
JB
381 return NULL;
382 }
383
79c97e97
JB
384 INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work);
385 INIT_WORK(&rdev->conn_work, cfg80211_conn_work);
386 INIT_WORK(&rdev->event_work, cfg80211_event_work);
1f87f7d3 387
ad002395
JB
388 init_waitqueue_head(&rdev->dev_wait);
389
b9a5f8ca
JM
390 /*
391 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
392 * Fragmentation and RTS threshold are disabled by default with the
393 * special -1 value.
394 */
79c97e97
JB
395 rdev->wiphy.retry_short = 7;
396 rdev->wiphy.retry_long = 4;
397 rdev->wiphy.frag_threshold = (u32) -1;
398 rdev->wiphy.rts_threshold = (u32) -1;
b9a5f8ca 399
79c97e97 400 return &rdev->wiphy;
704232c2
JB
401}
402EXPORT_SYMBOL(wiphy_new);
403
404int wiphy_register(struct wiphy *wiphy)
405{
79c97e97 406 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
704232c2 407 int res;
8318d78a
JB
408 enum ieee80211_band band;
409 struct ieee80211_supported_band *sband;
410 bool have_band = false;
411 int i;
f59ac048
LR
412 u16 ifmodes = wiphy->interface_modes;
413
414 /* sanity check ifmodes */
415 WARN_ON(!ifmodes);
416 ifmodes &= ((1 << __NL80211_IFTYPE_AFTER_LAST) - 1) & ~1;
417 if (WARN_ON(ifmodes != wiphy->interface_modes))
418 wiphy->interface_modes = ifmodes;
8318d78a
JB
419
420 /* sanity check supported bands/channels */
421 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
422 sband = wiphy->bands[band];
423 if (!sband)
424 continue;
425
426 sband->band = band;
427
881d948c
JB
428 if (WARN_ON(!sband->n_channels || !sband->n_bitrates))
429 return -EINVAL;
430
431 /*
432 * Since we use a u32 for rate bitmaps in
433 * ieee80211_get_response_rate, we cannot
434 * have more than 32 legacy rates.
435 */
436 if (WARN_ON(sband->n_bitrates > 32))
8318d78a 437 return -EINVAL;
8318d78a
JB
438
439 for (i = 0; i < sband->n_channels; i++) {
440 sband->channels[i].orig_flags =
441 sband->channels[i].flags;
442 sband->channels[i].orig_mag =
443 sband->channels[i].max_antenna_gain;
444 sband->channels[i].orig_mpwr =
445 sband->channels[i].max_power;
446 sband->channels[i].band = band;
447 }
448
449 have_band = true;
450 }
451
452 if (!have_band) {
453 WARN_ON(1);
454 return -EINVAL;
455 }
456
457 /* check and set up bitrates */
458 ieee80211_set_bitrate_flags(wiphy);
459
79c97e97 460 res = device_add(&rdev->wiphy.dev);
704232c2 461 if (res)
2f0accc1 462 return res;
704232c2 463
79c97e97 464 res = rfkill_register(rdev->rfkill);
1f87f7d3
JB
465 if (res)
466 goto out_rm_dev;
467
2f0accc1
JB
468 mutex_lock(&cfg80211_mutex);
469
470 /* set up regulatory info */
471 wiphy_update_regulatory(wiphy, NL80211_REGDOM_SET_BY_CORE);
472
79c97e97 473 list_add(&rdev->list, &cfg80211_rdev_list);
f5ea9120 474 cfg80211_rdev_list_generation++;
704232c2 475
2f0accc1
JB
476 mutex_unlock(&cfg80211_mutex);
477
704232c2 478 /* add to debugfs */
79c97e97
JB
479 rdev->wiphy.debugfsdir =
480 debugfs_create_dir(wiphy_name(&rdev->wiphy),
704232c2 481 ieee80211_debugfs_dir);
79c97e97
JB
482 if (IS_ERR(rdev->wiphy.debugfsdir))
483 rdev->wiphy.debugfsdir = NULL;
704232c2 484
73d54c9e
LR
485 if (wiphy->custom_regulatory) {
486 struct regulatory_request request;
487
488 request.wiphy_idx = get_wiphy_idx(wiphy);
489 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
490 request.alpha2[0] = '9';
491 request.alpha2[1] = '9';
492
493 nl80211_send_reg_change_event(&request);
494 }
495
79c97e97 496 cfg80211_debugfs_rdev_add(rdev);
1ac61302 497
2f0accc1 498 return 0;
1f87f7d3
JB
499
500 out_rm_dev:
79c97e97 501 device_del(&rdev->wiphy.dev);
704232c2
JB
502 return res;
503}
504EXPORT_SYMBOL(wiphy_register);
505
1f87f7d3
JB
506void wiphy_rfkill_start_polling(struct wiphy *wiphy)
507{
79c97e97 508 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
1f87f7d3 509
79c97e97 510 if (!rdev->ops->rfkill_poll)
1f87f7d3 511 return;
79c97e97
JB
512 rdev->rfkill_ops.poll = cfg80211_rfkill_poll;
513 rfkill_resume_polling(rdev->rfkill);
1f87f7d3
JB
514}
515EXPORT_SYMBOL(wiphy_rfkill_start_polling);
516
517void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
518{
79c97e97 519 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
1f87f7d3 520
79c97e97 521 rfkill_pause_polling(rdev->rfkill);
1f87f7d3
JB
522}
523EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
524
704232c2
JB
525void wiphy_unregister(struct wiphy *wiphy)
526{
79c97e97 527 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
704232c2 528
79c97e97 529 rfkill_unregister(rdev->rfkill);
1f87f7d3 530
f16bfc1c 531 /* protect the device list */
a1794390 532 mutex_lock(&cfg80211_mutex);
704232c2 533
ad002395
JB
534 wait_event(rdev->dev_wait, ({
535 int __count;
536 mutex_lock(&rdev->devlist_mtx);
537 __count = rdev->opencount;
538 mutex_unlock(&rdev->devlist_mtx);
539 __count == 0;}));
540
541 mutex_lock(&rdev->devlist_mtx);
79c97e97 542 BUG_ON(!list_empty(&rdev->netdev_list));
ad002395
JB
543 mutex_unlock(&rdev->devlist_mtx);
544
545 /*
546 * First remove the hardware from everywhere, this makes
547 * it impossible to find from userspace.
548 */
7bcfaf2f 549 debugfs_remove_recursive(rdev->wiphy.debugfsdir);
ad002395 550 list_del(&rdev->list);
f16bfc1c
JB
551
552 /*
79c97e97 553 * Try to grab rdev->mtx. If a command is still in progress,
f16bfc1c
JB
554 * hopefully the driver will refuse it since it's tearing
555 * down the device already. We wait for this command to complete
556 * before unlinking the item from the list.
557 * Note: as codified by the BUG_ON above we cannot get here if
ad002395
JB
558 * a virtual interface is still present. Hence, we can only get
559 * to lock contention here if userspace issues a command that
560 * identified the hardware by wiphy index.
f16bfc1c 561 */
0ff6ce7b 562 cfg80211_lock_rdev(rdev);
ad002395 563 /* nothing */
0ff6ce7b 564 cfg80211_unlock_rdev(rdev);
704232c2 565
3f2355cb
LR
566 /* If this device got a regulatory hint tell core its
567 * free to listen now to a new shiny device regulatory hint */
568 reg_device_remove(wiphy);
569
f5ea9120 570 cfg80211_rdev_list_generation++;
79c97e97 571 device_del(&rdev->wiphy.dev);
704232c2 572
a1794390 573 mutex_unlock(&cfg80211_mutex);
6682588a 574
36e6fea8 575 flush_work(&rdev->scan_done_wk);
6682588a 576 cancel_work_sync(&rdev->conn_work);
6682588a 577 flush_work(&rdev->event_work);
704232c2
JB
578}
579EXPORT_SYMBOL(wiphy_unregister);
580
79c97e97 581void cfg80211_dev_free(struct cfg80211_registered_device *rdev)
704232c2 582{
2a519311 583 struct cfg80211_internal_bss *scan, *tmp;
79c97e97
JB
584 rfkill_destroy(rdev->rfkill);
585 mutex_destroy(&rdev->mtx);
586 mutex_destroy(&rdev->devlist_mtx);
587 list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list)
78c1c7e1 588 cfg80211_put_bss(&scan->pub);
79c97e97 589 kfree(rdev);
704232c2
JB
590}
591
592void wiphy_free(struct wiphy *wiphy)
593{
594 put_device(&wiphy->dev);
595}
596EXPORT_SYMBOL(wiphy_free);
597
1f87f7d3
JB
598void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
599{
79c97e97 600 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
1f87f7d3 601
79c97e97
JB
602 if (rfkill_set_hw_state(rdev->rfkill, blocked))
603 schedule_work(&rdev->rfkill_sync);
1f87f7d3
JB
604}
605EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
606
ad002395
JB
607static void wdev_cleanup_work(struct work_struct *work)
608{
609 struct wireless_dev *wdev;
610 struct cfg80211_registered_device *rdev;
611
612 wdev = container_of(work, struct wireless_dev, cleanup_work);
613 rdev = wiphy_to_dev(wdev->wiphy);
614
615 cfg80211_lock_rdev(rdev);
616
617 if (WARN_ON(rdev->scan_req && rdev->scan_req->dev == wdev->netdev)) {
618 rdev->scan_req->aborted = true;
01a0ac41 619 ___cfg80211_scan_done(rdev, true);
ad002395
JB
620 }
621
622 cfg80211_unlock_rdev(rdev);
623
624 mutex_lock(&rdev->devlist_mtx);
625 rdev->opencount--;
626 mutex_unlock(&rdev->devlist_mtx);
627 wake_up(&rdev->dev_wait);
628
629 dev_put(wdev->netdev);
630}
631
053a93dd
MH
632static struct device_type wiphy_type = {
633 .name = "wlan",
634};
635
704232c2
JB
636static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
637 unsigned long state,
638 void *ndev)
639{
640 struct net_device *dev = ndev;
2a783c13 641 struct wireless_dev *wdev = dev->ieee80211_ptr;
704232c2
JB
642 struct cfg80211_registered_device *rdev;
643
2a783c13 644 if (!wdev)
1f87f7d3 645 return NOTIFY_DONE;
704232c2 646
2a783c13 647 rdev = wiphy_to_dev(wdev->wiphy);
704232c2 648
2a783c13 649 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
60719ffd 650
704232c2 651 switch (state) {
053a93dd
MH
652 case NETDEV_POST_INIT:
653 SET_NETDEV_DEVTYPE(dev, &wiphy_type);
654 break;
704232c2 655 case NETDEV_REGISTER:
0ff6ce7b
JB
656 /*
657 * NB: cannot take rdev->mtx here because this may be
658 * called within code protected by it when interfaces
659 * are added with nl80211.
660 */
667503dd 661 mutex_init(&wdev->mtx);
ad002395 662 INIT_WORK(&wdev->cleanup_work, wdev_cleanup_work);
667503dd
JB
663 INIT_LIST_HEAD(&wdev->event_list);
664 spin_lock_init(&wdev->event_lock);
704232c2 665 mutex_lock(&rdev->devlist_mtx);
2a783c13 666 list_add(&wdev->list, &rdev->netdev_list);
f5ea9120 667 rdev->devlist_generation++;
463d0183
JB
668 /* can only change netns with wiphy */
669 dev->features |= NETIF_F_NETNS_LOCAL;
670
704232c2
JB
671 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
672 "phy80211")) {
673 printk(KERN_ERR "wireless: failed to add phy80211 "
674 "symlink to netdev!\n");
675 }
2a783c13 676 wdev->netdev = dev;
b23aa676 677 wdev->sme_state = CFG80211_SME_IDLE;
bc92afd9 678 mutex_unlock(&rdev->devlist_mtx);
3d23e349 679#ifdef CONFIG_CFG80211_WEXT
2a783c13
JB
680 wdev->wext.default_key = -1;
681 wdev->wext.default_mgmt_key = -1;
f2129354 682 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
16cb9d42 683 wdev->wext.ps = wdev->wiphy->ps_default;
75e6c3b7 684 wdev->wext.ps_timeout = 100;
bc92afd9
JB
685 if (rdev->ops->set_power_mgmt)
686 if (rdev->ops->set_power_mgmt(wdev->wiphy, dev,
687 wdev->wext.ps,
688 wdev->wext.ps_timeout)) {
689 /* assume this means it's off */
690 wdev->wext.ps = false;
691 }
08645126 692#endif
4890e3be
JL
693 if (!dev->ethtool_ops)
694 dev->ethtool_ops = &cfg80211_ethtool_ops;
704232c2 695 break;
04a773ad 696 case NETDEV_GOING_DOWN:
b23aa676
SO
697 switch (wdev->iftype) {
698 case NL80211_IFTYPE_ADHOC:
699 cfg80211_leave_ibss(rdev, dev, true);
700 break;
701 case NL80211_IFTYPE_STATION:
667503dd 702 wdev_lock(wdev);
3d23e349 703#ifdef CONFIG_CFG80211_WEXT
f2129354
JB
704 kfree(wdev->wext.ie);
705 wdev->wext.ie = NULL;
706 wdev->wext.ie_len = 0;
0eb14647 707 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
f2129354 708#endif
667503dd
JB
709 __cfg80211_disconnect(rdev, dev,
710 WLAN_REASON_DEAUTH_LEAVING, true);
19957bb3 711 cfg80211_mlme_down(rdev, dev);
667503dd 712 wdev_unlock(wdev);
b23aa676
SO
713 break;
714 default:
715 break;
716 }
01a0ac41
JB
717 break;
718 case NETDEV_DOWN:
ad002395
JB
719 dev_hold(dev);
720 schedule_work(&wdev->cleanup_work);
04a773ad
JB
721 break;
722 case NETDEV_UP:
ad002395
JB
723 /*
724 * If we have a really quick DOWN/UP succession we may
725 * have this work still pending ... cancel it and see
726 * if it was pending, in which case we need to account
727 * for some of the work it would have done.
728 */
729 if (cancel_work_sync(&wdev->cleanup_work)) {
730 mutex_lock(&rdev->devlist_mtx);
731 rdev->opencount--;
732 mutex_unlock(&rdev->devlist_mtx);
733 dev_put(dev);
734 }
3d23e349 735#ifdef CONFIG_CFG80211_WEXT
667503dd 736 cfg80211_lock_rdev(rdev);
aee83eaf 737 mutex_lock(&rdev->devlist_mtx);
667503dd 738 wdev_lock(wdev);
f2129354
JB
739 switch (wdev->iftype) {
740 case NL80211_IFTYPE_ADHOC:
fffd0934 741 cfg80211_ibss_wext_join(rdev, wdev);
04a773ad 742 break;
f2129354 743 case NL80211_IFTYPE_STATION:
fffd0934 744 cfg80211_mgd_wext_connect(rdev, wdev);
f2129354
JB
745 break;
746 default:
04a773ad 747 break;
f2129354 748 }
667503dd 749 wdev_unlock(wdev);
ad002395 750 rdev->opencount++;
aee83eaf 751 mutex_unlock(&rdev->devlist_mtx);
667503dd 752 cfg80211_unlock_rdev(rdev);
04a773ad 753#endif
2a783c13 754 break;
704232c2 755 case NETDEV_UNREGISTER:
0ff6ce7b
JB
756 /*
757 * NB: cannot take rdev->mtx here because this may be
758 * called within code protected by it when interfaces
759 * are removed with nl80211.
760 */
704232c2 761 mutex_lock(&rdev->devlist_mtx);
e40cbdac
JB
762 /*
763 * It is possible to get NETDEV_UNREGISTER
764 * multiple times. To detect that, check
765 * that the interface is still on the list
766 * of registered interfaces, and only then
767 * remove and clean it up.
768 */
2a783c13 769 if (!list_empty(&wdev->list)) {
704232c2 770 sysfs_remove_link(&dev->dev.kobj, "phy80211");
2a783c13 771 list_del_init(&wdev->list);
f5ea9120 772 rdev->devlist_generation++;
3d23e349 773#ifdef CONFIG_CFG80211_WEXT
e40cbdac 774 kfree(wdev->wext.keys);
fffd0934 775#endif
e40cbdac
JB
776 }
777 mutex_unlock(&rdev->devlist_mtx);
704232c2 778 break;
1f87f7d3 779 case NETDEV_PRE_UP:
0b20633d
JB
780 if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)))
781 return notifier_from_errno(-EOPNOTSUPP);
1f87f7d3
JB
782 if (rfkill_blocked(rdev->rfkill))
783 return notifier_from_errno(-ERFKILL);
784 break;
704232c2
JB
785 }
786
1f87f7d3 787 return NOTIFY_DONE;
704232c2
JB
788}
789
790static struct notifier_block cfg80211_netdev_notifier = {
791 .notifier_call = cfg80211_netdev_notifier_call,
792};
793
463d0183
JB
794static void __net_exit cfg80211_pernet_exit(struct net *net)
795{
796 struct cfg80211_registered_device *rdev;
797
798 rtnl_lock();
799 mutex_lock(&cfg80211_mutex);
800 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
801 if (net_eq(wiphy_net(&rdev->wiphy), net))
802 WARN_ON(cfg80211_switch_netns(rdev, &init_net));
803 }
804 mutex_unlock(&cfg80211_mutex);
805 rtnl_unlock();
806}
807
808static struct pernet_operations cfg80211_pernet_ops = {
809 .exit = cfg80211_pernet_exit,
810};
811
812static int __init cfg80211_init(void)
704232c2 813{
b2e1b302
LR
814 int err;
815
463d0183
JB
816 err = register_pernet_device(&cfg80211_pernet_ops);
817 if (err)
818 goto out_fail_pernet;
819
b2e1b302 820 err = wiphy_sysfs_init();
704232c2
JB
821 if (err)
822 goto out_fail_sysfs;
823
824 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
825 if (err)
826 goto out_fail_notifier;
827
55682965
JB
828 err = nl80211_init();
829 if (err)
830 goto out_fail_nl80211;
831
704232c2
JB
832 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
833
b2e1b302
LR
834 err = regulatory_init();
835 if (err)
836 goto out_fail_reg;
837
704232c2
JB
838 return 0;
839
b2e1b302
LR
840out_fail_reg:
841 debugfs_remove(ieee80211_debugfs_dir);
55682965
JB
842out_fail_nl80211:
843 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
704232c2
JB
844out_fail_notifier:
845 wiphy_sysfs_exit();
846out_fail_sysfs:
463d0183
JB
847 unregister_pernet_device(&cfg80211_pernet_ops);
848out_fail_pernet:
704232c2
JB
849 return err;
850}
3a462465 851subsys_initcall(cfg80211_init);
704232c2
JB
852
853static void cfg80211_exit(void)
854{
855 debugfs_remove(ieee80211_debugfs_dir);
55682965 856 nl80211_exit();
704232c2
JB
857 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
858 wiphy_sysfs_exit();
b2e1b302 859 regulatory_exit();
463d0183 860 unregister_pernet_device(&cfg80211_pernet_ops);
704232c2
JB
861}
862module_exit(cfg80211_exit);
This page took 0.391645 seconds and 5 git commands to generate.