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