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