blob: 35399a825aed337d88dd638d12d4940ef0a5c86a [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
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +03008 * Copyright (C) 2018 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;
Ilan peer05050752015-03-04 00:32:06 -0500129static spinlock_t reg_indoor_lock;
130
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 Bergb6863032015-10-15 09:25:18 +0200134static void restore_regulatory_settings(bool reset_user);
Ilan peerc37722b2015-03-30 15:15:49 +0300135
Johannes Berg458f4f92012-12-06 15:47:38 +0100136static const struct ieee80211_regdomain *get_cfg80211_regdom(void)
137{
Johannes Berg5bf16a12018-02-27 11:22:15 +0100138 return rcu_dereference_rtnl(cfg80211_regdomain);
Johannes Berg458f4f92012-12-06 15:47:38 +0100139}
140
Arik Nemtsovad30ca22014-12-15 19:25:59 +0200141const struct ieee80211_regdomain *get_wiphy_regdom(struct wiphy *wiphy)
Johannes Berg458f4f92012-12-06 15:47:38 +0100142{
Johannes Berg5bf16a12018-02-27 11:22:15 +0100143 return rcu_dereference_rtnl(wiphy->regd);
Johannes Berg458f4f92012-12-06 15:47:38 +0100144}
145
Luis R. Rodriguez3ef121b2013-11-13 18:54:05 +0100146static const char *reg_dfs_region_str(enum nl80211_dfs_regions dfs_region)
147{
148 switch (dfs_region) {
149 case NL80211_DFS_UNSET:
150 return "unset";
151 case NL80211_DFS_FCC:
152 return "FCC";
153 case NL80211_DFS_ETSI:
154 return "ETSI";
155 case NL80211_DFS_JP:
156 return "JP";
157 }
158 return "Unknown";
159}
160
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100161enum nl80211_dfs_regions reg_get_dfs_region(struct wiphy *wiphy)
162{
163 const struct ieee80211_regdomain *regd = NULL;
164 const struct ieee80211_regdomain *wiphy_regd = NULL;
165
166 regd = get_cfg80211_regdom();
167 if (!wiphy)
168 goto out;
169
170 wiphy_regd = get_wiphy_regdom(wiphy);
171 if (!wiphy_regd)
172 goto out;
173
174 if (wiphy_regd->dfs_region == regd->dfs_region)
175 goto out;
176
Johannes Bergc799ba62015-12-11 15:31:10 +0100177 pr_debug("%s: device specific dfs_region (%s) disagrees with cfg80211's central dfs_region (%s)\n",
178 dev_name(&wiphy->dev),
179 reg_dfs_region_str(wiphy_regd->dfs_region),
180 reg_dfs_region_str(regd->dfs_region));
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100181
182out:
183 return regd->dfs_region;
184}
185
Johannes Berg458f4f92012-12-06 15:47:38 +0100186static void rcu_free_regdom(const struct ieee80211_regdomain *r)
187{
188 if (!r)
189 return;
190 kfree_rcu((struct ieee80211_regdomain *)r, rcu_head);
191}
192
Johannes Bergc492db32012-12-06 16:29:25 +0100193static struct regulatory_request *get_last_request(void)
194{
Johannes Berg38fd2142013-05-10 19:17:17 +0200195 return rcu_dereference_rtnl(last_request);
Johannes Bergc492db32012-12-06 16:29:25 +0100196}
197
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500198/* Used to queue up regulatory hints */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500199static LIST_HEAD(reg_requests_list);
200static spinlock_t reg_requests_lock;
201
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500202/* Used to queue up beacon hints for review */
203static LIST_HEAD(reg_pending_beacons);
204static spinlock_t reg_pending_beacons_lock;
205
206/* Used to keep track of processed beacon hints */
207static LIST_HEAD(reg_beacon_list);
208
209struct reg_beacon {
210 struct list_head list;
211 struct ieee80211_channel chan;
212};
213
Arik Nemtsovad932f02014-11-27 09:44:55 +0200214static void reg_check_chans_work(struct work_struct *work);
215static DECLARE_DELAYED_WORK(reg_check_chans, reg_check_chans_work);
216
Luis R. Rodriguezf333a7a2010-11-17 21:46:07 -0800217static void reg_todo(struct work_struct *work);
218static DECLARE_WORK(reg_work, reg_todo);
219
Johannes Berg734366d2008-09-15 10:56:48 +0200220/* We keep a static world regulatory domain in case of the absence of CRDA */
221static const struct ieee80211_regdomain world_regdom = {
Jason Abele28981e52015-02-17 16:10:41 -0800222 .n_reg_rules = 8,
Johannes Berg734366d2008-09-15 10:56:48 +0200223 .alpha2 = "00",
224 .reg_rules = {
Luis R. Rodriguez68798a62009-02-21 00:20:37 -0500225 /* IEEE 802.11b/g, channels 1..11 */
226 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
Johannes Berg43c771a2012-11-12 10:51:34 +0100227 /* IEEE 802.11b/g, channels 12..13. */
Johannes Bergc3826802015-12-11 17:35:50 +0100228 REG_RULE(2467-10, 2472+10, 20, 6, 20,
229 NL80211_RRF_NO_IR | NL80211_RRF_AUTO_BW),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800230 /* IEEE 802.11 channel 14 - Only JP enables
231 * this and for 802.11b only */
232 REG_RULE(2484-10, 2484+10, 20, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200233 NL80211_RRF_NO_IR |
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800234 NL80211_RRF_NO_OFDM),
235 /* IEEE 802.11a, channel 36..48 */
Johannes Bergc3826802015-12-11 17:35:50 +0100236 REG_RULE(5180-10, 5240+10, 80, 6, 20,
237 NL80211_RRF_NO_IR |
238 NL80211_RRF_AUTO_BW),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500239
Johannes Berg131a19b2013-03-04 20:54:46 +0100240 /* IEEE 802.11a, channel 52..64 - DFS required */
Johannes Bergc3826802015-12-11 17:35:50 +0100241 REG_RULE(5260-10, 5320+10, 80, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200242 NL80211_RRF_NO_IR |
Johannes Bergc3826802015-12-11 17:35:50 +0100243 NL80211_RRF_AUTO_BW |
Johannes Berg131a19b2013-03-04 20:54:46 +0100244 NL80211_RRF_DFS),
245
246 /* IEEE 802.11a, channel 100..144 - DFS required */
247 REG_RULE(5500-10, 5720+10, 160, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200248 NL80211_RRF_NO_IR |
Johannes Berg131a19b2013-03-04 20:54:46 +0100249 NL80211_RRF_DFS),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500250
251 /* IEEE 802.11a, channel 149..165 */
Johannes Berg8ab9d852012-12-03 22:09:22 +0100252 REG_RULE(5745-10, 5825+10, 80, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200253 NL80211_RRF_NO_IR),
Vladimir Kondratiev90cdc6d2012-07-02 09:32:34 +0300254
Johannes Berg8047d262015-10-15 16:16:09 +0200255 /* IEEE 802.11ad (60GHz), channels 1..3 */
Vladimir Kondratiev90cdc6d2012-07-02 09:32:34 +0300256 REG_RULE(56160+2160*1-1080, 56160+2160*3+1080, 2160, 0, 0, 0),
Johannes Berg734366d2008-09-15 10:56:48 +0200257 }
258};
259
Johannes Berg38fd2142013-05-10 19:17:17 +0200260/* protected by RTNL */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200261static const struct ieee80211_regdomain *cfg80211_world_regdom =
262 &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200263
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400264static char *ieee80211_regdom = "00";
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500265static char user_alpha2[2];
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400266
Johannes Berg734366d2008-09-15 10:56:48 +0200267module_param(ieee80211_regdom, charp, 0444);
268MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
269
Arik Nemtsovc8883932014-04-21 20:39:34 -0700270static void reg_free_request(struct regulatory_request *request)
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -0800271{
Johannes Bergd34265a2015-10-15 13:05:55 +0200272 if (request == &core_request_world)
273 return;
274
Arik Nemtsovc8883932014-04-21 20:39:34 -0700275 if (request != get_last_request())
276 kfree(request);
277}
278
279static void reg_free_last_request(void)
280{
281 struct regulatory_request *lr = get_last_request();
282
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -0800283 if (lr != &core_request_world && lr)
284 kfree_rcu(lr, rcu_head);
285}
286
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800287static void reg_update_last_request(struct regulatory_request *request)
288{
Luis R. Rodriguez255e25b2014-02-25 17:09:40 -0800289 struct regulatory_request *lr;
290
291 lr = get_last_request();
292 if (lr == request)
293 return;
294
Arik Nemtsovc8883932014-04-21 20:39:34 -0700295 reg_free_last_request();
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800296 rcu_assign_pointer(last_request, request);
297}
298
Johannes Berg379b82f2012-12-06 15:44:07 +0100299static void reset_regdomains(bool full_reset,
300 const struct ieee80211_regdomain *new_regdom)
Johannes Berg734366d2008-09-15 10:56:48 +0200301{
Johannes Berg458f4f92012-12-06 15:47:38 +0100302 const struct ieee80211_regdomain *r;
303
Johannes Berg38fd2142013-05-10 19:17:17 +0200304 ASSERT_RTNL();
Johannes Berge8da2bb2012-12-03 23:00:08 +0100305
Johannes Berg458f4f92012-12-06 15:47:38 +0100306 r = get_cfg80211_regdom();
307
Johannes Berg942b25c2008-09-15 11:26:47 +0200308 /* avoid freeing static information or freeing something twice */
Johannes Berg458f4f92012-12-06 15:47:38 +0100309 if (r == cfg80211_world_regdom)
310 r = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200311 if (cfg80211_world_regdom == &world_regdom)
312 cfg80211_world_regdom = NULL;
Johannes Berg458f4f92012-12-06 15:47:38 +0100313 if (r == &world_regdom)
314 r = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200315
Johannes Berg458f4f92012-12-06 15:47:38 +0100316 rcu_free_regdom(r);
317 rcu_free_regdom(cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +0200318
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200319 cfg80211_world_regdom = &world_regdom;
Johannes Berg458f4f92012-12-06 15:47:38 +0100320 rcu_assign_pointer(cfg80211_regdomain, new_regdom);
Luis R. Rodrigueza0429942011-11-28 16:47:15 -0500321
322 if (!full_reset)
323 return;
324
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800325 reg_update_last_request(&core_request_world);
Johannes Berg734366d2008-09-15 10:56:48 +0200326}
327
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500328/*
329 * Dynamic world regulatory domain requested by the wireless
330 * core upon initialization
331 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200332static void update_world_regdomain(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200333{
Johannes Bergc492db32012-12-06 16:29:25 +0100334 struct regulatory_request *lr;
Johannes Berg734366d2008-09-15 10:56:48 +0200335
Johannes Bergc492db32012-12-06 16:29:25 +0100336 lr = get_last_request();
337
338 WARN_ON(!lr);
Johannes Berge8da2bb2012-12-03 23:00:08 +0100339
Johannes Berg379b82f2012-12-06 15:44:07 +0100340 reset_regdomains(false, rd);
Johannes Berg734366d2008-09-15 10:56:48 +0200341
342 cfg80211_world_regdom = rd;
Johannes Berg734366d2008-09-15 10:56:48 +0200343}
Johannes Berg734366d2008-09-15 10:56:48 +0200344
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200345bool is_world_regdom(const char *alpha2)
Johannes Berg8318d782008-01-24 19:38:38 +0100346{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700347 if (!alpha2)
348 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100349 return alpha2[0] == '0' && alpha2[1] == '0';
Johannes Berg8318d782008-01-24 19:38:38 +0100350}
351
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200352static bool is_alpha2_set(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700353{
354 if (!alpha2)
355 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100356 return alpha2[0] && alpha2[1];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700357}
Johannes Berg8318d782008-01-24 19:38:38 +0100358
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200359static bool is_unknown_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700360{
361 if (!alpha2)
362 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500363 /*
364 * Special case where regulatory domain was built by driver
365 * but a specific alpha2 cannot be determined
366 */
Johannes Berg1a919312012-12-03 17:21:11 +0100367 return alpha2[0] == '9' && alpha2[1] == '9';
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700368}
369
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800370static bool is_intersected_alpha2(const char *alpha2)
371{
372 if (!alpha2)
373 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500374 /*
375 * Special case where regulatory domain is the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800376 * result of an intersection between two regulatory domain
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500377 * structures
378 */
Johannes Berg1a919312012-12-03 17:21:11 +0100379 return alpha2[0] == '9' && alpha2[1] == '8';
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800380}
381
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200382static bool is_an_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700383{
384 if (!alpha2)
385 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100386 return isalpha(alpha2[0]) && isalpha(alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700387}
388
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200389static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700390{
391 if (!alpha2_x || !alpha2_y)
392 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100393 return alpha2_x[0] == alpha2_y[0] && alpha2_x[1] == alpha2_y[1];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700394}
395
Luis R. Rodriguez69b15722009-02-21 00:04:33 -0500396static bool regdom_changes(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700397{
Johannes Berg458f4f92012-12-06 15:47:38 +0100398 const struct ieee80211_regdomain *r = get_cfg80211_regdom();
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500399
Johannes Berg458f4f92012-12-06 15:47:38 +0100400 if (!r)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700401 return true;
Johannes Berg458f4f92012-12-06 15:47:38 +0100402 return !alpha2_equal(r->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700403}
404
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500405/*
406 * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
407 * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
408 * has ever been issued.
409 */
410static bool is_user_regdom_saved(void)
411{
412 if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
413 return false;
414
415 /* This would indicate a mistake on the design */
Johannes Berg1a919312012-12-03 17:21:11 +0100416 if (WARN(!is_world_regdom(user_alpha2) && !is_an_alpha2(user_alpha2),
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500417 "Unexpected user alpha2: %c%c\n",
Johannes Berg1a919312012-12-03 17:21:11 +0100418 user_alpha2[0], user_alpha2[1]))
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500419 return false;
420
421 return true;
422}
423
Johannes Berge9763c32012-12-03 16:59:46 +0100424static const struct ieee80211_regdomain *
425reg_copy_regd(const struct ieee80211_regdomain *src_regd)
John W. Linville3b377ea2009-12-18 17:59:01 -0500426{
427 struct ieee80211_regdomain *regd;
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200428 int size_of_regd;
John W. Linville3b377ea2009-12-18 17:59:01 -0500429 unsigned int i;
430
Johannes Berg82f20852012-12-04 12:49:16 +0100431 size_of_regd =
432 sizeof(struct ieee80211_regdomain) +
433 src_regd->n_reg_rules * sizeof(struct ieee80211_reg_rule);
John W. Linville3b377ea2009-12-18 17:59:01 -0500434
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200435 regd = kzalloc(size_of_regd, GFP_KERNEL);
John W. Linville3b377ea2009-12-18 17:59:01 -0500436 if (!regd)
Johannes Berge9763c32012-12-03 16:59:46 +0100437 return ERR_PTR(-ENOMEM);
John W. Linville3b377ea2009-12-18 17:59:01 -0500438
439 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
440
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200441 for (i = 0; i < src_regd->n_reg_rules; i++)
John W. Linville3b377ea2009-12-18 17:59:01 -0500442 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
Johannes Berge9763c32012-12-03 16:59:46 +0100443 sizeof(struct ieee80211_reg_rule));
John W. Linville3b377ea2009-12-18 17:59:01 -0500444
Johannes Berge9763c32012-12-03 16:59:46 +0100445 return regd;
John W. Linville3b377ea2009-12-18 17:59:01 -0500446}
447
Johannes Bergc7d319e52015-10-15 09:03:05 +0200448struct reg_regdb_apply_request {
John W. Linville3b377ea2009-12-18 17:59:01 -0500449 struct list_head list;
Johannes Bergc7d319e52015-10-15 09:03:05 +0200450 const struct ieee80211_regdomain *regdom;
John W. Linville3b377ea2009-12-18 17:59:01 -0500451};
452
Johannes Bergc7d319e52015-10-15 09:03:05 +0200453static LIST_HEAD(reg_regdb_apply_list);
454static DEFINE_MUTEX(reg_regdb_apply_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500455
Johannes Bergc7d319e52015-10-15 09:03:05 +0200456static void reg_regdb_apply(struct work_struct *work)
John W. Linville3b377ea2009-12-18 17:59:01 -0500457{
Johannes Bergc7d319e52015-10-15 09:03:05 +0200458 struct reg_regdb_apply_request *request;
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700459
Johannes Berg5fe231e2013-05-08 21:45:15 +0200460 rtnl_lock();
John W. Linville3b377ea2009-12-18 17:59:01 -0500461
Johannes Bergc7d319e52015-10-15 09:03:05 +0200462 mutex_lock(&reg_regdb_apply_mutex);
463 while (!list_empty(&reg_regdb_apply_list)) {
464 request = list_first_entry(&reg_regdb_apply_list,
465 struct reg_regdb_apply_request,
John W. Linville3b377ea2009-12-18 17:59:01 -0500466 list);
467 list_del(&request->list);
468
Johannes Bergc7d319e52015-10-15 09:03:05 +0200469 set_regdom(request->regdom, REGD_SOURCE_INTERNAL_DB);
John W. Linville3b377ea2009-12-18 17:59:01 -0500470 kfree(request);
471 }
Johannes Bergc7d319e52015-10-15 09:03:05 +0200472 mutex_unlock(&reg_regdb_apply_mutex);
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700473
Johannes Berg5fe231e2013-05-08 21:45:15 +0200474 rtnl_unlock();
John W. Linville3b377ea2009-12-18 17:59:01 -0500475}
476
Johannes Bergc7d319e52015-10-15 09:03:05 +0200477static DECLARE_WORK(reg_regdb_work, reg_regdb_apply);
John W. Linville3b377ea2009-12-18 17:59:01 -0500478
Johannes Berg007f6c52015-10-15 11:22:58 +0200479static int reg_schedule_apply(const struct ieee80211_regdomain *regdom)
John W. Linville3b377ea2009-12-18 17:59:01 -0500480{
Johannes Bergc7d319e52015-10-15 09:03:05 +0200481 struct reg_regdb_apply_request *request;
Johannes Bergc7d319e52015-10-15 09:03:05 +0200482
483 request = kzalloc(sizeof(struct reg_regdb_apply_request), GFP_KERNEL);
Johannes Berg007f6c52015-10-15 11:22:58 +0200484 if (!request) {
485 kfree(regdom);
Johannes Bergc7d319e52015-10-15 09:03:05 +0200486 return -ENOMEM;
487 }
John W. Linville3b377ea2009-12-18 17:59:01 -0500488
Johannes Berg007f6c52015-10-15 11:22:58 +0200489 request->regdom = regdom;
490
Johannes Bergc7d319e52015-10-15 09:03:05 +0200491 mutex_lock(&reg_regdb_apply_mutex);
492 list_add_tail(&request->list, &reg_regdb_apply_list);
493 mutex_unlock(&reg_regdb_apply_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500494
495 schedule_work(&reg_regdb_work);
Johannes Bergc7d319e52015-10-15 09:03:05 +0200496 return 0;
John W. Linville3b377ea2009-12-18 17:59:01 -0500497}
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -0700498
Johannes Bergb6863032015-10-15 09:25:18 +0200499#ifdef CONFIG_CFG80211_CRDA_SUPPORT
500/* Max number of consecutive attempts to communicate with CRDA */
501#define REG_MAX_CRDA_TIMEOUTS 10
502
503static u32 reg_crda_timeouts;
504
505static void crda_timeout_work(struct work_struct *work);
506static DECLARE_DELAYED_WORK(crda_timeout, crda_timeout_work);
507
508static void crda_timeout_work(struct work_struct *work)
509{
Johannes Bergc799ba62015-12-11 15:31:10 +0100510 pr_debug("Timeout while waiting for CRDA to reply, restoring regulatory settings\n");
Johannes Bergb6863032015-10-15 09:25:18 +0200511 rtnl_lock();
512 reg_crda_timeouts++;
513 restore_regulatory_settings(true);
514 rtnl_unlock();
515}
516
517static void cancel_crda_timeout(void)
518{
519 cancel_delayed_work(&crda_timeout);
520}
521
522static void cancel_crda_timeout_sync(void)
523{
524 cancel_delayed_work_sync(&crda_timeout);
525}
526
527static void reset_crda_timeouts(void)
528{
529 reg_crda_timeouts = 0;
530}
531
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500532/*
533 * This lets us keep regulatory code which is updated on a regulatory
Johannes Berg1226d252014-02-25 15:43:36 +0100534 * basis in userspace.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500535 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700536static int call_crda(const char *alpha2)
537{
Johannes Berg1226d252014-02-25 15:43:36 +0100538 char country[12];
539 char *env[] = { country, NULL };
Johannes Bergc7d319e52015-10-15 09:03:05 +0200540 int ret;
Johannes Berg1226d252014-02-25 15:43:36 +0100541
542 snprintf(country, sizeof(country), "COUNTRY=%c%c",
543 alpha2[0], alpha2[1]);
544
Ilan peerc37722b2015-03-30 15:15:49 +0300545 if (reg_crda_timeouts > REG_MAX_CRDA_TIMEOUTS) {
Thomas Petazzoni042ab5f2015-07-09 15:35:15 +0200546 pr_debug("Exceeded CRDA call max attempts. Not calling CRDA\n");
Ilan peerc37722b2015-03-30 15:15:49 +0300547 return -EINVAL;
548 }
549
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700550 if (!is_world_regdom((char *) alpha2))
Thomas Petazzoni042ab5f2015-07-09 15:35:15 +0200551 pr_debug("Calling CRDA for country: %c%c\n",
Johannes Bergc799ba62015-12-11 15:31:10 +0100552 alpha2[0], alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700553 else
Thomas Petazzoni042ab5f2015-07-09 15:35:15 +0200554 pr_debug("Calling CRDA to update world regulatory domain\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700555
Johannes Bergc7d319e52015-10-15 09:03:05 +0200556 ret = kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, env);
557 if (ret)
558 return ret;
559
560 queue_delayed_work(system_power_efficient_wq,
Johannes Bergb6863032015-10-15 09:25:18 +0200561 &crda_timeout, msecs_to_jiffies(3142));
Johannes Bergc7d319e52015-10-15 09:03:05 +0200562 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700563}
Johannes Bergb6863032015-10-15 09:25:18 +0200564#else
565static inline void cancel_crda_timeout(void) {}
566static inline void cancel_crda_timeout_sync(void) {}
567static inline void reset_crda_timeouts(void) {}
568static inline int call_crda(const char *alpha2)
569{
570 return -ENODATA;
571}
572#endif /* CONFIG_CFG80211_CRDA_SUPPORT */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700573
Johannes Berg007f6c52015-10-15 11:22:58 +0200574/* code to directly load a firmware database through request_firmware */
575static const struct fwdb_header *regdb;
576
577struct fwdb_country {
578 u8 alpha2[2];
579 __be16 coll_ptr;
580 /* this struct cannot be extended */
581} __packed __aligned(4);
582
583struct fwdb_collection {
584 u8 len;
585 u8 n_rules;
586 u8 dfs_region;
587 /* no optional data yet */
588 /* aligned to 2, then followed by __be16 array of rule pointers */
589} __packed __aligned(4);
590
591enum fwdb_flags {
592 FWDB_FLAG_NO_OFDM = BIT(0),
593 FWDB_FLAG_NO_OUTDOOR = BIT(1),
594 FWDB_FLAG_DFS = BIT(2),
595 FWDB_FLAG_NO_IR = BIT(3),
596 FWDB_FLAG_AUTO_BW = BIT(4),
597};
598
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300599struct fwdb_wmm_ac {
600 u8 ecw;
601 u8 aifsn;
602 __be16 cot;
603} __packed;
604
605struct fwdb_wmm_rule {
606 struct fwdb_wmm_ac client[IEEE80211_NUM_ACS];
607 struct fwdb_wmm_ac ap[IEEE80211_NUM_ACS];
608} __packed;
609
Johannes Berg007f6c52015-10-15 11:22:58 +0200610struct fwdb_rule {
611 u8 len;
612 u8 flags;
613 __be16 max_eirp;
614 __be32 start, end, max_bw;
615 /* start of optional data */
616 __be16 cac_timeout;
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300617 __be16 wmm_ptr;
Johannes Berg007f6c52015-10-15 11:22:58 +0200618} __packed __aligned(4);
619
620#define FWDB_MAGIC 0x52474442
621#define FWDB_VERSION 20
622
623struct fwdb_header {
624 __be32 magic;
625 __be32 version;
626 struct fwdb_country country[];
627} __packed __aligned(4);
628
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300629static int ecw2cw(int ecw)
630{
631 return (1 << ecw) - 1;
632}
633
634static bool valid_wmm(struct fwdb_wmm_rule *rule)
635{
636 struct fwdb_wmm_ac *ac = (struct fwdb_wmm_ac *)rule;
637 int i;
638
639 for (i = 0; i < IEEE80211_NUM_ACS * 2; i++) {
640 u16 cw_min = ecw2cw((ac[i].ecw & 0xf0) >> 4);
641 u16 cw_max = ecw2cw(ac[i].ecw & 0x0f);
642 u8 aifsn = ac[i].aifsn;
643
644 if (cw_min >= cw_max)
645 return false;
646
647 if (aifsn < 1)
648 return false;
649 }
650
651 return true;
652}
653
Johannes Berg007f6c52015-10-15 11:22:58 +0200654static bool valid_rule(const u8 *data, unsigned int size, u16 rule_ptr)
655{
656 struct fwdb_rule *rule = (void *)(data + (rule_ptr << 2));
657
658 if ((u8 *)rule + sizeof(rule->len) > data + size)
659 return false;
660
661 /* mandatory fields */
662 if (rule->len < offsetofend(struct fwdb_rule, max_bw))
663 return false;
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300664 if (rule->len >= offsetofend(struct fwdb_rule, wmm_ptr)) {
665 u32 wmm_ptr = be16_to_cpu(rule->wmm_ptr) << 2;
666 struct fwdb_wmm_rule *wmm;
Johannes Berg007f6c52015-10-15 11:22:58 +0200667
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300668 if (wmm_ptr + sizeof(struct fwdb_wmm_rule) > size)
669 return false;
670
671 wmm = (void *)(data + wmm_ptr);
672
673 if (!valid_wmm(wmm))
674 return false;
675 }
Johannes Berg007f6c52015-10-15 11:22:58 +0200676 return true;
677}
678
679static bool valid_country(const u8 *data, unsigned int size,
680 const struct fwdb_country *country)
681{
682 unsigned int ptr = be16_to_cpu(country->coll_ptr) << 2;
683 struct fwdb_collection *coll = (void *)(data + ptr);
684 __be16 *rules_ptr;
685 unsigned int i;
686
687 /* make sure we can read len/n_rules */
688 if ((u8 *)coll + offsetofend(typeof(*coll), n_rules) > data + size)
689 return false;
690
691 /* make sure base struct and all rules fit */
692 if ((u8 *)coll + ALIGN(coll->len, 2) +
693 (coll->n_rules * 2) > data + size)
694 return false;
695
696 /* mandatory fields must exist */
697 if (coll->len < offsetofend(struct fwdb_collection, dfs_region))
698 return false;
699
700 rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2));
701
702 for (i = 0; i < coll->n_rules; i++) {
703 u16 rule_ptr = be16_to_cpu(rules_ptr[i]);
704
705 if (!valid_rule(data, size, rule_ptr))
706 return false;
707 }
708
709 return true;
710}
711
Johannes Berg90a53e42017-09-13 22:21:08 +0200712#ifdef CONFIG_CFG80211_REQUIRE_SIGNED_REGDB
713static struct key *builtin_regdb_keys;
714
715static void __init load_keys_from_buffer(const u8 *p, unsigned int buflen)
716{
717 const u8 *end = p + buflen;
718 size_t plen;
719 key_ref_t key;
720
721 while (p < end) {
722 /* Each cert begins with an ASN.1 SEQUENCE tag and must be more
723 * than 256 bytes in size.
724 */
725 if (end - p < 4)
726 goto dodgy_cert;
727 if (p[0] != 0x30 &&
728 p[1] != 0x82)
729 goto dodgy_cert;
730 plen = (p[2] << 8) | p[3];
731 plen += 4;
732 if (plen > end - p)
733 goto dodgy_cert;
734
735 key = key_create_or_update(make_key_ref(builtin_regdb_keys, 1),
736 "asymmetric", NULL, p, plen,
737 ((KEY_POS_ALL & ~KEY_POS_SETATTR) |
738 KEY_USR_VIEW | KEY_USR_READ),
739 KEY_ALLOC_NOT_IN_QUOTA |
740 KEY_ALLOC_BUILT_IN |
741 KEY_ALLOC_BYPASS_RESTRICTION);
742 if (IS_ERR(key)) {
743 pr_err("Problem loading in-kernel X.509 certificate (%ld)\n",
744 PTR_ERR(key));
745 } else {
746 pr_notice("Loaded X.509 cert '%s'\n",
747 key_ref_to_ptr(key)->description);
748 key_ref_put(key);
749 }
750 p += plen;
751 }
752
753 return;
754
755dodgy_cert:
756 pr_err("Problem parsing in-kernel X.509 certificate list\n");
757}
758
759static int __init load_builtin_regdb_keys(void)
760{
761 builtin_regdb_keys =
762 keyring_alloc(".builtin_regdb_keys",
763 KUIDT_INIT(0), KGIDT_INIT(0), current_cred(),
764 ((KEY_POS_ALL & ~KEY_POS_SETATTR) |
765 KEY_USR_VIEW | KEY_USR_READ | KEY_USR_SEARCH),
766 KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL);
767 if (IS_ERR(builtin_regdb_keys))
768 return PTR_ERR(builtin_regdb_keys);
769
770 pr_notice("Loading compiled-in X.509 certificates for regulatory database\n");
771
772#ifdef CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS
773 load_keys_from_buffer(shipped_regdb_certs, shipped_regdb_certs_len);
774#endif
Arnd Bergmann88230ef2017-10-13 14:04:31 +0200775#ifdef CONFIG_CFG80211_EXTRA_REGDB_KEYDIR
Johannes Berg90a53e42017-09-13 22:21:08 +0200776 if (CONFIG_CFG80211_EXTRA_REGDB_KEYDIR[0] != '\0')
777 load_keys_from_buffer(extra_regdb_certs, extra_regdb_certs_len);
778#endif
779
780 return 0;
781}
782
783static bool regdb_has_valid_signature(const u8 *data, unsigned int size)
784{
785 const struct firmware *sig;
786 bool result;
787
788 if (request_firmware(&sig, "regulatory.db.p7s", &reg_pdev->dev))
789 return false;
790
791 result = verify_pkcs7_signature(data, size, sig->data, sig->size,
792 builtin_regdb_keys,
793 VERIFYING_UNSPECIFIED_SIGNATURE,
794 NULL, NULL) == 0;
795
796 release_firmware(sig);
797
798 return result;
799}
800
801static void free_regdb_keyring(void)
802{
803 key_put(builtin_regdb_keys);
804}
805#else
806static int load_builtin_regdb_keys(void)
807{
808 return 0;
809}
810
811static bool regdb_has_valid_signature(const u8 *data, unsigned int size)
812{
813 return true;
814}
815
816static void free_regdb_keyring(void)
817{
818}
819#endif /* CONFIG_CFG80211_REQUIRE_SIGNED_REGDB */
820
Johannes Berg007f6c52015-10-15 11:22:58 +0200821static bool valid_regdb(const u8 *data, unsigned int size)
822{
823 const struct fwdb_header *hdr = (void *)data;
824 const struct fwdb_country *country;
825
826 if (size < sizeof(*hdr))
827 return false;
828
829 if (hdr->magic != cpu_to_be32(FWDB_MAGIC))
830 return false;
831
832 if (hdr->version != cpu_to_be32(FWDB_VERSION))
833 return false;
834
Johannes Berg90a53e42017-09-13 22:21:08 +0200835 if (!regdb_has_valid_signature(data, size))
836 return false;
837
Johannes Berg007f6c52015-10-15 11:22:58 +0200838 country = &hdr->country[0];
839 while ((u8 *)(country + 1) <= data + size) {
840 if (!country->coll_ptr)
841 break;
842 if (!valid_country(data, size, country))
843 return false;
844 country++;
845 }
846
847 return true;
848}
849
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200850static void set_wmm_rule(const struct fwdb_header *db,
851 const struct fwdb_country *country,
852 const struct fwdb_rule *rule,
853 struct ieee80211_reg_rule *rrule)
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300854{
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200855 struct ieee80211_wmm_rule *wmm_rule = &rrule->wmm_rule;
856 struct fwdb_wmm_rule *wmm;
857 unsigned int i, wmm_ptr;
858
859 wmm_ptr = be16_to_cpu(rule->wmm_ptr) << 2;
860 wmm = (void *)((u8 *)db + wmm_ptr);
861
862 if (!valid_wmm(wmm)) {
863 pr_err("Invalid regulatory WMM rule %u-%u in domain %c%c\n",
864 be32_to_cpu(rule->start), be32_to_cpu(rule->end),
865 country->alpha2[0], country->alpha2[1]);
866 return;
867 }
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300868
869 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200870 wmm_rule->client[i].cw_min =
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300871 ecw2cw((wmm->client[i].ecw & 0xf0) >> 4);
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200872 wmm_rule->client[i].cw_max = ecw2cw(wmm->client[i].ecw & 0x0f);
873 wmm_rule->client[i].aifsn = wmm->client[i].aifsn;
874 wmm_rule->client[i].cot =
875 1000 * be16_to_cpu(wmm->client[i].cot);
876 wmm_rule->ap[i].cw_min = ecw2cw((wmm->ap[i].ecw & 0xf0) >> 4);
877 wmm_rule->ap[i].cw_max = ecw2cw(wmm->ap[i].ecw & 0x0f);
878 wmm_rule->ap[i].aifsn = wmm->ap[i].aifsn;
879 wmm_rule->ap[i].cot = 1000 * be16_to_cpu(wmm->ap[i].cot);
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300880 }
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200881
882 rrule->has_wmm = true;
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300883}
884
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300885static int __regdb_query_wmm(const struct fwdb_header *db,
886 const struct fwdb_country *country, int freq,
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200887 struct ieee80211_reg_rule *rrule)
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300888{
889 unsigned int ptr = be16_to_cpu(country->coll_ptr) << 2;
890 struct fwdb_collection *coll = (void *)((u8 *)db + ptr);
891 int i;
892
893 for (i = 0; i < coll->n_rules; i++) {
894 __be16 *rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2));
895 unsigned int rule_ptr = be16_to_cpu(rules_ptr[i]) << 2;
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200896 struct fwdb_rule *rule = (void *)((u8 *)db + rule_ptr);
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300897
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200898 if (rule->len < offsetofend(struct fwdb_rule, wmm_ptr))
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300899 continue;
900
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200901 if (freq >= KHZ_TO_MHZ(be32_to_cpu(rule->start)) &&
902 freq <= KHZ_TO_MHZ(be32_to_cpu(rule->end))) {
903 set_wmm_rule(db, country, rule, rrule);
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300904 return 0;
905 }
906 }
907
908 return -ENODATA;
909}
910
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200911int reg_query_regdb_wmm(char *alpha2, int freq, struct ieee80211_reg_rule *rule)
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300912{
913 const struct fwdb_header *hdr = regdb;
914 const struct fwdb_country *country;
915
Haim Dreyfuss5247a772018-05-21 23:34:57 +0300916 if (!regdb)
917 return -ENODATA;
918
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300919 if (IS_ERR(regdb))
920 return PTR_ERR(regdb);
921
922 country = &hdr->country[0];
923 while (country->coll_ptr) {
924 if (alpha2_equal(alpha2, country->alpha2))
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200925 return __regdb_query_wmm(regdb, country, freq, rule);
Haim Dreyfuss19d35772018-03-28 13:24:11 +0300926
927 country++;
928 }
929
930 return -ENODATA;
931}
932EXPORT_SYMBOL(reg_query_regdb_wmm);
933
Johannes Berg007f6c52015-10-15 11:22:58 +0200934static int regdb_query_country(const struct fwdb_header *db,
935 const struct fwdb_country *country)
936{
937 unsigned int ptr = be16_to_cpu(country->coll_ptr) << 2;
938 struct fwdb_collection *coll = (void *)((u8 *)db + ptr);
939 struct ieee80211_regdomain *regdom;
Stanislaw Gruszka38cb87e2018-08-22 13:52:21 +0200940 unsigned int size_of_regd, i;
Johannes Berg007f6c52015-10-15 11:22:58 +0200941
Haim Dreyfuss230ebaa2018-03-28 13:24:09 +0300942 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg007f6c52015-10-15 11:22:58 +0200943 coll->n_rules * sizeof(struct ieee80211_reg_rule);
944
945 regdom = kzalloc(size_of_regd, GFP_KERNEL);
946 if (!regdom)
947 return -ENOMEM;
948
949 regdom->n_reg_rules = coll->n_rules;
950 regdom->alpha2[0] = country->alpha2[0];
951 regdom->alpha2[1] = country->alpha2[1];
952 regdom->dfs_region = coll->dfs_region;
953
954 for (i = 0; i < regdom->n_reg_rules; i++) {
955 __be16 *rules_ptr = (void *)((u8 *)coll + ALIGN(coll->len, 2));
956 unsigned int rule_ptr = be16_to_cpu(rules_ptr[i]) << 2;
957 struct fwdb_rule *rule = (void *)((u8 *)db + rule_ptr);
958 struct ieee80211_reg_rule *rrule = &regdom->reg_rules[i];
959
960 rrule->freq_range.start_freq_khz = be32_to_cpu(rule->start);
961 rrule->freq_range.end_freq_khz = be32_to_cpu(rule->end);
962 rrule->freq_range.max_bandwidth_khz = be32_to_cpu(rule->max_bw);
963
964 rrule->power_rule.max_antenna_gain = 0;
965 rrule->power_rule.max_eirp = be16_to_cpu(rule->max_eirp);
966
967 rrule->flags = 0;
968 if (rule->flags & FWDB_FLAG_NO_OFDM)
969 rrule->flags |= NL80211_RRF_NO_OFDM;
970 if (rule->flags & FWDB_FLAG_NO_OUTDOOR)
971 rrule->flags |= NL80211_RRF_NO_OUTDOOR;
972 if (rule->flags & FWDB_FLAG_DFS)
973 rrule->flags |= NL80211_RRF_DFS;
974 if (rule->flags & FWDB_FLAG_NO_IR)
975 rrule->flags |= NL80211_RRF_NO_IR;
976 if (rule->flags & FWDB_FLAG_AUTO_BW)
977 rrule->flags |= NL80211_RRF_AUTO_BW;
978
979 rrule->dfs_cac_ms = 0;
980
981 /* handle optional data */
982 if (rule->len >= offsetofend(struct fwdb_rule, cac_timeout))
983 rrule->dfs_cac_ms =
984 1000 * be16_to_cpu(rule->cac_timeout);
Stanislaw Gruszka014f5a22018-08-22 13:52:22 +0200985 if (rule->len >= offsetofend(struct fwdb_rule, wmm_ptr))
986 set_wmm_rule(db, country, rule, rrule);
Johannes Berg007f6c52015-10-15 11:22:58 +0200987 }
988
989 return reg_schedule_apply(regdom);
990}
991
992static int query_regdb(const char *alpha2)
993{
994 const struct fwdb_header *hdr = regdb;
995 const struct fwdb_country *country;
996
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +0200997 ASSERT_RTNL();
998
Johannes Berg007f6c52015-10-15 11:22:58 +0200999 if (IS_ERR(regdb))
1000 return PTR_ERR(regdb);
1001
1002 country = &hdr->country[0];
1003 while (country->coll_ptr) {
1004 if (alpha2_equal(alpha2, country->alpha2))
1005 return regdb_query_country(regdb, country);
1006 country++;
1007 }
1008
1009 return -ENODATA;
1010}
1011
1012static void regdb_fw_cb(const struct firmware *fw, void *context)
1013{
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001014 int set_error = 0;
1015 bool restore = true;
Johannes Berg007f6c52015-10-15 11:22:58 +02001016 void *db;
1017
1018 if (!fw) {
1019 pr_info("failed to load regulatory.db\n");
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001020 set_error = -ENODATA;
1021 } else if (!valid_regdb(fw->data, fw->size)) {
Johannes Berg90a53e42017-09-13 22:21:08 +02001022 pr_info("loaded regulatory.db is malformed or signature is missing/invalid\n");
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001023 set_error = -EINVAL;
Johannes Berg007f6c52015-10-15 11:22:58 +02001024 }
1025
Johannes Berg007f6c52015-10-15 11:22:58 +02001026 rtnl_lock();
Chaitanya Tatafaae54a2019-01-24 16:13:02 +05301027 if (regdb && !IS_ERR(regdb)) {
1028 /* negative case - a bug
1029 * positive case - can happen due to race in case of multiple cb's in
1030 * queue, due to usage of asynchronous callback
1031 *
1032 * Either case, just restore and free new db.
1033 */
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001034 } else if (set_error) {
1035 regdb = ERR_PTR(set_error);
1036 } else if (fw) {
1037 db = kmemdup(fw->data, fw->size, GFP_KERNEL);
1038 if (db) {
1039 regdb = db;
1040 restore = context && query_regdb(context);
1041 } else {
1042 restore = true;
1043 }
1044 }
1045
1046 if (restore)
1047 restore_regulatory_settings(true);
1048
Johannes Berg007f6c52015-10-15 11:22:58 +02001049 rtnl_unlock();
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001050
Johannes Berg007f6c52015-10-15 11:22:58 +02001051 kfree(context);
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001052
1053 release_firmware(fw);
Johannes Berg007f6c52015-10-15 11:22:58 +02001054}
1055
1056static int query_regdb_file(const char *alpha2)
1057{
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001058 ASSERT_RTNL();
1059
Johannes Berg007f6c52015-10-15 11:22:58 +02001060 if (regdb)
1061 return query_regdb(alpha2);
1062
1063 alpha2 = kmemdup(alpha2, 2, GFP_KERNEL);
1064 if (!alpha2)
1065 return -ENOMEM;
1066
1067 return request_firmware_nowait(THIS_MODULE, true, "regulatory.db",
1068 &reg_pdev->dev, GFP_KERNEL,
1069 (void *)alpha2, regdb_fw_cb);
1070}
1071
Johannes Berg1ea4ff3e92017-09-13 16:07:22 +02001072int reg_reload_regdb(void)
1073{
1074 const struct firmware *fw;
1075 void *db;
1076 int err;
1077
1078 err = request_firmware(&fw, "regulatory.db", &reg_pdev->dev);
1079 if (err)
1080 return err;
1081
1082 if (!valid_regdb(fw->data, fw->size)) {
1083 err = -ENODATA;
1084 goto out;
1085 }
1086
1087 db = kmemdup(fw->data, fw->size, GFP_KERNEL);
1088 if (!db) {
1089 err = -ENOMEM;
1090 goto out;
1091 }
1092
1093 rtnl_lock();
1094 if (!IS_ERR_OR_NULL(regdb))
1095 kfree(regdb);
1096 regdb = db;
1097 rtnl_unlock();
1098
1099 out:
1100 release_firmware(fw);
1101 return err;
1102}
1103
Johannes Bergcecbb062015-10-15 08:47:34 +02001104static bool reg_query_database(struct regulatory_request *request)
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001105{
Johannes Berg007f6c52015-10-15 11:22:58 +02001106 if (query_regdb_file(request->alpha2) == 0)
1107 return true;
1108
Johannes Bergc7d319e52015-10-15 09:03:05 +02001109 if (call_crda(request->alpha2) == 0)
1110 return true;
1111
1112 return false;
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001113}
1114
Luis R. Rodrigueze4387682013-11-05 09:18:01 -08001115bool reg_is_valid_request(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001116{
Johannes Bergc492db32012-12-06 16:29:25 +01001117 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez61405e92009-05-13 17:04:41 -04001118
Johannes Bergc492db32012-12-06 16:29:25 +01001119 if (!lr || lr->processed)
Johannes Bergf6037d02008-10-21 11:01:33 +02001120 return false;
1121
Johannes Bergc492db32012-12-06 16:29:25 +01001122 return alpha2_equal(lr->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001123}
1124
Janusz Dziedzice3961af2014-01-25 11:24:11 +01001125static const struct ieee80211_regdomain *reg_get_regdomain(struct wiphy *wiphy)
1126{
1127 struct regulatory_request *lr = get_last_request();
1128
1129 /*
1130 * Follow the driver's regulatory domain, if present, unless a country
1131 * IE has been processed or a user wants to help complaince further
1132 */
1133 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
1134 lr->initiator != NL80211_REGDOM_SET_BY_USER &&
1135 wiphy->regd)
1136 return get_wiphy_regdom(wiphy);
1137
1138 return get_cfg80211_regdom();
1139}
1140
Arik Nemtsova6d4a532014-10-23 09:37:33 +03001141static unsigned int
1142reg_get_max_bandwidth_from_range(const struct ieee80211_regdomain *rd,
1143 const struct ieee80211_reg_rule *rule)
Janusz Dziedzic97524822014-01-30 09:52:20 +01001144{
1145 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
1146 const struct ieee80211_freq_range *freq_range_tmp;
1147 const struct ieee80211_reg_rule *tmp;
1148 u32 start_freq, end_freq, idx, no;
1149
1150 for (idx = 0; idx < rd->n_reg_rules; idx++)
1151 if (rule == &rd->reg_rules[idx])
1152 break;
1153
1154 if (idx == rd->n_reg_rules)
1155 return 0;
1156
1157 /* get start_freq */
1158 no = idx;
1159
1160 while (no) {
1161 tmp = &rd->reg_rules[--no];
1162 freq_range_tmp = &tmp->freq_range;
1163
1164 if (freq_range_tmp->end_freq_khz < freq_range->start_freq_khz)
1165 break;
1166
Janusz Dziedzic97524822014-01-30 09:52:20 +01001167 freq_range = freq_range_tmp;
1168 }
1169
1170 start_freq = freq_range->start_freq_khz;
1171
1172 /* get end_freq */
1173 freq_range = &rule->freq_range;
1174 no = idx;
1175
1176 while (no < rd->n_reg_rules - 1) {
1177 tmp = &rd->reg_rules[++no];
1178 freq_range_tmp = &tmp->freq_range;
1179
1180 if (freq_range_tmp->start_freq_khz > freq_range->end_freq_khz)
1181 break;
1182
Janusz Dziedzic97524822014-01-30 09:52:20 +01001183 freq_range = freq_range_tmp;
1184 }
1185
1186 end_freq = freq_range->end_freq_khz;
1187
1188 return end_freq - start_freq;
1189}
1190
Arik Nemtsova6d4a532014-10-23 09:37:33 +03001191unsigned int reg_get_max_bandwidth(const struct ieee80211_regdomain *rd,
1192 const struct ieee80211_reg_rule *rule)
1193{
1194 unsigned int bw = reg_get_max_bandwidth_from_range(rd, rule);
1195
1196 if (rule->flags & NL80211_RRF_NO_160MHZ)
1197 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(80));
1198 if (rule->flags & NL80211_RRF_NO_80MHZ)
1199 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(40));
1200
1201 /*
1202 * HT40+/HT40- limits are handled per-channel. Only limit BW if both
1203 * are not allowed.
1204 */
1205 if (rule->flags & NL80211_RRF_NO_HT40MINUS &&
1206 rule->flags & NL80211_RRF_NO_HT40PLUS)
1207 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(20));
1208
1209 return bw;
1210}
1211
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001212/* Sanity check on a regulatory rule */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001213static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001214{
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001215 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001216 u32 freq_diff;
1217
Luis R. Rodriguez91e99002008-11-12 14:21:55 -08001218 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001219 return false;
1220
1221 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
1222 return false;
1223
1224 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
1225
Roel Kluinbd05f282009-03-03 22:55:21 +01001226 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
Johannes Berg1a919312012-12-03 17:21:11 +01001227 freq_range->max_bandwidth_khz > freq_diff)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001228 return false;
1229
1230 return true;
1231}
1232
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001233static bool is_valid_rd(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001234{
Johannes Berga3d2eaf2008-09-15 11:10:52 +02001235 const struct ieee80211_reg_rule *reg_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001236 unsigned int i;
1237
1238 if (!rd->n_reg_rules)
1239 return false;
1240
Luis R. Rodriguez88dc1c32008-11-12 14:22:01 -08001241 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
1242 return false;
1243
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001244 for (i = 0; i < rd->n_reg_rules; i++) {
1245 reg_rule = &rd->reg_rules[i];
1246 if (!is_valid_reg_rule(reg_rule))
1247 return false;
1248 }
1249
1250 return true;
1251}
1252
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001253/**
1254 * freq_in_rule_band - tells us if a frequency is in a frequency band
1255 * @freq_range: frequency rule we want to query
1256 * @freq_khz: frequency we are inquiring about
1257 *
1258 * This lets us know if a specific frequency rule is or is not relevant to
1259 * a specific frequency's band. Bands are device specific and artificial
Vladimir Kondratiev64629b92012-09-23 09:49:54 +02001260 * definitions (the "2.4 GHz band", the "5 GHz band" and the "60GHz band"),
1261 * however it is safe for now to assume that a frequency rule should not be
1262 * part of a frequency's band if the start freq or end freq are off by more
1263 * than 2 GHz for the 2.4 and 5 GHz bands, and by more than 10 GHz for the
1264 * 60 GHz band.
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001265 * This resolution can be lowered and should be considered as we add
1266 * regulatory rule support for other "bands".
1267 **/
1268static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
Johannes Berg1a919312012-12-03 17:21:11 +01001269 u32 freq_khz)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001270{
1271#define ONE_GHZ_IN_KHZ 1000000
Vladimir Kondratiev64629b92012-09-23 09:49:54 +02001272 /*
1273 * From 802.11ad: directional multi-gigabit (DMG):
1274 * Pertaining to operation in a frequency band containing a channel
1275 * with the Channel starting frequency above 45 GHz.
1276 */
1277 u32 limit = freq_khz > 45 * ONE_GHZ_IN_KHZ ?
1278 10 * ONE_GHZ_IN_KHZ : 2 * ONE_GHZ_IN_KHZ;
1279 if (abs(freq_khz - freq_range->start_freq_khz) <= limit)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001280 return true;
Vladimir Kondratiev64629b92012-09-23 09:49:54 +02001281 if (abs(freq_khz - freq_range->end_freq_khz) <= limit)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001282 return true;
1283 return false;
1284#undef ONE_GHZ_IN_KHZ
1285}
1286
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001287/*
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +01001288 * Later on we can perhaps use the more restrictive DFS
1289 * region but we don't have information for that yet so
1290 * for now simply disallow conflicts.
1291 */
1292static enum nl80211_dfs_regions
1293reg_intersect_dfs_region(const enum nl80211_dfs_regions dfs_region1,
1294 const enum nl80211_dfs_regions dfs_region2)
1295{
1296 if (dfs_region1 != dfs_region2)
1297 return NL80211_DFS_UNSET;
1298 return dfs_region1;
1299}
1300
1301/*
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001302 * Helper for regdom_intersect(), this does the real
1303 * mathematical intersection fun
1304 */
Janusz Dziedzic97524822014-01-30 09:52:20 +01001305static int reg_rules_intersect(const struct ieee80211_regdomain *rd1,
1306 const struct ieee80211_regdomain *rd2,
1307 const struct ieee80211_reg_rule *rule1,
Johannes Berg1a919312012-12-03 17:21:11 +01001308 const struct ieee80211_reg_rule *rule2,
1309 struct ieee80211_reg_rule *intersected_rule)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001310{
1311 const struct ieee80211_freq_range *freq_range1, *freq_range2;
1312 struct ieee80211_freq_range *freq_range;
1313 const struct ieee80211_power_rule *power_rule1, *power_rule2;
1314 struct ieee80211_power_rule *power_rule;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001315 u32 freq_diff, max_bandwidth1, max_bandwidth2;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001316
1317 freq_range1 = &rule1->freq_range;
1318 freq_range2 = &rule2->freq_range;
1319 freq_range = &intersected_rule->freq_range;
1320
1321 power_rule1 = &rule1->power_rule;
1322 power_rule2 = &rule2->power_rule;
1323 power_rule = &intersected_rule->power_rule;
1324
1325 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
Johannes Berg1a919312012-12-03 17:21:11 +01001326 freq_range2->start_freq_khz);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001327 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
Johannes Berg1a919312012-12-03 17:21:11 +01001328 freq_range2->end_freq_khz);
Janusz Dziedzic97524822014-01-30 09:52:20 +01001329
1330 max_bandwidth1 = freq_range1->max_bandwidth_khz;
1331 max_bandwidth2 = freq_range2->max_bandwidth_khz;
1332
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001333 if (rule1->flags & NL80211_RRF_AUTO_BW)
1334 max_bandwidth1 = reg_get_max_bandwidth(rd1, rule1);
1335 if (rule2->flags & NL80211_RRF_AUTO_BW)
1336 max_bandwidth2 = reg_get_max_bandwidth(rd2, rule2);
Janusz Dziedzic97524822014-01-30 09:52:20 +01001337
1338 freq_range->max_bandwidth_khz = min(max_bandwidth1, max_bandwidth2);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001339
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001340 intersected_rule->flags = rule1->flags | rule2->flags;
1341
1342 /*
1343 * In case NL80211_RRF_AUTO_BW requested for both rules
1344 * set AUTO_BW in intersected rule also. Next we will
1345 * calculate BW correctly in handle_channel function.
1346 * In other case remove AUTO_BW flag while we calculate
1347 * maximum bandwidth correctly and auto calculation is
1348 * not required.
1349 */
1350 if ((rule1->flags & NL80211_RRF_AUTO_BW) &&
1351 (rule2->flags & NL80211_RRF_AUTO_BW))
1352 intersected_rule->flags |= NL80211_RRF_AUTO_BW;
1353 else
1354 intersected_rule->flags &= ~NL80211_RRF_AUTO_BW;
1355
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001356 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
1357 if (freq_range->max_bandwidth_khz > freq_diff)
1358 freq_range->max_bandwidth_khz = freq_diff;
1359
1360 power_rule->max_eirp = min(power_rule1->max_eirp,
1361 power_rule2->max_eirp);
1362 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
1363 power_rule2->max_antenna_gain);
1364
Janusz Dziedzic089027e2014-02-21 19:46:12 +01001365 intersected_rule->dfs_cac_ms = max(rule1->dfs_cac_ms,
1366 rule2->dfs_cac_ms);
1367
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001368 if (!is_valid_reg_rule(intersected_rule))
1369 return -EINVAL;
1370
1371 return 0;
1372}
1373
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001374/* check whether old rule contains new rule */
1375static bool rule_contains(struct ieee80211_reg_rule *r1,
1376 struct ieee80211_reg_rule *r2)
1377{
1378 /* for simplicity, currently consider only same flags */
1379 if (r1->flags != r2->flags)
1380 return false;
1381
1382 /* verify r1 is more restrictive */
1383 if ((r1->power_rule.max_antenna_gain >
1384 r2->power_rule.max_antenna_gain) ||
1385 r1->power_rule.max_eirp > r2->power_rule.max_eirp)
1386 return false;
1387
1388 /* make sure r2's range is contained within r1 */
1389 if (r1->freq_range.start_freq_khz > r2->freq_range.start_freq_khz ||
1390 r1->freq_range.end_freq_khz < r2->freq_range.end_freq_khz)
1391 return false;
1392
1393 /* and finally verify that r1.max_bw >= r2.max_bw */
1394 if (r1->freq_range.max_bandwidth_khz <
1395 r2->freq_range.max_bandwidth_khz)
1396 return false;
1397
1398 return true;
1399}
1400
1401/* add or extend current rules. do nothing if rule is already contained */
1402static void add_rule(struct ieee80211_reg_rule *rule,
1403 struct ieee80211_reg_rule *reg_rules, u32 *n_rules)
1404{
1405 struct ieee80211_reg_rule *tmp_rule;
1406 int i;
1407
1408 for (i = 0; i < *n_rules; i++) {
1409 tmp_rule = &reg_rules[i];
1410 /* rule is already contained - do nothing */
1411 if (rule_contains(tmp_rule, rule))
1412 return;
1413
1414 /* extend rule if possible */
1415 if (rule_contains(rule, tmp_rule)) {
1416 memcpy(tmp_rule, rule, sizeof(*rule));
1417 return;
1418 }
1419 }
1420
1421 memcpy(&reg_rules[*n_rules], rule, sizeof(*rule));
1422 (*n_rules)++;
1423}
1424
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001425/**
1426 * regdom_intersect - do the intersection between two regulatory domains
1427 * @rd1: first regulatory domain
1428 * @rd2: second regulatory domain
1429 *
1430 * Use this function to get the intersection between two regulatory domains.
1431 * Once completed we will mark the alpha2 for the rd as intersected, "98",
1432 * as no one single alpha2 can represent this regulatory domain.
1433 *
1434 * Returns a pointer to the regulatory domain structure which will hold the
1435 * resulting intersection of rules between rd1 and rd2. We will
1436 * kzalloc() this structure for you.
1437 */
Johannes Berg1a919312012-12-03 17:21:11 +01001438static struct ieee80211_regdomain *
1439regdom_intersect(const struct ieee80211_regdomain *rd1,
1440 const struct ieee80211_regdomain *rd2)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001441{
1442 int r, size_of_regd;
1443 unsigned int x, y;
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001444 unsigned int num_rules = 0;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001445 const struct ieee80211_reg_rule *rule1, *rule2;
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001446 struct ieee80211_reg_rule intersected_rule;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001447 struct ieee80211_regdomain *rd;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001448
1449 if (!rd1 || !rd2)
1450 return NULL;
1451
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001452 /*
1453 * First we get a count of the rules we'll need, then we actually
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001454 * build them. This is to so we can malloc() and free() a
1455 * regdomain once. The reason we use reg_rules_intersect() here
1456 * is it will return -EINVAL if the rule computed makes no sense.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001457 * All rules that do check out OK are valid.
1458 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001459
1460 for (x = 0; x < rd1->n_reg_rules; x++) {
1461 rule1 = &rd1->reg_rules[x];
1462 for (y = 0; y < rd2->n_reg_rules; y++) {
1463 rule2 = &rd2->reg_rules[y];
Janusz Dziedzic97524822014-01-30 09:52:20 +01001464 if (!reg_rules_intersect(rd1, rd2, rule1, rule2,
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001465 &intersected_rule))
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001466 num_rules++;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001467 }
1468 }
1469
1470 if (!num_rules)
1471 return NULL;
1472
1473 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg82f20852012-12-04 12:49:16 +01001474 num_rules * sizeof(struct ieee80211_reg_rule);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001475
1476 rd = kzalloc(size_of_regd, GFP_KERNEL);
1477 if (!rd)
1478 return NULL;
1479
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001480 for (x = 0; x < rd1->n_reg_rules; x++) {
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001481 rule1 = &rd1->reg_rules[x];
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001482 for (y = 0; y < rd2->n_reg_rules; y++) {
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001483 rule2 = &rd2->reg_rules[y];
Janusz Dziedzic97524822014-01-30 09:52:20 +01001484 r = reg_rules_intersect(rd1, rd2, rule1, rule2,
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001485 &intersected_rule);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001486 /*
1487 * No need to memset here the intersected rule here as
1488 * we're not using the stack anymore
1489 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001490 if (r)
1491 continue;
Eliad Pellera62a1ae2014-09-03 15:25:03 +03001492
1493 add_rule(&intersected_rule, rd->reg_rules,
1494 &rd->n_reg_rules);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001495 }
1496 }
1497
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001498 rd->alpha2[0] = '9';
1499 rd->alpha2[1] = '8';
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +01001500 rd->dfs_region = reg_intersect_dfs_region(rd1->dfs_region,
1501 rd2->dfs_region);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07001502
1503 return rd;
1504}
1505
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001506/*
1507 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
1508 * want to just have the channel structure use these
1509 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001510static u32 map_regdom_flags(u32 rd_flags)
1511{
1512 u32 channel_flags = 0;
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001513 if (rd_flags & NL80211_RRF_NO_IR_ALL)
1514 channel_flags |= IEEE80211_CHAN_NO_IR;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001515 if (rd_flags & NL80211_RRF_DFS)
1516 channel_flags |= IEEE80211_CHAN_RADAR;
Seth Forshee03f6b082012-08-01 15:58:42 -05001517 if (rd_flags & NL80211_RRF_NO_OFDM)
1518 channel_flags |= IEEE80211_CHAN_NO_OFDM;
David Spinadel570dbde2014-02-23 09:12:59 +02001519 if (rd_flags & NL80211_RRF_NO_OUTDOOR)
1520 channel_flags |= IEEE80211_CHAN_INDOOR_ONLY;
Arik Nemtsov06f207f2015-05-06 16:28:31 +03001521 if (rd_flags & NL80211_RRF_IR_CONCURRENT)
1522 channel_flags |= IEEE80211_CHAN_IR_CONCURRENT;
Arik Nemtsova6d4a532014-10-23 09:37:33 +03001523 if (rd_flags & NL80211_RRF_NO_HT40MINUS)
1524 channel_flags |= IEEE80211_CHAN_NO_HT40MINUS;
1525 if (rd_flags & NL80211_RRF_NO_HT40PLUS)
1526 channel_flags |= IEEE80211_CHAN_NO_HT40PLUS;
1527 if (rd_flags & NL80211_RRF_NO_80MHZ)
1528 channel_flags |= IEEE80211_CHAN_NO_80MHZ;
1529 if (rd_flags & NL80211_RRF_NO_160MHZ)
1530 channel_flags |= IEEE80211_CHAN_NO_160MHZ;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001531 return channel_flags;
1532}
1533
Johannes Berg361c9c82012-12-06 15:57:14 +01001534static const struct ieee80211_reg_rule *
Michal Sojka49172872015-11-23 19:27:14 +01001535freq_reg_info_regd(u32 center_freq,
Matthias May4edd5692015-07-17 15:28:39 +02001536 const struct ieee80211_regdomain *regd, u32 bw)
Johannes Berg8318d782008-01-24 19:38:38 +01001537{
1538 int i;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001539 bool band_rule_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001540 bool bw_fits = false;
1541
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001542 if (!regd)
Johannes Berg361c9c82012-12-06 15:57:14 +01001543 return ERR_PTR(-EINVAL);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001544
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001545 for (i = 0; i < regd->n_reg_rules; i++) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001546 const struct ieee80211_reg_rule *rr;
1547 const struct ieee80211_freq_range *fr = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001548
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001549 rr = &regd->reg_rules[i];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001550 fr = &rr->freq_range;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001551
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001552 /*
1553 * We only need to know if one frequency rule was
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001554 * was in center_freq's band, that's enough, so lets
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001555 * not overwrite it once found
1556 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001557 if (!band_rule_found)
1558 band_rule_found = freq_in_rule_band(fr, center_freq);
1559
Rafał Miłecki4787cfa2017-01-04 18:58:30 +01001560 bw_fits = cfg80211_does_bw_fit_range(fr, center_freq, bw);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001561
Johannes Berg361c9c82012-12-06 15:57:14 +01001562 if (band_rule_found && bw_fits)
1563 return rr;
Johannes Berg8318d782008-01-24 19:38:38 +01001564 }
1565
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001566 if (!band_rule_found)
Johannes Berg361c9c82012-12-06 15:57:14 +01001567 return ERR_PTR(-ERANGE);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001568
Johannes Berg361c9c82012-12-06 15:57:14 +01001569 return ERR_PTR(-EINVAL);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001570}
1571
Johannes Berg8de1c632015-08-21 14:13:06 +02001572static const struct ieee80211_reg_rule *
1573__freq_reg_info(struct wiphy *wiphy, u32 center_freq, u32 min_bw)
Matthias May4edd5692015-07-17 15:28:39 +02001574{
1575 const struct ieee80211_regdomain *regd = reg_get_regdomain(wiphy);
1576 const struct ieee80211_reg_rule *reg_rule = NULL;
1577 u32 bw;
1578
1579 for (bw = MHZ_TO_KHZ(20); bw >= min_bw; bw = bw / 2) {
Michal Sojka49172872015-11-23 19:27:14 +01001580 reg_rule = freq_reg_info_regd(center_freq, regd, bw);
Matthias May4edd5692015-07-17 15:28:39 +02001581 if (!IS_ERR(reg_rule))
1582 return reg_rule;
1583 }
1584
1585 return reg_rule;
1586}
1587
Johannes Berg361c9c82012-12-06 15:57:14 +01001588const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
1589 u32 center_freq)
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001590{
Matthias May4edd5692015-07-17 15:28:39 +02001591 return __freq_reg_info(wiphy, center_freq, MHZ_TO_KHZ(20));
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001592}
John W. Linville4f366c52010-07-15 14:57:33 -04001593EXPORT_SYMBOL(freq_reg_info);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001594
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001595const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301596{
1597 switch (initiator) {
1598 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001599 return "core";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301600 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001601 return "user";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301602 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001603 return "driver";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301604 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Toke Høiland-Jørgensen8db0c4332018-04-19 11:17:38 +02001605 return "country element";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301606 default:
1607 WARN_ON(1);
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001608 return "bug";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301609 }
1610}
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001611EXPORT_SYMBOL(reg_initiator_name);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301612
Michal Sojka1aeb1352015-11-23 19:27:16 +01001613static uint32_t reg_rule_to_chan_bw_flags(const struct ieee80211_regdomain *regd,
1614 const struct ieee80211_reg_rule *reg_rule,
1615 const struct ieee80211_channel *chan)
1616{
1617 const struct ieee80211_freq_range *freq_range = NULL;
1618 u32 max_bandwidth_khz, bw_flags = 0;
1619
1620 freq_range = &reg_rule->freq_range;
1621
1622 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1623 /* Check if auto calculation requested */
1624 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
1625 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
1626
1627 /* If we get a reg_rule we can assume that at least 5Mhz fit */
Rafał Miłecki4787cfa2017-01-04 18:58:30 +01001628 if (!cfg80211_does_bw_fit_range(freq_range,
1629 MHZ_TO_KHZ(chan->center_freq),
1630 MHZ_TO_KHZ(10)))
Michal Sojka1aeb1352015-11-23 19:27:16 +01001631 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
Rafał Miłecki4787cfa2017-01-04 18:58:30 +01001632 if (!cfg80211_does_bw_fit_range(freq_range,
1633 MHZ_TO_KHZ(chan->center_freq),
1634 MHZ_TO_KHZ(20)))
Michal Sojka1aeb1352015-11-23 19:27:16 +01001635 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1636
1637 if (max_bandwidth_khz < MHZ_TO_KHZ(10))
1638 bw_flags |= IEEE80211_CHAN_NO_10MHZ;
1639 if (max_bandwidth_khz < MHZ_TO_KHZ(20))
1640 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
1641 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
1642 bw_flags |= IEEE80211_CHAN_NO_HT40;
1643 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
1644 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
1645 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
1646 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
1647 return bw_flags;
1648}
1649
Johannes Berge33e2242014-06-23 11:06:16 +02001650/*
1651 * Note that right now we assume the desired channel bandwidth
1652 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
1653 * per channel, the primary and the extension channel).
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001654 */
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001655static void handle_channel(struct wiphy *wiphy,
1656 enum nl80211_reg_initiator initiator,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001657 struct ieee80211_channel *chan)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001658{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001659 u32 flags, bw_flags = 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001660 const struct ieee80211_reg_rule *reg_rule = NULL;
1661 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001662 struct wiphy *request_wiphy = NULL;
Johannes Bergc492db32012-12-06 16:29:25 +01001663 struct regulatory_request *lr = get_last_request();
Janusz Dziedzic97524822014-01-30 09:52:20 +01001664 const struct ieee80211_regdomain *regd;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001665
Johannes Bergc492db32012-12-06 16:29:25 +01001666 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001667
1668 flags = chan->orig_flags;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001669
Johannes Berg361c9c82012-12-06 15:57:14 +01001670 reg_rule = freq_reg_info(wiphy, MHZ_TO_KHZ(chan->center_freq));
1671 if (IS_ERR(reg_rule)) {
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001672 /*
1673 * We will disable all channels that do not match our
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001674 * received regulatory rule unless the hint is coming
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001675 * from a Country IE and the Country IE had no information
1676 * about a band. The IEEE 802.11 spec allows for an AP
1677 * to send only a subset of the regulatory rules allowed,
1678 * so an AP in the US that only supports 2.4 GHz may only send
1679 * a country IE with information for the 2.4 GHz band
1680 * while 5 GHz is still supported.
1681 */
1682 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Berg361c9c82012-12-06 15:57:14 +01001683 PTR_ERR(reg_rule) == -ERANGE)
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001684 return;
1685
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001686 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1687 request_wiphy && request_wiphy == wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001688 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Johannes Bergc799ba62015-12-11 15:31:10 +01001689 pr_debug("Disabling freq %d MHz for good\n",
1690 chan->center_freq);
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001691 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1692 chan->flags = chan->orig_flags;
1693 } else {
Johannes Bergc799ba62015-12-11 15:31:10 +01001694 pr_debug("Disabling freq %d MHz\n",
1695 chan->center_freq);
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001696 chan->flags |= IEEE80211_CHAN_DISABLED;
1697 }
Johannes Berg8318d782008-01-24 19:38:38 +01001698 return;
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001699 }
Johannes Berg8318d782008-01-24 19:38:38 +01001700
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001701 regd = reg_get_regdomain(wiphy);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301702
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001703 power_rule = &reg_rule->power_rule;
Michal Sojka1aeb1352015-11-23 19:27:16 +01001704 bw_flags = reg_rule_to_chan_bw_flags(regd, reg_rule, chan);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001705
Johannes Bergc492db32012-12-06 16:29:25 +01001706 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001707 request_wiphy && request_wiphy == wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001708 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001709 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001710 * This guarantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001711 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001712 * settings
1713 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001714 chan->flags = chan->orig_flags =
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001715 map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001716 chan->max_antenna_gain = chan->orig_mag =
1717 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02001718 chan->max_reg_power = chan->max_power = chan->orig_mpwr =
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001719 (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic4f267c12014-04-09 13:47:12 +02001720
1721 if (chan->flags & IEEE80211_CHAN_RADAR) {
1722 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1723 if (reg_rule->dfs_cac_ms)
1724 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1725 }
1726
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001727 return;
1728 }
1729
Simon Wunderlich04f39042013-02-08 18:16:19 +01001730 chan->dfs_state = NL80211_DFS_USABLE;
1731 chan->dfs_state_entered = jiffies;
1732
Rajkumar Manoharanaa3d7ee2011-09-14 14:28:17 +05301733 chan->beacon_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001734 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
Johannes Berg1a919312012-12-03 17:21:11 +01001735 chan->max_antenna_gain =
1736 min_t(int, chan->orig_mag,
1737 MBI_TO_DBI(power_rule->max_antenna_gain));
Hong Wueccc0682012-01-11 20:33:39 +02001738 chan->max_reg_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic089027e2014-02-21 19:46:12 +01001739
1740 if (chan->flags & IEEE80211_CHAN_RADAR) {
1741 if (reg_rule->dfs_cac_ms)
1742 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1743 else
1744 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1745 }
1746
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001747 if (chan->orig_mpwr) {
1748 /*
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001749 * Devices that use REGULATORY_COUNTRY_IE_FOLLOW_POWER
1750 * will always follow the passed country IE power settings.
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001751 */
1752 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001753 wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_FOLLOW_POWER)
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001754 chan->max_power = chan->max_reg_power;
1755 else
1756 chan->max_power = min(chan->orig_mpwr,
1757 chan->max_reg_power);
1758 } else
1759 chan->max_power = chan->max_reg_power;
Johannes Berg8318d782008-01-24 19:38:38 +01001760}
1761
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001762static void handle_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001763 enum nl80211_reg_initiator initiator,
1764 struct ieee80211_supported_band *sband)
Johannes Berg8318d782008-01-24 19:38:38 +01001765{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001766 unsigned int i;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001767
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001768 if (!sband)
1769 return;
Johannes Berg8318d782008-01-24 19:38:38 +01001770
1771 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001772 handle_channel(wiphy, initiator, &sband->channels[i]);
Johannes Berg8318d782008-01-24 19:38:38 +01001773}
1774
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001775static bool reg_request_cell_base(struct regulatory_request *request)
1776{
1777 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1778 return false;
Johannes Berg1a919312012-12-03 17:21:11 +01001779 return request->user_reg_hint_type == NL80211_USER_REG_HINT_CELL_BASE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001780}
1781
1782bool reg_last_request_cell_base(void)
1783{
Johannes Berg38fd2142013-05-10 19:17:17 +02001784 return reg_request_cell_base(get_last_request());
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001785}
1786
Ilan Peer94fc6612014-02-23 09:13:00 +02001787#ifdef CONFIG_CFG80211_REG_CELLULAR_HINTS
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001788/* Core specific check */
Johannes Berg2f922122012-12-03 17:54:55 +01001789static enum reg_request_treatment
1790reg_ignore_cell_hint(struct regulatory_request *pending_request)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001791{
Johannes Bergc492db32012-12-06 16:29:25 +01001792 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001793
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001794 if (!reg_num_devs_support_basehint)
Johannes Berg2f922122012-12-03 17:54:55 +01001795 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001796
Johannes Bergc492db32012-12-06 16:29:25 +01001797 if (reg_request_cell_base(lr) &&
Johannes Berg1a919312012-12-03 17:21:11 +01001798 !regdom_changes(pending_request->alpha2))
Johannes Berg2f922122012-12-03 17:54:55 +01001799 return REG_REQ_ALREADY_SET;
Johannes Berg1a919312012-12-03 17:21:11 +01001800
Johannes Berg2f922122012-12-03 17:54:55 +01001801 return REG_REQ_OK;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001802}
1803
1804/* Device specific check */
1805static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
1806{
Johannes Berg1a919312012-12-03 17:21:11 +01001807 return !(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001808}
1809#else
Johannes Berga515de62015-10-15 14:28:56 +02001810static enum reg_request_treatment
1811reg_ignore_cell_hint(struct regulatory_request *pending_request)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001812{
Johannes Berg2f922122012-12-03 17:54:55 +01001813 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001814}
Johannes Berg1a919312012-12-03 17:21:11 +01001815
1816static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001817{
1818 return true;
1819}
1820#endif
1821
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001822static bool wiphy_strict_alpha2_regd(struct wiphy *wiphy)
1823{
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001824 if (wiphy->regulatory_flags & REGULATORY_STRICT_REG &&
1825 !(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG))
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001826 return true;
1827 return false;
1828}
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001829
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001830static bool ignore_reg_update(struct wiphy *wiphy,
1831 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001832{
Johannes Bergc492db32012-12-06 16:29:25 +01001833 struct regulatory_request *lr = get_last_request();
1834
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02001835 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
1836 return true;
1837
Johannes Bergc492db32012-12-06 16:29:25 +01001838 if (!lr) {
Johannes Bergc799ba62015-12-11 15:31:10 +01001839 pr_debug("Ignoring regulatory request set by %s since last_request is not set\n",
1840 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001841 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301842 }
1843
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001844 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001845 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
Johannes Bergc799ba62015-12-11 15:31:10 +01001846 pr_debug("Ignoring regulatory request set by %s since the driver uses its own custom regulatory domain\n",
1847 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001848 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301849 }
1850
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001851 /*
1852 * wiphy->regd will be set once the device has its own
1853 * desired regulatory domain set
1854 */
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001855 if (wiphy_strict_alpha2_regd(wiphy) && !wiphy->regd &&
Luis R. Rodriguez749b5272010-10-20 10:18:54 -07001856 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Bergc492db32012-12-06 16:29:25 +01001857 !is_world_regdom(lr->alpha2)) {
Johannes Bergc799ba62015-12-11 15:31:10 +01001858 pr_debug("Ignoring regulatory request set by %s since the driver requires its own regulatory domain to be set first\n",
1859 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001860 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301861 }
1862
Johannes Bergc492db32012-12-06 16:29:25 +01001863 if (reg_request_cell_base(lr))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001864 return reg_dev_ignore_cell_hint(wiphy);
1865
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001866 return false;
1867}
1868
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08001869static bool reg_is_world_roaming(struct wiphy *wiphy)
1870{
1871 const struct ieee80211_regdomain *cr = get_cfg80211_regdom();
1872 const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy);
1873 struct regulatory_request *lr = get_last_request();
1874
1875 if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2)))
1876 return true;
1877
1878 if (lr && lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001879 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08001880 return true;
1881
1882 return false;
1883}
1884
Johannes Berg1a919312012-12-03 17:21:11 +01001885static void handle_reg_beacon(struct wiphy *wiphy, unsigned int chan_idx,
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001886 struct reg_beacon *reg_beacon)
1887{
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001888 struct ieee80211_supported_band *sband;
1889 struct ieee80211_channel *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001890 bool channel_changed = false;
1891 struct ieee80211_channel chan_before;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001892
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001893 sband = wiphy->bands[reg_beacon->chan.band];
1894 chan = &sband->channels[chan_idx];
1895
1896 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
1897 return;
1898
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001899 if (chan->beacon_found)
1900 return;
1901
1902 chan->beacon_found = true;
1903
Luis R. Rodriguez0f500a52012-12-19 10:53:04 -08001904 if (!reg_is_world_roaming(wiphy))
1905 return;
1906
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001907 if (wiphy->regulatory_flags & REGULATORY_DISABLE_BEACON_HINTS)
Luis R. Rodriguez37184242009-07-30 17:43:48 -07001908 return;
1909
Johannes Berga48a52b2018-01-15 09:12:05 +01001910 chan_before = *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001911
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001912 if (chan->flags & IEEE80211_CHAN_NO_IR) {
1913 chan->flags &= ~IEEE80211_CHAN_NO_IR;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001914 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001915 }
1916
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001917 if (channel_changed)
1918 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001919}
1920
1921/*
1922 * Called when a scan on a wiphy finds a beacon on
1923 * new channel
1924 */
1925static void wiphy_update_new_beacon(struct wiphy *wiphy,
1926 struct reg_beacon *reg_beacon)
1927{
1928 unsigned int i;
1929 struct ieee80211_supported_band *sband;
1930
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001931 if (!wiphy->bands[reg_beacon->chan.band])
1932 return;
1933
1934 sband = wiphy->bands[reg_beacon->chan.band];
1935
1936 for (i = 0; i < sband->n_channels; i++)
1937 handle_reg_beacon(wiphy, i, reg_beacon);
1938}
1939
1940/*
1941 * Called upon reg changes or a new wiphy is added
1942 */
1943static void wiphy_update_beacon_reg(struct wiphy *wiphy)
1944{
1945 unsigned int i;
1946 struct ieee80211_supported_band *sband;
1947 struct reg_beacon *reg_beacon;
1948
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001949 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
1950 if (!wiphy->bands[reg_beacon->chan.band])
1951 continue;
1952 sband = wiphy->bands[reg_beacon->chan.band];
1953 for (i = 0; i < sband->n_channels; i++)
1954 handle_reg_beacon(wiphy, i, reg_beacon);
1955 }
1956}
1957
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001958/* Reap the advantages of previously found beacons */
1959static void reg_process_beacons(struct wiphy *wiphy)
1960{
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001961 /*
1962 * Means we are just firing up cfg80211, so no beacons would
1963 * have been processed yet.
1964 */
1965 if (!last_request)
1966 return;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001967 wiphy_update_beacon_reg(wiphy);
1968}
1969
Johannes Berg1a919312012-12-03 17:21:11 +01001970static bool is_ht40_allowed(struct ieee80211_channel *chan)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001971{
1972 if (!chan)
Johannes Berg1a919312012-12-03 17:21:11 +01001973 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001974 if (chan->flags & IEEE80211_CHAN_DISABLED)
Johannes Berg1a919312012-12-03 17:21:11 +01001975 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001976 /* This would happen when regulatory rules disallow HT40 completely */
Felix Fietkau55b183a2013-01-11 14:22:58 +01001977 if ((chan->flags & IEEE80211_CHAN_NO_HT40) == IEEE80211_CHAN_NO_HT40)
1978 return false;
1979 return true;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001980}
1981
1982static void reg_process_ht_flags_channel(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001983 struct ieee80211_channel *channel)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001984{
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001985 struct ieee80211_supported_band *sband = wiphy->bands[channel->band];
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001986 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03001987 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001988 unsigned int i;
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03001989 u32 flags;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001990
Johannes Berg1a919312012-12-03 17:21:11 +01001991 if (!is_ht40_allowed(channel)) {
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001992 channel->flags |= IEEE80211_CHAN_NO_HT40;
1993 return;
1994 }
1995
1996 /*
1997 * We need to ensure the extension channels exist to
1998 * be able to use HT40- or HT40+, this finds them (or not)
1999 */
2000 for (i = 0; i < sband->n_channels; i++) {
2001 struct ieee80211_channel *c = &sband->channels[i];
Johannes Berg1a919312012-12-03 17:21:11 +01002002
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002003 if (c->center_freq == (channel->center_freq - 20))
2004 channel_before = c;
2005 if (c->center_freq == (channel->center_freq + 20))
2006 channel_after = c;
2007 }
2008
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03002009 flags = 0;
2010 regd = get_wiphy_regdom(wiphy);
2011 if (regd) {
2012 const struct ieee80211_reg_rule *reg_rule =
2013 freq_reg_info_regd(MHZ_TO_KHZ(channel->center_freq),
2014 regd, MHZ_TO_KHZ(20));
2015
2016 if (!IS_ERR(reg_rule))
2017 flags = reg_rule->flags;
2018 }
2019
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002020 /*
2021 * Please note that this assumes target bandwidth is 20 MHz,
2022 * if that ever changes we also need to change the below logic
2023 * to include that as well.
2024 */
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03002025 if (!is_ht40_allowed(channel_before) ||
2026 flags & NL80211_RRF_NO_HT40MINUS)
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04002027 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002028 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04002029 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002030
Emmanuel Grumbach4e0854a2017-09-06 13:45:40 +03002031 if (!is_ht40_allowed(channel_after) ||
2032 flags & NL80211_RRF_NO_HT40PLUS)
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04002033 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002034 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04002035 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002036}
2037
2038static void reg_process_ht_flags_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002039 struct ieee80211_supported_band *sband)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002040{
2041 unsigned int i;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002042
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002043 if (!sband)
2044 return;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002045
2046 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002047 reg_process_ht_flags_channel(wiphy, &sband->channels[i]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002048}
2049
2050static void reg_process_ht_flags(struct wiphy *wiphy)
2051{
Johannes Berg57fbcce2016-04-12 15:56:15 +02002052 enum nl80211_band band;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002053
2054 if (!wiphy)
2055 return;
2056
Johannes Berg57fbcce2016-04-12 15:56:15 +02002057 for (band = 0; band < NUM_NL80211_BANDS; band++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002058 reg_process_ht_flags_band(wiphy, wiphy->bands[band]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002059}
2060
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002061static void reg_call_notifier(struct wiphy *wiphy,
2062 struct regulatory_request *request)
2063{
2064 if (wiphy->reg_notifier)
2065 wiphy->reg_notifier(wiphy, request);
2066}
2067
Arik Nemtsovad932f02014-11-27 09:44:55 +02002068static bool reg_wdev_chan_valid(struct wiphy *wiphy, struct wireless_dev *wdev)
2069{
Arik Nemtsovad932f02014-11-27 09:44:55 +02002070 struct cfg80211_chan_def chandef;
2071 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Arik Nemtsov20658702014-12-29 11:59:59 +02002072 enum nl80211_iftype iftype;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002073
2074 wdev_lock(wdev);
Arik Nemtsov20658702014-12-29 11:59:59 +02002075 iftype = wdev->iftype;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002076
Arik Nemtsov20658702014-12-29 11:59:59 +02002077 /* make sure the interface is active */
Arik Nemtsovad932f02014-11-27 09:44:55 +02002078 if (!wdev->netdev || !netif_running(wdev->netdev))
Arik Nemtsov20658702014-12-29 11:59:59 +02002079 goto wdev_inactive_unlock;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002080
Arik Nemtsov20658702014-12-29 11:59:59 +02002081 switch (iftype) {
Arik Nemtsovad932f02014-11-27 09:44:55 +02002082 case NL80211_IFTYPE_AP:
2083 case NL80211_IFTYPE_P2P_GO:
2084 if (!wdev->beacon_interval)
Arik Nemtsov20658702014-12-29 11:59:59 +02002085 goto wdev_inactive_unlock;
2086 chandef = wdev->chandef;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002087 break;
Arik Nemtsov185076d2014-12-03 18:08:17 +02002088 case NL80211_IFTYPE_ADHOC:
2089 if (!wdev->ssid_len)
Arik Nemtsov20658702014-12-29 11:59:59 +02002090 goto wdev_inactive_unlock;
2091 chandef = wdev->chandef;
Arik Nemtsov185076d2014-12-03 18:08:17 +02002092 break;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002093 case NL80211_IFTYPE_STATION:
2094 case NL80211_IFTYPE_P2P_CLIENT:
Arik Nemtsovad932f02014-11-27 09:44:55 +02002095 if (!wdev->current_bss ||
2096 !wdev->current_bss->pub.channel)
Arik Nemtsov20658702014-12-29 11:59:59 +02002097 goto wdev_inactive_unlock;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002098
Arik Nemtsov20658702014-12-29 11:59:59 +02002099 if (!rdev->ops->get_channel ||
2100 rdev_get_channel(rdev, wdev, &chandef))
2101 cfg80211_chandef_create(&chandef,
2102 wdev->current_bss->pub.channel,
2103 NL80211_CHAN_NO_HT);
Arik Nemtsovad932f02014-11-27 09:44:55 +02002104 break;
2105 case NL80211_IFTYPE_MONITOR:
2106 case NL80211_IFTYPE_AP_VLAN:
2107 case NL80211_IFTYPE_P2P_DEVICE:
2108 /* no enforcement required */
2109 break;
2110 default:
2111 /* others not implemented for now */
2112 WARN_ON(1);
2113 break;
2114 }
2115
Arik Nemtsovad932f02014-11-27 09:44:55 +02002116 wdev_unlock(wdev);
Arik Nemtsov20658702014-12-29 11:59:59 +02002117
2118 switch (iftype) {
2119 case NL80211_IFTYPE_AP:
2120 case NL80211_IFTYPE_P2P_GO:
2121 case NL80211_IFTYPE_ADHOC:
Arik Nemtsov923b3522015-07-08 15:41:44 +03002122 return cfg80211_reg_can_beacon_relax(wiphy, &chandef, iftype);
Arik Nemtsov20658702014-12-29 11:59:59 +02002123 case NL80211_IFTYPE_STATION:
2124 case NL80211_IFTYPE_P2P_CLIENT:
2125 return cfg80211_chandef_usable(wiphy, &chandef,
2126 IEEE80211_CHAN_DISABLED);
2127 default:
2128 break;
2129 }
2130
2131 return true;
2132
2133wdev_inactive_unlock:
2134 wdev_unlock(wdev);
2135 return true;
Arik Nemtsovad932f02014-11-27 09:44:55 +02002136}
2137
2138static void reg_leave_invalid_chans(struct wiphy *wiphy)
2139{
2140 struct wireless_dev *wdev;
2141 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
2142
2143 ASSERT_RTNL();
2144
Johannes Berg53873f12016-05-03 16:52:04 +03002145 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list)
Arik Nemtsovad932f02014-11-27 09:44:55 +02002146 if (!reg_wdev_chan_valid(wiphy, wdev))
2147 cfg80211_leave(rdev, wdev);
2148}
2149
2150static void reg_check_chans_work(struct work_struct *work)
2151{
2152 struct cfg80211_registered_device *rdev;
2153
Johannes Bergc799ba62015-12-11 15:31:10 +01002154 pr_debug("Verifying active interfaces after reg change\n");
Arik Nemtsovad932f02014-11-27 09:44:55 +02002155 rtnl_lock();
2156
2157 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
2158 if (!(rdev->wiphy.regulatory_flags &
2159 REGULATORY_IGNORE_STALE_KICKOFF))
2160 reg_leave_invalid_chans(&rdev->wiphy);
2161
2162 rtnl_unlock();
2163}
2164
2165static void reg_check_channels(void)
2166{
2167 /*
2168 * Give usermode a chance to do something nicer (move to another
2169 * channel, orderly disconnection), before forcing a disconnection.
2170 */
2171 mod_delayed_work(system_power_efficient_wq,
2172 &reg_check_chans,
2173 msecs_to_jiffies(REG_ENFORCE_GRACE_MS));
2174}
2175
Sven Neumanneac03e32011-08-30 23:38:53 +02002176static void wiphy_update_regulatory(struct wiphy *wiphy,
2177 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +01002178{
Johannes Berg57fbcce2016-04-12 15:56:15 +02002179 enum nl80211_band band;
Johannes Bergc492db32012-12-06 16:29:25 +01002180 struct regulatory_request *lr = get_last_request();
Sven Neumanneac03e32011-08-30 23:38:53 +02002181
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002182 if (ignore_reg_update(wiphy, initiator)) {
2183 /*
2184 * Regulatory updates set by CORE are ignored for custom
2185 * regulatory cards. Let us notify the changes to the driver,
2186 * as some drivers used this to restore its orig_* reg domain.
2187 */
2188 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Amar Singhale31f6452018-07-20 12:15:18 -07002189 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG &&
2190 !(wiphy->regulatory_flags &
2191 REGULATORY_WIPHY_SELF_MANAGED))
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002192 reg_call_notifier(wiphy, lr);
Sven Neumanna203c2a2011-07-12 15:52:07 +02002193 return;
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002194 }
Sven Neumanna203c2a2011-07-12 15:52:07 +02002195
Johannes Bergc492db32012-12-06 16:29:25 +01002196 lr->dfs_region = get_cfg80211_regdom()->dfs_region;
Luis R. Rodriguezb68e6b32011-10-11 10:59:03 -07002197
Johannes Berg57fbcce2016-04-12 15:56:15 +02002198 for (band = 0; band < NUM_NL80211_BANDS; band++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002199 handle_band(wiphy, initiator, wiphy->bands[band]);
Sven Neumanna203c2a2011-07-12 15:52:07 +02002200
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002201 reg_process_beacons(wiphy);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002202 reg_process_ht_flags(wiphy);
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08002203 reg_call_notifier(wiphy, lr);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002204}
2205
Sven Neumannd7549cb2011-08-30 23:38:54 +02002206static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
2207{
2208 struct cfg80211_registered_device *rdev;
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05302209 struct wiphy *wiphy;
Sven Neumannd7549cb2011-08-30 23:38:54 +02002210
Johannes Berg5fe231e2013-05-08 21:45:15 +02002211 ASSERT_RTNL();
Johannes Berg458f4f92012-12-06 15:47:38 +01002212
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05302213 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2214 wiphy = &rdev->wiphy;
2215 wiphy_update_regulatory(wiphy, initiator);
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05302216 }
Arik Nemtsovad932f02014-11-27 09:44:55 +02002217
2218 reg_check_channels();
Sven Neumannd7549cb2011-08-30 23:38:54 +02002219}
2220
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002221static void handle_channel_custom(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002222 struct ieee80211_channel *chan,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002223 const struct ieee80211_regdomain *regd)
2224{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002225 u32 bw_flags = 0;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002226 const struct ieee80211_reg_rule *reg_rule = NULL;
2227 const struct ieee80211_power_rule *power_rule = NULL;
Matthias May4edd5692015-07-17 15:28:39 +02002228 u32 bw;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002229
Matthias May4edd5692015-07-17 15:28:39 +02002230 for (bw = MHZ_TO_KHZ(20); bw >= MHZ_TO_KHZ(5); bw = bw / 2) {
Michal Sojka49172872015-11-23 19:27:14 +01002231 reg_rule = freq_reg_info_regd(MHZ_TO_KHZ(chan->center_freq),
Matthias May4edd5692015-07-17 15:28:39 +02002232 regd, bw);
2233 if (!IS_ERR(reg_rule))
2234 break;
2235 }
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04002236
Johannes Berg361c9c82012-12-06 15:57:14 +01002237 if (IS_ERR(reg_rule)) {
Johannes Bergc799ba62015-12-11 15:31:10 +01002238 pr_debug("Disabling freq %d MHz as custom regd has no rule that fits it\n",
2239 chan->center_freq);
Arik Nemtsovdb8dfee2014-12-15 19:26:02 +02002240 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) {
2241 chan->flags |= IEEE80211_CHAN_DISABLED;
2242 } else {
2243 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
2244 chan->flags = chan->orig_flags;
2245 }
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002246 return;
2247 }
2248
2249 power_rule = &reg_rule->power_rule;
Michal Sojka1aeb1352015-11-23 19:27:16 +01002250 bw_flags = reg_rule_to_chan_bw_flags(regd, reg_rule, chan);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002251
Arik Nemtsov2e18b382014-11-16 16:37:46 +02002252 chan->dfs_state_entered = jiffies;
Arik Nemtsovc7ab5082014-11-16 16:37:47 +02002253 chan->dfs_state = NL80211_DFS_USABLE;
2254
2255 chan->beacon_found = false;
Arik Nemtsovdb8dfee2014-12-15 19:26:02 +02002256
2257 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
2258 chan->flags = chan->orig_flags | bw_flags |
2259 map_regdom_flags(reg_rule->flags);
2260 else
2261 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
2262
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002263 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02002264 chan->max_reg_power = chan->max_power =
2265 (int) MBM_TO_DBM(power_rule->max_eirp);
Arik Nemtsov2e18b382014-11-16 16:37:46 +02002266
2267 if (chan->flags & IEEE80211_CHAN_RADAR) {
2268 if (reg_rule->dfs_cac_ms)
2269 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
2270 else
2271 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
2272 }
2273
2274 chan->max_power = chan->max_reg_power;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002275}
2276
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002277static void handle_band_custom(struct wiphy *wiphy,
2278 struct ieee80211_supported_band *sband,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002279 const struct ieee80211_regdomain *regd)
2280{
2281 unsigned int i;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002282
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002283 if (!sband)
2284 return;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002285
2286 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002287 handle_channel_custom(wiphy, &sband->channels[i], regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002288}
2289
2290/* Used by drivers prior to wiphy registration */
2291void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
2292 const struct ieee80211_regdomain *regd)
2293{
Johannes Berg57fbcce2016-04-12 15:56:15 +02002294 enum nl80211_band band;
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002295 unsigned int bands_set = 0;
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04002296
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002297 WARN(!(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG),
2298 "wiphy should have REGULATORY_CUSTOM_REG\n");
2299 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
Luis R. Rodriguez222ea582013-11-05 09:18:00 -08002300
Johannes Berg57fbcce2016-04-12 15:56:15 +02002301 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002302 if (!wiphy->bands[band])
2303 continue;
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002304 handle_band_custom(wiphy, wiphy->bands[band], regd);
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002305 bands_set++;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002306 }
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002307
2308 /*
2309 * no point in calling this if it won't have any effect
Johannes Berg1a919312012-12-03 17:21:11 +01002310 * on your device's supported bands.
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04002311 */
2312 WARN_ON(!bands_set);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08002313}
2314EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
2315
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002316static void reg_set_request_processed(void)
2317{
2318 bool need_more_processing = false;
Johannes Bergc492db32012-12-06 16:29:25 +01002319 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002320
Johannes Bergc492db32012-12-06 16:29:25 +01002321 lr->processed = true;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002322
2323 spin_lock(&reg_requests_lock);
2324 if (!list_empty(&reg_requests_list))
2325 need_more_processing = true;
2326 spin_unlock(&reg_requests_lock);
2327
Johannes Bergb6863032015-10-15 09:25:18 +02002328 cancel_crda_timeout();
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002329
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002330 if (need_more_processing)
2331 schedule_work(&reg_work);
2332}
2333
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05002334/**
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002335 * reg_process_hint_core - process core regulatory requests
2336 * @pending_request: a pending core regulatory request
2337 *
2338 * The wireless subsystem can use this function to process
2339 * a regulatory request issued by the regulatory core.
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002340 */
Johannes Bergd34265a2015-10-15 13:05:55 +02002341static enum reg_request_treatment
2342reg_process_hint_core(struct regulatory_request *core_request)
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002343{
Johannes Bergcecbb062015-10-15 08:47:34 +02002344 if (reg_query_database(core_request)) {
Johannes Berg25b20db2015-10-15 12:05:05 +02002345 core_request->intersect = false;
2346 core_request->processed = false;
2347 reg_update_last_request(core_request);
Johannes Bergd34265a2015-10-15 13:05:55 +02002348 return REG_REQ_OK;
Johannes Berg25b20db2015-10-15 12:05:05 +02002349 }
Johannes Bergd34265a2015-10-15 13:05:55 +02002350
2351 return REG_REQ_IGNORE;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002352}
2353
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002354static enum reg_request_treatment
2355__reg_process_hint_user(struct regulatory_request *user_request)
2356{
2357 struct regulatory_request *lr = get_last_request();
2358
2359 if (reg_request_cell_base(user_request))
2360 return reg_ignore_cell_hint(user_request);
2361
2362 if (reg_request_cell_base(lr))
2363 return REG_REQ_IGNORE;
2364
2365 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
2366 return REG_REQ_INTERSECT;
2367 /*
2368 * If the user knows better the user should set the regdom
2369 * to their country before the IE is picked up
2370 */
2371 if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
2372 lr->intersect)
2373 return REG_REQ_IGNORE;
2374 /*
2375 * Process user requests only after previous user/driver/core
2376 * requests have been processed
2377 */
2378 if ((lr->initiator == NL80211_REGDOM_SET_BY_CORE ||
2379 lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
2380 lr->initiator == NL80211_REGDOM_SET_BY_USER) &&
2381 regdom_changes(lr->alpha2))
2382 return REG_REQ_IGNORE;
2383
2384 if (!regdom_changes(user_request->alpha2))
2385 return REG_REQ_ALREADY_SET;
2386
2387 return REG_REQ_OK;
2388}
2389
2390/**
2391 * reg_process_hint_user - process user regulatory requests
2392 * @user_request: a pending user regulatory request
2393 *
2394 * The wireless subsystem can use this function to process
2395 * a regulatory request initiated by userspace.
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002396 */
Johannes Bergd34265a2015-10-15 13:05:55 +02002397static enum reg_request_treatment
2398reg_process_hint_user(struct regulatory_request *user_request)
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002399{
2400 enum reg_request_treatment treatment;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002401
2402 treatment = __reg_process_hint_user(user_request);
2403 if (treatment == REG_REQ_IGNORE ||
Johannes Bergd34265a2015-10-15 13:05:55 +02002404 treatment == REG_REQ_ALREADY_SET)
2405 return REG_REQ_IGNORE;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002406
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002407 user_request->intersect = treatment == REG_REQ_INTERSECT;
2408 user_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08002409
Johannes Bergcecbb062015-10-15 08:47:34 +02002410 if (reg_query_database(user_request)) {
Johannes Berg25b20db2015-10-15 12:05:05 +02002411 reg_update_last_request(user_request);
2412 user_alpha2[0] = user_request->alpha2[0];
2413 user_alpha2[1] = user_request->alpha2[1];
Johannes Bergd34265a2015-10-15 13:05:55 +02002414 return REG_REQ_OK;
Johannes Berg25b20db2015-10-15 12:05:05 +02002415 }
Johannes Bergd34265a2015-10-15 13:05:55 +02002416
2417 return REG_REQ_IGNORE;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08002418}
2419
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002420static enum reg_request_treatment
2421__reg_process_hint_driver(struct regulatory_request *driver_request)
2422{
2423 struct regulatory_request *lr = get_last_request();
2424
2425 if (lr->initiator == NL80211_REGDOM_SET_BY_CORE) {
2426 if (regdom_changes(driver_request->alpha2))
2427 return REG_REQ_OK;
2428 return REG_REQ_ALREADY_SET;
2429 }
2430
2431 /*
2432 * This would happen if you unplug and plug your card
2433 * back in or if you add a new device for which the previously
2434 * loaded card also agrees on the regulatory domain.
2435 */
2436 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
2437 !regdom_changes(driver_request->alpha2))
2438 return REG_REQ_ALREADY_SET;
2439
2440 return REG_REQ_INTERSECT;
2441}
2442
2443/**
2444 * reg_process_hint_driver - process driver regulatory requests
2445 * @driver_request: a pending driver regulatory request
2446 *
2447 * The wireless subsystem can use this function to process
2448 * a regulatory request issued by an 802.11 driver.
2449 *
2450 * Returns one of the different reg request treatment values.
2451 */
2452static enum reg_request_treatment
2453reg_process_hint_driver(struct wiphy *wiphy,
2454 struct regulatory_request *driver_request)
2455{
Arik Nemtsov34f05f52014-12-04 12:22:16 +02002456 const struct ieee80211_regdomain *regd, *tmp;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002457 enum reg_request_treatment treatment;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002458
2459 treatment = __reg_process_hint_driver(driver_request);
2460
2461 switch (treatment) {
2462 case REG_REQ_OK:
2463 break;
2464 case REG_REQ_IGNORE:
Johannes Bergd34265a2015-10-15 13:05:55 +02002465 return REG_REQ_IGNORE;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002466 case REG_REQ_INTERSECT:
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002467 case REG_REQ_ALREADY_SET:
2468 regd = reg_copy_regd(get_cfg80211_regdom());
Johannes Bergd34265a2015-10-15 13:05:55 +02002469 if (IS_ERR(regd))
2470 return REG_REQ_IGNORE;
Arik Nemtsov34f05f52014-12-04 12:22:16 +02002471
2472 tmp = get_wiphy_regdom(wiphy);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002473 rcu_assign_pointer(wiphy->regd, regd);
Arik Nemtsov34f05f52014-12-04 12:22:16 +02002474 rcu_free_regdom(tmp);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002475 }
2476
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002477
2478 driver_request->intersect = treatment == REG_REQ_INTERSECT;
2479 driver_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08002480
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002481 /*
2482 * Since CRDA will not be called in this case as we already
2483 * have applied the requested regulatory domain before we just
2484 * inform userspace we have processed the request
2485 */
2486 if (treatment == REG_REQ_ALREADY_SET) {
2487 nl80211_send_reg_change_event(driver_request);
Johannes Berg25b20db2015-10-15 12:05:05 +02002488 reg_update_last_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002489 reg_set_request_processed();
Johannes Berg480908a2015-10-15 12:58:58 +02002490 return REG_REQ_ALREADY_SET;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002491 }
2492
Johannes Bergd34265a2015-10-15 13:05:55 +02002493 if (reg_query_database(driver_request)) {
Johannes Berg25b20db2015-10-15 12:05:05 +02002494 reg_update_last_request(driver_request);
Johannes Bergd34265a2015-10-15 13:05:55 +02002495 return REG_REQ_OK;
2496 }
Johannes Berg25b20db2015-10-15 12:05:05 +02002497
Johannes Bergd34265a2015-10-15 13:05:55 +02002498 return REG_REQ_IGNORE;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002499}
2500
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002501static enum reg_request_treatment
2502__reg_process_hint_country_ie(struct wiphy *wiphy,
2503 struct regulatory_request *country_ie_request)
2504{
2505 struct wiphy *last_wiphy = NULL;
2506 struct regulatory_request *lr = get_last_request();
2507
2508 if (reg_request_cell_base(lr)) {
2509 /* Trust a Cell base station over the AP's country IE */
2510 if (regdom_changes(country_ie_request->alpha2))
2511 return REG_REQ_IGNORE;
2512 return REG_REQ_ALREADY_SET;
Luis R. Rodriguez2a901462013-11-11 22:15:31 +01002513 } else {
2514 if (wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_IGNORE)
2515 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002516 }
2517
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002518 if (unlikely(!is_an_alpha2(country_ie_request->alpha2)))
2519 return -EINVAL;
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08002520
2521 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE)
2522 return REG_REQ_OK;
2523
2524 last_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
2525
2526 if (last_wiphy != wiphy) {
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002527 /*
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08002528 * Two cards with two APs claiming different
2529 * Country IE alpha2s. We could
2530 * intersect them, but that seems unlikely
2531 * to be correct. Reject second one for now.
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002532 */
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08002533 if (regdom_changes(country_ie_request->alpha2))
2534 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002535 return REG_REQ_ALREADY_SET;
2536 }
Emmanuel Grumbach70dcec52014-12-02 09:53:25 +02002537
2538 if (regdom_changes(country_ie_request->alpha2))
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08002539 return REG_REQ_OK;
2540 return REG_REQ_ALREADY_SET;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002541}
2542
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002543/**
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002544 * reg_process_hint_country_ie - process regulatory requests from country IEs
2545 * @country_ie_request: a regulatory request from a country IE
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05002546 *
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002547 * The wireless subsystem can use this function to process
2548 * a regulatory request issued by a country Information Element.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05002549 *
Johannes Berg2f922122012-12-03 17:54:55 +01002550 * Returns one of the different reg request treatment values.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05002551 */
Johannes Berg2f922122012-12-03 17:54:55 +01002552static enum reg_request_treatment
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002553reg_process_hint_country_ie(struct wiphy *wiphy,
2554 struct regulatory_request *country_ie_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002555{
Johannes Berg2f922122012-12-03 17:54:55 +01002556 enum reg_request_treatment treatment;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002557
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002558 treatment = __reg_process_hint_country_ie(wiphy, country_ie_request);
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002559
Johannes Berg2f922122012-12-03 17:54:55 +01002560 switch (treatment) {
Johannes Berg2f922122012-12-03 17:54:55 +01002561 case REG_REQ_OK:
2562 break;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002563 case REG_REQ_IGNORE:
Johannes Bergd34265a2015-10-15 13:05:55 +02002564 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002565 case REG_REQ_ALREADY_SET:
Arik Nemtsovc8883932014-04-21 20:39:34 -07002566 reg_free_request(country_ie_request);
Johannes Berg480908a2015-10-15 12:58:58 +02002567 return REG_REQ_ALREADY_SET;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002568 case REG_REQ_INTERSECT:
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002569 /*
2570 * This doesn't happen yet, not sure we
2571 * ever want to support it for this case.
2572 */
Toke Høiland-Jørgensen8db0c4332018-04-19 11:17:38 +02002573 WARN_ONCE(1, "Unexpected intersection for country elements");
Johannes Bergd34265a2015-10-15 13:05:55 +02002574 return REG_REQ_IGNORE;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002575 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002576
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002577 country_ie_request->intersect = false;
2578 country_ie_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08002579
Johannes Bergd34265a2015-10-15 13:05:55 +02002580 if (reg_query_database(country_ie_request)) {
Johannes Berg25b20db2015-10-15 12:05:05 +02002581 reg_update_last_request(country_ie_request);
Johannes Bergd34265a2015-10-15 13:05:55 +02002582 return REG_REQ_OK;
2583 }
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05002584
Johannes Bergd34265a2015-10-15 13:05:55 +02002585 return REG_REQ_IGNORE;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002586}
2587
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05302588bool reg_dfs_domain_same(struct wiphy *wiphy1, struct wiphy *wiphy2)
2589{
2590 const struct ieee80211_regdomain *wiphy1_regd = NULL;
2591 const struct ieee80211_regdomain *wiphy2_regd = NULL;
2592 const struct ieee80211_regdomain *cfg80211_regd = NULL;
2593 bool dfs_domain_same;
2594
2595 rcu_read_lock();
2596
2597 cfg80211_regd = rcu_dereference(cfg80211_regdomain);
2598 wiphy1_regd = rcu_dereference(wiphy1->regd);
2599 if (!wiphy1_regd)
2600 wiphy1_regd = cfg80211_regd;
2601
2602 wiphy2_regd = rcu_dereference(wiphy2->regd);
2603 if (!wiphy2_regd)
2604 wiphy2_regd = cfg80211_regd;
2605
2606 dfs_domain_same = wiphy1_regd->dfs_region == wiphy2_regd->dfs_region;
2607
2608 rcu_read_unlock();
2609
2610 return dfs_domain_same;
2611}
2612
2613static void reg_copy_dfs_chan_state(struct ieee80211_channel *dst_chan,
2614 struct ieee80211_channel *src_chan)
2615{
2616 if (!(dst_chan->flags & IEEE80211_CHAN_RADAR) ||
2617 !(src_chan->flags & IEEE80211_CHAN_RADAR))
2618 return;
2619
2620 if (dst_chan->flags & IEEE80211_CHAN_DISABLED ||
2621 src_chan->flags & IEEE80211_CHAN_DISABLED)
2622 return;
2623
2624 if (src_chan->center_freq == dst_chan->center_freq &&
2625 dst_chan->dfs_state == NL80211_DFS_USABLE) {
2626 dst_chan->dfs_state = src_chan->dfs_state;
2627 dst_chan->dfs_state_entered = src_chan->dfs_state_entered;
2628 }
2629}
2630
2631static void wiphy_share_dfs_chan_state(struct wiphy *dst_wiphy,
2632 struct wiphy *src_wiphy)
2633{
2634 struct ieee80211_supported_band *src_sband, *dst_sband;
2635 struct ieee80211_channel *src_chan, *dst_chan;
2636 int i, j, band;
2637
2638 if (!reg_dfs_domain_same(dst_wiphy, src_wiphy))
2639 return;
2640
2641 for (band = 0; band < NUM_NL80211_BANDS; band++) {
2642 dst_sband = dst_wiphy->bands[band];
2643 src_sband = src_wiphy->bands[band];
2644 if (!dst_sband || !src_sband)
2645 continue;
2646
2647 for (i = 0; i < dst_sband->n_channels; i++) {
2648 dst_chan = &dst_sband->channels[i];
2649 for (j = 0; j < src_sband->n_channels; j++) {
2650 src_chan = &src_sband->channels[j];
2651 reg_copy_dfs_chan_state(dst_chan, src_chan);
2652 }
2653 }
2654 }
2655}
2656
2657static void wiphy_all_share_dfs_chan_state(struct wiphy *wiphy)
2658{
2659 struct cfg80211_registered_device *rdev;
2660
2661 ASSERT_RTNL();
2662
2663 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2664 if (wiphy == &rdev->wiphy)
2665 continue;
2666 wiphy_share_dfs_chan_state(wiphy, &rdev->wiphy);
2667 }
2668}
2669
Luis R. Rodriguez30a548c2009-05-02 01:17:27 -04002670/* This processes *all* regulatory hints */
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08002671static void reg_process_hint(struct regulatory_request *reg_request)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002672{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002673 struct wiphy *wiphy = NULL;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002674 enum reg_request_treatment treatment;
Yu Zhao1db58522018-09-27 17:05:04 -06002675 enum nl80211_reg_initiator initiator = reg_request->initiator;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002676
Johannes Bergf4173762012-12-03 18:23:37 +01002677 if (reg_request->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002678 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
2679
Yu Zhao1db58522018-09-27 17:05:04 -06002680 switch (initiator) {
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002681 case NL80211_REGDOM_SET_BY_CORE:
Johannes Bergd34265a2015-10-15 13:05:55 +02002682 treatment = reg_process_hint_core(reg_request);
2683 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002684 case NL80211_REGDOM_SET_BY_USER:
Johannes Bergd34265a2015-10-15 13:05:55 +02002685 treatment = reg_process_hint_user(reg_request);
2686 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002687 case NL80211_REGDOM_SET_BY_DRIVER:
Ilan Peer772f0382014-01-14 15:17:23 +02002688 if (!wiphy)
2689 goto out_free;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08002690 treatment = reg_process_hint_driver(wiphy, reg_request);
2691 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002692 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Ilan Peer772f0382014-01-14 15:17:23 +02002693 if (!wiphy)
2694 goto out_free;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002695 treatment = reg_process_hint_country_ie(wiphy, reg_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002696 break;
2697 default:
Yu Zhao1db58522018-09-27 17:05:04 -06002698 WARN(1, "invalid initiator %d\n", initiator);
Ilan Peer772f0382014-01-14 15:17:23 +02002699 goto out_free;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08002700 }
2701
Johannes Bergd34265a2015-10-15 13:05:55 +02002702 if (treatment == REG_REQ_IGNORE)
2703 goto out_free;
2704
Johannes Berg480908a2015-10-15 12:58:58 +02002705 WARN(treatment != REG_REQ_OK && treatment != REG_REQ_ALREADY_SET,
2706 "unexpected treatment value %d\n", treatment);
2707
John Linville841b3512015-06-24 11:42:25 -04002708 /* This is required so that the orig_* parameters are saved.
2709 * NOTE: treatment must be set for any case that reaches here!
2710 */
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08002711 if (treatment == REG_REQ_ALREADY_SET && wiphy &&
Arik Nemtsovad932f02014-11-27 09:44:55 +02002712 wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Yu Zhao1db58522018-09-27 17:05:04 -06002713 wiphy_update_regulatory(wiphy, initiator);
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05302714 wiphy_all_share_dfs_chan_state(wiphy);
Arik Nemtsovad932f02014-11-27 09:44:55 +02002715 reg_check_channels();
2716 }
Ilan Peer772f0382014-01-14 15:17:23 +02002717
2718 return;
2719
2720out_free:
Arik Nemtsovc8883932014-04-21 20:39:34 -07002721 reg_free_request(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002722}
2723
Amar Singhalaced43ce2018-04-26 20:13:07 +03002724static void notify_self_managed_wiphys(struct regulatory_request *request)
2725{
2726 struct cfg80211_registered_device *rdev;
2727 struct wiphy *wiphy;
2728
2729 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2730 wiphy = &rdev->wiphy;
2731 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED &&
2732 request->initiator == NL80211_REGDOM_SET_BY_USER &&
2733 request->user_reg_hint_type ==
2734 NL80211_USER_REG_HINT_CELL_BASE)
2735 reg_call_notifier(wiphy, request);
2736 }
2737}
2738
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002739/*
2740 * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
2741 * Regulatory hints come on a first come first serve basis and we
2742 * must process each one atomically.
2743 */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002744static void reg_process_pending_hints(void)
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08002745{
Johannes Bergc492db32012-12-06 16:29:25 +01002746 struct regulatory_request *reg_request, *lr;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002747
Johannes Bergc492db32012-12-06 16:29:25 +01002748 lr = get_last_request();
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08002749
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002750 /* When last_request->processed becomes true this will be rescheduled */
Johannes Bergc492db32012-12-06 16:29:25 +01002751 if (lr && !lr->processed) {
Luis R. Rodriguez96cce122014-04-21 20:39:35 -07002752 reg_process_hint(lr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02002753 return;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002754 }
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002755
2756 spin_lock(&reg_requests_lock);
2757
2758 if (list_empty(&reg_requests_list)) {
2759 spin_unlock(&reg_requests_lock);
Johannes Berg5fe231e2013-05-08 21:45:15 +02002760 return;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002761 }
2762
2763 reg_request = list_first_entry(&reg_requests_list,
2764 struct regulatory_request,
2765 list);
2766 list_del_init(&reg_request->list);
2767
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002768 spin_unlock(&reg_requests_lock);
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08002769
Amar Singhalaced43ce2018-04-26 20:13:07 +03002770 notify_self_managed_wiphys(reg_request);
Arik Nemtsovef51fb12015-01-07 16:47:20 +02002771
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08002772 reg_process_hint(reg_request);
Ben2e54a682015-03-12 09:37:34 -04002773
2774 lr = get_last_request();
2775
2776 spin_lock(&reg_requests_lock);
2777 if (!list_empty(&reg_requests_list) && lr && lr->processed)
2778 schedule_work(&reg_work);
2779 spin_unlock(&reg_requests_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002780}
2781
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002782/* Processes beacon hints -- this has nothing to do with country IEs */
2783static void reg_process_pending_beacon_hints(void)
2784{
Johannes Berg79c97e92009-07-07 03:56:12 +02002785 struct cfg80211_registered_device *rdev;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002786 struct reg_beacon *pending_beacon, *tmp;
2787
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002788 /* This goes through the _pending_ beacon list */
2789 spin_lock_bh(&reg_pending_beacons_lock);
2790
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002791 list_for_each_entry_safe(pending_beacon, tmp,
2792 &reg_pending_beacons, list) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002793 list_del_init(&pending_beacon->list);
2794
2795 /* Applies the beacon hint to current wiphys */
Johannes Berg79c97e92009-07-07 03:56:12 +02002796 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
2797 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002798
2799 /* Remembers the beacon hint for new wiphys or reg changes */
2800 list_add_tail(&pending_beacon->list, &reg_beacon_list);
2801 }
2802
2803 spin_unlock_bh(&reg_pending_beacons_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002804}
2805
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02002806static void reg_process_self_managed_hints(void)
2807{
2808 struct cfg80211_registered_device *rdev;
2809 struct wiphy *wiphy;
2810 const struct ieee80211_regdomain *tmp;
2811 const struct ieee80211_regdomain *regd;
Johannes Berg57fbcce2016-04-12 15:56:15 +02002812 enum nl80211_band band;
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02002813 struct regulatory_request request = {};
2814
2815 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2816 wiphy = &rdev->wiphy;
2817
2818 spin_lock(&reg_requests_lock);
2819 regd = rdev->requested_regd;
2820 rdev->requested_regd = NULL;
2821 spin_unlock(&reg_requests_lock);
2822
2823 if (regd == NULL)
2824 continue;
2825
2826 tmp = get_wiphy_regdom(wiphy);
2827 rcu_assign_pointer(wiphy->regd, regd);
2828 rcu_free_regdom(tmp);
2829
Johannes Berg57fbcce2016-04-12 15:56:15 +02002830 for (band = 0; band < NUM_NL80211_BANDS; band++)
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02002831 handle_band_custom(wiphy, wiphy->bands[band], regd);
2832
2833 reg_process_ht_flags(wiphy);
2834
2835 request.wiphy_idx = get_wiphy_idx(wiphy);
2836 request.alpha2[0] = regd->alpha2[0];
2837 request.alpha2[1] = regd->alpha2[1];
2838 request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
2839
2840 nl80211_send_wiphy_reg_change_event(&request);
2841 }
2842
2843 reg_check_channels();
2844}
2845
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002846static void reg_todo(struct work_struct *work)
2847{
Johannes Berg5fe231e2013-05-08 21:45:15 +02002848 rtnl_lock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002849 reg_process_pending_hints();
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002850 reg_process_pending_beacon_hints();
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02002851 reg_process_self_managed_hints();
Johannes Berg5fe231e2013-05-08 21:45:15 +02002852 rtnl_unlock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002853}
2854
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002855static void queue_regulatory_request(struct regulatory_request *request)
2856{
Johannes Bergd4f2c882012-12-03 18:59:58 +01002857 request->alpha2[0] = toupper(request->alpha2[0]);
2858 request->alpha2[1] = toupper(request->alpha2[1]);
John W. Linvillec61029c2010-08-05 14:26:24 -04002859
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002860 spin_lock(&reg_requests_lock);
2861 list_add_tail(&request->list, &reg_requests_list);
2862 spin_unlock(&reg_requests_lock);
2863
2864 schedule_work(&reg_work);
2865}
2866
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002867/*
2868 * Core regulatory hint -- happens during cfg80211_init()
2869 * and when we restore regulatory settings.
2870 */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002871static int regulatory_hint_core(const char *alpha2)
2872{
2873 struct regulatory_request *request;
2874
Johannes Berg1a919312012-12-03 17:21:11 +01002875 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002876 if (!request)
2877 return -ENOMEM;
2878
2879 request->alpha2[0] = alpha2[0];
2880 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002881 request->initiator = NL80211_REGDOM_SET_BY_CORE;
Andrei Otcheretianski24f33e62018-09-05 08:06:12 +03002882 request->wiphy_idx = WIPHY_IDX_INVALID;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002883
Luis R. Rodriguez31e99722010-11-17 21:46:06 -08002884 queue_regulatory_request(request);
Luis R. Rodriguez5078b2e2009-05-13 17:04:42 -04002885
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002886 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002887}
2888
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002889/* User hints */
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002890int regulatory_hint_user(const char *alpha2,
2891 enum nl80211_user_reg_hint_type user_reg_hint_type)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002892{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002893 struct regulatory_request *request;
2894
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002895 if (WARN_ON(!alpha2))
2896 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002897
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002898 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2899 if (!request)
2900 return -ENOMEM;
2901
Johannes Bergf4173762012-12-03 18:23:37 +01002902 request->wiphy_idx = WIPHY_IDX_INVALID;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002903 request->alpha2[0] = alpha2[0];
2904 request->alpha2[1] = alpha2[1];
Luis R. Rodrigueze12822e2010-01-04 11:37:39 -05002905 request->initiator = NL80211_REGDOM_SET_BY_USER;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002906 request->user_reg_hint_type = user_reg_hint_type;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002907
Ilan peerc37722b2015-03-30 15:15:49 +03002908 /* Allow calling CRDA again */
Johannes Bergb6863032015-10-15 09:25:18 +02002909 reset_crda_timeouts();
Ilan peerc37722b2015-03-30 15:15:49 +03002910
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002911 queue_regulatory_request(request);
2912
2913 return 0;
2914}
2915
Ilan peer05050752015-03-04 00:32:06 -05002916int regulatory_hint_indoor(bool is_indoor, u32 portid)
Ilan Peer52616f22014-02-25 16:26:00 +02002917{
Ilan peer05050752015-03-04 00:32:06 -05002918 spin_lock(&reg_indoor_lock);
Ilan Peer52616f22014-02-25 16:26:00 +02002919
Ilan peer05050752015-03-04 00:32:06 -05002920 /* It is possible that more than one user space process is trying to
2921 * configure the indoor setting. To handle such cases, clear the indoor
2922 * setting in case that some process does not think that the device
2923 * is operating in an indoor environment. In addition, if a user space
2924 * process indicates that it is controlling the indoor setting, save its
2925 * portid, i.e., make it the owner.
2926 */
2927 reg_is_indoor = is_indoor;
2928 if (reg_is_indoor) {
2929 if (!reg_is_indoor_portid)
2930 reg_is_indoor_portid = portid;
2931 } else {
2932 reg_is_indoor_portid = 0;
2933 }
Ilan Peer52616f22014-02-25 16:26:00 +02002934
Ilan peer05050752015-03-04 00:32:06 -05002935 spin_unlock(&reg_indoor_lock);
2936
2937 if (!is_indoor)
2938 reg_check_channels();
Ilan Peer52616f22014-02-25 16:26:00 +02002939
2940 return 0;
2941}
2942
Ilan peer05050752015-03-04 00:32:06 -05002943void regulatory_netlink_notify(u32 portid)
2944{
2945 spin_lock(&reg_indoor_lock);
2946
2947 if (reg_is_indoor_portid != portid) {
2948 spin_unlock(&reg_indoor_lock);
2949 return;
2950 }
2951
2952 reg_is_indoor = false;
2953 reg_is_indoor_portid = 0;
2954
2955 spin_unlock(&reg_indoor_lock);
2956
2957 reg_check_channels();
2958}
2959
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002960/* Driver hints */
2961int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
2962{
2963 struct regulatory_request *request;
2964
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002965 if (WARN_ON(!alpha2 || !wiphy))
2966 return -EINVAL;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002967
Luis R. Rodriguez4f7b9142013-12-14 20:09:06 +01002968 wiphy->regulatory_flags &= ~REGULATORY_CUSTOM_REG;
2969
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002970 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2971 if (!request)
2972 return -ENOMEM;
2973
2974 request->wiphy_idx = get_wiphy_idx(wiphy);
2975
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002976 request->alpha2[0] = alpha2[0];
2977 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002978 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002979
Ilan peerc37722b2015-03-30 15:15:49 +03002980 /* Allow calling CRDA again */
Johannes Bergb6863032015-10-15 09:25:18 +02002981 reset_crda_timeouts();
Ilan peerc37722b2015-03-30 15:15:49 +03002982
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002983 queue_regulatory_request(request);
2984
2985 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002986}
2987EXPORT_SYMBOL(regulatory_hint);
2988
Johannes Berg57fbcce2016-04-12 15:56:15 +02002989void regulatory_hint_country_ie(struct wiphy *wiphy, enum nl80211_band band,
Luis R. Rodriguez789fd032013-10-04 18:07:24 -07002990 const u8 *country_ie, u8 country_ie_len)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002991{
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002992 char alpha2[2];
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002993 enum environment_cap env = ENVIRON_ANY;
Johannes Bergdb2424c2013-05-10 19:07:52 +02002994 struct regulatory_request *request = NULL, *lr;
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05002995
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002996 /* IE len must be evenly divisible by 2 */
2997 if (country_ie_len & 0x01)
Johannes Bergdb2424c2013-05-10 19:07:52 +02002998 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002999
3000 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Bergdb2424c2013-05-10 19:07:52 +02003001 return;
3002
3003 request = kzalloc(sizeof(*request), GFP_KERNEL);
3004 if (!request)
3005 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003006
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003007 alpha2[0] = country_ie[0];
3008 alpha2[1] = country_ie[1];
3009
3010 if (country_ie[2] == 'I')
3011 env = ENVIRON_INDOOR;
3012 else if (country_ie[2] == 'O')
3013 env = ENVIRON_OUTDOOR;
3014
Johannes Bergdb2424c2013-05-10 19:07:52 +02003015 rcu_read_lock();
3016 lr = get_last_request();
3017
3018 if (unlikely(!lr))
3019 goto out;
3020
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003021 /*
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07003022 * We will run this only upon a successful connection on cfg80211.
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07003023 * We leave conflict resolution to the workqueue, where can hold
Johannes Berg5fe231e2013-05-08 21:45:15 +02003024 * the RTNL.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003025 */
Johannes Bergc492db32012-12-06 16:29:25 +01003026 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
3027 lr->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07003028 goto out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003029
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003030 request->wiphy_idx = get_wiphy_idx(wiphy);
John W. Linville4f366c52010-07-15 14:57:33 -04003031 request->alpha2[0] = alpha2[0];
3032 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04003033 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003034 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003035
Ilan peerc37722b2015-03-30 15:15:49 +03003036 /* Allow calling CRDA again */
Johannes Bergb6863032015-10-15 09:25:18 +02003037 reset_crda_timeouts();
Ilan peerc37722b2015-03-30 15:15:49 +03003038
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003039 queue_regulatory_request(request);
Johannes Bergdb2424c2013-05-10 19:07:52 +02003040 request = NULL;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003041out:
Johannes Bergdb2424c2013-05-10 19:07:52 +02003042 kfree(request);
3043 rcu_read_unlock();
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003044}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003045
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003046static void restore_alpha2(char *alpha2, bool reset_user)
3047{
3048 /* indicates there is no alpha2 to consider for restoration */
3049 alpha2[0] = '9';
3050 alpha2[1] = '7';
3051
3052 /* The user setting has precedence over the module parameter */
3053 if (is_user_regdom_saved()) {
3054 /* Unless we're asked to ignore it and reset it */
3055 if (reset_user) {
Johannes Bergc799ba62015-12-11 15:31:10 +01003056 pr_debug("Restoring regulatory settings including user preference\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003057 user_alpha2[0] = '9';
3058 user_alpha2[1] = '7';
3059
3060 /*
3061 * If we're ignoring user settings, we still need to
3062 * check the module parameter to ensure we put things
3063 * back as they were for a full restore.
3064 */
3065 if (!is_world_regdom(ieee80211_regdom)) {
Johannes Bergc799ba62015-12-11 15:31:10 +01003066 pr_debug("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
3067 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003068 alpha2[0] = ieee80211_regdom[0];
3069 alpha2[1] = ieee80211_regdom[1];
3070 }
3071 } else {
Johannes Bergc799ba62015-12-11 15:31:10 +01003072 pr_debug("Restoring regulatory settings while preserving user preference for: %c%c\n",
3073 user_alpha2[0], user_alpha2[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003074 alpha2[0] = user_alpha2[0];
3075 alpha2[1] = user_alpha2[1];
3076 }
3077 } else if (!is_world_regdom(ieee80211_regdom)) {
Johannes Bergc799ba62015-12-11 15:31:10 +01003078 pr_debug("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
3079 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003080 alpha2[0] = ieee80211_regdom[0];
3081 alpha2[1] = ieee80211_regdom[1];
3082 } else
Johannes Bergc799ba62015-12-11 15:31:10 +01003083 pr_debug("Restoring regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003084}
3085
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303086static void restore_custom_reg_settings(struct wiphy *wiphy)
3087{
3088 struct ieee80211_supported_band *sband;
Johannes Berg57fbcce2016-04-12 15:56:15 +02003089 enum nl80211_band band;
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303090 struct ieee80211_channel *chan;
3091 int i;
3092
Johannes Berg57fbcce2016-04-12 15:56:15 +02003093 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303094 sband = wiphy->bands[band];
3095 if (!sband)
3096 continue;
3097 for (i = 0; i < sband->n_channels; i++) {
3098 chan = &sband->channels[i];
3099 chan->flags = chan->orig_flags;
3100 chan->max_antenna_gain = chan->orig_mag;
3101 chan->max_power = chan->orig_mpwr;
Paul Stewart899852a2012-08-01 16:54:42 -07003102 chan->beacon_found = false;
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303103 }
3104 }
3105}
3106
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003107/*
3108 * Restoring regulatory settings involves ingoring any
3109 * possibly stale country IE information and user regulatory
3110 * settings if so desired, this includes any beacon hints
3111 * learned as we could have traveled outside to another country
3112 * after disconnection. To restore regulatory settings we do
3113 * exactly what we did at bootup:
3114 *
3115 * - send a core regulatory hint
3116 * - send a user regulatory hint if applicable
3117 *
3118 * Device drivers that send a regulatory hint for a specific country
3119 * keep their own regulatory domain on wiphy->regd so that does does
3120 * not need to be remembered.
3121 */
3122static void restore_regulatory_settings(bool reset_user)
3123{
3124 char alpha2[2];
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08003125 char world_alpha2[2];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003126 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003127 LIST_HEAD(tmp_reg_req_list);
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303128 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003129
Johannes Berg5fe231e2013-05-08 21:45:15 +02003130 ASSERT_RTNL();
3131
Ilan peer05050752015-03-04 00:32:06 -05003132 /*
3133 * Clear the indoor setting in case that it is not controlled by user
3134 * space, as otherwise there is no guarantee that the device is still
3135 * operating in an indoor environment.
3136 */
3137 spin_lock(&reg_indoor_lock);
3138 if (reg_is_indoor && !reg_is_indoor_portid) {
3139 reg_is_indoor = false;
3140 reg_check_channels();
3141 }
3142 spin_unlock(&reg_indoor_lock);
Ilan Peer52616f22014-02-25 16:26:00 +02003143
Johannes Berg2d319862013-01-09 12:01:38 +01003144 reset_regdomains(true, &world_regdom);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003145 restore_alpha2(alpha2, reset_user);
3146
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003147 /*
3148 * If there's any pending requests we simply
3149 * stash them to a temporary pending queue and
3150 * add then after we've restored regulatory
3151 * settings.
3152 */
3153 spin_lock(&reg_requests_lock);
Ilan peereeca9fc2015-03-04 00:32:07 -05003154 list_splice_tail_init(&reg_requests_list, &tmp_reg_req_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003155 spin_unlock(&reg_requests_lock);
3156
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003157 /* Clear beacon hints */
3158 spin_lock_bh(&reg_pending_beacons_lock);
Johannes Bergfea9bce2012-12-03 17:32:01 +01003159 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
3160 list_del(&reg_beacon->list);
3161 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003162 }
3163 spin_unlock_bh(&reg_pending_beacons_lock);
3164
Johannes Bergfea9bce2012-12-03 17:32:01 +01003165 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
3166 list_del(&reg_beacon->list);
3167 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003168 }
3169
3170 /* First restore to the basic regulatory settings */
Johannes Berg379b82f2012-12-06 15:44:07 +01003171 world_alpha2[0] = cfg80211_world_regdom->alpha2[0];
3172 world_alpha2[1] = cfg80211_world_regdom->alpha2[1];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003173
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303174 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003175 if (rdev->wiphy.regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
3176 continue;
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01003177 if (rdev->wiphy.regulatory_flags & REGULATORY_CUSTOM_REG)
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05303178 restore_custom_reg_settings(&rdev->wiphy);
3179 }
3180
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08003181 regulatory_hint_core(world_alpha2);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003182
3183 /*
3184 * This restores the ieee80211_regdom module parameter
3185 * preference or the last user requested regulatory
3186 * settings, user regulatory settings takes precedence.
3187 */
3188 if (is_an_alpha2(alpha2))
Maciej S. Szmigiero549cc1c2015-09-02 19:00:31 +02003189 regulatory_hint_user(alpha2, NL80211_USER_REG_HINT_USER);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003190
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003191 spin_lock(&reg_requests_lock);
Johannes Berg11cff962012-12-03 18:56:41 +01003192 list_splice_tail_init(&tmp_reg_req_list, &reg_requests_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003193 spin_unlock(&reg_requests_lock);
3194
Johannes Bergc799ba62015-12-11 15:31:10 +01003195 pr_debug("Kicking the queue\n");
Luis R. Rodriguez14609552011-04-05 10:49:03 -07003196
3197 schedule_work(&reg_work);
3198}
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003199
Rajeev Kumar Sirasanagandla74178442018-07-10 18:46:13 +05303200static bool is_wiphy_all_set_reg_flag(enum ieee80211_regulatory_flags flag)
3201{
3202 struct cfg80211_registered_device *rdev;
3203 struct wireless_dev *wdev;
3204
3205 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
3206 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
3207 wdev_lock(wdev);
3208 if (!(wdev->wiphy->regulatory_flags & flag)) {
3209 wdev_unlock(wdev);
3210 return false;
3211 }
3212 wdev_unlock(wdev);
3213 }
3214 }
3215
3216 return true;
3217}
3218
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003219void regulatory_hint_disconnect(void)
3220{
Rajeev Kumar Sirasanagandla74178442018-07-10 18:46:13 +05303221 /* Restore of regulatory settings is not required when wiphy(s)
3222 * ignore IE from connected access point but clearance of beacon hints
3223 * is required when wiphy(s) supports beacon hints.
3224 */
3225 if (is_wiphy_all_set_reg_flag(REGULATORY_COUNTRY_IE_IGNORE)) {
3226 struct reg_beacon *reg_beacon, *btmp;
3227
3228 if (is_wiphy_all_set_reg_flag(REGULATORY_DISABLE_BEACON_HINTS))
3229 return;
3230
3231 spin_lock_bh(&reg_pending_beacons_lock);
3232 list_for_each_entry_safe(reg_beacon, btmp,
3233 &reg_pending_beacons, list) {
3234 list_del(&reg_beacon->list);
3235 kfree(reg_beacon);
3236 }
3237 spin_unlock_bh(&reg_pending_beacons_lock);
3238
3239 list_for_each_entry_safe(reg_beacon, btmp,
3240 &reg_beacon_list, list) {
3241 list_del(&reg_beacon->list);
3242 kfree(reg_beacon);
3243 }
3244
3245 return;
3246 }
3247
Johannes Bergc799ba62015-12-11 15:31:10 +01003248 pr_debug("All devices are disconnected, going to restore regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05003249 restore_regulatory_settings(false);
3250}
3251
Alexei Avshalom Lazar9cf0a0b2018-08-13 15:33:00 +03003252static bool freq_is_chan_12_13_14(u32 freq)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003253{
Johannes Berg57fbcce2016-04-12 15:56:15 +02003254 if (freq == ieee80211_channel_to_frequency(12, NL80211_BAND_2GHZ) ||
3255 freq == ieee80211_channel_to_frequency(13, NL80211_BAND_2GHZ) ||
3256 freq == ieee80211_channel_to_frequency(14, NL80211_BAND_2GHZ))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003257 return true;
3258 return false;
3259}
3260
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08003261static bool pending_reg_beacon(struct ieee80211_channel *beacon_chan)
3262{
3263 struct reg_beacon *pending_beacon;
3264
3265 list_for_each_entry(pending_beacon, &reg_pending_beacons, list)
3266 if (beacon_chan->center_freq ==
3267 pending_beacon->chan.center_freq)
3268 return true;
3269 return false;
3270}
3271
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003272int regulatory_hint_found_beacon(struct wiphy *wiphy,
3273 struct ieee80211_channel *beacon_chan,
3274 gfp_t gfp)
3275{
3276 struct reg_beacon *reg_beacon;
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08003277 bool processing;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003278
Johannes Berg1a919312012-12-03 17:21:11 +01003279 if (beacon_chan->beacon_found ||
3280 beacon_chan->flags & IEEE80211_CHAN_RADAR ||
Johannes Berg57fbcce2016-04-12 15:56:15 +02003281 (beacon_chan->band == NL80211_BAND_2GHZ &&
Johannes Berg1a919312012-12-03 17:21:11 +01003282 !freq_is_chan_12_13_14(beacon_chan->center_freq)))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003283 return 0;
3284
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08003285 spin_lock_bh(&reg_pending_beacons_lock);
3286 processing = pending_reg_beacon(beacon_chan);
3287 spin_unlock_bh(&reg_pending_beacons_lock);
3288
3289 if (processing)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003290 return 0;
3291
3292 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
3293 if (!reg_beacon)
3294 return -ENOMEM;
3295
Johannes Bergc799ba62015-12-11 15:31:10 +01003296 pr_debug("Found new beacon on frequency: %d MHz (Ch %d) on %s\n",
3297 beacon_chan->center_freq,
3298 ieee80211_frequency_to_channel(beacon_chan->center_freq),
3299 wiphy_name(wiphy));
Luis R. Rodriguez4113f752010-01-04 11:50:11 -05003300
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003301 memcpy(&reg_beacon->chan, beacon_chan,
Johannes Berg1a919312012-12-03 17:21:11 +01003302 sizeof(struct ieee80211_channel));
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003303
3304 /*
3305 * Since we can be called from BH or and non-BH context
3306 * we must use spin_lock_bh()
3307 */
3308 spin_lock_bh(&reg_pending_beacons_lock);
3309 list_add_tail(&reg_beacon->list, &reg_pending_beacons);
3310 spin_unlock_bh(&reg_pending_beacons_lock);
3311
3312 schedule_work(&reg_work);
3313
3314 return 0;
3315}
3316
Johannes Berga3d2eaf2008-09-15 11:10:52 +02003317static void print_rd_rules(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003318{
3319 unsigned int i;
Johannes Berga3d2eaf2008-09-15 11:10:52 +02003320 const struct ieee80211_reg_rule *reg_rule = NULL;
3321 const struct ieee80211_freq_range *freq_range = NULL;
3322 const struct ieee80211_power_rule *power_rule = NULL;
Janusz Dziedzic089027e2014-02-21 19:46:12 +01003323 char bw[32], cac_time[32];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003324
Dave Young94c4fd62015-11-15 15:31:05 +08003325 pr_debug(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003326
3327 for (i = 0; i < rd->n_reg_rules; i++) {
3328 reg_rule = &rd->reg_rules[i];
3329 freq_range = &reg_rule->freq_range;
3330 power_rule = &reg_rule->power_rule;
3331
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01003332 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
3333 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
3334 freq_range->max_bandwidth_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01003335 reg_get_max_bandwidth(rd, reg_rule));
3336 else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01003337 snprintf(bw, sizeof(bw), "%d KHz",
Janusz Dziedzic97524822014-01-30 09:52:20 +01003338 freq_range->max_bandwidth_khz);
3339
Janusz Dziedzic089027e2014-02-21 19:46:12 +01003340 if (reg_rule->flags & NL80211_RRF_DFS)
3341 scnprintf(cac_time, sizeof(cac_time), "%u s",
3342 reg_rule->dfs_cac_ms/1000);
3343 else
3344 scnprintf(cac_time, sizeof(cac_time), "N/A");
3345
3346
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003347 /*
3348 * There may not be documentation for max antenna gain
3349 * in certain regions
3350 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003351 if (power_rule->max_antenna_gain)
Dave Young94c4fd62015-11-15 15:31:05 +08003352 pr_debug(" (%d KHz - %d KHz @ %s), (%d mBi, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003353 freq_range->start_freq_khz,
3354 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01003355 bw,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003356 power_rule->max_antenna_gain,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01003357 power_rule->max_eirp,
3358 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003359 else
Dave Young94c4fd62015-11-15 15:31:05 +08003360 pr_debug(" (%d KHz - %d KHz @ %s), (N/A, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003361 freq_range->start_freq_khz,
3362 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01003363 bw,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01003364 power_rule->max_eirp,
3365 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003366 }
3367}
3368
Luis R. Rodriguez4c7d3982013-11-13 18:54:02 +01003369bool reg_supported_dfs_region(enum nl80211_dfs_regions dfs_region)
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07003370{
3371 switch (dfs_region) {
3372 case NL80211_DFS_UNSET:
3373 case NL80211_DFS_FCC:
3374 case NL80211_DFS_ETSI:
3375 case NL80211_DFS_JP:
3376 return true;
3377 default:
Colin Ian King4a22b002018-05-11 14:25:42 +01003378 pr_debug("Ignoring unknown DFS master region: %d\n", dfs_region);
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07003379 return false;
3380 }
3381}
3382
Johannes Berga3d2eaf2008-09-15 11:10:52 +02003383static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003384{
Johannes Bergc492db32012-12-06 16:29:25 +01003385 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003386
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003387 if (is_intersected_alpha2(rd->alpha2)) {
Johannes Bergc492db32012-12-06 16:29:25 +01003388 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Johannes Berg79c97e92009-07-07 03:56:12 +02003389 struct cfg80211_registered_device *rdev;
Johannes Bergc492db32012-12-06 16:29:25 +01003390 rdev = cfg80211_rdev_by_wiphy_idx(lr->wiphy_idx);
Johannes Berg79c97e92009-07-07 03:56:12 +02003391 if (rdev) {
Dave Young94c4fd62015-11-15 15:31:05 +08003392 pr_debug("Current regulatory domain updated by AP to: %c%c\n",
Johannes Berg79c97e92009-07-07 03:56:12 +02003393 rdev->country_ie_alpha2[0],
3394 rdev->country_ie_alpha2[1]);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003395 } else
Dave Young94c4fd62015-11-15 15:31:05 +08003396 pr_debug("Current regulatory domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003397 } else
Dave Young94c4fd62015-11-15 15:31:05 +08003398 pr_debug("Current regulatory domain intersected:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01003399 } else if (is_world_regdom(rd->alpha2)) {
Dave Young94c4fd62015-11-15 15:31:05 +08003400 pr_debug("World regulatory domain updated:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01003401 } else {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003402 if (is_unknown_alpha2(rd->alpha2))
Dave Young94c4fd62015-11-15 15:31:05 +08003403 pr_debug("Regulatory domain changed to driver built-in settings (unknown country)\n");
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003404 else {
Johannes Bergc492db32012-12-06 16:29:25 +01003405 if (reg_request_cell_base(lr))
Dave Young94c4fd62015-11-15 15:31:05 +08003406 pr_debug("Regulatory domain changed to country: %c%c by Cell Station\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003407 rd->alpha2[0], rd->alpha2[1]);
3408 else
Dave Young94c4fd62015-11-15 15:31:05 +08003409 pr_debug("Regulatory domain changed to country: %c%c\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003410 rd->alpha2[0], rd->alpha2[1]);
3411 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003412 }
Johannes Berg1a919312012-12-03 17:21:11 +01003413
Dave Young94c4fd62015-11-15 15:31:05 +08003414 pr_debug(" DFS Master region: %s", reg_dfs_region_str(rd->dfs_region));
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003415 print_rd_rules(rd);
3416}
3417
Johannes Berg2df78162008-10-28 16:49:41 +01003418static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003419{
Dave Young94c4fd62015-11-15 15:31:05 +08003420 pr_debug("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003421 print_rd_rules(rd);
3422}
3423
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003424static int reg_set_rd_core(const struct ieee80211_regdomain *rd)
3425{
3426 if (!is_world_regdom(rd->alpha2))
3427 return -EINVAL;
3428 update_world_regdomain(rd);
3429 return 0;
3430}
3431
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003432static int reg_set_rd_user(const struct ieee80211_regdomain *rd,
3433 struct regulatory_request *user_request)
3434{
3435 const struct ieee80211_regdomain *intersected_rd = NULL;
3436
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003437 if (!regdom_changes(rd->alpha2))
3438 return -EALREADY;
3439
3440 if (!is_valid_rd(rd)) {
Dave Young94c4fd62015-11-15 15:31:05 +08003441 pr_err("Invalid regulatory domain detected: %c%c\n",
3442 rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003443 print_regdomain_info(rd);
3444 return -EINVAL;
3445 }
3446
3447 if (!user_request->intersect) {
3448 reset_regdomains(false, rd);
3449 return 0;
3450 }
3451
3452 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
3453 if (!intersected_rd)
3454 return -EINVAL;
3455
3456 kfree(rd);
3457 rd = NULL;
3458 reset_regdomains(false, intersected_rd);
3459
3460 return 0;
3461}
3462
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003463static int reg_set_rd_driver(const struct ieee80211_regdomain *rd,
3464 struct regulatory_request *driver_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003465{
Johannes Berge9763c32012-12-03 16:59:46 +01003466 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07003467 const struct ieee80211_regdomain *intersected_rd = NULL;
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003468 const struct ieee80211_regdomain *tmp;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05003469 struct wiphy *request_wiphy;
Johannes Berg6913b492012-12-04 00:48:59 +01003470
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003471 if (is_world_regdom(rd->alpha2))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003472 return -EINVAL;
3473
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003474 if (!regdom_changes(rd->alpha2))
3475 return -EALREADY;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003476
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08003477 if (!is_valid_rd(rd)) {
Dave Young94c4fd62015-11-15 15:31:05 +08003478 pr_err("Invalid regulatory domain detected: %c%c\n",
3479 rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08003480 print_regdomain_info(rd);
3481 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003482 }
3483
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003484 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx);
Johannes Berg922ec582015-10-15 09:12:49 +02003485 if (!request_wiphy)
Johannes Bergde3584b2011-11-21 10:44:00 +01003486 return -ENODEV;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05003487
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003488 if (!driver_request->intersect) {
Luis R. Rodriguez558f6d32009-06-08 18:54:37 -07003489 if (request_wiphy->regd)
3490 return -EALREADY;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08003491
Johannes Berge9763c32012-12-03 16:59:46 +01003492 regd = reg_copy_regd(rd);
3493 if (IS_ERR(regd))
3494 return PTR_ERR(regd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08003495
Johannes Berg458f4f92012-12-06 15:47:38 +01003496 rcu_assign_pointer(request_wiphy->regd, regd);
Johannes Berg379b82f2012-12-06 15:44:07 +01003497 reset_regdomains(false, rd);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08003498 return 0;
3499 }
3500
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003501 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
3502 if (!intersected_rd)
3503 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08003504
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003505 /*
3506 * We can trash what CRDA provided now.
3507 * However if a driver requested this specific regulatory
3508 * domain we keep it for its private use
3509 */
3510 tmp = get_wiphy_regdom(request_wiphy);
3511 rcu_assign_pointer(request_wiphy->regd, rd);
3512 rcu_free_regdom(tmp);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08003513
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003514 rd = NULL;
Larry Fingerb7566fc2013-02-04 15:33:44 -06003515
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003516 reset_regdomains(false, intersected_rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08003517
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003518 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003519}
3520
Luis R. Rodriguez01992402013-11-05 09:18:17 -08003521static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
3522 struct regulatory_request *country_ie_request)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003523{
3524 struct wiphy *request_wiphy;
3525
3526 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
3527 !is_unknown_alpha2(rd->alpha2))
3528 return -EINVAL;
3529
3530 /*
3531 * Lets only bother proceeding on the same alpha2 if the current
3532 * rd is non static (it means CRDA was present and was used last)
3533 * and the pending request came in from a country IE
3534 */
3535
3536 if (!is_valid_rd(rd)) {
Dave Young94c4fd62015-11-15 15:31:05 +08003537 pr_err("Invalid regulatory domain detected: %c%c\n",
3538 rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003539 print_regdomain_info(rd);
3540 return -EINVAL;
3541 }
3542
Luis R. Rodriguez01992402013-11-05 09:18:17 -08003543 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx);
Johannes Berg922ec582015-10-15 09:12:49 +02003544 if (!request_wiphy)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003545 return -ENODEV;
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003546
Luis R. Rodriguez01992402013-11-05 09:18:17 -08003547 if (country_ie_request->intersect)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003548 return -EINVAL;
3549
3550 reset_regdomains(false, rd);
3551 return 0;
3552}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003553
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003554/*
3555 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003556 * multiple drivers can be ironed out later. Caller must've already
Johannes Berg458f4f92012-12-06 15:47:38 +01003557 * kmalloc'd the rd structure.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05003558 */
Ilan peerc37722b2015-03-30 15:15:49 +03003559int set_regdom(const struct ieee80211_regdomain *rd,
3560 enum ieee80211_regd_source regd_src)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003561{
Johannes Bergc492db32012-12-06 16:29:25 +01003562 struct regulatory_request *lr;
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003563 bool user_reset = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003564 int r;
3565
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003566 if (!reg_is_valid_request(rd->alpha2)) {
3567 kfree(rd);
3568 return -EINVAL;
3569 }
3570
Ilan peerc37722b2015-03-30 15:15:49 +03003571 if (regd_src == REGD_SOURCE_CRDA)
Johannes Bergb6863032015-10-15 09:25:18 +02003572 reset_crda_timeouts();
Ilan peerc37722b2015-03-30 15:15:49 +03003573
Johannes Bergc492db32012-12-06 16:29:25 +01003574 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07003575
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003576 /* Note that this doesn't update the wiphys, this is done below */
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003577 switch (lr->initiator) {
3578 case NL80211_REGDOM_SET_BY_CORE:
3579 r = reg_set_rd_core(rd);
3580 break;
3581 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003582 r = reg_set_rd_user(rd, lr);
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003583 user_reset = true;
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08003584 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003585 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08003586 r = reg_set_rd_driver(rd, lr);
3587 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003588 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez01992402013-11-05 09:18:17 -08003589 r = reg_set_rd_country_ie(rd, lr);
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003590 break;
3591 default:
3592 WARN(1, "invalid initiator %d\n", lr->initiator);
Ola Olsson09d11802015-12-13 19:12:03 +01003593 kfree(rd);
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08003594 return -EINVAL;
3595 }
3596
Johannes Bergd2372b32008-10-24 20:32:20 +02003597 if (r) {
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003598 switch (r) {
3599 case -EALREADY:
Kalle Valo95908532012-07-12 15:33:58 +03003600 reg_set_request_processed();
Janusz Dziedzic092008a2014-02-14 08:54:00 +01003601 break;
3602 default:
3603 /* Back to world regulatory in case of errors */
3604 restore_regulatory_settings(user_reset);
3605 }
Kalle Valo95908532012-07-12 15:33:58 +03003606
Johannes Bergd2372b32008-10-24 20:32:20 +02003607 kfree(rd);
Johannes Berg38fd2142013-05-10 19:17:17 +02003608 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02003609 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003610
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003611 /* This would make this whole thing pointless */
Johannes Berg38fd2142013-05-10 19:17:17 +02003612 if (WARN_ON(!lr->intersect && rd != get_cfg80211_regdom()))
3613 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003614
3615 /* update all wiphys now with the new established regulatory domain */
Johannes Bergc492db32012-12-06 16:29:25 +01003616 update_all_wiphy_regulatory(lr->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003617
Johannes Berg458f4f92012-12-06 15:47:38 +01003618 print_regdomain(get_cfg80211_regdom());
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003619
Johannes Bergc492db32012-12-06 16:29:25 +01003620 nl80211_send_reg_change_event(lr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04003621
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08003622 reg_set_request_processed();
3623
Johannes Berg38fd2142013-05-10 19:17:17 +02003624 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003625}
3626
Arik Nemtsov2c3e8612015-01-07 16:47:19 +02003627static int __regulatory_set_wiphy_regd(struct wiphy *wiphy,
3628 struct ieee80211_regdomain *rd)
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003629{
3630 const struct ieee80211_regdomain *regd;
3631 const struct ieee80211_regdomain *prev_regd;
3632 struct cfg80211_registered_device *rdev;
3633
3634 if (WARN_ON(!wiphy || !rd))
3635 return -EINVAL;
3636
3637 if (WARN(!(wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED),
3638 "wiphy should have REGULATORY_WIPHY_SELF_MANAGED\n"))
3639 return -EPERM;
3640
3641 if (WARN(!is_valid_rd(rd), "Invalid regulatory domain detected\n")) {
3642 print_regdomain_info(rd);
3643 return -EINVAL;
3644 }
3645
3646 regd = reg_copy_regd(rd);
3647 if (IS_ERR(regd))
3648 return PTR_ERR(regd);
3649
3650 rdev = wiphy_to_rdev(wiphy);
3651
3652 spin_lock(&reg_requests_lock);
3653 prev_regd = rdev->requested_regd;
3654 rdev->requested_regd = regd;
3655 spin_unlock(&reg_requests_lock);
3656
3657 kfree(prev_regd);
Arik Nemtsov2c3e8612015-01-07 16:47:19 +02003658 return 0;
3659}
3660
3661int regulatory_set_wiphy_regd(struct wiphy *wiphy,
3662 struct ieee80211_regdomain *rd)
3663{
3664 int ret = __regulatory_set_wiphy_regd(wiphy, rd);
3665
3666 if (ret)
3667 return ret;
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003668
3669 schedule_work(&reg_work);
3670 return 0;
3671}
3672EXPORT_SYMBOL(regulatory_set_wiphy_regd);
3673
Arik Nemtsov2c3e8612015-01-07 16:47:19 +02003674int regulatory_set_wiphy_regd_sync_rtnl(struct wiphy *wiphy,
3675 struct ieee80211_regdomain *rd)
3676{
3677 int ret;
3678
3679 ASSERT_RTNL();
3680
3681 ret = __regulatory_set_wiphy_regd(wiphy, rd);
3682 if (ret)
3683 return ret;
3684
3685 /* process the request immediately */
3686 reg_process_self_managed_hints();
3687 return 0;
3688}
3689EXPORT_SYMBOL(regulatory_set_wiphy_regd_sync_rtnl);
3690
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003691void wiphy_regulatory_register(struct wiphy *wiphy)
3692{
Amar Singhalaced43ce2018-04-26 20:13:07 +03003693 struct regulatory_request *lr = get_last_request();
Arik Nemtsov23df0b72013-07-21 16:36:48 +03003694
Amar Singhalaced43ce2018-04-26 20:13:07 +03003695 /* self-managed devices ignore beacon hints and country IE */
3696 if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) {
Jonathan Doronb0d7aa52014-12-15 19:26:00 +02003697 wiphy->regulatory_flags |= REGULATORY_DISABLE_BEACON_HINTS |
3698 REGULATORY_COUNTRY_IE_IGNORE;
3699
Amar Singhalaced43ce2018-04-26 20:13:07 +03003700 /*
3701 * The last request may have been received before this
3702 * registration call. Call the driver notifier if
3703 * initiator is USER and user type is CELL_BASE.
3704 */
3705 if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
3706 lr->user_reg_hint_type == NL80211_USER_REG_HINT_CELL_BASE)
3707 reg_call_notifier(wiphy, lr);
3708 }
3709
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003710 if (!reg_dev_ignore_cell_hint(wiphy))
3711 reg_num_devs_support_basehint++;
3712
Arik Nemtsov23df0b72013-07-21 16:36:48 +03003713 wiphy_update_regulatory(wiphy, lr->initiator);
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05303714 wiphy_all_share_dfs_chan_state(wiphy);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003715}
3716
Luis R. Rodriguezbfead082012-07-12 11:49:19 -07003717void wiphy_regulatory_deregister(struct wiphy *wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003718{
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04003719 struct wiphy *request_wiphy = NULL;
Johannes Bergc492db32012-12-06 16:29:25 +01003720 struct regulatory_request *lr;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05003721
Johannes Bergc492db32012-12-06 16:29:25 +01003722 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07003723
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003724 if (!reg_dev_ignore_cell_hint(wiphy))
3725 reg_num_devs_support_basehint--;
3726
Johannes Berg458f4f92012-12-06 15:47:38 +01003727 rcu_free_regdom(get_wiphy_regdom(wiphy));
Monam Agarwal34dd8862014-03-24 00:53:40 +05303728 RCU_INIT_POINTER(wiphy->regd, NULL);
Chris Wright0ef9ccd2009-04-24 14:09:31 -07003729
Johannes Bergc492db32012-12-06 16:29:25 +01003730 if (lr)
3731 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05003732
Chris Wright0ef9ccd2009-04-24 14:09:31 -07003733 if (!request_wiphy || request_wiphy != wiphy)
Johannes Berg38fd2142013-05-10 19:17:17 +02003734 return;
Chris Wright0ef9ccd2009-04-24 14:09:31 -07003735
Johannes Bergc492db32012-12-06 16:29:25 +01003736 lr->wiphy_idx = WIPHY_IDX_INVALID;
3737 lr->country_ie_env = ENVIRON_ANY;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003738}
3739
Ilan Peer174e0cd2014-02-23 09:13:01 +02003740/*
3741 * See http://www.fcc.gov/document/5-ghz-unlicensed-spectrum-unii, for
3742 * UNII band definitions
3743 */
3744int cfg80211_get_unii(int freq)
3745{
3746 /* UNII-1 */
3747 if (freq >= 5150 && freq <= 5250)
3748 return 0;
3749
3750 /* UNII-2A */
3751 if (freq > 5250 && freq <= 5350)
3752 return 1;
3753
3754 /* UNII-2B */
3755 if (freq > 5350 && freq <= 5470)
3756 return 2;
3757
3758 /* UNII-2C */
3759 if (freq > 5470 && freq <= 5725)
3760 return 3;
3761
3762 /* UNII-3 */
3763 if (freq > 5725 && freq <= 5825)
3764 return 4;
3765
3766 return -EINVAL;
3767}
3768
Ilan Peerc8866e52014-02-23 09:13:03 +02003769bool regulatory_indoor_allowed(void)
3770{
3771 return reg_is_indoor;
3772}
3773
Vasanthakumar Thiagarajanb35a51c2017-02-27 17:04:33 +05303774bool regulatory_pre_cac_allowed(struct wiphy *wiphy)
3775{
3776 const struct ieee80211_regdomain *regd = NULL;
3777 const struct ieee80211_regdomain *wiphy_regd = NULL;
3778 bool pre_cac_allowed = false;
3779
3780 rcu_read_lock();
3781
3782 regd = rcu_dereference(cfg80211_regdomain);
3783 wiphy_regd = rcu_dereference(wiphy->regd);
3784 if (!wiphy_regd) {
3785 if (regd->dfs_region == NL80211_DFS_ETSI)
3786 pre_cac_allowed = true;
3787
3788 rcu_read_unlock();
3789
3790 return pre_cac_allowed;
3791 }
3792
3793 if (regd->dfs_region == wiphy_regd->dfs_region &&
3794 wiphy_regd->dfs_region == NL80211_DFS_ETSI)
3795 pre_cac_allowed = true;
3796
3797 rcu_read_unlock();
3798
3799 return pre_cac_allowed;
3800}
3801
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05303802void regulatory_propagate_dfs_state(struct wiphy *wiphy,
3803 struct cfg80211_chan_def *chandef,
3804 enum nl80211_dfs_state dfs_state,
3805 enum nl80211_radar_event event)
3806{
3807 struct cfg80211_registered_device *rdev;
3808
3809 ASSERT_RTNL();
3810
3811 if (WARN_ON(!cfg80211_chandef_valid(chandef)))
3812 return;
3813
Vasanthakumar Thiagarajan89766722017-02-27 17:04:35 +05303814 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
3815 if (wiphy == &rdev->wiphy)
3816 continue;
3817
3818 if (!reg_dfs_domain_same(wiphy, &rdev->wiphy))
3819 continue;
3820
3821 if (!ieee80211_get_channel(&rdev->wiphy,
3822 chandef->chan->center_freq))
3823 continue;
3824
3825 cfg80211_set_dfs_state(&rdev->wiphy, chandef, dfs_state);
3826
3827 if (event == NL80211_RADAR_DETECTED ||
3828 event == NL80211_RADAR_CAC_FINISHED)
3829 cfg80211_sched_dfs_chan_update(rdev);
3830
3831 nl80211_radar_notify(rdev, chandef, event, NULL, GFP_KERNEL);
3832 }
3833}
3834
Johannes Bergd7be1022017-10-26 11:24:27 +02003835static int __init regulatory_init_db(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003836{
Johannes Bergd7be1022017-10-26 11:24:27 +02003837 int err;
Johannes Berg734366d2008-09-15 10:56:48 +02003838
Johannes Berg71e5e8862018-10-01 11:43:00 +02003839 /*
3840 * It's possible that - due to other bugs/issues - cfg80211
3841 * never called regulatory_init() below, or that it failed;
3842 * in that case, don't try to do any further work here as
3843 * it's doomed to lead to crashes.
3844 */
3845 if (IS_ERR_OR_NULL(reg_pdev))
3846 return -EINVAL;
3847
Johannes Berg90a53e42017-09-13 22:21:08 +02003848 err = load_builtin_regdb_keys();
3849 if (err)
3850 return err;
3851
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04003852 /* We always try to get an update for the static regdomain */
Johannes Berg458f4f92012-12-06 15:47:38 +01003853 err = regulatory_hint_core(cfg80211_world_regdom->alpha2);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05003854 if (err) {
Ola Olsson09d11802015-12-13 19:12:03 +01003855 if (err == -ENOMEM) {
3856 platform_device_unregister(reg_pdev);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05003857 return err;
Ola Olsson09d11802015-12-13 19:12:03 +01003858 }
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05003859 /*
3860 * N.B. kobject_uevent_env() can fail mainly for when we're out
3861 * memory which is handled and propagated appropriately above
3862 * but it can also fail during a netlink_broadcast() or during
3863 * early boot for call_usermodehelper(). For now treat these
3864 * errors as non-fatal.
3865 */
Joe Perchese9c02682010-11-16 19:56:49 -08003866 pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05003867 }
Johannes Berg734366d2008-09-15 10:56:48 +02003868
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04003869 /*
3870 * Finally, if the user set the module parameter treat it
3871 * as a user hint.
3872 */
3873 if (!is_world_regdom(ieee80211_regdom))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07003874 regulatory_hint_user(ieee80211_regdom,
3875 NL80211_USER_REG_HINT_USER);
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04003876
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003877 return 0;
3878}
Johannes Bergd7be1022017-10-26 11:24:27 +02003879#ifndef MODULE
3880late_initcall(regulatory_init_db);
3881#endif
3882
3883int __init regulatory_init(void)
3884{
3885 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
3886 if (IS_ERR(reg_pdev))
3887 return PTR_ERR(reg_pdev);
3888
3889 spin_lock_init(&reg_requests_lock);
3890 spin_lock_init(&reg_pending_beacons_lock);
3891 spin_lock_init(&reg_indoor_lock);
3892
3893 rcu_assign_pointer(cfg80211_regdomain, cfg80211_world_regdom);
3894
3895 user_alpha2[0] = '9';
3896 user_alpha2[1] = '7';
3897
3898#ifdef MODULE
3899 return regulatory_init_db();
3900#else
3901 return 0;
3902#endif
3903}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003904
Johannes Berg1a919312012-12-03 17:21:11 +01003905void regulatory_exit(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003906{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003907 struct regulatory_request *reg_request, *tmp;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003908 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003909
3910 cancel_work_sync(&reg_work);
Johannes Bergb6863032015-10-15 09:25:18 +02003911 cancel_crda_timeout_sync();
Arik Nemtsovad932f02014-11-27 09:44:55 +02003912 cancel_delayed_work_sync(&reg_check_chans);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003913
Johannes Berg9027b142012-12-03 17:59:24 +01003914 /* Lock to suppress warnings */
Johannes Berg38fd2142013-05-10 19:17:17 +02003915 rtnl_lock();
Johannes Berg379b82f2012-12-06 15:44:07 +01003916 reset_regdomains(true, NULL);
Johannes Berg38fd2142013-05-10 19:17:17 +02003917 rtnl_unlock();
Johannes Berg734366d2008-09-15 10:56:48 +02003918
Luis R. Rodriguez58ebacc2011-11-08 14:28:06 -08003919 dev_set_uevent_suppress(&reg_pdev->dev, true);
Johannes Bergf6037d02008-10-21 11:01:33 +02003920
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07003921 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02003922
Johannes Bergfea9bce2012-12-03 17:32:01 +01003923 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
3924 list_del(&reg_beacon->list);
3925 kfree(reg_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05003926 }
3927
Johannes Bergfea9bce2012-12-03 17:32:01 +01003928 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
3929 list_del(&reg_beacon->list);
3930 kfree(reg_beacon);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003931 }
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05003932
Johannes Bergfea9bce2012-12-03 17:32:01 +01003933 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
3934 list_del(&reg_request->list);
3935 kfree(reg_request);
Johannes Berg8318d782008-01-24 19:38:38 +01003936 }
Johannes Berg007f6c52015-10-15 11:22:58 +02003937
3938 if (!IS_ERR_OR_NULL(regdb))
3939 kfree(regdb);
Johannes Berg90a53e42017-09-13 22:21:08 +02003940
3941 free_regdb_keyring();
Johannes Berg8318d782008-01-24 19:38:38 +01003942}