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