blob: 1afdf45db38f216bb750a905dcdb5a85ae7d0897 [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
Johannes Berge33e2242014-06-23 11:06:16 +0200938 bw_fits = reg_does_bw_fit(fr, center_freq, MHZ_TO_KHZ(20));
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
Johannes Berge33e2242014-06-23 11:06:16 +02001022/*
1023 * Note that right now we assume the desired channel bandwidth
1024 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
1025 * per channel, the primary and the extension channel).
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
1086 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
Johannes Berge33e2242014-06-23 11:06:16 +02001087 bw_flags = IEEE80211_CHAN_NO_HT40;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001088 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001089 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001090 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001091 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001092
Johannes Bergc492db32012-12-06 16:29:25 +01001093 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001094 request_wiphy && request_wiphy == wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001095 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001096 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001097 * This guarantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001098 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001099 * settings
1100 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001101 chan->flags = chan->orig_flags =
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001102 map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001103 chan->max_antenna_gain = chan->orig_mag =
1104 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02001105 chan->max_reg_power = chan->max_power = chan->orig_mpwr =
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001106 (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic4f267c12014-04-09 13:47:12 +02001107
1108 if (chan->flags & IEEE80211_CHAN_RADAR) {
1109 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1110 if (reg_rule->dfs_cac_ms)
1111 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1112 }
1113
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001114 return;
1115 }
1116
Simon Wunderlich04f39042013-02-08 18:16:19 +01001117 chan->dfs_state = NL80211_DFS_USABLE;
1118 chan->dfs_state_entered = jiffies;
1119
Rajkumar Manoharanaa3d7ee2011-09-14 14:28:17 +05301120 chan->beacon_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001121 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
Johannes Berg1a919312012-12-03 17:21:11 +01001122 chan->max_antenna_gain =
1123 min_t(int, chan->orig_mag,
1124 MBI_TO_DBI(power_rule->max_antenna_gain));
Hong Wueccc0682012-01-11 20:33:39 +02001125 chan->max_reg_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic089027e2014-02-21 19:46:12 +01001126
1127 if (chan->flags & IEEE80211_CHAN_RADAR) {
1128 if (reg_rule->dfs_cac_ms)
1129 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1130 else
1131 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1132 }
1133
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001134 if (chan->orig_mpwr) {
1135 /*
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001136 * Devices that use REGULATORY_COUNTRY_IE_FOLLOW_POWER
1137 * will always follow the passed country IE power settings.
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001138 */
1139 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001140 wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_FOLLOW_POWER)
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001141 chan->max_power = chan->max_reg_power;
1142 else
1143 chan->max_power = min(chan->orig_mpwr,
1144 chan->max_reg_power);
1145 } else
1146 chan->max_power = chan->max_reg_power;
Johannes Berg8318d782008-01-24 19:38:38 +01001147}
1148
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001149static void handle_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001150 enum nl80211_reg_initiator initiator,
1151 struct ieee80211_supported_band *sband)
Johannes Berg8318d782008-01-24 19:38:38 +01001152{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001153 unsigned int i;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001154
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001155 if (!sband)
1156 return;
Johannes Berg8318d782008-01-24 19:38:38 +01001157
1158 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001159 handle_channel(wiphy, initiator, &sband->channels[i]);
Johannes Berg8318d782008-01-24 19:38:38 +01001160}
1161
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001162static bool reg_request_cell_base(struct regulatory_request *request)
1163{
1164 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1165 return false;
Johannes Berg1a919312012-12-03 17:21:11 +01001166 return request->user_reg_hint_type == NL80211_USER_REG_HINT_CELL_BASE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001167}
1168
Ilan Peer52616f22014-02-25 16:26:00 +02001169static bool reg_request_indoor(struct regulatory_request *request)
1170{
1171 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1172 return false;
1173 return request->user_reg_hint_type == NL80211_USER_REG_HINT_INDOOR;
1174}
1175
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001176bool reg_last_request_cell_base(void)
1177{
Johannes Berg38fd2142013-05-10 19:17:17 +02001178 return reg_request_cell_base(get_last_request());
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001179}
1180
Ilan Peer94fc6612014-02-23 09:13:00 +02001181#ifdef CONFIG_CFG80211_REG_CELLULAR_HINTS
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001182/* Core specific check */
Johannes Berg2f922122012-12-03 17:54:55 +01001183static enum reg_request_treatment
1184reg_ignore_cell_hint(struct regulatory_request *pending_request)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001185{
Johannes Bergc492db32012-12-06 16:29:25 +01001186 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001187
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001188 if (!reg_num_devs_support_basehint)
Johannes Berg2f922122012-12-03 17:54:55 +01001189 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001190
Johannes Bergc492db32012-12-06 16:29:25 +01001191 if (reg_request_cell_base(lr) &&
Johannes Berg1a919312012-12-03 17:21:11 +01001192 !regdom_changes(pending_request->alpha2))
Johannes Berg2f922122012-12-03 17:54:55 +01001193 return REG_REQ_ALREADY_SET;
Johannes Berg1a919312012-12-03 17:21:11 +01001194
Johannes Berg2f922122012-12-03 17:54:55 +01001195 return REG_REQ_OK;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001196}
1197
1198/* Device specific check */
1199static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
1200{
Johannes Berg1a919312012-12-03 17:21:11 +01001201 return !(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001202}
1203#else
1204static int reg_ignore_cell_hint(struct regulatory_request *pending_request)
1205{
Johannes Berg2f922122012-12-03 17:54:55 +01001206 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001207}
Johannes Berg1a919312012-12-03 17:21:11 +01001208
1209static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001210{
1211 return true;
1212}
1213#endif
1214
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001215static bool wiphy_strict_alpha2_regd(struct wiphy *wiphy)
1216{
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001217 if (wiphy->regulatory_flags & REGULATORY_STRICT_REG &&
1218 !(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG))
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001219 return true;
1220 return false;
1221}
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001222
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001223static bool ignore_reg_update(struct wiphy *wiphy,
1224 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001225{
Johannes Bergc492db32012-12-06 16:29:25 +01001226 struct regulatory_request *lr = get_last_request();
1227
1228 if (!lr) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001229 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1230 "since last_request is not set\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301231 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001232 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301233 }
1234
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001235 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001236 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001237 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1238 "since the driver uses its own custom "
1239 "regulatory domain\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301240 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001241 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301242 }
1243
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001244 /*
1245 * wiphy->regd will be set once the device has its own
1246 * desired regulatory domain set
1247 */
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001248 if (wiphy_strict_alpha2_regd(wiphy) && !wiphy->regd &&
Luis R. Rodriguez749b5272010-10-20 10:18:54 -07001249 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Bergc492db32012-12-06 16:29:25 +01001250 !is_world_regdom(lr->alpha2)) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001251 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1252 "since the driver requires its own regulatory "
1253 "domain to be set first\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301254 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001255 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301256 }
1257
Johannes Bergc492db32012-12-06 16:29:25 +01001258 if (reg_request_cell_base(lr))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001259 return reg_dev_ignore_cell_hint(wiphy);
1260
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001261 return false;
1262}
1263
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08001264static bool reg_is_world_roaming(struct wiphy *wiphy)
1265{
1266 const struct ieee80211_regdomain *cr = get_cfg80211_regdom();
1267 const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy);
1268 struct regulatory_request *lr = get_last_request();
1269
1270 if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2)))
1271 return true;
1272
1273 if (lr && lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001274 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08001275 return true;
1276
1277 return false;
1278}
1279
Johannes Berg1a919312012-12-03 17:21:11 +01001280static void handle_reg_beacon(struct wiphy *wiphy, unsigned int chan_idx,
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001281 struct reg_beacon *reg_beacon)
1282{
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001283 struct ieee80211_supported_band *sband;
1284 struct ieee80211_channel *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001285 bool channel_changed = false;
1286 struct ieee80211_channel chan_before;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001287
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001288 sband = wiphy->bands[reg_beacon->chan.band];
1289 chan = &sband->channels[chan_idx];
1290
1291 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
1292 return;
1293
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001294 if (chan->beacon_found)
1295 return;
1296
1297 chan->beacon_found = true;
1298
Luis R. Rodriguez0f500a52012-12-19 10:53:04 -08001299 if (!reg_is_world_roaming(wiphy))
1300 return;
1301
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001302 if (wiphy->regulatory_flags & REGULATORY_DISABLE_BEACON_HINTS)
Luis R. Rodriguez37184242009-07-30 17:43:48 -07001303 return;
1304
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001305 chan_before.center_freq = chan->center_freq;
1306 chan_before.flags = chan->flags;
1307
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001308 if (chan->flags & IEEE80211_CHAN_NO_IR) {
1309 chan->flags &= ~IEEE80211_CHAN_NO_IR;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001310 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001311 }
1312
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001313 if (channel_changed)
1314 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001315}
1316
1317/*
1318 * Called when a scan on a wiphy finds a beacon on
1319 * new channel
1320 */
1321static void wiphy_update_new_beacon(struct wiphy *wiphy,
1322 struct reg_beacon *reg_beacon)
1323{
1324 unsigned int i;
1325 struct ieee80211_supported_band *sband;
1326
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001327 if (!wiphy->bands[reg_beacon->chan.band])
1328 return;
1329
1330 sband = wiphy->bands[reg_beacon->chan.band];
1331
1332 for (i = 0; i < sband->n_channels; i++)
1333 handle_reg_beacon(wiphy, i, reg_beacon);
1334}
1335
1336/*
1337 * Called upon reg changes or a new wiphy is added
1338 */
1339static void wiphy_update_beacon_reg(struct wiphy *wiphy)
1340{
1341 unsigned int i;
1342 struct ieee80211_supported_band *sband;
1343 struct reg_beacon *reg_beacon;
1344
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001345 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
1346 if (!wiphy->bands[reg_beacon->chan.band])
1347 continue;
1348 sband = wiphy->bands[reg_beacon->chan.band];
1349 for (i = 0; i < sband->n_channels; i++)
1350 handle_reg_beacon(wiphy, i, reg_beacon);
1351 }
1352}
1353
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001354/* Reap the advantages of previously found beacons */
1355static void reg_process_beacons(struct wiphy *wiphy)
1356{
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001357 /*
1358 * Means we are just firing up cfg80211, so no beacons would
1359 * have been processed yet.
1360 */
1361 if (!last_request)
1362 return;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001363 wiphy_update_beacon_reg(wiphy);
1364}
1365
Johannes Berg1a919312012-12-03 17:21:11 +01001366static bool is_ht40_allowed(struct ieee80211_channel *chan)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001367{
1368 if (!chan)
Johannes Berg1a919312012-12-03 17:21:11 +01001369 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001370 if (chan->flags & IEEE80211_CHAN_DISABLED)
Johannes Berg1a919312012-12-03 17:21:11 +01001371 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001372 /* This would happen when regulatory rules disallow HT40 completely */
Felix Fietkau55b183a2013-01-11 14:22:58 +01001373 if ((chan->flags & IEEE80211_CHAN_NO_HT40) == IEEE80211_CHAN_NO_HT40)
1374 return false;
1375 return true;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001376}
1377
1378static void reg_process_ht_flags_channel(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001379 struct ieee80211_channel *channel)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001380{
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001381 struct ieee80211_supported_band *sband = wiphy->bands[channel->band];
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001382 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
1383 unsigned int i;
1384
Johannes Berg1a919312012-12-03 17:21:11 +01001385 if (!is_ht40_allowed(channel)) {
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001386 channel->flags |= IEEE80211_CHAN_NO_HT40;
1387 return;
1388 }
1389
1390 /*
1391 * We need to ensure the extension channels exist to
1392 * be able to use HT40- or HT40+, this finds them (or not)
1393 */
1394 for (i = 0; i < sband->n_channels; i++) {
1395 struct ieee80211_channel *c = &sband->channels[i];
Johannes Berg1a919312012-12-03 17:21:11 +01001396
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001397 if (c->center_freq == (channel->center_freq - 20))
1398 channel_before = c;
1399 if (c->center_freq == (channel->center_freq + 20))
1400 channel_after = c;
1401 }
1402
1403 /*
1404 * Please note that this assumes target bandwidth is 20 MHz,
1405 * if that ever changes we also need to change the below logic
1406 * to include that as well.
1407 */
Johannes Berg1a919312012-12-03 17:21:11 +01001408 if (!is_ht40_allowed(channel_before))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001409 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001410 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001411 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001412
Johannes Berg1a919312012-12-03 17:21:11 +01001413 if (!is_ht40_allowed(channel_after))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001414 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001415 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001416 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001417}
1418
1419static void reg_process_ht_flags_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001420 struct ieee80211_supported_band *sband)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001421{
1422 unsigned int i;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001423
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001424 if (!sband)
1425 return;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001426
1427 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001428 reg_process_ht_flags_channel(wiphy, &sband->channels[i]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001429}
1430
1431static void reg_process_ht_flags(struct wiphy *wiphy)
1432{
1433 enum ieee80211_band band;
1434
1435 if (!wiphy)
1436 return;
1437
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001438 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1439 reg_process_ht_flags_band(wiphy, wiphy->bands[band]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001440}
1441
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001442static void reg_call_notifier(struct wiphy *wiphy,
1443 struct regulatory_request *request)
1444{
1445 if (wiphy->reg_notifier)
1446 wiphy->reg_notifier(wiphy, request);
1447}
1448
Sven Neumanneac03e32011-08-30 23:38:53 +02001449static void wiphy_update_regulatory(struct wiphy *wiphy,
1450 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +01001451{
1452 enum ieee80211_band band;
Johannes Bergc492db32012-12-06 16:29:25 +01001453 struct regulatory_request *lr = get_last_request();
Sven Neumanneac03e32011-08-30 23:38:53 +02001454
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001455 if (ignore_reg_update(wiphy, initiator)) {
1456 /*
1457 * Regulatory updates set by CORE are ignored for custom
1458 * regulatory cards. Let us notify the changes to the driver,
1459 * as some drivers used this to restore its orig_* reg domain.
1460 */
1461 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001462 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001463 reg_call_notifier(wiphy, lr);
Sven Neumanna203c2a2011-07-12 15:52:07 +02001464 return;
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001465 }
Sven Neumanna203c2a2011-07-12 15:52:07 +02001466
Johannes Bergc492db32012-12-06 16:29:25 +01001467 lr->dfs_region = get_cfg80211_regdom()->dfs_region;
Luis R. Rodriguezb68e6b32011-10-11 10:59:03 -07001468
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001469 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1470 handle_band(wiphy, initiator, wiphy->bands[band]);
Sven Neumanna203c2a2011-07-12 15:52:07 +02001471
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001472 reg_process_beacons(wiphy);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001473 reg_process_ht_flags(wiphy);
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001474 reg_call_notifier(wiphy, lr);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001475}
1476
Sven Neumannd7549cb2011-08-30 23:38:54 +02001477static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
1478{
1479 struct cfg80211_registered_device *rdev;
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301480 struct wiphy *wiphy;
Sven Neumannd7549cb2011-08-30 23:38:54 +02001481
Johannes Berg5fe231e2013-05-08 21:45:15 +02001482 ASSERT_RTNL();
Johannes Berg458f4f92012-12-06 15:47:38 +01001483
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301484 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1485 wiphy = &rdev->wiphy;
1486 wiphy_update_regulatory(wiphy, initiator);
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301487 }
Sven Neumannd7549cb2011-08-30 23:38:54 +02001488}
1489
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001490static void handle_channel_custom(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001491 struct ieee80211_channel *chan,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001492 const struct ieee80211_regdomain *regd)
1493{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001494 u32 bw_flags = 0;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001495 const struct ieee80211_reg_rule *reg_rule = NULL;
1496 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001497 const struct ieee80211_freq_range *freq_range = NULL;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001498 u32 max_bandwidth_khz;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001499
Johannes Berg361c9c82012-12-06 15:57:14 +01001500 reg_rule = freq_reg_info_regd(wiphy, MHZ_TO_KHZ(chan->center_freq),
1501 regd);
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001502
Johannes Berg361c9c82012-12-06 15:57:14 +01001503 if (IS_ERR(reg_rule)) {
Johannes Bergfe7ef5e2012-12-04 15:07:34 +01001504 REG_DBG_PRINT("Disabling freq %d MHz as custom regd has no rule that fits it\n",
1505 chan->center_freq);
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001506 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1507 chan->flags = chan->orig_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001508 return;
1509 }
1510
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001511 chan_reg_rule_print_dbg(regd, chan, reg_rule);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301512
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001513 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001514 freq_range = &reg_rule->freq_range;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001515
Janusz Dziedzic97524822014-01-30 09:52:20 +01001516 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1517 /* Check if auto calculation requested */
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001518 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
Janusz Dziedzic97524822014-01-30 09:52:20 +01001519 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
1520
1521 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
Johannes Berge33e2242014-06-23 11:06:16 +02001522 bw_flags = IEEE80211_CHAN_NO_HT40;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001523 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001524 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001525 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001526 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001527
1528 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001529 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02001530 chan->max_reg_power = chan->max_power =
1531 (int) MBM_TO_DBM(power_rule->max_eirp);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001532}
1533
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001534static void handle_band_custom(struct wiphy *wiphy,
1535 struct ieee80211_supported_band *sband,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001536 const struct ieee80211_regdomain *regd)
1537{
1538 unsigned int i;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001539
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001540 if (!sband)
1541 return;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001542
1543 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001544 handle_channel_custom(wiphy, &sband->channels[i], regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001545}
1546
1547/* Used by drivers prior to wiphy registration */
1548void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1549 const struct ieee80211_regdomain *regd)
1550{
1551 enum ieee80211_band band;
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001552 unsigned int bands_set = 0;
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001553
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001554 WARN(!(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG),
1555 "wiphy should have REGULATORY_CUSTOM_REG\n");
1556 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
Luis R. Rodriguez222ea582013-11-05 09:18:00 -08001557
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001558 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001559 if (!wiphy->bands[band])
1560 continue;
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001561 handle_band_custom(wiphy, wiphy->bands[band], regd);
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001562 bands_set++;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001563 }
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001564
1565 /*
1566 * no point in calling this if it won't have any effect
Johannes Berg1a919312012-12-03 17:21:11 +01001567 * on your device's supported bands.
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001568 */
1569 WARN_ON(!bands_set);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001570}
1571EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1572
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001573static void reg_set_request_processed(void)
1574{
1575 bool need_more_processing = false;
Johannes Bergc492db32012-12-06 16:29:25 +01001576 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001577
Johannes Bergc492db32012-12-06 16:29:25 +01001578 lr->processed = true;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001579
1580 spin_lock(&reg_requests_lock);
1581 if (!list_empty(&reg_requests_list))
1582 need_more_processing = true;
1583 spin_unlock(&reg_requests_lock);
1584
Johannes Bergc492db32012-12-06 16:29:25 +01001585 if (lr->initiator == NL80211_REGDOM_SET_BY_USER)
Eliad Pellerfe20b392012-06-12 12:53:13 +03001586 cancel_delayed_work(&reg_timeout);
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07001587
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001588 if (need_more_processing)
1589 schedule_work(&reg_work);
1590}
1591
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001592/**
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001593 * reg_process_hint_core - process core regulatory requests
1594 * @pending_request: a pending core regulatory request
1595 *
1596 * The wireless subsystem can use this function to process
1597 * a regulatory request issued by the regulatory core.
1598 *
1599 * Returns one of the different reg request treatment values.
1600 */
1601static enum reg_request_treatment
1602reg_process_hint_core(struct regulatory_request *core_request)
1603{
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001604
1605 core_request->intersect = false;
1606 core_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001607
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001608 reg_update_last_request(core_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001609
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001610 return reg_call_crda(core_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001611}
1612
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001613static enum reg_request_treatment
1614__reg_process_hint_user(struct regulatory_request *user_request)
1615{
1616 struct regulatory_request *lr = get_last_request();
1617
Ilan Peer52616f22014-02-25 16:26:00 +02001618 if (reg_request_indoor(user_request)) {
1619 reg_is_indoor = true;
1620 return REG_REQ_USER_HINT_HANDLED;
1621 }
1622
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001623 if (reg_request_cell_base(user_request))
1624 return reg_ignore_cell_hint(user_request);
1625
1626 if (reg_request_cell_base(lr))
1627 return REG_REQ_IGNORE;
1628
1629 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
1630 return REG_REQ_INTERSECT;
1631 /*
1632 * If the user knows better the user should set the regdom
1633 * to their country before the IE is picked up
1634 */
1635 if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
1636 lr->intersect)
1637 return REG_REQ_IGNORE;
1638 /*
1639 * Process user requests only after previous user/driver/core
1640 * requests have been processed
1641 */
1642 if ((lr->initiator == NL80211_REGDOM_SET_BY_CORE ||
1643 lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
1644 lr->initiator == NL80211_REGDOM_SET_BY_USER) &&
1645 regdom_changes(lr->alpha2))
1646 return REG_REQ_IGNORE;
1647
1648 if (!regdom_changes(user_request->alpha2))
1649 return REG_REQ_ALREADY_SET;
1650
1651 return REG_REQ_OK;
1652}
1653
1654/**
1655 * reg_process_hint_user - process user regulatory requests
1656 * @user_request: a pending user regulatory request
1657 *
1658 * The wireless subsystem can use this function to process
1659 * a regulatory request initiated by userspace.
1660 *
1661 * Returns one of the different reg request treatment values.
1662 */
1663static enum reg_request_treatment
1664reg_process_hint_user(struct regulatory_request *user_request)
1665{
1666 enum reg_request_treatment treatment;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001667
1668 treatment = __reg_process_hint_user(user_request);
1669 if (treatment == REG_REQ_IGNORE ||
Ilan Peer52616f22014-02-25 16:26:00 +02001670 treatment == REG_REQ_ALREADY_SET ||
1671 treatment == REG_REQ_USER_HINT_HANDLED) {
Arik Nemtsovc8883932014-04-21 20:39:34 -07001672 reg_free_request(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001673 return treatment;
1674 }
1675
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001676 user_request->intersect = treatment == REG_REQ_INTERSECT;
1677 user_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001678
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001679 reg_update_last_request(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001680
1681 user_alpha2[0] = user_request->alpha2[0];
1682 user_alpha2[1] = user_request->alpha2[1];
1683
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001684 return reg_call_crda(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001685}
1686
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001687static enum reg_request_treatment
1688__reg_process_hint_driver(struct regulatory_request *driver_request)
1689{
1690 struct regulatory_request *lr = get_last_request();
1691
1692 if (lr->initiator == NL80211_REGDOM_SET_BY_CORE) {
1693 if (regdom_changes(driver_request->alpha2))
1694 return REG_REQ_OK;
1695 return REG_REQ_ALREADY_SET;
1696 }
1697
1698 /*
1699 * This would happen if you unplug and plug your card
1700 * back in or if you add a new device for which the previously
1701 * loaded card also agrees on the regulatory domain.
1702 */
1703 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1704 !regdom_changes(driver_request->alpha2))
1705 return REG_REQ_ALREADY_SET;
1706
1707 return REG_REQ_INTERSECT;
1708}
1709
1710/**
1711 * reg_process_hint_driver - process driver regulatory requests
1712 * @driver_request: a pending driver regulatory request
1713 *
1714 * The wireless subsystem can use this function to process
1715 * a regulatory request issued by an 802.11 driver.
1716 *
1717 * Returns one of the different reg request treatment values.
1718 */
1719static enum reg_request_treatment
1720reg_process_hint_driver(struct wiphy *wiphy,
1721 struct regulatory_request *driver_request)
1722{
1723 const struct ieee80211_regdomain *regd;
1724 enum reg_request_treatment treatment;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001725
1726 treatment = __reg_process_hint_driver(driver_request);
1727
1728 switch (treatment) {
1729 case REG_REQ_OK:
1730 break;
1731 case REG_REQ_IGNORE:
Ilan Peer52616f22014-02-25 16:26:00 +02001732 case REG_REQ_USER_HINT_HANDLED:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001733 reg_free_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001734 return treatment;
1735 case REG_REQ_INTERSECT:
1736 /* fall through */
1737 case REG_REQ_ALREADY_SET:
1738 regd = reg_copy_regd(get_cfg80211_regdom());
1739 if (IS_ERR(regd)) {
Arik Nemtsovc8883932014-04-21 20:39:34 -07001740 reg_free_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001741 return REG_REQ_IGNORE;
1742 }
1743 rcu_assign_pointer(wiphy->regd, regd);
1744 }
1745
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001746
1747 driver_request->intersect = treatment == REG_REQ_INTERSECT;
1748 driver_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001749
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001750 reg_update_last_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001751
1752 /*
1753 * Since CRDA will not be called in this case as we already
1754 * have applied the requested regulatory domain before we just
1755 * inform userspace we have processed the request
1756 */
1757 if (treatment == REG_REQ_ALREADY_SET) {
1758 nl80211_send_reg_change_event(driver_request);
1759 reg_set_request_processed();
1760 return treatment;
1761 }
1762
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001763 return reg_call_crda(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001764}
1765
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001766static enum reg_request_treatment
1767__reg_process_hint_country_ie(struct wiphy *wiphy,
1768 struct regulatory_request *country_ie_request)
1769{
1770 struct wiphy *last_wiphy = NULL;
1771 struct regulatory_request *lr = get_last_request();
1772
1773 if (reg_request_cell_base(lr)) {
1774 /* Trust a Cell base station over the AP's country IE */
1775 if (regdom_changes(country_ie_request->alpha2))
1776 return REG_REQ_IGNORE;
1777 return REG_REQ_ALREADY_SET;
Luis R. Rodriguez2a901462013-11-11 22:15:31 +01001778 } else {
1779 if (wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_IGNORE)
1780 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001781 }
1782
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001783 if (unlikely(!is_an_alpha2(country_ie_request->alpha2)))
1784 return -EINVAL;
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001785
1786 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE)
1787 return REG_REQ_OK;
1788
1789 last_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
1790
1791 if (last_wiphy != wiphy) {
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001792 /*
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001793 * Two cards with two APs claiming different
1794 * Country IE alpha2s. We could
1795 * intersect them, but that seems unlikely
1796 * to be correct. Reject second one for now.
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001797 */
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001798 if (regdom_changes(country_ie_request->alpha2))
1799 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001800 return REG_REQ_ALREADY_SET;
1801 }
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001802 /*
1803 * Two consecutive Country IE hints on the same wiphy.
1804 * This should be picked up early by the driver/stack
1805 */
1806 if (WARN_ON(regdom_changes(country_ie_request->alpha2)))
1807 return REG_REQ_OK;
1808 return REG_REQ_ALREADY_SET;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001809}
1810
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001811/**
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001812 * reg_process_hint_country_ie - process regulatory requests from country IEs
1813 * @country_ie_request: a regulatory request from a country IE
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001814 *
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001815 * The wireless subsystem can use this function to process
1816 * a regulatory request issued by a country Information Element.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001817 *
Johannes Berg2f922122012-12-03 17:54:55 +01001818 * Returns one of the different reg request treatment values.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001819 */
Johannes Berg2f922122012-12-03 17:54:55 +01001820static enum reg_request_treatment
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001821reg_process_hint_country_ie(struct wiphy *wiphy,
1822 struct regulatory_request *country_ie_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001823{
Johannes Berg2f922122012-12-03 17:54:55 +01001824 enum reg_request_treatment treatment;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001825
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001826 treatment = __reg_process_hint_country_ie(wiphy, country_ie_request);
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001827
Johannes Berg2f922122012-12-03 17:54:55 +01001828 switch (treatment) {
Johannes Berg2f922122012-12-03 17:54:55 +01001829 case REG_REQ_OK:
1830 break;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001831 case REG_REQ_IGNORE:
Ilan Peer52616f22014-02-25 16:26:00 +02001832 case REG_REQ_USER_HINT_HANDLED:
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001833 /* fall through */
1834 case REG_REQ_ALREADY_SET:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001835 reg_free_request(country_ie_request);
Johannes Berg2f922122012-12-03 17:54:55 +01001836 return treatment;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001837 case REG_REQ_INTERSECT:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001838 reg_free_request(country_ie_request);
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001839 /*
1840 * This doesn't happen yet, not sure we
1841 * ever want to support it for this case.
1842 */
1843 WARN_ONCE(1, "Unexpected intersection for country IEs");
1844 return REG_REQ_IGNORE;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001845 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001846
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001847 country_ie_request->intersect = false;
1848 country_ie_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001849
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001850 reg_update_last_request(country_ie_request);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001851
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001852 return reg_call_crda(country_ie_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001853}
1854
Luis R. Rodriguez30a548c2009-05-02 01:17:27 -04001855/* This processes *all* regulatory hints */
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08001856static void reg_process_hint(struct regulatory_request *reg_request)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001857{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001858 struct wiphy *wiphy = NULL;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001859 enum reg_request_treatment treatment;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001860
Johannes Bergf4173762012-12-03 18:23:37 +01001861 if (reg_request->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001862 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
1863
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001864 switch (reg_request->initiator) {
1865 case NL80211_REGDOM_SET_BY_CORE:
1866 reg_process_hint_core(reg_request);
1867 return;
1868 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001869 treatment = reg_process_hint_user(reg_request);
Inbal Hacohen50c11eb2014-02-12 09:32:27 +02001870 if (treatment == REG_REQ_IGNORE ||
Arik Nemtsov4d3df542014-05-11 11:50:44 +03001871 treatment == REG_REQ_ALREADY_SET ||
1872 treatment == REG_REQ_USER_HINT_HANDLED)
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001873 return;
Shaibal Dutta845f3352014-01-30 15:08:30 -08001874 queue_delayed_work(system_power_efficient_wq,
1875 &reg_timeout, msecs_to_jiffies(3142));
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001876 return;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001877 case NL80211_REGDOM_SET_BY_DRIVER:
Ilan Peer772f0382014-01-14 15:17:23 +02001878 if (!wiphy)
1879 goto out_free;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001880 treatment = reg_process_hint_driver(wiphy, reg_request);
1881 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001882 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Ilan Peer772f0382014-01-14 15:17:23 +02001883 if (!wiphy)
1884 goto out_free;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001885 treatment = reg_process_hint_country_ie(wiphy, reg_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001886 break;
1887 default:
1888 WARN(1, "invalid initiator %d\n", reg_request->initiator);
Ilan Peer772f0382014-01-14 15:17:23 +02001889 goto out_free;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001890 }
1891
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001892 /* This is required so that the orig_* parameters are saved */
1893 if (treatment == REG_REQ_ALREADY_SET && wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001894 wiphy->regulatory_flags & REGULATORY_STRICT_REG)
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001895 wiphy_update_regulatory(wiphy, reg_request->initiator);
Ilan Peer772f0382014-01-14 15:17:23 +02001896
1897 return;
1898
1899out_free:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001900 reg_free_request(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001901}
1902
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001903/*
1904 * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
1905 * Regulatory hints come on a first come first serve basis and we
1906 * must process each one atomically.
1907 */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001908static void reg_process_pending_hints(void)
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001909{
Johannes Bergc492db32012-12-06 16:29:25 +01001910 struct regulatory_request *reg_request, *lr;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001911
Johannes Bergc492db32012-12-06 16:29:25 +01001912 lr = get_last_request();
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001913
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001914 /* When last_request->processed becomes true this will be rescheduled */
Johannes Bergc492db32012-12-06 16:29:25 +01001915 if (lr && !lr->processed) {
Luis R. Rodriguez96cce122014-04-21 20:39:35 -07001916 reg_process_hint(lr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001917 return;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001918 }
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001919
1920 spin_lock(&reg_requests_lock);
1921
1922 if (list_empty(&reg_requests_list)) {
1923 spin_unlock(&reg_requests_lock);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001924 return;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001925 }
1926
1927 reg_request = list_first_entry(&reg_requests_list,
1928 struct regulatory_request,
1929 list);
1930 list_del_init(&reg_request->list);
1931
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001932 spin_unlock(&reg_requests_lock);
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001933
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08001934 reg_process_hint(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001935}
1936
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001937/* Processes beacon hints -- this has nothing to do with country IEs */
1938static void reg_process_pending_beacon_hints(void)
1939{
Johannes Berg79c97e92009-07-07 03:56:12 +02001940 struct cfg80211_registered_device *rdev;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001941 struct reg_beacon *pending_beacon, *tmp;
1942
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001943 /* This goes through the _pending_ beacon list */
1944 spin_lock_bh(&reg_pending_beacons_lock);
1945
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001946 list_for_each_entry_safe(pending_beacon, tmp,
1947 &reg_pending_beacons, list) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001948 list_del_init(&pending_beacon->list);
1949
1950 /* Applies the beacon hint to current wiphys */
Johannes Berg79c97e92009-07-07 03:56:12 +02001951 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
1952 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001953
1954 /* Remembers the beacon hint for new wiphys or reg changes */
1955 list_add_tail(&pending_beacon->list, &reg_beacon_list);
1956 }
1957
1958 spin_unlock_bh(&reg_pending_beacons_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001959}
1960
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001961static void reg_todo(struct work_struct *work)
1962{
Johannes Berg5fe231e2013-05-08 21:45:15 +02001963 rtnl_lock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001964 reg_process_pending_hints();
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001965 reg_process_pending_beacon_hints();
Johannes Berg5fe231e2013-05-08 21:45:15 +02001966 rtnl_unlock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001967}
1968
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001969static void queue_regulatory_request(struct regulatory_request *request)
1970{
Johannes Bergd4f2c882012-12-03 18:59:58 +01001971 request->alpha2[0] = toupper(request->alpha2[0]);
1972 request->alpha2[1] = toupper(request->alpha2[1]);
John W. Linvillec61029c2010-08-05 14:26:24 -04001973
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001974 spin_lock(&reg_requests_lock);
1975 list_add_tail(&request->list, &reg_requests_list);
1976 spin_unlock(&reg_requests_lock);
1977
1978 schedule_work(&reg_work);
1979}
1980
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05001981/*
1982 * Core regulatory hint -- happens during cfg80211_init()
1983 * and when we restore regulatory settings.
1984 */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001985static int regulatory_hint_core(const char *alpha2)
1986{
1987 struct regulatory_request *request;
1988
Johannes Berg1a919312012-12-03 17:21:11 +01001989 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001990 if (!request)
1991 return -ENOMEM;
1992
1993 request->alpha2[0] = alpha2[0];
1994 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001995 request->initiator = NL80211_REGDOM_SET_BY_CORE;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05001996
Luis R. Rodriguez31e99722010-11-17 21:46:06 -08001997 queue_regulatory_request(request);
Luis R. Rodriguez5078b2e2009-05-13 17:04:42 -04001998
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001999 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002000}
2001
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002002/* User hints */
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002003int regulatory_hint_user(const char *alpha2,
2004 enum nl80211_user_reg_hint_type user_reg_hint_type)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002005{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002006 struct regulatory_request *request;
2007
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002008 if (WARN_ON(!alpha2))
2009 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002010
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002011 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2012 if (!request)
2013 return -ENOMEM;
2014
Johannes Bergf4173762012-12-03 18:23:37 +01002015 request->wiphy_idx = WIPHY_IDX_INVALID;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002016 request->alpha2[0] = alpha2[0];
2017 request->alpha2[1] = alpha2[1];
Luis R. Rodrigueze12822e2010-01-04 11:37:39 -05002018 request->initiator = NL80211_REGDOM_SET_BY_USER;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002019 request->user_reg_hint_type = user_reg_hint_type;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002020
2021 queue_regulatory_request(request);
2022
2023 return 0;
2024}
2025
Ilan Peer52616f22014-02-25 16:26:00 +02002026int regulatory_hint_indoor_user(void)
2027{
2028 struct regulatory_request *request;
2029
2030 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2031 if (!request)
2032 return -ENOMEM;
2033
2034 request->wiphy_idx = WIPHY_IDX_INVALID;
2035 request->initiator = NL80211_REGDOM_SET_BY_USER;
2036 request->user_reg_hint_type = NL80211_USER_REG_HINT_INDOOR;
2037 queue_regulatory_request(request);
2038
2039 return 0;
2040}
2041
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002042/* Driver hints */
2043int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
2044{
2045 struct regulatory_request *request;
2046
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002047 if (WARN_ON(!alpha2 || !wiphy))
2048 return -EINVAL;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002049
Luis R. Rodriguez4f7b9142013-12-14 20:09:06 +01002050 wiphy->regulatory_flags &= ~REGULATORY_CUSTOM_REG;
2051
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002052 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2053 if (!request)
2054 return -ENOMEM;
2055
2056 request->wiphy_idx = get_wiphy_idx(wiphy);
2057
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002058 request->alpha2[0] = alpha2[0];
2059 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002060 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002061
2062 queue_regulatory_request(request);
2063
2064 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002065}
2066EXPORT_SYMBOL(regulatory_hint);
2067
Luis R. Rodriguez789fd032013-10-04 18:07:24 -07002068void regulatory_hint_country_ie(struct wiphy *wiphy, enum ieee80211_band band,
2069 const u8 *country_ie, u8 country_ie_len)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002070{
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002071 char alpha2[2];
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002072 enum environment_cap env = ENVIRON_ANY;
Johannes Bergdb2424c2013-05-10 19:07:52 +02002073 struct regulatory_request *request = NULL, *lr;
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05002074
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002075 /* IE len must be evenly divisible by 2 */
2076 if (country_ie_len & 0x01)
Johannes Bergdb2424c2013-05-10 19:07:52 +02002077 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002078
2079 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Bergdb2424c2013-05-10 19:07:52 +02002080 return;
2081
2082 request = kzalloc(sizeof(*request), GFP_KERNEL);
2083 if (!request)
2084 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002085
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002086 alpha2[0] = country_ie[0];
2087 alpha2[1] = country_ie[1];
2088
2089 if (country_ie[2] == 'I')
2090 env = ENVIRON_INDOOR;
2091 else if (country_ie[2] == 'O')
2092 env = ENVIRON_OUTDOOR;
2093
Johannes Bergdb2424c2013-05-10 19:07:52 +02002094 rcu_read_lock();
2095 lr = get_last_request();
2096
2097 if (unlikely(!lr))
2098 goto out;
2099
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002100 /*
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07002101 * We will run this only upon a successful connection on cfg80211.
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07002102 * We leave conflict resolution to the workqueue, where can hold
Johannes Berg5fe231e2013-05-08 21:45:15 +02002103 * the RTNL.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002104 */
Johannes Bergc492db32012-12-06 16:29:25 +01002105 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
2106 lr->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07002107 goto out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002108
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002109 request->wiphy_idx = get_wiphy_idx(wiphy);
John W. Linville4f366c52010-07-15 14:57:33 -04002110 request->alpha2[0] = alpha2[0];
2111 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002112 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002113 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002114
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002115 queue_regulatory_request(request);
Johannes Bergdb2424c2013-05-10 19:07:52 +02002116 request = NULL;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002117out:
Johannes Bergdb2424c2013-05-10 19:07:52 +02002118 kfree(request);
2119 rcu_read_unlock();
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002120}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002121
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002122static void restore_alpha2(char *alpha2, bool reset_user)
2123{
2124 /* indicates there is no alpha2 to consider for restoration */
2125 alpha2[0] = '9';
2126 alpha2[1] = '7';
2127
2128 /* The user setting has precedence over the module parameter */
2129 if (is_user_regdom_saved()) {
2130 /* Unless we're asked to ignore it and reset it */
2131 if (reset_user) {
Johannes Berg1a919312012-12-03 17:21:11 +01002132 REG_DBG_PRINT("Restoring regulatory settings including user preference\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002133 user_alpha2[0] = '9';
2134 user_alpha2[1] = '7';
2135
2136 /*
2137 * If we're ignoring user settings, we still need to
2138 * check the module parameter to ensure we put things
2139 * back as they were for a full restore.
2140 */
2141 if (!is_world_regdom(ieee80211_regdom)) {
Johannes Berg1a919312012-12-03 17:21:11 +01002142 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2143 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002144 alpha2[0] = ieee80211_regdom[0];
2145 alpha2[1] = ieee80211_regdom[1];
2146 }
2147 } else {
Johannes Berg1a919312012-12-03 17:21:11 +01002148 REG_DBG_PRINT("Restoring regulatory settings while preserving user preference for: %c%c\n",
2149 user_alpha2[0], user_alpha2[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002150 alpha2[0] = user_alpha2[0];
2151 alpha2[1] = user_alpha2[1];
2152 }
2153 } else if (!is_world_regdom(ieee80211_regdom)) {
Johannes Berg1a919312012-12-03 17:21:11 +01002154 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2155 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002156 alpha2[0] = ieee80211_regdom[0];
2157 alpha2[1] = ieee80211_regdom[1];
2158 } else
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07002159 REG_DBG_PRINT("Restoring regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002160}
2161
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302162static void restore_custom_reg_settings(struct wiphy *wiphy)
2163{
2164 struct ieee80211_supported_band *sband;
2165 enum ieee80211_band band;
2166 struct ieee80211_channel *chan;
2167 int i;
2168
2169 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
2170 sband = wiphy->bands[band];
2171 if (!sband)
2172 continue;
2173 for (i = 0; i < sband->n_channels; i++) {
2174 chan = &sband->channels[i];
2175 chan->flags = chan->orig_flags;
2176 chan->max_antenna_gain = chan->orig_mag;
2177 chan->max_power = chan->orig_mpwr;
Paul Stewart899852a2012-08-01 16:54:42 -07002178 chan->beacon_found = false;
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302179 }
2180 }
2181}
2182
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002183/*
2184 * Restoring regulatory settings involves ingoring any
2185 * possibly stale country IE information and user regulatory
2186 * settings if so desired, this includes any beacon hints
2187 * learned as we could have traveled outside to another country
2188 * after disconnection. To restore regulatory settings we do
2189 * exactly what we did at bootup:
2190 *
2191 * - send a core regulatory hint
2192 * - send a user regulatory hint if applicable
2193 *
2194 * Device drivers that send a regulatory hint for a specific country
2195 * keep their own regulatory domain on wiphy->regd so that does does
2196 * not need to be remembered.
2197 */
2198static void restore_regulatory_settings(bool reset_user)
2199{
2200 char alpha2[2];
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08002201 char world_alpha2[2];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002202 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002203 struct regulatory_request *reg_request, *tmp;
2204 LIST_HEAD(tmp_reg_req_list);
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302205 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002206
Johannes Berg5fe231e2013-05-08 21:45:15 +02002207 ASSERT_RTNL();
2208
Ilan Peer52616f22014-02-25 16:26:00 +02002209 reg_is_indoor = false;
2210
Johannes Berg2d319862013-01-09 12:01:38 +01002211 reset_regdomains(true, &world_regdom);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002212 restore_alpha2(alpha2, reset_user);
2213
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002214 /*
2215 * If there's any pending requests we simply
2216 * stash them to a temporary pending queue and
2217 * add then after we've restored regulatory
2218 * settings.
2219 */
2220 spin_lock(&reg_requests_lock);
Johannes Bergfea9bce2012-12-03 17:32:01 +01002221 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
2222 if (reg_request->initiator != NL80211_REGDOM_SET_BY_USER)
2223 continue;
2224 list_move_tail(&reg_request->list, &tmp_reg_req_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002225 }
2226 spin_unlock(&reg_requests_lock);
2227
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002228 /* Clear beacon hints */
2229 spin_lock_bh(&reg_pending_beacons_lock);
Johannes Bergfea9bce2012-12-03 17:32:01 +01002230 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
2231 list_del(&reg_beacon->list);
2232 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002233 }
2234 spin_unlock_bh(&reg_pending_beacons_lock);
2235
Johannes Bergfea9bce2012-12-03 17:32:01 +01002236 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
2237 list_del(&reg_beacon->list);
2238 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002239 }
2240
2241 /* First restore to the basic regulatory settings */
Johannes Berg379b82f2012-12-06 15:44:07 +01002242 world_alpha2[0] = cfg80211_world_regdom->alpha2[0];
2243 world_alpha2[1] = cfg80211_world_regdom->alpha2[1];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002244
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302245 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002246 if (rdev->wiphy.regulatory_flags & REGULATORY_CUSTOM_REG)
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302247 restore_custom_reg_settings(&rdev->wiphy);
2248 }
2249
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08002250 regulatory_hint_core(world_alpha2);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002251
2252 /*
2253 * This restores the ieee80211_regdom module parameter
2254 * preference or the last user requested regulatory
2255 * settings, user regulatory settings takes precedence.
2256 */
2257 if (is_an_alpha2(alpha2))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002258 regulatory_hint_user(user_alpha2, NL80211_USER_REG_HINT_USER);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002259
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002260 spin_lock(&reg_requests_lock);
Johannes Berg11cff962012-12-03 18:56:41 +01002261 list_splice_tail_init(&tmp_reg_req_list, &reg_requests_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002262 spin_unlock(&reg_requests_lock);
2263
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002264 REG_DBG_PRINT("Kicking the queue\n");
2265
2266 schedule_work(&reg_work);
2267}
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002268
2269void regulatory_hint_disconnect(void)
2270{
Johannes Berg1a919312012-12-03 17:21:11 +01002271 REG_DBG_PRINT("All devices are disconnected, going to restore regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002272 restore_regulatory_settings(false);
2273}
2274
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002275static bool freq_is_chan_12_13_14(u16 freq)
2276{
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002277 if (freq == ieee80211_channel_to_frequency(12, IEEE80211_BAND_2GHZ) ||
2278 freq == ieee80211_channel_to_frequency(13, IEEE80211_BAND_2GHZ) ||
2279 freq == ieee80211_channel_to_frequency(14, IEEE80211_BAND_2GHZ))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002280 return true;
2281 return false;
2282}
2283
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002284static bool pending_reg_beacon(struct ieee80211_channel *beacon_chan)
2285{
2286 struct reg_beacon *pending_beacon;
2287
2288 list_for_each_entry(pending_beacon, &reg_pending_beacons, list)
2289 if (beacon_chan->center_freq ==
2290 pending_beacon->chan.center_freq)
2291 return true;
2292 return false;
2293}
2294
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002295int regulatory_hint_found_beacon(struct wiphy *wiphy,
2296 struct ieee80211_channel *beacon_chan,
2297 gfp_t gfp)
2298{
2299 struct reg_beacon *reg_beacon;
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002300 bool processing;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002301
Johannes Berg1a919312012-12-03 17:21:11 +01002302 if (beacon_chan->beacon_found ||
2303 beacon_chan->flags & IEEE80211_CHAN_RADAR ||
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002304 (beacon_chan->band == IEEE80211_BAND_2GHZ &&
Johannes Berg1a919312012-12-03 17:21:11 +01002305 !freq_is_chan_12_13_14(beacon_chan->center_freq)))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002306 return 0;
2307
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002308 spin_lock_bh(&reg_pending_beacons_lock);
2309 processing = pending_reg_beacon(beacon_chan);
2310 spin_unlock_bh(&reg_pending_beacons_lock);
2311
2312 if (processing)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002313 return 0;
2314
2315 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
2316 if (!reg_beacon)
2317 return -ENOMEM;
2318
Johannes Berg1a919312012-12-03 17:21:11 +01002319 REG_DBG_PRINT("Found new beacon on frequency: %d MHz (Ch %d) on %s\n",
Luis R. Rodriguez4113f752010-01-04 11:50:11 -05002320 beacon_chan->center_freq,
2321 ieee80211_frequency_to_channel(beacon_chan->center_freq),
2322 wiphy_name(wiphy));
2323
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002324 memcpy(&reg_beacon->chan, beacon_chan,
Johannes Berg1a919312012-12-03 17:21:11 +01002325 sizeof(struct ieee80211_channel));
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002326
2327 /*
2328 * Since we can be called from BH or and non-BH context
2329 * we must use spin_lock_bh()
2330 */
2331 spin_lock_bh(&reg_pending_beacons_lock);
2332 list_add_tail(&reg_beacon->list, &reg_pending_beacons);
2333 spin_unlock_bh(&reg_pending_beacons_lock);
2334
2335 schedule_work(&reg_work);
2336
2337 return 0;
2338}
2339
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002340static void print_rd_rules(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002341{
2342 unsigned int i;
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002343 const struct ieee80211_reg_rule *reg_rule = NULL;
2344 const struct ieee80211_freq_range *freq_range = NULL;
2345 const struct ieee80211_power_rule *power_rule = NULL;
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002346 char bw[32], cac_time[32];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002347
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002348 pr_info(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002349
2350 for (i = 0; i < rd->n_reg_rules; i++) {
2351 reg_rule = &rd->reg_rules[i];
2352 freq_range = &reg_rule->freq_range;
2353 power_rule = &reg_rule->power_rule;
2354
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01002355 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
2356 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
2357 freq_range->max_bandwidth_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01002358 reg_get_max_bandwidth(rd, reg_rule));
2359 else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01002360 snprintf(bw, sizeof(bw), "%d KHz",
Janusz Dziedzic97524822014-01-30 09:52:20 +01002361 freq_range->max_bandwidth_khz);
2362
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002363 if (reg_rule->flags & NL80211_RRF_DFS)
2364 scnprintf(cac_time, sizeof(cac_time), "%u s",
2365 reg_rule->dfs_cac_ms/1000);
2366 else
2367 scnprintf(cac_time, sizeof(cac_time), "N/A");
2368
2369
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002370 /*
2371 * There may not be documentation for max antenna gain
2372 * in certain regions
2373 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002374 if (power_rule->max_antenna_gain)
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002375 pr_info(" (%d KHz - %d KHz @ %s), (%d mBi, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002376 freq_range->start_freq_khz,
2377 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01002378 bw,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002379 power_rule->max_antenna_gain,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002380 power_rule->max_eirp,
2381 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002382 else
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002383 pr_info(" (%d KHz - %d KHz @ %s), (N/A, %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,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002387 power_rule->max_eirp,
2388 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002389 }
2390}
2391
Luis R. Rodriguez4c7d3982013-11-13 18:54:02 +01002392bool reg_supported_dfs_region(enum nl80211_dfs_regions dfs_region)
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07002393{
2394 switch (dfs_region) {
2395 case NL80211_DFS_UNSET:
2396 case NL80211_DFS_FCC:
2397 case NL80211_DFS_ETSI:
2398 case NL80211_DFS_JP:
2399 return true;
2400 default:
2401 REG_DBG_PRINT("Ignoring uknown DFS master region: %d\n",
2402 dfs_region);
2403 return false;
2404 }
2405}
2406
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002407static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002408{
Johannes Bergc492db32012-12-06 16:29:25 +01002409 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002410
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002411 if (is_intersected_alpha2(rd->alpha2)) {
Johannes Bergc492db32012-12-06 16:29:25 +01002412 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Johannes Berg79c97e92009-07-07 03:56:12 +02002413 struct cfg80211_registered_device *rdev;
Johannes Bergc492db32012-12-06 16:29:25 +01002414 rdev = cfg80211_rdev_by_wiphy_idx(lr->wiphy_idx);
Johannes Berg79c97e92009-07-07 03:56:12 +02002415 if (rdev) {
Joe Perchese9c02682010-11-16 19:56:49 -08002416 pr_info("Current regulatory domain updated by AP to: %c%c\n",
Johannes Berg79c97e92009-07-07 03:56:12 +02002417 rdev->country_ie_alpha2[0],
2418 rdev->country_ie_alpha2[1]);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002419 } else
Joe Perchese9c02682010-11-16 19:56:49 -08002420 pr_info("Current regulatory domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002421 } else
Joe Perchese9c02682010-11-16 19:56:49 -08002422 pr_info("Current regulatory domain intersected:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01002423 } else if (is_world_regdom(rd->alpha2)) {
Joe Perchese9c02682010-11-16 19:56:49 -08002424 pr_info("World regulatory domain updated:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01002425 } else {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002426 if (is_unknown_alpha2(rd->alpha2))
Joe Perchese9c02682010-11-16 19:56:49 -08002427 pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n");
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002428 else {
Johannes Bergc492db32012-12-06 16:29:25 +01002429 if (reg_request_cell_base(lr))
Johannes Berg1a919312012-12-03 17:21:11 +01002430 pr_info("Regulatory domain changed to country: %c%c by Cell Station\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002431 rd->alpha2[0], rd->alpha2[1]);
2432 else
Johannes Berg1a919312012-12-03 17:21:11 +01002433 pr_info("Regulatory domain changed to country: %c%c\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002434 rd->alpha2[0], rd->alpha2[1]);
2435 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002436 }
Johannes Berg1a919312012-12-03 17:21:11 +01002437
Luis R. Rodriguez3ef121b2013-11-13 18:54:05 +01002438 pr_info(" DFS Master region: %s", reg_dfs_region_str(rd->dfs_region));
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002439 print_rd_rules(rd);
2440}
2441
Johannes Berg2df78162008-10-28 16:49:41 +01002442static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002443{
Joe Perchese9c02682010-11-16 19:56:49 -08002444 pr_info("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002445 print_rd_rules(rd);
2446}
2447
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002448static int reg_set_rd_core(const struct ieee80211_regdomain *rd)
2449{
2450 if (!is_world_regdom(rd->alpha2))
2451 return -EINVAL;
2452 update_world_regdomain(rd);
2453 return 0;
2454}
2455
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002456static int reg_set_rd_user(const struct ieee80211_regdomain *rd,
2457 struct regulatory_request *user_request)
2458{
2459 const struct ieee80211_regdomain *intersected_rd = NULL;
2460
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002461 if (!regdom_changes(rd->alpha2))
2462 return -EALREADY;
2463
2464 if (!is_valid_rd(rd)) {
2465 pr_err("Invalid regulatory domain detected:\n");
2466 print_regdomain_info(rd);
2467 return -EINVAL;
2468 }
2469
2470 if (!user_request->intersect) {
2471 reset_regdomains(false, rd);
2472 return 0;
2473 }
2474
2475 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2476 if (!intersected_rd)
2477 return -EINVAL;
2478
2479 kfree(rd);
2480 rd = NULL;
2481 reset_regdomains(false, intersected_rd);
2482
2483 return 0;
2484}
2485
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002486static int reg_set_rd_driver(const struct ieee80211_regdomain *rd,
2487 struct regulatory_request *driver_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002488{
Johannes Berge9763c32012-12-03 16:59:46 +01002489 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002490 const struct ieee80211_regdomain *intersected_rd = NULL;
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002491 const struct ieee80211_regdomain *tmp;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002492 struct wiphy *request_wiphy;
Johannes Berg6913b492012-12-04 00:48:59 +01002493
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002494 if (is_world_regdom(rd->alpha2))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002495 return -EINVAL;
2496
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002497 if (!regdom_changes(rd->alpha2))
2498 return -EALREADY;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002499
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002500 if (!is_valid_rd(rd)) {
Joe Perchese9c02682010-11-16 19:56:49 -08002501 pr_err("Invalid regulatory domain detected:\n");
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002502 print_regdomain_info(rd);
2503 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002504 }
2505
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002506 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx);
2507 if (!request_wiphy) {
Shaibal Dutta845f3352014-01-30 15:08:30 -08002508 queue_delayed_work(system_power_efficient_wq,
2509 &reg_timeout, 0);
Johannes Bergde3584b2011-11-21 10:44:00 +01002510 return -ENODEV;
2511 }
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002512
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002513 if (!driver_request->intersect) {
Luis R. Rodriguez558f6d32009-06-08 18:54:37 -07002514 if (request_wiphy->regd)
2515 return -EALREADY;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002516
Johannes Berge9763c32012-12-03 16:59:46 +01002517 regd = reg_copy_regd(rd);
2518 if (IS_ERR(regd))
2519 return PTR_ERR(regd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002520
Johannes Berg458f4f92012-12-06 15:47:38 +01002521 rcu_assign_pointer(request_wiphy->regd, regd);
Johannes Berg379b82f2012-12-06 15:44:07 +01002522 reset_regdomains(false, rd);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002523 return 0;
2524 }
2525
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002526 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2527 if (!intersected_rd)
2528 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002529
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002530 /*
2531 * We can trash what CRDA provided now.
2532 * However if a driver requested this specific regulatory
2533 * domain we keep it for its private use
2534 */
2535 tmp = get_wiphy_regdom(request_wiphy);
2536 rcu_assign_pointer(request_wiphy->regd, rd);
2537 rcu_free_regdom(tmp);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002538
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002539 rd = NULL;
Larry Fingerb7566fc2013-02-04 15:33:44 -06002540
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002541 reset_regdomains(false, intersected_rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002542
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002543 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002544}
2545
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002546static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
2547 struct regulatory_request *country_ie_request)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002548{
2549 struct wiphy *request_wiphy;
2550
2551 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
2552 !is_unknown_alpha2(rd->alpha2))
2553 return -EINVAL;
2554
2555 /*
2556 * Lets only bother proceeding on the same alpha2 if the current
2557 * rd is non static (it means CRDA was present and was used last)
2558 * and the pending request came in from a country IE
2559 */
2560
2561 if (!is_valid_rd(rd)) {
2562 pr_err("Invalid regulatory domain detected:\n");
2563 print_regdomain_info(rd);
2564 return -EINVAL;
2565 }
2566
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002567 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx);
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002568 if (!request_wiphy) {
Shaibal Dutta845f3352014-01-30 15:08:30 -08002569 queue_delayed_work(system_power_efficient_wq,
2570 &reg_timeout, 0);
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002571 return -ENODEV;
2572 }
2573
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002574 if (country_ie_request->intersect)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002575 return -EINVAL;
2576
2577 reset_regdomains(false, rd);
2578 return 0;
2579}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002580
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002581/*
2582 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002583 * multiple drivers can be ironed out later. Caller must've already
Johannes Berg458f4f92012-12-06 15:47:38 +01002584 * kmalloc'd the rd structure.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002585 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002586int set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002587{
Johannes Bergc492db32012-12-06 16:29:25 +01002588 struct regulatory_request *lr;
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002589 bool user_reset = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002590 int r;
2591
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002592 if (!reg_is_valid_request(rd->alpha2)) {
2593 kfree(rd);
2594 return -EINVAL;
2595 }
2596
Johannes Bergc492db32012-12-06 16:29:25 +01002597 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002598
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002599 /* Note that this doesn't update the wiphys, this is done below */
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002600 switch (lr->initiator) {
2601 case NL80211_REGDOM_SET_BY_CORE:
2602 r = reg_set_rd_core(rd);
2603 break;
2604 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002605 r = reg_set_rd_user(rd, lr);
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002606 user_reset = true;
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002607 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002608 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002609 r = reg_set_rd_driver(rd, lr);
2610 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002611 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002612 r = reg_set_rd_country_ie(rd, lr);
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002613 break;
2614 default:
2615 WARN(1, "invalid initiator %d\n", lr->initiator);
2616 return -EINVAL;
2617 }
2618
Johannes Bergd2372b32008-10-24 20:32:20 +02002619 if (r) {
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002620 switch (r) {
2621 case -EALREADY:
Kalle Valo95908532012-07-12 15:33:58 +03002622 reg_set_request_processed();
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002623 break;
2624 default:
2625 /* Back to world regulatory in case of errors */
2626 restore_regulatory_settings(user_reset);
2627 }
Kalle Valo95908532012-07-12 15:33:58 +03002628
Johannes Bergd2372b32008-10-24 20:32:20 +02002629 kfree(rd);
Johannes Berg38fd2142013-05-10 19:17:17 +02002630 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02002631 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002632
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002633 /* This would make this whole thing pointless */
Johannes Berg38fd2142013-05-10 19:17:17 +02002634 if (WARN_ON(!lr->intersect && rd != get_cfg80211_regdom()))
2635 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002636
2637 /* update all wiphys now with the new established regulatory domain */
Johannes Bergc492db32012-12-06 16:29:25 +01002638 update_all_wiphy_regulatory(lr->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002639
Johannes Berg458f4f92012-12-06 15:47:38 +01002640 print_regdomain(get_cfg80211_regdom());
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002641
Johannes Bergc492db32012-12-06 16:29:25 +01002642 nl80211_send_reg_change_event(lr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04002643
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002644 reg_set_request_processed();
2645
Johannes Berg38fd2142013-05-10 19:17:17 +02002646 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002647}
2648
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002649void wiphy_regulatory_register(struct wiphy *wiphy)
2650{
Arik Nemtsov23df0b72013-07-21 16:36:48 +03002651 struct regulatory_request *lr;
2652
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002653 if (!reg_dev_ignore_cell_hint(wiphy))
2654 reg_num_devs_support_basehint++;
2655
Arik Nemtsov23df0b72013-07-21 16:36:48 +03002656 lr = get_last_request();
2657 wiphy_update_regulatory(wiphy, lr->initiator);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002658}
2659
Luis R. Rodriguezbfead082012-07-12 11:49:19 -07002660void wiphy_regulatory_deregister(struct wiphy *wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002661{
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002662 struct wiphy *request_wiphy = NULL;
Johannes Bergc492db32012-12-06 16:29:25 +01002663 struct regulatory_request *lr;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002664
Johannes Bergc492db32012-12-06 16:29:25 +01002665 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002666
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002667 if (!reg_dev_ignore_cell_hint(wiphy))
2668 reg_num_devs_support_basehint--;
2669
Johannes Berg458f4f92012-12-06 15:47:38 +01002670 rcu_free_regdom(get_wiphy_regdom(wiphy));
Monam Agarwal34dd8862014-03-24 00:53:40 +05302671 RCU_INIT_POINTER(wiphy->regd, NULL);
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002672
Johannes Bergc492db32012-12-06 16:29:25 +01002673 if (lr)
2674 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002675
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002676 if (!request_wiphy || request_wiphy != wiphy)
Johannes Berg38fd2142013-05-10 19:17:17 +02002677 return;
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002678
Johannes Bergc492db32012-12-06 16:29:25 +01002679 lr->wiphy_idx = WIPHY_IDX_INVALID;
2680 lr->country_ie_env = ENVIRON_ANY;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002681}
2682
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002683static void reg_timeout_work(struct work_struct *work)
2684{
Johannes Berg1a919312012-12-03 17:21:11 +01002685 REG_DBG_PRINT("Timeout while waiting for CRDA to reply, restoring regulatory settings\n");
Johannes Bergf77b86d2013-06-24 15:43:38 +02002686 rtnl_lock();
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002687 restore_regulatory_settings(true);
Johannes Bergf77b86d2013-06-24 15:43:38 +02002688 rtnl_unlock();
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002689}
2690
Ilan Peer174e0cd2014-02-23 09:13:01 +02002691/*
2692 * See http://www.fcc.gov/document/5-ghz-unlicensed-spectrum-unii, for
2693 * UNII band definitions
2694 */
2695int cfg80211_get_unii(int freq)
2696{
2697 /* UNII-1 */
2698 if (freq >= 5150 && freq <= 5250)
2699 return 0;
2700
2701 /* UNII-2A */
2702 if (freq > 5250 && freq <= 5350)
2703 return 1;
2704
2705 /* UNII-2B */
2706 if (freq > 5350 && freq <= 5470)
2707 return 2;
2708
2709 /* UNII-2C */
2710 if (freq > 5470 && freq <= 5725)
2711 return 3;
2712
2713 /* UNII-3 */
2714 if (freq > 5725 && freq <= 5825)
2715 return 4;
2716
2717 return -EINVAL;
2718}
2719
Ilan Peerc8866e52014-02-23 09:13:03 +02002720bool regulatory_indoor_allowed(void)
2721{
2722 return reg_is_indoor;
2723}
2724
Uwe Kleine-König2fcc9f72010-06-18 09:38:55 +02002725int __init regulatory_init(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002726{
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002727 int err = 0;
Johannes Berg734366d2008-09-15 10:56:48 +02002728
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002729 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
2730 if (IS_ERR(reg_pdev))
2731 return PTR_ERR(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002732
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002733 spin_lock_init(&reg_requests_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002734 spin_lock_init(&reg_pending_beacons_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002735
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -07002736 reg_regdb_size_check();
2737
Johannes Berg458f4f92012-12-06 15:47:38 +01002738 rcu_assign_pointer(cfg80211_regdomain, cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +02002739
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002740 user_alpha2[0] = '9';
2741 user_alpha2[1] = '7';
2742
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002743 /* We always try to get an update for the static regdomain */
Johannes Berg458f4f92012-12-06 15:47:38 +01002744 err = regulatory_hint_core(cfg80211_world_regdom->alpha2);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002745 if (err) {
2746 if (err == -ENOMEM)
2747 return err;
2748 /*
2749 * N.B. kobject_uevent_env() can fail mainly for when we're out
2750 * memory which is handled and propagated appropriately above
2751 * but it can also fail during a netlink_broadcast() or during
2752 * early boot for call_usermodehelper(). For now treat these
2753 * errors as non-fatal.
2754 */
Joe Perchese9c02682010-11-16 19:56:49 -08002755 pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002756 }
Johannes Berg734366d2008-09-15 10:56:48 +02002757
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002758 /*
2759 * Finally, if the user set the module parameter treat it
2760 * as a user hint.
2761 */
2762 if (!is_world_regdom(ieee80211_regdom))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002763 regulatory_hint_user(ieee80211_regdom,
2764 NL80211_USER_REG_HINT_USER);
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002765
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002766 return 0;
2767}
2768
Johannes Berg1a919312012-12-03 17:21:11 +01002769void regulatory_exit(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002770{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002771 struct regulatory_request *reg_request, *tmp;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002772 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002773
2774 cancel_work_sync(&reg_work);
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002775 cancel_delayed_work_sync(&reg_timeout);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002776
Johannes Berg9027b142012-12-03 17:59:24 +01002777 /* Lock to suppress warnings */
Johannes Berg38fd2142013-05-10 19:17:17 +02002778 rtnl_lock();
Johannes Berg379b82f2012-12-06 15:44:07 +01002779 reset_regdomains(true, NULL);
Johannes Berg38fd2142013-05-10 19:17:17 +02002780 rtnl_unlock();
Johannes Berg734366d2008-09-15 10:56:48 +02002781
Luis R. Rodriguez58ebacc2011-11-08 14:28:06 -08002782 dev_set_uevent_suppress(&reg_pdev->dev, true);
Johannes Bergf6037d02008-10-21 11:01:33 +02002783
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002784 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002785
Johannes Bergfea9bce2012-12-03 17:32:01 +01002786 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
2787 list_del(&reg_beacon->list);
2788 kfree(reg_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002789 }
2790
Johannes Bergfea9bce2012-12-03 17:32:01 +01002791 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
2792 list_del(&reg_beacon->list);
2793 kfree(reg_beacon);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002794 }
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002795
Johannes Bergfea9bce2012-12-03 17:32:01 +01002796 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
2797 list_del(&reg_request->list);
2798 kfree(reg_request);
Johannes Berg8318d782008-01-24 19:38:38 +01002799 }
Johannes Berg8318d782008-01-24 19:38:38 +01002800}