blob: da2a8aca4280b600e835a532c5598e01fce65dc5 [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>
Johannes Berg8318d782008-01-24 19:38:38 +010040#include <net/wireless.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070041#include <net/cfg80211.h>
Johannes Berg8318d782008-01-24 19:38:38 +010042#include "core.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070043#include "reg.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. Rodriguezb2e1b302008-09-09 23:19:48 -070051/* Keep the ordering from large to small */
52static u32 supported_bandwidths[] = {
53 MHZ_TO_KHZ(40),
54 MHZ_TO_KHZ(20),
Johannes Berg8318d782008-01-24 19:38:38 +010055};
56
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050057/*
58 * Central wireless core regulatory domains, we only need two,
Johannes Berg734366d2008-09-15 10:56:48 +020059 * the current one and a world regulatory domain in case we have no
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050060 * information to give us an alpha2
61 */
Luis R. Rodriguezf1303472009-01-30 09:26:42 -080062const struct ieee80211_regdomain *cfg80211_regdomain;
Johannes Berg734366d2008-09-15 10:56:48 +020063
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050064/*
65 * We use this as a place for the rd structure built from the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -080066 * last parsed country IE to rest until CRDA gets back to us with
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -050067 * what it thinks should apply for the same country
68 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -080069static const struct ieee80211_regdomain *country_ie_regdomain;
70
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -050071static LIST_HEAD(reg_requests_list);
72static spinlock_t reg_requests_lock;
73
Johannes Berg734366d2008-09-15 10:56:48 +020074/* We keep a static world regulatory domain in case of the absence of CRDA */
75static const struct ieee80211_regdomain world_regdom = {
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -050076 .n_reg_rules = 3,
Johannes Berg734366d2008-09-15 10:56:48 +020077 .alpha2 = "00",
78 .reg_rules = {
Luis R. Rodriguez68798a62009-02-21 00:20:37 -050079 /* IEEE 802.11b/g, channels 1..11 */
80 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -050081 /* IEEE 802.11a, channel 36..48 */
82 REG_RULE(5180-10, 5240+10, 40, 6, 23,
83 NL80211_RRF_PASSIVE_SCAN |
84 NL80211_RRF_NO_IBSS),
85
86 /* NB: 5260 MHz - 5700 MHz requies DFS */
87
88 /* IEEE 802.11a, channel 149..165 */
89 REG_RULE(5745-10, 5825+10, 40, 6, 23,
90 NL80211_RRF_PASSIVE_SCAN |
91 NL80211_RRF_NO_IBSS),
Johannes Berg734366d2008-09-15 10:56:48 +020092 }
93};
94
Johannes Berga3d2eaf2008-09-15 11:10:52 +020095static const struct ieee80211_regdomain *cfg80211_world_regdom =
96 &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +020097
98#ifdef CONFIG_WIRELESS_OLD_REGULATORY
99static char *ieee80211_regdom = "US";
100module_param(ieee80211_regdom, charp, 0444);
101MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
102
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500103/*
104 * We assume 40 MHz bandwidth for the old regulatory work.
Johannes Berg734366d2008-09-15 10:56:48 +0200105 * We make emphasis we are using the exact same frequencies
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500106 * as before
107 */
Johannes Berg734366d2008-09-15 10:56:48 +0200108
109static const struct ieee80211_regdomain us_regdom = {
110 .n_reg_rules = 6,
111 .alpha2 = "US",
112 .reg_rules = {
113 /* IEEE 802.11b/g, channels 1..11 */
114 REG_RULE(2412-10, 2462+10, 40, 6, 27, 0),
115 /* IEEE 802.11a, channel 36 */
116 REG_RULE(5180-10, 5180+10, 40, 6, 23, 0),
117 /* IEEE 802.11a, channel 40 */
118 REG_RULE(5200-10, 5200+10, 40, 6, 23, 0),
119 /* IEEE 802.11a, channel 44 */
120 REG_RULE(5220-10, 5220+10, 40, 6, 23, 0),
121 /* IEEE 802.11a, channels 48..64 */
122 REG_RULE(5240-10, 5320+10, 40, 6, 23, 0),
123 /* IEEE 802.11a, channels 149..165, outdoor */
124 REG_RULE(5745-10, 5825+10, 40, 6, 30, 0),
125 }
126};
127
128static const struct ieee80211_regdomain jp_regdom = {
129 .n_reg_rules = 3,
130 .alpha2 = "JP",
131 .reg_rules = {
132 /* IEEE 802.11b/g, channels 1..14 */
133 REG_RULE(2412-10, 2484+10, 40, 6, 20, 0),
134 /* IEEE 802.11a, channels 34..48 */
135 REG_RULE(5170-10, 5240+10, 40, 6, 20,
136 NL80211_RRF_PASSIVE_SCAN),
137 /* IEEE 802.11a, channels 52..64 */
138 REG_RULE(5260-10, 5320+10, 40, 6, 20,
139 NL80211_RRF_NO_IBSS |
140 NL80211_RRF_DFS),
141 }
142};
143
144static const struct ieee80211_regdomain eu_regdom = {
145 .n_reg_rules = 6,
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500146 /*
147 * This alpha2 is bogus, we leave it here just for stupid
148 * backward compatibility
149 */
Johannes Berg734366d2008-09-15 10:56:48 +0200150 .alpha2 = "EU",
151 .reg_rules = {
152 /* IEEE 802.11b/g, channels 1..13 */
153 REG_RULE(2412-10, 2472+10, 40, 6, 20, 0),
154 /* IEEE 802.11a, channel 36 */
155 REG_RULE(5180-10, 5180+10, 40, 6, 23,
156 NL80211_RRF_PASSIVE_SCAN),
157 /* IEEE 802.11a, channel 40 */
158 REG_RULE(5200-10, 5200+10, 40, 6, 23,
159 NL80211_RRF_PASSIVE_SCAN),
160 /* IEEE 802.11a, channel 44 */
161 REG_RULE(5220-10, 5220+10, 40, 6, 23,
162 NL80211_RRF_PASSIVE_SCAN),
163 /* IEEE 802.11a, channels 48..64 */
164 REG_RULE(5240-10, 5320+10, 40, 6, 20,
165 NL80211_RRF_NO_IBSS |
166 NL80211_RRF_DFS),
167 /* IEEE 802.11a, channels 100..140 */
168 REG_RULE(5500-10, 5700+10, 40, 6, 30,
169 NL80211_RRF_NO_IBSS |
170 NL80211_RRF_DFS),
171 }
172};
173
174static const struct ieee80211_regdomain *static_regdom(char *alpha2)
175{
176 if (alpha2[0] == 'U' && alpha2[1] == 'S')
177 return &us_regdom;
178 if (alpha2[0] == 'J' && alpha2[1] == 'P')
179 return &jp_regdom;
180 if (alpha2[0] == 'E' && alpha2[1] == 'U')
181 return &eu_regdom;
182 /* Default, as per the old rules */
183 return &us_regdom;
184}
185
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200186static bool is_old_static_regdom(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200187{
188 if (rd == &us_regdom || rd == &jp_regdom || rd == &eu_regdom)
189 return true;
190 return false;
191}
Johannes Berg734366d2008-09-15 10:56:48 +0200192#else
Johannes Berg942b25c2008-09-15 11:26:47 +0200193static inline bool is_old_static_regdom(const struct ieee80211_regdomain *rd)
194{
195 return false;
196}
197#endif
198
Johannes Berg734366d2008-09-15 10:56:48 +0200199static void reset_regdomains(void)
200{
Johannes Berg942b25c2008-09-15 11:26:47 +0200201 /* avoid freeing static information or freeing something twice */
202 if (cfg80211_regdomain == cfg80211_world_regdom)
203 cfg80211_regdomain = NULL;
204 if (cfg80211_world_regdom == &world_regdom)
205 cfg80211_world_regdom = NULL;
206 if (cfg80211_regdomain == &world_regdom)
207 cfg80211_regdomain = NULL;
208 if (is_old_static_regdom(cfg80211_regdomain))
209 cfg80211_regdomain = NULL;
210
211 kfree(cfg80211_regdomain);
212 kfree(cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +0200213
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200214 cfg80211_world_regdom = &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200215 cfg80211_regdomain = NULL;
216}
217
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500218/*
219 * Dynamic world regulatory domain requested by the wireless
220 * core upon initialization
221 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200222static void update_world_regdomain(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200223{
Johannes Bergf6037d02008-10-21 11:01:33 +0200224 BUG_ON(!last_request);
Johannes Berg734366d2008-09-15 10:56:48 +0200225
226 reset_regdomains();
227
228 cfg80211_world_regdom = rd;
229 cfg80211_regdomain = rd;
230}
Johannes Berg734366d2008-09-15 10:56:48 +0200231
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200232bool is_world_regdom(const char *alpha2)
Johannes Berg8318d782008-01-24 19:38:38 +0100233{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700234 if (!alpha2)
235 return false;
236 if (alpha2[0] == '0' && alpha2[1] == '0')
237 return true;
238 return false;
Johannes Berg8318d782008-01-24 19:38:38 +0100239}
240
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200241static bool is_alpha2_set(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700242{
243 if (!alpha2)
244 return false;
245 if (alpha2[0] != 0 && alpha2[1] != 0)
246 return true;
247 return false;
248}
Johannes Berg8318d782008-01-24 19:38:38 +0100249
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700250static bool is_alpha_upper(char letter)
251{
252 /* ASCII A - Z */
253 if (letter >= 65 && letter <= 90)
254 return true;
255 return false;
256}
257
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200258static bool is_unknown_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700259{
260 if (!alpha2)
261 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500262 /*
263 * Special case where regulatory domain was built by driver
264 * but a specific alpha2 cannot be determined
265 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700266 if (alpha2[0] == '9' && alpha2[1] == '9')
267 return true;
268 return false;
269}
270
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800271static bool is_intersected_alpha2(const char *alpha2)
272{
273 if (!alpha2)
274 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500275 /*
276 * Special case where regulatory domain is the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800277 * result of an intersection between two regulatory domain
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500278 * structures
279 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800280 if (alpha2[0] == '9' && alpha2[1] == '8')
281 return true;
282 return false;
283}
284
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200285static bool is_an_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700286{
287 if (!alpha2)
288 return false;
289 if (is_alpha_upper(alpha2[0]) && is_alpha_upper(alpha2[1]))
290 return true;
291 return false;
292}
293
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200294static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700295{
296 if (!alpha2_x || !alpha2_y)
297 return false;
298 if (alpha2_x[0] == alpha2_y[0] &&
299 alpha2_x[1] == alpha2_y[1])
300 return true;
301 return false;
302}
303
Luis R. Rodriguez69b15722009-02-21 00:04:33 -0500304static bool regdom_changes(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700305{
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500306 assert_cfg80211_lock();
307
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700308 if (!cfg80211_regdomain)
309 return true;
310 if (alpha2_equal(cfg80211_regdomain->alpha2, alpha2))
311 return false;
312 return true;
313}
314
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800315/**
316 * country_ie_integrity_changes - tells us if the country IE has changed
317 * @checksum: checksum of country IE of fields we are interested in
318 *
319 * If the country IE has not changed you can ignore it safely. This is
320 * useful to determine if two devices are seeing two different country IEs
321 * even on the same alpha2. Note that this will return false if no IE has
322 * been set on the wireless core yet.
323 */
324static bool country_ie_integrity_changes(u32 checksum)
325{
326 /* If no IE has been set then the checksum doesn't change */
327 if (unlikely(!last_request->country_ie_checksum))
328 return false;
329 if (unlikely(last_request->country_ie_checksum != checksum))
330 return true;
331 return false;
332}
333
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500334/*
335 * This lets us keep regulatory code which is updated on a regulatory
336 * basis in userspace.
337 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700338static int call_crda(const char *alpha2)
339{
340 char country_env[9 + 2] = "COUNTRY=";
341 char *envp[] = {
342 country_env,
343 NULL
344 };
345
346 if (!is_world_regdom((char *) alpha2))
347 printk(KERN_INFO "cfg80211: Calling CRDA for country: %c%c\n",
348 alpha2[0], alpha2[1]);
349 else
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700350 printk(KERN_INFO "cfg80211: Calling CRDA to update world "
351 "regulatory domain\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700352
353 country_env[8] = alpha2[0];
354 country_env[9] = alpha2[1];
355
356 return kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, envp);
357}
358
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700359/* Used by nl80211 before kmalloc'ing our regulatory domain */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200360bool reg_is_valid_request(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700361{
Johannes Bergf6037d02008-10-21 11:01:33 +0200362 if (!last_request)
363 return false;
364
365 return alpha2_equal(last_request->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700366}
367
368/* Sanity check on a regulatory rule */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200369static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700370{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200371 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700372 u32 freq_diff;
373
Luis R. Rodriguez91e99002008-11-12 14:21:55 -0800374 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700375 return false;
376
377 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
378 return false;
379
380 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
381
Luis R. Rodriguezd71aaf62008-10-30 13:33:52 -0700382 if (freq_diff <= 0 || freq_range->max_bandwidth_khz > freq_diff)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700383 return false;
384
385 return true;
386}
387
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200388static bool is_valid_rd(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700389{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200390 const struct ieee80211_reg_rule *reg_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700391 unsigned int i;
392
393 if (!rd->n_reg_rules)
394 return false;
395
Luis R. Rodriguez88dc1c32008-11-12 14:22:01 -0800396 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
397 return false;
398
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700399 for (i = 0; i < rd->n_reg_rules; i++) {
400 reg_rule = &rd->reg_rules[i];
401 if (!is_valid_reg_rule(reg_rule))
402 return false;
403 }
404
405 return true;
406}
407
408/* Returns value in KHz */
409static u32 freq_max_bandwidth(const struct ieee80211_freq_range *freq_range,
410 u32 freq)
411{
412 unsigned int i;
413 for (i = 0; i < ARRAY_SIZE(supported_bandwidths); i++) {
414 u32 start_freq_khz = freq - supported_bandwidths[i]/2;
415 u32 end_freq_khz = freq + supported_bandwidths[i]/2;
416 if (start_freq_khz >= freq_range->start_freq_khz &&
417 end_freq_khz <= freq_range->end_freq_khz)
418 return supported_bandwidths[i];
419 }
420 return 0;
421}
422
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800423/**
424 * freq_in_rule_band - tells us if a frequency is in a frequency band
425 * @freq_range: frequency rule we want to query
426 * @freq_khz: frequency we are inquiring about
427 *
428 * This lets us know if a specific frequency rule is or is not relevant to
429 * a specific frequency's band. Bands are device specific and artificial
430 * definitions (the "2.4 GHz band" and the "5 GHz band"), however it is
431 * safe for now to assume that a frequency rule should not be part of a
432 * frequency's band if the start freq or end freq are off by more than 2 GHz.
433 * This resolution can be lowered and should be considered as we add
434 * regulatory rule support for other "bands".
435 **/
436static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
437 u32 freq_khz)
438{
439#define ONE_GHZ_IN_KHZ 1000000
440 if (abs(freq_khz - freq_range->start_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
441 return true;
442 if (abs(freq_khz - freq_range->end_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
443 return true;
444 return false;
445#undef ONE_GHZ_IN_KHZ
446}
447
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500448/*
449 * Converts a country IE to a regulatory domain. A regulatory domain
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800450 * structure has a lot of information which the IE doesn't yet have,
451 * so for the other values we use upper max values as we will intersect
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500452 * with our userspace regulatory agent to get lower bounds.
453 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800454static struct ieee80211_regdomain *country_ie_2_rd(
455 u8 *country_ie,
456 u8 country_ie_len,
457 u32 *checksum)
458{
459 struct ieee80211_regdomain *rd = NULL;
460 unsigned int i = 0;
461 char alpha2[2];
462 u32 flags = 0;
463 u32 num_rules = 0, size_of_regd = 0;
464 u8 *triplets_start = NULL;
465 u8 len_at_triplet = 0;
466 /* the last channel we have registered in a subband (triplet) */
467 int last_sub_max_channel = 0;
468
469 *checksum = 0xDEADBEEF;
470
471 /* Country IE requirements */
472 BUG_ON(country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN ||
473 country_ie_len & 0x01);
474
475 alpha2[0] = country_ie[0];
476 alpha2[1] = country_ie[1];
477
478 /*
479 * Third octet can be:
480 * 'I' - Indoor
481 * 'O' - Outdoor
482 *
483 * anything else we assume is no restrictions
484 */
485 if (country_ie[2] == 'I')
486 flags = NL80211_RRF_NO_OUTDOOR;
487 else if (country_ie[2] == 'O')
488 flags = NL80211_RRF_NO_INDOOR;
489
490 country_ie += 3;
491 country_ie_len -= 3;
492
493 triplets_start = country_ie;
494 len_at_triplet = country_ie_len;
495
496 *checksum ^= ((flags ^ alpha2[0] ^ alpha2[1]) << 8);
497
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500498 /*
499 * We need to build a reg rule for each triplet, but first we must
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800500 * calculate the number of reg rules we will need. We will need one
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500501 * for each channel subband
502 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800503 while (country_ie_len >= 3) {
Luis R. Rodriguez615aab42009-01-22 15:05:46 -0800504 int end_channel = 0;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800505 struct ieee80211_country_ie_triplet *triplet =
506 (struct ieee80211_country_ie_triplet *) country_ie;
507 int cur_sub_max_channel = 0, cur_channel = 0;
508
509 if (triplet->ext.reg_extension_id >=
510 IEEE80211_COUNTRY_EXTENSION_ID) {
511 country_ie += 3;
512 country_ie_len -= 3;
513 continue;
514 }
515
Luis R. Rodriguez615aab42009-01-22 15:05:46 -0800516 /* 2 GHz */
517 if (triplet->chans.first_channel <= 14)
518 end_channel = triplet->chans.first_channel +
519 triplet->chans.num_channels;
520 else
521 /*
522 * 5 GHz -- For example in country IEs if the first
523 * channel given is 36 and the number of channels is 4
524 * then the individual channel numbers defined for the
525 * 5 GHz PHY by these parameters are: 36, 40, 44, and 48
526 * and not 36, 37, 38, 39.
527 *
528 * See: http://tinyurl.com/11d-clarification
529 */
530 end_channel = triplet->chans.first_channel +
531 (4 * (triplet->chans.num_channels - 1));
532
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800533 cur_channel = triplet->chans.first_channel;
Luis R. Rodriguez615aab42009-01-22 15:05:46 -0800534 cur_sub_max_channel = end_channel;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800535
536 /* Basic sanity check */
537 if (cur_sub_max_channel < cur_channel)
538 return NULL;
539
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500540 /*
541 * Do not allow overlapping channels. Also channels
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800542 * passed in each subband must be monotonically
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500543 * increasing
544 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800545 if (last_sub_max_channel) {
546 if (cur_channel <= last_sub_max_channel)
547 return NULL;
548 if (cur_sub_max_channel <= last_sub_max_channel)
549 return NULL;
550 }
551
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500552 /*
553 * When dot11RegulatoryClassesRequired is supported
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800554 * we can throw ext triplets as part of this soup,
555 * for now we don't care when those change as we
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500556 * don't support them
557 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800558 *checksum ^= ((cur_channel ^ cur_sub_max_channel) << 8) |
559 ((cur_sub_max_channel ^ cur_sub_max_channel) << 16) |
560 ((triplet->chans.max_power ^ cur_sub_max_channel) << 24);
561
562 last_sub_max_channel = cur_sub_max_channel;
563
564 country_ie += 3;
565 country_ie_len -= 3;
566 num_rules++;
567
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500568 /*
569 * Note: this is not a IEEE requirement but
570 * simply a memory requirement
571 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800572 if (num_rules > NL80211_MAX_SUPP_REG_RULES)
573 return NULL;
574 }
575
576 country_ie = triplets_start;
577 country_ie_len = len_at_triplet;
578
579 size_of_regd = sizeof(struct ieee80211_regdomain) +
580 (num_rules * sizeof(struct ieee80211_reg_rule));
581
582 rd = kzalloc(size_of_regd, GFP_KERNEL);
583 if (!rd)
584 return NULL;
585
586 rd->n_reg_rules = num_rules;
587 rd->alpha2[0] = alpha2[0];
588 rd->alpha2[1] = alpha2[1];
589
590 /* This time around we fill in the rd */
591 while (country_ie_len >= 3) {
Luis R. Rodriguez02e68a32009-01-07 17:43:37 -0800592 int end_channel = 0;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800593 struct ieee80211_country_ie_triplet *triplet =
594 (struct ieee80211_country_ie_triplet *) country_ie;
595 struct ieee80211_reg_rule *reg_rule = NULL;
596 struct ieee80211_freq_range *freq_range = NULL;
597 struct ieee80211_power_rule *power_rule = NULL;
598
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500599 /*
600 * Must parse if dot11RegulatoryClassesRequired is true,
601 * we don't support this yet
602 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800603 if (triplet->ext.reg_extension_id >=
604 IEEE80211_COUNTRY_EXTENSION_ID) {
605 country_ie += 3;
606 country_ie_len -= 3;
607 continue;
608 }
609
610 reg_rule = &rd->reg_rules[i];
611 freq_range = &reg_rule->freq_range;
612 power_rule = &reg_rule->power_rule;
613
614 reg_rule->flags = flags;
615
Luis R. Rodriguez02e68a32009-01-07 17:43:37 -0800616 /* 2 GHz */
617 if (triplet->chans.first_channel <= 14)
618 end_channel = triplet->chans.first_channel +
619 triplet->chans.num_channels;
620 else
Luis R. Rodriguez02e68a32009-01-07 17:43:37 -0800621 end_channel = triplet->chans.first_channel +
622 (4 * (triplet->chans.num_channels - 1));
623
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500624 /*
625 * The +10 is since the regulatory domain expects
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800626 * the actual band edge, not the center of freq for
627 * its start and end freqs, assuming 20 MHz bandwidth on
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500628 * the channels passed
629 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800630 freq_range->start_freq_khz =
631 MHZ_TO_KHZ(ieee80211_channel_to_frequency(
632 triplet->chans.first_channel) - 10);
633 freq_range->end_freq_khz =
634 MHZ_TO_KHZ(ieee80211_channel_to_frequency(
Luis R. Rodriguez02e68a32009-01-07 17:43:37 -0800635 end_channel) + 10);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800636
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500637 /*
638 * These are large arbitrary values we use to intersect later.
639 * Increment this if we ever support >= 40 MHz channels
640 * in IEEE 802.11
641 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800642 freq_range->max_bandwidth_khz = MHZ_TO_KHZ(40);
643 power_rule->max_antenna_gain = DBI_TO_MBI(100);
644 power_rule->max_eirp = DBM_TO_MBM(100);
645
646 country_ie += 3;
647 country_ie_len -= 3;
648 i++;
649
650 BUG_ON(i > NL80211_MAX_SUPP_REG_RULES);
651 }
652
653 return rd;
654}
655
656
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500657/*
658 * Helper for regdom_intersect(), this does the real
659 * mathematical intersection fun
660 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700661static int reg_rules_intersect(
662 const struct ieee80211_reg_rule *rule1,
663 const struct ieee80211_reg_rule *rule2,
664 struct ieee80211_reg_rule *intersected_rule)
665{
666 const struct ieee80211_freq_range *freq_range1, *freq_range2;
667 struct ieee80211_freq_range *freq_range;
668 const struct ieee80211_power_rule *power_rule1, *power_rule2;
669 struct ieee80211_power_rule *power_rule;
670 u32 freq_diff;
671
672 freq_range1 = &rule1->freq_range;
673 freq_range2 = &rule2->freq_range;
674 freq_range = &intersected_rule->freq_range;
675
676 power_rule1 = &rule1->power_rule;
677 power_rule2 = &rule2->power_rule;
678 power_rule = &intersected_rule->power_rule;
679
680 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
681 freq_range2->start_freq_khz);
682 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
683 freq_range2->end_freq_khz);
684 freq_range->max_bandwidth_khz = min(freq_range1->max_bandwidth_khz,
685 freq_range2->max_bandwidth_khz);
686
687 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
688 if (freq_range->max_bandwidth_khz > freq_diff)
689 freq_range->max_bandwidth_khz = freq_diff;
690
691 power_rule->max_eirp = min(power_rule1->max_eirp,
692 power_rule2->max_eirp);
693 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
694 power_rule2->max_antenna_gain);
695
696 intersected_rule->flags = (rule1->flags | rule2->flags);
697
698 if (!is_valid_reg_rule(intersected_rule))
699 return -EINVAL;
700
701 return 0;
702}
703
704/**
705 * regdom_intersect - do the intersection between two regulatory domains
706 * @rd1: first regulatory domain
707 * @rd2: second regulatory domain
708 *
709 * Use this function to get the intersection between two regulatory domains.
710 * Once completed we will mark the alpha2 for the rd as intersected, "98",
711 * as no one single alpha2 can represent this regulatory domain.
712 *
713 * Returns a pointer to the regulatory domain structure which will hold the
714 * resulting intersection of rules between rd1 and rd2. We will
715 * kzalloc() this structure for you.
716 */
717static struct ieee80211_regdomain *regdom_intersect(
718 const struct ieee80211_regdomain *rd1,
719 const struct ieee80211_regdomain *rd2)
720{
721 int r, size_of_regd;
722 unsigned int x, y;
723 unsigned int num_rules = 0, rule_idx = 0;
724 const struct ieee80211_reg_rule *rule1, *rule2;
725 struct ieee80211_reg_rule *intersected_rule;
726 struct ieee80211_regdomain *rd;
727 /* This is just a dummy holder to help us count */
728 struct ieee80211_reg_rule irule;
729
730 /* Uses the stack temporarily for counter arithmetic */
731 intersected_rule = &irule;
732
733 memset(intersected_rule, 0, sizeof(struct ieee80211_reg_rule));
734
735 if (!rd1 || !rd2)
736 return NULL;
737
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500738 /*
739 * First we get a count of the rules we'll need, then we actually
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700740 * build them. This is to so we can malloc() and free() a
741 * regdomain once. The reason we use reg_rules_intersect() here
742 * is it will return -EINVAL if the rule computed makes no sense.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500743 * All rules that do check out OK are valid.
744 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700745
746 for (x = 0; x < rd1->n_reg_rules; x++) {
747 rule1 = &rd1->reg_rules[x];
748 for (y = 0; y < rd2->n_reg_rules; y++) {
749 rule2 = &rd2->reg_rules[y];
750 if (!reg_rules_intersect(rule1, rule2,
751 intersected_rule))
752 num_rules++;
753 memset(intersected_rule, 0,
754 sizeof(struct ieee80211_reg_rule));
755 }
756 }
757
758 if (!num_rules)
759 return NULL;
760
761 size_of_regd = sizeof(struct ieee80211_regdomain) +
762 ((num_rules + 1) * sizeof(struct ieee80211_reg_rule));
763
764 rd = kzalloc(size_of_regd, GFP_KERNEL);
765 if (!rd)
766 return NULL;
767
768 for (x = 0; x < rd1->n_reg_rules; x++) {
769 rule1 = &rd1->reg_rules[x];
770 for (y = 0; y < rd2->n_reg_rules; y++) {
771 rule2 = &rd2->reg_rules[y];
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500772 /*
773 * This time around instead of using the stack lets
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700774 * write to the target rule directly saving ourselves
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500775 * a memcpy()
776 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700777 intersected_rule = &rd->reg_rules[rule_idx];
778 r = reg_rules_intersect(rule1, rule2,
779 intersected_rule);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500780 /*
781 * No need to memset here the intersected rule here as
782 * we're not using the stack anymore
783 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700784 if (r)
785 continue;
786 rule_idx++;
787 }
788 }
789
790 if (rule_idx != num_rules) {
791 kfree(rd);
792 return NULL;
793 }
794
795 rd->n_reg_rules = num_rules;
796 rd->alpha2[0] = '9';
797 rd->alpha2[1] = '8';
798
799 return rd;
800}
801
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500802/*
803 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
804 * want to just have the channel structure use these
805 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700806static u32 map_regdom_flags(u32 rd_flags)
807{
808 u32 channel_flags = 0;
809 if (rd_flags & NL80211_RRF_PASSIVE_SCAN)
810 channel_flags |= IEEE80211_CHAN_PASSIVE_SCAN;
811 if (rd_flags & NL80211_RRF_NO_IBSS)
812 channel_flags |= IEEE80211_CHAN_NO_IBSS;
813 if (rd_flags & NL80211_RRF_DFS)
814 channel_flags |= IEEE80211_CHAN_RADAR;
815 return channel_flags;
816}
817
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800818static int freq_reg_info_regd(struct wiphy *wiphy,
819 u32 center_freq,
820 u32 *bandwidth,
821 const struct ieee80211_reg_rule **reg_rule,
822 const struct ieee80211_regdomain *custom_regd)
Johannes Berg8318d782008-01-24 19:38:38 +0100823{
824 int i;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800825 bool band_rule_found = false;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800826 const struct ieee80211_regdomain *regd;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700827 u32 max_bandwidth = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100828
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800829 regd = custom_regd ? custom_regd : cfg80211_regdomain;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800830
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500831 /*
832 * Follow the driver's regulatory domain, if present, unless a country
833 * IE has been processed or a user wants to help complaince further
834 */
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800835 if (last_request->initiator != REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodriguez24ed1da2009-01-22 15:05:54 -0800836 last_request->initiator != REGDOM_SET_BY_USER &&
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800837 wiphy->regd)
838 regd = wiphy->regd;
839
840 if (!regd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700841 return -EINVAL;
842
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800843 for (i = 0; i < regd->n_reg_rules; i++) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700844 const struct ieee80211_reg_rule *rr;
845 const struct ieee80211_freq_range *fr = NULL;
846 const struct ieee80211_power_rule *pr = NULL;
847
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800848 rr = &regd->reg_rules[i];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700849 fr = &rr->freq_range;
850 pr = &rr->power_rule;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800851
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500852 /*
853 * We only need to know if one frequency rule was
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800854 * was in center_freq's band, that's enough, so lets
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500855 * not overwrite it once found
856 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800857 if (!band_rule_found)
858 band_rule_found = freq_in_rule_band(fr, center_freq);
859
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700860 max_bandwidth = freq_max_bandwidth(fr, center_freq);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800861
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700862 if (max_bandwidth && *bandwidth <= max_bandwidth) {
863 *reg_rule = rr;
864 *bandwidth = max_bandwidth;
Johannes Berg8318d782008-01-24 19:38:38 +0100865 break;
866 }
867 }
868
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800869 if (!band_rule_found)
870 return -ERANGE;
871
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700872 return !max_bandwidth;
873}
Luis R. Rodriguez34f57342009-01-22 15:05:45 -0800874EXPORT_SYMBOL(freq_reg_info);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700875
Luis R. Rodriguez34f57342009-01-22 15:05:45 -0800876int freq_reg_info(struct wiphy *wiphy, u32 center_freq, u32 *bandwidth,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800877 const struct ieee80211_reg_rule **reg_rule)
878{
879 return freq_reg_info_regd(wiphy, center_freq,
880 bandwidth, reg_rule, NULL);
881}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700882
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800883static void handle_channel(struct wiphy *wiphy, enum ieee80211_band band,
884 unsigned int chan_idx)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700885{
886 int r;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800887 u32 flags;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700888 u32 max_bandwidth = 0;
889 const struct ieee80211_reg_rule *reg_rule = NULL;
890 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800891 struct ieee80211_supported_band *sband;
892 struct ieee80211_channel *chan;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500893 struct wiphy *request_wiphy = NULL;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800894
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500895 assert_cfg80211_lock();
896
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -0500897 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
898
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800899 sband = wiphy->bands[band];
900 BUG_ON(chan_idx >= sband->n_channels);
901 chan = &sband->channels[chan_idx];
902
903 flags = chan->orig_flags;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700904
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800905 r = freq_reg_info(wiphy, MHZ_TO_KHZ(chan->center_freq),
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700906 &max_bandwidth, &reg_rule);
907
908 if (r) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500909 /*
910 * This means no regulatory rule was found in the country IE
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800911 * with a frequency range on the center_freq's band, since
912 * IEEE-802.11 allows for a country IE to have a subset of the
913 * regulatory information provided in a country we ignore
914 * disabling the channel unless at least one reg rule was
915 * found on the center_freq's band. For details see this
916 * clarification:
917 *
918 * http://tinyurl.com/11d-clarification
919 */
920 if (r == -ERANGE &&
921 last_request->initiator == REGDOM_SET_BY_COUNTRY_IE) {
922#ifdef CONFIG_CFG80211_REG_DEBUG
923 printk(KERN_DEBUG "cfg80211: Leaving channel %d MHz "
924 "intact on %s - no rule found in band on "
925 "Country IE\n",
926 chan->center_freq, wiphy_name(wiphy));
927#endif
928 } else {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500929 /*
930 * In this case we know the country IE has at least one reg rule
931 * for the band so we respect its band definitions
932 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800933#ifdef CONFIG_CFG80211_REG_DEBUG
934 if (last_request->initiator == REGDOM_SET_BY_COUNTRY_IE)
935 printk(KERN_DEBUG "cfg80211: Disabling "
936 "channel %d MHz on %s due to "
937 "Country IE\n",
938 chan->center_freq, wiphy_name(wiphy));
939#endif
940 flags |= IEEE80211_CHAN_DISABLED;
941 chan->flags = flags;
942 }
Johannes Berg8318d782008-01-24 19:38:38 +0100943 return;
944 }
945
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700946 power_rule = &reg_rule->power_rule;
947
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800948 if (last_request->initiator == REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -0500949 request_wiphy && request_wiphy == wiphy &&
950 request_wiphy->strict_regulatory) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500951 /*
952 * This gaurantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800953 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500954 * settings
955 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -0800956 chan->flags = chan->orig_flags =
957 map_regdom_flags(reg_rule->flags);
958 chan->max_antenna_gain = chan->orig_mag =
959 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
960 chan->max_bandwidth = KHZ_TO_MHZ(max_bandwidth);
961 chan->max_power = chan->orig_mpwr =
962 (int) MBM_TO_DBM(power_rule->max_eirp);
963 return;
964 }
965
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700966 chan->flags = flags | map_regdom_flags(reg_rule->flags);
Johannes Berg8318d782008-01-24 19:38:38 +0100967 chan->max_antenna_gain = min(chan->orig_mag,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700968 (int) MBI_TO_DBI(power_rule->max_antenna_gain));
969 chan->max_bandwidth = KHZ_TO_MHZ(max_bandwidth);
John W. Linville253898c2008-04-03 15:32:54 -0400970 if (chan->orig_mpwr)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700971 chan->max_power = min(chan->orig_mpwr,
972 (int) MBM_TO_DBM(power_rule->max_eirp));
John W. Linville253898c2008-04-03 15:32:54 -0400973 else
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700974 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Johannes Berg8318d782008-01-24 19:38:38 +0100975}
976
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800977static void handle_band(struct wiphy *wiphy, enum ieee80211_band band)
Johannes Berg8318d782008-01-24 19:38:38 +0100978{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800979 unsigned int i;
980 struct ieee80211_supported_band *sband;
981
982 BUG_ON(!wiphy->bands[band]);
983 sband = wiphy->bands[band];
Johannes Berg8318d782008-01-24 19:38:38 +0100984
985 for (i = 0; i < sband->n_channels; i++)
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -0800986 handle_channel(wiphy, band, i);
Johannes Berg8318d782008-01-24 19:38:38 +0100987}
988
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800989static bool ignore_reg_update(struct wiphy *wiphy, enum reg_set_by setby)
990{
991 if (!last_request)
992 return true;
993 if (setby == REGDOM_SET_BY_CORE &&
Luis R. Rodriguez2a44f912009-01-22 15:05:49 -0800994 wiphy->custom_regulatory)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -0800995 return true;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500996 /*
997 * wiphy->regd will be set once the device has its own
998 * desired regulatory domain set
999 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001000 if (wiphy->strict_regulatory && !wiphy->regd &&
1001 !is_world_regdom(last_request->alpha2))
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001002 return true;
1003 return false;
1004}
1005
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001006static void update_all_wiphy_regulatory(enum reg_set_by setby)
1007{
1008 struct cfg80211_registered_device *drv;
1009
1010 list_for_each_entry(drv, &cfg80211_drv_list, list)
Luis R. Rodriguezd46e5b12009-01-22 15:05:50 -08001011 wiphy_update_regulatory(&drv->wiphy, setby);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001012}
1013
1014void wiphy_update_regulatory(struct wiphy *wiphy, enum reg_set_by setby)
Johannes Berg8318d782008-01-24 19:38:38 +01001015{
1016 enum ieee80211_band band;
Luis R. Rodriguezd46e5b12009-01-22 15:05:50 -08001017
1018 if (ignore_reg_update(wiphy, setby))
1019 return;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001020 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Johannes Berg8318d782008-01-24 19:38:38 +01001021 if (wiphy->bands[band])
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001022 handle_band(wiphy, band);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001023 }
Luis R. Rodriguez560e28e2009-01-07 17:43:32 -08001024 if (wiphy->reg_notifier)
Luis R. Rodriguez716f9392009-01-22 15:05:51 -08001025 wiphy->reg_notifier(wiphy, last_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001026}
1027
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001028static void handle_channel_custom(struct wiphy *wiphy,
1029 enum ieee80211_band band,
1030 unsigned int chan_idx,
1031 const struct ieee80211_regdomain *regd)
1032{
1033 int r;
1034 u32 max_bandwidth = 0;
1035 const struct ieee80211_reg_rule *reg_rule = NULL;
1036 const struct ieee80211_power_rule *power_rule = NULL;
1037 struct ieee80211_supported_band *sband;
1038 struct ieee80211_channel *chan;
1039
1040 sband = wiphy->bands[band];
1041 BUG_ON(chan_idx >= sband->n_channels);
1042 chan = &sband->channels[chan_idx];
1043
1044 r = freq_reg_info_regd(wiphy, MHZ_TO_KHZ(chan->center_freq),
1045 &max_bandwidth, &reg_rule, regd);
1046
1047 if (r) {
1048 chan->flags = IEEE80211_CHAN_DISABLED;
1049 return;
1050 }
1051
1052 power_rule = &reg_rule->power_rule;
1053
1054 chan->flags |= map_regdom_flags(reg_rule->flags);
1055 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
1056 chan->max_bandwidth = KHZ_TO_MHZ(max_bandwidth);
1057 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
1058}
1059
1060static void handle_band_custom(struct wiphy *wiphy, enum ieee80211_band band,
1061 const struct ieee80211_regdomain *regd)
1062{
1063 unsigned int i;
1064 struct ieee80211_supported_band *sband;
1065
1066 BUG_ON(!wiphy->bands[band]);
1067 sband = wiphy->bands[band];
1068
1069 for (i = 0; i < sband->n_channels; i++)
1070 handle_channel_custom(wiphy, band, i, regd);
1071}
1072
1073/* Used by drivers prior to wiphy registration */
1074void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1075 const struct ieee80211_regdomain *regd)
1076{
1077 enum ieee80211_band band;
1078 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1079 if (wiphy->bands[band])
1080 handle_band_custom(wiphy, band, regd);
1081 }
1082}
1083EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1084
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001085static int reg_copy_regd(const struct ieee80211_regdomain **dst_regd,
1086 const struct ieee80211_regdomain *src_regd)
1087{
1088 struct ieee80211_regdomain *regd;
1089 int size_of_regd = 0;
1090 unsigned int i;
1091
1092 size_of_regd = sizeof(struct ieee80211_regdomain) +
1093 ((src_regd->n_reg_rules + 1) * sizeof(struct ieee80211_reg_rule));
1094
1095 regd = kzalloc(size_of_regd, GFP_KERNEL);
1096 if (!regd)
1097 return -ENOMEM;
1098
1099 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
1100
1101 for (i = 0; i < src_regd->n_reg_rules; i++)
1102 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
1103 sizeof(struct ieee80211_reg_rule));
1104
1105 *dst_regd = regd;
1106 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001107}
1108
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001109/*
1110 * Return value which can be used by ignore_request() to indicate
1111 * it has been determined we should intersect two regulatory domains
1112 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001113#define REG_INTERSECT 1
1114
Johannes Berg84fa4f42008-10-24 20:32:23 +02001115/* This has the logic which determines when a new request
1116 * should be ignored. */
1117static int ignore_request(struct wiphy *wiphy, enum reg_set_by set_by,
1118 const char *alpha2)
1119{
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001120 struct wiphy *last_wiphy = NULL;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001121
1122 assert_cfg80211_lock();
1123
Johannes Berg84fa4f42008-10-24 20:32:23 +02001124 /* All initial requests are respected */
1125 if (!last_request)
1126 return 0;
1127
1128 switch (set_by) {
1129 case REGDOM_SET_BY_INIT:
1130 return -EINVAL;
1131 case REGDOM_SET_BY_CORE:
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001132 return -EINVAL;
Johannes Berg84fa4f42008-10-24 20:32:23 +02001133 case REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001134
1135 last_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1136
Johannes Berg84fa4f42008-10-24 20:32:23 +02001137 if (unlikely(!is_an_alpha2(alpha2)))
1138 return -EINVAL;
1139 if (last_request->initiator == REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001140 if (last_wiphy != wiphy) {
Johannes Berg84fa4f42008-10-24 20:32:23 +02001141 /*
1142 * Two cards with two APs claiming different
1143 * different Country IE alpha2s. We could
1144 * intersect them, but that seems unlikely
1145 * to be correct. Reject second one for now.
1146 */
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001147 if (regdom_changes(alpha2))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001148 return -EOPNOTSUPP;
1149 return -EALREADY;
1150 }
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001151 /*
1152 * Two consecutive Country IE hints on the same wiphy.
1153 * This should be picked up early by the driver/stack
1154 */
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001155 if (WARN_ON(regdom_changes(alpha2)))
Johannes Berg84fa4f42008-10-24 20:32:23 +02001156 return 0;
1157 return -EALREADY;
1158 }
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001159 return REG_INTERSECT;
Johannes Berg84fa4f42008-10-24 20:32:23 +02001160 case REGDOM_SET_BY_DRIVER:
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001161 if (last_request->initiator == REGDOM_SET_BY_CORE) {
1162 if (is_old_static_regdom(cfg80211_regdomain))
1163 return 0;
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001164 if (regdom_changes(alpha2))
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001165 return 0;
Johannes Berg84fa4f42008-10-24 20:32:23 +02001166 return -EALREADY;
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001167 }
Luis R. Rodriguezfff32c02009-02-21 00:04:32 -05001168
1169 /*
1170 * This would happen if you unplug and plug your card
1171 * back in or if you add a new device for which the previously
1172 * loaded card also agrees on the regulatory domain.
1173 */
1174 if (last_request->initiator == REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001175 !regdom_changes(alpha2))
Luis R. Rodriguezfff32c02009-02-21 00:04:32 -05001176 return -EALREADY;
1177
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001178 return REG_INTERSECT;
Johannes Berg84fa4f42008-10-24 20:32:23 +02001179 case REGDOM_SET_BY_USER:
Johannes Berg84fa4f42008-10-24 20:32:23 +02001180 if (last_request->initiator == REGDOM_SET_BY_COUNTRY_IE)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001181 return REG_INTERSECT;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001182 /*
1183 * If the user knows better the user should set the regdom
1184 * to their country before the IE is picked up
1185 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001186 if (last_request->initiator == REGDOM_SET_BY_USER &&
1187 last_request->intersect)
1188 return -EOPNOTSUPP;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001189 /*
1190 * Process user requests only after previous user/driver/core
1191 * requests have been processed
1192 */
Luis R. Rodriguez5eebade2009-01-22 15:05:47 -08001193 if (last_request->initiator == REGDOM_SET_BY_CORE ||
1194 last_request->initiator == REGDOM_SET_BY_DRIVER ||
1195 last_request->initiator == REGDOM_SET_BY_USER) {
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001196 if (regdom_changes(last_request->alpha2))
Luis R. Rodriguez5eebade2009-01-22 15:05:47 -08001197 return -EAGAIN;
1198 }
1199
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001200 if (!is_old_static_regdom(cfg80211_regdomain) &&
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001201 !regdom_changes(alpha2))
Luis R. Rodrigueze74b1e72009-01-22 15:05:48 -08001202 return -EALREADY;
1203
Johannes Berg84fa4f42008-10-24 20:32:23 +02001204 return 0;
1205 }
1206
1207 return -EINVAL;
1208}
1209
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05001210/* Caller must hold &cfg80211_mutex */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001211int __regulatory_hint(struct wiphy *wiphy, enum reg_set_by set_by,
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001212 const char *alpha2,
1213 u32 country_ie_checksum,
1214 enum environment_cap env)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001215{
1216 struct regulatory_request *request;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001217 bool intersect = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001218 int r = 0;
1219
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001220 assert_cfg80211_lock();
1221
Johannes Bergbe3d4812008-10-24 20:32:21 +02001222 r = ignore_request(wiphy, set_by, alpha2);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001223
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001224 if (r == REG_INTERSECT) {
1225 if (set_by == REGDOM_SET_BY_DRIVER) {
1226 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
1227 if (r)
1228 return r;
1229 }
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001230 intersect = true;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001231 } else if (r) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001232 /*
1233 * If the regulatory domain being requested by the
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001234 * driver has already been set just copy it to the
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001235 * wiphy
1236 */
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001237 if (r == -EALREADY && set_by == REGDOM_SET_BY_DRIVER) {
1238 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
1239 if (r)
1240 return r;
1241 r = -EALREADY;
1242 goto new_request;
1243 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001244 return r;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001245 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001246
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001247new_request:
Luis R. Rodriguez5203cdb2008-11-12 14:21:56 -08001248 request = kzalloc(sizeof(struct regulatory_request),
1249 GFP_KERNEL);
1250 if (!request)
1251 return -ENOMEM;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001252
Luis R. Rodriguez5203cdb2008-11-12 14:21:56 -08001253 request->alpha2[0] = alpha2[0];
1254 request->alpha2[1] = alpha2[1];
1255 request->initiator = set_by;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001256 request->wiphy_idx = get_wiphy_idx(wiphy);
Luis R. Rodriguez5203cdb2008-11-12 14:21:56 -08001257 request->intersect = intersect;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001258 request->country_ie_checksum = country_ie_checksum;
1259 request->country_ie_env = env;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001260
Luis R. Rodriguez5203cdb2008-11-12 14:21:56 -08001261 kfree(last_request);
1262 last_request = request;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001263
1264 /* When r == REG_INTERSECT we do need to call CRDA */
1265 if (r < 0)
1266 return r;
1267
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001268 /*
1269 * Note: When CONFIG_WIRELESS_OLD_REGULATORY is enabled
1270 * AND if CRDA is NOT present nothing will happen, if someone
1271 * wants to bother with 11d with OLD_REG you can add a timer.
1272 * If after x amount of time nothing happens you can call:
1273 *
1274 * return set_regdom(country_ie_regdomain);
1275 *
1276 * to intersect with the static rd
1277 */
Luis R. Rodriguez02ba0b32008-11-12 14:22:00 -08001278 return call_crda(alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001279}
1280
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001281/* This currently only processes user and driver regulatory hints */
1282static int reg_process_hint(struct regulatory_request *reg_request)
1283{
1284 int r = 0;
1285 struct wiphy *wiphy = NULL;
1286
1287 BUG_ON(!reg_request->alpha2);
1288
1289 mutex_lock(&cfg80211_mutex);
1290
1291 if (wiphy_idx_valid(reg_request->wiphy_idx))
1292 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
1293
1294 if (reg_request->initiator == REGDOM_SET_BY_DRIVER &&
1295 !wiphy) {
1296 r = -ENODEV;
1297 goto out;
1298 }
1299
1300 r = __regulatory_hint(wiphy,
1301 reg_request->initiator,
1302 reg_request->alpha2,
1303 reg_request->country_ie_checksum,
1304 reg_request->country_ie_env);
1305 /* This is required so that the orig_* parameters are saved */
1306 if (r == -EALREADY && wiphy && wiphy->strict_regulatory)
1307 wiphy_update_regulatory(wiphy, reg_request->initiator);
1308out:
1309 mutex_unlock(&cfg80211_mutex);
1310
1311 if (r == -EALREADY)
1312 r = 0;
1313
1314 return r;
1315}
1316
1317static void reg_process_pending_hints(void)
1318 {
1319 struct regulatory_request *reg_request;
1320 int r;
1321
1322 spin_lock(&reg_requests_lock);
1323 while (!list_empty(&reg_requests_list)) {
1324 reg_request = list_first_entry(&reg_requests_list,
1325 struct regulatory_request,
1326 list);
1327 list_del_init(&reg_request->list);
1328 spin_unlock(&reg_requests_lock);
1329
1330 r = reg_process_hint(reg_request);
1331#ifdef CONFIG_CFG80211_REG_DEBUG
1332 if (r && (reg_request->initiator == REGDOM_SET_BY_DRIVER ||
1333 reg_request->initiator == REGDOM_SET_BY_COUNTRY_IE))
1334 printk(KERN_ERR "cfg80211: wiphy_idx %d sent a "
1335 "regulatory hint for %c%c but now has "
1336 "gone fishing, ignoring request\n",
1337 reg_request->wiphy_idx,
1338 reg_request->alpha2[0],
1339 reg_request->alpha2[1]);
1340#endif
1341 kfree(reg_request);
1342 spin_lock(&reg_requests_lock);
1343 }
1344 spin_unlock(&reg_requests_lock);
1345}
1346
1347static void reg_todo(struct work_struct *work)
1348{
1349 reg_process_pending_hints();
1350}
1351
1352static DECLARE_WORK(reg_work, reg_todo);
1353
1354static void queue_regulatory_request(struct regulatory_request *request)
1355{
1356 spin_lock(&reg_requests_lock);
1357 list_add_tail(&request->list, &reg_requests_list);
1358 spin_unlock(&reg_requests_lock);
1359
1360 schedule_work(&reg_work);
1361}
1362
1363/* Core regulatory hint -- happens once during cfg80211_init() */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001364static int regulatory_hint_core(const char *alpha2)
1365{
1366 struct regulatory_request *request;
1367
1368 BUG_ON(last_request);
1369
1370 request = kzalloc(sizeof(struct regulatory_request),
1371 GFP_KERNEL);
1372 if (!request)
1373 return -ENOMEM;
1374
1375 request->alpha2[0] = alpha2[0];
1376 request->alpha2[1] = alpha2[1];
1377 request->initiator = REGDOM_SET_BY_CORE;
1378
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001379 queue_regulatory_request(request);
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001380
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001381 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001382}
1383
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001384/* User hints */
1385int regulatory_hint_user(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001386{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001387 struct regulatory_request *request;
1388
Johannes Bergbe3d4812008-10-24 20:32:21 +02001389 BUG_ON(!alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001390
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001391 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1392 if (!request)
1393 return -ENOMEM;
1394
1395 request->wiphy_idx = WIPHY_IDX_STALE;
1396 request->alpha2[0] = alpha2[0];
1397 request->alpha2[1] = alpha2[1];
1398 request->initiator = REGDOM_SET_BY_USER,
1399
1400 queue_regulatory_request(request);
1401
1402 return 0;
1403}
1404
1405/* Driver hints */
1406int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
1407{
1408 struct regulatory_request *request;
1409
1410 BUG_ON(!alpha2);
1411 BUG_ON(!wiphy);
1412
1413 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1414 if (!request)
1415 return -ENOMEM;
1416
1417 request->wiphy_idx = get_wiphy_idx(wiphy);
1418
1419 /* Must have registered wiphy first */
1420 BUG_ON(!wiphy_idx_valid(request->wiphy_idx));
1421
1422 request->alpha2[0] = alpha2[0];
1423 request->alpha2[1] = alpha2[1];
1424 request->initiator = REGDOM_SET_BY_DRIVER;
1425
1426 queue_regulatory_request(request);
1427
1428 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001429}
1430EXPORT_SYMBOL(regulatory_hint);
1431
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001432static bool reg_same_country_ie_hint(struct wiphy *wiphy,
1433 u32 country_ie_checksum)
1434{
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001435 struct wiphy *request_wiphy;
1436
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001437 assert_cfg80211_lock();
1438
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001439 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1440
1441 if (!request_wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001442 return false;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001443
1444 if (likely(request_wiphy != wiphy))
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001445 return !country_ie_integrity_changes(country_ie_checksum);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001446 /*
1447 * We should not have let these through at this point, they
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001448 * should have been picked up earlier by the first alpha2 check
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001449 * on the device
1450 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001451 if (WARN_ON(!country_ie_integrity_changes(country_ie_checksum)))
1452 return true;
1453 return false;
1454}
1455
1456void regulatory_hint_11d(struct wiphy *wiphy,
1457 u8 *country_ie,
1458 u8 country_ie_len)
1459{
1460 struct ieee80211_regdomain *rd = NULL;
1461 char alpha2[2];
1462 u32 checksum = 0;
1463 enum environment_cap env = ENVIRON_ANY;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001464 struct regulatory_request *request;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001465
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05001466 mutex_lock(&cfg80211_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001467
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05001468 if (unlikely(!last_request)) {
1469 mutex_unlock(&cfg80211_mutex);
1470 return;
1471 }
1472
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001473 /* IE len must be evenly divisible by 2 */
1474 if (country_ie_len & 0x01)
1475 goto out;
1476
1477 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
1478 goto out;
1479
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001480 /*
1481 * Pending country IE processing, this can happen after we
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001482 * call CRDA and wait for a response if a beacon was received before
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001483 * we were able to process the last regulatory_hint_11d() call
1484 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001485 if (country_ie_regdomain)
1486 goto out;
1487
1488 alpha2[0] = country_ie[0];
1489 alpha2[1] = country_ie[1];
1490
1491 if (country_ie[2] == 'I')
1492 env = ENVIRON_INDOOR;
1493 else if (country_ie[2] == 'O')
1494 env = ENVIRON_OUTDOOR;
1495
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001496 /*
1497 * We will run this for *every* beacon processed for the BSSID, so
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001498 * we optimize an early check to exit out early if we don't have to
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001499 * do anything
1500 */
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001501 if (likely(wiphy_idx_valid(last_request->wiphy_idx))) {
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001502 struct cfg80211_registered_device *drv_last_ie;
1503
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001504 drv_last_ie =
1505 cfg80211_drv_by_wiphy_idx(last_request->wiphy_idx);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001506
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001507 /*
1508 * Lets keep this simple -- we trust the first AP
1509 * after we intersect with CRDA
1510 */
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001511 if (likely(&drv_last_ie->wiphy == wiphy)) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001512 /*
1513 * Ignore IEs coming in on this wiphy with
1514 * the same alpha2 and environment cap
1515 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001516 if (likely(alpha2_equal(drv_last_ie->country_ie_alpha2,
1517 alpha2) &&
1518 env == drv_last_ie->env)) {
1519 goto out;
1520 }
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001521 /*
1522 * the wiphy moved on to another BSSID or the AP
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001523 * was reconfigured. XXX: We need to deal with the
1524 * case where the user suspends and goes to goes
1525 * to another country, and then gets IEs from an
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001526 * AP with different settings
1527 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001528 goto out;
1529 } else {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001530 /*
1531 * Ignore IEs coming in on two separate wiphys with
1532 * the same alpha2 and environment cap
1533 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001534 if (likely(alpha2_equal(drv_last_ie->country_ie_alpha2,
1535 alpha2) &&
1536 env == drv_last_ie->env)) {
1537 goto out;
1538 }
1539 /* We could potentially intersect though */
1540 goto out;
1541 }
1542 }
1543
1544 rd = country_ie_2_rd(country_ie, country_ie_len, &checksum);
1545 if (!rd)
1546 goto out;
1547
Luis R. Rodriguez915278e2009-02-21 00:04:28 -05001548 /*
1549 * This will not happen right now but we leave it here for the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001550 * the future when we want to add suspend/resume support and having
1551 * the user move to another country after doing so, or having the user
Luis R. Rodriguez915278e2009-02-21 00:04:28 -05001552 * move to another AP. Right now we just trust the first AP.
1553 *
1554 * If we hit this before we add this support we want to be informed of
1555 * it as it would indicate a mistake in the current design
1556 */
1557 if (WARN_ON(reg_same_country_ie_hint(wiphy, checksum)))
Luis R. Rodriguez0441d6f2009-02-21 00:04:29 -05001558 goto free_rd_out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001559
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001560 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1561 if (!request)
1562 goto free_rd_out;
1563
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001564 /*
1565 * We keep this around for when CRDA comes back with a response so
1566 * we can intersect with that
1567 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001568 country_ie_regdomain = rd;
1569
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001570 request->wiphy_idx = get_wiphy_idx(wiphy);
1571 request->alpha2[0] = rd->alpha2[0];
1572 request->alpha2[1] = rd->alpha2[1];
1573 request->initiator = REGDOM_SET_BY_COUNTRY_IE;
1574 request->country_ie_checksum = checksum;
1575 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001576
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001577 mutex_unlock(&cfg80211_mutex);
1578
1579 queue_regulatory_request(request);
1580
1581 return;
Luis R. Rodriguez0441d6f2009-02-21 00:04:29 -05001582
1583free_rd_out:
1584 kfree(rd);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001585out:
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05001586 mutex_unlock(&cfg80211_mutex);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001587}
1588EXPORT_SYMBOL(regulatory_hint_11d);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001589
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001590static void print_rd_rules(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001591{
1592 unsigned int i;
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001593 const struct ieee80211_reg_rule *reg_rule = NULL;
1594 const struct ieee80211_freq_range *freq_range = NULL;
1595 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001596
1597 printk(KERN_INFO "\t(start_freq - end_freq @ bandwidth), "
1598 "(max_antenna_gain, max_eirp)\n");
1599
1600 for (i = 0; i < rd->n_reg_rules; i++) {
1601 reg_rule = &rd->reg_rules[i];
1602 freq_range = &reg_rule->freq_range;
1603 power_rule = &reg_rule->power_rule;
1604
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001605 /*
1606 * There may not be documentation for max antenna gain
1607 * in certain regions
1608 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001609 if (power_rule->max_antenna_gain)
1610 printk(KERN_INFO "\t(%d KHz - %d KHz @ %d KHz), "
1611 "(%d mBi, %d mBm)\n",
1612 freq_range->start_freq_khz,
1613 freq_range->end_freq_khz,
1614 freq_range->max_bandwidth_khz,
1615 power_rule->max_antenna_gain,
1616 power_rule->max_eirp);
1617 else
1618 printk(KERN_INFO "\t(%d KHz - %d KHz @ %d KHz), "
1619 "(N/A, %d mBm)\n",
1620 freq_range->start_freq_khz,
1621 freq_range->end_freq_khz,
1622 freq_range->max_bandwidth_khz,
1623 power_rule->max_eirp);
1624 }
1625}
1626
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001627static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001628{
1629
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001630 if (is_intersected_alpha2(rd->alpha2)) {
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001631
1632 if (last_request->initiator == REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001633 struct cfg80211_registered_device *drv;
1634 drv = cfg80211_drv_by_wiphy_idx(
1635 last_request->wiphy_idx);
1636 if (drv) {
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001637 printk(KERN_INFO "cfg80211: Current regulatory "
1638 "domain updated by AP to: %c%c\n",
1639 drv->country_ie_alpha2[0],
1640 drv->country_ie_alpha2[1]);
1641 } else
1642 printk(KERN_INFO "cfg80211: Current regulatory "
1643 "domain intersected: \n");
1644 } else
1645 printk(KERN_INFO "cfg80211: Current regulatory "
Luis R. Rodriguez039498c2009-01-07 17:43:35 -08001646 "domain intersected: \n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001647 } else if (is_world_regdom(rd->alpha2))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001648 printk(KERN_INFO "cfg80211: World regulatory "
1649 "domain updated:\n");
1650 else {
1651 if (is_unknown_alpha2(rd->alpha2))
1652 printk(KERN_INFO "cfg80211: Regulatory domain "
1653 "changed to driver built-in settings "
1654 "(unknown country)\n");
1655 else
1656 printk(KERN_INFO "cfg80211: Regulatory domain "
1657 "changed to country: %c%c\n",
1658 rd->alpha2[0], rd->alpha2[1]);
1659 }
1660 print_rd_rules(rd);
1661}
1662
Johannes Berg2df78162008-10-28 16:49:41 +01001663static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001664{
1665 printk(KERN_INFO "cfg80211: Regulatory domain: %c%c\n",
1666 rd->alpha2[0], rd->alpha2[1]);
1667 print_rd_rules(rd);
1668}
1669
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001670#ifdef CONFIG_CFG80211_REG_DEBUG
1671static void reg_country_ie_process_debug(
1672 const struct ieee80211_regdomain *rd,
1673 const struct ieee80211_regdomain *country_ie_regdomain,
1674 const struct ieee80211_regdomain *intersected_rd)
1675{
1676 printk(KERN_DEBUG "cfg80211: Received country IE:\n");
1677 print_regdomain_info(country_ie_regdomain);
1678 printk(KERN_DEBUG "cfg80211: CRDA thinks this should applied:\n");
1679 print_regdomain_info(rd);
1680 if (intersected_rd) {
1681 printk(KERN_DEBUG "cfg80211: We intersect both of these "
1682 "and get:\n");
Luis R. Rodriguez667ecd02009-01-22 15:05:43 -08001683 print_regdomain_info(intersected_rd);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001684 return;
1685 }
1686 printk(KERN_DEBUG "cfg80211: Intersection between both failed\n");
1687}
1688#else
1689static inline void reg_country_ie_process_debug(
1690 const struct ieee80211_regdomain *rd,
1691 const struct ieee80211_regdomain *country_ie_regdomain,
1692 const struct ieee80211_regdomain *intersected_rd)
1693{
1694}
1695#endif
1696
Johannes Bergd2372b32008-10-24 20:32:20 +02001697/* Takes ownership of rd only if it doesn't fail */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001698static int __set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001699{
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001700 const struct ieee80211_regdomain *intersected_rd = NULL;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001701 struct cfg80211_registered_device *drv = NULL;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001702 struct wiphy *request_wiphy;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001703 /* Some basic sanity checks first */
1704
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001705 if (is_world_regdom(rd->alpha2)) {
Johannes Bergf6037d02008-10-21 11:01:33 +02001706 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001707 return -EINVAL;
1708 update_world_regdomain(rd);
1709 return 0;
1710 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001711
1712 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
1713 !is_unknown_alpha2(rd->alpha2))
1714 return -EINVAL;
1715
Johannes Bergf6037d02008-10-21 11:01:33 +02001716 if (!last_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001717 return -EINVAL;
1718
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001719 /*
1720 * Lets only bother proceeding on the same alpha2 if the current
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001721 * rd is non static (it means CRDA was present and was used last)
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001722 * and the pending request came in from a country IE
1723 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001724 if (last_request->initiator != REGDOM_SET_BY_COUNTRY_IE) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001725 /*
1726 * If someone else asked us to change the rd lets only bother
1727 * checking if the alpha2 changes if CRDA was already called
1728 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001729 if (!is_old_static_regdom(cfg80211_regdomain) &&
Luis R. Rodriguez69b15722009-02-21 00:04:33 -05001730 !regdom_changes(rd->alpha2))
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001731 return -EINVAL;
1732 }
1733
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001734 /*
1735 * Now lets set the regulatory domain, update all driver channels
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001736 * and finally inform them of what we have done, in case they want
1737 * to review or adjust their own settings based on their own
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001738 * internal EEPROM data
1739 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001740
Johannes Bergf6037d02008-10-21 11:01:33 +02001741 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001742 return -EINVAL;
1743
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08001744 if (!is_valid_rd(rd)) {
1745 printk(KERN_ERR "cfg80211: Invalid "
1746 "regulatory domain detected:\n");
1747 print_regdomain_info(rd);
1748 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001749 }
1750
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001751 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1752
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001753 if (!last_request->intersect) {
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001754 int r;
1755
1756 if (last_request->initiator != REGDOM_SET_BY_DRIVER) {
1757 reset_regdomains();
1758 cfg80211_regdomain = rd;
1759 return 0;
1760 }
1761
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001762 /*
1763 * For a driver hint, lets copy the regulatory domain the
1764 * driver wanted to the wiphy to deal with conflicts
1765 */
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001766
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001767 BUG_ON(request_wiphy->regd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001768
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001769 r = reg_copy_regd(&request_wiphy->regd, rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001770 if (r)
1771 return r;
1772
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001773 reset_regdomains();
1774 cfg80211_regdomain = rd;
1775 return 0;
1776 }
1777
1778 /* Intersection requires a bit more work */
1779
1780 if (last_request->initiator != REGDOM_SET_BY_COUNTRY_IE) {
1781
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001782 intersected_rd = regdom_intersect(rd, cfg80211_regdomain);
1783 if (!intersected_rd)
1784 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001785
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001786 /*
1787 * We can trash what CRDA provided now.
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001788 * However if a driver requested this specific regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001789 * domain we keep it for its private use
1790 */
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001791 if (last_request->initiator == REGDOM_SET_BY_DRIVER)
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001792 request_wiphy->regd = rd;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001793 else
1794 kfree(rd);
1795
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001796 rd = NULL;
1797
1798 reset_regdomains();
1799 cfg80211_regdomain = intersected_rd;
1800
1801 return 0;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001802 }
1803
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001804 /*
1805 * Country IE requests are handled a bit differently, we intersect
1806 * the country IE rd with what CRDA believes that country should have
1807 */
1808
1809 BUG_ON(!country_ie_regdomain);
1810
1811 if (rd != country_ie_regdomain) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001812 /*
1813 * Intersect what CRDA returned and our what we
1814 * had built from the Country IE received
1815 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001816
1817 intersected_rd = regdom_intersect(rd, country_ie_regdomain);
1818
1819 reg_country_ie_process_debug(rd, country_ie_regdomain,
1820 intersected_rd);
1821
1822 kfree(country_ie_regdomain);
1823 country_ie_regdomain = NULL;
1824 } else {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001825 /*
1826 * This would happen when CRDA was not present and
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001827 * OLD_REGULATORY was enabled. We intersect our Country
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001828 * IE rd and what was set on cfg80211 originally
1829 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001830 intersected_rd = regdom_intersect(rd, cfg80211_regdomain);
1831 }
1832
1833 if (!intersected_rd)
1834 return -EINVAL;
1835
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001836 drv = wiphy_to_dev(request_wiphy);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001837
1838 drv->country_ie_alpha2[0] = rd->alpha2[0];
1839 drv->country_ie_alpha2[1] = rd->alpha2[1];
1840 drv->env = last_request->country_ie_env;
1841
1842 BUG_ON(intersected_rd == rd);
1843
1844 kfree(rd);
1845 rd = NULL;
1846
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08001847 reset_regdomains();
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001848 cfg80211_regdomain = intersected_rd;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001849
1850 return 0;
1851}
1852
1853
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001854/*
1855 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001856 * multiple drivers can be ironed out later. Caller must've already
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001857 * kmalloc'd the rd structure. Caller must hold cfg80211_mutex
1858 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001859int set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001860{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001861 int r;
1862
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001863 assert_cfg80211_lock();
1864
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001865 /* Note that this doesn't update the wiphys, this is done below */
1866 r = __set_regdom(rd);
Johannes Bergd2372b32008-10-24 20:32:20 +02001867 if (r) {
1868 kfree(rd);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001869 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02001870 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001871
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001872 /* This would make this whole thing pointless */
Luis R. Rodrigueza01ddaf2008-11-12 14:21:59 -08001873 if (!last_request->intersect)
1874 BUG_ON(rd != cfg80211_regdomain);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001875
1876 /* update all wiphys now with the new established regulatory domain */
Johannes Bergf6037d02008-10-21 11:01:33 +02001877 update_all_wiphy_regulatory(last_request->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001878
Luis R. Rodrigueza01ddaf2008-11-12 14:21:59 -08001879 print_regdomain(cfg80211_regdomain);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001880
1881 return r;
1882}
1883
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05001884/* Caller must hold cfg80211_mutex */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001885void reg_device_remove(struct wiphy *wiphy)
1886{
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001887 struct wiphy *request_wiphy;
1888
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001889 assert_cfg80211_lock();
1890
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001891 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1892
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001893 kfree(wiphy->regd);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001894 if (!last_request || !request_wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001895 return;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001896 if (request_wiphy != wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001897 return;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001898 last_request->wiphy_idx = WIPHY_IDX_STALE;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001899 last_request->country_ie_env = ENVIRON_ANY;
1900}
1901
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001902int regulatory_init(void)
1903{
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05001904 int err = 0;
Johannes Berg734366d2008-09-15 10:56:48 +02001905
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001906 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
1907 if (IS_ERR(reg_pdev))
1908 return PTR_ERR(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02001909
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001910 spin_lock_init(&reg_requests_lock);
1911
Johannes Berg734366d2008-09-15 10:56:48 +02001912#ifdef CONFIG_WIRELESS_OLD_REGULATORY
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001913 cfg80211_regdomain = static_regdom(ieee80211_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +02001914
Johannes Berg942b25c2008-09-15 11:26:47 +02001915 printk(KERN_INFO "cfg80211: Using static regulatory domain info\n");
Johannes Berg734366d2008-09-15 10:56:48 +02001916 print_regdomain_info(cfg80211_regdomain);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001917 /*
1918 * The old code still requests for a new regdomain and if
Johannes Berg734366d2008-09-15 10:56:48 +02001919 * you have CRDA you get it updated, otherwise you get
1920 * stuck with the static values. We ignore "EU" code as
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001921 * that is not a valid ISO / IEC 3166 alpha2
1922 */
Johannes Bergac9440a2008-10-21 11:08:27 +02001923 if (ieee80211_regdom[0] != 'E' || ieee80211_regdom[1] != 'U')
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001924 err = regulatory_hint_core(ieee80211_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +02001925#else
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001926 cfg80211_regdomain = cfg80211_world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +02001927
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001928 err = regulatory_hint_core("00");
Johannes Berg734366d2008-09-15 10:56:48 +02001929#endif
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05001930 if (err) {
1931 if (err == -ENOMEM)
1932 return err;
1933 /*
1934 * N.B. kobject_uevent_env() can fail mainly for when we're out
1935 * memory which is handled and propagated appropriately above
1936 * but it can also fail during a netlink_broadcast() or during
1937 * early boot for call_usermodehelper(). For now treat these
1938 * errors as non-fatal.
1939 */
1940 printk(KERN_ERR "cfg80211: kobject_uevent_env() was unable "
1941 "to call CRDA during init");
1942#ifdef CONFIG_CFG80211_REG_DEBUG
1943 /* We want to find out exactly why when debugging */
1944 WARN_ON(err);
1945#endif
1946 }
Johannes Berg734366d2008-09-15 10:56:48 +02001947
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001948 return 0;
1949}
1950
1951void regulatory_exit(void)
1952{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001953 struct regulatory_request *reg_request, *tmp;
1954
1955 cancel_work_sync(&reg_work);
1956
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05001957 mutex_lock(&cfg80211_mutex);
Johannes Berg734366d2008-09-15 10:56:48 +02001958
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001959 reset_regdomains();
Johannes Berg734366d2008-09-15 10:56:48 +02001960
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001961 kfree(country_ie_regdomain);
1962 country_ie_regdomain = NULL;
1963
Johannes Bergf6037d02008-10-21 11:01:33 +02001964 kfree(last_request);
1965
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001966 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02001967
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001968 spin_lock(&reg_requests_lock);
1969 if (!list_empty(&reg_requests_list)) {
1970 list_for_each_entry_safe(reg_request, tmp,
1971 &reg_requests_list, list) {
1972 list_del(&reg_request->list);
1973 kfree(reg_request);
1974 }
1975 }
1976 spin_unlock(&reg_requests_lock);
1977
Luis R. Rodrigueza1794392009-02-21 00:04:21 -05001978 mutex_unlock(&cfg80211_mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01001979}