Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2002-2005, Instant802 Networks, Inc. |
| 3 | * Copyright 2005-2006, Devicescape Software, Inc. |
| 4 | * Copyright 2007 Johannes Berg <johannes@sipsolutions.net> |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 5 | * Copyright 2008 Luis R. Rodriguez <lrodriguz@atheros.com> |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 12 | /** |
| 13 | * DOC: Wireless regulatory infrastructure |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 14 | * |
| 15 | * The usual implementation is for a driver to read a device EEPROM to |
| 16 | * determine which regulatory domain it should be operating under, then |
| 17 | * looking up the allowable channels in a driver-local table and finally |
| 18 | * registering those channels in the wiphy structure. |
| 19 | * |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 20 | * Another set of compliance enforcement is for drivers to use their |
| 21 | * own compliance limits which can be stored on the EEPROM. The host |
| 22 | * driver or firmware may ensure these are used. |
| 23 | * |
| 24 | * In addition to all this we provide an extra layer of regulatory |
| 25 | * conformance. For drivers which do not have any regulatory |
| 26 | * information CRDA provides the complete regulatory solution. |
| 27 | * For others it provides a community effort on further restrictions |
| 28 | * to enhance compliance. |
| 29 | * |
| 30 | * Note: When number of rules --> infinity we will not be able to |
| 31 | * index on alpha2 any more, instead we'll probably have to |
| 32 | * rely on some SHA1 checksum of the regdomain for example. |
| 33 | * |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 34 | */ |
| 35 | #include <linux/kernel.h> |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 36 | #include <linux/list.h> |
| 37 | #include <linux/random.h> |
| 38 | #include <linux/nl80211.h> |
| 39 | #include <linux/platform_device.h> |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 40 | #include <net/cfg80211.h> |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 41 | #include "core.h" |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 42 | #include "reg.h" |
John W. Linville | 3b377ea | 2009-12-18 17:59:01 -0500 | [diff] [blame] | 43 | #include "regdb.h" |
Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 44 | #include "nl80211.h" |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 45 | |
Luis R. Rodriguez | 4113f75 | 2010-01-04 11:50:11 -0500 | [diff] [blame] | 46 | #ifdef CONFIG_CFG80211_REG_DEBUG |
John W. Linville | 8271195 | 2010-01-05 17:57:20 -0500 | [diff] [blame] | 47 | #define REG_DBG_PRINT(format, args...) \ |
Luis R. Rodriguez | 4113f75 | 2010-01-04 11:50:11 -0500 | [diff] [blame] | 48 | do { \ |
John W. Linville | 8271195 | 2010-01-05 17:57:20 -0500 | [diff] [blame] | 49 | printk(KERN_DEBUG format , ## args); \ |
Luis R. Rodriguez | 4113f75 | 2010-01-04 11:50:11 -0500 | [diff] [blame] | 50 | } while (0) |
| 51 | #else |
John W. Linville | 8271195 | 2010-01-05 17:57:20 -0500 | [diff] [blame] | 52 | #define REG_DBG_PRINT(args...) |
Luis R. Rodriguez | 4113f75 | 2010-01-04 11:50:11 -0500 | [diff] [blame] | 53 | #endif |
| 54 | |
Luis R. Rodriguez | 5166ccd | 2008-10-30 13:33:56 -0700 | [diff] [blame] | 55 | /* Receipt of information from last regulatory request */ |
Johannes Berg | f6037d0 | 2008-10-21 11:01:33 +0200 | [diff] [blame] | 56 | static struct regulatory_request *last_request; |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 57 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 58 | /* To trigger userspace events */ |
| 59 | static struct platform_device *reg_pdev; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 60 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 61 | /* |
| 62 | * Central wireless core regulatory domains, we only need two, |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 63 | * the current one and a world regulatory domain in case we have no |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 64 | * information to give us an alpha2 |
| 65 | */ |
Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 66 | const struct ieee80211_regdomain *cfg80211_regdomain; |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 67 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 68 | /* |
| 69 | * We use this as a place for the rd structure built from the |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 70 | * last parsed country IE to rest until CRDA gets back to us with |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 71 | * what it thinks should apply for the same country |
| 72 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 73 | static const struct ieee80211_regdomain *country_ie_regdomain; |
| 74 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 75 | /* |
| 76 | * Protects static reg.c components: |
| 77 | * - cfg80211_world_regdom |
| 78 | * - cfg80211_regdom |
| 79 | * - country_ie_regdomain |
| 80 | * - last_request |
| 81 | */ |
| 82 | DEFINE_MUTEX(reg_mutex); |
| 83 | #define assert_reg_lock() WARN_ON(!mutex_is_locked(®_mutex)) |
| 84 | |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 85 | /* Used to queue up regulatory hints */ |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 86 | static LIST_HEAD(reg_requests_list); |
| 87 | static spinlock_t reg_requests_lock; |
| 88 | |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 89 | /* Used to queue up beacon hints for review */ |
| 90 | static LIST_HEAD(reg_pending_beacons); |
| 91 | static spinlock_t reg_pending_beacons_lock; |
| 92 | |
| 93 | /* Used to keep track of processed beacon hints */ |
| 94 | static LIST_HEAD(reg_beacon_list); |
| 95 | |
| 96 | struct reg_beacon { |
| 97 | struct list_head list; |
| 98 | struct ieee80211_channel chan; |
| 99 | }; |
| 100 | |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 101 | /* We keep a static world regulatory domain in case of the absence of CRDA */ |
| 102 | static const struct ieee80211_regdomain world_regdom = { |
Luis R. Rodriguez | 611b6a8 | 2009-03-05 21:19:21 -0800 | [diff] [blame] | 103 | .n_reg_rules = 5, |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 104 | .alpha2 = "00", |
| 105 | .reg_rules = { |
Luis R. Rodriguez | 68798a6 | 2009-02-21 00:20:37 -0500 | [diff] [blame] | 106 | /* IEEE 802.11b/g, channels 1..11 */ |
| 107 | REG_RULE(2412-10, 2462+10, 40, 6, 20, 0), |
Luis R. Rodriguez | 611b6a8 | 2009-03-05 21:19:21 -0800 | [diff] [blame] | 108 | /* IEEE 802.11b/g, channels 12..13. No HT40 |
| 109 | * channel fits here. */ |
| 110 | REG_RULE(2467-10, 2472+10, 20, 6, 20, |
Luis R. Rodriguez | 3fc71f7 | 2009-02-21 00:20:38 -0500 | [diff] [blame] | 111 | NL80211_RRF_PASSIVE_SCAN | |
| 112 | NL80211_RRF_NO_IBSS), |
Luis R. Rodriguez | 611b6a8 | 2009-03-05 21:19:21 -0800 | [diff] [blame] | 113 | /* IEEE 802.11 channel 14 - Only JP enables |
| 114 | * this and for 802.11b only */ |
| 115 | REG_RULE(2484-10, 2484+10, 20, 6, 20, |
| 116 | NL80211_RRF_PASSIVE_SCAN | |
| 117 | NL80211_RRF_NO_IBSS | |
| 118 | NL80211_RRF_NO_OFDM), |
| 119 | /* IEEE 802.11a, channel 36..48 */ |
Luis R. Rodriguez | ec329ac | 2009-03-05 21:19:22 -0800 | [diff] [blame] | 120 | REG_RULE(5180-10, 5240+10, 40, 6, 20, |
Luis R. Rodriguez | 611b6a8 | 2009-03-05 21:19:21 -0800 | [diff] [blame] | 121 | NL80211_RRF_PASSIVE_SCAN | |
| 122 | NL80211_RRF_NO_IBSS), |
Luis R. Rodriguez | 3fc71f7 | 2009-02-21 00:20:38 -0500 | [diff] [blame] | 123 | |
| 124 | /* NB: 5260 MHz - 5700 MHz requies DFS */ |
| 125 | |
| 126 | /* IEEE 802.11a, channel 149..165 */ |
Luis R. Rodriguez | ec329ac | 2009-03-05 21:19:22 -0800 | [diff] [blame] | 127 | REG_RULE(5745-10, 5825+10, 40, 6, 20, |
Luis R. Rodriguez | 3fc71f7 | 2009-02-21 00:20:38 -0500 | [diff] [blame] | 128 | NL80211_RRF_PASSIVE_SCAN | |
| 129 | NL80211_RRF_NO_IBSS), |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 130 | } |
| 131 | }; |
| 132 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 133 | static const struct ieee80211_regdomain *cfg80211_world_regdom = |
| 134 | &world_regdom; |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 135 | |
Luis R. Rodriguez | 6ee7d33 | 2009-03-20 23:53:06 -0400 | [diff] [blame] | 136 | static char *ieee80211_regdom = "00"; |
Luis R. Rodriguez | 6ee7d33 | 2009-03-20 23:53:06 -0400 | [diff] [blame] | 137 | |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 138 | module_param(ieee80211_regdom, charp, 0444); |
| 139 | MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code"); |
| 140 | |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 141 | static void reset_regdomains(void) |
| 142 | { |
Johannes Berg | 942b25c | 2008-09-15 11:26:47 +0200 | [diff] [blame] | 143 | /* avoid freeing static information or freeing something twice */ |
| 144 | if (cfg80211_regdomain == cfg80211_world_regdom) |
| 145 | cfg80211_regdomain = NULL; |
| 146 | if (cfg80211_world_regdom == &world_regdom) |
| 147 | cfg80211_world_regdom = NULL; |
| 148 | if (cfg80211_regdomain == &world_regdom) |
| 149 | cfg80211_regdomain = NULL; |
Johannes Berg | 942b25c | 2008-09-15 11:26:47 +0200 | [diff] [blame] | 150 | |
| 151 | kfree(cfg80211_regdomain); |
| 152 | kfree(cfg80211_world_regdom); |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 153 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 154 | cfg80211_world_regdom = &world_regdom; |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 155 | cfg80211_regdomain = NULL; |
| 156 | } |
| 157 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 158 | /* |
| 159 | * Dynamic world regulatory domain requested by the wireless |
| 160 | * core upon initialization |
| 161 | */ |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 162 | static void update_world_regdomain(const struct ieee80211_regdomain *rd) |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 163 | { |
Johannes Berg | f6037d0 | 2008-10-21 11:01:33 +0200 | [diff] [blame] | 164 | BUG_ON(!last_request); |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 165 | |
| 166 | reset_regdomains(); |
| 167 | |
| 168 | cfg80211_world_regdom = rd; |
| 169 | cfg80211_regdomain = rd; |
| 170 | } |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 171 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 172 | bool is_world_regdom(const char *alpha2) |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 173 | { |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 174 | if (!alpha2) |
| 175 | return false; |
| 176 | if (alpha2[0] == '0' && alpha2[1] == '0') |
| 177 | return true; |
| 178 | return false; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 179 | } |
| 180 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 181 | static bool is_alpha2_set(const char *alpha2) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 182 | { |
| 183 | if (!alpha2) |
| 184 | return false; |
| 185 | if (alpha2[0] != 0 && alpha2[1] != 0) |
| 186 | return true; |
| 187 | return false; |
| 188 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 189 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 190 | static bool is_alpha_upper(char letter) |
| 191 | { |
| 192 | /* ASCII A - Z */ |
| 193 | if (letter >= 65 && letter <= 90) |
| 194 | return true; |
| 195 | return false; |
| 196 | } |
| 197 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 198 | static bool is_unknown_alpha2(const char *alpha2) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 199 | { |
| 200 | if (!alpha2) |
| 201 | return false; |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 202 | /* |
| 203 | * Special case where regulatory domain was built by driver |
| 204 | * but a specific alpha2 cannot be determined |
| 205 | */ |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 206 | if (alpha2[0] == '9' && alpha2[1] == '9') |
| 207 | return true; |
| 208 | return false; |
| 209 | } |
| 210 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 211 | static bool is_intersected_alpha2(const char *alpha2) |
| 212 | { |
| 213 | if (!alpha2) |
| 214 | return false; |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 215 | /* |
| 216 | * Special case where regulatory domain is the |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 217 | * result of an intersection between two regulatory domain |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 218 | * structures |
| 219 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 220 | if (alpha2[0] == '9' && alpha2[1] == '8') |
| 221 | return true; |
| 222 | return false; |
| 223 | } |
| 224 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 225 | static bool is_an_alpha2(const char *alpha2) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 226 | { |
| 227 | if (!alpha2) |
| 228 | return false; |
| 229 | if (is_alpha_upper(alpha2[0]) && is_alpha_upper(alpha2[1])) |
| 230 | return true; |
| 231 | return false; |
| 232 | } |
| 233 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 234 | static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 235 | { |
| 236 | if (!alpha2_x || !alpha2_y) |
| 237 | return false; |
| 238 | if (alpha2_x[0] == alpha2_y[0] && |
| 239 | alpha2_x[1] == alpha2_y[1]) |
| 240 | return true; |
| 241 | return false; |
| 242 | } |
| 243 | |
Luis R. Rodriguez | 69b1572 | 2009-02-21 00:04:33 -0500 | [diff] [blame] | 244 | static bool regdom_changes(const char *alpha2) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 245 | { |
Luis R. Rodriguez | 761cf7e | 2009-02-21 00:04:25 -0500 | [diff] [blame] | 246 | assert_cfg80211_lock(); |
| 247 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 248 | if (!cfg80211_regdomain) |
| 249 | return true; |
| 250 | if (alpha2_equal(cfg80211_regdomain->alpha2, alpha2)) |
| 251 | return false; |
| 252 | return true; |
| 253 | } |
| 254 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 255 | /** |
| 256 | * country_ie_integrity_changes - tells us if the country IE has changed |
| 257 | * @checksum: checksum of country IE of fields we are interested in |
| 258 | * |
| 259 | * If the country IE has not changed you can ignore it safely. This is |
| 260 | * useful to determine if two devices are seeing two different country IEs |
| 261 | * even on the same alpha2. Note that this will return false if no IE has |
| 262 | * been set on the wireless core yet. |
| 263 | */ |
| 264 | static bool country_ie_integrity_changes(u32 checksum) |
| 265 | { |
| 266 | /* If no IE has been set then the checksum doesn't change */ |
| 267 | if (unlikely(!last_request->country_ie_checksum)) |
| 268 | return false; |
| 269 | if (unlikely(last_request->country_ie_checksum != checksum)) |
| 270 | return true; |
| 271 | return false; |
| 272 | } |
| 273 | |
John W. Linville | 3b377ea | 2009-12-18 17:59:01 -0500 | [diff] [blame] | 274 | static int reg_copy_regd(const struct ieee80211_regdomain **dst_regd, |
| 275 | const struct ieee80211_regdomain *src_regd) |
| 276 | { |
| 277 | struct ieee80211_regdomain *regd; |
| 278 | int size_of_regd = 0; |
| 279 | unsigned int i; |
| 280 | |
| 281 | size_of_regd = sizeof(struct ieee80211_regdomain) + |
| 282 | ((src_regd->n_reg_rules + 1) * sizeof(struct ieee80211_reg_rule)); |
| 283 | |
| 284 | regd = kzalloc(size_of_regd, GFP_KERNEL); |
| 285 | if (!regd) |
| 286 | return -ENOMEM; |
| 287 | |
| 288 | memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain)); |
| 289 | |
| 290 | for (i = 0; i < src_regd->n_reg_rules; i++) |
| 291 | memcpy(®d->reg_rules[i], &src_regd->reg_rules[i], |
| 292 | sizeof(struct ieee80211_reg_rule)); |
| 293 | |
| 294 | *dst_regd = regd; |
| 295 | return 0; |
| 296 | } |
| 297 | |
| 298 | #ifdef CONFIG_CFG80211_INTERNAL_REGDB |
| 299 | struct reg_regdb_search_request { |
| 300 | char alpha2[2]; |
| 301 | struct list_head list; |
| 302 | }; |
| 303 | |
| 304 | static LIST_HEAD(reg_regdb_search_list); |
| 305 | static DEFINE_SPINLOCK(reg_regdb_search_lock); |
| 306 | |
| 307 | static void reg_regdb_search(struct work_struct *work) |
| 308 | { |
| 309 | struct reg_regdb_search_request *request; |
| 310 | const struct ieee80211_regdomain *curdom, *regdom; |
| 311 | int i, r; |
| 312 | |
| 313 | spin_lock(®_regdb_search_lock); |
| 314 | while (!list_empty(®_regdb_search_list)) { |
| 315 | request = list_first_entry(®_regdb_search_list, |
| 316 | struct reg_regdb_search_request, |
| 317 | list); |
| 318 | list_del(&request->list); |
| 319 | |
| 320 | for (i=0; i<reg_regdb_size; i++) { |
| 321 | curdom = reg_regdb[i]; |
| 322 | |
| 323 | if (!memcmp(request->alpha2, curdom->alpha2, 2)) { |
| 324 | r = reg_copy_regd(®dom, curdom); |
| 325 | if (r) |
| 326 | break; |
| 327 | spin_unlock(®_regdb_search_lock); |
| 328 | mutex_lock(&cfg80211_mutex); |
| 329 | set_regdom(regdom); |
| 330 | mutex_unlock(&cfg80211_mutex); |
| 331 | spin_lock(®_regdb_search_lock); |
| 332 | break; |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | kfree(request); |
| 337 | } |
| 338 | spin_unlock(®_regdb_search_lock); |
| 339 | } |
| 340 | |
| 341 | static DECLARE_WORK(reg_regdb_work, reg_regdb_search); |
| 342 | |
| 343 | static void reg_regdb_query(const char *alpha2) |
| 344 | { |
| 345 | struct reg_regdb_search_request *request; |
| 346 | |
| 347 | if (!alpha2) |
| 348 | return; |
| 349 | |
| 350 | request = kzalloc(sizeof(struct reg_regdb_search_request), GFP_KERNEL); |
| 351 | if (!request) |
| 352 | return; |
| 353 | |
| 354 | memcpy(request->alpha2, alpha2, 2); |
| 355 | |
| 356 | spin_lock(®_regdb_search_lock); |
| 357 | list_add_tail(&request->list, ®_regdb_search_list); |
| 358 | spin_unlock(®_regdb_search_lock); |
| 359 | |
| 360 | schedule_work(®_regdb_work); |
| 361 | } |
| 362 | #else |
| 363 | static inline void reg_regdb_query(const char *alpha2) {} |
| 364 | #endif /* CONFIG_CFG80211_INTERNAL_REGDB */ |
| 365 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 366 | /* |
| 367 | * This lets us keep regulatory code which is updated on a regulatory |
| 368 | * basis in userspace. |
| 369 | */ |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 370 | static int call_crda(const char *alpha2) |
| 371 | { |
| 372 | char country_env[9 + 2] = "COUNTRY="; |
| 373 | char *envp[] = { |
| 374 | country_env, |
| 375 | NULL |
| 376 | }; |
| 377 | |
| 378 | if (!is_world_regdom((char *) alpha2)) |
| 379 | printk(KERN_INFO "cfg80211: Calling CRDA for country: %c%c\n", |
| 380 | alpha2[0], alpha2[1]); |
| 381 | else |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 382 | printk(KERN_INFO "cfg80211: Calling CRDA to update world " |
| 383 | "regulatory domain\n"); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 384 | |
John W. Linville | 3b377ea | 2009-12-18 17:59:01 -0500 | [diff] [blame] | 385 | /* query internal regulatory database (if it exists) */ |
| 386 | reg_regdb_query(alpha2); |
| 387 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 388 | country_env[8] = alpha2[0]; |
| 389 | country_env[9] = alpha2[1]; |
| 390 | |
| 391 | return kobject_uevent_env(®_pdev->dev.kobj, KOBJ_CHANGE, envp); |
| 392 | } |
| 393 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 394 | /* Used by nl80211 before kmalloc'ing our regulatory domain */ |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 395 | bool reg_is_valid_request(const char *alpha2) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 396 | { |
Luis R. Rodriguez | 61405e9 | 2009-05-13 17:04:41 -0400 | [diff] [blame] | 397 | assert_cfg80211_lock(); |
| 398 | |
Johannes Berg | f6037d0 | 2008-10-21 11:01:33 +0200 | [diff] [blame] | 399 | if (!last_request) |
| 400 | return false; |
| 401 | |
| 402 | return alpha2_equal(last_request->alpha2, alpha2); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | /* Sanity check on a regulatory rule */ |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 406 | static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 407 | { |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 408 | const struct ieee80211_freq_range *freq_range = &rule->freq_range; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 409 | u32 freq_diff; |
| 410 | |
Luis R. Rodriguez | 91e9900 | 2008-11-12 14:21:55 -0800 | [diff] [blame] | 411 | if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 412 | return false; |
| 413 | |
| 414 | if (freq_range->start_freq_khz > freq_range->end_freq_khz) |
| 415 | return false; |
| 416 | |
| 417 | freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz; |
| 418 | |
Roel Kluin | bd05f28 | 2009-03-03 22:55:21 +0100 | [diff] [blame] | 419 | if (freq_range->end_freq_khz <= freq_range->start_freq_khz || |
| 420 | freq_range->max_bandwidth_khz > freq_diff) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 421 | return false; |
| 422 | |
| 423 | return true; |
| 424 | } |
| 425 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 426 | static bool is_valid_rd(const struct ieee80211_regdomain *rd) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 427 | { |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 428 | const struct ieee80211_reg_rule *reg_rule = NULL; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 429 | unsigned int i; |
| 430 | |
| 431 | if (!rd->n_reg_rules) |
| 432 | return false; |
| 433 | |
Luis R. Rodriguez | 88dc1c3 | 2008-11-12 14:22:01 -0800 | [diff] [blame] | 434 | if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES)) |
| 435 | return false; |
| 436 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 437 | for (i = 0; i < rd->n_reg_rules; i++) { |
| 438 | reg_rule = &rd->reg_rules[i]; |
| 439 | if (!is_valid_reg_rule(reg_rule)) |
| 440 | return false; |
| 441 | } |
| 442 | |
| 443 | return true; |
| 444 | } |
| 445 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 446 | static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range, |
| 447 | u32 center_freq_khz, |
| 448 | u32 bw_khz) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 449 | { |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 450 | u32 start_freq_khz, end_freq_khz; |
| 451 | |
| 452 | start_freq_khz = center_freq_khz - (bw_khz/2); |
| 453 | end_freq_khz = center_freq_khz + (bw_khz/2); |
| 454 | |
| 455 | if (start_freq_khz >= freq_range->start_freq_khz && |
| 456 | end_freq_khz <= freq_range->end_freq_khz) |
| 457 | return true; |
| 458 | |
| 459 | return false; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 462 | /** |
| 463 | * freq_in_rule_band - tells us if a frequency is in a frequency band |
| 464 | * @freq_range: frequency rule we want to query |
| 465 | * @freq_khz: frequency we are inquiring about |
| 466 | * |
| 467 | * This lets us know if a specific frequency rule is or is not relevant to |
| 468 | * a specific frequency's band. Bands are device specific and artificial |
| 469 | * definitions (the "2.4 GHz band" and the "5 GHz band"), however it is |
| 470 | * safe for now to assume that a frequency rule should not be part of a |
| 471 | * frequency's band if the start freq or end freq are off by more than 2 GHz. |
| 472 | * This resolution can be lowered and should be considered as we add |
| 473 | * regulatory rule support for other "bands". |
| 474 | **/ |
| 475 | static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range, |
| 476 | u32 freq_khz) |
| 477 | { |
| 478 | #define ONE_GHZ_IN_KHZ 1000000 |
| 479 | if (abs(freq_khz - freq_range->start_freq_khz) <= (2 * ONE_GHZ_IN_KHZ)) |
| 480 | return true; |
| 481 | if (abs(freq_khz - freq_range->end_freq_khz) <= (2 * ONE_GHZ_IN_KHZ)) |
| 482 | return true; |
| 483 | return false; |
| 484 | #undef ONE_GHZ_IN_KHZ |
| 485 | } |
| 486 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 487 | /* |
Luis R. Rodriguez | cc5d8a3 | 2010-01-07 17:24:57 -0500 | [diff] [blame] | 488 | * Some APs may send a country IE triplet for each channel they |
| 489 | * support and while this is completely overkill and silly we still |
| 490 | * need to support it. We avoid making a single rule for each channel |
| 491 | * though and to help us with this we use this helper to find the |
| 492 | * actual subband end channel. These type of country IE triplet |
| 493 | * scenerios are handled then, all yielding two regulaotry rules from |
| 494 | * parsing a country IE: |
| 495 | * |
| 496 | * [1] |
| 497 | * [2] |
| 498 | * [36] |
| 499 | * [40] |
| 500 | * |
| 501 | * [1] |
| 502 | * [2-4] |
| 503 | * [5-12] |
| 504 | * [36] |
| 505 | * [40-44] |
| 506 | * |
| 507 | * [1-4] |
| 508 | * [5-7] |
| 509 | * [36-44] |
| 510 | * [48-64] |
| 511 | * |
| 512 | * [36-36] |
| 513 | * [40-40] |
| 514 | * [44-44] |
| 515 | * [48-48] |
| 516 | * [52-52] |
| 517 | * [56-56] |
| 518 | * [60-60] |
| 519 | * [64-64] |
| 520 | * [100-100] |
| 521 | * [104-104] |
| 522 | * [108-108] |
| 523 | * [112-112] |
| 524 | * [116-116] |
| 525 | * [120-120] |
| 526 | * [124-124] |
| 527 | * [128-128] |
| 528 | * [132-132] |
| 529 | * [136-136] |
| 530 | * [140-140] |
| 531 | * |
| 532 | * Returns 0 if the IE has been found to be invalid in the middle |
| 533 | * somewhere. |
| 534 | */ |
| 535 | static int max_subband_chan(int orig_cur_chan, |
| 536 | int orig_end_channel, |
| 537 | s8 orig_max_power, |
| 538 | u8 **country_ie, |
| 539 | u8 *country_ie_len) |
| 540 | { |
| 541 | u8 *triplets_start = *country_ie; |
| 542 | u8 len_at_triplet = *country_ie_len; |
| 543 | int end_subband_chan = orig_end_channel; |
| 544 | enum ieee80211_band band; |
| 545 | |
| 546 | /* |
| 547 | * We'll deal with padding for the caller unless |
| 548 | * its not immediate and we don't process any channels |
| 549 | */ |
| 550 | if (*country_ie_len == 1) { |
| 551 | *country_ie += 1; |
| 552 | *country_ie_len -= 1; |
| 553 | return orig_end_channel; |
| 554 | } |
| 555 | |
| 556 | /* Move to the next triplet and then start search */ |
| 557 | *country_ie += 3; |
| 558 | *country_ie_len -= 3; |
| 559 | |
| 560 | if (orig_cur_chan <= 14) |
| 561 | band = IEEE80211_BAND_2GHZ; |
| 562 | else |
| 563 | band = IEEE80211_BAND_5GHZ; |
| 564 | |
| 565 | while (*country_ie_len >= 3) { |
| 566 | int end_channel = 0; |
| 567 | struct ieee80211_country_ie_triplet *triplet = |
| 568 | (struct ieee80211_country_ie_triplet *) *country_ie; |
| 569 | int cur_channel = 0, next_expected_chan; |
| 570 | enum ieee80211_band next_band = IEEE80211_BAND_2GHZ; |
| 571 | |
| 572 | /* means last triplet is completely unrelated to this one */ |
| 573 | if (triplet->ext.reg_extension_id >= |
| 574 | IEEE80211_COUNTRY_EXTENSION_ID) { |
| 575 | *country_ie -= 3; |
| 576 | *country_ie_len += 3; |
| 577 | break; |
| 578 | } |
| 579 | |
| 580 | if (triplet->chans.first_channel == 0) { |
| 581 | *country_ie += 1; |
| 582 | *country_ie_len -= 1; |
| 583 | if (*country_ie_len != 0) |
| 584 | return 0; |
| 585 | break; |
| 586 | } |
| 587 | |
Luis R. Rodriguez | a0f2e0f | 2010-01-14 13:27:46 -0500 | [diff] [blame^] | 588 | if (triplet->chans.num_channels == 0) |
| 589 | return 0; |
| 590 | |
Luis R. Rodriguez | cc5d8a3 | 2010-01-07 17:24:57 -0500 | [diff] [blame] | 591 | /* Monitonically increasing channel order */ |
| 592 | if (triplet->chans.first_channel <= end_subband_chan) |
| 593 | return 0; |
| 594 | |
| 595 | /* 2 GHz */ |
| 596 | if (triplet->chans.first_channel <= 14) { |
| 597 | end_channel = triplet->chans.first_channel + |
| 598 | triplet->chans.num_channels - 1; |
| 599 | } |
| 600 | else { |
| 601 | end_channel = triplet->chans.first_channel + |
| 602 | (4 * (triplet->chans.num_channels - 1)); |
| 603 | next_band = IEEE80211_BAND_5GHZ; |
| 604 | } |
| 605 | |
| 606 | if (band != next_band) { |
| 607 | *country_ie -= 3; |
| 608 | *country_ie_len += 3; |
| 609 | break; |
| 610 | } |
| 611 | |
| 612 | if (orig_max_power != triplet->chans.max_power) { |
| 613 | *country_ie -= 3; |
| 614 | *country_ie_len += 3; |
| 615 | break; |
| 616 | } |
| 617 | |
| 618 | cur_channel = triplet->chans.first_channel; |
| 619 | |
| 620 | /* The key is finding the right next expected channel */ |
| 621 | if (band == IEEE80211_BAND_2GHZ) |
| 622 | next_expected_chan = end_subband_chan + 1; |
| 623 | else |
| 624 | next_expected_chan = end_subband_chan + 4; |
| 625 | |
| 626 | if (cur_channel != next_expected_chan) { |
| 627 | *country_ie -= 3; |
| 628 | *country_ie_len += 3; |
| 629 | break; |
| 630 | } |
| 631 | |
| 632 | end_subband_chan = end_channel; |
| 633 | |
| 634 | /* Move to the next one */ |
| 635 | *country_ie += 3; |
| 636 | *country_ie_len -= 3; |
| 637 | |
| 638 | /* |
| 639 | * Padding needs to be dealt with if we processed |
| 640 | * some channels. |
| 641 | */ |
| 642 | if (*country_ie_len == 1) { |
| 643 | *country_ie += 1; |
| 644 | *country_ie_len -= 1; |
| 645 | break; |
| 646 | } |
| 647 | |
| 648 | /* If seen, the IE is invalid */ |
| 649 | if (*country_ie_len == 2) |
| 650 | return 0; |
| 651 | } |
| 652 | |
| 653 | if (end_subband_chan == orig_end_channel) { |
| 654 | *country_ie = triplets_start; |
| 655 | *country_ie_len = len_at_triplet; |
| 656 | return orig_end_channel; |
| 657 | } |
| 658 | |
| 659 | return end_subband_chan; |
| 660 | } |
| 661 | |
| 662 | /* |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 663 | * Converts a country IE to a regulatory domain. A regulatory domain |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 664 | * structure has a lot of information which the IE doesn't yet have, |
| 665 | * so for the other values we use upper max values as we will intersect |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 666 | * with our userspace regulatory agent to get lower bounds. |
| 667 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 668 | static struct ieee80211_regdomain *country_ie_2_rd( |
| 669 | u8 *country_ie, |
| 670 | u8 country_ie_len, |
| 671 | u32 *checksum) |
| 672 | { |
| 673 | struct ieee80211_regdomain *rd = NULL; |
| 674 | unsigned int i = 0; |
| 675 | char alpha2[2]; |
| 676 | u32 flags = 0; |
| 677 | u32 num_rules = 0, size_of_regd = 0; |
| 678 | u8 *triplets_start = NULL; |
| 679 | u8 len_at_triplet = 0; |
| 680 | /* the last channel we have registered in a subband (triplet) */ |
| 681 | int last_sub_max_channel = 0; |
| 682 | |
| 683 | *checksum = 0xDEADBEEF; |
| 684 | |
| 685 | /* Country IE requirements */ |
| 686 | BUG_ON(country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN || |
| 687 | country_ie_len & 0x01); |
| 688 | |
| 689 | alpha2[0] = country_ie[0]; |
| 690 | alpha2[1] = country_ie[1]; |
| 691 | |
| 692 | /* |
| 693 | * Third octet can be: |
| 694 | * 'I' - Indoor |
| 695 | * 'O' - Outdoor |
| 696 | * |
| 697 | * anything else we assume is no restrictions |
| 698 | */ |
| 699 | if (country_ie[2] == 'I') |
| 700 | flags = NL80211_RRF_NO_OUTDOOR; |
| 701 | else if (country_ie[2] == 'O') |
| 702 | flags = NL80211_RRF_NO_INDOOR; |
| 703 | |
| 704 | country_ie += 3; |
| 705 | country_ie_len -= 3; |
| 706 | |
| 707 | triplets_start = country_ie; |
| 708 | len_at_triplet = country_ie_len; |
| 709 | |
| 710 | *checksum ^= ((flags ^ alpha2[0] ^ alpha2[1]) << 8); |
| 711 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 712 | /* |
| 713 | * We need to build a reg rule for each triplet, but first we must |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 714 | * calculate the number of reg rules we will need. We will need one |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 715 | * for each channel subband |
| 716 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 717 | while (country_ie_len >= 3) { |
Luis R. Rodriguez | 615aab4 | 2009-01-22 15:05:46 -0800 | [diff] [blame] | 718 | int end_channel = 0; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 719 | struct ieee80211_country_ie_triplet *triplet = |
| 720 | (struct ieee80211_country_ie_triplet *) country_ie; |
| 721 | int cur_sub_max_channel = 0, cur_channel = 0; |
| 722 | |
| 723 | if (triplet->ext.reg_extension_id >= |
| 724 | IEEE80211_COUNTRY_EXTENSION_ID) { |
| 725 | country_ie += 3; |
| 726 | country_ie_len -= 3; |
| 727 | continue; |
| 728 | } |
| 729 | |
Luis R. Rodriguez | cc5d8a3 | 2010-01-07 17:24:57 -0500 | [diff] [blame] | 730 | /* |
| 731 | * APs can add padding to make length divisible |
| 732 | * by two, required by the spec. |
| 733 | */ |
| 734 | if (triplet->chans.first_channel == 0) { |
| 735 | country_ie++; |
| 736 | country_ie_len--; |
| 737 | /* This is expected to be at the very end only */ |
| 738 | if (country_ie_len != 0) |
| 739 | return NULL; |
| 740 | break; |
| 741 | } |
| 742 | |
Luis R. Rodriguez | a0f2e0f | 2010-01-14 13:27:46 -0500 | [diff] [blame^] | 743 | if (triplet->chans.num_channels == 0) |
| 744 | return NULL; |
| 745 | |
Luis R. Rodriguez | 615aab4 | 2009-01-22 15:05:46 -0800 | [diff] [blame] | 746 | /* 2 GHz */ |
| 747 | if (triplet->chans.first_channel <= 14) |
| 748 | end_channel = triplet->chans.first_channel + |
Luis R. Rodriguez | e99c7cd | 2010-01-07 17:24:55 -0500 | [diff] [blame] | 749 | triplet->chans.num_channels - 1; |
Luis R. Rodriguez | 615aab4 | 2009-01-22 15:05:46 -0800 | [diff] [blame] | 750 | else |
| 751 | /* |
| 752 | * 5 GHz -- For example in country IEs if the first |
| 753 | * channel given is 36 and the number of channels is 4 |
| 754 | * then the individual channel numbers defined for the |
| 755 | * 5 GHz PHY by these parameters are: 36, 40, 44, and 48 |
| 756 | * and not 36, 37, 38, 39. |
| 757 | * |
| 758 | * See: http://tinyurl.com/11d-clarification |
| 759 | */ |
| 760 | end_channel = triplet->chans.first_channel + |
| 761 | (4 * (triplet->chans.num_channels - 1)); |
| 762 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 763 | cur_channel = triplet->chans.first_channel; |
Luis R. Rodriguez | cc5d8a3 | 2010-01-07 17:24:57 -0500 | [diff] [blame] | 764 | |
| 765 | /* |
| 766 | * Enhancement for APs that send a triplet for every channel |
| 767 | * or for whatever reason sends triplets with multiple channels |
| 768 | * separated when in fact they should be together. |
| 769 | */ |
| 770 | end_channel = max_subband_chan(cur_channel, |
| 771 | end_channel, |
| 772 | triplet->chans.max_power, |
| 773 | &country_ie, |
| 774 | &country_ie_len); |
| 775 | if (!end_channel) |
| 776 | return NULL; |
| 777 | |
Luis R. Rodriguez | 615aab4 | 2009-01-22 15:05:46 -0800 | [diff] [blame] | 778 | cur_sub_max_channel = end_channel; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 779 | |
| 780 | /* Basic sanity check */ |
| 781 | if (cur_sub_max_channel < cur_channel) |
| 782 | return NULL; |
| 783 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 784 | /* |
| 785 | * Do not allow overlapping channels. Also channels |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 786 | * passed in each subband must be monotonically |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 787 | * increasing |
| 788 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 789 | if (last_sub_max_channel) { |
| 790 | if (cur_channel <= last_sub_max_channel) |
| 791 | return NULL; |
| 792 | if (cur_sub_max_channel <= last_sub_max_channel) |
| 793 | return NULL; |
| 794 | } |
| 795 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 796 | /* |
| 797 | * When dot11RegulatoryClassesRequired is supported |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 798 | * we can throw ext triplets as part of this soup, |
| 799 | * for now we don't care when those change as we |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 800 | * don't support them |
| 801 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 802 | *checksum ^= ((cur_channel ^ cur_sub_max_channel) << 8) | |
| 803 | ((cur_sub_max_channel ^ cur_sub_max_channel) << 16) | |
| 804 | ((triplet->chans.max_power ^ cur_sub_max_channel) << 24); |
| 805 | |
| 806 | last_sub_max_channel = cur_sub_max_channel; |
| 807 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 808 | num_rules++; |
| 809 | |
Luis R. Rodriguez | cc5d8a3 | 2010-01-07 17:24:57 -0500 | [diff] [blame] | 810 | if (country_ie_len >= 3) { |
| 811 | country_ie += 3; |
| 812 | country_ie_len -= 3; |
| 813 | } |
| 814 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 815 | /* |
| 816 | * Note: this is not a IEEE requirement but |
| 817 | * simply a memory requirement |
| 818 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 819 | if (num_rules > NL80211_MAX_SUPP_REG_RULES) |
| 820 | return NULL; |
| 821 | } |
| 822 | |
| 823 | country_ie = triplets_start; |
| 824 | country_ie_len = len_at_triplet; |
| 825 | |
| 826 | size_of_regd = sizeof(struct ieee80211_regdomain) + |
| 827 | (num_rules * sizeof(struct ieee80211_reg_rule)); |
| 828 | |
| 829 | rd = kzalloc(size_of_regd, GFP_KERNEL); |
| 830 | if (!rd) |
| 831 | return NULL; |
| 832 | |
| 833 | rd->n_reg_rules = num_rules; |
| 834 | rd->alpha2[0] = alpha2[0]; |
| 835 | rd->alpha2[1] = alpha2[1]; |
| 836 | |
| 837 | /* This time around we fill in the rd */ |
| 838 | while (country_ie_len >= 3) { |
Luis R. Rodriguez | 02e68a3 | 2009-01-07 17:43:37 -0800 | [diff] [blame] | 839 | int end_channel = 0; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 840 | struct ieee80211_country_ie_triplet *triplet = |
| 841 | (struct ieee80211_country_ie_triplet *) country_ie; |
| 842 | struct ieee80211_reg_rule *reg_rule = NULL; |
| 843 | struct ieee80211_freq_range *freq_range = NULL; |
| 844 | struct ieee80211_power_rule *power_rule = NULL; |
| 845 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 846 | /* |
| 847 | * Must parse if dot11RegulatoryClassesRequired is true, |
| 848 | * we don't support this yet |
| 849 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 850 | if (triplet->ext.reg_extension_id >= |
| 851 | IEEE80211_COUNTRY_EXTENSION_ID) { |
| 852 | country_ie += 3; |
| 853 | country_ie_len -= 3; |
| 854 | continue; |
| 855 | } |
| 856 | |
Luis R. Rodriguez | cc5d8a3 | 2010-01-07 17:24:57 -0500 | [diff] [blame] | 857 | if (triplet->chans.first_channel == 0) { |
| 858 | country_ie++; |
| 859 | country_ie_len--; |
| 860 | break; |
| 861 | } |
| 862 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 863 | reg_rule = &rd->reg_rules[i]; |
| 864 | freq_range = ®_rule->freq_range; |
| 865 | power_rule = ®_rule->power_rule; |
| 866 | |
| 867 | reg_rule->flags = flags; |
| 868 | |
Luis R. Rodriguez | 02e68a3 | 2009-01-07 17:43:37 -0800 | [diff] [blame] | 869 | /* 2 GHz */ |
| 870 | if (triplet->chans.first_channel <= 14) |
| 871 | end_channel = triplet->chans.first_channel + |
Luis R. Rodriguez | e99c7cd | 2010-01-07 17:24:55 -0500 | [diff] [blame] | 872 | triplet->chans.num_channels -1; |
Luis R. Rodriguez | 02e68a3 | 2009-01-07 17:43:37 -0800 | [diff] [blame] | 873 | else |
Luis R. Rodriguez | 02e68a3 | 2009-01-07 17:43:37 -0800 | [diff] [blame] | 874 | end_channel = triplet->chans.first_channel + |
| 875 | (4 * (triplet->chans.num_channels - 1)); |
| 876 | |
Luis R. Rodriguez | cc5d8a3 | 2010-01-07 17:24:57 -0500 | [diff] [blame] | 877 | end_channel = max_subband_chan(triplet->chans.first_channel, |
| 878 | end_channel, |
| 879 | triplet->chans.max_power, |
| 880 | &country_ie, |
| 881 | &country_ie_len); |
| 882 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 883 | /* |
| 884 | * The +10 is since the regulatory domain expects |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 885 | * the actual band edge, not the center of freq for |
| 886 | * its start and end freqs, assuming 20 MHz bandwidth on |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 887 | * the channels passed |
| 888 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 889 | freq_range->start_freq_khz = |
| 890 | MHZ_TO_KHZ(ieee80211_channel_to_frequency( |
| 891 | triplet->chans.first_channel) - 10); |
| 892 | freq_range->end_freq_khz = |
| 893 | MHZ_TO_KHZ(ieee80211_channel_to_frequency( |
Luis R. Rodriguez | 02e68a3 | 2009-01-07 17:43:37 -0800 | [diff] [blame] | 894 | end_channel) + 10); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 895 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 896 | /* |
| 897 | * These are large arbitrary values we use to intersect later. |
| 898 | * Increment this if we ever support >= 40 MHz channels |
| 899 | * in IEEE 802.11 |
| 900 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 901 | freq_range->max_bandwidth_khz = MHZ_TO_KHZ(40); |
| 902 | power_rule->max_antenna_gain = DBI_TO_MBI(100); |
Luis R. Rodriguez | 08030db | 2010-01-07 17:24:56 -0500 | [diff] [blame] | 903 | power_rule->max_eirp = DBM_TO_MBM(triplet->chans.max_power); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 904 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 905 | i++; |
| 906 | |
Luis R. Rodriguez | cc5d8a3 | 2010-01-07 17:24:57 -0500 | [diff] [blame] | 907 | if (country_ie_len >= 3) { |
| 908 | country_ie += 3; |
| 909 | country_ie_len -= 3; |
| 910 | } |
| 911 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 912 | BUG_ON(i > NL80211_MAX_SUPP_REG_RULES); |
| 913 | } |
| 914 | |
| 915 | return rd; |
| 916 | } |
| 917 | |
| 918 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 919 | /* |
| 920 | * Helper for regdom_intersect(), this does the real |
| 921 | * mathematical intersection fun |
| 922 | */ |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 923 | static int reg_rules_intersect( |
| 924 | const struct ieee80211_reg_rule *rule1, |
| 925 | const struct ieee80211_reg_rule *rule2, |
| 926 | struct ieee80211_reg_rule *intersected_rule) |
| 927 | { |
| 928 | const struct ieee80211_freq_range *freq_range1, *freq_range2; |
| 929 | struct ieee80211_freq_range *freq_range; |
| 930 | const struct ieee80211_power_rule *power_rule1, *power_rule2; |
| 931 | struct ieee80211_power_rule *power_rule; |
| 932 | u32 freq_diff; |
| 933 | |
| 934 | freq_range1 = &rule1->freq_range; |
| 935 | freq_range2 = &rule2->freq_range; |
| 936 | freq_range = &intersected_rule->freq_range; |
| 937 | |
| 938 | power_rule1 = &rule1->power_rule; |
| 939 | power_rule2 = &rule2->power_rule; |
| 940 | power_rule = &intersected_rule->power_rule; |
| 941 | |
| 942 | freq_range->start_freq_khz = max(freq_range1->start_freq_khz, |
| 943 | freq_range2->start_freq_khz); |
| 944 | freq_range->end_freq_khz = min(freq_range1->end_freq_khz, |
| 945 | freq_range2->end_freq_khz); |
| 946 | freq_range->max_bandwidth_khz = min(freq_range1->max_bandwidth_khz, |
| 947 | freq_range2->max_bandwidth_khz); |
| 948 | |
| 949 | freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz; |
| 950 | if (freq_range->max_bandwidth_khz > freq_diff) |
| 951 | freq_range->max_bandwidth_khz = freq_diff; |
| 952 | |
| 953 | power_rule->max_eirp = min(power_rule1->max_eirp, |
| 954 | power_rule2->max_eirp); |
| 955 | power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain, |
| 956 | power_rule2->max_antenna_gain); |
| 957 | |
| 958 | intersected_rule->flags = (rule1->flags | rule2->flags); |
| 959 | |
| 960 | if (!is_valid_reg_rule(intersected_rule)) |
| 961 | return -EINVAL; |
| 962 | |
| 963 | return 0; |
| 964 | } |
| 965 | |
| 966 | /** |
| 967 | * regdom_intersect - do the intersection between two regulatory domains |
| 968 | * @rd1: first regulatory domain |
| 969 | * @rd2: second regulatory domain |
| 970 | * |
| 971 | * Use this function to get the intersection between two regulatory domains. |
| 972 | * Once completed we will mark the alpha2 for the rd as intersected, "98", |
| 973 | * as no one single alpha2 can represent this regulatory domain. |
| 974 | * |
| 975 | * Returns a pointer to the regulatory domain structure which will hold the |
| 976 | * resulting intersection of rules between rd1 and rd2. We will |
| 977 | * kzalloc() this structure for you. |
| 978 | */ |
| 979 | static struct ieee80211_regdomain *regdom_intersect( |
| 980 | const struct ieee80211_regdomain *rd1, |
| 981 | const struct ieee80211_regdomain *rd2) |
| 982 | { |
| 983 | int r, size_of_regd; |
| 984 | unsigned int x, y; |
| 985 | unsigned int num_rules = 0, rule_idx = 0; |
| 986 | const struct ieee80211_reg_rule *rule1, *rule2; |
| 987 | struct ieee80211_reg_rule *intersected_rule; |
| 988 | struct ieee80211_regdomain *rd; |
| 989 | /* This is just a dummy holder to help us count */ |
| 990 | struct ieee80211_reg_rule irule; |
| 991 | |
| 992 | /* Uses the stack temporarily for counter arithmetic */ |
| 993 | intersected_rule = &irule; |
| 994 | |
| 995 | memset(intersected_rule, 0, sizeof(struct ieee80211_reg_rule)); |
| 996 | |
| 997 | if (!rd1 || !rd2) |
| 998 | return NULL; |
| 999 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1000 | /* |
| 1001 | * First we get a count of the rules we'll need, then we actually |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1002 | * build them. This is to so we can malloc() and free() a |
| 1003 | * regdomain once. The reason we use reg_rules_intersect() here |
| 1004 | * is it will return -EINVAL if the rule computed makes no sense. |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1005 | * All rules that do check out OK are valid. |
| 1006 | */ |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1007 | |
| 1008 | for (x = 0; x < rd1->n_reg_rules; x++) { |
| 1009 | rule1 = &rd1->reg_rules[x]; |
| 1010 | for (y = 0; y < rd2->n_reg_rules; y++) { |
| 1011 | rule2 = &rd2->reg_rules[y]; |
| 1012 | if (!reg_rules_intersect(rule1, rule2, |
| 1013 | intersected_rule)) |
| 1014 | num_rules++; |
| 1015 | memset(intersected_rule, 0, |
| 1016 | sizeof(struct ieee80211_reg_rule)); |
| 1017 | } |
| 1018 | } |
| 1019 | |
| 1020 | if (!num_rules) |
| 1021 | return NULL; |
| 1022 | |
| 1023 | size_of_regd = sizeof(struct ieee80211_regdomain) + |
| 1024 | ((num_rules + 1) * sizeof(struct ieee80211_reg_rule)); |
| 1025 | |
| 1026 | rd = kzalloc(size_of_regd, GFP_KERNEL); |
| 1027 | if (!rd) |
| 1028 | return NULL; |
| 1029 | |
| 1030 | for (x = 0; x < rd1->n_reg_rules; x++) { |
| 1031 | rule1 = &rd1->reg_rules[x]; |
| 1032 | for (y = 0; y < rd2->n_reg_rules; y++) { |
| 1033 | rule2 = &rd2->reg_rules[y]; |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1034 | /* |
| 1035 | * This time around instead of using the stack lets |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1036 | * write to the target rule directly saving ourselves |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1037 | * a memcpy() |
| 1038 | */ |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1039 | intersected_rule = &rd->reg_rules[rule_idx]; |
| 1040 | r = reg_rules_intersect(rule1, rule2, |
| 1041 | intersected_rule); |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1042 | /* |
| 1043 | * No need to memset here the intersected rule here as |
| 1044 | * we're not using the stack anymore |
| 1045 | */ |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1046 | if (r) |
| 1047 | continue; |
| 1048 | rule_idx++; |
| 1049 | } |
| 1050 | } |
| 1051 | |
| 1052 | if (rule_idx != num_rules) { |
| 1053 | kfree(rd); |
| 1054 | return NULL; |
| 1055 | } |
| 1056 | |
| 1057 | rd->n_reg_rules = num_rules; |
| 1058 | rd->alpha2[0] = '9'; |
| 1059 | rd->alpha2[1] = '8'; |
| 1060 | |
| 1061 | return rd; |
| 1062 | } |
| 1063 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1064 | /* |
| 1065 | * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may |
| 1066 | * want to just have the channel structure use these |
| 1067 | */ |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1068 | static u32 map_regdom_flags(u32 rd_flags) |
| 1069 | { |
| 1070 | u32 channel_flags = 0; |
| 1071 | if (rd_flags & NL80211_RRF_PASSIVE_SCAN) |
| 1072 | channel_flags |= IEEE80211_CHAN_PASSIVE_SCAN; |
| 1073 | if (rd_flags & NL80211_RRF_NO_IBSS) |
| 1074 | channel_flags |= IEEE80211_CHAN_NO_IBSS; |
| 1075 | if (rd_flags & NL80211_RRF_DFS) |
| 1076 | channel_flags |= IEEE80211_CHAN_RADAR; |
| 1077 | return channel_flags; |
| 1078 | } |
| 1079 | |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1080 | static int freq_reg_info_regd(struct wiphy *wiphy, |
| 1081 | u32 center_freq, |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1082 | u32 desired_bw_khz, |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1083 | const struct ieee80211_reg_rule **reg_rule, |
| 1084 | const struct ieee80211_regdomain *custom_regd) |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1085 | { |
| 1086 | int i; |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1087 | bool band_rule_found = false; |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1088 | const struct ieee80211_regdomain *regd; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1089 | bool bw_fits = false; |
| 1090 | |
| 1091 | if (!desired_bw_khz) |
| 1092 | desired_bw_khz = MHZ_TO_KHZ(20); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1093 | |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1094 | regd = custom_regd ? custom_regd : cfg80211_regdomain; |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1095 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1096 | /* |
| 1097 | * Follow the driver's regulatory domain, if present, unless a country |
| 1098 | * IE has been processed or a user wants to help complaince further |
| 1099 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1100 | if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE && |
| 1101 | last_request->initiator != NL80211_REGDOM_SET_BY_USER && |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1102 | wiphy->regd) |
| 1103 | regd = wiphy->regd; |
| 1104 | |
| 1105 | if (!regd) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1106 | return -EINVAL; |
| 1107 | |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1108 | for (i = 0; i < regd->n_reg_rules; i++) { |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1109 | const struct ieee80211_reg_rule *rr; |
| 1110 | const struct ieee80211_freq_range *fr = NULL; |
| 1111 | const struct ieee80211_power_rule *pr = NULL; |
| 1112 | |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1113 | rr = ®d->reg_rules[i]; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1114 | fr = &rr->freq_range; |
| 1115 | pr = &rr->power_rule; |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1116 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1117 | /* |
| 1118 | * We only need to know if one frequency rule was |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1119 | * was in center_freq's band, that's enough, so lets |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1120 | * not overwrite it once found |
| 1121 | */ |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1122 | if (!band_rule_found) |
| 1123 | band_rule_found = freq_in_rule_band(fr, center_freq); |
| 1124 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1125 | bw_fits = reg_does_bw_fit(fr, |
| 1126 | center_freq, |
| 1127 | desired_bw_khz); |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1128 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1129 | if (band_rule_found && bw_fits) { |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1130 | *reg_rule = rr; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1131 | return 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1132 | } |
| 1133 | } |
| 1134 | |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1135 | if (!band_rule_found) |
| 1136 | return -ERANGE; |
| 1137 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1138 | return -EINVAL; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1139 | } |
Luis R. Rodriguez | 34f5734 | 2009-01-22 15:05:45 -0800 | [diff] [blame] | 1140 | EXPORT_SYMBOL(freq_reg_info); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1141 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1142 | int freq_reg_info(struct wiphy *wiphy, |
| 1143 | u32 center_freq, |
| 1144 | u32 desired_bw_khz, |
| 1145 | const struct ieee80211_reg_rule **reg_rule) |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1146 | { |
Luis R. Rodriguez | ac46d48 | 2009-05-01 18:44:50 -0400 | [diff] [blame] | 1147 | assert_cfg80211_lock(); |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1148 | return freq_reg_info_regd(wiphy, |
| 1149 | center_freq, |
| 1150 | desired_bw_khz, |
| 1151 | reg_rule, |
| 1152 | NULL); |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1153 | } |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1154 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1155 | /* |
| 1156 | * Note that right now we assume the desired channel bandwidth |
| 1157 | * is always 20 MHz for each individual channel (HT40 uses 20 MHz |
| 1158 | * per channel, the primary and the extension channel). To support |
| 1159 | * smaller custom bandwidths such as 5 MHz or 10 MHz we'll need a |
| 1160 | * new ieee80211_channel.target_bw and re run the regulatory check |
| 1161 | * on the wiphy with the target_bw specified. Then we can simply use |
| 1162 | * that below for the desired_bw_khz below. |
| 1163 | */ |
Luis R. Rodriguez | a92a3ce | 2009-01-07 17:43:33 -0800 | [diff] [blame] | 1164 | static void handle_channel(struct wiphy *wiphy, enum ieee80211_band band, |
| 1165 | unsigned int chan_idx) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1166 | { |
| 1167 | int r; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1168 | u32 flags, bw_flags = 0; |
| 1169 | u32 desired_bw_khz = MHZ_TO_KHZ(20); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1170 | const struct ieee80211_reg_rule *reg_rule = NULL; |
| 1171 | const struct ieee80211_power_rule *power_rule = NULL; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1172 | const struct ieee80211_freq_range *freq_range = NULL; |
Luis R. Rodriguez | a92a3ce | 2009-01-07 17:43:33 -0800 | [diff] [blame] | 1173 | struct ieee80211_supported_band *sband; |
| 1174 | struct ieee80211_channel *chan; |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1175 | struct wiphy *request_wiphy = NULL; |
Luis R. Rodriguez | a92a3ce | 2009-01-07 17:43:33 -0800 | [diff] [blame] | 1176 | |
Luis R. Rodriguez | 761cf7e | 2009-02-21 00:04:25 -0500 | [diff] [blame] | 1177 | assert_cfg80211_lock(); |
| 1178 | |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 1179 | request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); |
| 1180 | |
Luis R. Rodriguez | a92a3ce | 2009-01-07 17:43:33 -0800 | [diff] [blame] | 1181 | sband = wiphy->bands[band]; |
| 1182 | BUG_ON(chan_idx >= sband->n_channels); |
| 1183 | chan = &sband->channels[chan_idx]; |
| 1184 | |
| 1185 | flags = chan->orig_flags; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1186 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1187 | r = freq_reg_info(wiphy, |
| 1188 | MHZ_TO_KHZ(chan->center_freq), |
| 1189 | desired_bw_khz, |
| 1190 | ®_rule); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1191 | |
| 1192 | if (r) { |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1193 | /* |
| 1194 | * This means no regulatory rule was found in the country IE |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1195 | * with a frequency range on the center_freq's band, since |
| 1196 | * IEEE-802.11 allows for a country IE to have a subset of the |
| 1197 | * regulatory information provided in a country we ignore |
| 1198 | * disabling the channel unless at least one reg rule was |
| 1199 | * found on the center_freq's band. For details see this |
| 1200 | * clarification: |
| 1201 | * |
| 1202 | * http://tinyurl.com/11d-clarification |
| 1203 | */ |
| 1204 | if (r == -ERANGE && |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1205 | last_request->initiator == |
| 1206 | NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Luis R. Rodriguez | 4113f75 | 2010-01-04 11:50:11 -0500 | [diff] [blame] | 1207 | REG_DBG_PRINT("cfg80211: Leaving channel %d MHz " |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1208 | "intact on %s - no rule found in band on " |
| 1209 | "Country IE\n", |
Luis R. Rodriguez | 4113f75 | 2010-01-04 11:50:11 -0500 | [diff] [blame] | 1210 | chan->center_freq, wiphy_name(wiphy)); |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1211 | } else { |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1212 | /* |
| 1213 | * In this case we know the country IE has at least one reg rule |
| 1214 | * for the band so we respect its band definitions |
| 1215 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1216 | if (last_request->initiator == |
| 1217 | NL80211_REGDOM_SET_BY_COUNTRY_IE) |
Luis R. Rodriguez | 4113f75 | 2010-01-04 11:50:11 -0500 | [diff] [blame] | 1218 | REG_DBG_PRINT("cfg80211: Disabling " |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1219 | "channel %d MHz on %s due to " |
| 1220 | "Country IE\n", |
| 1221 | chan->center_freq, wiphy_name(wiphy)); |
Luis R. Rodriguez | 0c7dc45 | 2009-01-07 17:43:36 -0800 | [diff] [blame] | 1222 | flags |= IEEE80211_CHAN_DISABLED; |
| 1223 | chan->flags = flags; |
| 1224 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1225 | return; |
| 1226 | } |
| 1227 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1228 | power_rule = ®_rule->power_rule; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1229 | freq_range = ®_rule->freq_range; |
| 1230 | |
| 1231 | if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40)) |
| 1232 | bw_flags = IEEE80211_CHAN_NO_HT40; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1233 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1234 | if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER && |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 1235 | request_wiphy && request_wiphy == wiphy && |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 1236 | request_wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) { |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1237 | /* |
| 1238 | * This gaurantees the driver's requested regulatory domain |
Luis R. Rodriguez | f976376 | 2009-01-22 15:05:52 -0800 | [diff] [blame] | 1239 | * will always be used as a base for further regulatory |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1240 | * settings |
| 1241 | */ |
Luis R. Rodriguez | f976376 | 2009-01-22 15:05:52 -0800 | [diff] [blame] | 1242 | chan->flags = chan->orig_flags = |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1243 | map_regdom_flags(reg_rule->flags) | bw_flags; |
Luis R. Rodriguez | f976376 | 2009-01-22 15:05:52 -0800 | [diff] [blame] | 1244 | chan->max_antenna_gain = chan->orig_mag = |
| 1245 | (int) MBI_TO_DBI(power_rule->max_antenna_gain); |
Luis R. Rodriguez | f976376 | 2009-01-22 15:05:52 -0800 | [diff] [blame] | 1246 | chan->max_power = chan->orig_mpwr = |
| 1247 | (int) MBM_TO_DBM(power_rule->max_eirp); |
| 1248 | return; |
| 1249 | } |
| 1250 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1251 | chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1252 | chan->max_antenna_gain = min(chan->orig_mag, |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1253 | (int) MBI_TO_DBI(power_rule->max_antenna_gain)); |
John W. Linville | 253898c | 2008-04-03 15:32:54 -0400 | [diff] [blame] | 1254 | if (chan->orig_mpwr) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1255 | chan->max_power = min(chan->orig_mpwr, |
| 1256 | (int) MBM_TO_DBM(power_rule->max_eirp)); |
John W. Linville | 253898c | 2008-04-03 15:32:54 -0400 | [diff] [blame] | 1257 | else |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1258 | chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1259 | } |
| 1260 | |
Luis R. Rodriguez | a92a3ce | 2009-01-07 17:43:33 -0800 | [diff] [blame] | 1261 | static void handle_band(struct wiphy *wiphy, enum ieee80211_band band) |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1262 | { |
Luis R. Rodriguez | a92a3ce | 2009-01-07 17:43:33 -0800 | [diff] [blame] | 1263 | unsigned int i; |
| 1264 | struct ieee80211_supported_band *sband; |
| 1265 | |
| 1266 | BUG_ON(!wiphy->bands[band]); |
| 1267 | sband = wiphy->bands[band]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1268 | |
| 1269 | for (i = 0; i < sband->n_channels; i++) |
Luis R. Rodriguez | a92a3ce | 2009-01-07 17:43:33 -0800 | [diff] [blame] | 1270 | handle_channel(wiphy, band, i); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1271 | } |
| 1272 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1273 | static bool ignore_reg_update(struct wiphy *wiphy, |
| 1274 | enum nl80211_reg_initiator initiator) |
Luis R. Rodriguez | 14b9815 | 2008-11-12 14:22:03 -0800 | [diff] [blame] | 1275 | { |
| 1276 | if (!last_request) |
| 1277 | return true; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1278 | if (initiator == NL80211_REGDOM_SET_BY_CORE && |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 1279 | wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) |
Luis R. Rodriguez | 14b9815 | 2008-11-12 14:22:03 -0800 | [diff] [blame] | 1280 | return true; |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1281 | /* |
| 1282 | * wiphy->regd will be set once the device has its own |
| 1283 | * desired regulatory domain set |
| 1284 | */ |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 1285 | if (wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY && !wiphy->regd && |
Luis R. Rodriguez | f976376 | 2009-01-22 15:05:52 -0800 | [diff] [blame] | 1286 | !is_world_regdom(last_request->alpha2)) |
Luis R. Rodriguez | 14b9815 | 2008-11-12 14:22:03 -0800 | [diff] [blame] | 1287 | return true; |
| 1288 | return false; |
| 1289 | } |
| 1290 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1291 | static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1292 | { |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 1293 | struct cfg80211_registered_device *rdev; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1294 | |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 1295 | list_for_each_entry(rdev, &cfg80211_rdev_list, list) |
| 1296 | wiphy_update_regulatory(&rdev->wiphy, initiator); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1297 | } |
| 1298 | |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1299 | static void handle_reg_beacon(struct wiphy *wiphy, |
| 1300 | unsigned int chan_idx, |
| 1301 | struct reg_beacon *reg_beacon) |
| 1302 | { |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1303 | struct ieee80211_supported_band *sband; |
| 1304 | struct ieee80211_channel *chan; |
Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 1305 | bool channel_changed = false; |
| 1306 | struct ieee80211_channel chan_before; |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1307 | |
| 1308 | assert_cfg80211_lock(); |
| 1309 | |
| 1310 | sband = wiphy->bands[reg_beacon->chan.band]; |
| 1311 | chan = &sband->channels[chan_idx]; |
| 1312 | |
| 1313 | if (likely(chan->center_freq != reg_beacon->chan.center_freq)) |
| 1314 | return; |
| 1315 | |
Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 1316 | if (chan->beacon_found) |
| 1317 | return; |
| 1318 | |
| 1319 | chan->beacon_found = true; |
| 1320 | |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 1321 | if (wiphy->flags & WIPHY_FLAG_DISABLE_BEACON_HINTS) |
Luis R. Rodriguez | 3718424 | 2009-07-30 17:43:48 -0700 | [diff] [blame] | 1322 | return; |
| 1323 | |
Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 1324 | chan_before.center_freq = chan->center_freq; |
| 1325 | chan_before.flags = chan->flags; |
| 1326 | |
Luis R. Rodriguez | 3718424 | 2009-07-30 17:43:48 -0700 | [diff] [blame] | 1327 | if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) { |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1328 | chan->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; |
Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 1329 | channel_changed = true; |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1330 | } |
| 1331 | |
Luis R. Rodriguez | 3718424 | 2009-07-30 17:43:48 -0700 | [diff] [blame] | 1332 | if (chan->flags & IEEE80211_CHAN_NO_IBSS) { |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1333 | chan->flags &= ~IEEE80211_CHAN_NO_IBSS; |
Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 1334 | channel_changed = true; |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1335 | } |
| 1336 | |
Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 1337 | if (channel_changed) |
| 1338 | nl80211_send_beacon_hint_event(wiphy, &chan_before, chan); |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1339 | } |
| 1340 | |
| 1341 | /* |
| 1342 | * Called when a scan on a wiphy finds a beacon on |
| 1343 | * new channel |
| 1344 | */ |
| 1345 | static void wiphy_update_new_beacon(struct wiphy *wiphy, |
| 1346 | struct reg_beacon *reg_beacon) |
| 1347 | { |
| 1348 | unsigned int i; |
| 1349 | struct ieee80211_supported_band *sband; |
| 1350 | |
| 1351 | assert_cfg80211_lock(); |
| 1352 | |
| 1353 | if (!wiphy->bands[reg_beacon->chan.band]) |
| 1354 | return; |
| 1355 | |
| 1356 | sband = wiphy->bands[reg_beacon->chan.band]; |
| 1357 | |
| 1358 | for (i = 0; i < sband->n_channels; i++) |
| 1359 | handle_reg_beacon(wiphy, i, reg_beacon); |
| 1360 | } |
| 1361 | |
| 1362 | /* |
| 1363 | * Called upon reg changes or a new wiphy is added |
| 1364 | */ |
| 1365 | static void wiphy_update_beacon_reg(struct wiphy *wiphy) |
| 1366 | { |
| 1367 | unsigned int i; |
| 1368 | struct ieee80211_supported_band *sband; |
| 1369 | struct reg_beacon *reg_beacon; |
| 1370 | |
| 1371 | assert_cfg80211_lock(); |
| 1372 | |
| 1373 | if (list_empty(®_beacon_list)) |
| 1374 | return; |
| 1375 | |
| 1376 | list_for_each_entry(reg_beacon, ®_beacon_list, list) { |
| 1377 | if (!wiphy->bands[reg_beacon->chan.band]) |
| 1378 | continue; |
| 1379 | sband = wiphy->bands[reg_beacon->chan.band]; |
| 1380 | for (i = 0; i < sband->n_channels; i++) |
| 1381 | handle_reg_beacon(wiphy, i, reg_beacon); |
| 1382 | } |
| 1383 | } |
| 1384 | |
| 1385 | static bool reg_is_world_roaming(struct wiphy *wiphy) |
| 1386 | { |
| 1387 | if (is_world_regdom(cfg80211_regdomain->alpha2) || |
| 1388 | (wiphy->regd && is_world_regdom(wiphy->regd->alpha2))) |
| 1389 | return true; |
Luis R. Rodriguez | b1ed8dd | 2009-05-02 00:34:15 -0400 | [diff] [blame] | 1390 | if (last_request && |
| 1391 | last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE && |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 1392 | wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1393 | return true; |
| 1394 | return false; |
| 1395 | } |
| 1396 | |
| 1397 | /* Reap the advantages of previously found beacons */ |
| 1398 | static void reg_process_beacons(struct wiphy *wiphy) |
| 1399 | { |
Luis R. Rodriguez | b1ed8dd | 2009-05-02 00:34:15 -0400 | [diff] [blame] | 1400 | /* |
| 1401 | * Means we are just firing up cfg80211, so no beacons would |
| 1402 | * have been processed yet. |
| 1403 | */ |
| 1404 | if (!last_request) |
| 1405 | return; |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1406 | if (!reg_is_world_roaming(wiphy)) |
| 1407 | return; |
| 1408 | wiphy_update_beacon_reg(wiphy); |
| 1409 | } |
| 1410 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1411 | static bool is_ht40_not_allowed(struct ieee80211_channel *chan) |
| 1412 | { |
| 1413 | if (!chan) |
| 1414 | return true; |
| 1415 | if (chan->flags & IEEE80211_CHAN_DISABLED) |
| 1416 | return true; |
| 1417 | /* This would happen when regulatory rules disallow HT40 completely */ |
| 1418 | if (IEEE80211_CHAN_NO_HT40 == (chan->flags & (IEEE80211_CHAN_NO_HT40))) |
| 1419 | return true; |
| 1420 | return false; |
| 1421 | } |
| 1422 | |
| 1423 | static void reg_process_ht_flags_channel(struct wiphy *wiphy, |
| 1424 | enum ieee80211_band band, |
| 1425 | unsigned int chan_idx) |
| 1426 | { |
| 1427 | struct ieee80211_supported_band *sband; |
| 1428 | struct ieee80211_channel *channel; |
| 1429 | struct ieee80211_channel *channel_before = NULL, *channel_after = NULL; |
| 1430 | unsigned int i; |
| 1431 | |
| 1432 | assert_cfg80211_lock(); |
| 1433 | |
| 1434 | sband = wiphy->bands[band]; |
| 1435 | BUG_ON(chan_idx >= sband->n_channels); |
| 1436 | channel = &sband->channels[chan_idx]; |
| 1437 | |
| 1438 | if (is_ht40_not_allowed(channel)) { |
| 1439 | channel->flags |= IEEE80211_CHAN_NO_HT40; |
| 1440 | return; |
| 1441 | } |
| 1442 | |
| 1443 | /* |
| 1444 | * We need to ensure the extension channels exist to |
| 1445 | * be able to use HT40- or HT40+, this finds them (or not) |
| 1446 | */ |
| 1447 | for (i = 0; i < sband->n_channels; i++) { |
| 1448 | struct ieee80211_channel *c = &sband->channels[i]; |
| 1449 | if (c->center_freq == (channel->center_freq - 20)) |
| 1450 | channel_before = c; |
| 1451 | if (c->center_freq == (channel->center_freq + 20)) |
| 1452 | channel_after = c; |
| 1453 | } |
| 1454 | |
| 1455 | /* |
| 1456 | * Please note that this assumes target bandwidth is 20 MHz, |
| 1457 | * if that ever changes we also need to change the below logic |
| 1458 | * to include that as well. |
| 1459 | */ |
| 1460 | if (is_ht40_not_allowed(channel_before)) |
Luis R. Rodriguez | 689da1b | 2009-05-02 00:37:18 -0400 | [diff] [blame] | 1461 | channel->flags |= IEEE80211_CHAN_NO_HT40MINUS; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1462 | else |
Luis R. Rodriguez | 689da1b | 2009-05-02 00:37:18 -0400 | [diff] [blame] | 1463 | channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1464 | |
| 1465 | if (is_ht40_not_allowed(channel_after)) |
Luis R. Rodriguez | 689da1b | 2009-05-02 00:37:18 -0400 | [diff] [blame] | 1466 | channel->flags |= IEEE80211_CHAN_NO_HT40PLUS; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1467 | else |
Luis R. Rodriguez | 689da1b | 2009-05-02 00:37:18 -0400 | [diff] [blame] | 1468 | channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1469 | } |
| 1470 | |
| 1471 | static void reg_process_ht_flags_band(struct wiphy *wiphy, |
| 1472 | enum ieee80211_band band) |
| 1473 | { |
| 1474 | unsigned int i; |
| 1475 | struct ieee80211_supported_band *sband; |
| 1476 | |
| 1477 | BUG_ON(!wiphy->bands[band]); |
| 1478 | sband = wiphy->bands[band]; |
| 1479 | |
| 1480 | for (i = 0; i < sband->n_channels; i++) |
| 1481 | reg_process_ht_flags_channel(wiphy, band, i); |
| 1482 | } |
| 1483 | |
| 1484 | static void reg_process_ht_flags(struct wiphy *wiphy) |
| 1485 | { |
| 1486 | enum ieee80211_band band; |
| 1487 | |
| 1488 | if (!wiphy) |
| 1489 | return; |
| 1490 | |
| 1491 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
| 1492 | if (wiphy->bands[band]) |
| 1493 | reg_process_ht_flags_band(wiphy, band); |
| 1494 | } |
| 1495 | |
| 1496 | } |
| 1497 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1498 | void wiphy_update_regulatory(struct wiphy *wiphy, |
| 1499 | enum nl80211_reg_initiator initiator) |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1500 | { |
| 1501 | enum ieee80211_band band; |
Luis R. Rodriguez | d46e5b1 | 2009-01-22 15:05:50 -0800 | [diff] [blame] | 1502 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1503 | if (ignore_reg_update(wiphy, initiator)) |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1504 | goto out; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1505 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1506 | if (wiphy->bands[band]) |
Luis R. Rodriguez | a92a3ce | 2009-01-07 17:43:33 -0800 | [diff] [blame] | 1507 | handle_band(wiphy, band); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1508 | } |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1509 | out: |
| 1510 | reg_process_beacons(wiphy); |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1511 | reg_process_ht_flags(wiphy); |
Luis R. Rodriguez | 560e28e | 2009-01-07 17:43:32 -0800 | [diff] [blame] | 1512 | if (wiphy->reg_notifier) |
Luis R. Rodriguez | 716f939 | 2009-01-22 15:05:51 -0800 | [diff] [blame] | 1513 | wiphy->reg_notifier(wiphy, last_request); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1514 | } |
| 1515 | |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1516 | static void handle_channel_custom(struct wiphy *wiphy, |
| 1517 | enum ieee80211_band band, |
| 1518 | unsigned int chan_idx, |
| 1519 | const struct ieee80211_regdomain *regd) |
| 1520 | { |
| 1521 | int r; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1522 | u32 desired_bw_khz = MHZ_TO_KHZ(20); |
| 1523 | u32 bw_flags = 0; |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1524 | const struct ieee80211_reg_rule *reg_rule = NULL; |
| 1525 | const struct ieee80211_power_rule *power_rule = NULL; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1526 | const struct ieee80211_freq_range *freq_range = NULL; |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1527 | struct ieee80211_supported_band *sband; |
| 1528 | struct ieee80211_channel *chan; |
| 1529 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1530 | assert_reg_lock(); |
Luis R. Rodriguez | ac46d48 | 2009-05-01 18:44:50 -0400 | [diff] [blame] | 1531 | |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1532 | sband = wiphy->bands[band]; |
| 1533 | BUG_ON(chan_idx >= sband->n_channels); |
| 1534 | chan = &sband->channels[chan_idx]; |
| 1535 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1536 | r = freq_reg_info_regd(wiphy, |
| 1537 | MHZ_TO_KHZ(chan->center_freq), |
| 1538 | desired_bw_khz, |
| 1539 | ®_rule, |
| 1540 | regd); |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1541 | |
| 1542 | if (r) { |
| 1543 | chan->flags = IEEE80211_CHAN_DISABLED; |
| 1544 | return; |
| 1545 | } |
| 1546 | |
| 1547 | power_rule = ®_rule->power_rule; |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1548 | freq_range = ®_rule->freq_range; |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1549 | |
Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 1550 | if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40)) |
| 1551 | bw_flags = IEEE80211_CHAN_NO_HT40; |
| 1552 | |
| 1553 | chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags; |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1554 | chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain); |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1555 | chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp); |
| 1556 | } |
| 1557 | |
| 1558 | static void handle_band_custom(struct wiphy *wiphy, enum ieee80211_band band, |
| 1559 | const struct ieee80211_regdomain *regd) |
| 1560 | { |
| 1561 | unsigned int i; |
| 1562 | struct ieee80211_supported_band *sband; |
| 1563 | |
| 1564 | BUG_ON(!wiphy->bands[band]); |
| 1565 | sband = wiphy->bands[band]; |
| 1566 | |
| 1567 | for (i = 0; i < sband->n_channels; i++) |
| 1568 | handle_channel_custom(wiphy, band, i, regd); |
| 1569 | } |
| 1570 | |
| 1571 | /* Used by drivers prior to wiphy registration */ |
| 1572 | void wiphy_apply_custom_regulatory(struct wiphy *wiphy, |
| 1573 | const struct ieee80211_regdomain *regd) |
| 1574 | { |
| 1575 | enum ieee80211_band band; |
Luis R. Rodriguez | bbcf3f0 | 2009-05-19 17:49:47 -0400 | [diff] [blame] | 1576 | unsigned int bands_set = 0; |
Luis R. Rodriguez | ac46d48 | 2009-05-01 18:44:50 -0400 | [diff] [blame] | 1577 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1578 | mutex_lock(®_mutex); |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1579 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
Luis R. Rodriguez | bbcf3f0 | 2009-05-19 17:49:47 -0400 | [diff] [blame] | 1580 | if (!wiphy->bands[band]) |
| 1581 | continue; |
| 1582 | handle_band_custom(wiphy, band, regd); |
| 1583 | bands_set++; |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1584 | } |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1585 | mutex_unlock(®_mutex); |
Luis R. Rodriguez | bbcf3f0 | 2009-05-19 17:49:47 -0400 | [diff] [blame] | 1586 | |
| 1587 | /* |
| 1588 | * no point in calling this if it won't have any effect |
| 1589 | * on your device's supportd bands. |
| 1590 | */ |
| 1591 | WARN_ON(!bands_set); |
Luis R. Rodriguez | 1fa25e4 | 2009-01-22 15:05:44 -0800 | [diff] [blame] | 1592 | } |
| 1593 | EXPORT_SYMBOL(wiphy_apply_custom_regulatory); |
| 1594 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1595 | /* |
| 1596 | * Return value which can be used by ignore_request() to indicate |
| 1597 | * it has been determined we should intersect two regulatory domains |
| 1598 | */ |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1599 | #define REG_INTERSECT 1 |
| 1600 | |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1601 | /* This has the logic which determines when a new request |
| 1602 | * should be ignored. */ |
Luis R. Rodriguez | 2f92cd2 | 2009-02-21 00:24:16 -0500 | [diff] [blame] | 1603 | static int ignore_request(struct wiphy *wiphy, |
| 1604 | struct regulatory_request *pending_request) |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1605 | { |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 1606 | struct wiphy *last_wiphy = NULL; |
Luis R. Rodriguez | 761cf7e | 2009-02-21 00:04:25 -0500 | [diff] [blame] | 1607 | |
| 1608 | assert_cfg80211_lock(); |
| 1609 | |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1610 | /* All initial requests are respected */ |
| 1611 | if (!last_request) |
| 1612 | return 0; |
| 1613 | |
Luis R. Rodriguez | 2f92cd2 | 2009-02-21 00:24:16 -0500 | [diff] [blame] | 1614 | switch (pending_request->initiator) { |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1615 | case NL80211_REGDOM_SET_BY_CORE: |
Luis R. Rodriguez | ba25c14 | 2009-02-21 00:04:23 -0500 | [diff] [blame] | 1616 | return -EINVAL; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1617 | case NL80211_REGDOM_SET_BY_COUNTRY_IE: |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 1618 | |
| 1619 | last_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); |
| 1620 | |
Luis R. Rodriguez | 2f92cd2 | 2009-02-21 00:24:16 -0500 | [diff] [blame] | 1621 | if (unlikely(!is_an_alpha2(pending_request->alpha2))) |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1622 | return -EINVAL; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1623 | if (last_request->initiator == |
| 1624 | NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 1625 | if (last_wiphy != wiphy) { |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1626 | /* |
| 1627 | * Two cards with two APs claiming different |
Thadeu Lima de Souza Cascardo | 1fe90b0 | 2009-08-11 11:18:42 -0300 | [diff] [blame] | 1628 | * Country IE alpha2s. We could |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1629 | * intersect them, but that seems unlikely |
| 1630 | * to be correct. Reject second one for now. |
| 1631 | */ |
Luis R. Rodriguez | 2f92cd2 | 2009-02-21 00:24:16 -0500 | [diff] [blame] | 1632 | if (regdom_changes(pending_request->alpha2)) |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1633 | return -EOPNOTSUPP; |
| 1634 | return -EALREADY; |
| 1635 | } |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1636 | /* |
| 1637 | * Two consecutive Country IE hints on the same wiphy. |
| 1638 | * This should be picked up early by the driver/stack |
| 1639 | */ |
Luis R. Rodriguez | 2f92cd2 | 2009-02-21 00:24:16 -0500 | [diff] [blame] | 1640 | if (WARN_ON(regdom_changes(pending_request->alpha2))) |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1641 | return 0; |
| 1642 | return -EALREADY; |
| 1643 | } |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1644 | return REG_INTERSECT; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1645 | case NL80211_REGDOM_SET_BY_DRIVER: |
| 1646 | if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE) { |
Luis R. Rodriguez | 2f92cd2 | 2009-02-21 00:24:16 -0500 | [diff] [blame] | 1647 | if (regdom_changes(pending_request->alpha2)) |
Luis R. Rodriguez | e74b1e7 | 2009-01-22 15:05:48 -0800 | [diff] [blame] | 1648 | return 0; |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1649 | return -EALREADY; |
Luis R. Rodriguez | e74b1e7 | 2009-01-22 15:05:48 -0800 | [diff] [blame] | 1650 | } |
Luis R. Rodriguez | fff32c0 | 2009-02-21 00:04:32 -0500 | [diff] [blame] | 1651 | |
| 1652 | /* |
| 1653 | * This would happen if you unplug and plug your card |
| 1654 | * back in or if you add a new device for which the previously |
| 1655 | * loaded card also agrees on the regulatory domain. |
| 1656 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1657 | if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER && |
Luis R. Rodriguez | 2f92cd2 | 2009-02-21 00:24:16 -0500 | [diff] [blame] | 1658 | !regdom_changes(pending_request->alpha2)) |
Luis R. Rodriguez | fff32c0 | 2009-02-21 00:04:32 -0500 | [diff] [blame] | 1659 | return -EALREADY; |
| 1660 | |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1661 | return REG_INTERSECT; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1662 | case NL80211_REGDOM_SET_BY_USER: |
| 1663 | if (last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1664 | return REG_INTERSECT; |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1665 | /* |
| 1666 | * If the user knows better the user should set the regdom |
| 1667 | * to their country before the IE is picked up |
| 1668 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1669 | if (last_request->initiator == NL80211_REGDOM_SET_BY_USER && |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1670 | last_request->intersect) |
| 1671 | return -EOPNOTSUPP; |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1672 | /* |
| 1673 | * Process user requests only after previous user/driver/core |
| 1674 | * requests have been processed |
| 1675 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1676 | if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE || |
| 1677 | last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER || |
| 1678 | last_request->initiator == NL80211_REGDOM_SET_BY_USER) { |
Luis R. Rodriguez | 69b1572 | 2009-02-21 00:04:33 -0500 | [diff] [blame] | 1679 | if (regdom_changes(last_request->alpha2)) |
Luis R. Rodriguez | 5eebade | 2009-01-22 15:05:47 -0800 | [diff] [blame] | 1680 | return -EAGAIN; |
| 1681 | } |
| 1682 | |
John W. Linville | baeb66f | 2009-12-18 17:59:02 -0500 | [diff] [blame] | 1683 | if (!regdom_changes(pending_request->alpha2)) |
Luis R. Rodriguez | e74b1e7 | 2009-01-22 15:05:48 -0800 | [diff] [blame] | 1684 | return -EALREADY; |
| 1685 | |
Johannes Berg | 84fa4f4 | 2008-10-24 20:32:23 +0200 | [diff] [blame] | 1686 | return 0; |
| 1687 | } |
| 1688 | |
| 1689 | return -EINVAL; |
| 1690 | } |
| 1691 | |
Luis R. Rodriguez | d1c96a9 | 2009-02-21 00:24:13 -0500 | [diff] [blame] | 1692 | /** |
| 1693 | * __regulatory_hint - hint to the wireless core a regulatory domain |
| 1694 | * @wiphy: if the hint comes from country information from an AP, this |
| 1695 | * is required to be set to the wiphy that received the information |
Luis R. Rodriguez | 28da32d | 2009-02-21 00:24:14 -0500 | [diff] [blame] | 1696 | * @pending_request: the regulatory request currently being processed |
Luis R. Rodriguez | d1c96a9 | 2009-02-21 00:24:13 -0500 | [diff] [blame] | 1697 | * |
| 1698 | * The Wireless subsystem can use this function to hint to the wireless core |
Luis R. Rodriguez | 28da32d | 2009-02-21 00:24:14 -0500 | [diff] [blame] | 1699 | * what it believes should be the current regulatory domain. |
Luis R. Rodriguez | d1c96a9 | 2009-02-21 00:24:13 -0500 | [diff] [blame] | 1700 | * |
| 1701 | * Returns zero if all went fine, %-EALREADY if a regulatory domain had |
| 1702 | * already been set or other standard error codes. |
| 1703 | * |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1704 | * Caller must hold &cfg80211_mutex and ®_mutex |
Luis R. Rodriguez | d1c96a9 | 2009-02-21 00:24:13 -0500 | [diff] [blame] | 1705 | */ |
Luis R. Rodriguez | 28da32d | 2009-02-21 00:24:14 -0500 | [diff] [blame] | 1706 | static int __regulatory_hint(struct wiphy *wiphy, |
| 1707 | struct regulatory_request *pending_request) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1708 | { |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1709 | bool intersect = false; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1710 | int r = 0; |
| 1711 | |
Luis R. Rodriguez | 761cf7e | 2009-02-21 00:04:25 -0500 | [diff] [blame] | 1712 | assert_cfg80211_lock(); |
| 1713 | |
Luis R. Rodriguez | 2f92cd2 | 2009-02-21 00:24:16 -0500 | [diff] [blame] | 1714 | r = ignore_request(wiphy, pending_request); |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1715 | |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1716 | if (r == REG_INTERSECT) { |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1717 | if (pending_request->initiator == |
| 1718 | NL80211_REGDOM_SET_BY_DRIVER) { |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1719 | r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain); |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1720 | if (r) { |
| 1721 | kfree(pending_request); |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1722 | return r; |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1723 | } |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1724 | } |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 1725 | intersect = true; |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1726 | } else if (r) { |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1727 | /* |
| 1728 | * If the regulatory domain being requested by the |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1729 | * driver has already been set just copy it to the |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1730 | * wiphy |
| 1731 | */ |
Luis R. Rodriguez | 28da32d | 2009-02-21 00:24:14 -0500 | [diff] [blame] | 1732 | if (r == -EALREADY && |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1733 | pending_request->initiator == |
| 1734 | NL80211_REGDOM_SET_BY_DRIVER) { |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1735 | r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain); |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1736 | if (r) { |
| 1737 | kfree(pending_request); |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1738 | return r; |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1739 | } |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1740 | r = -EALREADY; |
| 1741 | goto new_request; |
| 1742 | } |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1743 | kfree(pending_request); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1744 | return r; |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1745 | } |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1746 | |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1747 | new_request: |
Luis R. Rodriguez | 5203cdb | 2008-11-12 14:21:56 -0800 | [diff] [blame] | 1748 | kfree(last_request); |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1749 | |
| 1750 | last_request = pending_request; |
| 1751 | last_request->intersect = intersect; |
| 1752 | |
| 1753 | pending_request = NULL; |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1754 | |
| 1755 | /* When r == REG_INTERSECT we do need to call CRDA */ |
Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 1756 | if (r < 0) { |
| 1757 | /* |
| 1758 | * Since CRDA will not be called in this case as we already |
| 1759 | * have applied the requested regulatory domain before we just |
| 1760 | * inform userspace we have processed the request |
| 1761 | */ |
| 1762 | if (r == -EALREADY) |
| 1763 | nl80211_send_reg_change_event(last_request); |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1764 | return r; |
Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 1765 | } |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 1766 | |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1767 | return call_crda(last_request->alpha2); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1768 | } |
| 1769 | |
Luis R. Rodriguez | 30a548c | 2009-05-02 01:17:27 -0400 | [diff] [blame] | 1770 | /* This processes *all* regulatory hints */ |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1771 | static void reg_process_hint(struct regulatory_request *reg_request) |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1772 | { |
| 1773 | int r = 0; |
| 1774 | struct wiphy *wiphy = NULL; |
| 1775 | |
| 1776 | BUG_ON(!reg_request->alpha2); |
| 1777 | |
| 1778 | mutex_lock(&cfg80211_mutex); |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1779 | mutex_lock(®_mutex); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1780 | |
| 1781 | if (wiphy_idx_valid(reg_request->wiphy_idx)) |
| 1782 | wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx); |
| 1783 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1784 | if (reg_request->initiator == NL80211_REGDOM_SET_BY_DRIVER && |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1785 | !wiphy) { |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1786 | kfree(reg_request); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1787 | goto out; |
| 1788 | } |
| 1789 | |
Luis R. Rodriguez | 28da32d | 2009-02-21 00:24:14 -0500 | [diff] [blame] | 1790 | r = __regulatory_hint(wiphy, reg_request); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1791 | /* This is required so that the orig_* parameters are saved */ |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 1792 | if (r == -EALREADY && wiphy && |
| 1793 | wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1794 | wiphy_update_regulatory(wiphy, reg_request->initiator); |
| 1795 | out: |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1796 | mutex_unlock(®_mutex); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1797 | mutex_unlock(&cfg80211_mutex); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1798 | } |
| 1799 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1800 | /* Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_* */ |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1801 | static void reg_process_pending_hints(void) |
| 1802 | { |
| 1803 | struct regulatory_request *reg_request; |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1804 | |
| 1805 | spin_lock(®_requests_lock); |
| 1806 | while (!list_empty(®_requests_list)) { |
| 1807 | reg_request = list_first_entry(®_requests_list, |
| 1808 | struct regulatory_request, |
| 1809 | list); |
| 1810 | list_del_init(®_request->list); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1811 | |
Luis R. Rodriguez | d951c1d | 2009-02-21 00:24:15 -0500 | [diff] [blame] | 1812 | spin_unlock(®_requests_lock); |
| 1813 | reg_process_hint(reg_request); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1814 | spin_lock(®_requests_lock); |
| 1815 | } |
| 1816 | spin_unlock(®_requests_lock); |
| 1817 | } |
| 1818 | |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1819 | /* Processes beacon hints -- this has nothing to do with country IEs */ |
| 1820 | static void reg_process_pending_beacon_hints(void) |
| 1821 | { |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 1822 | struct cfg80211_registered_device *rdev; |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1823 | struct reg_beacon *pending_beacon, *tmp; |
| 1824 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1825 | /* |
| 1826 | * No need to hold the reg_mutex here as we just touch wiphys |
| 1827 | * and do not read or access regulatory variables. |
| 1828 | */ |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1829 | mutex_lock(&cfg80211_mutex); |
| 1830 | |
| 1831 | /* This goes through the _pending_ beacon list */ |
| 1832 | spin_lock_bh(®_pending_beacons_lock); |
| 1833 | |
| 1834 | if (list_empty(®_pending_beacons)) { |
| 1835 | spin_unlock_bh(®_pending_beacons_lock); |
| 1836 | goto out; |
| 1837 | } |
| 1838 | |
| 1839 | list_for_each_entry_safe(pending_beacon, tmp, |
| 1840 | ®_pending_beacons, list) { |
| 1841 | |
| 1842 | list_del_init(&pending_beacon->list); |
| 1843 | |
| 1844 | /* Applies the beacon hint to current wiphys */ |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 1845 | list_for_each_entry(rdev, &cfg80211_rdev_list, list) |
| 1846 | wiphy_update_new_beacon(&rdev->wiphy, pending_beacon); |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1847 | |
| 1848 | /* Remembers the beacon hint for new wiphys or reg changes */ |
| 1849 | list_add_tail(&pending_beacon->list, ®_beacon_list); |
| 1850 | } |
| 1851 | |
| 1852 | spin_unlock_bh(®_pending_beacons_lock); |
| 1853 | out: |
| 1854 | mutex_unlock(&cfg80211_mutex); |
| 1855 | } |
| 1856 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1857 | static void reg_todo(struct work_struct *work) |
| 1858 | { |
| 1859 | reg_process_pending_hints(); |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 1860 | reg_process_pending_beacon_hints(); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1861 | } |
| 1862 | |
| 1863 | static DECLARE_WORK(reg_work, reg_todo); |
| 1864 | |
| 1865 | static void queue_regulatory_request(struct regulatory_request *request) |
| 1866 | { |
| 1867 | spin_lock(®_requests_lock); |
| 1868 | list_add_tail(&request->list, ®_requests_list); |
| 1869 | spin_unlock(®_requests_lock); |
| 1870 | |
| 1871 | schedule_work(®_work); |
| 1872 | } |
| 1873 | |
| 1874 | /* Core regulatory hint -- happens once during cfg80211_init() */ |
Luis R. Rodriguez | ba25c14 | 2009-02-21 00:04:23 -0500 | [diff] [blame] | 1875 | static int regulatory_hint_core(const char *alpha2) |
| 1876 | { |
| 1877 | struct regulatory_request *request; |
| 1878 | |
| 1879 | BUG_ON(last_request); |
| 1880 | |
| 1881 | request = kzalloc(sizeof(struct regulatory_request), |
| 1882 | GFP_KERNEL); |
| 1883 | if (!request) |
| 1884 | return -ENOMEM; |
| 1885 | |
| 1886 | request->alpha2[0] = alpha2[0]; |
| 1887 | request->alpha2[1] = alpha2[1]; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1888 | request->initiator = NL80211_REGDOM_SET_BY_CORE; |
Luis R. Rodriguez | ba25c14 | 2009-02-21 00:04:23 -0500 | [diff] [blame] | 1889 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1890 | queue_regulatory_request(request); |
Luis R. Rodriguez | ba25c14 | 2009-02-21 00:04:23 -0500 | [diff] [blame] | 1891 | |
Luis R. Rodriguez | 5078b2e | 2009-05-13 17:04:42 -0400 | [diff] [blame] | 1892 | /* |
| 1893 | * This ensures last_request is populated once modules |
| 1894 | * come swinging in and calling regulatory hints and |
| 1895 | * wiphy_apply_custom_regulatory(). |
| 1896 | */ |
| 1897 | flush_scheduled_work(); |
| 1898 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1899 | return 0; |
Luis R. Rodriguez | ba25c14 | 2009-02-21 00:04:23 -0500 | [diff] [blame] | 1900 | } |
| 1901 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1902 | /* User hints */ |
| 1903 | int regulatory_hint_user(const char *alpha2) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1904 | { |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1905 | struct regulatory_request *request; |
| 1906 | |
Johannes Berg | be3d481 | 2008-10-24 20:32:21 +0200 | [diff] [blame] | 1907 | BUG_ON(!alpha2); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1908 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1909 | request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL); |
| 1910 | if (!request) |
| 1911 | return -ENOMEM; |
| 1912 | |
| 1913 | request->wiphy_idx = WIPHY_IDX_STALE; |
| 1914 | request->alpha2[0] = alpha2[0]; |
| 1915 | request->alpha2[1] = alpha2[1]; |
Luis R. Rodriguez | e12822e | 2010-01-04 11:37:39 -0500 | [diff] [blame] | 1916 | request->initiator = NL80211_REGDOM_SET_BY_USER; |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1917 | |
| 1918 | queue_regulatory_request(request); |
| 1919 | |
| 1920 | return 0; |
| 1921 | } |
| 1922 | |
| 1923 | /* Driver hints */ |
| 1924 | int regulatory_hint(struct wiphy *wiphy, const char *alpha2) |
| 1925 | { |
| 1926 | struct regulatory_request *request; |
| 1927 | |
| 1928 | BUG_ON(!alpha2); |
| 1929 | BUG_ON(!wiphy); |
| 1930 | |
| 1931 | request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL); |
| 1932 | if (!request) |
| 1933 | return -ENOMEM; |
| 1934 | |
| 1935 | request->wiphy_idx = get_wiphy_idx(wiphy); |
| 1936 | |
| 1937 | /* Must have registered wiphy first */ |
| 1938 | BUG_ON(!wiphy_idx_valid(request->wiphy_idx)); |
| 1939 | |
| 1940 | request->alpha2[0] = alpha2[0]; |
| 1941 | request->alpha2[1] = alpha2[1]; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 1942 | request->initiator = NL80211_REGDOM_SET_BY_DRIVER; |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1943 | |
| 1944 | queue_regulatory_request(request); |
| 1945 | |
| 1946 | return 0; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1947 | } |
| 1948 | EXPORT_SYMBOL(regulatory_hint); |
| 1949 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1950 | /* Caller must hold reg_mutex */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1951 | static bool reg_same_country_ie_hint(struct wiphy *wiphy, |
| 1952 | u32 country_ie_checksum) |
| 1953 | { |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 1954 | struct wiphy *request_wiphy; |
| 1955 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1956 | assert_reg_lock(); |
Luis R. Rodriguez | 761cf7e | 2009-02-21 00:04:25 -0500 | [diff] [blame] | 1957 | |
Luis R. Rodriguez | cc0b6fe | 2009-03-20 23:53:05 -0400 | [diff] [blame] | 1958 | if (unlikely(last_request->initiator != |
| 1959 | NL80211_REGDOM_SET_BY_COUNTRY_IE)) |
| 1960 | return false; |
| 1961 | |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 1962 | request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); |
| 1963 | |
| 1964 | if (!request_wiphy) |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1965 | return false; |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 1966 | |
| 1967 | if (likely(request_wiphy != wiphy)) |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1968 | return !country_ie_integrity_changes(country_ie_checksum); |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1969 | /* |
| 1970 | * We should not have let these through at this point, they |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1971 | * should have been picked up earlier by the first alpha2 check |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 1972 | * on the device |
| 1973 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1974 | if (WARN_ON(!country_ie_integrity_changes(country_ie_checksum))) |
| 1975 | return true; |
| 1976 | return false; |
| 1977 | } |
| 1978 | |
Luis R. Rodriguez | 4b44c8b | 2009-07-30 17:38:07 -0700 | [diff] [blame] | 1979 | /* |
| 1980 | * We hold wdev_lock() here so we cannot hold cfg80211_mutex() and |
| 1981 | * therefore cannot iterate over the rdev list here. |
| 1982 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1983 | void regulatory_hint_11d(struct wiphy *wiphy, |
| 1984 | u8 *country_ie, |
| 1985 | u8 country_ie_len) |
| 1986 | { |
| 1987 | struct ieee80211_regdomain *rd = NULL; |
| 1988 | char alpha2[2]; |
| 1989 | u32 checksum = 0; |
| 1990 | enum environment_cap env = ENVIRON_ANY; |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 1991 | struct regulatory_request *request; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1992 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 1993 | mutex_lock(®_mutex); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1994 | |
Luis R. Rodriguez | 9828b01 | 2009-07-30 17:38:06 -0700 | [diff] [blame] | 1995 | if (unlikely(!last_request)) |
| 1996 | goto out; |
Luis R. Rodriguez | d335fe6 | 2009-02-21 00:04:27 -0500 | [diff] [blame] | 1997 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1998 | /* IE len must be evenly divisible by 2 */ |
| 1999 | if (country_ie_len & 0x01) |
| 2000 | goto out; |
| 2001 | |
| 2002 | if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN) |
| 2003 | goto out; |
| 2004 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2005 | /* |
| 2006 | * Pending country IE processing, this can happen after we |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2007 | * call CRDA and wait for a response if a beacon was received before |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2008 | * we were able to process the last regulatory_hint_11d() call |
| 2009 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2010 | if (country_ie_regdomain) |
| 2011 | goto out; |
| 2012 | |
| 2013 | alpha2[0] = country_ie[0]; |
| 2014 | alpha2[1] = country_ie[1]; |
| 2015 | |
| 2016 | if (country_ie[2] == 'I') |
| 2017 | env = ENVIRON_INDOOR; |
| 2018 | else if (country_ie[2] == 'O') |
| 2019 | env = ENVIRON_OUTDOOR; |
| 2020 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2021 | /* |
Luis R. Rodriguez | 8b19e6c | 2009-07-30 17:38:09 -0700 | [diff] [blame] | 2022 | * We will run this only upon a successful connection on cfg80211. |
Luis R. Rodriguez | 4b44c8b | 2009-07-30 17:38:07 -0700 | [diff] [blame] | 2023 | * We leave conflict resolution to the workqueue, where can hold |
| 2024 | * cfg80211_mutex. |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2025 | */ |
Luis R. Rodriguez | cc0b6fe | 2009-03-20 23:53:05 -0400 | [diff] [blame] | 2026 | if (likely(last_request->initiator == |
| 2027 | NL80211_REGDOM_SET_BY_COUNTRY_IE && |
Luis R. Rodriguez | 4b44c8b | 2009-07-30 17:38:07 -0700 | [diff] [blame] | 2028 | wiphy_idx_valid(last_request->wiphy_idx))) |
| 2029 | goto out; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2030 | |
| 2031 | rd = country_ie_2_rd(country_ie, country_ie_len, &checksum); |
Luis R. Rodriguez | b74d12e | 2010-01-07 17:24:54 -0500 | [diff] [blame] | 2032 | if (!rd) { |
| 2033 | REG_DBG_PRINT("cfg80211: Ignoring bogus country IE\n"); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2034 | goto out; |
Luis R. Rodriguez | b74d12e | 2010-01-07 17:24:54 -0500 | [diff] [blame] | 2035 | } |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2036 | |
Luis R. Rodriguez | 915278e | 2009-02-21 00:04:28 -0500 | [diff] [blame] | 2037 | /* |
| 2038 | * This will not happen right now but we leave it here for the |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2039 | * the future when we want to add suspend/resume support and having |
| 2040 | * the user move to another country after doing so, or having the user |
Luis R. Rodriguez | 915278e | 2009-02-21 00:04:28 -0500 | [diff] [blame] | 2041 | * move to another AP. Right now we just trust the first AP. |
| 2042 | * |
| 2043 | * If we hit this before we add this support we want to be informed of |
| 2044 | * it as it would indicate a mistake in the current design |
| 2045 | */ |
| 2046 | if (WARN_ON(reg_same_country_ie_hint(wiphy, checksum))) |
Luis R. Rodriguez | 0441d6f | 2009-02-21 00:04:29 -0500 | [diff] [blame] | 2047 | goto free_rd_out; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2048 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2049 | request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL); |
| 2050 | if (!request) |
| 2051 | goto free_rd_out; |
| 2052 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2053 | /* |
| 2054 | * We keep this around for when CRDA comes back with a response so |
| 2055 | * we can intersect with that |
| 2056 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2057 | country_ie_regdomain = rd; |
| 2058 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2059 | request->wiphy_idx = get_wiphy_idx(wiphy); |
| 2060 | request->alpha2[0] = rd->alpha2[0]; |
| 2061 | request->alpha2[1] = rd->alpha2[1]; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 2062 | request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE; |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2063 | request->country_ie_checksum = checksum; |
| 2064 | request->country_ie_env = env; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2065 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2066 | mutex_unlock(®_mutex); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2067 | |
| 2068 | queue_regulatory_request(request); |
| 2069 | |
| 2070 | return; |
Luis R. Rodriguez | 0441d6f | 2009-02-21 00:04:29 -0500 | [diff] [blame] | 2071 | |
| 2072 | free_rd_out: |
| 2073 | kfree(rd); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2074 | out: |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2075 | mutex_unlock(®_mutex); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2076 | } |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2077 | |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 2078 | static bool freq_is_chan_12_13_14(u16 freq) |
| 2079 | { |
| 2080 | if (freq == ieee80211_channel_to_frequency(12) || |
| 2081 | freq == ieee80211_channel_to_frequency(13) || |
| 2082 | freq == ieee80211_channel_to_frequency(14)) |
| 2083 | return true; |
| 2084 | return false; |
| 2085 | } |
| 2086 | |
| 2087 | int regulatory_hint_found_beacon(struct wiphy *wiphy, |
| 2088 | struct ieee80211_channel *beacon_chan, |
| 2089 | gfp_t gfp) |
| 2090 | { |
| 2091 | struct reg_beacon *reg_beacon; |
| 2092 | |
| 2093 | if (likely((beacon_chan->beacon_found || |
| 2094 | (beacon_chan->flags & IEEE80211_CHAN_RADAR) || |
| 2095 | (beacon_chan->band == IEEE80211_BAND_2GHZ && |
| 2096 | !freq_is_chan_12_13_14(beacon_chan->center_freq))))) |
| 2097 | return 0; |
| 2098 | |
| 2099 | reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp); |
| 2100 | if (!reg_beacon) |
| 2101 | return -ENOMEM; |
| 2102 | |
Luis R. Rodriguez | 4113f75 | 2010-01-04 11:50:11 -0500 | [diff] [blame] | 2103 | REG_DBG_PRINT("cfg80211: Found new beacon on " |
| 2104 | "frequency: %d MHz (Ch %d) on %s\n", |
| 2105 | beacon_chan->center_freq, |
| 2106 | ieee80211_frequency_to_channel(beacon_chan->center_freq), |
| 2107 | wiphy_name(wiphy)); |
| 2108 | |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 2109 | memcpy(®_beacon->chan, beacon_chan, |
| 2110 | sizeof(struct ieee80211_channel)); |
| 2111 | |
| 2112 | |
| 2113 | /* |
| 2114 | * Since we can be called from BH or and non-BH context |
| 2115 | * we must use spin_lock_bh() |
| 2116 | */ |
| 2117 | spin_lock_bh(®_pending_beacons_lock); |
| 2118 | list_add_tail(®_beacon->list, ®_pending_beacons); |
| 2119 | spin_unlock_bh(®_pending_beacons_lock); |
| 2120 | |
| 2121 | schedule_work(®_work); |
| 2122 | |
| 2123 | return 0; |
| 2124 | } |
| 2125 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 2126 | static void print_rd_rules(const struct ieee80211_regdomain *rd) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2127 | { |
| 2128 | unsigned int i; |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 2129 | const struct ieee80211_reg_rule *reg_rule = NULL; |
| 2130 | const struct ieee80211_freq_range *freq_range = NULL; |
| 2131 | const struct ieee80211_power_rule *power_rule = NULL; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2132 | |
Kalle Valo | 269ac5f | 2009-12-01 10:47:15 +0200 | [diff] [blame] | 2133 | printk(KERN_INFO " (start_freq - end_freq @ bandwidth), " |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2134 | "(max_antenna_gain, max_eirp)\n"); |
| 2135 | |
| 2136 | for (i = 0; i < rd->n_reg_rules; i++) { |
| 2137 | reg_rule = &rd->reg_rules[i]; |
| 2138 | freq_range = ®_rule->freq_range; |
| 2139 | power_rule = ®_rule->power_rule; |
| 2140 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2141 | /* |
| 2142 | * There may not be documentation for max antenna gain |
| 2143 | * in certain regions |
| 2144 | */ |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2145 | if (power_rule->max_antenna_gain) |
Kalle Valo | 269ac5f | 2009-12-01 10:47:15 +0200 | [diff] [blame] | 2146 | printk(KERN_INFO " (%d KHz - %d KHz @ %d KHz), " |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2147 | "(%d mBi, %d mBm)\n", |
| 2148 | freq_range->start_freq_khz, |
| 2149 | freq_range->end_freq_khz, |
| 2150 | freq_range->max_bandwidth_khz, |
| 2151 | power_rule->max_antenna_gain, |
| 2152 | power_rule->max_eirp); |
| 2153 | else |
Kalle Valo | 269ac5f | 2009-12-01 10:47:15 +0200 | [diff] [blame] | 2154 | printk(KERN_INFO " (%d KHz - %d KHz @ %d KHz), " |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2155 | "(N/A, %d mBm)\n", |
| 2156 | freq_range->start_freq_khz, |
| 2157 | freq_range->end_freq_khz, |
| 2158 | freq_range->max_bandwidth_khz, |
| 2159 | power_rule->max_eirp); |
| 2160 | } |
| 2161 | } |
| 2162 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 2163 | static void print_regdomain(const struct ieee80211_regdomain *rd) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2164 | { |
| 2165 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2166 | if (is_intersected_alpha2(rd->alpha2)) { |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2167 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 2168 | if (last_request->initiator == |
| 2169 | NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 2170 | struct cfg80211_registered_device *rdev; |
| 2171 | rdev = cfg80211_rdev_by_wiphy_idx( |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 2172 | last_request->wiphy_idx); |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 2173 | if (rdev) { |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2174 | printk(KERN_INFO "cfg80211: Current regulatory " |
| 2175 | "domain updated by AP to: %c%c\n", |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 2176 | rdev->country_ie_alpha2[0], |
| 2177 | rdev->country_ie_alpha2[1]); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2178 | } else |
| 2179 | printk(KERN_INFO "cfg80211: Current regulatory " |
| 2180 | "domain intersected: \n"); |
| 2181 | } else |
| 2182 | printk(KERN_INFO "cfg80211: Current regulatory " |
Luis R. Rodriguez | 039498c | 2009-01-07 17:43:35 -0800 | [diff] [blame] | 2183 | "domain intersected: \n"); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2184 | } else if (is_world_regdom(rd->alpha2)) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2185 | printk(KERN_INFO "cfg80211: World regulatory " |
| 2186 | "domain updated:\n"); |
| 2187 | else { |
| 2188 | if (is_unknown_alpha2(rd->alpha2)) |
| 2189 | printk(KERN_INFO "cfg80211: Regulatory domain " |
| 2190 | "changed to driver built-in settings " |
| 2191 | "(unknown country)\n"); |
| 2192 | else |
| 2193 | printk(KERN_INFO "cfg80211: Regulatory domain " |
| 2194 | "changed to country: %c%c\n", |
| 2195 | rd->alpha2[0], rd->alpha2[1]); |
| 2196 | } |
| 2197 | print_rd_rules(rd); |
| 2198 | } |
| 2199 | |
Johannes Berg | 2df7816 | 2008-10-28 16:49:41 +0100 | [diff] [blame] | 2200 | static void print_regdomain_info(const struct ieee80211_regdomain *rd) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2201 | { |
| 2202 | printk(KERN_INFO "cfg80211: Regulatory domain: %c%c\n", |
| 2203 | rd->alpha2[0], rd->alpha2[1]); |
| 2204 | print_rd_rules(rd); |
| 2205 | } |
| 2206 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2207 | #ifdef CONFIG_CFG80211_REG_DEBUG |
| 2208 | static void reg_country_ie_process_debug( |
| 2209 | const struct ieee80211_regdomain *rd, |
| 2210 | const struct ieee80211_regdomain *country_ie_regdomain, |
| 2211 | const struct ieee80211_regdomain *intersected_rd) |
| 2212 | { |
| 2213 | printk(KERN_DEBUG "cfg80211: Received country IE:\n"); |
| 2214 | print_regdomain_info(country_ie_regdomain); |
| 2215 | printk(KERN_DEBUG "cfg80211: CRDA thinks this should applied:\n"); |
| 2216 | print_regdomain_info(rd); |
| 2217 | if (intersected_rd) { |
| 2218 | printk(KERN_DEBUG "cfg80211: We intersect both of these " |
| 2219 | "and get:\n"); |
Luis R. Rodriguez | 667ecd0 | 2009-01-22 15:05:43 -0800 | [diff] [blame] | 2220 | print_regdomain_info(intersected_rd); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2221 | return; |
| 2222 | } |
| 2223 | printk(KERN_DEBUG "cfg80211: Intersection between both failed\n"); |
| 2224 | } |
| 2225 | #else |
| 2226 | static inline void reg_country_ie_process_debug( |
| 2227 | const struct ieee80211_regdomain *rd, |
| 2228 | const struct ieee80211_regdomain *country_ie_regdomain, |
| 2229 | const struct ieee80211_regdomain *intersected_rd) |
| 2230 | { |
| 2231 | } |
| 2232 | #endif |
| 2233 | |
Johannes Berg | d2372b3 | 2008-10-24 20:32:20 +0200 | [diff] [blame] | 2234 | /* Takes ownership of rd only if it doesn't fail */ |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 2235 | static int __set_regdom(const struct ieee80211_regdomain *rd) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2236 | { |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 2237 | const struct ieee80211_regdomain *intersected_rd = NULL; |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 2238 | struct cfg80211_registered_device *rdev = NULL; |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 2239 | struct wiphy *request_wiphy; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2240 | /* Some basic sanity checks first */ |
| 2241 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2242 | if (is_world_regdom(rd->alpha2)) { |
Johannes Berg | f6037d0 | 2008-10-21 11:01:33 +0200 | [diff] [blame] | 2243 | if (WARN_ON(!reg_is_valid_request(rd->alpha2))) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2244 | return -EINVAL; |
| 2245 | update_world_regdomain(rd); |
| 2246 | return 0; |
| 2247 | } |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2248 | |
| 2249 | if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) && |
| 2250 | !is_unknown_alpha2(rd->alpha2)) |
| 2251 | return -EINVAL; |
| 2252 | |
Johannes Berg | f6037d0 | 2008-10-21 11:01:33 +0200 | [diff] [blame] | 2253 | if (!last_request) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2254 | return -EINVAL; |
| 2255 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2256 | /* |
| 2257 | * Lets only bother proceeding on the same alpha2 if the current |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2258 | * rd is non static (it means CRDA was present and was used last) |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2259 | * and the pending request came in from a country IE |
| 2260 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 2261 | if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2262 | /* |
| 2263 | * If someone else asked us to change the rd lets only bother |
| 2264 | * checking if the alpha2 changes if CRDA was already called |
| 2265 | */ |
John W. Linville | baeb66f | 2009-12-18 17:59:02 -0500 | [diff] [blame] | 2266 | if (!regdom_changes(rd->alpha2)) |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2267 | return -EINVAL; |
| 2268 | } |
| 2269 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2270 | /* |
| 2271 | * Now lets set the regulatory domain, update all driver channels |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2272 | * and finally inform them of what we have done, in case they want |
| 2273 | * to review or adjust their own settings based on their own |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2274 | * internal EEPROM data |
| 2275 | */ |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2276 | |
Johannes Berg | f6037d0 | 2008-10-21 11:01:33 +0200 | [diff] [blame] | 2277 | if (WARN_ON(!reg_is_valid_request(rd->alpha2))) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2278 | return -EINVAL; |
| 2279 | |
Luis R. Rodriguez | 8375af3 | 2008-11-12 14:21:57 -0800 | [diff] [blame] | 2280 | if (!is_valid_rd(rd)) { |
| 2281 | printk(KERN_ERR "cfg80211: Invalid " |
| 2282 | "regulatory domain detected:\n"); |
| 2283 | print_regdomain_info(rd); |
| 2284 | return -EINVAL; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2285 | } |
| 2286 | |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 2287 | request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); |
| 2288 | |
Luis R. Rodriguez | b8295ac | 2008-11-12 14:21:58 -0800 | [diff] [blame] | 2289 | if (!last_request->intersect) { |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 2290 | int r; |
| 2291 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 2292 | if (last_request->initiator != NL80211_REGDOM_SET_BY_DRIVER) { |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 2293 | reset_regdomains(); |
| 2294 | cfg80211_regdomain = rd; |
| 2295 | return 0; |
| 2296 | } |
| 2297 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2298 | /* |
| 2299 | * For a driver hint, lets copy the regulatory domain the |
| 2300 | * driver wanted to the wiphy to deal with conflicts |
| 2301 | */ |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 2302 | |
Luis R. Rodriguez | 558f6d3 | 2009-06-08 18:54:37 -0700 | [diff] [blame] | 2303 | /* |
| 2304 | * Userspace could have sent two replies with only |
| 2305 | * one kernel request. |
| 2306 | */ |
| 2307 | if (request_wiphy->regd) |
| 2308 | return -EALREADY; |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 2309 | |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 2310 | r = reg_copy_regd(&request_wiphy->regd, rd); |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 2311 | if (r) |
| 2312 | return r; |
| 2313 | |
Luis R. Rodriguez | b8295ac | 2008-11-12 14:21:58 -0800 | [diff] [blame] | 2314 | reset_regdomains(); |
| 2315 | cfg80211_regdomain = rd; |
| 2316 | return 0; |
| 2317 | } |
| 2318 | |
| 2319 | /* Intersection requires a bit more work */ |
| 2320 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 2321 | if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Luis R. Rodriguez | b8295ac | 2008-11-12 14:21:58 -0800 | [diff] [blame] | 2322 | |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 2323 | intersected_rd = regdom_intersect(rd, cfg80211_regdomain); |
| 2324 | if (!intersected_rd) |
| 2325 | return -EINVAL; |
Luis R. Rodriguez | b8295ac | 2008-11-12 14:21:58 -0800 | [diff] [blame] | 2326 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2327 | /* |
| 2328 | * We can trash what CRDA provided now. |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 2329 | * However if a driver requested this specific regulatory |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2330 | * domain we keep it for its private use |
| 2331 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 2332 | if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER) |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 2333 | request_wiphy->regd = rd; |
Luis R. Rodriguez | 3e0c3ff | 2009-01-07 17:43:34 -0800 | [diff] [blame] | 2334 | else |
| 2335 | kfree(rd); |
| 2336 | |
Luis R. Rodriguez | b8295ac | 2008-11-12 14:21:58 -0800 | [diff] [blame] | 2337 | rd = NULL; |
| 2338 | |
| 2339 | reset_regdomains(); |
| 2340 | cfg80211_regdomain = intersected_rd; |
| 2341 | |
| 2342 | return 0; |
Luis R. Rodriguez | 9c96477 | 2008-10-30 13:33:53 -0700 | [diff] [blame] | 2343 | } |
| 2344 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2345 | /* |
| 2346 | * Country IE requests are handled a bit differently, we intersect |
| 2347 | * the country IE rd with what CRDA believes that country should have |
| 2348 | */ |
| 2349 | |
Luis R. Rodriguez | 729e9c7 | 2009-05-31 18:24:34 -0400 | [diff] [blame] | 2350 | /* |
| 2351 | * Userspace could have sent two replies with only |
| 2352 | * one kernel request. By the second reply we would have |
| 2353 | * already processed and consumed the country_ie_regdomain. |
| 2354 | */ |
| 2355 | if (!country_ie_regdomain) |
| 2356 | return -EALREADY; |
Luis R. Rodriguez | 86f0468 | 2009-03-20 23:53:07 -0400 | [diff] [blame] | 2357 | BUG_ON(rd == country_ie_regdomain); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2358 | |
Luis R. Rodriguez | 86f0468 | 2009-03-20 23:53:07 -0400 | [diff] [blame] | 2359 | /* |
| 2360 | * Intersect what CRDA returned and our what we |
| 2361 | * had built from the Country IE received |
| 2362 | */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2363 | |
Luis R. Rodriguez | 86f0468 | 2009-03-20 23:53:07 -0400 | [diff] [blame] | 2364 | intersected_rd = regdom_intersect(rd, country_ie_regdomain); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2365 | |
Luis R. Rodriguez | 86f0468 | 2009-03-20 23:53:07 -0400 | [diff] [blame] | 2366 | reg_country_ie_process_debug(rd, |
| 2367 | country_ie_regdomain, |
| 2368 | intersected_rd); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2369 | |
Luis R. Rodriguez | 86f0468 | 2009-03-20 23:53:07 -0400 | [diff] [blame] | 2370 | kfree(country_ie_regdomain); |
| 2371 | country_ie_regdomain = NULL; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2372 | |
| 2373 | if (!intersected_rd) |
| 2374 | return -EINVAL; |
| 2375 | |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 2376 | rdev = wiphy_to_dev(request_wiphy); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2377 | |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 2378 | rdev->country_ie_alpha2[0] = rd->alpha2[0]; |
| 2379 | rdev->country_ie_alpha2[1] = rd->alpha2[1]; |
| 2380 | rdev->env = last_request->country_ie_env; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2381 | |
| 2382 | BUG_ON(intersected_rd == rd); |
| 2383 | |
| 2384 | kfree(rd); |
| 2385 | rd = NULL; |
| 2386 | |
Luis R. Rodriguez | b8295ac | 2008-11-12 14:21:58 -0800 | [diff] [blame] | 2387 | reset_regdomains(); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2388 | cfg80211_regdomain = intersected_rd; |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2389 | |
| 2390 | return 0; |
| 2391 | } |
| 2392 | |
| 2393 | |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2394 | /* |
| 2395 | * Use this call to set the current regulatory domain. Conflicts with |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2396 | * multiple drivers can be ironed out later. Caller must've already |
Luis R. Rodriguez | fb1fc7a | 2009-02-21 00:04:31 -0500 | [diff] [blame] | 2397 | * kmalloc'd the rd structure. Caller must hold cfg80211_mutex |
| 2398 | */ |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 2399 | int set_regdom(const struct ieee80211_regdomain *rd) |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2400 | { |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2401 | int r; |
| 2402 | |
Luis R. Rodriguez | 761cf7e | 2009-02-21 00:04:25 -0500 | [diff] [blame] | 2403 | assert_cfg80211_lock(); |
| 2404 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2405 | mutex_lock(®_mutex); |
| 2406 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2407 | /* Note that this doesn't update the wiphys, this is done below */ |
| 2408 | r = __set_regdom(rd); |
Johannes Berg | d2372b3 | 2008-10-24 20:32:20 +0200 | [diff] [blame] | 2409 | if (r) { |
| 2410 | kfree(rd); |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2411 | mutex_unlock(®_mutex); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2412 | return r; |
Johannes Berg | d2372b3 | 2008-10-24 20:32:20 +0200 | [diff] [blame] | 2413 | } |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2414 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2415 | /* This would make this whole thing pointless */ |
Luis R. Rodriguez | a01ddaf | 2008-11-12 14:21:59 -0800 | [diff] [blame] | 2416 | if (!last_request->intersect) |
| 2417 | BUG_ON(rd != cfg80211_regdomain); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2418 | |
| 2419 | /* update all wiphys now with the new established regulatory domain */ |
Johannes Berg | f6037d0 | 2008-10-21 11:01:33 +0200 | [diff] [blame] | 2420 | update_all_wiphy_regulatory(last_request->initiator); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2421 | |
Luis R. Rodriguez | a01ddaf | 2008-11-12 14:21:59 -0800 | [diff] [blame] | 2422 | print_regdomain(cfg80211_regdomain); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2423 | |
Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 2424 | nl80211_send_reg_change_event(last_request); |
| 2425 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2426 | mutex_unlock(®_mutex); |
| 2427 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2428 | return r; |
| 2429 | } |
| 2430 | |
Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 2431 | /* Caller must hold cfg80211_mutex */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2432 | void reg_device_remove(struct wiphy *wiphy) |
| 2433 | { |
Luis R. Rodriguez | 0ad8aca | 2009-03-24 21:21:08 -0400 | [diff] [blame] | 2434 | struct wiphy *request_wiphy = NULL; |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 2435 | |
Luis R. Rodriguez | 761cf7e | 2009-02-21 00:04:25 -0500 | [diff] [blame] | 2436 | assert_cfg80211_lock(); |
| 2437 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2438 | mutex_lock(®_mutex); |
| 2439 | |
Chris Wright | 0ef9ccd | 2009-04-24 14:09:31 -0700 | [diff] [blame] | 2440 | kfree(wiphy->regd); |
| 2441 | |
Luis R. Rodriguez | 0ad8aca | 2009-03-24 21:21:08 -0400 | [diff] [blame] | 2442 | if (last_request) |
| 2443 | request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 2444 | |
Chris Wright | 0ef9ccd | 2009-04-24 14:09:31 -0700 | [diff] [blame] | 2445 | if (!request_wiphy || request_wiphy != wiphy) |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2446 | goto out; |
Chris Wright | 0ef9ccd | 2009-04-24 14:09:31 -0700 | [diff] [blame] | 2447 | |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 2448 | last_request->wiphy_idx = WIPHY_IDX_STALE; |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2449 | last_request->country_ie_env = ENVIRON_ANY; |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2450 | out: |
| 2451 | mutex_unlock(®_mutex); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2452 | } |
| 2453 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2454 | int regulatory_init(void) |
| 2455 | { |
Luis R. Rodriguez | bcf4f99 | 2009-02-21 00:04:24 -0500 | [diff] [blame] | 2456 | int err = 0; |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 2457 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2458 | reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0); |
| 2459 | if (IS_ERR(reg_pdev)) |
| 2460 | return PTR_ERR(reg_pdev); |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 2461 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2462 | spin_lock_init(®_requests_lock); |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 2463 | spin_lock_init(®_pending_beacons_lock); |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2464 | |
Johannes Berg | a3d2eaf | 2008-09-15 11:10:52 +0200 | [diff] [blame] | 2465 | cfg80211_regdomain = cfg80211_world_regdom; |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 2466 | |
Luis R. Rodriguez | ae9e4b0 | 2009-07-14 20:23:15 -0400 | [diff] [blame] | 2467 | /* We always try to get an update for the static regdomain */ |
| 2468 | err = regulatory_hint_core(cfg80211_regdomain->alpha2); |
Luis R. Rodriguez | bcf4f99 | 2009-02-21 00:04:24 -0500 | [diff] [blame] | 2469 | if (err) { |
| 2470 | if (err == -ENOMEM) |
| 2471 | return err; |
| 2472 | /* |
| 2473 | * N.B. kobject_uevent_env() can fail mainly for when we're out |
| 2474 | * memory which is handled and propagated appropriately above |
| 2475 | * but it can also fail during a netlink_broadcast() or during |
| 2476 | * early boot for call_usermodehelper(). For now treat these |
| 2477 | * errors as non-fatal. |
| 2478 | */ |
| 2479 | printk(KERN_ERR "cfg80211: kobject_uevent_env() was unable " |
| 2480 | "to call CRDA during init"); |
| 2481 | #ifdef CONFIG_CFG80211_REG_DEBUG |
| 2482 | /* We want to find out exactly why when debugging */ |
| 2483 | WARN_ON(err); |
| 2484 | #endif |
| 2485 | } |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 2486 | |
Luis R. Rodriguez | ae9e4b0 | 2009-07-14 20:23:15 -0400 | [diff] [blame] | 2487 | /* |
| 2488 | * Finally, if the user set the module parameter treat it |
| 2489 | * as a user hint. |
| 2490 | */ |
| 2491 | if (!is_world_regdom(ieee80211_regdom)) |
| 2492 | regulatory_hint_user(ieee80211_regdom); |
| 2493 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2494 | return 0; |
| 2495 | } |
| 2496 | |
| 2497 | void regulatory_exit(void) |
| 2498 | { |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2499 | struct regulatory_request *reg_request, *tmp; |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 2500 | struct reg_beacon *reg_beacon, *btmp; |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2501 | |
| 2502 | cancel_work_sync(®_work); |
| 2503 | |
Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 2504 | mutex_lock(&cfg80211_mutex); |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2505 | mutex_lock(®_mutex); |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 2506 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2507 | reset_regdomains(); |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 2508 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 2509 | kfree(country_ie_regdomain); |
| 2510 | country_ie_regdomain = NULL; |
| 2511 | |
Johannes Berg | f6037d0 | 2008-10-21 11:01:33 +0200 | [diff] [blame] | 2512 | kfree(last_request); |
| 2513 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2514 | platform_device_unregister(reg_pdev); |
Johannes Berg | 734366d | 2008-09-15 10:56:48 +0200 | [diff] [blame] | 2515 | |
Luis R. Rodriguez | e38f8a7 | 2009-02-21 00:20:39 -0500 | [diff] [blame] | 2516 | spin_lock_bh(®_pending_beacons_lock); |
| 2517 | if (!list_empty(®_pending_beacons)) { |
| 2518 | list_for_each_entry_safe(reg_beacon, btmp, |
| 2519 | ®_pending_beacons, list) { |
| 2520 | list_del(®_beacon->list); |
| 2521 | kfree(reg_beacon); |
| 2522 | } |
| 2523 | } |
| 2524 | spin_unlock_bh(®_pending_beacons_lock); |
| 2525 | |
| 2526 | if (!list_empty(®_beacon_list)) { |
| 2527 | list_for_each_entry_safe(reg_beacon, btmp, |
| 2528 | ®_beacon_list, list) { |
| 2529 | list_del(®_beacon->list); |
| 2530 | kfree(reg_beacon); |
| 2531 | } |
| 2532 | } |
| 2533 | |
Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 2534 | spin_lock(®_requests_lock); |
| 2535 | if (!list_empty(®_requests_list)) { |
| 2536 | list_for_each_entry_safe(reg_request, tmp, |
| 2537 | ®_requests_list, list) { |
| 2538 | list_del(®_request->list); |
| 2539 | kfree(reg_request); |
| 2540 | } |
| 2541 | } |
| 2542 | spin_unlock(®_requests_lock); |
| 2543 | |
Luis R. Rodriguez | abc7381 | 2009-07-30 17:38:08 -0700 | [diff] [blame] | 2544 | mutex_unlock(®_mutex); |
Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 2545 | mutex_unlock(&cfg80211_mutex); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2546 | } |