blob: b5e2f6dfa33397d9f21fdabc06dc424a361b5d47 [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 */
Johannes Berg79c97e92009-07-07 03:56:12 +020033LIST_HEAD(cfg80211_rdev_list);
Luis R. Rodrigueza1794392009-02-21 00:04:21 -050034
35/*
Johannes Berg79c97e92009-07-07 03:56:12 +020036 * This is used to protect the cfg80211_rdev_list, cfg80211_regdomain,
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -050037 * 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! */
Johannes Berg79c97e92009-07-07 03:56:12 +020046struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx)
Johannes Berg55682962007-09-20 13:09:35 -040047{
Johannes Berg79c97e92009-07-07 03:56:12 +020048 struct cfg80211_registered_device *result = NULL, *rdev;
Johannes Berg55682962007-09-20 13:09:35 -040049
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 Berg79c97e92009-07-07 03:56:12 +020055 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
56 if (rdev->wiphy_idx == wiphy_idx) {
57 result = rdev;
Johannes Berg55682962007-09-20 13:09:35 -040058 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{
Johannes Berg79c97e92009-07-07 03:56:12 +020067 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050068 if (!wiphy)
69 return WIPHY_IDX_STALE;
Johannes Berg79c97e92009-07-07 03:56:12 +020070 rdev = wiphy_to_dev(wiphy);
71 return rdev->wiphy_idx;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050072}
73
Johannes Berg79c97e92009-07-07 03:56:12 +020074/* requires cfg80211_rdev_mutex to be held! */
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050075struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
76{
Johannes Berg79c97e92009-07-07 03:56:12 +020077 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050078
79 if (!wiphy_idx_valid(wiphy_idx))
80 return NULL;
81
82 assert_cfg80211_lock();
83
Johannes Berg79c97e92009-07-07 03:56:12 +020084 rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx);
85 if (!rdev)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050086 return NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +020087 return &rdev->wiphy;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -050088}
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 Berg79c97e92009-07-07 03:56:12 +020092__cfg80211_rdev_from_info(struct genl_info *info)
Johannes Berg55682962007-09-20 13:09:35 -040093{
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]) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200102 bywiphyidx = cfg80211_rdev_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{
Johannes Berg79c97e92009-07-07 03:56:12 +0200137 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400138
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500139 mutex_lock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200140 rdev = __cfg80211_rdev_from_info(info);
Johannes Berg55682962007-09-20 13:09:35 -0400141
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 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200145 if (!IS_ERR(rdev))
146 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400147
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500148 mutex_unlock(&cfg80211_mutex);
Johannes Berg55682962007-09-20 13:09:35 -0400149
Johannes Berg79c97e92009-07-07 03:56:12 +0200150 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400151}
152
153struct cfg80211_registered_device *
154cfg80211_get_dev_from_ifindex(int ifindex)
155{
Johannes Berg79c97e92009-07-07 03:56:12 +0200156 struct cfg80211_registered_device *rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400157 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) {
Johannes Berg79c97e92009-07-07 03:56:12 +0200164 rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
165 mutex_lock(&rdev->mtx);
Johannes Berg55682962007-09-20 13:09:35 -0400166 } else
Johannes Berg79c97e92009-07-07 03:56:12 +0200167 rdev = ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400168 dev_put(dev);
169 out:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500170 mutex_unlock(&cfg80211_mutex);
Johannes Berg79c97e92009-07-07 03:56:12 +0200171 return rdev;
Johannes Berg55682962007-09-20 13:09:35 -0400172}
173
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100174/* requires cfg80211_mutex to be held */
Johannes Berg55682962007-09-20 13:09:35 -0400175int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
176 char *newname)
177{
Johannes Berg79c97e92009-07-07 03:56:12 +0200178 struct cfg80211_registered_device *rdev2;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500179 int wiphy_idx, taken = -1, result, digits;
Johannes Berg55682962007-09-20 13:09:35 -0400180
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100181 assert_cfg80211_lock();
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700182
Johannes Berg55682962007-09-20 13:09:35 -0400183 /* prohibit calling the thing phy%d when %d is not its number */
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500184 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 */
Johannes Berg55682962007-09-20 13:09:35 -0400187 digits = 1;
Luis R. Rodriguezb5850a72009-02-21 00:04:19 -0500188 while (wiphy_idx /= 10)
Johannes Berg55682962007-09-20 13:09:35 -0400189 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)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100195 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -0400196 }
197
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700198
199 /* Ignore nop renames */
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700200 if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100201 return 0;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700202
203 /* Ensure another device does not already have this name. */
Johannes Berg79c97e92009-07-07 03:56:12 +0200204 list_for_each_entry(rdev2, &cfg80211_rdev_list, list)
205 if (strcmp(newname, dev_name(&rdev2->wiphy.dev)) == 0)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100206 return -EINVAL;
Eric W. Biederman2940bb62008-05-08 14:30:18 -0700207
Johannes Berg55682962007-09-20 13:09:35 -0400208 result = device_rename(&rdev->wiphy.dev, newname);
209 if (result)
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100210 return result;
Johannes Berg55682962007-09-20 13:09:35 -0400211
Johannes Berg33c03602008-10-08 10:23:48 +0200212 if (rdev->wiphy.debugfsdir &&
213 !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
Johannes Berg55682962007-09-20 13:09:35 -0400214 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
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100220 nl80211_notify_dev_rename(rdev);
Johannes Berg55682962007-09-20 13:09:35 -0400221
Johannes Berg4bbf4d52009-03-24 09:35:46 +0100222 return 0;
Johannes Berg55682962007-09-20 13:09:35 -0400223}
224
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200225static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
226{
Johannes Berg79c97e92009-07-07 03:56:12 +0200227 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200228
Johannes Berg79c97e92009-07-07 03:56:12 +0200229 rdev->ops->rfkill_poll(&rdev->wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200230}
231
232static int cfg80211_rfkill_set_block(void *data, bool blocked)
233{
Johannes Berg79c97e92009-07-07 03:56:12 +0200234 struct cfg80211_registered_device *rdev = data;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200235 struct wireless_dev *wdev;
236
237 if (!blocked)
238 return 0;
239
240 rtnl_lock();
Johannes Berg79c97e92009-07-07 03:56:12 +0200241 mutex_lock(&rdev->devlist_mtx);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200242
Johannes Berg79c97e92009-07-07 03:56:12 +0200243 list_for_each_entry(wdev, &rdev->netdev_list, list)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200244 dev_close(wdev->netdev);
245
Johannes Berg79c97e92009-07-07 03:56:12 +0200246 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200247 rtnl_unlock();
248
249 return 0;
250}
251
252static void cfg80211_rfkill_sync_work(struct work_struct *work)
253{
Johannes Berg79c97e92009-07-07 03:56:12 +0200254 struct cfg80211_registered_device *rdev;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200255
Johannes Berg79c97e92009-07-07 03:56:12 +0200256 rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync);
257 cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill));
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200258}
259
Johannes Berg667503dd2009-07-07 03:56:11 +0200260static 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
Johannes Berg704232c2007-04-23 12:20:05 -0700325/* exported functions */
326
David Kilroy3dcf6702009-05-16 23:13:46 +0100327struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
Johannes Berg704232c2007-04-23 12:20:05 -0700328{
Denis ChengRq638af072008-09-23 02:35:37 +0800329 static int wiphy_counter;
330
Johannes Berg79c97e92009-07-07 03:56:12 +0200331 struct cfg80211_registered_device *rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700332 int alloc_size;
333
Johannes Berg41ade002007-12-19 02:03:29 +0100334 WARN_ON(!ops->add_key && ops->del_key);
335 WARN_ON(ops->add_key && !ops->del_key);
336
Johannes Berg79c97e92009-07-07 03:56:12 +0200337 alloc_size = sizeof(*rdev) + sizeof_priv;
Johannes Berg704232c2007-04-23 12:20:05 -0700338
Johannes Berg79c97e92009-07-07 03:56:12 +0200339 rdev = kzalloc(alloc_size, GFP_KERNEL);
340 if (!rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700341 return NULL;
342
Johannes Berg79c97e92009-07-07 03:56:12 +0200343 rdev->ops = ops;
Johannes Berg704232c2007-04-23 12:20:05 -0700344
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500345 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700346
Johannes Berg79c97e92009-07-07 03:56:12 +0200347 rdev->wiphy_idx = wiphy_counter++;
Johannes Berga4d73ee2007-04-26 20:50:35 -0700348
Johannes Berg79c97e92009-07-07 03:56:12 +0200349 if (unlikely(!wiphy_idx_valid(rdev->wiphy_idx))) {
Denis ChengRq638af072008-09-23 02:35:37 +0800350 wiphy_counter--;
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500351 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700352 /* ugh, wrapped! */
Johannes Berg79c97e92009-07-07 03:56:12 +0200353 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700354 return NULL;
355 }
Johannes Berg704232c2007-04-23 12:20:05 -0700356
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500357 mutex_unlock(&cfg80211_mutex);
Denis ChengRq638af072008-09-23 02:35:37 +0800358
Johannes Berg704232c2007-04-23 12:20:05 -0700359 /* give it a proper name */
Johannes Berg79c97e92009-07-07 03:56:12 +0200360 dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx);
Johannes Berg704232c2007-04-23 12:20:05 -0700361
Johannes Berg79c97e92009-07-07 03:56:12 +0200362 mutex_init(&rdev->mtx);
363 mutex_init(&rdev->devlist_mtx);
364 INIT_LIST_HEAD(&rdev->netdev_list);
365 spin_lock_init(&rdev->bss_lock);
366 INIT_LIST_HEAD(&rdev->bss_list);
367 INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done);
Johannes Berg704232c2007-04-23 12:20:05 -0700368
Johannes Berg79c97e92009-07-07 03:56:12 +0200369 device_initialize(&rdev->wiphy.dev);
370 rdev->wiphy.dev.class = &ieee80211_class;
371 rdev->wiphy.dev.platform_data = rdev;
Johannes Berg704232c2007-04-23 12:20:05 -0700372
Johannes Berg79c97e92009-07-07 03:56:12 +0200373 rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block;
374 rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev),
375 &rdev->wiphy.dev, RFKILL_TYPE_WLAN,
376 &rdev->rfkill_ops, rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200377
Johannes Berg79c97e92009-07-07 03:56:12 +0200378 if (!rdev->rfkill) {
379 kfree(rdev);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200380 return NULL;
381 }
382
Johannes Berg79c97e92009-07-07 03:56:12 +0200383 INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work);
384 INIT_WORK(&rdev->conn_work, cfg80211_conn_work);
385 INIT_WORK(&rdev->event_work, cfg80211_event_work);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200386
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200387 /*
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 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200392 rdev->wiphy.retry_short = 7;
393 rdev->wiphy.retry_long = 4;
394 rdev->wiphy.frag_threshold = (u32) -1;
395 rdev->wiphy.rts_threshold = (u32) -1;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200396
Johannes Berg79c97e92009-07-07 03:56:12 +0200397 return &rdev->wiphy;
Johannes Berg704232c2007-04-23 12:20:05 -0700398}
399EXPORT_SYMBOL(wiphy_new);
400
401int wiphy_register(struct wiphy *wiphy)
402{
Johannes Berg79c97e92009-07-07 03:56:12 +0200403 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700404 int res;
Johannes Berg8318d782008-01-24 19:38:38 +0100405 enum ieee80211_band band;
406 struct ieee80211_supported_band *sband;
407 bool have_band = false;
408 int i;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700409 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;
Johannes Berg8318d782008-01-24 19:38:38 +0100416
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
Johannes Berg881d9482009-01-21 15:13:48 +0100425 if (WARN_ON(!sband->n_channels || !sband->n_bitrates))
Johannes Berg8318d782008-01-24 19:38:38 +0100426 return -EINVAL;
Johannes Berg881d9482009-01-21 15:13:48 +0100427
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))
434 return -EINVAL;
Johannes Berg8318d782008-01-24 19:38:38 +0100435
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
Johannes Berg79c97e92009-07-07 03:56:12 +0200457 res = device_add(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700458 if (res)
Johannes Berg2f0accc2009-06-10 16:50:29 +0200459 return res;
Johannes Berg704232c2007-04-23 12:20:05 -0700460
Johannes Berg79c97e92009-07-07 03:56:12 +0200461 res = rfkill_register(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200462 if (res)
463 goto out_rm_dev;
464
Johannes Berg2f0accc2009-06-10 16:50:29 +0200465 mutex_lock(&cfg80211_mutex);
466
467 /* set up regulatory info */
468 wiphy_update_regulatory(wiphy, NL80211_REGDOM_SET_BY_CORE);
469
Johannes Berg79c97e92009-07-07 03:56:12 +0200470 list_add(&rdev->list, &cfg80211_rdev_list);
Johannes Berg704232c2007-04-23 12:20:05 -0700471
Johannes Berg2f0accc2009-06-10 16:50:29 +0200472 mutex_unlock(&cfg80211_mutex);
473
Johannes Berg704232c2007-04-23 12:20:05 -0700474 /* add to debugfs */
Johannes Berg79c97e92009-07-07 03:56:12 +0200475 rdev->wiphy.debugfsdir =
476 debugfs_create_dir(wiphy_name(&rdev->wiphy),
Johannes Berg704232c2007-04-23 12:20:05 -0700477 ieee80211_debugfs_dir);
Johannes Berg79c97e92009-07-07 03:56:12 +0200478 if (IS_ERR(rdev->wiphy.debugfsdir))
479 rdev->wiphy.debugfsdir = NULL;
Johannes Berg704232c2007-04-23 12:20:05 -0700480
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -0400481 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
Johannes Berg79c97e92009-07-07 03:56:12 +0200492 cfg80211_debugfs_rdev_add(rdev);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400493
Johannes Berg2f0accc2009-06-10 16:50:29 +0200494 return 0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200495
496 out_rm_dev:
Johannes Berg79c97e92009-07-07 03:56:12 +0200497 device_del(&rdev->wiphy.dev);
Johannes Berg704232c2007-04-23 12:20:05 -0700498 return res;
499}
500EXPORT_SYMBOL(wiphy_register);
501
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200502void wiphy_rfkill_start_polling(struct wiphy *wiphy)
503{
Johannes Berg79c97e92009-07-07 03:56:12 +0200504 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200505
Johannes Berg79c97e92009-07-07 03:56:12 +0200506 if (!rdev->ops->rfkill_poll)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200507 return;
Johannes Berg79c97e92009-07-07 03:56:12 +0200508 rdev->rfkill_ops.poll = cfg80211_rfkill_poll;
509 rfkill_resume_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200510}
511EXPORT_SYMBOL(wiphy_rfkill_start_polling);
512
513void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
514{
Johannes Berg79c97e92009-07-07 03:56:12 +0200515 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200516
Johannes Berg79c97e92009-07-07 03:56:12 +0200517 rfkill_pause_polling(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200518}
519EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
520
Johannes Berg704232c2007-04-23 12:20:05 -0700521void wiphy_unregister(struct wiphy *wiphy)
522{
Johannes Berg79c97e92009-07-07 03:56:12 +0200523 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700524
Johannes Berg79c97e92009-07-07 03:56:12 +0200525 rfkill_unregister(rdev->rfkill);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200526
Johannes Bergf16bfc12007-04-26 20:51:12 -0700527 /* protect the device list */
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500528 mutex_lock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700529
Johannes Berg79c97e92009-07-07 03:56:12 +0200530 BUG_ON(!list_empty(&rdev->netdev_list));
Johannes Bergf16bfc12007-04-26 20:51:12 -0700531
532 /*
Johannes Berg79c97e92009-07-07 03:56:12 +0200533 * Try to grab rdev->mtx. If a command is still in progress,
Johannes Bergf16bfc12007-04-26 20:51:12 -0700534 * 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 */
Johannes Berg79c97e92009-07-07 03:56:12 +0200542 mutex_lock(&rdev->mtx);
Johannes Bergf16bfc12007-04-26 20:51:12 -0700543 /* unlock again before freeing */
Johannes Berg79c97e92009-07-07 03:56:12 +0200544 mutex_unlock(&rdev->mtx);
Johannes Berg704232c2007-04-23 12:20:05 -0700545
Johannes Berg79c97e92009-07-07 03:56:12 +0200546 cancel_work_sync(&rdev->conn_work);
547 cancel_work_sync(&rdev->scan_done_wk);
548 kfree(rdev->scan_req);
549 flush_work(&rdev->event_work);
Johannes Berg6829c872009-07-02 09:13:27 +0200550
Johannes Berg79c97e92009-07-07 03:56:12 +0200551 cfg80211_debugfs_rdev_del(rdev);
Luis R. Rodriguez1ac61302009-05-02 00:37:21 -0400552
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800553 /* 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
Johannes Berg79c97e92009-07-07 03:56:12 +0200557 list_del(&rdev->list);
558 device_del(&rdev->wiphy.dev);
559 debugfs_remove(rdev->wiphy.debugfsdir);
Johannes Berg704232c2007-04-23 12:20:05 -0700560
Luis R. Rodrigueza1794392009-02-21 00:04:21 -0500561 mutex_unlock(&cfg80211_mutex);
Johannes Berg704232c2007-04-23 12:20:05 -0700562}
563EXPORT_SYMBOL(wiphy_unregister);
564
Johannes Berg79c97e92009-07-07 03:56:12 +0200565void cfg80211_dev_free(struct cfg80211_registered_device *rdev)
Johannes Berg704232c2007-04-23 12:20:05 -0700566{
Johannes Berg2a519312009-02-10 21:25:55 +0100567 struct cfg80211_internal_bss *scan, *tmp;
Johannes Berg79c97e92009-07-07 03:56:12 +0200568 rfkill_destroy(rdev->rfkill);
569 mutex_destroy(&rdev->mtx);
570 mutex_destroy(&rdev->devlist_mtx);
571 list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list)
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100572 cfg80211_put_bss(&scan->pub);
Johannes Berg79c97e92009-07-07 03:56:12 +0200573 kfree(rdev);
Johannes Berg704232c2007-04-23 12:20:05 -0700574}
575
576void wiphy_free(struct wiphy *wiphy)
577{
578 put_device(&wiphy->dev);
579}
580EXPORT_SYMBOL(wiphy_free);
581
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200582void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
583{
Johannes Berg79c97e92009-07-07 03:56:12 +0200584 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200585
Johannes Berg79c97e92009-07-07 03:56:12 +0200586 if (rfkill_set_hw_state(rdev->rfkill, blocked))
587 schedule_work(&rdev->rfkill_sync);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200588}
589EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
590
Johannes Berg704232c2007-04-23 12:20:05 -0700591static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
592 unsigned long state,
593 void *ndev)
594{
595 struct net_device *dev = ndev;
Johannes Berg2a783c12009-07-01 21:26:45 +0200596 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg704232c2007-04-23 12:20:05 -0700597 struct cfg80211_registered_device *rdev;
598
Johannes Berg2a783c12009-07-01 21:26:45 +0200599 if (!wdev)
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200600 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700601
Johannes Berg2a783c12009-07-01 21:26:45 +0200602 rdev = wiphy_to_dev(wdev->wiphy);
Johannes Berg704232c2007-04-23 12:20:05 -0700603
Johannes Berg2a783c12009-07-01 21:26:45 +0200604 WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
Johannes Berg60719ff2008-09-16 14:55:09 +0200605
Johannes Berg704232c2007-04-23 12:20:05 -0700606 switch (state) {
607 case NETDEV_REGISTER:
Johannes Berg667503dd2009-07-07 03:56:11 +0200608 mutex_init(&wdev->mtx);
609 INIT_LIST_HEAD(&wdev->event_list);
610 spin_lock_init(&wdev->event_lock);
Johannes Berg704232c2007-04-23 12:20:05 -0700611 mutex_lock(&rdev->devlist_mtx);
Johannes Berg2a783c12009-07-01 21:26:45 +0200612 list_add(&wdev->list, &rdev->netdev_list);
Johannes Berg704232c2007-04-23 12:20:05 -0700613 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 }
Johannes Berg2a783c12009-07-01 21:26:45 +0200618 wdev->netdev = dev;
Samuel Ortizb23aa672009-07-01 21:26:54 +0200619 wdev->sme_state = CFG80211_SME_IDLE;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200620 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg08645122009-05-11 13:54:58 +0200621#ifdef CONFIG_WIRELESS_EXT
Johannes Berg2a783c12009-07-01 21:26:45 +0200622 wdev->wext.default_key = -1;
623 wdev->wext.default_mgmt_key = -1;
Johannes Bergf2129352009-07-01 21:26:56 +0200624 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Johannes Bergbc92afd2009-07-01 21:26:57 +0200625 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 }
Johannes Berg08645122009-05-11 13:54:58 +0200634#endif
Johannes Berg704232c2007-04-23 12:20:05 -0700635 break;
Johannes Berg04a773a2009-04-19 21:24:32 +0200636 case NETDEV_GOING_DOWN:
Samuel Ortizb23aa672009-07-01 21:26:54 +0200637 switch (wdev->iftype) {
638 case NL80211_IFTYPE_ADHOC:
639 cfg80211_leave_ibss(rdev, dev, true);
640 break;
641 case NL80211_IFTYPE_STATION:
Johannes Berg667503dd2009-07-07 03:56:11 +0200642 wdev_lock(wdev);
Johannes Bergf2129352009-07-01 21:26:56 +0200643#ifdef CONFIG_WIRELESS_EXT
644 kfree(wdev->wext.ie);
645 wdev->wext.ie = NULL;
646 wdev->wext.ie_len = 0;
Johannes Berg0eb14642009-07-02 15:49:03 +0200647 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
Johannes Bergf2129352009-07-01 21:26:56 +0200648#endif
Johannes Berg667503dd2009-07-07 03:56:11 +0200649 __cfg80211_disconnect(rdev, dev,
650 WLAN_REASON_DEAUTH_LEAVING, true);
Johannes Berg19957bb2009-07-02 17:20:43 +0200651 cfg80211_mlme_down(rdev, dev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200652 wdev_unlock(wdev);
Samuel Ortizb23aa672009-07-01 21:26:54 +0200653 break;
654 default:
655 break;
656 }
Johannes Berg04a773a2009-04-19 21:24:32 +0200657 break;
658 case NETDEV_UP:
659#ifdef CONFIG_WIRELESS_EXT
Johannes Berg667503dd2009-07-07 03:56:11 +0200660 cfg80211_lock_rdev(rdev);
661 wdev_lock(wdev);
Johannes Bergf2129352009-07-01 21:26:56 +0200662 switch (wdev->iftype) {
663 case NL80211_IFTYPE_ADHOC:
664 if (wdev->wext.ibss.ssid_len)
Johannes Berg667503dd2009-07-07 03:56:11 +0200665 __cfg80211_join_ibss(rdev, dev,
666 &wdev->wext.ibss);
Johannes Berg04a773a2009-04-19 21:24:32 +0200667 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200668 case NL80211_IFTYPE_STATION:
669 if (wdev->wext.connect.ssid_len)
Johannes Berg667503dd2009-07-07 03:56:11 +0200670 __cfg80211_connect(rdev, dev,
671 &wdev->wext.connect);
Johannes Berg04a773a2009-04-19 21:24:32 +0200672 break;
Johannes Bergf2129352009-07-01 21:26:56 +0200673 default:
674 break;
675 }
Johannes Berg667503dd2009-07-07 03:56:11 +0200676 wdev_unlock(wdev);
677 cfg80211_unlock_rdev(rdev);
Johannes Berg04a773a2009-04-19 21:24:32 +0200678#endif
Johannes Berg2a783c12009-07-01 21:26:45 +0200679 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700680 case NETDEV_UNREGISTER:
681 mutex_lock(&rdev->devlist_mtx);
Johannes Berg2a783c12009-07-01 21:26:45 +0200682 if (!list_empty(&wdev->list)) {
Johannes Berg704232c2007-04-23 12:20:05 -0700683 sysfs_remove_link(&dev->dev.kobj, "phy80211");
Johannes Berg2a783c12009-07-01 21:26:45 +0200684 list_del_init(&wdev->list);
Johannes Berg704232c2007-04-23 12:20:05 -0700685 }
686 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200687 mutex_destroy(&wdev->mtx);
Johannes Berg704232c2007-04-23 12:20:05 -0700688 break;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200689 case NETDEV_PRE_UP:
690 if (rfkill_blocked(rdev->rfkill))
691 return notifier_from_errno(-ERFKILL);
692 break;
Johannes Berg704232c2007-04-23 12:20:05 -0700693 }
694
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200695 return NOTIFY_DONE;
Johannes Berg704232c2007-04-23 12:20:05 -0700696}
697
698static struct notifier_block cfg80211_netdev_notifier = {
699 .notifier_call = cfg80211_netdev_notifier_call,
700};
701
702static int cfg80211_init(void)
703{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700704 int err;
705
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700706 err = wiphy_sysfs_init();
Johannes Berg704232c2007-04-23 12:20:05 -0700707 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
Johannes Berg55682962007-09-20 13:09:35 -0400714 err = nl80211_init();
715 if (err)
716 goto out_fail_nl80211;
717
Johannes Berg704232c2007-04-23 12:20:05 -0700718 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
719
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700720 err = regulatory_init();
721 if (err)
722 goto out_fail_reg;
723
Johannes Berg704232c2007-04-23 12:20:05 -0700724 return 0;
725
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700726out_fail_reg:
727 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400728out_fail_nl80211:
729 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
Johannes Berg704232c2007-04-23 12:20:05 -0700730out_fail_notifier:
731 wiphy_sysfs_exit();
732out_fail_sysfs:
733 return err;
734}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700735
Johannes Berg3a462462007-09-10 13:44:45 +0200736subsys_initcall(cfg80211_init);
Johannes Berg704232c2007-04-23 12:20:05 -0700737
738static void cfg80211_exit(void)
739{
740 debugfs_remove(ieee80211_debugfs_dir);
Johannes Berg55682962007-09-20 13:09:35 -0400741 nl80211_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700742 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
743 wiphy_sysfs_exit();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700744 regulatory_exit();
Johannes Berg704232c2007-04-23 12:20:05 -0700745}
746module_exit(cfg80211_exit);