blob: 074c1122ce42d4ffb844939c7f68a9602cf5ec68 [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 */
Joe Perchese9c02682010-11-16 19:56:49 -080035
36#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
37
Johannes Berg8318d782008-01-24 19:38:38 +010038#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070040#include <linux/list.h>
41#include <linux/random.h>
John W. Linvillec61029c2010-08-05 14:26:24 -040042#include <linux/ctype.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070043#include <linux/nl80211.h>
44#include <linux/platform_device.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070045#include <net/cfg80211.h>
Johannes Berg8318d782008-01-24 19:38:38 +010046#include "core.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070047#include "reg.h"
John W. Linville3b377ea2009-12-18 17:59:01 -050048#include "regdb.h"
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040049#include "nl80211.h"
Johannes Berg8318d782008-01-24 19:38:38 +010050
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050051#ifdef CONFIG_CFG80211_REG_DEBUG
Joe Perches12c5ffb2011-07-29 14:51:25 -070052#define REG_DBG_PRINT(format, args...) \
53 printk(KERN_DEBUG pr_fmt(format), ##args)
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050054#else
John W. Linville82711952010-01-05 17:57:20 -050055#define REG_DBG_PRINT(args...)
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050056#endif
57
Luis R. Rodrigueza0429942011-11-28 16:47:15 -050058static struct regulatory_request core_request_world = {
59 .initiator = NL80211_REGDOM_SET_BY_CORE,
60 .alpha2[0] = '0',
61 .alpha2[1] = '0',
62 .intersect = false,
63 .processed = true,
64 .country_ie_env = ENVIRON_ANY,
65};
66
Luis R. Rodriguez5166ccd2008-10-30 13:33:56 -070067/* Receipt of information from last regulatory request */
Luis R. Rodrigueza0429942011-11-28 16:47:15 -050068static struct regulatory_request *last_request = &core_request_world;
Johannes Berg734366d2008-09-15 10:56:48 +020069
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070070/* To trigger userspace events */
71static struct platform_device *reg_pdev;
Johannes Berg8318d782008-01-24 19:38:38 +010072
Scott James Remnant4d9d88d2011-03-08 10:45:30 -080073static struct device_type reg_device_type = {
74 .uevent = reg_device_uevent,
75};
76
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050077/*
78 * Central wireless core regulatory domains, we only need two,
Johannes Berg734366d2008-09-15 10:56:48 +020079 * the current one and a world regulatory domain in case we have no
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050080 * information to give us an alpha2
81 */
Luis R. Rodriguezf1303472009-01-30 09:26:42 -080082const struct ieee80211_regdomain *cfg80211_regdomain;
Johannes Berg734366d2008-09-15 10:56:48 +020083
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050084/*
Luis R. Rodriguezabc73812009-07-30 17:38:08 -070085 * Protects static reg.c components:
86 * - cfg80211_world_regdom
87 * - cfg80211_regdom
Luis R. Rodriguezabc73812009-07-30 17:38:08 -070088 * - last_request
89 */
John W. Linville670b7f12010-06-24 11:26:31 -040090static DEFINE_MUTEX(reg_mutex);
Johannes Berg46a5eba2010-09-15 13:28:15 +020091
92static inline void assert_reg_lock(void)
93{
94 lockdep_assert_held(&reg_mutex);
95}
Luis R. Rodriguezabc73812009-07-30 17:38:08 -070096
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -050097/* Used to queue up regulatory hints */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -050098static LIST_HEAD(reg_requests_list);
99static spinlock_t reg_requests_lock;
100
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500101/* Used to queue up beacon hints for review */
102static LIST_HEAD(reg_pending_beacons);
103static spinlock_t reg_pending_beacons_lock;
104
105/* Used to keep track of processed beacon hints */
106static LIST_HEAD(reg_beacon_list);
107
108struct reg_beacon {
109 struct list_head list;
110 struct ieee80211_channel chan;
111};
112
Luis R. Rodriguezf333a7a2010-11-17 21:46:07 -0800113static void reg_todo(struct work_struct *work);
114static DECLARE_WORK(reg_work, reg_todo);
115
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -0700116static void reg_timeout_work(struct work_struct *work);
117static DECLARE_DELAYED_WORK(reg_timeout, reg_timeout_work);
118
Johannes Berg734366d2008-09-15 10:56:48 +0200119/* We keep a static world regulatory domain in case of the absence of CRDA */
120static const struct ieee80211_regdomain world_regdom = {
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800121 .n_reg_rules = 5,
Johannes Berg734366d2008-09-15 10:56:48 +0200122 .alpha2 = "00",
123 .reg_rules = {
Luis R. Rodriguez68798a62009-02-21 00:20:37 -0500124 /* IEEE 802.11b/g, channels 1..11 */
125 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800126 /* IEEE 802.11b/g, channels 12..13. No HT40
127 * channel fits here. */
128 REG_RULE(2467-10, 2472+10, 20, 6, 20,
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500129 NL80211_RRF_PASSIVE_SCAN |
130 NL80211_RRF_NO_IBSS),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800131 /* IEEE 802.11 channel 14 - Only JP enables
132 * this and for 802.11b only */
133 REG_RULE(2484-10, 2484+10, 20, 6, 20,
134 NL80211_RRF_PASSIVE_SCAN |
135 NL80211_RRF_NO_IBSS |
136 NL80211_RRF_NO_OFDM),
137 /* IEEE 802.11a, channel 36..48 */
Luis R. Rodriguezec329ac2009-03-05 21:19:22 -0800138 REG_RULE(5180-10, 5240+10, 40, 6, 20,
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800139 NL80211_RRF_PASSIVE_SCAN |
140 NL80211_RRF_NO_IBSS),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500141
142 /* NB: 5260 MHz - 5700 MHz requies DFS */
143
144 /* IEEE 802.11a, channel 149..165 */
Luis R. Rodriguezec329ac2009-03-05 21:19:22 -0800145 REG_RULE(5745-10, 5825+10, 40, 6, 20,
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500146 NL80211_RRF_PASSIVE_SCAN |
147 NL80211_RRF_NO_IBSS),
Johannes Berg734366d2008-09-15 10:56:48 +0200148 }
149};
150
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200151static const struct ieee80211_regdomain *cfg80211_world_regdom =
152 &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200153
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400154static char *ieee80211_regdom = "00";
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500155static char user_alpha2[2];
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400156
Johannes Berg734366d2008-09-15 10:56:48 +0200157module_param(ieee80211_regdom, charp, 0444);
158MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
159
Luis R. Rodrigueza0429942011-11-28 16:47:15 -0500160static void reset_regdomains(bool full_reset)
Johannes Berg734366d2008-09-15 10:56:48 +0200161{
Johannes Berg942b25c2008-09-15 11:26:47 +0200162 /* avoid freeing static information or freeing something twice */
163 if (cfg80211_regdomain == cfg80211_world_regdom)
164 cfg80211_regdomain = NULL;
165 if (cfg80211_world_regdom == &world_regdom)
166 cfg80211_world_regdom = NULL;
167 if (cfg80211_regdomain == &world_regdom)
168 cfg80211_regdomain = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200169
170 kfree(cfg80211_regdomain);
171 kfree(cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +0200172
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200173 cfg80211_world_regdom = &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200174 cfg80211_regdomain = NULL;
Luis R. Rodrigueza0429942011-11-28 16:47:15 -0500175
176 if (!full_reset)
177 return;
178
179 if (last_request != &core_request_world)
180 kfree(last_request);
181 last_request = &core_request_world;
Johannes Berg734366d2008-09-15 10:56:48 +0200182}
183
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500184/*
185 * Dynamic world regulatory domain requested by the wireless
186 * core upon initialization
187 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200188static void update_world_regdomain(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200189{
Johannes Bergf6037d02008-10-21 11:01:33 +0200190 BUG_ON(!last_request);
Johannes Berg734366d2008-09-15 10:56:48 +0200191
Luis R. Rodrigueza0429942011-11-28 16:47:15 -0500192 reset_regdomains(false);
Johannes Berg734366d2008-09-15 10:56:48 +0200193
194 cfg80211_world_regdom = rd;
195 cfg80211_regdomain = rd;
196}
Johannes Berg734366d2008-09-15 10:56:48 +0200197
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200198bool is_world_regdom(const char *alpha2)
Johannes Berg8318d782008-01-24 19:38:38 +0100199{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700200 if (!alpha2)
201 return false;
202 if (alpha2[0] == '0' && alpha2[1] == '0')
203 return true;
204 return false;
Johannes Berg8318d782008-01-24 19:38:38 +0100205}
206
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200207static bool is_alpha2_set(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700208{
209 if (!alpha2)
210 return false;
211 if (alpha2[0] != 0 && alpha2[1] != 0)
212 return true;
213 return false;
214}
Johannes Berg8318d782008-01-24 19:38:38 +0100215
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200216static bool is_unknown_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700217{
218 if (!alpha2)
219 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500220 /*
221 * Special case where regulatory domain was built by driver
222 * but a specific alpha2 cannot be determined
223 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700224 if (alpha2[0] == '9' && alpha2[1] == '9')
225 return true;
226 return false;
227}
228
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800229static bool is_intersected_alpha2(const char *alpha2)
230{
231 if (!alpha2)
232 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500233 /*
234 * Special case where regulatory domain is the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800235 * result of an intersection between two regulatory domain
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500236 * structures
237 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800238 if (alpha2[0] == '9' && alpha2[1] == '8')
239 return true;
240 return false;
241}
242
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200243static bool is_an_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700244{
245 if (!alpha2)
246 return false;
John W. Linvillec61029c2010-08-05 14:26:24 -0400247 if (isalpha(alpha2[0]) && isalpha(alpha2[1]))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700248 return true;
249 return false;
250}
251
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200252static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700253{
254 if (!alpha2_x || !alpha2_y)
255 return false;
256 if (alpha2_x[0] == alpha2_y[0] &&
257 alpha2_x[1] == alpha2_y[1])
258 return true;
259 return false;
260}
261
Luis R. Rodriguez69b15722009-02-21 00:04:33 -0500262static bool regdom_changes(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700263{
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500264 assert_cfg80211_lock();
265
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700266 if (!cfg80211_regdomain)
267 return true;
268 if (alpha2_equal(cfg80211_regdomain->alpha2, alpha2))
269 return false;
270 return true;
271}
272
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500273/*
274 * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
275 * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
276 * has ever been issued.
277 */
278static bool is_user_regdom_saved(void)
279{
280 if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
281 return false;
282
283 /* This would indicate a mistake on the design */
284 if (WARN((!is_world_regdom(user_alpha2) &&
285 !is_an_alpha2(user_alpha2)),
286 "Unexpected user alpha2: %c%c\n",
287 user_alpha2[0],
288 user_alpha2[1]))
289 return false;
290
291 return true;
292}
293
John W. Linville3b377ea2009-12-18 17:59:01 -0500294static int reg_copy_regd(const struct ieee80211_regdomain **dst_regd,
295 const struct ieee80211_regdomain *src_regd)
296{
297 struct ieee80211_regdomain *regd;
298 int size_of_regd = 0;
299 unsigned int i;
300
301 size_of_regd = sizeof(struct ieee80211_regdomain) +
302 ((src_regd->n_reg_rules + 1) * sizeof(struct ieee80211_reg_rule));
303
304 regd = kzalloc(size_of_regd, GFP_KERNEL);
305 if (!regd)
306 return -ENOMEM;
307
308 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
309
310 for (i = 0; i < src_regd->n_reg_rules; i++)
311 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
312 sizeof(struct ieee80211_reg_rule));
313
314 *dst_regd = regd;
315 return 0;
316}
317
318#ifdef CONFIG_CFG80211_INTERNAL_REGDB
319struct reg_regdb_search_request {
320 char alpha2[2];
321 struct list_head list;
322};
323
324static LIST_HEAD(reg_regdb_search_list);
John W. Linville368d06f2010-03-16 15:40:59 -0400325static DEFINE_MUTEX(reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500326
327static void reg_regdb_search(struct work_struct *work)
328{
329 struct reg_regdb_search_request *request;
330 const struct ieee80211_regdomain *curdom, *regdom;
331 int i, r;
332
John W. Linville368d06f2010-03-16 15:40:59 -0400333 mutex_lock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500334 while (!list_empty(&reg_regdb_search_list)) {
335 request = list_first_entry(&reg_regdb_search_list,
336 struct reg_regdb_search_request,
337 list);
338 list_del(&request->list);
339
340 for (i=0; i<reg_regdb_size; i++) {
341 curdom = reg_regdb[i];
342
343 if (!memcmp(request->alpha2, curdom->alpha2, 2)) {
344 r = reg_copy_regd(&regdom, curdom);
345 if (r)
346 break;
John W. Linville3b377ea2009-12-18 17:59:01 -0500347 mutex_lock(&cfg80211_mutex);
348 set_regdom(regdom);
349 mutex_unlock(&cfg80211_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500350 break;
351 }
352 }
353
354 kfree(request);
355 }
John W. Linville368d06f2010-03-16 15:40:59 -0400356 mutex_unlock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500357}
358
359static DECLARE_WORK(reg_regdb_work, reg_regdb_search);
360
361static void reg_regdb_query(const char *alpha2)
362{
363 struct reg_regdb_search_request *request;
364
365 if (!alpha2)
366 return;
367
368 request = kzalloc(sizeof(struct reg_regdb_search_request), GFP_KERNEL);
369 if (!request)
370 return;
371
372 memcpy(request->alpha2, alpha2, 2);
373
John W. Linville368d06f2010-03-16 15:40:59 -0400374 mutex_lock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500375 list_add_tail(&request->list, &reg_regdb_search_list);
John W. Linville368d06f2010-03-16 15:40:59 -0400376 mutex_unlock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500377
378 schedule_work(&reg_regdb_work);
379}
380#else
381static inline void reg_regdb_query(const char *alpha2) {}
382#endif /* CONFIG_CFG80211_INTERNAL_REGDB */
383
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500384/*
385 * This lets us keep regulatory code which is updated on a regulatory
Scott James Remnant4d9d88d2011-03-08 10:45:30 -0800386 * basis in userspace. Country information is filled in by
387 * reg_device_uevent
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500388 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700389static int call_crda(const char *alpha2)
390{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700391 if (!is_world_regdom((char *) alpha2))
Joe Perchese9c02682010-11-16 19:56:49 -0800392 pr_info("Calling CRDA for country: %c%c\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700393 alpha2[0], alpha2[1]);
394 else
Joe Perchese9c02682010-11-16 19:56:49 -0800395 pr_info("Calling CRDA to update world regulatory domain\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700396
John W. Linville3b377ea2009-12-18 17:59:01 -0500397 /* query internal regulatory database (if it exists) */
398 reg_regdb_query(alpha2);
399
Scott James Remnant4d9d88d2011-03-08 10:45:30 -0800400 return kobject_uevent(&reg_pdev->dev.kobj, KOBJ_CHANGE);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700401}
402
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700403/* Used by nl80211 before kmalloc'ing our regulatory domain */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200404bool reg_is_valid_request(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700405{
Luis R. Rodriguez61405e92009-05-13 17:04:41 -0400406 assert_cfg80211_lock();
407
Johannes Bergf6037d02008-10-21 11:01:33 +0200408 if (!last_request)
409 return false;
410
411 return alpha2_equal(last_request->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700412}
413
414/* Sanity check on a regulatory rule */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200415static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700416{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200417 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700418 u32 freq_diff;
419
Luis R. Rodriguez91e99002008-11-12 14:21:55 -0800420 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700421 return false;
422
423 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
424 return false;
425
426 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
427
Roel Kluinbd05f282009-03-03 22:55:21 +0100428 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
429 freq_range->max_bandwidth_khz > freq_diff)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700430 return false;
431
432 return true;
433}
434
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200435static bool is_valid_rd(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700436{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200437 const struct ieee80211_reg_rule *reg_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700438 unsigned int i;
439
440 if (!rd->n_reg_rules)
441 return false;
442
Luis R. Rodriguez88dc1c32008-11-12 14:22:01 -0800443 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
444 return false;
445
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700446 for (i = 0; i < rd->n_reg_rules; i++) {
447 reg_rule = &rd->reg_rules[i];
448 if (!is_valid_reg_rule(reg_rule))
449 return false;
450 }
451
452 return true;
453}
454
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400455static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range,
456 u32 center_freq_khz,
457 u32 bw_khz)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700458{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400459 u32 start_freq_khz, end_freq_khz;
460
461 start_freq_khz = center_freq_khz - (bw_khz/2);
462 end_freq_khz = center_freq_khz + (bw_khz/2);
463
464 if (start_freq_khz >= freq_range->start_freq_khz &&
465 end_freq_khz <= freq_range->end_freq_khz)
466 return true;
467
468 return false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700469}
470
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800471/**
472 * freq_in_rule_band - tells us if a frequency is in a frequency band
473 * @freq_range: frequency rule we want to query
474 * @freq_khz: frequency we are inquiring about
475 *
476 * This lets us know if a specific frequency rule is or is not relevant to
477 * a specific frequency's band. Bands are device specific and artificial
478 * definitions (the "2.4 GHz band" and the "5 GHz band"), however it is
479 * safe for now to assume that a frequency rule should not be part of a
480 * frequency's band if the start freq or end freq are off by more than 2 GHz.
481 * This resolution can be lowered and should be considered as we add
482 * regulatory rule support for other "bands".
483 **/
484static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
485 u32 freq_khz)
486{
487#define ONE_GHZ_IN_KHZ 1000000
488 if (abs(freq_khz - freq_range->start_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
489 return true;
490 if (abs(freq_khz - freq_range->end_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
491 return true;
492 return false;
493#undef ONE_GHZ_IN_KHZ
494}
495
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500496/*
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500497 * Helper for regdom_intersect(), this does the real
498 * mathematical intersection fun
499 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700500static int reg_rules_intersect(
501 const struct ieee80211_reg_rule *rule1,
502 const struct ieee80211_reg_rule *rule2,
503 struct ieee80211_reg_rule *intersected_rule)
504{
505 const struct ieee80211_freq_range *freq_range1, *freq_range2;
506 struct ieee80211_freq_range *freq_range;
507 const struct ieee80211_power_rule *power_rule1, *power_rule2;
508 struct ieee80211_power_rule *power_rule;
509 u32 freq_diff;
510
511 freq_range1 = &rule1->freq_range;
512 freq_range2 = &rule2->freq_range;
513 freq_range = &intersected_rule->freq_range;
514
515 power_rule1 = &rule1->power_rule;
516 power_rule2 = &rule2->power_rule;
517 power_rule = &intersected_rule->power_rule;
518
519 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
520 freq_range2->start_freq_khz);
521 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
522 freq_range2->end_freq_khz);
523 freq_range->max_bandwidth_khz = min(freq_range1->max_bandwidth_khz,
524 freq_range2->max_bandwidth_khz);
525
526 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
527 if (freq_range->max_bandwidth_khz > freq_diff)
528 freq_range->max_bandwidth_khz = freq_diff;
529
530 power_rule->max_eirp = min(power_rule1->max_eirp,
531 power_rule2->max_eirp);
532 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
533 power_rule2->max_antenna_gain);
534
535 intersected_rule->flags = (rule1->flags | rule2->flags);
536
537 if (!is_valid_reg_rule(intersected_rule))
538 return -EINVAL;
539
540 return 0;
541}
542
543/**
544 * regdom_intersect - do the intersection between two regulatory domains
545 * @rd1: first regulatory domain
546 * @rd2: second regulatory domain
547 *
548 * Use this function to get the intersection between two regulatory domains.
549 * Once completed we will mark the alpha2 for the rd as intersected, "98",
550 * as no one single alpha2 can represent this regulatory domain.
551 *
552 * Returns a pointer to the regulatory domain structure which will hold the
553 * resulting intersection of rules between rd1 and rd2. We will
554 * kzalloc() this structure for you.
555 */
556static struct ieee80211_regdomain *regdom_intersect(
557 const struct ieee80211_regdomain *rd1,
558 const struct ieee80211_regdomain *rd2)
559{
560 int r, size_of_regd;
561 unsigned int x, y;
562 unsigned int num_rules = 0, rule_idx = 0;
563 const struct ieee80211_reg_rule *rule1, *rule2;
564 struct ieee80211_reg_rule *intersected_rule;
565 struct ieee80211_regdomain *rd;
566 /* This is just a dummy holder to help us count */
567 struct ieee80211_reg_rule irule;
568
569 /* Uses the stack temporarily for counter arithmetic */
570 intersected_rule = &irule;
571
572 memset(intersected_rule, 0, sizeof(struct ieee80211_reg_rule));
573
574 if (!rd1 || !rd2)
575 return NULL;
576
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500577 /*
578 * First we get a count of the rules we'll need, then we actually
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700579 * build them. This is to so we can malloc() and free() a
580 * regdomain once. The reason we use reg_rules_intersect() here
581 * is it will return -EINVAL if the rule computed makes no sense.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500582 * All rules that do check out OK are valid.
583 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700584
585 for (x = 0; x < rd1->n_reg_rules; x++) {
586 rule1 = &rd1->reg_rules[x];
587 for (y = 0; y < rd2->n_reg_rules; y++) {
588 rule2 = &rd2->reg_rules[y];
589 if (!reg_rules_intersect(rule1, rule2,
590 intersected_rule))
591 num_rules++;
592 memset(intersected_rule, 0,
593 sizeof(struct ieee80211_reg_rule));
594 }
595 }
596
597 if (!num_rules)
598 return NULL;
599
600 size_of_regd = sizeof(struct ieee80211_regdomain) +
601 ((num_rules + 1) * sizeof(struct ieee80211_reg_rule));
602
603 rd = kzalloc(size_of_regd, GFP_KERNEL);
604 if (!rd)
605 return NULL;
606
607 for (x = 0; x < rd1->n_reg_rules; x++) {
608 rule1 = &rd1->reg_rules[x];
609 for (y = 0; y < rd2->n_reg_rules; y++) {
610 rule2 = &rd2->reg_rules[y];
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500611 /*
612 * This time around instead of using the stack lets
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700613 * write to the target rule directly saving ourselves
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500614 * a memcpy()
615 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700616 intersected_rule = &rd->reg_rules[rule_idx];
617 r = reg_rules_intersect(rule1, rule2,
618 intersected_rule);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500619 /*
620 * No need to memset here the intersected rule here as
621 * we're not using the stack anymore
622 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700623 if (r)
624 continue;
625 rule_idx++;
626 }
627 }
628
629 if (rule_idx != num_rules) {
630 kfree(rd);
631 return NULL;
632 }
633
634 rd->n_reg_rules = num_rules;
635 rd->alpha2[0] = '9';
636 rd->alpha2[1] = '8';
637
638 return rd;
639}
640
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500641/*
642 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
643 * want to just have the channel structure use these
644 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700645static u32 map_regdom_flags(u32 rd_flags)
646{
647 u32 channel_flags = 0;
648 if (rd_flags & NL80211_RRF_PASSIVE_SCAN)
649 channel_flags |= IEEE80211_CHAN_PASSIVE_SCAN;
650 if (rd_flags & NL80211_RRF_NO_IBSS)
651 channel_flags |= IEEE80211_CHAN_NO_IBSS;
652 if (rd_flags & NL80211_RRF_DFS)
653 channel_flags |= IEEE80211_CHAN_RADAR;
654 return channel_flags;
655}
656
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800657static int freq_reg_info_regd(struct wiphy *wiphy,
658 u32 center_freq,
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400659 u32 desired_bw_khz,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800660 const struct ieee80211_reg_rule **reg_rule,
661 const struct ieee80211_regdomain *custom_regd)
Johannes Berg8318d782008-01-24 19:38:38 +0100662{
663 int i;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800664 bool band_rule_found = false;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800665 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400666 bool bw_fits = false;
667
668 if (!desired_bw_khz)
669 desired_bw_khz = MHZ_TO_KHZ(20);
Johannes Berg8318d782008-01-24 19:38:38 +0100670
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800671 regd = custom_regd ? custom_regd : cfg80211_regdomain;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800672
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500673 /*
674 * Follow the driver's regulatory domain, if present, unless a country
675 * IE has been processed or a user wants to help complaince further
676 */
Luis R. Rodriguez2784fe92010-12-15 19:24:11 -0800677 if (!custom_regd &&
678 last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400679 last_request->initiator != NL80211_REGDOM_SET_BY_USER &&
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800680 wiphy->regd)
681 regd = wiphy->regd;
682
683 if (!regd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700684 return -EINVAL;
685
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800686 for (i = 0; i < regd->n_reg_rules; i++) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700687 const struct ieee80211_reg_rule *rr;
688 const struct ieee80211_freq_range *fr = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700689
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800690 rr = &regd->reg_rules[i];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700691 fr = &rr->freq_range;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800692
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500693 /*
694 * We only need to know if one frequency rule was
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800695 * was in center_freq's band, that's enough, so lets
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500696 * not overwrite it once found
697 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800698 if (!band_rule_found)
699 band_rule_found = freq_in_rule_band(fr, center_freq);
700
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400701 bw_fits = reg_does_bw_fit(fr,
702 center_freq,
703 desired_bw_khz);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800704
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400705 if (band_rule_found && bw_fits) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700706 *reg_rule = rr;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400707 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100708 }
709 }
710
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800711 if (!band_rule_found)
712 return -ERANGE;
713
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400714 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700715}
716
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400717int freq_reg_info(struct wiphy *wiphy,
718 u32 center_freq,
719 u32 desired_bw_khz,
720 const struct ieee80211_reg_rule **reg_rule)
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800721{
Luis R. Rodriguezac46d482009-05-01 18:44:50 -0400722 assert_cfg80211_lock();
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400723 return freq_reg_info_regd(wiphy,
724 center_freq,
725 desired_bw_khz,
726 reg_rule,
727 NULL);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800728}
John W. Linville4f366c52010-07-15 14:57:33 -0400729EXPORT_SYMBOL(freq_reg_info);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700730
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530731#ifdef CONFIG_CFG80211_REG_DEBUG
732static const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
733{
734 switch (initiator) {
735 case NL80211_REGDOM_SET_BY_CORE:
736 return "Set by core";
737 case NL80211_REGDOM_SET_BY_USER:
738 return "Set by user";
739 case NL80211_REGDOM_SET_BY_DRIVER:
740 return "Set by driver";
741 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
742 return "Set by country IE";
743 default:
744 WARN_ON(1);
745 return "Set by bug";
746 }
747}
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530748
749static void chan_reg_rule_print_dbg(struct ieee80211_channel *chan,
750 u32 desired_bw_khz,
751 const struct ieee80211_reg_rule *reg_rule)
752{
753 const struct ieee80211_power_rule *power_rule;
754 const struct ieee80211_freq_range *freq_range;
755 char max_antenna_gain[32];
756
757 power_rule = &reg_rule->power_rule;
758 freq_range = &reg_rule->freq_range;
759
760 if (!power_rule->max_antenna_gain)
761 snprintf(max_antenna_gain, 32, "N/A");
762 else
763 snprintf(max_antenna_gain, 32, "%d", power_rule->max_antenna_gain);
764
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700765 REG_DBG_PRINT("Updating information on frequency %d MHz "
Bob Copelandff039c62010-12-29 17:09:02 -0500766 "for a %d MHz width channel with regulatory rule:\n",
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530767 chan->center_freq,
768 KHZ_TO_MHZ(desired_bw_khz));
769
Pavel Roskin56e67862011-09-01 11:54:12 -0400770 REG_DBG_PRINT("%d KHz - %d KHz @ %d KHz), (%s mBi, %d mBm)\n",
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530771 freq_range->start_freq_khz,
772 freq_range->end_freq_khz,
Pavel Roskin56e67862011-09-01 11:54:12 -0400773 freq_range->max_bandwidth_khz,
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530774 max_antenna_gain,
775 power_rule->max_eirp);
776}
777#else
778static void chan_reg_rule_print_dbg(struct ieee80211_channel *chan,
779 u32 desired_bw_khz,
780 const struct ieee80211_reg_rule *reg_rule)
781{
782 return;
783}
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530784#endif
785
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400786/*
787 * Note that right now we assume the desired channel bandwidth
788 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
789 * per channel, the primary and the extension channel). To support
790 * smaller custom bandwidths such as 5 MHz or 10 MHz we'll need a
791 * new ieee80211_channel.target_bw and re run the regulatory check
792 * on the wiphy with the target_bw specified. Then we can simply use
793 * that below for the desired_bw_khz below.
794 */
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -0700795static void handle_channel(struct wiphy *wiphy,
796 enum nl80211_reg_initiator initiator,
797 enum ieee80211_band band,
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800798 unsigned int chan_idx)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700799{
800 int r;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400801 u32 flags, bw_flags = 0;
802 u32 desired_bw_khz = MHZ_TO_KHZ(20);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700803 const struct ieee80211_reg_rule *reg_rule = NULL;
804 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400805 const struct ieee80211_freq_range *freq_range = NULL;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800806 struct ieee80211_supported_band *sband;
807 struct ieee80211_channel *chan;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500808 struct wiphy *request_wiphy = NULL;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800809
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500810 assert_cfg80211_lock();
811
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -0500812 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
813
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800814 sband = wiphy->bands[band];
815 BUG_ON(chan_idx >= sband->n_channels);
816 chan = &sband->channels[chan_idx];
817
818 flags = chan->orig_flags;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700819
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400820 r = freq_reg_info(wiphy,
821 MHZ_TO_KHZ(chan->center_freq),
822 desired_bw_khz,
823 &reg_rule);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700824
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -0700825 if (r) {
826 /*
827 * We will disable all channels that do not match our
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300828 * received regulatory rule unless the hint is coming
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -0700829 * from a Country IE and the Country IE had no information
830 * about a band. The IEEE 802.11 spec allows for an AP
831 * to send only a subset of the regulatory rules allowed,
832 * so an AP in the US that only supports 2.4 GHz may only send
833 * a country IE with information for the 2.4 GHz band
834 * while 5 GHz is still supported.
835 */
836 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
837 r == -ERANGE)
838 return;
839
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700840 REG_DBG_PRINT("Disabling freq %d MHz\n", chan->center_freq);
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -0700841 chan->flags = IEEE80211_CHAN_DISABLED;
Johannes Berg8318d782008-01-24 19:38:38 +0100842 return;
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -0700843 }
Johannes Berg8318d782008-01-24 19:38:38 +0100844
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530845 chan_reg_rule_print_dbg(chan, desired_bw_khz, reg_rule);
846
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700847 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400848 freq_range = &reg_rule->freq_range;
849
850 if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
851 bw_flags = IEEE80211_CHAN_NO_HT40;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700852
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400853 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -0500854 request_wiphy && request_wiphy == wiphy &&
Johannes Berg5be83de2009-11-19 00:56:28 +0100855 request_wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500856 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300857 * This guarantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800858 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500859 * settings
860 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800861 chan->flags = chan->orig_flags =
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400862 map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800863 chan->max_antenna_gain = chan->orig_mag =
864 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800865 chan->max_power = chan->orig_mpwr =
866 (int) MBM_TO_DBM(power_rule->max_eirp);
867 return;
868 }
869
Rajkumar Manoharanaa3d7ee2011-09-14 14:28:17 +0530870 chan->beacon_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400871 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
Johannes Berg8318d782008-01-24 19:38:38 +0100872 chan->max_antenna_gain = min(chan->orig_mag,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700873 (int) MBI_TO_DBI(power_rule->max_antenna_gain));
John W. Linville253898c2008-04-03 15:32:54 -0400874 if (chan->orig_mpwr)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700875 chan->max_power = min(chan->orig_mpwr,
876 (int) MBM_TO_DBM(power_rule->max_eirp));
John W. Linville253898c2008-04-03 15:32:54 -0400877 else
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700878 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Johannes Berg8318d782008-01-24 19:38:38 +0100879}
880
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -0700881static void handle_band(struct wiphy *wiphy,
882 enum ieee80211_band band,
883 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +0100884{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800885 unsigned int i;
886 struct ieee80211_supported_band *sband;
887
888 BUG_ON(!wiphy->bands[band]);
889 sband = wiphy->bands[band];
Johannes Berg8318d782008-01-24 19:38:38 +0100890
891 for (i = 0; i < sband->n_channels; i++)
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -0700892 handle_channel(wiphy, initiator, band, i);
Johannes Berg8318d782008-01-24 19:38:38 +0100893}
894
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400895static bool ignore_reg_update(struct wiphy *wiphy,
896 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800897{
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530898 if (!last_request) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700899 REG_DBG_PRINT("Ignoring regulatory request %s since "
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530900 "last_request is not set\n",
901 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800902 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530903 }
904
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400905 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530906 wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700907 REG_DBG_PRINT("Ignoring regulatory request %s "
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530908 "since the driver uses its own custom "
Joe Perches12c5ffb2011-07-29 14:51:25 -0700909 "regulatory domain\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530910 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800911 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530912 }
913
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500914 /*
915 * wiphy->regd will be set once the device has its own
916 * desired regulatory domain set
917 */
Johannes Berg5be83de2009-11-19 00:56:28 +0100918 if (wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY && !wiphy->regd &&
Luis R. Rodriguez749b5272010-10-20 10:18:54 -0700919 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530920 !is_world_regdom(last_request->alpha2)) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -0700921 REG_DBG_PRINT("Ignoring regulatory request %s "
Mihai Moldovan5bc91db2011-07-25 11:18:58 +0200922 "since the driver requires its own regulatory "
Joe Perches12c5ffb2011-07-29 14:51:25 -0700923 "domain to be set first\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530924 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800925 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530926 }
927
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800928 return false;
929}
930
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500931static void handle_reg_beacon(struct wiphy *wiphy,
932 unsigned int chan_idx,
933 struct reg_beacon *reg_beacon)
934{
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500935 struct ieee80211_supported_band *sband;
936 struct ieee80211_channel *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400937 bool channel_changed = false;
938 struct ieee80211_channel chan_before;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500939
940 assert_cfg80211_lock();
941
942 sband = wiphy->bands[reg_beacon->chan.band];
943 chan = &sband->channels[chan_idx];
944
945 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
946 return;
947
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400948 if (chan->beacon_found)
949 return;
950
951 chan->beacon_found = true;
952
Johannes Berg5be83de2009-11-19 00:56:28 +0100953 if (wiphy->flags & WIPHY_FLAG_DISABLE_BEACON_HINTS)
Luis R. Rodriguez37184242009-07-30 17:43:48 -0700954 return;
955
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400956 chan_before.center_freq = chan->center_freq;
957 chan_before.flags = chan->flags;
958
Luis R. Rodriguez37184242009-07-30 17:43:48 -0700959 if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500960 chan->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400961 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500962 }
963
Luis R. Rodriguez37184242009-07-30 17:43:48 -0700964 if (chan->flags & IEEE80211_CHAN_NO_IBSS) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500965 chan->flags &= ~IEEE80211_CHAN_NO_IBSS;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400966 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500967 }
968
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -0400969 if (channel_changed)
970 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500971}
972
973/*
974 * Called when a scan on a wiphy finds a beacon on
975 * new channel
976 */
977static void wiphy_update_new_beacon(struct wiphy *wiphy,
978 struct reg_beacon *reg_beacon)
979{
980 unsigned int i;
981 struct ieee80211_supported_band *sband;
982
983 assert_cfg80211_lock();
984
985 if (!wiphy->bands[reg_beacon->chan.band])
986 return;
987
988 sband = wiphy->bands[reg_beacon->chan.band];
989
990 for (i = 0; i < sband->n_channels; i++)
991 handle_reg_beacon(wiphy, i, reg_beacon);
992}
993
994/*
995 * Called upon reg changes or a new wiphy is added
996 */
997static void wiphy_update_beacon_reg(struct wiphy *wiphy)
998{
999 unsigned int i;
1000 struct ieee80211_supported_band *sband;
1001 struct reg_beacon *reg_beacon;
1002
1003 assert_cfg80211_lock();
1004
1005 if (list_empty(&reg_beacon_list))
1006 return;
1007
1008 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
1009 if (!wiphy->bands[reg_beacon->chan.band])
1010 continue;
1011 sband = wiphy->bands[reg_beacon->chan.band];
1012 for (i = 0; i < sband->n_channels; i++)
1013 handle_reg_beacon(wiphy, i, reg_beacon);
1014 }
1015}
1016
1017static bool reg_is_world_roaming(struct wiphy *wiphy)
1018{
1019 if (is_world_regdom(cfg80211_regdomain->alpha2) ||
1020 (wiphy->regd && is_world_regdom(wiphy->regd->alpha2)))
1021 return true;
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001022 if (last_request &&
1023 last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Berg5be83de2009-11-19 00:56:28 +01001024 wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001025 return true;
1026 return false;
1027}
1028
1029/* Reap the advantages of previously found beacons */
1030static void reg_process_beacons(struct wiphy *wiphy)
1031{
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001032 /*
1033 * Means we are just firing up cfg80211, so no beacons would
1034 * have been processed yet.
1035 */
1036 if (!last_request)
1037 return;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001038 if (!reg_is_world_roaming(wiphy))
1039 return;
1040 wiphy_update_beacon_reg(wiphy);
1041}
1042
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001043static bool is_ht40_not_allowed(struct ieee80211_channel *chan)
1044{
1045 if (!chan)
1046 return true;
1047 if (chan->flags & IEEE80211_CHAN_DISABLED)
1048 return true;
1049 /* This would happen when regulatory rules disallow HT40 completely */
1050 if (IEEE80211_CHAN_NO_HT40 == (chan->flags & (IEEE80211_CHAN_NO_HT40)))
1051 return true;
1052 return false;
1053}
1054
1055static void reg_process_ht_flags_channel(struct wiphy *wiphy,
1056 enum ieee80211_band band,
1057 unsigned int chan_idx)
1058{
1059 struct ieee80211_supported_band *sband;
1060 struct ieee80211_channel *channel;
1061 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
1062 unsigned int i;
1063
1064 assert_cfg80211_lock();
1065
1066 sband = wiphy->bands[band];
1067 BUG_ON(chan_idx >= sband->n_channels);
1068 channel = &sband->channels[chan_idx];
1069
1070 if (is_ht40_not_allowed(channel)) {
1071 channel->flags |= IEEE80211_CHAN_NO_HT40;
1072 return;
1073 }
1074
1075 /*
1076 * We need to ensure the extension channels exist to
1077 * be able to use HT40- or HT40+, this finds them (or not)
1078 */
1079 for (i = 0; i < sband->n_channels; i++) {
1080 struct ieee80211_channel *c = &sband->channels[i];
1081 if (c->center_freq == (channel->center_freq - 20))
1082 channel_before = c;
1083 if (c->center_freq == (channel->center_freq + 20))
1084 channel_after = c;
1085 }
1086
1087 /*
1088 * Please note that this assumes target bandwidth is 20 MHz,
1089 * if that ever changes we also need to change the below logic
1090 * to include that as well.
1091 */
1092 if (is_ht40_not_allowed(channel_before))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001093 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001094 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001095 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001096
1097 if (is_ht40_not_allowed(channel_after))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001098 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001099 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001100 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001101}
1102
1103static void reg_process_ht_flags_band(struct wiphy *wiphy,
1104 enum ieee80211_band band)
1105{
1106 unsigned int i;
1107 struct ieee80211_supported_band *sband;
1108
1109 BUG_ON(!wiphy->bands[band]);
1110 sband = wiphy->bands[band];
1111
1112 for (i = 0; i < sband->n_channels; i++)
1113 reg_process_ht_flags_channel(wiphy, band, i);
1114}
1115
1116static void reg_process_ht_flags(struct wiphy *wiphy)
1117{
1118 enum ieee80211_band band;
1119
1120 if (!wiphy)
1121 return;
1122
1123 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1124 if (wiphy->bands[band])
1125 reg_process_ht_flags_band(wiphy, band);
1126 }
1127
1128}
1129
Sven Neumanneac03e32011-08-30 23:38:53 +02001130static void wiphy_update_regulatory(struct wiphy *wiphy,
1131 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +01001132{
1133 enum ieee80211_band band;
Luis R. Rodriguezd46e5b12009-01-22 15:05:50 -08001134
Sven Neumanneac03e32011-08-30 23:38:53 +02001135 assert_reg_lock();
1136
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001137 if (ignore_reg_update(wiphy, initiator))
Sven Neumanna203c2a2011-07-12 15:52:07 +02001138 return;
1139
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001140 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001141 if (wiphy->bands[band])
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001142 handle_band(wiphy, band, initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001143 }
Sven Neumanna203c2a2011-07-12 15:52:07 +02001144
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001145 reg_process_beacons(wiphy);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001146 reg_process_ht_flags(wiphy);
Luis R. Rodriguez560e28e2009-01-07 17:43:32 -08001147 if (wiphy->reg_notifier)
Luis R. Rodriguez716f9392009-01-22 15:05:51 -08001148 wiphy->reg_notifier(wiphy, last_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001149}
1150
Sven Neumanneac03e32011-08-30 23:38:53 +02001151void regulatory_update(struct wiphy *wiphy,
1152 enum nl80211_reg_initiator setby)
1153{
1154 mutex_lock(&reg_mutex);
1155 wiphy_update_regulatory(wiphy, setby);
1156 mutex_unlock(&reg_mutex);
1157}
1158
Sven Neumannd7549cb2011-08-30 23:38:54 +02001159static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
1160{
1161 struct cfg80211_registered_device *rdev;
1162
1163 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1164 wiphy_update_regulatory(&rdev->wiphy, initiator);
1165}
1166
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001167static void handle_channel_custom(struct wiphy *wiphy,
1168 enum ieee80211_band band,
1169 unsigned int chan_idx,
1170 const struct ieee80211_regdomain *regd)
1171{
1172 int r;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001173 u32 desired_bw_khz = MHZ_TO_KHZ(20);
1174 u32 bw_flags = 0;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001175 const struct ieee80211_reg_rule *reg_rule = NULL;
1176 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001177 const struct ieee80211_freq_range *freq_range = NULL;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001178 struct ieee80211_supported_band *sband;
1179 struct ieee80211_channel *chan;
1180
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001181 assert_reg_lock();
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001182
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001183 sband = wiphy->bands[band];
1184 BUG_ON(chan_idx >= sband->n_channels);
1185 chan = &sband->channels[chan_idx];
1186
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001187 r = freq_reg_info_regd(wiphy,
1188 MHZ_TO_KHZ(chan->center_freq),
1189 desired_bw_khz,
1190 &reg_rule,
1191 regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001192
1193 if (r) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001194 REG_DBG_PRINT("Disabling freq %d MHz as custom "
Luis R. Rodrigueza6518532010-10-20 10:18:57 -07001195 "regd has no rule that fits a %d MHz "
1196 "wide channel\n",
1197 chan->center_freq,
1198 KHZ_TO_MHZ(desired_bw_khz));
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001199 chan->flags = IEEE80211_CHAN_DISABLED;
1200 return;
1201 }
1202
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301203 chan_reg_rule_print_dbg(chan, desired_bw_khz, reg_rule);
1204
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001205 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001206 freq_range = &reg_rule->freq_range;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001207
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001208 if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
1209 bw_flags = IEEE80211_CHAN_NO_HT40;
1210
1211 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001212 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001213 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
1214}
1215
1216static void handle_band_custom(struct wiphy *wiphy, enum ieee80211_band band,
1217 const struct ieee80211_regdomain *regd)
1218{
1219 unsigned int i;
1220 struct ieee80211_supported_band *sband;
1221
1222 BUG_ON(!wiphy->bands[band]);
1223 sband = wiphy->bands[band];
1224
1225 for (i = 0; i < sband->n_channels; i++)
1226 handle_channel_custom(wiphy, band, i, regd);
1227}
1228
1229/* Used by drivers prior to wiphy registration */
1230void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1231 const struct ieee80211_regdomain *regd)
1232{
1233 enum ieee80211_band band;
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001234 unsigned int bands_set = 0;
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001235
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001236 mutex_lock(&reg_mutex);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001237 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001238 if (!wiphy->bands[band])
1239 continue;
1240 handle_band_custom(wiphy, band, regd);
1241 bands_set++;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001242 }
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001243 mutex_unlock(&reg_mutex);
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001244
1245 /*
1246 * no point in calling this if it won't have any effect
1247 * on your device's supportd bands.
1248 */
1249 WARN_ON(!bands_set);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001250}
1251EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1252
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001253/*
1254 * Return value which can be used by ignore_request() to indicate
1255 * it has been determined we should intersect two regulatory domains
1256 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001257#define REG_INTERSECT 1
1258
Johannes Berg84fa4f42008-10-24 20:32:23 +02001259/* This has the logic which determines when a new request
1260 * should be ignored. */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001261static int ignore_request(struct wiphy *wiphy,
1262 struct regulatory_request *pending_request)
Johannes Berg84fa4f42008-10-24 20:32:23 +02001263{
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001264 struct wiphy *last_wiphy = NULL;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001265
1266 assert_cfg80211_lock();
1267
Johannes Berg84fa4f42008-10-24 20:32:23 +02001268 /* All initial requests are respected */
1269 if (!last_request)
1270 return 0;
1271
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001272 switch (pending_request->initiator) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001273 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001274 return 0;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001275 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001276
1277 last_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1278
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001279 if (unlikely(!is_an_alpha2(pending_request->alpha2)))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001280 return -EINVAL;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001281 if (last_request->initiator ==
1282 NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001283 if (last_wiphy != wiphy) {
Johannes Berg84fa4f42008-10-24 20:32:23 +02001284 /*
1285 * Two cards with two APs claiming different
Thadeu Lima de Souza Cascardo1fe90b02009-08-11 11:18:42 -03001286 * Country IE alpha2s. We could
Johannes Berg84fa4f42008-10-24 20:32:23 +02001287 * intersect them, but that seems unlikely
1288 * to be correct. Reject second one for now.
1289 */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001290 if (regdom_changes(pending_request->alpha2))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001291 return -EOPNOTSUPP;
1292 return -EALREADY;
1293 }
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001294 /*
1295 * Two consecutive Country IE hints on the same wiphy.
1296 * This should be picked up early by the driver/stack
1297 */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001298 if (WARN_ON(regdom_changes(pending_request->alpha2)))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001299 return 0;
1300 return -EALREADY;
1301 }
Luis R. Rodrigueza171fba2010-10-18 17:44:51 -07001302 return 0;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001303 case NL80211_REGDOM_SET_BY_DRIVER:
1304 if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE) {
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001305 if (regdom_changes(pending_request->alpha2))
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001306 return 0;
Johannes Berg84fa4f42008-10-24 20:32:23 +02001307 return -EALREADY;
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001308 }
Luis R. Rodriguezfff32c02009-02-21 00:04:32 -05001309
1310 /*
1311 * This would happen if you unplug and plug your card
1312 * back in or if you add a new device for which the previously
1313 * loaded card also agrees on the regulatory domain.
1314 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001315 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001316 !regdom_changes(pending_request->alpha2))
Luis R. Rodriguezfff32c02009-02-21 00:04:32 -05001317 return -EALREADY;
1318
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001319 return REG_INTERSECT;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001320 case NL80211_REGDOM_SET_BY_USER:
1321 if (last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001322 return REG_INTERSECT;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001323 /*
1324 * If the user knows better the user should set the regdom
1325 * to their country before the IE is picked up
1326 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001327 if (last_request->initiator == NL80211_REGDOM_SET_BY_USER &&
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001328 last_request->intersect)
1329 return -EOPNOTSUPP;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001330 /*
1331 * Process user requests only after previous user/driver/core
1332 * requests have been processed
1333 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001334 if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE ||
1335 last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
1336 last_request->initiator == NL80211_REGDOM_SET_BY_USER) {
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001337 if (regdom_changes(last_request->alpha2))
Luis R. Rodriguez5eebade2009-01-22 15:05:47 -08001338 return -EAGAIN;
1339 }
1340
John W. Linvillebaeb66f2009-12-18 17:59:02 -05001341 if (!regdom_changes(pending_request->alpha2))
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001342 return -EALREADY;
1343
Johannes Berg84fa4f42008-10-24 20:32:23 +02001344 return 0;
1345 }
1346
1347 return -EINVAL;
1348}
1349
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001350static void reg_set_request_processed(void)
1351{
1352 bool need_more_processing = false;
1353
1354 last_request->processed = true;
1355
1356 spin_lock(&reg_requests_lock);
1357 if (!list_empty(&reg_requests_list))
1358 need_more_processing = true;
1359 spin_unlock(&reg_requests_lock);
1360
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07001361 if (last_request->initiator == NL80211_REGDOM_SET_BY_USER)
1362 cancel_delayed_work_sync(&reg_timeout);
1363
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001364 if (need_more_processing)
1365 schedule_work(&reg_work);
1366}
1367
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001368/**
1369 * __regulatory_hint - hint to the wireless core a regulatory domain
1370 * @wiphy: if the hint comes from country information from an AP, this
1371 * is required to be set to the wiphy that received the information
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001372 * @pending_request: the regulatory request currently being processed
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001373 *
1374 * The Wireless subsystem can use this function to hint to the wireless core
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001375 * what it believes should be the current regulatory domain.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001376 *
1377 * Returns zero if all went fine, %-EALREADY if a regulatory domain had
1378 * already been set or other standard error codes.
1379 *
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001380 * Caller must hold &cfg80211_mutex and &reg_mutex
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001381 */
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001382static int __regulatory_hint(struct wiphy *wiphy,
1383 struct regulatory_request *pending_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001384{
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001385 bool intersect = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001386 int r = 0;
1387
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001388 assert_cfg80211_lock();
1389
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001390 r = ignore_request(wiphy, pending_request);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001391
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001392 if (r == REG_INTERSECT) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001393 if (pending_request->initiator ==
1394 NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001395 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001396 if (r) {
1397 kfree(pending_request);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001398 return r;
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001399 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001400 }
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001401 intersect = true;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001402 } else if (r) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001403 /*
1404 * If the regulatory domain being requested by the
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001405 * driver has already been set just copy it to the
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001406 * wiphy
1407 */
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001408 if (r == -EALREADY &&
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001409 pending_request->initiator ==
1410 NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001411 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001412 if (r) {
1413 kfree(pending_request);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001414 return r;
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001415 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001416 r = -EALREADY;
1417 goto new_request;
1418 }
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001419 kfree(pending_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001420 return r;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001421 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001422
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001423new_request:
Luis R. Rodrigueza0429942011-11-28 16:47:15 -05001424 if (last_request != &core_request_world)
1425 kfree(last_request);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001426
1427 last_request = pending_request;
1428 last_request->intersect = intersect;
1429
1430 pending_request = NULL;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001431
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001432 if (last_request->initiator == NL80211_REGDOM_SET_BY_USER) {
1433 user_alpha2[0] = last_request->alpha2[0];
1434 user_alpha2[1] = last_request->alpha2[1];
1435 }
1436
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001437 /* When r == REG_INTERSECT we do need to call CRDA */
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04001438 if (r < 0) {
1439 /*
1440 * Since CRDA will not be called in this case as we already
1441 * have applied the requested regulatory domain before we just
1442 * inform userspace we have processed the request
1443 */
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001444 if (r == -EALREADY) {
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04001445 nl80211_send_reg_change_event(last_request);
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001446 reg_set_request_processed();
1447 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001448 return r;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04001449 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001450
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001451 return call_crda(last_request->alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001452}
1453
Luis R. Rodriguez30a548c2009-05-02 01:17:27 -04001454/* This processes *all* regulatory hints */
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001455static void reg_process_hint(struct regulatory_request *reg_request)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001456{
1457 int r = 0;
1458 struct wiphy *wiphy = NULL;
Yuri Ershovc4c32292010-06-29 15:08:08 +04001459 enum nl80211_reg_initiator initiator = reg_request->initiator;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001460
1461 BUG_ON(!reg_request->alpha2);
1462
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001463 if (wiphy_idx_valid(reg_request->wiphy_idx))
1464 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
1465
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001466 if (reg_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001467 !wiphy) {
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001468 kfree(reg_request);
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001469 return;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001470 }
1471
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001472 r = __regulatory_hint(wiphy, reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001473 /* This is required so that the orig_* parameters are saved */
Johannes Berg5be83de2009-11-19 00:56:28 +01001474 if (r == -EALREADY && wiphy &&
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07001475 wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) {
Yuri Ershovc4c32292010-06-29 15:08:08 +04001476 wiphy_update_regulatory(wiphy, initiator);
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07001477 return;
1478 }
1479
1480 /*
1481 * We only time out user hints, given that they should be the only
1482 * source of bogus requests.
1483 */
Luis R. Rodriguezc989bb12011-04-25 18:35:48 -07001484 if (r != -EALREADY &&
1485 reg_request->initiator == NL80211_REGDOM_SET_BY_USER)
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07001486 schedule_delayed_work(&reg_timeout, msecs_to_jiffies(3142));
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001487}
1488
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001489/*
1490 * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
1491 * Regulatory hints come on a first come first serve basis and we
1492 * must process each one atomically.
1493 */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001494static void reg_process_pending_hints(void)
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001495{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001496 struct regulatory_request *reg_request;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001497
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001498 mutex_lock(&cfg80211_mutex);
1499 mutex_lock(&reg_mutex);
1500
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001501 /* When last_request->processed becomes true this will be rescheduled */
1502 if (last_request && !last_request->processed) {
1503 REG_DBG_PRINT("Pending regulatory request, waiting "
Joe Perches12c5ffb2011-07-29 14:51:25 -07001504 "for it to be processed...\n");
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001505 goto out;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001506 }
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001507
1508 spin_lock(&reg_requests_lock);
1509
1510 if (list_empty(&reg_requests_list)) {
1511 spin_unlock(&reg_requests_lock);
1512 goto out;
1513 }
1514
1515 reg_request = list_first_entry(&reg_requests_list,
1516 struct regulatory_request,
1517 list);
1518 list_del_init(&reg_request->list);
1519
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001520 spin_unlock(&reg_requests_lock);
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001521
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001522 reg_process_hint(reg_request);
1523
1524out:
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001525 mutex_unlock(&reg_mutex);
1526 mutex_unlock(&cfg80211_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001527}
1528
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001529/* Processes beacon hints -- this has nothing to do with country IEs */
1530static void reg_process_pending_beacon_hints(void)
1531{
Johannes Berg79c97e92009-07-07 03:56:12 +02001532 struct cfg80211_registered_device *rdev;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001533 struct reg_beacon *pending_beacon, *tmp;
1534
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001535 /*
1536 * No need to hold the reg_mutex here as we just touch wiphys
1537 * and do not read or access regulatory variables.
1538 */
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001539 mutex_lock(&cfg80211_mutex);
1540
1541 /* This goes through the _pending_ beacon list */
1542 spin_lock_bh(&reg_pending_beacons_lock);
1543
1544 if (list_empty(&reg_pending_beacons)) {
1545 spin_unlock_bh(&reg_pending_beacons_lock);
1546 goto out;
1547 }
1548
1549 list_for_each_entry_safe(pending_beacon, tmp,
1550 &reg_pending_beacons, list) {
1551
1552 list_del_init(&pending_beacon->list);
1553
1554 /* Applies the beacon hint to current wiphys */
Johannes Berg79c97e92009-07-07 03:56:12 +02001555 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1556 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001557
1558 /* Remembers the beacon hint for new wiphys or reg changes */
1559 list_add_tail(&pending_beacon->list, &reg_beacon_list);
1560 }
1561
1562 spin_unlock_bh(&reg_pending_beacons_lock);
1563out:
1564 mutex_unlock(&cfg80211_mutex);
1565}
1566
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001567static void reg_todo(struct work_struct *work)
1568{
1569 reg_process_pending_hints();
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001570 reg_process_pending_beacon_hints();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001571}
1572
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001573static void queue_regulatory_request(struct regulatory_request *request)
1574{
John W. Linvillec61029c2010-08-05 14:26:24 -04001575 if (isalpha(request->alpha2[0]))
1576 request->alpha2[0] = toupper(request->alpha2[0]);
1577 if (isalpha(request->alpha2[1]))
1578 request->alpha2[1] = toupper(request->alpha2[1]);
1579
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001580 spin_lock(&reg_requests_lock);
1581 list_add_tail(&request->list, &reg_requests_list);
1582 spin_unlock(&reg_requests_lock);
1583
1584 schedule_work(&reg_work);
1585}
1586
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001587/*
1588 * Core regulatory hint -- happens during cfg80211_init()
1589 * and when we restore regulatory settings.
1590 */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001591static int regulatory_hint_core(const char *alpha2)
1592{
1593 struct regulatory_request *request;
1594
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001595 request = kzalloc(sizeof(struct regulatory_request),
1596 GFP_KERNEL);
1597 if (!request)
1598 return -ENOMEM;
1599
1600 request->alpha2[0] = alpha2[0];
1601 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001602 request->initiator = NL80211_REGDOM_SET_BY_CORE;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001603
Luis R. Rodriguez31e99722010-11-17 21:46:06 -08001604 queue_regulatory_request(request);
Luis R. Rodriguez5078b2e2009-05-13 17:04:42 -04001605
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001606 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001607}
1608
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001609/* User hints */
1610int regulatory_hint_user(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001611{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001612 struct regulatory_request *request;
1613
Johannes Bergbe3d4812008-10-24 20:32:21 +02001614 BUG_ON(!alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001615
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001616 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1617 if (!request)
1618 return -ENOMEM;
1619
1620 request->wiphy_idx = WIPHY_IDX_STALE;
1621 request->alpha2[0] = alpha2[0];
1622 request->alpha2[1] = alpha2[1];
Luis R. Rodrigueze12822e2010-01-04 11:37:39 -05001623 request->initiator = NL80211_REGDOM_SET_BY_USER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001624
1625 queue_regulatory_request(request);
1626
1627 return 0;
1628}
1629
1630/* Driver hints */
1631int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
1632{
1633 struct regulatory_request *request;
1634
1635 BUG_ON(!alpha2);
1636 BUG_ON(!wiphy);
1637
1638 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1639 if (!request)
1640 return -ENOMEM;
1641
1642 request->wiphy_idx = get_wiphy_idx(wiphy);
1643
1644 /* Must have registered wiphy first */
1645 BUG_ON(!wiphy_idx_valid(request->wiphy_idx));
1646
1647 request->alpha2[0] = alpha2[0];
1648 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001649 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001650
1651 queue_regulatory_request(request);
1652
1653 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001654}
1655EXPORT_SYMBOL(regulatory_hint);
1656
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001657/*
1658 * We hold wdev_lock() here so we cannot hold cfg80211_mutex() and
1659 * therefore cannot iterate over the rdev list here.
1660 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001661void regulatory_hint_11d(struct wiphy *wiphy,
Luis R. Rodriguez84920e32010-01-14 20:08:20 -05001662 enum ieee80211_band band,
1663 u8 *country_ie,
1664 u8 country_ie_len)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001665{
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001666 char alpha2[2];
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001667 enum environment_cap env = ENVIRON_ANY;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001668 struct regulatory_request *request;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001669
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001670 mutex_lock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001671
Luis R. Rodriguez9828b012009-07-30 17:38:06 -07001672 if (unlikely(!last_request))
1673 goto out;
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05001674
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001675 /* IE len must be evenly divisible by 2 */
1676 if (country_ie_len & 0x01)
1677 goto out;
1678
1679 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
1680 goto out;
1681
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001682 alpha2[0] = country_ie[0];
1683 alpha2[1] = country_ie[1];
1684
1685 if (country_ie[2] == 'I')
1686 env = ENVIRON_INDOOR;
1687 else if (country_ie[2] == 'O')
1688 env = ENVIRON_OUTDOOR;
1689
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001690 /*
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001691 * We will run this only upon a successful connection on cfg80211.
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001692 * We leave conflict resolution to the workqueue, where can hold
1693 * cfg80211_mutex.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001694 */
Luis R. Rodriguezcc0b6fe2009-03-20 23:53:05 -04001695 if (likely(last_request->initiator ==
1696 NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001697 wiphy_idx_valid(last_request->wiphy_idx)))
1698 goto out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001699
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001700 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1701 if (!request)
Dan Carpenterf9f9b6e2010-07-22 13:26:50 +02001702 goto out;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001703
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001704 request->wiphy_idx = get_wiphy_idx(wiphy);
John W. Linville4f366c52010-07-15 14:57:33 -04001705 request->alpha2[0] = alpha2[0];
1706 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001707 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001708 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001709
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001710 mutex_unlock(&reg_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001711
1712 queue_regulatory_request(request);
1713
1714 return;
Luis R. Rodriguez0441d6f2009-02-21 00:04:29 -05001715
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001716out:
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001717 mutex_unlock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001718}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001719
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001720static void restore_alpha2(char *alpha2, bool reset_user)
1721{
1722 /* indicates there is no alpha2 to consider for restoration */
1723 alpha2[0] = '9';
1724 alpha2[1] = '7';
1725
1726 /* The user setting has precedence over the module parameter */
1727 if (is_user_regdom_saved()) {
1728 /* Unless we're asked to ignore it and reset it */
1729 if (reset_user) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001730 REG_DBG_PRINT("Restoring regulatory settings "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001731 "including user preference\n");
1732 user_alpha2[0] = '9';
1733 user_alpha2[1] = '7';
1734
1735 /*
1736 * If we're ignoring user settings, we still need to
1737 * check the module parameter to ensure we put things
1738 * back as they were for a full restore.
1739 */
1740 if (!is_world_regdom(ieee80211_regdom)) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001741 REG_DBG_PRINT("Keeping preference on "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001742 "module parameter ieee80211_regdom: %c%c\n",
1743 ieee80211_regdom[0],
1744 ieee80211_regdom[1]);
1745 alpha2[0] = ieee80211_regdom[0];
1746 alpha2[1] = ieee80211_regdom[1];
1747 }
1748 } else {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001749 REG_DBG_PRINT("Restoring regulatory settings "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001750 "while preserving user preference for: %c%c\n",
1751 user_alpha2[0],
1752 user_alpha2[1]);
1753 alpha2[0] = user_alpha2[0];
1754 alpha2[1] = user_alpha2[1];
1755 }
1756 } else if (!is_world_regdom(ieee80211_regdom)) {
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001757 REG_DBG_PRINT("Keeping preference on "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001758 "module parameter ieee80211_regdom: %c%c\n",
1759 ieee80211_regdom[0],
1760 ieee80211_regdom[1]);
1761 alpha2[0] = ieee80211_regdom[0];
1762 alpha2[1] = ieee80211_regdom[1];
1763 } else
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001764 REG_DBG_PRINT("Restoring regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001765}
1766
1767/*
1768 * Restoring regulatory settings involves ingoring any
1769 * possibly stale country IE information and user regulatory
1770 * settings if so desired, this includes any beacon hints
1771 * learned as we could have traveled outside to another country
1772 * after disconnection. To restore regulatory settings we do
1773 * exactly what we did at bootup:
1774 *
1775 * - send a core regulatory hint
1776 * - send a user regulatory hint if applicable
1777 *
1778 * Device drivers that send a regulatory hint for a specific country
1779 * keep their own regulatory domain on wiphy->regd so that does does
1780 * not need to be remembered.
1781 */
1782static void restore_regulatory_settings(bool reset_user)
1783{
1784 char alpha2[2];
1785 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguez14609552011-04-05 10:49:03 -07001786 struct regulatory_request *reg_request, *tmp;
1787 LIST_HEAD(tmp_reg_req_list);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001788
1789 mutex_lock(&cfg80211_mutex);
1790 mutex_lock(&reg_mutex);
1791
Luis R. Rodrigueza0429942011-11-28 16:47:15 -05001792 reset_regdomains(true);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001793 restore_alpha2(alpha2, reset_user);
1794
Luis R. Rodriguez14609552011-04-05 10:49:03 -07001795 /*
1796 * If there's any pending requests we simply
1797 * stash them to a temporary pending queue and
1798 * add then after we've restored regulatory
1799 * settings.
1800 */
1801 spin_lock(&reg_requests_lock);
1802 if (!list_empty(&reg_requests_list)) {
1803 list_for_each_entry_safe(reg_request, tmp,
1804 &reg_requests_list, list) {
1805 if (reg_request->initiator !=
1806 NL80211_REGDOM_SET_BY_USER)
1807 continue;
1808 list_del(&reg_request->list);
1809 list_add_tail(&reg_request->list, &tmp_reg_req_list);
1810 }
1811 }
1812 spin_unlock(&reg_requests_lock);
1813
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001814 /* Clear beacon hints */
1815 spin_lock_bh(&reg_pending_beacons_lock);
1816 if (!list_empty(&reg_pending_beacons)) {
1817 list_for_each_entry_safe(reg_beacon, btmp,
1818 &reg_pending_beacons, list) {
1819 list_del(&reg_beacon->list);
1820 kfree(reg_beacon);
1821 }
1822 }
1823 spin_unlock_bh(&reg_pending_beacons_lock);
1824
1825 if (!list_empty(&reg_beacon_list)) {
1826 list_for_each_entry_safe(reg_beacon, btmp,
1827 &reg_beacon_list, list) {
1828 list_del(&reg_beacon->list);
1829 kfree(reg_beacon);
1830 }
1831 }
1832
1833 /* First restore to the basic regulatory settings */
1834 cfg80211_regdomain = cfg80211_world_regdom;
1835
1836 mutex_unlock(&reg_mutex);
1837 mutex_unlock(&cfg80211_mutex);
1838
1839 regulatory_hint_core(cfg80211_regdomain->alpha2);
1840
1841 /*
1842 * This restores the ieee80211_regdom module parameter
1843 * preference or the last user requested regulatory
1844 * settings, user regulatory settings takes precedence.
1845 */
1846 if (is_an_alpha2(alpha2))
1847 regulatory_hint_user(user_alpha2);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001848
Luis R. Rodriguez14609552011-04-05 10:49:03 -07001849 if (list_empty(&tmp_reg_req_list))
1850 return;
1851
1852 mutex_lock(&cfg80211_mutex);
1853 mutex_lock(&reg_mutex);
1854
1855 spin_lock(&reg_requests_lock);
1856 list_for_each_entry_safe(reg_request, tmp, &tmp_reg_req_list, list) {
1857 REG_DBG_PRINT("Adding request for country %c%c back "
1858 "into the queue\n",
1859 reg_request->alpha2[0],
1860 reg_request->alpha2[1]);
1861 list_del(&reg_request->list);
1862 list_add_tail(&reg_request->list, &reg_requests_list);
1863 }
1864 spin_unlock(&reg_requests_lock);
1865
1866 mutex_unlock(&reg_mutex);
1867 mutex_unlock(&cfg80211_mutex);
1868
1869 REG_DBG_PRINT("Kicking the queue\n");
1870
1871 schedule_work(&reg_work);
1872}
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001873
1874void regulatory_hint_disconnect(void)
1875{
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001876 REG_DBG_PRINT("All devices are disconnected, going to "
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001877 "restore regulatory settings\n");
1878 restore_regulatory_settings(false);
1879}
1880
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001881static bool freq_is_chan_12_13_14(u16 freq)
1882{
Bruno Randolf59eb21a2011-01-17 13:37:28 +09001883 if (freq == ieee80211_channel_to_frequency(12, IEEE80211_BAND_2GHZ) ||
1884 freq == ieee80211_channel_to_frequency(13, IEEE80211_BAND_2GHZ) ||
1885 freq == ieee80211_channel_to_frequency(14, IEEE80211_BAND_2GHZ))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001886 return true;
1887 return false;
1888}
1889
1890int regulatory_hint_found_beacon(struct wiphy *wiphy,
1891 struct ieee80211_channel *beacon_chan,
1892 gfp_t gfp)
1893{
1894 struct reg_beacon *reg_beacon;
1895
1896 if (likely((beacon_chan->beacon_found ||
1897 (beacon_chan->flags & IEEE80211_CHAN_RADAR) ||
1898 (beacon_chan->band == IEEE80211_BAND_2GHZ &&
1899 !freq_is_chan_12_13_14(beacon_chan->center_freq)))))
1900 return 0;
1901
1902 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
1903 if (!reg_beacon)
1904 return -ENOMEM;
1905
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07001906 REG_DBG_PRINT("Found new beacon on "
Luis R. Rodriguez4113f752010-01-04 11:50:11 -05001907 "frequency: %d MHz (Ch %d) on %s\n",
1908 beacon_chan->center_freq,
1909 ieee80211_frequency_to_channel(beacon_chan->center_freq),
1910 wiphy_name(wiphy));
1911
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001912 memcpy(&reg_beacon->chan, beacon_chan,
1913 sizeof(struct ieee80211_channel));
1914
1915
1916 /*
1917 * Since we can be called from BH or and non-BH context
1918 * we must use spin_lock_bh()
1919 */
1920 spin_lock_bh(&reg_pending_beacons_lock);
1921 list_add_tail(&reg_beacon->list, &reg_pending_beacons);
1922 spin_unlock_bh(&reg_pending_beacons_lock);
1923
1924 schedule_work(&reg_work);
1925
1926 return 0;
1927}
1928
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001929static void print_rd_rules(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001930{
1931 unsigned int i;
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001932 const struct ieee80211_reg_rule *reg_rule = NULL;
1933 const struct ieee80211_freq_range *freq_range = NULL;
1934 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001935
Joe Perchese9c02682010-11-16 19:56:49 -08001936 pr_info(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001937
1938 for (i = 0; i < rd->n_reg_rules; i++) {
1939 reg_rule = &rd->reg_rules[i];
1940 freq_range = &reg_rule->freq_range;
1941 power_rule = &reg_rule->power_rule;
1942
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001943 /*
1944 * There may not be documentation for max antenna gain
1945 * in certain regions
1946 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001947 if (power_rule->max_antenna_gain)
Joe Perchese9c02682010-11-16 19:56:49 -08001948 pr_info(" (%d KHz - %d KHz @ %d KHz), (%d mBi, %d mBm)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001949 freq_range->start_freq_khz,
1950 freq_range->end_freq_khz,
1951 freq_range->max_bandwidth_khz,
1952 power_rule->max_antenna_gain,
1953 power_rule->max_eirp);
1954 else
Joe Perchese9c02682010-11-16 19:56:49 -08001955 pr_info(" (%d KHz - %d KHz @ %d KHz), (N/A, %d mBm)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001956 freq_range->start_freq_khz,
1957 freq_range->end_freq_khz,
1958 freq_range->max_bandwidth_khz,
1959 power_rule->max_eirp);
1960 }
1961}
1962
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001963static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001964{
1965
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001966 if (is_intersected_alpha2(rd->alpha2)) {
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001967
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001968 if (last_request->initiator ==
1969 NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Johannes Berg79c97e92009-07-07 03:56:12 +02001970 struct cfg80211_registered_device *rdev;
1971 rdev = cfg80211_rdev_by_wiphy_idx(
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001972 last_request->wiphy_idx);
Johannes Berg79c97e92009-07-07 03:56:12 +02001973 if (rdev) {
Joe Perchese9c02682010-11-16 19:56:49 -08001974 pr_info("Current regulatory domain updated by AP to: %c%c\n",
Johannes Berg79c97e92009-07-07 03:56:12 +02001975 rdev->country_ie_alpha2[0],
1976 rdev->country_ie_alpha2[1]);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001977 } else
Joe Perchese9c02682010-11-16 19:56:49 -08001978 pr_info("Current regulatory domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001979 } else
Joe Perchese9c02682010-11-16 19:56:49 -08001980 pr_info("Current regulatory domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001981 } else if (is_world_regdom(rd->alpha2))
Joe Perchese9c02682010-11-16 19:56:49 -08001982 pr_info("World regulatory domain updated:\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001983 else {
1984 if (is_unknown_alpha2(rd->alpha2))
Joe Perchese9c02682010-11-16 19:56:49 -08001985 pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001986 else
Joe Perchese9c02682010-11-16 19:56:49 -08001987 pr_info("Regulatory domain changed to country: %c%c\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001988 rd->alpha2[0], rd->alpha2[1]);
1989 }
1990 print_rd_rules(rd);
1991}
1992
Johannes Berg2df78162008-10-28 16:49:41 +01001993static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001994{
Joe Perchese9c02682010-11-16 19:56:49 -08001995 pr_info("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001996 print_rd_rules(rd);
1997}
1998
Johannes Bergd2372b32008-10-24 20:32:20 +02001999/* Takes ownership of rd only if it doesn't fail */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002000static int __set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002001{
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002002 const struct ieee80211_regdomain *intersected_rd = NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +02002003 struct cfg80211_registered_device *rdev = NULL;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002004 struct wiphy *request_wiphy;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002005 /* Some basic sanity checks first */
2006
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002007 if (is_world_regdom(rd->alpha2)) {
Johannes Bergf6037d02008-10-21 11:01:33 +02002008 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002009 return -EINVAL;
2010 update_world_regdomain(rd);
2011 return 0;
2012 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002013
2014 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
2015 !is_unknown_alpha2(rd->alpha2))
2016 return -EINVAL;
2017
Johannes Bergf6037d02008-10-21 11:01:33 +02002018 if (!last_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002019 return -EINVAL;
2020
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002021 /*
2022 * Lets only bother proceeding on the same alpha2 if the current
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002023 * rd is non static (it means CRDA was present and was used last)
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002024 * and the pending request came in from a country IE
2025 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002026 if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002027 /*
2028 * If someone else asked us to change the rd lets only bother
2029 * checking if the alpha2 changes if CRDA was already called
2030 */
John W. Linvillebaeb66f2009-12-18 17:59:02 -05002031 if (!regdom_changes(rd->alpha2))
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002032 return -EINVAL;
2033 }
2034
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002035 /*
2036 * Now lets set the regulatory domain, update all driver channels
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002037 * and finally inform them of what we have done, in case they want
2038 * to review or adjust their own settings based on their own
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002039 * internal EEPROM data
2040 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002041
Johannes Bergf6037d02008-10-21 11:01:33 +02002042 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002043 return -EINVAL;
2044
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002045 if (!is_valid_rd(rd)) {
Joe Perchese9c02682010-11-16 19:56:49 -08002046 pr_err("Invalid regulatory domain detected:\n");
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002047 print_regdomain_info(rd);
2048 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002049 }
2050
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002051 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
Luis R. Rodriguez0bac71a2011-11-28 16:47:16 -05002052 if (!request_wiphy &&
2053 (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
2054 last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)) {
2055 schedule_delayed_work(&reg_timeout, 0);
Johannes Bergde3584b2011-11-21 10:44:00 +01002056 return -ENODEV;
2057 }
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002058
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002059 if (!last_request->intersect) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002060 int r;
2061
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002062 if (last_request->initiator != NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodrigueza0429942011-11-28 16:47:15 -05002063 reset_regdomains(false);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002064 cfg80211_regdomain = rd;
2065 return 0;
2066 }
2067
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002068 /*
2069 * For a driver hint, lets copy the regulatory domain the
2070 * driver wanted to the wiphy to deal with conflicts
2071 */
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002072
Luis R. Rodriguez558f6d32009-06-08 18:54:37 -07002073 /*
2074 * Userspace could have sent two replies with only
2075 * one kernel request.
2076 */
2077 if (request_wiphy->regd)
2078 return -EALREADY;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002079
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002080 r = reg_copy_regd(&request_wiphy->regd, rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002081 if (r)
2082 return r;
2083
Luis R. Rodrigueza0429942011-11-28 16:47:15 -05002084 reset_regdomains(false);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002085 cfg80211_regdomain = rd;
2086 return 0;
2087 }
2088
2089 /* Intersection requires a bit more work */
2090
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002091 if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002092
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002093 intersected_rd = regdom_intersect(rd, cfg80211_regdomain);
2094 if (!intersected_rd)
2095 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002096
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002097 /*
2098 * We can trash what CRDA provided now.
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002099 * However if a driver requested this specific regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002100 * domain we keep it for its private use
2101 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002102 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002103 request_wiphy->regd = rd;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002104 else
2105 kfree(rd);
2106
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002107 rd = NULL;
2108
Luis R. Rodrigueza0429942011-11-28 16:47:15 -05002109 reset_regdomains(false);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002110 cfg80211_regdomain = intersected_rd;
2111
2112 return 0;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002113 }
2114
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002115 if (!intersected_rd)
2116 return -EINVAL;
2117
Johannes Berg79c97e92009-07-07 03:56:12 +02002118 rdev = wiphy_to_dev(request_wiphy);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002119
Johannes Berg79c97e92009-07-07 03:56:12 +02002120 rdev->country_ie_alpha2[0] = rd->alpha2[0];
2121 rdev->country_ie_alpha2[1] = rd->alpha2[1];
2122 rdev->env = last_request->country_ie_env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002123
2124 BUG_ON(intersected_rd == rd);
2125
2126 kfree(rd);
2127 rd = NULL;
2128
Luis R. Rodrigueza0429942011-11-28 16:47:15 -05002129 reset_regdomains(false);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002130 cfg80211_regdomain = intersected_rd;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002131
2132 return 0;
2133}
2134
2135
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002136/*
2137 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002138 * multiple drivers can be ironed out later. Caller must've already
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002139 * kmalloc'd the rd structure. Caller must hold cfg80211_mutex
2140 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002141int set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002142{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002143 int r;
2144
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002145 assert_cfg80211_lock();
2146
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002147 mutex_lock(&reg_mutex);
2148
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002149 /* Note that this doesn't update the wiphys, this is done below */
2150 r = __set_regdom(rd);
Johannes Bergd2372b32008-10-24 20:32:20 +02002151 if (r) {
2152 kfree(rd);
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002153 mutex_unlock(&reg_mutex);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002154 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02002155 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002156
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002157 /* This would make this whole thing pointless */
Luis R. Rodrigueza01ddaf2008-11-12 14:21:59 -08002158 if (!last_request->intersect)
2159 BUG_ON(rd != cfg80211_regdomain);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002160
2161 /* update all wiphys now with the new established regulatory domain */
Johannes Bergf6037d02008-10-21 11:01:33 +02002162 update_all_wiphy_regulatory(last_request->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002163
Luis R. Rodrigueza01ddaf2008-11-12 14:21:59 -08002164 print_regdomain(cfg80211_regdomain);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002165
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04002166 nl80211_send_reg_change_event(last_request);
2167
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002168 reg_set_request_processed();
2169
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002170 mutex_unlock(&reg_mutex);
2171
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002172 return r;
2173}
2174
Scott James Remnant4d9d88d2011-03-08 10:45:30 -08002175#ifdef CONFIG_HOTPLUG
2176int reg_device_uevent(struct device *dev, struct kobj_uevent_env *env)
2177{
2178 if (last_request && !last_request->processed) {
2179 if (add_uevent_var(env, "COUNTRY=%c%c",
2180 last_request->alpha2[0],
2181 last_request->alpha2[1]))
2182 return -ENOMEM;
2183 }
2184
2185 return 0;
2186}
2187#else
2188int reg_device_uevent(struct device *dev, struct kobj_uevent_env *env)
2189{
2190 return -ENODEV;
2191}
2192#endif /* CONFIG_HOTPLUG */
2193
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002194/* Caller must hold cfg80211_mutex */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002195void reg_device_remove(struct wiphy *wiphy)
2196{
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002197 struct wiphy *request_wiphy = NULL;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002198
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002199 assert_cfg80211_lock();
2200
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002201 mutex_lock(&reg_mutex);
2202
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002203 kfree(wiphy->regd);
2204
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002205 if (last_request)
2206 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002207
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002208 if (!request_wiphy || request_wiphy != wiphy)
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002209 goto out;
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002210
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002211 last_request->wiphy_idx = WIPHY_IDX_STALE;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002212 last_request->country_ie_env = ENVIRON_ANY;
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002213out:
2214 mutex_unlock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002215}
2216
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002217static void reg_timeout_work(struct work_struct *work)
2218{
2219 REG_DBG_PRINT("Timeout while waiting for CRDA to reply, "
Joe Perches12c5ffb2011-07-29 14:51:25 -07002220 "restoring regulatory settings\n");
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002221 restore_regulatory_settings(true);
2222}
2223
Uwe Kleine-König2fcc9f72010-06-18 09:38:55 +02002224int __init regulatory_init(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002225{
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002226 int err = 0;
Johannes Berg734366d2008-09-15 10:56:48 +02002227
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002228 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
2229 if (IS_ERR(reg_pdev))
2230 return PTR_ERR(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002231
Scott James Remnant4d9d88d2011-03-08 10:45:30 -08002232 reg_pdev->dev.type = &reg_device_type;
2233
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002234 spin_lock_init(&reg_requests_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002235 spin_lock_init(&reg_pending_beacons_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002236
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002237 cfg80211_regdomain = cfg80211_world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +02002238
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002239 user_alpha2[0] = '9';
2240 user_alpha2[1] = '7';
2241
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002242 /* We always try to get an update for the static regdomain */
2243 err = regulatory_hint_core(cfg80211_regdomain->alpha2);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002244 if (err) {
2245 if (err == -ENOMEM)
2246 return err;
2247 /*
2248 * N.B. kobject_uevent_env() can fail mainly for when we're out
2249 * memory which is handled and propagated appropriately above
2250 * but it can also fail during a netlink_broadcast() or during
2251 * early boot for call_usermodehelper(). For now treat these
2252 * errors as non-fatal.
2253 */
Joe Perchese9c02682010-11-16 19:56:49 -08002254 pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002255#ifdef CONFIG_CFG80211_REG_DEBUG
2256 /* We want to find out exactly why when debugging */
2257 WARN_ON(err);
2258#endif
2259 }
Johannes Berg734366d2008-09-15 10:56:48 +02002260
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002261 /*
2262 * Finally, if the user set the module parameter treat it
2263 * as a user hint.
2264 */
2265 if (!is_world_regdom(ieee80211_regdom))
2266 regulatory_hint_user(ieee80211_regdom);
2267
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002268 return 0;
2269}
2270
Uwe Kleine-König2fcc9f72010-06-18 09:38:55 +02002271void /* __init_or_exit */ regulatory_exit(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002272{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002273 struct regulatory_request *reg_request, *tmp;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002274 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002275
2276 cancel_work_sync(&reg_work);
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002277 cancel_delayed_work_sync(&reg_timeout);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002278
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002279 mutex_lock(&cfg80211_mutex);
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002280 mutex_lock(&reg_mutex);
Johannes Berg734366d2008-09-15 10:56:48 +02002281
Luis R. Rodrigueza0429942011-11-28 16:47:15 -05002282 reset_regdomains(true);
Johannes Berg734366d2008-09-15 10:56:48 +02002283
Luis R. Rodriguez58ebacc2011-11-08 14:28:06 -08002284 dev_set_uevent_suppress(&reg_pdev->dev, true);
2285
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002286 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002287
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002288 spin_lock_bh(&reg_pending_beacons_lock);
2289 if (!list_empty(&reg_pending_beacons)) {
2290 list_for_each_entry_safe(reg_beacon, btmp,
2291 &reg_pending_beacons, list) {
2292 list_del(&reg_beacon->list);
2293 kfree(reg_beacon);
2294 }
2295 }
2296 spin_unlock_bh(&reg_pending_beacons_lock);
2297
2298 if (!list_empty(&reg_beacon_list)) {
2299 list_for_each_entry_safe(reg_beacon, btmp,
2300 &reg_beacon_list, list) {
2301 list_del(&reg_beacon->list);
2302 kfree(reg_beacon);
2303 }
2304 }
2305
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002306 spin_lock(&reg_requests_lock);
2307 if (!list_empty(&reg_requests_list)) {
2308 list_for_each_entry_safe(reg_request, tmp,
2309 &reg_requests_list, list) {
2310 list_del(&reg_request->list);
2311 kfree(reg_request);
2312 }
2313 }
2314 spin_unlock(&reg_requests_lock);
2315
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002316 mutex_unlock(&reg_mutex);
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002317 mutex_unlock(&cfg80211_mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01002318}