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-2011 Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
6 * Copyright 2013-2014 Intel Mobile Communications GmbH
8 * Permission to use, copy, modify, and/or distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 * DOC: Wireless regulatory infrastructure
25 * The usual implementation is for a driver to read a device EEPROM to
26 * determine which regulatory domain it should be operating under, then
27 * looking up the allowable channels in a driver-local table and finally
28 * registering those channels in the wiphy structure.
30 * Another set of compliance enforcement is for drivers to use their
31 * own compliance limits which can be stored on the EEPROM. The host
32 * driver or firmware may ensure these are used.
34 * In addition to all this we provide an extra layer of regulatory
35 * conformance. For drivers which do not have any regulatory
36 * information CRDA provides the complete regulatory solution.
37 * For others it provides a community effort on further restrictions
38 * to enhance compliance.
40 * Note: When number of rules --> infinity we will not be able to
41 * index on alpha2 any more, instead we'll probably have to
42 * rely on some SHA1 checksum of the regdomain for example.
46 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
48 #include <linux/kernel.h>
49 #include <linux/export.h>
50 #include <linux/slab.h>
51 #include <linux/list.h>
52 #include <linux/ctype.h>
53 #include <linux/nl80211.h>
54 #include <linux/platform_device.h>
55 #include <linux/moduleparam.h>
56 #include <net/cfg80211.h>
63 #ifdef CONFIG_CFG80211_REG_DEBUG
64 #define REG_DBG_PRINT(format, args...) \
65 printk(KERN_DEBUG pr_fmt(format), ##args)
67 #define REG_DBG_PRINT(args...)
71 * Grace period we give before making sure all current interfaces reside on
72 * channels allowed by the current regulatory domain.
74 #define REG_ENFORCE_GRACE_MS 60000
77 * enum reg_request_treatment - regulatory request treatment
79 * @REG_REQ_OK: continue processing the regulatory request
80 * @REG_REQ_IGNORE: ignore the regulatory request
81 * @REG_REQ_INTERSECT: the regulatory domain resulting from this request should
82 * be intersected with the current one.
83 * @REG_REQ_ALREADY_SET: the regulatory request will not change the current
84 * regulatory settings, and no further processing is required.
86 enum reg_request_treatment {
93 static struct regulatory_request core_request_world = {
94 .initiator = NL80211_REGDOM_SET_BY_CORE,
99 .country_ie_env = ENVIRON_ANY,
103 * Receipt of information from last regulatory request,
104 * protected by RTNL (and can be accessed with RCU protection)
106 static struct regulatory_request __rcu *last_request =
107 (void __force __rcu *)&core_request_world;
109 /* To trigger userspace events */
110 static struct platform_device *reg_pdev;
113 * Central wireless core regulatory domains, we only need two,
114 * the current one and a world regulatory domain in case we have no
115 * information to give us an alpha2.
116 * (protected by RTNL, can be read under RCU)
118 const struct ieee80211_regdomain __rcu *cfg80211_regdomain;
121 * Number of devices that registered to the core
122 * that support cellular base station regulatory hints
123 * (protected by RTNL)
125 static int reg_num_devs_support_basehint;
128 * State variable indicating if the platform on which the devices
129 * are attached is operating in an indoor environment. The state variable
130 * is relevant for all registered devices.
132 static bool reg_is_indoor;
133 static spinlock_t reg_indoor_lock;
135 /* Used to track the userspace process controlling the indoor setting */
136 static u32 reg_is_indoor_portid;
138 static void restore_regulatory_settings(bool reset_user);
140 static const struct ieee80211_regdomain *get_cfg80211_regdom(void)
142 return rtnl_dereference(cfg80211_regdomain);
145 const struct ieee80211_regdomain *get_wiphy_regdom(struct wiphy *wiphy)
147 return rtnl_dereference(wiphy->regd);
150 static const char *reg_dfs_region_str(enum nl80211_dfs_regions dfs_region)
152 switch (dfs_region) {
153 case NL80211_DFS_UNSET:
155 case NL80211_DFS_FCC:
157 case NL80211_DFS_ETSI:
165 enum nl80211_dfs_regions reg_get_dfs_region(struct wiphy *wiphy)
167 const struct ieee80211_regdomain *regd = NULL;
168 const struct ieee80211_regdomain *wiphy_regd = NULL;
170 regd = get_cfg80211_regdom();
174 wiphy_regd = get_wiphy_regdom(wiphy);
178 if (wiphy_regd->dfs_region == regd->dfs_region)
181 REG_DBG_PRINT("%s: device specific dfs_region "
182 "(%s) disagrees with cfg80211's "
183 "central dfs_region (%s)\n",
184 dev_name(&wiphy->dev),
185 reg_dfs_region_str(wiphy_regd->dfs_region),
186 reg_dfs_region_str(regd->dfs_region));
189 return regd->dfs_region;
192 static void rcu_free_regdom(const struct ieee80211_regdomain *r)
196 kfree_rcu((struct ieee80211_regdomain *)r, rcu_head);
199 static struct regulatory_request *get_last_request(void)
201 return rcu_dereference_rtnl(last_request);
204 /* Used to queue up regulatory hints */
205 static LIST_HEAD(reg_requests_list);
206 static spinlock_t reg_requests_lock;
208 /* Used to queue up beacon hints for review */
209 static LIST_HEAD(reg_pending_beacons);
210 static spinlock_t reg_pending_beacons_lock;
212 /* Used to keep track of processed beacon hints */
213 static LIST_HEAD(reg_beacon_list);
216 struct list_head list;
217 struct ieee80211_channel chan;
220 static void reg_check_chans_work(struct work_struct *work);
221 static DECLARE_DELAYED_WORK(reg_check_chans, reg_check_chans_work);
223 static void reg_todo(struct work_struct *work);
224 static DECLARE_WORK(reg_work, reg_todo);
226 /* We keep a static world regulatory domain in case of the absence of CRDA */
227 static const struct ieee80211_regdomain world_regdom = {
231 /* IEEE 802.11b/g, channels 1..11 */
232 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
233 /* IEEE 802.11b/g, channels 12..13. */
234 REG_RULE(2467-10, 2472+10, 40, 6, 20,
236 /* IEEE 802.11 channel 14 - Only JP enables
237 * this and for 802.11b only */
238 REG_RULE(2484-10, 2484+10, 20, 6, 20,
240 NL80211_RRF_NO_OFDM),
241 /* IEEE 802.11a, channel 36..48 */
242 REG_RULE(5180-10, 5240+10, 160, 6, 20,
245 /* IEEE 802.11a, channel 52..64 - DFS required */
246 REG_RULE(5260-10, 5320+10, 160, 6, 20,
250 /* IEEE 802.11a, channel 100..144 - DFS required */
251 REG_RULE(5500-10, 5720+10, 160, 6, 20,
255 /* IEEE 802.11a, channel 149..165 */
256 REG_RULE(5745-10, 5825+10, 80, 6, 20,
259 /* IEEE 802.11ad (60GHz), channels 1..3 */
260 REG_RULE(56160+2160*1-1080, 56160+2160*3+1080, 2160, 0, 0, 0),
264 /* protected by RTNL */
265 static const struct ieee80211_regdomain *cfg80211_world_regdom =
268 static char *ieee80211_regdom = "00";
269 static char user_alpha2[2];
271 module_param(ieee80211_regdom, charp, 0444);
272 MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
274 static void reg_free_request(struct regulatory_request *request)
276 if (request == &core_request_world)
279 if (request != get_last_request())
283 static void reg_free_last_request(void)
285 struct regulatory_request *lr = get_last_request();
287 if (lr != &core_request_world && lr)
288 kfree_rcu(lr, rcu_head);
291 static void reg_update_last_request(struct regulatory_request *request)
293 struct regulatory_request *lr;
295 lr = get_last_request();
299 reg_free_last_request();
300 rcu_assign_pointer(last_request, request);
303 static void reset_regdomains(bool full_reset,
304 const struct ieee80211_regdomain *new_regdom)
306 const struct ieee80211_regdomain *r;
310 r = get_cfg80211_regdom();
312 /* avoid freeing static information or freeing something twice */
313 if (r == cfg80211_world_regdom)
315 if (cfg80211_world_regdom == &world_regdom)
316 cfg80211_world_regdom = NULL;
317 if (r == &world_regdom)
321 rcu_free_regdom(cfg80211_world_regdom);
323 cfg80211_world_regdom = &world_regdom;
324 rcu_assign_pointer(cfg80211_regdomain, new_regdom);
329 reg_update_last_request(&core_request_world);
333 * Dynamic world regulatory domain requested by the wireless
334 * core upon initialization
336 static void update_world_regdomain(const struct ieee80211_regdomain *rd)
338 struct regulatory_request *lr;
340 lr = get_last_request();
344 reset_regdomains(false, rd);
346 cfg80211_world_regdom = rd;
349 bool is_world_regdom(const char *alpha2)
353 return alpha2[0] == '0' && alpha2[1] == '0';
356 static bool is_alpha2_set(const char *alpha2)
360 return alpha2[0] && alpha2[1];
363 static bool is_unknown_alpha2(const char *alpha2)
368 * Special case where regulatory domain was built by driver
369 * but a specific alpha2 cannot be determined
371 return alpha2[0] == '9' && alpha2[1] == '9';
374 static bool is_intersected_alpha2(const char *alpha2)
379 * Special case where regulatory domain is the
380 * result of an intersection between two regulatory domain
383 return alpha2[0] == '9' && alpha2[1] == '8';
386 static bool is_an_alpha2(const char *alpha2)
390 return isalpha(alpha2[0]) && isalpha(alpha2[1]);
393 static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
395 if (!alpha2_x || !alpha2_y)
397 return alpha2_x[0] == alpha2_y[0] && alpha2_x[1] == alpha2_y[1];
400 static bool regdom_changes(const char *alpha2)
402 const struct ieee80211_regdomain *r = get_cfg80211_regdom();
406 return !alpha2_equal(r->alpha2, alpha2);
410 * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
411 * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
412 * has ever been issued.
414 static bool is_user_regdom_saved(void)
416 if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
419 /* This would indicate a mistake on the design */
420 if (WARN(!is_world_regdom(user_alpha2) && !is_an_alpha2(user_alpha2),
421 "Unexpected user alpha2: %c%c\n",
422 user_alpha2[0], user_alpha2[1]))
428 static const struct ieee80211_regdomain *
429 reg_copy_regd(const struct ieee80211_regdomain *src_regd)
431 struct ieee80211_regdomain *regd;
436 sizeof(struct ieee80211_regdomain) +
437 src_regd->n_reg_rules * sizeof(struct ieee80211_reg_rule);
439 regd = kzalloc(size_of_regd, GFP_KERNEL);
441 return ERR_PTR(-ENOMEM);
443 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
445 for (i = 0; i < src_regd->n_reg_rules; i++)
446 memcpy(®d->reg_rules[i], &src_regd->reg_rules[i],
447 sizeof(struct ieee80211_reg_rule));
452 #ifdef CONFIG_CFG80211_INTERNAL_REGDB
453 struct reg_regdb_apply_request {
454 struct list_head list;
455 const struct ieee80211_regdomain *regdom;
458 static LIST_HEAD(reg_regdb_apply_list);
459 static DEFINE_MUTEX(reg_regdb_apply_mutex);
461 static void reg_regdb_apply(struct work_struct *work)
463 struct reg_regdb_apply_request *request;
467 mutex_lock(®_regdb_apply_mutex);
468 while (!list_empty(®_regdb_apply_list)) {
469 request = list_first_entry(®_regdb_apply_list,
470 struct reg_regdb_apply_request,
472 list_del(&request->list);
474 set_regdom(request->regdom, REGD_SOURCE_INTERNAL_DB);
477 mutex_unlock(®_regdb_apply_mutex);
482 static DECLARE_WORK(reg_regdb_work, reg_regdb_apply);
484 static int reg_query_builtin(const char *alpha2)
486 const struct ieee80211_regdomain *regdom = NULL;
487 struct reg_regdb_apply_request *request;
490 for (i = 0; i < reg_regdb_size; i++) {
491 if (alpha2_equal(alpha2, reg_regdb[i]->alpha2)) {
492 regdom = reg_regdb[i];
500 request = kzalloc(sizeof(struct reg_regdb_apply_request), GFP_KERNEL);
504 request->regdom = reg_copy_regd(regdom);
505 if (IS_ERR_OR_NULL(request->regdom)) {
510 mutex_lock(®_regdb_apply_mutex);
511 list_add_tail(&request->list, ®_regdb_apply_list);
512 mutex_unlock(®_regdb_apply_mutex);
514 schedule_work(®_regdb_work);
519 /* Feel free to add any other sanity checks here */
520 static void reg_regdb_size_check(void)
522 /* We should ideally BUILD_BUG_ON() but then random builds would fail */
523 WARN_ONCE(!reg_regdb_size, "db.txt is empty, you should update it...");
526 static inline void reg_regdb_size_check(void) {}
527 static inline int reg_query_builtin(const char *alpha2)
531 #endif /* CONFIG_CFG80211_INTERNAL_REGDB */
533 #ifdef CONFIG_CFG80211_CRDA_SUPPORT
534 /* Max number of consecutive attempts to communicate with CRDA */
535 #define REG_MAX_CRDA_TIMEOUTS 10
537 static u32 reg_crda_timeouts;
539 static void crda_timeout_work(struct work_struct *work);
540 static DECLARE_DELAYED_WORK(crda_timeout, crda_timeout_work);
542 static void crda_timeout_work(struct work_struct *work)
544 REG_DBG_PRINT("Timeout while waiting for CRDA to reply, restoring regulatory settings\n");
547 restore_regulatory_settings(true);
551 static void cancel_crda_timeout(void)
553 cancel_delayed_work(&crda_timeout);
556 static void cancel_crda_timeout_sync(void)
558 cancel_delayed_work_sync(&crda_timeout);
561 static void reset_crda_timeouts(void)
563 reg_crda_timeouts = 0;
567 * This lets us keep regulatory code which is updated on a regulatory
568 * basis in userspace.
570 static int call_crda(const char *alpha2)
573 char *env[] = { country, NULL };
576 snprintf(country, sizeof(country), "COUNTRY=%c%c",
577 alpha2[0], alpha2[1]);
579 if (reg_crda_timeouts > REG_MAX_CRDA_TIMEOUTS) {
580 pr_debug("Exceeded CRDA call max attempts. Not calling CRDA\n");
584 if (!is_world_regdom((char *) alpha2))
585 pr_debug("Calling CRDA for country: %c%c\n",
586 alpha2[0], alpha2[1]);
588 pr_debug("Calling CRDA to update world regulatory domain\n");
590 ret = kobject_uevent_env(®_pdev->dev.kobj, KOBJ_CHANGE, env);
594 queue_delayed_work(system_power_efficient_wq,
595 &crda_timeout, msecs_to_jiffies(3142));
599 static inline void cancel_crda_timeout(void) {}
600 static inline void cancel_crda_timeout_sync(void) {}
601 static inline void reset_crda_timeouts(void) {}
602 static inline int call_crda(const char *alpha2)
606 #endif /* CONFIG_CFG80211_CRDA_SUPPORT */
608 static bool reg_query_database(struct regulatory_request *request)
610 /* query internal regulatory database (if it exists) */
611 if (reg_query_builtin(request->alpha2) == 0)
614 if (call_crda(request->alpha2) == 0)
620 bool reg_is_valid_request(const char *alpha2)
622 struct regulatory_request *lr = get_last_request();
624 if (!lr || lr->processed)
627 return alpha2_equal(lr->alpha2, alpha2);
630 static const struct ieee80211_regdomain *reg_get_regdomain(struct wiphy *wiphy)
632 struct regulatory_request *lr = get_last_request();
635 * Follow the driver's regulatory domain, if present, unless a country
636 * IE has been processed or a user wants to help complaince further
638 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
639 lr->initiator != NL80211_REGDOM_SET_BY_USER &&
641 return get_wiphy_regdom(wiphy);
643 return get_cfg80211_regdom();
647 reg_get_max_bandwidth_from_range(const struct ieee80211_regdomain *rd,
648 const struct ieee80211_reg_rule *rule)
650 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
651 const struct ieee80211_freq_range *freq_range_tmp;
652 const struct ieee80211_reg_rule *tmp;
653 u32 start_freq, end_freq, idx, no;
655 for (idx = 0; idx < rd->n_reg_rules; idx++)
656 if (rule == &rd->reg_rules[idx])
659 if (idx == rd->n_reg_rules)
666 tmp = &rd->reg_rules[--no];
667 freq_range_tmp = &tmp->freq_range;
669 if (freq_range_tmp->end_freq_khz < freq_range->start_freq_khz)
672 freq_range = freq_range_tmp;
675 start_freq = freq_range->start_freq_khz;
678 freq_range = &rule->freq_range;
681 while (no < rd->n_reg_rules - 1) {
682 tmp = &rd->reg_rules[++no];
683 freq_range_tmp = &tmp->freq_range;
685 if (freq_range_tmp->start_freq_khz > freq_range->end_freq_khz)
688 freq_range = freq_range_tmp;
691 end_freq = freq_range->end_freq_khz;
693 return end_freq - start_freq;
696 unsigned int reg_get_max_bandwidth(const struct ieee80211_regdomain *rd,
697 const struct ieee80211_reg_rule *rule)
699 unsigned int bw = reg_get_max_bandwidth_from_range(rd, rule);
701 if (rule->flags & NL80211_RRF_NO_160MHZ)
702 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(80));
703 if (rule->flags & NL80211_RRF_NO_80MHZ)
704 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(40));
707 * HT40+/HT40- limits are handled per-channel. Only limit BW if both
710 if (rule->flags & NL80211_RRF_NO_HT40MINUS &&
711 rule->flags & NL80211_RRF_NO_HT40PLUS)
712 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(20));
717 /* Sanity check on a regulatory rule */
718 static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
720 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
723 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
726 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
729 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
731 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
732 freq_range->max_bandwidth_khz > freq_diff)
738 static bool is_valid_rd(const struct ieee80211_regdomain *rd)
740 const struct ieee80211_reg_rule *reg_rule = NULL;
743 if (!rd->n_reg_rules)
746 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
749 for (i = 0; i < rd->n_reg_rules; i++) {
750 reg_rule = &rd->reg_rules[i];
751 if (!is_valid_reg_rule(reg_rule))
758 static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range,
759 u32 center_freq_khz, u32 bw_khz)
761 u32 start_freq_khz, end_freq_khz;
763 start_freq_khz = center_freq_khz - (bw_khz/2);
764 end_freq_khz = center_freq_khz + (bw_khz/2);
766 if (start_freq_khz >= freq_range->start_freq_khz &&
767 end_freq_khz <= freq_range->end_freq_khz)
774 * freq_in_rule_band - tells us if a frequency is in a frequency band
775 * @freq_range: frequency rule we want to query
776 * @freq_khz: frequency we are inquiring about
778 * This lets us know if a specific frequency rule is or is not relevant to
779 * a specific frequency's band. Bands are device specific and artificial
780 * definitions (the "2.4 GHz band", the "5 GHz band" and the "60GHz band"),
781 * however it is safe for now to assume that a frequency rule should not be
782 * part of a frequency's band if the start freq or end freq are off by more
783 * than 2 GHz for the 2.4 and 5 GHz bands, and by more than 10 GHz for the
785 * This resolution can be lowered and should be considered as we add
786 * regulatory rule support for other "bands".
788 static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
791 #define ONE_GHZ_IN_KHZ 1000000
793 * From 802.11ad: directional multi-gigabit (DMG):
794 * Pertaining to operation in a frequency band containing a channel
795 * with the Channel starting frequency above 45 GHz.
797 u32 limit = freq_khz > 45 * ONE_GHZ_IN_KHZ ?
798 10 * ONE_GHZ_IN_KHZ : 2 * ONE_GHZ_IN_KHZ;
799 if (abs(freq_khz - freq_range->start_freq_khz) <= limit)
801 if (abs(freq_khz - freq_range->end_freq_khz) <= limit)
804 #undef ONE_GHZ_IN_KHZ
808 * Later on we can perhaps use the more restrictive DFS
809 * region but we don't have information for that yet so
810 * for now simply disallow conflicts.
812 static enum nl80211_dfs_regions
813 reg_intersect_dfs_region(const enum nl80211_dfs_regions dfs_region1,
814 const enum nl80211_dfs_regions dfs_region2)
816 if (dfs_region1 != dfs_region2)
817 return NL80211_DFS_UNSET;
822 * Helper for regdom_intersect(), this does the real
823 * mathematical intersection fun
825 static int reg_rules_intersect(const struct ieee80211_regdomain *rd1,
826 const struct ieee80211_regdomain *rd2,
827 const struct ieee80211_reg_rule *rule1,
828 const struct ieee80211_reg_rule *rule2,
829 struct ieee80211_reg_rule *intersected_rule)
831 const struct ieee80211_freq_range *freq_range1, *freq_range2;
832 struct ieee80211_freq_range *freq_range;
833 const struct ieee80211_power_rule *power_rule1, *power_rule2;
834 struct ieee80211_power_rule *power_rule;
835 u32 freq_diff, max_bandwidth1, max_bandwidth2;
837 freq_range1 = &rule1->freq_range;
838 freq_range2 = &rule2->freq_range;
839 freq_range = &intersected_rule->freq_range;
841 power_rule1 = &rule1->power_rule;
842 power_rule2 = &rule2->power_rule;
843 power_rule = &intersected_rule->power_rule;
845 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
846 freq_range2->start_freq_khz);
847 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
848 freq_range2->end_freq_khz);
850 max_bandwidth1 = freq_range1->max_bandwidth_khz;
851 max_bandwidth2 = freq_range2->max_bandwidth_khz;
853 if (rule1->flags & NL80211_RRF_AUTO_BW)
854 max_bandwidth1 = reg_get_max_bandwidth(rd1, rule1);
855 if (rule2->flags & NL80211_RRF_AUTO_BW)
856 max_bandwidth2 = reg_get_max_bandwidth(rd2, rule2);
858 freq_range->max_bandwidth_khz = min(max_bandwidth1, max_bandwidth2);
860 intersected_rule->flags = rule1->flags | rule2->flags;
863 * In case NL80211_RRF_AUTO_BW requested for both rules
864 * set AUTO_BW in intersected rule also. Next we will
865 * calculate BW correctly in handle_channel function.
866 * In other case remove AUTO_BW flag while we calculate
867 * maximum bandwidth correctly and auto calculation is
870 if ((rule1->flags & NL80211_RRF_AUTO_BW) &&
871 (rule2->flags & NL80211_RRF_AUTO_BW))
872 intersected_rule->flags |= NL80211_RRF_AUTO_BW;
874 intersected_rule->flags &= ~NL80211_RRF_AUTO_BW;
876 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
877 if (freq_range->max_bandwidth_khz > freq_diff)
878 freq_range->max_bandwidth_khz = freq_diff;
880 power_rule->max_eirp = min(power_rule1->max_eirp,
881 power_rule2->max_eirp);
882 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
883 power_rule2->max_antenna_gain);
885 intersected_rule->dfs_cac_ms = max(rule1->dfs_cac_ms,
888 if (!is_valid_reg_rule(intersected_rule))
894 /* check whether old rule contains new rule */
895 static bool rule_contains(struct ieee80211_reg_rule *r1,
896 struct ieee80211_reg_rule *r2)
898 /* for simplicity, currently consider only same flags */
899 if (r1->flags != r2->flags)
902 /* verify r1 is more restrictive */
903 if ((r1->power_rule.max_antenna_gain >
904 r2->power_rule.max_antenna_gain) ||
905 r1->power_rule.max_eirp > r2->power_rule.max_eirp)
908 /* make sure r2's range is contained within r1 */
909 if (r1->freq_range.start_freq_khz > r2->freq_range.start_freq_khz ||
910 r1->freq_range.end_freq_khz < r2->freq_range.end_freq_khz)
913 /* and finally verify that r1.max_bw >= r2.max_bw */
914 if (r1->freq_range.max_bandwidth_khz <
915 r2->freq_range.max_bandwidth_khz)
921 /* add or extend current rules. do nothing if rule is already contained */
922 static void add_rule(struct ieee80211_reg_rule *rule,
923 struct ieee80211_reg_rule *reg_rules, u32 *n_rules)
925 struct ieee80211_reg_rule *tmp_rule;
928 for (i = 0; i < *n_rules; i++) {
929 tmp_rule = ®_rules[i];
930 /* rule is already contained - do nothing */
931 if (rule_contains(tmp_rule, rule))
934 /* extend rule if possible */
935 if (rule_contains(rule, tmp_rule)) {
936 memcpy(tmp_rule, rule, sizeof(*rule));
941 memcpy(®_rules[*n_rules], rule, sizeof(*rule));
946 * regdom_intersect - do the intersection between two regulatory domains
947 * @rd1: first regulatory domain
948 * @rd2: second regulatory domain
950 * Use this function to get the intersection between two regulatory domains.
951 * Once completed we will mark the alpha2 for the rd as intersected, "98",
952 * as no one single alpha2 can represent this regulatory domain.
954 * Returns a pointer to the regulatory domain structure which will hold the
955 * resulting intersection of rules between rd1 and rd2. We will
956 * kzalloc() this structure for you.
958 static struct ieee80211_regdomain *
959 regdom_intersect(const struct ieee80211_regdomain *rd1,
960 const struct ieee80211_regdomain *rd2)
964 unsigned int num_rules = 0;
965 const struct ieee80211_reg_rule *rule1, *rule2;
966 struct ieee80211_reg_rule intersected_rule;
967 struct ieee80211_regdomain *rd;
973 * First we get a count of the rules we'll need, then we actually
974 * build them. This is to so we can malloc() and free() a
975 * regdomain once. The reason we use reg_rules_intersect() here
976 * is it will return -EINVAL if the rule computed makes no sense.
977 * All rules that do check out OK are valid.
980 for (x = 0; x < rd1->n_reg_rules; x++) {
981 rule1 = &rd1->reg_rules[x];
982 for (y = 0; y < rd2->n_reg_rules; y++) {
983 rule2 = &rd2->reg_rules[y];
984 if (!reg_rules_intersect(rd1, rd2, rule1, rule2,
993 size_of_regd = sizeof(struct ieee80211_regdomain) +
994 num_rules * sizeof(struct ieee80211_reg_rule);
996 rd = kzalloc(size_of_regd, GFP_KERNEL);
1000 for (x = 0; x < rd1->n_reg_rules; x++) {
1001 rule1 = &rd1->reg_rules[x];
1002 for (y = 0; y < rd2->n_reg_rules; y++) {
1003 rule2 = &rd2->reg_rules[y];
1004 r = reg_rules_intersect(rd1, rd2, rule1, rule2,
1007 * No need to memset here the intersected rule here as
1008 * we're not using the stack anymore
1013 add_rule(&intersected_rule, rd->reg_rules,
1018 rd->alpha2[0] = '9';
1019 rd->alpha2[1] = '8';
1020 rd->dfs_region = reg_intersect_dfs_region(rd1->dfs_region,
1027 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
1028 * want to just have the channel structure use these
1030 static u32 map_regdom_flags(u32 rd_flags)
1032 u32 channel_flags = 0;
1033 if (rd_flags & NL80211_RRF_NO_IR_ALL)
1034 channel_flags |= IEEE80211_CHAN_NO_IR;
1035 if (rd_flags & NL80211_RRF_DFS)
1036 channel_flags |= IEEE80211_CHAN_RADAR;
1037 if (rd_flags & NL80211_RRF_NO_OFDM)
1038 channel_flags |= IEEE80211_CHAN_NO_OFDM;
1039 if (rd_flags & NL80211_RRF_NO_OUTDOOR)
1040 channel_flags |= IEEE80211_CHAN_INDOOR_ONLY;
1041 if (rd_flags & NL80211_RRF_IR_CONCURRENT)
1042 channel_flags |= IEEE80211_CHAN_IR_CONCURRENT;
1043 if (rd_flags & NL80211_RRF_NO_HT40MINUS)
1044 channel_flags |= IEEE80211_CHAN_NO_HT40MINUS;
1045 if (rd_flags & NL80211_RRF_NO_HT40PLUS)
1046 channel_flags |= IEEE80211_CHAN_NO_HT40PLUS;
1047 if (rd_flags & NL80211_RRF_NO_80MHZ)
1048 channel_flags |= IEEE80211_CHAN_NO_80MHZ;
1049 if (rd_flags & NL80211_RRF_NO_160MHZ)
1050 channel_flags |= IEEE80211_CHAN_NO_160MHZ;
1051 return channel_flags;
1054 static const struct ieee80211_reg_rule *
1055 freq_reg_info_regd(struct wiphy *wiphy, u32 center_freq,
1056 const struct ieee80211_regdomain *regd, u32 bw)
1059 bool band_rule_found = false;
1060 bool bw_fits = false;
1063 return ERR_PTR(-EINVAL);
1065 for (i = 0; i < regd->n_reg_rules; i++) {
1066 const struct ieee80211_reg_rule *rr;
1067 const struct ieee80211_freq_range *fr = NULL;
1069 rr = ®d->reg_rules[i];
1070 fr = &rr->freq_range;
1073 * We only need to know if one frequency rule was
1074 * was in center_freq's band, that's enough, so lets
1075 * not overwrite it once found
1077 if (!band_rule_found)
1078 band_rule_found = freq_in_rule_band(fr, center_freq);
1080 bw_fits = reg_does_bw_fit(fr, center_freq, bw);
1082 if (band_rule_found && bw_fits)
1086 if (!band_rule_found)
1087 return ERR_PTR(-ERANGE);
1089 return ERR_PTR(-EINVAL);
1092 static const struct ieee80211_reg_rule *
1093 __freq_reg_info(struct wiphy *wiphy, u32 center_freq, u32 min_bw)
1095 const struct ieee80211_regdomain *regd = reg_get_regdomain(wiphy);
1096 const struct ieee80211_reg_rule *reg_rule = NULL;
1099 for (bw = MHZ_TO_KHZ(20); bw >= min_bw; bw = bw / 2) {
1100 reg_rule = freq_reg_info_regd(wiphy, center_freq, regd, bw);
1101 if (!IS_ERR(reg_rule))
1108 const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
1111 return __freq_reg_info(wiphy, center_freq, MHZ_TO_KHZ(20));
1113 EXPORT_SYMBOL(freq_reg_info);
1115 const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
1117 switch (initiator) {
1118 case NL80211_REGDOM_SET_BY_CORE:
1120 case NL80211_REGDOM_SET_BY_USER:
1122 case NL80211_REGDOM_SET_BY_DRIVER:
1124 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
1125 return "country IE";
1131 EXPORT_SYMBOL(reg_initiator_name);
1133 static void chan_reg_rule_print_dbg(const struct ieee80211_regdomain *regd,
1134 struct ieee80211_channel *chan,
1135 const struct ieee80211_reg_rule *reg_rule)
1137 #ifdef CONFIG_CFG80211_REG_DEBUG
1138 const struct ieee80211_power_rule *power_rule;
1139 const struct ieee80211_freq_range *freq_range;
1140 char max_antenna_gain[32], bw[32];
1142 power_rule = ®_rule->power_rule;
1143 freq_range = ®_rule->freq_range;
1145 if (!power_rule->max_antenna_gain)
1146 snprintf(max_antenna_gain, sizeof(max_antenna_gain), "N/A");
1148 snprintf(max_antenna_gain, sizeof(max_antenna_gain), "%d mBi",
1149 power_rule->max_antenna_gain);
1151 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
1152 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
1153 freq_range->max_bandwidth_khz,
1154 reg_get_max_bandwidth(regd, reg_rule));
1156 snprintf(bw, sizeof(bw), "%d KHz",
1157 freq_range->max_bandwidth_khz);
1159 REG_DBG_PRINT("Updating information on frequency %d MHz with regulatory rule:\n",
1162 REG_DBG_PRINT("(%d KHz - %d KHz @ %s), (%s, %d mBm)\n",
1163 freq_range->start_freq_khz, freq_range->end_freq_khz,
1164 bw, max_antenna_gain,
1165 power_rule->max_eirp);
1170 * Note that right now we assume the desired channel bandwidth
1171 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
1172 * per channel, the primary and the extension channel).
1174 static void handle_channel(struct wiphy *wiphy,
1175 enum nl80211_reg_initiator initiator,
1176 struct ieee80211_channel *chan)
1178 u32 flags, bw_flags = 0;
1179 const struct ieee80211_reg_rule *reg_rule = NULL;
1180 const struct ieee80211_power_rule *power_rule = NULL;
1181 const struct ieee80211_freq_range *freq_range = NULL;
1182 struct wiphy *request_wiphy = NULL;
1183 struct regulatory_request *lr = get_last_request();
1184 const struct ieee80211_regdomain *regd;
1185 u32 max_bandwidth_khz;
1187 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
1189 flags = chan->orig_flags;
1191 reg_rule = freq_reg_info(wiphy, MHZ_TO_KHZ(chan->center_freq));
1192 if (IS_ERR(reg_rule)) {
1194 * We will disable all channels that do not match our
1195 * received regulatory rule unless the hint is coming
1196 * from a Country IE and the Country IE had no information
1197 * about a band. The IEEE 802.11 spec allows for an AP
1198 * to send only a subset of the regulatory rules allowed,
1199 * so an AP in the US that only supports 2.4 GHz may only send
1200 * a country IE with information for the 2.4 GHz band
1201 * while 5 GHz is still supported.
1203 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
1204 PTR_ERR(reg_rule) == -ERANGE)
1207 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1208 request_wiphy && request_wiphy == wiphy &&
1209 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
1210 REG_DBG_PRINT("Disabling freq %d MHz for good\n",
1212 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1213 chan->flags = chan->orig_flags;
1215 REG_DBG_PRINT("Disabling freq %d MHz\n",
1217 chan->flags |= IEEE80211_CHAN_DISABLED;
1222 regd = reg_get_regdomain(wiphy);
1223 chan_reg_rule_print_dbg(regd, chan, reg_rule);
1225 power_rule = ®_rule->power_rule;
1226 freq_range = ®_rule->freq_range;
1228 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1229 /* Check if auto calculation requested */
1230 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
1231 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
1233 /* If we get a reg_rule we can assume that at least 5Mhz fit */
1234 if (!reg_does_bw_fit(freq_range, MHZ_TO_KHZ(chan->center_freq),
1236 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1237 if (!reg_does_bw_fit(freq_range, MHZ_TO_KHZ(chan->center_freq),
1239 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1241 if (max_bandwidth_khz < MHZ_TO_KHZ(10))
1242 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1243 if (max_bandwidth_khz < MHZ_TO_KHZ(20))
1244 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1245 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
1246 bw_flags |= IEEE80211_CHAN_NO_HT40;
1247 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
1248 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
1249 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
1250 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
1252 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1253 request_wiphy && request_wiphy == wiphy &&
1254 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
1256 * This guarantees the driver's requested regulatory domain
1257 * will always be used as a base for further regulatory
1260 chan->flags = chan->orig_flags =
1261 map_regdom_flags(reg_rule->flags) | bw_flags;
1262 chan->max_antenna_gain = chan->orig_mag =
1263 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
1264 chan->max_reg_power = chan->max_power = chan->orig_mpwr =
1265 (int) MBM_TO_DBM(power_rule->max_eirp);
1267 if (chan->flags & IEEE80211_CHAN_RADAR) {
1268 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1269 if (reg_rule->dfs_cac_ms)
1270 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1276 chan->dfs_state = NL80211_DFS_USABLE;
1277 chan->dfs_state_entered = jiffies;
1279 chan->beacon_found = false;
1280 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
1281 chan->max_antenna_gain =
1282 min_t(int, chan->orig_mag,
1283 MBI_TO_DBI(power_rule->max_antenna_gain));
1284 chan->max_reg_power = (int) MBM_TO_DBM(power_rule->max_eirp);
1286 if (chan->flags & IEEE80211_CHAN_RADAR) {
1287 if (reg_rule->dfs_cac_ms)
1288 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1290 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1293 if (chan->orig_mpwr) {
1295 * Devices that use REGULATORY_COUNTRY_IE_FOLLOW_POWER
1296 * will always follow the passed country IE power settings.
1298 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
1299 wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_FOLLOW_POWER)
1300 chan->max_power = chan->max_reg_power;
1302 chan->max_power = min(chan->orig_mpwr,
1303 chan->max_reg_power);
1305 chan->max_power = chan->max_reg_power;
1308 static void handle_band(struct wiphy *wiphy,
1309 enum nl80211_reg_initiator initiator,
1310 struct ieee80211_supported_band *sband)
1317 for (i = 0; i < sband->n_channels; i++)
1318 handle_channel(wiphy, initiator, &sband->channels[i]);
1321 static bool reg_request_cell_base(struct regulatory_request *request)
1323 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1325 return request->user_reg_hint_type == NL80211_USER_REG_HINT_CELL_BASE;
1328 bool reg_last_request_cell_base(void)
1330 return reg_request_cell_base(get_last_request());
1333 #ifdef CONFIG_CFG80211_REG_CELLULAR_HINTS
1334 /* Core specific check */
1335 static enum reg_request_treatment
1336 reg_ignore_cell_hint(struct regulatory_request *pending_request)
1338 struct regulatory_request *lr = get_last_request();
1340 if (!reg_num_devs_support_basehint)
1341 return REG_REQ_IGNORE;
1343 if (reg_request_cell_base(lr) &&
1344 !regdom_changes(pending_request->alpha2))
1345 return REG_REQ_ALREADY_SET;
1350 /* Device specific check */
1351 static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
1353 return !(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS);
1356 static enum reg_request_treatment
1357 reg_ignore_cell_hint(struct regulatory_request *pending_request)
1359 return REG_REQ_IGNORE;
1362 static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
1368 static bool wiphy_strict_alpha2_regd(struct wiphy *wiphy)
1370 if (wiphy->regulatory_flags & REGULATORY_STRICT_REG &&
1371 !(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG))
1376 static bool ignore_reg_update(struct wiphy *wiphy,
1377 enum nl80211_reg_initiator initiator)
1379 struct regulatory_request *lr = get_last_request();
1381 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
1385 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1386 "since last_request is not set\n",
1387 reg_initiator_name(initiator));
1391 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
1392 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
1393 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1394 "since the driver uses its own custom "
1395 "regulatory domain\n",
1396 reg_initiator_name(initiator));
1401 * wiphy->regd will be set once the device has its own
1402 * desired regulatory domain set
1404 if (wiphy_strict_alpha2_regd(wiphy) && !wiphy->regd &&
1405 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
1406 !is_world_regdom(lr->alpha2)) {
1407 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1408 "since the driver requires its own regulatory "
1409 "domain to be set first\n",
1410 reg_initiator_name(initiator));
1414 if (reg_request_cell_base(lr))
1415 return reg_dev_ignore_cell_hint(wiphy);
1420 static bool reg_is_world_roaming(struct wiphy *wiphy)
1422 const struct ieee80211_regdomain *cr = get_cfg80211_regdom();
1423 const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy);
1424 struct regulatory_request *lr = get_last_request();
1426 if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2)))
1429 if (lr && lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
1430 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
1436 static void handle_reg_beacon(struct wiphy *wiphy, unsigned int chan_idx,
1437 struct reg_beacon *reg_beacon)
1439 struct ieee80211_supported_band *sband;
1440 struct ieee80211_channel *chan;
1441 bool channel_changed = false;
1442 struct ieee80211_channel chan_before;
1444 sband = wiphy->bands[reg_beacon->chan.band];
1445 chan = &sband->channels[chan_idx];
1447 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
1450 if (chan->beacon_found)
1453 chan->beacon_found = true;
1455 if (!reg_is_world_roaming(wiphy))
1458 if (wiphy->regulatory_flags & REGULATORY_DISABLE_BEACON_HINTS)
1461 chan_before.center_freq = chan->center_freq;
1462 chan_before.flags = chan->flags;
1464 if (chan->flags & IEEE80211_CHAN_NO_IR) {
1465 chan->flags &= ~IEEE80211_CHAN_NO_IR;
1466 channel_changed = true;
1469 if (channel_changed)
1470 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
1474 * Called when a scan on a wiphy finds a beacon on
1477 static void wiphy_update_new_beacon(struct wiphy *wiphy,
1478 struct reg_beacon *reg_beacon)
1481 struct ieee80211_supported_band *sband;
1483 if (!wiphy->bands[reg_beacon->chan.band])
1486 sband = wiphy->bands[reg_beacon->chan.band];
1488 for (i = 0; i < sband->n_channels; i++)
1489 handle_reg_beacon(wiphy, i, reg_beacon);
1493 * Called upon reg changes or a new wiphy is added
1495 static void wiphy_update_beacon_reg(struct wiphy *wiphy)
1498 struct ieee80211_supported_band *sband;
1499 struct reg_beacon *reg_beacon;
1501 list_for_each_entry(reg_beacon, ®_beacon_list, list) {
1502 if (!wiphy->bands[reg_beacon->chan.band])
1504 sband = wiphy->bands[reg_beacon->chan.band];
1505 for (i = 0; i < sband->n_channels; i++)
1506 handle_reg_beacon(wiphy, i, reg_beacon);
1510 /* Reap the advantages of previously found beacons */
1511 static void reg_process_beacons(struct wiphy *wiphy)
1514 * Means we are just firing up cfg80211, so no beacons would
1515 * have been processed yet.
1519 wiphy_update_beacon_reg(wiphy);
1522 static bool is_ht40_allowed(struct ieee80211_channel *chan)
1526 if (chan->flags & IEEE80211_CHAN_DISABLED)
1528 /* This would happen when regulatory rules disallow HT40 completely */
1529 if ((chan->flags & IEEE80211_CHAN_NO_HT40) == IEEE80211_CHAN_NO_HT40)
1534 static void reg_process_ht_flags_channel(struct wiphy *wiphy,
1535 struct ieee80211_channel *channel)
1537 struct ieee80211_supported_band *sband = wiphy->bands[channel->band];
1538 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
1541 if (!is_ht40_allowed(channel)) {
1542 channel->flags |= IEEE80211_CHAN_NO_HT40;
1547 * We need to ensure the extension channels exist to
1548 * be able to use HT40- or HT40+, this finds them (or not)
1550 for (i = 0; i < sband->n_channels; i++) {
1551 struct ieee80211_channel *c = &sband->channels[i];
1553 if (c->center_freq == (channel->center_freq - 20))
1555 if (c->center_freq == (channel->center_freq + 20))
1560 * Please note that this assumes target bandwidth is 20 MHz,
1561 * if that ever changes we also need to change the below logic
1562 * to include that as well.
1564 if (!is_ht40_allowed(channel_before))
1565 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
1567 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
1569 if (!is_ht40_allowed(channel_after))
1570 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
1572 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
1575 static void reg_process_ht_flags_band(struct wiphy *wiphy,
1576 struct ieee80211_supported_band *sband)
1583 for (i = 0; i < sband->n_channels; i++)
1584 reg_process_ht_flags_channel(wiphy, &sband->channels[i]);
1587 static void reg_process_ht_flags(struct wiphy *wiphy)
1589 enum ieee80211_band band;
1594 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1595 reg_process_ht_flags_band(wiphy, wiphy->bands[band]);
1598 static void reg_call_notifier(struct wiphy *wiphy,
1599 struct regulatory_request *request)
1601 if (wiphy->reg_notifier)
1602 wiphy->reg_notifier(wiphy, request);
1605 static bool reg_wdev_chan_valid(struct wiphy *wiphy, struct wireless_dev *wdev)
1607 struct cfg80211_chan_def chandef;
1608 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
1609 enum nl80211_iftype iftype;
1612 iftype = wdev->iftype;
1614 /* make sure the interface is active */
1615 if (!wdev->netdev || !netif_running(wdev->netdev))
1616 goto wdev_inactive_unlock;
1619 case NL80211_IFTYPE_AP:
1620 case NL80211_IFTYPE_P2P_GO:
1621 if (!wdev->beacon_interval)
1622 goto wdev_inactive_unlock;
1623 chandef = wdev->chandef;
1625 case NL80211_IFTYPE_ADHOC:
1626 if (!wdev->ssid_len)
1627 goto wdev_inactive_unlock;
1628 chandef = wdev->chandef;
1630 case NL80211_IFTYPE_STATION:
1631 case NL80211_IFTYPE_P2P_CLIENT:
1632 if (!wdev->current_bss ||
1633 !wdev->current_bss->pub.channel)
1634 goto wdev_inactive_unlock;
1636 if (!rdev->ops->get_channel ||
1637 rdev_get_channel(rdev, wdev, &chandef))
1638 cfg80211_chandef_create(&chandef,
1639 wdev->current_bss->pub.channel,
1640 NL80211_CHAN_NO_HT);
1642 case NL80211_IFTYPE_MONITOR:
1643 case NL80211_IFTYPE_AP_VLAN:
1644 case NL80211_IFTYPE_P2P_DEVICE:
1645 /* no enforcement required */
1648 /* others not implemented for now */
1656 case NL80211_IFTYPE_AP:
1657 case NL80211_IFTYPE_P2P_GO:
1658 case NL80211_IFTYPE_ADHOC:
1659 return cfg80211_reg_can_beacon_relax(wiphy, &chandef, iftype);
1660 case NL80211_IFTYPE_STATION:
1661 case NL80211_IFTYPE_P2P_CLIENT:
1662 return cfg80211_chandef_usable(wiphy, &chandef,
1663 IEEE80211_CHAN_DISABLED);
1670 wdev_inactive_unlock:
1675 static void reg_leave_invalid_chans(struct wiphy *wiphy)
1677 struct wireless_dev *wdev;
1678 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
1682 list_for_each_entry(wdev, &rdev->wdev_list, list)
1683 if (!reg_wdev_chan_valid(wiphy, wdev))
1684 cfg80211_leave(rdev, wdev);
1687 static void reg_check_chans_work(struct work_struct *work)
1689 struct cfg80211_registered_device *rdev;
1691 REG_DBG_PRINT("Verifying active interfaces after reg change\n");
1694 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1695 if (!(rdev->wiphy.regulatory_flags &
1696 REGULATORY_IGNORE_STALE_KICKOFF))
1697 reg_leave_invalid_chans(&rdev->wiphy);
1702 static void reg_check_channels(void)
1705 * Give usermode a chance to do something nicer (move to another
1706 * channel, orderly disconnection), before forcing a disconnection.
1708 mod_delayed_work(system_power_efficient_wq,
1710 msecs_to_jiffies(REG_ENFORCE_GRACE_MS));
1713 static void wiphy_update_regulatory(struct wiphy *wiphy,
1714 enum nl80211_reg_initiator initiator)
1716 enum ieee80211_band band;
1717 struct regulatory_request *lr = get_last_request();
1719 if (ignore_reg_update(wiphy, initiator)) {
1721 * Regulatory updates set by CORE are ignored for custom
1722 * regulatory cards. Let us notify the changes to the driver,
1723 * as some drivers used this to restore its orig_* reg domain.
1725 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
1726 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
1727 reg_call_notifier(wiphy, lr);
1731 lr->dfs_region = get_cfg80211_regdom()->dfs_region;
1733 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1734 handle_band(wiphy, initiator, wiphy->bands[band]);
1736 reg_process_beacons(wiphy);
1737 reg_process_ht_flags(wiphy);
1738 reg_call_notifier(wiphy, lr);
1741 static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
1743 struct cfg80211_registered_device *rdev;
1744 struct wiphy *wiphy;
1748 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1749 wiphy = &rdev->wiphy;
1750 wiphy_update_regulatory(wiphy, initiator);
1753 reg_check_channels();
1756 static void handle_channel_custom(struct wiphy *wiphy,
1757 struct ieee80211_channel *chan,
1758 const struct ieee80211_regdomain *regd)
1761 const struct ieee80211_reg_rule *reg_rule = NULL;
1762 const struct ieee80211_power_rule *power_rule = NULL;
1763 const struct ieee80211_freq_range *freq_range = NULL;
1764 u32 max_bandwidth_khz;
1767 for (bw = MHZ_TO_KHZ(20); bw >= MHZ_TO_KHZ(5); bw = bw / 2) {
1768 reg_rule = freq_reg_info_regd(wiphy,
1769 MHZ_TO_KHZ(chan->center_freq),
1771 if (!IS_ERR(reg_rule))
1775 if (IS_ERR(reg_rule)) {
1776 REG_DBG_PRINT("Disabling freq %d MHz as custom regd has no rule that fits it\n",
1778 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) {
1779 chan->flags |= IEEE80211_CHAN_DISABLED;
1781 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1782 chan->flags = chan->orig_flags;
1787 chan_reg_rule_print_dbg(regd, chan, reg_rule);
1789 power_rule = ®_rule->power_rule;
1790 freq_range = ®_rule->freq_range;
1792 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1793 /* Check if auto calculation requested */
1794 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
1795 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
1797 /* If we get a reg_rule we can assume that at least 5Mhz fit */
1798 if (!reg_does_bw_fit(freq_range, MHZ_TO_KHZ(chan->center_freq),
1800 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1801 if (!reg_does_bw_fit(freq_range, MHZ_TO_KHZ(chan->center_freq),
1803 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1805 if (max_bandwidth_khz < MHZ_TO_KHZ(10))
1806 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1807 if (max_bandwidth_khz < MHZ_TO_KHZ(20))
1808 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1809 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
1810 bw_flags |= IEEE80211_CHAN_NO_HT40;
1811 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
1812 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
1813 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
1814 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
1816 chan->dfs_state_entered = jiffies;
1817 chan->dfs_state = NL80211_DFS_USABLE;
1819 chan->beacon_found = false;
1821 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
1822 chan->flags = chan->orig_flags | bw_flags |
1823 map_regdom_flags(reg_rule->flags);
1825 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
1827 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
1828 chan->max_reg_power = chan->max_power =
1829 (int) MBM_TO_DBM(power_rule->max_eirp);
1831 if (chan->flags & IEEE80211_CHAN_RADAR) {
1832 if (reg_rule->dfs_cac_ms)
1833 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1835 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1838 chan->max_power = chan->max_reg_power;
1841 static void handle_band_custom(struct wiphy *wiphy,
1842 struct ieee80211_supported_band *sband,
1843 const struct ieee80211_regdomain *regd)
1850 for (i = 0; i < sband->n_channels; i++)
1851 handle_channel_custom(wiphy, &sband->channels[i], regd);
1854 /* Used by drivers prior to wiphy registration */
1855 void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1856 const struct ieee80211_regdomain *regd)
1858 enum ieee80211_band band;
1859 unsigned int bands_set = 0;
1861 WARN(!(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG),
1862 "wiphy should have REGULATORY_CUSTOM_REG\n");
1863 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
1865 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1866 if (!wiphy->bands[band])
1868 handle_band_custom(wiphy, wiphy->bands[band], regd);
1873 * no point in calling this if it won't have any effect
1874 * on your device's supported bands.
1876 WARN_ON(!bands_set);
1878 EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1880 static void reg_set_request_processed(void)
1882 bool need_more_processing = false;
1883 struct regulatory_request *lr = get_last_request();
1885 lr->processed = true;
1887 spin_lock(®_requests_lock);
1888 if (!list_empty(®_requests_list))
1889 need_more_processing = true;
1890 spin_unlock(®_requests_lock);
1892 cancel_crda_timeout();
1894 if (need_more_processing)
1895 schedule_work(®_work);
1899 * reg_process_hint_core - process core regulatory requests
1900 * @pending_request: a pending core regulatory request
1902 * The wireless subsystem can use this function to process
1903 * a regulatory request issued by the regulatory core.
1905 static enum reg_request_treatment
1906 reg_process_hint_core(struct regulatory_request *core_request)
1908 if (reg_query_database(core_request)) {
1909 core_request->intersect = false;
1910 core_request->processed = false;
1911 reg_update_last_request(core_request);
1915 return REG_REQ_IGNORE;
1918 static enum reg_request_treatment
1919 __reg_process_hint_user(struct regulatory_request *user_request)
1921 struct regulatory_request *lr = get_last_request();
1923 if (reg_request_cell_base(user_request))
1924 return reg_ignore_cell_hint(user_request);
1926 if (reg_request_cell_base(lr))
1927 return REG_REQ_IGNORE;
1929 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
1930 return REG_REQ_INTERSECT;
1932 * If the user knows better the user should set the regdom
1933 * to their country before the IE is picked up
1935 if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
1937 return REG_REQ_IGNORE;
1939 * Process user requests only after previous user/driver/core
1940 * requests have been processed
1942 if ((lr->initiator == NL80211_REGDOM_SET_BY_CORE ||
1943 lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
1944 lr->initiator == NL80211_REGDOM_SET_BY_USER) &&
1945 regdom_changes(lr->alpha2))
1946 return REG_REQ_IGNORE;
1948 if (!regdom_changes(user_request->alpha2))
1949 return REG_REQ_ALREADY_SET;
1955 * reg_process_hint_user - process user regulatory requests
1956 * @user_request: a pending user regulatory request
1958 * The wireless subsystem can use this function to process
1959 * a regulatory request initiated by userspace.
1961 static enum reg_request_treatment
1962 reg_process_hint_user(struct regulatory_request *user_request)
1964 enum reg_request_treatment treatment;
1966 treatment = __reg_process_hint_user(user_request);
1967 if (treatment == REG_REQ_IGNORE ||
1968 treatment == REG_REQ_ALREADY_SET)
1969 return REG_REQ_IGNORE;
1971 user_request->intersect = treatment == REG_REQ_INTERSECT;
1972 user_request->processed = false;
1974 if (reg_query_database(user_request)) {
1975 reg_update_last_request(user_request);
1976 user_alpha2[0] = user_request->alpha2[0];
1977 user_alpha2[1] = user_request->alpha2[1];
1981 return REG_REQ_IGNORE;
1984 static enum reg_request_treatment
1985 __reg_process_hint_driver(struct regulatory_request *driver_request)
1987 struct regulatory_request *lr = get_last_request();
1989 if (lr->initiator == NL80211_REGDOM_SET_BY_CORE) {
1990 if (regdom_changes(driver_request->alpha2))
1992 return REG_REQ_ALREADY_SET;
1996 * This would happen if you unplug and plug your card
1997 * back in or if you add a new device for which the previously
1998 * loaded card also agrees on the regulatory domain.
2000 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
2001 !regdom_changes(driver_request->alpha2))
2002 return REG_REQ_ALREADY_SET;
2004 return REG_REQ_INTERSECT;
2008 * reg_process_hint_driver - process driver regulatory requests
2009 * @driver_request: a pending driver regulatory request
2011 * The wireless subsystem can use this function to process
2012 * a regulatory request issued by an 802.11 driver.
2014 * Returns one of the different reg request treatment values.
2016 static enum reg_request_treatment
2017 reg_process_hint_driver(struct wiphy *wiphy,
2018 struct regulatory_request *driver_request)
2020 const struct ieee80211_regdomain *regd, *tmp;
2021 enum reg_request_treatment treatment;
2023 treatment = __reg_process_hint_driver(driver_request);
2025 switch (treatment) {
2028 case REG_REQ_IGNORE:
2029 return REG_REQ_IGNORE;
2030 case REG_REQ_INTERSECT:
2031 case REG_REQ_ALREADY_SET:
2032 regd = reg_copy_regd(get_cfg80211_regdom());
2034 return REG_REQ_IGNORE;
2036 tmp = get_wiphy_regdom(wiphy);
2037 rcu_assign_pointer(wiphy->regd, regd);
2038 rcu_free_regdom(tmp);
2042 driver_request->intersect = treatment == REG_REQ_INTERSECT;
2043 driver_request->processed = false;
2046 * Since CRDA will not be called in this case as we already
2047 * have applied the requested regulatory domain before we just
2048 * inform userspace we have processed the request
2050 if (treatment == REG_REQ_ALREADY_SET) {
2051 nl80211_send_reg_change_event(driver_request);
2052 reg_update_last_request(driver_request);
2053 reg_set_request_processed();
2054 return REG_REQ_ALREADY_SET;
2057 if (reg_query_database(driver_request)) {
2058 reg_update_last_request(driver_request);
2062 return REG_REQ_IGNORE;
2065 static enum reg_request_treatment
2066 __reg_process_hint_country_ie(struct wiphy *wiphy,
2067 struct regulatory_request *country_ie_request)
2069 struct wiphy *last_wiphy = NULL;
2070 struct regulatory_request *lr = get_last_request();
2072 if (reg_request_cell_base(lr)) {
2073 /* Trust a Cell base station over the AP's country IE */
2074 if (regdom_changes(country_ie_request->alpha2))
2075 return REG_REQ_IGNORE;
2076 return REG_REQ_ALREADY_SET;
2078 if (wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_IGNORE)
2079 return REG_REQ_IGNORE;
2082 if (unlikely(!is_an_alpha2(country_ie_request->alpha2)))
2085 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE)
2088 last_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
2090 if (last_wiphy != wiphy) {
2092 * Two cards with two APs claiming different
2093 * Country IE alpha2s. We could
2094 * intersect them, but that seems unlikely
2095 * to be correct. Reject second one for now.
2097 if (regdom_changes(country_ie_request->alpha2))
2098 return REG_REQ_IGNORE;
2099 return REG_REQ_ALREADY_SET;
2102 if (regdom_changes(country_ie_request->alpha2))
2104 return REG_REQ_ALREADY_SET;
2108 * reg_process_hint_country_ie - process regulatory requests from country IEs
2109 * @country_ie_request: a regulatory request from a country IE
2111 * The wireless subsystem can use this function to process
2112 * a regulatory request issued by a country Information Element.
2114 * Returns one of the different reg request treatment values.
2116 static enum reg_request_treatment
2117 reg_process_hint_country_ie(struct wiphy *wiphy,
2118 struct regulatory_request *country_ie_request)
2120 enum reg_request_treatment treatment;
2122 treatment = __reg_process_hint_country_ie(wiphy, country_ie_request);
2124 switch (treatment) {
2127 case REG_REQ_IGNORE:
2128 return REG_REQ_IGNORE;
2129 case REG_REQ_ALREADY_SET:
2130 reg_free_request(country_ie_request);
2131 return REG_REQ_ALREADY_SET;
2132 case REG_REQ_INTERSECT:
2134 * This doesn't happen yet, not sure we
2135 * ever want to support it for this case.
2137 WARN_ONCE(1, "Unexpected intersection for country IEs");
2138 return REG_REQ_IGNORE;
2141 country_ie_request->intersect = false;
2142 country_ie_request->processed = false;
2144 if (reg_query_database(country_ie_request)) {
2145 reg_update_last_request(country_ie_request);
2149 return REG_REQ_IGNORE;
2152 /* This processes *all* regulatory hints */
2153 static void reg_process_hint(struct regulatory_request *reg_request)
2155 struct wiphy *wiphy = NULL;
2156 enum reg_request_treatment treatment;
2158 if (reg_request->wiphy_idx != WIPHY_IDX_INVALID)
2159 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
2161 switch (reg_request->initiator) {
2162 case NL80211_REGDOM_SET_BY_CORE:
2163 treatment = reg_process_hint_core(reg_request);
2165 case NL80211_REGDOM_SET_BY_USER:
2166 treatment = reg_process_hint_user(reg_request);
2168 case NL80211_REGDOM_SET_BY_DRIVER:
2171 treatment = reg_process_hint_driver(wiphy, reg_request);
2173 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
2176 treatment = reg_process_hint_country_ie(wiphy, reg_request);
2179 WARN(1, "invalid initiator %d\n", reg_request->initiator);
2183 if (treatment == REG_REQ_IGNORE)
2186 WARN(treatment != REG_REQ_OK && treatment != REG_REQ_ALREADY_SET,
2187 "unexpected treatment value %d\n", treatment);
2189 /* This is required so that the orig_* parameters are saved.
2190 * NOTE: treatment must be set for any case that reaches here!
2192 if (treatment == REG_REQ_ALREADY_SET && wiphy &&
2193 wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
2194 wiphy_update_regulatory(wiphy, reg_request->initiator);
2195 reg_check_channels();
2201 reg_free_request(reg_request);
2204 static bool reg_only_self_managed_wiphys(void)
2206 struct cfg80211_registered_device *rdev;
2207 struct wiphy *wiphy;
2208 bool self_managed_found = false;
2212 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2213 wiphy = &rdev->wiphy;
2214 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
2215 self_managed_found = true;
2220 /* make sure at least one self-managed wiphy exists */
2221 return self_managed_found;
2225 * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
2226 * Regulatory hints come on a first come first serve basis and we
2227 * must process each one atomically.
2229 static void reg_process_pending_hints(void)
2231 struct regulatory_request *reg_request, *lr;
2233 lr = get_last_request();
2235 /* When last_request->processed becomes true this will be rescheduled */
2236 if (lr && !lr->processed) {
2237 reg_process_hint(lr);
2241 spin_lock(®_requests_lock);
2243 if (list_empty(®_requests_list)) {
2244 spin_unlock(®_requests_lock);
2248 reg_request = list_first_entry(®_requests_list,
2249 struct regulatory_request,
2251 list_del_init(®_request->list);
2253 spin_unlock(®_requests_lock);
2255 if (reg_only_self_managed_wiphys()) {
2256 reg_free_request(reg_request);
2260 reg_process_hint(reg_request);
2262 lr = get_last_request();
2264 spin_lock(®_requests_lock);
2265 if (!list_empty(®_requests_list) && lr && lr->processed)
2266 schedule_work(®_work);
2267 spin_unlock(®_requests_lock);
2270 /* Processes beacon hints -- this has nothing to do with country IEs */
2271 static void reg_process_pending_beacon_hints(void)
2273 struct cfg80211_registered_device *rdev;
2274 struct reg_beacon *pending_beacon, *tmp;
2276 /* This goes through the _pending_ beacon list */
2277 spin_lock_bh(®_pending_beacons_lock);
2279 list_for_each_entry_safe(pending_beacon, tmp,
2280 ®_pending_beacons, list) {
2281 list_del_init(&pending_beacon->list);
2283 /* Applies the beacon hint to current wiphys */
2284 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
2285 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
2287 /* Remembers the beacon hint for new wiphys or reg changes */
2288 list_add_tail(&pending_beacon->list, ®_beacon_list);
2291 spin_unlock_bh(®_pending_beacons_lock);
2294 static void reg_process_self_managed_hints(void)
2296 struct cfg80211_registered_device *rdev;
2297 struct wiphy *wiphy;
2298 const struct ieee80211_regdomain *tmp;
2299 const struct ieee80211_regdomain *regd;
2300 enum ieee80211_band band;
2301 struct regulatory_request request = {};
2303 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2304 wiphy = &rdev->wiphy;
2306 spin_lock(®_requests_lock);
2307 regd = rdev->requested_regd;
2308 rdev->requested_regd = NULL;
2309 spin_unlock(®_requests_lock);
2314 tmp = get_wiphy_regdom(wiphy);
2315 rcu_assign_pointer(wiphy->regd, regd);
2316 rcu_free_regdom(tmp);
2318 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
2319 handle_band_custom(wiphy, wiphy->bands[band], regd);
2321 reg_process_ht_flags(wiphy);
2323 request.wiphy_idx = get_wiphy_idx(wiphy);
2324 request.alpha2[0] = regd->alpha2[0];
2325 request.alpha2[1] = regd->alpha2[1];
2326 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
2328 nl80211_send_wiphy_reg_change_event(&request);
2331 reg_check_channels();
2334 static void reg_todo(struct work_struct *work)
2337 reg_process_pending_hints();
2338 reg_process_pending_beacon_hints();
2339 reg_process_self_managed_hints();
2343 static void queue_regulatory_request(struct regulatory_request *request)
2345 request->alpha2[0] = toupper(request->alpha2[0]);
2346 request->alpha2[1] = toupper(request->alpha2[1]);
2348 spin_lock(®_requests_lock);
2349 list_add_tail(&request->list, ®_requests_list);
2350 spin_unlock(®_requests_lock);
2352 schedule_work(®_work);
2356 * Core regulatory hint -- happens during cfg80211_init()
2357 * and when we restore regulatory settings.
2359 static int regulatory_hint_core(const char *alpha2)
2361 struct regulatory_request *request;
2363 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2367 request->alpha2[0] = alpha2[0];
2368 request->alpha2[1] = alpha2[1];
2369 request->initiator = NL80211_REGDOM_SET_BY_CORE;
2371 queue_regulatory_request(request);
2377 int regulatory_hint_user(const char *alpha2,
2378 enum nl80211_user_reg_hint_type user_reg_hint_type)
2380 struct regulatory_request *request;
2382 if (WARN_ON(!alpha2))
2385 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2389 request->wiphy_idx = WIPHY_IDX_INVALID;
2390 request->alpha2[0] = alpha2[0];
2391 request->alpha2[1] = alpha2[1];
2392 request->initiator = NL80211_REGDOM_SET_BY_USER;
2393 request->user_reg_hint_type = user_reg_hint_type;
2395 /* Allow calling CRDA again */
2396 reset_crda_timeouts();
2398 queue_regulatory_request(request);
2403 int regulatory_hint_indoor(bool is_indoor, u32 portid)
2405 spin_lock(®_indoor_lock);
2407 /* It is possible that more than one user space process is trying to
2408 * configure the indoor setting. To handle such cases, clear the indoor
2409 * setting in case that some process does not think that the device
2410 * is operating in an indoor environment. In addition, if a user space
2411 * process indicates that it is controlling the indoor setting, save its
2412 * portid, i.e., make it the owner.
2414 reg_is_indoor = is_indoor;
2415 if (reg_is_indoor) {
2416 if (!reg_is_indoor_portid)
2417 reg_is_indoor_portid = portid;
2419 reg_is_indoor_portid = 0;
2422 spin_unlock(®_indoor_lock);
2425 reg_check_channels();
2430 void regulatory_netlink_notify(u32 portid)
2432 spin_lock(®_indoor_lock);
2434 if (reg_is_indoor_portid != portid) {
2435 spin_unlock(®_indoor_lock);
2439 reg_is_indoor = false;
2440 reg_is_indoor_portid = 0;
2442 spin_unlock(®_indoor_lock);
2444 reg_check_channels();
2448 int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
2450 struct regulatory_request *request;
2452 if (WARN_ON(!alpha2 || !wiphy))
2455 wiphy->regulatory_flags &= ~REGULATORY_CUSTOM_REG;
2457 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2461 request->wiphy_idx = get_wiphy_idx(wiphy);
2463 request->alpha2[0] = alpha2[0];
2464 request->alpha2[1] = alpha2[1];
2465 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
2467 /* Allow calling CRDA again */
2468 reset_crda_timeouts();
2470 queue_regulatory_request(request);
2474 EXPORT_SYMBOL(regulatory_hint);
2476 void regulatory_hint_country_ie(struct wiphy *wiphy, enum ieee80211_band band,
2477 const u8 *country_ie, u8 country_ie_len)
2480 enum environment_cap env = ENVIRON_ANY;
2481 struct regulatory_request *request = NULL, *lr;
2483 /* IE len must be evenly divisible by 2 */
2484 if (country_ie_len & 0x01)
2487 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
2490 request = kzalloc(sizeof(*request), GFP_KERNEL);
2494 alpha2[0] = country_ie[0];
2495 alpha2[1] = country_ie[1];
2497 if (country_ie[2] == 'I')
2498 env = ENVIRON_INDOOR;
2499 else if (country_ie[2] == 'O')
2500 env = ENVIRON_OUTDOOR;
2503 lr = get_last_request();
2509 * We will run this only upon a successful connection on cfg80211.
2510 * We leave conflict resolution to the workqueue, where can hold
2513 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
2514 lr->wiphy_idx != WIPHY_IDX_INVALID)
2517 request->wiphy_idx = get_wiphy_idx(wiphy);
2518 request->alpha2[0] = alpha2[0];
2519 request->alpha2[1] = alpha2[1];
2520 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
2521 request->country_ie_env = env;
2523 /* Allow calling CRDA again */
2524 reset_crda_timeouts();
2526 queue_regulatory_request(request);
2533 static void restore_alpha2(char *alpha2, bool reset_user)
2535 /* indicates there is no alpha2 to consider for restoration */
2539 /* The user setting has precedence over the module parameter */
2540 if (is_user_regdom_saved()) {
2541 /* Unless we're asked to ignore it and reset it */
2543 REG_DBG_PRINT("Restoring regulatory settings including user preference\n");
2544 user_alpha2[0] = '9';
2545 user_alpha2[1] = '7';
2548 * If we're ignoring user settings, we still need to
2549 * check the module parameter to ensure we put things
2550 * back as they were for a full restore.
2552 if (!is_world_regdom(ieee80211_regdom)) {
2553 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2554 ieee80211_regdom[0], ieee80211_regdom[1]);
2555 alpha2[0] = ieee80211_regdom[0];
2556 alpha2[1] = ieee80211_regdom[1];
2559 REG_DBG_PRINT("Restoring regulatory settings while preserving user preference for: %c%c\n",
2560 user_alpha2[0], user_alpha2[1]);
2561 alpha2[0] = user_alpha2[0];
2562 alpha2[1] = user_alpha2[1];
2564 } else if (!is_world_regdom(ieee80211_regdom)) {
2565 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2566 ieee80211_regdom[0], ieee80211_regdom[1]);
2567 alpha2[0] = ieee80211_regdom[0];
2568 alpha2[1] = ieee80211_regdom[1];
2570 REG_DBG_PRINT("Restoring regulatory settings\n");
2573 static void restore_custom_reg_settings(struct wiphy *wiphy)
2575 struct ieee80211_supported_band *sband;
2576 enum ieee80211_band band;
2577 struct ieee80211_channel *chan;
2580 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
2581 sband = wiphy->bands[band];
2584 for (i = 0; i < sband->n_channels; i++) {
2585 chan = &sband->channels[i];
2586 chan->flags = chan->orig_flags;
2587 chan->max_antenna_gain = chan->orig_mag;
2588 chan->max_power = chan->orig_mpwr;
2589 chan->beacon_found = false;
2595 * Restoring regulatory settings involves ingoring any
2596 * possibly stale country IE information and user regulatory
2597 * settings if so desired, this includes any beacon hints
2598 * learned as we could have traveled outside to another country
2599 * after disconnection. To restore regulatory settings we do
2600 * exactly what we did at bootup:
2602 * - send a core regulatory hint
2603 * - send a user regulatory hint if applicable
2605 * Device drivers that send a regulatory hint for a specific country
2606 * keep their own regulatory domain on wiphy->regd so that does does
2607 * not need to be remembered.
2609 static void restore_regulatory_settings(bool reset_user)
2612 char world_alpha2[2];
2613 struct reg_beacon *reg_beacon, *btmp;
2614 LIST_HEAD(tmp_reg_req_list);
2615 struct cfg80211_registered_device *rdev;
2620 * Clear the indoor setting in case that it is not controlled by user
2621 * space, as otherwise there is no guarantee that the device is still
2622 * operating in an indoor environment.
2624 spin_lock(®_indoor_lock);
2625 if (reg_is_indoor && !reg_is_indoor_portid) {
2626 reg_is_indoor = false;
2627 reg_check_channels();
2629 spin_unlock(®_indoor_lock);
2631 reset_regdomains(true, &world_regdom);
2632 restore_alpha2(alpha2, reset_user);
2635 * If there's any pending requests we simply
2636 * stash them to a temporary pending queue and
2637 * add then after we've restored regulatory
2640 spin_lock(®_requests_lock);
2641 list_splice_tail_init(®_requests_list, &tmp_reg_req_list);
2642 spin_unlock(®_requests_lock);
2644 /* Clear beacon hints */
2645 spin_lock_bh(®_pending_beacons_lock);
2646 list_for_each_entry_safe(reg_beacon, btmp, ®_pending_beacons, list) {
2647 list_del(®_beacon->list);
2650 spin_unlock_bh(®_pending_beacons_lock);
2652 list_for_each_entry_safe(reg_beacon, btmp, ®_beacon_list, list) {
2653 list_del(®_beacon->list);
2657 /* First restore to the basic regulatory settings */
2658 world_alpha2[0] = cfg80211_world_regdom->alpha2[0];
2659 world_alpha2[1] = cfg80211_world_regdom->alpha2[1];
2661 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2662 if (rdev->wiphy.regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
2664 if (rdev->wiphy.regulatory_flags & REGULATORY_CUSTOM_REG)
2665 restore_custom_reg_settings(&rdev->wiphy);
2668 regulatory_hint_core(world_alpha2);
2671 * This restores the ieee80211_regdom module parameter
2672 * preference or the last user requested regulatory
2673 * settings, user regulatory settings takes precedence.
2675 if (is_an_alpha2(alpha2))
2676 regulatory_hint_user(alpha2, NL80211_USER_REG_HINT_USER);
2678 spin_lock(®_requests_lock);
2679 list_splice_tail_init(&tmp_reg_req_list, ®_requests_list);
2680 spin_unlock(®_requests_lock);
2682 REG_DBG_PRINT("Kicking the queue\n");
2684 schedule_work(®_work);
2687 void regulatory_hint_disconnect(void)
2689 REG_DBG_PRINT("All devices are disconnected, going to restore regulatory settings\n");
2690 restore_regulatory_settings(false);
2693 static bool freq_is_chan_12_13_14(u16 freq)
2695 if (freq == ieee80211_channel_to_frequency(12, IEEE80211_BAND_2GHZ) ||
2696 freq == ieee80211_channel_to_frequency(13, IEEE80211_BAND_2GHZ) ||
2697 freq == ieee80211_channel_to_frequency(14, IEEE80211_BAND_2GHZ))
2702 static bool pending_reg_beacon(struct ieee80211_channel *beacon_chan)
2704 struct reg_beacon *pending_beacon;
2706 list_for_each_entry(pending_beacon, ®_pending_beacons, list)
2707 if (beacon_chan->center_freq ==
2708 pending_beacon->chan.center_freq)
2713 int regulatory_hint_found_beacon(struct wiphy *wiphy,
2714 struct ieee80211_channel *beacon_chan,
2717 struct reg_beacon *reg_beacon;
2720 if (beacon_chan->beacon_found ||
2721 beacon_chan->flags & IEEE80211_CHAN_RADAR ||
2722 (beacon_chan->band == IEEE80211_BAND_2GHZ &&
2723 !freq_is_chan_12_13_14(beacon_chan->center_freq)))
2726 spin_lock_bh(®_pending_beacons_lock);
2727 processing = pending_reg_beacon(beacon_chan);
2728 spin_unlock_bh(®_pending_beacons_lock);
2733 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
2737 REG_DBG_PRINT("Found new beacon on frequency: %d MHz (Ch %d) on %s\n",
2738 beacon_chan->center_freq,
2739 ieee80211_frequency_to_channel(beacon_chan->center_freq),
2742 memcpy(®_beacon->chan, beacon_chan,
2743 sizeof(struct ieee80211_channel));
2746 * Since we can be called from BH or and non-BH context
2747 * we must use spin_lock_bh()
2749 spin_lock_bh(®_pending_beacons_lock);
2750 list_add_tail(®_beacon->list, ®_pending_beacons);
2751 spin_unlock_bh(®_pending_beacons_lock);
2753 schedule_work(®_work);
2758 static void print_rd_rules(const struct ieee80211_regdomain *rd)
2761 const struct ieee80211_reg_rule *reg_rule = NULL;
2762 const struct ieee80211_freq_range *freq_range = NULL;
2763 const struct ieee80211_power_rule *power_rule = NULL;
2764 char bw[32], cac_time[32];
2766 pr_info(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n");
2768 for (i = 0; i < rd->n_reg_rules; i++) {
2769 reg_rule = &rd->reg_rules[i];
2770 freq_range = ®_rule->freq_range;
2771 power_rule = ®_rule->power_rule;
2773 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
2774 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
2775 freq_range->max_bandwidth_khz,
2776 reg_get_max_bandwidth(rd, reg_rule));
2778 snprintf(bw, sizeof(bw), "%d KHz",
2779 freq_range->max_bandwidth_khz);
2781 if (reg_rule->flags & NL80211_RRF_DFS)
2782 scnprintf(cac_time, sizeof(cac_time), "%u s",
2783 reg_rule->dfs_cac_ms/1000);
2785 scnprintf(cac_time, sizeof(cac_time), "N/A");
2789 * There may not be documentation for max antenna gain
2790 * in certain regions
2792 if (power_rule->max_antenna_gain)
2793 pr_info(" (%d KHz - %d KHz @ %s), (%d mBi, %d mBm), (%s)\n",
2794 freq_range->start_freq_khz,
2795 freq_range->end_freq_khz,
2797 power_rule->max_antenna_gain,
2798 power_rule->max_eirp,
2801 pr_info(" (%d KHz - %d KHz @ %s), (N/A, %d mBm), (%s)\n",
2802 freq_range->start_freq_khz,
2803 freq_range->end_freq_khz,
2805 power_rule->max_eirp,
2810 bool reg_supported_dfs_region(enum nl80211_dfs_regions dfs_region)
2812 switch (dfs_region) {
2813 case NL80211_DFS_UNSET:
2814 case NL80211_DFS_FCC:
2815 case NL80211_DFS_ETSI:
2816 case NL80211_DFS_JP:
2819 REG_DBG_PRINT("Ignoring uknown DFS master region: %d\n",
2825 static void print_regdomain(const struct ieee80211_regdomain *rd)
2827 struct regulatory_request *lr = get_last_request();
2829 if (is_intersected_alpha2(rd->alpha2)) {
2830 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
2831 struct cfg80211_registered_device *rdev;
2832 rdev = cfg80211_rdev_by_wiphy_idx(lr->wiphy_idx);
2834 pr_info("Current regulatory domain updated by AP to: %c%c\n",
2835 rdev->country_ie_alpha2[0],
2836 rdev->country_ie_alpha2[1]);
2838 pr_info("Current regulatory domain intersected:\n");
2840 pr_info("Current regulatory domain intersected:\n");
2841 } else if (is_world_regdom(rd->alpha2)) {
2842 pr_info("World regulatory domain updated:\n");
2844 if (is_unknown_alpha2(rd->alpha2))
2845 pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n");
2847 if (reg_request_cell_base(lr))
2848 pr_info("Regulatory domain changed to country: %c%c by Cell Station\n",
2849 rd->alpha2[0], rd->alpha2[1]);
2851 pr_info("Regulatory domain changed to country: %c%c\n",
2852 rd->alpha2[0], rd->alpha2[1]);
2856 pr_info(" DFS Master region: %s", reg_dfs_region_str(rd->dfs_region));
2860 static void print_regdomain_info(const struct ieee80211_regdomain *rd)
2862 pr_info("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
2866 static int reg_set_rd_core(const struct ieee80211_regdomain *rd)
2868 if (!is_world_regdom(rd->alpha2))
2870 update_world_regdomain(rd);
2874 static int reg_set_rd_user(const struct ieee80211_regdomain *rd,
2875 struct regulatory_request *user_request)
2877 const struct ieee80211_regdomain *intersected_rd = NULL;
2879 if (!regdom_changes(rd->alpha2))
2882 if (!is_valid_rd(rd)) {
2883 pr_err("Invalid regulatory domain detected:\n");
2884 print_regdomain_info(rd);
2888 if (!user_request->intersect) {
2889 reset_regdomains(false, rd);
2893 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2894 if (!intersected_rd)
2899 reset_regdomains(false, intersected_rd);
2904 static int reg_set_rd_driver(const struct ieee80211_regdomain *rd,
2905 struct regulatory_request *driver_request)
2907 const struct ieee80211_regdomain *regd;
2908 const struct ieee80211_regdomain *intersected_rd = NULL;
2909 const struct ieee80211_regdomain *tmp;
2910 struct wiphy *request_wiphy;
2912 if (is_world_regdom(rd->alpha2))
2915 if (!regdom_changes(rd->alpha2))
2918 if (!is_valid_rd(rd)) {
2919 pr_err("Invalid regulatory domain detected:\n");
2920 print_regdomain_info(rd);
2924 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx);
2928 if (!driver_request->intersect) {
2929 if (request_wiphy->regd)
2932 regd = reg_copy_regd(rd);
2934 return PTR_ERR(regd);
2936 rcu_assign_pointer(request_wiphy->regd, regd);
2937 reset_regdomains(false, rd);
2941 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2942 if (!intersected_rd)
2946 * We can trash what CRDA provided now.
2947 * However if a driver requested this specific regulatory
2948 * domain we keep it for its private use
2950 tmp = get_wiphy_regdom(request_wiphy);
2951 rcu_assign_pointer(request_wiphy->regd, rd);
2952 rcu_free_regdom(tmp);
2956 reset_regdomains(false, intersected_rd);
2961 static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
2962 struct regulatory_request *country_ie_request)
2964 struct wiphy *request_wiphy;
2966 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
2967 !is_unknown_alpha2(rd->alpha2))
2971 * Lets only bother proceeding on the same alpha2 if the current
2972 * rd is non static (it means CRDA was present and was used last)
2973 * and the pending request came in from a country IE
2976 if (!is_valid_rd(rd)) {
2977 pr_err("Invalid regulatory domain detected:\n");
2978 print_regdomain_info(rd);
2982 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx);
2986 if (country_ie_request->intersect)
2989 reset_regdomains(false, rd);
2994 * Use this call to set the current regulatory domain. Conflicts with
2995 * multiple drivers can be ironed out later. Caller must've already
2996 * kmalloc'd the rd structure.
2998 int set_regdom(const struct ieee80211_regdomain *rd,
2999 enum ieee80211_regd_source regd_src)
3001 struct regulatory_request *lr;
3002 bool user_reset = false;
3005 if (!reg_is_valid_request(rd->alpha2)) {
3010 if (regd_src == REGD_SOURCE_CRDA)
3011 reset_crda_timeouts();
3013 lr = get_last_request();
3015 /* Note that this doesn't update the wiphys, this is done below */
3016 switch (lr->initiator) {
3017 case NL80211_REGDOM_SET_BY_CORE:
3018 r = reg_set_rd_core(rd);
3020 case NL80211_REGDOM_SET_BY_USER:
3021 r = reg_set_rd_user(rd, lr);
3024 case NL80211_REGDOM_SET_BY_DRIVER:
3025 r = reg_set_rd_driver(rd, lr);
3027 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
3028 r = reg_set_rd_country_ie(rd, lr);
3031 WARN(1, "invalid initiator %d\n", lr->initiator);
3039 reg_set_request_processed();
3042 /* Back to world regulatory in case of errors */
3043 restore_regulatory_settings(user_reset);
3050 /* This would make this whole thing pointless */
3051 if (WARN_ON(!lr->intersect && rd != get_cfg80211_regdom()))
3054 /* update all wiphys now with the new established regulatory domain */
3055 update_all_wiphy_regulatory(lr->initiator);
3057 print_regdomain(get_cfg80211_regdom());
3059 nl80211_send_reg_change_event(lr);
3061 reg_set_request_processed();
3066 static int __regulatory_set_wiphy_regd(struct wiphy *wiphy,
3067 struct ieee80211_regdomain *rd)
3069 const struct ieee80211_regdomain *regd;
3070 const struct ieee80211_regdomain *prev_regd;
3071 struct cfg80211_registered_device *rdev;
3073 if (WARN_ON(!wiphy || !rd))
3076 if (WARN(!(wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED),
3077 "wiphy should have REGULATORY_WIPHY_SELF_MANAGED\n"))
3080 if (WARN(!is_valid_rd(rd), "Invalid regulatory domain detected\n")) {
3081 print_regdomain_info(rd);
3085 regd = reg_copy_regd(rd);
3087 return PTR_ERR(regd);
3089 rdev = wiphy_to_rdev(wiphy);
3091 spin_lock(®_requests_lock);
3092 prev_regd = rdev->requested_regd;
3093 rdev->requested_regd = regd;
3094 spin_unlock(®_requests_lock);
3100 int regulatory_set_wiphy_regd(struct wiphy *wiphy,
3101 struct ieee80211_regdomain *rd)
3103 int ret = __regulatory_set_wiphy_regd(wiphy, rd);
3108 schedule_work(®_work);
3111 EXPORT_SYMBOL(regulatory_set_wiphy_regd);
3113 int regulatory_set_wiphy_regd_sync_rtnl(struct wiphy *wiphy,
3114 struct ieee80211_regdomain *rd)
3120 ret = __regulatory_set_wiphy_regd(wiphy, rd);
3124 /* process the request immediately */
3125 reg_process_self_managed_hints();
3128 EXPORT_SYMBOL(regulatory_set_wiphy_regd_sync_rtnl);
3130 void wiphy_regulatory_register(struct wiphy *wiphy)
3132 struct regulatory_request *lr;
3134 /* self-managed devices ignore external hints */
3135 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
3136 wiphy->regulatory_flags |= REGULATORY_DISABLE_BEACON_HINTS |
3137 REGULATORY_COUNTRY_IE_IGNORE;
3139 if (!reg_dev_ignore_cell_hint(wiphy))
3140 reg_num_devs_support_basehint++;
3142 lr = get_last_request();
3143 wiphy_update_regulatory(wiphy, lr->initiator);
3146 void wiphy_regulatory_deregister(struct wiphy *wiphy)
3148 struct wiphy *request_wiphy = NULL;
3149 struct regulatory_request *lr;
3151 lr = get_last_request();
3153 if (!reg_dev_ignore_cell_hint(wiphy))
3154 reg_num_devs_support_basehint--;
3156 rcu_free_regdom(get_wiphy_regdom(wiphy));
3157 RCU_INIT_POINTER(wiphy->regd, NULL);
3160 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
3162 if (!request_wiphy || request_wiphy != wiphy)
3165 lr->wiphy_idx = WIPHY_IDX_INVALID;
3166 lr->country_ie_env = ENVIRON_ANY;
3170 * See http://www.fcc.gov/document/5-ghz-unlicensed-spectrum-unii, for
3171 * UNII band definitions
3173 int cfg80211_get_unii(int freq)
3176 if (freq >= 5150 && freq <= 5250)
3180 if (freq > 5250 && freq <= 5350)
3184 if (freq > 5350 && freq <= 5470)
3188 if (freq > 5470 && freq <= 5725)
3192 if (freq > 5725 && freq <= 5825)
3198 bool regulatory_indoor_allowed(void)
3200 return reg_is_indoor;
3203 int __init regulatory_init(void)
3207 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
3208 if (IS_ERR(reg_pdev))
3209 return PTR_ERR(reg_pdev);
3211 spin_lock_init(®_requests_lock);
3212 spin_lock_init(®_pending_beacons_lock);
3213 spin_lock_init(®_indoor_lock);
3215 reg_regdb_size_check();
3217 rcu_assign_pointer(cfg80211_regdomain, cfg80211_world_regdom);
3219 user_alpha2[0] = '9';
3220 user_alpha2[1] = '7';
3222 /* We always try to get an update for the static regdomain */
3223 err = regulatory_hint_core(cfg80211_world_regdom->alpha2);
3225 if (err == -ENOMEM) {
3226 platform_device_unregister(reg_pdev);
3230 * N.B. kobject_uevent_env() can fail mainly for when we're out
3231 * memory which is handled and propagated appropriately above
3232 * but it can also fail during a netlink_broadcast() or during
3233 * early boot for call_usermodehelper(). For now treat these
3234 * errors as non-fatal.
3236 pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
3240 * Finally, if the user set the module parameter treat it
3243 if (!is_world_regdom(ieee80211_regdom))
3244 regulatory_hint_user(ieee80211_regdom,
3245 NL80211_USER_REG_HINT_USER);
3250 void regulatory_exit(void)
3252 struct regulatory_request *reg_request, *tmp;
3253 struct reg_beacon *reg_beacon, *btmp;
3255 cancel_work_sync(®_work);
3256 cancel_crda_timeout_sync();
3257 cancel_delayed_work_sync(®_check_chans);
3259 /* Lock to suppress warnings */
3261 reset_regdomains(true, NULL);
3264 dev_set_uevent_suppress(®_pdev->dev, true);
3266 platform_device_unregister(reg_pdev);
3268 list_for_each_entry_safe(reg_beacon, btmp, ®_pending_beacons, list) {
3269 list_del(®_beacon->list);
3273 list_for_each_entry_safe(reg_beacon, btmp, ®_beacon_list, list) {
3274 list_del(®_beacon->list);
3278 list_for_each_entry_safe(reg_request, tmp, ®_requests_list, list) {
3279 list_del(®_request->list);