blob: 558b0e3a02d8284c49de58d14833c13b444db5a2 [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 Berg8318d782008-01-24 19:38:38 +01006 *
Luis R. Rodriguez3b77d5e2011-12-20 12:23:38 -08007 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Johannes Berg8318d782008-01-24 19:38:38 +010018 */
19
Luis R. Rodriguez3b77d5e2011-12-20 12:23:38 -080020
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070021/**
22 * DOC: Wireless regulatory infrastructure
Johannes Berg8318d782008-01-24 19:38:38 +010023 *
24 * The usual implementation is for a driver to read a device EEPROM to
25 * determine which regulatory domain it should be operating under, then
26 * looking up the allowable channels in a driver-local table and finally
27 * registering those channels in the wiphy structure.
28 *
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070029 * Another set of compliance enforcement is for drivers to use their
30 * own compliance limits which can be stored on the EEPROM. The host
31 * driver or firmware may ensure these are used.
32 *
33 * In addition to all this we provide an extra layer of regulatory
34 * conformance. For drivers which do not have any regulatory
35 * information CRDA provides the complete regulatory solution.
36 * For others it provides a community effort on further restrictions
37 * to enhance compliance.
38 *
39 * Note: When number of rules --> infinity we will not be able to
40 * index on alpha2 any more, instead we'll probably have to
41 * rely on some SHA1 checksum of the regdomain for example.
42 *
Johannes Berg8318d782008-01-24 19:38:38 +010043 */
Joe Perchese9c02682010-11-16 19:56:49 -080044
45#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
46
Johannes Berg8318d782008-01-24 19:38:38 +010047#include <linux/kernel.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040048#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070050#include <linux/list.h>
John W. Linvillec61029c2010-08-05 14:26:24 -040051#include <linux/ctype.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070052#include <linux/nl80211.h>
53#include <linux/platform_device.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040054#include <linux/moduleparam.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070055#include <net/cfg80211.h>
Johannes Berg8318d782008-01-24 19:38:38 +010056#include "core.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070057#include "reg.h"
John W. Linville3b377ea2009-12-18 17:59:01 -050058#include "regdb.h"
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040059#include "nl80211.h"
Johannes Berg8318d782008-01-24 19:38:38 +010060
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050061#ifdef CONFIG_CFG80211_REG_DEBUG
Joe Perches12c5ffb2011-07-29 14:51:25 -070062#define REG_DBG_PRINT(format, args...) \
63 printk(KERN_DEBUG pr_fmt(format), ##args)
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050064#else
John W. Linville82711952010-01-05 17:57:20 -050065#define REG_DBG_PRINT(args...)
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050066#endif
67
Ilan Peer52616f22014-02-25 16:26:00 +020068/**
69 * enum reg_request_treatment - regulatory request treatment
70 *
71 * @REG_REQ_OK: continue processing the regulatory request
72 * @REG_REQ_IGNORE: ignore the regulatory request
73 * @REG_REQ_INTERSECT: the regulatory domain resulting from this request should
74 * be intersected with the current one.
75 * @REG_REQ_ALREADY_SET: the regulatory request will not change the current
76 * regulatory settings, and no further processing is required.
77 * @REG_REQ_USER_HINT_HANDLED: a non alpha2 user hint was handled and no
78 * further processing is required, i.e., not need to update last_request
79 * etc. This should be used for user hints that do not provide an alpha2
80 * but some other type of regulatory hint, i.e., indoor operation.
81 */
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,
Ilan Peer52616f22014-02-25 16:26:00 +020087 REG_REQ_USER_HINT_HANDLED,
Johannes Berg2f922122012-12-03 17:54:55 +010088};
89
Luis R. Rodrigueza0429942011-11-28 16:47:15 -050090static struct regulatory_request core_request_world = {
91 .initiator = NL80211_REGDOM_SET_BY_CORE,
92 .alpha2[0] = '0',
93 .alpha2[1] = '0',
94 .intersect = false,
95 .processed = true,
96 .country_ie_env = ENVIRON_ANY,
97};
98
Johannes Berg38fd2142013-05-10 19:17:17 +020099/*
100 * Receipt of information from last regulatory request,
101 * protected by RTNL (and can be accessed with RCU protection)
102 */
Johannes Bergc492db32012-12-06 16:29:25 +0100103static struct regulatory_request __rcu *last_request =
104 (void __rcu *)&core_request_world;
Johannes Berg734366d2008-09-15 10:56:48 +0200105
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700106/* To trigger userspace events */
107static struct platform_device *reg_pdev;
Johannes Berg8318d782008-01-24 19:38:38 +0100108
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500109/*
110 * Central wireless core regulatory domains, we only need two,
Johannes Berg734366d2008-09-15 10:56:48 +0200111 * the current one and a world regulatory domain in case we have no
Johannes Berge8da2bb2012-12-03 23:00:08 +0100112 * information to give us an alpha2.
Johannes Berg38fd2142013-05-10 19:17:17 +0200113 * (protected by RTNL, can be read under RCU)
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500114 */
Johannes Berg458f4f92012-12-06 15:47:38 +0100115const struct ieee80211_regdomain __rcu *cfg80211_regdomain;
Johannes Berg734366d2008-09-15 10:56:48 +0200116
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500117/*
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700118 * Number of devices that registered to the core
119 * that support cellular base station regulatory hints
Johannes Berg38fd2142013-05-10 19:17:17 +0200120 * (protected by RTNL)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700121 */
122static int reg_num_devs_support_basehint;
123
Ilan Peer52616f22014-02-25 16:26:00 +0200124/*
125 * State variable indicating if the platform on which the devices
126 * are attached is operating in an indoor environment. The state variable
127 * is relevant for all registered devices.
128 * (protected by RTNL)
129 */
130static bool reg_is_indoor;
131
Johannes Berg458f4f92012-12-06 15:47:38 +0100132static const struct ieee80211_regdomain *get_cfg80211_regdom(void)
133{
Johannes Berg38fd2142013-05-10 19:17:17 +0200134 return rtnl_dereference(cfg80211_regdomain);
Johannes Berg458f4f92012-12-06 15:47:38 +0100135}
136
137static const struct ieee80211_regdomain *get_wiphy_regdom(struct wiphy *wiphy)
138{
Johannes Berg38fd2142013-05-10 19:17:17 +0200139 return rtnl_dereference(wiphy->regd);
Johannes Berg458f4f92012-12-06 15:47:38 +0100140}
141
Luis R. Rodriguez3ef121b2013-11-13 18:54:05 +0100142static const char *reg_dfs_region_str(enum nl80211_dfs_regions dfs_region)
143{
144 switch (dfs_region) {
145 case NL80211_DFS_UNSET:
146 return "unset";
147 case NL80211_DFS_FCC:
148 return "FCC";
149 case NL80211_DFS_ETSI:
150 return "ETSI";
151 case NL80211_DFS_JP:
152 return "JP";
153 }
154 return "Unknown";
155}
156
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100157enum nl80211_dfs_regions reg_get_dfs_region(struct wiphy *wiphy)
158{
159 const struct ieee80211_regdomain *regd = NULL;
160 const struct ieee80211_regdomain *wiphy_regd = NULL;
161
162 regd = get_cfg80211_regdom();
163 if (!wiphy)
164 goto out;
165
166 wiphy_regd = get_wiphy_regdom(wiphy);
167 if (!wiphy_regd)
168 goto out;
169
170 if (wiphy_regd->dfs_region == regd->dfs_region)
171 goto out;
172
173 REG_DBG_PRINT("%s: device specific dfs_region "
174 "(%s) disagrees with cfg80211's "
175 "central dfs_region (%s)\n",
176 dev_name(&wiphy->dev),
177 reg_dfs_region_str(wiphy_regd->dfs_region),
178 reg_dfs_region_str(regd->dfs_region));
179
180out:
181 return regd->dfs_region;
182}
183
Johannes Berg458f4f92012-12-06 15:47:38 +0100184static void rcu_free_regdom(const struct ieee80211_regdomain *r)
185{
186 if (!r)
187 return;
188 kfree_rcu((struct ieee80211_regdomain *)r, rcu_head);
189}
190
Johannes Bergc492db32012-12-06 16:29:25 +0100191static struct regulatory_request *get_last_request(void)
192{
Johannes Berg38fd2142013-05-10 19:17:17 +0200193 return rcu_dereference_rtnl(last_request);
Johannes Bergc492db32012-12-06 16:29:25 +0100194}
195
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500196/* Used to queue up regulatory hints */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500197static LIST_HEAD(reg_requests_list);
198static spinlock_t reg_requests_lock;
199
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500200/* Used to queue up beacon hints for review */
201static LIST_HEAD(reg_pending_beacons);
202static spinlock_t reg_pending_beacons_lock;
203
204/* Used to keep track of processed beacon hints */
205static LIST_HEAD(reg_beacon_list);
206
207struct reg_beacon {
208 struct list_head list;
209 struct ieee80211_channel chan;
210};
211
Luis R. Rodriguezf333a7a2010-11-17 21:46:07 -0800212static void reg_todo(struct work_struct *work);
213static DECLARE_WORK(reg_work, reg_todo);
214
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -0700215static void reg_timeout_work(struct work_struct *work);
216static DECLARE_DELAYED_WORK(reg_timeout, reg_timeout_work);
217
Johannes Berg734366d2008-09-15 10:56:48 +0200218/* We keep a static world regulatory domain in case of the absence of CRDA */
219static const struct ieee80211_regdomain world_regdom = {
Vladimir Kondratiev90cdc6d2012-07-02 09:32:34 +0300220 .n_reg_rules = 6,
Johannes Berg734366d2008-09-15 10:56:48 +0200221 .alpha2 = "00",
222 .reg_rules = {
Luis R. Rodriguez68798a62009-02-21 00:20:37 -0500223 /* IEEE 802.11b/g, channels 1..11 */
224 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
Johannes Berg43c771a2012-11-12 10:51:34 +0100225 /* IEEE 802.11b/g, channels 12..13. */
226 REG_RULE(2467-10, 2472+10, 40, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200227 NL80211_RRF_NO_IR),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800228 /* IEEE 802.11 channel 14 - Only JP enables
229 * this and for 802.11b only */
230 REG_RULE(2484-10, 2484+10, 20, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200231 NL80211_RRF_NO_IR |
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800232 NL80211_RRF_NO_OFDM),
233 /* IEEE 802.11a, channel 36..48 */
Johannes Berg131a19b2013-03-04 20:54:46 +0100234 REG_RULE(5180-10, 5240+10, 160, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200235 NL80211_RRF_NO_IR),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500236
Johannes Berg131a19b2013-03-04 20:54:46 +0100237 /* IEEE 802.11a, channel 52..64 - DFS required */
238 REG_RULE(5260-10, 5320+10, 160, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200239 NL80211_RRF_NO_IR |
Johannes Berg131a19b2013-03-04 20:54:46 +0100240 NL80211_RRF_DFS),
241
242 /* IEEE 802.11a, channel 100..144 - DFS required */
243 REG_RULE(5500-10, 5720+10, 160, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200244 NL80211_RRF_NO_IR |
Johannes Berg131a19b2013-03-04 20:54:46 +0100245 NL80211_RRF_DFS),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500246
247 /* IEEE 802.11a, channel 149..165 */
Johannes Berg8ab9d852012-12-03 22:09:22 +0100248 REG_RULE(5745-10, 5825+10, 80, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200249 NL80211_RRF_NO_IR),
Vladimir Kondratiev90cdc6d2012-07-02 09:32:34 +0300250
251 /* IEEE 802.11ad (60gHz), channels 1..3 */
252 REG_RULE(56160+2160*1-1080, 56160+2160*3+1080, 2160, 0, 0, 0),
Johannes Berg734366d2008-09-15 10:56:48 +0200253 }
254};
255
Johannes Berg38fd2142013-05-10 19:17:17 +0200256/* protected by RTNL */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200257static const struct ieee80211_regdomain *cfg80211_world_regdom =
258 &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200259
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400260static char *ieee80211_regdom = "00";
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500261static char user_alpha2[2];
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400262
Johannes Berg734366d2008-09-15 10:56:48 +0200263module_param(ieee80211_regdom, charp, 0444);
264MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
265
Arik Nemtsovc8883932014-04-21 20:39:34 -0700266static void reg_free_request(struct regulatory_request *request)
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -0800267{
Arik Nemtsovc8883932014-04-21 20:39:34 -0700268 if (request != get_last_request())
269 kfree(request);
270}
271
272static void reg_free_last_request(void)
273{
274 struct regulatory_request *lr = get_last_request();
275
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -0800276 if (lr != &core_request_world && lr)
277 kfree_rcu(lr, rcu_head);
278}
279
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800280static void reg_update_last_request(struct regulatory_request *request)
281{
Luis R. Rodriguez255e25b2014-02-25 17:09:40 -0800282 struct regulatory_request *lr;
283
284 lr = get_last_request();
285 if (lr == request)
286 return;
287
Arik Nemtsovc8883932014-04-21 20:39:34 -0700288 reg_free_last_request();
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800289 rcu_assign_pointer(last_request, request);
290}
291
Johannes Berg379b82f2012-12-06 15:44:07 +0100292static void reset_regdomains(bool full_reset,
293 const struct ieee80211_regdomain *new_regdom)
Johannes Berg734366d2008-09-15 10:56:48 +0200294{
Johannes Berg458f4f92012-12-06 15:47:38 +0100295 const struct ieee80211_regdomain *r;
296
Johannes Berg38fd2142013-05-10 19:17:17 +0200297 ASSERT_RTNL();
Johannes Berge8da2bb2012-12-03 23:00:08 +0100298
Johannes Berg458f4f92012-12-06 15:47:38 +0100299 r = get_cfg80211_regdom();
300
Johannes Berg942b25c2008-09-15 11:26:47 +0200301 /* avoid freeing static information or freeing something twice */
Johannes Berg458f4f92012-12-06 15:47:38 +0100302 if (r == cfg80211_world_regdom)
303 r = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200304 if (cfg80211_world_regdom == &world_regdom)
305 cfg80211_world_regdom = NULL;
Johannes Berg458f4f92012-12-06 15:47:38 +0100306 if (r == &world_regdom)
307 r = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200308
Johannes Berg458f4f92012-12-06 15:47:38 +0100309 rcu_free_regdom(r);
310 rcu_free_regdom(cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +0200311
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200312 cfg80211_world_regdom = &world_regdom;
Johannes Berg458f4f92012-12-06 15:47:38 +0100313 rcu_assign_pointer(cfg80211_regdomain, new_regdom);
Luis R. Rodrigueza0429942011-11-28 16:47:15 -0500314
315 if (!full_reset)
316 return;
317
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800318 reg_update_last_request(&core_request_world);
Johannes Berg734366d2008-09-15 10:56:48 +0200319}
320
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500321/*
322 * Dynamic world regulatory domain requested by the wireless
323 * core upon initialization
324 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200325static void update_world_regdomain(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200326{
Johannes Bergc492db32012-12-06 16:29:25 +0100327 struct regulatory_request *lr;
Johannes Berg734366d2008-09-15 10:56:48 +0200328
Johannes Bergc492db32012-12-06 16:29:25 +0100329 lr = get_last_request();
330
331 WARN_ON(!lr);
Johannes Berge8da2bb2012-12-03 23:00:08 +0100332
Johannes Berg379b82f2012-12-06 15:44:07 +0100333 reset_regdomains(false, rd);
Johannes Berg734366d2008-09-15 10:56:48 +0200334
335 cfg80211_world_regdom = rd;
Johannes Berg734366d2008-09-15 10:56:48 +0200336}
Johannes Berg734366d2008-09-15 10:56:48 +0200337
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200338bool is_world_regdom(const char *alpha2)
Johannes Berg8318d782008-01-24 19:38:38 +0100339{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700340 if (!alpha2)
341 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100342 return alpha2[0] == '0' && alpha2[1] == '0';
Johannes Berg8318d782008-01-24 19:38:38 +0100343}
344
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200345static bool is_alpha2_set(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700346{
347 if (!alpha2)
348 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100349 return alpha2[0] && alpha2[1];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700350}
Johannes Berg8318d782008-01-24 19:38:38 +0100351
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200352static bool is_unknown_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700353{
354 if (!alpha2)
355 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500356 /*
357 * Special case where regulatory domain was built by driver
358 * but a specific alpha2 cannot be determined
359 */
Johannes Berg1a919312012-12-03 17:21:11 +0100360 return alpha2[0] == '9' && alpha2[1] == '9';
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700361}
362
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800363static bool is_intersected_alpha2(const char *alpha2)
364{
365 if (!alpha2)
366 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500367 /*
368 * Special case where regulatory domain is the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800369 * result of an intersection between two regulatory domain
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500370 * structures
371 */
Johannes Berg1a919312012-12-03 17:21:11 +0100372 return alpha2[0] == '9' && alpha2[1] == '8';
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800373}
374
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200375static bool is_an_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700376{
377 if (!alpha2)
378 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100379 return isalpha(alpha2[0]) && isalpha(alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700380}
381
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200382static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700383{
384 if (!alpha2_x || !alpha2_y)
385 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100386 return alpha2_x[0] == alpha2_y[0] && alpha2_x[1] == alpha2_y[1];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700387}
388
Luis R. Rodriguez69b15722009-02-21 00:04:33 -0500389static bool regdom_changes(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700390{
Johannes Berg458f4f92012-12-06 15:47:38 +0100391 const struct ieee80211_regdomain *r = get_cfg80211_regdom();
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500392
Johannes Berg458f4f92012-12-06 15:47:38 +0100393 if (!r)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700394 return true;
Johannes Berg458f4f92012-12-06 15:47:38 +0100395 return !alpha2_equal(r->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700396}
397
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500398/*
399 * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
400 * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
401 * has ever been issued.
402 */
403static bool is_user_regdom_saved(void)
404{
405 if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
406 return false;
407
408 /* This would indicate a mistake on the design */
Johannes Berg1a919312012-12-03 17:21:11 +0100409 if (WARN(!is_world_regdom(user_alpha2) && !is_an_alpha2(user_alpha2),
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500410 "Unexpected user alpha2: %c%c\n",
Johannes Berg1a919312012-12-03 17:21:11 +0100411 user_alpha2[0], user_alpha2[1]))
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500412 return false;
413
414 return true;
415}
416
Johannes Berge9763c32012-12-03 16:59:46 +0100417static const struct ieee80211_regdomain *
418reg_copy_regd(const struct ieee80211_regdomain *src_regd)
John W. Linville3b377ea2009-12-18 17:59:01 -0500419{
420 struct ieee80211_regdomain *regd;
Johannes Berge9763c32012-12-03 16:59:46 +0100421 int size_of_regd;
John W. Linville3b377ea2009-12-18 17:59:01 -0500422 unsigned int i;
423
Johannes Berg82f20852012-12-04 12:49:16 +0100424 size_of_regd =
425 sizeof(struct ieee80211_regdomain) +
426 src_regd->n_reg_rules * sizeof(struct ieee80211_reg_rule);
John W. Linville3b377ea2009-12-18 17:59:01 -0500427
428 regd = kzalloc(size_of_regd, GFP_KERNEL);
429 if (!regd)
Johannes Berge9763c32012-12-03 16:59:46 +0100430 return ERR_PTR(-ENOMEM);
John W. Linville3b377ea2009-12-18 17:59:01 -0500431
432 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
433
434 for (i = 0; i < src_regd->n_reg_rules; i++)
435 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
Johannes Berge9763c32012-12-03 16:59:46 +0100436 sizeof(struct ieee80211_reg_rule));
John W. Linville3b377ea2009-12-18 17:59:01 -0500437
Johannes Berge9763c32012-12-03 16:59:46 +0100438 return regd;
John W. Linville3b377ea2009-12-18 17:59:01 -0500439}
440
441#ifdef CONFIG_CFG80211_INTERNAL_REGDB
442struct reg_regdb_search_request {
443 char alpha2[2];
444 struct list_head list;
445};
446
447static LIST_HEAD(reg_regdb_search_list);
John W. Linville368d06f2010-03-16 15:40:59 -0400448static DEFINE_MUTEX(reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500449
450static void reg_regdb_search(struct work_struct *work)
451{
452 struct reg_regdb_search_request *request;
Johannes Berge9763c32012-12-03 16:59:46 +0100453 const struct ieee80211_regdomain *curdom, *regdom = NULL;
454 int i;
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700455
Johannes Berg5fe231e2013-05-08 21:45:15 +0200456 rtnl_lock();
John W. Linville3b377ea2009-12-18 17:59:01 -0500457
John W. Linville368d06f2010-03-16 15:40:59 -0400458 mutex_lock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500459 while (!list_empty(&reg_regdb_search_list)) {
460 request = list_first_entry(&reg_regdb_search_list,
461 struct reg_regdb_search_request,
462 list);
463 list_del(&request->list);
464
Johannes Berg1a919312012-12-03 17:21:11 +0100465 for (i = 0; i < reg_regdb_size; i++) {
John W. Linville3b377ea2009-12-18 17:59:01 -0500466 curdom = reg_regdb[i];
467
Johannes Berg1a919312012-12-03 17:21:11 +0100468 if (alpha2_equal(request->alpha2, curdom->alpha2)) {
Johannes Berge9763c32012-12-03 16:59:46 +0100469 regdom = reg_copy_regd(curdom);
John W. Linville3b377ea2009-12-18 17:59:01 -0500470 break;
471 }
472 }
473
474 kfree(request);
475 }
John W. Linville368d06f2010-03-16 15:40:59 -0400476 mutex_unlock(&reg_regdb_search_mutex);
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700477
Johannes Berge9763c32012-12-03 16:59:46 +0100478 if (!IS_ERR_OR_NULL(regdom))
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700479 set_regdom(regdom);
480
Johannes Berg5fe231e2013-05-08 21:45:15 +0200481 rtnl_unlock();
John W. Linville3b377ea2009-12-18 17:59:01 -0500482}
483
484static DECLARE_WORK(reg_regdb_work, reg_regdb_search);
485
486static void reg_regdb_query(const char *alpha2)
487{
488 struct reg_regdb_search_request *request;
489
490 if (!alpha2)
491 return;
492
493 request = kzalloc(sizeof(struct reg_regdb_search_request), GFP_KERNEL);
494 if (!request)
495 return;
496
497 memcpy(request->alpha2, alpha2, 2);
498
John W. Linville368d06f2010-03-16 15:40:59 -0400499 mutex_lock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500500 list_add_tail(&request->list, &reg_regdb_search_list);
John W. Linville368d06f2010-03-16 15:40:59 -0400501 mutex_unlock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500502
503 schedule_work(&reg_regdb_work);
504}
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -0700505
506/* Feel free to add any other sanity checks here */
507static void reg_regdb_size_check(void)
508{
509 /* We should ideally BUILD_BUG_ON() but then random builds would fail */
510 WARN_ONCE(!reg_regdb_size, "db.txt is empty, you should update it...");
511}
John W. Linville3b377ea2009-12-18 17:59:01 -0500512#else
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -0700513static inline void reg_regdb_size_check(void) {}
John W. Linville3b377ea2009-12-18 17:59:01 -0500514static inline void reg_regdb_query(const char *alpha2) {}
515#endif /* CONFIG_CFG80211_INTERNAL_REGDB */
516
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500517/*
518 * This lets us keep regulatory code which is updated on a regulatory
Johannes Berg1226d252014-02-25 15:43:36 +0100519 * basis in userspace.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500520 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700521static int call_crda(const char *alpha2)
522{
Johannes Berg1226d252014-02-25 15:43:36 +0100523 char country[12];
524 char *env[] = { country, NULL };
525
526 snprintf(country, sizeof(country), "COUNTRY=%c%c",
527 alpha2[0], alpha2[1]);
528
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700529 if (!is_world_regdom((char *) alpha2))
Joe Perchese9c02682010-11-16 19:56:49 -0800530 pr_info("Calling CRDA for country: %c%c\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700531 alpha2[0], alpha2[1]);
532 else
Joe Perchese9c02682010-11-16 19:56:49 -0800533 pr_info("Calling CRDA to update world regulatory domain\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700534
John W. Linville3b377ea2009-12-18 17:59:01 -0500535 /* query internal regulatory database (if it exists) */
536 reg_regdb_query(alpha2);
537
Johannes Berg1226d252014-02-25 15:43:36 +0100538 return kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, env);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700539}
540
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -0800541static enum reg_request_treatment
542reg_call_crda(struct regulatory_request *request)
543{
544 if (call_crda(request->alpha2))
545 return REG_REQ_IGNORE;
546 return REG_REQ_OK;
547}
548
Luis R. Rodrigueze4387682013-11-05 09:18:01 -0800549bool reg_is_valid_request(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700550{
Johannes Bergc492db32012-12-06 16:29:25 +0100551 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez61405e92009-05-13 17:04:41 -0400552
Johannes Bergc492db32012-12-06 16:29:25 +0100553 if (!lr || lr->processed)
Johannes Bergf6037d02008-10-21 11:01:33 +0200554 return false;
555
Johannes Bergc492db32012-12-06 16:29:25 +0100556 return alpha2_equal(lr->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700557}
558
Janusz Dziedzice3961af2014-01-25 11:24:11 +0100559static const struct ieee80211_regdomain *reg_get_regdomain(struct wiphy *wiphy)
560{
561 struct regulatory_request *lr = get_last_request();
562
563 /*
564 * Follow the driver's regulatory domain, if present, unless a country
565 * IE has been processed or a user wants to help complaince further
566 */
567 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
568 lr->initiator != NL80211_REGDOM_SET_BY_USER &&
569 wiphy->regd)
570 return get_wiphy_regdom(wiphy);
571
572 return get_cfg80211_regdom();
573}
574
Janusz Dziedzic97524822014-01-30 09:52:20 +0100575unsigned int reg_get_max_bandwidth(const struct ieee80211_regdomain *rd,
576 const struct ieee80211_reg_rule *rule)
577{
578 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
579 const struct ieee80211_freq_range *freq_range_tmp;
580 const struct ieee80211_reg_rule *tmp;
581 u32 start_freq, end_freq, idx, no;
582
583 for (idx = 0; idx < rd->n_reg_rules; idx++)
584 if (rule == &rd->reg_rules[idx])
585 break;
586
587 if (idx == rd->n_reg_rules)
588 return 0;
589
590 /* get start_freq */
591 no = idx;
592
593 while (no) {
594 tmp = &rd->reg_rules[--no];
595 freq_range_tmp = &tmp->freq_range;
596
597 if (freq_range_tmp->end_freq_khz < freq_range->start_freq_khz)
598 break;
599
Janusz Dziedzic97524822014-01-30 09:52:20 +0100600 freq_range = freq_range_tmp;
601 }
602
603 start_freq = freq_range->start_freq_khz;
604
605 /* get end_freq */
606 freq_range = &rule->freq_range;
607 no = idx;
608
609 while (no < rd->n_reg_rules - 1) {
610 tmp = &rd->reg_rules[++no];
611 freq_range_tmp = &tmp->freq_range;
612
613 if (freq_range_tmp->start_freq_khz > freq_range->end_freq_khz)
614 break;
615
Janusz Dziedzic97524822014-01-30 09:52:20 +0100616 freq_range = freq_range_tmp;
617 }
618
619 end_freq = freq_range->end_freq_khz;
620
621 return end_freq - start_freq;
622}
623
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700624/* Sanity check on a regulatory rule */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200625static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700626{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200627 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700628 u32 freq_diff;
629
Luis R. Rodriguez91e99002008-11-12 14:21:55 -0800630 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700631 return false;
632
633 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
634 return false;
635
636 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
637
Roel Kluinbd05f282009-03-03 22:55:21 +0100638 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
Johannes Berg1a919312012-12-03 17:21:11 +0100639 freq_range->max_bandwidth_khz > freq_diff)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700640 return false;
641
642 return true;
643}
644
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200645static bool is_valid_rd(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700646{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200647 const struct ieee80211_reg_rule *reg_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700648 unsigned int i;
649
650 if (!rd->n_reg_rules)
651 return false;
652
Luis R. Rodriguez88dc1c32008-11-12 14:22:01 -0800653 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
654 return false;
655
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700656 for (i = 0; i < rd->n_reg_rules; i++) {
657 reg_rule = &rd->reg_rules[i];
658 if (!is_valid_reg_rule(reg_rule))
659 return false;
660 }
661
662 return true;
663}
664
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400665static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range,
Johannes Bergfe7ef5e2012-12-04 15:07:34 +0100666 u32 center_freq_khz, u32 bw_khz)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700667{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400668 u32 start_freq_khz, end_freq_khz;
669
670 start_freq_khz = center_freq_khz - (bw_khz/2);
671 end_freq_khz = center_freq_khz + (bw_khz/2);
672
673 if (start_freq_khz >= freq_range->start_freq_khz &&
674 end_freq_khz <= freq_range->end_freq_khz)
675 return true;
676
677 return false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700678}
679
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800680/**
681 * freq_in_rule_band - tells us if a frequency is in a frequency band
682 * @freq_range: frequency rule we want to query
683 * @freq_khz: frequency we are inquiring about
684 *
685 * This lets us know if a specific frequency rule is or is not relevant to
686 * a specific frequency's band. Bands are device specific and artificial
Vladimir Kondratiev64629b92012-09-23 09:49:54 +0200687 * definitions (the "2.4 GHz band", the "5 GHz band" and the "60GHz band"),
688 * however it is safe for now to assume that a frequency rule should not be
689 * part of a frequency's band if the start freq or end freq are off by more
690 * than 2 GHz for the 2.4 and 5 GHz bands, and by more than 10 GHz for the
691 * 60 GHz band.
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800692 * This resolution can be lowered and should be considered as we add
693 * regulatory rule support for other "bands".
694 **/
695static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
Johannes Berg1a919312012-12-03 17:21:11 +0100696 u32 freq_khz)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800697{
698#define ONE_GHZ_IN_KHZ 1000000
Vladimir Kondratiev64629b92012-09-23 09:49:54 +0200699 /*
700 * From 802.11ad: directional multi-gigabit (DMG):
701 * Pertaining to operation in a frequency band containing a channel
702 * with the Channel starting frequency above 45 GHz.
703 */
704 u32 limit = freq_khz > 45 * ONE_GHZ_IN_KHZ ?
705 10 * ONE_GHZ_IN_KHZ : 2 * ONE_GHZ_IN_KHZ;
706 if (abs(freq_khz - freq_range->start_freq_khz) <= limit)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800707 return true;
Vladimir Kondratiev64629b92012-09-23 09:49:54 +0200708 if (abs(freq_khz - freq_range->end_freq_khz) <= limit)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800709 return true;
710 return false;
711#undef ONE_GHZ_IN_KHZ
712}
713
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500714/*
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +0100715 * Later on we can perhaps use the more restrictive DFS
716 * region but we don't have information for that yet so
717 * for now simply disallow conflicts.
718 */
719static enum nl80211_dfs_regions
720reg_intersect_dfs_region(const enum nl80211_dfs_regions dfs_region1,
721 const enum nl80211_dfs_regions dfs_region2)
722{
723 if (dfs_region1 != dfs_region2)
724 return NL80211_DFS_UNSET;
725 return dfs_region1;
726}
727
728/*
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500729 * Helper for regdom_intersect(), this does the real
730 * mathematical intersection fun
731 */
Janusz Dziedzic97524822014-01-30 09:52:20 +0100732static int reg_rules_intersect(const struct ieee80211_regdomain *rd1,
733 const struct ieee80211_regdomain *rd2,
734 const struct ieee80211_reg_rule *rule1,
Johannes Berg1a919312012-12-03 17:21:11 +0100735 const struct ieee80211_reg_rule *rule2,
736 struct ieee80211_reg_rule *intersected_rule)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700737{
738 const struct ieee80211_freq_range *freq_range1, *freq_range2;
739 struct ieee80211_freq_range *freq_range;
740 const struct ieee80211_power_rule *power_rule1, *power_rule2;
741 struct ieee80211_power_rule *power_rule;
Janusz Dziedzic97524822014-01-30 09:52:20 +0100742 u32 freq_diff, max_bandwidth1, max_bandwidth2;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700743
744 freq_range1 = &rule1->freq_range;
745 freq_range2 = &rule2->freq_range;
746 freq_range = &intersected_rule->freq_range;
747
748 power_rule1 = &rule1->power_rule;
749 power_rule2 = &rule2->power_rule;
750 power_rule = &intersected_rule->power_rule;
751
752 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
Johannes Berg1a919312012-12-03 17:21:11 +0100753 freq_range2->start_freq_khz);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700754 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
Johannes Berg1a919312012-12-03 17:21:11 +0100755 freq_range2->end_freq_khz);
Janusz Dziedzic97524822014-01-30 09:52:20 +0100756
757 max_bandwidth1 = freq_range1->max_bandwidth_khz;
758 max_bandwidth2 = freq_range2->max_bandwidth_khz;
759
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +0100760 if (rule1->flags & NL80211_RRF_AUTO_BW)
761 max_bandwidth1 = reg_get_max_bandwidth(rd1, rule1);
762 if (rule2->flags & NL80211_RRF_AUTO_BW)
763 max_bandwidth2 = reg_get_max_bandwidth(rd2, rule2);
Janusz Dziedzic97524822014-01-30 09:52:20 +0100764
765 freq_range->max_bandwidth_khz = min(max_bandwidth1, max_bandwidth2);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700766
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +0100767 intersected_rule->flags = rule1->flags | rule2->flags;
768
769 /*
770 * In case NL80211_RRF_AUTO_BW requested for both rules
771 * set AUTO_BW in intersected rule also. Next we will
772 * calculate BW correctly in handle_channel function.
773 * In other case remove AUTO_BW flag while we calculate
774 * maximum bandwidth correctly and auto calculation is
775 * not required.
776 */
777 if ((rule1->flags & NL80211_RRF_AUTO_BW) &&
778 (rule2->flags & NL80211_RRF_AUTO_BW))
779 intersected_rule->flags |= NL80211_RRF_AUTO_BW;
780 else
781 intersected_rule->flags &= ~NL80211_RRF_AUTO_BW;
782
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700783 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
784 if (freq_range->max_bandwidth_khz > freq_diff)
785 freq_range->max_bandwidth_khz = freq_diff;
786
787 power_rule->max_eirp = min(power_rule1->max_eirp,
788 power_rule2->max_eirp);
789 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
790 power_rule2->max_antenna_gain);
791
Janusz Dziedzic089027e2014-02-21 19:46:12 +0100792 intersected_rule->dfs_cac_ms = max(rule1->dfs_cac_ms,
793 rule2->dfs_cac_ms);
794
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700795 if (!is_valid_reg_rule(intersected_rule))
796 return -EINVAL;
797
798 return 0;
799}
800
801/**
802 * regdom_intersect - do the intersection between two regulatory domains
803 * @rd1: first regulatory domain
804 * @rd2: second regulatory domain
805 *
806 * Use this function to get the intersection between two regulatory domains.
807 * Once completed we will mark the alpha2 for the rd as intersected, "98",
808 * as no one single alpha2 can represent this regulatory domain.
809 *
810 * Returns a pointer to the regulatory domain structure which will hold the
811 * resulting intersection of rules between rd1 and rd2. We will
812 * kzalloc() this structure for you.
813 */
Johannes Berg1a919312012-12-03 17:21:11 +0100814static struct ieee80211_regdomain *
815regdom_intersect(const struct ieee80211_regdomain *rd1,
816 const struct ieee80211_regdomain *rd2)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700817{
818 int r, size_of_regd;
819 unsigned int x, y;
820 unsigned int num_rules = 0, rule_idx = 0;
821 const struct ieee80211_reg_rule *rule1, *rule2;
822 struct ieee80211_reg_rule *intersected_rule;
823 struct ieee80211_regdomain *rd;
824 /* This is just a dummy holder to help us count */
Johannes Berg74f53cd2012-12-06 17:26:17 +0100825 struct ieee80211_reg_rule dummy_rule;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700826
827 if (!rd1 || !rd2)
828 return NULL;
829
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500830 /*
831 * First we get a count of the rules we'll need, then we actually
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700832 * build them. This is to so we can malloc() and free() a
833 * regdomain once. The reason we use reg_rules_intersect() here
834 * is it will return -EINVAL if the rule computed makes no sense.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500835 * All rules that do check out OK are valid.
836 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700837
838 for (x = 0; x < rd1->n_reg_rules; x++) {
839 rule1 = &rd1->reg_rules[x];
840 for (y = 0; y < rd2->n_reg_rules; y++) {
841 rule2 = &rd2->reg_rules[y];
Janusz Dziedzic97524822014-01-30 09:52:20 +0100842 if (!reg_rules_intersect(rd1, rd2, rule1, rule2,
843 &dummy_rule))
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700844 num_rules++;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700845 }
846 }
847
848 if (!num_rules)
849 return NULL;
850
851 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg82f20852012-12-04 12:49:16 +0100852 num_rules * sizeof(struct ieee80211_reg_rule);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700853
854 rd = kzalloc(size_of_regd, GFP_KERNEL);
855 if (!rd)
856 return NULL;
857
Johannes Berg8a57fff2012-12-06 17:03:17 +0100858 for (x = 0; x < rd1->n_reg_rules && rule_idx < num_rules; x++) {
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700859 rule1 = &rd1->reg_rules[x];
Johannes Berg8a57fff2012-12-06 17:03:17 +0100860 for (y = 0; y < rd2->n_reg_rules && rule_idx < num_rules; y++) {
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700861 rule2 = &rd2->reg_rules[y];
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500862 /*
863 * This time around instead of using the stack lets
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700864 * write to the target rule directly saving ourselves
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500865 * a memcpy()
866 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700867 intersected_rule = &rd->reg_rules[rule_idx];
Janusz Dziedzic97524822014-01-30 09:52:20 +0100868 r = reg_rules_intersect(rd1, rd2, rule1, rule2,
869 intersected_rule);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500870 /*
871 * No need to memset here the intersected rule here as
872 * we're not using the stack anymore
873 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700874 if (r)
875 continue;
876 rule_idx++;
877 }
878 }
879
880 if (rule_idx != num_rules) {
881 kfree(rd);
882 return NULL;
883 }
884
885 rd->n_reg_rules = num_rules;
886 rd->alpha2[0] = '9';
887 rd->alpha2[1] = '8';
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +0100888 rd->dfs_region = reg_intersect_dfs_region(rd1->dfs_region,
889 rd2->dfs_region);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700890
891 return rd;
892}
893
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500894/*
895 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
896 * want to just have the channel structure use these
897 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700898static u32 map_regdom_flags(u32 rd_flags)
899{
900 u32 channel_flags = 0;
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200901 if (rd_flags & NL80211_RRF_NO_IR_ALL)
902 channel_flags |= IEEE80211_CHAN_NO_IR;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700903 if (rd_flags & NL80211_RRF_DFS)
904 channel_flags |= IEEE80211_CHAN_RADAR;
Seth Forshee03f6b082012-08-01 15:58:42 -0500905 if (rd_flags & NL80211_RRF_NO_OFDM)
906 channel_flags |= IEEE80211_CHAN_NO_OFDM;
David Spinadel570dbde2014-02-23 09:12:59 +0200907 if (rd_flags & NL80211_RRF_NO_OUTDOOR)
908 channel_flags |= IEEE80211_CHAN_INDOOR_ONLY;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700909 return channel_flags;
910}
911
Johannes Berg361c9c82012-12-06 15:57:14 +0100912static const struct ieee80211_reg_rule *
913freq_reg_info_regd(struct wiphy *wiphy, u32 center_freq,
914 const struct ieee80211_regdomain *regd)
Johannes Berg8318d782008-01-24 19:38:38 +0100915{
916 int i;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800917 bool band_rule_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400918 bool bw_fits = false;
919
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800920 if (!regd)
Johannes Berg361c9c82012-12-06 15:57:14 +0100921 return ERR_PTR(-EINVAL);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700922
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800923 for (i = 0; i < regd->n_reg_rules; i++) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700924 const struct ieee80211_reg_rule *rr;
925 const struct ieee80211_freq_range *fr = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700926
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800927 rr = &regd->reg_rules[i];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700928 fr = &rr->freq_range;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800929
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500930 /*
931 * We only need to know if one frequency rule was
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800932 * was in center_freq's band, that's enough, so lets
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500933 * not overwrite it once found
934 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800935 if (!band_rule_found)
936 band_rule_found = freq_in_rule_band(fr, center_freq);
937
Rostislav Lisovy8eca1fb2014-04-15 14:37:56 +0200938 bw_fits = reg_does_bw_fit(fr, center_freq, MHZ_TO_KHZ(5));
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800939
Johannes Berg361c9c82012-12-06 15:57:14 +0100940 if (band_rule_found && bw_fits)
941 return rr;
Johannes Berg8318d782008-01-24 19:38:38 +0100942 }
943
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800944 if (!band_rule_found)
Johannes Berg361c9c82012-12-06 15:57:14 +0100945 return ERR_PTR(-ERANGE);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800946
Johannes Berg361c9c82012-12-06 15:57:14 +0100947 return ERR_PTR(-EINVAL);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700948}
949
Johannes Berg361c9c82012-12-06 15:57:14 +0100950const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
951 u32 center_freq)
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800952{
Johannes Berg5d885b92012-12-04 00:14:17 +0100953 const struct ieee80211_regdomain *regd;
Johannes Berg1a919312012-12-03 17:21:11 +0100954
Janusz Dziedzice3961af2014-01-25 11:24:11 +0100955 regd = reg_get_regdomain(wiphy);
Johannes Berg5d885b92012-12-04 00:14:17 +0100956
Johannes Berg361c9c82012-12-06 15:57:14 +0100957 return freq_reg_info_regd(wiphy, center_freq, regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -0800958}
John W. Linville4f366c52010-07-15 14:57:33 -0400959EXPORT_SYMBOL(freq_reg_info);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700960
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -0700961const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530962{
963 switch (initiator) {
964 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -0700965 return "core";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530966 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -0700967 return "user";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530968 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -0700969 return "driver";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530970 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -0700971 return "country IE";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530972 default:
973 WARN_ON(1);
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -0700974 return "bug";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +0530975 }
976}
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -0700977EXPORT_SYMBOL(reg_initiator_name);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530978
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -0700979#ifdef CONFIG_CFG80211_REG_DEBUG
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +0100980static void chan_reg_rule_print_dbg(const struct ieee80211_regdomain *regd,
981 struct ieee80211_channel *chan,
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530982 const struct ieee80211_reg_rule *reg_rule)
983{
984 const struct ieee80211_power_rule *power_rule;
985 const struct ieee80211_freq_range *freq_range;
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +0100986 char max_antenna_gain[32], bw[32];
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530987
988 power_rule = &reg_rule->power_rule;
989 freq_range = &reg_rule->freq_range;
990
991 if (!power_rule->max_antenna_gain)
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +0100992 snprintf(max_antenna_gain, sizeof(max_antenna_gain), "N/A");
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +0530993 else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +0100994 snprintf(max_antenna_gain, sizeof(max_antenna_gain), "%d",
995 power_rule->max_antenna_gain);
996
997 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
998 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
999 freq_range->max_bandwidth_khz,
1000 reg_get_max_bandwidth(regd, reg_rule));
1001 else
1002 snprintf(bw, sizeof(bw), "%d KHz",
1003 freq_range->max_bandwidth_khz);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301004
Johannes Bergfe7ef5e2012-12-04 15:07:34 +01001005 REG_DBG_PRINT("Updating information on frequency %d MHz with regulatory rule:\n",
1006 chan->center_freq);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301007
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001008 REG_DBG_PRINT("%d KHz - %d KHz @ %s), (%s mBi, %d mBm)\n",
Johannes Berg1a919312012-12-03 17:21:11 +01001009 freq_range->start_freq_khz, freq_range->end_freq_khz,
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001010 bw, max_antenna_gain,
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301011 power_rule->max_eirp);
1012}
1013#else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001014static void chan_reg_rule_print_dbg(const struct ieee80211_regdomain *regd,
1015 struct ieee80211_channel *chan,
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301016 const struct ieee80211_reg_rule *reg_rule)
1017{
1018 return;
1019}
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301020#endif
1021
Rostislav Lisovy8eca1fb2014-04-15 14:37:56 +02001022/* Find an ieee80211_reg_rule such that a 5MHz channel with frequency
1023 * chan->center_freq fits there.
1024 * If there is no such reg_rule, disable the channel, otherwise set the
1025 * flags corresponding to the bandwidths allowed in the particular reg_rule
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001026 */
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001027static void handle_channel(struct wiphy *wiphy,
1028 enum nl80211_reg_initiator initiator,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001029 struct ieee80211_channel *chan)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001030{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001031 u32 flags, bw_flags = 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001032 const struct ieee80211_reg_rule *reg_rule = NULL;
1033 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001034 const struct ieee80211_freq_range *freq_range = NULL;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001035 struct wiphy *request_wiphy = NULL;
Johannes Bergc492db32012-12-06 16:29:25 +01001036 struct regulatory_request *lr = get_last_request();
Janusz Dziedzic97524822014-01-30 09:52:20 +01001037 const struct ieee80211_regdomain *regd;
1038 u32 max_bandwidth_khz;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001039
Johannes Bergc492db32012-12-06 16:29:25 +01001040 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001041
1042 flags = chan->orig_flags;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001043
Johannes Berg361c9c82012-12-06 15:57:14 +01001044 reg_rule = freq_reg_info(wiphy, MHZ_TO_KHZ(chan->center_freq));
1045 if (IS_ERR(reg_rule)) {
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001046 /*
1047 * We will disable all channels that do not match our
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001048 * received regulatory rule unless the hint is coming
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001049 * from a Country IE and the Country IE had no information
1050 * about a band. The IEEE 802.11 spec allows for an AP
1051 * to send only a subset of the regulatory rules allowed,
1052 * so an AP in the US that only supports 2.4 GHz may only send
1053 * a country IE with information for the 2.4 GHz band
1054 * while 5 GHz is still supported.
1055 */
1056 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Berg361c9c82012-12-06 15:57:14 +01001057 PTR_ERR(reg_rule) == -ERANGE)
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001058 return;
1059
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001060 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1061 request_wiphy && request_wiphy == wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001062 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001063 REG_DBG_PRINT("Disabling freq %d MHz for good\n",
1064 chan->center_freq);
1065 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1066 chan->flags = chan->orig_flags;
1067 } else {
1068 REG_DBG_PRINT("Disabling freq %d MHz\n",
1069 chan->center_freq);
1070 chan->flags |= IEEE80211_CHAN_DISABLED;
1071 }
Johannes Berg8318d782008-01-24 19:38:38 +01001072 return;
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001073 }
Johannes Berg8318d782008-01-24 19:38:38 +01001074
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001075 regd = reg_get_regdomain(wiphy);
1076 chan_reg_rule_print_dbg(regd, chan, reg_rule);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301077
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001078 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001079 freq_range = &reg_rule->freq_range;
1080
Janusz Dziedzic97524822014-01-30 09:52:20 +01001081 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1082 /* Check if auto calculation requested */
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001083 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
Janusz Dziedzic97524822014-01-30 09:52:20 +01001084 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
Janusz Dziedzic97524822014-01-30 09:52:20 +01001085
Rostislav Lisovy8eca1fb2014-04-15 14:37:56 +02001086 if (max_bandwidth_khz < MHZ_TO_KHZ(10))
1087 bw_flags = IEEE80211_CHAN_NO_10MHZ;
1088 if (max_bandwidth_khz < MHZ_TO_KHZ(20))
1089 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001090 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
Rostislav Lisovy8eca1fb2014-04-15 14:37:56 +02001091 bw_flags |= IEEE80211_CHAN_NO_HT40;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001092 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001093 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001094 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001095 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001096
Johannes Bergc492db32012-12-06 16:29:25 +01001097 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001098 request_wiphy && request_wiphy == wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001099 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001100 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001101 * This guarantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001102 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001103 * settings
1104 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001105 chan->flags = chan->orig_flags =
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001106 map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001107 chan->max_antenna_gain = chan->orig_mag =
1108 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02001109 chan->max_reg_power = chan->max_power = chan->orig_mpwr =
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001110 (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic4f267c12014-04-09 13:47:12 +02001111
1112 if (chan->flags & IEEE80211_CHAN_RADAR) {
1113 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1114 if (reg_rule->dfs_cac_ms)
1115 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1116 }
1117
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001118 return;
1119 }
1120
Simon Wunderlich04f39042013-02-08 18:16:19 +01001121 chan->dfs_state = NL80211_DFS_USABLE;
1122 chan->dfs_state_entered = jiffies;
1123
Rajkumar Manoharanaa3d7ee2011-09-14 14:28:17 +05301124 chan->beacon_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001125 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
Johannes Berg1a919312012-12-03 17:21:11 +01001126 chan->max_antenna_gain =
1127 min_t(int, chan->orig_mag,
1128 MBI_TO_DBI(power_rule->max_antenna_gain));
Hong Wueccc0682012-01-11 20:33:39 +02001129 chan->max_reg_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic089027e2014-02-21 19:46:12 +01001130
1131 if (chan->flags & IEEE80211_CHAN_RADAR) {
1132 if (reg_rule->dfs_cac_ms)
1133 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1134 else
1135 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1136 }
1137
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001138 if (chan->orig_mpwr) {
1139 /*
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001140 * Devices that use REGULATORY_COUNTRY_IE_FOLLOW_POWER
1141 * will always follow the passed country IE power settings.
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001142 */
1143 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001144 wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_FOLLOW_POWER)
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001145 chan->max_power = chan->max_reg_power;
1146 else
1147 chan->max_power = min(chan->orig_mpwr,
1148 chan->max_reg_power);
1149 } else
1150 chan->max_power = chan->max_reg_power;
Johannes Berg8318d782008-01-24 19:38:38 +01001151}
1152
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001153static void handle_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001154 enum nl80211_reg_initiator initiator,
1155 struct ieee80211_supported_band *sband)
Johannes Berg8318d782008-01-24 19:38:38 +01001156{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001157 unsigned int i;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001158
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001159 if (!sband)
1160 return;
Johannes Berg8318d782008-01-24 19:38:38 +01001161
1162 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001163 handle_channel(wiphy, initiator, &sband->channels[i]);
Johannes Berg8318d782008-01-24 19:38:38 +01001164}
1165
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001166static bool reg_request_cell_base(struct regulatory_request *request)
1167{
1168 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1169 return false;
Johannes Berg1a919312012-12-03 17:21:11 +01001170 return request->user_reg_hint_type == NL80211_USER_REG_HINT_CELL_BASE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001171}
1172
Ilan Peer52616f22014-02-25 16:26:00 +02001173static bool reg_request_indoor(struct regulatory_request *request)
1174{
1175 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1176 return false;
1177 return request->user_reg_hint_type == NL80211_USER_REG_HINT_INDOOR;
1178}
1179
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001180bool reg_last_request_cell_base(void)
1181{
Johannes Berg38fd2142013-05-10 19:17:17 +02001182 return reg_request_cell_base(get_last_request());
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001183}
1184
Ilan Peer94fc6612014-02-23 09:13:00 +02001185#ifdef CONFIG_CFG80211_REG_CELLULAR_HINTS
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001186/* Core specific check */
Johannes Berg2f922122012-12-03 17:54:55 +01001187static enum reg_request_treatment
1188reg_ignore_cell_hint(struct regulatory_request *pending_request)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001189{
Johannes Bergc492db32012-12-06 16:29:25 +01001190 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001191
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001192 if (!reg_num_devs_support_basehint)
Johannes Berg2f922122012-12-03 17:54:55 +01001193 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001194
Johannes Bergc492db32012-12-06 16:29:25 +01001195 if (reg_request_cell_base(lr) &&
Johannes Berg1a919312012-12-03 17:21:11 +01001196 !regdom_changes(pending_request->alpha2))
Johannes Berg2f922122012-12-03 17:54:55 +01001197 return REG_REQ_ALREADY_SET;
Johannes Berg1a919312012-12-03 17:21:11 +01001198
Johannes Berg2f922122012-12-03 17:54:55 +01001199 return REG_REQ_OK;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001200}
1201
1202/* Device specific check */
1203static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
1204{
Johannes Berg1a919312012-12-03 17:21:11 +01001205 return !(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001206}
1207#else
1208static int reg_ignore_cell_hint(struct regulatory_request *pending_request)
1209{
Johannes Berg2f922122012-12-03 17:54:55 +01001210 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001211}
Johannes Berg1a919312012-12-03 17:21:11 +01001212
1213static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001214{
1215 return true;
1216}
1217#endif
1218
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001219static bool wiphy_strict_alpha2_regd(struct wiphy *wiphy)
1220{
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001221 if (wiphy->regulatory_flags & REGULATORY_STRICT_REG &&
1222 !(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG))
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001223 return true;
1224 return false;
1225}
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001226
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001227static bool ignore_reg_update(struct wiphy *wiphy,
1228 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001229{
Johannes Bergc492db32012-12-06 16:29:25 +01001230 struct regulatory_request *lr = get_last_request();
1231
1232 if (!lr) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001233 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1234 "since last_request is not set\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301235 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001236 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301237 }
1238
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001239 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001240 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001241 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1242 "since the driver uses its own custom "
1243 "regulatory domain\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301244 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001245 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301246 }
1247
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001248 /*
1249 * wiphy->regd will be set once the device has its own
1250 * desired regulatory domain set
1251 */
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001252 if (wiphy_strict_alpha2_regd(wiphy) && !wiphy->regd &&
Luis R. Rodriguez749b5272010-10-20 10:18:54 -07001253 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Bergc492db32012-12-06 16:29:25 +01001254 !is_world_regdom(lr->alpha2)) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001255 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1256 "since the driver requires its own regulatory "
1257 "domain to be set first\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301258 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001259 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301260 }
1261
Johannes Bergc492db32012-12-06 16:29:25 +01001262 if (reg_request_cell_base(lr))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001263 return reg_dev_ignore_cell_hint(wiphy);
1264
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001265 return false;
1266}
1267
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08001268static bool reg_is_world_roaming(struct wiphy *wiphy)
1269{
1270 const struct ieee80211_regdomain *cr = get_cfg80211_regdom();
1271 const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy);
1272 struct regulatory_request *lr = get_last_request();
1273
1274 if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2)))
1275 return true;
1276
1277 if (lr && lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001278 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08001279 return true;
1280
1281 return false;
1282}
1283
Johannes Berg1a919312012-12-03 17:21:11 +01001284static void handle_reg_beacon(struct wiphy *wiphy, unsigned int chan_idx,
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001285 struct reg_beacon *reg_beacon)
1286{
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001287 struct ieee80211_supported_band *sband;
1288 struct ieee80211_channel *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001289 bool channel_changed = false;
1290 struct ieee80211_channel chan_before;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001291
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001292 sband = wiphy->bands[reg_beacon->chan.band];
1293 chan = &sband->channels[chan_idx];
1294
1295 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
1296 return;
1297
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001298 if (chan->beacon_found)
1299 return;
1300
1301 chan->beacon_found = true;
1302
Luis R. Rodriguez0f500a52012-12-19 10:53:04 -08001303 if (!reg_is_world_roaming(wiphy))
1304 return;
1305
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001306 if (wiphy->regulatory_flags & REGULATORY_DISABLE_BEACON_HINTS)
Luis R. Rodriguez37184242009-07-30 17:43:48 -07001307 return;
1308
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001309 chan_before.center_freq = chan->center_freq;
1310 chan_before.flags = chan->flags;
1311
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001312 if (chan->flags & IEEE80211_CHAN_NO_IR) {
1313 chan->flags &= ~IEEE80211_CHAN_NO_IR;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001314 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001315 }
1316
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001317 if (channel_changed)
1318 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001319}
1320
1321/*
1322 * Called when a scan on a wiphy finds a beacon on
1323 * new channel
1324 */
1325static void wiphy_update_new_beacon(struct wiphy *wiphy,
1326 struct reg_beacon *reg_beacon)
1327{
1328 unsigned int i;
1329 struct ieee80211_supported_band *sband;
1330
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001331 if (!wiphy->bands[reg_beacon->chan.band])
1332 return;
1333
1334 sband = wiphy->bands[reg_beacon->chan.band];
1335
1336 for (i = 0; i < sband->n_channels; i++)
1337 handle_reg_beacon(wiphy, i, reg_beacon);
1338}
1339
1340/*
1341 * Called upon reg changes or a new wiphy is added
1342 */
1343static void wiphy_update_beacon_reg(struct wiphy *wiphy)
1344{
1345 unsigned int i;
1346 struct ieee80211_supported_band *sband;
1347 struct reg_beacon *reg_beacon;
1348
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001349 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
1350 if (!wiphy->bands[reg_beacon->chan.band])
1351 continue;
1352 sband = wiphy->bands[reg_beacon->chan.band];
1353 for (i = 0; i < sband->n_channels; i++)
1354 handle_reg_beacon(wiphy, i, reg_beacon);
1355 }
1356}
1357
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001358/* Reap the advantages of previously found beacons */
1359static void reg_process_beacons(struct wiphy *wiphy)
1360{
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001361 /*
1362 * Means we are just firing up cfg80211, so no beacons would
1363 * have been processed yet.
1364 */
1365 if (!last_request)
1366 return;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001367 wiphy_update_beacon_reg(wiphy);
1368}
1369
Johannes Berg1a919312012-12-03 17:21:11 +01001370static bool is_ht40_allowed(struct ieee80211_channel *chan)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001371{
1372 if (!chan)
Johannes Berg1a919312012-12-03 17:21:11 +01001373 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001374 if (chan->flags & IEEE80211_CHAN_DISABLED)
Johannes Berg1a919312012-12-03 17:21:11 +01001375 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001376 /* This would happen when regulatory rules disallow HT40 completely */
Felix Fietkau55b183a2013-01-11 14:22:58 +01001377 if ((chan->flags & IEEE80211_CHAN_NO_HT40) == IEEE80211_CHAN_NO_HT40)
1378 return false;
1379 return true;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001380}
1381
1382static void reg_process_ht_flags_channel(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001383 struct ieee80211_channel *channel)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001384{
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001385 struct ieee80211_supported_band *sband = wiphy->bands[channel->band];
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001386 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
1387 unsigned int i;
1388
Johannes Berg1a919312012-12-03 17:21:11 +01001389 if (!is_ht40_allowed(channel)) {
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001390 channel->flags |= IEEE80211_CHAN_NO_HT40;
1391 return;
1392 }
1393
1394 /*
1395 * We need to ensure the extension channels exist to
1396 * be able to use HT40- or HT40+, this finds them (or not)
1397 */
1398 for (i = 0; i < sband->n_channels; i++) {
1399 struct ieee80211_channel *c = &sband->channels[i];
Johannes Berg1a919312012-12-03 17:21:11 +01001400
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001401 if (c->center_freq == (channel->center_freq - 20))
1402 channel_before = c;
1403 if (c->center_freq == (channel->center_freq + 20))
1404 channel_after = c;
1405 }
1406
1407 /*
1408 * Please note that this assumes target bandwidth is 20 MHz,
1409 * if that ever changes we also need to change the below logic
1410 * to include that as well.
1411 */
Johannes Berg1a919312012-12-03 17:21:11 +01001412 if (!is_ht40_allowed(channel_before))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001413 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001414 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001415 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001416
Johannes Berg1a919312012-12-03 17:21:11 +01001417 if (!is_ht40_allowed(channel_after))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001418 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001419 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001420 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001421}
1422
1423static void reg_process_ht_flags_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001424 struct ieee80211_supported_band *sband)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001425{
1426 unsigned int i;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001427
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001428 if (!sband)
1429 return;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001430
1431 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001432 reg_process_ht_flags_channel(wiphy, &sband->channels[i]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001433}
1434
1435static void reg_process_ht_flags(struct wiphy *wiphy)
1436{
1437 enum ieee80211_band band;
1438
1439 if (!wiphy)
1440 return;
1441
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001442 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1443 reg_process_ht_flags_band(wiphy, wiphy->bands[band]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001444}
1445
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001446static void reg_call_notifier(struct wiphy *wiphy,
1447 struct regulatory_request *request)
1448{
1449 if (wiphy->reg_notifier)
1450 wiphy->reg_notifier(wiphy, request);
1451}
1452
Sven Neumanneac03e32011-08-30 23:38:53 +02001453static void wiphy_update_regulatory(struct wiphy *wiphy,
1454 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +01001455{
1456 enum ieee80211_band band;
Johannes Bergc492db32012-12-06 16:29:25 +01001457 struct regulatory_request *lr = get_last_request();
Sven Neumanneac03e32011-08-30 23:38:53 +02001458
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001459 if (ignore_reg_update(wiphy, initiator)) {
1460 /*
1461 * Regulatory updates set by CORE are ignored for custom
1462 * regulatory cards. Let us notify the changes to the driver,
1463 * as some drivers used this to restore its orig_* reg domain.
1464 */
1465 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001466 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001467 reg_call_notifier(wiphy, lr);
Sven Neumanna203c2a2011-07-12 15:52:07 +02001468 return;
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001469 }
Sven Neumanna203c2a2011-07-12 15:52:07 +02001470
Johannes Bergc492db32012-12-06 16:29:25 +01001471 lr->dfs_region = get_cfg80211_regdom()->dfs_region;
Luis R. Rodriguezb68e6b32011-10-11 10:59:03 -07001472
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001473 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1474 handle_band(wiphy, initiator, wiphy->bands[band]);
Sven Neumanna203c2a2011-07-12 15:52:07 +02001475
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001476 reg_process_beacons(wiphy);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001477 reg_process_ht_flags(wiphy);
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001478 reg_call_notifier(wiphy, lr);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001479}
1480
Sven Neumannd7549cb2011-08-30 23:38:54 +02001481static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
1482{
1483 struct cfg80211_registered_device *rdev;
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301484 struct wiphy *wiphy;
Sven Neumannd7549cb2011-08-30 23:38:54 +02001485
Johannes Berg5fe231e2013-05-08 21:45:15 +02001486 ASSERT_RTNL();
Johannes Berg458f4f92012-12-06 15:47:38 +01001487
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301488 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1489 wiphy = &rdev->wiphy;
1490 wiphy_update_regulatory(wiphy, initiator);
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301491 }
Sven Neumannd7549cb2011-08-30 23:38:54 +02001492}
1493
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001494static void handle_channel_custom(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001495 struct ieee80211_channel *chan,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001496 const struct ieee80211_regdomain *regd)
1497{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001498 u32 bw_flags = 0;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001499 const struct ieee80211_reg_rule *reg_rule = NULL;
1500 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001501 const struct ieee80211_freq_range *freq_range = NULL;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001502 u32 max_bandwidth_khz;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001503
Johannes Berg361c9c82012-12-06 15:57:14 +01001504 reg_rule = freq_reg_info_regd(wiphy, MHZ_TO_KHZ(chan->center_freq),
1505 regd);
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001506
Johannes Berg361c9c82012-12-06 15:57:14 +01001507 if (IS_ERR(reg_rule)) {
Johannes Bergfe7ef5e2012-12-04 15:07:34 +01001508 REG_DBG_PRINT("Disabling freq %d MHz as custom regd has no rule that fits it\n",
1509 chan->center_freq);
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001510 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1511 chan->flags = chan->orig_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001512 return;
1513 }
1514
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001515 chan_reg_rule_print_dbg(regd, chan, reg_rule);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301516
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001517 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001518 freq_range = &reg_rule->freq_range;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001519
Janusz Dziedzic97524822014-01-30 09:52:20 +01001520 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1521 /* Check if auto calculation requested */
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001522 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
Janusz Dziedzic97524822014-01-30 09:52:20 +01001523 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
1524
Rostislav Lisovy8eca1fb2014-04-15 14:37:56 +02001525 if (max_bandwidth_khz < MHZ_TO_KHZ(10))
1526 bw_flags = IEEE80211_CHAN_NO_10MHZ;
1527 if (max_bandwidth_khz < MHZ_TO_KHZ(20))
1528 bw_flags |= IEEE80211_CHAN_NO_20MHZ;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001529 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
Rostislav Lisovy8eca1fb2014-04-15 14:37:56 +02001530 bw_flags |= IEEE80211_CHAN_NO_HT40;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001531 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001532 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001533 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001534 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001535
1536 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001537 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02001538 chan->max_reg_power = chan->max_power =
1539 (int) MBM_TO_DBM(power_rule->max_eirp);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001540}
1541
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001542static void handle_band_custom(struct wiphy *wiphy,
1543 struct ieee80211_supported_band *sband,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001544 const struct ieee80211_regdomain *regd)
1545{
1546 unsigned int i;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001547
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001548 if (!sband)
1549 return;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001550
1551 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001552 handle_channel_custom(wiphy, &sband->channels[i], regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001553}
1554
1555/* Used by drivers prior to wiphy registration */
1556void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1557 const struct ieee80211_regdomain *regd)
1558{
1559 enum ieee80211_band band;
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001560 unsigned int bands_set = 0;
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001561
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001562 WARN(!(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG),
1563 "wiphy should have REGULATORY_CUSTOM_REG\n");
1564 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
Luis R. Rodriguez222ea582013-11-05 09:18:00 -08001565
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001566 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001567 if (!wiphy->bands[band])
1568 continue;
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001569 handle_band_custom(wiphy, wiphy->bands[band], regd);
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001570 bands_set++;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001571 }
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001572
1573 /*
1574 * no point in calling this if it won't have any effect
Johannes Berg1a919312012-12-03 17:21:11 +01001575 * on your device's supported bands.
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001576 */
1577 WARN_ON(!bands_set);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001578}
1579EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1580
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001581static void reg_set_request_processed(void)
1582{
1583 bool need_more_processing = false;
Johannes Bergc492db32012-12-06 16:29:25 +01001584 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001585
Johannes Bergc492db32012-12-06 16:29:25 +01001586 lr->processed = true;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001587
1588 spin_lock(&reg_requests_lock);
1589 if (!list_empty(&reg_requests_list))
1590 need_more_processing = true;
1591 spin_unlock(&reg_requests_lock);
1592
Johannes Bergc492db32012-12-06 16:29:25 +01001593 if (lr->initiator == NL80211_REGDOM_SET_BY_USER)
Eliad Pellerfe20b392012-06-12 12:53:13 +03001594 cancel_delayed_work(&reg_timeout);
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07001595
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001596 if (need_more_processing)
1597 schedule_work(&reg_work);
1598}
1599
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001600/**
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001601 * reg_process_hint_core - process core regulatory requests
1602 * @pending_request: a pending core regulatory request
1603 *
1604 * The wireless subsystem can use this function to process
1605 * a regulatory request issued by the regulatory core.
1606 *
1607 * Returns one of the different reg request treatment values.
1608 */
1609static enum reg_request_treatment
1610reg_process_hint_core(struct regulatory_request *core_request)
1611{
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001612
1613 core_request->intersect = false;
1614 core_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001615
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001616 reg_update_last_request(core_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001617
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001618 return reg_call_crda(core_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001619}
1620
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001621static enum reg_request_treatment
1622__reg_process_hint_user(struct regulatory_request *user_request)
1623{
1624 struct regulatory_request *lr = get_last_request();
1625
Ilan Peer52616f22014-02-25 16:26:00 +02001626 if (reg_request_indoor(user_request)) {
1627 reg_is_indoor = true;
1628 return REG_REQ_USER_HINT_HANDLED;
1629 }
1630
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001631 if (reg_request_cell_base(user_request))
1632 return reg_ignore_cell_hint(user_request);
1633
1634 if (reg_request_cell_base(lr))
1635 return REG_REQ_IGNORE;
1636
1637 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
1638 return REG_REQ_INTERSECT;
1639 /*
1640 * If the user knows better the user should set the regdom
1641 * to their country before the IE is picked up
1642 */
1643 if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
1644 lr->intersect)
1645 return REG_REQ_IGNORE;
1646 /*
1647 * Process user requests only after previous user/driver/core
1648 * requests have been processed
1649 */
1650 if ((lr->initiator == NL80211_REGDOM_SET_BY_CORE ||
1651 lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
1652 lr->initiator == NL80211_REGDOM_SET_BY_USER) &&
1653 regdom_changes(lr->alpha2))
1654 return REG_REQ_IGNORE;
1655
1656 if (!regdom_changes(user_request->alpha2))
1657 return REG_REQ_ALREADY_SET;
1658
1659 return REG_REQ_OK;
1660}
1661
1662/**
1663 * reg_process_hint_user - process user regulatory requests
1664 * @user_request: a pending user regulatory request
1665 *
1666 * The wireless subsystem can use this function to process
1667 * a regulatory request initiated by userspace.
1668 *
1669 * Returns one of the different reg request treatment values.
1670 */
1671static enum reg_request_treatment
1672reg_process_hint_user(struct regulatory_request *user_request)
1673{
1674 enum reg_request_treatment treatment;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001675
1676 treatment = __reg_process_hint_user(user_request);
1677 if (treatment == REG_REQ_IGNORE ||
Ilan Peer52616f22014-02-25 16:26:00 +02001678 treatment == REG_REQ_ALREADY_SET ||
1679 treatment == REG_REQ_USER_HINT_HANDLED) {
Arik Nemtsovc8883932014-04-21 20:39:34 -07001680 reg_free_request(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001681 return treatment;
1682 }
1683
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001684 user_request->intersect = treatment == REG_REQ_INTERSECT;
1685 user_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001686
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001687 reg_update_last_request(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001688
1689 user_alpha2[0] = user_request->alpha2[0];
1690 user_alpha2[1] = user_request->alpha2[1];
1691
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001692 return reg_call_crda(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001693}
1694
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001695static enum reg_request_treatment
1696__reg_process_hint_driver(struct regulatory_request *driver_request)
1697{
1698 struct regulatory_request *lr = get_last_request();
1699
1700 if (lr->initiator == NL80211_REGDOM_SET_BY_CORE) {
1701 if (regdom_changes(driver_request->alpha2))
1702 return REG_REQ_OK;
1703 return REG_REQ_ALREADY_SET;
1704 }
1705
1706 /*
1707 * This would happen if you unplug and plug your card
1708 * back in or if you add a new device for which the previously
1709 * loaded card also agrees on the regulatory domain.
1710 */
1711 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1712 !regdom_changes(driver_request->alpha2))
1713 return REG_REQ_ALREADY_SET;
1714
1715 return REG_REQ_INTERSECT;
1716}
1717
1718/**
1719 * reg_process_hint_driver - process driver regulatory requests
1720 * @driver_request: a pending driver regulatory request
1721 *
1722 * The wireless subsystem can use this function to process
1723 * a regulatory request issued by an 802.11 driver.
1724 *
1725 * Returns one of the different reg request treatment values.
1726 */
1727static enum reg_request_treatment
1728reg_process_hint_driver(struct wiphy *wiphy,
1729 struct regulatory_request *driver_request)
1730{
1731 const struct ieee80211_regdomain *regd;
1732 enum reg_request_treatment treatment;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001733
1734 treatment = __reg_process_hint_driver(driver_request);
1735
1736 switch (treatment) {
1737 case REG_REQ_OK:
1738 break;
1739 case REG_REQ_IGNORE:
Ilan Peer52616f22014-02-25 16:26:00 +02001740 case REG_REQ_USER_HINT_HANDLED:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001741 reg_free_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001742 return treatment;
1743 case REG_REQ_INTERSECT:
1744 /* fall through */
1745 case REG_REQ_ALREADY_SET:
1746 regd = reg_copy_regd(get_cfg80211_regdom());
1747 if (IS_ERR(regd)) {
Arik Nemtsovc8883932014-04-21 20:39:34 -07001748 reg_free_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001749 return REG_REQ_IGNORE;
1750 }
1751 rcu_assign_pointer(wiphy->regd, regd);
1752 }
1753
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001754
1755 driver_request->intersect = treatment == REG_REQ_INTERSECT;
1756 driver_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001757
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001758 reg_update_last_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001759
1760 /*
1761 * Since CRDA will not be called in this case as we already
1762 * have applied the requested regulatory domain before we just
1763 * inform userspace we have processed the request
1764 */
1765 if (treatment == REG_REQ_ALREADY_SET) {
1766 nl80211_send_reg_change_event(driver_request);
1767 reg_set_request_processed();
1768 return treatment;
1769 }
1770
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001771 return reg_call_crda(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001772}
1773
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001774static enum reg_request_treatment
1775__reg_process_hint_country_ie(struct wiphy *wiphy,
1776 struct regulatory_request *country_ie_request)
1777{
1778 struct wiphy *last_wiphy = NULL;
1779 struct regulatory_request *lr = get_last_request();
1780
1781 if (reg_request_cell_base(lr)) {
1782 /* Trust a Cell base station over the AP's country IE */
1783 if (regdom_changes(country_ie_request->alpha2))
1784 return REG_REQ_IGNORE;
1785 return REG_REQ_ALREADY_SET;
Luis R. Rodriguez2a901462013-11-11 22:15:31 +01001786 } else {
1787 if (wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_IGNORE)
1788 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001789 }
1790
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001791 if (unlikely(!is_an_alpha2(country_ie_request->alpha2)))
1792 return -EINVAL;
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001793
1794 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE)
1795 return REG_REQ_OK;
1796
1797 last_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
1798
1799 if (last_wiphy != wiphy) {
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001800 /*
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001801 * Two cards with two APs claiming different
1802 * Country IE alpha2s. We could
1803 * intersect them, but that seems unlikely
1804 * to be correct. Reject second one for now.
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001805 */
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001806 if (regdom_changes(country_ie_request->alpha2))
1807 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001808 return REG_REQ_ALREADY_SET;
1809 }
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001810 /*
1811 * Two consecutive Country IE hints on the same wiphy.
1812 * This should be picked up early by the driver/stack
1813 */
1814 if (WARN_ON(regdom_changes(country_ie_request->alpha2)))
1815 return REG_REQ_OK;
1816 return REG_REQ_ALREADY_SET;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001817}
1818
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001819/**
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001820 * reg_process_hint_country_ie - process regulatory requests from country IEs
1821 * @country_ie_request: a regulatory request from a country IE
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001822 *
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001823 * The wireless subsystem can use this function to process
1824 * a regulatory request issued by a country Information Element.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001825 *
Johannes Berg2f922122012-12-03 17:54:55 +01001826 * Returns one of the different reg request treatment values.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001827 */
Johannes Berg2f922122012-12-03 17:54:55 +01001828static enum reg_request_treatment
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001829reg_process_hint_country_ie(struct wiphy *wiphy,
1830 struct regulatory_request *country_ie_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001831{
Johannes Berg2f922122012-12-03 17:54:55 +01001832 enum reg_request_treatment treatment;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001833
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001834 treatment = __reg_process_hint_country_ie(wiphy, country_ie_request);
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001835
Johannes Berg2f922122012-12-03 17:54:55 +01001836 switch (treatment) {
Johannes Berg2f922122012-12-03 17:54:55 +01001837 case REG_REQ_OK:
1838 break;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001839 case REG_REQ_IGNORE:
Ilan Peer52616f22014-02-25 16:26:00 +02001840 case REG_REQ_USER_HINT_HANDLED:
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001841 /* fall through */
1842 case REG_REQ_ALREADY_SET:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001843 reg_free_request(country_ie_request);
Johannes Berg2f922122012-12-03 17:54:55 +01001844 return treatment;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001845 case REG_REQ_INTERSECT:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001846 reg_free_request(country_ie_request);
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001847 /*
1848 * This doesn't happen yet, not sure we
1849 * ever want to support it for this case.
1850 */
1851 WARN_ONCE(1, "Unexpected intersection for country IEs");
1852 return REG_REQ_IGNORE;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001853 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001854
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001855 country_ie_request->intersect = false;
1856 country_ie_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001857
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001858 reg_update_last_request(country_ie_request);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001859
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001860 return reg_call_crda(country_ie_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001861}
1862
Luis R. Rodriguez30a548c2009-05-02 01:17:27 -04001863/* This processes *all* regulatory hints */
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08001864static void reg_process_hint(struct regulatory_request *reg_request)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001865{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001866 struct wiphy *wiphy = NULL;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001867 enum reg_request_treatment treatment;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001868
Johannes Bergf4173762012-12-03 18:23:37 +01001869 if (reg_request->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001870 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
1871
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001872 switch (reg_request->initiator) {
1873 case NL80211_REGDOM_SET_BY_CORE:
1874 reg_process_hint_core(reg_request);
1875 return;
1876 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001877 treatment = reg_process_hint_user(reg_request);
Inbal Hacohen50c11eb2014-02-12 09:32:27 +02001878 if (treatment == REG_REQ_IGNORE ||
Arik Nemtsov4d3df542014-05-11 11:50:44 +03001879 treatment == REG_REQ_ALREADY_SET ||
1880 treatment == REG_REQ_USER_HINT_HANDLED)
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001881 return;
Shaibal Dutta845f3352014-01-30 15:08:30 -08001882 queue_delayed_work(system_power_efficient_wq,
1883 &reg_timeout, msecs_to_jiffies(3142));
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001884 return;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001885 case NL80211_REGDOM_SET_BY_DRIVER:
Ilan Peer772f0382014-01-14 15:17:23 +02001886 if (!wiphy)
1887 goto out_free;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001888 treatment = reg_process_hint_driver(wiphy, reg_request);
1889 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001890 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Ilan Peer772f0382014-01-14 15:17:23 +02001891 if (!wiphy)
1892 goto out_free;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001893 treatment = reg_process_hint_country_ie(wiphy, reg_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001894 break;
1895 default:
1896 WARN(1, "invalid initiator %d\n", reg_request->initiator);
Ilan Peer772f0382014-01-14 15:17:23 +02001897 goto out_free;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001898 }
1899
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001900 /* This is required so that the orig_* parameters are saved */
1901 if (treatment == REG_REQ_ALREADY_SET && wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001902 wiphy->regulatory_flags & REGULATORY_STRICT_REG)
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001903 wiphy_update_regulatory(wiphy, reg_request->initiator);
Ilan Peer772f0382014-01-14 15:17:23 +02001904
1905 return;
1906
1907out_free:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001908 reg_free_request(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001909}
1910
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001911/*
1912 * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
1913 * Regulatory hints come on a first come first serve basis and we
1914 * must process each one atomically.
1915 */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001916static void reg_process_pending_hints(void)
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001917{
Johannes Bergc492db32012-12-06 16:29:25 +01001918 struct regulatory_request *reg_request, *lr;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001919
Johannes Bergc492db32012-12-06 16:29:25 +01001920 lr = get_last_request();
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001921
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001922 /* When last_request->processed becomes true this will be rescheduled */
Johannes Bergc492db32012-12-06 16:29:25 +01001923 if (lr && !lr->processed) {
Luis R. Rodriguez96cce122014-04-21 20:39:35 -07001924 reg_process_hint(lr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001925 return;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001926 }
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001927
1928 spin_lock(&reg_requests_lock);
1929
1930 if (list_empty(&reg_requests_list)) {
1931 spin_unlock(&reg_requests_lock);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001932 return;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001933 }
1934
1935 reg_request = list_first_entry(&reg_requests_list,
1936 struct regulatory_request,
1937 list);
1938 list_del_init(&reg_request->list);
1939
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001940 spin_unlock(&reg_requests_lock);
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001941
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08001942 reg_process_hint(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001943}
1944
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001945/* Processes beacon hints -- this has nothing to do with country IEs */
1946static void reg_process_pending_beacon_hints(void)
1947{
Johannes Berg79c97e92009-07-07 03:56:12 +02001948 struct cfg80211_registered_device *rdev;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001949 struct reg_beacon *pending_beacon, *tmp;
1950
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001951 /* This goes through the _pending_ beacon list */
1952 spin_lock_bh(&reg_pending_beacons_lock);
1953
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001954 list_for_each_entry_safe(pending_beacon, tmp,
1955 &reg_pending_beacons, list) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001956 list_del_init(&pending_beacon->list);
1957
1958 /* Applies the beacon hint to current wiphys */
Johannes Berg79c97e92009-07-07 03:56:12 +02001959 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1960 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001961
1962 /* Remembers the beacon hint for new wiphys or reg changes */
1963 list_add_tail(&pending_beacon->list, &reg_beacon_list);
1964 }
1965
1966 spin_unlock_bh(&reg_pending_beacons_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001967}
1968
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001969static void reg_todo(struct work_struct *work)
1970{
Johannes Berg5fe231e2013-05-08 21:45:15 +02001971 rtnl_lock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001972 reg_process_pending_hints();
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001973 reg_process_pending_beacon_hints();
Johannes Berg5fe231e2013-05-08 21:45:15 +02001974 rtnl_unlock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001975}
1976
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001977static void queue_regulatory_request(struct regulatory_request *request)
1978{
Johannes Bergd4f2c882012-12-03 18:59:58 +01001979 request->alpha2[0] = toupper(request->alpha2[0]);
1980 request->alpha2[1] = toupper(request->alpha2[1]);
John W. Linvillec61029c2010-08-05 14:26:24 -04001981
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001982 spin_lock(&reg_requests_lock);
1983 list_add_tail(&request->list, &reg_requests_list);
1984 spin_unlock(&reg_requests_lock);
1985
1986 schedule_work(&reg_work);
1987}
1988
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001989/*
1990 * Core regulatory hint -- happens during cfg80211_init()
1991 * and when we restore regulatory settings.
1992 */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001993static int regulatory_hint_core(const char *alpha2)
1994{
1995 struct regulatory_request *request;
1996
Johannes Berg1a919312012-12-03 17:21:11 +01001997 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001998 if (!request)
1999 return -ENOMEM;
2000
2001 request->alpha2[0] = alpha2[0];
2002 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002003 request->initiator = NL80211_REGDOM_SET_BY_CORE;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002004
Luis R. Rodriguez31e99722010-11-17 21:46:06 -08002005 queue_regulatory_request(request);
Luis R. Rodriguez5078b2e2009-05-13 17:04:42 -04002006
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002007 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002008}
2009
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002010/* User hints */
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002011int regulatory_hint_user(const char *alpha2,
2012 enum nl80211_user_reg_hint_type user_reg_hint_type)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002013{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002014 struct regulatory_request *request;
2015
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002016 if (WARN_ON(!alpha2))
2017 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002018
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002019 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2020 if (!request)
2021 return -ENOMEM;
2022
Johannes Bergf4173762012-12-03 18:23:37 +01002023 request->wiphy_idx = WIPHY_IDX_INVALID;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002024 request->alpha2[0] = alpha2[0];
2025 request->alpha2[1] = alpha2[1];
Luis R. Rodrigueze12822e2010-01-04 11:37:39 -05002026 request->initiator = NL80211_REGDOM_SET_BY_USER;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002027 request->user_reg_hint_type = user_reg_hint_type;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002028
2029 queue_regulatory_request(request);
2030
2031 return 0;
2032}
2033
Ilan Peer52616f22014-02-25 16:26:00 +02002034int regulatory_hint_indoor_user(void)
2035{
2036 struct regulatory_request *request;
2037
2038 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2039 if (!request)
2040 return -ENOMEM;
2041
2042 request->wiphy_idx = WIPHY_IDX_INVALID;
2043 request->initiator = NL80211_REGDOM_SET_BY_USER;
2044 request->user_reg_hint_type = NL80211_USER_REG_HINT_INDOOR;
2045 queue_regulatory_request(request);
2046
2047 return 0;
2048}
2049
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002050/* Driver hints */
2051int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
2052{
2053 struct regulatory_request *request;
2054
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002055 if (WARN_ON(!alpha2 || !wiphy))
2056 return -EINVAL;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002057
Luis R. Rodriguez4f7b9142013-12-14 20:09:06 +01002058 wiphy->regulatory_flags &= ~REGULATORY_CUSTOM_REG;
2059
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002060 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2061 if (!request)
2062 return -ENOMEM;
2063
2064 request->wiphy_idx = get_wiphy_idx(wiphy);
2065
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002066 request->alpha2[0] = alpha2[0];
2067 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002068 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002069
2070 queue_regulatory_request(request);
2071
2072 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002073}
2074EXPORT_SYMBOL(regulatory_hint);
2075
Luis R. Rodriguez789fd032013-10-04 18:07:24 -07002076void regulatory_hint_country_ie(struct wiphy *wiphy, enum ieee80211_band band,
2077 const u8 *country_ie, u8 country_ie_len)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002078{
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002079 char alpha2[2];
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002080 enum environment_cap env = ENVIRON_ANY;
Johannes Bergdb2424c2013-05-10 19:07:52 +02002081 struct regulatory_request *request = NULL, *lr;
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05002082
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002083 /* IE len must be evenly divisible by 2 */
2084 if (country_ie_len & 0x01)
Johannes Bergdb2424c2013-05-10 19:07:52 +02002085 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002086
2087 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Bergdb2424c2013-05-10 19:07:52 +02002088 return;
2089
2090 request = kzalloc(sizeof(*request), GFP_KERNEL);
2091 if (!request)
2092 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002093
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002094 alpha2[0] = country_ie[0];
2095 alpha2[1] = country_ie[1];
2096
2097 if (country_ie[2] == 'I')
2098 env = ENVIRON_INDOOR;
2099 else if (country_ie[2] == 'O')
2100 env = ENVIRON_OUTDOOR;
2101
Johannes Bergdb2424c2013-05-10 19:07:52 +02002102 rcu_read_lock();
2103 lr = get_last_request();
2104
2105 if (unlikely(!lr))
2106 goto out;
2107
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002108 /*
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07002109 * We will run this only upon a successful connection on cfg80211.
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07002110 * We leave conflict resolution to the workqueue, where can hold
Johannes Berg5fe231e2013-05-08 21:45:15 +02002111 * the RTNL.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002112 */
Johannes Bergc492db32012-12-06 16:29:25 +01002113 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
2114 lr->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07002115 goto out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002116
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002117 request->wiphy_idx = get_wiphy_idx(wiphy);
John W. Linville4f366c52010-07-15 14:57:33 -04002118 request->alpha2[0] = alpha2[0];
2119 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002120 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002121 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002122
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002123 queue_regulatory_request(request);
Johannes Bergdb2424c2013-05-10 19:07:52 +02002124 request = NULL;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002125out:
Johannes Bergdb2424c2013-05-10 19:07:52 +02002126 kfree(request);
2127 rcu_read_unlock();
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002128}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002129
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002130static void restore_alpha2(char *alpha2, bool reset_user)
2131{
2132 /* indicates there is no alpha2 to consider for restoration */
2133 alpha2[0] = '9';
2134 alpha2[1] = '7';
2135
2136 /* The user setting has precedence over the module parameter */
2137 if (is_user_regdom_saved()) {
2138 /* Unless we're asked to ignore it and reset it */
2139 if (reset_user) {
Johannes Berg1a919312012-12-03 17:21:11 +01002140 REG_DBG_PRINT("Restoring regulatory settings including user preference\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002141 user_alpha2[0] = '9';
2142 user_alpha2[1] = '7';
2143
2144 /*
2145 * If we're ignoring user settings, we still need to
2146 * check the module parameter to ensure we put things
2147 * back as they were for a full restore.
2148 */
2149 if (!is_world_regdom(ieee80211_regdom)) {
Johannes Berg1a919312012-12-03 17:21:11 +01002150 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2151 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002152 alpha2[0] = ieee80211_regdom[0];
2153 alpha2[1] = ieee80211_regdom[1];
2154 }
2155 } else {
Johannes Berg1a919312012-12-03 17:21:11 +01002156 REG_DBG_PRINT("Restoring regulatory settings while preserving user preference for: %c%c\n",
2157 user_alpha2[0], user_alpha2[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002158 alpha2[0] = user_alpha2[0];
2159 alpha2[1] = user_alpha2[1];
2160 }
2161 } else if (!is_world_regdom(ieee80211_regdom)) {
Johannes Berg1a919312012-12-03 17:21:11 +01002162 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2163 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002164 alpha2[0] = ieee80211_regdom[0];
2165 alpha2[1] = ieee80211_regdom[1];
2166 } else
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07002167 REG_DBG_PRINT("Restoring regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002168}
2169
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302170static void restore_custom_reg_settings(struct wiphy *wiphy)
2171{
2172 struct ieee80211_supported_band *sband;
2173 enum ieee80211_band band;
2174 struct ieee80211_channel *chan;
2175 int i;
2176
2177 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
2178 sband = wiphy->bands[band];
2179 if (!sband)
2180 continue;
2181 for (i = 0; i < sband->n_channels; i++) {
2182 chan = &sband->channels[i];
2183 chan->flags = chan->orig_flags;
2184 chan->max_antenna_gain = chan->orig_mag;
2185 chan->max_power = chan->orig_mpwr;
Paul Stewart899852a2012-08-01 16:54:42 -07002186 chan->beacon_found = false;
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302187 }
2188 }
2189}
2190
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002191/*
2192 * Restoring regulatory settings involves ingoring any
2193 * possibly stale country IE information and user regulatory
2194 * settings if so desired, this includes any beacon hints
2195 * learned as we could have traveled outside to another country
2196 * after disconnection. To restore regulatory settings we do
2197 * exactly what we did at bootup:
2198 *
2199 * - send a core regulatory hint
2200 * - send a user regulatory hint if applicable
2201 *
2202 * Device drivers that send a regulatory hint for a specific country
2203 * keep their own regulatory domain on wiphy->regd so that does does
2204 * not need to be remembered.
2205 */
2206static void restore_regulatory_settings(bool reset_user)
2207{
2208 char alpha2[2];
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08002209 char world_alpha2[2];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002210 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002211 struct regulatory_request *reg_request, *tmp;
2212 LIST_HEAD(tmp_reg_req_list);
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302213 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002214
Johannes Berg5fe231e2013-05-08 21:45:15 +02002215 ASSERT_RTNL();
2216
Ilan Peer52616f22014-02-25 16:26:00 +02002217 reg_is_indoor = false;
2218
Johannes Berg2d319862013-01-09 12:01:38 +01002219 reset_regdomains(true, &world_regdom);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002220 restore_alpha2(alpha2, reset_user);
2221
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002222 /*
2223 * If there's any pending requests we simply
2224 * stash them to a temporary pending queue and
2225 * add then after we've restored regulatory
2226 * settings.
2227 */
2228 spin_lock(&reg_requests_lock);
Johannes Bergfea9bce2012-12-03 17:32:01 +01002229 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
2230 if (reg_request->initiator != NL80211_REGDOM_SET_BY_USER)
2231 continue;
2232 list_move_tail(&reg_request->list, &tmp_reg_req_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002233 }
2234 spin_unlock(&reg_requests_lock);
2235
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002236 /* Clear beacon hints */
2237 spin_lock_bh(&reg_pending_beacons_lock);
Johannes Bergfea9bce2012-12-03 17:32:01 +01002238 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
2239 list_del(&reg_beacon->list);
2240 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002241 }
2242 spin_unlock_bh(&reg_pending_beacons_lock);
2243
Johannes Bergfea9bce2012-12-03 17:32:01 +01002244 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
2245 list_del(&reg_beacon->list);
2246 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002247 }
2248
2249 /* First restore to the basic regulatory settings */
Johannes Berg379b82f2012-12-06 15:44:07 +01002250 world_alpha2[0] = cfg80211_world_regdom->alpha2[0];
2251 world_alpha2[1] = cfg80211_world_regdom->alpha2[1];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002252
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302253 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002254 if (rdev->wiphy.regulatory_flags & REGULATORY_CUSTOM_REG)
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302255 restore_custom_reg_settings(&rdev->wiphy);
2256 }
2257
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08002258 regulatory_hint_core(world_alpha2);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002259
2260 /*
2261 * This restores the ieee80211_regdom module parameter
2262 * preference or the last user requested regulatory
2263 * settings, user regulatory settings takes precedence.
2264 */
2265 if (is_an_alpha2(alpha2))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002266 regulatory_hint_user(user_alpha2, NL80211_USER_REG_HINT_USER);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002267
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002268 spin_lock(&reg_requests_lock);
Johannes Berg11cff962012-12-03 18:56:41 +01002269 list_splice_tail_init(&tmp_reg_req_list, &reg_requests_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002270 spin_unlock(&reg_requests_lock);
2271
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002272 REG_DBG_PRINT("Kicking the queue\n");
2273
2274 schedule_work(&reg_work);
2275}
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002276
2277void regulatory_hint_disconnect(void)
2278{
Johannes Berg1a919312012-12-03 17:21:11 +01002279 REG_DBG_PRINT("All devices are disconnected, going to restore regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002280 restore_regulatory_settings(false);
2281}
2282
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002283static bool freq_is_chan_12_13_14(u16 freq)
2284{
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002285 if (freq == ieee80211_channel_to_frequency(12, IEEE80211_BAND_2GHZ) ||
2286 freq == ieee80211_channel_to_frequency(13, IEEE80211_BAND_2GHZ) ||
2287 freq == ieee80211_channel_to_frequency(14, IEEE80211_BAND_2GHZ))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002288 return true;
2289 return false;
2290}
2291
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002292static bool pending_reg_beacon(struct ieee80211_channel *beacon_chan)
2293{
2294 struct reg_beacon *pending_beacon;
2295
2296 list_for_each_entry(pending_beacon, &reg_pending_beacons, list)
2297 if (beacon_chan->center_freq ==
2298 pending_beacon->chan.center_freq)
2299 return true;
2300 return false;
2301}
2302
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002303int regulatory_hint_found_beacon(struct wiphy *wiphy,
2304 struct ieee80211_channel *beacon_chan,
2305 gfp_t gfp)
2306{
2307 struct reg_beacon *reg_beacon;
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002308 bool processing;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002309
Johannes Berg1a919312012-12-03 17:21:11 +01002310 if (beacon_chan->beacon_found ||
2311 beacon_chan->flags & IEEE80211_CHAN_RADAR ||
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002312 (beacon_chan->band == IEEE80211_BAND_2GHZ &&
Johannes Berg1a919312012-12-03 17:21:11 +01002313 !freq_is_chan_12_13_14(beacon_chan->center_freq)))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002314 return 0;
2315
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002316 spin_lock_bh(&reg_pending_beacons_lock);
2317 processing = pending_reg_beacon(beacon_chan);
2318 spin_unlock_bh(&reg_pending_beacons_lock);
2319
2320 if (processing)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002321 return 0;
2322
2323 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
2324 if (!reg_beacon)
2325 return -ENOMEM;
2326
Johannes Berg1a919312012-12-03 17:21:11 +01002327 REG_DBG_PRINT("Found new beacon on frequency: %d MHz (Ch %d) on %s\n",
Luis R. Rodriguez4113f752010-01-04 11:50:11 -05002328 beacon_chan->center_freq,
2329 ieee80211_frequency_to_channel(beacon_chan->center_freq),
2330 wiphy_name(wiphy));
2331
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002332 memcpy(&reg_beacon->chan, beacon_chan,
Johannes Berg1a919312012-12-03 17:21:11 +01002333 sizeof(struct ieee80211_channel));
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002334
2335 /*
2336 * Since we can be called from BH or and non-BH context
2337 * we must use spin_lock_bh()
2338 */
2339 spin_lock_bh(&reg_pending_beacons_lock);
2340 list_add_tail(&reg_beacon->list, &reg_pending_beacons);
2341 spin_unlock_bh(&reg_pending_beacons_lock);
2342
2343 schedule_work(&reg_work);
2344
2345 return 0;
2346}
2347
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002348static void print_rd_rules(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002349{
2350 unsigned int i;
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002351 const struct ieee80211_reg_rule *reg_rule = NULL;
2352 const struct ieee80211_freq_range *freq_range = NULL;
2353 const struct ieee80211_power_rule *power_rule = NULL;
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002354 char bw[32], cac_time[32];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002355
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002356 pr_info(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002357
2358 for (i = 0; i < rd->n_reg_rules; i++) {
2359 reg_rule = &rd->reg_rules[i];
2360 freq_range = &reg_rule->freq_range;
2361 power_rule = &reg_rule->power_rule;
2362
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01002363 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
2364 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
2365 freq_range->max_bandwidth_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01002366 reg_get_max_bandwidth(rd, reg_rule));
2367 else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01002368 snprintf(bw, sizeof(bw), "%d KHz",
Janusz Dziedzic97524822014-01-30 09:52:20 +01002369 freq_range->max_bandwidth_khz);
2370
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002371 if (reg_rule->flags & NL80211_RRF_DFS)
2372 scnprintf(cac_time, sizeof(cac_time), "%u s",
2373 reg_rule->dfs_cac_ms/1000);
2374 else
2375 scnprintf(cac_time, sizeof(cac_time), "N/A");
2376
2377
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002378 /*
2379 * There may not be documentation for max antenna gain
2380 * in certain regions
2381 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002382 if (power_rule->max_antenna_gain)
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002383 pr_info(" (%d KHz - %d KHz @ %s), (%d mBi, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002384 freq_range->start_freq_khz,
2385 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01002386 bw,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002387 power_rule->max_antenna_gain,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002388 power_rule->max_eirp,
2389 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002390 else
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002391 pr_info(" (%d KHz - %d KHz @ %s), (N/A, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002392 freq_range->start_freq_khz,
2393 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01002394 bw,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002395 power_rule->max_eirp,
2396 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002397 }
2398}
2399
Luis R. Rodriguez4c7d3982013-11-13 18:54:02 +01002400bool reg_supported_dfs_region(enum nl80211_dfs_regions dfs_region)
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07002401{
2402 switch (dfs_region) {
2403 case NL80211_DFS_UNSET:
2404 case NL80211_DFS_FCC:
2405 case NL80211_DFS_ETSI:
2406 case NL80211_DFS_JP:
2407 return true;
2408 default:
2409 REG_DBG_PRINT("Ignoring uknown DFS master region: %d\n",
2410 dfs_region);
2411 return false;
2412 }
2413}
2414
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002415static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002416{
Johannes Bergc492db32012-12-06 16:29:25 +01002417 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002418
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002419 if (is_intersected_alpha2(rd->alpha2)) {
Johannes Bergc492db32012-12-06 16:29:25 +01002420 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Johannes Berg79c97e92009-07-07 03:56:12 +02002421 struct cfg80211_registered_device *rdev;
Johannes Bergc492db32012-12-06 16:29:25 +01002422 rdev = cfg80211_rdev_by_wiphy_idx(lr->wiphy_idx);
Johannes Berg79c97e92009-07-07 03:56:12 +02002423 if (rdev) {
Joe Perchese9c02682010-11-16 19:56:49 -08002424 pr_info("Current regulatory domain updated by AP to: %c%c\n",
Johannes Berg79c97e92009-07-07 03:56:12 +02002425 rdev->country_ie_alpha2[0],
2426 rdev->country_ie_alpha2[1]);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002427 } else
Joe Perchese9c02682010-11-16 19:56:49 -08002428 pr_info("Current regulatory domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002429 } else
Joe Perchese9c02682010-11-16 19:56:49 -08002430 pr_info("Current regulatory domain intersected:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01002431 } else if (is_world_regdom(rd->alpha2)) {
Joe Perchese9c02682010-11-16 19:56:49 -08002432 pr_info("World regulatory domain updated:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01002433 } else {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002434 if (is_unknown_alpha2(rd->alpha2))
Joe Perchese9c02682010-11-16 19:56:49 -08002435 pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n");
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002436 else {
Johannes Bergc492db32012-12-06 16:29:25 +01002437 if (reg_request_cell_base(lr))
Johannes Berg1a919312012-12-03 17:21:11 +01002438 pr_info("Regulatory domain changed to country: %c%c by Cell Station\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002439 rd->alpha2[0], rd->alpha2[1]);
2440 else
Johannes Berg1a919312012-12-03 17:21:11 +01002441 pr_info("Regulatory domain changed to country: %c%c\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002442 rd->alpha2[0], rd->alpha2[1]);
2443 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002444 }
Johannes Berg1a919312012-12-03 17:21:11 +01002445
Luis R. Rodriguez3ef121b2013-11-13 18:54:05 +01002446 pr_info(" DFS Master region: %s", reg_dfs_region_str(rd->dfs_region));
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002447 print_rd_rules(rd);
2448}
2449
Johannes Berg2df78162008-10-28 16:49:41 +01002450static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002451{
Joe Perchese9c02682010-11-16 19:56:49 -08002452 pr_info("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002453 print_rd_rules(rd);
2454}
2455
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002456static int reg_set_rd_core(const struct ieee80211_regdomain *rd)
2457{
2458 if (!is_world_regdom(rd->alpha2))
2459 return -EINVAL;
2460 update_world_regdomain(rd);
2461 return 0;
2462}
2463
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002464static int reg_set_rd_user(const struct ieee80211_regdomain *rd,
2465 struct regulatory_request *user_request)
2466{
2467 const struct ieee80211_regdomain *intersected_rd = NULL;
2468
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002469 if (!regdom_changes(rd->alpha2))
2470 return -EALREADY;
2471
2472 if (!is_valid_rd(rd)) {
2473 pr_err("Invalid regulatory domain detected:\n");
2474 print_regdomain_info(rd);
2475 return -EINVAL;
2476 }
2477
2478 if (!user_request->intersect) {
2479 reset_regdomains(false, rd);
2480 return 0;
2481 }
2482
2483 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2484 if (!intersected_rd)
2485 return -EINVAL;
2486
2487 kfree(rd);
2488 rd = NULL;
2489 reset_regdomains(false, intersected_rd);
2490
2491 return 0;
2492}
2493
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002494static int reg_set_rd_driver(const struct ieee80211_regdomain *rd,
2495 struct regulatory_request *driver_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002496{
Johannes Berge9763c32012-12-03 16:59:46 +01002497 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002498 const struct ieee80211_regdomain *intersected_rd = NULL;
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002499 const struct ieee80211_regdomain *tmp;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002500 struct wiphy *request_wiphy;
Johannes Berg6913b492012-12-04 00:48:59 +01002501
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002502 if (is_world_regdom(rd->alpha2))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002503 return -EINVAL;
2504
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002505 if (!regdom_changes(rd->alpha2))
2506 return -EALREADY;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002507
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002508 if (!is_valid_rd(rd)) {
Joe Perchese9c02682010-11-16 19:56:49 -08002509 pr_err("Invalid regulatory domain detected:\n");
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002510 print_regdomain_info(rd);
2511 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002512 }
2513
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002514 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx);
2515 if (!request_wiphy) {
Shaibal Dutta845f3352014-01-30 15:08:30 -08002516 queue_delayed_work(system_power_efficient_wq,
2517 &reg_timeout, 0);
Johannes Bergde3584b2011-11-21 10:44:00 +01002518 return -ENODEV;
2519 }
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002520
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002521 if (!driver_request->intersect) {
Luis R. Rodriguez558f6d32009-06-08 18:54:37 -07002522 if (request_wiphy->regd)
2523 return -EALREADY;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002524
Johannes Berge9763c32012-12-03 16:59:46 +01002525 regd = reg_copy_regd(rd);
2526 if (IS_ERR(regd))
2527 return PTR_ERR(regd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002528
Johannes Berg458f4f92012-12-06 15:47:38 +01002529 rcu_assign_pointer(request_wiphy->regd, regd);
Johannes Berg379b82f2012-12-06 15:44:07 +01002530 reset_regdomains(false, rd);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002531 return 0;
2532 }
2533
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002534 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2535 if (!intersected_rd)
2536 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002537
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002538 /*
2539 * We can trash what CRDA provided now.
2540 * However if a driver requested this specific regulatory
2541 * domain we keep it for its private use
2542 */
2543 tmp = get_wiphy_regdom(request_wiphy);
2544 rcu_assign_pointer(request_wiphy->regd, rd);
2545 rcu_free_regdom(tmp);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002546
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002547 rd = NULL;
Larry Fingerb7566fc2013-02-04 15:33:44 -06002548
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002549 reset_regdomains(false, intersected_rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002550
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002551 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002552}
2553
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002554static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
2555 struct regulatory_request *country_ie_request)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002556{
2557 struct wiphy *request_wiphy;
2558
2559 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
2560 !is_unknown_alpha2(rd->alpha2))
2561 return -EINVAL;
2562
2563 /*
2564 * Lets only bother proceeding on the same alpha2 if the current
2565 * rd is non static (it means CRDA was present and was used last)
2566 * and the pending request came in from a country IE
2567 */
2568
2569 if (!is_valid_rd(rd)) {
2570 pr_err("Invalid regulatory domain detected:\n");
2571 print_regdomain_info(rd);
2572 return -EINVAL;
2573 }
2574
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002575 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx);
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002576 if (!request_wiphy) {
Shaibal Dutta845f3352014-01-30 15:08:30 -08002577 queue_delayed_work(system_power_efficient_wq,
2578 &reg_timeout, 0);
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002579 return -ENODEV;
2580 }
2581
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002582 if (country_ie_request->intersect)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002583 return -EINVAL;
2584
2585 reset_regdomains(false, rd);
2586 return 0;
2587}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002588
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002589/*
2590 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002591 * multiple drivers can be ironed out later. Caller must've already
Johannes Berg458f4f92012-12-06 15:47:38 +01002592 * kmalloc'd the rd structure.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002593 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002594int set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002595{
Johannes Bergc492db32012-12-06 16:29:25 +01002596 struct regulatory_request *lr;
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002597 bool user_reset = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002598 int r;
2599
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002600 if (!reg_is_valid_request(rd->alpha2)) {
2601 kfree(rd);
2602 return -EINVAL;
2603 }
2604
Johannes Bergc492db32012-12-06 16:29:25 +01002605 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002606
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002607 /* Note that this doesn't update the wiphys, this is done below */
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002608 switch (lr->initiator) {
2609 case NL80211_REGDOM_SET_BY_CORE:
2610 r = reg_set_rd_core(rd);
2611 break;
2612 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002613 r = reg_set_rd_user(rd, lr);
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002614 user_reset = true;
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002615 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002616 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002617 r = reg_set_rd_driver(rd, lr);
2618 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002619 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002620 r = reg_set_rd_country_ie(rd, lr);
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002621 break;
2622 default:
2623 WARN(1, "invalid initiator %d\n", lr->initiator);
2624 return -EINVAL;
2625 }
2626
Johannes Bergd2372b32008-10-24 20:32:20 +02002627 if (r) {
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002628 switch (r) {
2629 case -EALREADY:
Kalle Valo95908532012-07-12 15:33:58 +03002630 reg_set_request_processed();
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002631 break;
2632 default:
2633 /* Back to world regulatory in case of errors */
2634 restore_regulatory_settings(user_reset);
2635 }
Kalle Valo95908532012-07-12 15:33:58 +03002636
Johannes Bergd2372b32008-10-24 20:32:20 +02002637 kfree(rd);
Johannes Berg38fd2142013-05-10 19:17:17 +02002638 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02002639 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002640
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002641 /* This would make this whole thing pointless */
Johannes Berg38fd2142013-05-10 19:17:17 +02002642 if (WARN_ON(!lr->intersect && rd != get_cfg80211_regdom()))
2643 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002644
2645 /* update all wiphys now with the new established regulatory domain */
Johannes Bergc492db32012-12-06 16:29:25 +01002646 update_all_wiphy_regulatory(lr->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002647
Johannes Berg458f4f92012-12-06 15:47:38 +01002648 print_regdomain(get_cfg80211_regdom());
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002649
Johannes Bergc492db32012-12-06 16:29:25 +01002650 nl80211_send_reg_change_event(lr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04002651
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002652 reg_set_request_processed();
2653
Johannes Berg38fd2142013-05-10 19:17:17 +02002654 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002655}
2656
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002657void wiphy_regulatory_register(struct wiphy *wiphy)
2658{
Arik Nemtsov23df0b72013-07-21 16:36:48 +03002659 struct regulatory_request *lr;
2660
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002661 if (!reg_dev_ignore_cell_hint(wiphy))
2662 reg_num_devs_support_basehint++;
2663
Arik Nemtsov23df0b72013-07-21 16:36:48 +03002664 lr = get_last_request();
2665 wiphy_update_regulatory(wiphy, lr->initiator);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002666}
2667
Luis R. Rodriguezbfead082012-07-12 11:49:19 -07002668void wiphy_regulatory_deregister(struct wiphy *wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002669{
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002670 struct wiphy *request_wiphy = NULL;
Johannes Bergc492db32012-12-06 16:29:25 +01002671 struct regulatory_request *lr;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002672
Johannes Bergc492db32012-12-06 16:29:25 +01002673 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002674
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002675 if (!reg_dev_ignore_cell_hint(wiphy))
2676 reg_num_devs_support_basehint--;
2677
Johannes Berg458f4f92012-12-06 15:47:38 +01002678 rcu_free_regdom(get_wiphy_regdom(wiphy));
Monam Agarwal34dd8862014-03-24 00:53:40 +05302679 RCU_INIT_POINTER(wiphy->regd, NULL);
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002680
Johannes Bergc492db32012-12-06 16:29:25 +01002681 if (lr)
2682 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002683
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002684 if (!request_wiphy || request_wiphy != wiphy)
Johannes Berg38fd2142013-05-10 19:17:17 +02002685 return;
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002686
Johannes Bergc492db32012-12-06 16:29:25 +01002687 lr->wiphy_idx = WIPHY_IDX_INVALID;
2688 lr->country_ie_env = ENVIRON_ANY;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002689}
2690
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002691static void reg_timeout_work(struct work_struct *work)
2692{
Johannes Berg1a919312012-12-03 17:21:11 +01002693 REG_DBG_PRINT("Timeout while waiting for CRDA to reply, restoring regulatory settings\n");
Johannes Bergf77b86d2013-06-24 15:43:38 +02002694 rtnl_lock();
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002695 restore_regulatory_settings(true);
Johannes Bergf77b86d2013-06-24 15:43:38 +02002696 rtnl_unlock();
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002697}
2698
Ilan Peer174e0cd2014-02-23 09:13:01 +02002699/*
2700 * See http://www.fcc.gov/document/5-ghz-unlicensed-spectrum-unii, for
2701 * UNII band definitions
2702 */
2703int cfg80211_get_unii(int freq)
2704{
2705 /* UNII-1 */
2706 if (freq >= 5150 && freq <= 5250)
2707 return 0;
2708
2709 /* UNII-2A */
2710 if (freq > 5250 && freq <= 5350)
2711 return 1;
2712
2713 /* UNII-2B */
2714 if (freq > 5350 && freq <= 5470)
2715 return 2;
2716
2717 /* UNII-2C */
2718 if (freq > 5470 && freq <= 5725)
2719 return 3;
2720
2721 /* UNII-3 */
2722 if (freq > 5725 && freq <= 5825)
2723 return 4;
2724
2725 return -EINVAL;
2726}
2727
Ilan Peerc8866e52014-02-23 09:13:03 +02002728bool regulatory_indoor_allowed(void)
2729{
2730 return reg_is_indoor;
2731}
2732
Uwe Kleine-König2fcc9f72010-06-18 09:38:55 +02002733int __init regulatory_init(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002734{
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002735 int err = 0;
Johannes Berg734366d2008-09-15 10:56:48 +02002736
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002737 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
2738 if (IS_ERR(reg_pdev))
2739 return PTR_ERR(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002740
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002741 spin_lock_init(&reg_requests_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002742 spin_lock_init(&reg_pending_beacons_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002743
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -07002744 reg_regdb_size_check();
2745
Johannes Berg458f4f92012-12-06 15:47:38 +01002746 rcu_assign_pointer(cfg80211_regdomain, cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +02002747
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002748 user_alpha2[0] = '9';
2749 user_alpha2[1] = '7';
2750
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002751 /* We always try to get an update for the static regdomain */
Johannes Berg458f4f92012-12-06 15:47:38 +01002752 err = regulatory_hint_core(cfg80211_world_regdom->alpha2);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002753 if (err) {
2754 if (err == -ENOMEM)
2755 return err;
2756 /*
2757 * N.B. kobject_uevent_env() can fail mainly for when we're out
2758 * memory which is handled and propagated appropriately above
2759 * but it can also fail during a netlink_broadcast() or during
2760 * early boot for call_usermodehelper(). For now treat these
2761 * errors as non-fatal.
2762 */
Joe Perchese9c02682010-11-16 19:56:49 -08002763 pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002764 }
Johannes Berg734366d2008-09-15 10:56:48 +02002765
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002766 /*
2767 * Finally, if the user set the module parameter treat it
2768 * as a user hint.
2769 */
2770 if (!is_world_regdom(ieee80211_regdom))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002771 regulatory_hint_user(ieee80211_regdom,
2772 NL80211_USER_REG_HINT_USER);
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002773
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002774 return 0;
2775}
2776
Johannes Berg1a919312012-12-03 17:21:11 +01002777void regulatory_exit(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002778{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002779 struct regulatory_request *reg_request, *tmp;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002780 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002781
2782 cancel_work_sync(&reg_work);
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002783 cancel_delayed_work_sync(&reg_timeout);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002784
Johannes Berg9027b142012-12-03 17:59:24 +01002785 /* Lock to suppress warnings */
Johannes Berg38fd2142013-05-10 19:17:17 +02002786 rtnl_lock();
Johannes Berg379b82f2012-12-06 15:44:07 +01002787 reset_regdomains(true, NULL);
Johannes Berg38fd2142013-05-10 19:17:17 +02002788 rtnl_unlock();
Johannes Berg734366d2008-09-15 10:56:48 +02002789
Luis R. Rodriguez58ebacc2011-11-08 14:28:06 -08002790 dev_set_uevent_suppress(&reg_pdev->dev, true);
Johannes Bergf6037d02008-10-21 11:01:33 +02002791
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002792 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002793
Johannes Bergfea9bce2012-12-03 17:32:01 +01002794 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
2795 list_del(&reg_beacon->list);
2796 kfree(reg_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002797 }
2798
Johannes Bergfea9bce2012-12-03 17:32:01 +01002799 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
2800 list_del(&reg_beacon->list);
2801 kfree(reg_beacon);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002802 }
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002803
Johannes Bergfea9bce2012-12-03 17:32:01 +01002804 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
2805 list_del(&reg_request->list);
2806 kfree(reg_request);
Johannes Berg8318d782008-01-24 19:38:38 +01002807 }
Johannes Berg8318d782008-01-24 19:38:38 +01002808}