blob: 413d291d07d70a6f648be8a1e8487ec970831faf [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 Berg704232c2007-04-23 12:20:05 -070022
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);
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050034
35/*
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -050036 * 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).
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050039 */
40DEFINE_MUTEX(cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -070041
42/* for debugfs */
43static struct dentry *ieee80211_debugfs_dir;
44
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050045/* requires cfg80211_mutex to be held! */
46struct cfg80211_registered_device *cfg80211_drv_by_wiphy_idx(int wiphy_idx)
Johannes Berg55682962007-09-20 13:09:35 -040047{
48 struct cfg80211_registered_device *result = NULL, *drv;
49
Luis R. Rodriguez85fd1292009-02-21 00:04:20 -050050 if (!wiphy_idx_valid(wiphy_idx))
51 return NULL;
52
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050053 assert_cfg80211_lock();
54
Johannes Berg55682962007-09-20 13:09:35 -040055 list_for_each_entry(drv, &cfg80211_drv_list, list) {
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -050056 if (drv->wiphy_idx == wiphy_idx) {
Johannes Berg55682962007-09-20 13:09:35 -040057 result = drv;
58 break;
59 }
60 }
61
62 return result;
63}
64
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050065int 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
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050090/* requires cfg80211_mutex to be held! */
Johannes Berg4bbf4d52009-03-24 09:35:46 +010091struct cfg80211_registered_device *
Johannes Berg55682962007-09-20 13:09:35 -040092__cfg80211_drv_from_info(struct genl_info *info)
93{
94 int ifindex;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -050095 struct cfg80211_registered_device *bywiphyidx = NULL, *byifidx = NULL;
Johannes Berg55682962007-09-20 13:09:35 -040096 struct net_device *dev;
97 int err = -EINVAL;
98
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -050099 assert_cfg80211_lock();
100
Johannes Berg55682962007-09-20 13:09:35 -0400101 if (info->attrs[NL80211_ATTR_WIPHY]) {
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500102 bywiphyidx = cfg80211_drv_by_wiphy_idx(
Johannes Berg55682962007-09-20 13:09:35 -0400103 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
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500119 if (bywiphyidx && byifidx) {
120 if (bywiphyidx != byifidx)
Johannes Berg55682962007-09-20 13:09:35 -0400121 return ERR_PTR(-EINVAL);
122 else
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500123 return bywiphyidx; /* == byifidx */
Johannes Berg55682962007-09-20 13:09:35 -0400124 }
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500125 if (bywiphyidx)
126 return bywiphyidx;
Johannes Berg55682962007-09-20 13:09:35 -0400127
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
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500139 mutex_lock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400140 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
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500148 mutex_unlock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400149
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
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500159 mutex_lock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400160 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:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500170 mutex_unlock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400171 return drv;
172}
173
174void cfg80211_put_dev(struct cfg80211_registered_device *drv)
175{
176 BUG_ON(IS_ERR(drv));
177 mutex_unlock(&drv->mtx);
178}
179
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100180/* requires cfg80211_mutex to be held */
Johannes Berg55682962007-09-20 13:09:35 -0400181int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
182 char *newname)
183{
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700184 struct cfg80211_registered_device *drv;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500185 int wiphy_idx, taken = -1, result, digits;
Johannes Berg55682962007-09-20 13:09:35 -0400186
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100187 assert_cfg80211_lock();
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700188
Johannes Berg55682962007-09-20 13:09:35 -0400189 /* prohibit calling the thing phy%d when %d is not its number */
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500190 sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
191 if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
192 /* count number of places needed to print wiphy_idx */
Johannes Berg55682962007-09-20 13:09:35 -0400193 digits = 1;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500194 while (wiphy_idx /= 10)
Johannes Berg55682962007-09-20 13:09:35 -0400195 digits++;
196 /*
197 * deny the name if it is phy<idx> where <idx> is printed
198 * without leading zeroes. taken == strlen(newname) here
199 */
200 if (taken == strlen(PHY_NAME) + digits)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100201 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -0400202 }
203
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700204
205 /* Ignore nop renames */
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700206 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100207 return 0;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700208
209 /* Ensure another device does not already have this name. */
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100210 list_for_each_entry(drv, &cfg80211_drv_list, list)
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700211 if (strcmp(newname, dev_name(&drv->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100212 return -EINVAL;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700213
Johannes Berg55682962007-09-20 13:09:35 -0400214 result = device_rename(&rdev->wiphy.dev, newname);
215 if (result)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100216 return result;
Johannes Berg55682962007-09-20 13:09:35 -0400217
Johannes Berg33c03602008-10-08 10:23:48 +0200218 if (rdev->wiphy.debugfsdir &&
219 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
Johannes Berg55682962007-09-20 13:09:35 -0400220 rdev->wiphy.debugfsdir,
221 rdev->wiphy.debugfsdir->d_parent,
222 newname))
223 printk(KERN_ERR "cfg80211: failed to rename debugfs dir to %s!\n",
224 newname);
225
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100226 nl80211_notify_dev_rename(rdev);
Johannes Berg55682962007-09-20 13:09:35 -0400227
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100228 return 0;
Johannes Berg55682962007-09-20 13:09:35 -0400229}
230
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200231static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
232{
233 struct cfg80211_registered_device *drv = data;
234
235 drv->ops->rfkill_poll(&drv->wiphy);
236}
237
238static int cfg80211_rfkill_set_block(void *data, bool blocked)
239{
240 struct cfg80211_registered_device *drv = data;
241 struct wireless_dev *wdev;
242
243 if (!blocked)
244 return 0;
245
246 rtnl_lock();
247 mutex_lock(&drv->devlist_mtx);
248
249 list_for_each_entry(wdev, &drv->netdev_list, list)
250 dev_close(wdev->netdev);
251
252 mutex_unlock(&drv->devlist_mtx);
253 rtnl_unlock();
254
255 return 0;
256}
257
258static void cfg80211_rfkill_sync_work(struct work_struct *work)
259{
260 struct cfg80211_registered_device *drv;
261
262 drv = container_of(work, struct cfg80211_registered_device, rfkill_sync);
263 cfg80211_rfkill_set_block(drv, rfkill_blocked(drv->rfkill));
264}
265
Johannes Berg704232c2007-04-23 12:20:05 -0700266/* exported functions */
267
David Kilroy3dcf6702009-05-16 23:13:46 +0100268struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
Johannes Berg704232c2007-04-23 12:20:05 -0700269{
Denis ChengRq638af072008-09-23 02:35:37 +0800270 static int wiphy_counter;
271
Johannes Berg704232c2007-04-23 12:20:05 -0700272 struct cfg80211_registered_device *drv;
273 int alloc_size;
274
Johannes Berg41ade002007-12-19 02:03:29 +0100275 WARN_ON(!ops->add_key && ops->del_key);
276 WARN_ON(ops->add_key && !ops->del_key);
277
Johannes Berg704232c2007-04-23 12:20:05 -0700278 alloc_size = sizeof(*drv) + sizeof_priv;
279
280 drv = kzalloc(alloc_size, GFP_KERNEL);
281 if (!drv)
282 return NULL;
283
284 drv->ops = ops;
285
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500286 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700287
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500288 drv->wiphy_idx = wiphy_counter++;
Johannes Berga4d73ee2007-04-26 20:50:35 -0700289
Luis R. Rodriguez85fd1292009-02-21 00:04:20 -0500290 if (unlikely(!wiphy_idx_valid(drv->wiphy_idx))) {
Denis ChengRq638af072008-09-23 02:35:37 +0800291 wiphy_counter--;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500292 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700293 /* ugh, wrapped! */
294 kfree(drv);
295 return NULL;
296 }
Johannes Berg704232c2007-04-23 12:20:05 -0700297
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500298 mutex_unlock(&cfg80211_mutex);
Denis ChengRq638af072008-09-23 02:35:37 +0800299
Johannes Berg704232c2007-04-23 12:20:05 -0700300 /* give it a proper name */
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500301 dev_set_name(&drv->wiphy.dev, PHY_NAME "%d", drv->wiphy_idx);
Johannes Berg704232c2007-04-23 12:20:05 -0700302
Johannes Berg704232c2007-04-23 12:20:05 -0700303 mutex_init(&drv->mtx);
304 mutex_init(&drv->devlist_mtx);
305 INIT_LIST_HEAD(&drv->netdev_list);
Johannes Berg2a519312009-02-10 21:25:55 +0100306 spin_lock_init(&drv->bss_lock);
307 INIT_LIST_HEAD(&drv->bss_list);
Johannes Berg704232c2007-04-23 12:20:05 -0700308
309 device_initialize(&drv->wiphy.dev);
310 drv->wiphy.dev.class = &ieee80211_class;
311 drv->wiphy.dev.platform_data = drv;
312
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200313 drv->rfkill_ops.set_block = cfg80211_rfkill_set_block;
314 drv->rfkill = rfkill_alloc(dev_name(&drv->wiphy.dev),
315 &drv->wiphy.dev, RFKILL_TYPE_WLAN,
316 &drv->rfkill_ops, drv);
317
318 if (!drv->rfkill) {
319 kfree(drv);
320 return NULL;
321 }
322
323 INIT_WORK(&drv->rfkill_sync, cfg80211_rfkill_sync_work);
Johannes Berg6829c872009-07-02 09:13:27 +0200324 INIT_WORK(&drv->conn_work, cfg80211_conn_work);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200325
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200326 /*
327 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
328 * Fragmentation and RTS threshold are disabled by default with the
329 * special -1 value.
330 */
331 drv->wiphy.retry_short = 7;
332 drv->wiphy.retry_long = 4;
333 drv->wiphy.frag_threshold = (u32) -1;
334 drv->wiphy.rts_threshold = (u32) -1;
335
Johannes Berg704232c2007-04-23 12:20:05 -0700336 return &drv->wiphy;
337}
338EXPORT_SYMBOL(wiphy_new);
339
340int wiphy_register(struct wiphy *wiphy)
341{
342 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
343 int res;
Johannes Berg8318d782008-01-24 19:38:38 +0100344 enum ieee80211_band band;
345 struct ieee80211_supported_band *sband;
346 bool have_band = false;
347 int i;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700348 u16 ifmodes = wiphy->interface_modes;
349
350 /* sanity check ifmodes */
351 WARN_ON(!ifmodes);
352 ifmodes &= ((1 << __NL80211_IFTYPE_AFTER_LAST) - 1) & ~1;
353 if (WARN_ON(ifmodes != wiphy->interface_modes))
354 wiphy->interface_modes = ifmodes;
Johannes Berg8318d782008-01-24 19:38:38 +0100355
356 /* sanity check supported bands/channels */
357 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
358 sband = wiphy->bands[band];
359 if (!sband)
360 continue;
361
362 sband->band = band;
363
Johannes Berg881d9482009-01-21 15:13:48 +0100364 if (WARN_ON(!sband->n_channels || !sband->n_bitrates))
Johannes Berg8318d782008-01-24 19:38:38 +0100365 return -EINVAL;
Johannes Berg881d9482009-01-21 15:13:48 +0100366
367 /*
368 * Since we use a u32 for rate bitmaps in
369 * ieee80211_get_response_rate, we cannot
370 * have more than 32 legacy rates.
371 */
372 if (WARN_ON(sband->n_bitrates > 32))
373 return -EINVAL;
Johannes Berg8318d782008-01-24 19:38:38 +0100374
375 for (i = 0; i < sband->n_channels; i++) {
376 sband->channels[i].orig_flags =
377 sband->channels[i].flags;
378 sband->channels[i].orig_mag =
379 sband->channels[i].max_antenna_gain;
380 sband->channels[i].orig_mpwr =
381 sband->channels[i].max_power;
382 sband->channels[i].band = band;
383 }
384
385 have_band = true;
386 }
387
388 if (!have_band) {
389 WARN_ON(1);
390 return -EINVAL;
391 }
392
393 /* check and set up bitrates */
394 ieee80211_set_bitrate_flags(wiphy);
395
Johannes Berg704232c2007-04-23 12:20:05 -0700396 res = device_add(&drv->wiphy.dev);
397 if (res)
Johannes Berg2f0accc2009-06-10 16:50:29 +0200398 return res;
Johannes Berg704232c2007-04-23 12:20:05 -0700399
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200400 res = rfkill_register(drv->rfkill);
401 if (res)
402 goto out_rm_dev;
403
Johannes Berg2f0accc2009-06-10 16:50:29 +0200404 mutex_lock(&cfg80211_mutex);
405
406 /* set up regulatory info */
407 wiphy_update_regulatory(wiphy, NL80211_REGDOM_SET_BY_CORE);
408
Johannes Berg704232c2007-04-23 12:20:05 -0700409 list_add(&drv->list, &cfg80211_drv_list);
410
Johannes Berg2f0accc2009-06-10 16:50:29 +0200411 mutex_unlock(&cfg80211_mutex);
412
Johannes Berg704232c2007-04-23 12:20:05 -0700413 /* add to debugfs */
414 drv->wiphy.debugfsdir =
415 debugfs_create_dir(wiphy_name(&drv->wiphy),
416 ieee80211_debugfs_dir);
Johannes Berg33c03602008-10-08 10:23:48 +0200417 if (IS_ERR(drv->wiphy.debugfsdir))
418 drv->wiphy.debugfsdir = NULL;
Johannes Berg704232c2007-04-23 12:20:05 -0700419
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -0400420 if (wiphy->custom_regulatory) {
421 struct regulatory_request request;
422
423 request.wiphy_idx = get_wiphy_idx(wiphy);
424 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
425 request.alpha2[0] = '9';
426 request.alpha2[1] = '9';
427
428 nl80211_send_reg_change_event(&request);
429 }
430
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400431 cfg80211_debugfs_drv_add(drv);
432
Johannes Berg2f0accc2009-06-10 16:50:29 +0200433 return 0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200434
435 out_rm_dev:
436 device_del(&drv->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700437 return res;
438}
439EXPORT_SYMBOL(wiphy_register);
440
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200441void wiphy_rfkill_start_polling(struct wiphy *wiphy)
442{
443 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
444
445 if (!drv->ops->rfkill_poll)
446 return;
447 drv->rfkill_ops.poll = cfg80211_rfkill_poll;
448 rfkill_resume_polling(drv->rfkill);
449}
450EXPORT_SYMBOL(wiphy_rfkill_start_polling);
451
452void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
453{
454 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
455
456 rfkill_pause_polling(drv->rfkill);
457}
458EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
459
Johannes Berg704232c2007-04-23 12:20:05 -0700460void wiphy_unregister(struct wiphy *wiphy)
461{
462 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
463
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200464 rfkill_unregister(drv->rfkill);
465
Johannes Bergf16bfc12007-04-26 20:51:12 -0700466 /* protect the device list */
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500467 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700468
Johannes Bergf16bfc12007-04-26 20:51:12 -0700469 BUG_ON(!list_empty(&drv->netdev_list));
470
471 /*
472 * Try to grab drv->mtx. If a command is still in progress,
473 * hopefully the driver will refuse it since it's tearing
474 * down the device already. We wait for this command to complete
475 * before unlinking the item from the list.
476 * Note: as codified by the BUG_ON above we cannot get here if
477 * a virtual interface is still associated. Hence, we can only
478 * get to lock contention here if userspace issues a command
479 * that identified the hardware by wiphy index.
480 */
Johannes Berg704232c2007-04-23 12:20:05 -0700481 mutex_lock(&drv->mtx);
Johannes Bergf16bfc12007-04-26 20:51:12 -0700482 /* unlock again before freeing */
Johannes Berg704232c2007-04-23 12:20:05 -0700483 mutex_unlock(&drv->mtx);
484
Johannes Berg6829c872009-07-02 09:13:27 +0200485 cancel_work_sync(&drv->conn_work);
486
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400487 cfg80211_debugfs_drv_del(drv);
488
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800489 /* If this device got a regulatory hint tell core its
490 * free to listen now to a new shiny device regulatory hint */
491 reg_device_remove(wiphy);
492
Johannes Bergf16bfc12007-04-26 20:51:12 -0700493 list_del(&drv->list);
Johannes Berg704232c2007-04-23 12:20:05 -0700494 device_del(&drv->wiphy.dev);
495 debugfs_remove(drv->wiphy.debugfsdir);
496
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500497 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700498}
499EXPORT_SYMBOL(wiphy_unregister);
500
501void cfg80211_dev_free(struct cfg80211_registered_device *drv)
502{
Johannes Berg2a519312009-02-10 21:25:55 +0100503 struct cfg80211_internal_bss *scan, *tmp;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200504 rfkill_destroy(drv->rfkill);
Johannes Berg704232c2007-04-23 12:20:05 -0700505 mutex_destroy(&drv->mtx);
506 mutex_destroy(&drv->devlist_mtx);
Johannes Berg2a519312009-02-10 21:25:55 +0100507 list_for_each_entry_safe(scan, tmp, &drv->bss_list, list)
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100508 cfg80211_put_bss(&scan->pub);
Johannes Berg704232c2007-04-23 12:20:05 -0700509 kfree(drv);
510}
511
512void wiphy_free(struct wiphy *wiphy)
513{
514 put_device(&wiphy->dev);
515}
516EXPORT_SYMBOL(wiphy_free);
517
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200518void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
519{
520 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
521
522 if (rfkill_set_hw_state(drv->rfkill, blocked))
523 schedule_work(&drv->rfkill_sync);
524}
525EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
526
Johannes Berg704232c2007-04-23 12:20:05 -0700527static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
528 unsigned long state,
529 void *ndev)
530{
531 struct net_device *dev = ndev;
Johannes Berg2a783c12009-07-01 21:26:45 +0200532 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg704232c2007-04-23 12:20:05 -0700533 struct cfg80211_registered_device *rdev;
534
Johannes Berg2a783c12009-07-01 21:26:45 +0200535 if (!wdev)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200536 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700537
Johannes Berg2a783c12009-07-01 21:26:45 +0200538 rdev = wiphy_to_dev(wdev->wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700539
Johannes Berg2a783c12009-07-01 21:26:45 +0200540 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
Johannes Berg60719ff2008-09-16 14:55:09 +0200541
Johannes Berg704232c2007-04-23 12:20:05 -0700542 switch (state) {
543 case NETDEV_REGISTER:
544 mutex_lock(&rdev->devlist_mtx);
Johannes Berg2a783c12009-07-01 21:26:45 +0200545 list_add(&wdev->list, &rdev->netdev_list);
Johannes Berg704232c2007-04-23 12:20:05 -0700546 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
547 "phy80211")) {
548 printk(KERN_ERR "wireless: failed to add phy80211 "
549 "symlink to netdev!\n");
550 }
Johannes Berg2a783c12009-07-01 21:26:45 +0200551 wdev->netdev = dev;
Samuel Ortizb23aa672009-07-01 21:26:54 +0200552 wdev->sme_state = CFG80211_SME_IDLE;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200553 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg08645122009-05-11 13:54:58 +0200554#ifdef CONFIG_WIRELESS_EXT
Johannes Berg2a783c12009-07-01 21:26:45 +0200555 wdev->wext.default_key = -1;
556 wdev->wext.default_mgmt_key = -1;
Johannes Bergf2129352009-07-01 21:26:56 +0200557 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200558 wdev->wext.ps = CONFIG_CFG80211_DEFAULT_PS_VALUE;
559 wdev->wext.ps_timeout = 500;
560 if (rdev->ops->set_power_mgmt)
561 if (rdev->ops->set_power_mgmt(wdev->wiphy, dev,
562 wdev->wext.ps,
563 wdev->wext.ps_timeout)) {
564 /* assume this means it's off */
565 wdev->wext.ps = false;
566 }
Johannes Berg08645122009-05-11 13:54:58 +0200567#endif
Johannes Berg704232c2007-04-23 12:20:05 -0700568 break;
Johannes Berg04a773a2009-04-19 21:24:32 +0200569 case NETDEV_GOING_DOWN:
Johannes Berg2a783c12009-07-01 21:26:45 +0200570 if (!wdev->ssid_len)
Johannes Berg04a773a2009-04-19 21:24:32 +0200571 break;
Samuel Ortizb23aa672009-07-01 21:26:54 +0200572
573 switch (wdev->iftype) {
574 case NL80211_IFTYPE_ADHOC:
575 cfg80211_leave_ibss(rdev, dev, true);
576 break;
577 case NL80211_IFTYPE_STATION:
Johannes Bergf2129352009-07-01 21:26:56 +0200578#ifdef CONFIG_WIRELESS_EXT
579 kfree(wdev->wext.ie);
580 wdev->wext.ie = NULL;
581 wdev->wext.ie_len = 0;
582#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +0200583 cfg80211_disconnect(rdev, dev,
Johannes Bergf2129352009-07-01 21:26:56 +0200584 WLAN_REASON_DEAUTH_LEAVING, true);
Samuel Ortizb23aa672009-07-01 21:26:54 +0200585 break;
586 default:
587 break;
588 }
Johannes Berg04a773a2009-04-19 21:24:32 +0200589 break;
Johannes Berg6829c872009-07-02 09:13:27 +0200590 case NETDEV_DOWN:
591 kfree(wdev->conn);
592 wdev->conn = NULL;
593 break;
Johannes Berg04a773a2009-04-19 21:24:32 +0200594 case NETDEV_UP:
595#ifdef CONFIG_WIRELESS_EXT
Johannes Bergf2129352009-07-01 21:26:56 +0200596 switch (wdev->iftype) {
597 case NL80211_IFTYPE_ADHOC:
598 if (wdev->wext.ibss.ssid_len)
599 cfg80211_join_ibss(rdev, dev,
600 &wdev->wext.ibss);
Johannes Berg04a773a2009-04-19 21:24:32 +0200601 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200602 case NL80211_IFTYPE_STATION:
603 if (wdev->wext.connect.ssid_len)
604 cfg80211_connect(rdev, dev,
605 &wdev->wext.connect);
Johannes Berg04a773a2009-04-19 21:24:32 +0200606 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200607 default:
608 break;
609 }
Johannes Berg04a773a2009-04-19 21:24:32 +0200610#endif
Johannes Berg2a783c12009-07-01 21:26:45 +0200611 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700612 case NETDEV_UNREGISTER:
613 mutex_lock(&rdev->devlist_mtx);
Johannes Berg2a783c12009-07-01 21:26:45 +0200614 if (!list_empty(&wdev->list)) {
Johannes Berg704232c2007-04-23 12:20:05 -0700615 sysfs_remove_link(&dev->dev.kobj, "phy80211");
Johannes Berg2a783c12009-07-01 21:26:45 +0200616 list_del_init(&wdev->list);
Johannes Berg704232c2007-04-23 12:20:05 -0700617 }
618 mutex_unlock(&rdev->devlist_mtx);
619 break;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200620 case NETDEV_PRE_UP:
621 if (rfkill_blocked(rdev->rfkill))
622 return notifier_from_errno(-ERFKILL);
623 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700624 }
625
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200626 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700627}
628
629static struct notifier_block cfg80211_netdev_notifier = {
630 .notifier_call = cfg80211_netdev_notifier_call,
631};
632
633static int cfg80211_init(void)
634{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700635 int err;
636
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700637 err = wiphy_sysfs_init();
Johannes Berg704232c2007-04-23 12:20:05 -0700638 if (err)
639 goto out_fail_sysfs;
640
641 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
642 if (err)
643 goto out_fail_notifier;
644
Johannes Berg55682962007-09-20 13:09:35 -0400645 err = nl80211_init();
646 if (err)
647 goto out_fail_nl80211;
648
Johannes Berg704232c2007-04-23 12:20:05 -0700649 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
650
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700651 err = regulatory_init();
652 if (err)
653 goto out_fail_reg;
654
Johannes Berg704232c2007-04-23 12:20:05 -0700655 return 0;
656
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700657out_fail_reg:
658 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400659out_fail_nl80211:
660 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
Johannes Berg704232c2007-04-23 12:20:05 -0700661out_fail_notifier:
662 wiphy_sysfs_exit();
663out_fail_sysfs:
664 return err;
665}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700666
Johannes Berg3a462462007-09-10 13:44:45 +0200667subsys_initcall(cfg80211_init);
Johannes Berg704232c2007-04-23 12:20:05 -0700668
669static void cfg80211_exit(void)
670{
671 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400672 nl80211_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700673 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
674 wiphy_sysfs_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700675 regulatory_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700676}
677module_exit(cfg80211_exit);