2 * This is the linux wireless configuration interface.
4 * Copyright 2006-2008 Johannes Berg <johannes@sipsolutions.net>
8 #include <linux/module.h>
10 #include <linux/mutex.h>
11 #include <linux/list.h>
12 #include <linux/nl80211.h>
13 #include <linux/debugfs.h>
14 #include <linux/notifier.h>
15 #include <linux/device.h>
16 #include <net/genetlink.h>
17 #include <net/cfg80211.h>
18 #include <net/wireless.h>
23 /* name for sysfs, %d is appended */
24 #define PHY_NAME "phy"
26 MODULE_AUTHOR("Johannes Berg");
27 MODULE_LICENSE("GPL");
28 MODULE_DESCRIPTION("wireless configuration support");
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 */
33 LIST_HEAD(cfg80211_drv_list
);
34 DEFINE_MUTEX(cfg80211_drv_mutex
);
37 static struct dentry
*ieee80211_debugfs_dir
;
39 /* requires cfg80211_drv_mutex to be held! */
40 static struct cfg80211_registered_device
*cfg80211_drv_by_wiphy(int wiphy
)
42 struct cfg80211_registered_device
*result
= NULL
, *drv
;
44 list_for_each_entry(drv
, &cfg80211_drv_list
, list
) {
45 if (drv
->idx
== wiphy
) {
54 /* requires cfg80211_drv_mutex to be held! */
55 static struct cfg80211_registered_device
*
56 __cfg80211_drv_from_info(struct genl_info
*info
)
59 struct cfg80211_registered_device
*bywiphy
= NULL
, *byifidx
= NULL
;
60 struct net_device
*dev
;
63 if (info
->attrs
[NL80211_ATTR_WIPHY
]) {
64 bywiphy
= cfg80211_drv_by_wiphy(
65 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY
]));
69 if (info
->attrs
[NL80211_ATTR_IFINDEX
]) {
70 ifindex
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFINDEX
]);
71 dev
= dev_get_by_index(&init_net
, ifindex
);
73 if (dev
->ieee80211_ptr
)
75 wiphy_to_dev(dev
->ieee80211_ptr
->wiphy
);
81 if (bywiphy
&& byifidx
) {
82 if (bywiphy
!= byifidx
)
83 return ERR_PTR(-EINVAL
);
85 return bywiphy
; /* == byifidx */
96 struct cfg80211_registered_device
*
97 cfg80211_get_dev_from_info(struct genl_info
*info
)
99 struct cfg80211_registered_device
*drv
;
101 mutex_lock(&cfg80211_drv_mutex
);
102 drv
= __cfg80211_drv_from_info(info
);
104 /* if it is not an error we grab the lock on
105 * it to assure it won't be going away while
106 * we operate on it */
108 mutex_lock(&drv
->mtx
);
110 mutex_unlock(&cfg80211_drv_mutex
);
115 struct cfg80211_registered_device
*
116 cfg80211_get_dev_from_ifindex(int ifindex
)
118 struct cfg80211_registered_device
*drv
= ERR_PTR(-ENODEV
);
119 struct net_device
*dev
;
121 mutex_lock(&cfg80211_drv_mutex
);
122 dev
= dev_get_by_index(&init_net
, ifindex
);
125 if (dev
->ieee80211_ptr
) {
126 drv
= wiphy_to_dev(dev
->ieee80211_ptr
->wiphy
);
127 mutex_lock(&drv
->mtx
);
129 drv
= ERR_PTR(-ENODEV
);
132 mutex_unlock(&cfg80211_drv_mutex
);
136 void cfg80211_put_dev(struct cfg80211_registered_device
*drv
)
139 mutex_unlock(&drv
->mtx
);
142 int cfg80211_dev_rename(struct cfg80211_registered_device
*rdev
,
145 struct cfg80211_registered_device
*drv
;
146 int idx
, taken
= -1, result
, digits
;
148 mutex_lock(&cfg80211_drv_mutex
);
150 /* prohibit calling the thing phy%d when %d is not its number */
151 sscanf(newname
, PHY_NAME
"%d%n", &idx
, &taken
);
152 if (taken
== strlen(newname
) && idx
!= rdev
->idx
) {
153 /* count number of places needed to print idx */
158 * deny the name if it is phy<idx> where <idx> is printed
159 * without leading zeroes. taken == strlen(newname) here
162 if (taken
== strlen(PHY_NAME
) + digits
)
167 /* Ignore nop renames */
169 if (strcmp(newname
, dev_name(&rdev
->wiphy
.dev
)) == 0)
172 /* Ensure another device does not already have this name. */
173 list_for_each_entry(drv
, &cfg80211_drv_list
, list
) {
175 if (strcmp(newname
, dev_name(&drv
->wiphy
.dev
)) == 0)
179 /* this will only check for collisions in sysfs
180 * which is not even always compiled in.
182 result
= device_rename(&rdev
->wiphy
.dev
, newname
);
186 if (rdev
->wiphy
.debugfsdir
&&
187 !debugfs_rename(rdev
->wiphy
.debugfsdir
->d_parent
,
188 rdev
->wiphy
.debugfsdir
,
189 rdev
->wiphy
.debugfsdir
->d_parent
,
191 printk(KERN_ERR
"cfg80211: failed to rename debugfs dir to %s!\n",
196 mutex_unlock(&cfg80211_drv_mutex
);
198 nl80211_notify_dev_rename(rdev
);
203 /* exported functions */
205 struct wiphy
*wiphy_new(struct cfg80211_ops
*ops
, int sizeof_priv
)
207 static int wiphy_counter
;
209 struct cfg80211_registered_device
*drv
;
212 WARN_ON(!ops
->add_key
&& ops
->del_key
);
213 WARN_ON(ops
->add_key
&& !ops
->del_key
);
215 alloc_size
= sizeof(*drv
) + sizeof_priv
;
217 drv
= kzalloc(alloc_size
, GFP_KERNEL
);
223 mutex_lock(&cfg80211_drv_mutex
);
225 drv
->idx
= wiphy_counter
++;
227 if (unlikely(drv
->idx
< 0)) {
229 mutex_unlock(&cfg80211_drv_mutex
);
235 mutex_unlock(&cfg80211_drv_mutex
);
237 /* give it a proper name */
238 dev_set_name(&drv
->wiphy
.dev
, PHY_NAME
"%d", drv
->idx
);
240 mutex_init(&drv
->mtx
);
241 mutex_init(&drv
->devlist_mtx
);
242 INIT_LIST_HEAD(&drv
->netdev_list
);
244 device_initialize(&drv
->wiphy
.dev
);
245 drv
->wiphy
.dev
.class = &ieee80211_class
;
246 drv
->wiphy
.dev
.platform_data
= drv
;
250 EXPORT_SYMBOL(wiphy_new
);
252 int wiphy_register(struct wiphy
*wiphy
)
254 struct cfg80211_registered_device
*drv
= wiphy_to_dev(wiphy
);
256 enum ieee80211_band band
;
257 struct ieee80211_supported_band
*sband
;
258 bool have_band
= false;
260 u16 ifmodes
= wiphy
->interface_modes
;
262 /* sanity check ifmodes */
264 ifmodes
&= ((1 << __NL80211_IFTYPE_AFTER_LAST
) - 1) & ~1;
265 if (WARN_ON(ifmodes
!= wiphy
->interface_modes
))
266 wiphy
->interface_modes
= ifmodes
;
268 /* sanity check supported bands/channels */
269 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
270 sband
= wiphy
->bands
[band
];
276 if (!sband
->n_channels
|| !sband
->n_bitrates
) {
281 for (i
= 0; i
< sband
->n_channels
; i
++) {
282 sband
->channels
[i
].orig_flags
=
283 sband
->channels
[i
].flags
;
284 sband
->channels
[i
].orig_mag
=
285 sband
->channels
[i
].max_antenna_gain
;
286 sband
->channels
[i
].orig_mpwr
=
287 sband
->channels
[i
].max_power
;
288 sband
->channels
[i
].band
= band
;
299 /* check and set up bitrates */
300 ieee80211_set_bitrate_flags(wiphy
);
302 mutex_lock(&cfg80211_drv_mutex
);
304 /* set up regulatory info */
305 wiphy_update_regulatory(wiphy
, REGDOM_SET_BY_CORE
);
307 res
= device_add(&drv
->wiphy
.dev
);
311 list_add(&drv
->list
, &cfg80211_drv_list
);
314 drv
->wiphy
.debugfsdir
=
315 debugfs_create_dir(wiphy_name(&drv
->wiphy
),
316 ieee80211_debugfs_dir
);
317 if (IS_ERR(drv
->wiphy
.debugfsdir
))
318 drv
->wiphy
.debugfsdir
= NULL
;
322 mutex_unlock(&cfg80211_drv_mutex
);
325 EXPORT_SYMBOL(wiphy_register
);
327 void wiphy_unregister(struct wiphy
*wiphy
)
329 struct cfg80211_registered_device
*drv
= wiphy_to_dev(wiphy
);
331 /* protect the device list */
332 mutex_lock(&cfg80211_drv_mutex
);
334 BUG_ON(!list_empty(&drv
->netdev_list
));
337 * Try to grab drv->mtx. If a command is still in progress,
338 * hopefully the driver will refuse it since it's tearing
339 * down the device already. We wait for this command to complete
340 * before unlinking the item from the list.
341 * Note: as codified by the BUG_ON above we cannot get here if
342 * a virtual interface is still associated. Hence, we can only
343 * get to lock contention here if userspace issues a command
344 * that identified the hardware by wiphy index.
346 mutex_lock(&drv
->mtx
);
347 /* unlock again before freeing */
348 mutex_unlock(&drv
->mtx
);
350 /* If this device got a regulatory hint tell core its
351 * free to listen now to a new shiny device regulatory hint */
352 reg_device_remove(wiphy
);
354 list_del(&drv
->list
);
355 device_del(&drv
->wiphy
.dev
);
356 debugfs_remove(drv
->wiphy
.debugfsdir
);
358 mutex_unlock(&cfg80211_drv_mutex
);
360 EXPORT_SYMBOL(wiphy_unregister
);
362 void cfg80211_dev_free(struct cfg80211_registered_device
*drv
)
364 mutex_destroy(&drv
->mtx
);
365 mutex_destroy(&drv
->devlist_mtx
);
369 void wiphy_free(struct wiphy
*wiphy
)
371 put_device(&wiphy
->dev
);
373 EXPORT_SYMBOL(wiphy_free
);
375 static int cfg80211_netdev_notifier_call(struct notifier_block
* nb
,
379 struct net_device
*dev
= ndev
;
380 struct cfg80211_registered_device
*rdev
;
382 if (!dev
->ieee80211_ptr
)
385 rdev
= wiphy_to_dev(dev
->ieee80211_ptr
->wiphy
);
387 WARN_ON(dev
->ieee80211_ptr
->iftype
== NL80211_IFTYPE_UNSPECIFIED
);
390 case NETDEV_REGISTER
:
391 mutex_lock(&rdev
->devlist_mtx
);
392 list_add(&dev
->ieee80211_ptr
->list
, &rdev
->netdev_list
);
393 if (sysfs_create_link(&dev
->dev
.kobj
, &rdev
->wiphy
.dev
.kobj
,
395 printk(KERN_ERR
"wireless: failed to add phy80211 "
396 "symlink to netdev!\n");
398 dev
->ieee80211_ptr
->netdev
= dev
;
399 mutex_unlock(&rdev
->devlist_mtx
);
401 case NETDEV_UNREGISTER
:
402 mutex_lock(&rdev
->devlist_mtx
);
403 if (!list_empty(&dev
->ieee80211_ptr
->list
)) {
404 sysfs_remove_link(&dev
->dev
.kobj
, "phy80211");
405 list_del_init(&dev
->ieee80211_ptr
->list
);
407 mutex_unlock(&rdev
->devlist_mtx
);
414 static struct notifier_block cfg80211_netdev_notifier
= {
415 .notifier_call
= cfg80211_netdev_notifier_call
,
418 static int cfg80211_init(void)
422 err
= wiphy_sysfs_init();
426 err
= register_netdevice_notifier(&cfg80211_netdev_notifier
);
428 goto out_fail_notifier
;
430 err
= nl80211_init();
432 goto out_fail_nl80211
;
434 ieee80211_debugfs_dir
= debugfs_create_dir("ieee80211", NULL
);
436 err
= regulatory_init();
443 debugfs_remove(ieee80211_debugfs_dir
);
445 unregister_netdevice_notifier(&cfg80211_netdev_notifier
);
452 subsys_initcall(cfg80211_init
);
454 static void cfg80211_exit(void)
456 debugfs_remove(ieee80211_debugfs_dir
);
458 unregister_netdevice_notifier(&cfg80211_netdev_notifier
);
462 module_exit(cfg80211_exit
);