2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright 2008 Luis R. Rodriguez <lrodriguz@atheros.com>
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.
13 * DOC: Wireless regulatory infrastructure
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.
20 * Another set of compliance enforcement is for drivers to use their
21 * own compliance limits which can be stored on the EEPROM. The host
22 * driver or firmware may ensure these are used.
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.
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.
35 #include <linux/kernel.h>
36 #include <linux/list.h>
37 #include <linux/random.h>
38 #include <linux/nl80211.h>
39 #include <linux/platform_device.h>
40 #include <net/wireless.h>
41 #include <net/cfg80211.h>
45 /* Receipt of information from last regulatory request */
46 static struct regulatory_request *last_request;
48 /* To trigger userspace events */
49 static struct platform_device *reg_pdev;
51 /* Keep the ordering from large to small */
52 static u32 supported_bandwidths[] = {
58 * Central wireless core regulatory domains, we only need two,
59 * the current one and a world regulatory domain in case we have no
60 * information to give us an alpha2
62 const struct ieee80211_regdomain *cfg80211_regdomain;
65 * We use this as a place for the rd structure built from the
66 * last parsed country IE to rest until CRDA gets back to us with
67 * what it thinks should apply for the same country
69 static const struct ieee80211_regdomain *country_ie_regdomain;
71 static LIST_HEAD(reg_requests_list);
72 static spinlock_t reg_requests_lock;
74 /* We keep a static world regulatory domain in case of the absence of CRDA */
75 static const struct ieee80211_regdomain world_regdom = {
79 /* IEEE 802.11b/g, channels 1..11 */
80 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
84 static const struct ieee80211_regdomain *cfg80211_world_regdom =
87 #ifdef CONFIG_WIRELESS_OLD_REGULATORY
88 static char *ieee80211_regdom = "US";
89 module_param(ieee80211_regdom, charp, 0444);
90 MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
93 * We assume 40 MHz bandwidth for the old regulatory work.
94 * We make emphasis we are using the exact same frequencies
98 static const struct ieee80211_regdomain us_regdom = {
102 /* IEEE 802.11b/g, channels 1..11 */
103 REG_RULE(2412-10, 2462+10, 40, 6, 27, 0),
104 /* IEEE 802.11a, channel 36 */
105 REG_RULE(5180-10, 5180+10, 40, 6, 23, 0),
106 /* IEEE 802.11a, channel 40 */
107 REG_RULE(5200-10, 5200+10, 40, 6, 23, 0),
108 /* IEEE 802.11a, channel 44 */
109 REG_RULE(5220-10, 5220+10, 40, 6, 23, 0),
110 /* IEEE 802.11a, channels 48..64 */
111 REG_RULE(5240-10, 5320+10, 40, 6, 23, 0),
112 /* IEEE 802.11a, channels 149..165, outdoor */
113 REG_RULE(5745-10, 5825+10, 40, 6, 30, 0),
117 static const struct ieee80211_regdomain jp_regdom = {
121 /* IEEE 802.11b/g, channels 1..14 */
122 REG_RULE(2412-10, 2484+10, 40, 6, 20, 0),
123 /* IEEE 802.11a, channels 34..48 */
124 REG_RULE(5170-10, 5240+10, 40, 6, 20,
125 NL80211_RRF_PASSIVE_SCAN),
126 /* IEEE 802.11a, channels 52..64 */
127 REG_RULE(5260-10, 5320+10, 40, 6, 20,
128 NL80211_RRF_NO_IBSS |
133 static const struct ieee80211_regdomain eu_regdom = {
136 * This alpha2 is bogus, we leave it here just for stupid
137 * backward compatibility
141 /* IEEE 802.11b/g, channels 1..13 */
142 REG_RULE(2412-10, 2472+10, 40, 6, 20, 0),
143 /* IEEE 802.11a, channel 36 */
144 REG_RULE(5180-10, 5180+10, 40, 6, 23,
145 NL80211_RRF_PASSIVE_SCAN),
146 /* IEEE 802.11a, channel 40 */
147 REG_RULE(5200-10, 5200+10, 40, 6, 23,
148 NL80211_RRF_PASSIVE_SCAN),
149 /* IEEE 802.11a, channel 44 */
150 REG_RULE(5220-10, 5220+10, 40, 6, 23,
151 NL80211_RRF_PASSIVE_SCAN),
152 /* IEEE 802.11a, channels 48..64 */
153 REG_RULE(5240-10, 5320+10, 40, 6, 20,
154 NL80211_RRF_NO_IBSS |
156 /* IEEE 802.11a, channels 100..140 */
157 REG_RULE(5500-10, 5700+10, 40, 6, 30,
158 NL80211_RRF_NO_IBSS |
163 static const struct ieee80211_regdomain *static_regdom(char *alpha2)
165 if (alpha2[0] == 'U' && alpha2[1] == 'S')
167 if (alpha2[0] == 'J' && alpha2[1] == 'P')
169 if (alpha2[0] == 'E' && alpha2[1] == 'U')
171 /* Default, as per the old rules */
175 static bool is_old_static_regdom(const struct ieee80211_regdomain *rd)
177 if (rd == &us_regdom || rd == &jp_regdom || rd == &eu_regdom)
182 static inline bool is_old_static_regdom(const struct ieee80211_regdomain *rd)
188 static void reset_regdomains(void)
190 /* avoid freeing static information or freeing something twice */
191 if (cfg80211_regdomain == cfg80211_world_regdom)
192 cfg80211_regdomain = NULL;
193 if (cfg80211_world_regdom == &world_regdom)
194 cfg80211_world_regdom = NULL;
195 if (cfg80211_regdomain == &world_regdom)
196 cfg80211_regdomain = NULL;
197 if (is_old_static_regdom(cfg80211_regdomain))
198 cfg80211_regdomain = NULL;
200 kfree(cfg80211_regdomain);
201 kfree(cfg80211_world_regdom);
203 cfg80211_world_regdom = &world_regdom;
204 cfg80211_regdomain = NULL;
208 * Dynamic world regulatory domain requested by the wireless
209 * core upon initialization
211 static void update_world_regdomain(const struct ieee80211_regdomain *rd)
213 BUG_ON(!last_request);
217 cfg80211_world_regdom = rd;
218 cfg80211_regdomain = rd;
221 bool is_world_regdom(const char *alpha2)
225 if (alpha2[0] == '0' && alpha2[1] == '0')
230 static bool is_alpha2_set(const char *alpha2)
234 if (alpha2[0] != 0 && alpha2[1] != 0)
239 static bool is_alpha_upper(char letter)
242 if (letter >= 65 && letter <= 90)
247 static bool is_unknown_alpha2(const char *alpha2)
252 * Special case where regulatory domain was built by driver
253 * but a specific alpha2 cannot be determined
255 if (alpha2[0] == '9' && alpha2[1] == '9')
260 static bool is_intersected_alpha2(const char *alpha2)
265 * Special case where regulatory domain is the
266 * result of an intersection between two regulatory domain
269 if (alpha2[0] == '9' && alpha2[1] == '8')
274 static bool is_an_alpha2(const char *alpha2)
278 if (is_alpha_upper(alpha2[0]) && is_alpha_upper(alpha2[1]))
283 static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
285 if (!alpha2_x || !alpha2_y)
287 if (alpha2_x[0] == alpha2_y[0] &&
288 alpha2_x[1] == alpha2_y[1])
293 static bool regdom_changes(const char *alpha2)
295 assert_cfg80211_lock();
297 if (!cfg80211_regdomain)
299 if (alpha2_equal(cfg80211_regdomain->alpha2, alpha2))
305 * country_ie_integrity_changes - tells us if the country IE has changed
306 * @checksum: checksum of country IE of fields we are interested in
308 * If the country IE has not changed you can ignore it safely. This is
309 * useful to determine if two devices are seeing two different country IEs
310 * even on the same alpha2. Note that this will return false if no IE has
311 * been set on the wireless core yet.
313 static bool country_ie_integrity_changes(u32 checksum)
315 /* If no IE has been set then the checksum doesn't change */
316 if (unlikely(!last_request->country_ie_checksum))
318 if (unlikely(last_request->country_ie_checksum != checksum))
324 * This lets us keep regulatory code which is updated on a regulatory
325 * basis in userspace.
327 static int call_crda(const char *alpha2)
329 char country_env[9 + 2] = "COUNTRY=";
335 if (!is_world_regdom((char *) alpha2))
336 printk(KERN_INFO "cfg80211: Calling CRDA for country: %c%c\n",
337 alpha2[0], alpha2[1]);
339 printk(KERN_INFO "cfg80211: Calling CRDA to update world "
340 "regulatory domain\n");
342 country_env[8] = alpha2[0];
343 country_env[9] = alpha2[1];
345 return kobject_uevent_env(®_pdev->dev.kobj, KOBJ_CHANGE, envp);
348 /* Used by nl80211 before kmalloc'ing our regulatory domain */
349 bool reg_is_valid_request(const char *alpha2)
354 return alpha2_equal(last_request->alpha2, alpha2);
357 /* Sanity check on a regulatory rule */
358 static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
360 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
363 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
366 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
369 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
371 if (freq_diff <= 0 || freq_range->max_bandwidth_khz > freq_diff)
377 static bool is_valid_rd(const struct ieee80211_regdomain *rd)
379 const struct ieee80211_reg_rule *reg_rule = NULL;
382 if (!rd->n_reg_rules)
385 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
388 for (i = 0; i < rd->n_reg_rules; i++) {
389 reg_rule = &rd->reg_rules[i];
390 if (!is_valid_reg_rule(reg_rule))
397 /* Returns value in KHz */
398 static u32 freq_max_bandwidth(const struct ieee80211_freq_range *freq_range,
402 for (i = 0; i < ARRAY_SIZE(supported_bandwidths); i++) {
403 u32 start_freq_khz = freq - supported_bandwidths[i]/2;
404 u32 end_freq_khz = freq + supported_bandwidths[i]/2;
405 if (start_freq_khz >= freq_range->start_freq_khz &&
406 end_freq_khz <= freq_range->end_freq_khz)
407 return supported_bandwidths[i];
413 * freq_in_rule_band - tells us if a frequency is in a frequency band
414 * @freq_range: frequency rule we want to query
415 * @freq_khz: frequency we are inquiring about
417 * This lets us know if a specific frequency rule is or is not relevant to
418 * a specific frequency's band. Bands are device specific and artificial
419 * definitions (the "2.4 GHz band" and the "5 GHz band"), however it is
420 * safe for now to assume that a frequency rule should not be part of a
421 * frequency's band if the start freq or end freq are off by more than 2 GHz.
422 * This resolution can be lowered and should be considered as we add
423 * regulatory rule support for other "bands".
425 static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
428 #define ONE_GHZ_IN_KHZ 1000000
429 if (abs(freq_khz - freq_range->start_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
431 if (abs(freq_khz - freq_range->end_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
434 #undef ONE_GHZ_IN_KHZ
438 * Converts a country IE to a regulatory domain. A regulatory domain
439 * structure has a lot of information which the IE doesn't yet have,
440 * so for the other values we use upper max values as we will intersect
441 * with our userspace regulatory agent to get lower bounds.
443 static struct ieee80211_regdomain *country_ie_2_rd(
448 struct ieee80211_regdomain *rd = NULL;
452 u32 num_rules = 0, size_of_regd = 0;
453 u8 *triplets_start = NULL;
454 u8 len_at_triplet = 0;
455 /* the last channel we have registered in a subband (triplet) */
456 int last_sub_max_channel = 0;
458 *checksum = 0xDEADBEEF;
460 /* Country IE requirements */
461 BUG_ON(country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN ||
462 country_ie_len & 0x01);
464 alpha2[0] = country_ie[0];
465 alpha2[1] = country_ie[1];
468 * Third octet can be:
472 * anything else we assume is no restrictions
474 if (country_ie[2] == 'I')
475 flags = NL80211_RRF_NO_OUTDOOR;
476 else if (country_ie[2] == 'O')
477 flags = NL80211_RRF_NO_INDOOR;
482 triplets_start = country_ie;
483 len_at_triplet = country_ie_len;
485 *checksum ^= ((flags ^ alpha2[0] ^ alpha2[1]) << 8);
488 * We need to build a reg rule for each triplet, but first we must
489 * calculate the number of reg rules we will need. We will need one
490 * for each channel subband
492 while (country_ie_len >= 3) {
494 struct ieee80211_country_ie_triplet *triplet =
495 (struct ieee80211_country_ie_triplet *) country_ie;
496 int cur_sub_max_channel = 0, cur_channel = 0;
498 if (triplet->ext.reg_extension_id >=
499 IEEE80211_COUNTRY_EXTENSION_ID) {
506 if (triplet->chans.first_channel <= 14)
507 end_channel = triplet->chans.first_channel +
508 triplet->chans.num_channels;
511 * 5 GHz -- For example in country IEs if the first
512 * channel given is 36 and the number of channels is 4
513 * then the individual channel numbers defined for the
514 * 5 GHz PHY by these parameters are: 36, 40, 44, and 48
515 * and not 36, 37, 38, 39.
517 * See: http://tinyurl.com/11d-clarification
519 end_channel = triplet->chans.first_channel +
520 (4 * (triplet->chans.num_channels - 1));
522 cur_channel = triplet->chans.first_channel;
523 cur_sub_max_channel = end_channel;
525 /* Basic sanity check */
526 if (cur_sub_max_channel < cur_channel)
530 * Do not allow overlapping channels. Also channels
531 * passed in each subband must be monotonically
534 if (last_sub_max_channel) {
535 if (cur_channel <= last_sub_max_channel)
537 if (cur_sub_max_channel <= last_sub_max_channel)
542 * When dot11RegulatoryClassesRequired is supported
543 * we can throw ext triplets as part of this soup,
544 * for now we don't care when those change as we
547 *checksum ^= ((cur_channel ^ cur_sub_max_channel) << 8) |
548 ((cur_sub_max_channel ^ cur_sub_max_channel) << 16) |
549 ((triplet->chans.max_power ^ cur_sub_max_channel) << 24);
551 last_sub_max_channel = cur_sub_max_channel;
558 * Note: this is not a IEEE requirement but
559 * simply a memory requirement
561 if (num_rules > NL80211_MAX_SUPP_REG_RULES)
565 country_ie = triplets_start;
566 country_ie_len = len_at_triplet;
568 size_of_regd = sizeof(struct ieee80211_regdomain) +
569 (num_rules * sizeof(struct ieee80211_reg_rule));
571 rd = kzalloc(size_of_regd, GFP_KERNEL);
575 rd->n_reg_rules = num_rules;
576 rd->alpha2[0] = alpha2[0];
577 rd->alpha2[1] = alpha2[1];
579 /* This time around we fill in the rd */
580 while (country_ie_len >= 3) {
582 struct ieee80211_country_ie_triplet *triplet =
583 (struct ieee80211_country_ie_triplet *) country_ie;
584 struct ieee80211_reg_rule *reg_rule = NULL;
585 struct ieee80211_freq_range *freq_range = NULL;
586 struct ieee80211_power_rule *power_rule = NULL;
589 * Must parse if dot11RegulatoryClassesRequired is true,
590 * we don't support this yet
592 if (triplet->ext.reg_extension_id >=
593 IEEE80211_COUNTRY_EXTENSION_ID) {
599 reg_rule = &rd->reg_rules[i];
600 freq_range = ®_rule->freq_range;
601 power_rule = ®_rule->power_rule;
603 reg_rule->flags = flags;
606 if (triplet->chans.first_channel <= 14)
607 end_channel = triplet->chans.first_channel +
608 triplet->chans.num_channels;
610 end_channel = triplet->chans.first_channel +
611 (4 * (triplet->chans.num_channels - 1));
614 * The +10 is since the regulatory domain expects
615 * the actual band edge, not the center of freq for
616 * its start and end freqs, assuming 20 MHz bandwidth on
617 * the channels passed
619 freq_range->start_freq_khz =
620 MHZ_TO_KHZ(ieee80211_channel_to_frequency(
621 triplet->chans.first_channel) - 10);
622 freq_range->end_freq_khz =
623 MHZ_TO_KHZ(ieee80211_channel_to_frequency(
627 * These are large arbitrary values we use to intersect later.
628 * Increment this if we ever support >= 40 MHz channels
631 freq_range->max_bandwidth_khz = MHZ_TO_KHZ(40);
632 power_rule->max_antenna_gain = DBI_TO_MBI(100);
633 power_rule->max_eirp = DBM_TO_MBM(100);
639 BUG_ON(i > NL80211_MAX_SUPP_REG_RULES);
647 * Helper for regdom_intersect(), this does the real
648 * mathematical intersection fun
650 static int reg_rules_intersect(
651 const struct ieee80211_reg_rule *rule1,
652 const struct ieee80211_reg_rule *rule2,
653 struct ieee80211_reg_rule *intersected_rule)
655 const struct ieee80211_freq_range *freq_range1, *freq_range2;
656 struct ieee80211_freq_range *freq_range;
657 const struct ieee80211_power_rule *power_rule1, *power_rule2;
658 struct ieee80211_power_rule *power_rule;
661 freq_range1 = &rule1->freq_range;
662 freq_range2 = &rule2->freq_range;
663 freq_range = &intersected_rule->freq_range;
665 power_rule1 = &rule1->power_rule;
666 power_rule2 = &rule2->power_rule;
667 power_rule = &intersected_rule->power_rule;
669 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
670 freq_range2->start_freq_khz);
671 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
672 freq_range2->end_freq_khz);
673 freq_range->max_bandwidth_khz = min(freq_range1->max_bandwidth_khz,
674 freq_range2->max_bandwidth_khz);
676 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
677 if (freq_range->max_bandwidth_khz > freq_diff)
678 freq_range->max_bandwidth_khz = freq_diff;
680 power_rule->max_eirp = min(power_rule1->max_eirp,
681 power_rule2->max_eirp);
682 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
683 power_rule2->max_antenna_gain);
685 intersected_rule->flags = (rule1->flags | rule2->flags);
687 if (!is_valid_reg_rule(intersected_rule))
694 * regdom_intersect - do the intersection between two regulatory domains
695 * @rd1: first regulatory domain
696 * @rd2: second regulatory domain
698 * Use this function to get the intersection between two regulatory domains.
699 * Once completed we will mark the alpha2 for the rd as intersected, "98",
700 * as no one single alpha2 can represent this regulatory domain.
702 * Returns a pointer to the regulatory domain structure which will hold the
703 * resulting intersection of rules between rd1 and rd2. We will
704 * kzalloc() this structure for you.
706 static struct ieee80211_regdomain *regdom_intersect(
707 const struct ieee80211_regdomain *rd1,
708 const struct ieee80211_regdomain *rd2)
712 unsigned int num_rules = 0, rule_idx = 0;
713 const struct ieee80211_reg_rule *rule1, *rule2;
714 struct ieee80211_reg_rule *intersected_rule;
715 struct ieee80211_regdomain *rd;
716 /* This is just a dummy holder to help us count */
717 struct ieee80211_reg_rule irule;
719 /* Uses the stack temporarily for counter arithmetic */
720 intersected_rule = &irule;
722 memset(intersected_rule, 0, sizeof(struct ieee80211_reg_rule));
728 * First we get a count of the rules we'll need, then we actually
729 * build them. This is to so we can malloc() and free() a
730 * regdomain once. The reason we use reg_rules_intersect() here
731 * is it will return -EINVAL if the rule computed makes no sense.
732 * All rules that do check out OK are valid.
735 for (x = 0; x < rd1->n_reg_rules; x++) {
736 rule1 = &rd1->reg_rules[x];
737 for (y = 0; y < rd2->n_reg_rules; y++) {
738 rule2 = &rd2->reg_rules[y];
739 if (!reg_rules_intersect(rule1, rule2,
742 memset(intersected_rule, 0,
743 sizeof(struct ieee80211_reg_rule));
750 size_of_regd = sizeof(struct ieee80211_regdomain) +
751 ((num_rules + 1) * sizeof(struct ieee80211_reg_rule));
753 rd = kzalloc(size_of_regd, GFP_KERNEL);
757 for (x = 0; x < rd1->n_reg_rules; x++) {
758 rule1 = &rd1->reg_rules[x];
759 for (y = 0; y < rd2->n_reg_rules; y++) {
760 rule2 = &rd2->reg_rules[y];
762 * This time around instead of using the stack lets
763 * write to the target rule directly saving ourselves
766 intersected_rule = &rd->reg_rules[rule_idx];
767 r = reg_rules_intersect(rule1, rule2,
770 * No need to memset here the intersected rule here as
771 * we're not using the stack anymore
779 if (rule_idx != num_rules) {
784 rd->n_reg_rules = num_rules;
792 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
793 * want to just have the channel structure use these
795 static u32 map_regdom_flags(u32 rd_flags)
797 u32 channel_flags = 0;
798 if (rd_flags & NL80211_RRF_PASSIVE_SCAN)
799 channel_flags |= IEEE80211_CHAN_PASSIVE_SCAN;
800 if (rd_flags & NL80211_RRF_NO_IBSS)
801 channel_flags |= IEEE80211_CHAN_NO_IBSS;
802 if (rd_flags & NL80211_RRF_DFS)
803 channel_flags |= IEEE80211_CHAN_RADAR;
804 return channel_flags;
807 static int freq_reg_info_regd(struct wiphy *wiphy,
810 const struct ieee80211_reg_rule **reg_rule,
811 const struct ieee80211_regdomain *custom_regd)
814 bool band_rule_found = false;
815 const struct ieee80211_regdomain *regd;
816 u32 max_bandwidth = 0;
818 regd = custom_regd ? custom_regd : cfg80211_regdomain;
821 * Follow the driver's regulatory domain, if present, unless a country
822 * IE has been processed or a user wants to help complaince further
824 if (last_request->initiator != REGDOM_SET_BY_COUNTRY_IE &&
825 last_request->initiator != REGDOM_SET_BY_USER &&
832 for (i = 0; i < regd->n_reg_rules; i++) {
833 const struct ieee80211_reg_rule *rr;
834 const struct ieee80211_freq_range *fr = NULL;
835 const struct ieee80211_power_rule *pr = NULL;
837 rr = ®d->reg_rules[i];
838 fr = &rr->freq_range;
839 pr = &rr->power_rule;
842 * We only need to know if one frequency rule was
843 * was in center_freq's band, that's enough, so lets
844 * not overwrite it once found
846 if (!band_rule_found)
847 band_rule_found = freq_in_rule_band(fr, center_freq);
849 max_bandwidth = freq_max_bandwidth(fr, center_freq);
851 if (max_bandwidth && *bandwidth <= max_bandwidth) {
853 *bandwidth = max_bandwidth;
858 if (!band_rule_found)
861 return !max_bandwidth;
863 EXPORT_SYMBOL(freq_reg_info);
865 int freq_reg_info(struct wiphy *wiphy, u32 center_freq, u32 *bandwidth,
866 const struct ieee80211_reg_rule **reg_rule)
868 return freq_reg_info_regd(wiphy, center_freq,
869 bandwidth, reg_rule, NULL);
872 static void handle_channel(struct wiphy *wiphy, enum ieee80211_band band,
873 unsigned int chan_idx)
877 u32 max_bandwidth = 0;
878 const struct ieee80211_reg_rule *reg_rule = NULL;
879 const struct ieee80211_power_rule *power_rule = NULL;
880 struct ieee80211_supported_band *sband;
881 struct ieee80211_channel *chan;
882 struct wiphy *request_wiphy = NULL;
884 assert_cfg80211_lock();
886 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
888 sband = wiphy->bands[band];
889 BUG_ON(chan_idx >= sband->n_channels);
890 chan = &sband->channels[chan_idx];
892 flags = chan->orig_flags;
894 r = freq_reg_info(wiphy, MHZ_TO_KHZ(chan->center_freq),
895 &max_bandwidth, ®_rule);
899 * This means no regulatory rule was found in the country IE
900 * with a frequency range on the center_freq's band, since
901 * IEEE-802.11 allows for a country IE to have a subset of the
902 * regulatory information provided in a country we ignore
903 * disabling the channel unless at least one reg rule was
904 * found on the center_freq's band. For details see this
907 * http://tinyurl.com/11d-clarification
910 last_request->initiator == REGDOM_SET_BY_COUNTRY_IE) {
911 #ifdef CONFIG_CFG80211_REG_DEBUG
912 printk(KERN_DEBUG "cfg80211: Leaving channel %d MHz "
913 "intact on %s - no rule found in band on "
915 chan->center_freq, wiphy_name(wiphy));
919 * In this case we know the country IE has at least one reg rule
920 * for the band so we respect its band definitions
922 #ifdef CONFIG_CFG80211_REG_DEBUG
923 if (last_request->initiator == REGDOM_SET_BY_COUNTRY_IE)
924 printk(KERN_DEBUG "cfg80211: Disabling "
925 "channel %d MHz on %s due to "
927 chan->center_freq, wiphy_name(wiphy));
929 flags |= IEEE80211_CHAN_DISABLED;
935 power_rule = ®_rule->power_rule;
937 if (last_request->initiator == REGDOM_SET_BY_DRIVER &&
938 request_wiphy && request_wiphy == wiphy &&
939 request_wiphy->strict_regulatory) {
941 * This gaurantees the driver's requested regulatory domain
942 * will always be used as a base for further regulatory
945 chan->flags = chan->orig_flags =
946 map_regdom_flags(reg_rule->flags);
947 chan->max_antenna_gain = chan->orig_mag =
948 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
949 chan->max_bandwidth = KHZ_TO_MHZ(max_bandwidth);
950 chan->max_power = chan->orig_mpwr =
951 (int) MBM_TO_DBM(power_rule->max_eirp);
955 chan->flags = flags | map_regdom_flags(reg_rule->flags);
956 chan->max_antenna_gain = min(chan->orig_mag,
957 (int) MBI_TO_DBI(power_rule->max_antenna_gain));
958 chan->max_bandwidth = KHZ_TO_MHZ(max_bandwidth);
960 chan->max_power = min(chan->orig_mpwr,
961 (int) MBM_TO_DBM(power_rule->max_eirp));
963 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
966 static void handle_band(struct wiphy *wiphy, enum ieee80211_band band)
969 struct ieee80211_supported_band *sband;
971 BUG_ON(!wiphy->bands[band]);
972 sband = wiphy->bands[band];
974 for (i = 0; i < sband->n_channels; i++)
975 handle_channel(wiphy, band, i);
978 static bool ignore_reg_update(struct wiphy *wiphy, enum reg_set_by setby)
982 if (setby == REGDOM_SET_BY_CORE &&
983 wiphy->custom_regulatory)
986 * wiphy->regd will be set once the device has its own
987 * desired regulatory domain set
989 if (wiphy->strict_regulatory && !wiphy->regd &&
990 !is_world_regdom(last_request->alpha2))
995 static void update_all_wiphy_regulatory(enum reg_set_by setby)
997 struct cfg80211_registered_device *drv;
999 list_for_each_entry(drv, &cfg80211_drv_list, list)
1000 wiphy_update_regulatory(&drv->wiphy, setby);
1003 void wiphy_update_regulatory(struct wiphy *wiphy, enum reg_set_by setby)
1005 enum ieee80211_band band;
1007 if (ignore_reg_update(wiphy, setby))
1009 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1010 if (wiphy->bands[band])
1011 handle_band(wiphy, band);
1013 if (wiphy->reg_notifier)
1014 wiphy->reg_notifier(wiphy, last_request);
1017 static void handle_channel_custom(struct wiphy *wiphy,
1018 enum ieee80211_band band,
1019 unsigned int chan_idx,
1020 const struct ieee80211_regdomain *regd)
1023 u32 max_bandwidth = 0;
1024 const struct ieee80211_reg_rule *reg_rule = NULL;
1025 const struct ieee80211_power_rule *power_rule = NULL;
1026 struct ieee80211_supported_band *sband;
1027 struct ieee80211_channel *chan;
1029 sband = wiphy->bands[band];
1030 BUG_ON(chan_idx >= sband->n_channels);
1031 chan = &sband->channels[chan_idx];
1033 r = freq_reg_info_regd(wiphy, MHZ_TO_KHZ(chan->center_freq),
1034 &max_bandwidth, ®_rule, regd);
1037 chan->flags = IEEE80211_CHAN_DISABLED;
1041 power_rule = ®_rule->power_rule;
1043 chan->flags |= map_regdom_flags(reg_rule->flags);
1044 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
1045 chan->max_bandwidth = KHZ_TO_MHZ(max_bandwidth);
1046 chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
1049 static void handle_band_custom(struct wiphy *wiphy, enum ieee80211_band band,
1050 const struct ieee80211_regdomain *regd)
1053 struct ieee80211_supported_band *sband;
1055 BUG_ON(!wiphy->bands[band]);
1056 sband = wiphy->bands[band];
1058 for (i = 0; i < sband->n_channels; i++)
1059 handle_channel_custom(wiphy, band, i, regd);
1062 /* Used by drivers prior to wiphy registration */
1063 void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1064 const struct ieee80211_regdomain *regd)
1066 enum ieee80211_band band;
1067 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1068 if (wiphy->bands[band])
1069 handle_band_custom(wiphy, band, regd);
1072 EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1074 static int reg_copy_regd(const struct ieee80211_regdomain **dst_regd,
1075 const struct ieee80211_regdomain *src_regd)
1077 struct ieee80211_regdomain *regd;
1078 int size_of_regd = 0;
1081 size_of_regd = sizeof(struct ieee80211_regdomain) +
1082 ((src_regd->n_reg_rules + 1) * sizeof(struct ieee80211_reg_rule));
1084 regd = kzalloc(size_of_regd, GFP_KERNEL);
1088 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
1090 for (i = 0; i < src_regd->n_reg_rules; i++)
1091 memcpy(®d->reg_rules[i], &src_regd->reg_rules[i],
1092 sizeof(struct ieee80211_reg_rule));
1099 * Return value which can be used by ignore_request() to indicate
1100 * it has been determined we should intersect two regulatory domains
1102 #define REG_INTERSECT 1
1104 /* This has the logic which determines when a new request
1105 * should be ignored. */
1106 static int ignore_request(struct wiphy *wiphy, enum reg_set_by set_by,
1109 struct wiphy *last_wiphy = NULL;
1111 assert_cfg80211_lock();
1113 /* All initial requests are respected */
1118 case REGDOM_SET_BY_INIT:
1120 case REGDOM_SET_BY_CORE:
1122 case REGDOM_SET_BY_COUNTRY_IE:
1124 last_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1126 if (unlikely(!is_an_alpha2(alpha2)))
1128 if (last_request->initiator == REGDOM_SET_BY_COUNTRY_IE) {
1129 if (last_wiphy != wiphy) {
1131 * Two cards with two APs claiming different
1132 * different Country IE alpha2s. We could
1133 * intersect them, but that seems unlikely
1134 * to be correct. Reject second one for now.
1136 if (regdom_changes(alpha2))
1141 * Two consecutive Country IE hints on the same wiphy.
1142 * This should be picked up early by the driver/stack
1144 if (WARN_ON(regdom_changes(alpha2)))
1148 return REG_INTERSECT;
1149 case REGDOM_SET_BY_DRIVER:
1150 if (last_request->initiator == REGDOM_SET_BY_CORE) {
1151 if (is_old_static_regdom(cfg80211_regdomain))
1153 if (regdom_changes(alpha2))
1159 * This would happen if you unplug and plug your card
1160 * back in or if you add a new device for which the previously
1161 * loaded card also agrees on the regulatory domain.
1163 if (last_request->initiator == REGDOM_SET_BY_DRIVER &&
1164 !regdom_changes(alpha2))
1167 return REG_INTERSECT;
1168 case REGDOM_SET_BY_USER:
1169 if (last_request->initiator == REGDOM_SET_BY_COUNTRY_IE)
1170 return REG_INTERSECT;
1172 * If the user knows better the user should set the regdom
1173 * to their country before the IE is picked up
1175 if (last_request->initiator == REGDOM_SET_BY_USER &&
1176 last_request->intersect)
1179 * Process user requests only after previous user/driver/core
1180 * requests have been processed
1182 if (last_request->initiator == REGDOM_SET_BY_CORE ||
1183 last_request->initiator == REGDOM_SET_BY_DRIVER ||
1184 last_request->initiator == REGDOM_SET_BY_USER) {
1185 if (regdom_changes(last_request->alpha2))
1189 if (!is_old_static_regdom(cfg80211_regdomain) &&
1190 !regdom_changes(alpha2))
1199 /* Caller must hold &cfg80211_mutex */
1200 int __regulatory_hint(struct wiphy *wiphy, enum reg_set_by set_by,
1202 u32 country_ie_checksum,
1203 enum environment_cap env)
1205 struct regulatory_request *request;
1206 bool intersect = false;
1209 assert_cfg80211_lock();
1211 r = ignore_request(wiphy, set_by, alpha2);
1213 if (r == REG_INTERSECT) {
1214 if (set_by == REGDOM_SET_BY_DRIVER) {
1215 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
1222 * If the regulatory domain being requested by the
1223 * driver has already been set just copy it to the
1226 if (r == -EALREADY && set_by == REGDOM_SET_BY_DRIVER) {
1227 r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
1237 request = kzalloc(sizeof(struct regulatory_request),
1242 request->alpha2[0] = alpha2[0];
1243 request->alpha2[1] = alpha2[1];
1244 request->initiator = set_by;
1245 request->wiphy_idx = get_wiphy_idx(wiphy);
1246 request->intersect = intersect;
1247 request->country_ie_checksum = country_ie_checksum;
1248 request->country_ie_env = env;
1250 kfree(last_request);
1251 last_request = request;
1253 /* When r == REG_INTERSECT we do need to call CRDA */
1258 * Note: When CONFIG_WIRELESS_OLD_REGULATORY is enabled
1259 * AND if CRDA is NOT present nothing will happen, if someone
1260 * wants to bother with 11d with OLD_REG you can add a timer.
1261 * If after x amount of time nothing happens you can call:
1263 * return set_regdom(country_ie_regdomain);
1265 * to intersect with the static rd
1267 return call_crda(alpha2);
1270 /* This currently only processes user and driver regulatory hints */
1271 static int reg_process_hint(struct regulatory_request *reg_request)
1274 struct wiphy *wiphy = NULL;
1276 BUG_ON(!reg_request->alpha2);
1278 mutex_lock(&cfg80211_mutex);
1280 if (wiphy_idx_valid(reg_request->wiphy_idx))
1281 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
1283 if (reg_request->initiator == REGDOM_SET_BY_DRIVER &&
1289 r = __regulatory_hint(wiphy,
1290 reg_request->initiator,
1291 reg_request->alpha2,
1292 reg_request->country_ie_checksum,
1293 reg_request->country_ie_env);
1294 /* This is required so that the orig_* parameters are saved */
1295 if (r == -EALREADY && wiphy && wiphy->strict_regulatory)
1296 wiphy_update_regulatory(wiphy, reg_request->initiator);
1298 mutex_unlock(&cfg80211_mutex);
1306 static void reg_process_pending_hints(void)
1308 struct regulatory_request *reg_request;
1311 spin_lock(®_requests_lock);
1312 while (!list_empty(®_requests_list)) {
1313 reg_request = list_first_entry(®_requests_list,
1314 struct regulatory_request,
1316 list_del_init(®_request->list);
1317 spin_unlock(®_requests_lock);
1319 r = reg_process_hint(reg_request);
1320 #ifdef CONFIG_CFG80211_REG_DEBUG
1321 if (r && (reg_request->initiator == REGDOM_SET_BY_DRIVER ||
1322 reg_request->initiator == REGDOM_SET_BY_COUNTRY_IE))
1323 printk(KERN_ERR "cfg80211: wiphy_idx %d sent a "
1324 "regulatory hint for %c%c but now has "
1325 "gone fishing, ignoring request\n",
1326 reg_request->wiphy_idx,
1327 reg_request->alpha2[0],
1328 reg_request->alpha2[1]);
1331 spin_lock(®_requests_lock);
1333 spin_unlock(®_requests_lock);
1336 static void reg_todo(struct work_struct *work)
1338 reg_process_pending_hints();
1341 static DECLARE_WORK(reg_work, reg_todo);
1343 static void queue_regulatory_request(struct regulatory_request *request)
1345 spin_lock(®_requests_lock);
1346 list_add_tail(&request->list, ®_requests_list);
1347 spin_unlock(®_requests_lock);
1349 schedule_work(®_work);
1352 /* Core regulatory hint -- happens once during cfg80211_init() */
1353 static int regulatory_hint_core(const char *alpha2)
1355 struct regulatory_request *request;
1357 BUG_ON(last_request);
1359 request = kzalloc(sizeof(struct regulatory_request),
1364 request->alpha2[0] = alpha2[0];
1365 request->alpha2[1] = alpha2[1];
1366 request->initiator = REGDOM_SET_BY_CORE;
1368 queue_regulatory_request(request);
1374 int regulatory_hint_user(const char *alpha2)
1376 struct regulatory_request *request;
1380 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1384 request->wiphy_idx = WIPHY_IDX_STALE;
1385 request->alpha2[0] = alpha2[0];
1386 request->alpha2[1] = alpha2[1];
1387 request->initiator = REGDOM_SET_BY_USER,
1389 queue_regulatory_request(request);
1395 int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
1397 struct regulatory_request *request;
1402 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1406 request->wiphy_idx = get_wiphy_idx(wiphy);
1408 /* Must have registered wiphy first */
1409 BUG_ON(!wiphy_idx_valid(request->wiphy_idx));
1411 request->alpha2[0] = alpha2[0];
1412 request->alpha2[1] = alpha2[1];
1413 request->initiator = REGDOM_SET_BY_DRIVER;
1415 queue_regulatory_request(request);
1419 EXPORT_SYMBOL(regulatory_hint);
1421 static bool reg_same_country_ie_hint(struct wiphy *wiphy,
1422 u32 country_ie_checksum)
1424 struct wiphy *request_wiphy;
1426 assert_cfg80211_lock();
1428 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1433 if (likely(request_wiphy != wiphy))
1434 return !country_ie_integrity_changes(country_ie_checksum);
1436 * We should not have let these through at this point, they
1437 * should have been picked up earlier by the first alpha2 check
1440 if (WARN_ON(!country_ie_integrity_changes(country_ie_checksum)))
1445 void regulatory_hint_11d(struct wiphy *wiphy,
1449 struct ieee80211_regdomain *rd = NULL;
1452 enum environment_cap env = ENVIRON_ANY;
1453 struct regulatory_request *request;
1455 mutex_lock(&cfg80211_mutex);
1457 if (unlikely(!last_request)) {
1458 mutex_unlock(&cfg80211_mutex);
1462 /* IE len must be evenly divisible by 2 */
1463 if (country_ie_len & 0x01)
1466 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
1470 * Pending country IE processing, this can happen after we
1471 * call CRDA and wait for a response if a beacon was received before
1472 * we were able to process the last regulatory_hint_11d() call
1474 if (country_ie_regdomain)
1477 alpha2[0] = country_ie[0];
1478 alpha2[1] = country_ie[1];
1480 if (country_ie[2] == 'I')
1481 env = ENVIRON_INDOOR;
1482 else if (country_ie[2] == 'O')
1483 env = ENVIRON_OUTDOOR;
1486 * We will run this for *every* beacon processed for the BSSID, so
1487 * we optimize an early check to exit out early if we don't have to
1490 if (likely(wiphy_idx_valid(last_request->wiphy_idx))) {
1491 struct cfg80211_registered_device *drv_last_ie;
1494 cfg80211_drv_by_wiphy_idx(last_request->wiphy_idx);
1497 * Lets keep this simple -- we trust the first AP
1498 * after we intersect with CRDA
1500 if (likely(&drv_last_ie->wiphy == wiphy)) {
1502 * Ignore IEs coming in on this wiphy with
1503 * the same alpha2 and environment cap
1505 if (likely(alpha2_equal(drv_last_ie->country_ie_alpha2,
1507 env == drv_last_ie->env)) {
1511 * the wiphy moved on to another BSSID or the AP
1512 * was reconfigured. XXX: We need to deal with the
1513 * case where the user suspends and goes to goes
1514 * to another country, and then gets IEs from an
1515 * AP with different settings
1520 * Ignore IEs coming in on two separate wiphys with
1521 * the same alpha2 and environment cap
1523 if (likely(alpha2_equal(drv_last_ie->country_ie_alpha2,
1525 env == drv_last_ie->env)) {
1528 /* We could potentially intersect though */
1533 rd = country_ie_2_rd(country_ie, country_ie_len, &checksum);
1538 * This will not happen right now but we leave it here for the
1539 * the future when we want to add suspend/resume support and having
1540 * the user move to another country after doing so, or having the user
1541 * move to another AP. Right now we just trust the first AP.
1543 * If we hit this before we add this support we want to be informed of
1544 * it as it would indicate a mistake in the current design
1546 if (WARN_ON(reg_same_country_ie_hint(wiphy, checksum)))
1549 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
1554 * We keep this around for when CRDA comes back with a response so
1555 * we can intersect with that
1557 country_ie_regdomain = rd;
1559 request->wiphy_idx = get_wiphy_idx(wiphy);
1560 request->alpha2[0] = rd->alpha2[0];
1561 request->alpha2[1] = rd->alpha2[1];
1562 request->initiator = REGDOM_SET_BY_COUNTRY_IE;
1563 request->country_ie_checksum = checksum;
1564 request->country_ie_env = env;
1566 mutex_unlock(&cfg80211_mutex);
1568 queue_regulatory_request(request);
1575 mutex_unlock(&cfg80211_mutex);
1577 EXPORT_SYMBOL(regulatory_hint_11d);
1579 static void print_rd_rules(const struct ieee80211_regdomain *rd)
1582 const struct ieee80211_reg_rule *reg_rule = NULL;
1583 const struct ieee80211_freq_range *freq_range = NULL;
1584 const struct ieee80211_power_rule *power_rule = NULL;
1586 printk(KERN_INFO "\t(start_freq - end_freq @ bandwidth), "
1587 "(max_antenna_gain, max_eirp)\n");
1589 for (i = 0; i < rd->n_reg_rules; i++) {
1590 reg_rule = &rd->reg_rules[i];
1591 freq_range = ®_rule->freq_range;
1592 power_rule = ®_rule->power_rule;
1595 * There may not be documentation for max antenna gain
1596 * in certain regions
1598 if (power_rule->max_antenna_gain)
1599 printk(KERN_INFO "\t(%d KHz - %d KHz @ %d KHz), "
1600 "(%d mBi, %d mBm)\n",
1601 freq_range->start_freq_khz,
1602 freq_range->end_freq_khz,
1603 freq_range->max_bandwidth_khz,
1604 power_rule->max_antenna_gain,
1605 power_rule->max_eirp);
1607 printk(KERN_INFO "\t(%d KHz - %d KHz @ %d KHz), "
1609 freq_range->start_freq_khz,
1610 freq_range->end_freq_khz,
1611 freq_range->max_bandwidth_khz,
1612 power_rule->max_eirp);
1616 static void print_regdomain(const struct ieee80211_regdomain *rd)
1619 if (is_intersected_alpha2(rd->alpha2)) {
1621 if (last_request->initiator == REGDOM_SET_BY_COUNTRY_IE) {
1622 struct cfg80211_registered_device *drv;
1623 drv = cfg80211_drv_by_wiphy_idx(
1624 last_request->wiphy_idx);
1626 printk(KERN_INFO "cfg80211: Current regulatory "
1627 "domain updated by AP to: %c%c\n",
1628 drv->country_ie_alpha2[0],
1629 drv->country_ie_alpha2[1]);
1631 printk(KERN_INFO "cfg80211: Current regulatory "
1632 "domain intersected: \n");
1634 printk(KERN_INFO "cfg80211: Current regulatory "
1635 "domain intersected: \n");
1636 } else if (is_world_regdom(rd->alpha2))
1637 printk(KERN_INFO "cfg80211: World regulatory "
1638 "domain updated:\n");
1640 if (is_unknown_alpha2(rd->alpha2))
1641 printk(KERN_INFO "cfg80211: Regulatory domain "
1642 "changed to driver built-in settings "
1643 "(unknown country)\n");
1645 printk(KERN_INFO "cfg80211: Regulatory domain "
1646 "changed to country: %c%c\n",
1647 rd->alpha2[0], rd->alpha2[1]);
1652 static void print_regdomain_info(const struct ieee80211_regdomain *rd)
1654 printk(KERN_INFO "cfg80211: Regulatory domain: %c%c\n",
1655 rd->alpha2[0], rd->alpha2[1]);
1659 #ifdef CONFIG_CFG80211_REG_DEBUG
1660 static void reg_country_ie_process_debug(
1661 const struct ieee80211_regdomain *rd,
1662 const struct ieee80211_regdomain *country_ie_regdomain,
1663 const struct ieee80211_regdomain *intersected_rd)
1665 printk(KERN_DEBUG "cfg80211: Received country IE:\n");
1666 print_regdomain_info(country_ie_regdomain);
1667 printk(KERN_DEBUG "cfg80211: CRDA thinks this should applied:\n");
1668 print_regdomain_info(rd);
1669 if (intersected_rd) {
1670 printk(KERN_DEBUG "cfg80211: We intersect both of these "
1672 print_regdomain_info(intersected_rd);
1675 printk(KERN_DEBUG "cfg80211: Intersection between both failed\n");
1678 static inline void reg_country_ie_process_debug(
1679 const struct ieee80211_regdomain *rd,
1680 const struct ieee80211_regdomain *country_ie_regdomain,
1681 const struct ieee80211_regdomain *intersected_rd)
1686 /* Takes ownership of rd only if it doesn't fail */
1687 static int __set_regdom(const struct ieee80211_regdomain *rd)
1689 const struct ieee80211_regdomain *intersected_rd = NULL;
1690 struct cfg80211_registered_device *drv = NULL;
1691 struct wiphy *request_wiphy;
1692 /* Some basic sanity checks first */
1694 if (is_world_regdom(rd->alpha2)) {
1695 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
1697 update_world_regdomain(rd);
1701 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
1702 !is_unknown_alpha2(rd->alpha2))
1709 * Lets only bother proceeding on the same alpha2 if the current
1710 * rd is non static (it means CRDA was present and was used last)
1711 * and the pending request came in from a country IE
1713 if (last_request->initiator != REGDOM_SET_BY_COUNTRY_IE) {
1715 * If someone else asked us to change the rd lets only bother
1716 * checking if the alpha2 changes if CRDA was already called
1718 if (!is_old_static_regdom(cfg80211_regdomain) &&
1719 !regdom_changes(rd->alpha2))
1724 * Now lets set the regulatory domain, update all driver channels
1725 * and finally inform them of what we have done, in case they want
1726 * to review or adjust their own settings based on their own
1727 * internal EEPROM data
1730 if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
1733 if (!is_valid_rd(rd)) {
1734 printk(KERN_ERR "cfg80211: Invalid "
1735 "regulatory domain detected:\n");
1736 print_regdomain_info(rd);
1740 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1742 if (!last_request->intersect) {
1745 if (last_request->initiator != REGDOM_SET_BY_DRIVER) {
1747 cfg80211_regdomain = rd;
1752 * For a driver hint, lets copy the regulatory domain the
1753 * driver wanted to the wiphy to deal with conflicts
1756 BUG_ON(request_wiphy->regd);
1758 r = reg_copy_regd(&request_wiphy->regd, rd);
1763 cfg80211_regdomain = rd;
1767 /* Intersection requires a bit more work */
1769 if (last_request->initiator != REGDOM_SET_BY_COUNTRY_IE) {
1771 intersected_rd = regdom_intersect(rd, cfg80211_regdomain);
1772 if (!intersected_rd)
1776 * We can trash what CRDA provided now.
1777 * However if a driver requested this specific regulatory
1778 * domain we keep it for its private use
1780 if (last_request->initiator == REGDOM_SET_BY_DRIVER)
1781 request_wiphy->regd = rd;
1788 cfg80211_regdomain = intersected_rd;
1794 * Country IE requests are handled a bit differently, we intersect
1795 * the country IE rd with what CRDA believes that country should have
1798 BUG_ON(!country_ie_regdomain);
1800 if (rd != country_ie_regdomain) {
1802 * Intersect what CRDA returned and our what we
1803 * had built from the Country IE received
1806 intersected_rd = regdom_intersect(rd, country_ie_regdomain);
1808 reg_country_ie_process_debug(rd, country_ie_regdomain,
1811 kfree(country_ie_regdomain);
1812 country_ie_regdomain = NULL;
1815 * This would happen when CRDA was not present and
1816 * OLD_REGULATORY was enabled. We intersect our Country
1817 * IE rd and what was set on cfg80211 originally
1819 intersected_rd = regdom_intersect(rd, cfg80211_regdomain);
1822 if (!intersected_rd)
1825 drv = wiphy_to_dev(request_wiphy);
1827 drv->country_ie_alpha2[0] = rd->alpha2[0];
1828 drv->country_ie_alpha2[1] = rd->alpha2[1];
1829 drv->env = last_request->country_ie_env;
1831 BUG_ON(intersected_rd == rd);
1837 cfg80211_regdomain = intersected_rd;
1844 * Use this call to set the current regulatory domain. Conflicts with
1845 * multiple drivers can be ironed out later. Caller must've already
1846 * kmalloc'd the rd structure. Caller must hold cfg80211_mutex
1848 int set_regdom(const struct ieee80211_regdomain *rd)
1852 assert_cfg80211_lock();
1854 /* Note that this doesn't update the wiphys, this is done below */
1855 r = __set_regdom(rd);
1861 /* This would make this whole thing pointless */
1862 if (!last_request->intersect)
1863 BUG_ON(rd != cfg80211_regdomain);
1865 /* update all wiphys now with the new established regulatory domain */
1866 update_all_wiphy_regulatory(last_request->initiator);
1868 print_regdomain(cfg80211_regdomain);
1873 /* Caller must hold cfg80211_mutex */
1874 void reg_device_remove(struct wiphy *wiphy)
1876 struct wiphy *request_wiphy;
1878 assert_cfg80211_lock();
1880 request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
1883 if (!last_request || !request_wiphy)
1885 if (request_wiphy != wiphy)
1887 last_request->wiphy_idx = WIPHY_IDX_STALE;
1888 last_request->country_ie_env = ENVIRON_ANY;
1891 int regulatory_init(void)
1895 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
1896 if (IS_ERR(reg_pdev))
1897 return PTR_ERR(reg_pdev);
1899 spin_lock_init(®_requests_lock);
1901 #ifdef CONFIG_WIRELESS_OLD_REGULATORY
1902 cfg80211_regdomain = static_regdom(ieee80211_regdom);
1904 printk(KERN_INFO "cfg80211: Using static regulatory domain info\n");
1905 print_regdomain_info(cfg80211_regdomain);
1907 * The old code still requests for a new regdomain and if
1908 * you have CRDA you get it updated, otherwise you get
1909 * stuck with the static values. We ignore "EU" code as
1910 * that is not a valid ISO / IEC 3166 alpha2
1912 if (ieee80211_regdom[0] != 'E' || ieee80211_regdom[1] != 'U')
1913 err = regulatory_hint_core(ieee80211_regdom);
1915 cfg80211_regdomain = cfg80211_world_regdom;
1917 err = regulatory_hint_core("00");
1923 * N.B. kobject_uevent_env() can fail mainly for when we're out
1924 * memory which is handled and propagated appropriately above
1925 * but it can also fail during a netlink_broadcast() or during
1926 * early boot for call_usermodehelper(). For now treat these
1927 * errors as non-fatal.
1929 printk(KERN_ERR "cfg80211: kobject_uevent_env() was unable "
1930 "to call CRDA during init");
1931 #ifdef CONFIG_CFG80211_REG_DEBUG
1932 /* We want to find out exactly why when debugging */
1940 void regulatory_exit(void)
1942 struct regulatory_request *reg_request, *tmp;
1944 cancel_work_sync(®_work);
1946 mutex_lock(&cfg80211_mutex);
1950 kfree(country_ie_regdomain);
1951 country_ie_regdomain = NULL;
1953 kfree(last_request);
1955 platform_device_unregister(reg_pdev);
1957 spin_lock(®_requests_lock);
1958 if (!list_empty(®_requests_list)) {
1959 list_for_each_entry_safe(reg_request, tmp,
1960 ®_requests_list, list) {
1961 list_del(®_request->list);
1965 spin_unlock(®_requests_lock);
1967 mutex_unlock(&cfg80211_mutex);