blob: df87c7f3a04921d43ae0f536444101bc4ddfdab6 [file] [log] [blame]
Johannes Berg8318d782008-01-24 19:38:38 +01001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Luis R. Rodriguez3b77d5e2011-12-20 12:23:38 -08005 * Copyright 2008-2011 Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
Johannes Berg2740f0c2014-09-03 15:24:58 +03006 * Copyright 2013-2014 Intel Mobile Communications GmbH
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03007 * Copyright 2017 Intel Deutschland GmbH
Ilan Peer51d62f22021-01-05 16:56:57 +02008 * Copyright (C) 2018 - 2021 Intel Corporation
Johannes Berg8318d782008-01-24 19:38:38 +01009 *
Luis R. Rodriguez3b77d5e2011-12-20 12:23:38 -080010 * Permission to use, copy, modify, and/or distribute this software for any
11 * purpose with or without fee is hereby granted, provided that the above
12 * copyright notice and this permission notice appear in all copies.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
15 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
16 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
17 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
18 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
19 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
20 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Johannes Berg8318d782008-01-24 19:38:38 +010021 */
22
Luis R. Rodriguez3b77d5e2011-12-20 12:23:38 -080023
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070024/**
25 * DOC: Wireless regulatory infrastructure
Johannes Berg8318d782008-01-24 19:38:38 +010026 *
27 * The usual implementation is for a driver to read a device EEPROM to
28 * determine which regulatory domain it should be operating under, then
29 * looking up the allowable channels in a driver-local table and finally
30 * registering those channels in the wiphy structure.
31 *
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070032 * Another set of compliance enforcement is for drivers to use their
33 * own compliance limits which can be stored on the EEPROM. The host
34 * driver or firmware may ensure these are used.
35 *
36 * In addition to all this we provide an extra layer of regulatory
37 * conformance. For drivers which do not have any regulatory
38 * information CRDA provides the complete regulatory solution.
39 * For others it provides a community effort on further restrictions
40 * to enhance compliance.
41 *
42 * Note: When number of rules --> infinity we will not be able to
43 * index on alpha2 any more, instead we'll probably have to
44 * rely on some SHA1 checksum of the regdomain for example.
45 *
Johannes Berg8318d782008-01-24 19:38:38 +010046 */
Joe Perchese9c02682010-11-16 19:56:49 -080047
48#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
49
Johannes Berg8318d782008-01-24 19:38:38 +010050#include <linux/kernel.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040051#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070053#include <linux/list.h>
John W. Linvillec61029c2010-08-05 14:26:24 -040054#include <linux/ctype.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070055#include <linux/nl80211.h>
56#include <linux/platform_device.h>
Johannes Berg90a53e42017-09-13 22:21:08 +020057#include <linux/verification.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040058#include <linux/moduleparam.h>
Johannes Berg007f6c52015-10-15 11:22:58 +020059#include <linux/firmware.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070060#include <net/cfg80211.h>
Johannes Berg8318d782008-01-24 19:38:38 +010061#include "core.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070062#include "reg.h"
Arik Nemtsovad932f02014-11-27 09:44:55 +020063#include "rdev-ops.h"
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040064#include "nl80211.h"
Johannes Berg8318d782008-01-24 19:38:38 +010065
Arik Nemtsovad932f02014-11-27 09:44:55 +020066/*
67 * Grace period we give before making sure all current interfaces reside on
68 * channels allowed by the current regulatory domain.
69 */
70#define REG_ENFORCE_GRACE_MS 60000
71
Ilan Peer52616f22014-02-25 16:26:00 +020072/**
73 * enum reg_request_treatment - regulatory request treatment
74 *
75 * @REG_REQ_OK: continue processing the regulatory request
76 * @REG_REQ_IGNORE: ignore the regulatory request
77 * @REG_REQ_INTERSECT: the regulatory domain resulting from this request should
78 * be intersected with the current one.
79 * @REG_REQ_ALREADY_SET: the regulatory request will not change the current
80 * regulatory settings, and no further processing is required.
Ilan Peer52616f22014-02-25 16:26:00 +020081 */
Johannes Berg2f922122012-12-03 17:54:55 +010082enum reg_request_treatment {
83 REG_REQ_OK,
84 REG_REQ_IGNORE,
85 REG_REQ_INTERSECT,
86 REG_REQ_ALREADY_SET,
87};
88
Luis R. Rodrigueza0429942011-11-28 16:47:15 -050089static struct regulatory_request core_request_world = {
90 .initiator = NL80211_REGDOM_SET_BY_CORE,
91 .alpha2[0] = '0',
92 .alpha2[1] = '0',
93 .intersect = false,
94 .processed = true,
95 .country_ie_env = ENVIRON_ANY,
96};
97
Johannes Berg38fd2142013-05-10 19:17:17 +020098/*
99 * Receipt of information from last regulatory request,
100 * protected by RTNL (and can be accessed with RCU protection)
101 */
Johannes Bergc492db32012-12-06 16:29:25 +0100102static struct regulatory_request __rcu *last_request =
Johannes Bergcec3f0e2014-12-12 12:26:25 +0100103 (void __force __rcu *)&core_request_world;
Johannes Berg734366d2008-09-15 10:56:48 +0200104
Johannes Berg007f6c52015-10-15 11:22:58 +0200105/* To trigger userspace events and load firmware */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700106static struct platform_device *reg_pdev;
Johannes Berg8318d782008-01-24 19:38:38 +0100107
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500108/*
109 * Central wireless core regulatory domains, we only need two,
Johannes Berg734366d2008-09-15 10:56:48 +0200110 * the current one and a world regulatory domain in case we have no
Johannes Berge8da2bb2012-12-03 23:00:08 +0100111 * information to give us an alpha2.
Johannes Berg38fd2142013-05-10 19:17:17 +0200112 * (protected by RTNL, can be read under RCU)
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500113 */
Johannes Berg458f4f92012-12-06 15:47:38 +0100114const struct ieee80211_regdomain __rcu *cfg80211_regdomain;
Johannes Berg734366d2008-09-15 10:56:48 +0200115
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500116/*
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700117 * Number of devices that registered to the core
118 * that support cellular base station regulatory hints
Johannes Berg38fd2142013-05-10 19:17:17 +0200119 * (protected by RTNL)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700120 */
121static int reg_num_devs_support_basehint;
122
Ilan Peer52616f22014-02-25 16:26:00 +0200123/*
124 * State variable indicating if the platform on which the devices
125 * are attached is operating in an indoor environment. The state variable
126 * is relevant for all registered devices.
Ilan Peer52616f22014-02-25 16:26:00 +0200127 */
128static bool reg_is_indoor;
Qiheng Lin81d94f42021-03-25 22:38:54 +0800129static DEFINE_SPINLOCK(reg_indoor_lock);
Ilan peer05050752015-03-04 00:32:06 -0500130
131/* Used to track the userspace process controlling the indoor setting */
132static u32 reg_is_indoor_portid;
Ilan Peer52616f22014-02-25 16:26:00 +0200133
Johannes Berge646a022019-02-05 21:08:29 +0100134static void restore_regulatory_settings(bool reset_user, bool cached);
135static void print_regdomain(const struct ieee80211_regdomain *rd);
Ilan peerc37722b2015-03-30 15:15:49 +0300136
Johannes Berg458f4f92012-12-06 15:47:38 +0100137static const struct ieee80211_regdomain *get_cfg80211_regdom(void)
138{
Johannes Berg5bf16a12018-02-27 11:22:15 +0100139 return rcu_dereference_rtnl(cfg80211_regdomain);
Johannes Berg458f4f92012-12-06 15:47:38 +0100140}
141
Ilan Peer51d62f22021-01-05 16:56:57 +0200142/*
143 * Returns the regulatory domain associated with the wiphy.
144 *
Johannes Berga05829a2021-01-22 16:19:43 +0100145 * Requires any of RTNL, wiphy mutex or RCU protection.
Ilan Peer51d62f22021-01-05 16:56:57 +0200146 */
Arik Nemtsovad30ca22014-12-15 19:25:59 +0200147const struct ieee80211_regdomain *get_wiphy_regdom(struct wiphy *wiphy)
Johannes Berg458f4f92012-12-06 15:47:38 +0100148{
Johannes Berga05829a2021-01-22 16:19:43 +0100149 return rcu_dereference_check(wiphy->regd,
150 lockdep_is_held(&wiphy->mtx) ||
151 lockdep_rtnl_is_held());
Johannes Berg458f4f92012-12-06 15:47:38 +0100152}
Johannes Berga05829a2021-01-22 16:19:43 +0100153EXPORT_SYMBOL(get_wiphy_regdom);
Johannes Berg458f4f92012-12-06 15:47:38 +0100154
Luis R. Rodriguez3ef121b2013-11-13 18:54:05 +0100155static const char *reg_dfs_region_str(enum nl80211_dfs_regions dfs_region)
156{
157 switch (dfs_region) {
158 case NL80211_DFS_UNSET:
159 return "unset";
160 case NL80211_DFS_FCC:
161 return "FCC";
162 case NL80211_DFS_ETSI:
163 return "ETSI";
164 case NL80211_DFS_JP:
165 return "JP";
166 }
167 return "Unknown";
168}
169
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100170enum nl80211_dfs_regions reg_get_dfs_region(struct wiphy *wiphy)
171{
172 const struct ieee80211_regdomain *regd = NULL;
173 const struct ieee80211_regdomain *wiphy_regd = NULL;
Sriram R90bd5be2021-08-26 05:08:50 +0530174 enum nl80211_dfs_regions dfs_region;
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100175
Johannes Berga05829a2021-01-22 16:19:43 +0100176 rcu_read_lock();
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100177 regd = get_cfg80211_regdom();
Sriram R90bd5be2021-08-26 05:08:50 +0530178 dfs_region = regd->dfs_region;
Johannes Berga05829a2021-01-22 16:19:43 +0100179
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100180 if (!wiphy)
181 goto out;
182
183 wiphy_regd = get_wiphy_regdom(wiphy);
184 if (!wiphy_regd)
185 goto out;
186
Sriram R90bd5be2021-08-26 05:08:50 +0530187 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) {
188 dfs_region = wiphy_regd->dfs_region;
189 goto out;
190 }
191
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100192 if (wiphy_regd->dfs_region == regd->dfs_region)
193 goto out;
194
Johannes Bergc799ba62015-12-11 15:31:10 +0100195 pr_debug("%s: device specific dfs_region (%s) disagrees with cfg80211's central dfs_region (%s)\n",
196 dev_name(&wiphy->dev),
197 reg_dfs_region_str(wiphy_regd->dfs_region),
198 reg_dfs_region_str(regd->dfs_region));
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100199
200out:
Johannes Berga05829a2021-01-22 16:19:43 +0100201 rcu_read_unlock();
202
Sriram R90bd5be2021-08-26 05:08:50 +0530203 return dfs_region;
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100204}
205
Johannes Berg458f4f92012-12-06 15:47:38 +0100206static void rcu_free_regdom(const struct ieee80211_regdomain *r)
207{
208 if (!r)
209 return;
210 kfree_rcu((struct ieee80211_regdomain *)r, rcu_head);
211}
212
Johannes Bergc492db32012-12-06 16:29:25 +0100213static struct regulatory_request *get_last_request(void)
214{
Johannes Berg38fd2142013-05-10 19:17:17 +0200215 return rcu_dereference_rtnl(last_request);
Johannes Bergc492db32012-12-06 16:29:25 +0100216}
217
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500218/* Used to queue up regulatory hints */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500219static LIST_HEAD(reg_requests_list);
Qiheng Lin81d94f42021-03-25 22:38:54 +0800220static DEFINE_SPINLOCK(reg_requests_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500221
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500222/* Used to queue up beacon hints for review */
223static LIST_HEAD(reg_pending_beacons);
Qiheng Lin81d94f42021-03-25 22:38:54 +0800224static DEFINE_SPINLOCK(reg_pending_beacons_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500225
226/* Used to keep track of processed beacon hints */
227static LIST_HEAD(reg_beacon_list);
228
229struct reg_beacon {
230 struct list_head list;
231 struct ieee80211_channel chan;
232};
233
Arik Nemtsovad932f02014-11-27 09:44:55 +0200234static void reg_check_chans_work(struct work_struct *work);
235static DECLARE_DELAYED_WORK(reg_check_chans, reg_check_chans_work);
236
Luis R. Rodriguezf333a7a2010-11-17 21:46:07 -0800237static void reg_todo(struct work_struct *work);
238static DECLARE_WORK(reg_work, reg_todo);
239
Johannes Berg734366d2008-09-15 10:56:48 +0200240/* We keep a static world regulatory domain in case of the absence of CRDA */
241static const struct ieee80211_regdomain world_regdom = {
Jason Abele28981e52015-02-17 16:10:41 -0800242 .n_reg_rules = 8,
Johannes Berg734366d2008-09-15 10:56:48 +0200243 .alpha2 = "00",
244 .reg_rules = {
Luis R. Rodriguez68798a62009-02-21 00:20:37 -0500245 /* IEEE 802.11b/g, channels 1..11 */
246 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
Johannes Berg43c771a2012-11-12 10:51:34 +0100247 /* IEEE 802.11b/g, channels 12..13. */
Johannes Bergc3826802015-12-11 17:35:50 +0100248 REG_RULE(2467-10, 2472+10, 20, 6, 20,
249 NL80211_RRF_NO_IR | NL80211_RRF_AUTO_BW),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800250 /* IEEE 802.11 channel 14 - Only JP enables
251 * this and for 802.11b only */
252 REG_RULE(2484-10, 2484+10, 20, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200253 NL80211_RRF_NO_IR |
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800254 NL80211_RRF_NO_OFDM),
255 /* IEEE 802.11a, channel 36..48 */
Johannes Bergc3826802015-12-11 17:35:50 +0100256 REG_RULE(5180-10, 5240+10, 80, 6, 20,
257 NL80211_RRF_NO_IR |
258 NL80211_RRF_AUTO_BW),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500259
Johannes Berg131a19b2013-03-04 20:54:46 +0100260 /* IEEE 802.11a, channel 52..64 - DFS required */
Johannes Bergc3826802015-12-11 17:35:50 +0100261 REG_RULE(5260-10, 5320+10, 80, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200262 NL80211_RRF_NO_IR |
Johannes Bergc3826802015-12-11 17:35:50 +0100263 NL80211_RRF_AUTO_BW |
Johannes Berg131a19b2013-03-04 20:54:46 +0100264 NL80211_RRF_DFS),
265
266 /* IEEE 802.11a, channel 100..144 - DFS required */
267 REG_RULE(5500-10, 5720+10, 160, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200268 NL80211_RRF_NO_IR |
Johannes Berg131a19b2013-03-04 20:54:46 +0100269 NL80211_RRF_DFS),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500270
271 /* IEEE 802.11a, channel 149..165 */
Johannes Berg8ab9d852012-12-03 22:09:22 +0100272 REG_RULE(5745-10, 5825+10, 80, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200273 NL80211_RRF_NO_IR),
Vladimir Kondratiev90cdc6d2012-07-02 09:32:34 +0300274
Johannes Berg8047d262015-10-15 16:16:09 +0200275 /* IEEE 802.11ad (60GHz), channels 1..3 */
Vladimir Kondratiev90cdc6d2012-07-02 09:32:34 +0300276 REG_RULE(56160+2160*1-1080, 56160+2160*3+1080, 2160, 0, 0, 0),
Johannes Berg734366d2008-09-15 10:56:48 +0200277 }
278};
279
Johannes Berg38fd2142013-05-10 19:17:17 +0200280/* protected by RTNL */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200281static const struct ieee80211_regdomain *cfg80211_world_regdom =
282 &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200283
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400284static char *ieee80211_regdom = "00";
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500285static char user_alpha2[2];
Johannes Berge646a022019-02-05 21:08:29 +0100286static const struct ieee80211_regdomain *cfg80211_user_regdom;
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400287
Johannes Berg734366d2008-09-15 10:56:48 +0200288module_param(ieee80211_regdom, charp, 0444);
289MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
290
Arik Nemtsovc8883932014-04-21 20:39:34 -0700291static void reg_free_request(struct regulatory_request *request)
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -0800292{
Johannes Bergd34265a2015-10-15 13:05:55 +0200293 if (request == &core_request_world)
294 return;
295
Arik Nemtsovc8883932014-04-21 20:39:34 -0700296 if (request != get_last_request())
297 kfree(request);
298}
299
300static void reg_free_last_request(void)
301{
302 struct regulatory_request *lr = get_last_request();
303
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -0800304 if (lr != &core_request_world && lr)
305 kfree_rcu(lr, rcu_head);
306}
307
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800308static void reg_update_last_request(struct regulatory_request *request)
309{
Luis R. Rodriguez255e25b2014-02-25 17:09:40 -0800310 struct regulatory_request *lr;
311
312 lr = get_last_request();
313 if (lr == request)
314 return;
315
Arik Nemtsovc8883932014-04-21 20:39:34 -0700316 reg_free_last_request();
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800317 rcu_assign_pointer(last_request, request);
318}
319
Johannes Berg379b82f2012-12-06 15:44:07 +0100320static void reset_regdomains(bool full_reset,
321 const struct ieee80211_regdomain *new_regdom)
Johannes Berg734366d2008-09-15 10:56:48 +0200322{
Johannes Berg458f4f92012-12-06 15:47:38 +0100323 const struct ieee80211_regdomain *r;
324
Johannes Berg38fd2142013-05-10 19:17:17 +0200325 ASSERT_RTNL();
Johannes Berge8da2bb2012-12-03 23:00:08 +0100326
Johannes Berg458f4f92012-12-06 15:47:38 +0100327 r = get_cfg80211_regdom();
328
Johannes Berg942b25c2008-09-15 11:26:47 +0200329 /* avoid freeing static information or freeing something twice */
Johannes Berg458f4f92012-12-06 15:47:38 +0100330 if (r == cfg80211_world_regdom)
331 r = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200332 if (cfg80211_world_regdom == &world_regdom)
333 cfg80211_world_regdom = NULL;
Johannes Berg458f4f92012-12-06 15:47:38 +0100334 if (r == &world_regdom)
335 r = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200336
Johannes Berg458f4f92012-12-06 15:47:38 +0100337 rcu_free_regdom(r);
338 rcu_free_regdom(cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +0200339
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200340 cfg80211_world_regdom = &world_regdom;
Johannes Berg458f4f92012-12-06 15:47:38 +0100341 rcu_assign_pointer(cfg80211_regdomain, new_regdom);
Luis R. Rodrigueza0429942011-11-28 16:47:15 -0500342
343 if (!full_reset)
344 return;
345
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800346 reg_update_last_request(&core_request_world);
Johannes Berg734366d2008-09-15 10:56:48 +0200347}
348
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500349/*
350 * Dynamic world regulatory domain requested by the wireless
351 * core upon initialization
352 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200353static void update_world_regdomain(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200354{
Johannes Bergc492db32012-12-06 16:29:25 +0100355 struct regulatory_request *lr;
Johannes Berg734366d2008-09-15 10:56:48 +0200356
Johannes Bergc492db32012-12-06 16:29:25 +0100357 lr = get_last_request();
358
359 WARN_ON(!lr);
Johannes Berge8da2bb2012-12-03 23:00:08 +0100360
Johannes Berg379b82f2012-12-06 15:44:07 +0100361 reset_regdomains(false, rd);
Johannes Berg734366d2008-09-15 10:56:48 +0200362
363 cfg80211_world_regdom = rd;
Johannes Berg734366d2008-09-15 10:56:48 +0200364}
Johannes Berg734366d2008-09-15 10:56:48 +0200365
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200366bool is_world_regdom(const char *alpha2)
Johannes Berg8318d782008-01-24 19:38:38 +0100367{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700368 if (!alpha2)
369 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100370 return alpha2[0] == '0' && alpha2[1] == '0';
Johannes Berg8318d782008-01-24 19:38:38 +0100371}
372
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200373static bool is_alpha2_set(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700374{
375 if (!alpha2)
376 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100377 return alpha2[0] && alpha2[1];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700378}
Johannes Berg8318d782008-01-24 19:38:38 +0100379
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200380static bool is_unknown_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700381{
382 if (!alpha2)
383 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500384 /*
385 * Special case where regulatory domain was built by driver
386 * but a specific alpha2 cannot be determined
387 */
Johannes Berg1a919312012-12-03 17:21:11 +0100388 return alpha2[0] == '9' && alpha2[1] == '9';
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700389}
390
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800391static bool is_intersected_alpha2(const char *alpha2)
392{
393 if (!alpha2)
394 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500395 /*
396 * Special case where regulatory domain is the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800397 * result of an intersection between two regulatory domain
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500398 * structures
399 */
Johannes Berg1a919312012-12-03 17:21:11 +0100400 return alpha2[0] == '9' && alpha2[1] == '8';
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800401}
402
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200403static bool is_an_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700404{
405 if (!alpha2)
406 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100407 return isalpha(alpha2[0]) && isalpha(alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700408}
409
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200410static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700411{
412 if (!alpha2_x || !alpha2_y)
413 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100414 return alpha2_x[0] == alpha2_y[0] && alpha2_x[1] == alpha2_y[1];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700415}
416
Luis R. Rodriguez69b15722009-02-21 00:04:33 -0500417static bool regdom_changes(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700418{
Johannes Berg458f4f92012-12-06 15:47:38 +0100419 const struct ieee80211_regdomain *r = get_cfg80211_regdom();
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500420
Johannes Berg458f4f92012-12-06 15:47:38 +0100421 if (!r)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700422 return true;
Johannes Berg458f4f92012-12-06 15:47:38 +0100423 return !alpha2_equal(r->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700424}
425
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500426/*
427 * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
428 * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
429 * has ever been issued.
430 */
431static bool is_user_regdom_saved(void)
432{
433 if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
434 return false;
435
436 /* This would indicate a mistake on the design */
Johannes Berg1a919312012-12-03 17:21:11 +0100437 if (WARN(!is_world_regdom(user_alpha2) && !is_an_alpha2(user_alpha2),
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500438 "Unexpected user alpha2: %c%c\n",
Johannes Berg1a919312012-12-03 17:21:11 +0100439 user_alpha2[0], user_alpha2[1]))
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500440 return false;
441
442 return true;
443}
444
Johannes Berge9763c32012-12-03 16:59:46 +0100445static const struct ieee80211_regdomain *
446reg_copy_regd(const struct ieee80211_regdomain *src_regd)
John W. Linville3b377ea2009-12-18 17:59:01 -0500447{
448 struct ieee80211_regdomain *regd;
John W. Linville3b377ea2009-12-18 17:59:01 -0500449 unsigned int i;
450
Gustavo A. R. Silva9f8c7132019-04-03 10:31:51 -0500451 regd = kzalloc(struct_size(regd, reg_rules, src_regd->n_reg_rules),
452 GFP_KERNEL);
John W. Linville3b377ea2009-12-18 17:59:01 -0500453 if (!regd)
Johannes Berge9763c32012-12-03 16:59:46 +0100454 return ERR_PTR(-ENOMEM);
John W. Linville3b377ea2009-12-18 17:59:01 -0500455
456 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
457
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200458 for (i = 0; i < src_regd->n_reg_rules; i++)
John W. Linville3b377ea2009-12-18 17:59:01 -0500459 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
Johannes Berge9763c32012-12-03 16:59:46 +0100460 sizeof(struct ieee80211_reg_rule));
John W. Linville3b377ea2009-12-18 17:59:01 -0500461
Johannes Berge9763c32012-12-03 16:59:46 +0100462 return regd;
John W. Linville3b377ea2009-12-18 17:59:01 -0500463}
464
Johannes Berge646a022019-02-05 21:08:29 +0100465static void cfg80211_save_user_regdom(const struct ieee80211_regdomain *rd)
466{
467 ASSERT_RTNL();
468
469 if (!IS_ERR(cfg80211_user_regdom))
470 kfree(cfg80211_user_regdom);
471 cfg80211_user_regdom = reg_copy_regd(rd);
472}
473
Johannes Bergc7d319e52015-10-15 09:03:05 +0200474struct reg_regdb_apply_request {
John W. Linville3b377ea2009-12-18 17:59:01 -0500475 struct list_head list;
Johannes Bergc7d319e52015-10-15 09:03:05 +0200476 const struct ieee80211_regdomain *regdom;
John W. Linville3b377ea2009-12-18 17:59:01 -0500477};
478
Johannes Bergc7d319e52015-10-15 09:03:05 +0200479static LIST_HEAD(reg_regdb_apply_list);
480static DEFINE_MUTEX(reg_regdb_apply_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500481
Johannes Bergc7d319e52015-10-15 09:03:05 +0200482static void reg_regdb_apply(struct work_struct *work)
John W. Linville3b377ea2009-12-18 17:59:01 -0500483{
Johannes Bergc7d319e52015-10-15 09:03:05 +0200484 struct reg_regdb_apply_request *request;
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700485
Johannes Berg5fe231e2013-05-08 21:45:15 +0200486 rtnl_lock();
John W. Linville3b377ea2009-12-18 17:59:01 -0500487
Johannes Bergc7d319e52015-10-15 09:03:05 +0200488 mutex_lock(&reg_regdb_apply_mutex);
489 while (!list_empty(&reg_regdb_apply_list)) {
490 request = list_first_entry(&reg_regdb_apply_list,
491 struct reg_regdb_apply_request,
John W. Linville3b377ea2009-12-18 17:59:01 -0500492 list);
493 list_del(&request->list);
494
Johannes Bergc7d319e52015-10-15 09:03:05 +0200495 set_regdom(request->regdom, REGD_SOURCE_INTERNAL_DB);
John W. Linville3b377ea2009-12-18 17:59:01 -0500496 kfree(request);
497 }
Johannes Bergc7d319e52015-10-15 09:03:05 +0200498 mutex_unlock(&reg_regdb_apply_mutex);
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700499
Johannes Berg5fe231e2013-05-08 21:45:15 +0200500 rtnl_unlock();
John W. Linville3b377ea2009-12-18 17:59:01 -0500501}
502
Johannes Bergc7d319e52015-10-15 09:03:05 +0200503static DECLARE_WORK(reg_regdb_work, reg_regdb_apply);
John W. Linville3b377ea2009-12-18 17:59:01 -0500504
Johannes Berg007f6c52015-10-15 11:22:58 +0200505static int reg_schedule_apply(const struct ieee80211_regdomain *regdom)
John W. Linville3b377ea2009-12-18 17:59:01 -0500506{
Johannes Bergc7d319e52015-10-15 09:03:05 +0200507 struct reg_regdb_apply_request *request;
Johannes Bergc7d319e52015-10-15 09:03:05 +0200508
509 request = kzalloc(sizeof(struct reg_regdb_apply_request), GFP_KERNEL);
Johannes Berg007f6c52015-10-15 11:22:58 +0200510 if (!request) {
511 kfree(regdom);
Johannes Bergc7d319e52015-10-15 09:03:05 +0200512 return -ENOMEM;
513 }
John W. Linville3b377ea2009-12-18 17:59:01 -0500514
Johannes Berg007f6c52015-10-15 11:22:58 +0200515 request->regdom = regdom;
516
Johannes Bergc7d319e52015-10-15 09:03:05 +0200517 mutex_lock(&reg_regdb_apply_mutex);
518 list_add_tail(&request->list, &reg_regdb_apply_list);
519 mutex_unlock(&reg_regdb_apply_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500520
521 schedule_work(&reg_regdb_work);
Johannes Bergc7d319e52015-10-15 09:03:05 +0200522 return 0;
John W. Linville3b377ea2009-12-18 17:59:01 -0500523}
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -0700524
Johannes Bergb6863032015-10-15 09:25:18 +0200525#ifdef CONFIG_CFG80211_CRDA_SUPPORT
526/* Max number of consecutive attempts to communicate with CRDA */
527#define REG_MAX_CRDA_TIMEOUTS 10
528
529static u32 reg_crda_timeouts;
530
531static void crda_timeout_work(struct work_struct *work);
532static DECLARE_DELAYED_WORK(crda_timeout, crda_timeout_work);
533
534static void crda_timeout_work(struct work_struct *work)
535{
Johannes Bergc799ba62015-12-11 15:31:10 +0100536 pr_debug("Timeout while waiting for CRDA to reply, restoring regulatory settings\n");
Johannes Bergb6863032015-10-15 09:25:18 +0200537 rtnl_lock();
538 reg_crda_timeouts++;
Johannes Berge646a022019-02-05 21:08:29 +0100539 restore_regulatory_settings(true, false);
Johannes Bergb6863032015-10-15 09:25:18 +0200540 rtnl_unlock();
541}
542
543static void cancel_crda_timeout(void)
544{
545 cancel_delayed_work(&crda_timeout);
546}
547
548static void cancel_crda_timeout_sync(void)
549{
550 cancel_delayed_work_sync(&crda_timeout);
551}
552
553static void reset_crda_timeouts(void)
554{
555 reg_crda_timeouts = 0;
556}
557
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500558/*
559 * This lets us keep regulatory code which is updated on a regulatory
Johannes Berg1226d252014-02-25 15:43:36 +0100560 * basis in userspace.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500561 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700562static int call_crda(const char *alpha2)
563{
Johannes Berg1226d252014-02-25 15:43:36 +0100564 char country[12];
565 char *env[] = { country, NULL };
Johannes Bergc7d319e52015-10-15 09:03:05 +0200566 int ret;
Johannes Berg1226d252014-02-25 15:43:36 +0100567
568 snprintf(country, sizeof(country), "COUNTRY=%c%c",
569 alpha2[0], alpha2[1]);
570
Ilan peerc37722b2015-03-30 15:15:49 +0300571 if (reg_crda_timeouts > REG_MAX_CRDA_TIMEOUTS) {
Thomas Petazzoni042ab5f2015-07-09 15:35:15 +0200572 pr_debug("Exceeded CRDA call max attempts. Not calling CRDA\n");
Ilan peerc37722b2015-03-30 15:15:49 +0300573 return -EINVAL;
574 }
575
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700576 if (!is_world_regdom((char *) alpha2))
Thomas Petazzoni042ab5f2015-07-09 15:35:15 +0200577 pr_debug("Calling CRDA for country: %c%c\n",
Johannes Bergc799ba62015-12-11 15:31:10 +0100578 alpha2[0], alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700579 else
Thomas Petazzoni042ab5f2015-07-09 15:35:15 +0200580 pr_debug("Calling CRDA to update world regulatory domain\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700581
Johannes Bergc7d319e52015-10-15 09:03:05 +0200582 ret = kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, env);
583 if (ret)
584 return ret;
585
586 queue_delayed_work(system_power_efficient_wq,
Johannes Bergb6863032015-10-15 09:25:18 +0200587 &crda_timeout, msecs_to_jiffies(3142));
Johannes Bergc7d319e52015-10-15 09:03:05 +0200588 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700589}
Johannes Bergb6863032015-10-15 09:25:18 +0200590#else
591static inline void cancel_crda_timeout(void) {}
592static inline void cancel_crda_timeout_sync(void) {}
593static inline void reset_crda_timeouts(void) {}
594static inline int call_crda(const char *alpha2)
595{
596 return -ENODATA;
597}
598#endif /* CONFIG_CFG80211_CRDA_SUPPORT */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700599
Johannes Berg007f6c52015-10-15 11:22:58 +0200600/* code to directly load a firmware database through request_firmware */
601static const struct fwdb_header *regdb;
602
603struct fwdb_country {
604 u8 alpha2[2];
605 __be16 coll_ptr;
606 /* this struct cannot be extended */
607} __packed __aligned(4);
608
609struct fwdb_collection {
610 u8 len;
611 u8 n_rules;
612 u8 dfs_region;
613 /* no optional data yet */
614 /* aligned to 2, then followed by __be16 array of rule pointers */
615} __packed __aligned(4);
616
617enum fwdb_flags {
618 FWDB_FLAG_NO_OFDM = BIT(0),
619 FWDB_FLAG_NO_OUTDOOR = BIT(1),
620 FWDB_FLAG_DFS = BIT(2),
621 FWDB_FLAG_NO_IR = BIT(3),
622 FWDB_FLAG_AUTO_BW = BIT(4),
623};
624
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300625struct fwdb_wmm_ac {
626 u8 ecw;
627 u8 aifsn;
628 __be16 cot;
629} __packed;
630
631struct fwdb_wmm_rule {
632 struct fwdb_wmm_ac client[IEEE80211_NUM_ACS];
633 struct fwdb_wmm_ac ap[IEEE80211_NUM_ACS];
634} __packed;
635
Johannes Berg007f6c52015-10-15 11:22:58 +0200636struct fwdb_rule {
637 u8 len;
638 u8 flags;
639 __be16 max_eirp;
640 __be32 start, end, max_bw;
641 /* start of optional data */
642 __be16 cac_timeout;
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300643 __be16 wmm_ptr;
Johannes Berg007f6c52015-10-15 11:22:58 +0200644} __packed __aligned(4);
645
646#define FWDB_MAGIC 0x52474442
647#define FWDB_VERSION 20
648
649struct fwdb_header {
650 __be32 magic;
651 __be32 version;
652 struct fwdb_country country[];
653} __packed __aligned(4);
654
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300655static int ecw2cw(int ecw)
656{
657 return (1 << ecw) - 1;
658}
659
660static bool valid_wmm(struct fwdb_wmm_rule *rule)
661{
662 struct fwdb_wmm_ac *ac = (struct fwdb_wmm_ac *)rule;
663 int i;
664
665 for (i = 0; i < IEEE80211_NUM_ACS * 2; i++) {
666 u16 cw_min = ecw2cw((ac[i].ecw & 0xf0) >> 4);
667 u16 cw_max = ecw2cw(ac[i].ecw & 0x0f);
668 u8 aifsn = ac[i].aifsn;
669
670 if (cw_min >= cw_max)
671 return false;
672
673 if (aifsn < 1)
674 return false;
675 }
676
677 return true;
678}
679
Johannes Berg007f6c52015-10-15 11:22:58 +0200680static bool valid_rule(const u8 *data, unsigned int size, u16 rule_ptr)
681{
682 struct fwdb_rule *rule = (void *)(data + (rule_ptr << 2));
683
684 if ((u8 *)rule + sizeof(rule->len) > data + size)
685 return false;
686
687 /* mandatory fields */
688 if (rule->len < offsetofend(struct fwdb_rule, max_bw))
689 return false;
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300690 if (rule->len >= offsetofend(struct fwdb_rule, wmm_ptr)) {
691 u32 wmm_ptr = be16_to_cpu(rule->wmm_ptr) << 2;
692 struct fwdb_wmm_rule *wmm;
Johannes Berg007f6c52015-10-15 11:22:58 +0200693
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300694 if (wmm_ptr + sizeof(struct fwdb_wmm_rule) > size)
695 return false;
696
697 wmm = (void *)(data + wmm_ptr);
698
699 if (!valid_wmm(wmm))
700 return false;
701 }
Johannes Berg007f6c52015-10-15 11:22:58 +0200702 return true;
703}
704
705static bool valid_country(const u8 *data, unsigned int size,
706 const struct fwdb_country *country)
707{
708 unsigned int ptr = be16_to_cpu(country->coll_ptr) << 2;
709 struct fwdb_collection *coll = (void *)(data + ptr);
710 __be16 *rules_ptr;
711 unsigned int i;
712
713 /* make sure we can read len/n_rules */
714 if ((u8 *)coll + offsetofend(typeof(*coll), n_rules) > data + size)
715 return false;
716
717 /* make sure base struct and all rules fit */
718 if ((u8 *)coll + ALIGN(coll->len, 2) +
719 (coll->n_rules * 2) > data + size)
720 return false;
721
722 /* mandatory fields must exist */
723 if (coll->len < offsetofend(struct fwdb_collection, dfs_region))
724 return false;
725
726 rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2));
727
728 for (i = 0; i < coll->n_rules; i++) {
729 u16 rule_ptr = be16_to_cpu(rules_ptr[i]);
730
731 if (!valid_rule(data, size, rule_ptr))
732 return false;
733 }
734
735 return true;
736}
737
Johannes Berg90a53e42017-09-13 22:21:08 +0200738#ifdef CONFIG_CFG80211_REQUIRE_SIGNED_REGDB
739static struct key *builtin_regdb_keys;
740
741static void __init load_keys_from_buffer(const u8 *p, unsigned int buflen)
742{
743 const u8 *end = p + buflen;
744 size_t plen;
745 key_ref_t key;
746
747 while (p < end) {
748 /* Each cert begins with an ASN.1 SEQUENCE tag and must be more
749 * than 256 bytes in size.
750 */
751 if (end - p < 4)
752 goto dodgy_cert;
753 if (p[0] != 0x30 &&
754 p[1] != 0x82)
755 goto dodgy_cert;
756 plen = (p[2] << 8) | p[3];
757 plen += 4;
758 if (plen > end - p)
759 goto dodgy_cert;
760
761 key = key_create_or_update(make_key_ref(builtin_regdb_keys, 1),
762 "asymmetric", NULL, p, plen,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700763 ((KEY_POS_ALL & ~KEY_POS_SETATTR) |
764 KEY_USR_VIEW | KEY_USR_READ),
Johannes Berg90a53e42017-09-13 22:21:08 +0200765 KEY_ALLOC_NOT_IN_QUOTA |
766 KEY_ALLOC_BUILT_IN |
767 KEY_ALLOC_BYPASS_RESTRICTION);
768 if (IS_ERR(key)) {
769 pr_err("Problem loading in-kernel X.509 certificate (%ld)\n",
770 PTR_ERR(key));
771 } else {
772 pr_notice("Loaded X.509 cert '%s'\n",
773 key_ref_to_ptr(key)->description);
774 key_ref_put(key);
775 }
776 p += plen;
777 }
778
779 return;
780
781dodgy_cert:
782 pr_err("Problem parsing in-kernel X.509 certificate list\n");
783}
784
785static int __init load_builtin_regdb_keys(void)
786{
787 builtin_regdb_keys =
788 keyring_alloc(".builtin_regdb_keys",
789 KUIDT_INIT(0), KGIDT_INIT(0), current_cred(),
Linus Torvalds028db3e2019-07-10 18:43:43 -0700790 ((KEY_POS_ALL & ~KEY_POS_SETATTR) |
791 KEY_USR_VIEW | KEY_USR_READ | KEY_USR_SEARCH),
Johannes Berg90a53e42017-09-13 22:21:08 +0200792 KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL);
793 if (IS_ERR(builtin_regdb_keys))
794 return PTR_ERR(builtin_regdb_keys);
795
796 pr_notice("Loading compiled-in X.509 certificates for regulatory database\n");
797
798#ifdef CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS
799 load_keys_from_buffer(shipped_regdb_certs, shipped_regdb_certs_len);
800#endif
Arnd Bergmann88230ef2017-10-13 14:04:31 +0200801#ifdef CONFIG_CFG80211_EXTRA_REGDB_KEYDIR
Johannes Berg90a53e42017-09-13 22:21:08 +0200802 if (CONFIG_CFG80211_EXTRA_REGDB_KEYDIR[0] != '\0')
803 load_keys_from_buffer(extra_regdb_certs, extra_regdb_certs_len);
804#endif
805
806 return 0;
807}
808
809static bool regdb_has_valid_signature(const u8 *data, unsigned int size)
810{
811 const struct firmware *sig;
812 bool result;
813
814 if (request_firmware(&sig, "regulatory.db.p7s", &reg_pdev->dev))
815 return false;
816
817 result = verify_pkcs7_signature(data, size, sig->data, sig->size,
818 builtin_regdb_keys,
819 VERIFYING_UNSPECIFIED_SIGNATURE,
820 NULL, NULL) == 0;
821
822 release_firmware(sig);
823
824 return result;
825}
826
827static void free_regdb_keyring(void)
828{
829 key_put(builtin_regdb_keys);
830}
831#else
832static int load_builtin_regdb_keys(void)
833{
834 return 0;
835}
836
837static bool regdb_has_valid_signature(const u8 *data, unsigned int size)
838{
839 return true;
840}
841
842static void free_regdb_keyring(void)
843{
844}
845#endif /* CONFIG_CFG80211_REQUIRE_SIGNED_REGDB */
846
Johannes Berg007f6c52015-10-15 11:22:58 +0200847static bool valid_regdb(const u8 *data, unsigned int size)
848{
849 const struct fwdb_header *hdr = (void *)data;
850 const struct fwdb_country *country;
851
852 if (size < sizeof(*hdr))
853 return false;
854
855 if (hdr->magic != cpu_to_be32(FWDB_MAGIC))
856 return false;
857
858 if (hdr->version != cpu_to_be32(FWDB_VERSION))
859 return false;
860
Johannes Berg90a53e42017-09-13 22:21:08 +0200861 if (!regdb_has_valid_signature(data, size))
862 return false;
863
Johannes Berg007f6c52015-10-15 11:22:58 +0200864 country = &hdr->country[0];
865 while ((u8 *)(country + 1) <= data + size) {
866 if (!country->coll_ptr)
867 break;
868 if (!valid_country(data, size, country))
869 return false;
870 country++;
871 }
872
873 return true;
874}
875
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200876static void set_wmm_rule(const struct fwdb_header *db,
877 const struct fwdb_country *country,
878 const struct fwdb_rule *rule,
879 struct ieee80211_reg_rule *rrule)
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300880{
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200881 struct ieee80211_wmm_rule *wmm_rule = &rrule->wmm_rule;
882 struct fwdb_wmm_rule *wmm;
883 unsigned int i, wmm_ptr;
884
885 wmm_ptr = be16_to_cpu(rule->wmm_ptr) << 2;
886 wmm = (void *)((u8 *)db + wmm_ptr);
887
888 if (!valid_wmm(wmm)) {
889 pr_err("Invalid regulatory WMM rule %u-%u in domain %c%c\n",
890 be32_to_cpu(rule->start), be32_to_cpu(rule->end),
891 country->alpha2[0], country->alpha2[1]);
892 return;
893 }
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300894
895 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200896 wmm_rule->client[i].cw_min =
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300897 ecw2cw((wmm->client[i].ecw & 0xf0) >> 4);
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200898 wmm_rule->client[i].cw_max = ecw2cw(wmm->client[i].ecw & 0x0f);
899 wmm_rule->client[i].aifsn = wmm->client[i].aifsn;
900 wmm_rule->client[i].cot =
901 1000 * be16_to_cpu(wmm->client[i].cot);
902 wmm_rule->ap[i].cw_min = ecw2cw((wmm->ap[i].ecw & 0xf0) >> 4);
903 wmm_rule->ap[i].cw_max = ecw2cw(wmm->ap[i].ecw & 0x0f);
904 wmm_rule->ap[i].aifsn = wmm->ap[i].aifsn;
905 wmm_rule->ap[i].cot = 1000 * be16_to_cpu(wmm->ap[i].cot);
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300906 }
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200907
908 rrule->has_wmm = true;
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300909}
910
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300911static int __regdb_query_wmm(const struct fwdb_header *db,
912 const struct fwdb_country *country, int freq,
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200913 struct ieee80211_reg_rule *rrule)
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300914{
915 unsigned int ptr = be16_to_cpu(country->coll_ptr) << 2;
916 struct fwdb_collection *coll = (void *)((u8 *)db + ptr);
917 int i;
918
919 for (i = 0; i < coll->n_rules; i++) {
920 __be16 *rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2));
921 unsigned int rule_ptr = be16_to_cpu(rules_ptr[i]) << 2;
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200922 struct fwdb_rule *rule = (void *)((u8 *)db + rule_ptr);
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300923
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200924 if (rule->len < offsetofend(struct fwdb_rule, wmm_ptr))
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300925 continue;
926
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200927 if (freq >= KHZ_TO_MHZ(be32_to_cpu(rule->start)) &&
928 freq <= KHZ_TO_MHZ(be32_to_cpu(rule->end))) {
929 set_wmm_rule(db, country, rule, rrule);
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300930 return 0;
931 }
932 }
933
934 return -ENODATA;
935}
936
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200937int reg_query_regdb_wmm(char *alpha2, int freq, struct ieee80211_reg_rule *rule)
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300938{
939 const struct fwdb_header *hdr = regdb;
940 const struct fwdb_country *country;
941
Haim Dreyfuss5247a772018-05-21 23:34:57 +0300942 if (!regdb)
943 return -ENODATA;
944
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300945 if (IS_ERR(regdb))
946 return PTR_ERR(regdb);
947
948 country = &hdr->country[0];
949 while (country->coll_ptr) {
950 if (alpha2_equal(alpha2, country->alpha2))
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200951 return __regdb_query_wmm(regdb, country, freq, rule);
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300952
953 country++;
954 }
955
956 return -ENODATA;
957}
958EXPORT_SYMBOL(reg_query_regdb_wmm);
959
Johannes Berg007f6c52015-10-15 11:22:58 +0200960static int regdb_query_country(const struct fwdb_header *db,
961 const struct fwdb_country *country)
962{
963 unsigned int ptr = be16_to_cpu(country->coll_ptr) << 2;
964 struct fwdb_collection *coll = (void *)((u8 *)db + ptr);
965 struct ieee80211_regdomain *regdom;
Gustavo A. R. Silva9f8c7132019-04-03 10:31:51 -0500966 unsigned int i;
Johannes Berg007f6c52015-10-15 11:22:58 +0200967
Gustavo A. R. Silva9f8c7132019-04-03 10:31:51 -0500968 regdom = kzalloc(struct_size(regdom, reg_rules, coll->n_rules),
969 GFP_KERNEL);
Johannes Berg007f6c52015-10-15 11:22:58 +0200970 if (!regdom)
971 return -ENOMEM;
972
973 regdom->n_reg_rules = coll->n_rules;
974 regdom->alpha2[0] = country->alpha2[0];
975 regdom->alpha2[1] = country->alpha2[1];
976 regdom->dfs_region = coll->dfs_region;
977
978 for (i = 0; i < regdom->n_reg_rules; i++) {
979 __be16 *rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2));
980 unsigned int rule_ptr = be16_to_cpu(rules_ptr[i]) << 2;
981 struct fwdb_rule *rule = (void *)((u8 *)db + rule_ptr);
982 struct ieee80211_reg_rule *rrule = &regdom->reg_rules[i];
983
984 rrule->freq_range.start_freq_khz = be32_to_cpu(rule->start);
985 rrule->freq_range.end_freq_khz = be32_to_cpu(rule->end);
986 rrule->freq_range.max_bandwidth_khz = be32_to_cpu(rule->max_bw);
987
988 rrule->power_rule.max_antenna_gain = 0;
989 rrule->power_rule.max_eirp = be16_to_cpu(rule->max_eirp);
990
991 rrule->flags = 0;
992 if (rule->flags & FWDB_FLAG_NO_OFDM)
993 rrule->flags |= NL80211_RRF_NO_OFDM;
994 if (rule->flags & FWDB_FLAG_NO_OUTDOOR)
995 rrule->flags |= NL80211_RRF_NO_OUTDOOR;
996 if (rule->flags & FWDB_FLAG_DFS)
997 rrule->flags |= NL80211_RRF_DFS;
998 if (rule->flags & FWDB_FLAG_NO_IR)
999 rrule->flags |= NL80211_RRF_NO_IR;
1000 if (rule->flags & FWDB_FLAG_AUTO_BW)
1001 rrule->flags |= NL80211_RRF_AUTO_BW;
1002
1003 rrule->dfs_cac_ms = 0;
1004
1005 /* handle optional data */
1006 if (rule->len >= offsetofend(struct fwdb_rule, cac_timeout))
1007 rrule->dfs_cac_ms =
1008 1000 * be16_to_cpu(rule->cac_timeout);
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +02001009 if (rule->len >= offsetofend(struct fwdb_rule, wmm_ptr))
1010 set_wmm_rule(db, country, rule, rrule);
Johannes Berg007f6c52015-10-15 11:22:58 +02001011 }
1012
1013 return reg_schedule_apply(regdom);
1014}
1015
1016static int query_regdb(const char *alpha2)
1017{
1018 const struct fwdb_header *hdr = regdb;
1019 const struct fwdb_country *country;
1020
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001021 ASSERT_RTNL();
1022
Johannes Berg007f6c52015-10-15 11:22:58 +02001023 if (IS_ERR(regdb))
1024 return PTR_ERR(regdb);
1025
1026 country = &hdr->country[0];
1027 while (country->coll_ptr) {
1028 if (alpha2_equal(alpha2, country->alpha2))
1029 return regdb_query_country(regdb, country);
1030 country++;
1031 }
1032
1033 return -ENODATA;
1034}
1035
1036static void regdb_fw_cb(const struct firmware *fw, void *context)
1037{
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001038 int set_error = 0;
1039 bool restore = true;
Johannes Berg007f6c52015-10-15 11:22:58 +02001040 void *db;
1041
1042 if (!fw) {
1043 pr_info("failed to load regulatory.db\n");
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001044 set_error = -ENODATA;
1045 } else if (!valid_regdb(fw->data, fw->size)) {
Johannes Berg90a53e42017-09-13 22:21:08 +02001046 pr_info("loaded regulatory.db is malformed or signature is missing/invalid\n");
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001047 set_error = -EINVAL;
Johannes Berg007f6c52015-10-15 11:22:58 +02001048 }
1049
Johannes Berg007f6c52015-10-15 11:22:58 +02001050 rtnl_lock();
Chaitanya Tatafaae54a2019-01-24 16:13:02 +05301051 if (regdb && !IS_ERR(regdb)) {
1052 /* negative case - a bug
1053 * positive case - can happen due to race in case of multiple cb's in
1054 * queue, due to usage of asynchronous callback
1055 *
1056 * Either case, just restore and free new db.
1057 */
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001058 } else if (set_error) {
1059 regdb = ERR_PTR(set_error);
1060 } else if (fw) {
1061 db = kmemdup(fw->data, fw->size, GFP_KERNEL);
1062 if (db) {
1063 regdb = db;
1064 restore = context && query_regdb(context);
1065 } else {
1066 restore = true;
1067 }
1068 }
1069
1070 if (restore)
Johannes Berge646a022019-02-05 21:08:29 +01001071 restore_regulatory_settings(true, false);
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001072
Johannes Berg007f6c52015-10-15 11:22:58 +02001073 rtnl_unlock();
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001074
Johannes Berg007f6c52015-10-15 11:22:58 +02001075 kfree(context);
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001076
1077 release_firmware(fw);
Johannes Berg007f6c52015-10-15 11:22:58 +02001078}
1079
1080static int query_regdb_file(const char *alpha2)
1081{
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001082 ASSERT_RTNL();
1083
Johannes Berg007f6c52015-10-15 11:22:58 +02001084 if (regdb)
1085 return query_regdb(alpha2);
1086
1087 alpha2 = kmemdup(alpha2, 2, GFP_KERNEL);
1088 if (!alpha2)
1089 return -ENOMEM;
1090
1091 return request_firmware_nowait(THIS_MODULE, true, "regulatory.db",
1092 &reg_pdev->dev, GFP_KERNEL,
1093 (void *)alpha2, regdb_fw_cb);
1094}
1095
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001096int reg_reload_regdb(void)
1097{
1098 const struct firmware *fw;
1099 void *db;
1100 int err;
1101
1102 err = request_firmware(&fw, "regulatory.db", &reg_pdev->dev);
1103 if (err)
1104 return err;
1105
1106 if (!valid_regdb(fw->data, fw->size)) {
1107 err = -ENODATA;
1108 goto out;
1109 }
1110
1111 db = kmemdup(fw->data, fw->size, GFP_KERNEL);
1112 if (!db) {
1113 err = -ENOMEM;
1114 goto out;
1115 }
1116
1117 rtnl_lock();
1118 if (!IS_ERR_OR_NULL(regdb))
1119 kfree(regdb);
1120 regdb = db;
1121 rtnl_unlock();
1122
1123 out:
1124 release_firmware(fw);
1125 return err;
1126}
1127
Johannes Bergcecbb062015-10-15 08:47:34 +02001128static bool reg_query_database(struct regulatory_request *request)
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001129{
Johannes Berg007f6c52015-10-15 11:22:58 +02001130 if (query_regdb_file(request->alpha2) == 0)
1131 return true;
1132
Johannes Bergc7d319e52015-10-15 09:03:05 +02001133 if (call_crda(request->alpha2) == 0)
1134 return true;
1135
1136 return false;
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001137}
1138
Luis R. Rodrigueze4387682013-11-05 09:18:01 -08001139bool reg_is_valid_request(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001140{
Johannes Bergc492db32012-12-06 16:29:25 +01001141 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez61405e92009-05-13 17:04:41 -04001142
Johannes Bergc492db32012-12-06 16:29:25 +01001143 if (!lr || lr->processed)
Johannes Bergf6037d02008-10-21 11:01:33 +02001144 return false;
1145
Johannes Bergc492db32012-12-06 16:29:25 +01001146 return alpha2_equal(lr->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001147}
1148
Janusz Dziedzice3961af2014-01-25 11:24:11 +01001149static const struct ieee80211_regdomain *reg_get_regdomain(struct wiphy *wiphy)
1150{
1151 struct regulatory_request *lr = get_last_request();
1152
1153 /*
1154 * Follow the driver's regulatory domain, if present, unless a country
1155 * IE has been processed or a user wants to help complaince further
1156 */
1157 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
1158 lr->initiator != NL80211_REGDOM_SET_BY_USER &&
1159 wiphy->regd)
1160 return get_wiphy_regdom(wiphy);
1161
1162 return get_cfg80211_regdom();
1163}
1164
Arik Nemtsova6d4a532014-10-23 09:37:33 +03001165static unsigned int
1166reg_get_max_bandwidth_from_range(const struct ieee80211_regdomain *rd,
1167 const struct ieee80211_reg_rule *rule)
Janusz Dziedzic97524822014-01-30 09:52:20 +01001168{
1169 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
1170 const struct ieee80211_freq_range *freq_range_tmp;
1171 const struct ieee80211_reg_rule *tmp;
1172 u32 start_freq, end_freq, idx, no;
1173
1174 for (idx = 0; idx < rd->n_reg_rules; idx++)
1175 if (rule == &rd->reg_rules[idx])
1176 break;
1177
1178 if (idx == rd->n_reg_rules)
1179 return 0;
1180
1181 /* get start_freq */
1182 no = idx;
1183
1184 while (no) {
1185 tmp = &rd->reg_rules[--no];
1186 freq_range_tmp = &tmp->freq_range;
1187
1188 if (freq_range_tmp->end_freq_khz < freq_range->start_freq_khz)
1189 break;
1190
Janusz Dziedzic97524822014-01-30 09:52:20 +01001191 freq_range = freq_range_tmp;
1192 }
1193
1194 start_freq = freq_range->start_freq_khz;
1195
1196 /* get end_freq */
1197 freq_range = &rule->freq_range;
1198 no = idx;
1199
1200 while (no < rd->n_reg_rules - 1) {
1201 tmp = &rd->reg_rules[++no];
1202 freq_range_tmp = &tmp->freq_range;
1203
1204 if (freq_range_tmp->start_freq_khz > freq_range->end_freq_khz)
1205 break;
1206
Janusz Dziedzic97524822014-01-30 09:52:20 +01001207 freq_range = freq_range_tmp;
1208 }
1209
1210 end_freq = freq_range->end_freq_khz;
1211
1212 return end_freq - start_freq;
1213}
1214
Arik Nemtsova6d4a532014-10-23 09:37:33 +03001215unsigned int reg_get_max_bandwidth(const struct ieee80211_regdomain *rd,
1216 const struct ieee80211_reg_rule *rule)
1217{
1218 unsigned int bw = reg_get_max_bandwidth_from_range(rd, rule);
1219
1220 if (rule->flags & NL80211_RRF_NO_160MHZ)
1221 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(80));
1222 if (rule->flags & NL80211_RRF_NO_80MHZ)
1223 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(40));
1224
1225 /*
1226 * HT40+/HT40- limits are handled per-channel. Only limit BW if both
1227 * are not allowed.
1228 */
1229 if (rule->flags & NL80211_RRF_NO_HT40MINUS &&
1230 rule->flags & NL80211_RRF_NO_HT40PLUS)
1231 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(20));
1232
1233 return bw;
1234}
1235
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001236/* Sanity check on a regulatory rule */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001237static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001238{
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001239 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001240 u32 freq_diff;
1241
Luis R. Rodriguez91e99002008-11-12 14:21:55 -08001242 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001243 return false;
1244
1245 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
1246 return false;
1247
1248 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
1249
Roel Kluinbd05f282009-03-03 22:55:21 +01001250 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
Johannes Berg1a919312012-12-03 17:21:11 +01001251 freq_range->max_bandwidth_khz > freq_diff)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001252 return false;
1253
1254 return true;
1255}
1256
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001257static bool is_valid_rd(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001258{
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001259 const struct ieee80211_reg_rule *reg_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001260 unsigned int i;
1261
1262 if (!rd->n_reg_rules)
1263 return false;
1264
Luis R. Rodriguez88dc1c32008-11-12 14:22:01 -08001265 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
1266 return false;
1267
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001268 for (i = 0; i < rd->n_reg_rules; i++) {
1269 reg_rule = &rd->reg_rules[i];
1270 if (!is_valid_reg_rule(reg_rule))
1271 return false;
1272 }
1273
1274 return true;
1275}
1276
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001277/**
1278 * freq_in_rule_band - tells us if a frequency is in a frequency band
1279 * @freq_range: frequency rule we want to query
1280 * @freq_khz: frequency we are inquiring about
1281 *
1282 * This lets us know if a specific frequency rule is or is not relevant to
1283 * a specific frequency's band. Bands are device specific and artificial
Vladimir Kondratiev64629b92012-09-23 09:49:54 +02001284 * definitions (the "2.4 GHz band", the "5 GHz band" and the "60GHz band"),
1285 * however it is safe for now to assume that a frequency rule should not be
1286 * part of a frequency's band if the start freq or end freq are off by more
Chaitanya Tata93183bd2019-01-19 03:17:47 +05301287 * than 2 GHz for the 2.4 and 5 GHz bands, and by more than 20 GHz for the
Vladimir Kondratiev64629b92012-09-23 09:49:54 +02001288 * 60 GHz band.
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001289 * This resolution can be lowered and should be considered as we add
1290 * regulatory rule support for other "bands".
1291 **/
1292static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
Johannes Berg1a919312012-12-03 17:21:11 +01001293 u32 freq_khz)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001294{
1295#define ONE_GHZ_IN_KHZ 1000000
Vladimir Kondratiev64629b92012-09-23 09:49:54 +02001296 /*
1297 * From 802.11ad: directional multi-gigabit (DMG):
1298 * Pertaining to operation in a frequency band containing a channel
1299 * with the Channel starting frequency above 45 GHz.
1300 */
1301 u32 limit = freq_khz > 45 * ONE_GHZ_IN_KHZ ?
Chaitanya Tata93183bd2019-01-19 03:17:47 +05301302 20 * ONE_GHZ_IN_KHZ : 2 * ONE_GHZ_IN_KHZ;
Vladimir Kondratiev64629b92012-09-23 09:49:54 +02001303 if (abs(freq_khz - freq_range->start_freq_khz) <= limit)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001304 return true;
Vladimir Kondratiev64629b92012-09-23 09:49:54 +02001305 if (abs(freq_khz - freq_range->end_freq_khz) <= limit)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001306 return true;
1307 return false;
1308#undef ONE_GHZ_IN_KHZ
1309}
1310
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001311/*
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +01001312 * Later on we can perhaps use the more restrictive DFS
1313 * region but we don't have information for that yet so
1314 * for now simply disallow conflicts.
1315 */
1316static enum nl80211_dfs_regions
1317reg_intersect_dfs_region(const enum nl80211_dfs_regions dfs_region1,
1318 const enum nl80211_dfs_regions dfs_region2)
1319{
1320 if (dfs_region1 != dfs_region2)
1321 return NL80211_DFS_UNSET;
1322 return dfs_region1;
1323}
1324
Ilan Peer08a75a82019-03-15 17:39:00 +02001325static void reg_wmm_rules_intersect(const struct ieee80211_wmm_ac *wmm_ac1,
1326 const struct ieee80211_wmm_ac *wmm_ac2,
1327 struct ieee80211_wmm_ac *intersect)
1328{
1329 intersect->cw_min = max_t(u16, wmm_ac1->cw_min, wmm_ac2->cw_min);
1330 intersect->cw_max = max_t(u16, wmm_ac1->cw_max, wmm_ac2->cw_max);
1331 intersect->cot = min_t(u16, wmm_ac1->cot, wmm_ac2->cot);
1332 intersect->aifsn = max_t(u8, wmm_ac1->aifsn, wmm_ac2->aifsn);
1333}
1334
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +01001335/*
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001336 * Helper for regdom_intersect(), this does the real
1337 * mathematical intersection fun
1338 */
Janusz Dziedzic97524822014-01-30 09:52:20 +01001339static int reg_rules_intersect(const struct ieee80211_regdomain *rd1,
1340 const struct ieee80211_regdomain *rd2,
1341 const struct ieee80211_reg_rule *rule1,
Johannes Berg1a919312012-12-03 17:21:11 +01001342 const struct ieee80211_reg_rule *rule2,
1343 struct ieee80211_reg_rule *intersected_rule)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001344{
1345 const struct ieee80211_freq_range *freq_range1, *freq_range2;
1346 struct ieee80211_freq_range *freq_range;
1347 const struct ieee80211_power_rule *power_rule1, *power_rule2;
1348 struct ieee80211_power_rule *power_rule;
Ilan Peer08a75a82019-03-15 17:39:00 +02001349 const struct ieee80211_wmm_rule *wmm_rule1, *wmm_rule2;
1350 struct ieee80211_wmm_rule *wmm_rule;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001351 u32 freq_diff, max_bandwidth1, max_bandwidth2;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001352
1353 freq_range1 = &rule1->freq_range;
1354 freq_range2 = &rule2->freq_range;
1355 freq_range = &intersected_rule->freq_range;
1356
1357 power_rule1 = &rule1->power_rule;
1358 power_rule2 = &rule2->power_rule;
1359 power_rule = &intersected_rule->power_rule;
1360
Ilan Peer08a75a82019-03-15 17:39:00 +02001361 wmm_rule1 = &rule1->wmm_rule;
1362 wmm_rule2 = &rule2->wmm_rule;
1363 wmm_rule = &intersected_rule->wmm_rule;
1364
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001365 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
Johannes Berg1a919312012-12-03 17:21:11 +01001366 freq_range2->start_freq_khz);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001367 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
Johannes Berg1a919312012-12-03 17:21:11 +01001368 freq_range2->end_freq_khz);
Janusz Dziedzic97524822014-01-30 09:52:20 +01001369
1370 max_bandwidth1 = freq_range1->max_bandwidth_khz;
1371 max_bandwidth2 = freq_range2->max_bandwidth_khz;
1372
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001373 if (rule1->flags & NL80211_RRF_AUTO_BW)
1374 max_bandwidth1 = reg_get_max_bandwidth(rd1, rule1);
1375 if (rule2->flags & NL80211_RRF_AUTO_BW)
1376 max_bandwidth2 = reg_get_max_bandwidth(rd2, rule2);
Janusz Dziedzic97524822014-01-30 09:52:20 +01001377
1378 freq_range->max_bandwidth_khz = min(max_bandwidth1, max_bandwidth2);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001379
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001380 intersected_rule->flags = rule1->flags | rule2->flags;
1381
1382 /*
1383 * In case NL80211_RRF_AUTO_BW requested for both rules
1384 * set AUTO_BW in intersected rule also. Next we will
1385 * calculate BW correctly in handle_channel function.
1386 * In other case remove AUTO_BW flag while we calculate
1387 * maximum bandwidth correctly and auto calculation is
1388 * not required.
1389 */
1390 if ((rule1->flags & NL80211_RRF_AUTO_BW) &&
1391 (rule2->flags & NL80211_RRF_AUTO_BW))
1392 intersected_rule->flags |= NL80211_RRF_AUTO_BW;
1393 else
1394 intersected_rule->flags &= ~NL80211_RRF_AUTO_BW;
1395
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001396 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
1397 if (freq_range->max_bandwidth_khz > freq_diff)
1398 freq_range->max_bandwidth_khz = freq_diff;
1399
1400 power_rule->max_eirp = min(power_rule1->max_eirp,
1401 power_rule2->max_eirp);
1402 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
1403 power_rule2->max_antenna_gain);
1404
Janusz Dziedzic089027e2014-02-21 19:46:12 +01001405 intersected_rule->dfs_cac_ms = max(rule1->dfs_cac_ms,
1406 rule2->dfs_cac_ms);
1407
Ilan Peer08a75a82019-03-15 17:39:00 +02001408 if (rule1->has_wmm && rule2->has_wmm) {
1409 u8 ac;
1410
1411 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1412 reg_wmm_rules_intersect(&wmm_rule1->client[ac],
1413 &wmm_rule2->client[ac],
1414 &wmm_rule->client[ac]);
1415 reg_wmm_rules_intersect(&wmm_rule1->ap[ac],
1416 &wmm_rule2->ap[ac],
1417 &wmm_rule->ap[ac]);
1418 }
1419
1420 intersected_rule->has_wmm = true;
1421 } else if (rule1->has_wmm) {
1422 *wmm_rule = *wmm_rule1;
1423 intersected_rule->has_wmm = true;
1424 } else if (rule2->has_wmm) {
1425 *wmm_rule = *wmm_rule2;
1426 intersected_rule->has_wmm = true;
1427 } else {
1428 intersected_rule->has_wmm = false;
1429 }
1430
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001431 if (!is_valid_reg_rule(intersected_rule))
1432 return -EINVAL;
1433
1434 return 0;
1435}
1436
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001437/* check whether old rule contains new rule */
1438static bool rule_contains(struct ieee80211_reg_rule *r1,
1439 struct ieee80211_reg_rule *r2)
1440{
1441 /* for simplicity, currently consider only same flags */
1442 if (r1->flags != r2->flags)
1443 return false;
1444
1445 /* verify r1 is more restrictive */
1446 if ((r1->power_rule.max_antenna_gain >
1447 r2->power_rule.max_antenna_gain) ||
1448 r1->power_rule.max_eirp > r2->power_rule.max_eirp)
1449 return false;
1450
1451 /* make sure r2's range is contained within r1 */
1452 if (r1->freq_range.start_freq_khz > r2->freq_range.start_freq_khz ||
1453 r1->freq_range.end_freq_khz < r2->freq_range.end_freq_khz)
1454 return false;
1455
1456 /* and finally verify that r1.max_bw >= r2.max_bw */
1457 if (r1->freq_range.max_bandwidth_khz <
1458 r2->freq_range.max_bandwidth_khz)
1459 return false;
1460
1461 return true;
1462}
1463
1464/* add or extend current rules. do nothing if rule is already contained */
1465static void add_rule(struct ieee80211_reg_rule *rule,
1466 struct ieee80211_reg_rule *reg_rules, u32 *n_rules)
1467{
1468 struct ieee80211_reg_rule *tmp_rule;
1469 int i;
1470
1471 for (i = 0; i < *n_rules; i++) {
1472 tmp_rule = &reg_rules[i];
1473 /* rule is already contained - do nothing */
1474 if (rule_contains(tmp_rule, rule))
1475 return;
1476
1477 /* extend rule if possible */
1478 if (rule_contains(rule, tmp_rule)) {
1479 memcpy(tmp_rule, rule, sizeof(*rule));
1480 return;
1481 }
1482 }
1483
1484 memcpy(&reg_rules[*n_rules], rule, sizeof(*rule));
1485 (*n_rules)++;
1486}
1487
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001488/**
1489 * regdom_intersect - do the intersection between two regulatory domains
1490 * @rd1: first regulatory domain
1491 * @rd2: second regulatory domain
1492 *
1493 * Use this function to get the intersection between two regulatory domains.
1494 * Once completed we will mark the alpha2 for the rd as intersected, "98",
1495 * as no one single alpha2 can represent this regulatory domain.
1496 *
1497 * Returns a pointer to the regulatory domain structure which will hold the
1498 * resulting intersection of rules between rd1 and rd2. We will
1499 * kzalloc() this structure for you.
1500 */
Johannes Berg1a919312012-12-03 17:21:11 +01001501static struct ieee80211_regdomain *
1502regdom_intersect(const struct ieee80211_regdomain *rd1,
1503 const struct ieee80211_regdomain *rd2)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001504{
Gustavo A. R. Silva9f8c7132019-04-03 10:31:51 -05001505 int r;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001506 unsigned int x, y;
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001507 unsigned int num_rules = 0;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001508 const struct ieee80211_reg_rule *rule1, *rule2;
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001509 struct ieee80211_reg_rule intersected_rule;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001510 struct ieee80211_regdomain *rd;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001511
1512 if (!rd1 || !rd2)
1513 return NULL;
1514
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001515 /*
1516 * First we get a count of the rules we'll need, then we actually
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001517 * build them. This is to so we can malloc() and free() a
1518 * regdomain once. The reason we use reg_rules_intersect() here
1519 * is it will return -EINVAL if the rule computed makes no sense.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001520 * All rules that do check out OK are valid.
1521 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001522
1523 for (x = 0; x < rd1->n_reg_rules; x++) {
1524 rule1 = &rd1->reg_rules[x];
1525 for (y = 0; y < rd2->n_reg_rules; y++) {
1526 rule2 = &rd2->reg_rules[y];
Janusz Dziedzic97524822014-01-30 09:52:20 +01001527 if (!reg_rules_intersect(rd1, rd2, rule1, rule2,
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001528 &intersected_rule))
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001529 num_rules++;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001530 }
1531 }
1532
1533 if (!num_rules)
1534 return NULL;
1535
Gustavo A. R. Silva9f8c7132019-04-03 10:31:51 -05001536 rd = kzalloc(struct_size(rd, reg_rules, num_rules), GFP_KERNEL);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001537 if (!rd)
1538 return NULL;
1539
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001540 for (x = 0; x < rd1->n_reg_rules; x++) {
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001541 rule1 = &rd1->reg_rules[x];
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001542 for (y = 0; y < rd2->n_reg_rules; y++) {
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001543 rule2 = &rd2->reg_rules[y];
Janusz Dziedzic97524822014-01-30 09:52:20 +01001544 r = reg_rules_intersect(rd1, rd2, rule1, rule2,
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001545 &intersected_rule);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001546 /*
1547 * No need to memset here the intersected rule here as
1548 * we're not using the stack anymore
1549 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001550 if (r)
1551 continue;
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001552
1553 add_rule(&intersected_rule, rd->reg_rules,
1554 &rd->n_reg_rules);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001555 }
1556 }
1557
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001558 rd->alpha2[0] = '9';
1559 rd->alpha2[1] = '8';
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +01001560 rd->dfs_region = reg_intersect_dfs_region(rd1->dfs_region,
1561 rd2->dfs_region);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001562
1563 return rd;
1564}
1565
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001566/*
1567 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
1568 * want to just have the channel structure use these
1569 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001570static u32 map_regdom_flags(u32 rd_flags)
1571{
1572 u32 channel_flags = 0;
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001573 if (rd_flags & NL80211_RRF_NO_IR_ALL)
1574 channel_flags |= IEEE80211_CHAN_NO_IR;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001575 if (rd_flags & NL80211_RRF_DFS)
1576 channel_flags |= IEEE80211_CHAN_RADAR;
Seth Forshee03f6b082012-08-01 15:58:42 -05001577 if (rd_flags & NL80211_RRF_NO_OFDM)
1578 channel_flags |= IEEE80211_CHAN_NO_OFDM;
David Spinadel570dbde2014-02-23 09:12:59 +02001579 if (rd_flags & NL80211_RRF_NO_OUTDOOR)
1580 channel_flags |= IEEE80211_CHAN_INDOOR_ONLY;
Arik Nemtsov06f207f2015-05-06 16:28:31 +03001581 if (rd_flags & NL80211_RRF_IR_CONCURRENT)
1582 channel_flags |= IEEE80211_CHAN_IR_CONCURRENT;
Arik Nemtsova6d4a532014-10-23 09:37:33 +03001583 if (rd_flags & NL80211_RRF_NO_HT40MINUS)
1584 channel_flags |= IEEE80211_CHAN_NO_HT40MINUS;
1585 if (rd_flags & NL80211_RRF_NO_HT40PLUS)
1586 channel_flags |= IEEE80211_CHAN_NO_HT40PLUS;
1587 if (rd_flags & NL80211_RRF_NO_80MHZ)
1588 channel_flags |= IEEE80211_CHAN_NO_80MHZ;
1589 if (rd_flags & NL80211_RRF_NO_160MHZ)
1590 channel_flags |= IEEE80211_CHAN_NO_160MHZ;
Haim Dreyfuss1e61d822020-01-21 10:12:13 +02001591 if (rd_flags & NL80211_RRF_NO_HE)
1592 channel_flags |= IEEE80211_CHAN_NO_HE;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001593 return channel_flags;
1594}
1595
Johannes Berg361c9c82012-12-06 15:57:14 +01001596static const struct ieee80211_reg_rule *
Michal Sojka49172872015-11-23 19:27:14 +01001597freq_reg_info_regd(u32 center_freq,
Matthias May4edd5692015-07-17 15:28:39 +02001598 const struct ieee80211_regdomain *regd, u32 bw)
Johannes Berg8318d782008-01-24 19:38:38 +01001599{
1600 int i;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001601 bool band_rule_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001602 bool bw_fits = false;
1603
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001604 if (!regd)
Johannes Berg361c9c82012-12-06 15:57:14 +01001605 return ERR_PTR(-EINVAL);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001606
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001607 for (i = 0; i < regd->n_reg_rules; i++) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001608 const struct ieee80211_reg_rule *rr;
1609 const struct ieee80211_freq_range *fr = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001610
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001611 rr = &regd->reg_rules[i];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001612 fr = &rr->freq_range;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001613
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001614 /*
1615 * We only need to know if one frequency rule was
Randy Dunlapcc5a639b2020-08-22 16:19:50 -07001616 * in center_freq's band, that's enough, so let's
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001617 * not overwrite it once found
1618 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001619 if (!band_rule_found)
1620 band_rule_found = freq_in_rule_band(fr, center_freq);
1621
Rafał Miłecki4787cfa2017-01-04 18:58:30 +01001622 bw_fits = cfg80211_does_bw_fit_range(fr, center_freq, bw);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001623
Johannes Berg361c9c82012-12-06 15:57:14 +01001624 if (band_rule_found && bw_fits)
1625 return rr;
Johannes Berg8318d782008-01-24 19:38:38 +01001626 }
1627
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001628 if (!band_rule_found)
Johannes Berg361c9c82012-12-06 15:57:14 +01001629 return ERR_PTR(-ERANGE);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001630
Johannes Berg361c9c82012-12-06 15:57:14 +01001631 return ERR_PTR(-EINVAL);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001632}
1633
Johannes Berg8de1c632015-08-21 14:13:06 +02001634static const struct ieee80211_reg_rule *
1635__freq_reg_info(struct wiphy *wiphy, u32 center_freq, u32 min_bw)
Matthias May4edd5692015-07-17 15:28:39 +02001636{
1637 const struct ieee80211_regdomain *regd = reg_get_regdomain(wiphy);
Colin Ian Kingc7ed0e62020-11-16 18:16:36 +00001638 static const u32 bws[] = {0, 1, 2, 4, 5, 8, 10, 16, 20};
Luca Coelho9e6d5122021-02-04 15:44:39 +02001639 const struct ieee80211_reg_rule *reg_rule = ERR_PTR(-ERANGE);
Thomas Pedersen68dbad82020-09-08 12:03:04 -07001640 int i = ARRAY_SIZE(bws) - 1;
Matthias May4edd5692015-07-17 15:28:39 +02001641 u32 bw;
1642
Thomas Pedersen68dbad82020-09-08 12:03:04 -07001643 for (bw = MHZ_TO_KHZ(bws[i]); bw >= min_bw; bw = MHZ_TO_KHZ(bws[i--])) {
Michal Sojka49172872015-11-23 19:27:14 +01001644 reg_rule = freq_reg_info_regd(center_freq, regd, bw);
Matthias May4edd5692015-07-17 15:28:39 +02001645 if (!IS_ERR(reg_rule))
1646 return reg_rule;
1647 }
1648
1649 return reg_rule;
1650}
1651
Johannes Berg361c9c82012-12-06 15:57:14 +01001652const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
1653 u32 center_freq)
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001654{
Thomas Pedersen68dbad82020-09-08 12:03:04 -07001655 u32 min_bw = center_freq < MHZ_TO_KHZ(1000) ? 1 : 20;
1656
1657 return __freq_reg_info(wiphy, center_freq, MHZ_TO_KHZ(min_bw));
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001658}
John W. Linville4f366c52010-07-15 14:57:33 -04001659EXPORT_SYMBOL(freq_reg_info);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001660
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001661const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301662{
1663 switch (initiator) {
1664 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001665 return "core";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301666 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001667 return "user";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301668 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001669 return "driver";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301670 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Toke Høiland-Jørgensen8db0c4332018-04-19 11:17:38 +02001671 return "country element";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301672 default:
1673 WARN_ON(1);
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001674 return "bug";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301675 }
1676}
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001677EXPORT_SYMBOL(reg_initiator_name);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301678
Michal Sojka1aeb1352015-11-23 19:27:16 +01001679static uint32_t reg_rule_to_chan_bw_flags(const struct ieee80211_regdomain *regd,
1680 const struct ieee80211_reg_rule *reg_rule,
1681 const struct ieee80211_channel *chan)
1682{
1683 const struct ieee80211_freq_range *freq_range = NULL;
Thomas Pedersen934f4c72020-04-01 18:18:03 -07001684 u32 max_bandwidth_khz, center_freq_khz, bw_flags = 0;
Thomas Pedersen68dbad82020-09-08 12:03:04 -07001685 bool is_s1g = chan->band == NL80211_BAND_S1GHZ;
Michal Sojka1aeb1352015-11-23 19:27:16 +01001686
1687 freq_range = &reg_rule->freq_range;
1688
1689 max_bandwidth_khz = freq_range->max_bandwidth_khz;
Thomas Pedersen934f4c72020-04-01 18:18:03 -07001690 center_freq_khz = ieee80211_channel_to_khz(chan);
Michal Sojka1aeb1352015-11-23 19:27:16 +01001691 /* Check if auto calculation requested */
1692 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
1693 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
1694
1695 /* If we get a reg_rule we can assume that at least 5Mhz fit */
Rafał Miłecki4787cfa2017-01-04 18:58:30 +01001696 if (!cfg80211_does_bw_fit_range(freq_range,
Thomas Pedersen934f4c72020-04-01 18:18:03 -07001697 center_freq_khz,
Rafał Miłecki4787cfa2017-01-04 18:58:30 +01001698 MHZ_TO_KHZ(10)))
Michal Sojka1aeb1352015-11-23 19:27:16 +01001699 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
Rafał Miłecki4787cfa2017-01-04 18:58:30 +01001700 if (!cfg80211_does_bw_fit_range(freq_range,
Thomas Pedersen934f4c72020-04-01 18:18:03 -07001701 center_freq_khz,
Rafał Miłecki4787cfa2017-01-04 18:58:30 +01001702 MHZ_TO_KHZ(20)))
Michal Sojka1aeb1352015-11-23 19:27:16 +01001703 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1704
Thomas Pedersen68dbad82020-09-08 12:03:04 -07001705 if (is_s1g) {
1706 /* S1G is strict about non overlapping channels. We can
1707 * calculate which bandwidth is allowed per channel by finding
1708 * the largest bandwidth which cleanly divides the freq_range.
1709 */
1710 int edge_offset;
1711 int ch_bw = max_bandwidth_khz;
1712
1713 while (ch_bw) {
1714 edge_offset = (center_freq_khz - ch_bw / 2) -
1715 freq_range->start_freq_khz;
1716 if (edge_offset % ch_bw == 0) {
1717 switch (KHZ_TO_MHZ(ch_bw)) {
1718 case 1:
1719 bw_flags |= IEEE80211_CHAN_1MHZ;
1720 break;
1721 case 2:
1722 bw_flags |= IEEE80211_CHAN_2MHZ;
1723 break;
1724 case 4:
1725 bw_flags |= IEEE80211_CHAN_4MHZ;
1726 break;
1727 case 8:
1728 bw_flags |= IEEE80211_CHAN_8MHZ;
1729 break;
1730 case 16:
1731 bw_flags |= IEEE80211_CHAN_16MHZ;
1732 break;
1733 default:
1734 /* If we got here, no bandwidths fit on
1735 * this frequency, ie. band edge.
1736 */
1737 bw_flags |= IEEE80211_CHAN_DISABLED;
1738 break;
1739 }
1740 break;
1741 }
1742 ch_bw /= 2;
1743 }
1744 } else {
1745 if (max_bandwidth_khz < MHZ_TO_KHZ(10))
1746 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1747 if (max_bandwidth_khz < MHZ_TO_KHZ(20))
1748 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1749 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
1750 bw_flags |= IEEE80211_CHAN_NO_HT40;
1751 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
1752 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
1753 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
1754 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
1755 }
Michal Sojka1aeb1352015-11-23 19:27:16 +01001756 return bw_flags;
1757}
1758
Markus Theil7c9ff7e2020-08-03 16:43:52 +02001759static void handle_channel_single_rule(struct wiphy *wiphy,
1760 enum nl80211_reg_initiator initiator,
1761 struct ieee80211_channel *chan,
1762 u32 flags,
1763 struct regulatory_request *lr,
1764 struct wiphy *request_wiphy,
1765 const struct ieee80211_reg_rule *reg_rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001766{
Markus Theil7c9ff7e2020-08-03 16:43:52 +02001767 u32 bw_flags = 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001768 const struct ieee80211_power_rule *power_rule = NULL;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001769 const struct ieee80211_regdomain *regd;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001770
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001771 regd = reg_get_regdomain(wiphy);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301772
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001773 power_rule = &reg_rule->power_rule;
Michal Sojka1aeb1352015-11-23 19:27:16 +01001774 bw_flags = reg_rule_to_chan_bw_flags(regd, reg_rule, chan);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001775
Johannes Bergc492db32012-12-06 16:29:25 +01001776 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001777 request_wiphy && request_wiphy == wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001778 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001779 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001780 * This guarantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001781 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001782 * settings
1783 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001784 chan->flags = chan->orig_flags =
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001785 map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001786 chan->max_antenna_gain = chan->orig_mag =
1787 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02001788 chan->max_reg_power = chan->max_power = chan->orig_mpwr =
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001789 (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic4f267c12014-04-09 13:47:12 +02001790
1791 if (chan->flags & IEEE80211_CHAN_RADAR) {
1792 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1793 if (reg_rule->dfs_cac_ms)
1794 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1795 }
1796
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001797 return;
1798 }
1799
Simon Wunderlich04f39042013-02-08 18:16:19 +01001800 chan->dfs_state = NL80211_DFS_USABLE;
1801 chan->dfs_state_entered = jiffies;
1802
Rajkumar Manoharanaa3d7ee2011-09-14 14:28:17 +05301803 chan->beacon_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001804 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
Johannes Berg1a919312012-12-03 17:21:11 +01001805 chan->max_antenna_gain =
1806 min_t(int, chan->orig_mag,
1807 MBI_TO_DBI(power_rule->max_antenna_gain));
Hong Wueccc0682012-01-11 20:33:39 +02001808 chan->max_reg_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic089027e2014-02-21 19:46:12 +01001809
1810 if (chan->flags & IEEE80211_CHAN_RADAR) {
1811 if (reg_rule->dfs_cac_ms)
1812 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1813 else
1814 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1815 }
1816
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001817 if (chan->orig_mpwr) {
1818 /*
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001819 * Devices that use REGULATORY_COUNTRY_IE_FOLLOW_POWER
1820 * will always follow the passed country IE power settings.
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001821 */
1822 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001823 wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_FOLLOW_POWER)
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001824 chan->max_power = chan->max_reg_power;
1825 else
1826 chan->max_power = min(chan->orig_mpwr,
1827 chan->max_reg_power);
1828 } else
1829 chan->max_power = chan->max_reg_power;
Johannes Berg8318d782008-01-24 19:38:38 +01001830}
1831
Markus Theil12adee32020-08-03 16:43:53 +02001832static void handle_channel_adjacent_rules(struct wiphy *wiphy,
1833 enum nl80211_reg_initiator initiator,
1834 struct ieee80211_channel *chan,
1835 u32 flags,
1836 struct regulatory_request *lr,
1837 struct wiphy *request_wiphy,
1838 const struct ieee80211_reg_rule *rrule1,
1839 const struct ieee80211_reg_rule *rrule2,
1840 struct ieee80211_freq_range *comb_range)
1841{
1842 u32 bw_flags1 = 0;
1843 u32 bw_flags2 = 0;
1844 const struct ieee80211_power_rule *power_rule1 = NULL;
1845 const struct ieee80211_power_rule *power_rule2 = NULL;
1846 const struct ieee80211_regdomain *regd;
1847
1848 regd = reg_get_regdomain(wiphy);
1849
1850 power_rule1 = &rrule1->power_rule;
1851 power_rule2 = &rrule2->power_rule;
1852 bw_flags1 = reg_rule_to_chan_bw_flags(regd, rrule1, chan);
1853 bw_flags2 = reg_rule_to_chan_bw_flags(regd, rrule2, chan);
1854
1855 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1856 request_wiphy && request_wiphy == wiphy &&
1857 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
1858 /* This guarantees the driver's requested regulatory domain
1859 * will always be used as a base for further regulatory
1860 * settings
1861 */
1862 chan->flags =
1863 map_regdom_flags(rrule1->flags) |
1864 map_regdom_flags(rrule2->flags) |
1865 bw_flags1 |
1866 bw_flags2;
1867 chan->orig_flags = chan->flags;
1868 chan->max_antenna_gain =
1869 min_t(int, MBI_TO_DBI(power_rule1->max_antenna_gain),
1870 MBI_TO_DBI(power_rule2->max_antenna_gain));
1871 chan->orig_mag = chan->max_antenna_gain;
1872 chan->max_reg_power =
1873 min_t(int, MBM_TO_DBM(power_rule1->max_eirp),
1874 MBM_TO_DBM(power_rule2->max_eirp));
1875 chan->max_power = chan->max_reg_power;
1876 chan->orig_mpwr = chan->max_reg_power;
1877
1878 if (chan->flags & IEEE80211_CHAN_RADAR) {
1879 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1880 if (rrule1->dfs_cac_ms || rrule2->dfs_cac_ms)
1881 chan->dfs_cac_ms = max_t(unsigned int,
1882 rrule1->dfs_cac_ms,
1883 rrule2->dfs_cac_ms);
1884 }
1885
1886 return;
1887 }
1888
1889 chan->dfs_state = NL80211_DFS_USABLE;
1890 chan->dfs_state_entered = jiffies;
1891
1892 chan->beacon_found = false;
1893 chan->flags = flags | bw_flags1 | bw_flags2 |
1894 map_regdom_flags(rrule1->flags) |
1895 map_regdom_flags(rrule2->flags);
1896
1897 /* reg_rule_to_chan_bw_flags may forbids 10 and forbids 20 MHz
1898 * (otherwise no adj. rule case), recheck therefore
1899 */
1900 if (cfg80211_does_bw_fit_range(comb_range,
1901 ieee80211_channel_to_khz(chan),
1902 MHZ_TO_KHZ(10)))
1903 chan->flags &= ~IEEE80211_CHAN_NO_10MHZ;
1904 if (cfg80211_does_bw_fit_range(comb_range,
1905 ieee80211_channel_to_khz(chan),
1906 MHZ_TO_KHZ(20)))
1907 chan->flags &= ~IEEE80211_CHAN_NO_20MHZ;
1908
1909 chan->max_antenna_gain =
1910 min_t(int, chan->orig_mag,
1911 min_t(int,
1912 MBI_TO_DBI(power_rule1->max_antenna_gain),
1913 MBI_TO_DBI(power_rule2->max_antenna_gain)));
1914 chan->max_reg_power = min_t(int,
1915 MBM_TO_DBM(power_rule1->max_eirp),
1916 MBM_TO_DBM(power_rule2->max_eirp));
1917
1918 if (chan->flags & IEEE80211_CHAN_RADAR) {
1919 if (rrule1->dfs_cac_ms || rrule2->dfs_cac_ms)
1920 chan->dfs_cac_ms = max_t(unsigned int,
1921 rrule1->dfs_cac_ms,
1922 rrule2->dfs_cac_ms);
1923 else
1924 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1925 }
1926
1927 if (chan->orig_mpwr) {
1928 /* Devices that use REGULATORY_COUNTRY_IE_FOLLOW_POWER
1929 * will always follow the passed country IE power settings.
1930 */
1931 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
1932 wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_FOLLOW_POWER)
1933 chan->max_power = chan->max_reg_power;
1934 else
1935 chan->max_power = min(chan->orig_mpwr,
1936 chan->max_reg_power);
1937 } else {
1938 chan->max_power = chan->max_reg_power;
1939 }
1940}
1941
Markus Theil7c9ff7e2020-08-03 16:43:52 +02001942/* Note that right now we assume the desired channel bandwidth
1943 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
1944 * per channel, the primary and the extension channel).
1945 */
1946static void handle_channel(struct wiphy *wiphy,
1947 enum nl80211_reg_initiator initiator,
1948 struct ieee80211_channel *chan)
1949{
Markus Theil12adee32020-08-03 16:43:53 +02001950 const u32 orig_chan_freq = ieee80211_channel_to_khz(chan);
Markus Theil7c9ff7e2020-08-03 16:43:52 +02001951 struct regulatory_request *lr = get_last_request();
Markus Theil12adee32020-08-03 16:43:53 +02001952 struct wiphy *request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
1953 const struct ieee80211_reg_rule *rrule = NULL;
1954 const struct ieee80211_reg_rule *rrule1 = NULL;
1955 const struct ieee80211_reg_rule *rrule2 = NULL;
Markus Theil7c9ff7e2020-08-03 16:43:52 +02001956
Markus Theil12adee32020-08-03 16:43:53 +02001957 u32 flags = chan->orig_flags;
Markus Theil7c9ff7e2020-08-03 16:43:52 +02001958
Markus Theil12adee32020-08-03 16:43:53 +02001959 rrule = freq_reg_info(wiphy, orig_chan_freq);
1960 if (IS_ERR(rrule)) {
1961 /* check for adjacent match, therefore get rules for
1962 * chan - 20 MHz and chan + 20 MHz and test
1963 * if reg rules are adjacent
1964 */
1965 rrule1 = freq_reg_info(wiphy,
1966 orig_chan_freq - MHZ_TO_KHZ(20));
1967 rrule2 = freq_reg_info(wiphy,
1968 orig_chan_freq + MHZ_TO_KHZ(20));
1969 if (!IS_ERR(rrule1) && !IS_ERR(rrule2)) {
1970 struct ieee80211_freq_range comb_range;
Markus Theil7c9ff7e2020-08-03 16:43:52 +02001971
Markus Theil12adee32020-08-03 16:43:53 +02001972 if (rrule1->freq_range.end_freq_khz !=
1973 rrule2->freq_range.start_freq_khz)
1974 goto disable_chan;
1975
1976 comb_range.start_freq_khz =
1977 rrule1->freq_range.start_freq_khz;
1978 comb_range.end_freq_khz =
1979 rrule2->freq_range.end_freq_khz;
1980 comb_range.max_bandwidth_khz =
1981 min_t(u32,
1982 rrule1->freq_range.max_bandwidth_khz,
1983 rrule2->freq_range.max_bandwidth_khz);
1984
1985 if (!cfg80211_does_bw_fit_range(&comb_range,
1986 orig_chan_freq,
1987 MHZ_TO_KHZ(20)))
1988 goto disable_chan;
1989
1990 handle_channel_adjacent_rules(wiphy, initiator, chan,
1991 flags, lr, request_wiphy,
1992 rrule1, rrule2,
1993 &comb_range);
1994 return;
1995 }
1996
1997disable_chan:
Markus Theil7c9ff7e2020-08-03 16:43:52 +02001998 /* We will disable all channels that do not match our
1999 * received regulatory rule unless the hint is coming
2000 * from a Country IE and the Country IE had no information
2001 * about a band. The IEEE 802.11 spec allows for an AP
2002 * to send only a subset of the regulatory rules allowed,
2003 * so an AP in the US that only supports 2.4 GHz may only send
2004 * a country IE with information for the 2.4 GHz band
2005 * while 5 GHz is still supported.
2006 */
2007 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Markus Theil12adee32020-08-03 16:43:53 +02002008 PTR_ERR(rrule) == -ERANGE)
Markus Theil7c9ff7e2020-08-03 16:43:52 +02002009 return;
2010
2011 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
2012 request_wiphy && request_wiphy == wiphy &&
2013 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
2014 pr_debug("Disabling freq %d.%03d MHz for good\n",
2015 chan->center_freq, chan->freq_offset);
2016 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
2017 chan->flags = chan->orig_flags;
2018 } else {
2019 pr_debug("Disabling freq %d.%03d MHz\n",
2020 chan->center_freq, chan->freq_offset);
2021 chan->flags |= IEEE80211_CHAN_DISABLED;
2022 }
2023 return;
2024 }
2025
2026 handle_channel_single_rule(wiphy, initiator, chan, flags, lr,
Markus Theil12adee32020-08-03 16:43:53 +02002027 request_wiphy, rrule);
Markus Theil7c9ff7e2020-08-03 16:43:52 +02002028}
2029
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07002030static void handle_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002031 enum nl80211_reg_initiator initiator,
2032 struct ieee80211_supported_band *sband)
Johannes Berg8318d782008-01-24 19:38:38 +01002033{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08002034 unsigned int i;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08002035
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002036 if (!sband)
2037 return;
Johannes Berg8318d782008-01-24 19:38:38 +01002038
2039 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002040 handle_channel(wiphy, initiator, &sband->channels[i]);
Johannes Berg8318d782008-01-24 19:38:38 +01002041}
2042
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002043static bool reg_request_cell_base(struct regulatory_request *request)
2044{
2045 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
2046 return false;
Johannes Berg1a919312012-12-03 17:21:11 +01002047 return request->user_reg_hint_type == NL80211_USER_REG_HINT_CELL_BASE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002048}
2049
2050bool reg_last_request_cell_base(void)
2051{
Johannes Berg38fd2142013-05-10 19:17:17 +02002052 return reg_request_cell_base(get_last_request());
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002053}
2054
Ilan Peer94fc6612014-02-23 09:13:00 +02002055#ifdef CONFIG_CFG80211_REG_CELLULAR_HINTS
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002056/* Core specific check */
Johannes Berg2f922122012-12-03 17:54:55 +01002057static enum reg_request_treatment
2058reg_ignore_cell_hint(struct regulatory_request *pending_request)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002059{
Johannes Bergc492db32012-12-06 16:29:25 +01002060 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002061
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002062 if (!reg_num_devs_support_basehint)
Johannes Berg2f922122012-12-03 17:54:55 +01002063 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002064
Johannes Bergc492db32012-12-06 16:29:25 +01002065 if (reg_request_cell_base(lr) &&
Johannes Berg1a919312012-12-03 17:21:11 +01002066 !regdom_changes(pending_request->alpha2))
Johannes Berg2f922122012-12-03 17:54:55 +01002067 return REG_REQ_ALREADY_SET;
Johannes Berg1a919312012-12-03 17:21:11 +01002068
Johannes Berg2f922122012-12-03 17:54:55 +01002069 return REG_REQ_OK;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002070}
2071
2072/* Device specific check */
2073static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
2074{
Johannes Berg1a919312012-12-03 17:21:11 +01002075 return !(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002076}
2077#else
Johannes Berga515de62015-10-15 14:28:56 +02002078static enum reg_request_treatment
2079reg_ignore_cell_hint(struct regulatory_request *pending_request)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002080{
Johannes Berg2f922122012-12-03 17:54:55 +01002081 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002082}
Johannes Berg1a919312012-12-03 17:21:11 +01002083
2084static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002085{
2086 return true;
2087}
2088#endif
2089
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07002090static bool wiphy_strict_alpha2_regd(struct wiphy *wiphy)
2091{
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002092 if (wiphy->regulatory_flags & REGULATORY_STRICT_REG &&
2093 !(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG))
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07002094 return true;
2095 return false;
2096}
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002097
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002098static bool ignore_reg_update(struct wiphy *wiphy,
2099 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08002100{
Johannes Bergc492db32012-12-06 16:29:25 +01002101 struct regulatory_request *lr = get_last_request();
2102
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02002103 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
2104 return true;
2105
Johannes Bergc492db32012-12-06 16:29:25 +01002106 if (!lr) {
Johannes Bergc799ba62015-12-11 15:31:10 +01002107 pr_debug("Ignoring regulatory request set by %s since last_request is not set\n",
2108 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08002109 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05302110 }
2111
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002112 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002113 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
Johannes Bergc799ba62015-12-11 15:31:10 +01002114 pr_debug("Ignoring regulatory request set by %s since the driver uses its own custom regulatory domain\n",
2115 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08002116 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05302117 }
2118
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002119 /*
2120 * wiphy->regd will be set once the device has its own
2121 * desired regulatory domain set
2122 */
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07002123 if (wiphy_strict_alpha2_regd(wiphy) && !wiphy->regd &&
Luis R. Rodriguez749b5272010-10-20 10:18:54 -07002124 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Bergc492db32012-12-06 16:29:25 +01002125 !is_world_regdom(lr->alpha2)) {
Johannes Bergc799ba62015-12-11 15:31:10 +01002126 pr_debug("Ignoring regulatory request set by %s since the driver requires its own regulatory domain to be set first\n",
2127 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08002128 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05302129 }
2130
Johannes Bergc492db32012-12-06 16:29:25 +01002131 if (reg_request_cell_base(lr))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002132 return reg_dev_ignore_cell_hint(wiphy);
2133
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08002134 return false;
2135}
2136
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08002137static bool reg_is_world_roaming(struct wiphy *wiphy)
2138{
2139 const struct ieee80211_regdomain *cr = get_cfg80211_regdom();
2140 const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy);
2141 struct regulatory_request *lr = get_last_request();
2142
2143 if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2)))
2144 return true;
2145
2146 if (lr && lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002147 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08002148 return true;
2149
2150 return false;
2151}
2152
Johannes Berg1a919312012-12-03 17:21:11 +01002153static void handle_reg_beacon(struct wiphy *wiphy, unsigned int chan_idx,
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002154 struct reg_beacon *reg_beacon)
2155{
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002156 struct ieee80211_supported_band *sband;
2157 struct ieee80211_channel *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04002158 bool channel_changed = false;
2159 struct ieee80211_channel chan_before;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002160
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002161 sband = wiphy->bands[reg_beacon->chan.band];
2162 chan = &sband->channels[chan_idx];
2163
Thomas Pedersen934f4c72020-04-01 18:18:03 -07002164 if (likely(!ieee80211_channel_equal(chan, &reg_beacon->chan)))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002165 return;
2166
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04002167 if (chan->beacon_found)
2168 return;
2169
2170 chan->beacon_found = true;
2171
Luis R. Rodriguez0f500a52012-12-19 10:53:04 -08002172 if (!reg_is_world_roaming(wiphy))
2173 return;
2174
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002175 if (wiphy->regulatory_flags & REGULATORY_DISABLE_BEACON_HINTS)
Luis R. Rodriguez37184242009-07-30 17:43:48 -07002176 return;
2177
Johannes Berga48a52b2018-01-15 09:12:05 +01002178 chan_before = *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04002179
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02002180 if (chan->flags & IEEE80211_CHAN_NO_IR) {
2181 chan->flags &= ~IEEE80211_CHAN_NO_IR;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04002182 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002183 }
2184
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04002185 if (channel_changed)
2186 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002187}
2188
2189/*
2190 * Called when a scan on a wiphy finds a beacon on
2191 * new channel
2192 */
2193static void wiphy_update_new_beacon(struct wiphy *wiphy,
2194 struct reg_beacon *reg_beacon)
2195{
2196 unsigned int i;
2197 struct ieee80211_supported_band *sband;
2198
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002199 if (!wiphy->bands[reg_beacon->chan.band])
2200 return;
2201
2202 sband = wiphy->bands[reg_beacon->chan.band];
2203
2204 for (i = 0; i < sband->n_channels; i++)
2205 handle_reg_beacon(wiphy, i, reg_beacon);
2206}
2207
2208/*
2209 * Called upon reg changes or a new wiphy is added
2210 */
2211static void wiphy_update_beacon_reg(struct wiphy *wiphy)
2212{
2213 unsigned int i;
2214 struct ieee80211_supported_band *sband;
2215 struct reg_beacon *reg_beacon;
2216
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002217 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
2218 if (!wiphy->bands[reg_beacon->chan.band])
2219 continue;
2220 sband = wiphy->bands[reg_beacon->chan.band];
2221 for (i = 0; i < sband->n_channels; i++)
2222 handle_reg_beacon(wiphy, i, reg_beacon);
2223 }
2224}
2225
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002226/* Reap the advantages of previously found beacons */
2227static void reg_process_beacons(struct wiphy *wiphy)
2228{
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04002229 /*
2230 * Means we are just firing up cfg80211, so no beacons would
2231 * have been processed yet.
2232 */
2233 if (!last_request)
2234 return;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002235 wiphy_update_beacon_reg(wiphy);
2236}
2237
Johannes Berg1a919312012-12-03 17:21:11 +01002238static bool is_ht40_allowed(struct ieee80211_channel *chan)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002239{
2240 if (!chan)
Johannes Berg1a919312012-12-03 17:21:11 +01002241 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002242 if (chan->flags & IEEE80211_CHAN_DISABLED)
Johannes Berg1a919312012-12-03 17:21:11 +01002243 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002244 /* This would happen when regulatory rules disallow HT40 completely */
Felix Fietkau55b183a2013-01-11 14:22:58 +01002245 if ((chan->flags & IEEE80211_CHAN_NO_HT40) == IEEE80211_CHAN_NO_HT40)
2246 return false;
2247 return true;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002248}
2249
2250static void reg_process_ht_flags_channel(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002251 struct ieee80211_channel *channel)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002252{
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002253 struct ieee80211_supported_band *sband = wiphy->bands[channel->band];
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002254 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03002255 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002256 unsigned int i;
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03002257 u32 flags;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002258
Johannes Berg1a919312012-12-03 17:21:11 +01002259 if (!is_ht40_allowed(channel)) {
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002260 channel->flags |= IEEE80211_CHAN_NO_HT40;
2261 return;
2262 }
2263
2264 /*
2265 * We need to ensure the extension channels exist to
2266 * be able to use HT40- or HT40+, this finds them (or not)
2267 */
2268 for (i = 0; i < sband->n_channels; i++) {
2269 struct ieee80211_channel *c = &sband->channels[i];
Johannes Berg1a919312012-12-03 17:21:11 +01002270
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002271 if (c->center_freq == (channel->center_freq - 20))
2272 channel_before = c;
2273 if (c->center_freq == (channel->center_freq + 20))
2274 channel_after = c;
2275 }
2276
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03002277 flags = 0;
2278 regd = get_wiphy_regdom(wiphy);
2279 if (regd) {
2280 const struct ieee80211_reg_rule *reg_rule =
2281 freq_reg_info_regd(MHZ_TO_KHZ(channel->center_freq),
2282 regd, MHZ_TO_KHZ(20));
2283
2284 if (!IS_ERR(reg_rule))
2285 flags = reg_rule->flags;
2286 }
2287
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002288 /*
2289 * Please note that this assumes target bandwidth is 20 MHz,
2290 * if that ever changes we also need to change the below logic
2291 * to include that as well.
2292 */
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03002293 if (!is_ht40_allowed(channel_before) ||
2294 flags & NL80211_RRF_NO_HT40MINUS)
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04002295 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002296 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04002297 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002298
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03002299 if (!is_ht40_allowed(channel_after) ||
2300 flags & NL80211_RRF_NO_HT40PLUS)
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04002301 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002302 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04002303 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002304}
2305
2306static void reg_process_ht_flags_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002307 struct ieee80211_supported_band *sband)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002308{
2309 unsigned int i;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002310
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002311 if (!sband)
2312 return;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002313
2314 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002315 reg_process_ht_flags_channel(wiphy, &sband->channels[i]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002316}
2317
2318static void reg_process_ht_flags(struct wiphy *wiphy)
2319{
Johannes Berg57fbcce2016-04-12 15:56:15 +02002320 enum nl80211_band band;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002321
2322 if (!wiphy)
2323 return;
2324
Johannes Berg57fbcce2016-04-12 15:56:15 +02002325 for (band = 0; band < NUM_NL80211_BANDS; band++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002326 reg_process_ht_flags_band(wiphy, wiphy->bands[band]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002327}
2328
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002329static void reg_call_notifier(struct wiphy *wiphy,
2330 struct regulatory_request *request)
2331{
2332 if (wiphy->reg_notifier)
2333 wiphy->reg_notifier(wiphy, request);
2334}
2335
Arik Nemtsovad932f02014-11-27 09:44:55 +02002336static bool reg_wdev_chan_valid(struct wiphy *wiphy, struct wireless_dev *wdev)
2337{
Johannes Bergf43e5212019-09-23 13:51:16 +02002338 struct cfg80211_chan_def chandef = {};
Arik Nemtsovad932f02014-11-27 09:44:55 +02002339 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Arik Nemtsov20658702014-12-29 11:59:59 +02002340 enum nl80211_iftype iftype;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002341
2342 wdev_lock(wdev);
Arik Nemtsov20658702014-12-29 11:59:59 +02002343 iftype = wdev->iftype;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002344
Arik Nemtsov20658702014-12-29 11:59:59 +02002345 /* make sure the interface is active */
Arik Nemtsovad932f02014-11-27 09:44:55 +02002346 if (!wdev->netdev || !netif_running(wdev->netdev))
Arik Nemtsov20658702014-12-29 11:59:59 +02002347 goto wdev_inactive_unlock;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002348
Arik Nemtsov20658702014-12-29 11:59:59 +02002349 switch (iftype) {
Arik Nemtsovad932f02014-11-27 09:44:55 +02002350 case NL80211_IFTYPE_AP:
2351 case NL80211_IFTYPE_P2P_GO:
2352 if (!wdev->beacon_interval)
Arik Nemtsov20658702014-12-29 11:59:59 +02002353 goto wdev_inactive_unlock;
2354 chandef = wdev->chandef;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002355 break;
Arik Nemtsov185076d2014-12-03 18:08:17 +02002356 case NL80211_IFTYPE_ADHOC:
2357 if (!wdev->ssid_len)
Arik Nemtsov20658702014-12-29 11:59:59 +02002358 goto wdev_inactive_unlock;
2359 chandef = wdev->chandef;
Arik Nemtsov185076d2014-12-03 18:08:17 +02002360 break;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002361 case NL80211_IFTYPE_STATION:
2362 case NL80211_IFTYPE_P2P_CLIENT:
Arik Nemtsovad932f02014-11-27 09:44:55 +02002363 if (!wdev->current_bss ||
2364 !wdev->current_bss->pub.channel)
Arik Nemtsov20658702014-12-29 11:59:59 +02002365 goto wdev_inactive_unlock;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002366
Arik Nemtsov20658702014-12-29 11:59:59 +02002367 if (!rdev->ops->get_channel ||
2368 rdev_get_channel(rdev, wdev, &chandef))
2369 cfg80211_chandef_create(&chandef,
2370 wdev->current_bss->pub.channel,
2371 NL80211_CHAN_NO_HT);
Arik Nemtsovad932f02014-11-27 09:44:55 +02002372 break;
2373 case NL80211_IFTYPE_MONITOR:
2374 case NL80211_IFTYPE_AP_VLAN:
2375 case NL80211_IFTYPE_P2P_DEVICE:
2376 /* no enforcement required */
2377 break;
2378 default:
2379 /* others not implemented for now */
2380 WARN_ON(1);
2381 break;
2382 }
2383
Arik Nemtsovad932f02014-11-27 09:44:55 +02002384 wdev_unlock(wdev);
Arik Nemtsov20658702014-12-29 11:59:59 +02002385
2386 switch (iftype) {
2387 case NL80211_IFTYPE_AP:
2388 case NL80211_IFTYPE_P2P_GO:
2389 case NL80211_IFTYPE_ADHOC:
Arik Nemtsov923b3522015-07-08 15:41:44 +03002390 return cfg80211_reg_can_beacon_relax(wiphy, &chandef, iftype);
Arik Nemtsov20658702014-12-29 11:59:59 +02002391 case NL80211_IFTYPE_STATION:
2392 case NL80211_IFTYPE_P2P_CLIENT:
2393 return cfg80211_chandef_usable(wiphy, &chandef,
2394 IEEE80211_CHAN_DISABLED);
2395 default:
2396 break;
2397 }
2398
2399 return true;
2400
2401wdev_inactive_unlock:
2402 wdev_unlock(wdev);
2403 return true;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002404}
2405
2406static void reg_leave_invalid_chans(struct wiphy *wiphy)
2407{
2408 struct wireless_dev *wdev;
2409 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
2410
2411 ASSERT_RTNL();
2412
Johannes Berg53873f12016-05-03 16:52:04 +03002413 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list)
Arik Nemtsovad932f02014-11-27 09:44:55 +02002414 if (!reg_wdev_chan_valid(wiphy, wdev))
2415 cfg80211_leave(rdev, wdev);
2416}
2417
2418static void reg_check_chans_work(struct work_struct *work)
2419{
2420 struct cfg80211_registered_device *rdev;
2421
Johannes Bergc799ba62015-12-11 15:31:10 +01002422 pr_debug("Verifying active interfaces after reg change\n");
Arik Nemtsovad932f02014-11-27 09:44:55 +02002423 rtnl_lock();
2424
2425 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
2426 if (!(rdev->wiphy.regulatory_flags &
2427 REGULATORY_IGNORE_STALE_KICKOFF))
2428 reg_leave_invalid_chans(&rdev->wiphy);
2429
2430 rtnl_unlock();
2431}
2432
2433static void reg_check_channels(void)
2434{
2435 /*
2436 * Give usermode a chance to do something nicer (move to another
2437 * channel, orderly disconnection), before forcing a disconnection.
2438 */
2439 mod_delayed_work(system_power_efficient_wq,
2440 &reg_check_chans,
2441 msecs_to_jiffies(REG_ENFORCE_GRACE_MS));
2442}
2443
Sven Neumanneac03e32011-08-30 23:38:53 +02002444static void wiphy_update_regulatory(struct wiphy *wiphy,
2445 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +01002446{
Johannes Berg57fbcce2016-04-12 15:56:15 +02002447 enum nl80211_band band;
Johannes Bergc492db32012-12-06 16:29:25 +01002448 struct regulatory_request *lr = get_last_request();
Sven Neumanneac03e32011-08-30 23:38:53 +02002449
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002450 if (ignore_reg_update(wiphy, initiator)) {
2451 /*
2452 * Regulatory updates set by CORE are ignored for custom
2453 * regulatory cards. Let us notify the changes to the driver,
2454 * as some drivers used this to restore its orig_* reg domain.
2455 */
2456 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Amar Singhale31f6452018-07-20 12:15:18 -07002457 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG &&
2458 !(wiphy->regulatory_flags &
2459 REGULATORY_WIPHY_SELF_MANAGED))
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002460 reg_call_notifier(wiphy, lr);
Sven Neumanna203c2a2011-07-12 15:52:07 +02002461 return;
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002462 }
Sven Neumanna203c2a2011-07-12 15:52:07 +02002463
Johannes Bergc492db32012-12-06 16:29:25 +01002464 lr->dfs_region = get_cfg80211_regdom()->dfs_region;
Luis R. Rodriguezb68e6b32011-10-11 10:59:03 -07002465
Johannes Berg57fbcce2016-04-12 15:56:15 +02002466 for (band = 0; band < NUM_NL80211_BANDS; band++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002467 handle_band(wiphy, initiator, wiphy->bands[band]);
Sven Neumanna203c2a2011-07-12 15:52:07 +02002468
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002469 reg_process_beacons(wiphy);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002470 reg_process_ht_flags(wiphy);
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002471 reg_call_notifier(wiphy, lr);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002472}
2473
Sven Neumannd7549cb2011-08-30 23:38:54 +02002474static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
2475{
2476 struct cfg80211_registered_device *rdev;
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05302477 struct wiphy *wiphy;
Sven Neumannd7549cb2011-08-30 23:38:54 +02002478
Johannes Berg5fe231e2013-05-08 21:45:15 +02002479 ASSERT_RTNL();
Johannes Berg458f4f92012-12-06 15:47:38 +01002480
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05302481 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2482 wiphy = &rdev->wiphy;
2483 wiphy_update_regulatory(wiphy, initiator);
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05302484 }
Arik Nemtsovad932f02014-11-27 09:44:55 +02002485
2486 reg_check_channels();
Sven Neumannd7549cb2011-08-30 23:38:54 +02002487}
2488
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002489static void handle_channel_custom(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002490 struct ieee80211_channel *chan,
Ganapathi Bhatc4b9d652019-12-20 10:14:32 +00002491 const struct ieee80211_regdomain *regd,
2492 u32 min_bw)
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002493{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002494 u32 bw_flags = 0;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002495 const struct ieee80211_reg_rule *reg_rule = NULL;
2496 const struct ieee80211_power_rule *power_rule = NULL;
Thomas Pedersen934f4c72020-04-01 18:18:03 -07002497 u32 bw, center_freq_khz;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002498
Thomas Pedersen934f4c72020-04-01 18:18:03 -07002499 center_freq_khz = ieee80211_channel_to_khz(chan);
Ganapathi Bhatc4b9d652019-12-20 10:14:32 +00002500 for (bw = MHZ_TO_KHZ(20); bw >= min_bw; bw = bw / 2) {
Thomas Pedersen934f4c72020-04-01 18:18:03 -07002501 reg_rule = freq_reg_info_regd(center_freq_khz, regd, bw);
Matthias May4edd5692015-07-17 15:28:39 +02002502 if (!IS_ERR(reg_rule))
2503 break;
2504 }
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04002505
Johannes Berga7ee7d42020-02-21 10:44:50 +01002506 if (IS_ERR_OR_NULL(reg_rule)) {
Thomas Pedersen934f4c72020-04-01 18:18:03 -07002507 pr_debug("Disabling freq %d.%03d MHz as custom regd has no rule that fits it\n",
2508 chan->center_freq, chan->freq_offset);
Arik Nemtsovdb8dfee2014-12-15 19:26:02 +02002509 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) {
2510 chan->flags |= IEEE80211_CHAN_DISABLED;
2511 } else {
2512 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
2513 chan->flags = chan->orig_flags;
2514 }
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002515 return;
2516 }
2517
2518 power_rule = &reg_rule->power_rule;
Michal Sojka1aeb1352015-11-23 19:27:16 +01002519 bw_flags = reg_rule_to_chan_bw_flags(regd, reg_rule, chan);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002520
Arik Nemtsov2e18b382014-11-16 16:37:46 +02002521 chan->dfs_state_entered = jiffies;
Arik Nemtsovc7ab5082014-11-16 16:37:47 +02002522 chan->dfs_state = NL80211_DFS_USABLE;
2523
2524 chan->beacon_found = false;
Arik Nemtsovdb8dfee2014-12-15 19:26:02 +02002525
2526 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
2527 chan->flags = chan->orig_flags | bw_flags |
2528 map_regdom_flags(reg_rule->flags);
2529 else
2530 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
2531
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002532 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02002533 chan->max_reg_power = chan->max_power =
2534 (int) MBM_TO_DBM(power_rule->max_eirp);
Arik Nemtsov2e18b382014-11-16 16:37:46 +02002535
2536 if (chan->flags & IEEE80211_CHAN_RADAR) {
2537 if (reg_rule->dfs_cac_ms)
2538 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
2539 else
2540 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
2541 }
2542
2543 chan->max_power = chan->max_reg_power;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002544}
2545
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002546static void handle_band_custom(struct wiphy *wiphy,
2547 struct ieee80211_supported_band *sband,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002548 const struct ieee80211_regdomain *regd)
2549{
2550 unsigned int i;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002551
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002552 if (!sband)
2553 return;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002554
Ganapathi Bhatc4b9d652019-12-20 10:14:32 +00002555 /*
2556 * We currently assume that you always want at least 20 MHz,
2557 * otherwise channel 12 might get enabled if this rule is
2558 * compatible to US, which permits 2402 - 2472 MHz.
2559 */
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002560 for (i = 0; i < sband->n_channels; i++)
Ganapathi Bhatc4b9d652019-12-20 10:14:32 +00002561 handle_channel_custom(wiphy, &sband->channels[i], regd,
2562 MHZ_TO_KHZ(20));
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002563}
2564
2565/* Used by drivers prior to wiphy registration */
2566void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
2567 const struct ieee80211_regdomain *regd)
2568{
Ilan Peerbeee2462020-11-29 17:30:51 +02002569 const struct ieee80211_regdomain *new_regd, *tmp;
Johannes Berg57fbcce2016-04-12 15:56:15 +02002570 enum nl80211_band band;
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002571 unsigned int bands_set = 0;
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04002572
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002573 WARN(!(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG),
2574 "wiphy should have REGULATORY_CUSTOM_REG\n");
2575 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
Luis R. Rodriguez222ea582013-11-05 09:18:00 -08002576
Johannes Berg57fbcce2016-04-12 15:56:15 +02002577 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002578 if (!wiphy->bands[band])
2579 continue;
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002580 handle_band_custom(wiphy, wiphy->bands[band], regd);
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002581 bands_set++;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002582 }
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002583
2584 /*
2585 * no point in calling this if it won't have any effect
Johannes Berg1a919312012-12-03 17:21:11 +01002586 * on your device's supported bands.
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002587 */
2588 WARN_ON(!bands_set);
Ilan Peerbeee2462020-11-29 17:30:51 +02002589 new_regd = reg_copy_regd(regd);
2590 if (IS_ERR(new_regd))
2591 return;
2592
Ilan Peer51d62f22021-01-05 16:56:57 +02002593 rtnl_lock();
Johannes Berga05829a2021-01-22 16:19:43 +01002594 wiphy_lock(wiphy);
Ilan Peer51d62f22021-01-05 16:56:57 +02002595
Ilan Peerbeee2462020-11-29 17:30:51 +02002596 tmp = get_wiphy_regdom(wiphy);
2597 rcu_assign_pointer(wiphy->regd, new_regd);
2598 rcu_free_regdom(tmp);
Ilan Peer51d62f22021-01-05 16:56:57 +02002599
Johannes Berga05829a2021-01-22 16:19:43 +01002600 wiphy_unlock(wiphy);
Ilan Peer51d62f22021-01-05 16:56:57 +02002601 rtnl_unlock();
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002602}
2603EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
2604
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002605static void reg_set_request_processed(void)
2606{
2607 bool need_more_processing = false;
Johannes Bergc492db32012-12-06 16:29:25 +01002608 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002609
Johannes Bergc492db32012-12-06 16:29:25 +01002610 lr->processed = true;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002611
2612 spin_lock(&reg_requests_lock);
2613 if (!list_empty(&reg_requests_list))
2614 need_more_processing = true;
2615 spin_unlock(&reg_requests_lock);
2616
Johannes Bergb6863032015-10-15 09:25:18 +02002617 cancel_crda_timeout();
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002618
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002619 if (need_more_processing)
2620 schedule_work(&reg_work);
2621}
2622
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05002623/**
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002624 * reg_process_hint_core - process core regulatory requests
Andrew Lunn726e6af2020-07-13 01:15:15 +02002625 * @core_request: a pending core regulatory request
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002626 *
2627 * The wireless subsystem can use this function to process
2628 * a regulatory request issued by the regulatory core.
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002629 */
Johannes Bergd34265a2015-10-15 13:05:55 +02002630static enum reg_request_treatment
2631reg_process_hint_core(struct regulatory_request *core_request)
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002632{
Johannes Bergcecbb062015-10-15 08:47:34 +02002633 if (reg_query_database(core_request)) {
Johannes Berg25b20db2015-10-15 12:05:05 +02002634 core_request->intersect = false;
2635 core_request->processed = false;
2636 reg_update_last_request(core_request);
Johannes Bergd34265a2015-10-15 13:05:55 +02002637 return REG_REQ_OK;
Johannes Berg25b20db2015-10-15 12:05:05 +02002638 }
Johannes Bergd34265a2015-10-15 13:05:55 +02002639
2640 return REG_REQ_IGNORE;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002641}
2642
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002643static enum reg_request_treatment
2644__reg_process_hint_user(struct regulatory_request *user_request)
2645{
2646 struct regulatory_request *lr = get_last_request();
2647
2648 if (reg_request_cell_base(user_request))
2649 return reg_ignore_cell_hint(user_request);
2650
2651 if (reg_request_cell_base(lr))
2652 return REG_REQ_IGNORE;
2653
2654 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
2655 return REG_REQ_INTERSECT;
2656 /*
2657 * If the user knows better the user should set the regdom
2658 * to their country before the IE is picked up
2659 */
2660 if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
2661 lr->intersect)
2662 return REG_REQ_IGNORE;
2663 /*
2664 * Process user requests only after previous user/driver/core
2665 * requests have been processed
2666 */
2667 if ((lr->initiator == NL80211_REGDOM_SET_BY_CORE ||
2668 lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
2669 lr->initiator == NL80211_REGDOM_SET_BY_USER) &&
2670 regdom_changes(lr->alpha2))
2671 return REG_REQ_IGNORE;
2672
2673 if (!regdom_changes(user_request->alpha2))
2674 return REG_REQ_ALREADY_SET;
2675
2676 return REG_REQ_OK;
2677}
2678
2679/**
2680 * reg_process_hint_user - process user regulatory requests
2681 * @user_request: a pending user regulatory request
2682 *
2683 * The wireless subsystem can use this function to process
2684 * a regulatory request initiated by userspace.
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002685 */
Johannes Bergd34265a2015-10-15 13:05:55 +02002686static enum reg_request_treatment
2687reg_process_hint_user(struct regulatory_request *user_request)
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002688{
2689 enum reg_request_treatment treatment;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002690
2691 treatment = __reg_process_hint_user(user_request);
2692 if (treatment == REG_REQ_IGNORE ||
Johannes Bergd34265a2015-10-15 13:05:55 +02002693 treatment == REG_REQ_ALREADY_SET)
2694 return REG_REQ_IGNORE;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002695
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002696 user_request->intersect = treatment == REG_REQ_INTERSECT;
2697 user_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08002698
Johannes Bergcecbb062015-10-15 08:47:34 +02002699 if (reg_query_database(user_request)) {
Johannes Berg25b20db2015-10-15 12:05:05 +02002700 reg_update_last_request(user_request);
2701 user_alpha2[0] = user_request->alpha2[0];
2702 user_alpha2[1] = user_request->alpha2[1];
Johannes Bergd34265a2015-10-15 13:05:55 +02002703 return REG_REQ_OK;
Johannes Berg25b20db2015-10-15 12:05:05 +02002704 }
Johannes Bergd34265a2015-10-15 13:05:55 +02002705
2706 return REG_REQ_IGNORE;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002707}
2708
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002709static enum reg_request_treatment
2710__reg_process_hint_driver(struct regulatory_request *driver_request)
2711{
2712 struct regulatory_request *lr = get_last_request();
2713
2714 if (lr->initiator == NL80211_REGDOM_SET_BY_CORE) {
2715 if (regdom_changes(driver_request->alpha2))
2716 return REG_REQ_OK;
2717 return REG_REQ_ALREADY_SET;
2718 }
2719
2720 /*
2721 * This would happen if you unplug and plug your card
2722 * back in or if you add a new device for which the previously
2723 * loaded card also agrees on the regulatory domain.
2724 */
2725 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
2726 !regdom_changes(driver_request->alpha2))
2727 return REG_REQ_ALREADY_SET;
2728
2729 return REG_REQ_INTERSECT;
2730}
2731
2732/**
2733 * reg_process_hint_driver - process driver regulatory requests
Andrew Lunn726e6af2020-07-13 01:15:15 +02002734 * @wiphy: the wireless device for the regulatory request
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002735 * @driver_request: a pending driver regulatory request
2736 *
2737 * The wireless subsystem can use this function to process
2738 * a regulatory request issued by an 802.11 driver.
2739 *
2740 * Returns one of the different reg request treatment values.
2741 */
2742static enum reg_request_treatment
2743reg_process_hint_driver(struct wiphy *wiphy,
2744 struct regulatory_request *driver_request)
2745{
Arik Nemtsov34f05f52014-12-04 12:22:16 +02002746 const struct ieee80211_regdomain *regd, *tmp;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002747 enum reg_request_treatment treatment;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002748
2749 treatment = __reg_process_hint_driver(driver_request);
2750
2751 switch (treatment) {
2752 case REG_REQ_OK:
2753 break;
2754 case REG_REQ_IGNORE:
Johannes Bergd34265a2015-10-15 13:05:55 +02002755 return REG_REQ_IGNORE;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002756 case REG_REQ_INTERSECT:
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002757 case REG_REQ_ALREADY_SET:
2758 regd = reg_copy_regd(get_cfg80211_regdom());
Johannes Bergd34265a2015-10-15 13:05:55 +02002759 if (IS_ERR(regd))
2760 return REG_REQ_IGNORE;
Arik Nemtsov34f05f52014-12-04 12:22:16 +02002761
2762 tmp = get_wiphy_regdom(wiphy);
Johannes Berga05829a2021-01-22 16:19:43 +01002763 ASSERT_RTNL();
2764 wiphy_lock(wiphy);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002765 rcu_assign_pointer(wiphy->regd, regd);
Johannes Berga05829a2021-01-22 16:19:43 +01002766 wiphy_unlock(wiphy);
Arik Nemtsov34f05f52014-12-04 12:22:16 +02002767 rcu_free_regdom(tmp);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002768 }
2769
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002770
2771 driver_request->intersect = treatment == REG_REQ_INTERSECT;
2772 driver_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08002773
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002774 /*
2775 * Since CRDA will not be called in this case as we already
2776 * have applied the requested regulatory domain before we just
2777 * inform userspace we have processed the request
2778 */
2779 if (treatment == REG_REQ_ALREADY_SET) {
2780 nl80211_send_reg_change_event(driver_request);
Johannes Berg25b20db2015-10-15 12:05:05 +02002781 reg_update_last_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002782 reg_set_request_processed();
Johannes Berg480908a2015-10-15 12:58:58 +02002783 return REG_REQ_ALREADY_SET;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002784 }
2785
Johannes Bergd34265a2015-10-15 13:05:55 +02002786 if (reg_query_database(driver_request)) {
Johannes Berg25b20db2015-10-15 12:05:05 +02002787 reg_update_last_request(driver_request);
Johannes Bergd34265a2015-10-15 13:05:55 +02002788 return REG_REQ_OK;
2789 }
Johannes Berg25b20db2015-10-15 12:05:05 +02002790
Johannes Bergd34265a2015-10-15 13:05:55 +02002791 return REG_REQ_IGNORE;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002792}
2793
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002794static enum reg_request_treatment
2795__reg_process_hint_country_ie(struct wiphy *wiphy,
2796 struct regulatory_request *country_ie_request)
2797{
2798 struct wiphy *last_wiphy = NULL;
2799 struct regulatory_request *lr = get_last_request();
2800
2801 if (reg_request_cell_base(lr)) {
2802 /* Trust a Cell base station over the AP's country IE */
2803 if (regdom_changes(country_ie_request->alpha2))
2804 return REG_REQ_IGNORE;
2805 return REG_REQ_ALREADY_SET;
Luis R. Rodriguez2a901462013-11-11 22:15:31 +01002806 } else {
2807 if (wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_IGNORE)
2808 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002809 }
2810
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002811 if (unlikely(!is_an_alpha2(country_ie_request->alpha2)))
2812 return -EINVAL;
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08002813
2814 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE)
2815 return REG_REQ_OK;
2816
2817 last_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
2818
2819 if (last_wiphy != wiphy) {
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002820 /*
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08002821 * Two cards with two APs claiming different
2822 * Country IE alpha2s. We could
2823 * intersect them, but that seems unlikely
2824 * to be correct. Reject second one for now.
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002825 */
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08002826 if (regdom_changes(country_ie_request->alpha2))
2827 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002828 return REG_REQ_ALREADY_SET;
2829 }
Emmanuel Grumbach70dcec52014-12-02 09:53:25 +02002830
2831 if (regdom_changes(country_ie_request->alpha2))
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08002832 return REG_REQ_OK;
2833 return REG_REQ_ALREADY_SET;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002834}
2835
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002836/**
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002837 * reg_process_hint_country_ie - process regulatory requests from country IEs
Andrew Lunn726e6af2020-07-13 01:15:15 +02002838 * @wiphy: the wireless device for the regulatory request
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002839 * @country_ie_request: a regulatory request from a country IE
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05002840 *
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002841 * The wireless subsystem can use this function to process
2842 * a regulatory request issued by a country Information Element.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05002843 *
Johannes Berg2f922122012-12-03 17:54:55 +01002844 * Returns one of the different reg request treatment values.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05002845 */
Johannes Berg2f922122012-12-03 17:54:55 +01002846static enum reg_request_treatment
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002847reg_process_hint_country_ie(struct wiphy *wiphy,
2848 struct regulatory_request *country_ie_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002849{
Johannes Berg2f922122012-12-03 17:54:55 +01002850 enum reg_request_treatment treatment;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002851
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002852 treatment = __reg_process_hint_country_ie(wiphy, country_ie_request);
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002853
Johannes Berg2f922122012-12-03 17:54:55 +01002854 switch (treatment) {
Johannes Berg2f922122012-12-03 17:54:55 +01002855 case REG_REQ_OK:
2856 break;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002857 case REG_REQ_IGNORE:
Johannes Bergd34265a2015-10-15 13:05:55 +02002858 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002859 case REG_REQ_ALREADY_SET:
Arik Nemtsovc8883932014-04-21 20:39:34 -07002860 reg_free_request(country_ie_request);
Johannes Berg480908a2015-10-15 12:58:58 +02002861 return REG_REQ_ALREADY_SET;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002862 case REG_REQ_INTERSECT:
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002863 /*
2864 * This doesn't happen yet, not sure we
2865 * ever want to support it for this case.
2866 */
Toke Høiland-Jørgensen8db0c4332018-04-19 11:17:38 +02002867 WARN_ONCE(1, "Unexpected intersection for country elements");
Johannes Bergd34265a2015-10-15 13:05:55 +02002868 return REG_REQ_IGNORE;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002869 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002870
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002871 country_ie_request->intersect = false;
2872 country_ie_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08002873
Johannes Bergd34265a2015-10-15 13:05:55 +02002874 if (reg_query_database(country_ie_request)) {
Johannes Berg25b20db2015-10-15 12:05:05 +02002875 reg_update_last_request(country_ie_request);
Johannes Bergd34265a2015-10-15 13:05:55 +02002876 return REG_REQ_OK;
2877 }
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05002878
Johannes Bergd34265a2015-10-15 13:05:55 +02002879 return REG_REQ_IGNORE;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002880}
2881
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05302882bool reg_dfs_domain_same(struct wiphy *wiphy1, struct wiphy *wiphy2)
2883{
2884 const struct ieee80211_regdomain *wiphy1_regd = NULL;
2885 const struct ieee80211_regdomain *wiphy2_regd = NULL;
2886 const struct ieee80211_regdomain *cfg80211_regd = NULL;
2887 bool dfs_domain_same;
2888
2889 rcu_read_lock();
2890
2891 cfg80211_regd = rcu_dereference(cfg80211_regdomain);
2892 wiphy1_regd = rcu_dereference(wiphy1->regd);
2893 if (!wiphy1_regd)
2894 wiphy1_regd = cfg80211_regd;
2895
2896 wiphy2_regd = rcu_dereference(wiphy2->regd);
2897 if (!wiphy2_regd)
2898 wiphy2_regd = cfg80211_regd;
2899
2900 dfs_domain_same = wiphy1_regd->dfs_region == wiphy2_regd->dfs_region;
2901
2902 rcu_read_unlock();
2903
2904 return dfs_domain_same;
2905}
2906
2907static void reg_copy_dfs_chan_state(struct ieee80211_channel *dst_chan,
2908 struct ieee80211_channel *src_chan)
2909{
2910 if (!(dst_chan->flags & IEEE80211_CHAN_RADAR) ||
2911 !(src_chan->flags & IEEE80211_CHAN_RADAR))
2912 return;
2913
2914 if (dst_chan->flags & IEEE80211_CHAN_DISABLED ||
2915 src_chan->flags & IEEE80211_CHAN_DISABLED)
2916 return;
2917
2918 if (src_chan->center_freq == dst_chan->center_freq &&
2919 dst_chan->dfs_state == NL80211_DFS_USABLE) {
2920 dst_chan->dfs_state = src_chan->dfs_state;
2921 dst_chan->dfs_state_entered = src_chan->dfs_state_entered;
2922 }
2923}
2924
2925static void wiphy_share_dfs_chan_state(struct wiphy *dst_wiphy,
2926 struct wiphy *src_wiphy)
2927{
2928 struct ieee80211_supported_band *src_sband, *dst_sband;
2929 struct ieee80211_channel *src_chan, *dst_chan;
2930 int i, j, band;
2931
2932 if (!reg_dfs_domain_same(dst_wiphy, src_wiphy))
2933 return;
2934
2935 for (band = 0; band < NUM_NL80211_BANDS; band++) {
2936 dst_sband = dst_wiphy->bands[band];
2937 src_sband = src_wiphy->bands[band];
2938 if (!dst_sband || !src_sband)
2939 continue;
2940
2941 for (i = 0; i < dst_sband->n_channels; i++) {
2942 dst_chan = &dst_sband->channels[i];
2943 for (j = 0; j < src_sband->n_channels; j++) {
2944 src_chan = &src_sband->channels[j];
2945 reg_copy_dfs_chan_state(dst_chan, src_chan);
2946 }
2947 }
2948 }
2949}
2950
2951static void wiphy_all_share_dfs_chan_state(struct wiphy *wiphy)
2952{
2953 struct cfg80211_registered_device *rdev;
2954
2955 ASSERT_RTNL();
2956
2957 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2958 if (wiphy == &rdev->wiphy)
2959 continue;
2960 wiphy_share_dfs_chan_state(wiphy, &rdev->wiphy);
2961 }
2962}
2963
Luis R. Rodriguez30a548c2009-05-02 01:17:27 -04002964/* This processes *all* regulatory hints */
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08002965static void reg_process_hint(struct regulatory_request *reg_request)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002966{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002967 struct wiphy *wiphy = NULL;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002968 enum reg_request_treatment treatment;
Yu Zhao1db58522018-09-27 17:05:04 -06002969 enum nl80211_reg_initiator initiator = reg_request->initiator;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002970
Johannes Bergf4173762012-12-03 18:23:37 +01002971 if (reg_request->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002972 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
2973
Yu Zhao1db58522018-09-27 17:05:04 -06002974 switch (initiator) {
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002975 case NL80211_REGDOM_SET_BY_CORE:
Johannes Bergd34265a2015-10-15 13:05:55 +02002976 treatment = reg_process_hint_core(reg_request);
2977 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002978 case NL80211_REGDOM_SET_BY_USER:
Johannes Bergd34265a2015-10-15 13:05:55 +02002979 treatment = reg_process_hint_user(reg_request);
2980 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002981 case NL80211_REGDOM_SET_BY_DRIVER:
Ilan Peer772f0382014-01-14 15:17:23 +02002982 if (!wiphy)
2983 goto out_free;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002984 treatment = reg_process_hint_driver(wiphy, reg_request);
2985 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002986 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Ilan Peer772f0382014-01-14 15:17:23 +02002987 if (!wiphy)
2988 goto out_free;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002989 treatment = reg_process_hint_country_ie(wiphy, reg_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002990 break;
2991 default:
Yu Zhao1db58522018-09-27 17:05:04 -06002992 WARN(1, "invalid initiator %d\n", initiator);
Ilan Peer772f0382014-01-14 15:17:23 +02002993 goto out_free;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002994 }
2995
Johannes Bergd34265a2015-10-15 13:05:55 +02002996 if (treatment == REG_REQ_IGNORE)
2997 goto out_free;
2998
Johannes Berg480908a2015-10-15 12:58:58 +02002999 WARN(treatment != REG_REQ_OK && treatment != REG_REQ_ALREADY_SET,
3000 "unexpected treatment value %d\n", treatment);
3001
John Linville841b3512015-06-24 11:42:25 -04003002 /* This is required so that the orig_* parameters are saved.
3003 * NOTE: treatment must be set for any case that reaches here!
3004 */
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08003005 if (treatment == REG_REQ_ALREADY_SET && wiphy &&
Arik Nemtsovad932f02014-11-27 09:44:55 +02003006 wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Yu Zhao1db58522018-09-27 17:05:04 -06003007 wiphy_update_regulatory(wiphy, initiator);
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05303008 wiphy_all_share_dfs_chan_state(wiphy);
Arik Nemtsovad932f02014-11-27 09:44:55 +02003009 reg_check_channels();
3010 }
Ilan Peer772f0382014-01-14 15:17:23 +02003011
3012 return;
3013
3014out_free:
Arik Nemtsovc8883932014-04-21 20:39:34 -07003015 reg_free_request(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003016}
3017
Amar Singhalaced43ce2018-04-26 20:13:07 +03003018static void notify_self_managed_wiphys(struct regulatory_request *request)
3019{
3020 struct cfg80211_registered_device *rdev;
3021 struct wiphy *wiphy;
3022
3023 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
3024 wiphy = &rdev->wiphy;
3025 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED &&
Sriram Rc82c06c2018-12-06 15:34:57 +05303026 request->initiator == NL80211_REGDOM_SET_BY_USER)
Amar Singhalaced43ce2018-04-26 20:13:07 +03003027 reg_call_notifier(wiphy, request);
3028 }
3029}
3030
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08003031/*
3032 * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
3033 * Regulatory hints come on a first come first serve basis and we
3034 * must process each one atomically.
3035 */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003036static void reg_process_pending_hints(void)
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08003037{
Johannes Bergc492db32012-12-06 16:29:25 +01003038 struct regulatory_request *reg_request, *lr;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003039
Johannes Bergc492db32012-12-06 16:29:25 +01003040 lr = get_last_request();
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08003041
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08003042 /* When last_request->processed becomes true this will be rescheduled */
Johannes Bergc492db32012-12-06 16:29:25 +01003043 if (lr && !lr->processed) {
Hodaszi, Robert0d31d4d2019-06-14 13:16:01 +00003044 pr_debug("Pending regulatory request, waiting for it to be processed...\n");
Johannes Berg5fe231e2013-05-08 21:45:15 +02003045 return;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003046 }
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08003047
3048 spin_lock(&reg_requests_lock);
3049
3050 if (list_empty(&reg_requests_list)) {
3051 spin_unlock(&reg_requests_lock);
Johannes Berg5fe231e2013-05-08 21:45:15 +02003052 return;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08003053 }
3054
3055 reg_request = list_first_entry(&reg_requests_list,
3056 struct regulatory_request,
3057 list);
3058 list_del_init(&reg_request->list);
3059
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003060 spin_unlock(&reg_requests_lock);
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08003061
Amar Singhalaced43ce2018-04-26 20:13:07 +03003062 notify_self_managed_wiphys(reg_request);
Arik Nemtsovef51fb12015-01-07 16:47:20 +02003063
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08003064 reg_process_hint(reg_request);
Ben2e54a682015-03-12 09:37:34 -04003065
3066 lr = get_last_request();
3067
3068 spin_lock(&reg_requests_lock);
3069 if (!list_empty(&reg_requests_list) && lr && lr->processed)
3070 schedule_work(&reg_work);
3071 spin_unlock(&reg_requests_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003072}
3073
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003074/* Processes beacon hints -- this has nothing to do with country IEs */
3075static void reg_process_pending_beacon_hints(void)
3076{
Johannes Berg79c97e92009-07-07 03:56:12 +02003077 struct cfg80211_registered_device *rdev;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003078 struct reg_beacon *pending_beacon, *tmp;
3079
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003080 /* This goes through the _pending_ beacon list */
3081 spin_lock_bh(&reg_pending_beacons_lock);
3082
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003083 list_for_each_entry_safe(pending_beacon, tmp,
3084 &reg_pending_beacons, list) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003085 list_del_init(&pending_beacon->list);
3086
3087 /* Applies the beacon hint to current wiphys */
Johannes Berg79c97e92009-07-07 03:56:12 +02003088 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
3089 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003090
3091 /* Remembers the beacon hint for new wiphys or reg changes */
3092 list_add_tail(&pending_beacon->list, &reg_beacon_list);
3093 }
3094
3095 spin_unlock_bh(&reg_pending_beacons_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003096}
3097
Johannes Berga05829a2021-01-22 16:19:43 +01003098static void reg_process_self_managed_hint(struct wiphy *wiphy)
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003099{
Johannes Berga05829a2021-01-22 16:19:43 +01003100 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003101 const struct ieee80211_regdomain *tmp;
3102 const struct ieee80211_regdomain *regd;
Johannes Berg57fbcce2016-04-12 15:56:15 +02003103 enum nl80211_band band;
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003104 struct regulatory_request request = {};
3105
Johannes Berga05829a2021-01-22 16:19:43 +01003106 ASSERT_RTNL();
3107 lockdep_assert_wiphy(wiphy);
3108
3109 spin_lock(&reg_requests_lock);
3110 regd = rdev->requested_regd;
3111 rdev->requested_regd = NULL;
3112 spin_unlock(&reg_requests_lock);
3113
3114 if (!regd)
3115 return;
3116
3117 tmp = get_wiphy_regdom(wiphy);
3118 rcu_assign_pointer(wiphy->regd, regd);
3119 rcu_free_regdom(tmp);
3120
3121 for (band = 0; band < NUM_NL80211_BANDS; band++)
3122 handle_band_custom(wiphy, wiphy->bands[band], regd);
3123
3124 reg_process_ht_flags(wiphy);
3125
3126 request.wiphy_idx = get_wiphy_idx(wiphy);
3127 request.alpha2[0] = regd->alpha2[0];
3128 request.alpha2[1] = regd->alpha2[1];
3129 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
3130
3131 nl80211_send_wiphy_reg_change_event(&request);
3132}
3133
3134static void reg_process_self_managed_hints(void)
3135{
3136 struct cfg80211_registered_device *rdev;
3137
3138 ASSERT_RTNL();
3139
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003140 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
Johannes Berga05829a2021-01-22 16:19:43 +01003141 wiphy_lock(&rdev->wiphy);
3142 reg_process_self_managed_hint(&rdev->wiphy);
3143 wiphy_unlock(&rdev->wiphy);
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003144 }
3145
3146 reg_check_channels();
3147}
3148
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003149static void reg_todo(struct work_struct *work)
3150{
Johannes Berg5fe231e2013-05-08 21:45:15 +02003151 rtnl_lock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003152 reg_process_pending_hints();
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003153 reg_process_pending_beacon_hints();
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003154 reg_process_self_managed_hints();
Johannes Berg5fe231e2013-05-08 21:45:15 +02003155 rtnl_unlock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003156}
3157
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003158static void queue_regulatory_request(struct regulatory_request *request)
3159{
Johannes Bergd4f2c882012-12-03 18:59:58 +01003160 request->alpha2[0] = toupper(request->alpha2[0]);
3161 request->alpha2[1] = toupper(request->alpha2[1]);
John W. Linvillec61029c2010-08-05 14:26:24 -04003162
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003163 spin_lock(&reg_requests_lock);
3164 list_add_tail(&request->list, &reg_requests_list);
3165 spin_unlock(&reg_requests_lock);
3166
3167 schedule_work(&reg_work);
3168}
3169
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003170/*
3171 * Core regulatory hint -- happens during cfg80211_init()
3172 * and when we restore regulatory settings.
3173 */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05003174static int regulatory_hint_core(const char *alpha2)
3175{
3176 struct regulatory_request *request;
3177
Johannes Berg1a919312012-12-03 17:21:11 +01003178 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05003179 if (!request)
3180 return -ENOMEM;
3181
3182 request->alpha2[0] = alpha2[0];
3183 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04003184 request->initiator = NL80211_REGDOM_SET_BY_CORE;
Andrei Otcheretianski24f33e62018-09-05 08:06:12 +03003185 request->wiphy_idx = WIPHY_IDX_INVALID;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05003186
Luis R. Rodriguez31e99722010-11-17 21:46:06 -08003187 queue_regulatory_request(request);
Luis R. Rodriguez5078b2e2009-05-13 17:04:42 -04003188
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003189 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05003190}
3191
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003192/* User hints */
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003193int regulatory_hint_user(const char *alpha2,
3194 enum nl80211_user_reg_hint_type user_reg_hint_type)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003195{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003196 struct regulatory_request *request;
3197
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01003198 if (WARN_ON(!alpha2))
3199 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003200
Johannes Berg47caf682020-08-19 10:46:48 +02003201 if (!is_world_regdom(alpha2) && !is_an_alpha2(alpha2))
3202 return -EINVAL;
3203
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003204 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
3205 if (!request)
3206 return -ENOMEM;
3207
Johannes Bergf4173762012-12-03 18:23:37 +01003208 request->wiphy_idx = WIPHY_IDX_INVALID;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003209 request->alpha2[0] = alpha2[0];
3210 request->alpha2[1] = alpha2[1];
Luis R. Rodrigueze12822e2010-01-04 11:37:39 -05003211 request->initiator = NL80211_REGDOM_SET_BY_USER;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003212 request->user_reg_hint_type = user_reg_hint_type;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003213
Ilan peerc37722b2015-03-30 15:15:49 +03003214 /* Allow calling CRDA again */
Johannes Bergb6863032015-10-15 09:25:18 +02003215 reset_crda_timeouts();
Ilan peerc37722b2015-03-30 15:15:49 +03003216
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003217 queue_regulatory_request(request);
3218
3219 return 0;
3220}
3221
Ilan peer05050752015-03-04 00:32:06 -05003222int regulatory_hint_indoor(bool is_indoor, u32 portid)
Ilan Peer52616f22014-02-25 16:26:00 +02003223{
Ilan peer05050752015-03-04 00:32:06 -05003224 spin_lock(&reg_indoor_lock);
Ilan Peer52616f22014-02-25 16:26:00 +02003225
Ilan peer05050752015-03-04 00:32:06 -05003226 /* It is possible that more than one user space process is trying to
3227 * configure the indoor setting. To handle such cases, clear the indoor
3228 * setting in case that some process does not think that the device
3229 * is operating in an indoor environment. In addition, if a user space
3230 * process indicates that it is controlling the indoor setting, save its
3231 * portid, i.e., make it the owner.
3232 */
3233 reg_is_indoor = is_indoor;
3234 if (reg_is_indoor) {
3235 if (!reg_is_indoor_portid)
3236 reg_is_indoor_portid = portid;
3237 } else {
3238 reg_is_indoor_portid = 0;
3239 }
Ilan Peer52616f22014-02-25 16:26:00 +02003240
Ilan peer05050752015-03-04 00:32:06 -05003241 spin_unlock(&reg_indoor_lock);
3242
3243 if (!is_indoor)
3244 reg_check_channels();
Ilan Peer52616f22014-02-25 16:26:00 +02003245
3246 return 0;
3247}
3248
Ilan peer05050752015-03-04 00:32:06 -05003249void regulatory_netlink_notify(u32 portid)
3250{
3251 spin_lock(&reg_indoor_lock);
3252
3253 if (reg_is_indoor_portid != portid) {
3254 spin_unlock(&reg_indoor_lock);
3255 return;
3256 }
3257
3258 reg_is_indoor = false;
3259 reg_is_indoor_portid = 0;
3260
3261 spin_unlock(&reg_indoor_lock);
3262
3263 reg_check_channels();
3264}
3265
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003266/* Driver hints */
3267int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
3268{
3269 struct regulatory_request *request;
3270
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01003271 if (WARN_ON(!alpha2 || !wiphy))
3272 return -EINVAL;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003273
Luis R. Rodriguez4f7b9142013-12-14 20:09:06 +01003274 wiphy->regulatory_flags &= ~REGULATORY_CUSTOM_REG;
3275
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003276 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
3277 if (!request)
3278 return -ENOMEM;
3279
3280 request->wiphy_idx = get_wiphy_idx(wiphy);
3281
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003282 request->alpha2[0] = alpha2[0];
3283 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04003284 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003285
Ilan peerc37722b2015-03-30 15:15:49 +03003286 /* Allow calling CRDA again */
Johannes Bergb6863032015-10-15 09:25:18 +02003287 reset_crda_timeouts();
Ilan peerc37722b2015-03-30 15:15:49 +03003288
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003289 queue_regulatory_request(request);
3290
3291 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003292}
3293EXPORT_SYMBOL(regulatory_hint);
3294
Johannes Berg57fbcce2016-04-12 15:56:15 +02003295void regulatory_hint_country_ie(struct wiphy *wiphy, enum nl80211_band band,
Luis R. Rodriguez789fd032013-10-04 18:07:24 -07003296 const u8 *country_ie, u8 country_ie_len)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003297{
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003298 char alpha2[2];
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003299 enum environment_cap env = ENVIRON_ANY;
Johannes Bergdb2424c2013-05-10 19:07:52 +02003300 struct regulatory_request *request = NULL, *lr;
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05003301
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003302 /* IE len must be evenly divisible by 2 */
3303 if (country_ie_len & 0x01)
Johannes Bergdb2424c2013-05-10 19:07:52 +02003304 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003305
3306 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Bergdb2424c2013-05-10 19:07:52 +02003307 return;
3308
3309 request = kzalloc(sizeof(*request), GFP_KERNEL);
3310 if (!request)
3311 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003312
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003313 alpha2[0] = country_ie[0];
3314 alpha2[1] = country_ie[1];
3315
3316 if (country_ie[2] == 'I')
3317 env = ENVIRON_INDOOR;
3318 else if (country_ie[2] == 'O')
3319 env = ENVIRON_OUTDOOR;
3320
Johannes Bergdb2424c2013-05-10 19:07:52 +02003321 rcu_read_lock();
3322 lr = get_last_request();
3323
3324 if (unlikely(!lr))
3325 goto out;
3326
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003327 /*
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07003328 * We will run this only upon a successful connection on cfg80211.
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07003329 * We leave conflict resolution to the workqueue, where can hold
Johannes Berg5fe231e2013-05-08 21:45:15 +02003330 * the RTNL.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003331 */
Johannes Bergc492db32012-12-06 16:29:25 +01003332 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
3333 lr->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07003334 goto out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003335
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003336 request->wiphy_idx = get_wiphy_idx(wiphy);
John W. Linville4f366c52010-07-15 14:57:33 -04003337 request->alpha2[0] = alpha2[0];
3338 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04003339 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003340 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003341
Ilan peerc37722b2015-03-30 15:15:49 +03003342 /* Allow calling CRDA again */
Johannes Bergb6863032015-10-15 09:25:18 +02003343 reset_crda_timeouts();
Ilan peerc37722b2015-03-30 15:15:49 +03003344
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003345 queue_regulatory_request(request);
Johannes Bergdb2424c2013-05-10 19:07:52 +02003346 request = NULL;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003347out:
Johannes Bergdb2424c2013-05-10 19:07:52 +02003348 kfree(request);
3349 rcu_read_unlock();
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003350}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003351
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003352static void restore_alpha2(char *alpha2, bool reset_user)
3353{
3354 /* indicates there is no alpha2 to consider for restoration */
3355 alpha2[0] = '9';
3356 alpha2[1] = '7';
3357
3358 /* The user setting has precedence over the module parameter */
3359 if (is_user_regdom_saved()) {
3360 /* Unless we're asked to ignore it and reset it */
3361 if (reset_user) {
Johannes Bergc799ba62015-12-11 15:31:10 +01003362 pr_debug("Restoring regulatory settings including user preference\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003363 user_alpha2[0] = '9';
3364 user_alpha2[1] = '7';
3365
3366 /*
3367 * If we're ignoring user settings, we still need to
3368 * check the module parameter to ensure we put things
3369 * back as they were for a full restore.
3370 */
3371 if (!is_world_regdom(ieee80211_regdom)) {
Johannes Bergc799ba62015-12-11 15:31:10 +01003372 pr_debug("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
3373 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003374 alpha2[0] = ieee80211_regdom[0];
3375 alpha2[1] = ieee80211_regdom[1];
3376 }
3377 } else {
Johannes Bergc799ba62015-12-11 15:31:10 +01003378 pr_debug("Restoring regulatory settings while preserving user preference for: %c%c\n",
3379 user_alpha2[0], user_alpha2[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003380 alpha2[0] = user_alpha2[0];
3381 alpha2[1] = user_alpha2[1];
3382 }
3383 } else if (!is_world_regdom(ieee80211_regdom)) {
Johannes Bergc799ba62015-12-11 15:31:10 +01003384 pr_debug("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
3385 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003386 alpha2[0] = ieee80211_regdom[0];
3387 alpha2[1] = ieee80211_regdom[1];
3388 } else
Johannes Bergc799ba62015-12-11 15:31:10 +01003389 pr_debug("Restoring regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003390}
3391
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303392static void restore_custom_reg_settings(struct wiphy *wiphy)
3393{
3394 struct ieee80211_supported_band *sband;
Johannes Berg57fbcce2016-04-12 15:56:15 +02003395 enum nl80211_band band;
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303396 struct ieee80211_channel *chan;
3397 int i;
3398
Johannes Berg57fbcce2016-04-12 15:56:15 +02003399 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303400 sband = wiphy->bands[band];
3401 if (!sband)
3402 continue;
3403 for (i = 0; i < sband->n_channels; i++) {
3404 chan = &sband->channels[i];
3405 chan->flags = chan->orig_flags;
3406 chan->max_antenna_gain = chan->orig_mag;
3407 chan->max_power = chan->orig_mpwr;
Paul Stewart899852a2012-08-01 16:54:42 -07003408 chan->beacon_found = false;
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303409 }
3410 }
3411}
3412
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003413/*
Bhaskar Chowdhuryf2e30932021-03-27 04:42:51 +05303414 * Restoring regulatory settings involves ignoring any
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003415 * possibly stale country IE information and user regulatory
3416 * settings if so desired, this includes any beacon hints
3417 * learned as we could have traveled outside to another country
3418 * after disconnection. To restore regulatory settings we do
3419 * exactly what we did at bootup:
3420 *
3421 * - send a core regulatory hint
3422 * - send a user regulatory hint if applicable
3423 *
3424 * Device drivers that send a regulatory hint for a specific country
Randy Dunlapcc5a639b2020-08-22 16:19:50 -07003425 * keep their own regulatory domain on wiphy->regd so that does
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003426 * not need to be remembered.
3427 */
Johannes Berge646a022019-02-05 21:08:29 +01003428static void restore_regulatory_settings(bool reset_user, bool cached)
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003429{
3430 char alpha2[2];
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08003431 char world_alpha2[2];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003432 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003433 LIST_HEAD(tmp_reg_req_list);
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303434 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003435
Johannes Berg5fe231e2013-05-08 21:45:15 +02003436 ASSERT_RTNL();
3437
Ilan peer05050752015-03-04 00:32:06 -05003438 /*
3439 * Clear the indoor setting in case that it is not controlled by user
3440 * space, as otherwise there is no guarantee that the device is still
3441 * operating in an indoor environment.
3442 */
3443 spin_lock(&reg_indoor_lock);
3444 if (reg_is_indoor && !reg_is_indoor_portid) {
3445 reg_is_indoor = false;
3446 reg_check_channels();
3447 }
3448 spin_unlock(&reg_indoor_lock);
Ilan Peer52616f22014-02-25 16:26:00 +02003449
Johannes Berg2d319862013-01-09 12:01:38 +01003450 reset_regdomains(true, &world_regdom);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003451 restore_alpha2(alpha2, reset_user);
3452
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003453 /*
3454 * If there's any pending requests we simply
3455 * stash them to a temporary pending queue and
3456 * add then after we've restored regulatory
3457 * settings.
3458 */
3459 spin_lock(&reg_requests_lock);
Ilan peereeca9fc2015-03-04 00:32:07 -05003460 list_splice_tail_init(&reg_requests_list, &tmp_reg_req_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003461 spin_unlock(&reg_requests_lock);
3462
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003463 /* Clear beacon hints */
3464 spin_lock_bh(&reg_pending_beacons_lock);
Johannes Bergfea9bce2012-12-03 17:32:01 +01003465 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
3466 list_del(&reg_beacon->list);
3467 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003468 }
3469 spin_unlock_bh(&reg_pending_beacons_lock);
3470
Johannes Bergfea9bce2012-12-03 17:32:01 +01003471 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
3472 list_del(&reg_beacon->list);
3473 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003474 }
3475
3476 /* First restore to the basic regulatory settings */
Johannes Berg379b82f2012-12-06 15:44:07 +01003477 world_alpha2[0] = cfg80211_world_regdom->alpha2[0];
3478 world_alpha2[1] = cfg80211_world_regdom->alpha2[1];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003479
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303480 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003481 if (rdev->wiphy.regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
3482 continue;
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01003483 if (rdev->wiphy.regulatory_flags & REGULATORY_CUSTOM_REG)
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303484 restore_custom_reg_settings(&rdev->wiphy);
3485 }
3486
Johannes Berge646a022019-02-05 21:08:29 +01003487 if (cached && (!is_an_alpha2(alpha2) ||
3488 !IS_ERR_OR_NULL(cfg80211_user_regdom))) {
3489 reset_regdomains(false, cfg80211_world_regdom);
3490 update_all_wiphy_regulatory(NL80211_REGDOM_SET_BY_CORE);
3491 print_regdomain(get_cfg80211_regdom());
3492 nl80211_send_reg_change_event(&core_request_world);
3493 reg_set_request_processed();
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003494
Johannes Berge646a022019-02-05 21:08:29 +01003495 if (is_an_alpha2(alpha2) &&
3496 !regulatory_hint_user(alpha2, NL80211_USER_REG_HINT_USER)) {
3497 struct regulatory_request *ureq;
3498
3499 spin_lock(&reg_requests_lock);
3500 ureq = list_last_entry(&reg_requests_list,
3501 struct regulatory_request,
3502 list);
3503 list_del(&ureq->list);
3504 spin_unlock(&reg_requests_lock);
3505
3506 notify_self_managed_wiphys(ureq);
3507 reg_update_last_request(ureq);
3508 set_regdom(reg_copy_regd(cfg80211_user_regdom),
3509 REGD_SOURCE_CACHED);
3510 }
3511 } else {
3512 regulatory_hint_core(world_alpha2);
3513
3514 /*
3515 * This restores the ieee80211_regdom module parameter
3516 * preference or the last user requested regulatory
3517 * settings, user regulatory settings takes precedence.
3518 */
3519 if (is_an_alpha2(alpha2))
3520 regulatory_hint_user(alpha2, NL80211_USER_REG_HINT_USER);
3521 }
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003522
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003523 spin_lock(&reg_requests_lock);
Johannes Berg11cff962012-12-03 18:56:41 +01003524 list_splice_tail_init(&tmp_reg_req_list, &reg_requests_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003525 spin_unlock(&reg_requests_lock);
3526
Johannes Bergc799ba62015-12-11 15:31:10 +01003527 pr_debug("Kicking the queue\n");
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003528
3529 schedule_work(&reg_work);
3530}
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003531
Rajeev Kumar Sirasanagandla74178442018-07-10 18:46:13 +05303532static bool is_wiphy_all_set_reg_flag(enum ieee80211_regulatory_flags flag)
3533{
3534 struct cfg80211_registered_device *rdev;
3535 struct wireless_dev *wdev;
3536
3537 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
3538 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
3539 wdev_lock(wdev);
3540 if (!(wdev->wiphy->regulatory_flags & flag)) {
3541 wdev_unlock(wdev);
3542 return false;
3543 }
3544 wdev_unlock(wdev);
3545 }
3546 }
3547
3548 return true;
3549}
3550
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003551void regulatory_hint_disconnect(void)
3552{
Rajeev Kumar Sirasanagandla74178442018-07-10 18:46:13 +05303553 /* Restore of regulatory settings is not required when wiphy(s)
3554 * ignore IE from connected access point but clearance of beacon hints
3555 * is required when wiphy(s) supports beacon hints.
3556 */
3557 if (is_wiphy_all_set_reg_flag(REGULATORY_COUNTRY_IE_IGNORE)) {
3558 struct reg_beacon *reg_beacon, *btmp;
3559
3560 if (is_wiphy_all_set_reg_flag(REGULATORY_DISABLE_BEACON_HINTS))
3561 return;
3562
3563 spin_lock_bh(&reg_pending_beacons_lock);
3564 list_for_each_entry_safe(reg_beacon, btmp,
3565 &reg_pending_beacons, list) {
3566 list_del(&reg_beacon->list);
3567 kfree(reg_beacon);
3568 }
3569 spin_unlock_bh(&reg_pending_beacons_lock);
3570
3571 list_for_each_entry_safe(reg_beacon, btmp,
3572 &reg_beacon_list, list) {
3573 list_del(&reg_beacon->list);
3574 kfree(reg_beacon);
3575 }
3576
3577 return;
3578 }
3579
Johannes Bergc799ba62015-12-11 15:31:10 +01003580 pr_debug("All devices are disconnected, going to restore regulatory settings\n");
Johannes Berge646a022019-02-05 21:08:29 +01003581 restore_regulatory_settings(false, true);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003582}
3583
Alexei Avshalom Lazar9cf0a0b2018-08-13 15:33:00 +03003584static bool freq_is_chan_12_13_14(u32 freq)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003585{
Johannes Berg57fbcce2016-04-12 15:56:15 +02003586 if (freq == ieee80211_channel_to_frequency(12, NL80211_BAND_2GHZ) ||
3587 freq == ieee80211_channel_to_frequency(13, NL80211_BAND_2GHZ) ||
3588 freq == ieee80211_channel_to_frequency(14, NL80211_BAND_2GHZ))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003589 return true;
3590 return false;
3591}
3592
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08003593static bool pending_reg_beacon(struct ieee80211_channel *beacon_chan)
3594{
3595 struct reg_beacon *pending_beacon;
3596
3597 list_for_each_entry(pending_beacon, &reg_pending_beacons, list)
Thomas Pedersen934f4c72020-04-01 18:18:03 -07003598 if (ieee80211_channel_equal(beacon_chan,
3599 &pending_beacon->chan))
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08003600 return true;
3601 return false;
3602}
3603
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003604int regulatory_hint_found_beacon(struct wiphy *wiphy,
3605 struct ieee80211_channel *beacon_chan,
3606 gfp_t gfp)
3607{
3608 struct reg_beacon *reg_beacon;
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08003609 bool processing;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003610
Johannes Berg1a919312012-12-03 17:21:11 +01003611 if (beacon_chan->beacon_found ||
3612 beacon_chan->flags & IEEE80211_CHAN_RADAR ||
Johannes Berg57fbcce2016-04-12 15:56:15 +02003613 (beacon_chan->band == NL80211_BAND_2GHZ &&
Johannes Berg1a919312012-12-03 17:21:11 +01003614 !freq_is_chan_12_13_14(beacon_chan->center_freq)))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003615 return 0;
3616
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08003617 spin_lock_bh(&reg_pending_beacons_lock);
3618 processing = pending_reg_beacon(beacon_chan);
3619 spin_unlock_bh(&reg_pending_beacons_lock);
3620
3621 if (processing)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003622 return 0;
3623
3624 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
3625 if (!reg_beacon)
3626 return -ENOMEM;
3627
Thomas Pedersen934f4c72020-04-01 18:18:03 -07003628 pr_debug("Found new beacon on frequency: %d.%03d MHz (Ch %d) on %s\n",
3629 beacon_chan->center_freq, beacon_chan->freq_offset,
3630 ieee80211_freq_khz_to_channel(
3631 ieee80211_channel_to_khz(beacon_chan)),
Johannes Bergc799ba62015-12-11 15:31:10 +01003632 wiphy_name(wiphy));
Luis R. Rodriguez4113f752010-01-04 11:50:11 -05003633
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003634 memcpy(&reg_beacon->chan, beacon_chan,
Johannes Berg1a919312012-12-03 17:21:11 +01003635 sizeof(struct ieee80211_channel));
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003636
3637 /*
3638 * Since we can be called from BH or and non-BH context
3639 * we must use spin_lock_bh()
3640 */
3641 spin_lock_bh(&reg_pending_beacons_lock);
3642 list_add_tail(&reg_beacon->list, &reg_pending_beacons);
3643 spin_unlock_bh(&reg_pending_beacons_lock);
3644
3645 schedule_work(&reg_work);
3646
3647 return 0;
3648}
3649
Johannes Berga3d2eaf2008-09-15 11:10:52 +02003650static void print_rd_rules(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003651{
3652 unsigned int i;
Johannes Berga3d2eaf2008-09-15 11:10:52 +02003653 const struct ieee80211_reg_rule *reg_rule = NULL;
3654 const struct ieee80211_freq_range *freq_range = NULL;
3655 const struct ieee80211_power_rule *power_rule = NULL;
Janusz Dziedzic089027e2014-02-21 19:46:12 +01003656 char bw[32], cac_time[32];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003657
Dave Young94c4fd62015-11-15 15:31:05 +08003658 pr_debug(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003659
3660 for (i = 0; i < rd->n_reg_rules; i++) {
3661 reg_rule = &rd->reg_rules[i];
3662 freq_range = &reg_rule->freq_range;
3663 power_rule = &reg_rule->power_rule;
3664
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01003665 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
Ye Bindb18d202020-10-09 15:02:15 +08003666 snprintf(bw, sizeof(bw), "%d KHz, %u KHz AUTO",
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01003667 freq_range->max_bandwidth_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01003668 reg_get_max_bandwidth(rd, reg_rule));
3669 else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01003670 snprintf(bw, sizeof(bw), "%d KHz",
Janusz Dziedzic97524822014-01-30 09:52:20 +01003671 freq_range->max_bandwidth_khz);
3672
Janusz Dziedzic089027e2014-02-21 19:46:12 +01003673 if (reg_rule->flags & NL80211_RRF_DFS)
3674 scnprintf(cac_time, sizeof(cac_time), "%u s",
3675 reg_rule->dfs_cac_ms/1000);
3676 else
3677 scnprintf(cac_time, sizeof(cac_time), "N/A");
3678
3679
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003680 /*
3681 * There may not be documentation for max antenna gain
3682 * in certain regions
3683 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003684 if (power_rule->max_antenna_gain)
Dave Young94c4fd62015-11-15 15:31:05 +08003685 pr_debug(" (%d KHz - %d KHz @ %s), (%d mBi, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003686 freq_range->start_freq_khz,
3687 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01003688 bw,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003689 power_rule->max_antenna_gain,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01003690 power_rule->max_eirp,
3691 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003692 else
Dave Young94c4fd62015-11-15 15:31:05 +08003693 pr_debug(" (%d KHz - %d KHz @ %s), (N/A, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003694 freq_range->start_freq_khz,
3695 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01003696 bw,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01003697 power_rule->max_eirp,
3698 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003699 }
3700}
3701
Luis R. Rodriguez4c7d3982013-11-13 18:54:02 +01003702bool reg_supported_dfs_region(enum nl80211_dfs_regions dfs_region)
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07003703{
3704 switch (dfs_region) {
3705 case NL80211_DFS_UNSET:
3706 case NL80211_DFS_FCC:
3707 case NL80211_DFS_ETSI:
3708 case NL80211_DFS_JP:
3709 return true;
3710 default:
Colin Ian King4a22b002018-05-11 14:25:42 +01003711 pr_debug("Ignoring unknown DFS master region: %d\n", dfs_region);
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07003712 return false;
3713 }
3714}
3715
Johannes Berga3d2eaf2008-09-15 11:10:52 +02003716static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003717{
Johannes Bergc492db32012-12-06 16:29:25 +01003718 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003719
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003720 if (is_intersected_alpha2(rd->alpha2)) {
Johannes Bergc492db32012-12-06 16:29:25 +01003721 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Johannes Berg79c97e92009-07-07 03:56:12 +02003722 struct cfg80211_registered_device *rdev;
Johannes Bergc492db32012-12-06 16:29:25 +01003723 rdev = cfg80211_rdev_by_wiphy_idx(lr->wiphy_idx);
Johannes Berg79c97e92009-07-07 03:56:12 +02003724 if (rdev) {
Dave Young94c4fd62015-11-15 15:31:05 +08003725 pr_debug("Current regulatory domain updated by AP to: %c%c\n",
Johannes Berg79c97e92009-07-07 03:56:12 +02003726 rdev->country_ie_alpha2[0],
3727 rdev->country_ie_alpha2[1]);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003728 } else
Dave Young94c4fd62015-11-15 15:31:05 +08003729 pr_debug("Current regulatory domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003730 } else
Dave Young94c4fd62015-11-15 15:31:05 +08003731 pr_debug("Current regulatory domain intersected:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01003732 } else if (is_world_regdom(rd->alpha2)) {
Dave Young94c4fd62015-11-15 15:31:05 +08003733 pr_debug("World regulatory domain updated:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01003734 } else {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003735 if (is_unknown_alpha2(rd->alpha2))
Dave Young94c4fd62015-11-15 15:31:05 +08003736 pr_debug("Regulatory domain changed to driver built-in settings (unknown country)\n");
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003737 else {
Johannes Bergc492db32012-12-06 16:29:25 +01003738 if (reg_request_cell_base(lr))
Dave Young94c4fd62015-11-15 15:31:05 +08003739 pr_debug("Regulatory domain changed to country: %c%c by Cell Station\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003740 rd->alpha2[0], rd->alpha2[1]);
3741 else
Dave Young94c4fd62015-11-15 15:31:05 +08003742 pr_debug("Regulatory domain changed to country: %c%c\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003743 rd->alpha2[0], rd->alpha2[1]);
3744 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003745 }
Johannes Berg1a919312012-12-03 17:21:11 +01003746
Dave Young94c4fd62015-11-15 15:31:05 +08003747 pr_debug(" DFS Master region: %s", reg_dfs_region_str(rd->dfs_region));
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003748 print_rd_rules(rd);
3749}
3750
Johannes Berg2df78162008-10-28 16:49:41 +01003751static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003752{
Dave Young94c4fd62015-11-15 15:31:05 +08003753 pr_debug("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003754 print_rd_rules(rd);
3755}
3756
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003757static int reg_set_rd_core(const struct ieee80211_regdomain *rd)
3758{
3759 if (!is_world_regdom(rd->alpha2))
3760 return -EINVAL;
3761 update_world_regdomain(rd);
3762 return 0;
3763}
3764
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003765static int reg_set_rd_user(const struct ieee80211_regdomain *rd,
3766 struct regulatory_request *user_request)
3767{
3768 const struct ieee80211_regdomain *intersected_rd = NULL;
3769
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003770 if (!regdom_changes(rd->alpha2))
3771 return -EALREADY;
3772
3773 if (!is_valid_rd(rd)) {
Dave Young94c4fd62015-11-15 15:31:05 +08003774 pr_err("Invalid regulatory domain detected: %c%c\n",
3775 rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003776 print_regdomain_info(rd);
3777 return -EINVAL;
3778 }
3779
3780 if (!user_request->intersect) {
3781 reset_regdomains(false, rd);
3782 return 0;
3783 }
3784
3785 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
3786 if (!intersected_rd)
3787 return -EINVAL;
3788
3789 kfree(rd);
3790 rd = NULL;
3791 reset_regdomains(false, intersected_rd);
3792
3793 return 0;
3794}
3795
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003796static int reg_set_rd_driver(const struct ieee80211_regdomain *rd,
3797 struct regulatory_request *driver_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003798{
Johannes Berge9763c32012-12-03 16:59:46 +01003799 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07003800 const struct ieee80211_regdomain *intersected_rd = NULL;
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003801 const struct ieee80211_regdomain *tmp;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05003802 struct wiphy *request_wiphy;
Johannes Berg6913b492012-12-04 00:48:59 +01003803
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003804 if (is_world_regdom(rd->alpha2))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003805 return -EINVAL;
3806
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003807 if (!regdom_changes(rd->alpha2))
3808 return -EALREADY;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003809
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08003810 if (!is_valid_rd(rd)) {
Dave Young94c4fd62015-11-15 15:31:05 +08003811 pr_err("Invalid regulatory domain detected: %c%c\n",
3812 rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08003813 print_regdomain_info(rd);
3814 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003815 }
3816
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003817 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx);
Johannes Berg922ec582015-10-15 09:12:49 +02003818 if (!request_wiphy)
Johannes Bergde3584b2011-11-21 10:44:00 +01003819 return -ENODEV;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05003820
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003821 if (!driver_request->intersect) {
Johannes Berga05829a2021-01-22 16:19:43 +01003822 ASSERT_RTNL();
3823 wiphy_lock(request_wiphy);
3824 if (request_wiphy->regd) {
3825 wiphy_unlock(request_wiphy);
Luis R. Rodriguez558f6d32009-06-08 18:54:37 -07003826 return -EALREADY;
Johannes Berga05829a2021-01-22 16:19:43 +01003827 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08003828
Johannes Berge9763c32012-12-03 16:59:46 +01003829 regd = reg_copy_regd(rd);
Johannes Berga05829a2021-01-22 16:19:43 +01003830 if (IS_ERR(regd)) {
3831 wiphy_unlock(request_wiphy);
Johannes Berge9763c32012-12-03 16:59:46 +01003832 return PTR_ERR(regd);
Johannes Berga05829a2021-01-22 16:19:43 +01003833 }
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08003834
Johannes Berg458f4f92012-12-06 15:47:38 +01003835 rcu_assign_pointer(request_wiphy->regd, regd);
Johannes Berga05829a2021-01-22 16:19:43 +01003836 wiphy_unlock(request_wiphy);
Johannes Berg379b82f2012-12-06 15:44:07 +01003837 reset_regdomains(false, rd);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08003838 return 0;
3839 }
3840
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003841 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
3842 if (!intersected_rd)
3843 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08003844
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003845 /*
3846 * We can trash what CRDA provided now.
3847 * However if a driver requested this specific regulatory
3848 * domain we keep it for its private use
3849 */
3850 tmp = get_wiphy_regdom(request_wiphy);
3851 rcu_assign_pointer(request_wiphy->regd, rd);
3852 rcu_free_regdom(tmp);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08003853
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003854 rd = NULL;
Larry Fingerb7566fc2013-02-04 15:33:44 -06003855
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003856 reset_regdomains(false, intersected_rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08003857
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003858 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003859}
3860
Luis R. Rodriguez01992402013-11-05 09:18:17 -08003861static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
3862 struct regulatory_request *country_ie_request)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003863{
3864 struct wiphy *request_wiphy;
3865
3866 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
3867 !is_unknown_alpha2(rd->alpha2))
3868 return -EINVAL;
3869
3870 /*
3871 * Lets only bother proceeding on the same alpha2 if the current
3872 * rd is non static (it means CRDA was present and was used last)
3873 * and the pending request came in from a country IE
3874 */
3875
3876 if (!is_valid_rd(rd)) {
Dave Young94c4fd62015-11-15 15:31:05 +08003877 pr_err("Invalid regulatory domain detected: %c%c\n",
3878 rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003879 print_regdomain_info(rd);
3880 return -EINVAL;
3881 }
3882
Luis R. Rodriguez01992402013-11-05 09:18:17 -08003883 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx);
Johannes Berg922ec582015-10-15 09:12:49 +02003884 if (!request_wiphy)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003885 return -ENODEV;
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003886
Luis R. Rodriguez01992402013-11-05 09:18:17 -08003887 if (country_ie_request->intersect)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003888 return -EINVAL;
3889
3890 reset_regdomains(false, rd);
3891 return 0;
3892}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003893
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003894/*
3895 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003896 * multiple drivers can be ironed out later. Caller must've already
Johannes Berg458f4f92012-12-06 15:47:38 +01003897 * kmalloc'd the rd structure.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003898 */
Ilan peerc37722b2015-03-30 15:15:49 +03003899int set_regdom(const struct ieee80211_regdomain *rd,
3900 enum ieee80211_regd_source regd_src)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003901{
Johannes Bergc492db32012-12-06 16:29:25 +01003902 struct regulatory_request *lr;
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003903 bool user_reset = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003904 int r;
3905
Johannes Berge646a022019-02-05 21:08:29 +01003906 if (IS_ERR_OR_NULL(rd))
3907 return -ENODATA;
3908
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003909 if (!reg_is_valid_request(rd->alpha2)) {
3910 kfree(rd);
3911 return -EINVAL;
3912 }
3913
Ilan peerc37722b2015-03-30 15:15:49 +03003914 if (regd_src == REGD_SOURCE_CRDA)
Johannes Bergb6863032015-10-15 09:25:18 +02003915 reset_crda_timeouts();
Ilan peerc37722b2015-03-30 15:15:49 +03003916
Johannes Bergc492db32012-12-06 16:29:25 +01003917 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07003918
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003919 /* Note that this doesn't update the wiphys, this is done below */
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003920 switch (lr->initiator) {
3921 case NL80211_REGDOM_SET_BY_CORE:
3922 r = reg_set_rd_core(rd);
3923 break;
3924 case NL80211_REGDOM_SET_BY_USER:
Johannes Berge646a022019-02-05 21:08:29 +01003925 cfg80211_save_user_regdom(rd);
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003926 r = reg_set_rd_user(rd, lr);
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003927 user_reset = true;
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003928 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003929 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003930 r = reg_set_rd_driver(rd, lr);
3931 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003932 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez01992402013-11-05 09:18:17 -08003933 r = reg_set_rd_country_ie(rd, lr);
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003934 break;
3935 default:
3936 WARN(1, "invalid initiator %d\n", lr->initiator);
Ola Olsson09d11802015-12-13 19:12:03 +01003937 kfree(rd);
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003938 return -EINVAL;
3939 }
3940
Johannes Bergd2372b32008-10-24 20:32:20 +02003941 if (r) {
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003942 switch (r) {
3943 case -EALREADY:
Kalle Valo95908532012-07-12 15:33:58 +03003944 reg_set_request_processed();
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003945 break;
3946 default:
3947 /* Back to world regulatory in case of errors */
Johannes Berge646a022019-02-05 21:08:29 +01003948 restore_regulatory_settings(user_reset, false);
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003949 }
Kalle Valo95908532012-07-12 15:33:58 +03003950
Johannes Bergd2372b32008-10-24 20:32:20 +02003951 kfree(rd);
Johannes Berg38fd2142013-05-10 19:17:17 +02003952 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02003953 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003954
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003955 /* This would make this whole thing pointless */
Johannes Berg38fd2142013-05-10 19:17:17 +02003956 if (WARN_ON(!lr->intersect && rd != get_cfg80211_regdom()))
3957 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003958
3959 /* update all wiphys now with the new established regulatory domain */
Johannes Bergc492db32012-12-06 16:29:25 +01003960 update_all_wiphy_regulatory(lr->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003961
Johannes Berg458f4f92012-12-06 15:47:38 +01003962 print_regdomain(get_cfg80211_regdom());
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003963
Johannes Bergc492db32012-12-06 16:29:25 +01003964 nl80211_send_reg_change_event(lr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04003965
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08003966 reg_set_request_processed();
3967
Johannes Berg38fd2142013-05-10 19:17:17 +02003968 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003969}
3970
Arik Nemtsov2c3e8612015-01-07 16:47:19 +02003971static int __regulatory_set_wiphy_regd(struct wiphy *wiphy,
3972 struct ieee80211_regdomain *rd)
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003973{
3974 const struct ieee80211_regdomain *regd;
3975 const struct ieee80211_regdomain *prev_regd;
3976 struct cfg80211_registered_device *rdev;
3977
3978 if (WARN_ON(!wiphy || !rd))
3979 return -EINVAL;
3980
3981 if (WARN(!(wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED),
3982 "wiphy should have REGULATORY_WIPHY_SELF_MANAGED\n"))
3983 return -EPERM;
3984
Johannes Bergb767ecd2021-06-18 13:41:56 +03003985 if (WARN(!is_valid_rd(rd),
3986 "Invalid regulatory domain detected: %c%c\n",
3987 rd->alpha2[0], rd->alpha2[1])) {
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003988 print_regdomain_info(rd);
3989 return -EINVAL;
3990 }
3991
3992 regd = reg_copy_regd(rd);
3993 if (IS_ERR(regd))
3994 return PTR_ERR(regd);
3995
3996 rdev = wiphy_to_rdev(wiphy);
3997
3998 spin_lock(&reg_requests_lock);
3999 prev_regd = rdev->requested_regd;
4000 rdev->requested_regd = regd;
4001 spin_unlock(&reg_requests_lock);
4002
4003 kfree(prev_regd);
Arik Nemtsov2c3e8612015-01-07 16:47:19 +02004004 return 0;
4005}
4006
4007int regulatory_set_wiphy_regd(struct wiphy *wiphy,
4008 struct ieee80211_regdomain *rd)
4009{
4010 int ret = __regulatory_set_wiphy_regd(wiphy, rd);
4011
4012 if (ret)
4013 return ret;
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02004014
4015 schedule_work(&reg_work);
4016 return 0;
4017}
4018EXPORT_SYMBOL(regulatory_set_wiphy_regd);
4019
Johannes Berga05829a2021-01-22 16:19:43 +01004020int regulatory_set_wiphy_regd_sync(struct wiphy *wiphy,
4021 struct ieee80211_regdomain *rd)
Arik Nemtsov2c3e8612015-01-07 16:47:19 +02004022{
4023 int ret;
4024
4025 ASSERT_RTNL();
4026
4027 ret = __regulatory_set_wiphy_regd(wiphy, rd);
4028 if (ret)
4029 return ret;
4030
4031 /* process the request immediately */
Johannes Berga05829a2021-01-22 16:19:43 +01004032 reg_process_self_managed_hint(wiphy);
4033 reg_check_channels();
Arik Nemtsov2c3e8612015-01-07 16:47:19 +02004034 return 0;
4035}
Johannes Berga05829a2021-01-22 16:19:43 +01004036EXPORT_SYMBOL(regulatory_set_wiphy_regd_sync);
Arik Nemtsov2c3e8612015-01-07 16:47:19 +02004037
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004038void wiphy_regulatory_register(struct wiphy *wiphy)
4039{
Amar Singhalaced43ce2018-04-26 20:13:07 +03004040 struct regulatory_request *lr = get_last_request();
Arik Nemtsov23df0b72013-07-21 16:36:48 +03004041
Amar Singhalaced43ce2018-04-26 20:13:07 +03004042 /* self-managed devices ignore beacon hints and country IE */
4043 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) {
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02004044 wiphy->regulatory_flags |= REGULATORY_DISABLE_BEACON_HINTS |
4045 REGULATORY_COUNTRY_IE_IGNORE;
4046
Amar Singhalaced43ce2018-04-26 20:13:07 +03004047 /*
4048 * The last request may have been received before this
4049 * registration call. Call the driver notifier if
Sriram R8772eed2019-04-16 11:16:33 +05304050 * initiator is USER.
Amar Singhalaced43ce2018-04-26 20:13:07 +03004051 */
Sriram R8772eed2019-04-16 11:16:33 +05304052 if (lr->initiator == NL80211_REGDOM_SET_BY_USER)
Amar Singhalaced43ce2018-04-26 20:13:07 +03004053 reg_call_notifier(wiphy, lr);
4054 }
4055
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004056 if (!reg_dev_ignore_cell_hint(wiphy))
4057 reg_num_devs_support_basehint++;
4058
Arik Nemtsov23df0b72013-07-21 16:36:48 +03004059 wiphy_update_regulatory(wiphy, lr->initiator);
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05304060 wiphy_all_share_dfs_chan_state(wiphy);
Miri Korenblit1b7b3ac2021-06-18 13:41:46 +03004061 reg_process_self_managed_hints();
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004062}
4063
Luis R. Rodriguezbfead082012-07-12 11:49:19 -07004064void wiphy_regulatory_deregister(struct wiphy *wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08004065{
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04004066 struct wiphy *request_wiphy = NULL;
Johannes Bergc492db32012-12-06 16:29:25 +01004067 struct regulatory_request *lr;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05004068
Johannes Bergc492db32012-12-06 16:29:25 +01004069 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07004070
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004071 if (!reg_dev_ignore_cell_hint(wiphy))
4072 reg_num_devs_support_basehint--;
4073
Johannes Berg458f4f92012-12-06 15:47:38 +01004074 rcu_free_regdom(get_wiphy_regdom(wiphy));
Monam Agarwal34dd8862014-03-24 00:53:40 +05304075 RCU_INIT_POINTER(wiphy->regd, NULL);
Chris Wright0ef9ccd2009-04-24 14:09:31 -07004076
Johannes Bergc492db32012-12-06 16:29:25 +01004077 if (lr)
4078 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05004079
Chris Wright0ef9ccd2009-04-24 14:09:31 -07004080 if (!request_wiphy || request_wiphy != wiphy)
Johannes Berg38fd2142013-05-10 19:17:17 +02004081 return;
Chris Wright0ef9ccd2009-04-24 14:09:31 -07004082
Johannes Bergc492db32012-12-06 16:29:25 +01004083 lr->wiphy_idx = WIPHY_IDX_INVALID;
4084 lr->country_ie_env = ENVIRON_ANY;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08004085}
4086
Ilan Peer174e0cd2014-02-23 09:13:01 +02004087/*
Arend van Sprielf89769c2019-08-02 13:30:59 +02004088 * See FCC notices for UNII band definitions
4089 * 5GHz: https://www.fcc.gov/document/5-ghz-unlicensed-spectrum-unii
4090 * 6GHz: https://www.fcc.gov/document/fcc-proposes-more-spectrum-unlicensed-use-0
Ilan Peer174e0cd2014-02-23 09:13:01 +02004091 */
4092int cfg80211_get_unii(int freq)
4093{
4094 /* UNII-1 */
4095 if (freq >= 5150 && freq <= 5250)
4096 return 0;
4097
4098 /* UNII-2A */
4099 if (freq > 5250 && freq <= 5350)
4100 return 1;
4101
4102 /* UNII-2B */
4103 if (freq > 5350 && freq <= 5470)
4104 return 2;
4105
4106 /* UNII-2C */
4107 if (freq > 5470 && freq <= 5725)
4108 return 3;
4109
4110 /* UNII-3 */
4111 if (freq > 5725 && freq <= 5825)
4112 return 4;
4113
Arend van Sprielf89769c2019-08-02 13:30:59 +02004114 /* UNII-5 */
4115 if (freq > 5925 && freq <= 6425)
4116 return 5;
4117
4118 /* UNII-6 */
4119 if (freq > 6425 && freq <= 6525)
4120 return 6;
4121
4122 /* UNII-7 */
4123 if (freq > 6525 && freq <= 6875)
4124 return 7;
4125
4126 /* UNII-8 */
4127 if (freq > 6875 && freq <= 7125)
4128 return 8;
4129
Ilan Peer174e0cd2014-02-23 09:13:01 +02004130 return -EINVAL;
4131}
4132
Ilan Peerc8866e52014-02-23 09:13:03 +02004133bool regulatory_indoor_allowed(void)
4134{
4135 return reg_is_indoor;
4136}
4137
Vasanthakumar Thiagarajanb35a51c2017-02-27 17:04:33 +05304138bool regulatory_pre_cac_allowed(struct wiphy *wiphy)
4139{
4140 const struct ieee80211_regdomain *regd = NULL;
4141 const struct ieee80211_regdomain *wiphy_regd = NULL;
4142 bool pre_cac_allowed = false;
4143
4144 rcu_read_lock();
4145
4146 regd = rcu_dereference(cfg80211_regdomain);
4147 wiphy_regd = rcu_dereference(wiphy->regd);
4148 if (!wiphy_regd) {
4149 if (regd->dfs_region == NL80211_DFS_ETSI)
4150 pre_cac_allowed = true;
4151
4152 rcu_read_unlock();
4153
4154 return pre_cac_allowed;
4155 }
4156
4157 if (regd->dfs_region == wiphy_regd->dfs_region &&
4158 wiphy_regd->dfs_region == NL80211_DFS_ETSI)
4159 pre_cac_allowed = true;
4160
4161 rcu_read_unlock();
4162
4163 return pre_cac_allowed;
4164}
Aaron Komisardc0c18e2019-10-02 13:59:07 +00004165EXPORT_SYMBOL(regulatory_pre_cac_allowed);
Vasanthakumar Thiagarajanb35a51c2017-02-27 17:04:33 +05304166
Orr Mazor26ec17a2019-12-22 14:55:31 +00004167static void cfg80211_check_and_end_cac(struct cfg80211_registered_device *rdev)
4168{
4169 struct wireless_dev *wdev;
4170 /* If we finished CAC or received radar, we should end any
4171 * CAC running on the same channels.
4172 * the check !cfg80211_chandef_dfs_usable contain 2 options:
4173 * either all channels are available - those the CAC_FINISHED
4174 * event has effected another wdev state, or there is a channel
4175 * in unavailable state in wdev chandef - those the RADAR_DETECTED
4176 * event has effected another wdev state.
4177 * In both cases we should end the CAC on the wdev.
4178 */
4179 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
4180 if (wdev->cac_started &&
4181 !cfg80211_chandef_dfs_usable(&rdev->wiphy, &wdev->chandef))
4182 rdev_end_cac(rdev, wdev->netdev);
4183 }
4184}
4185
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05304186void regulatory_propagate_dfs_state(struct wiphy *wiphy,
4187 struct cfg80211_chan_def *chandef,
4188 enum nl80211_dfs_state dfs_state,
4189 enum nl80211_radar_event event)
4190{
4191 struct cfg80211_registered_device *rdev;
4192
4193 ASSERT_RTNL();
4194
4195 if (WARN_ON(!cfg80211_chandef_valid(chandef)))
4196 return;
4197
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05304198 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
4199 if (wiphy == &rdev->wiphy)
4200 continue;
4201
4202 if (!reg_dfs_domain_same(wiphy, &rdev->wiphy))
4203 continue;
4204
4205 if (!ieee80211_get_channel(&rdev->wiphy,
4206 chandef->chan->center_freq))
4207 continue;
4208
4209 cfg80211_set_dfs_state(&rdev->wiphy, chandef, dfs_state);
4210
4211 if (event == NL80211_RADAR_DETECTED ||
Orr Mazor26ec17a2019-12-22 14:55:31 +00004212 event == NL80211_RADAR_CAC_FINISHED) {
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05304213 cfg80211_sched_dfs_chan_update(rdev);
Orr Mazor26ec17a2019-12-22 14:55:31 +00004214 cfg80211_check_and_end_cac(rdev);
4215 }
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05304216
4217 nl80211_radar_notify(rdev, chandef, event, NULL, GFP_KERNEL);
4218 }
4219}
4220
Johannes Bergd7be1022017-10-26 11:24:27 +02004221static int __init regulatory_init_db(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004222{
Johannes Bergd7be1022017-10-26 11:24:27 +02004223 int err;
Johannes Berg734366d2008-09-15 10:56:48 +02004224
Johannes Berg71e5e8862018-10-01 11:43:00 +02004225 /*
4226 * It's possible that - due to other bugs/issues - cfg80211
4227 * never called regulatory_init() below, or that it failed;
4228 * in that case, don't try to do any further work here as
4229 * it's doomed to lead to crashes.
4230 */
4231 if (IS_ERR_OR_NULL(reg_pdev))
4232 return -EINVAL;
4233
Johannes Berg90a53e42017-09-13 22:21:08 +02004234 err = load_builtin_regdb_keys();
4235 if (err)
4236 return err;
4237
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04004238 /* We always try to get an update for the static regdomain */
Johannes Berg458f4f92012-12-06 15:47:38 +01004239 err = regulatory_hint_core(cfg80211_world_regdom->alpha2);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05004240 if (err) {
Ola Olsson09d11802015-12-13 19:12:03 +01004241 if (err == -ENOMEM) {
4242 platform_device_unregister(reg_pdev);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05004243 return err;
Ola Olsson09d11802015-12-13 19:12:03 +01004244 }
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05004245 /*
4246 * N.B. kobject_uevent_env() can fail mainly for when we're out
4247 * memory which is handled and propagated appropriately above
4248 * but it can also fail during a netlink_broadcast() or during
4249 * early boot for call_usermodehelper(). For now treat these
4250 * errors as non-fatal.
4251 */
Joe Perchese9c02682010-11-16 19:56:49 -08004252 pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05004253 }
Johannes Berg734366d2008-09-15 10:56:48 +02004254
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04004255 /*
4256 * Finally, if the user set the module parameter treat it
4257 * as a user hint.
4258 */
4259 if (!is_world_regdom(ieee80211_regdom))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004260 regulatory_hint_user(ieee80211_regdom,
4261 NL80211_USER_REG_HINT_USER);
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04004262
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004263 return 0;
4264}
Johannes Bergd7be1022017-10-26 11:24:27 +02004265#ifndef MODULE
4266late_initcall(regulatory_init_db);
4267#endif
4268
4269int __init regulatory_init(void)
4270{
4271 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
4272 if (IS_ERR(reg_pdev))
4273 return PTR_ERR(reg_pdev);
4274
Johannes Bergd7be1022017-10-26 11:24:27 +02004275 rcu_assign_pointer(cfg80211_regdomain, cfg80211_world_regdom);
4276
4277 user_alpha2[0] = '9';
4278 user_alpha2[1] = '7';
4279
4280#ifdef MODULE
4281 return regulatory_init_db();
4282#else
4283 return 0;
4284#endif
4285}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004286
Johannes Berg1a919312012-12-03 17:21:11 +01004287void regulatory_exit(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004288{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004289 struct regulatory_request *reg_request, *tmp;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05004290 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004291
4292 cancel_work_sync(&reg_work);
Johannes Bergb6863032015-10-15 09:25:18 +02004293 cancel_crda_timeout_sync();
Arik Nemtsovad932f02014-11-27 09:44:55 +02004294 cancel_delayed_work_sync(&reg_check_chans);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004295
Johannes Berg9027b142012-12-03 17:59:24 +01004296 /* Lock to suppress warnings */
Johannes Berg38fd2142013-05-10 19:17:17 +02004297 rtnl_lock();
Johannes Berg379b82f2012-12-06 15:44:07 +01004298 reset_regdomains(true, NULL);
Johannes Berg38fd2142013-05-10 19:17:17 +02004299 rtnl_unlock();
Johannes Berg734366d2008-09-15 10:56:48 +02004300
Luis R. Rodriguez58ebacc2011-11-08 14:28:06 -08004301 dev_set_uevent_suppress(&reg_pdev->dev, true);
Johannes Bergf6037d02008-10-21 11:01:33 +02004302
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004303 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02004304
Johannes Bergfea9bce2012-12-03 17:32:01 +01004305 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
4306 list_del(&reg_beacon->list);
4307 kfree(reg_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05004308 }
4309
Johannes Bergfea9bce2012-12-03 17:32:01 +01004310 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
4311 list_del(&reg_beacon->list);
4312 kfree(reg_beacon);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004313 }
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004314
Johannes Bergfea9bce2012-12-03 17:32:01 +01004315 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
4316 list_del(&reg_request->list);
4317 kfree(reg_request);
Johannes Berg8318d782008-01-24 19:38:38 +01004318 }
Johannes Berg007f6c52015-10-15 11:22:58 +02004319
4320 if (!IS_ERR_OR_NULL(regdb))
4321 kfree(regdb);
Johannes Berge646a022019-02-05 21:08:29 +01004322 if (!IS_ERR_OR_NULL(cfg80211_user_regdom))
4323 kfree(cfg80211_user_regdom);
Johannes Berg90a53e42017-09-13 22:21:08 +02004324
4325 free_regdb_keyring();
Johannes Berg8318d782008-01-24 19:38:38 +01004326}