blob: 9830db61019ead8085636245c6997be2b3390f17 [file] [log] [blame]
Johannes Berg8318d782008-01-24 19:38:38 +01001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005 * Copyright 2008 Luis R. Rodriguez <lrodriguz@atheros.com>
Johannes Berg8318d782008-01-24 19:38:38 +01006 *
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. Rodriguezb2e1b302008-09-09 23:19:48 -070012/**
13 * DOC: Wireless regulatory infrastructure
Johannes Berg8318d782008-01-24 19:38:38 +010014 *
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. Rodriguezb2e1b302008-09-09 23:19:48 -070020 * 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 Berg8318d782008-01-24 19:38:38 +010034 */
35#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070037#include <linux/list.h>
38#include <linux/random.h>
John W. Linvillec61029c2010-08-05 14:26:24 -040039#include <linux/ctype.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070040#include <linux/nl80211.h>
41#include <linux/platform_device.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070042#include <net/cfg80211.h>
Johannes Berg8318d782008-01-24 19:38:38 +010043#include "core.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070044#include "reg.h"
John W. Linville3b377ea2009-12-18 17:59:01 -050045#include "regdb.h"
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040046#include "nl80211.h"
Johannes Berg8318d782008-01-24 19:38:38 +010047
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050048#ifdef CONFIG_CFG80211_REG_DEBUG
John W. Linville82711952010-01-05 17:57:20 -050049#define REG_DBG_PRINT(format, args...) \
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050050 do { \
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -070051 printk(KERN_DEBUG "cfg80211: " format , ## args); \
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050052 } while (0)
53#else
John W. Linville82711952010-01-05 17:57:20 -050054#define REG_DBG_PRINT(args...)
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050055#endif
56
Luis R. Rodriguez5166ccd2008-10-30 13:33:56 -070057/* Receipt of information from last regulatory request */
Johannes Bergf6037d02008-10-21 11:01:33 +020058static struct regulatory_request *last_request;
Johannes Berg734366d2008-09-15 10:56:48 +020059
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070060/* To trigger userspace events */
61static struct platform_device *reg_pdev;
Johannes Berg8318d782008-01-24 19:38:38 +010062
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050063/*
64 * Central wireless core regulatory domains, we only need two,
Johannes Berg734366d2008-09-15 10:56:48 +020065 * the current one and a world regulatory domain in case we have no
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050066 * information to give us an alpha2
67 */
Luis R. Rodriguezf1303472009-01-30 09:26:42 -080068const struct ieee80211_regdomain *cfg80211_regdomain;
Johannes Berg734366d2008-09-15 10:56:48 +020069
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050070/*
Luis R. Rodriguezabc73812009-07-30 17:38:08 -070071 * Protects static reg.c components:
72 * - cfg80211_world_regdom
73 * - cfg80211_regdom
Luis R. Rodriguezabc73812009-07-30 17:38:08 -070074 * - last_request
75 */
John W. Linville670b7f12010-06-24 11:26:31 -040076static DEFINE_MUTEX(reg_mutex);
Johannes Berg46a5eba2010-09-15 13:28:15 +020077
78static inline void assert_reg_lock(void)
79{
80 lockdep_assert_held(&reg_mutex);
81}
Luis R. Rodriguezabc73812009-07-30 17:38:08 -070082
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -050083/* Used to queue up regulatory hints */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -050084static LIST_HEAD(reg_requests_list);
85static spinlock_t reg_requests_lock;
86
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -050087/* Used to queue up beacon hints for review */
88static LIST_HEAD(reg_pending_beacons);
89static spinlock_t reg_pending_beacons_lock;
90
91/* Used to keep track of processed beacon hints */
92static LIST_HEAD(reg_beacon_list);
93
94struct reg_beacon {
95 struct list_head list;
96 struct ieee80211_channel chan;
97};
98
Johannes Berg734366d2008-09-15 10:56:48 +020099/* We keep a static world regulatory domain in case of the absence of CRDA */
100static const struct ieee80211_regdomain world_regdom = {
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800101 .n_reg_rules = 5,
Johannes Berg734366d2008-09-15 10:56:48 +0200102 .alpha2 = "00",
103 .reg_rules = {
Luis R. Rodriguez68798a62009-02-21 00:20:37 -0500104 /* IEEE 802.11b/g, channels 1..11 */
105 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800106 /* IEEE 802.11b/g, channels 12..13. No HT40
107 * channel fits here. */
108 REG_RULE(2467-10, 2472+10, 20, 6, 20,
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500109 NL80211_RRF_PASSIVE_SCAN |
110 NL80211_RRF_NO_IBSS),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800111 /* IEEE 802.11 channel 14 - Only JP enables
112 * this and for 802.11b only */
113 REG_RULE(2484-10, 2484+10, 20, 6, 20,
114 NL80211_RRF_PASSIVE_SCAN |
115 NL80211_RRF_NO_IBSS |
116 NL80211_RRF_NO_OFDM),
117 /* IEEE 802.11a, channel 36..48 */
Luis R. Rodriguezec329ac2009-03-05 21:19:22 -0800118 REG_RULE(5180-10, 5240+10, 40, 6, 20,
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800119 NL80211_RRF_PASSIVE_SCAN |
120 NL80211_RRF_NO_IBSS),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500121
122 /* NB: 5260 MHz - 5700 MHz requies DFS */
123
124 /* IEEE 802.11a, channel 149..165 */
Luis R. Rodriguezec329ac2009-03-05 21:19:22 -0800125 REG_RULE(5745-10, 5825+10, 40, 6, 20,
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500126 NL80211_RRF_PASSIVE_SCAN |
127 NL80211_RRF_NO_IBSS),
Johannes Berg734366d2008-09-15 10:56:48 +0200128 }
129};
130
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200131static const struct ieee80211_regdomain *cfg80211_world_regdom =
132 &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200133
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400134static char *ieee80211_regdom = "00";
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500135static char user_alpha2[2];
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400136
Johannes Berg734366d2008-09-15 10:56:48 +0200137module_param(ieee80211_regdom, charp, 0444);
138MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
139
Johannes Berg734366d2008-09-15 10:56:48 +0200140static void reset_regdomains(void)
141{
Johannes Berg942b25c2008-09-15 11:26:47 +0200142 /* avoid freeing static information or freeing something twice */
143 if (cfg80211_regdomain == cfg80211_world_regdom)
144 cfg80211_regdomain = NULL;
145 if (cfg80211_world_regdom == &world_regdom)
146 cfg80211_world_regdom = NULL;
147 if (cfg80211_regdomain == &world_regdom)
148 cfg80211_regdomain = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200149
150 kfree(cfg80211_regdomain);
151 kfree(cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +0200152
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200153 cfg80211_world_regdom = &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200154 cfg80211_regdomain = NULL;
155}
156
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500157/*
158 * Dynamic world regulatory domain requested by the wireless
159 * core upon initialization
160 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200161static void update_world_regdomain(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200162{
Johannes Bergf6037d02008-10-21 11:01:33 +0200163 BUG_ON(!last_request);
Johannes Berg734366d2008-09-15 10:56:48 +0200164
165 reset_regdomains();
166
167 cfg80211_world_regdom = rd;
168 cfg80211_regdomain = rd;
169}
Johannes Berg734366d2008-09-15 10:56:48 +0200170
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200171bool is_world_regdom(const char *alpha2)
Johannes Berg8318d782008-01-24 19:38:38 +0100172{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700173 if (!alpha2)
174 return false;
175 if (alpha2[0] == '0' && alpha2[1] == '0')
176 return true;
177 return false;
Johannes Berg8318d782008-01-24 19:38:38 +0100178}
179
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200180static bool is_alpha2_set(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700181{
182 if (!alpha2)
183 return false;
184 if (alpha2[0] != 0 && alpha2[1] != 0)
185 return true;
186 return false;
187}
Johannes Berg8318d782008-01-24 19:38:38 +0100188
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200189static bool is_unknown_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700190{
191 if (!alpha2)
192 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500193 /*
194 * Special case where regulatory domain was built by driver
195 * but a specific alpha2 cannot be determined
196 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700197 if (alpha2[0] == '9' && alpha2[1] == '9')
198 return true;
199 return false;
200}
201
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800202static bool is_intersected_alpha2(const char *alpha2)
203{
204 if (!alpha2)
205 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500206 /*
207 * Special case where regulatory domain is the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800208 * result of an intersection between two regulatory domain
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500209 * structures
210 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800211 if (alpha2[0] == '9' && alpha2[1] == '8')
212 return true;
213 return false;
214}
215
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200216static bool is_an_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700217{
218 if (!alpha2)
219 return false;
John W. Linvillec61029c2010-08-05 14:26:24 -0400220 if (isalpha(alpha2[0]) && isalpha(alpha2[1]))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700221 return true;
222 return false;
223}
224
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200225static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700226{
227 if (!alpha2_x || !alpha2_y)
228 return false;
229 if (alpha2_x[0] == alpha2_y[0] &&
230 alpha2_x[1] == alpha2_y[1])
231 return true;
232 return false;
233}
234
Luis R. Rodriguez69b15722009-02-21 00:04:33 -0500235static bool regdom_changes(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700236{
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500237 assert_cfg80211_lock();
238
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700239 if (!cfg80211_regdomain)
240 return true;
241 if (alpha2_equal(cfg80211_regdomain->alpha2, alpha2))
242 return false;
243 return true;
244}
245
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500246/*
247 * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
248 * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
249 * has ever been issued.
250 */
251static bool is_user_regdom_saved(void)
252{
253 if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
254 return false;
255
256 /* This would indicate a mistake on the design */
257 if (WARN((!is_world_regdom(user_alpha2) &&
258 !is_an_alpha2(user_alpha2)),
259 "Unexpected user alpha2: %c%c\n",
260 user_alpha2[0],
261 user_alpha2[1]))
262 return false;
263
264 return true;
265}
266
John W. Linville3b377ea2009-12-18 17:59:01 -0500267static int reg_copy_regd(const struct ieee80211_regdomain **dst_regd,
268 const struct ieee80211_regdomain *src_regd)
269{
270 struct ieee80211_regdomain *regd;
271 int size_of_regd = 0;
272 unsigned int i;
273
274 size_of_regd = sizeof(struct ieee80211_regdomain) +
275 ((src_regd->n_reg_rules + 1) * sizeof(struct ieee80211_reg_rule));
276
277 regd = kzalloc(size_of_regd, GFP_KERNEL);
278 if (!regd)
279 return -ENOMEM;
280
281 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
282
283 for (i = 0; i < src_regd->n_reg_rules; i++)
284 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
285 sizeof(struct ieee80211_reg_rule));
286
287 *dst_regd = regd;
288 return 0;
289}
290
291#ifdef CONFIG_CFG80211_INTERNAL_REGDB
292struct reg_regdb_search_request {
293 char alpha2[2];
294 struct list_head list;
295};
296
297static LIST_HEAD(reg_regdb_search_list);
John W. Linville368d06f2010-03-16 15:40:59 -0400298static DEFINE_MUTEX(reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500299
300static void reg_regdb_search(struct work_struct *work)
301{
302 struct reg_regdb_search_request *request;
303 const struct ieee80211_regdomain *curdom, *regdom;
304 int i, r;
305
John W. Linville368d06f2010-03-16 15:40:59 -0400306 mutex_lock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500307 while (!list_empty(&reg_regdb_search_list)) {
308 request = list_first_entry(&reg_regdb_search_list,
309 struct reg_regdb_search_request,
310 list);
311 list_del(&request->list);
312
313 for (i=0; i<reg_regdb_size; i++) {
314 curdom = reg_regdb[i];
315
316 if (!memcmp(request->alpha2, curdom->alpha2, 2)) {
317 r = reg_copy_regd(&regdom, curdom);
318 if (r)
319 break;
John W. Linville3b377ea2009-12-18 17:59:01 -0500320 mutex_lock(&cfg80211_mutex);
321 set_regdom(regdom);
322 mutex_unlock(&cfg80211_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500323 break;
324 }
325 }
326
327 kfree(request);
328 }
John W. Linville368d06f2010-03-16 15:40:59 -0400329 mutex_unlock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500330}
331
332static DECLARE_WORK(reg_regdb_work, reg_regdb_search);
333
334static void reg_regdb_query(const char *alpha2)
335{
336 struct reg_regdb_search_request *request;
337
338 if (!alpha2)
339 return;
340
341 request = kzalloc(sizeof(struct reg_regdb_search_request), GFP_KERNEL);
342 if (!request)
343 return;
344
345 memcpy(request->alpha2, alpha2, 2);
346
John W. Linville368d06f2010-03-16 15:40:59 -0400347 mutex_lock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500348 list_add_tail(&request->list, &reg_regdb_search_list);
John W. Linville368d06f2010-03-16 15:40:59 -0400349 mutex_unlock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500350
351 schedule_work(&reg_regdb_work);
352}
353#else
354static inline void reg_regdb_query(const char *alpha2) {}
355#endif /* CONFIG_CFG80211_INTERNAL_REGDB */
356
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500357/*
358 * This lets us keep regulatory code which is updated on a regulatory
359 * basis in userspace.
360 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700361static int call_crda(const char *alpha2)
362{
363 char country_env[9 + 2] = "COUNTRY=";
364 char *envp[] = {
365 country_env,
366 NULL
367 };
368
369 if (!is_world_regdom((char *) alpha2))
370 printk(KERN_INFO "cfg80211: Calling CRDA for country: %c%c\n",
371 alpha2[0], alpha2[1]);
372 else
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700373 printk(KERN_INFO "cfg80211: Calling CRDA to update world "
374 "regulatory domain\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700375
John W. Linville3b377ea2009-12-18 17:59:01 -0500376 /* query internal regulatory database (if it exists) */
377 reg_regdb_query(alpha2);
378
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700379 country_env[8] = alpha2[0];
380 country_env[9] = alpha2[1];
381
382 return kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, envp);
383}
384
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700385/* Used by nl80211 before kmalloc'ing our regulatory domain */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200386bool reg_is_valid_request(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700387{
Luis R. Rodriguez61405e92009-05-13 17:04:41 -0400388 assert_cfg80211_lock();
389
Johannes Bergf6037d02008-10-21 11:01:33 +0200390 if (!last_request)
391 return false;
392
393 return alpha2_equal(last_request->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700394}
395
396/* Sanity check on a regulatory rule */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200397static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700398{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200399 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700400 u32 freq_diff;
401
Luis R. Rodriguez91e99002008-11-12 14:21:55 -0800402 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700403 return false;
404
405 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
406 return false;
407
408 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
409
Roel Kluinbd05f282009-03-03 22:55:21 +0100410 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
411 freq_range->max_bandwidth_khz > freq_diff)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700412 return false;
413
414 return true;
415}
416
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200417static bool is_valid_rd(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700418{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200419 const struct ieee80211_reg_rule *reg_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700420 unsigned int i;
421
422 if (!rd->n_reg_rules)
423 return false;
424
Luis R. Rodriguez88dc1c32008-11-12 14:22:01 -0800425 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
426 return false;
427
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700428 for (i = 0; i < rd->n_reg_rules; i++) {
429 reg_rule = &rd->reg_rules[i];
430 if (!is_valid_reg_rule(reg_rule))
431 return false;
432 }
433
434 return true;
435}
436
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400437static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range,
438 u32 center_freq_khz,
439 u32 bw_khz)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700440{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400441 u32 start_freq_khz, end_freq_khz;
442
443 start_freq_khz = center_freq_khz - (bw_khz/2);
444 end_freq_khz = center_freq_khz + (bw_khz/2);
445
446 if (start_freq_khz >= freq_range->start_freq_khz &&
447 end_freq_khz <= freq_range->end_freq_khz)
448 return true;
449
450 return false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700451}
452
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800453/**
454 * freq_in_rule_band - tells us if a frequency is in a frequency band
455 * @freq_range: frequency rule we want to query
456 * @freq_khz: frequency we are inquiring about
457 *
458 * This lets us know if a specific frequency rule is or is not relevant to
459 * a specific frequency's band. Bands are device specific and artificial
460 * definitions (the "2.4 GHz band" and the "5 GHz band"), however it is
461 * safe for now to assume that a frequency rule should not be part of a
462 * frequency's band if the start freq or end freq are off by more than 2 GHz.
463 * This resolution can be lowered and should be considered as we add
464 * regulatory rule support for other "bands".
465 **/
466static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
467 u32 freq_khz)
468{
469#define ONE_GHZ_IN_KHZ 1000000
470 if (abs(freq_khz - freq_range->start_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
471 return true;
472 if (abs(freq_khz - freq_range->end_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
473 return true;
474 return false;
475#undef ONE_GHZ_IN_KHZ
476}
477
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500478/*
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500479 * Helper for regdom_intersect(), this does the real
480 * mathematical intersection fun
481 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700482static int reg_rules_intersect(
483 const struct ieee80211_reg_rule *rule1,
484 const struct ieee80211_reg_rule *rule2,
485 struct ieee80211_reg_rule *intersected_rule)
486{
487 const struct ieee80211_freq_range *freq_range1, *freq_range2;
488 struct ieee80211_freq_range *freq_range;
489 const struct ieee80211_power_rule *power_rule1, *power_rule2;
490 struct ieee80211_power_rule *power_rule;
491 u32 freq_diff;
492
493 freq_range1 = &rule1->freq_range;
494 freq_range2 = &rule2->freq_range;
495 freq_range = &intersected_rule->freq_range;
496
497 power_rule1 = &rule1->power_rule;
498 power_rule2 = &rule2->power_rule;
499 power_rule = &intersected_rule->power_rule;
500
501 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
502 freq_range2->start_freq_khz);
503 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
504 freq_range2->end_freq_khz);
505 freq_range->max_bandwidth_khz = min(freq_range1->max_bandwidth_khz,
506 freq_range2->max_bandwidth_khz);
507
508 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
509 if (freq_range->max_bandwidth_khz > freq_diff)
510 freq_range->max_bandwidth_khz = freq_diff;
511
512 power_rule->max_eirp = min(power_rule1->max_eirp,
513 power_rule2->max_eirp);
514 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
515 power_rule2->max_antenna_gain);
516
517 intersected_rule->flags = (rule1->flags | rule2->flags);
518
519 if (!is_valid_reg_rule(intersected_rule))
520 return -EINVAL;
521
522 return 0;
523}
524
525/**
526 * regdom_intersect - do the intersection between two regulatory domains
527 * @rd1: first regulatory domain
528 * @rd2: second regulatory domain
529 *
530 * Use this function to get the intersection between two regulatory domains.
531 * Once completed we will mark the alpha2 for the rd as intersected, "98",
532 * as no one single alpha2 can represent this regulatory domain.
533 *
534 * Returns a pointer to the regulatory domain structure which will hold the
535 * resulting intersection of rules between rd1 and rd2. We will
536 * kzalloc() this structure for you.
537 */
538static struct ieee80211_regdomain *regdom_intersect(
539 const struct ieee80211_regdomain *rd1,
540 const struct ieee80211_regdomain *rd2)
541{
542 int r, size_of_regd;
543 unsigned int x, y;
544 unsigned int num_rules = 0, rule_idx = 0;
545 const struct ieee80211_reg_rule *rule1, *rule2;
546 struct ieee80211_reg_rule *intersected_rule;
547 struct ieee80211_regdomain *rd;
548 /* This is just a dummy holder to help us count */
549 struct ieee80211_reg_rule irule;
550
551 /* Uses the stack temporarily for counter arithmetic */
552 intersected_rule = &irule;
553
554 memset(intersected_rule, 0, sizeof(struct ieee80211_reg_rule));
555
556 if (!rd1 || !rd2)
557 return NULL;
558
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500559 /*
560 * First we get a count of the rules we'll need, then we actually
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700561 * build them. This is to so we can malloc() and free() a
562 * regdomain once. The reason we use reg_rules_intersect() here
563 * is it will return -EINVAL if the rule computed makes no sense.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500564 * All rules that do check out OK are valid.
565 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700566
567 for (x = 0; x < rd1->n_reg_rules; x++) {
568 rule1 = &rd1->reg_rules[x];
569 for (y = 0; y < rd2->n_reg_rules; y++) {
570 rule2 = &rd2->reg_rules[y];
571 if (!reg_rules_intersect(rule1, rule2,
572 intersected_rule))
573 num_rules++;
574 memset(intersected_rule, 0,
575 sizeof(struct ieee80211_reg_rule));
576 }
577 }
578
579 if (!num_rules)
580 return NULL;
581
582 size_of_regd = sizeof(struct ieee80211_regdomain) +
583 ((num_rules + 1) * sizeof(struct ieee80211_reg_rule));
584
585 rd = kzalloc(size_of_regd, GFP_KERNEL);
586 if (!rd)
587 return NULL;
588
589 for (x = 0; x < rd1->n_reg_rules; x++) {
590 rule1 = &rd1->reg_rules[x];
591 for (y = 0; y < rd2->n_reg_rules; y++) {
592 rule2 = &rd2->reg_rules[y];
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500593 /*
594 * This time around instead of using the stack lets
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700595 * write to the target rule directly saving ourselves
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500596 * a memcpy()
597 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700598 intersected_rule = &rd->reg_rules[rule_idx];
599 r = reg_rules_intersect(rule1, rule2,
600 intersected_rule);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500601 /*
602 * No need to memset here the intersected rule here as
603 * we're not using the stack anymore
604 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700605 if (r)
606 continue;
607 rule_idx++;
608 }
609 }
610
611 if (rule_idx != num_rules) {
612 kfree(rd);
613 return NULL;
614 }
615
616 rd->n_reg_rules = num_rules;
617 rd->alpha2[0] = '9';
618 rd->alpha2[1] = '8';
619
620 return rd;
621}
622
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500623/*
624 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
625 * want to just have the channel structure use these
626 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700627static u32 map_regdom_flags(u32 rd_flags)
628{
629 u32 channel_flags = 0;
630 if (rd_flags & NL80211_RRF_PASSIVE_SCAN)
631 channel_flags |= IEEE80211_CHAN_PASSIVE_SCAN;
632 if (rd_flags & NL80211_RRF_NO_IBSS)
633 channel_flags |= IEEE80211_CHAN_NO_IBSS;
634 if (rd_flags & NL80211_RRF_DFS)
635 channel_flags |= IEEE80211_CHAN_RADAR;
636 return channel_flags;
637}
638
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800639static int freq_reg_info_regd(struct wiphy *wiphy,
640 u32 center_freq,
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400641 u32 desired_bw_khz,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800642 const struct ieee80211_reg_rule **reg_rule,
643 const struct ieee80211_regdomain *custom_regd)
Johannes Berg8318d782008-01-24 19:38:38 +0100644{
645 int i;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800646 bool band_rule_found = false;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800647 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400648 bool bw_fits = false;
649
650 if (!desired_bw_khz)
651 desired_bw_khz = MHZ_TO_KHZ(20);
Johannes Berg8318d782008-01-24 19:38:38 +0100652
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800653 regd = custom_regd ? custom_regd : cfg80211_regdomain;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800654
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500655 /*
656 * Follow the driver's regulatory domain, if present, unless a country
657 * IE has been processed or a user wants to help complaince further
658 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400659 if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
660 last_request->initiator != NL80211_REGDOM_SET_BY_USER &&
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800661 wiphy->regd)
662 regd = wiphy->regd;
663
664 if (!regd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700665 return -EINVAL;
666
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800667 for (i = 0; i < regd->n_reg_rules; i++) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700668 const struct ieee80211_reg_rule *rr;
669 const struct ieee80211_freq_range *fr = NULL;
670 const struct ieee80211_power_rule *pr = NULL;
671
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800672 rr = &regd->reg_rules[i];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700673 fr = &rr->freq_range;
674 pr = &rr->power_rule;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800675
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500676 /*
677 * We only need to know if one frequency rule was
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800678 * was in center_freq's band, that's enough, so lets
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500679 * not overwrite it once found
680 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800681 if (!band_rule_found)
682 band_rule_found = freq_in_rule_band(fr, center_freq);
683
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400684 bw_fits = reg_does_bw_fit(fr,
685 center_freq,
686 desired_bw_khz);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800687
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400688 if (band_rule_found && bw_fits) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700689 *reg_rule = rr;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400690 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100691 }
692 }
693
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800694 if (!band_rule_found)
695 return -ERANGE;
696
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400697 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700698}
699
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400700int freq_reg_info(struct wiphy *wiphy,
701 u32 center_freq,
702 u32 desired_bw_khz,
703 const struct ieee80211_reg_rule **reg_rule)
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800704{
Luis R. Rodriguezac46d482009-05-01 18:44:50 -0400705 assert_cfg80211_lock();
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400706 return freq_reg_info_regd(wiphy,
707 center_freq,
708 desired_bw_khz,
709 reg_rule,
710 NULL);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800711}
John W. Linville4f366c52010-07-15 14:57:33 -0400712EXPORT_SYMBOL(freq_reg_info);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700713
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530714#ifdef CONFIG_CFG80211_REG_DEBUG
715static const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
716{
717 switch (initiator) {
718 case NL80211_REGDOM_SET_BY_CORE:
719 return "Set by core";
720 case NL80211_REGDOM_SET_BY_USER:
721 return "Set by user";
722 case NL80211_REGDOM_SET_BY_DRIVER:
723 return "Set by driver";
724 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
725 return "Set by country IE";
726 default:
727 WARN_ON(1);
728 return "Set by bug";
729 }
730}
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530731
732static void chan_reg_rule_print_dbg(struct ieee80211_channel *chan,
733 u32 desired_bw_khz,
734 const struct ieee80211_reg_rule *reg_rule)
735{
736 const struct ieee80211_power_rule *power_rule;
737 const struct ieee80211_freq_range *freq_range;
738 char max_antenna_gain[32];
739
740 power_rule = &reg_rule->power_rule;
741 freq_range = &reg_rule->freq_range;
742
743 if (!power_rule->max_antenna_gain)
744 snprintf(max_antenna_gain, 32, "N/A");
745 else
746 snprintf(max_antenna_gain, 32, "%d", power_rule->max_antenna_gain);
747
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700748 REG_DBG_PRINT("Updating information on frequency %d MHz "
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530749 "for %d a MHz width channel with regulatory rule:\n",
750 chan->center_freq,
751 KHZ_TO_MHZ(desired_bw_khz));
752
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700753 REG_DBG_PRINT("%d KHz - %d KHz @ KHz), (%s mBi, %d mBm)\n",
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530754 freq_range->start_freq_khz,
755 freq_range->end_freq_khz,
756 max_antenna_gain,
757 power_rule->max_eirp);
758}
759#else
760static void chan_reg_rule_print_dbg(struct ieee80211_channel *chan,
761 u32 desired_bw_khz,
762 const struct ieee80211_reg_rule *reg_rule)
763{
764 return;
765}
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530766#endif
767
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400768/*
769 * Note that right now we assume the desired channel bandwidth
770 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
771 * per channel, the primary and the extension channel). To support
772 * smaller custom bandwidths such as 5 MHz or 10 MHz we'll need a
773 * new ieee80211_channel.target_bw and re run the regulatory check
774 * on the wiphy with the target_bw specified. Then we can simply use
775 * that below for the desired_bw_khz below.
776 */
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -0700777static void handle_channel(struct wiphy *wiphy,
778 enum nl80211_reg_initiator initiator,
779 enum ieee80211_band band,
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800780 unsigned int chan_idx)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700781{
782 int r;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400783 u32 flags, bw_flags = 0;
784 u32 desired_bw_khz = MHZ_TO_KHZ(20);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700785 const struct ieee80211_reg_rule *reg_rule = NULL;
786 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400787 const struct ieee80211_freq_range *freq_range = NULL;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800788 struct ieee80211_supported_band *sband;
789 struct ieee80211_channel *chan;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500790 struct wiphy *request_wiphy = NULL;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800791
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500792 assert_cfg80211_lock();
793
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -0500794 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
795
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800796 sband = wiphy->bands[band];
797 BUG_ON(chan_idx >= sband->n_channels);
798 chan = &sband->channels[chan_idx];
799
800 flags = chan->orig_flags;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700801
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400802 r = freq_reg_info(wiphy,
803 MHZ_TO_KHZ(chan->center_freq),
804 desired_bw_khz,
805 &reg_rule);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700806
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -0700807 if (r) {
808 /*
809 * We will disable all channels that do not match our
810 * recieved regulatory rule unless the hint is coming
811 * from a Country IE and the Country IE had no information
812 * about a band. The IEEE 802.11 spec allows for an AP
813 * to send only a subset of the regulatory rules allowed,
814 * so an AP in the US that only supports 2.4 GHz may only send
815 * a country IE with information for the 2.4 GHz band
816 * while 5 GHz is still supported.
817 */
818 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
819 r == -ERANGE)
820 return;
821
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700822 REG_DBG_PRINT("Disabling freq %d MHz\n", chan->center_freq);
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -0700823 chan->flags = IEEE80211_CHAN_DISABLED;
Johannes Berg8318d782008-01-24 19:38:38 +0100824 return;
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -0700825 }
Johannes Berg8318d782008-01-24 19:38:38 +0100826
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530827 chan_reg_rule_print_dbg(chan, desired_bw_khz, reg_rule);
828
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700829 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400830 freq_range = &reg_rule->freq_range;
831
832 if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
833 bw_flags = IEEE80211_CHAN_NO_HT40;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700834
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400835 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -0500836 request_wiphy && request_wiphy == wiphy &&
Johannes Berg5be83de2009-11-19 00:56:28 +0100837 request_wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500838 /*
839 * This gaurantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800840 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500841 * settings
842 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800843 chan->flags = chan->orig_flags =
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400844 map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800845 chan->max_antenna_gain = chan->orig_mag =
846 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800847 chan->max_power = chan->orig_mpwr =
848 (int) MBM_TO_DBM(power_rule->max_eirp);
849 return;
850 }
851
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400852 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
Johannes Berg8318d782008-01-24 19:38:38 +0100853 chan->max_antenna_gain = min(chan->orig_mag,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700854 (int) MBI_TO_DBI(power_rule->max_antenna_gain));
John W. Linville253898c2008-04-03 15:32:54 -0400855 if (chan->orig_mpwr)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700856 chan->max_power = min(chan->orig_mpwr,
857 (int) MBM_TO_DBM(power_rule->max_eirp));
John W. Linville253898c2008-04-03 15:32:54 -0400858 else
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700859 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Johannes Berg8318d782008-01-24 19:38:38 +0100860}
861
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -0700862static void handle_band(struct wiphy *wiphy,
863 enum ieee80211_band band,
864 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +0100865{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800866 unsigned int i;
867 struct ieee80211_supported_band *sband;
868
869 BUG_ON(!wiphy->bands[band]);
870 sband = wiphy->bands[band];
Johannes Berg8318d782008-01-24 19:38:38 +0100871
872 for (i = 0; i < sband->n_channels; i++)
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -0700873 handle_channel(wiphy, initiator, band, i);
Johannes Berg8318d782008-01-24 19:38:38 +0100874}
875
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400876static bool ignore_reg_update(struct wiphy *wiphy,
877 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800878{
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530879 if (!last_request) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700880 REG_DBG_PRINT("Ignoring regulatory request %s since "
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530881 "last_request is not set\n",
882 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800883 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530884 }
885
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400886 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530887 wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700888 REG_DBG_PRINT("Ignoring regulatory request %s "
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530889 "since the driver uses its own custom "
890 "regulatory domain ",
891 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800892 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530893 }
894
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500895 /*
896 * wiphy->regd will be set once the device has its own
897 * desired regulatory domain set
898 */
Johannes Berg5be83de2009-11-19 00:56:28 +0100899 if (wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY && !wiphy->regd &&
Luis R. Rodriguez749b5272010-10-20 10:18:54 -0700900 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530901 !is_world_regdom(last_request->alpha2)) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700902 REG_DBG_PRINT("Ignoring regulatory request %s "
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530903 "since the driver requires its own regulaotry "
904 "domain to be set first",
905 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800906 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530907 }
908
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800909 return false;
910}
911
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400912static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700913{
Johannes Berg79c97e92009-07-07 03:56:12 +0200914 struct cfg80211_registered_device *rdev;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700915
Johannes Berg79c97e92009-07-07 03:56:12 +0200916 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
917 wiphy_update_regulatory(&rdev->wiphy, initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700918}
919
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500920static void handle_reg_beacon(struct wiphy *wiphy,
921 unsigned int chan_idx,
922 struct reg_beacon *reg_beacon)
923{
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500924 struct ieee80211_supported_band *sband;
925 struct ieee80211_channel *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400926 bool channel_changed = false;
927 struct ieee80211_channel chan_before;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500928
929 assert_cfg80211_lock();
930
931 sband = wiphy->bands[reg_beacon->chan.band];
932 chan = &sband->channels[chan_idx];
933
934 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
935 return;
936
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400937 if (chan->beacon_found)
938 return;
939
940 chan->beacon_found = true;
941
Johannes Berg5be83de2009-11-19 00:56:28 +0100942 if (wiphy->flags & WIPHY_FLAG_DISABLE_BEACON_HINTS)
Luis R. Rodriguez37184242009-07-30 17:43:48 -0700943 return;
944
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400945 chan_before.center_freq = chan->center_freq;
946 chan_before.flags = chan->flags;
947
Luis R. Rodriguez37184242009-07-30 17:43:48 -0700948 if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500949 chan->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400950 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500951 }
952
Luis R. Rodriguez37184242009-07-30 17:43:48 -0700953 if (chan->flags & IEEE80211_CHAN_NO_IBSS) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500954 chan->flags &= ~IEEE80211_CHAN_NO_IBSS;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400955 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500956 }
957
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400958 if (channel_changed)
959 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500960}
961
962/*
963 * Called when a scan on a wiphy finds a beacon on
964 * new channel
965 */
966static void wiphy_update_new_beacon(struct wiphy *wiphy,
967 struct reg_beacon *reg_beacon)
968{
969 unsigned int i;
970 struct ieee80211_supported_band *sband;
971
972 assert_cfg80211_lock();
973
974 if (!wiphy->bands[reg_beacon->chan.band])
975 return;
976
977 sband = wiphy->bands[reg_beacon->chan.band];
978
979 for (i = 0; i < sband->n_channels; i++)
980 handle_reg_beacon(wiphy, i, reg_beacon);
981}
982
983/*
984 * Called upon reg changes or a new wiphy is added
985 */
986static void wiphy_update_beacon_reg(struct wiphy *wiphy)
987{
988 unsigned int i;
989 struct ieee80211_supported_band *sband;
990 struct reg_beacon *reg_beacon;
991
992 assert_cfg80211_lock();
993
994 if (list_empty(&reg_beacon_list))
995 return;
996
997 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
998 if (!wiphy->bands[reg_beacon->chan.band])
999 continue;
1000 sband = wiphy->bands[reg_beacon->chan.band];
1001 for (i = 0; i < sband->n_channels; i++)
1002 handle_reg_beacon(wiphy, i, reg_beacon);
1003 }
1004}
1005
1006static bool reg_is_world_roaming(struct wiphy *wiphy)
1007{
1008 if (is_world_regdom(cfg80211_regdomain->alpha2) ||
1009 (wiphy->regd && is_world_regdom(wiphy->regd->alpha2)))
1010 return true;
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001011 if (last_request &&
1012 last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Berg5be83de2009-11-19 00:56:28 +01001013 wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001014 return true;
1015 return false;
1016}
1017
1018/* Reap the advantages of previously found beacons */
1019static void reg_process_beacons(struct wiphy *wiphy)
1020{
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001021 /*
1022 * Means we are just firing up cfg80211, so no beacons would
1023 * have been processed yet.
1024 */
1025 if (!last_request)
1026 return;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001027 if (!reg_is_world_roaming(wiphy))
1028 return;
1029 wiphy_update_beacon_reg(wiphy);
1030}
1031
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001032static bool is_ht40_not_allowed(struct ieee80211_channel *chan)
1033{
1034 if (!chan)
1035 return true;
1036 if (chan->flags & IEEE80211_CHAN_DISABLED)
1037 return true;
1038 /* This would happen when regulatory rules disallow HT40 completely */
1039 if (IEEE80211_CHAN_NO_HT40 == (chan->flags & (IEEE80211_CHAN_NO_HT40)))
1040 return true;
1041 return false;
1042}
1043
1044static void reg_process_ht_flags_channel(struct wiphy *wiphy,
1045 enum ieee80211_band band,
1046 unsigned int chan_idx)
1047{
1048 struct ieee80211_supported_band *sband;
1049 struct ieee80211_channel *channel;
1050 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
1051 unsigned int i;
1052
1053 assert_cfg80211_lock();
1054
1055 sband = wiphy->bands[band];
1056 BUG_ON(chan_idx >= sband->n_channels);
1057 channel = &sband->channels[chan_idx];
1058
1059 if (is_ht40_not_allowed(channel)) {
1060 channel->flags |= IEEE80211_CHAN_NO_HT40;
1061 return;
1062 }
1063
1064 /*
1065 * We need to ensure the extension channels exist to
1066 * be able to use HT40- or HT40+, this finds them (or not)
1067 */
1068 for (i = 0; i < sband->n_channels; i++) {
1069 struct ieee80211_channel *c = &sband->channels[i];
1070 if (c->center_freq == (channel->center_freq - 20))
1071 channel_before = c;
1072 if (c->center_freq == (channel->center_freq + 20))
1073 channel_after = c;
1074 }
1075
1076 /*
1077 * Please note that this assumes target bandwidth is 20 MHz,
1078 * if that ever changes we also need to change the below logic
1079 * to include that as well.
1080 */
1081 if (is_ht40_not_allowed(channel_before))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001082 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001083 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001084 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001085
1086 if (is_ht40_not_allowed(channel_after))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001087 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001088 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001089 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001090}
1091
1092static void reg_process_ht_flags_band(struct wiphy *wiphy,
1093 enum ieee80211_band band)
1094{
1095 unsigned int i;
1096 struct ieee80211_supported_band *sband;
1097
1098 BUG_ON(!wiphy->bands[band]);
1099 sband = wiphy->bands[band];
1100
1101 for (i = 0; i < sband->n_channels; i++)
1102 reg_process_ht_flags_channel(wiphy, band, i);
1103}
1104
1105static void reg_process_ht_flags(struct wiphy *wiphy)
1106{
1107 enum ieee80211_band band;
1108
1109 if (!wiphy)
1110 return;
1111
1112 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1113 if (wiphy->bands[band])
1114 reg_process_ht_flags_band(wiphy, band);
1115 }
1116
1117}
1118
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001119void wiphy_update_regulatory(struct wiphy *wiphy,
1120 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +01001121{
1122 enum ieee80211_band band;
Luis R. Rodriguezd46e5b12009-01-22 15:05:50 -08001123
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001124 if (ignore_reg_update(wiphy, initiator))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001125 goto out;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001126 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001127 if (wiphy->bands[band])
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001128 handle_band(wiphy, band, initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001129 }
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001130out:
1131 reg_process_beacons(wiphy);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001132 reg_process_ht_flags(wiphy);
Luis R. Rodriguez560e28e2009-01-07 17:43:32 -08001133 if (wiphy->reg_notifier)
Luis R. Rodriguez716f9392009-01-22 15:05:51 -08001134 wiphy->reg_notifier(wiphy, last_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001135}
1136
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001137static void handle_channel_custom(struct wiphy *wiphy,
1138 enum ieee80211_band band,
1139 unsigned int chan_idx,
1140 const struct ieee80211_regdomain *regd)
1141{
1142 int r;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001143 u32 desired_bw_khz = MHZ_TO_KHZ(20);
1144 u32 bw_flags = 0;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001145 const struct ieee80211_reg_rule *reg_rule = NULL;
1146 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001147 const struct ieee80211_freq_range *freq_range = NULL;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001148 struct ieee80211_supported_band *sband;
1149 struct ieee80211_channel *chan;
1150
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001151 assert_reg_lock();
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001152
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001153 sband = wiphy->bands[band];
1154 BUG_ON(chan_idx >= sband->n_channels);
1155 chan = &sband->channels[chan_idx];
1156
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001157 r = freq_reg_info_regd(wiphy,
1158 MHZ_TO_KHZ(chan->center_freq),
1159 desired_bw_khz,
1160 &reg_rule,
1161 regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001162
1163 if (r) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001164 REG_DBG_PRINT("Disabling freq %d MHz as custom "
Luis R. Rodrigueza6518532010-10-20 10:18:57 -07001165 "regd has no rule that fits a %d MHz "
1166 "wide channel\n",
1167 chan->center_freq,
1168 KHZ_TO_MHZ(desired_bw_khz));
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001169 chan->flags = IEEE80211_CHAN_DISABLED;
1170 return;
1171 }
1172
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301173 chan_reg_rule_print_dbg(chan, desired_bw_khz, reg_rule);
1174
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001175 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001176 freq_range = &reg_rule->freq_range;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001177
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001178 if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
1179 bw_flags = IEEE80211_CHAN_NO_HT40;
1180
1181 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001182 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001183 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
1184}
1185
1186static void handle_band_custom(struct wiphy *wiphy, enum ieee80211_band band,
1187 const struct ieee80211_regdomain *regd)
1188{
1189 unsigned int i;
1190 struct ieee80211_supported_band *sband;
1191
1192 BUG_ON(!wiphy->bands[band]);
1193 sband = wiphy->bands[band];
1194
1195 for (i = 0; i < sband->n_channels; i++)
1196 handle_channel_custom(wiphy, band, i, regd);
1197}
1198
1199/* Used by drivers prior to wiphy registration */
1200void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1201 const struct ieee80211_regdomain *regd)
1202{
1203 enum ieee80211_band band;
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001204 unsigned int bands_set = 0;
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001205
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001206 mutex_lock(&reg_mutex);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001207 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001208 if (!wiphy->bands[band])
1209 continue;
1210 handle_band_custom(wiphy, band, regd);
1211 bands_set++;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001212 }
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001213 mutex_unlock(&reg_mutex);
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001214
1215 /*
1216 * no point in calling this if it won't have any effect
1217 * on your device's supportd bands.
1218 */
1219 WARN_ON(!bands_set);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001220}
1221EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1222
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001223/*
1224 * Return value which can be used by ignore_request() to indicate
1225 * it has been determined we should intersect two regulatory domains
1226 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001227#define REG_INTERSECT 1
1228
Johannes Berg84fa4f42008-10-24 20:32:23 +02001229/* This has the logic which determines when a new request
1230 * should be ignored. */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001231static int ignore_request(struct wiphy *wiphy,
1232 struct regulatory_request *pending_request)
Johannes Berg84fa4f42008-10-24 20:32:23 +02001233{
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001234 struct wiphy *last_wiphy = NULL;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001235
1236 assert_cfg80211_lock();
1237
Johannes Berg84fa4f42008-10-24 20:32:23 +02001238 /* All initial requests are respected */
1239 if (!last_request)
1240 return 0;
1241
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001242 switch (pending_request->initiator) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001243 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001244 return 0;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001245 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001246
1247 last_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1248
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001249 if (unlikely(!is_an_alpha2(pending_request->alpha2)))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001250 return -EINVAL;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001251 if (last_request->initiator ==
1252 NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001253 if (last_wiphy != wiphy) {
Johannes Berg84fa4f42008-10-24 20:32:23 +02001254 /*
1255 * Two cards with two APs claiming different
Thadeu Lima de Souza Cascardo1fe90b02009-08-11 11:18:42 -03001256 * Country IE alpha2s. We could
Johannes Berg84fa4f42008-10-24 20:32:23 +02001257 * intersect them, but that seems unlikely
1258 * to be correct. Reject second one for now.
1259 */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001260 if (regdom_changes(pending_request->alpha2))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001261 return -EOPNOTSUPP;
1262 return -EALREADY;
1263 }
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001264 /*
1265 * Two consecutive Country IE hints on the same wiphy.
1266 * This should be picked up early by the driver/stack
1267 */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001268 if (WARN_ON(regdom_changes(pending_request->alpha2)))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001269 return 0;
1270 return -EALREADY;
1271 }
Luis R. Rodrigueza171fba2010-10-18 17:44:51 -07001272 return 0;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001273 case NL80211_REGDOM_SET_BY_DRIVER:
1274 if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE) {
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001275 if (regdom_changes(pending_request->alpha2))
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001276 return 0;
Johannes Berg84fa4f42008-10-24 20:32:23 +02001277 return -EALREADY;
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001278 }
Luis R. Rodriguezfff32c02009-02-21 00:04:32 -05001279
1280 /*
1281 * This would happen if you unplug and plug your card
1282 * back in or if you add a new device for which the previously
1283 * loaded card also agrees on the regulatory domain.
1284 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001285 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001286 !regdom_changes(pending_request->alpha2))
Luis R. Rodriguezfff32c02009-02-21 00:04:32 -05001287 return -EALREADY;
1288
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001289 return REG_INTERSECT;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001290 case NL80211_REGDOM_SET_BY_USER:
1291 if (last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001292 return REG_INTERSECT;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001293 /*
1294 * If the user knows better the user should set the regdom
1295 * to their country before the IE is picked up
1296 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001297 if (last_request->initiator == NL80211_REGDOM_SET_BY_USER &&
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001298 last_request->intersect)
1299 return -EOPNOTSUPP;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001300 /*
1301 * Process user requests only after previous user/driver/core
1302 * requests have been processed
1303 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001304 if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE ||
1305 last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
1306 last_request->initiator == NL80211_REGDOM_SET_BY_USER) {
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001307 if (regdom_changes(last_request->alpha2))
Luis R. Rodriguez5eebade2009-01-22 15:05:47 -08001308 return -EAGAIN;
1309 }
1310
John W. Linvillebaeb66f2009-12-18 17:59:02 -05001311 if (!regdom_changes(pending_request->alpha2))
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001312 return -EALREADY;
1313
Johannes Berg84fa4f42008-10-24 20:32:23 +02001314 return 0;
1315 }
1316
1317 return -EINVAL;
1318}
1319
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001320/**
1321 * __regulatory_hint - hint to the wireless core a regulatory domain
1322 * @wiphy: if the hint comes from country information from an AP, this
1323 * is required to be set to the wiphy that received the information
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001324 * @pending_request: the regulatory request currently being processed
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001325 *
1326 * The Wireless subsystem can use this function to hint to the wireless core
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001327 * what it believes should be the current regulatory domain.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001328 *
1329 * Returns zero if all went fine, %-EALREADY if a regulatory domain had
1330 * already been set or other standard error codes.
1331 *
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001332 * Caller must hold &cfg80211_mutex and &reg_mutex
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001333 */
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001334static int __regulatory_hint(struct wiphy *wiphy,
1335 struct regulatory_request *pending_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001336{
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001337 bool intersect = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001338 int r = 0;
1339
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001340 assert_cfg80211_lock();
1341
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001342 r = ignore_request(wiphy, pending_request);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001343
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001344 if (r == REG_INTERSECT) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001345 if (pending_request->initiator ==
1346 NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001347 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001348 if (r) {
1349 kfree(pending_request);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001350 return r;
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001351 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001352 }
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001353 intersect = true;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001354 } else if (r) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001355 /*
1356 * If the regulatory domain being requested by the
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001357 * driver has already been set just copy it to the
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001358 * wiphy
1359 */
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001360 if (r == -EALREADY &&
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001361 pending_request->initiator ==
1362 NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001363 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001364 if (r) {
1365 kfree(pending_request);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001366 return r;
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001367 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001368 r = -EALREADY;
1369 goto new_request;
1370 }
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001371 kfree(pending_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001372 return r;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001373 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001374
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001375new_request:
Luis R. Rodriguez5203cdb2008-11-12 14:21:56 -08001376 kfree(last_request);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001377
1378 last_request = pending_request;
1379 last_request->intersect = intersect;
1380
1381 pending_request = NULL;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001382
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001383 if (last_request->initiator == NL80211_REGDOM_SET_BY_USER) {
1384 user_alpha2[0] = last_request->alpha2[0];
1385 user_alpha2[1] = last_request->alpha2[1];
1386 }
1387
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001388 /* When r == REG_INTERSECT we do need to call CRDA */
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04001389 if (r < 0) {
1390 /*
1391 * Since CRDA will not be called in this case as we already
1392 * have applied the requested regulatory domain before we just
1393 * inform userspace we have processed the request
1394 */
1395 if (r == -EALREADY)
1396 nl80211_send_reg_change_event(last_request);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001397 return r;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04001398 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001399
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001400 return call_crda(last_request->alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001401}
1402
Luis R. Rodriguez30a548c2009-05-02 01:17:27 -04001403/* This processes *all* regulatory hints */
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001404static void reg_process_hint(struct regulatory_request *reg_request)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001405{
1406 int r = 0;
1407 struct wiphy *wiphy = NULL;
Yuri Ershovc4c32292010-06-29 15:08:08 +04001408 enum nl80211_reg_initiator initiator = reg_request->initiator;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001409
1410 BUG_ON(!reg_request->alpha2);
1411
1412 mutex_lock(&cfg80211_mutex);
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001413 mutex_lock(&reg_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001414
1415 if (wiphy_idx_valid(reg_request->wiphy_idx))
1416 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
1417
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001418 if (reg_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001419 !wiphy) {
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001420 kfree(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001421 goto out;
1422 }
1423
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001424 r = __regulatory_hint(wiphy, reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001425 /* This is required so that the orig_* parameters are saved */
Johannes Berg5be83de2009-11-19 00:56:28 +01001426 if (r == -EALREADY && wiphy &&
1427 wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY)
Yuri Ershovc4c32292010-06-29 15:08:08 +04001428 wiphy_update_regulatory(wiphy, initiator);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001429out:
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001430 mutex_unlock(&reg_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001431 mutex_unlock(&cfg80211_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001432}
1433
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001434/* Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_* */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001435static void reg_process_pending_hints(void)
1436 {
1437 struct regulatory_request *reg_request;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001438
1439 spin_lock(&reg_requests_lock);
1440 while (!list_empty(&reg_requests_list)) {
1441 reg_request = list_first_entry(&reg_requests_list,
1442 struct regulatory_request,
1443 list);
1444 list_del_init(&reg_request->list);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001445
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001446 spin_unlock(&reg_requests_lock);
1447 reg_process_hint(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001448 spin_lock(&reg_requests_lock);
1449 }
1450 spin_unlock(&reg_requests_lock);
1451}
1452
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001453/* Processes beacon hints -- this has nothing to do with country IEs */
1454static void reg_process_pending_beacon_hints(void)
1455{
Johannes Berg79c97e92009-07-07 03:56:12 +02001456 struct cfg80211_registered_device *rdev;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001457 struct reg_beacon *pending_beacon, *tmp;
1458
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001459 /*
1460 * No need to hold the reg_mutex here as we just touch wiphys
1461 * and do not read or access regulatory variables.
1462 */
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001463 mutex_lock(&cfg80211_mutex);
1464
1465 /* This goes through the _pending_ beacon list */
1466 spin_lock_bh(&reg_pending_beacons_lock);
1467
1468 if (list_empty(&reg_pending_beacons)) {
1469 spin_unlock_bh(&reg_pending_beacons_lock);
1470 goto out;
1471 }
1472
1473 list_for_each_entry_safe(pending_beacon, tmp,
1474 &reg_pending_beacons, list) {
1475
1476 list_del_init(&pending_beacon->list);
1477
1478 /* Applies the beacon hint to current wiphys */
Johannes Berg79c97e92009-07-07 03:56:12 +02001479 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1480 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001481
1482 /* Remembers the beacon hint for new wiphys or reg changes */
1483 list_add_tail(&pending_beacon->list, &reg_beacon_list);
1484 }
1485
1486 spin_unlock_bh(&reg_pending_beacons_lock);
1487out:
1488 mutex_unlock(&cfg80211_mutex);
1489}
1490
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001491static void reg_todo(struct work_struct *work)
1492{
1493 reg_process_pending_hints();
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001494 reg_process_pending_beacon_hints();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001495}
1496
1497static DECLARE_WORK(reg_work, reg_todo);
1498
1499static void queue_regulatory_request(struct regulatory_request *request)
1500{
John W. Linvillec61029c2010-08-05 14:26:24 -04001501 if (isalpha(request->alpha2[0]))
1502 request->alpha2[0] = toupper(request->alpha2[0]);
1503 if (isalpha(request->alpha2[1]))
1504 request->alpha2[1] = toupper(request->alpha2[1]);
1505
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001506 spin_lock(&reg_requests_lock);
1507 list_add_tail(&request->list, &reg_requests_list);
1508 spin_unlock(&reg_requests_lock);
1509
1510 schedule_work(&reg_work);
1511}
1512
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001513/*
1514 * Core regulatory hint -- happens during cfg80211_init()
1515 * and when we restore regulatory settings.
1516 */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001517static int regulatory_hint_core(const char *alpha2)
1518{
1519 struct regulatory_request *request;
1520
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001521 kfree(last_request);
1522 last_request = NULL;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001523
1524 request = kzalloc(sizeof(struct regulatory_request),
1525 GFP_KERNEL);
1526 if (!request)
1527 return -ENOMEM;
1528
1529 request->alpha2[0] = alpha2[0];
1530 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001531 request->initiator = NL80211_REGDOM_SET_BY_CORE;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001532
Luis R. Rodriguez31e99722010-11-17 21:46:06 -08001533 queue_regulatory_request(request);
Luis R. Rodriguez5078b2e2009-05-13 17:04:42 -04001534
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001535 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001536}
1537
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001538/* User hints */
1539int regulatory_hint_user(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001540{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001541 struct regulatory_request *request;
1542
Johannes Bergbe3d4812008-10-24 20:32:21 +02001543 BUG_ON(!alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001544
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001545 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1546 if (!request)
1547 return -ENOMEM;
1548
1549 request->wiphy_idx = WIPHY_IDX_STALE;
1550 request->alpha2[0] = alpha2[0];
1551 request->alpha2[1] = alpha2[1];
Luis R. Rodrigueze12822e2010-01-04 11:37:39 -05001552 request->initiator = NL80211_REGDOM_SET_BY_USER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001553
1554 queue_regulatory_request(request);
1555
1556 return 0;
1557}
1558
1559/* Driver hints */
1560int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
1561{
1562 struct regulatory_request *request;
1563
1564 BUG_ON(!alpha2);
1565 BUG_ON(!wiphy);
1566
1567 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1568 if (!request)
1569 return -ENOMEM;
1570
1571 request->wiphy_idx = get_wiphy_idx(wiphy);
1572
1573 /* Must have registered wiphy first */
1574 BUG_ON(!wiphy_idx_valid(request->wiphy_idx));
1575
1576 request->alpha2[0] = alpha2[0];
1577 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001578 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001579
1580 queue_regulatory_request(request);
1581
1582 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001583}
1584EXPORT_SYMBOL(regulatory_hint);
1585
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001586/*
1587 * We hold wdev_lock() here so we cannot hold cfg80211_mutex() and
1588 * therefore cannot iterate over the rdev list here.
1589 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001590void regulatory_hint_11d(struct wiphy *wiphy,
Luis R. Rodriguez84920e32010-01-14 20:08:20 -05001591 enum ieee80211_band band,
1592 u8 *country_ie,
1593 u8 country_ie_len)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001594{
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001595 char alpha2[2];
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001596 enum environment_cap env = ENVIRON_ANY;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001597 struct regulatory_request *request;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001598
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001599 mutex_lock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001600
Luis R. Rodriguez9828b012009-07-30 17:38:06 -07001601 if (unlikely(!last_request))
1602 goto out;
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05001603
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001604 /* IE len must be evenly divisible by 2 */
1605 if (country_ie_len & 0x01)
1606 goto out;
1607
1608 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
1609 goto out;
1610
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001611 alpha2[0] = country_ie[0];
1612 alpha2[1] = country_ie[1];
1613
1614 if (country_ie[2] == 'I')
1615 env = ENVIRON_INDOOR;
1616 else if (country_ie[2] == 'O')
1617 env = ENVIRON_OUTDOOR;
1618
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001619 /*
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001620 * We will run this only upon a successful connection on cfg80211.
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001621 * We leave conflict resolution to the workqueue, where can hold
1622 * cfg80211_mutex.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001623 */
Luis R. Rodriguezcc0b6fe2009-03-20 23:53:05 -04001624 if (likely(last_request->initiator ==
1625 NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001626 wiphy_idx_valid(last_request->wiphy_idx)))
1627 goto out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001628
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001629 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1630 if (!request)
Dan Carpenterf9f9b6e2010-07-22 13:26:50 +02001631 goto out;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001632
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001633 request->wiphy_idx = get_wiphy_idx(wiphy);
John W. Linville4f366c52010-07-15 14:57:33 -04001634 request->alpha2[0] = alpha2[0];
1635 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001636 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001637 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001638
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001639 mutex_unlock(&reg_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001640
1641 queue_regulatory_request(request);
1642
1643 return;
Luis R. Rodriguez0441d6f2009-02-21 00:04:29 -05001644
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001645out:
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001646 mutex_unlock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001647}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001648
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001649static void restore_alpha2(char *alpha2, bool reset_user)
1650{
1651 /* indicates there is no alpha2 to consider for restoration */
1652 alpha2[0] = '9';
1653 alpha2[1] = '7';
1654
1655 /* The user setting has precedence over the module parameter */
1656 if (is_user_regdom_saved()) {
1657 /* Unless we're asked to ignore it and reset it */
1658 if (reset_user) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001659 REG_DBG_PRINT("Restoring regulatory settings "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001660 "including user preference\n");
1661 user_alpha2[0] = '9';
1662 user_alpha2[1] = '7';
1663
1664 /*
1665 * If we're ignoring user settings, we still need to
1666 * check the module parameter to ensure we put things
1667 * back as they were for a full restore.
1668 */
1669 if (!is_world_regdom(ieee80211_regdom)) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001670 REG_DBG_PRINT("Keeping preference on "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001671 "module parameter ieee80211_regdom: %c%c\n",
1672 ieee80211_regdom[0],
1673 ieee80211_regdom[1]);
1674 alpha2[0] = ieee80211_regdom[0];
1675 alpha2[1] = ieee80211_regdom[1];
1676 }
1677 } else {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001678 REG_DBG_PRINT("Restoring regulatory settings "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001679 "while preserving user preference for: %c%c\n",
1680 user_alpha2[0],
1681 user_alpha2[1]);
1682 alpha2[0] = user_alpha2[0];
1683 alpha2[1] = user_alpha2[1];
1684 }
1685 } else if (!is_world_regdom(ieee80211_regdom)) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001686 REG_DBG_PRINT("Keeping preference on "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001687 "module parameter ieee80211_regdom: %c%c\n",
1688 ieee80211_regdom[0],
1689 ieee80211_regdom[1]);
1690 alpha2[0] = ieee80211_regdom[0];
1691 alpha2[1] = ieee80211_regdom[1];
1692 } else
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001693 REG_DBG_PRINT("Restoring regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001694}
1695
1696/*
1697 * Restoring regulatory settings involves ingoring any
1698 * possibly stale country IE information and user regulatory
1699 * settings if so desired, this includes any beacon hints
1700 * learned as we could have traveled outside to another country
1701 * after disconnection. To restore regulatory settings we do
1702 * exactly what we did at bootup:
1703 *
1704 * - send a core regulatory hint
1705 * - send a user regulatory hint if applicable
1706 *
1707 * Device drivers that send a regulatory hint for a specific country
1708 * keep their own regulatory domain on wiphy->regd so that does does
1709 * not need to be remembered.
1710 */
1711static void restore_regulatory_settings(bool reset_user)
1712{
1713 char alpha2[2];
1714 struct reg_beacon *reg_beacon, *btmp;
1715
1716 mutex_lock(&cfg80211_mutex);
1717 mutex_lock(&reg_mutex);
1718
1719 reset_regdomains();
1720 restore_alpha2(alpha2, reset_user);
1721
1722 /* Clear beacon hints */
1723 spin_lock_bh(&reg_pending_beacons_lock);
1724 if (!list_empty(&reg_pending_beacons)) {
1725 list_for_each_entry_safe(reg_beacon, btmp,
1726 &reg_pending_beacons, list) {
1727 list_del(&reg_beacon->list);
1728 kfree(reg_beacon);
1729 }
1730 }
1731 spin_unlock_bh(&reg_pending_beacons_lock);
1732
1733 if (!list_empty(&reg_beacon_list)) {
1734 list_for_each_entry_safe(reg_beacon, btmp,
1735 &reg_beacon_list, list) {
1736 list_del(&reg_beacon->list);
1737 kfree(reg_beacon);
1738 }
1739 }
1740
1741 /* First restore to the basic regulatory settings */
1742 cfg80211_regdomain = cfg80211_world_regdom;
1743
1744 mutex_unlock(&reg_mutex);
1745 mutex_unlock(&cfg80211_mutex);
1746
1747 regulatory_hint_core(cfg80211_regdomain->alpha2);
1748
1749 /*
1750 * This restores the ieee80211_regdom module parameter
1751 * preference or the last user requested regulatory
1752 * settings, user regulatory settings takes precedence.
1753 */
1754 if (is_an_alpha2(alpha2))
1755 regulatory_hint_user(user_alpha2);
1756}
1757
1758
1759void regulatory_hint_disconnect(void)
1760{
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001761 REG_DBG_PRINT("All devices are disconnected, going to "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001762 "restore regulatory settings\n");
1763 restore_regulatory_settings(false);
1764}
1765
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001766static bool freq_is_chan_12_13_14(u16 freq)
1767{
1768 if (freq == ieee80211_channel_to_frequency(12) ||
1769 freq == ieee80211_channel_to_frequency(13) ||
1770 freq == ieee80211_channel_to_frequency(14))
1771 return true;
1772 return false;
1773}
1774
1775int regulatory_hint_found_beacon(struct wiphy *wiphy,
1776 struct ieee80211_channel *beacon_chan,
1777 gfp_t gfp)
1778{
1779 struct reg_beacon *reg_beacon;
1780
1781 if (likely((beacon_chan->beacon_found ||
1782 (beacon_chan->flags & IEEE80211_CHAN_RADAR) ||
1783 (beacon_chan->band == IEEE80211_BAND_2GHZ &&
1784 !freq_is_chan_12_13_14(beacon_chan->center_freq)))))
1785 return 0;
1786
1787 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
1788 if (!reg_beacon)
1789 return -ENOMEM;
1790
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001791 REG_DBG_PRINT("Found new beacon on "
Luis R. Rodriguez4113f752010-01-04 11:50:11 -05001792 "frequency: %d MHz (Ch %d) on %s\n",
1793 beacon_chan->center_freq,
1794 ieee80211_frequency_to_channel(beacon_chan->center_freq),
1795 wiphy_name(wiphy));
1796
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001797 memcpy(&reg_beacon->chan, beacon_chan,
1798 sizeof(struct ieee80211_channel));
1799
1800
1801 /*
1802 * Since we can be called from BH or and non-BH context
1803 * we must use spin_lock_bh()
1804 */
1805 spin_lock_bh(&reg_pending_beacons_lock);
1806 list_add_tail(&reg_beacon->list, &reg_pending_beacons);
1807 spin_unlock_bh(&reg_pending_beacons_lock);
1808
1809 schedule_work(&reg_work);
1810
1811 return 0;
1812}
1813
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001814static void print_rd_rules(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001815{
1816 unsigned int i;
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001817 const struct ieee80211_reg_rule *reg_rule = NULL;
1818 const struct ieee80211_freq_range *freq_range = NULL;
1819 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001820
Kalle Valo269ac5f2009-12-01 10:47:15 +02001821 printk(KERN_INFO " (start_freq - end_freq @ bandwidth), "
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001822 "(max_antenna_gain, max_eirp)\n");
1823
1824 for (i = 0; i < rd->n_reg_rules; i++) {
1825 reg_rule = &rd->reg_rules[i];
1826 freq_range = &reg_rule->freq_range;
1827 power_rule = &reg_rule->power_rule;
1828
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001829 /*
1830 * There may not be documentation for max antenna gain
1831 * in certain regions
1832 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001833 if (power_rule->max_antenna_gain)
Kalle Valo269ac5f2009-12-01 10:47:15 +02001834 printk(KERN_INFO " (%d KHz - %d KHz @ %d KHz), "
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001835 "(%d mBi, %d mBm)\n",
1836 freq_range->start_freq_khz,
1837 freq_range->end_freq_khz,
1838 freq_range->max_bandwidth_khz,
1839 power_rule->max_antenna_gain,
1840 power_rule->max_eirp);
1841 else
Kalle Valo269ac5f2009-12-01 10:47:15 +02001842 printk(KERN_INFO " (%d KHz - %d KHz @ %d KHz), "
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001843 "(N/A, %d mBm)\n",
1844 freq_range->start_freq_khz,
1845 freq_range->end_freq_khz,
1846 freq_range->max_bandwidth_khz,
1847 power_rule->max_eirp);
1848 }
1849}
1850
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001851static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001852{
1853
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001854 if (is_intersected_alpha2(rd->alpha2)) {
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001855
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001856 if (last_request->initiator ==
1857 NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Johannes Berg79c97e92009-07-07 03:56:12 +02001858 struct cfg80211_registered_device *rdev;
1859 rdev = cfg80211_rdev_by_wiphy_idx(
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001860 last_request->wiphy_idx);
Johannes Berg79c97e92009-07-07 03:56:12 +02001861 if (rdev) {
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001862 printk(KERN_INFO "cfg80211: Current regulatory "
1863 "domain updated by AP to: %c%c\n",
Johannes Berg79c97e92009-07-07 03:56:12 +02001864 rdev->country_ie_alpha2[0],
1865 rdev->country_ie_alpha2[1]);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001866 } else
1867 printk(KERN_INFO "cfg80211: Current regulatory "
Frans Pop55f98932010-03-24 19:46:29 +01001868 "domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001869 } else
Frans Pop55f98932010-03-24 19:46:29 +01001870 printk(KERN_INFO "cfg80211: Current regulatory "
1871 "domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001872 } else if (is_world_regdom(rd->alpha2))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001873 printk(KERN_INFO "cfg80211: World regulatory "
1874 "domain updated:\n");
1875 else {
1876 if (is_unknown_alpha2(rd->alpha2))
1877 printk(KERN_INFO "cfg80211: Regulatory domain "
1878 "changed to driver built-in settings "
1879 "(unknown country)\n");
1880 else
1881 printk(KERN_INFO "cfg80211: Regulatory domain "
1882 "changed to country: %c%c\n",
1883 rd->alpha2[0], rd->alpha2[1]);
1884 }
1885 print_rd_rules(rd);
1886}
1887
Johannes Berg2df78162008-10-28 16:49:41 +01001888static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001889{
1890 printk(KERN_INFO "cfg80211: Regulatory domain: %c%c\n",
1891 rd->alpha2[0], rd->alpha2[1]);
1892 print_rd_rules(rd);
1893}
1894
Johannes Bergd2372b32008-10-24 20:32:20 +02001895/* Takes ownership of rd only if it doesn't fail */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001896static int __set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001897{
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001898 const struct ieee80211_regdomain *intersected_rd = NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +02001899 struct cfg80211_registered_device *rdev = NULL;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001900 struct wiphy *request_wiphy;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001901 /* Some basic sanity checks first */
1902
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001903 if (is_world_regdom(rd->alpha2)) {
Johannes Bergf6037d02008-10-21 11:01:33 +02001904 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001905 return -EINVAL;
1906 update_world_regdomain(rd);
1907 return 0;
1908 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001909
1910 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
1911 !is_unknown_alpha2(rd->alpha2))
1912 return -EINVAL;
1913
Johannes Bergf6037d02008-10-21 11:01:33 +02001914 if (!last_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001915 return -EINVAL;
1916
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001917 /*
1918 * Lets only bother proceeding on the same alpha2 if the current
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001919 * rd is non static (it means CRDA was present and was used last)
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001920 * and the pending request came in from a country IE
1921 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001922 if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001923 /*
1924 * If someone else asked us to change the rd lets only bother
1925 * checking if the alpha2 changes if CRDA was already called
1926 */
John W. Linvillebaeb66f2009-12-18 17:59:02 -05001927 if (!regdom_changes(rd->alpha2))
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001928 return -EINVAL;
1929 }
1930
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001931 /*
1932 * Now lets set the regulatory domain, update all driver channels
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001933 * and finally inform them of what we have done, in case they want
1934 * to review or adjust their own settings based on their own
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001935 * internal EEPROM data
1936 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001937
Johannes Bergf6037d02008-10-21 11:01:33 +02001938 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001939 return -EINVAL;
1940
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08001941 if (!is_valid_rd(rd)) {
1942 printk(KERN_ERR "cfg80211: Invalid "
1943 "regulatory domain detected:\n");
1944 print_regdomain_info(rd);
1945 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001946 }
1947
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001948 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1949
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001950 if (!last_request->intersect) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001951 int r;
1952
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001953 if (last_request->initiator != NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001954 reset_regdomains();
1955 cfg80211_regdomain = rd;
1956 return 0;
1957 }
1958
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001959 /*
1960 * For a driver hint, lets copy the regulatory domain the
1961 * driver wanted to the wiphy to deal with conflicts
1962 */
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001963
Luis R. Rodriguez558f6d32009-06-08 18:54:37 -07001964 /*
1965 * Userspace could have sent two replies with only
1966 * one kernel request.
1967 */
1968 if (request_wiphy->regd)
1969 return -EALREADY;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001970
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001971 r = reg_copy_regd(&request_wiphy->regd, rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001972 if (r)
1973 return r;
1974
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001975 reset_regdomains();
1976 cfg80211_regdomain = rd;
1977 return 0;
1978 }
1979
1980 /* Intersection requires a bit more work */
1981
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001982 if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001983
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001984 intersected_rd = regdom_intersect(rd, cfg80211_regdomain);
1985 if (!intersected_rd)
1986 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001987
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001988 /*
1989 * We can trash what CRDA provided now.
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001990 * However if a driver requested this specific regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001991 * domain we keep it for its private use
1992 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001993 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001994 request_wiphy->regd = rd;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001995 else
1996 kfree(rd);
1997
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001998 rd = NULL;
1999
2000 reset_regdomains();
2001 cfg80211_regdomain = intersected_rd;
2002
2003 return 0;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002004 }
2005
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002006 if (!intersected_rd)
2007 return -EINVAL;
2008
Johannes Berg79c97e92009-07-07 03:56:12 +02002009 rdev = wiphy_to_dev(request_wiphy);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002010
Johannes Berg79c97e92009-07-07 03:56:12 +02002011 rdev->country_ie_alpha2[0] = rd->alpha2[0];
2012 rdev->country_ie_alpha2[1] = rd->alpha2[1];
2013 rdev->env = last_request->country_ie_env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002014
2015 BUG_ON(intersected_rd == rd);
2016
2017 kfree(rd);
2018 rd = NULL;
2019
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002020 reset_regdomains();
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002021 cfg80211_regdomain = intersected_rd;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002022
2023 return 0;
2024}
2025
2026
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002027/*
2028 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002029 * multiple drivers can be ironed out later. Caller must've already
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002030 * kmalloc'd the rd structure. Caller must hold cfg80211_mutex
2031 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002032int set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002033{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002034 int r;
2035
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002036 assert_cfg80211_lock();
2037
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002038 mutex_lock(&reg_mutex);
2039
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002040 /* Note that this doesn't update the wiphys, this is done below */
2041 r = __set_regdom(rd);
Johannes Bergd2372b32008-10-24 20:32:20 +02002042 if (r) {
2043 kfree(rd);
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002044 mutex_unlock(&reg_mutex);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002045 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02002046 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002047
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002048 /* This would make this whole thing pointless */
Luis R. Rodrigueza01ddaf2008-11-12 14:21:59 -08002049 if (!last_request->intersect)
2050 BUG_ON(rd != cfg80211_regdomain);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002051
2052 /* update all wiphys now with the new established regulatory domain */
Johannes Bergf6037d02008-10-21 11:01:33 +02002053 update_all_wiphy_regulatory(last_request->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002054
Luis R. Rodrigueza01ddaf2008-11-12 14:21:59 -08002055 print_regdomain(cfg80211_regdomain);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002056
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04002057 nl80211_send_reg_change_event(last_request);
2058
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002059 mutex_unlock(&reg_mutex);
2060
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002061 return r;
2062}
2063
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002064/* Caller must hold cfg80211_mutex */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002065void reg_device_remove(struct wiphy *wiphy)
2066{
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002067 struct wiphy *request_wiphy = NULL;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002068
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002069 assert_cfg80211_lock();
2070
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002071 mutex_lock(&reg_mutex);
2072
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002073 kfree(wiphy->regd);
2074
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002075 if (last_request)
2076 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002077
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002078 if (!request_wiphy || request_wiphy != wiphy)
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002079 goto out;
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002080
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002081 last_request->wiphy_idx = WIPHY_IDX_STALE;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002082 last_request->country_ie_env = ENVIRON_ANY;
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002083out:
2084 mutex_unlock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002085}
2086
Uwe Kleine-König2fcc9f72010-06-18 09:38:55 +02002087int __init regulatory_init(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002088{
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002089 int err = 0;
Johannes Berg734366d2008-09-15 10:56:48 +02002090
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002091 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
2092 if (IS_ERR(reg_pdev))
2093 return PTR_ERR(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002094
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002095 spin_lock_init(&reg_requests_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002096 spin_lock_init(&reg_pending_beacons_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002097
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002098 cfg80211_regdomain = cfg80211_world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +02002099
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002100 user_alpha2[0] = '9';
2101 user_alpha2[1] = '7';
2102
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002103 /* We always try to get an update for the static regdomain */
2104 err = regulatory_hint_core(cfg80211_regdomain->alpha2);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002105 if (err) {
2106 if (err == -ENOMEM)
2107 return err;
2108 /*
2109 * N.B. kobject_uevent_env() can fail mainly for when we're out
2110 * memory which is handled and propagated appropriately above
2111 * but it can also fail during a netlink_broadcast() or during
2112 * early boot for call_usermodehelper(). For now treat these
2113 * errors as non-fatal.
2114 */
2115 printk(KERN_ERR "cfg80211: kobject_uevent_env() was unable "
2116 "to call CRDA during init");
2117#ifdef CONFIG_CFG80211_REG_DEBUG
2118 /* We want to find out exactly why when debugging */
2119 WARN_ON(err);
2120#endif
2121 }
Johannes Berg734366d2008-09-15 10:56:48 +02002122
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002123 /*
2124 * Finally, if the user set the module parameter treat it
2125 * as a user hint.
2126 */
2127 if (!is_world_regdom(ieee80211_regdom))
2128 regulatory_hint_user(ieee80211_regdom);
2129
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002130 return 0;
2131}
2132
Uwe Kleine-König2fcc9f72010-06-18 09:38:55 +02002133void /* __init_or_exit */ regulatory_exit(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002134{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002135 struct regulatory_request *reg_request, *tmp;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002136 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002137
2138 cancel_work_sync(&reg_work);
2139
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002140 mutex_lock(&cfg80211_mutex);
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002141 mutex_lock(&reg_mutex);
Johannes Berg734366d2008-09-15 10:56:48 +02002142
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002143 reset_regdomains();
Johannes Berg734366d2008-09-15 10:56:48 +02002144
Johannes Bergf6037d02008-10-21 11:01:33 +02002145 kfree(last_request);
2146
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002147 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002148
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002149 spin_lock_bh(&reg_pending_beacons_lock);
2150 if (!list_empty(&reg_pending_beacons)) {
2151 list_for_each_entry_safe(reg_beacon, btmp,
2152 &reg_pending_beacons, list) {
2153 list_del(&reg_beacon->list);
2154 kfree(reg_beacon);
2155 }
2156 }
2157 spin_unlock_bh(&reg_pending_beacons_lock);
2158
2159 if (!list_empty(&reg_beacon_list)) {
2160 list_for_each_entry_safe(reg_beacon, btmp,
2161 &reg_beacon_list, list) {
2162 list_del(&reg_beacon->list);
2163 kfree(reg_beacon);
2164 }
2165 }
2166
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002167 spin_lock(&reg_requests_lock);
2168 if (!list_empty(&reg_requests_list)) {
2169 list_for_each_entry_safe(reg_request, tmp,
2170 &reg_requests_list, list) {
2171 list_del(&reg_request->list);
2172 kfree(reg_request);
2173 }
2174 }
2175 spin_unlock(&reg_requests_lock);
2176
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002177 mutex_unlock(&reg_mutex);
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002178 mutex_unlock(&cfg80211_mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01002179}