blob: 0f61ae613f3b767780d2122dc4e55bf047e9ce3c [file] [log] [blame]
Johannes Berg8318d782008-01-24 19:38:38 +01001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005 * Copyright 2008 Luis R. Rodriguez <lrodriguz@atheros.com>
Johannes Berg8318d782008-01-24 19:38:38 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070012/**
13 * DOC: Wireless regulatory infrastructure
Johannes Berg8318d782008-01-24 19:38:38 +010014 *
15 * The usual implementation is for a driver to read a device EEPROM to
16 * determine which regulatory domain it should be operating under, then
17 * looking up the allowable channels in a driver-local table and finally
18 * registering those channels in the wiphy structure.
19 *
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070020 * Another set of compliance enforcement is for drivers to use their
21 * own compliance limits which can be stored on the EEPROM. The host
22 * driver or firmware may ensure these are used.
23 *
24 * In addition to all this we provide an extra layer of regulatory
25 * conformance. For drivers which do not have any regulatory
26 * information CRDA provides the complete regulatory solution.
27 * For others it provides a community effort on further restrictions
28 * to enhance compliance.
29 *
30 * Note: When number of rules --> infinity we will not be able to
31 * index on alpha2 any more, instead we'll probably have to
32 * rely on some SHA1 checksum of the regdomain for example.
33 *
Johannes Berg8318d782008-01-24 19:38:38 +010034 */
35#include <linux/kernel.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070036#include <linux/list.h>
37#include <linux/random.h>
38#include <linux/nl80211.h>
39#include <linux/platform_device.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070040#include <net/cfg80211.h>
Johannes Berg8318d782008-01-24 19:38:38 +010041#include "core.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070042#include "reg.h"
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040043#include "nl80211.h"
Johannes Berg8318d782008-01-24 19:38:38 +010044
Luis R. Rodriguez5166ccd2008-10-30 13:33:56 -070045/* Receipt of information from last regulatory request */
Johannes Bergf6037d02008-10-21 11:01:33 +020046static struct regulatory_request *last_request;
Johannes Berg734366d2008-09-15 10:56:48 +020047
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070048/* To trigger userspace events */
49static struct platform_device *reg_pdev;
Johannes Berg8318d782008-01-24 19:38:38 +010050
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050051/*
52 * Central wireless core regulatory domains, we only need two,
Johannes Berg734366d2008-09-15 10:56:48 +020053 * the current one and a world regulatory domain in case we have no
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050054 * information to give us an alpha2
55 */
Luis R. Rodriguezf1303472009-01-30 09:26:42 -080056const struct ieee80211_regdomain *cfg80211_regdomain;
Johannes Berg734366d2008-09-15 10:56:48 +020057
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050058/*
59 * We use this as a place for the rd structure built from the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -080060 * last parsed country IE to rest until CRDA gets back to us with
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050061 * what it thinks should apply for the same country
62 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -080063static const struct ieee80211_regdomain *country_ie_regdomain;
64
Luis R. Rodriguezabc73812009-07-30 17:38:08 -070065/*
66 * Protects static reg.c components:
67 * - cfg80211_world_regdom
68 * - cfg80211_regdom
69 * - country_ie_regdomain
70 * - last_request
71 */
72DEFINE_MUTEX(reg_mutex);
73#define assert_reg_lock() WARN_ON(!mutex_is_locked(&reg_mutex))
74
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -050075/* Used to queue up regulatory hints */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -050076static LIST_HEAD(reg_requests_list);
77static spinlock_t reg_requests_lock;
78
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -050079/* Used to queue up beacon hints for review */
80static LIST_HEAD(reg_pending_beacons);
81static spinlock_t reg_pending_beacons_lock;
82
83/* Used to keep track of processed beacon hints */
84static LIST_HEAD(reg_beacon_list);
85
86struct reg_beacon {
87 struct list_head list;
88 struct ieee80211_channel chan;
89};
90
Johannes Berg734366d2008-09-15 10:56:48 +020091/* We keep a static world regulatory domain in case of the absence of CRDA */
92static const struct ieee80211_regdomain world_regdom = {
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -080093 .n_reg_rules = 5,
Johannes Berg734366d2008-09-15 10:56:48 +020094 .alpha2 = "00",
95 .reg_rules = {
Luis R. Rodriguez68798a62009-02-21 00:20:37 -050096 /* IEEE 802.11b/g, channels 1..11 */
97 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -080098 /* IEEE 802.11b/g, channels 12..13. No HT40
99 * channel fits here. */
100 REG_RULE(2467-10, 2472+10, 20, 6, 20,
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500101 NL80211_RRF_PASSIVE_SCAN |
102 NL80211_RRF_NO_IBSS),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800103 /* IEEE 802.11 channel 14 - Only JP enables
104 * this and for 802.11b only */
105 REG_RULE(2484-10, 2484+10, 20, 6, 20,
106 NL80211_RRF_PASSIVE_SCAN |
107 NL80211_RRF_NO_IBSS |
108 NL80211_RRF_NO_OFDM),
109 /* IEEE 802.11a, channel 36..48 */
Luis R. Rodriguezec329ac2009-03-05 21:19:22 -0800110 REG_RULE(5180-10, 5240+10, 40, 6, 20,
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800111 NL80211_RRF_PASSIVE_SCAN |
112 NL80211_RRF_NO_IBSS),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500113
114 /* NB: 5260 MHz - 5700 MHz requies DFS */
115
116 /* IEEE 802.11a, channel 149..165 */
Luis R. Rodriguezec329ac2009-03-05 21:19:22 -0800117 REG_RULE(5745-10, 5825+10, 40, 6, 20,
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500118 NL80211_RRF_PASSIVE_SCAN |
119 NL80211_RRF_NO_IBSS),
Johannes Berg734366d2008-09-15 10:56:48 +0200120 }
121};
122
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200123static const struct ieee80211_regdomain *cfg80211_world_regdom =
124 &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200125
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400126static char *ieee80211_regdom = "00";
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400127
Johannes Berg734366d2008-09-15 10:56:48 +0200128module_param(ieee80211_regdom, charp, 0444);
129MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
130
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400131#ifdef CONFIG_WIRELESS_OLD_REGULATORY
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500132/*
133 * We assume 40 MHz bandwidth for the old regulatory work.
Johannes Berg734366d2008-09-15 10:56:48 +0200134 * We make emphasis we are using the exact same frequencies
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500135 * as before
136 */
Johannes Berg734366d2008-09-15 10:56:48 +0200137
138static const struct ieee80211_regdomain us_regdom = {
139 .n_reg_rules = 6,
140 .alpha2 = "US",
141 .reg_rules = {
142 /* IEEE 802.11b/g, channels 1..11 */
143 REG_RULE(2412-10, 2462+10, 40, 6, 27, 0),
144 /* IEEE 802.11a, channel 36 */
145 REG_RULE(5180-10, 5180+10, 40, 6, 23, 0),
146 /* IEEE 802.11a, channel 40 */
147 REG_RULE(5200-10, 5200+10, 40, 6, 23, 0),
148 /* IEEE 802.11a, channel 44 */
149 REG_RULE(5220-10, 5220+10, 40, 6, 23, 0),
150 /* IEEE 802.11a, channels 48..64 */
151 REG_RULE(5240-10, 5320+10, 40, 6, 23, 0),
152 /* IEEE 802.11a, channels 149..165, outdoor */
153 REG_RULE(5745-10, 5825+10, 40, 6, 30, 0),
154 }
155};
156
157static const struct ieee80211_regdomain jp_regdom = {
158 .n_reg_rules = 3,
159 .alpha2 = "JP",
160 .reg_rules = {
161 /* IEEE 802.11b/g, channels 1..14 */
162 REG_RULE(2412-10, 2484+10, 40, 6, 20, 0),
163 /* IEEE 802.11a, channels 34..48 */
164 REG_RULE(5170-10, 5240+10, 40, 6, 20,
165 NL80211_RRF_PASSIVE_SCAN),
166 /* IEEE 802.11a, channels 52..64 */
167 REG_RULE(5260-10, 5320+10, 40, 6, 20,
168 NL80211_RRF_NO_IBSS |
169 NL80211_RRF_DFS),
170 }
171};
172
173static const struct ieee80211_regdomain eu_regdom = {
174 .n_reg_rules = 6,
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500175 /*
176 * This alpha2 is bogus, we leave it here just for stupid
177 * backward compatibility
178 */
Johannes Berg734366d2008-09-15 10:56:48 +0200179 .alpha2 = "EU",
180 .reg_rules = {
181 /* IEEE 802.11b/g, channels 1..13 */
182 REG_RULE(2412-10, 2472+10, 40, 6, 20, 0),
183 /* IEEE 802.11a, channel 36 */
184 REG_RULE(5180-10, 5180+10, 40, 6, 23,
185 NL80211_RRF_PASSIVE_SCAN),
186 /* IEEE 802.11a, channel 40 */
187 REG_RULE(5200-10, 5200+10, 40, 6, 23,
188 NL80211_RRF_PASSIVE_SCAN),
189 /* IEEE 802.11a, channel 44 */
190 REG_RULE(5220-10, 5220+10, 40, 6, 23,
191 NL80211_RRF_PASSIVE_SCAN),
192 /* IEEE 802.11a, channels 48..64 */
193 REG_RULE(5240-10, 5320+10, 40, 6, 20,
194 NL80211_RRF_NO_IBSS |
195 NL80211_RRF_DFS),
196 /* IEEE 802.11a, channels 100..140 */
197 REG_RULE(5500-10, 5700+10, 40, 6, 30,
198 NL80211_RRF_NO_IBSS |
199 NL80211_RRF_DFS),
200 }
201};
202
203static const struct ieee80211_regdomain *static_regdom(char *alpha2)
204{
205 if (alpha2[0] == 'U' && alpha2[1] == 'S')
206 return &us_regdom;
207 if (alpha2[0] == 'J' && alpha2[1] == 'P')
208 return &jp_regdom;
209 if (alpha2[0] == 'E' && alpha2[1] == 'U')
210 return &eu_regdom;
211 /* Default, as per the old rules */
212 return &us_regdom;
213}
214
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200215static bool is_old_static_regdom(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200216{
217 if (rd == &us_regdom || rd == &jp_regdom || rd == &eu_regdom)
218 return true;
219 return false;
220}
Johannes Berg734366d2008-09-15 10:56:48 +0200221#else
Johannes Berg942b25c2008-09-15 11:26:47 +0200222static inline bool is_old_static_regdom(const struct ieee80211_regdomain *rd)
223{
224 return false;
225}
226#endif
227
Johannes Berg734366d2008-09-15 10:56:48 +0200228static void reset_regdomains(void)
229{
Johannes Berg942b25c2008-09-15 11:26:47 +0200230 /* avoid freeing static information or freeing something twice */
231 if (cfg80211_regdomain == cfg80211_world_regdom)
232 cfg80211_regdomain = NULL;
233 if (cfg80211_world_regdom == &world_regdom)
234 cfg80211_world_regdom = NULL;
235 if (cfg80211_regdomain == &world_regdom)
236 cfg80211_regdomain = NULL;
237 if (is_old_static_regdom(cfg80211_regdomain))
238 cfg80211_regdomain = NULL;
239
240 kfree(cfg80211_regdomain);
241 kfree(cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +0200242
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200243 cfg80211_world_regdom = &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200244 cfg80211_regdomain = NULL;
245}
246
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500247/*
248 * Dynamic world regulatory domain requested by the wireless
249 * core upon initialization
250 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200251static void update_world_regdomain(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200252{
Johannes Bergf6037d02008-10-21 11:01:33 +0200253 BUG_ON(!last_request);
Johannes Berg734366d2008-09-15 10:56:48 +0200254
255 reset_regdomains();
256
257 cfg80211_world_regdom = rd;
258 cfg80211_regdomain = rd;
259}
Johannes Berg734366d2008-09-15 10:56:48 +0200260
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200261bool is_world_regdom(const char *alpha2)
Johannes Berg8318d782008-01-24 19:38:38 +0100262{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700263 if (!alpha2)
264 return false;
265 if (alpha2[0] == '0' && alpha2[1] == '0')
266 return true;
267 return false;
Johannes Berg8318d782008-01-24 19:38:38 +0100268}
269
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200270static bool is_alpha2_set(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700271{
272 if (!alpha2)
273 return false;
274 if (alpha2[0] != 0 && alpha2[1] != 0)
275 return true;
276 return false;
277}
Johannes Berg8318d782008-01-24 19:38:38 +0100278
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700279static bool is_alpha_upper(char letter)
280{
281 /* ASCII A - Z */
282 if (letter >= 65 && letter <= 90)
283 return true;
284 return false;
285}
286
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200287static bool is_unknown_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700288{
289 if (!alpha2)
290 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500291 /*
292 * Special case where regulatory domain was built by driver
293 * but a specific alpha2 cannot be determined
294 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700295 if (alpha2[0] == '9' && alpha2[1] == '9')
296 return true;
297 return false;
298}
299
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800300static bool is_intersected_alpha2(const char *alpha2)
301{
302 if (!alpha2)
303 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500304 /*
305 * Special case where regulatory domain is the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800306 * result of an intersection between two regulatory domain
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500307 * structures
308 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800309 if (alpha2[0] == '9' && alpha2[1] == '8')
310 return true;
311 return false;
312}
313
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200314static bool is_an_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700315{
316 if (!alpha2)
317 return false;
318 if (is_alpha_upper(alpha2[0]) && is_alpha_upper(alpha2[1]))
319 return true;
320 return false;
321}
322
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200323static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700324{
325 if (!alpha2_x || !alpha2_y)
326 return false;
327 if (alpha2_x[0] == alpha2_y[0] &&
328 alpha2_x[1] == alpha2_y[1])
329 return true;
330 return false;
331}
332
Luis R. Rodriguez69b15722009-02-21 00:04:33 -0500333static bool regdom_changes(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700334{
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500335 assert_cfg80211_lock();
336
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700337 if (!cfg80211_regdomain)
338 return true;
339 if (alpha2_equal(cfg80211_regdomain->alpha2, alpha2))
340 return false;
341 return true;
342}
343
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800344/**
345 * country_ie_integrity_changes - tells us if the country IE has changed
346 * @checksum: checksum of country IE of fields we are interested in
347 *
348 * If the country IE has not changed you can ignore it safely. This is
349 * useful to determine if two devices are seeing two different country IEs
350 * even on the same alpha2. Note that this will return false if no IE has
351 * been set on the wireless core yet.
352 */
353static bool country_ie_integrity_changes(u32 checksum)
354{
355 /* If no IE has been set then the checksum doesn't change */
356 if (unlikely(!last_request->country_ie_checksum))
357 return false;
358 if (unlikely(last_request->country_ie_checksum != checksum))
359 return true;
360 return false;
361}
362
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500363/*
364 * This lets us keep regulatory code which is updated on a regulatory
365 * basis in userspace.
366 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700367static int call_crda(const char *alpha2)
368{
369 char country_env[9 + 2] = "COUNTRY=";
370 char *envp[] = {
371 country_env,
372 NULL
373 };
374
375 if (!is_world_regdom((char *) alpha2))
376 printk(KERN_INFO "cfg80211: Calling CRDA for country: %c%c\n",
377 alpha2[0], alpha2[1]);
378 else
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700379 printk(KERN_INFO "cfg80211: Calling CRDA to update world "
380 "regulatory domain\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700381
382 country_env[8] = alpha2[0];
383 country_env[9] = alpha2[1];
384
385 return kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, envp);
386}
387
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700388/* Used by nl80211 before kmalloc'ing our regulatory domain */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200389bool reg_is_valid_request(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700390{
Luis R. Rodriguez61405e92009-05-13 17:04:41 -0400391 assert_cfg80211_lock();
392
Johannes Bergf6037d02008-10-21 11:01:33 +0200393 if (!last_request)
394 return false;
395
396 return alpha2_equal(last_request->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700397}
398
399/* Sanity check on a regulatory rule */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200400static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700401{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200402 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700403 u32 freq_diff;
404
Luis R. Rodriguez91e99002008-11-12 14:21:55 -0800405 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700406 return false;
407
408 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
409 return false;
410
411 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
412
Roel Kluinbd05f282009-03-03 22:55:21 +0100413 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
414 freq_range->max_bandwidth_khz > freq_diff)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700415 return false;
416
417 return true;
418}
419
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200420static bool is_valid_rd(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700421{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200422 const struct ieee80211_reg_rule *reg_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700423 unsigned int i;
424
425 if (!rd->n_reg_rules)
426 return false;
427
Luis R. Rodriguez88dc1c32008-11-12 14:22:01 -0800428 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
429 return false;
430
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700431 for (i = 0; i < rd->n_reg_rules; i++) {
432 reg_rule = &rd->reg_rules[i];
433 if (!is_valid_reg_rule(reg_rule))
434 return false;
435 }
436
437 return true;
438}
439
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400440static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range,
441 u32 center_freq_khz,
442 u32 bw_khz)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700443{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400444 u32 start_freq_khz, end_freq_khz;
445
446 start_freq_khz = center_freq_khz - (bw_khz/2);
447 end_freq_khz = center_freq_khz + (bw_khz/2);
448
449 if (start_freq_khz >= freq_range->start_freq_khz &&
450 end_freq_khz <= freq_range->end_freq_khz)
451 return true;
452
453 return false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700454}
455
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800456/**
457 * freq_in_rule_band - tells us if a frequency is in a frequency band
458 * @freq_range: frequency rule we want to query
459 * @freq_khz: frequency we are inquiring about
460 *
461 * This lets us know if a specific frequency rule is or is not relevant to
462 * a specific frequency's band. Bands are device specific and artificial
463 * definitions (the "2.4 GHz band" and the "5 GHz band"), however it is
464 * safe for now to assume that a frequency rule should not be part of a
465 * frequency's band if the start freq or end freq are off by more than 2 GHz.
466 * This resolution can be lowered and should be considered as we add
467 * regulatory rule support for other "bands".
468 **/
469static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
470 u32 freq_khz)
471{
472#define ONE_GHZ_IN_KHZ 1000000
473 if (abs(freq_khz - freq_range->start_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
474 return true;
475 if (abs(freq_khz - freq_range->end_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
476 return true;
477 return false;
478#undef ONE_GHZ_IN_KHZ
479}
480
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500481/*
482 * Converts a country IE to a regulatory domain. A regulatory domain
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800483 * structure has a lot of information which the IE doesn't yet have,
484 * so for the other values we use upper max values as we will intersect
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500485 * with our userspace regulatory agent to get lower bounds.
486 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800487static struct ieee80211_regdomain *country_ie_2_rd(
488 u8 *country_ie,
489 u8 country_ie_len,
490 u32 *checksum)
491{
492 struct ieee80211_regdomain *rd = NULL;
493 unsigned int i = 0;
494 char alpha2[2];
495 u32 flags = 0;
496 u32 num_rules = 0, size_of_regd = 0;
497 u8 *triplets_start = NULL;
498 u8 len_at_triplet = 0;
499 /* the last channel we have registered in a subband (triplet) */
500 int last_sub_max_channel = 0;
501
502 *checksum = 0xDEADBEEF;
503
504 /* Country IE requirements */
505 BUG_ON(country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN ||
506 country_ie_len & 0x01);
507
508 alpha2[0] = country_ie[0];
509 alpha2[1] = country_ie[1];
510
511 /*
512 * Third octet can be:
513 * 'I' - Indoor
514 * 'O' - Outdoor
515 *
516 * anything else we assume is no restrictions
517 */
518 if (country_ie[2] == 'I')
519 flags = NL80211_RRF_NO_OUTDOOR;
520 else if (country_ie[2] == 'O')
521 flags = NL80211_RRF_NO_INDOOR;
522
523 country_ie += 3;
524 country_ie_len -= 3;
525
526 triplets_start = country_ie;
527 len_at_triplet = country_ie_len;
528
529 *checksum ^= ((flags ^ alpha2[0] ^ alpha2[1]) << 8);
530
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500531 /*
532 * We need to build a reg rule for each triplet, but first we must
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800533 * calculate the number of reg rules we will need. We will need one
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500534 * for each channel subband
535 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800536 while (country_ie_len >= 3) {
Luis R. Rodriguez615aab42009-01-22 15:05:46 -0800537 int end_channel = 0;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800538 struct ieee80211_country_ie_triplet *triplet =
539 (struct ieee80211_country_ie_triplet *) country_ie;
540 int cur_sub_max_channel = 0, cur_channel = 0;
541
542 if (triplet->ext.reg_extension_id >=
543 IEEE80211_COUNTRY_EXTENSION_ID) {
544 country_ie += 3;
545 country_ie_len -= 3;
546 continue;
547 }
548
Luis R. Rodriguez615aab42009-01-22 15:05:46 -0800549 /* 2 GHz */
550 if (triplet->chans.first_channel <= 14)
551 end_channel = triplet->chans.first_channel +
552 triplet->chans.num_channels;
553 else
554 /*
555 * 5 GHz -- For example in country IEs if the first
556 * channel given is 36 and the number of channels is 4
557 * then the individual channel numbers defined for the
558 * 5 GHz PHY by these parameters are: 36, 40, 44, and 48
559 * and not 36, 37, 38, 39.
560 *
561 * See: http://tinyurl.com/11d-clarification
562 */
563 end_channel = triplet->chans.first_channel +
564 (4 * (triplet->chans.num_channels - 1));
565
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800566 cur_channel = triplet->chans.first_channel;
Luis R. Rodriguez615aab42009-01-22 15:05:46 -0800567 cur_sub_max_channel = end_channel;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800568
569 /* Basic sanity check */
570 if (cur_sub_max_channel < cur_channel)
571 return NULL;
572
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500573 /*
574 * Do not allow overlapping channels. Also channels
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800575 * passed in each subband must be monotonically
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500576 * increasing
577 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800578 if (last_sub_max_channel) {
579 if (cur_channel <= last_sub_max_channel)
580 return NULL;
581 if (cur_sub_max_channel <= last_sub_max_channel)
582 return NULL;
583 }
584
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500585 /*
586 * When dot11RegulatoryClassesRequired is supported
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800587 * we can throw ext triplets as part of this soup,
588 * for now we don't care when those change as we
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500589 * don't support them
590 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800591 *checksum ^= ((cur_channel ^ cur_sub_max_channel) << 8) |
592 ((cur_sub_max_channel ^ cur_sub_max_channel) << 16) |
593 ((triplet->chans.max_power ^ cur_sub_max_channel) << 24);
594
595 last_sub_max_channel = cur_sub_max_channel;
596
597 country_ie += 3;
598 country_ie_len -= 3;
599 num_rules++;
600
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500601 /*
602 * Note: this is not a IEEE requirement but
603 * simply a memory requirement
604 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800605 if (num_rules > NL80211_MAX_SUPP_REG_RULES)
606 return NULL;
607 }
608
609 country_ie = triplets_start;
610 country_ie_len = len_at_triplet;
611
612 size_of_regd = sizeof(struct ieee80211_regdomain) +
613 (num_rules * sizeof(struct ieee80211_reg_rule));
614
615 rd = kzalloc(size_of_regd, GFP_KERNEL);
616 if (!rd)
617 return NULL;
618
619 rd->n_reg_rules = num_rules;
620 rd->alpha2[0] = alpha2[0];
621 rd->alpha2[1] = alpha2[1];
622
623 /* This time around we fill in the rd */
624 while (country_ie_len >= 3) {
Luis R. Rodriguez02e68a32009-01-07 17:43:37 -0800625 int end_channel = 0;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800626 struct ieee80211_country_ie_triplet *triplet =
627 (struct ieee80211_country_ie_triplet *) country_ie;
628 struct ieee80211_reg_rule *reg_rule = NULL;
629 struct ieee80211_freq_range *freq_range = NULL;
630 struct ieee80211_power_rule *power_rule = NULL;
631
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500632 /*
633 * Must parse if dot11RegulatoryClassesRequired is true,
634 * we don't support this yet
635 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800636 if (triplet->ext.reg_extension_id >=
637 IEEE80211_COUNTRY_EXTENSION_ID) {
638 country_ie += 3;
639 country_ie_len -= 3;
640 continue;
641 }
642
643 reg_rule = &rd->reg_rules[i];
644 freq_range = &reg_rule->freq_range;
645 power_rule = &reg_rule->power_rule;
646
647 reg_rule->flags = flags;
648
Luis R. Rodriguez02e68a32009-01-07 17:43:37 -0800649 /* 2 GHz */
650 if (triplet->chans.first_channel <= 14)
651 end_channel = triplet->chans.first_channel +
652 triplet->chans.num_channels;
653 else
Luis R. Rodriguez02e68a32009-01-07 17:43:37 -0800654 end_channel = triplet->chans.first_channel +
655 (4 * (triplet->chans.num_channels - 1));
656
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500657 /*
658 * The +10 is since the regulatory domain expects
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800659 * the actual band edge, not the center of freq for
660 * its start and end freqs, assuming 20 MHz bandwidth on
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500661 * the channels passed
662 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800663 freq_range->start_freq_khz =
664 MHZ_TO_KHZ(ieee80211_channel_to_frequency(
665 triplet->chans.first_channel) - 10);
666 freq_range->end_freq_khz =
667 MHZ_TO_KHZ(ieee80211_channel_to_frequency(
Luis R. Rodriguez02e68a32009-01-07 17:43:37 -0800668 end_channel) + 10);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800669
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500670 /*
671 * These are large arbitrary values we use to intersect later.
672 * Increment this if we ever support >= 40 MHz channels
673 * in IEEE 802.11
674 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800675 freq_range->max_bandwidth_khz = MHZ_TO_KHZ(40);
676 power_rule->max_antenna_gain = DBI_TO_MBI(100);
677 power_rule->max_eirp = DBM_TO_MBM(100);
678
679 country_ie += 3;
680 country_ie_len -= 3;
681 i++;
682
683 BUG_ON(i > NL80211_MAX_SUPP_REG_RULES);
684 }
685
686 return rd;
687}
688
689
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500690/*
691 * Helper for regdom_intersect(), this does the real
692 * mathematical intersection fun
693 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700694static int reg_rules_intersect(
695 const struct ieee80211_reg_rule *rule1,
696 const struct ieee80211_reg_rule *rule2,
697 struct ieee80211_reg_rule *intersected_rule)
698{
699 const struct ieee80211_freq_range *freq_range1, *freq_range2;
700 struct ieee80211_freq_range *freq_range;
701 const struct ieee80211_power_rule *power_rule1, *power_rule2;
702 struct ieee80211_power_rule *power_rule;
703 u32 freq_diff;
704
705 freq_range1 = &rule1->freq_range;
706 freq_range2 = &rule2->freq_range;
707 freq_range = &intersected_rule->freq_range;
708
709 power_rule1 = &rule1->power_rule;
710 power_rule2 = &rule2->power_rule;
711 power_rule = &intersected_rule->power_rule;
712
713 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
714 freq_range2->start_freq_khz);
715 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
716 freq_range2->end_freq_khz);
717 freq_range->max_bandwidth_khz = min(freq_range1->max_bandwidth_khz,
718 freq_range2->max_bandwidth_khz);
719
720 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
721 if (freq_range->max_bandwidth_khz > freq_diff)
722 freq_range->max_bandwidth_khz = freq_diff;
723
724 power_rule->max_eirp = min(power_rule1->max_eirp,
725 power_rule2->max_eirp);
726 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
727 power_rule2->max_antenna_gain);
728
729 intersected_rule->flags = (rule1->flags | rule2->flags);
730
731 if (!is_valid_reg_rule(intersected_rule))
732 return -EINVAL;
733
734 return 0;
735}
736
737/**
738 * regdom_intersect - do the intersection between two regulatory domains
739 * @rd1: first regulatory domain
740 * @rd2: second regulatory domain
741 *
742 * Use this function to get the intersection between two regulatory domains.
743 * Once completed we will mark the alpha2 for the rd as intersected, "98",
744 * as no one single alpha2 can represent this regulatory domain.
745 *
746 * Returns a pointer to the regulatory domain structure which will hold the
747 * resulting intersection of rules between rd1 and rd2. We will
748 * kzalloc() this structure for you.
749 */
750static struct ieee80211_regdomain *regdom_intersect(
751 const struct ieee80211_regdomain *rd1,
752 const struct ieee80211_regdomain *rd2)
753{
754 int r, size_of_regd;
755 unsigned int x, y;
756 unsigned int num_rules = 0, rule_idx = 0;
757 const struct ieee80211_reg_rule *rule1, *rule2;
758 struct ieee80211_reg_rule *intersected_rule;
759 struct ieee80211_regdomain *rd;
760 /* This is just a dummy holder to help us count */
761 struct ieee80211_reg_rule irule;
762
763 /* Uses the stack temporarily for counter arithmetic */
764 intersected_rule = &irule;
765
766 memset(intersected_rule, 0, sizeof(struct ieee80211_reg_rule));
767
768 if (!rd1 || !rd2)
769 return NULL;
770
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500771 /*
772 * First we get a count of the rules we'll need, then we actually
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700773 * build them. This is to so we can malloc() and free() a
774 * regdomain once. The reason we use reg_rules_intersect() here
775 * is it will return -EINVAL if the rule computed makes no sense.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500776 * All rules that do check out OK are valid.
777 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700778
779 for (x = 0; x < rd1->n_reg_rules; x++) {
780 rule1 = &rd1->reg_rules[x];
781 for (y = 0; y < rd2->n_reg_rules; y++) {
782 rule2 = &rd2->reg_rules[y];
783 if (!reg_rules_intersect(rule1, rule2,
784 intersected_rule))
785 num_rules++;
786 memset(intersected_rule, 0,
787 sizeof(struct ieee80211_reg_rule));
788 }
789 }
790
791 if (!num_rules)
792 return NULL;
793
794 size_of_regd = sizeof(struct ieee80211_regdomain) +
795 ((num_rules + 1) * sizeof(struct ieee80211_reg_rule));
796
797 rd = kzalloc(size_of_regd, GFP_KERNEL);
798 if (!rd)
799 return NULL;
800
801 for (x = 0; x < rd1->n_reg_rules; x++) {
802 rule1 = &rd1->reg_rules[x];
803 for (y = 0; y < rd2->n_reg_rules; y++) {
804 rule2 = &rd2->reg_rules[y];
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500805 /*
806 * This time around instead of using the stack lets
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700807 * write to the target rule directly saving ourselves
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500808 * a memcpy()
809 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700810 intersected_rule = &rd->reg_rules[rule_idx];
811 r = reg_rules_intersect(rule1, rule2,
812 intersected_rule);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500813 /*
814 * No need to memset here the intersected rule here as
815 * we're not using the stack anymore
816 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700817 if (r)
818 continue;
819 rule_idx++;
820 }
821 }
822
823 if (rule_idx != num_rules) {
824 kfree(rd);
825 return NULL;
826 }
827
828 rd->n_reg_rules = num_rules;
829 rd->alpha2[0] = '9';
830 rd->alpha2[1] = '8';
831
832 return rd;
833}
834
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500835/*
836 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
837 * want to just have the channel structure use these
838 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700839static u32 map_regdom_flags(u32 rd_flags)
840{
841 u32 channel_flags = 0;
842 if (rd_flags & NL80211_RRF_PASSIVE_SCAN)
843 channel_flags |= IEEE80211_CHAN_PASSIVE_SCAN;
844 if (rd_flags & NL80211_RRF_NO_IBSS)
845 channel_flags |= IEEE80211_CHAN_NO_IBSS;
846 if (rd_flags & NL80211_RRF_DFS)
847 channel_flags |= IEEE80211_CHAN_RADAR;
848 return channel_flags;
849}
850
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800851static int freq_reg_info_regd(struct wiphy *wiphy,
852 u32 center_freq,
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400853 u32 desired_bw_khz,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800854 const struct ieee80211_reg_rule **reg_rule,
855 const struct ieee80211_regdomain *custom_regd)
Johannes Berg8318d782008-01-24 19:38:38 +0100856{
857 int i;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800858 bool band_rule_found = false;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800859 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400860 bool bw_fits = false;
861
862 if (!desired_bw_khz)
863 desired_bw_khz = MHZ_TO_KHZ(20);
Johannes Berg8318d782008-01-24 19:38:38 +0100864
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800865 regd = custom_regd ? custom_regd : cfg80211_regdomain;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800866
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500867 /*
868 * Follow the driver's regulatory domain, if present, unless a country
869 * IE has been processed or a user wants to help complaince further
870 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400871 if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
872 last_request->initiator != NL80211_REGDOM_SET_BY_USER &&
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800873 wiphy->regd)
874 regd = wiphy->regd;
875
876 if (!regd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700877 return -EINVAL;
878
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800879 for (i = 0; i < regd->n_reg_rules; i++) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700880 const struct ieee80211_reg_rule *rr;
881 const struct ieee80211_freq_range *fr = NULL;
882 const struct ieee80211_power_rule *pr = NULL;
883
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800884 rr = &regd->reg_rules[i];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700885 fr = &rr->freq_range;
886 pr = &rr->power_rule;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800887
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500888 /*
889 * We only need to know if one frequency rule was
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800890 * was in center_freq's band, that's enough, so lets
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500891 * not overwrite it once found
892 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800893 if (!band_rule_found)
894 band_rule_found = freq_in_rule_band(fr, center_freq);
895
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400896 bw_fits = reg_does_bw_fit(fr,
897 center_freq,
898 desired_bw_khz);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800899
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400900 if (band_rule_found && bw_fits) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700901 *reg_rule = rr;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400902 return 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100903 }
904 }
905
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800906 if (!band_rule_found)
907 return -ERANGE;
908
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400909 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700910}
Luis R. Rodriguez34f57342009-01-22 15:05:45 -0800911EXPORT_SYMBOL(freq_reg_info);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700912
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400913int freq_reg_info(struct wiphy *wiphy,
914 u32 center_freq,
915 u32 desired_bw_khz,
916 const struct ieee80211_reg_rule **reg_rule)
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800917{
Luis R. Rodriguezac46d482009-05-01 18:44:50 -0400918 assert_cfg80211_lock();
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400919 return freq_reg_info_regd(wiphy,
920 center_freq,
921 desired_bw_khz,
922 reg_rule,
923 NULL);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800924}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700925
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400926/*
927 * Note that right now we assume the desired channel bandwidth
928 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
929 * per channel, the primary and the extension channel). To support
930 * smaller custom bandwidths such as 5 MHz or 10 MHz we'll need a
931 * new ieee80211_channel.target_bw and re run the regulatory check
932 * on the wiphy with the target_bw specified. Then we can simply use
933 * that below for the desired_bw_khz below.
934 */
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800935static void handle_channel(struct wiphy *wiphy, enum ieee80211_band band,
936 unsigned int chan_idx)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700937{
938 int r;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400939 u32 flags, bw_flags = 0;
940 u32 desired_bw_khz = MHZ_TO_KHZ(20);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700941 const struct ieee80211_reg_rule *reg_rule = NULL;
942 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400943 const struct ieee80211_freq_range *freq_range = NULL;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800944 struct ieee80211_supported_band *sband;
945 struct ieee80211_channel *chan;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500946 struct wiphy *request_wiphy = NULL;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800947
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500948 assert_cfg80211_lock();
949
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -0500950 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
951
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800952 sband = wiphy->bands[band];
953 BUG_ON(chan_idx >= sband->n_channels);
954 chan = &sband->channels[chan_idx];
955
956 flags = chan->orig_flags;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700957
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400958 r = freq_reg_info(wiphy,
959 MHZ_TO_KHZ(chan->center_freq),
960 desired_bw_khz,
961 &reg_rule);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700962
963 if (r) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500964 /*
965 * This means no regulatory rule was found in the country IE
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800966 * with a frequency range on the center_freq's band, since
967 * IEEE-802.11 allows for a country IE to have a subset of the
968 * regulatory information provided in a country we ignore
969 * disabling the channel unless at least one reg rule was
970 * found on the center_freq's band. For details see this
971 * clarification:
972 *
973 * http://tinyurl.com/11d-clarification
974 */
975 if (r == -ERANGE &&
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400976 last_request->initiator ==
977 NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800978#ifdef CONFIG_CFG80211_REG_DEBUG
979 printk(KERN_DEBUG "cfg80211: Leaving channel %d MHz "
980 "intact on %s - no rule found in band on "
981 "Country IE\n",
982 chan->center_freq, wiphy_name(wiphy));
983#endif
984 } else {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500985 /*
986 * In this case we know the country IE has at least one reg rule
987 * for the band so we respect its band definitions
988 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800989#ifdef CONFIG_CFG80211_REG_DEBUG
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400990 if (last_request->initiator ==
991 NL80211_REGDOM_SET_BY_COUNTRY_IE)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800992 printk(KERN_DEBUG "cfg80211: Disabling "
993 "channel %d MHz on %s due to "
994 "Country IE\n",
995 chan->center_freq, wiphy_name(wiphy));
996#endif
997 flags |= IEEE80211_CHAN_DISABLED;
998 chan->flags = flags;
999 }
Johannes Berg8318d782008-01-24 19:38:38 +01001000 return;
1001 }
1002
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001003 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001004 freq_range = &reg_rule->freq_range;
1005
1006 if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
1007 bw_flags = IEEE80211_CHAN_NO_HT40;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001008
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001009 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001010 request_wiphy && request_wiphy == wiphy &&
1011 request_wiphy->strict_regulatory) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001012 /*
1013 * This gaurantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001014 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001015 * settings
1016 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001017 chan->flags = chan->orig_flags =
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001018 map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001019 chan->max_antenna_gain = chan->orig_mag =
1020 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001021 chan->max_bandwidth = KHZ_TO_MHZ(desired_bw_khz);
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001022 chan->max_power = chan->orig_mpwr =
1023 (int) MBM_TO_DBM(power_rule->max_eirp);
1024 return;
1025 }
1026
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001027 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
Johannes Berg8318d782008-01-24 19:38:38 +01001028 chan->max_antenna_gain = min(chan->orig_mag,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001029 (int) MBI_TO_DBI(power_rule->max_antenna_gain));
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001030 chan->max_bandwidth = KHZ_TO_MHZ(desired_bw_khz);
John W. Linville253898c2008-04-03 15:32:54 -04001031 if (chan->orig_mpwr)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001032 chan->max_power = min(chan->orig_mpwr,
1033 (int) MBM_TO_DBM(power_rule->max_eirp));
John W. Linville253898c2008-04-03 15:32:54 -04001034 else
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001035 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Johannes Berg8318d782008-01-24 19:38:38 +01001036}
1037
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001038static void handle_band(struct wiphy *wiphy, enum ieee80211_band band)
Johannes Berg8318d782008-01-24 19:38:38 +01001039{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001040 unsigned int i;
1041 struct ieee80211_supported_band *sband;
1042
1043 BUG_ON(!wiphy->bands[band]);
1044 sband = wiphy->bands[band];
Johannes Berg8318d782008-01-24 19:38:38 +01001045
1046 for (i = 0; i < sband->n_channels; i++)
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001047 handle_channel(wiphy, band, i);
Johannes Berg8318d782008-01-24 19:38:38 +01001048}
1049
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001050static bool ignore_reg_update(struct wiphy *wiphy,
1051 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001052{
1053 if (!last_request)
1054 return true;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001055 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodriguez2a44f912009-01-22 15:05:49 -08001056 wiphy->custom_regulatory)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001057 return true;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001058 /*
1059 * wiphy->regd will be set once the device has its own
1060 * desired regulatory domain set
1061 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001062 if (wiphy->strict_regulatory && !wiphy->regd &&
1063 !is_world_regdom(last_request->alpha2))
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001064 return true;
1065 return false;
1066}
1067
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001068static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001069{
Johannes Berg79c97e92009-07-07 03:56:12 +02001070 struct cfg80211_registered_device *rdev;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001071
Johannes Berg79c97e92009-07-07 03:56:12 +02001072 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1073 wiphy_update_regulatory(&rdev->wiphy, initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001074}
1075
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001076static void handle_reg_beacon(struct wiphy *wiphy,
1077 unsigned int chan_idx,
1078 struct reg_beacon *reg_beacon)
1079{
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001080 struct ieee80211_supported_band *sband;
1081 struct ieee80211_channel *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001082 bool channel_changed = false;
1083 struct ieee80211_channel chan_before;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001084
1085 assert_cfg80211_lock();
1086
1087 sband = wiphy->bands[reg_beacon->chan.band];
1088 chan = &sband->channels[chan_idx];
1089
1090 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
1091 return;
1092
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001093 if (chan->beacon_found)
1094 return;
1095
1096 chan->beacon_found = true;
1097
Luis R. Rodriguez37184242009-07-30 17:43:48 -07001098 if (wiphy->disable_beacon_hints)
1099 return;
1100
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001101 chan_before.center_freq = chan->center_freq;
1102 chan_before.flags = chan->flags;
1103
Luis R. Rodriguez37184242009-07-30 17:43:48 -07001104 if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001105 chan->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001106 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001107 }
1108
Luis R. Rodriguez37184242009-07-30 17:43:48 -07001109 if (chan->flags & IEEE80211_CHAN_NO_IBSS) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001110 chan->flags &= ~IEEE80211_CHAN_NO_IBSS;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001111 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001112 }
1113
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001114 if (channel_changed)
1115 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001116}
1117
1118/*
1119 * Called when a scan on a wiphy finds a beacon on
1120 * new channel
1121 */
1122static void wiphy_update_new_beacon(struct wiphy *wiphy,
1123 struct reg_beacon *reg_beacon)
1124{
1125 unsigned int i;
1126 struct ieee80211_supported_band *sband;
1127
1128 assert_cfg80211_lock();
1129
1130 if (!wiphy->bands[reg_beacon->chan.band])
1131 return;
1132
1133 sband = wiphy->bands[reg_beacon->chan.band];
1134
1135 for (i = 0; i < sband->n_channels; i++)
1136 handle_reg_beacon(wiphy, i, reg_beacon);
1137}
1138
1139/*
1140 * Called upon reg changes or a new wiphy is added
1141 */
1142static void wiphy_update_beacon_reg(struct wiphy *wiphy)
1143{
1144 unsigned int i;
1145 struct ieee80211_supported_band *sband;
1146 struct reg_beacon *reg_beacon;
1147
1148 assert_cfg80211_lock();
1149
1150 if (list_empty(&reg_beacon_list))
1151 return;
1152
1153 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
1154 if (!wiphy->bands[reg_beacon->chan.band])
1155 continue;
1156 sband = wiphy->bands[reg_beacon->chan.band];
1157 for (i = 0; i < sband->n_channels; i++)
1158 handle_reg_beacon(wiphy, i, reg_beacon);
1159 }
1160}
1161
1162static bool reg_is_world_roaming(struct wiphy *wiphy)
1163{
1164 if (is_world_regdom(cfg80211_regdomain->alpha2) ||
1165 (wiphy->regd && is_world_regdom(wiphy->regd->alpha2)))
1166 return true;
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001167 if (last_request &&
1168 last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001169 wiphy->custom_regulatory)
1170 return true;
1171 return false;
1172}
1173
1174/* Reap the advantages of previously found beacons */
1175static void reg_process_beacons(struct wiphy *wiphy)
1176{
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001177 /*
1178 * Means we are just firing up cfg80211, so no beacons would
1179 * have been processed yet.
1180 */
1181 if (!last_request)
1182 return;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001183 if (!reg_is_world_roaming(wiphy))
1184 return;
1185 wiphy_update_beacon_reg(wiphy);
1186}
1187
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001188static bool is_ht40_not_allowed(struct ieee80211_channel *chan)
1189{
1190 if (!chan)
1191 return true;
1192 if (chan->flags & IEEE80211_CHAN_DISABLED)
1193 return true;
1194 /* This would happen when regulatory rules disallow HT40 completely */
1195 if (IEEE80211_CHAN_NO_HT40 == (chan->flags & (IEEE80211_CHAN_NO_HT40)))
1196 return true;
1197 return false;
1198}
1199
1200static void reg_process_ht_flags_channel(struct wiphy *wiphy,
1201 enum ieee80211_band band,
1202 unsigned int chan_idx)
1203{
1204 struct ieee80211_supported_band *sband;
1205 struct ieee80211_channel *channel;
1206 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
1207 unsigned int i;
1208
1209 assert_cfg80211_lock();
1210
1211 sband = wiphy->bands[band];
1212 BUG_ON(chan_idx >= sband->n_channels);
1213 channel = &sband->channels[chan_idx];
1214
1215 if (is_ht40_not_allowed(channel)) {
1216 channel->flags |= IEEE80211_CHAN_NO_HT40;
1217 return;
1218 }
1219
1220 /*
1221 * We need to ensure the extension channels exist to
1222 * be able to use HT40- or HT40+, this finds them (or not)
1223 */
1224 for (i = 0; i < sband->n_channels; i++) {
1225 struct ieee80211_channel *c = &sband->channels[i];
1226 if (c->center_freq == (channel->center_freq - 20))
1227 channel_before = c;
1228 if (c->center_freq == (channel->center_freq + 20))
1229 channel_after = c;
1230 }
1231
1232 /*
1233 * Please note that this assumes target bandwidth is 20 MHz,
1234 * if that ever changes we also need to change the below logic
1235 * to include that as well.
1236 */
1237 if (is_ht40_not_allowed(channel_before))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001238 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001239 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001240 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001241
1242 if (is_ht40_not_allowed(channel_after))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001243 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001244 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001245 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001246}
1247
1248static void reg_process_ht_flags_band(struct wiphy *wiphy,
1249 enum ieee80211_band band)
1250{
1251 unsigned int i;
1252 struct ieee80211_supported_band *sband;
1253
1254 BUG_ON(!wiphy->bands[band]);
1255 sband = wiphy->bands[band];
1256
1257 for (i = 0; i < sband->n_channels; i++)
1258 reg_process_ht_flags_channel(wiphy, band, i);
1259}
1260
1261static void reg_process_ht_flags(struct wiphy *wiphy)
1262{
1263 enum ieee80211_band band;
1264
1265 if (!wiphy)
1266 return;
1267
1268 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1269 if (wiphy->bands[band])
1270 reg_process_ht_flags_band(wiphy, band);
1271 }
1272
1273}
1274
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001275void wiphy_update_regulatory(struct wiphy *wiphy,
1276 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +01001277{
1278 enum ieee80211_band band;
Luis R. Rodriguezd46e5b12009-01-22 15:05:50 -08001279
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001280 if (ignore_reg_update(wiphy, initiator))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001281 goto out;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001282 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001283 if (wiphy->bands[band])
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001284 handle_band(wiphy, band);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001285 }
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001286out:
1287 reg_process_beacons(wiphy);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001288 reg_process_ht_flags(wiphy);
Luis R. Rodriguez560e28e2009-01-07 17:43:32 -08001289 if (wiphy->reg_notifier)
Luis R. Rodriguez716f9392009-01-22 15:05:51 -08001290 wiphy->reg_notifier(wiphy, last_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001291}
1292
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001293static void handle_channel_custom(struct wiphy *wiphy,
1294 enum ieee80211_band band,
1295 unsigned int chan_idx,
1296 const struct ieee80211_regdomain *regd)
1297{
1298 int r;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001299 u32 desired_bw_khz = MHZ_TO_KHZ(20);
1300 u32 bw_flags = 0;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001301 const struct ieee80211_reg_rule *reg_rule = NULL;
1302 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001303 const struct ieee80211_freq_range *freq_range = NULL;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001304 struct ieee80211_supported_band *sband;
1305 struct ieee80211_channel *chan;
1306
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001307 assert_reg_lock();
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001308
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001309 sband = wiphy->bands[band];
1310 BUG_ON(chan_idx >= sband->n_channels);
1311 chan = &sband->channels[chan_idx];
1312
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001313 r = freq_reg_info_regd(wiphy,
1314 MHZ_TO_KHZ(chan->center_freq),
1315 desired_bw_khz,
1316 &reg_rule,
1317 regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001318
1319 if (r) {
1320 chan->flags = IEEE80211_CHAN_DISABLED;
1321 return;
1322 }
1323
1324 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001325 freq_range = &reg_rule->freq_range;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001326
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001327 if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
1328 bw_flags = IEEE80211_CHAN_NO_HT40;
1329
1330 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001331 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001332 chan->max_bandwidth = KHZ_TO_MHZ(desired_bw_khz);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001333 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
1334}
1335
1336static void handle_band_custom(struct wiphy *wiphy, enum ieee80211_band band,
1337 const struct ieee80211_regdomain *regd)
1338{
1339 unsigned int i;
1340 struct ieee80211_supported_band *sband;
1341
1342 BUG_ON(!wiphy->bands[band]);
1343 sband = wiphy->bands[band];
1344
1345 for (i = 0; i < sband->n_channels; i++)
1346 handle_channel_custom(wiphy, band, i, regd);
1347}
1348
1349/* Used by drivers prior to wiphy registration */
1350void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1351 const struct ieee80211_regdomain *regd)
1352{
1353 enum ieee80211_band band;
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001354 unsigned int bands_set = 0;
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001355
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001356 mutex_lock(&reg_mutex);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001357 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001358 if (!wiphy->bands[band])
1359 continue;
1360 handle_band_custom(wiphy, band, regd);
1361 bands_set++;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001362 }
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001363 mutex_unlock(&reg_mutex);
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001364
1365 /*
1366 * no point in calling this if it won't have any effect
1367 * on your device's supportd bands.
1368 */
1369 WARN_ON(!bands_set);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001370}
1371EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1372
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001373static int reg_copy_regd(const struct ieee80211_regdomain **dst_regd,
1374 const struct ieee80211_regdomain *src_regd)
1375{
1376 struct ieee80211_regdomain *regd;
1377 int size_of_regd = 0;
1378 unsigned int i;
1379
1380 size_of_regd = sizeof(struct ieee80211_regdomain) +
1381 ((src_regd->n_reg_rules + 1) * sizeof(struct ieee80211_reg_rule));
1382
1383 regd = kzalloc(size_of_regd, GFP_KERNEL);
1384 if (!regd)
1385 return -ENOMEM;
1386
1387 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
1388
1389 for (i = 0; i < src_regd->n_reg_rules; i++)
1390 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
1391 sizeof(struct ieee80211_reg_rule));
1392
1393 *dst_regd = regd;
1394 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001395}
1396
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001397/*
1398 * Return value which can be used by ignore_request() to indicate
1399 * it has been determined we should intersect two regulatory domains
1400 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001401#define REG_INTERSECT 1
1402
Johannes Berg84fa4f42008-10-24 20:32:23 +02001403/* This has the logic which determines when a new request
1404 * should be ignored. */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001405static int ignore_request(struct wiphy *wiphy,
1406 struct regulatory_request *pending_request)
Johannes Berg84fa4f42008-10-24 20:32:23 +02001407{
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001408 struct wiphy *last_wiphy = NULL;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001409
1410 assert_cfg80211_lock();
1411
Johannes Berg84fa4f42008-10-24 20:32:23 +02001412 /* All initial requests are respected */
1413 if (!last_request)
1414 return 0;
1415
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001416 switch (pending_request->initiator) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001417 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001418 return -EINVAL;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001419 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001420
1421 last_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1422
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001423 if (unlikely(!is_an_alpha2(pending_request->alpha2)))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001424 return -EINVAL;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001425 if (last_request->initiator ==
1426 NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001427 if (last_wiphy != wiphy) {
Johannes Berg84fa4f42008-10-24 20:32:23 +02001428 /*
1429 * Two cards with two APs claiming different
1430 * different Country IE alpha2s. We could
1431 * intersect them, but that seems unlikely
1432 * to be correct. Reject second one for now.
1433 */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001434 if (regdom_changes(pending_request->alpha2))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001435 return -EOPNOTSUPP;
1436 return -EALREADY;
1437 }
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001438 /*
1439 * Two consecutive Country IE hints on the same wiphy.
1440 * This should be picked up early by the driver/stack
1441 */
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001442 if (WARN_ON(regdom_changes(pending_request->alpha2)))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001443 return 0;
1444 return -EALREADY;
1445 }
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001446 return REG_INTERSECT;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001447 case NL80211_REGDOM_SET_BY_DRIVER:
1448 if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE) {
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001449 if (is_old_static_regdom(cfg80211_regdomain))
1450 return 0;
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001451 if (regdom_changes(pending_request->alpha2))
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001452 return 0;
Johannes Berg84fa4f42008-10-24 20:32:23 +02001453 return -EALREADY;
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001454 }
Luis R. Rodriguezfff32c02009-02-21 00:04:32 -05001455
1456 /*
1457 * This would happen if you unplug and plug your card
1458 * back in or if you add a new device for which the previously
1459 * loaded card also agrees on the regulatory domain.
1460 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001461 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001462 !regdom_changes(pending_request->alpha2))
Luis R. Rodriguezfff32c02009-02-21 00:04:32 -05001463 return -EALREADY;
1464
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001465 return REG_INTERSECT;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001466 case NL80211_REGDOM_SET_BY_USER:
1467 if (last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001468 return REG_INTERSECT;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001469 /*
1470 * If the user knows better the user should set the regdom
1471 * to their country before the IE is picked up
1472 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001473 if (last_request->initiator == NL80211_REGDOM_SET_BY_USER &&
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001474 last_request->intersect)
1475 return -EOPNOTSUPP;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001476 /*
1477 * Process user requests only after previous user/driver/core
1478 * requests have been processed
1479 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001480 if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE ||
1481 last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
1482 last_request->initiator == NL80211_REGDOM_SET_BY_USER) {
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001483 if (regdom_changes(last_request->alpha2))
Luis R. Rodriguez5eebade2009-01-22 15:05:47 -08001484 return -EAGAIN;
1485 }
1486
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001487 if (!is_old_static_regdom(cfg80211_regdomain) &&
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001488 !regdom_changes(pending_request->alpha2))
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001489 return -EALREADY;
1490
Johannes Berg84fa4f42008-10-24 20:32:23 +02001491 return 0;
1492 }
1493
1494 return -EINVAL;
1495}
1496
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001497/**
1498 * __regulatory_hint - hint to the wireless core a regulatory domain
1499 * @wiphy: if the hint comes from country information from an AP, this
1500 * is required to be set to the wiphy that received the information
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001501 * @pending_request: the regulatory request currently being processed
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001502 *
1503 * The Wireless subsystem can use this function to hint to the wireless core
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001504 * what it believes should be the current regulatory domain.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001505 *
1506 * Returns zero if all went fine, %-EALREADY if a regulatory domain had
1507 * already been set or other standard error codes.
1508 *
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001509 * Caller must hold &cfg80211_mutex and &reg_mutex
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001510 */
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001511static int __regulatory_hint(struct wiphy *wiphy,
1512 struct regulatory_request *pending_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001513{
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001514 bool intersect = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001515 int r = 0;
1516
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001517 assert_cfg80211_lock();
1518
Luis R. Rodriguez2f92cd22009-02-21 00:24:16 -05001519 r = ignore_request(wiphy, pending_request);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001520
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001521 if (r == REG_INTERSECT) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001522 if (pending_request->initiator ==
1523 NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001524 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001525 if (r) {
1526 kfree(pending_request);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001527 return r;
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001528 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001529 }
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001530 intersect = true;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001531 } else if (r) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001532 /*
1533 * If the regulatory domain being requested by the
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001534 * driver has already been set just copy it to the
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001535 * wiphy
1536 */
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001537 if (r == -EALREADY &&
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001538 pending_request->initiator ==
1539 NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001540 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001541 if (r) {
1542 kfree(pending_request);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001543 return r;
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001544 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001545 r = -EALREADY;
1546 goto new_request;
1547 }
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001548 kfree(pending_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001549 return r;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001550 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001551
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001552new_request:
Luis R. Rodriguez5203cdb2008-11-12 14:21:56 -08001553 kfree(last_request);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001554
1555 last_request = pending_request;
1556 last_request->intersect = intersect;
1557
1558 pending_request = NULL;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001559
1560 /* When r == REG_INTERSECT we do need to call CRDA */
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04001561 if (r < 0) {
1562 /*
1563 * Since CRDA will not be called in this case as we already
1564 * have applied the requested regulatory domain before we just
1565 * inform userspace we have processed the request
1566 */
1567 if (r == -EALREADY)
1568 nl80211_send_reg_change_event(last_request);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001569 return r;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04001570 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001571
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001572 return call_crda(last_request->alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001573}
1574
Luis R. Rodriguez30a548c2009-05-02 01:17:27 -04001575/* This processes *all* regulatory hints */
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001576static void reg_process_hint(struct regulatory_request *reg_request)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001577{
1578 int r = 0;
1579 struct wiphy *wiphy = NULL;
1580
1581 BUG_ON(!reg_request->alpha2);
1582
1583 mutex_lock(&cfg80211_mutex);
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001584 mutex_lock(&reg_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001585
1586 if (wiphy_idx_valid(reg_request->wiphy_idx))
1587 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
1588
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001589 if (reg_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001590 !wiphy) {
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001591 kfree(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001592 goto out;
1593 }
1594
Luis R. Rodriguez28da32d2009-02-21 00:24:14 -05001595 r = __regulatory_hint(wiphy, reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001596 /* This is required so that the orig_* parameters are saved */
1597 if (r == -EALREADY && wiphy && wiphy->strict_regulatory)
1598 wiphy_update_regulatory(wiphy, reg_request->initiator);
1599out:
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001600 mutex_unlock(&reg_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001601 mutex_unlock(&cfg80211_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001602}
1603
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001604/* Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_* */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001605static void reg_process_pending_hints(void)
1606 {
1607 struct regulatory_request *reg_request;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001608
1609 spin_lock(&reg_requests_lock);
1610 while (!list_empty(&reg_requests_list)) {
1611 reg_request = list_first_entry(&reg_requests_list,
1612 struct regulatory_request,
1613 list);
1614 list_del_init(&reg_request->list);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001615
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001616 spin_unlock(&reg_requests_lock);
1617 reg_process_hint(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001618 spin_lock(&reg_requests_lock);
1619 }
1620 spin_unlock(&reg_requests_lock);
1621}
1622
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001623/* Processes beacon hints -- this has nothing to do with country IEs */
1624static void reg_process_pending_beacon_hints(void)
1625{
Johannes Berg79c97e92009-07-07 03:56:12 +02001626 struct cfg80211_registered_device *rdev;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001627 struct reg_beacon *pending_beacon, *tmp;
1628
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001629 /*
1630 * No need to hold the reg_mutex here as we just touch wiphys
1631 * and do not read or access regulatory variables.
1632 */
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001633 mutex_lock(&cfg80211_mutex);
1634
1635 /* This goes through the _pending_ beacon list */
1636 spin_lock_bh(&reg_pending_beacons_lock);
1637
1638 if (list_empty(&reg_pending_beacons)) {
1639 spin_unlock_bh(&reg_pending_beacons_lock);
1640 goto out;
1641 }
1642
1643 list_for_each_entry_safe(pending_beacon, tmp,
1644 &reg_pending_beacons, list) {
1645
1646 list_del_init(&pending_beacon->list);
1647
1648 /* Applies the beacon hint to current wiphys */
Johannes Berg79c97e92009-07-07 03:56:12 +02001649 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1650 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001651
1652 /* Remembers the beacon hint for new wiphys or reg changes */
1653 list_add_tail(&pending_beacon->list, &reg_beacon_list);
1654 }
1655
1656 spin_unlock_bh(&reg_pending_beacons_lock);
1657out:
1658 mutex_unlock(&cfg80211_mutex);
1659}
1660
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001661static void reg_todo(struct work_struct *work)
1662{
1663 reg_process_pending_hints();
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001664 reg_process_pending_beacon_hints();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001665}
1666
1667static DECLARE_WORK(reg_work, reg_todo);
1668
1669static void queue_regulatory_request(struct regulatory_request *request)
1670{
1671 spin_lock(&reg_requests_lock);
1672 list_add_tail(&request->list, &reg_requests_list);
1673 spin_unlock(&reg_requests_lock);
1674
1675 schedule_work(&reg_work);
1676}
1677
1678/* Core regulatory hint -- happens once during cfg80211_init() */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001679static int regulatory_hint_core(const char *alpha2)
1680{
1681 struct regulatory_request *request;
1682
1683 BUG_ON(last_request);
1684
1685 request = kzalloc(sizeof(struct regulatory_request),
1686 GFP_KERNEL);
1687 if (!request)
1688 return -ENOMEM;
1689
1690 request->alpha2[0] = alpha2[0];
1691 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001692 request->initiator = NL80211_REGDOM_SET_BY_CORE;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001693
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001694 queue_regulatory_request(request);
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001695
Luis R. Rodriguez5078b2e2009-05-13 17:04:42 -04001696 /*
1697 * This ensures last_request is populated once modules
1698 * come swinging in and calling regulatory hints and
1699 * wiphy_apply_custom_regulatory().
1700 */
1701 flush_scheduled_work();
1702
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001703 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001704}
1705
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001706/* User hints */
1707int regulatory_hint_user(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001708{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001709 struct regulatory_request *request;
1710
Johannes Bergbe3d4812008-10-24 20:32:21 +02001711 BUG_ON(!alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001712
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001713 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1714 if (!request)
1715 return -ENOMEM;
1716
1717 request->wiphy_idx = WIPHY_IDX_STALE;
1718 request->alpha2[0] = alpha2[0];
1719 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001720 request->initiator = NL80211_REGDOM_SET_BY_USER,
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001721
1722 queue_regulatory_request(request);
1723
1724 return 0;
1725}
1726
1727/* Driver hints */
1728int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
1729{
1730 struct regulatory_request *request;
1731
1732 BUG_ON(!alpha2);
1733 BUG_ON(!wiphy);
1734
1735 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1736 if (!request)
1737 return -ENOMEM;
1738
1739 request->wiphy_idx = get_wiphy_idx(wiphy);
1740
1741 /* Must have registered wiphy first */
1742 BUG_ON(!wiphy_idx_valid(request->wiphy_idx));
1743
1744 request->alpha2[0] = alpha2[0];
1745 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001746 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001747
1748 queue_regulatory_request(request);
1749
1750 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001751}
1752EXPORT_SYMBOL(regulatory_hint);
1753
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001754/* Caller must hold reg_mutex */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001755static bool reg_same_country_ie_hint(struct wiphy *wiphy,
1756 u32 country_ie_checksum)
1757{
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001758 struct wiphy *request_wiphy;
1759
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001760 assert_reg_lock();
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001761
Luis R. Rodriguezcc0b6fe2009-03-20 23:53:05 -04001762 if (unlikely(last_request->initiator !=
1763 NL80211_REGDOM_SET_BY_COUNTRY_IE))
1764 return false;
1765
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001766 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1767
1768 if (!request_wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001769 return false;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001770
1771 if (likely(request_wiphy != wiphy))
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001772 return !country_ie_integrity_changes(country_ie_checksum);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001773 /*
1774 * We should not have let these through at this point, they
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001775 * should have been picked up earlier by the first alpha2 check
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001776 * on the device
1777 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001778 if (WARN_ON(!country_ie_integrity_changes(country_ie_checksum)))
1779 return true;
1780 return false;
1781}
1782
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001783/*
1784 * We hold wdev_lock() here so we cannot hold cfg80211_mutex() and
1785 * therefore cannot iterate over the rdev list here.
1786 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001787void regulatory_hint_11d(struct wiphy *wiphy,
1788 u8 *country_ie,
1789 u8 country_ie_len)
1790{
1791 struct ieee80211_regdomain *rd = NULL;
1792 char alpha2[2];
1793 u32 checksum = 0;
1794 enum environment_cap env = ENVIRON_ANY;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001795 struct regulatory_request *request;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001796
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001797 mutex_lock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001798
Luis R. Rodriguez9828b012009-07-30 17:38:06 -07001799 if (unlikely(!last_request))
1800 goto out;
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05001801
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001802 /* IE len must be evenly divisible by 2 */
1803 if (country_ie_len & 0x01)
1804 goto out;
1805
1806 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
1807 goto out;
1808
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001809 /*
1810 * Pending country IE processing, this can happen after we
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001811 * call CRDA and wait for a response if a beacon was received before
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001812 * we were able to process the last regulatory_hint_11d() call
1813 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001814 if (country_ie_regdomain)
1815 goto out;
1816
1817 alpha2[0] = country_ie[0];
1818 alpha2[1] = country_ie[1];
1819
1820 if (country_ie[2] == 'I')
1821 env = ENVIRON_INDOOR;
1822 else if (country_ie[2] == 'O')
1823 env = ENVIRON_OUTDOOR;
1824
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001825 /*
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001826 * We will run this only upon a successful connection on cfg80211.
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001827 * We leave conflict resolution to the workqueue, where can hold
1828 * cfg80211_mutex.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001829 */
Luis R. Rodriguezcc0b6fe2009-03-20 23:53:05 -04001830 if (likely(last_request->initiator ==
1831 NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07001832 wiphy_idx_valid(last_request->wiphy_idx)))
1833 goto out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001834
1835 rd = country_ie_2_rd(country_ie, country_ie_len, &checksum);
1836 if (!rd)
1837 goto out;
1838
Luis R. Rodriguez915278e2009-02-21 00:04:28 -05001839 /*
1840 * This will not happen right now but we leave it here for the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001841 * the future when we want to add suspend/resume support and having
1842 * the user move to another country after doing so, or having the user
Luis R. Rodriguez915278e2009-02-21 00:04:28 -05001843 * move to another AP. Right now we just trust the first AP.
1844 *
1845 * If we hit this before we add this support we want to be informed of
1846 * it as it would indicate a mistake in the current design
1847 */
1848 if (WARN_ON(reg_same_country_ie_hint(wiphy, checksum)))
Luis R. Rodriguez0441d6f2009-02-21 00:04:29 -05001849 goto free_rd_out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001850
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001851 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1852 if (!request)
1853 goto free_rd_out;
1854
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001855 /*
1856 * We keep this around for when CRDA comes back with a response so
1857 * we can intersect with that
1858 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001859 country_ie_regdomain = rd;
1860
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001861 request->wiphy_idx = get_wiphy_idx(wiphy);
1862 request->alpha2[0] = rd->alpha2[0];
1863 request->alpha2[1] = rd->alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001864 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001865 request->country_ie_checksum = checksum;
1866 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001867
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001868 mutex_unlock(&reg_mutex);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001869
1870 queue_regulatory_request(request);
1871
1872 return;
Luis R. Rodriguez0441d6f2009-02-21 00:04:29 -05001873
1874free_rd_out:
1875 kfree(rd);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001876out:
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07001877 mutex_unlock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001878}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001879
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001880static bool freq_is_chan_12_13_14(u16 freq)
1881{
1882 if (freq == ieee80211_channel_to_frequency(12) ||
1883 freq == ieee80211_channel_to_frequency(13) ||
1884 freq == ieee80211_channel_to_frequency(14))
1885 return true;
1886 return false;
1887}
1888
1889int regulatory_hint_found_beacon(struct wiphy *wiphy,
1890 struct ieee80211_channel *beacon_chan,
1891 gfp_t gfp)
1892{
1893 struct reg_beacon *reg_beacon;
1894
1895 if (likely((beacon_chan->beacon_found ||
1896 (beacon_chan->flags & IEEE80211_CHAN_RADAR) ||
1897 (beacon_chan->band == IEEE80211_BAND_2GHZ &&
1898 !freq_is_chan_12_13_14(beacon_chan->center_freq)))))
1899 return 0;
1900
1901 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
1902 if (!reg_beacon)
1903 return -ENOMEM;
1904
1905#ifdef CONFIG_CFG80211_REG_DEBUG
1906 printk(KERN_DEBUG "cfg80211: Found new beacon on "
1907 "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#endif
1912 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
1936 printk(KERN_INFO "\t(start_freq - end_freq @ bandwidth), "
1937 "(max_antenna_gain, max_eirp)\n");
1938
1939 for (i = 0; i < rd->n_reg_rules; i++) {
1940 reg_rule = &rd->reg_rules[i];
1941 freq_range = &reg_rule->freq_range;
1942 power_rule = &reg_rule->power_rule;
1943
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001944 /*
1945 * There may not be documentation for max antenna gain
1946 * in certain regions
1947 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001948 if (power_rule->max_antenna_gain)
1949 printk(KERN_INFO "\t(%d KHz - %d KHz @ %d KHz), "
1950 "(%d mBi, %d mBm)\n",
1951 freq_range->start_freq_khz,
1952 freq_range->end_freq_khz,
1953 freq_range->max_bandwidth_khz,
1954 power_rule->max_antenna_gain,
1955 power_rule->max_eirp);
1956 else
1957 printk(KERN_INFO "\t(%d KHz - %d KHz @ %d KHz), "
1958 "(N/A, %d mBm)\n",
1959 freq_range->start_freq_khz,
1960 freq_range->end_freq_khz,
1961 freq_range->max_bandwidth_khz,
1962 power_rule->max_eirp);
1963 }
1964}
1965
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001966static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001967{
1968
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001969 if (is_intersected_alpha2(rd->alpha2)) {
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001970
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001971 if (last_request->initiator ==
1972 NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Johannes Berg79c97e92009-07-07 03:56:12 +02001973 struct cfg80211_registered_device *rdev;
1974 rdev = cfg80211_rdev_by_wiphy_idx(
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001975 last_request->wiphy_idx);
Johannes Berg79c97e92009-07-07 03:56:12 +02001976 if (rdev) {
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001977 printk(KERN_INFO "cfg80211: Current regulatory "
1978 "domain updated by AP to: %c%c\n",
Johannes Berg79c97e92009-07-07 03:56:12 +02001979 rdev->country_ie_alpha2[0],
1980 rdev->country_ie_alpha2[1]);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001981 } else
1982 printk(KERN_INFO "cfg80211: Current regulatory "
1983 "domain intersected: \n");
1984 } else
1985 printk(KERN_INFO "cfg80211: Current regulatory "
Luis R. Rodriguez039498c2009-01-07 17:43:35 -08001986 "domain intersected: \n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001987 } else if (is_world_regdom(rd->alpha2))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001988 printk(KERN_INFO "cfg80211: World regulatory "
1989 "domain updated:\n");
1990 else {
1991 if (is_unknown_alpha2(rd->alpha2))
1992 printk(KERN_INFO "cfg80211: Regulatory domain "
1993 "changed to driver built-in settings "
1994 "(unknown country)\n");
1995 else
1996 printk(KERN_INFO "cfg80211: Regulatory domain "
1997 "changed to country: %c%c\n",
1998 rd->alpha2[0], rd->alpha2[1]);
1999 }
2000 print_rd_rules(rd);
2001}
2002
Johannes Berg2df78162008-10-28 16:49:41 +01002003static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002004{
2005 printk(KERN_INFO "cfg80211: Regulatory domain: %c%c\n",
2006 rd->alpha2[0], rd->alpha2[1]);
2007 print_rd_rules(rd);
2008}
2009
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002010#ifdef CONFIG_CFG80211_REG_DEBUG
2011static void reg_country_ie_process_debug(
2012 const struct ieee80211_regdomain *rd,
2013 const struct ieee80211_regdomain *country_ie_regdomain,
2014 const struct ieee80211_regdomain *intersected_rd)
2015{
2016 printk(KERN_DEBUG "cfg80211: Received country IE:\n");
2017 print_regdomain_info(country_ie_regdomain);
2018 printk(KERN_DEBUG "cfg80211: CRDA thinks this should applied:\n");
2019 print_regdomain_info(rd);
2020 if (intersected_rd) {
2021 printk(KERN_DEBUG "cfg80211: We intersect both of these "
2022 "and get:\n");
Luis R. Rodriguez667ecd02009-01-22 15:05:43 -08002023 print_regdomain_info(intersected_rd);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002024 return;
2025 }
2026 printk(KERN_DEBUG "cfg80211: Intersection between both failed\n");
2027}
2028#else
2029static inline void reg_country_ie_process_debug(
2030 const struct ieee80211_regdomain *rd,
2031 const struct ieee80211_regdomain *country_ie_regdomain,
2032 const struct ieee80211_regdomain *intersected_rd)
2033{
2034}
2035#endif
2036
Johannes Bergd2372b32008-10-24 20:32:20 +02002037/* Takes ownership of rd only if it doesn't fail */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002038static int __set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002039{
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002040 const struct ieee80211_regdomain *intersected_rd = NULL;
Johannes Berg79c97e92009-07-07 03:56:12 +02002041 struct cfg80211_registered_device *rdev = NULL;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002042 struct wiphy *request_wiphy;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002043 /* Some basic sanity checks first */
2044
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002045 if (is_world_regdom(rd->alpha2)) {
Johannes Bergf6037d02008-10-21 11:01:33 +02002046 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002047 return -EINVAL;
2048 update_world_regdomain(rd);
2049 return 0;
2050 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002051
2052 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
2053 !is_unknown_alpha2(rd->alpha2))
2054 return -EINVAL;
2055
Johannes Bergf6037d02008-10-21 11:01:33 +02002056 if (!last_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002057 return -EINVAL;
2058
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002059 /*
2060 * Lets only bother proceeding on the same alpha2 if the current
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002061 * rd is non static (it means CRDA was present and was used last)
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002062 * and the pending request came in from a country IE
2063 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002064 if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002065 /*
2066 * If someone else asked us to change the rd lets only bother
2067 * checking if the alpha2 changes if CRDA was already called
2068 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002069 if (!is_old_static_regdom(cfg80211_regdomain) &&
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05002070 !regdom_changes(rd->alpha2))
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002071 return -EINVAL;
2072 }
2073
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002074 /*
2075 * Now lets set the regulatory domain, update all driver channels
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002076 * and finally inform them of what we have done, in case they want
2077 * to review or adjust their own settings based on their own
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002078 * internal EEPROM data
2079 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002080
Johannes Bergf6037d02008-10-21 11:01:33 +02002081 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002082 return -EINVAL;
2083
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002084 if (!is_valid_rd(rd)) {
2085 printk(KERN_ERR "cfg80211: Invalid "
2086 "regulatory domain detected:\n");
2087 print_regdomain_info(rd);
2088 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002089 }
2090
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002091 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
2092
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002093 if (!last_request->intersect) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002094 int r;
2095
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002096 if (last_request->initiator != NL80211_REGDOM_SET_BY_DRIVER) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002097 reset_regdomains();
2098 cfg80211_regdomain = rd;
2099 return 0;
2100 }
2101
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002102 /*
2103 * For a driver hint, lets copy the regulatory domain the
2104 * driver wanted to the wiphy to deal with conflicts
2105 */
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002106
Luis R. Rodriguez558f6d32009-06-08 18:54:37 -07002107 /*
2108 * Userspace could have sent two replies with only
2109 * one kernel request.
2110 */
2111 if (request_wiphy->regd)
2112 return -EALREADY;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002113
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002114 r = reg_copy_regd(&request_wiphy->regd, rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002115 if (r)
2116 return r;
2117
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002118 reset_regdomains();
2119 cfg80211_regdomain = rd;
2120 return 0;
2121 }
2122
2123 /* Intersection requires a bit more work */
2124
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002125 if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002126
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002127 intersected_rd = regdom_intersect(rd, cfg80211_regdomain);
2128 if (!intersected_rd)
2129 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002130
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002131 /*
2132 * We can trash what CRDA provided now.
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002133 * However if a driver requested this specific regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002134 * domain we keep it for its private use
2135 */
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002136 if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002137 request_wiphy->regd = rd;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002138 else
2139 kfree(rd);
2140
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002141 rd = NULL;
2142
2143 reset_regdomains();
2144 cfg80211_regdomain = intersected_rd;
2145
2146 return 0;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002147 }
2148
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002149 /*
2150 * Country IE requests are handled a bit differently, we intersect
2151 * the country IE rd with what CRDA believes that country should have
2152 */
2153
Luis R. Rodriguez729e9c72009-05-31 18:24:34 -04002154 /*
2155 * Userspace could have sent two replies with only
2156 * one kernel request. By the second reply we would have
2157 * already processed and consumed the country_ie_regdomain.
2158 */
2159 if (!country_ie_regdomain)
2160 return -EALREADY;
Luis R. Rodriguez86f04682009-03-20 23:53:07 -04002161 BUG_ON(rd == country_ie_regdomain);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002162
Luis R. Rodriguez86f04682009-03-20 23:53:07 -04002163 /*
2164 * Intersect what CRDA returned and our what we
2165 * had built from the Country IE received
2166 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002167
Luis R. Rodriguez86f04682009-03-20 23:53:07 -04002168 intersected_rd = regdom_intersect(rd, country_ie_regdomain);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002169
Luis R. Rodriguez86f04682009-03-20 23:53:07 -04002170 reg_country_ie_process_debug(rd,
2171 country_ie_regdomain,
2172 intersected_rd);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002173
Luis R. Rodriguez86f04682009-03-20 23:53:07 -04002174 kfree(country_ie_regdomain);
2175 country_ie_regdomain = NULL;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002176
2177 if (!intersected_rd)
2178 return -EINVAL;
2179
Johannes Berg79c97e92009-07-07 03:56:12 +02002180 rdev = wiphy_to_dev(request_wiphy);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002181
Johannes Berg79c97e92009-07-07 03:56:12 +02002182 rdev->country_ie_alpha2[0] = rd->alpha2[0];
2183 rdev->country_ie_alpha2[1] = rd->alpha2[1];
2184 rdev->env = last_request->country_ie_env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002185
2186 BUG_ON(intersected_rd == rd);
2187
2188 kfree(rd);
2189 rd = NULL;
2190
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002191 reset_regdomains();
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002192 cfg80211_regdomain = intersected_rd;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002193
2194 return 0;
2195}
2196
2197
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002198/*
2199 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002200 * multiple drivers can be ironed out later. Caller must've already
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002201 * kmalloc'd the rd structure. Caller must hold cfg80211_mutex
2202 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002203int set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002204{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002205 int r;
2206
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002207 assert_cfg80211_lock();
2208
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002209 mutex_lock(&reg_mutex);
2210
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002211 /* Note that this doesn't update the wiphys, this is done below */
2212 r = __set_regdom(rd);
Johannes Bergd2372b32008-10-24 20:32:20 +02002213 if (r) {
2214 kfree(rd);
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002215 mutex_unlock(&reg_mutex);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002216 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02002217 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002218
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002219 /* This would make this whole thing pointless */
Luis R. Rodrigueza01ddaf2008-11-12 14:21:59 -08002220 if (!last_request->intersect)
2221 BUG_ON(rd != cfg80211_regdomain);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002222
2223 /* update all wiphys now with the new established regulatory domain */
Johannes Bergf6037d02008-10-21 11:01:33 +02002224 update_all_wiphy_regulatory(last_request->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002225
Luis R. Rodrigueza01ddaf2008-11-12 14:21:59 -08002226 print_regdomain(cfg80211_regdomain);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002227
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04002228 nl80211_send_reg_change_event(last_request);
2229
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002230 mutex_unlock(&reg_mutex);
2231
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002232 return r;
2233}
2234
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002235/* Caller must hold cfg80211_mutex */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002236void reg_device_remove(struct wiphy *wiphy)
2237{
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002238 struct wiphy *request_wiphy = NULL;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002239
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002240 assert_cfg80211_lock();
2241
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002242 mutex_lock(&reg_mutex);
2243
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002244 kfree(wiphy->regd);
2245
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002246 if (last_request)
2247 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002248
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002249 if (!request_wiphy || request_wiphy != wiphy)
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002250 goto out;
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002251
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002252 last_request->wiphy_idx = WIPHY_IDX_STALE;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002253 last_request->country_ie_env = ENVIRON_ANY;
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002254out:
2255 mutex_unlock(&reg_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002256}
2257
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002258int regulatory_init(void)
2259{
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002260 int err = 0;
Johannes Berg734366d2008-09-15 10:56:48 +02002261
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002262 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
2263 if (IS_ERR(reg_pdev))
2264 return PTR_ERR(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002265
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002266 spin_lock_init(&reg_requests_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002267 spin_lock_init(&reg_pending_beacons_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002268
Johannes Berg734366d2008-09-15 10:56:48 +02002269#ifdef CONFIG_WIRELESS_OLD_REGULATORY
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002270 cfg80211_regdomain = static_regdom(ieee80211_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +02002271
Johannes Berg942b25c2008-09-15 11:26:47 +02002272 printk(KERN_INFO "cfg80211: Using static regulatory domain info\n");
Johannes Berg734366d2008-09-15 10:56:48 +02002273 print_regdomain_info(cfg80211_regdomain);
Johannes Berg734366d2008-09-15 10:56:48 +02002274#else
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002275 cfg80211_regdomain = cfg80211_world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +02002276
Johannes Berg734366d2008-09-15 10:56:48 +02002277#endif
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002278 /* We always try to get an update for the static regdomain */
2279 err = regulatory_hint_core(cfg80211_regdomain->alpha2);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002280 if (err) {
2281 if (err == -ENOMEM)
2282 return err;
2283 /*
2284 * N.B. kobject_uevent_env() can fail mainly for when we're out
2285 * memory which is handled and propagated appropriately above
2286 * but it can also fail during a netlink_broadcast() or during
2287 * early boot for call_usermodehelper(). For now treat these
2288 * errors as non-fatal.
2289 */
2290 printk(KERN_ERR "cfg80211: kobject_uevent_env() was unable "
2291 "to call CRDA during init");
2292#ifdef CONFIG_CFG80211_REG_DEBUG
2293 /* We want to find out exactly why when debugging */
2294 WARN_ON(err);
2295#endif
2296 }
Johannes Berg734366d2008-09-15 10:56:48 +02002297
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002298 /*
2299 * Finally, if the user set the module parameter treat it
2300 * as a user hint.
2301 */
2302 if (!is_world_regdom(ieee80211_regdom))
2303 regulatory_hint_user(ieee80211_regdom);
2304
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002305 return 0;
2306}
2307
2308void regulatory_exit(void)
2309{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002310 struct regulatory_request *reg_request, *tmp;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002311 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002312
2313 cancel_work_sync(&reg_work);
2314
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002315 mutex_lock(&cfg80211_mutex);
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002316 mutex_lock(&reg_mutex);
Johannes Berg734366d2008-09-15 10:56:48 +02002317
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002318 reset_regdomains();
Johannes Berg734366d2008-09-15 10:56:48 +02002319
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002320 kfree(country_ie_regdomain);
2321 country_ie_regdomain = NULL;
2322
Johannes Bergf6037d02008-10-21 11:01:33 +02002323 kfree(last_request);
2324
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002325 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002326
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002327 spin_lock_bh(&reg_pending_beacons_lock);
2328 if (!list_empty(&reg_pending_beacons)) {
2329 list_for_each_entry_safe(reg_beacon, btmp,
2330 &reg_pending_beacons, list) {
2331 list_del(&reg_beacon->list);
2332 kfree(reg_beacon);
2333 }
2334 }
2335 spin_unlock_bh(&reg_pending_beacons_lock);
2336
2337 if (!list_empty(&reg_beacon_list)) {
2338 list_for_each_entry_safe(reg_beacon, btmp,
2339 &reg_beacon_list, list) {
2340 list_del(&reg_beacon->list);
2341 kfree(reg_beacon);
2342 }
2343 }
2344
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002345 spin_lock(&reg_requests_lock);
2346 if (!list_empty(&reg_requests_list)) {
2347 list_for_each_entry_safe(reg_request, tmp,
2348 &reg_requests_list, list) {
2349 list_del(&reg_request->list);
2350 kfree(reg_request);
2351 }
2352 }
2353 spin_unlock(&reg_requests_lock);
2354
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002355 mutex_unlock(&reg_mutex);
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05002356 mutex_unlock(&cfg80211_mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01002357}