]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/wireless/reg.c
cfg80211: reg: remove useless non-NULL check
[mirror_ubuntu-bionic-kernel.git] / net / wireless / reg.c
CommitLineData
8318d78a
JB
1/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
3b77d5ec 5 * Copyright 2008-2011 Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
2740f0cf 6 * Copyright 2013-2014 Intel Mobile Communications GmbH
8318d78a 7 *
3b77d5ec
LR
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.
11 *
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.
8318d78a
JB
19 */
20
3b77d5ec 21
b2e1b302
LR
22/**
23 * DOC: Wireless regulatory infrastructure
8318d78a
JB
24 *
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.
29 *
b2e1b302
LR
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.
33 *
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.
39 *
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.
43 *
8318d78a 44 */
e9c0268f
JP
45
46#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
47
8318d78a 48#include <linux/kernel.h>
bc3b2d7f 49#include <linux/export.h>
5a0e3ad6 50#include <linux/slab.h>
b2e1b302 51#include <linux/list.h>
c61029c7 52#include <linux/ctype.h>
b2e1b302
LR
53#include <linux/nl80211.h>
54#include <linux/platform_device.h>
d9b93842 55#include <linux/moduleparam.h>
b2e1b302 56#include <net/cfg80211.h>
8318d78a 57#include "core.h"
b2e1b302 58#include "reg.h"
ad932f04 59#include "rdev-ops.h"
3b377ea9 60#include "regdb.h"
73d54c9e 61#include "nl80211.h"
8318d78a 62
4113f751 63#ifdef CONFIG_CFG80211_REG_DEBUG
12c5ffb5
JP
64#define REG_DBG_PRINT(format, args...) \
65 printk(KERN_DEBUG pr_fmt(format), ##args)
4113f751 66#else
8271195e 67#define REG_DBG_PRINT(args...)
4113f751
LR
68#endif
69
ad932f04
AN
70/*
71 * Grace period we give before making sure all current interfaces reside on
72 * channels allowed by the current regulatory domain.
73 */
74#define REG_ENFORCE_GRACE_MS 60000
75
52616f2b
IP
76/**
77 * enum reg_request_treatment - regulatory request treatment
78 *
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.
52616f2b 85 */
2f92212b
JB
86enum reg_request_treatment {
87 REG_REQ_OK,
88 REG_REQ_IGNORE,
89 REG_REQ_INTERSECT,
90 REG_REQ_ALREADY_SET,
91};
92
a042994d
LR
93static struct regulatory_request core_request_world = {
94 .initiator = NL80211_REGDOM_SET_BY_CORE,
95 .alpha2[0] = '0',
96 .alpha2[1] = '0',
97 .intersect = false,
98 .processed = true,
99 .country_ie_env = ENVIRON_ANY,
100};
101
38fd2143
JB
102/*
103 * Receipt of information from last regulatory request,
104 * protected by RTNL (and can be accessed with RCU protection)
105 */
c492db37 106static struct regulatory_request __rcu *last_request =
cec3f0ed 107 (void __force __rcu *)&core_request_world;
734366de 108
b2e1b302
LR
109/* To trigger userspace events */
110static struct platform_device *reg_pdev;
8318d78a 111
fb1fc7ad
LR
112/*
113 * Central wireless core regulatory domains, we only need two,
734366de 114 * the current one and a world regulatory domain in case we have no
e8da2bb4 115 * information to give us an alpha2.
38fd2143 116 * (protected by RTNL, can be read under RCU)
fb1fc7ad 117 */
458f4f9e 118const struct ieee80211_regdomain __rcu *cfg80211_regdomain;
734366de 119
57b5ce07
LR
120/*
121 * Number of devices that registered to the core
122 * that support cellular base station regulatory hints
38fd2143 123 * (protected by RTNL)
57b5ce07
LR
124 */
125static int reg_num_devs_support_basehint;
126
52616f2b
IP
127/*
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.
52616f2b
IP
131 */
132static bool reg_is_indoor;
05050753
I
133static spinlock_t reg_indoor_lock;
134
135/* Used to track the userspace process controlling the indoor setting */
136static u32 reg_is_indoor_portid;
52616f2b 137
c37722bd
I
138/* Max number of consecutive attempts to communicate with CRDA */
139#define REG_MAX_CRDA_TIMEOUTS 10
140
141static u32 reg_crda_timeouts;
142
458f4f9e
JB
143static const struct ieee80211_regdomain *get_cfg80211_regdom(void)
144{
38fd2143 145 return rtnl_dereference(cfg80211_regdomain);
458f4f9e
JB
146}
147
ad30ca2c 148const struct ieee80211_regdomain *get_wiphy_regdom(struct wiphy *wiphy)
458f4f9e 149{
38fd2143 150 return rtnl_dereference(wiphy->regd);
458f4f9e
JB
151}
152
3ef121b5
LR
153static const char *reg_dfs_region_str(enum nl80211_dfs_regions dfs_region)
154{
155 switch (dfs_region) {
156 case NL80211_DFS_UNSET:
157 return "unset";
158 case NL80211_DFS_FCC:
159 return "FCC";
160 case NL80211_DFS_ETSI:
161 return "ETSI";
162 case NL80211_DFS_JP:
163 return "JP";
164 }
165 return "Unknown";
166}
167
6c474799
LR
168enum nl80211_dfs_regions reg_get_dfs_region(struct wiphy *wiphy)
169{
170 const struct ieee80211_regdomain *regd = NULL;
171 const struct ieee80211_regdomain *wiphy_regd = NULL;
172
173 regd = get_cfg80211_regdom();
174 if (!wiphy)
175 goto out;
176
177 wiphy_regd = get_wiphy_regdom(wiphy);
178 if (!wiphy_regd)
179 goto out;
180
181 if (wiphy_regd->dfs_region == regd->dfs_region)
182 goto out;
183
184 REG_DBG_PRINT("%s: device specific dfs_region "
185 "(%s) disagrees with cfg80211's "
186 "central dfs_region (%s)\n",
187 dev_name(&wiphy->dev),
188 reg_dfs_region_str(wiphy_regd->dfs_region),
189 reg_dfs_region_str(regd->dfs_region));
190
191out:
192 return regd->dfs_region;
193}
194
458f4f9e
JB
195static void rcu_free_regdom(const struct ieee80211_regdomain *r)
196{
197 if (!r)
198 return;
199 kfree_rcu((struct ieee80211_regdomain *)r, rcu_head);
200}
201
c492db37
JB
202static struct regulatory_request *get_last_request(void)
203{
38fd2143 204 return rcu_dereference_rtnl(last_request);
c492db37
JB
205}
206
e38f8a7a 207/* Used to queue up regulatory hints */
fe33eb39
LR
208static LIST_HEAD(reg_requests_list);
209static spinlock_t reg_requests_lock;
210
e38f8a7a
LR
211/* Used to queue up beacon hints for review */
212static LIST_HEAD(reg_pending_beacons);
213static spinlock_t reg_pending_beacons_lock;
214
215/* Used to keep track of processed beacon hints */
216static LIST_HEAD(reg_beacon_list);
217
218struct reg_beacon {
219 struct list_head list;
220 struct ieee80211_channel chan;
221};
222
ad932f04
AN
223static void reg_check_chans_work(struct work_struct *work);
224static DECLARE_DELAYED_WORK(reg_check_chans, reg_check_chans_work);
225
f333a7a2
LR
226static void reg_todo(struct work_struct *work);
227static DECLARE_WORK(reg_work, reg_todo);
228
a90c7a31
LR
229static void reg_timeout_work(struct work_struct *work);
230static DECLARE_DELAYED_WORK(reg_timeout, reg_timeout_work);
231
734366de
JB
232/* We keep a static world regulatory domain in case of the absence of CRDA */
233static const struct ieee80211_regdomain world_regdom = {
28981e5e 234 .n_reg_rules = 8,
734366de
JB
235 .alpha2 = "00",
236 .reg_rules = {
68798a62
LR
237 /* IEEE 802.11b/g, channels 1..11 */
238 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
43c771a1
JB
239 /* IEEE 802.11b/g, channels 12..13. */
240 REG_RULE(2467-10, 2472+10, 40, 6, 20,
8fe02e16 241 NL80211_RRF_NO_IR),
611b6a82
LR
242 /* IEEE 802.11 channel 14 - Only JP enables
243 * this and for 802.11b only */
244 REG_RULE(2484-10, 2484+10, 20, 6, 20,
8fe02e16 245 NL80211_RRF_NO_IR |
611b6a82
LR
246 NL80211_RRF_NO_OFDM),
247 /* IEEE 802.11a, channel 36..48 */
131a19bc 248 REG_RULE(5180-10, 5240+10, 160, 6, 20,
8fe02e16 249 NL80211_RRF_NO_IR),
3fc71f77 250
131a19bc
JB
251 /* IEEE 802.11a, channel 52..64 - DFS required */
252 REG_RULE(5260-10, 5320+10, 160, 6, 20,
8fe02e16 253 NL80211_RRF_NO_IR |
131a19bc
JB
254 NL80211_RRF_DFS),
255
256 /* IEEE 802.11a, channel 100..144 - DFS required */
257 REG_RULE(5500-10, 5720+10, 160, 6, 20,
8fe02e16 258 NL80211_RRF_NO_IR |
131a19bc 259 NL80211_RRF_DFS),
3fc71f77
LR
260
261 /* IEEE 802.11a, channel 149..165 */
8ab9d85c 262 REG_RULE(5745-10, 5825+10, 80, 6, 20,
8fe02e16 263 NL80211_RRF_NO_IR),
90cdc6df 264
8047d261 265 /* IEEE 802.11ad (60GHz), channels 1..3 */
90cdc6df 266 REG_RULE(56160+2160*1-1080, 56160+2160*3+1080, 2160, 0, 0, 0),
734366de
JB
267 }
268};
269
38fd2143 270/* protected by RTNL */
a3d2eaf0
JB
271static const struct ieee80211_regdomain *cfg80211_world_regdom =
272 &world_regdom;
734366de 273
6ee7d330 274static char *ieee80211_regdom = "00";
09d989d1 275static char user_alpha2[2];
6ee7d330 276
734366de
JB
277module_param(ieee80211_regdom, charp, 0444);
278MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
279
c888393b 280static void reg_free_request(struct regulatory_request *request)
5ad6ef5e 281{
c888393b
AN
282 if (request != get_last_request())
283 kfree(request);
284}
285
286static void reg_free_last_request(void)
287{
288 struct regulatory_request *lr = get_last_request();
289
5ad6ef5e
LR
290 if (lr != &core_request_world && lr)
291 kfree_rcu(lr, rcu_head);
292}
293
05f1a3ea
LR
294static void reg_update_last_request(struct regulatory_request *request)
295{
255e25b0
LR
296 struct regulatory_request *lr;
297
298 lr = get_last_request();
299 if (lr == request)
300 return;
301
c888393b 302 reg_free_last_request();
05f1a3ea
LR
303 rcu_assign_pointer(last_request, request);
304}
305
379b82f4
JB
306static void reset_regdomains(bool full_reset,
307 const struct ieee80211_regdomain *new_regdom)
734366de 308{
458f4f9e
JB
309 const struct ieee80211_regdomain *r;
310
38fd2143 311 ASSERT_RTNL();
e8da2bb4 312
458f4f9e
JB
313 r = get_cfg80211_regdom();
314
942b25cf 315 /* avoid freeing static information or freeing something twice */
458f4f9e
JB
316 if (r == cfg80211_world_regdom)
317 r = NULL;
942b25cf
JB
318 if (cfg80211_world_regdom == &world_regdom)
319 cfg80211_world_regdom = NULL;
458f4f9e
JB
320 if (r == &world_regdom)
321 r = NULL;
942b25cf 322
458f4f9e
JB
323 rcu_free_regdom(r);
324 rcu_free_regdom(cfg80211_world_regdom);
734366de 325
a3d2eaf0 326 cfg80211_world_regdom = &world_regdom;
458f4f9e 327 rcu_assign_pointer(cfg80211_regdomain, new_regdom);
a042994d
LR
328
329 if (!full_reset)
330 return;
331
05f1a3ea 332 reg_update_last_request(&core_request_world);
734366de
JB
333}
334
fb1fc7ad
LR
335/*
336 * Dynamic world regulatory domain requested by the wireless
337 * core upon initialization
338 */
a3d2eaf0 339static void update_world_regdomain(const struct ieee80211_regdomain *rd)
734366de 340{
c492db37 341 struct regulatory_request *lr;
734366de 342
c492db37
JB
343 lr = get_last_request();
344
345 WARN_ON(!lr);
734366de 346
379b82f4 347 reset_regdomains(false, rd);
734366de
JB
348
349 cfg80211_world_regdom = rd;
734366de 350}
734366de 351
a3d2eaf0 352bool is_world_regdom(const char *alpha2)
b2e1b302
LR
353{
354 if (!alpha2)
355 return false;
1a919318 356 return alpha2[0] == '0' && alpha2[1] == '0';
b2e1b302 357}
8318d78a 358
a3d2eaf0 359static bool is_alpha2_set(const char *alpha2)
b2e1b302
LR
360{
361 if (!alpha2)
362 return false;
1a919318 363 return alpha2[0] && alpha2[1];
b2e1b302 364}
8318d78a 365
a3d2eaf0 366static bool is_unknown_alpha2(const char *alpha2)
b2e1b302
LR
367{
368 if (!alpha2)
369 return false;
fb1fc7ad
LR
370 /*
371 * Special case where regulatory domain was built by driver
372 * but a specific alpha2 cannot be determined
373 */
1a919318 374 return alpha2[0] == '9' && alpha2[1] == '9';
b2e1b302 375}
8318d78a 376
3f2355cb
LR
377static bool is_intersected_alpha2(const char *alpha2)
378{
379 if (!alpha2)
380 return false;
fb1fc7ad
LR
381 /*
382 * Special case where regulatory domain is the
3f2355cb 383 * result of an intersection between two regulatory domain
fb1fc7ad
LR
384 * structures
385 */
1a919318 386 return alpha2[0] == '9' && alpha2[1] == '8';
3f2355cb
LR
387}
388
a3d2eaf0 389static bool is_an_alpha2(const char *alpha2)
b2e1b302
LR
390{
391 if (!alpha2)
392 return false;
1a919318 393 return isalpha(alpha2[0]) && isalpha(alpha2[1]);
b2e1b302 394}
8318d78a 395
a3d2eaf0 396static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
b2e1b302
LR
397{
398 if (!alpha2_x || !alpha2_y)
399 return false;
1a919318 400 return alpha2_x[0] == alpha2_y[0] && alpha2_x[1] == alpha2_y[1];
b2e1b302
LR
401}
402
69b1572b 403static bool regdom_changes(const char *alpha2)
b2e1b302 404{
458f4f9e 405 const struct ieee80211_regdomain *r = get_cfg80211_regdom();
761cf7ec 406
458f4f9e 407 if (!r)
b2e1b302 408 return true;
458f4f9e 409 return !alpha2_equal(r->alpha2, alpha2);
b2e1b302
LR
410}
411
09d989d1
LR
412/*
413 * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
414 * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
415 * has ever been issued.
416 */
417static bool is_user_regdom_saved(void)
418{
419 if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
420 return false;
421
422 /* This would indicate a mistake on the design */
1a919318 423 if (WARN(!is_world_regdom(user_alpha2) && !is_an_alpha2(user_alpha2),
09d989d1 424 "Unexpected user alpha2: %c%c\n",
1a919318 425 user_alpha2[0], user_alpha2[1]))
09d989d1
LR
426 return false;
427
428 return true;
429}
430
e9763c3c
JB
431static const struct ieee80211_regdomain *
432reg_copy_regd(const struct ieee80211_regdomain *src_regd)
3b377ea9
JL
433{
434 struct ieee80211_regdomain *regd;
e9763c3c 435 int size_of_regd;
3b377ea9
JL
436 unsigned int i;
437
82f20856
JB
438 size_of_regd =
439 sizeof(struct ieee80211_regdomain) +
440 src_regd->n_reg_rules * sizeof(struct ieee80211_reg_rule);
3b377ea9
JL
441
442 regd = kzalloc(size_of_regd, GFP_KERNEL);
443 if (!regd)
e9763c3c 444 return ERR_PTR(-ENOMEM);
3b377ea9
JL
445
446 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
447
448 for (i = 0; i < src_regd->n_reg_rules; i++)
449 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
e9763c3c 450 sizeof(struct ieee80211_reg_rule));
3b377ea9 451
e9763c3c 452 return regd;
3b377ea9
JL
453}
454
455#ifdef CONFIG_CFG80211_INTERNAL_REGDB
456struct reg_regdb_search_request {
457 char alpha2[2];
458 struct list_head list;
459};
460
461static LIST_HEAD(reg_regdb_search_list);
368d06f5 462static DEFINE_MUTEX(reg_regdb_search_mutex);
3b377ea9
JL
463
464static void reg_regdb_search(struct work_struct *work)
465{
466 struct reg_regdb_search_request *request;
e9763c3c
JB
467 const struct ieee80211_regdomain *curdom, *regdom = NULL;
468 int i;
a85d0d7f 469
5fe231e8 470 rtnl_lock();
3b377ea9 471
368d06f5 472 mutex_lock(&reg_regdb_search_mutex);
3b377ea9
JL
473 while (!list_empty(&reg_regdb_search_list)) {
474 request = list_first_entry(&reg_regdb_search_list,
475 struct reg_regdb_search_request,
476 list);
477 list_del(&request->list);
478
1a919318 479 for (i = 0; i < reg_regdb_size; i++) {
3b377ea9
JL
480 curdom = reg_regdb[i];
481
1a919318 482 if (alpha2_equal(request->alpha2, curdom->alpha2)) {
e9763c3c 483 regdom = reg_copy_regd(curdom);
3b377ea9
JL
484 break;
485 }
486 }
487
488 kfree(request);
489 }
368d06f5 490 mutex_unlock(&reg_regdb_search_mutex);
a85d0d7f 491
e9763c3c 492 if (!IS_ERR_OR_NULL(regdom))
c37722bd 493 set_regdom(regdom, REGD_SOURCE_INTERNAL_DB);
a85d0d7f 494
5fe231e8 495 rtnl_unlock();
3b377ea9
JL
496}
497
498static DECLARE_WORK(reg_regdb_work, reg_regdb_search);
499
500static void reg_regdb_query(const char *alpha2)
501{
502 struct reg_regdb_search_request *request;
503
3b377ea9
JL
504 request = kzalloc(sizeof(struct reg_regdb_search_request), GFP_KERNEL);
505 if (!request)
506 return;
507
508 memcpy(request->alpha2, alpha2, 2);
509
368d06f5 510 mutex_lock(&reg_regdb_search_mutex);
3b377ea9 511 list_add_tail(&request->list, &reg_regdb_search_list);
368d06f5 512 mutex_unlock(&reg_regdb_search_mutex);
3b377ea9
JL
513
514 schedule_work(&reg_regdb_work);
515}
80007efe
LR
516
517/* Feel free to add any other sanity checks here */
518static void reg_regdb_size_check(void)
519{
520 /* We should ideally BUILD_BUG_ON() but then random builds would fail */
521 WARN_ONCE(!reg_regdb_size, "db.txt is empty, you should update it...");
522}
3b377ea9 523#else
80007efe 524static inline void reg_regdb_size_check(void) {}
3b377ea9
JL
525static inline void reg_regdb_query(const char *alpha2) {}
526#endif /* CONFIG_CFG80211_INTERNAL_REGDB */
527
fb1fc7ad
LR
528/*
529 * This lets us keep regulatory code which is updated on a regulatory
1226d258 530 * basis in userspace.
fb1fc7ad 531 */
b2e1b302
LR
532static int call_crda(const char *alpha2)
533{
1226d258
JB
534 char country[12];
535 char *env[] = { country, NULL };
536
537 snprintf(country, sizeof(country), "COUNTRY=%c%c",
538 alpha2[0], alpha2[1]);
539
c37722bd
I
540 /* query internal regulatory database (if it exists) */
541 reg_regdb_query(alpha2);
542
543 if (reg_crda_timeouts > REG_MAX_CRDA_TIMEOUTS) {
042ab5fc 544 pr_debug("Exceeded CRDA call max attempts. Not calling CRDA\n");
c37722bd
I
545 return -EINVAL;
546 }
547
b2e1b302 548 if (!is_world_regdom((char *) alpha2))
042ab5fc 549 pr_debug("Calling CRDA for country: %c%c\n",
b2e1b302
LR
550 alpha2[0], alpha2[1]);
551 else
042ab5fc 552 pr_debug("Calling CRDA to update world regulatory domain\n");
b2e1b302 553
1226d258 554 return kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, env);
b2e1b302
LR
555}
556
fe6631ff
LR
557static enum reg_request_treatment
558reg_call_crda(struct regulatory_request *request)
559{
560 if (call_crda(request->alpha2))
561 return REG_REQ_IGNORE;
eeca9fce
I
562
563 queue_delayed_work(system_power_efficient_wq,
564 &reg_timeout, msecs_to_jiffies(3142));
fe6631ff
LR
565 return REG_REQ_OK;
566}
567
e438768f 568bool reg_is_valid_request(const char *alpha2)
b2e1b302 569{
c492db37 570 struct regulatory_request *lr = get_last_request();
61405e97 571
c492db37 572 if (!lr || lr->processed)
f6037d09
JB
573 return false;
574
c492db37 575 return alpha2_equal(lr->alpha2, alpha2);
b2e1b302 576}
8318d78a 577
e3961af1
JD
578static const struct ieee80211_regdomain *reg_get_regdomain(struct wiphy *wiphy)
579{
580 struct regulatory_request *lr = get_last_request();
581
582 /*
583 * Follow the driver's regulatory domain, if present, unless a country
584 * IE has been processed or a user wants to help complaince further
585 */
586 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
587 lr->initiator != NL80211_REGDOM_SET_BY_USER &&
588 wiphy->regd)
589 return get_wiphy_regdom(wiphy);
590
591 return get_cfg80211_regdom();
592}
593
a6d4a534
AN
594static unsigned int
595reg_get_max_bandwidth_from_range(const struct ieee80211_regdomain *rd,
596 const struct ieee80211_reg_rule *rule)
97524820
JD
597{
598 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
599 const struct ieee80211_freq_range *freq_range_tmp;
600 const struct ieee80211_reg_rule *tmp;
601 u32 start_freq, end_freq, idx, no;
602
603 for (idx = 0; idx < rd->n_reg_rules; idx++)
604 if (rule == &rd->reg_rules[idx])
605 break;
606
607 if (idx == rd->n_reg_rules)
608 return 0;
609
610 /* get start_freq */
611 no = idx;
612
613 while (no) {
614 tmp = &rd->reg_rules[--no];
615 freq_range_tmp = &tmp->freq_range;
616
617 if (freq_range_tmp->end_freq_khz < freq_range->start_freq_khz)
618 break;
619
97524820
JD
620 freq_range = freq_range_tmp;
621 }
622
623 start_freq = freq_range->start_freq_khz;
624
625 /* get end_freq */
626 freq_range = &rule->freq_range;
627 no = idx;
628
629 while (no < rd->n_reg_rules - 1) {
630 tmp = &rd->reg_rules[++no];
631 freq_range_tmp = &tmp->freq_range;
632
633 if (freq_range_tmp->start_freq_khz > freq_range->end_freq_khz)
634 break;
635
97524820
JD
636 freq_range = freq_range_tmp;
637 }
638
639 end_freq = freq_range->end_freq_khz;
640
641 return end_freq - start_freq;
642}
643
a6d4a534
AN
644unsigned int reg_get_max_bandwidth(const struct ieee80211_regdomain *rd,
645 const struct ieee80211_reg_rule *rule)
646{
647 unsigned int bw = reg_get_max_bandwidth_from_range(rd, rule);
648
649 if (rule->flags & NL80211_RRF_NO_160MHZ)
650 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(80));
651 if (rule->flags & NL80211_RRF_NO_80MHZ)
652 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(40));
653
654 /*
655 * HT40+/HT40- limits are handled per-channel. Only limit BW if both
656 * are not allowed.
657 */
658 if (rule->flags & NL80211_RRF_NO_HT40MINUS &&
659 rule->flags & NL80211_RRF_NO_HT40PLUS)
660 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(20));
661
662 return bw;
663}
664
b2e1b302 665/* Sanity check on a regulatory rule */
a3d2eaf0 666static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
8318d78a 667{
a3d2eaf0 668 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
b2e1b302
LR
669 u32 freq_diff;
670
91e99004 671 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
b2e1b302
LR
672 return false;
673
674 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
675 return false;
676
677 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
678
bd05f28e 679 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
1a919318 680 freq_range->max_bandwidth_khz > freq_diff)
b2e1b302
LR
681 return false;
682
683 return true;
684}
685
a3d2eaf0 686static bool is_valid_rd(const struct ieee80211_regdomain *rd)
b2e1b302 687{
a3d2eaf0 688 const struct ieee80211_reg_rule *reg_rule = NULL;
b2e1b302 689 unsigned int i;
8318d78a 690
b2e1b302
LR
691 if (!rd->n_reg_rules)
692 return false;
8318d78a 693
88dc1c3f
LR
694 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
695 return false;
696
b2e1b302
LR
697 for (i = 0; i < rd->n_reg_rules; i++) {
698 reg_rule = &rd->reg_rules[i];
699 if (!is_valid_reg_rule(reg_rule))
700 return false;
701 }
702
703 return true;
8318d78a
JB
704}
705
038659e7 706static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range,
fe7ef5e9 707 u32 center_freq_khz, u32 bw_khz)
b2e1b302 708{
038659e7
LR
709 u32 start_freq_khz, end_freq_khz;
710
711 start_freq_khz = center_freq_khz - (bw_khz/2);
712 end_freq_khz = center_freq_khz + (bw_khz/2);
713
714 if (start_freq_khz >= freq_range->start_freq_khz &&
715 end_freq_khz <= freq_range->end_freq_khz)
716 return true;
717
718 return false;
b2e1b302 719}
8318d78a 720
0c7dc45d
LR
721/**
722 * freq_in_rule_band - tells us if a frequency is in a frequency band
723 * @freq_range: frequency rule we want to query
724 * @freq_khz: frequency we are inquiring about
725 *
726 * This lets us know if a specific frequency rule is or is not relevant to
727 * a specific frequency's band. Bands are device specific and artificial
64629b9d
VK
728 * definitions (the "2.4 GHz band", the "5 GHz band" and the "60GHz band"),
729 * however it is safe for now to assume that a frequency rule should not be
730 * part of a frequency's band if the start freq or end freq are off by more
731 * than 2 GHz for the 2.4 and 5 GHz bands, and by more than 10 GHz for the
732 * 60 GHz band.
0c7dc45d
LR
733 * This resolution can be lowered and should be considered as we add
734 * regulatory rule support for other "bands".
735 **/
736static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
1a919318 737 u32 freq_khz)
0c7dc45d
LR
738{
739#define ONE_GHZ_IN_KHZ 1000000
64629b9d
VK
740 /*
741 * From 802.11ad: directional multi-gigabit (DMG):
742 * Pertaining to operation in a frequency band containing a channel
743 * with the Channel starting frequency above 45 GHz.
744 */
745 u32 limit = freq_khz > 45 * ONE_GHZ_IN_KHZ ?
746 10 * ONE_GHZ_IN_KHZ : 2 * ONE_GHZ_IN_KHZ;
747 if (abs(freq_khz - freq_range->start_freq_khz) <= limit)
0c7dc45d 748 return true;
64629b9d 749 if (abs(freq_khz - freq_range->end_freq_khz) <= limit)
0c7dc45d
LR
750 return true;
751 return false;
752#undef ONE_GHZ_IN_KHZ
753}
754
adbfb058
LR
755/*
756 * Later on we can perhaps use the more restrictive DFS
757 * region but we don't have information for that yet so
758 * for now simply disallow conflicts.
759 */
760static enum nl80211_dfs_regions
761reg_intersect_dfs_region(const enum nl80211_dfs_regions dfs_region1,
762 const enum nl80211_dfs_regions dfs_region2)
763{
764 if (dfs_region1 != dfs_region2)
765 return NL80211_DFS_UNSET;
766 return dfs_region1;
767}
768
fb1fc7ad
LR
769/*
770 * Helper for regdom_intersect(), this does the real
771 * mathematical intersection fun
772 */
97524820
JD
773static int reg_rules_intersect(const struct ieee80211_regdomain *rd1,
774 const struct ieee80211_regdomain *rd2,
775 const struct ieee80211_reg_rule *rule1,
1a919318
JB
776 const struct ieee80211_reg_rule *rule2,
777 struct ieee80211_reg_rule *intersected_rule)
9c96477d
LR
778{
779 const struct ieee80211_freq_range *freq_range1, *freq_range2;
780 struct ieee80211_freq_range *freq_range;
781 const struct ieee80211_power_rule *power_rule1, *power_rule2;
782 struct ieee80211_power_rule *power_rule;
97524820 783 u32 freq_diff, max_bandwidth1, max_bandwidth2;
9c96477d
LR
784
785 freq_range1 = &rule1->freq_range;
786 freq_range2 = &rule2->freq_range;
787 freq_range = &intersected_rule->freq_range;
788
789 power_rule1 = &rule1->power_rule;
790 power_rule2 = &rule2->power_rule;
791 power_rule = &intersected_rule->power_rule;
792
793 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
1a919318 794 freq_range2->start_freq_khz);
9c96477d 795 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
1a919318 796 freq_range2->end_freq_khz);
97524820
JD
797
798 max_bandwidth1 = freq_range1->max_bandwidth_khz;
799 max_bandwidth2 = freq_range2->max_bandwidth_khz;
800
b0dfd2ea
JD
801 if (rule1->flags & NL80211_RRF_AUTO_BW)
802 max_bandwidth1 = reg_get_max_bandwidth(rd1, rule1);
803 if (rule2->flags & NL80211_RRF_AUTO_BW)
804 max_bandwidth2 = reg_get_max_bandwidth(rd2, rule2);
97524820
JD
805
806 freq_range->max_bandwidth_khz = min(max_bandwidth1, max_bandwidth2);
9c96477d 807
b0dfd2ea
JD
808 intersected_rule->flags = rule1->flags | rule2->flags;
809
810 /*
811 * In case NL80211_RRF_AUTO_BW requested for both rules
812 * set AUTO_BW in intersected rule also. Next we will
813 * calculate BW correctly in handle_channel function.
814 * In other case remove AUTO_BW flag while we calculate
815 * maximum bandwidth correctly and auto calculation is
816 * not required.
817 */
818 if ((rule1->flags & NL80211_RRF_AUTO_BW) &&
819 (rule2->flags & NL80211_RRF_AUTO_BW))
820 intersected_rule->flags |= NL80211_RRF_AUTO_BW;
821 else
822 intersected_rule->flags &= ~NL80211_RRF_AUTO_BW;
823
9c96477d
LR
824 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
825 if (freq_range->max_bandwidth_khz > freq_diff)
826 freq_range->max_bandwidth_khz = freq_diff;
827
828 power_rule->max_eirp = min(power_rule1->max_eirp,
829 power_rule2->max_eirp);
830 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
831 power_rule2->max_antenna_gain);
832
089027e5
JD
833 intersected_rule->dfs_cac_ms = max(rule1->dfs_cac_ms,
834 rule2->dfs_cac_ms);
835
9c96477d
LR
836 if (!is_valid_reg_rule(intersected_rule))
837 return -EINVAL;
838
839 return 0;
840}
841
a62a1aed
EP
842/* check whether old rule contains new rule */
843static bool rule_contains(struct ieee80211_reg_rule *r1,
844 struct ieee80211_reg_rule *r2)
845{
846 /* for simplicity, currently consider only same flags */
847 if (r1->flags != r2->flags)
848 return false;
849
850 /* verify r1 is more restrictive */
851 if ((r1->power_rule.max_antenna_gain >
852 r2->power_rule.max_antenna_gain) ||
853 r1->power_rule.max_eirp > r2->power_rule.max_eirp)
854 return false;
855
856 /* make sure r2's range is contained within r1 */
857 if (r1->freq_range.start_freq_khz > r2->freq_range.start_freq_khz ||
858 r1->freq_range.end_freq_khz < r2->freq_range.end_freq_khz)
859 return false;
860
861 /* and finally verify that r1.max_bw >= r2.max_bw */
862 if (r1->freq_range.max_bandwidth_khz <
863 r2->freq_range.max_bandwidth_khz)
864 return false;
865
866 return true;
867}
868
869/* add or extend current rules. do nothing if rule is already contained */
870static void add_rule(struct ieee80211_reg_rule *rule,
871 struct ieee80211_reg_rule *reg_rules, u32 *n_rules)
872{
873 struct ieee80211_reg_rule *tmp_rule;
874 int i;
875
876 for (i = 0; i < *n_rules; i++) {
877 tmp_rule = &reg_rules[i];
878 /* rule is already contained - do nothing */
879 if (rule_contains(tmp_rule, rule))
880 return;
881
882 /* extend rule if possible */
883 if (rule_contains(rule, tmp_rule)) {
884 memcpy(tmp_rule, rule, sizeof(*rule));
885 return;
886 }
887 }
888
889 memcpy(&reg_rules[*n_rules], rule, sizeof(*rule));
890 (*n_rules)++;
891}
892
9c96477d
LR
893/**
894 * regdom_intersect - do the intersection between two regulatory domains
895 * @rd1: first regulatory domain
896 * @rd2: second regulatory domain
897 *
898 * Use this function to get the intersection between two regulatory domains.
899 * Once completed we will mark the alpha2 for the rd as intersected, "98",
900 * as no one single alpha2 can represent this regulatory domain.
901 *
902 * Returns a pointer to the regulatory domain structure which will hold the
903 * resulting intersection of rules between rd1 and rd2. We will
904 * kzalloc() this structure for you.
905 */
1a919318
JB
906static struct ieee80211_regdomain *
907regdom_intersect(const struct ieee80211_regdomain *rd1,
908 const struct ieee80211_regdomain *rd2)
9c96477d
LR
909{
910 int r, size_of_regd;
911 unsigned int x, y;
a62a1aed 912 unsigned int num_rules = 0;
9c96477d 913 const struct ieee80211_reg_rule *rule1, *rule2;
a62a1aed 914 struct ieee80211_reg_rule intersected_rule;
9c96477d 915 struct ieee80211_regdomain *rd;
9c96477d
LR
916
917 if (!rd1 || !rd2)
918 return NULL;
919
fb1fc7ad
LR
920 /*
921 * First we get a count of the rules we'll need, then we actually
9c96477d
LR
922 * build them. This is to so we can malloc() and free() a
923 * regdomain once. The reason we use reg_rules_intersect() here
924 * is it will return -EINVAL if the rule computed makes no sense.
fb1fc7ad
LR
925 * All rules that do check out OK are valid.
926 */
9c96477d
LR
927
928 for (x = 0; x < rd1->n_reg_rules; x++) {
929 rule1 = &rd1->reg_rules[x];
930 for (y = 0; y < rd2->n_reg_rules; y++) {
931 rule2 = &rd2->reg_rules[y];
97524820 932 if (!reg_rules_intersect(rd1, rd2, rule1, rule2,
a62a1aed 933 &intersected_rule))
9c96477d 934 num_rules++;
9c96477d
LR
935 }
936 }
937
938 if (!num_rules)
939 return NULL;
940
941 size_of_regd = sizeof(struct ieee80211_regdomain) +
82f20856 942 num_rules * sizeof(struct ieee80211_reg_rule);
9c96477d
LR
943
944 rd = kzalloc(size_of_regd, GFP_KERNEL);
945 if (!rd)
946 return NULL;
947
a62a1aed 948 for (x = 0; x < rd1->n_reg_rules; x++) {
9c96477d 949 rule1 = &rd1->reg_rules[x];
a62a1aed 950 for (y = 0; y < rd2->n_reg_rules; y++) {
9c96477d 951 rule2 = &rd2->reg_rules[y];
97524820 952 r = reg_rules_intersect(rd1, rd2, rule1, rule2,
a62a1aed 953 &intersected_rule);
fb1fc7ad
LR
954 /*
955 * No need to memset here the intersected rule here as
956 * we're not using the stack anymore
957 */
9c96477d
LR
958 if (r)
959 continue;
9c96477d 960
a62a1aed
EP
961 add_rule(&intersected_rule, rd->reg_rules,
962 &rd->n_reg_rules);
963 }
9c96477d
LR
964 }
965
9c96477d
LR
966 rd->alpha2[0] = '9';
967 rd->alpha2[1] = '8';
adbfb058
LR
968 rd->dfs_region = reg_intersect_dfs_region(rd1->dfs_region,
969 rd2->dfs_region);
9c96477d
LR
970
971 return rd;
972}
973
fb1fc7ad
LR
974/*
975 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
976 * want to just have the channel structure use these
977 */
b2e1b302
LR
978static u32 map_regdom_flags(u32 rd_flags)
979{
980 u32 channel_flags = 0;
8fe02e16
LR
981 if (rd_flags & NL80211_RRF_NO_IR_ALL)
982 channel_flags |= IEEE80211_CHAN_NO_IR;
b2e1b302
LR
983 if (rd_flags & NL80211_RRF_DFS)
984 channel_flags |= IEEE80211_CHAN_RADAR;
03f6b084
SF
985 if (rd_flags & NL80211_RRF_NO_OFDM)
986 channel_flags |= IEEE80211_CHAN_NO_OFDM;
570dbde1
DS
987 if (rd_flags & NL80211_RRF_NO_OUTDOOR)
988 channel_flags |= IEEE80211_CHAN_INDOOR_ONLY;
06f207fc
AN
989 if (rd_flags & NL80211_RRF_IR_CONCURRENT)
990 channel_flags |= IEEE80211_CHAN_IR_CONCURRENT;
a6d4a534
AN
991 if (rd_flags & NL80211_RRF_NO_HT40MINUS)
992 channel_flags |= IEEE80211_CHAN_NO_HT40MINUS;
993 if (rd_flags & NL80211_RRF_NO_HT40PLUS)
994 channel_flags |= IEEE80211_CHAN_NO_HT40PLUS;
995 if (rd_flags & NL80211_RRF_NO_80MHZ)
996 channel_flags |= IEEE80211_CHAN_NO_80MHZ;
997 if (rd_flags & NL80211_RRF_NO_160MHZ)
998 channel_flags |= IEEE80211_CHAN_NO_160MHZ;
b2e1b302
LR
999 return channel_flags;
1000}
1001
361c9c8b
JB
1002static const struct ieee80211_reg_rule *
1003freq_reg_info_regd(struct wiphy *wiphy, u32 center_freq,
4edd5698 1004 const struct ieee80211_regdomain *regd, u32 bw)
8318d78a
JB
1005{
1006 int i;
0c7dc45d 1007 bool band_rule_found = false;
038659e7
LR
1008 bool bw_fits = false;
1009
3e0c3ff3 1010 if (!regd)
361c9c8b 1011 return ERR_PTR(-EINVAL);
b2e1b302 1012
3e0c3ff3 1013 for (i = 0; i < regd->n_reg_rules; i++) {
b2e1b302
LR
1014 const struct ieee80211_reg_rule *rr;
1015 const struct ieee80211_freq_range *fr = NULL;
b2e1b302 1016
3e0c3ff3 1017 rr = &regd->reg_rules[i];
b2e1b302 1018 fr = &rr->freq_range;
0c7dc45d 1019
fb1fc7ad
LR
1020 /*
1021 * We only need to know if one frequency rule was
0c7dc45d 1022 * was in center_freq's band, that's enough, so lets
fb1fc7ad
LR
1023 * not overwrite it once found
1024 */
0c7dc45d
LR
1025 if (!band_rule_found)
1026 band_rule_found = freq_in_rule_band(fr, center_freq);
1027
4edd5698 1028 bw_fits = reg_does_bw_fit(fr, center_freq, bw);
0c7dc45d 1029
361c9c8b
JB
1030 if (band_rule_found && bw_fits)
1031 return rr;
8318d78a
JB
1032 }
1033
0c7dc45d 1034 if (!band_rule_found)
361c9c8b 1035 return ERR_PTR(-ERANGE);
0c7dc45d 1036
361c9c8b 1037 return ERR_PTR(-EINVAL);
b2e1b302
LR
1038}
1039
8de1c63b
JB
1040static const struct ieee80211_reg_rule *
1041__freq_reg_info(struct wiphy *wiphy, u32 center_freq, u32 min_bw)
1fa25e41 1042{
4edd5698
MM
1043 const struct ieee80211_regdomain *regd = reg_get_regdomain(wiphy);
1044 const struct ieee80211_reg_rule *reg_rule = NULL;
1045 u32 bw;
1a919318 1046
4edd5698
MM
1047 for (bw = MHZ_TO_KHZ(20); bw >= min_bw; bw = bw / 2) {
1048 reg_rule = freq_reg_info_regd(wiphy, center_freq, regd, bw);
1049 if (!IS_ERR(reg_rule))
1050 return reg_rule;
1051 }
5d885b99 1052
4edd5698
MM
1053 return reg_rule;
1054}
1055
1056const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
1057 u32 center_freq)
1058{
1059 return __freq_reg_info(wiphy, center_freq, MHZ_TO_KHZ(20));
1fa25e41 1060}
4f366c5d 1061EXPORT_SYMBOL(freq_reg_info);
b2e1b302 1062
034c6d6e 1063const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
926a0a09
LR
1064{
1065 switch (initiator) {
1066 case NL80211_REGDOM_SET_BY_CORE:
034c6d6e 1067 return "core";
926a0a09 1068 case NL80211_REGDOM_SET_BY_USER:
034c6d6e 1069 return "user";
926a0a09 1070 case NL80211_REGDOM_SET_BY_DRIVER:
034c6d6e 1071 return "driver";
926a0a09 1072 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
034c6d6e 1073 return "country IE";
926a0a09
LR
1074 default:
1075 WARN_ON(1);
034c6d6e 1076 return "bug";
926a0a09
LR
1077 }
1078}
034c6d6e 1079EXPORT_SYMBOL(reg_initiator_name);
e702d3cf 1080
034c6d6e 1081#ifdef CONFIG_CFG80211_REG_DEBUG
b0dfd2ea
JD
1082static void chan_reg_rule_print_dbg(const struct ieee80211_regdomain *regd,
1083 struct ieee80211_channel *chan,
e702d3cf
LR
1084 const struct ieee80211_reg_rule *reg_rule)
1085{
1086 const struct ieee80211_power_rule *power_rule;
1087 const struct ieee80211_freq_range *freq_range;
b0dfd2ea 1088 char max_antenna_gain[32], bw[32];
e702d3cf
LR
1089
1090 power_rule = &reg_rule->power_rule;
1091 freq_range = &reg_rule->freq_range;
1092
1093 if (!power_rule->max_antenna_gain)
b0dfd2ea 1094 snprintf(max_antenna_gain, sizeof(max_antenna_gain), "N/A");
e702d3cf 1095 else
b0dfd2ea
JD
1096 snprintf(max_antenna_gain, sizeof(max_antenna_gain), "%d",
1097 power_rule->max_antenna_gain);
1098
1099 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
1100 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
1101 freq_range->max_bandwidth_khz,
1102 reg_get_max_bandwidth(regd, reg_rule));
1103 else
1104 snprintf(bw, sizeof(bw), "%d KHz",
1105 freq_range->max_bandwidth_khz);
e702d3cf 1106
fe7ef5e9
JB
1107 REG_DBG_PRINT("Updating information on frequency %d MHz with regulatory rule:\n",
1108 chan->center_freq);
e702d3cf 1109
b0dfd2ea 1110 REG_DBG_PRINT("%d KHz - %d KHz @ %s), (%s mBi, %d mBm)\n",
1a919318 1111 freq_range->start_freq_khz, freq_range->end_freq_khz,
b0dfd2ea 1112 bw, max_antenna_gain,
e702d3cf
LR
1113 power_rule->max_eirp);
1114}
1115#else
b0dfd2ea
JD
1116static void chan_reg_rule_print_dbg(const struct ieee80211_regdomain *regd,
1117 struct ieee80211_channel *chan,
e702d3cf
LR
1118 const struct ieee80211_reg_rule *reg_rule)
1119{
1120 return;
1121}
926a0a09
LR
1122#endif
1123
e33e2241
JB
1124/*
1125 * Note that right now we assume the desired channel bandwidth
1126 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
1127 * per channel, the primary and the extension channel).
038659e7 1128 */
7ca43d03
LR
1129static void handle_channel(struct wiphy *wiphy,
1130 enum nl80211_reg_initiator initiator,
fdc9d7b2 1131 struct ieee80211_channel *chan)
b2e1b302 1132{
038659e7 1133 u32 flags, bw_flags = 0;
b2e1b302
LR
1134 const struct ieee80211_reg_rule *reg_rule = NULL;
1135 const struct ieee80211_power_rule *power_rule = NULL;
038659e7 1136 const struct ieee80211_freq_range *freq_range = NULL;
fe33eb39 1137 struct wiphy *request_wiphy = NULL;
c492db37 1138 struct regulatory_request *lr = get_last_request();
97524820
JD
1139 const struct ieee80211_regdomain *regd;
1140 u32 max_bandwidth_khz;
a92a3ce7 1141
c492db37 1142 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
a92a3ce7
LR
1143
1144 flags = chan->orig_flags;
b2e1b302 1145
361c9c8b
JB
1146 reg_rule = freq_reg_info(wiphy, MHZ_TO_KHZ(chan->center_freq));
1147 if (IS_ERR(reg_rule)) {
ca4ffe8f
LR
1148 /*
1149 * We will disable all channels that do not match our
25985edc 1150 * received regulatory rule unless the hint is coming
ca4ffe8f
LR
1151 * from a Country IE and the Country IE had no information
1152 * about a band. The IEEE 802.11 spec allows for an AP
1153 * to send only a subset of the regulatory rules allowed,
1154 * so an AP in the US that only supports 2.4 GHz may only send
1155 * a country IE with information for the 2.4 GHz band
1156 * while 5 GHz is still supported.
1157 */
1158 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
361c9c8b 1159 PTR_ERR(reg_rule) == -ERANGE)
ca4ffe8f
LR
1160 return;
1161
cc493e4f
LR
1162 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1163 request_wiphy && request_wiphy == wiphy &&
a2f73b6c 1164 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
cc493e4f
LR
1165 REG_DBG_PRINT("Disabling freq %d MHz for good\n",
1166 chan->center_freq);
1167 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1168 chan->flags = chan->orig_flags;
1169 } else {
1170 REG_DBG_PRINT("Disabling freq %d MHz\n",
1171 chan->center_freq);
1172 chan->flags |= IEEE80211_CHAN_DISABLED;
1173 }
8318d78a 1174 return;
ca4ffe8f 1175 }
8318d78a 1176
b0dfd2ea
JD
1177 regd = reg_get_regdomain(wiphy);
1178 chan_reg_rule_print_dbg(regd, chan, reg_rule);
e702d3cf 1179
b2e1b302 1180 power_rule = &reg_rule->power_rule;
038659e7
LR
1181 freq_range = &reg_rule->freq_range;
1182
97524820
JD
1183 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1184 /* Check if auto calculation requested */
b0dfd2ea 1185 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
97524820 1186 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
97524820 1187
4edd5698
MM
1188 /* If we get a reg_rule we can assume that at least 5Mhz fit */
1189 if (!reg_does_bw_fit(freq_range, MHZ_TO_KHZ(chan->center_freq),
1190 MHZ_TO_KHZ(10)))
1191 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1192 if (!reg_does_bw_fit(freq_range, MHZ_TO_KHZ(chan->center_freq),
1193 MHZ_TO_KHZ(20)))
1194 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1195
1196 if (max_bandwidth_khz < MHZ_TO_KHZ(10))
1197 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1198 if (max_bandwidth_khz < MHZ_TO_KHZ(20))
1199 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
97524820 1200 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
4edd5698 1201 bw_flags |= IEEE80211_CHAN_NO_HT40;
97524820 1202 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
c7a6ee27 1203 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
97524820 1204 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
c7a6ee27 1205 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
b2e1b302 1206
c492db37 1207 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
806a9e39 1208 request_wiphy && request_wiphy == wiphy &&
a2f73b6c 1209 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
fb1fc7ad 1210 /*
25985edc 1211 * This guarantees the driver's requested regulatory domain
f976376d 1212 * will always be used as a base for further regulatory
fb1fc7ad
LR
1213 * settings
1214 */
f976376d 1215 chan->flags = chan->orig_flags =
038659e7 1216 map_regdom_flags(reg_rule->flags) | bw_flags;
f976376d
LR
1217 chan->max_antenna_gain = chan->orig_mag =
1218 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
279f0f55 1219 chan->max_reg_power = chan->max_power = chan->orig_mpwr =
f976376d 1220 (int) MBM_TO_DBM(power_rule->max_eirp);
4f267c11
JD
1221
1222 if (chan->flags & IEEE80211_CHAN_RADAR) {
1223 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1224 if (reg_rule->dfs_cac_ms)
1225 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1226 }
1227
f976376d
LR
1228 return;
1229 }
1230
04f39047
SW
1231 chan->dfs_state = NL80211_DFS_USABLE;
1232 chan->dfs_state_entered = jiffies;
1233
aa3d7eef 1234 chan->beacon_found = false;
038659e7 1235 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
1a919318
JB
1236 chan->max_antenna_gain =
1237 min_t(int, chan->orig_mag,
1238 MBI_TO_DBI(power_rule->max_antenna_gain));
eccc068e 1239 chan->max_reg_power = (int) MBM_TO_DBM(power_rule->max_eirp);
089027e5
JD
1240
1241 if (chan->flags & IEEE80211_CHAN_RADAR) {
1242 if (reg_rule->dfs_cac_ms)
1243 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1244 else
1245 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1246 }
1247
5e31fc08
SG
1248 if (chan->orig_mpwr) {
1249 /*
a09a85a0
LR
1250 * Devices that use REGULATORY_COUNTRY_IE_FOLLOW_POWER
1251 * will always follow the passed country IE power settings.
5e31fc08
SG
1252 */
1253 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
a09a85a0 1254 wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_FOLLOW_POWER)
5e31fc08
SG
1255 chan->max_power = chan->max_reg_power;
1256 else
1257 chan->max_power = min(chan->orig_mpwr,
1258 chan->max_reg_power);
1259 } else
1260 chan->max_power = chan->max_reg_power;
8318d78a
JB
1261}
1262
7ca43d03 1263static void handle_band(struct wiphy *wiphy,
fdc9d7b2
JB
1264 enum nl80211_reg_initiator initiator,
1265 struct ieee80211_supported_band *sband)
8318d78a 1266{
a92a3ce7 1267 unsigned int i;
a92a3ce7 1268
fdc9d7b2
JB
1269 if (!sband)
1270 return;
8318d78a
JB
1271
1272 for (i = 0; i < sband->n_channels; i++)
fdc9d7b2 1273 handle_channel(wiphy, initiator, &sband->channels[i]);
8318d78a
JB
1274}
1275
57b5ce07
LR
1276static bool reg_request_cell_base(struct regulatory_request *request)
1277{
1278 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1279 return false;
1a919318 1280 return request->user_reg_hint_type == NL80211_USER_REG_HINT_CELL_BASE;
57b5ce07
LR
1281}
1282
1283bool reg_last_request_cell_base(void)
1284{
38fd2143 1285 return reg_request_cell_base(get_last_request());
57b5ce07
LR
1286}
1287
94fc661f 1288#ifdef CONFIG_CFG80211_REG_CELLULAR_HINTS
57b5ce07 1289/* Core specific check */
2f92212b
JB
1290static enum reg_request_treatment
1291reg_ignore_cell_hint(struct regulatory_request *pending_request)
57b5ce07 1292{
c492db37
JB
1293 struct regulatory_request *lr = get_last_request();
1294
57b5ce07 1295 if (!reg_num_devs_support_basehint)
2f92212b 1296 return REG_REQ_IGNORE;
57b5ce07 1297
c492db37 1298 if (reg_request_cell_base(lr) &&
1a919318 1299 !regdom_changes(pending_request->alpha2))
2f92212b 1300 return REG_REQ_ALREADY_SET;
1a919318 1301
2f92212b 1302 return REG_REQ_OK;
57b5ce07
LR
1303}
1304
1305/* Device specific check */
1306static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
1307{
1a919318 1308 return !(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS);
57b5ce07
LR
1309}
1310#else
1311static int reg_ignore_cell_hint(struct regulatory_request *pending_request)
1312{
2f92212b 1313 return REG_REQ_IGNORE;
57b5ce07 1314}
1a919318
JB
1315
1316static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
57b5ce07
LR
1317{
1318 return true;
1319}
1320#endif
1321
fa1fb9cb
LR
1322static bool wiphy_strict_alpha2_regd(struct wiphy *wiphy)
1323{
a2f73b6c
LR
1324 if (wiphy->regulatory_flags & REGULATORY_STRICT_REG &&
1325 !(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG))
fa1fb9cb
LR
1326 return true;
1327 return false;
1328}
57b5ce07 1329
7db90f4a
LR
1330static bool ignore_reg_update(struct wiphy *wiphy,
1331 enum nl80211_reg_initiator initiator)
14b9815a 1332{
c492db37
JB
1333 struct regulatory_request *lr = get_last_request();
1334
b0d7aa59
JD
1335 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
1336 return true;
1337
c492db37 1338 if (!lr) {
034c6d6e
LR
1339 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1340 "since last_request is not set\n",
926a0a09 1341 reg_initiator_name(initiator));
14b9815a 1342 return true;
926a0a09
LR
1343 }
1344
7db90f4a 1345 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
a2f73b6c 1346 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
034c6d6e
LR
1347 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1348 "since the driver uses its own custom "
1349 "regulatory domain\n",
926a0a09 1350 reg_initiator_name(initiator));
14b9815a 1351 return true;
926a0a09
LR
1352 }
1353
fb1fc7ad
LR
1354 /*
1355 * wiphy->regd will be set once the device has its own
1356 * desired regulatory domain set
1357 */
fa1fb9cb 1358 if (wiphy_strict_alpha2_regd(wiphy) && !wiphy->regd &&
749b527b 1359 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
c492db37 1360 !is_world_regdom(lr->alpha2)) {
034c6d6e
LR
1361 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1362 "since the driver requires its own regulatory "
1363 "domain to be set first\n",
926a0a09 1364 reg_initiator_name(initiator));
14b9815a 1365 return true;
926a0a09
LR
1366 }
1367
c492db37 1368 if (reg_request_cell_base(lr))
57b5ce07
LR
1369 return reg_dev_ignore_cell_hint(wiphy);
1370
14b9815a
LR
1371 return false;
1372}
1373
3195e489
LR
1374static bool reg_is_world_roaming(struct wiphy *wiphy)
1375{
1376 const struct ieee80211_regdomain *cr = get_cfg80211_regdom();
1377 const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy);
1378 struct regulatory_request *lr = get_last_request();
1379
1380 if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2)))
1381 return true;
1382
1383 if (lr && lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
a2f73b6c 1384 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
3195e489
LR
1385 return true;
1386
1387 return false;
1388}
1389
1a919318 1390static void handle_reg_beacon(struct wiphy *wiphy, unsigned int chan_idx,
e38f8a7a
LR
1391 struct reg_beacon *reg_beacon)
1392{
e38f8a7a
LR
1393 struct ieee80211_supported_band *sband;
1394 struct ieee80211_channel *chan;
6bad8766
LR
1395 bool channel_changed = false;
1396 struct ieee80211_channel chan_before;
e38f8a7a 1397
e38f8a7a
LR
1398 sband = wiphy->bands[reg_beacon->chan.band];
1399 chan = &sband->channels[chan_idx];
1400
1401 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
1402 return;
1403
6bad8766
LR
1404 if (chan->beacon_found)
1405 return;
1406
1407 chan->beacon_found = true;
1408
0f500a5f
LR
1409 if (!reg_is_world_roaming(wiphy))
1410 return;
1411
a2f73b6c 1412 if (wiphy->regulatory_flags & REGULATORY_DISABLE_BEACON_HINTS)
37184244
LR
1413 return;
1414
6bad8766
LR
1415 chan_before.center_freq = chan->center_freq;
1416 chan_before.flags = chan->flags;
1417
8fe02e16
LR
1418 if (chan->flags & IEEE80211_CHAN_NO_IR) {
1419 chan->flags &= ~IEEE80211_CHAN_NO_IR;
6bad8766 1420 channel_changed = true;
e38f8a7a
LR
1421 }
1422
6bad8766
LR
1423 if (channel_changed)
1424 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
e38f8a7a
LR
1425}
1426
1427/*
1428 * Called when a scan on a wiphy finds a beacon on
1429 * new channel
1430 */
1431static void wiphy_update_new_beacon(struct wiphy *wiphy,
1432 struct reg_beacon *reg_beacon)
1433{
1434 unsigned int i;
1435 struct ieee80211_supported_band *sband;
1436
e38f8a7a
LR
1437 if (!wiphy->bands[reg_beacon->chan.band])
1438 return;
1439
1440 sband = wiphy->bands[reg_beacon->chan.band];
1441
1442 for (i = 0; i < sband->n_channels; i++)
1443 handle_reg_beacon(wiphy, i, reg_beacon);
1444}
1445
1446/*
1447 * Called upon reg changes or a new wiphy is added
1448 */
1449static void wiphy_update_beacon_reg(struct wiphy *wiphy)
1450{
1451 unsigned int i;
1452 struct ieee80211_supported_band *sband;
1453 struct reg_beacon *reg_beacon;
1454
e38f8a7a
LR
1455 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
1456 if (!wiphy->bands[reg_beacon->chan.band])
1457 continue;
1458 sband = wiphy->bands[reg_beacon->chan.band];
1459 for (i = 0; i < sband->n_channels; i++)
1460 handle_reg_beacon(wiphy, i, reg_beacon);
1461 }
1462}
1463
e38f8a7a
LR
1464/* Reap the advantages of previously found beacons */
1465static void reg_process_beacons(struct wiphy *wiphy)
1466{
b1ed8ddd
LR
1467 /*
1468 * Means we are just firing up cfg80211, so no beacons would
1469 * have been processed yet.
1470 */
1471 if (!last_request)
1472 return;
e38f8a7a
LR
1473 wiphy_update_beacon_reg(wiphy);
1474}
1475
1a919318 1476static bool is_ht40_allowed(struct ieee80211_channel *chan)
038659e7
LR
1477{
1478 if (!chan)
1a919318 1479 return false;
038659e7 1480 if (chan->flags & IEEE80211_CHAN_DISABLED)
1a919318 1481 return false;
038659e7 1482 /* This would happen when regulatory rules disallow HT40 completely */
55b183ad
FF
1483 if ((chan->flags & IEEE80211_CHAN_NO_HT40) == IEEE80211_CHAN_NO_HT40)
1484 return false;
1485 return true;
038659e7
LR
1486}
1487
1488static void reg_process_ht_flags_channel(struct wiphy *wiphy,
fdc9d7b2 1489 struct ieee80211_channel *channel)
038659e7 1490{
fdc9d7b2 1491 struct ieee80211_supported_band *sband = wiphy->bands[channel->band];
038659e7
LR
1492 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
1493 unsigned int i;
1494
1a919318 1495 if (!is_ht40_allowed(channel)) {
038659e7
LR
1496 channel->flags |= IEEE80211_CHAN_NO_HT40;
1497 return;
1498 }
1499
1500 /*
1501 * We need to ensure the extension channels exist to
1502 * be able to use HT40- or HT40+, this finds them (or not)
1503 */
1504 for (i = 0; i < sband->n_channels; i++) {
1505 struct ieee80211_channel *c = &sband->channels[i];
1a919318 1506
038659e7
LR
1507 if (c->center_freq == (channel->center_freq - 20))
1508 channel_before = c;
1509 if (c->center_freq == (channel->center_freq + 20))
1510 channel_after = c;
1511 }
1512
1513 /*
1514 * Please note that this assumes target bandwidth is 20 MHz,
1515 * if that ever changes we also need to change the below logic
1516 * to include that as well.
1517 */
1a919318 1518 if (!is_ht40_allowed(channel_before))
689da1b3 1519 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
038659e7 1520 else
689da1b3 1521 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
038659e7 1522
1a919318 1523 if (!is_ht40_allowed(channel_after))
689da1b3 1524 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
038659e7 1525 else
689da1b3 1526 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
038659e7
LR
1527}
1528
1529static void reg_process_ht_flags_band(struct wiphy *wiphy,
fdc9d7b2 1530 struct ieee80211_supported_band *sband)
038659e7
LR
1531{
1532 unsigned int i;
038659e7 1533
fdc9d7b2
JB
1534 if (!sband)
1535 return;
038659e7
LR
1536
1537 for (i = 0; i < sband->n_channels; i++)
fdc9d7b2 1538 reg_process_ht_flags_channel(wiphy, &sband->channels[i]);
038659e7
LR
1539}
1540
1541static void reg_process_ht_flags(struct wiphy *wiphy)
1542{
1543 enum ieee80211_band band;
1544
1545 if (!wiphy)
1546 return;
1547
fdc9d7b2
JB
1548 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1549 reg_process_ht_flags_band(wiphy, wiphy->bands[band]);
038659e7
LR
1550}
1551
0e3802db
LR
1552static void reg_call_notifier(struct wiphy *wiphy,
1553 struct regulatory_request *request)
1554{
1555 if (wiphy->reg_notifier)
1556 wiphy->reg_notifier(wiphy, request);
1557}
1558
ad932f04
AN
1559static bool reg_wdev_chan_valid(struct wiphy *wiphy, struct wireless_dev *wdev)
1560{
ad932f04
AN
1561 struct cfg80211_chan_def chandef;
1562 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
20658702 1563 enum nl80211_iftype iftype;
ad932f04
AN
1564
1565 wdev_lock(wdev);
20658702 1566 iftype = wdev->iftype;
ad932f04 1567
20658702 1568 /* make sure the interface is active */
ad932f04 1569 if (!wdev->netdev || !netif_running(wdev->netdev))
20658702 1570 goto wdev_inactive_unlock;
ad932f04 1571
20658702 1572 switch (iftype) {
ad932f04
AN
1573 case NL80211_IFTYPE_AP:
1574 case NL80211_IFTYPE_P2P_GO:
1575 if (!wdev->beacon_interval)
20658702
AN
1576 goto wdev_inactive_unlock;
1577 chandef = wdev->chandef;
185076d6
AN
1578 break;
1579 case NL80211_IFTYPE_ADHOC:
1580 if (!wdev->ssid_len)
20658702
AN
1581 goto wdev_inactive_unlock;
1582 chandef = wdev->chandef;
ad932f04
AN
1583 break;
1584 case NL80211_IFTYPE_STATION:
1585 case NL80211_IFTYPE_P2P_CLIENT:
ad932f04
AN
1586 if (!wdev->current_bss ||
1587 !wdev->current_bss->pub.channel)
20658702 1588 goto wdev_inactive_unlock;
ad932f04 1589
20658702
AN
1590 if (!rdev->ops->get_channel ||
1591 rdev_get_channel(rdev, wdev, &chandef))
1592 cfg80211_chandef_create(&chandef,
1593 wdev->current_bss->pub.channel,
1594 NL80211_CHAN_NO_HT);
ad932f04
AN
1595 break;
1596 case NL80211_IFTYPE_MONITOR:
1597 case NL80211_IFTYPE_AP_VLAN:
1598 case NL80211_IFTYPE_P2P_DEVICE:
1599 /* no enforcement required */
1600 break;
1601 default:
1602 /* others not implemented for now */
1603 WARN_ON(1);
1604 break;
1605 }
1606
ad932f04 1607 wdev_unlock(wdev);
20658702
AN
1608
1609 switch (iftype) {
1610 case NL80211_IFTYPE_AP:
1611 case NL80211_IFTYPE_P2P_GO:
1612 case NL80211_IFTYPE_ADHOC:
923b352f 1613 return cfg80211_reg_can_beacon_relax(wiphy, &chandef, iftype);
20658702
AN
1614 case NL80211_IFTYPE_STATION:
1615 case NL80211_IFTYPE_P2P_CLIENT:
1616 return cfg80211_chandef_usable(wiphy, &chandef,
1617 IEEE80211_CHAN_DISABLED);
1618 default:
1619 break;
1620 }
1621
1622 return true;
1623
1624wdev_inactive_unlock:
1625 wdev_unlock(wdev);
1626 return true;
ad932f04
AN
1627}
1628
1629static void reg_leave_invalid_chans(struct wiphy *wiphy)
1630{
1631 struct wireless_dev *wdev;
1632 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
1633
1634 ASSERT_RTNL();
1635
1636 list_for_each_entry(wdev, &rdev->wdev_list, list)
1637 if (!reg_wdev_chan_valid(wiphy, wdev))
1638 cfg80211_leave(rdev, wdev);
1639}
1640
1641static void reg_check_chans_work(struct work_struct *work)
1642{
1643 struct cfg80211_registered_device *rdev;
1644
1645 REG_DBG_PRINT("Verifying active interfaces after reg change\n");
1646 rtnl_lock();
1647
1648 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1649 if (!(rdev->wiphy.regulatory_flags &
1650 REGULATORY_IGNORE_STALE_KICKOFF))
1651 reg_leave_invalid_chans(&rdev->wiphy);
1652
1653 rtnl_unlock();
1654}
1655
1656static void reg_check_channels(void)
1657{
1658 /*
1659 * Give usermode a chance to do something nicer (move to another
1660 * channel, orderly disconnection), before forcing a disconnection.
1661 */
1662 mod_delayed_work(system_power_efficient_wq,
1663 &reg_check_chans,
1664 msecs_to_jiffies(REG_ENFORCE_GRACE_MS));
1665}
1666
eac03e38
SN
1667static void wiphy_update_regulatory(struct wiphy *wiphy,
1668 enum nl80211_reg_initiator initiator)
b2e1b302
LR
1669{
1670 enum ieee80211_band band;
c492db37 1671 struct regulatory_request *lr = get_last_request();
eac03e38 1672
0e3802db
LR
1673 if (ignore_reg_update(wiphy, initiator)) {
1674 /*
1675 * Regulatory updates set by CORE are ignored for custom
1676 * regulatory cards. Let us notify the changes to the driver,
1677 * as some drivers used this to restore its orig_* reg domain.
1678 */
1679 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
a2f73b6c 1680 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
0e3802db 1681 reg_call_notifier(wiphy, lr);
a203c2aa 1682 return;
0e3802db 1683 }
a203c2aa 1684
c492db37 1685 lr->dfs_region = get_cfg80211_regdom()->dfs_region;
b68e6b3b 1686
fdc9d7b2
JB
1687 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1688 handle_band(wiphy, initiator, wiphy->bands[band]);
a203c2aa 1689
e38f8a7a 1690 reg_process_beacons(wiphy);
038659e7 1691 reg_process_ht_flags(wiphy);
0e3802db 1692 reg_call_notifier(wiphy, lr);
b2e1b302
LR
1693}
1694
d7549cbb
SN
1695static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
1696{
1697 struct cfg80211_registered_device *rdev;
4a38994f 1698 struct wiphy *wiphy;
d7549cbb 1699
5fe231e8 1700 ASSERT_RTNL();
458f4f9e 1701
4a38994f
RM
1702 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1703 wiphy = &rdev->wiphy;
1704 wiphy_update_regulatory(wiphy, initiator);
4a38994f 1705 }
ad932f04
AN
1706
1707 reg_check_channels();
d7549cbb
SN
1708}
1709
1fa25e41 1710static void handle_channel_custom(struct wiphy *wiphy,
fdc9d7b2 1711 struct ieee80211_channel *chan,
1fa25e41
LR
1712 const struct ieee80211_regdomain *regd)
1713{
038659e7 1714 u32 bw_flags = 0;
1fa25e41
LR
1715 const struct ieee80211_reg_rule *reg_rule = NULL;
1716 const struct ieee80211_power_rule *power_rule = NULL;
038659e7 1717 const struct ieee80211_freq_range *freq_range = NULL;
97524820 1718 u32 max_bandwidth_khz;
4edd5698 1719 u32 bw;
ac46d48e 1720
4edd5698
MM
1721 for (bw = MHZ_TO_KHZ(20); bw >= MHZ_TO_KHZ(5); bw = bw / 2) {
1722 reg_rule = freq_reg_info_regd(wiphy,
1723 MHZ_TO_KHZ(chan->center_freq),
1724 regd, bw);
1725 if (!IS_ERR(reg_rule))
1726 break;
1727 }
1fa25e41 1728
361c9c8b 1729 if (IS_ERR(reg_rule)) {
fe7ef5e9
JB
1730 REG_DBG_PRINT("Disabling freq %d MHz as custom regd has no rule that fits it\n",
1731 chan->center_freq);
db8dfee5
AN
1732 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) {
1733 chan->flags |= IEEE80211_CHAN_DISABLED;
1734 } else {
1735 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1736 chan->flags = chan->orig_flags;
1737 }
1fa25e41
LR
1738 return;
1739 }
1740
b0dfd2ea 1741 chan_reg_rule_print_dbg(regd, chan, reg_rule);
e702d3cf 1742
1fa25e41 1743 power_rule = &reg_rule->power_rule;
038659e7
LR
1744 freq_range = &reg_rule->freq_range;
1745
97524820
JD
1746 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1747 /* Check if auto calculation requested */
b0dfd2ea 1748 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
97524820
JD
1749 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
1750
4edd5698
MM
1751 /* If we get a reg_rule we can assume that at least 5Mhz fit */
1752 if (!reg_does_bw_fit(freq_range, MHZ_TO_KHZ(chan->center_freq),
1753 MHZ_TO_KHZ(10)))
1754 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1755 if (!reg_does_bw_fit(freq_range, MHZ_TO_KHZ(chan->center_freq),
1756 MHZ_TO_KHZ(20)))
1757 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1758
1759 if (max_bandwidth_khz < MHZ_TO_KHZ(10))
1760 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1761 if (max_bandwidth_khz < MHZ_TO_KHZ(20))
1762 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
97524820 1763 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
4edd5698 1764 bw_flags |= IEEE80211_CHAN_NO_HT40;
97524820 1765 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
c7a6ee27 1766 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
97524820 1767 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
c7a6ee27 1768 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
1fa25e41 1769
2e18b38f 1770 chan->dfs_state_entered = jiffies;
c7ab5081
AN
1771 chan->dfs_state = NL80211_DFS_USABLE;
1772
1773 chan->beacon_found = false;
db8dfee5
AN
1774
1775 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
1776 chan->flags = chan->orig_flags | bw_flags |
1777 map_regdom_flags(reg_rule->flags);
1778 else
1779 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
1780
1fa25e41 1781 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
279f0f55
FF
1782 chan->max_reg_power = chan->max_power =
1783 (int) MBM_TO_DBM(power_rule->max_eirp);
2e18b38f
AN
1784
1785 if (chan->flags & IEEE80211_CHAN_RADAR) {
1786 if (reg_rule->dfs_cac_ms)
1787 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1788 else
1789 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1790 }
1791
1792 chan->max_power = chan->max_reg_power;
1fa25e41
LR
1793}
1794
fdc9d7b2
JB
1795static void handle_band_custom(struct wiphy *wiphy,
1796 struct ieee80211_supported_band *sband,
1fa25e41
LR
1797 const struct ieee80211_regdomain *regd)
1798{
1799 unsigned int i;
1fa25e41 1800
fdc9d7b2
JB
1801 if (!sband)
1802 return;
1fa25e41
LR
1803
1804 for (i = 0; i < sband->n_channels; i++)
fdc9d7b2 1805 handle_channel_custom(wiphy, &sband->channels[i], regd);
1fa25e41
LR
1806}
1807
1808/* Used by drivers prior to wiphy registration */
1809void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1810 const struct ieee80211_regdomain *regd)
1811{
1812 enum ieee80211_band band;
bbcf3f02 1813 unsigned int bands_set = 0;
ac46d48e 1814
a2f73b6c
LR
1815 WARN(!(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG),
1816 "wiphy should have REGULATORY_CUSTOM_REG\n");
1817 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
222ea581 1818
1fa25e41 1819 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
bbcf3f02
LR
1820 if (!wiphy->bands[band])
1821 continue;
fdc9d7b2 1822 handle_band_custom(wiphy, wiphy->bands[band], regd);
bbcf3f02 1823 bands_set++;
b2e1b302 1824 }
bbcf3f02
LR
1825
1826 /*
1827 * no point in calling this if it won't have any effect
1a919318 1828 * on your device's supported bands.
bbcf3f02
LR
1829 */
1830 WARN_ON(!bands_set);
b2e1b302 1831}
1fa25e41
LR
1832EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1833
b2e253cf
LR
1834static void reg_set_request_processed(void)
1835{
1836 bool need_more_processing = false;
c492db37 1837 struct regulatory_request *lr = get_last_request();
b2e253cf 1838
c492db37 1839 lr->processed = true;
b2e253cf
LR
1840
1841 spin_lock(&reg_requests_lock);
1842 if (!list_empty(&reg_requests_list))
1843 need_more_processing = true;
1844 spin_unlock(&reg_requests_lock);
1845
eeca9fce 1846 cancel_delayed_work(&reg_timeout);
a90c7a31 1847
b2e253cf
LR
1848 if (need_more_processing)
1849 schedule_work(&reg_work);
1850}
1851
b3eb7f3f
LR
1852/**
1853 * reg_process_hint_core - process core regulatory requests
1854 * @pending_request: a pending core regulatory request
1855 *
1856 * The wireless subsystem can use this function to process
1857 * a regulatory request issued by the regulatory core.
1858 *
1859 * Returns one of the different reg request treatment values.
1860 */
1861static enum reg_request_treatment
1862reg_process_hint_core(struct regulatory_request *core_request)
1863{
b3eb7f3f
LR
1864
1865 core_request->intersect = false;
1866 core_request->processed = false;
5ad6ef5e 1867
05f1a3ea 1868 reg_update_last_request(core_request);
b3eb7f3f 1869
fe6631ff 1870 return reg_call_crda(core_request);
b3eb7f3f
LR
1871}
1872
0d97a619
LR
1873static enum reg_request_treatment
1874__reg_process_hint_user(struct regulatory_request *user_request)
1875{
1876 struct regulatory_request *lr = get_last_request();
1877
1878 if (reg_request_cell_base(user_request))
1879 return reg_ignore_cell_hint(user_request);
1880
1881 if (reg_request_cell_base(lr))
1882 return REG_REQ_IGNORE;
1883
1884 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
1885 return REG_REQ_INTERSECT;
1886 /*
1887 * If the user knows better the user should set the regdom
1888 * to their country before the IE is picked up
1889 */
1890 if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
1891 lr->intersect)
1892 return REG_REQ_IGNORE;
1893 /*
1894 * Process user requests only after previous user/driver/core
1895 * requests have been processed
1896 */
1897 if ((lr->initiator == NL80211_REGDOM_SET_BY_CORE ||
1898 lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
1899 lr->initiator == NL80211_REGDOM_SET_BY_USER) &&
1900 regdom_changes(lr->alpha2))
1901 return REG_REQ_IGNORE;
1902
1903 if (!regdom_changes(user_request->alpha2))
1904 return REG_REQ_ALREADY_SET;
1905
1906 return REG_REQ_OK;
1907}
1908
1909/**
1910 * reg_process_hint_user - process user regulatory requests
1911 * @user_request: a pending user regulatory request
1912 *
1913 * The wireless subsystem can use this function to process
1914 * a regulatory request initiated by userspace.
1915 *
1916 * Returns one of the different reg request treatment values.
1917 */
1918static enum reg_request_treatment
1919reg_process_hint_user(struct regulatory_request *user_request)
1920{
1921 enum reg_request_treatment treatment;
0d97a619
LR
1922
1923 treatment = __reg_process_hint_user(user_request);
1924 if (treatment == REG_REQ_IGNORE ||
0c4ddcd2 1925 treatment == REG_REQ_ALREADY_SET) {
c888393b 1926 reg_free_request(user_request);
0d97a619
LR
1927 return treatment;
1928 }
1929
0d97a619
LR
1930 user_request->intersect = treatment == REG_REQ_INTERSECT;
1931 user_request->processed = false;
5ad6ef5e 1932
05f1a3ea 1933 reg_update_last_request(user_request);
0d97a619
LR
1934
1935 user_alpha2[0] = user_request->alpha2[0];
1936 user_alpha2[1] = user_request->alpha2[1];
1937
fe6631ff 1938 return reg_call_crda(user_request);
0d97a619
LR
1939}
1940
21636c7f
LR
1941static enum reg_request_treatment
1942__reg_process_hint_driver(struct regulatory_request *driver_request)
1943{
1944 struct regulatory_request *lr = get_last_request();
1945
1946 if (lr->initiator == NL80211_REGDOM_SET_BY_CORE) {
1947 if (regdom_changes(driver_request->alpha2))
1948 return REG_REQ_OK;
1949 return REG_REQ_ALREADY_SET;
1950 }
1951
1952 /*
1953 * This would happen if you unplug and plug your card
1954 * back in or if you add a new device for which the previously
1955 * loaded card also agrees on the regulatory domain.
1956 */
1957 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1958 !regdom_changes(driver_request->alpha2))
1959 return REG_REQ_ALREADY_SET;
1960
1961 return REG_REQ_INTERSECT;
1962}
1963
1964/**
1965 * reg_process_hint_driver - process driver regulatory requests
1966 * @driver_request: a pending driver regulatory request
1967 *
1968 * The wireless subsystem can use this function to process
1969 * a regulatory request issued by an 802.11 driver.
1970 *
1971 * Returns one of the different reg request treatment values.
1972 */
1973static enum reg_request_treatment
1974reg_process_hint_driver(struct wiphy *wiphy,
1975 struct regulatory_request *driver_request)
1976{
34f05f54 1977 const struct ieee80211_regdomain *regd, *tmp;
21636c7f 1978 enum reg_request_treatment treatment;
21636c7f
LR
1979
1980 treatment = __reg_process_hint_driver(driver_request);
1981
1982 switch (treatment) {
1983 case REG_REQ_OK:
1984 break;
1985 case REG_REQ_IGNORE:
c888393b 1986 reg_free_request(driver_request);
21636c7f
LR
1987 return treatment;
1988 case REG_REQ_INTERSECT:
1989 /* fall through */
1990 case REG_REQ_ALREADY_SET:
1991 regd = reg_copy_regd(get_cfg80211_regdom());
1992 if (IS_ERR(regd)) {
c888393b 1993 reg_free_request(driver_request);
21636c7f
LR
1994 return REG_REQ_IGNORE;
1995 }
34f05f54
AN
1996
1997 tmp = get_wiphy_regdom(wiphy);
21636c7f 1998 rcu_assign_pointer(wiphy->regd, regd);
34f05f54 1999 rcu_free_regdom(tmp);
21636c7f
LR
2000 }
2001
21636c7f
LR
2002
2003 driver_request->intersect = treatment == REG_REQ_INTERSECT;
2004 driver_request->processed = false;
5ad6ef5e 2005
05f1a3ea 2006 reg_update_last_request(driver_request);
21636c7f
LR
2007
2008 /*
2009 * Since CRDA will not be called in this case as we already
2010 * have applied the requested regulatory domain before we just
2011 * inform userspace we have processed the request
2012 */
2013 if (treatment == REG_REQ_ALREADY_SET) {
2014 nl80211_send_reg_change_event(driver_request);
2015 reg_set_request_processed();
2016 return treatment;
2017 }
2018
fe6631ff 2019 return reg_call_crda(driver_request);
21636c7f
LR
2020}
2021
b23e7a9e
LR
2022static enum reg_request_treatment
2023__reg_process_hint_country_ie(struct wiphy *wiphy,
2024 struct regulatory_request *country_ie_request)
2025{
2026 struct wiphy *last_wiphy = NULL;
2027 struct regulatory_request *lr = get_last_request();
2028
2029 if (reg_request_cell_base(lr)) {
2030 /* Trust a Cell base station over the AP's country IE */
2031 if (regdom_changes(country_ie_request->alpha2))
2032 return REG_REQ_IGNORE;
2033 return REG_REQ_ALREADY_SET;
2a901468
LR
2034 } else {
2035 if (wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_IGNORE)
2036 return REG_REQ_IGNORE;
b23e7a9e
LR
2037 }
2038
b23e7a9e
LR
2039 if (unlikely(!is_an_alpha2(country_ie_request->alpha2)))
2040 return -EINVAL;
2f1c6c57
LR
2041
2042 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE)
2043 return REG_REQ_OK;
2044
2045 last_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
2046
2047 if (last_wiphy != wiphy) {
b23e7a9e 2048 /*
2f1c6c57
LR
2049 * Two cards with two APs claiming different
2050 * Country IE alpha2s. We could
2051 * intersect them, but that seems unlikely
2052 * to be correct. Reject second one for now.
b23e7a9e 2053 */
2f1c6c57
LR
2054 if (regdom_changes(country_ie_request->alpha2))
2055 return REG_REQ_IGNORE;
b23e7a9e
LR
2056 return REG_REQ_ALREADY_SET;
2057 }
70dcec5a
EG
2058
2059 if (regdom_changes(country_ie_request->alpha2))
2f1c6c57
LR
2060 return REG_REQ_OK;
2061 return REG_REQ_ALREADY_SET;
b23e7a9e
LR
2062}
2063
d1c96a9a 2064/**
b23e7a9e
LR
2065 * reg_process_hint_country_ie - process regulatory requests from country IEs
2066 * @country_ie_request: a regulatory request from a country IE
d1c96a9a 2067 *
b23e7a9e
LR
2068 * The wireless subsystem can use this function to process
2069 * a regulatory request issued by a country Information Element.
d1c96a9a 2070 *
2f92212b 2071 * Returns one of the different reg request treatment values.
d1c96a9a 2072 */
2f92212b 2073static enum reg_request_treatment
b23e7a9e
LR
2074reg_process_hint_country_ie(struct wiphy *wiphy,
2075 struct regulatory_request *country_ie_request)
b2e1b302 2076{
2f92212b 2077 enum reg_request_treatment treatment;
761cf7ec 2078
b23e7a9e 2079 treatment = __reg_process_hint_country_ie(wiphy, country_ie_request);
9c96477d 2080
2f92212b 2081 switch (treatment) {
2f92212b
JB
2082 case REG_REQ_OK:
2083 break;
b23e7a9e
LR
2084 case REG_REQ_IGNORE:
2085 /* fall through */
2086 case REG_REQ_ALREADY_SET:
c888393b 2087 reg_free_request(country_ie_request);
b23e7a9e
LR
2088 return treatment;
2089 case REG_REQ_INTERSECT:
c888393b 2090 reg_free_request(country_ie_request);
fb1fc7ad 2091 /*
b23e7a9e
LR
2092 * This doesn't happen yet, not sure we
2093 * ever want to support it for this case.
fb1fc7ad 2094 */
b23e7a9e
LR
2095 WARN_ONCE(1, "Unexpected intersection for country IEs");
2096 return REG_REQ_IGNORE;
3e0c3ff3 2097 }
b2e1b302 2098
b23e7a9e
LR
2099 country_ie_request->intersect = false;
2100 country_ie_request->processed = false;
5ad6ef5e 2101
05f1a3ea 2102 reg_update_last_request(country_ie_request);
3e0c3ff3 2103
fe6631ff 2104 return reg_call_crda(country_ie_request);
b2e1b302
LR
2105}
2106
30a548c7 2107/* This processes *all* regulatory hints */
1daa37c7 2108static void reg_process_hint(struct regulatory_request *reg_request)
fe33eb39 2109{
fe33eb39 2110 struct wiphy *wiphy = NULL;
b3eb7f3f 2111 enum reg_request_treatment treatment;
fe33eb39 2112
f4173766 2113 if (reg_request->wiphy_idx != WIPHY_IDX_INVALID)
fe33eb39
LR
2114 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
2115
b3eb7f3f
LR
2116 switch (reg_request->initiator) {
2117 case NL80211_REGDOM_SET_BY_CORE:
2118 reg_process_hint_core(reg_request);
2119 return;
2120 case NL80211_REGDOM_SET_BY_USER:
841b351c 2121 reg_process_hint_user(reg_request);
0d97a619 2122 return;
b3eb7f3f 2123 case NL80211_REGDOM_SET_BY_DRIVER:
772f0389
IP
2124 if (!wiphy)
2125 goto out_free;
21636c7f
LR
2126 treatment = reg_process_hint_driver(wiphy, reg_request);
2127 break;
b3eb7f3f 2128 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
772f0389
IP
2129 if (!wiphy)
2130 goto out_free;
b23e7a9e 2131 treatment = reg_process_hint_country_ie(wiphy, reg_request);
b3eb7f3f
LR
2132 break;
2133 default:
2134 WARN(1, "invalid initiator %d\n", reg_request->initiator);
772f0389 2135 goto out_free;
b3eb7f3f
LR
2136 }
2137
841b351c
JL
2138 /* This is required so that the orig_* parameters are saved.
2139 * NOTE: treatment must be set for any case that reaches here!
2140 */
b23e7a9e 2141 if (treatment == REG_REQ_ALREADY_SET && wiphy &&
ad932f04 2142 wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
b23e7a9e 2143 wiphy_update_regulatory(wiphy, reg_request->initiator);
ad932f04
AN
2144 reg_check_channels();
2145 }
772f0389
IP
2146
2147 return;
2148
2149out_free:
c888393b 2150 reg_free_request(reg_request);
fe33eb39
LR
2151}
2152
ef51fb1d
AN
2153static bool reg_only_self_managed_wiphys(void)
2154{
2155 struct cfg80211_registered_device *rdev;
2156 struct wiphy *wiphy;
2157 bool self_managed_found = false;
2158
2159 ASSERT_RTNL();
2160
2161 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2162 wiphy = &rdev->wiphy;
2163 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
2164 self_managed_found = true;
2165 else
2166 return false;
2167 }
2168
2169 /* make sure at least one self-managed wiphy exists */
2170 return self_managed_found;
2171}
2172
b2e253cf
LR
2173/*
2174 * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
2175 * Regulatory hints come on a first come first serve basis and we
2176 * must process each one atomically.
2177 */
fe33eb39 2178static void reg_process_pending_hints(void)
b0e2880b 2179{
c492db37 2180 struct regulatory_request *reg_request, *lr;
fe33eb39 2181
c492db37 2182 lr = get_last_request();
b0e2880b 2183
b2e253cf 2184 /* When last_request->processed becomes true this will be rescheduled */
c492db37 2185 if (lr && !lr->processed) {
96cce12f 2186 reg_process_hint(lr);
5fe231e8 2187 return;
b2e253cf
LR
2188 }
2189
fe33eb39 2190 spin_lock(&reg_requests_lock);
fe33eb39 2191
b2e253cf 2192 if (list_empty(&reg_requests_list)) {
d951c1dd 2193 spin_unlock(&reg_requests_lock);
5fe231e8 2194 return;
fe33eb39 2195 }
b2e253cf
LR
2196
2197 reg_request = list_first_entry(&reg_requests_list,
2198 struct regulatory_request,
2199 list);
2200 list_del_init(&reg_request->list);
2201
fe33eb39 2202 spin_unlock(&reg_requests_lock);
b0e2880b 2203
ef51fb1d
AN
2204 if (reg_only_self_managed_wiphys()) {
2205 reg_free_request(reg_request);
2206 return;
2207 }
2208
1daa37c7 2209 reg_process_hint(reg_request);
2e54a689
B
2210
2211 lr = get_last_request();
2212
2213 spin_lock(&reg_requests_lock);
2214 if (!list_empty(&reg_requests_list) && lr && lr->processed)
2215 schedule_work(&reg_work);
2216 spin_unlock(&reg_requests_lock);
fe33eb39
LR
2217}
2218
e38f8a7a
LR
2219/* Processes beacon hints -- this has nothing to do with country IEs */
2220static void reg_process_pending_beacon_hints(void)
2221{
79c97e97 2222 struct cfg80211_registered_device *rdev;
e38f8a7a
LR
2223 struct reg_beacon *pending_beacon, *tmp;
2224
e38f8a7a
LR
2225 /* This goes through the _pending_ beacon list */
2226 spin_lock_bh(&reg_pending_beacons_lock);
2227
e38f8a7a
LR
2228 list_for_each_entry_safe(pending_beacon, tmp,
2229 &reg_pending_beacons, list) {
e38f8a7a
LR
2230 list_del_init(&pending_beacon->list);
2231
2232 /* Applies the beacon hint to current wiphys */
79c97e97
JB
2233 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
2234 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
e38f8a7a
LR
2235
2236 /* Remembers the beacon hint for new wiphys or reg changes */
2237 list_add_tail(&pending_beacon->list, &reg_beacon_list);
2238 }
2239
2240 spin_unlock_bh(&reg_pending_beacons_lock);
e38f8a7a
LR
2241}
2242
b0d7aa59
JD
2243static void reg_process_self_managed_hints(void)
2244{
2245 struct cfg80211_registered_device *rdev;
2246 struct wiphy *wiphy;
2247 const struct ieee80211_regdomain *tmp;
2248 const struct ieee80211_regdomain *regd;
2249 enum ieee80211_band band;
2250 struct regulatory_request request = {};
2251
2252 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2253 wiphy = &rdev->wiphy;
2254
2255 spin_lock(&reg_requests_lock);
2256 regd = rdev->requested_regd;
2257 rdev->requested_regd = NULL;
2258 spin_unlock(&reg_requests_lock);
2259
2260 if (regd == NULL)
2261 continue;
2262
2263 tmp = get_wiphy_regdom(wiphy);
2264 rcu_assign_pointer(wiphy->regd, regd);
2265 rcu_free_regdom(tmp);
2266
2267 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
2268 handle_band_custom(wiphy, wiphy->bands[band], regd);
2269
2270 reg_process_ht_flags(wiphy);
2271
2272 request.wiphy_idx = get_wiphy_idx(wiphy);
2273 request.alpha2[0] = regd->alpha2[0];
2274 request.alpha2[1] = regd->alpha2[1];
2275 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
2276
2277 nl80211_send_wiphy_reg_change_event(&request);
2278 }
2279
2280 reg_check_channels();
2281}
2282
fe33eb39
LR
2283static void reg_todo(struct work_struct *work)
2284{
5fe231e8 2285 rtnl_lock();
fe33eb39 2286 reg_process_pending_hints();
e38f8a7a 2287 reg_process_pending_beacon_hints();
b0d7aa59 2288 reg_process_self_managed_hints();
5fe231e8 2289 rtnl_unlock();
fe33eb39
LR
2290}
2291
fe33eb39
LR
2292static void queue_regulatory_request(struct regulatory_request *request)
2293{
d4f2c881
JB
2294 request->alpha2[0] = toupper(request->alpha2[0]);
2295 request->alpha2[1] = toupper(request->alpha2[1]);
c61029c7 2296
fe33eb39
LR
2297 spin_lock(&reg_requests_lock);
2298 list_add_tail(&request->list, &reg_requests_list);
2299 spin_unlock(&reg_requests_lock);
2300
2301 schedule_work(&reg_work);
2302}
2303
09d989d1
LR
2304/*
2305 * Core regulatory hint -- happens during cfg80211_init()
2306 * and when we restore regulatory settings.
2307 */
ba25c141
LR
2308static int regulatory_hint_core(const char *alpha2)
2309{
2310 struct regulatory_request *request;
2311
1a919318 2312 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
ba25c141
LR
2313 if (!request)
2314 return -ENOMEM;
2315
2316 request->alpha2[0] = alpha2[0];
2317 request->alpha2[1] = alpha2[1];
7db90f4a 2318 request->initiator = NL80211_REGDOM_SET_BY_CORE;
ba25c141 2319
31e99729 2320 queue_regulatory_request(request);
5078b2e3 2321
fe33eb39 2322 return 0;
ba25c141
LR
2323}
2324
fe33eb39 2325/* User hints */
57b5ce07
LR
2326int regulatory_hint_user(const char *alpha2,
2327 enum nl80211_user_reg_hint_type user_reg_hint_type)
b2e1b302 2328{
fe33eb39
LR
2329 struct regulatory_request *request;
2330
fdc9d7b2
JB
2331 if (WARN_ON(!alpha2))
2332 return -EINVAL;
b2e1b302 2333
fe33eb39
LR
2334 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2335 if (!request)
2336 return -ENOMEM;
2337
f4173766 2338 request->wiphy_idx = WIPHY_IDX_INVALID;
fe33eb39
LR
2339 request->alpha2[0] = alpha2[0];
2340 request->alpha2[1] = alpha2[1];
e12822e1 2341 request->initiator = NL80211_REGDOM_SET_BY_USER;
57b5ce07 2342 request->user_reg_hint_type = user_reg_hint_type;
fe33eb39 2343
c37722bd
I
2344 /* Allow calling CRDA again */
2345 reg_crda_timeouts = 0;
2346
fe33eb39
LR
2347 queue_regulatory_request(request);
2348
2349 return 0;
2350}
2351
05050753 2352int regulatory_hint_indoor(bool is_indoor, u32 portid)
52616f2b 2353{
05050753 2354 spin_lock(&reg_indoor_lock);
52616f2b 2355
05050753
I
2356 /* It is possible that more than one user space process is trying to
2357 * configure the indoor setting. To handle such cases, clear the indoor
2358 * setting in case that some process does not think that the device
2359 * is operating in an indoor environment. In addition, if a user space
2360 * process indicates that it is controlling the indoor setting, save its
2361 * portid, i.e., make it the owner.
2362 */
2363 reg_is_indoor = is_indoor;
2364 if (reg_is_indoor) {
2365 if (!reg_is_indoor_portid)
2366 reg_is_indoor_portid = portid;
2367 } else {
2368 reg_is_indoor_portid = 0;
2369 }
52616f2b 2370
05050753 2371 spin_unlock(&reg_indoor_lock);
52616f2b 2372
05050753
I
2373 if (!is_indoor)
2374 reg_check_channels();
52616f2b
IP
2375
2376 return 0;
2377}
2378
05050753
I
2379void regulatory_netlink_notify(u32 portid)
2380{
2381 spin_lock(&reg_indoor_lock);
2382
2383 if (reg_is_indoor_portid != portid) {
2384 spin_unlock(&reg_indoor_lock);
2385 return;
2386 }
2387
2388 reg_is_indoor = false;
2389 reg_is_indoor_portid = 0;
2390
2391 spin_unlock(&reg_indoor_lock);
2392
2393 reg_check_channels();
2394}
2395
fe33eb39
LR
2396/* Driver hints */
2397int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
2398{
2399 struct regulatory_request *request;
2400
fdc9d7b2
JB
2401 if (WARN_ON(!alpha2 || !wiphy))
2402 return -EINVAL;
fe33eb39 2403
4f7b9140
LR
2404 wiphy->regulatory_flags &= ~REGULATORY_CUSTOM_REG;
2405
fe33eb39
LR
2406 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2407 if (!request)
2408 return -ENOMEM;
2409
2410 request->wiphy_idx = get_wiphy_idx(wiphy);
2411
fe33eb39
LR
2412 request->alpha2[0] = alpha2[0];
2413 request->alpha2[1] = alpha2[1];
7db90f4a 2414 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
fe33eb39 2415
c37722bd
I
2416 /* Allow calling CRDA again */
2417 reg_crda_timeouts = 0;
2418
fe33eb39
LR
2419 queue_regulatory_request(request);
2420
2421 return 0;
b2e1b302
LR
2422}
2423EXPORT_SYMBOL(regulatory_hint);
2424
789fd033
LR
2425void regulatory_hint_country_ie(struct wiphy *wiphy, enum ieee80211_band band,
2426 const u8 *country_ie, u8 country_ie_len)
3f2355cb 2427{
3f2355cb 2428 char alpha2[2];
3f2355cb 2429 enum environment_cap env = ENVIRON_ANY;
db2424c5 2430 struct regulatory_request *request = NULL, *lr;
d335fe63 2431
3f2355cb
LR
2432 /* IE len must be evenly divisible by 2 */
2433 if (country_ie_len & 0x01)
db2424c5 2434 return;
3f2355cb
LR
2435
2436 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
db2424c5
JB
2437 return;
2438
2439 request = kzalloc(sizeof(*request), GFP_KERNEL);
2440 if (!request)
2441 return;
3f2355cb 2442
3f2355cb
LR
2443 alpha2[0] = country_ie[0];
2444 alpha2[1] = country_ie[1];
2445
2446 if (country_ie[2] == 'I')
2447 env = ENVIRON_INDOOR;
2448 else if (country_ie[2] == 'O')
2449 env = ENVIRON_OUTDOOR;
2450
db2424c5
JB
2451 rcu_read_lock();
2452 lr = get_last_request();
2453
2454 if (unlikely(!lr))
2455 goto out;
2456
fb1fc7ad 2457 /*
8b19e6ca 2458 * We will run this only upon a successful connection on cfg80211.
4b44c8bc 2459 * We leave conflict resolution to the workqueue, where can hold
5fe231e8 2460 * the RTNL.
fb1fc7ad 2461 */
c492db37
JB
2462 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
2463 lr->wiphy_idx != WIPHY_IDX_INVALID)
4b44c8bc 2464 goto out;
3f2355cb 2465
fe33eb39 2466 request->wiphy_idx = get_wiphy_idx(wiphy);
4f366c5d
JL
2467 request->alpha2[0] = alpha2[0];
2468 request->alpha2[1] = alpha2[1];
7db90f4a 2469 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
fe33eb39
LR
2470 request->country_ie_env = env;
2471
c37722bd
I
2472 /* Allow calling CRDA again */
2473 reg_crda_timeouts = 0;
2474
fe33eb39 2475 queue_regulatory_request(request);
db2424c5 2476 request = NULL;
3f2355cb 2477out:
db2424c5
JB
2478 kfree(request);
2479 rcu_read_unlock();
3f2355cb 2480}
b2e1b302 2481
09d989d1
LR
2482static void restore_alpha2(char *alpha2, bool reset_user)
2483{
2484 /* indicates there is no alpha2 to consider for restoration */
2485 alpha2[0] = '9';
2486 alpha2[1] = '7';
2487
2488 /* The user setting has precedence over the module parameter */
2489 if (is_user_regdom_saved()) {
2490 /* Unless we're asked to ignore it and reset it */
2491 if (reset_user) {
1a919318 2492 REG_DBG_PRINT("Restoring regulatory settings including user preference\n");
09d989d1
LR
2493 user_alpha2[0] = '9';
2494 user_alpha2[1] = '7';
2495
2496 /*
2497 * If we're ignoring user settings, we still need to
2498 * check the module parameter to ensure we put things
2499 * back as they were for a full restore.
2500 */
2501 if (!is_world_regdom(ieee80211_regdom)) {
1a919318
JB
2502 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2503 ieee80211_regdom[0], ieee80211_regdom[1]);
09d989d1
LR
2504 alpha2[0] = ieee80211_regdom[0];
2505 alpha2[1] = ieee80211_regdom[1];
2506 }
2507 } else {
1a919318
JB
2508 REG_DBG_PRINT("Restoring regulatory settings while preserving user preference for: %c%c\n",
2509 user_alpha2[0], user_alpha2[1]);
09d989d1
LR
2510 alpha2[0] = user_alpha2[0];
2511 alpha2[1] = user_alpha2[1];
2512 }
2513 } else if (!is_world_regdom(ieee80211_regdom)) {
1a919318
JB
2514 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2515 ieee80211_regdom[0], ieee80211_regdom[1]);
09d989d1
LR
2516 alpha2[0] = ieee80211_regdom[0];
2517 alpha2[1] = ieee80211_regdom[1];
2518 } else
d91e41b6 2519 REG_DBG_PRINT("Restoring regulatory settings\n");
09d989d1
LR
2520}
2521
5ce543d1
RM
2522static void restore_custom_reg_settings(struct wiphy *wiphy)
2523{
2524 struct ieee80211_supported_band *sband;
2525 enum ieee80211_band band;
2526 struct ieee80211_channel *chan;
2527 int i;
2528
2529 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
2530 sband = wiphy->bands[band];
2531 if (!sband)
2532 continue;
2533 for (i = 0; i < sband->n_channels; i++) {
2534 chan = &sband->channels[i];
2535 chan->flags = chan->orig_flags;
2536 chan->max_antenna_gain = chan->orig_mag;
2537 chan->max_power = chan->orig_mpwr;
899852af 2538 chan->beacon_found = false;
5ce543d1
RM
2539 }
2540 }
2541}
2542
09d989d1
LR
2543/*
2544 * Restoring regulatory settings involves ingoring any
2545 * possibly stale country IE information and user regulatory
2546 * settings if so desired, this includes any beacon hints
2547 * learned as we could have traveled outside to another country
2548 * after disconnection. To restore regulatory settings we do
2549 * exactly what we did at bootup:
2550 *
2551 * - send a core regulatory hint
2552 * - send a user regulatory hint if applicable
2553 *
2554 * Device drivers that send a regulatory hint for a specific country
2555 * keep their own regulatory domain on wiphy->regd so that does does
2556 * not need to be remembered.
2557 */
2558static void restore_regulatory_settings(bool reset_user)
2559{
2560 char alpha2[2];
cee0bec5 2561 char world_alpha2[2];
09d989d1 2562 struct reg_beacon *reg_beacon, *btmp;
14609555 2563 LIST_HEAD(tmp_reg_req_list);
5ce543d1 2564 struct cfg80211_registered_device *rdev;
09d989d1 2565
5fe231e8
JB
2566 ASSERT_RTNL();
2567
05050753
I
2568 /*
2569 * Clear the indoor setting in case that it is not controlled by user
2570 * space, as otherwise there is no guarantee that the device is still
2571 * operating in an indoor environment.
2572 */
2573 spin_lock(&reg_indoor_lock);
2574 if (reg_is_indoor && !reg_is_indoor_portid) {
2575 reg_is_indoor = false;
2576 reg_check_channels();
2577 }
2578 spin_unlock(&reg_indoor_lock);
52616f2b 2579
2d319867 2580 reset_regdomains(true, &world_regdom);
09d989d1
LR
2581 restore_alpha2(alpha2, reset_user);
2582
14609555
LR
2583 /*
2584 * If there's any pending requests we simply
2585 * stash them to a temporary pending queue and
2586 * add then after we've restored regulatory
2587 * settings.
2588 */
2589 spin_lock(&reg_requests_lock);
eeca9fce 2590 list_splice_tail_init(&reg_requests_list, &tmp_reg_req_list);
14609555
LR
2591 spin_unlock(&reg_requests_lock);
2592
09d989d1
LR
2593 /* Clear beacon hints */
2594 spin_lock_bh(&reg_pending_beacons_lock);
fea9bced
JB
2595 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
2596 list_del(&reg_beacon->list);
2597 kfree(reg_beacon);
09d989d1
LR
2598 }
2599 spin_unlock_bh(&reg_pending_beacons_lock);
2600
fea9bced
JB
2601 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
2602 list_del(&reg_beacon->list);
2603 kfree(reg_beacon);
09d989d1
LR
2604 }
2605
2606 /* First restore to the basic regulatory settings */
379b82f4
JB
2607 world_alpha2[0] = cfg80211_world_regdom->alpha2[0];
2608 world_alpha2[1] = cfg80211_world_regdom->alpha2[1];
09d989d1 2609
5ce543d1 2610 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
b0d7aa59
JD
2611 if (rdev->wiphy.regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
2612 continue;
a2f73b6c 2613 if (rdev->wiphy.regulatory_flags & REGULATORY_CUSTOM_REG)
5ce543d1
RM
2614 restore_custom_reg_settings(&rdev->wiphy);
2615 }
2616
cee0bec5 2617 regulatory_hint_core(world_alpha2);
09d989d1
LR
2618
2619 /*
2620 * This restores the ieee80211_regdom module parameter
2621 * preference or the last user requested regulatory
2622 * settings, user regulatory settings takes precedence.
2623 */
2624 if (is_an_alpha2(alpha2))
549cc1c5 2625 regulatory_hint_user(alpha2, NL80211_USER_REG_HINT_USER);
09d989d1 2626
14609555 2627 spin_lock(&reg_requests_lock);
11cff96c 2628 list_splice_tail_init(&tmp_reg_req_list, &reg_requests_list);
14609555
LR
2629 spin_unlock(&reg_requests_lock);
2630
14609555
LR
2631 REG_DBG_PRINT("Kicking the queue\n");
2632
2633 schedule_work(&reg_work);
2634}
09d989d1
LR
2635
2636void regulatory_hint_disconnect(void)
2637{
1a919318 2638 REG_DBG_PRINT("All devices are disconnected, going to restore regulatory settings\n");
09d989d1
LR
2639 restore_regulatory_settings(false);
2640}
2641
e38f8a7a
LR
2642static bool freq_is_chan_12_13_14(u16 freq)
2643{
59eb21a6
BR
2644 if (freq == ieee80211_channel_to_frequency(12, IEEE80211_BAND_2GHZ) ||
2645 freq == ieee80211_channel_to_frequency(13, IEEE80211_BAND_2GHZ) ||
2646 freq == ieee80211_channel_to_frequency(14, IEEE80211_BAND_2GHZ))
e38f8a7a
LR
2647 return true;
2648 return false;
2649}
2650
3ebfa6e7
LR
2651static bool pending_reg_beacon(struct ieee80211_channel *beacon_chan)
2652{
2653 struct reg_beacon *pending_beacon;
2654
2655 list_for_each_entry(pending_beacon, &reg_pending_beacons, list)
2656 if (beacon_chan->center_freq ==
2657 pending_beacon->chan.center_freq)
2658 return true;
2659 return false;
2660}
2661
e38f8a7a
LR
2662int regulatory_hint_found_beacon(struct wiphy *wiphy,
2663 struct ieee80211_channel *beacon_chan,
2664 gfp_t gfp)
2665{
2666 struct reg_beacon *reg_beacon;
3ebfa6e7 2667 bool processing;
e38f8a7a 2668
1a919318
JB
2669 if (beacon_chan->beacon_found ||
2670 beacon_chan->flags & IEEE80211_CHAN_RADAR ||
e38f8a7a 2671 (beacon_chan->band == IEEE80211_BAND_2GHZ &&
1a919318 2672 !freq_is_chan_12_13_14(beacon_chan->center_freq)))
e38f8a7a
LR
2673 return 0;
2674
3ebfa6e7
LR
2675 spin_lock_bh(&reg_pending_beacons_lock);
2676 processing = pending_reg_beacon(beacon_chan);
2677 spin_unlock_bh(&reg_pending_beacons_lock);
2678
2679 if (processing)
e38f8a7a
LR
2680 return 0;
2681
2682 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
2683 if (!reg_beacon)
2684 return -ENOMEM;
2685
1a919318 2686 REG_DBG_PRINT("Found new beacon on frequency: %d MHz (Ch %d) on %s\n",
4113f751
LR
2687 beacon_chan->center_freq,
2688 ieee80211_frequency_to_channel(beacon_chan->center_freq),
2689 wiphy_name(wiphy));
2690
e38f8a7a 2691 memcpy(&reg_beacon->chan, beacon_chan,
1a919318 2692 sizeof(struct ieee80211_channel));
e38f8a7a
LR
2693
2694 /*
2695 * Since we can be called from BH or and non-BH context
2696 * we must use spin_lock_bh()
2697 */
2698 spin_lock_bh(&reg_pending_beacons_lock);
2699 list_add_tail(&reg_beacon->list, &reg_pending_beacons);
2700 spin_unlock_bh(&reg_pending_beacons_lock);
2701
2702 schedule_work(&reg_work);
2703
2704 return 0;
2705}
2706
a3d2eaf0 2707static void print_rd_rules(const struct ieee80211_regdomain *rd)
b2e1b302
LR
2708{
2709 unsigned int i;
a3d2eaf0
JB
2710 const struct ieee80211_reg_rule *reg_rule = NULL;
2711 const struct ieee80211_freq_range *freq_range = NULL;
2712 const struct ieee80211_power_rule *power_rule = NULL;
089027e5 2713 char bw[32], cac_time[32];
b2e1b302 2714
089027e5 2715 pr_info(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n");
b2e1b302
LR
2716
2717 for (i = 0; i < rd->n_reg_rules; i++) {
2718 reg_rule = &rd->reg_rules[i];
2719 freq_range = &reg_rule->freq_range;
2720 power_rule = &reg_rule->power_rule;
2721
b0dfd2ea
JD
2722 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
2723 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
2724 freq_range->max_bandwidth_khz,
97524820
JD
2725 reg_get_max_bandwidth(rd, reg_rule));
2726 else
b0dfd2ea 2727 snprintf(bw, sizeof(bw), "%d KHz",
97524820
JD
2728 freq_range->max_bandwidth_khz);
2729
089027e5
JD
2730 if (reg_rule->flags & NL80211_RRF_DFS)
2731 scnprintf(cac_time, sizeof(cac_time), "%u s",
2732 reg_rule->dfs_cac_ms/1000);
2733 else
2734 scnprintf(cac_time, sizeof(cac_time), "N/A");
2735
2736
fb1fc7ad
LR
2737 /*
2738 * There may not be documentation for max antenna gain
2739 * in certain regions
2740 */
b2e1b302 2741 if (power_rule->max_antenna_gain)
089027e5 2742 pr_info(" (%d KHz - %d KHz @ %s), (%d mBi, %d mBm), (%s)\n",
b2e1b302
LR
2743 freq_range->start_freq_khz,
2744 freq_range->end_freq_khz,
97524820 2745 bw,
b2e1b302 2746 power_rule->max_antenna_gain,
089027e5
JD
2747 power_rule->max_eirp,
2748 cac_time);
b2e1b302 2749 else
089027e5 2750 pr_info(" (%d KHz - %d KHz @ %s), (N/A, %d mBm), (%s)\n",
b2e1b302
LR
2751 freq_range->start_freq_khz,
2752 freq_range->end_freq_khz,
97524820 2753 bw,
089027e5
JD
2754 power_rule->max_eirp,
2755 cac_time);
b2e1b302
LR
2756 }
2757}
2758
4c7d3982 2759bool reg_supported_dfs_region(enum nl80211_dfs_regions dfs_region)
8b60b078
LR
2760{
2761 switch (dfs_region) {
2762 case NL80211_DFS_UNSET:
2763 case NL80211_DFS_FCC:
2764 case NL80211_DFS_ETSI:
2765 case NL80211_DFS_JP:
2766 return true;
2767 default:
2768 REG_DBG_PRINT("Ignoring uknown DFS master region: %d\n",
2769 dfs_region);
2770 return false;
2771 }
2772}
2773
a3d2eaf0 2774static void print_regdomain(const struct ieee80211_regdomain *rd)
b2e1b302 2775{
c492db37 2776 struct regulatory_request *lr = get_last_request();
b2e1b302 2777
3f2355cb 2778 if (is_intersected_alpha2(rd->alpha2)) {
c492db37 2779 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
79c97e97 2780 struct cfg80211_registered_device *rdev;
c492db37 2781 rdev = cfg80211_rdev_by_wiphy_idx(lr->wiphy_idx);
79c97e97 2782 if (rdev) {
e9c0268f 2783 pr_info("Current regulatory domain updated by AP to: %c%c\n",
79c97e97
JB
2784 rdev->country_ie_alpha2[0],
2785 rdev->country_ie_alpha2[1]);
3f2355cb 2786 } else
e9c0268f 2787 pr_info("Current regulatory domain intersected:\n");
3f2355cb 2788 } else
e9c0268f 2789 pr_info("Current regulatory domain intersected:\n");
1a919318 2790 } else if (is_world_regdom(rd->alpha2)) {
e9c0268f 2791 pr_info("World regulatory domain updated:\n");
1a919318 2792 } else {
b2e1b302 2793 if (is_unknown_alpha2(rd->alpha2))
e9c0268f 2794 pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n");
57b5ce07 2795 else {
c492db37 2796 if (reg_request_cell_base(lr))
1a919318 2797 pr_info("Regulatory domain changed to country: %c%c by Cell Station\n",
57b5ce07
LR
2798 rd->alpha2[0], rd->alpha2[1]);
2799 else
1a919318 2800 pr_info("Regulatory domain changed to country: %c%c\n",
57b5ce07
LR
2801 rd->alpha2[0], rd->alpha2[1]);
2802 }
b2e1b302 2803 }
1a919318 2804
3ef121b5 2805 pr_info(" DFS Master region: %s", reg_dfs_region_str(rd->dfs_region));
b2e1b302
LR
2806 print_rd_rules(rd);
2807}
2808
2df78167 2809static void print_regdomain_info(const struct ieee80211_regdomain *rd)
b2e1b302 2810{
e9c0268f 2811 pr_info("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
b2e1b302
LR
2812 print_rd_rules(rd);
2813}
2814
3b9e5aca
LR
2815static int reg_set_rd_core(const struct ieee80211_regdomain *rd)
2816{
2817 if (!is_world_regdom(rd->alpha2))
2818 return -EINVAL;
2819 update_world_regdomain(rd);
2820 return 0;
2821}
2822
84721d44
LR
2823static int reg_set_rd_user(const struct ieee80211_regdomain *rd,
2824 struct regulatory_request *user_request)
2825{
2826 const struct ieee80211_regdomain *intersected_rd = NULL;
2827
84721d44
LR
2828 if (!regdom_changes(rd->alpha2))
2829 return -EALREADY;
2830
2831 if (!is_valid_rd(rd)) {
2832 pr_err("Invalid regulatory domain detected:\n");
2833 print_regdomain_info(rd);
2834 return -EINVAL;
2835 }
2836
2837 if (!user_request->intersect) {
2838 reset_regdomains(false, rd);
2839 return 0;
2840 }
2841
2842 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2843 if (!intersected_rd)
2844 return -EINVAL;
2845
2846 kfree(rd);
2847 rd = NULL;
2848 reset_regdomains(false, intersected_rd);
2849
2850 return 0;
2851}
2852
f5fe3247
LR
2853static int reg_set_rd_driver(const struct ieee80211_regdomain *rd,
2854 struct regulatory_request *driver_request)
b2e1b302 2855{
e9763c3c 2856 const struct ieee80211_regdomain *regd;
9c96477d 2857 const struct ieee80211_regdomain *intersected_rd = NULL;
f5fe3247 2858 const struct ieee80211_regdomain *tmp;
806a9e39 2859 struct wiphy *request_wiphy;
6913b49a 2860
f5fe3247 2861 if (is_world_regdom(rd->alpha2))
b2e1b302
LR
2862 return -EINVAL;
2863
f5fe3247
LR
2864 if (!regdom_changes(rd->alpha2))
2865 return -EALREADY;
b2e1b302 2866
8375af3b 2867 if (!is_valid_rd(rd)) {
e9c0268f 2868 pr_err("Invalid regulatory domain detected:\n");
8375af3b
LR
2869 print_regdomain_info(rd);
2870 return -EINVAL;
b2e1b302
LR
2871 }
2872
f5fe3247
LR
2873 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx);
2874 if (!request_wiphy) {
845f3351
SD
2875 queue_delayed_work(system_power_efficient_wq,
2876 &reg_timeout, 0);
de3584bd
JB
2877 return -ENODEV;
2878 }
806a9e39 2879
f5fe3247 2880 if (!driver_request->intersect) {
558f6d32
LR
2881 if (request_wiphy->regd)
2882 return -EALREADY;
3e0c3ff3 2883
e9763c3c
JB
2884 regd = reg_copy_regd(rd);
2885 if (IS_ERR(regd))
2886 return PTR_ERR(regd);
3e0c3ff3 2887
458f4f9e 2888 rcu_assign_pointer(request_wiphy->regd, regd);
379b82f4 2889 reset_regdomains(false, rd);
b8295acd
LR
2890 return 0;
2891 }
2892
f5fe3247
LR
2893 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2894 if (!intersected_rd)
2895 return -EINVAL;
b8295acd 2896
f5fe3247
LR
2897 /*
2898 * We can trash what CRDA provided now.
2899 * However if a driver requested this specific regulatory
2900 * domain we keep it for its private use
2901 */
2902 tmp = get_wiphy_regdom(request_wiphy);
2903 rcu_assign_pointer(request_wiphy->regd, rd);
2904 rcu_free_regdom(tmp);
b8295acd 2905
f5fe3247 2906 rd = NULL;
b7566fc3 2907
f5fe3247 2908 reset_regdomains(false, intersected_rd);
3e0c3ff3 2909
f5fe3247
LR
2910 return 0;
2911}
2912
01992406
LR
2913static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
2914 struct regulatory_request *country_ie_request)
f5fe3247
LR
2915{
2916 struct wiphy *request_wiphy;
b8295acd 2917
f5fe3247
LR
2918 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
2919 !is_unknown_alpha2(rd->alpha2))
2920 return -EINVAL;
b8295acd 2921
f5fe3247
LR
2922 /*
2923 * Lets only bother proceeding on the same alpha2 if the current
2924 * rd is non static (it means CRDA was present and was used last)
2925 * and the pending request came in from a country IE
2926 */
2927
2928 if (!is_valid_rd(rd)) {
2929 pr_err("Invalid regulatory domain detected:\n");
2930 print_regdomain_info(rd);
2931 return -EINVAL;
9c96477d
LR
2932 }
2933
01992406 2934 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx);
f5fe3247 2935 if (!request_wiphy) {
845f3351
SD
2936 queue_delayed_work(system_power_efficient_wq,
2937 &reg_timeout, 0);
f5fe3247
LR
2938 return -ENODEV;
2939 }
b2e1b302 2940
01992406 2941 if (country_ie_request->intersect)
f5fe3247
LR
2942 return -EINVAL;
2943
2944 reset_regdomains(false, rd);
2945 return 0;
2946}
b2e1b302 2947
fb1fc7ad
LR
2948/*
2949 * Use this call to set the current regulatory domain. Conflicts with
b2e1b302 2950 * multiple drivers can be ironed out later. Caller must've already
458f4f9e 2951 * kmalloc'd the rd structure.
fb1fc7ad 2952 */
c37722bd
I
2953int set_regdom(const struct ieee80211_regdomain *rd,
2954 enum ieee80211_regd_source regd_src)
b2e1b302 2955{
c492db37 2956 struct regulatory_request *lr;
092008ab 2957 bool user_reset = false;
b2e1b302
LR
2958 int r;
2959
3b9e5aca
LR
2960 if (!reg_is_valid_request(rd->alpha2)) {
2961 kfree(rd);
2962 return -EINVAL;
2963 }
2964
c37722bd
I
2965 if (regd_src == REGD_SOURCE_CRDA)
2966 reg_crda_timeouts = 0;
2967
c492db37 2968 lr = get_last_request();
abc7381b 2969
b2e1b302 2970 /* Note that this doesn't update the wiphys, this is done below */
3b9e5aca
LR
2971 switch (lr->initiator) {
2972 case NL80211_REGDOM_SET_BY_CORE:
2973 r = reg_set_rd_core(rd);
2974 break;
2975 case NL80211_REGDOM_SET_BY_USER:
84721d44 2976 r = reg_set_rd_user(rd, lr);
092008ab 2977 user_reset = true;
84721d44 2978 break;
3b9e5aca 2979 case NL80211_REGDOM_SET_BY_DRIVER:
f5fe3247
LR
2980 r = reg_set_rd_driver(rd, lr);
2981 break;
3b9e5aca 2982 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
01992406 2983 r = reg_set_rd_country_ie(rd, lr);
3b9e5aca
LR
2984 break;
2985 default:
2986 WARN(1, "invalid initiator %d\n", lr->initiator);
2987 return -EINVAL;
2988 }
2989
d2372b31 2990 if (r) {
092008ab
JD
2991 switch (r) {
2992 case -EALREADY:
95908535 2993 reg_set_request_processed();
092008ab
JD
2994 break;
2995 default:
2996 /* Back to world regulatory in case of errors */
2997 restore_regulatory_settings(user_reset);
2998 }
95908535 2999
d2372b31 3000 kfree(rd);
38fd2143 3001 return r;
d2372b31 3002 }
b2e1b302 3003
b2e1b302 3004 /* This would make this whole thing pointless */
38fd2143
JB
3005 if (WARN_ON(!lr->intersect && rd != get_cfg80211_regdom()))
3006 return -EINVAL;
b2e1b302
LR
3007
3008 /* update all wiphys now with the new established regulatory domain */
c492db37 3009 update_all_wiphy_regulatory(lr->initiator);
b2e1b302 3010
458f4f9e 3011 print_regdomain(get_cfg80211_regdom());
b2e1b302 3012
c492db37 3013 nl80211_send_reg_change_event(lr);
73d54c9e 3014
b2e253cf
LR
3015 reg_set_request_processed();
3016
38fd2143 3017 return 0;
b2e1b302
LR
3018}
3019
2c3e861c
AN
3020static int __regulatory_set_wiphy_regd(struct wiphy *wiphy,
3021 struct ieee80211_regdomain *rd)
b0d7aa59
JD
3022{
3023 const struct ieee80211_regdomain *regd;
3024 const struct ieee80211_regdomain *prev_regd;
3025 struct cfg80211_registered_device *rdev;
3026
3027 if (WARN_ON(!wiphy || !rd))
3028 return -EINVAL;
3029
3030 if (WARN(!(wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED),
3031 "wiphy should have REGULATORY_WIPHY_SELF_MANAGED\n"))
3032 return -EPERM;
3033
3034 if (WARN(!is_valid_rd(rd), "Invalid regulatory domain detected\n")) {
3035 print_regdomain_info(rd);
3036 return -EINVAL;
3037 }
3038
3039 regd = reg_copy_regd(rd);
3040 if (IS_ERR(regd))
3041 return PTR_ERR(regd);
3042
3043 rdev = wiphy_to_rdev(wiphy);
3044
3045 spin_lock(&reg_requests_lock);
3046 prev_regd = rdev->requested_regd;
3047 rdev->requested_regd = regd;
3048 spin_unlock(&reg_requests_lock);
3049
3050 kfree(prev_regd);
2c3e861c
AN
3051 return 0;
3052}
3053
3054int regulatory_set_wiphy_regd(struct wiphy *wiphy,
3055 struct ieee80211_regdomain *rd)
3056{
3057 int ret = __regulatory_set_wiphy_regd(wiphy, rd);
3058
3059 if (ret)
3060 return ret;
b0d7aa59
JD
3061
3062 schedule_work(&reg_work);
3063 return 0;
3064}
3065EXPORT_SYMBOL(regulatory_set_wiphy_regd);
3066
2c3e861c
AN
3067int regulatory_set_wiphy_regd_sync_rtnl(struct wiphy *wiphy,
3068 struct ieee80211_regdomain *rd)
3069{
3070 int ret;
3071
3072 ASSERT_RTNL();
3073
3074 ret = __regulatory_set_wiphy_regd(wiphy, rd);
3075 if (ret)
3076 return ret;
3077
3078 /* process the request immediately */
3079 reg_process_self_managed_hints();
3080 return 0;
3081}
3082EXPORT_SYMBOL(regulatory_set_wiphy_regd_sync_rtnl);
3083
57b5ce07
LR
3084void wiphy_regulatory_register(struct wiphy *wiphy)
3085{
23df0b73
AN
3086 struct regulatory_request *lr;
3087
b0d7aa59
JD
3088 /* self-managed devices ignore external hints */
3089 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
3090 wiphy->regulatory_flags |= REGULATORY_DISABLE_BEACON_HINTS |
3091 REGULATORY_COUNTRY_IE_IGNORE;
3092
57b5ce07
LR
3093 if (!reg_dev_ignore_cell_hint(wiphy))
3094 reg_num_devs_support_basehint++;
3095
23df0b73
AN
3096 lr = get_last_request();
3097 wiphy_update_regulatory(wiphy, lr->initiator);
57b5ce07
LR
3098}
3099
bfead080 3100void wiphy_regulatory_deregister(struct wiphy *wiphy)
3f2355cb 3101{
0ad8acaf 3102 struct wiphy *request_wiphy = NULL;
c492db37 3103 struct regulatory_request *lr;
761cf7ec 3104
c492db37 3105 lr = get_last_request();
abc7381b 3106
57b5ce07
LR
3107 if (!reg_dev_ignore_cell_hint(wiphy))
3108 reg_num_devs_support_basehint--;
3109
458f4f9e 3110 rcu_free_regdom(get_wiphy_regdom(wiphy));
34dd886c 3111 RCU_INIT_POINTER(wiphy->regd, NULL);
0ef9ccdd 3112
c492db37
JB
3113 if (lr)
3114 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
806a9e39 3115
0ef9ccdd 3116 if (!request_wiphy || request_wiphy != wiphy)
38fd2143 3117 return;
0ef9ccdd 3118
c492db37
JB
3119 lr->wiphy_idx = WIPHY_IDX_INVALID;
3120 lr->country_ie_env = ENVIRON_ANY;
3f2355cb
LR
3121}
3122
a90c7a31
LR
3123static void reg_timeout_work(struct work_struct *work)
3124{
1a919318 3125 REG_DBG_PRINT("Timeout while waiting for CRDA to reply, restoring regulatory settings\n");
f77b86d7 3126 rtnl_lock();
c37722bd 3127 reg_crda_timeouts++;
a90c7a31 3128 restore_regulatory_settings(true);
f77b86d7 3129 rtnl_unlock();
a90c7a31
LR
3130}
3131
174e0cd2
IP
3132/*
3133 * See http://www.fcc.gov/document/5-ghz-unlicensed-spectrum-unii, for
3134 * UNII band definitions
3135 */
3136int cfg80211_get_unii(int freq)
3137{
3138 /* UNII-1 */
3139 if (freq >= 5150 && freq <= 5250)
3140 return 0;
3141
3142 /* UNII-2A */
3143 if (freq > 5250 && freq <= 5350)
3144 return 1;
3145
3146 /* UNII-2B */
3147 if (freq > 5350 && freq <= 5470)
3148 return 2;
3149
3150 /* UNII-2C */
3151 if (freq > 5470 && freq <= 5725)
3152 return 3;
3153
3154 /* UNII-3 */
3155 if (freq > 5725 && freq <= 5825)
3156 return 4;
3157
3158 return -EINVAL;
3159}
3160
c8866e55
IP
3161bool regulatory_indoor_allowed(void)
3162{
3163 return reg_is_indoor;
3164}
3165
2fcc9f73 3166int __init regulatory_init(void)
b2e1b302 3167{
bcf4f99b 3168 int err = 0;
734366de 3169
b2e1b302
LR
3170 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
3171 if (IS_ERR(reg_pdev))
3172 return PTR_ERR(reg_pdev);
734366de 3173
fe33eb39 3174 spin_lock_init(&reg_requests_lock);
e38f8a7a 3175 spin_lock_init(&reg_pending_beacons_lock);
05050753 3176 spin_lock_init(&reg_indoor_lock);
fe33eb39 3177
80007efe
LR
3178 reg_regdb_size_check();
3179
458f4f9e 3180 rcu_assign_pointer(cfg80211_regdomain, cfg80211_world_regdom);
734366de 3181
09d989d1
LR
3182 user_alpha2[0] = '9';
3183 user_alpha2[1] = '7';
3184
ae9e4b0d 3185 /* We always try to get an update for the static regdomain */
458f4f9e 3186 err = regulatory_hint_core(cfg80211_world_regdom->alpha2);
ba25c141 3187 if (err) {
bcf4f99b
LR
3188 if (err == -ENOMEM)
3189 return err;
3190 /*
3191 * N.B. kobject_uevent_env() can fail mainly for when we're out
3192 * memory which is handled and propagated appropriately above
3193 * but it can also fail during a netlink_broadcast() or during
3194 * early boot for call_usermodehelper(). For now treat these
3195 * errors as non-fatal.
3196 */
e9c0268f 3197 pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
bcf4f99b 3198 }
734366de 3199
ae9e4b0d
LR
3200 /*
3201 * Finally, if the user set the module parameter treat it
3202 * as a user hint.
3203 */
3204 if (!is_world_regdom(ieee80211_regdom))
57b5ce07
LR
3205 regulatory_hint_user(ieee80211_regdom,
3206 NL80211_USER_REG_HINT_USER);
ae9e4b0d 3207
b2e1b302
LR
3208 return 0;
3209}
3210
1a919318 3211void regulatory_exit(void)
b2e1b302 3212{
fe33eb39 3213 struct regulatory_request *reg_request, *tmp;
e38f8a7a 3214 struct reg_beacon *reg_beacon, *btmp;
fe33eb39
LR
3215
3216 cancel_work_sync(&reg_work);
a90c7a31 3217 cancel_delayed_work_sync(&reg_timeout);
ad932f04 3218 cancel_delayed_work_sync(&reg_check_chans);
fe33eb39 3219
9027b149 3220 /* Lock to suppress warnings */
38fd2143 3221 rtnl_lock();
379b82f4 3222 reset_regdomains(true, NULL);
38fd2143 3223 rtnl_unlock();
734366de 3224
58ebacc6 3225 dev_set_uevent_suppress(&reg_pdev->dev, true);
f6037d09 3226
b2e1b302 3227 platform_device_unregister(reg_pdev);
734366de 3228
fea9bced
JB
3229 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
3230 list_del(&reg_beacon->list);
3231 kfree(reg_beacon);
e38f8a7a 3232 }
e38f8a7a 3233
fea9bced
JB
3234 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
3235 list_del(&reg_beacon->list);
3236 kfree(reg_beacon);
e38f8a7a
LR
3237 }
3238
fea9bced
JB
3239 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
3240 list_del(&reg_request->list);
3241 kfree(reg_request);
fe33eb39 3242 }
8318d78a 3243}