RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / net / wireless / core.c
blob7eabd55417a5eab222a4c756d1e2181513575cc7
1 /*
2 * This is the linux wireless configuration interface.
4 * Copyright 2006, 2007 Johannes Berg <johannes@sipsolutions.net>
5 */
7 #include <linux/if.h>
8 #include <linux/module.h>
9 #include <linux/err.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>
19 #include "core.h"
20 #include "sysfs.h"
22 /* name for sysfs, %d is appended */
23 #define PHY_NAME "phy"
25 MODULE_AUTHOR("Johannes Berg");
26 MODULE_LICENSE("GPL");
27 MODULE_DESCRIPTION("wireless configuration support");
29 /* RCU might be appropriate here since we usually
30 * only read the list, and that can happen quite
31 * often because we need to do it for each command */
32 LIST_HEAD(cfg80211_drv_list);
33 DEFINE_MUTEX(cfg80211_drv_mutex);
34 static int wiphy_counter;
36 /* for debugfs */
37 static struct dentry *ieee80211_debugfs_dir;
39 /* exported functions */
41 struct wiphy *wiphy_new(struct cfg80211_ops *ops, int sizeof_priv)
43 struct cfg80211_registered_device *drv;
44 int alloc_size;
46 alloc_size = sizeof(*drv) + sizeof_priv;
48 drv = kzalloc(alloc_size, GFP_KERNEL);
49 if (!drv)
50 return NULL;
52 drv->ops = ops;
54 mutex_lock(&cfg80211_drv_mutex);
56 drv->idx = wiphy_counter;
58 /* now increase counter for the next device unless
59 * it has wrapped previously */
60 if (wiphy_counter >= 0)
61 wiphy_counter++;
63 mutex_unlock(&cfg80211_drv_mutex);
65 if (unlikely(drv->idx < 0)) {
66 /* ugh, wrapped! */
67 kfree(drv);
68 return NULL;
71 /* give it a proper name */
72 snprintf(drv->wiphy.dev.bus_id, BUS_ID_SIZE,
73 PHY_NAME "%d", drv->idx);
75 mutex_init(&drv->mtx);
76 mutex_init(&drv->devlist_mtx);
77 INIT_LIST_HEAD(&drv->netdev_list);
79 device_initialize(&drv->wiphy.dev);
80 drv->wiphy.dev.class = &ieee80211_class;
81 drv->wiphy.dev.platform_data = drv;
83 return &drv->wiphy;
85 EXPORT_SYMBOL(wiphy_new);
87 int wiphy_register(struct wiphy *wiphy)
89 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
90 int res;
92 mutex_lock(&cfg80211_drv_mutex);
94 res = device_add(&drv->wiphy.dev);
95 if (res)
96 goto out_unlock;
98 list_add(&drv->list, &cfg80211_drv_list);
100 /* add to debugfs */
101 drv->wiphy.debugfsdir =
102 debugfs_create_dir(wiphy_name(&drv->wiphy),
103 ieee80211_debugfs_dir);
105 res = 0;
106 out_unlock:
107 mutex_unlock(&cfg80211_drv_mutex);
108 return res;
110 EXPORT_SYMBOL(wiphy_register);
112 void wiphy_unregister(struct wiphy *wiphy)
114 struct cfg80211_registered_device *drv = wiphy_to_dev(wiphy);
116 /* protect the device list */
117 mutex_lock(&cfg80211_drv_mutex);
119 BUG_ON(!list_empty(&drv->netdev_list));
122 * Try to grab drv->mtx. If a command is still in progress,
123 * hopefully the driver will refuse it since it's tearing
124 * down the device already. We wait for this command to complete
125 * before unlinking the item from the list.
126 * Note: as codified by the BUG_ON above we cannot get here if
127 * a virtual interface is still associated. Hence, we can only
128 * get to lock contention here if userspace issues a command
129 * that identified the hardware by wiphy index.
131 mutex_lock(&drv->mtx);
132 /* unlock again before freeing */
133 mutex_unlock(&drv->mtx);
135 list_del(&drv->list);
136 device_del(&drv->wiphy.dev);
137 debugfs_remove(drv->wiphy.debugfsdir);
139 mutex_unlock(&cfg80211_drv_mutex);
141 EXPORT_SYMBOL(wiphy_unregister);
143 void cfg80211_dev_free(struct cfg80211_registered_device *drv)
145 mutex_destroy(&drv->mtx);
146 mutex_destroy(&drv->devlist_mtx);
147 kfree(drv);
150 void wiphy_free(struct wiphy *wiphy)
152 put_device(&wiphy->dev);
154 EXPORT_SYMBOL(wiphy_free);
156 static int cfg80211_netdev_notifier_call(struct notifier_block * nb,
157 unsigned long state,
158 void *ndev)
160 struct net_device *dev = ndev;
161 struct cfg80211_registered_device *rdev;
163 if (!dev->ieee80211_ptr)
164 return 0;
166 rdev = wiphy_to_dev(dev->ieee80211_ptr->wiphy);
168 switch (state) {
169 case NETDEV_REGISTER:
170 mutex_lock(&rdev->devlist_mtx);
171 list_add(&dev->ieee80211_ptr->list, &rdev->netdev_list);
172 if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
173 "phy80211")) {
174 printk(KERN_ERR "wireless: failed to add phy80211 "
175 "symlink to netdev!\n");
177 dev->ieee80211_ptr->netdev = dev;
178 mutex_unlock(&rdev->devlist_mtx);
179 break;
180 case NETDEV_UNREGISTER:
181 mutex_lock(&rdev->devlist_mtx);
182 if (!list_empty(&dev->ieee80211_ptr->list)) {
183 sysfs_remove_link(&dev->dev.kobj, "phy80211");
184 list_del_init(&dev->ieee80211_ptr->list);
186 mutex_unlock(&rdev->devlist_mtx);
187 break;
190 return 0;
193 static struct notifier_block cfg80211_netdev_notifier = {
194 .notifier_call = cfg80211_netdev_notifier_call,
197 static int cfg80211_init(void)
199 int err = wiphy_sysfs_init();
200 if (err)
201 goto out_fail_sysfs;
203 err = register_netdevice_notifier(&cfg80211_netdev_notifier);
204 if (err)
205 goto out_fail_notifier;
207 ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
209 return 0;
211 out_fail_notifier:
212 wiphy_sysfs_exit();
213 out_fail_sysfs:
214 return err;
216 module_init(cfg80211_init);
218 static void cfg80211_exit(void)
220 debugfs_remove(ieee80211_debugfs_dir);
221 unregister_netdevice_notifier(&cfg80211_netdev_notifier);
222 wiphy_sysfs_exit();
224 module_exit(cfg80211_exit);