blob: 7449a8c0f9fd2e4f475bc4d9090f7b68be29edbc [file] [log] [blame]
Johannes Berg8318d782008-01-24 19:38:38 +01001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Luis R. Rodriguez3b77d5e2011-12-20 12:23:38 -08005 * Copyright 2008-2011 Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
Johannes Berg2740f0c2014-09-03 15:24:58 +03006 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Berg8318d782008-01-24 19:38:38 +01007 *
Luis R. Rodriguez3b77d5e2011-12-20 12:23:38 -08008 * Permission to use, copy, modify, and/or distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Johannes Berg8318d782008-01-24 19:38:38 +010019 */
20
Luis R. Rodriguez3b77d5e2011-12-20 12:23:38 -080021
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070022/**
23 * DOC: Wireless regulatory infrastructure
Johannes Berg8318d782008-01-24 19:38:38 +010024 *
25 * The usual implementation is for a driver to read a device EEPROM to
26 * determine which regulatory domain it should be operating under, then
27 * looking up the allowable channels in a driver-local table and finally
28 * registering those channels in the wiphy structure.
29 *
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070030 * Another set of compliance enforcement is for drivers to use their
31 * own compliance limits which can be stored on the EEPROM. The host
32 * driver or firmware may ensure these are used.
33 *
34 * In addition to all this we provide an extra layer of regulatory
35 * conformance. For drivers which do not have any regulatory
36 * information CRDA provides the complete regulatory solution.
37 * For others it provides a community effort on further restrictions
38 * to enhance compliance.
39 *
40 * Note: When number of rules --> infinity we will not be able to
41 * index on alpha2 any more, instead we'll probably have to
42 * rely on some SHA1 checksum of the regdomain for example.
43 *
Johannes Berg8318d782008-01-24 19:38:38 +010044 */
Joe Perchese9c02682010-11-16 19:56:49 -080045
46#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
47
Johannes Berg8318d782008-01-24 19:38:38 +010048#include <linux/kernel.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040049#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070051#include <linux/list.h>
John W. Linvillec61029c2010-08-05 14:26:24 -040052#include <linux/ctype.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070053#include <linux/nl80211.h>
54#include <linux/platform_device.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040055#include <linux/moduleparam.h>
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070056#include <net/cfg80211.h>
Johannes Berg8318d782008-01-24 19:38:38 +010057#include "core.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070058#include "reg.h"
John W. Linville3b377ea2009-12-18 17:59:01 -050059#include "regdb.h"
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040060#include "nl80211.h"
Johannes Berg8318d782008-01-24 19:38:38 +010061
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050062#ifdef CONFIG_CFG80211_REG_DEBUG
Joe Perches12c5ffb2011-07-29 14:51:25 -070063#define REG_DBG_PRINT(format, args...) \
64 printk(KERN_DEBUG pr_fmt(format), ##args)
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050065#else
John W. Linville82711952010-01-05 17:57:20 -050066#define REG_DBG_PRINT(args...)
Luis R. Rodriguez4113f752010-01-04 11:50:11 -050067#endif
68
Ilan Peer52616f22014-02-25 16:26:00 +020069/**
70 * enum reg_request_treatment - regulatory request treatment
71 *
72 * @REG_REQ_OK: continue processing the regulatory request
73 * @REG_REQ_IGNORE: ignore the regulatory request
74 * @REG_REQ_INTERSECT: the regulatory domain resulting from this request should
75 * be intersected with the current one.
76 * @REG_REQ_ALREADY_SET: the regulatory request will not change the current
77 * regulatory settings, and no further processing is required.
78 * @REG_REQ_USER_HINT_HANDLED: a non alpha2 user hint was handled and no
79 * further processing is required, i.e., not need to update last_request
80 * etc. This should be used for user hints that do not provide an alpha2
81 * but some other type of regulatory hint, i.e., indoor operation.
82 */
Johannes Berg2f922122012-12-03 17:54:55 +010083enum reg_request_treatment {
84 REG_REQ_OK,
85 REG_REQ_IGNORE,
86 REG_REQ_INTERSECT,
87 REG_REQ_ALREADY_SET,
Ilan Peer52616f22014-02-25 16:26:00 +020088 REG_REQ_USER_HINT_HANDLED,
Johannes Berg2f922122012-12-03 17:54:55 +010089};
90
Luis R. Rodrigueza0429942011-11-28 16:47:15 -050091static struct regulatory_request core_request_world = {
92 .initiator = NL80211_REGDOM_SET_BY_CORE,
93 .alpha2[0] = '0',
94 .alpha2[1] = '0',
95 .intersect = false,
96 .processed = true,
97 .country_ie_env = ENVIRON_ANY,
98};
99
Johannes Berg38fd2142013-05-10 19:17:17 +0200100/*
101 * Receipt of information from last regulatory request,
102 * protected by RTNL (and can be accessed with RCU protection)
103 */
Johannes Bergc492db32012-12-06 16:29:25 +0100104static struct regulatory_request __rcu *last_request =
105 (void __rcu *)&core_request_world;
Johannes Berg734366d2008-09-15 10:56:48 +0200106
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700107/* To trigger userspace events */
108static struct platform_device *reg_pdev;
Johannes Berg8318d782008-01-24 19:38:38 +0100109
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500110/*
111 * Central wireless core regulatory domains, we only need two,
Johannes Berg734366d2008-09-15 10:56:48 +0200112 * the current one and a world regulatory domain in case we have no
Johannes Berge8da2bb2012-12-03 23:00:08 +0100113 * information to give us an alpha2.
Johannes Berg38fd2142013-05-10 19:17:17 +0200114 * (protected by RTNL, can be read under RCU)
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500115 */
Johannes Berg458f4f92012-12-06 15:47:38 +0100116const struct ieee80211_regdomain __rcu *cfg80211_regdomain;
Johannes Berg734366d2008-09-15 10:56:48 +0200117
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500118/*
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700119 * Number of devices that registered to the core
120 * that support cellular base station regulatory hints
Johannes Berg38fd2142013-05-10 19:17:17 +0200121 * (protected by RTNL)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700122 */
123static int reg_num_devs_support_basehint;
124
Ilan Peer52616f22014-02-25 16:26:00 +0200125/*
126 * State variable indicating if the platform on which the devices
127 * are attached is operating in an indoor environment. The state variable
128 * is relevant for all registered devices.
129 * (protected by RTNL)
130 */
131static bool reg_is_indoor;
132
Johannes Berg458f4f92012-12-06 15:47:38 +0100133static const struct ieee80211_regdomain *get_cfg80211_regdom(void)
134{
Johannes Berg38fd2142013-05-10 19:17:17 +0200135 return rtnl_dereference(cfg80211_regdomain);
Johannes Berg458f4f92012-12-06 15:47:38 +0100136}
137
138static const struct ieee80211_regdomain *get_wiphy_regdom(struct wiphy *wiphy)
139{
Johannes Berg38fd2142013-05-10 19:17:17 +0200140 return rtnl_dereference(wiphy->regd);
Johannes Berg458f4f92012-12-06 15:47:38 +0100141}
142
Luis R. Rodriguez3ef121b2013-11-13 18:54:05 +0100143static const char *reg_dfs_region_str(enum nl80211_dfs_regions dfs_region)
144{
145 switch (dfs_region) {
146 case NL80211_DFS_UNSET:
147 return "unset";
148 case NL80211_DFS_FCC:
149 return "FCC";
150 case NL80211_DFS_ETSI:
151 return "ETSI";
152 case NL80211_DFS_JP:
153 return "JP";
154 }
155 return "Unknown";
156}
157
Luis R. Rodriguez6c474792013-11-25 20:56:09 +0100158enum nl80211_dfs_regions reg_get_dfs_region(struct wiphy *wiphy)
159{
160 const struct ieee80211_regdomain *regd = NULL;
161 const struct ieee80211_regdomain *wiphy_regd = NULL;
162
163 regd = get_cfg80211_regdom();
164 if (!wiphy)
165 goto out;
166
167 wiphy_regd = get_wiphy_regdom(wiphy);
168 if (!wiphy_regd)
169 goto out;
170
171 if (wiphy_regd->dfs_region == regd->dfs_region)
172 goto out;
173
174 REG_DBG_PRINT("%s: device specific dfs_region "
175 "(%s) disagrees with cfg80211's "
176 "central dfs_region (%s)\n",
177 dev_name(&wiphy->dev),
178 reg_dfs_region_str(wiphy_regd->dfs_region),
179 reg_dfs_region_str(regd->dfs_region));
180
181out:
182 return regd->dfs_region;
183}
184
Johannes Berg458f4f92012-12-06 15:47:38 +0100185static void rcu_free_regdom(const struct ieee80211_regdomain *r)
186{
187 if (!r)
188 return;
189 kfree_rcu((struct ieee80211_regdomain *)r, rcu_head);
190}
191
Johannes Bergc492db32012-12-06 16:29:25 +0100192static struct regulatory_request *get_last_request(void)
193{
Johannes Berg38fd2142013-05-10 19:17:17 +0200194 return rcu_dereference_rtnl(last_request);
Johannes Bergc492db32012-12-06 16:29:25 +0100195}
196
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500197/* Used to queue up regulatory hints */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -0500198static LIST_HEAD(reg_requests_list);
199static spinlock_t reg_requests_lock;
200
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -0500201/* Used to queue up beacon hints for review */
202static LIST_HEAD(reg_pending_beacons);
203static spinlock_t reg_pending_beacons_lock;
204
205/* Used to keep track of processed beacon hints */
206static LIST_HEAD(reg_beacon_list);
207
208struct reg_beacon {
209 struct list_head list;
210 struct ieee80211_channel chan;
211};
212
Luis R. Rodriguezf333a7a2010-11-17 21:46:07 -0800213static void reg_todo(struct work_struct *work);
214static DECLARE_WORK(reg_work, reg_todo);
215
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -0700216static void reg_timeout_work(struct work_struct *work);
217static DECLARE_DELAYED_WORK(reg_timeout, reg_timeout_work);
218
Johannes Berg734366d2008-09-15 10:56:48 +0200219/* We keep a static world regulatory domain in case of the absence of CRDA */
220static const struct ieee80211_regdomain world_regdom = {
Vladimir Kondratiev90cdc6d2012-07-02 09:32:34 +0300221 .n_reg_rules = 6,
Johannes Berg734366d2008-09-15 10:56:48 +0200222 .alpha2 = "00",
223 .reg_rules = {
Luis R. Rodriguez68798a62009-02-21 00:20:37 -0500224 /* IEEE 802.11b/g, channels 1..11 */
225 REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
Johannes Berg43c771a2012-11-12 10:51:34 +0100226 /* IEEE 802.11b/g, channels 12..13. */
227 REG_RULE(2467-10, 2472+10, 40, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200228 NL80211_RRF_NO_IR),
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800229 /* IEEE 802.11 channel 14 - Only JP enables
230 * this and for 802.11b only */
231 REG_RULE(2484-10, 2484+10, 20, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200232 NL80211_RRF_NO_IR |
Luis R. Rodriguez611b6a82009-03-05 21:19:21 -0800233 NL80211_RRF_NO_OFDM),
234 /* IEEE 802.11a, channel 36..48 */
Johannes Berg131a19b2013-03-04 20:54:46 +0100235 REG_RULE(5180-10, 5240+10, 160, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200236 NL80211_RRF_NO_IR),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500237
Johannes Berg131a19b2013-03-04 20:54:46 +0100238 /* IEEE 802.11a, channel 52..64 - DFS required */
239 REG_RULE(5260-10, 5320+10, 160, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200240 NL80211_RRF_NO_IR |
Johannes Berg131a19b2013-03-04 20:54:46 +0100241 NL80211_RRF_DFS),
242
243 /* IEEE 802.11a, channel 100..144 - DFS required */
244 REG_RULE(5500-10, 5720+10, 160, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200245 NL80211_RRF_NO_IR |
Johannes Berg131a19b2013-03-04 20:54:46 +0100246 NL80211_RRF_DFS),
Luis R. Rodriguez3fc71f72009-02-21 00:20:38 -0500247
248 /* IEEE 802.11a, channel 149..165 */
Johannes Berg8ab9d852012-12-03 22:09:22 +0100249 REG_RULE(5745-10, 5825+10, 80, 6, 20,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200250 NL80211_RRF_NO_IR),
Vladimir Kondratiev90cdc6d2012-07-02 09:32:34 +0300251
252 /* IEEE 802.11ad (60gHz), channels 1..3 */
253 REG_RULE(56160+2160*1-1080, 56160+2160*3+1080, 2160, 0, 0, 0),
Johannes Berg734366d2008-09-15 10:56:48 +0200254 }
255};
256
Johannes Berg38fd2142013-05-10 19:17:17 +0200257/* protected by RTNL */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200258static const struct ieee80211_regdomain *cfg80211_world_regdom =
259 &world_regdom;
Johannes Berg734366d2008-09-15 10:56:48 +0200260
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400261static char *ieee80211_regdom = "00";
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500262static char user_alpha2[2];
Luis R. Rodriguez6ee7d332009-03-20 23:53:06 -0400263
Johannes Berg734366d2008-09-15 10:56:48 +0200264module_param(ieee80211_regdom, charp, 0444);
265MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
266
Arik Nemtsovc8883932014-04-21 20:39:34 -0700267static void reg_free_request(struct regulatory_request *request)
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -0800268{
Arik Nemtsovc8883932014-04-21 20:39:34 -0700269 if (request != get_last_request())
270 kfree(request);
271}
272
273static void reg_free_last_request(void)
274{
275 struct regulatory_request *lr = get_last_request();
276
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -0800277 if (lr != &core_request_world && lr)
278 kfree_rcu(lr, rcu_head);
279}
280
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800281static void reg_update_last_request(struct regulatory_request *request)
282{
Luis R. Rodriguez255e25b2014-02-25 17:09:40 -0800283 struct regulatory_request *lr;
284
285 lr = get_last_request();
286 if (lr == request)
287 return;
288
Arik Nemtsovc8883932014-04-21 20:39:34 -0700289 reg_free_last_request();
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800290 rcu_assign_pointer(last_request, request);
291}
292
Johannes Berg379b82f2012-12-06 15:44:07 +0100293static void reset_regdomains(bool full_reset,
294 const struct ieee80211_regdomain *new_regdom)
Johannes Berg734366d2008-09-15 10:56:48 +0200295{
Johannes Berg458f4f92012-12-06 15:47:38 +0100296 const struct ieee80211_regdomain *r;
297
Johannes Berg38fd2142013-05-10 19:17:17 +0200298 ASSERT_RTNL();
Johannes Berge8da2bb2012-12-03 23:00:08 +0100299
Johannes Berg458f4f92012-12-06 15:47:38 +0100300 r = get_cfg80211_regdom();
301
Johannes Berg942b25c2008-09-15 11:26:47 +0200302 /* avoid freeing static information or freeing something twice */
Johannes Berg458f4f92012-12-06 15:47:38 +0100303 if (r == cfg80211_world_regdom)
304 r = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200305 if (cfg80211_world_regdom == &world_regdom)
306 cfg80211_world_regdom = NULL;
Johannes Berg458f4f92012-12-06 15:47:38 +0100307 if (r == &world_regdom)
308 r = NULL;
Johannes Berg942b25c2008-09-15 11:26:47 +0200309
Johannes Berg458f4f92012-12-06 15:47:38 +0100310 rcu_free_regdom(r);
311 rcu_free_regdom(cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +0200312
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200313 cfg80211_world_regdom = &world_regdom;
Johannes Berg458f4f92012-12-06 15:47:38 +0100314 rcu_assign_pointer(cfg80211_regdomain, new_regdom);
Luis R. Rodrigueza0429942011-11-28 16:47:15 -0500315
316 if (!full_reset)
317 return;
318
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -0800319 reg_update_last_request(&core_request_world);
Johannes Berg734366d2008-09-15 10:56:48 +0200320}
321
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500322/*
323 * Dynamic world regulatory domain requested by the wireless
324 * core upon initialization
325 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200326static void update_world_regdomain(const struct ieee80211_regdomain *rd)
Johannes Berg734366d2008-09-15 10:56:48 +0200327{
Johannes Bergc492db32012-12-06 16:29:25 +0100328 struct regulatory_request *lr;
Johannes Berg734366d2008-09-15 10:56:48 +0200329
Johannes Bergc492db32012-12-06 16:29:25 +0100330 lr = get_last_request();
331
332 WARN_ON(!lr);
Johannes Berge8da2bb2012-12-03 23:00:08 +0100333
Johannes Berg379b82f2012-12-06 15:44:07 +0100334 reset_regdomains(false, rd);
Johannes Berg734366d2008-09-15 10:56:48 +0200335
336 cfg80211_world_regdom = rd;
Johannes Berg734366d2008-09-15 10:56:48 +0200337}
Johannes Berg734366d2008-09-15 10:56:48 +0200338
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200339bool is_world_regdom(const char *alpha2)
Johannes Berg8318d782008-01-24 19:38:38 +0100340{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700341 if (!alpha2)
342 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100343 return alpha2[0] == '0' && alpha2[1] == '0';
Johannes Berg8318d782008-01-24 19:38:38 +0100344}
345
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200346static bool is_alpha2_set(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700347{
348 if (!alpha2)
349 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100350 return alpha2[0] && alpha2[1];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700351}
Johannes Berg8318d782008-01-24 19:38:38 +0100352
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200353static bool is_unknown_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700354{
355 if (!alpha2)
356 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500357 /*
358 * Special case where regulatory domain was built by driver
359 * but a specific alpha2 cannot be determined
360 */
Johannes Berg1a919312012-12-03 17:21:11 +0100361 return alpha2[0] == '9' && alpha2[1] == '9';
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700362}
363
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800364static bool is_intersected_alpha2(const char *alpha2)
365{
366 if (!alpha2)
367 return false;
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500368 /*
369 * Special case where regulatory domain is the
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800370 * result of an intersection between two regulatory domain
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500371 * structures
372 */
Johannes Berg1a919312012-12-03 17:21:11 +0100373 return alpha2[0] == '9' && alpha2[1] == '8';
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -0800374}
375
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200376static bool is_an_alpha2(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700377{
378 if (!alpha2)
379 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100380 return isalpha(alpha2[0]) && isalpha(alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700381}
382
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200383static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700384{
385 if (!alpha2_x || !alpha2_y)
386 return false;
Johannes Berg1a919312012-12-03 17:21:11 +0100387 return alpha2_x[0] == alpha2_y[0] && alpha2_x[1] == alpha2_y[1];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700388}
389
Luis R. Rodriguez69b15722009-02-21 00:04:33 -0500390static bool regdom_changes(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700391{
Johannes Berg458f4f92012-12-06 15:47:38 +0100392 const struct ieee80211_regdomain *r = get_cfg80211_regdom();
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -0500393
Johannes Berg458f4f92012-12-06 15:47:38 +0100394 if (!r)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700395 return true;
Johannes Berg458f4f92012-12-06 15:47:38 +0100396 return !alpha2_equal(r->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700397}
398
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500399/*
400 * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
401 * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
402 * has ever been issued.
403 */
404static bool is_user_regdom_saved(void)
405{
406 if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
407 return false;
408
409 /* This would indicate a mistake on the design */
Johannes Berg1a919312012-12-03 17:21:11 +0100410 if (WARN(!is_world_regdom(user_alpha2) && !is_an_alpha2(user_alpha2),
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500411 "Unexpected user alpha2: %c%c\n",
Johannes Berg1a919312012-12-03 17:21:11 +0100412 user_alpha2[0], user_alpha2[1]))
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -0500413 return false;
414
415 return true;
416}
417
Johannes Berge9763c32012-12-03 16:59:46 +0100418static const struct ieee80211_regdomain *
419reg_copy_regd(const struct ieee80211_regdomain *src_regd)
John W. Linville3b377ea2009-12-18 17:59:01 -0500420{
421 struct ieee80211_regdomain *regd;
Johannes Berge9763c32012-12-03 16:59:46 +0100422 int size_of_regd;
John W. Linville3b377ea2009-12-18 17:59:01 -0500423 unsigned int i;
424
Johannes Berg82f20852012-12-04 12:49:16 +0100425 size_of_regd =
426 sizeof(struct ieee80211_regdomain) +
427 src_regd->n_reg_rules * sizeof(struct ieee80211_reg_rule);
John W. Linville3b377ea2009-12-18 17:59:01 -0500428
429 regd = kzalloc(size_of_regd, GFP_KERNEL);
430 if (!regd)
Johannes Berge9763c32012-12-03 16:59:46 +0100431 return ERR_PTR(-ENOMEM);
John W. Linville3b377ea2009-12-18 17:59:01 -0500432
433 memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
434
435 for (i = 0; i < src_regd->n_reg_rules; i++)
436 memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
Johannes Berge9763c32012-12-03 16:59:46 +0100437 sizeof(struct ieee80211_reg_rule));
John W. Linville3b377ea2009-12-18 17:59:01 -0500438
Johannes Berge9763c32012-12-03 16:59:46 +0100439 return regd;
John W. Linville3b377ea2009-12-18 17:59:01 -0500440}
441
442#ifdef CONFIG_CFG80211_INTERNAL_REGDB
443struct reg_regdb_search_request {
444 char alpha2[2];
445 struct list_head list;
446};
447
448static LIST_HEAD(reg_regdb_search_list);
John W. Linville368d06f2010-03-16 15:40:59 -0400449static DEFINE_MUTEX(reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500450
451static void reg_regdb_search(struct work_struct *work)
452{
453 struct reg_regdb_search_request *request;
Johannes Berge9763c32012-12-03 16:59:46 +0100454 const struct ieee80211_regdomain *curdom, *regdom = NULL;
455 int i;
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700456
Johannes Berg5fe231e2013-05-08 21:45:15 +0200457 rtnl_lock();
John W. Linville3b377ea2009-12-18 17:59:01 -0500458
John W. Linville368d06f2010-03-16 15:40:59 -0400459 mutex_lock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500460 while (!list_empty(&reg_regdb_search_list)) {
461 request = list_first_entry(&reg_regdb_search_list,
462 struct reg_regdb_search_request,
463 list);
464 list_del(&request->list);
465
Johannes Berg1a919312012-12-03 17:21:11 +0100466 for (i = 0; i < reg_regdb_size; i++) {
John W. Linville3b377ea2009-12-18 17:59:01 -0500467 curdom = reg_regdb[i];
468
Johannes Berg1a919312012-12-03 17:21:11 +0100469 if (alpha2_equal(request->alpha2, curdom->alpha2)) {
Johannes Berge9763c32012-12-03 16:59:46 +0100470 regdom = reg_copy_regd(curdom);
John W. Linville3b377ea2009-12-18 17:59:01 -0500471 break;
472 }
473 }
474
475 kfree(request);
476 }
John W. Linville368d06f2010-03-16 15:40:59 -0400477 mutex_unlock(&reg_regdb_search_mutex);
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700478
Johannes Berge9763c32012-12-03 16:59:46 +0100479 if (!IS_ERR_OR_NULL(regdom))
Luis R. Rodrigueza85d0d72012-09-14 15:36:57 -0700480 set_regdom(regdom);
481
Johannes Berg5fe231e2013-05-08 21:45:15 +0200482 rtnl_unlock();
John W. Linville3b377ea2009-12-18 17:59:01 -0500483}
484
485static DECLARE_WORK(reg_regdb_work, reg_regdb_search);
486
487static void reg_regdb_query(const char *alpha2)
488{
489 struct reg_regdb_search_request *request;
490
491 if (!alpha2)
492 return;
493
494 request = kzalloc(sizeof(struct reg_regdb_search_request), GFP_KERNEL);
495 if (!request)
496 return;
497
498 memcpy(request->alpha2, alpha2, 2);
499
John W. Linville368d06f2010-03-16 15:40:59 -0400500 mutex_lock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500501 list_add_tail(&request->list, &reg_regdb_search_list);
John W. Linville368d06f2010-03-16 15:40:59 -0400502 mutex_unlock(&reg_regdb_search_mutex);
John W. Linville3b377ea2009-12-18 17:59:01 -0500503
504 schedule_work(&reg_regdb_work);
505}
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -0700506
507/* Feel free to add any other sanity checks here */
508static void reg_regdb_size_check(void)
509{
510 /* We should ideally BUILD_BUG_ON() but then random builds would fail */
511 WARN_ONCE(!reg_regdb_size, "db.txt is empty, you should update it...");
512}
John W. Linville3b377ea2009-12-18 17:59:01 -0500513#else
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -0700514static inline void reg_regdb_size_check(void) {}
John W. Linville3b377ea2009-12-18 17:59:01 -0500515static inline void reg_regdb_query(const char *alpha2) {}
516#endif /* CONFIG_CFG80211_INTERNAL_REGDB */
517
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500518/*
519 * This lets us keep regulatory code which is updated on a regulatory
Johannes Berg1226d252014-02-25 15:43:36 +0100520 * basis in userspace.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500521 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700522static int call_crda(const char *alpha2)
523{
Johannes Berg1226d252014-02-25 15:43:36 +0100524 char country[12];
525 char *env[] = { country, NULL };
526
527 snprintf(country, sizeof(country), "COUNTRY=%c%c",
528 alpha2[0], alpha2[1]);
529
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700530 if (!is_world_regdom((char *) alpha2))
Joe Perchese9c02682010-11-16 19:56:49 -0800531 pr_info("Calling CRDA for country: %c%c\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700532 alpha2[0], alpha2[1]);
533 else
Joe Perchese9c02682010-11-16 19:56:49 -0800534 pr_info("Calling CRDA to update world regulatory domain\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700535
John W. Linville3b377ea2009-12-18 17:59:01 -0500536 /* query internal regulatory database (if it exists) */
537 reg_regdb_query(alpha2);
538
Johannes Berg1226d252014-02-25 15:43:36 +0100539 return kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, env);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700540}
541
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -0800542static enum reg_request_treatment
543reg_call_crda(struct regulatory_request *request)
544{
545 if (call_crda(request->alpha2))
546 return REG_REQ_IGNORE;
547 return REG_REQ_OK;
548}
549
Luis R. Rodrigueze4387682013-11-05 09:18:01 -0800550bool reg_is_valid_request(const char *alpha2)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700551{
Johannes Bergc492db32012-12-06 16:29:25 +0100552 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez61405e92009-05-13 17:04:41 -0400553
Johannes Bergc492db32012-12-06 16:29:25 +0100554 if (!lr || lr->processed)
Johannes Bergf6037d02008-10-21 11:01:33 +0200555 return false;
556
Johannes Bergc492db32012-12-06 16:29:25 +0100557 return alpha2_equal(lr->alpha2, alpha2);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700558}
559
Janusz Dziedzice3961af2014-01-25 11:24:11 +0100560static const struct ieee80211_regdomain *reg_get_regdomain(struct wiphy *wiphy)
561{
562 struct regulatory_request *lr = get_last_request();
563
564 /*
565 * Follow the driver's regulatory domain, if present, unless a country
566 * IE has been processed or a user wants to help complaince further
567 */
568 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
569 lr->initiator != NL80211_REGDOM_SET_BY_USER &&
570 wiphy->regd)
571 return get_wiphy_regdom(wiphy);
572
573 return get_cfg80211_regdom();
574}
575
Arik Nemtsova6d4a532014-10-23 09:37:33 +0300576static unsigned int
577reg_get_max_bandwidth_from_range(const struct ieee80211_regdomain *rd,
578 const struct ieee80211_reg_rule *rule)
Janusz Dziedzic97524822014-01-30 09:52:20 +0100579{
580 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
581 const struct ieee80211_freq_range *freq_range_tmp;
582 const struct ieee80211_reg_rule *tmp;
583 u32 start_freq, end_freq, idx, no;
584
585 for (idx = 0; idx < rd->n_reg_rules; idx++)
586 if (rule == &rd->reg_rules[idx])
587 break;
588
589 if (idx == rd->n_reg_rules)
590 return 0;
591
592 /* get start_freq */
593 no = idx;
594
595 while (no) {
596 tmp = &rd->reg_rules[--no];
597 freq_range_tmp = &tmp->freq_range;
598
599 if (freq_range_tmp->end_freq_khz < freq_range->start_freq_khz)
600 break;
601
Janusz Dziedzic97524822014-01-30 09:52:20 +0100602 freq_range = freq_range_tmp;
603 }
604
605 start_freq = freq_range->start_freq_khz;
606
607 /* get end_freq */
608 freq_range = &rule->freq_range;
609 no = idx;
610
611 while (no < rd->n_reg_rules - 1) {
612 tmp = &rd->reg_rules[++no];
613 freq_range_tmp = &tmp->freq_range;
614
615 if (freq_range_tmp->start_freq_khz > freq_range->end_freq_khz)
616 break;
617
Janusz Dziedzic97524822014-01-30 09:52:20 +0100618 freq_range = freq_range_tmp;
619 }
620
621 end_freq = freq_range->end_freq_khz;
622
623 return end_freq - start_freq;
624}
625
Arik Nemtsova6d4a532014-10-23 09:37:33 +0300626unsigned int reg_get_max_bandwidth(const struct ieee80211_regdomain *rd,
627 const struct ieee80211_reg_rule *rule)
628{
629 unsigned int bw = reg_get_max_bandwidth_from_range(rd, rule);
630
631 if (rule->flags & NL80211_RRF_NO_160MHZ)
632 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(80));
633 if (rule->flags & NL80211_RRF_NO_80MHZ)
634 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(40));
635
636 /*
637 * HT40+/HT40- limits are handled per-channel. Only limit BW if both
638 * are not allowed.
639 */
640 if (rule->flags & NL80211_RRF_NO_HT40MINUS &&
641 rule->flags & NL80211_RRF_NO_HT40PLUS)
642 bw = min_t(unsigned int, bw, MHZ_TO_KHZ(20));
643
644 return bw;
645}
646
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700647/* Sanity check on a regulatory rule */
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200648static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700649{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200650 const struct ieee80211_freq_range *freq_range = &rule->freq_range;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700651 u32 freq_diff;
652
Luis R. Rodriguez91e99002008-11-12 14:21:55 -0800653 if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700654 return false;
655
656 if (freq_range->start_freq_khz > freq_range->end_freq_khz)
657 return false;
658
659 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
660
Roel Kluinbd05f282009-03-03 22:55:21 +0100661 if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
Johannes Berg1a919312012-12-03 17:21:11 +0100662 freq_range->max_bandwidth_khz > freq_diff)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700663 return false;
664
665 return true;
666}
667
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200668static bool is_valid_rd(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700669{
Johannes Berga3d2eaf2008-09-15 11:10:52 +0200670 const struct ieee80211_reg_rule *reg_rule = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700671 unsigned int i;
672
673 if (!rd->n_reg_rules)
674 return false;
675
Luis R. Rodriguez88dc1c32008-11-12 14:22:01 -0800676 if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
677 return false;
678
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700679 for (i = 0; i < rd->n_reg_rules; i++) {
680 reg_rule = &rd->reg_rules[i];
681 if (!is_valid_reg_rule(reg_rule))
682 return false;
683 }
684
685 return true;
686}
687
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400688static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range,
Johannes Bergfe7ef5e2012-12-04 15:07:34 +0100689 u32 center_freq_khz, u32 bw_khz)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700690{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400691 u32 start_freq_khz, end_freq_khz;
692
693 start_freq_khz = center_freq_khz - (bw_khz/2);
694 end_freq_khz = center_freq_khz + (bw_khz/2);
695
696 if (start_freq_khz >= freq_range->start_freq_khz &&
697 end_freq_khz <= freq_range->end_freq_khz)
698 return true;
699
700 return false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700701}
702
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800703/**
704 * freq_in_rule_band - tells us if a frequency is in a frequency band
705 * @freq_range: frequency rule we want to query
706 * @freq_khz: frequency we are inquiring about
707 *
708 * This lets us know if a specific frequency rule is or is not relevant to
709 * a specific frequency's band. Bands are device specific and artificial
Vladimir Kondratiev64629b92012-09-23 09:49:54 +0200710 * definitions (the "2.4 GHz band", the "5 GHz band" and the "60GHz band"),
711 * however it is safe for now to assume that a frequency rule should not be
712 * part of a frequency's band if the start freq or end freq are off by more
713 * than 2 GHz for the 2.4 and 5 GHz bands, and by more than 10 GHz for the
714 * 60 GHz band.
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800715 * This resolution can be lowered and should be considered as we add
716 * regulatory rule support for other "bands".
717 **/
718static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
Johannes Berg1a919312012-12-03 17:21:11 +0100719 u32 freq_khz)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800720{
721#define ONE_GHZ_IN_KHZ 1000000
Vladimir Kondratiev64629b92012-09-23 09:49:54 +0200722 /*
723 * From 802.11ad: directional multi-gigabit (DMG):
724 * Pertaining to operation in a frequency band containing a channel
725 * with the Channel starting frequency above 45 GHz.
726 */
727 u32 limit = freq_khz > 45 * ONE_GHZ_IN_KHZ ?
728 10 * ONE_GHZ_IN_KHZ : 2 * ONE_GHZ_IN_KHZ;
729 if (abs(freq_khz - freq_range->start_freq_khz) <= limit)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800730 return true;
Vladimir Kondratiev64629b92012-09-23 09:49:54 +0200731 if (abs(freq_khz - freq_range->end_freq_khz) <= limit)
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800732 return true;
733 return false;
734#undef ONE_GHZ_IN_KHZ
735}
736
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500737/*
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +0100738 * Later on we can perhaps use the more restrictive DFS
739 * region but we don't have information for that yet so
740 * for now simply disallow conflicts.
741 */
742static enum nl80211_dfs_regions
743reg_intersect_dfs_region(const enum nl80211_dfs_regions dfs_region1,
744 const enum nl80211_dfs_regions dfs_region2)
745{
746 if (dfs_region1 != dfs_region2)
747 return NL80211_DFS_UNSET;
748 return dfs_region1;
749}
750
751/*
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500752 * Helper for regdom_intersect(), this does the real
753 * mathematical intersection fun
754 */
Janusz Dziedzic97524822014-01-30 09:52:20 +0100755static int reg_rules_intersect(const struct ieee80211_regdomain *rd1,
756 const struct ieee80211_regdomain *rd2,
757 const struct ieee80211_reg_rule *rule1,
Johannes Berg1a919312012-12-03 17:21:11 +0100758 const struct ieee80211_reg_rule *rule2,
759 struct ieee80211_reg_rule *intersected_rule)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700760{
761 const struct ieee80211_freq_range *freq_range1, *freq_range2;
762 struct ieee80211_freq_range *freq_range;
763 const struct ieee80211_power_rule *power_rule1, *power_rule2;
764 struct ieee80211_power_rule *power_rule;
Janusz Dziedzic97524822014-01-30 09:52:20 +0100765 u32 freq_diff, max_bandwidth1, max_bandwidth2;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700766
767 freq_range1 = &rule1->freq_range;
768 freq_range2 = &rule2->freq_range;
769 freq_range = &intersected_rule->freq_range;
770
771 power_rule1 = &rule1->power_rule;
772 power_rule2 = &rule2->power_rule;
773 power_rule = &intersected_rule->power_rule;
774
775 freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
Johannes Berg1a919312012-12-03 17:21:11 +0100776 freq_range2->start_freq_khz);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700777 freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
Johannes Berg1a919312012-12-03 17:21:11 +0100778 freq_range2->end_freq_khz);
Janusz Dziedzic97524822014-01-30 09:52:20 +0100779
780 max_bandwidth1 = freq_range1->max_bandwidth_khz;
781 max_bandwidth2 = freq_range2->max_bandwidth_khz;
782
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +0100783 if (rule1->flags & NL80211_RRF_AUTO_BW)
784 max_bandwidth1 = reg_get_max_bandwidth(rd1, rule1);
785 if (rule2->flags & NL80211_RRF_AUTO_BW)
786 max_bandwidth2 = reg_get_max_bandwidth(rd2, rule2);
Janusz Dziedzic97524822014-01-30 09:52:20 +0100787
788 freq_range->max_bandwidth_khz = min(max_bandwidth1, max_bandwidth2);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700789
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +0100790 intersected_rule->flags = rule1->flags | rule2->flags;
791
792 /*
793 * In case NL80211_RRF_AUTO_BW requested for both rules
794 * set AUTO_BW in intersected rule also. Next we will
795 * calculate BW correctly in handle_channel function.
796 * In other case remove AUTO_BW flag while we calculate
797 * maximum bandwidth correctly and auto calculation is
798 * not required.
799 */
800 if ((rule1->flags & NL80211_RRF_AUTO_BW) &&
801 (rule2->flags & NL80211_RRF_AUTO_BW))
802 intersected_rule->flags |= NL80211_RRF_AUTO_BW;
803 else
804 intersected_rule->flags &= ~NL80211_RRF_AUTO_BW;
805
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700806 freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
807 if (freq_range->max_bandwidth_khz > freq_diff)
808 freq_range->max_bandwidth_khz = freq_diff;
809
810 power_rule->max_eirp = min(power_rule1->max_eirp,
811 power_rule2->max_eirp);
812 power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
813 power_rule2->max_antenna_gain);
814
Janusz Dziedzic089027e2014-02-21 19:46:12 +0100815 intersected_rule->dfs_cac_ms = max(rule1->dfs_cac_ms,
816 rule2->dfs_cac_ms);
817
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700818 if (!is_valid_reg_rule(intersected_rule))
819 return -EINVAL;
820
821 return 0;
822}
823
Eliad Pellera62a1ae2014-09-03 15:25:03 +0300824/* check whether old rule contains new rule */
825static bool rule_contains(struct ieee80211_reg_rule *r1,
826 struct ieee80211_reg_rule *r2)
827{
828 /* for simplicity, currently consider only same flags */
829 if (r1->flags != r2->flags)
830 return false;
831
832 /* verify r1 is more restrictive */
833 if ((r1->power_rule.max_antenna_gain >
834 r2->power_rule.max_antenna_gain) ||
835 r1->power_rule.max_eirp > r2->power_rule.max_eirp)
836 return false;
837
838 /* make sure r2's range is contained within r1 */
839 if (r1->freq_range.start_freq_khz > r2->freq_range.start_freq_khz ||
840 r1->freq_range.end_freq_khz < r2->freq_range.end_freq_khz)
841 return false;
842
843 /* and finally verify that r1.max_bw >= r2.max_bw */
844 if (r1->freq_range.max_bandwidth_khz <
845 r2->freq_range.max_bandwidth_khz)
846 return false;
847
848 return true;
849}
850
851/* add or extend current rules. do nothing if rule is already contained */
852static void add_rule(struct ieee80211_reg_rule *rule,
853 struct ieee80211_reg_rule *reg_rules, u32 *n_rules)
854{
855 struct ieee80211_reg_rule *tmp_rule;
856 int i;
857
858 for (i = 0; i < *n_rules; i++) {
859 tmp_rule = &reg_rules[i];
860 /* rule is already contained - do nothing */
861 if (rule_contains(tmp_rule, rule))
862 return;
863
864 /* extend rule if possible */
865 if (rule_contains(rule, tmp_rule)) {
866 memcpy(tmp_rule, rule, sizeof(*rule));
867 return;
868 }
869 }
870
871 memcpy(&reg_rules[*n_rules], rule, sizeof(*rule));
872 (*n_rules)++;
873}
874
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700875/**
876 * regdom_intersect - do the intersection between two regulatory domains
877 * @rd1: first regulatory domain
878 * @rd2: second regulatory domain
879 *
880 * Use this function to get the intersection between two regulatory domains.
881 * Once completed we will mark the alpha2 for the rd as intersected, "98",
882 * as no one single alpha2 can represent this regulatory domain.
883 *
884 * Returns a pointer to the regulatory domain structure which will hold the
885 * resulting intersection of rules between rd1 and rd2. We will
886 * kzalloc() this structure for you.
887 */
Johannes Berg1a919312012-12-03 17:21:11 +0100888static struct ieee80211_regdomain *
889regdom_intersect(const struct ieee80211_regdomain *rd1,
890 const struct ieee80211_regdomain *rd2)
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700891{
892 int r, size_of_regd;
893 unsigned int x, y;
Eliad Pellera62a1ae2014-09-03 15:25:03 +0300894 unsigned int num_rules = 0;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700895 const struct ieee80211_reg_rule *rule1, *rule2;
Eliad Pellera62a1ae2014-09-03 15:25:03 +0300896 struct ieee80211_reg_rule intersected_rule;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700897 struct ieee80211_regdomain *rd;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700898
899 if (!rd1 || !rd2)
900 return NULL;
901
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500902 /*
903 * First we get a count of the rules we'll need, then we actually
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700904 * build them. This is to so we can malloc() and free() a
905 * regdomain once. The reason we use reg_rules_intersect() here
906 * is it will return -EINVAL if the rule computed makes no sense.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500907 * All rules that do check out OK are valid.
908 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700909
910 for (x = 0; x < rd1->n_reg_rules; x++) {
911 rule1 = &rd1->reg_rules[x];
912 for (y = 0; y < rd2->n_reg_rules; y++) {
913 rule2 = &rd2->reg_rules[y];
Janusz Dziedzic97524822014-01-30 09:52:20 +0100914 if (!reg_rules_intersect(rd1, rd2, rule1, rule2,
Eliad Pellera62a1ae2014-09-03 15:25:03 +0300915 &intersected_rule))
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700916 num_rules++;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700917 }
918 }
919
920 if (!num_rules)
921 return NULL;
922
923 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg82f20852012-12-04 12:49:16 +0100924 num_rules * sizeof(struct ieee80211_reg_rule);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700925
926 rd = kzalloc(size_of_regd, GFP_KERNEL);
927 if (!rd)
928 return NULL;
929
Eliad Pellera62a1ae2014-09-03 15:25:03 +0300930 for (x = 0; x < rd1->n_reg_rules; x++) {
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700931 rule1 = &rd1->reg_rules[x];
Eliad Pellera62a1ae2014-09-03 15:25:03 +0300932 for (y = 0; y < rd2->n_reg_rules; y++) {
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700933 rule2 = &rd2->reg_rules[y];
Janusz Dziedzic97524822014-01-30 09:52:20 +0100934 r = reg_rules_intersect(rd1, rd2, rule1, rule2,
Eliad Pellera62a1ae2014-09-03 15:25:03 +0300935 &intersected_rule);
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500936 /*
937 * No need to memset here the intersected rule here as
938 * we're not using the stack anymore
939 */
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700940 if (r)
941 continue;
Eliad Pellera62a1ae2014-09-03 15:25:03 +0300942
943 add_rule(&intersected_rule, rd->reg_rules,
944 &rd->n_reg_rules);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700945 }
946 }
947
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700948 rd->alpha2[0] = '9';
949 rd->alpha2[1] = '8';
Luis R. Rodriguezadbfb052013-11-13 18:54:03 +0100950 rd->dfs_region = reg_intersect_dfs_region(rd1->dfs_region,
951 rd2->dfs_region);
Luis R. Rodriguez9c964772008-10-30 13:33:53 -0700952
953 return rd;
954}
955
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -0500956/*
957 * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
958 * want to just have the channel structure use these
959 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700960static u32 map_regdom_flags(u32 rd_flags)
961{
962 u32 channel_flags = 0;
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200963 if (rd_flags & NL80211_RRF_NO_IR_ALL)
964 channel_flags |= IEEE80211_CHAN_NO_IR;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700965 if (rd_flags & NL80211_RRF_DFS)
966 channel_flags |= IEEE80211_CHAN_RADAR;
Seth Forshee03f6b082012-08-01 15:58:42 -0500967 if (rd_flags & NL80211_RRF_NO_OFDM)
968 channel_flags |= IEEE80211_CHAN_NO_OFDM;
David Spinadel570dbde2014-02-23 09:12:59 +0200969 if (rd_flags & NL80211_RRF_NO_OUTDOOR)
970 channel_flags |= IEEE80211_CHAN_INDOOR_ONLY;
Arik Nemtsova6d4a532014-10-23 09:37:33 +0300971 if (rd_flags & NL80211_RRF_GO_CONCURRENT)
972 channel_flags |= IEEE80211_CHAN_GO_CONCURRENT;
973 if (rd_flags & NL80211_RRF_NO_HT40MINUS)
974 channel_flags |= IEEE80211_CHAN_NO_HT40MINUS;
975 if (rd_flags & NL80211_RRF_NO_HT40PLUS)
976 channel_flags |= IEEE80211_CHAN_NO_HT40PLUS;
977 if (rd_flags & NL80211_RRF_NO_80MHZ)
978 channel_flags |= IEEE80211_CHAN_NO_80MHZ;
979 if (rd_flags & NL80211_RRF_NO_160MHZ)
980 channel_flags |= IEEE80211_CHAN_NO_160MHZ;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700981 return channel_flags;
982}
983
Johannes Berg361c9c82012-12-06 15:57:14 +0100984static const struct ieee80211_reg_rule *
985freq_reg_info_regd(struct wiphy *wiphy, u32 center_freq,
986 const struct ieee80211_regdomain *regd)
Johannes Berg8318d782008-01-24 19:38:38 +0100987{
988 int i;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -0800989 bool band_rule_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400990 bool bw_fits = false;
991
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800992 if (!regd)
Johannes Berg361c9c82012-12-06 15:57:14 +0100993 return ERR_PTR(-EINVAL);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700994
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800995 for (i = 0; i < regd->n_reg_rules; i++) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700996 const struct ieee80211_reg_rule *rr;
997 const struct ieee80211_freq_range *fr = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700998
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -0800999 rr = &regd->reg_rules[i];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001000 fr = &rr->freq_range;
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001001
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001002 /*
1003 * We only need to know if one frequency rule was
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001004 * was in center_freq's band, that's enough, so lets
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001005 * not overwrite it once found
1006 */
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001007 if (!band_rule_found)
1008 band_rule_found = freq_in_rule_band(fr, center_freq);
1009
Johannes Berge33e2242014-06-23 11:06:16 +02001010 bw_fits = reg_does_bw_fit(fr, center_freq, MHZ_TO_KHZ(20));
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001011
Johannes Berg361c9c82012-12-06 15:57:14 +01001012 if (band_rule_found && bw_fits)
1013 return rr;
Johannes Berg8318d782008-01-24 19:38:38 +01001014 }
1015
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001016 if (!band_rule_found)
Johannes Berg361c9c82012-12-06 15:57:14 +01001017 return ERR_PTR(-ERANGE);
Luis R. Rodriguez0c7dc452009-01-07 17:43:36 -08001018
Johannes Berg361c9c82012-12-06 15:57:14 +01001019 return ERR_PTR(-EINVAL);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001020}
1021
Johannes Berg361c9c82012-12-06 15:57:14 +01001022const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
1023 u32 center_freq)
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001024{
Johannes Berg5d885b92012-12-04 00:14:17 +01001025 const struct ieee80211_regdomain *regd;
Johannes Berg1a919312012-12-03 17:21:11 +01001026
Janusz Dziedzice3961af2014-01-25 11:24:11 +01001027 regd = reg_get_regdomain(wiphy);
Johannes Berg5d885b92012-12-04 00:14:17 +01001028
Johannes Berg361c9c82012-12-06 15:57:14 +01001029 return freq_reg_info_regd(wiphy, center_freq, regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001030}
John W. Linville4f366c52010-07-15 14:57:33 -04001031EXPORT_SYMBOL(freq_reg_info);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001032
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001033const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301034{
1035 switch (initiator) {
1036 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001037 return "core";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301038 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001039 return "user";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301040 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001041 return "driver";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301042 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001043 return "country IE";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301044 default:
1045 WARN_ON(1);
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001046 return "bug";
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301047 }
1048}
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001049EXPORT_SYMBOL(reg_initiator_name);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301050
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001051#ifdef CONFIG_CFG80211_REG_DEBUG
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001052static void chan_reg_rule_print_dbg(const struct ieee80211_regdomain *regd,
1053 struct ieee80211_channel *chan,
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301054 const struct ieee80211_reg_rule *reg_rule)
1055{
1056 const struct ieee80211_power_rule *power_rule;
1057 const struct ieee80211_freq_range *freq_range;
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001058 char max_antenna_gain[32], bw[32];
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301059
1060 power_rule = &reg_rule->power_rule;
1061 freq_range = &reg_rule->freq_range;
1062
1063 if (!power_rule->max_antenna_gain)
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001064 snprintf(max_antenna_gain, sizeof(max_antenna_gain), "N/A");
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301065 else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001066 snprintf(max_antenna_gain, sizeof(max_antenna_gain), "%d",
1067 power_rule->max_antenna_gain);
1068
1069 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
1070 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
1071 freq_range->max_bandwidth_khz,
1072 reg_get_max_bandwidth(regd, reg_rule));
1073 else
1074 snprintf(bw, sizeof(bw), "%d KHz",
1075 freq_range->max_bandwidth_khz);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301076
Johannes Bergfe7ef5e2012-12-04 15:07:34 +01001077 REG_DBG_PRINT("Updating information on frequency %d MHz with regulatory rule:\n",
1078 chan->center_freq);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301079
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001080 REG_DBG_PRINT("%d KHz - %d KHz @ %s), (%s mBi, %d mBm)\n",
Johannes Berg1a919312012-12-03 17:21:11 +01001081 freq_range->start_freq_khz, freq_range->end_freq_khz,
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001082 bw, max_antenna_gain,
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301083 power_rule->max_eirp);
1084}
1085#else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001086static void chan_reg_rule_print_dbg(const struct ieee80211_regdomain *regd,
1087 struct ieee80211_channel *chan,
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301088 const struct ieee80211_reg_rule *reg_rule)
1089{
1090 return;
1091}
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301092#endif
1093
Johannes Berge33e2242014-06-23 11:06:16 +02001094/*
1095 * Note that right now we assume the desired channel bandwidth
1096 * is always 20 MHz for each individual channel (HT40 uses 20 MHz
1097 * per channel, the primary and the extension channel).
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001098 */
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001099static void handle_channel(struct wiphy *wiphy,
1100 enum nl80211_reg_initiator initiator,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001101 struct ieee80211_channel *chan)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001102{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001103 u32 flags, bw_flags = 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001104 const struct ieee80211_reg_rule *reg_rule = NULL;
1105 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001106 const struct ieee80211_freq_range *freq_range = NULL;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001107 struct wiphy *request_wiphy = NULL;
Johannes Bergc492db32012-12-06 16:29:25 +01001108 struct regulatory_request *lr = get_last_request();
Janusz Dziedzic97524822014-01-30 09:52:20 +01001109 const struct ieee80211_regdomain *regd;
1110 u32 max_bandwidth_khz;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001111
Johannes Bergc492db32012-12-06 16:29:25 +01001112 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001113
1114 flags = chan->orig_flags;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001115
Johannes Berg361c9c82012-12-06 15:57:14 +01001116 reg_rule = freq_reg_info(wiphy, MHZ_TO_KHZ(chan->center_freq));
1117 if (IS_ERR(reg_rule)) {
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001118 /*
1119 * We will disable all channels that do not match our
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001120 * received regulatory rule unless the hint is coming
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001121 * from a Country IE and the Country IE had no information
1122 * about a band. The IEEE 802.11 spec allows for an AP
1123 * to send only a subset of the regulatory rules allowed,
1124 * so an AP in the US that only supports 2.4 GHz may only send
1125 * a country IE with information for the 2.4 GHz band
1126 * while 5 GHz is still supported.
1127 */
1128 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Berg361c9c82012-12-06 15:57:14 +01001129 PTR_ERR(reg_rule) == -ERANGE)
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001130 return;
1131
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001132 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1133 request_wiphy && request_wiphy == wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001134 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001135 REG_DBG_PRINT("Disabling freq %d MHz for good\n",
1136 chan->center_freq);
1137 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1138 chan->flags = chan->orig_flags;
1139 } else {
1140 REG_DBG_PRINT("Disabling freq %d MHz\n",
1141 chan->center_freq);
1142 chan->flags |= IEEE80211_CHAN_DISABLED;
1143 }
Johannes Berg8318d782008-01-24 19:38:38 +01001144 return;
Luis R. Rodriguezca4ffe82010-10-20 10:18:55 -07001145 }
Johannes Berg8318d782008-01-24 19:38:38 +01001146
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001147 regd = reg_get_regdomain(wiphy);
1148 chan_reg_rule_print_dbg(regd, chan, reg_rule);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301149
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001150 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001151 freq_range = &reg_rule->freq_range;
1152
Janusz Dziedzic97524822014-01-30 09:52:20 +01001153 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1154 /* Check if auto calculation requested */
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001155 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
Janusz Dziedzic97524822014-01-30 09:52:20 +01001156 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
Janusz Dziedzic97524822014-01-30 09:52:20 +01001157
1158 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
Johannes Berge33e2242014-06-23 11:06:16 +02001159 bw_flags = IEEE80211_CHAN_NO_HT40;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001160 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001161 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001162 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001163 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001164
Johannes Bergc492db32012-12-06 16:29:25 +01001165 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05001166 request_wiphy && request_wiphy == wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001167 request_wiphy->regulatory_flags & REGULATORY_STRICT_REG) {
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001168 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001169 * This guarantees the driver's requested regulatory domain
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001170 * will always be used as a base for further regulatory
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001171 * settings
1172 */
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001173 chan->flags = chan->orig_flags =
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001174 map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001175 chan->max_antenna_gain = chan->orig_mag =
1176 (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02001177 chan->max_reg_power = chan->max_power = chan->orig_mpwr =
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001178 (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic4f267c12014-04-09 13:47:12 +02001179
1180 if (chan->flags & IEEE80211_CHAN_RADAR) {
1181 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1182 if (reg_rule->dfs_cac_ms)
1183 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1184 }
1185
Luis R. Rodriguezf9763762009-01-22 15:05:52 -08001186 return;
1187 }
1188
Simon Wunderlich04f39042013-02-08 18:16:19 +01001189 chan->dfs_state = NL80211_DFS_USABLE;
1190 chan->dfs_state_entered = jiffies;
1191
Rajkumar Manoharanaa3d7ee2011-09-14 14:28:17 +05301192 chan->beacon_found = false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001193 chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
Johannes Berg1a919312012-12-03 17:21:11 +01001194 chan->max_antenna_gain =
1195 min_t(int, chan->orig_mag,
1196 MBI_TO_DBI(power_rule->max_antenna_gain));
Hong Wueccc0682012-01-11 20:33:39 +02001197 chan->max_reg_power = (int) MBM_TO_DBM(power_rule->max_eirp);
Janusz Dziedzic089027e2014-02-21 19:46:12 +01001198
1199 if (chan->flags & IEEE80211_CHAN_RADAR) {
1200 if (reg_rule->dfs_cac_ms)
1201 chan->dfs_cac_ms = reg_rule->dfs_cac_ms;
1202 else
1203 chan->dfs_cac_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
1204 }
1205
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001206 if (chan->orig_mpwr) {
1207 /*
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001208 * Devices that use REGULATORY_COUNTRY_IE_FOLLOW_POWER
1209 * will always follow the passed country IE power settings.
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001210 */
1211 if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza09a85a2013-11-11 22:15:30 +01001212 wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_FOLLOW_POWER)
Stanislaw Gruszka5e31fc02012-07-24 08:35:39 +02001213 chan->max_power = chan->max_reg_power;
1214 else
1215 chan->max_power = min(chan->orig_mpwr,
1216 chan->max_reg_power);
1217 } else
1218 chan->max_power = chan->max_reg_power;
Johannes Berg8318d782008-01-24 19:38:38 +01001219}
1220
Luis R. Rodriguez7ca43d02010-10-20 10:18:53 -07001221static void handle_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001222 enum nl80211_reg_initiator initiator,
1223 struct ieee80211_supported_band *sband)
Johannes Berg8318d782008-01-24 19:38:38 +01001224{
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001225 unsigned int i;
Luis R. Rodrigueza92a3ce2009-01-07 17:43:33 -08001226
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001227 if (!sband)
1228 return;
Johannes Berg8318d782008-01-24 19:38:38 +01001229
1230 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001231 handle_channel(wiphy, initiator, &sband->channels[i]);
Johannes Berg8318d782008-01-24 19:38:38 +01001232}
1233
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001234static bool reg_request_cell_base(struct regulatory_request *request)
1235{
1236 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1237 return false;
Johannes Berg1a919312012-12-03 17:21:11 +01001238 return request->user_reg_hint_type == NL80211_USER_REG_HINT_CELL_BASE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001239}
1240
Ilan Peer52616f22014-02-25 16:26:00 +02001241static bool reg_request_indoor(struct regulatory_request *request)
1242{
1243 if (request->initiator != NL80211_REGDOM_SET_BY_USER)
1244 return false;
1245 return request->user_reg_hint_type == NL80211_USER_REG_HINT_INDOOR;
1246}
1247
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001248bool reg_last_request_cell_base(void)
1249{
Johannes Berg38fd2142013-05-10 19:17:17 +02001250 return reg_request_cell_base(get_last_request());
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001251}
1252
Ilan Peer94fc6612014-02-23 09:13:00 +02001253#ifdef CONFIG_CFG80211_REG_CELLULAR_HINTS
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001254/* Core specific check */
Johannes Berg2f922122012-12-03 17:54:55 +01001255static enum reg_request_treatment
1256reg_ignore_cell_hint(struct regulatory_request *pending_request)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001257{
Johannes Bergc492db32012-12-06 16:29:25 +01001258 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001259
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001260 if (!reg_num_devs_support_basehint)
Johannes Berg2f922122012-12-03 17:54:55 +01001261 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001262
Johannes Bergc492db32012-12-06 16:29:25 +01001263 if (reg_request_cell_base(lr) &&
Johannes Berg1a919312012-12-03 17:21:11 +01001264 !regdom_changes(pending_request->alpha2))
Johannes Berg2f922122012-12-03 17:54:55 +01001265 return REG_REQ_ALREADY_SET;
Johannes Berg1a919312012-12-03 17:21:11 +01001266
Johannes Berg2f922122012-12-03 17:54:55 +01001267 return REG_REQ_OK;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001268}
1269
1270/* Device specific check */
1271static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
1272{
Johannes Berg1a919312012-12-03 17:21:11 +01001273 return !(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001274}
1275#else
1276static int reg_ignore_cell_hint(struct regulatory_request *pending_request)
1277{
Johannes Berg2f922122012-12-03 17:54:55 +01001278 return REG_REQ_IGNORE;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001279}
Johannes Berg1a919312012-12-03 17:21:11 +01001280
1281static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001282{
1283 return true;
1284}
1285#endif
1286
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001287static bool wiphy_strict_alpha2_regd(struct wiphy *wiphy)
1288{
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001289 if (wiphy->regulatory_flags & REGULATORY_STRICT_REG &&
1290 !(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG))
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001291 return true;
1292 return false;
1293}
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001294
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001295static bool ignore_reg_update(struct wiphy *wiphy,
1296 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001297{
Johannes Bergc492db32012-12-06 16:29:25 +01001298 struct regulatory_request *lr = get_last_request();
1299
1300 if (!lr) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001301 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1302 "since last_request is not set\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301303 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001304 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301305 }
1306
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04001307 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001308 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001309 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1310 "since the driver uses its own custom "
1311 "regulatory domain\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301312 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001313 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301314 }
1315
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05001316 /*
1317 * wiphy->regd will be set once the device has its own
1318 * desired regulatory domain set
1319 */
Luis R. Rodriguezfa1fb9c2013-10-02 18:33:10 -07001320 if (wiphy_strict_alpha2_regd(wiphy) && !wiphy->regd &&
Luis R. Rodriguez749b5272010-10-20 10:18:54 -07001321 initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Johannes Bergc492db32012-12-06 16:29:25 +01001322 !is_world_regdom(lr->alpha2)) {
Luis R. Rodriguez034c6d62013-10-14 17:42:06 -07001323 REG_DBG_PRINT("Ignoring regulatory request set by %s "
1324 "since the driver requires its own regulatory "
1325 "domain to be set first\n",
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301326 reg_initiator_name(initiator));
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001327 return true;
Luis R. Rodriguez926a0a02010-10-21 19:17:03 +05301328 }
1329
Johannes Bergc492db32012-12-06 16:29:25 +01001330 if (reg_request_cell_base(lr))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07001331 return reg_dev_ignore_cell_hint(wiphy);
1332
Luis R. Rodriguez14b98152008-11-12 14:22:03 -08001333 return false;
1334}
1335
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08001336static bool reg_is_world_roaming(struct wiphy *wiphy)
1337{
1338 const struct ieee80211_regdomain *cr = get_cfg80211_regdom();
1339 const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy);
1340 struct regulatory_request *lr = get_last_request();
1341
1342 if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2)))
1343 return true;
1344
1345 if (lr && lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001346 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
Luis R. Rodriguez3195e482012-12-19 10:53:03 -08001347 return true;
1348
1349 return false;
1350}
1351
Johannes Berg1a919312012-12-03 17:21:11 +01001352static void handle_reg_beacon(struct wiphy *wiphy, unsigned int chan_idx,
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001353 struct reg_beacon *reg_beacon)
1354{
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001355 struct ieee80211_supported_band *sband;
1356 struct ieee80211_channel *chan;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001357 bool channel_changed = false;
1358 struct ieee80211_channel chan_before;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001359
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001360 sband = wiphy->bands[reg_beacon->chan.band];
1361 chan = &sband->channels[chan_idx];
1362
1363 if (likely(chan->center_freq != reg_beacon->chan.center_freq))
1364 return;
1365
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001366 if (chan->beacon_found)
1367 return;
1368
1369 chan->beacon_found = true;
1370
Luis R. Rodriguez0f500a52012-12-19 10:53:04 -08001371 if (!reg_is_world_roaming(wiphy))
1372 return;
1373
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001374 if (wiphy->regulatory_flags & REGULATORY_DISABLE_BEACON_HINTS)
Luis R. Rodriguez37184242009-07-30 17:43:48 -07001375 return;
1376
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001377 chan_before.center_freq = chan->center_freq;
1378 chan_before.flags = chan->flags;
1379
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001380 if (chan->flags & IEEE80211_CHAN_NO_IR) {
1381 chan->flags &= ~IEEE80211_CHAN_NO_IR;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001382 channel_changed = true;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001383 }
1384
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -04001385 if (channel_changed)
1386 nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001387}
1388
1389/*
1390 * Called when a scan on a wiphy finds a beacon on
1391 * new channel
1392 */
1393static void wiphy_update_new_beacon(struct wiphy *wiphy,
1394 struct reg_beacon *reg_beacon)
1395{
1396 unsigned int i;
1397 struct ieee80211_supported_band *sband;
1398
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001399 if (!wiphy->bands[reg_beacon->chan.band])
1400 return;
1401
1402 sband = wiphy->bands[reg_beacon->chan.band];
1403
1404 for (i = 0; i < sband->n_channels; i++)
1405 handle_reg_beacon(wiphy, i, reg_beacon);
1406}
1407
1408/*
1409 * Called upon reg changes or a new wiphy is added
1410 */
1411static void wiphy_update_beacon_reg(struct wiphy *wiphy)
1412{
1413 unsigned int i;
1414 struct ieee80211_supported_band *sband;
1415 struct reg_beacon *reg_beacon;
1416
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001417 list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
1418 if (!wiphy->bands[reg_beacon->chan.band])
1419 continue;
1420 sband = wiphy->bands[reg_beacon->chan.band];
1421 for (i = 0; i < sband->n_channels; i++)
1422 handle_reg_beacon(wiphy, i, reg_beacon);
1423 }
1424}
1425
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001426/* Reap the advantages of previously found beacons */
1427static void reg_process_beacons(struct wiphy *wiphy)
1428{
Luis R. Rodriguezb1ed8dd2009-05-02 00:34:15 -04001429 /*
1430 * Means we are just firing up cfg80211, so no beacons would
1431 * have been processed yet.
1432 */
1433 if (!last_request)
1434 return;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001435 wiphy_update_beacon_reg(wiphy);
1436}
1437
Johannes Berg1a919312012-12-03 17:21:11 +01001438static bool is_ht40_allowed(struct ieee80211_channel *chan)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001439{
1440 if (!chan)
Johannes Berg1a919312012-12-03 17:21:11 +01001441 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001442 if (chan->flags & IEEE80211_CHAN_DISABLED)
Johannes Berg1a919312012-12-03 17:21:11 +01001443 return false;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001444 /* This would happen when regulatory rules disallow HT40 completely */
Felix Fietkau55b183a2013-01-11 14:22:58 +01001445 if ((chan->flags & IEEE80211_CHAN_NO_HT40) == IEEE80211_CHAN_NO_HT40)
1446 return false;
1447 return true;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001448}
1449
1450static void reg_process_ht_flags_channel(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001451 struct ieee80211_channel *channel)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001452{
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001453 struct ieee80211_supported_band *sband = wiphy->bands[channel->band];
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001454 struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
1455 unsigned int i;
1456
Johannes Berg1a919312012-12-03 17:21:11 +01001457 if (!is_ht40_allowed(channel)) {
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001458 channel->flags |= IEEE80211_CHAN_NO_HT40;
1459 return;
1460 }
1461
1462 /*
1463 * We need to ensure the extension channels exist to
1464 * be able to use HT40- or HT40+, this finds them (or not)
1465 */
1466 for (i = 0; i < sband->n_channels; i++) {
1467 struct ieee80211_channel *c = &sband->channels[i];
Johannes Berg1a919312012-12-03 17:21:11 +01001468
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001469 if (c->center_freq == (channel->center_freq - 20))
1470 channel_before = c;
1471 if (c->center_freq == (channel->center_freq + 20))
1472 channel_after = c;
1473 }
1474
1475 /*
1476 * Please note that this assumes target bandwidth is 20 MHz,
1477 * if that ever changes we also need to change the below logic
1478 * to include that as well.
1479 */
Johannes Berg1a919312012-12-03 17:21:11 +01001480 if (!is_ht40_allowed(channel_before))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001481 channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001482 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001483 channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001484
Johannes Berg1a919312012-12-03 17:21:11 +01001485 if (!is_ht40_allowed(channel_after))
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001486 channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001487 else
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -04001488 channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001489}
1490
1491static void reg_process_ht_flags_band(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001492 struct ieee80211_supported_band *sband)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001493{
1494 unsigned int i;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001495
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001496 if (!sband)
1497 return;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001498
1499 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001500 reg_process_ht_flags_channel(wiphy, &sband->channels[i]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001501}
1502
1503static void reg_process_ht_flags(struct wiphy *wiphy)
1504{
1505 enum ieee80211_band band;
1506
1507 if (!wiphy)
1508 return;
1509
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001510 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1511 reg_process_ht_flags_band(wiphy, wiphy->bands[band]);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001512}
1513
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001514static void reg_call_notifier(struct wiphy *wiphy,
1515 struct regulatory_request *request)
1516{
1517 if (wiphy->reg_notifier)
1518 wiphy->reg_notifier(wiphy, request);
1519}
1520
Sven Neumanneac03e32011-08-30 23:38:53 +02001521static void wiphy_update_regulatory(struct wiphy *wiphy,
1522 enum nl80211_reg_initiator initiator)
Johannes Berg8318d782008-01-24 19:38:38 +01001523{
1524 enum ieee80211_band band;
Johannes Bergc492db32012-12-06 16:29:25 +01001525 struct regulatory_request *lr = get_last_request();
Sven Neumanneac03e32011-08-30 23:38:53 +02001526
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001527 if (ignore_reg_update(wiphy, initiator)) {
1528 /*
1529 * Regulatory updates set by CORE are ignored for custom
1530 * regulatory cards. Let us notify the changes to the driver,
1531 * as some drivers used this to restore its orig_* reg domain.
1532 */
1533 if (initiator == NL80211_REGDOM_SET_BY_CORE &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001534 wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001535 reg_call_notifier(wiphy, lr);
Sven Neumanna203c2a2011-07-12 15:52:07 +02001536 return;
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001537 }
Sven Neumanna203c2a2011-07-12 15:52:07 +02001538
Johannes Bergc492db32012-12-06 16:29:25 +01001539 lr->dfs_region = get_cfg80211_regdom()->dfs_region;
Luis R. Rodriguezb68e6b32011-10-11 10:59:03 -07001540
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001541 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
1542 handle_band(wiphy, initiator, wiphy->bands[band]);
Sven Neumanna203c2a2011-07-12 15:52:07 +02001543
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05001544 reg_process_beacons(wiphy);
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001545 reg_process_ht_flags(wiphy);
Luis R. Rodriguez0e3802d2013-11-05 09:18:12 -08001546 reg_call_notifier(wiphy, lr);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001547}
1548
Sven Neumannd7549cb2011-08-30 23:38:54 +02001549static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
1550{
1551 struct cfg80211_registered_device *rdev;
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301552 struct wiphy *wiphy;
Sven Neumannd7549cb2011-08-30 23:38:54 +02001553
Johannes Berg5fe231e2013-05-08 21:45:15 +02001554 ASSERT_RTNL();
Johannes Berg458f4f92012-12-06 15:47:38 +01001555
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301556 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1557 wiphy = &rdev->wiphy;
1558 wiphy_update_regulatory(wiphy, initiator);
Rajkumar Manoharan4a389942011-12-08 23:59:26 +05301559 }
Sven Neumannd7549cb2011-08-30 23:38:54 +02001560}
1561
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001562static void handle_channel_custom(struct wiphy *wiphy,
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001563 struct ieee80211_channel *chan,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001564 const struct ieee80211_regdomain *regd)
1565{
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001566 u32 bw_flags = 0;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001567 const struct ieee80211_reg_rule *reg_rule = NULL;
1568 const struct ieee80211_power_rule *power_rule = NULL;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001569 const struct ieee80211_freq_range *freq_range = NULL;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001570 u32 max_bandwidth_khz;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001571
Johannes Berg361c9c82012-12-06 15:57:14 +01001572 reg_rule = freq_reg_info_regd(wiphy, MHZ_TO_KHZ(chan->center_freq),
1573 regd);
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001574
Johannes Berg361c9c82012-12-06 15:57:14 +01001575 if (IS_ERR(reg_rule)) {
Johannes Bergfe7ef5e2012-12-04 15:07:34 +01001576 REG_DBG_PRINT("Disabling freq %d MHz as custom regd has no rule that fits it\n",
1577 chan->center_freq);
Luis R. Rodriguezcc493e4f2013-11-06 17:54:44 +01001578 chan->orig_flags |= IEEE80211_CHAN_DISABLED;
1579 chan->flags = chan->orig_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001580 return;
1581 }
1582
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001583 chan_reg_rule_print_dbg(regd, chan, reg_rule);
Luis R. Rodrigueze702d3c2010-10-21 19:17:04 +05301584
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001585 power_rule = &reg_rule->power_rule;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001586 freq_range = &reg_rule->freq_range;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001587
Janusz Dziedzic97524822014-01-30 09:52:20 +01001588 max_bandwidth_khz = freq_range->max_bandwidth_khz;
1589 /* Check if auto calculation requested */
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01001590 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
Janusz Dziedzic97524822014-01-30 09:52:20 +01001591 max_bandwidth_khz = reg_get_max_bandwidth(regd, reg_rule);
1592
1593 if (max_bandwidth_khz < MHZ_TO_KHZ(40))
Johannes Berge33e2242014-06-23 11:06:16 +02001594 bw_flags = IEEE80211_CHAN_NO_HT40;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001595 if (max_bandwidth_khz < MHZ_TO_KHZ(80))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001596 bw_flags |= IEEE80211_CHAN_NO_80MHZ;
Janusz Dziedzic97524822014-01-30 09:52:20 +01001597 if (max_bandwidth_khz < MHZ_TO_KHZ(160))
Johannes Bergc7a6ee22012-12-12 17:50:39 +01001598 bw_flags |= IEEE80211_CHAN_NO_160MHZ;
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04001599
1600 chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001601 chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
Felix Fietkau279f0f52012-10-17 13:56:20 +02001602 chan->max_reg_power = chan->max_power =
1603 (int) MBM_TO_DBM(power_rule->max_eirp);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001604}
1605
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001606static void handle_band_custom(struct wiphy *wiphy,
1607 struct ieee80211_supported_band *sband,
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001608 const struct ieee80211_regdomain *regd)
1609{
1610 unsigned int i;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001611
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001612 if (!sband)
1613 return;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001614
1615 for (i = 0; i < sband->n_channels; i++)
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001616 handle_channel_custom(wiphy, &sband->channels[i], regd);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001617}
1618
1619/* Used by drivers prior to wiphy registration */
1620void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
1621 const struct ieee80211_regdomain *regd)
1622{
1623 enum ieee80211_band band;
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001624 unsigned int bands_set = 0;
Luis R. Rodriguezac46d482009-05-01 18:44:50 -04001625
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001626 WARN(!(wiphy->regulatory_flags & REGULATORY_CUSTOM_REG),
1627 "wiphy should have REGULATORY_CUSTOM_REG\n");
1628 wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
Luis R. Rodriguez222ea582013-11-05 09:18:00 -08001629
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001630 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001631 if (!wiphy->bands[band])
1632 continue;
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01001633 handle_band_custom(wiphy, wiphy->bands[band], regd);
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001634 bands_set++;
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001635 }
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001636
1637 /*
1638 * no point in calling this if it won't have any effect
Johannes Berg1a919312012-12-03 17:21:11 +01001639 * on your device's supported bands.
Luis R. Rodriguezbbcf3f02009-05-19 17:49:47 -04001640 */
1641 WARN_ON(!bands_set);
Luis R. Rodriguez1fa25e42009-01-22 15:05:44 -08001642}
1643EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
1644
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001645static void reg_set_request_processed(void)
1646{
1647 bool need_more_processing = false;
Johannes Bergc492db32012-12-06 16:29:25 +01001648 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001649
Johannes Bergc492db32012-12-06 16:29:25 +01001650 lr->processed = true;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001651
1652 spin_lock(&reg_requests_lock);
1653 if (!list_empty(&reg_requests_list))
1654 need_more_processing = true;
1655 spin_unlock(&reg_requests_lock);
1656
Johannes Bergc492db32012-12-06 16:29:25 +01001657 if (lr->initiator == NL80211_REGDOM_SET_BY_USER)
Eliad Pellerfe20b392012-06-12 12:53:13 +03001658 cancel_delayed_work(&reg_timeout);
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07001659
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001660 if (need_more_processing)
1661 schedule_work(&reg_work);
1662}
1663
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001664/**
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001665 * reg_process_hint_core - process core regulatory requests
1666 * @pending_request: a pending core regulatory request
1667 *
1668 * The wireless subsystem can use this function to process
1669 * a regulatory request issued by the regulatory core.
1670 *
1671 * Returns one of the different reg request treatment values.
1672 */
1673static enum reg_request_treatment
1674reg_process_hint_core(struct regulatory_request *core_request)
1675{
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001676
1677 core_request->intersect = false;
1678 core_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001679
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001680 reg_update_last_request(core_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001681
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001682 return reg_call_crda(core_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001683}
1684
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001685static enum reg_request_treatment
1686__reg_process_hint_user(struct regulatory_request *user_request)
1687{
1688 struct regulatory_request *lr = get_last_request();
1689
Ilan Peer52616f22014-02-25 16:26:00 +02001690 if (reg_request_indoor(user_request)) {
1691 reg_is_indoor = true;
1692 return REG_REQ_USER_HINT_HANDLED;
1693 }
1694
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001695 if (reg_request_cell_base(user_request))
1696 return reg_ignore_cell_hint(user_request);
1697
1698 if (reg_request_cell_base(lr))
1699 return REG_REQ_IGNORE;
1700
1701 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
1702 return REG_REQ_INTERSECT;
1703 /*
1704 * If the user knows better the user should set the regdom
1705 * to their country before the IE is picked up
1706 */
1707 if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
1708 lr->intersect)
1709 return REG_REQ_IGNORE;
1710 /*
1711 * Process user requests only after previous user/driver/core
1712 * requests have been processed
1713 */
1714 if ((lr->initiator == NL80211_REGDOM_SET_BY_CORE ||
1715 lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
1716 lr->initiator == NL80211_REGDOM_SET_BY_USER) &&
1717 regdom_changes(lr->alpha2))
1718 return REG_REQ_IGNORE;
1719
1720 if (!regdom_changes(user_request->alpha2))
1721 return REG_REQ_ALREADY_SET;
1722
1723 return REG_REQ_OK;
1724}
1725
1726/**
1727 * reg_process_hint_user - process user regulatory requests
1728 * @user_request: a pending user regulatory request
1729 *
1730 * The wireless subsystem can use this function to process
1731 * a regulatory request initiated by userspace.
1732 *
1733 * Returns one of the different reg request treatment values.
1734 */
1735static enum reg_request_treatment
1736reg_process_hint_user(struct regulatory_request *user_request)
1737{
1738 enum reg_request_treatment treatment;
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001739
1740 treatment = __reg_process_hint_user(user_request);
1741 if (treatment == REG_REQ_IGNORE ||
Ilan Peer52616f22014-02-25 16:26:00 +02001742 treatment == REG_REQ_ALREADY_SET ||
1743 treatment == REG_REQ_USER_HINT_HANDLED) {
Arik Nemtsovc8883932014-04-21 20:39:34 -07001744 reg_free_request(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001745 return treatment;
1746 }
1747
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001748 user_request->intersect = treatment == REG_REQ_INTERSECT;
1749 user_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001750
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001751 reg_update_last_request(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001752
1753 user_alpha2[0] = user_request->alpha2[0];
1754 user_alpha2[1] = user_request->alpha2[1];
1755
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001756 return reg_call_crda(user_request);
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001757}
1758
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001759static enum reg_request_treatment
1760__reg_process_hint_driver(struct regulatory_request *driver_request)
1761{
1762 struct regulatory_request *lr = get_last_request();
1763
1764 if (lr->initiator == NL80211_REGDOM_SET_BY_CORE) {
1765 if (regdom_changes(driver_request->alpha2))
1766 return REG_REQ_OK;
1767 return REG_REQ_ALREADY_SET;
1768 }
1769
1770 /*
1771 * This would happen if you unplug and plug your card
1772 * back in or if you add a new device for which the previously
1773 * loaded card also agrees on the regulatory domain.
1774 */
1775 if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
1776 !regdom_changes(driver_request->alpha2))
1777 return REG_REQ_ALREADY_SET;
1778
1779 return REG_REQ_INTERSECT;
1780}
1781
1782/**
1783 * reg_process_hint_driver - process driver regulatory requests
1784 * @driver_request: a pending driver regulatory request
1785 *
1786 * The wireless subsystem can use this function to process
1787 * a regulatory request issued by an 802.11 driver.
1788 *
1789 * Returns one of the different reg request treatment values.
1790 */
1791static enum reg_request_treatment
1792reg_process_hint_driver(struct wiphy *wiphy,
1793 struct regulatory_request *driver_request)
1794{
1795 const struct ieee80211_regdomain *regd;
1796 enum reg_request_treatment treatment;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001797
1798 treatment = __reg_process_hint_driver(driver_request);
1799
1800 switch (treatment) {
1801 case REG_REQ_OK:
1802 break;
1803 case REG_REQ_IGNORE:
Ilan Peer52616f22014-02-25 16:26:00 +02001804 case REG_REQ_USER_HINT_HANDLED:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001805 reg_free_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001806 return treatment;
1807 case REG_REQ_INTERSECT:
1808 /* fall through */
1809 case REG_REQ_ALREADY_SET:
1810 regd = reg_copy_regd(get_cfg80211_regdom());
1811 if (IS_ERR(regd)) {
Arik Nemtsovc8883932014-04-21 20:39:34 -07001812 reg_free_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001813 return REG_REQ_IGNORE;
1814 }
1815 rcu_assign_pointer(wiphy->regd, regd);
1816 }
1817
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001818
1819 driver_request->intersect = treatment == REG_REQ_INTERSECT;
1820 driver_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001821
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001822 reg_update_last_request(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001823
1824 /*
1825 * Since CRDA will not be called in this case as we already
1826 * have applied the requested regulatory domain before we just
1827 * inform userspace we have processed the request
1828 */
1829 if (treatment == REG_REQ_ALREADY_SET) {
1830 nl80211_send_reg_change_event(driver_request);
1831 reg_set_request_processed();
1832 return treatment;
1833 }
1834
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001835 return reg_call_crda(driver_request);
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001836}
1837
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001838static enum reg_request_treatment
1839__reg_process_hint_country_ie(struct wiphy *wiphy,
1840 struct regulatory_request *country_ie_request)
1841{
1842 struct wiphy *last_wiphy = NULL;
1843 struct regulatory_request *lr = get_last_request();
1844
1845 if (reg_request_cell_base(lr)) {
1846 /* Trust a Cell base station over the AP's country IE */
1847 if (regdom_changes(country_ie_request->alpha2))
1848 return REG_REQ_IGNORE;
1849 return REG_REQ_ALREADY_SET;
Luis R. Rodriguez2a901462013-11-11 22:15:31 +01001850 } else {
1851 if (wiphy->regulatory_flags & REGULATORY_COUNTRY_IE_IGNORE)
1852 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001853 }
1854
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001855 if (unlikely(!is_an_alpha2(country_ie_request->alpha2)))
1856 return -EINVAL;
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001857
1858 if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE)
1859 return REG_REQ_OK;
1860
1861 last_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
1862
1863 if (last_wiphy != wiphy) {
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001864 /*
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001865 * Two cards with two APs claiming different
1866 * Country IE alpha2s. We could
1867 * intersect them, but that seems unlikely
1868 * to be correct. Reject second one for now.
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001869 */
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001870 if (regdom_changes(country_ie_request->alpha2))
1871 return REG_REQ_IGNORE;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001872 return REG_REQ_ALREADY_SET;
1873 }
Luis R. Rodriguez2f1c6c52013-11-05 09:18:07 -08001874 /*
1875 * Two consecutive Country IE hints on the same wiphy.
1876 * This should be picked up early by the driver/stack
1877 */
1878 if (WARN_ON(regdom_changes(country_ie_request->alpha2)))
1879 return REG_REQ_OK;
1880 return REG_REQ_ALREADY_SET;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001881}
1882
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001883/**
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001884 * reg_process_hint_country_ie - process regulatory requests from country IEs
1885 * @country_ie_request: a regulatory request from a country IE
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001886 *
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001887 * The wireless subsystem can use this function to process
1888 * a regulatory request issued by a country Information Element.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001889 *
Johannes Berg2f922122012-12-03 17:54:55 +01001890 * Returns one of the different reg request treatment values.
Luis R. Rodriguezd1c96a92009-02-21 00:24:13 -05001891 */
Johannes Berg2f922122012-12-03 17:54:55 +01001892static enum reg_request_treatment
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001893reg_process_hint_country_ie(struct wiphy *wiphy,
1894 struct regulatory_request *country_ie_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001895{
Johannes Berg2f922122012-12-03 17:54:55 +01001896 enum reg_request_treatment treatment;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001897
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001898 treatment = __reg_process_hint_country_ie(wiphy, country_ie_request);
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05001899
Johannes Berg2f922122012-12-03 17:54:55 +01001900 switch (treatment) {
Johannes Berg2f922122012-12-03 17:54:55 +01001901 case REG_REQ_OK:
1902 break;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001903 case REG_REQ_IGNORE:
Ilan Peer52616f22014-02-25 16:26:00 +02001904 case REG_REQ_USER_HINT_HANDLED:
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001905 /* fall through */
1906 case REG_REQ_ALREADY_SET:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001907 reg_free_request(country_ie_request);
Johannes Berg2f922122012-12-03 17:54:55 +01001908 return treatment;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001909 case REG_REQ_INTERSECT:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001910 reg_free_request(country_ie_request);
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001911 /*
1912 * This doesn't happen yet, not sure we
1913 * ever want to support it for this case.
1914 */
1915 WARN_ONCE(1, "Unexpected intersection for country IEs");
1916 return REG_REQ_IGNORE;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08001917 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001918
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001919 country_ie_request->intersect = false;
1920 country_ie_request->processed = false;
Luis R. Rodriguez5ad6ef52013-11-05 09:18:08 -08001921
Luis R. Rodriguez05f1a3e2013-11-05 09:18:09 -08001922 reg_update_last_request(country_ie_request);
Luis R. Rodriguezd951c1d2009-02-21 00:24:15 -05001923
Luis R. Rodriguezfe6631f2013-11-05 09:18:10 -08001924 return reg_call_crda(country_ie_request);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07001925}
1926
Luis R. Rodriguez30a548c2009-05-02 01:17:27 -04001927/* This processes *all* regulatory hints */
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08001928static void reg_process_hint(struct regulatory_request *reg_request)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001929{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001930 struct wiphy *wiphy = NULL;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001931 enum reg_request_treatment treatment;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001932
Johannes Bergf4173762012-12-03 18:23:37 +01001933 if (reg_request->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001934 wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
1935
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001936 switch (reg_request->initiator) {
1937 case NL80211_REGDOM_SET_BY_CORE:
1938 reg_process_hint_core(reg_request);
1939 return;
1940 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001941 treatment = reg_process_hint_user(reg_request);
Inbal Hacohen50c11eb2014-02-12 09:32:27 +02001942 if (treatment == REG_REQ_IGNORE ||
Arik Nemtsov4d3df542014-05-11 11:50:44 +03001943 treatment == REG_REQ_ALREADY_SET ||
1944 treatment == REG_REQ_USER_HINT_HANDLED)
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001945 return;
Shaibal Dutta845f3352014-01-30 15:08:30 -08001946 queue_delayed_work(system_power_efficient_wq,
1947 &reg_timeout, msecs_to_jiffies(3142));
Luis R. Rodriguez0d97a612013-11-05 09:18:04 -08001948 return;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001949 case NL80211_REGDOM_SET_BY_DRIVER:
Ilan Peer772f0382014-01-14 15:17:23 +02001950 if (!wiphy)
1951 goto out_free;
Luis R. Rodriguez21636c72013-11-05 09:18:05 -08001952 treatment = reg_process_hint_driver(wiphy, reg_request);
1953 break;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001954 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Ilan Peer772f0382014-01-14 15:17:23 +02001955 if (!wiphy)
1956 goto out_free;
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001957 treatment = reg_process_hint_country_ie(wiphy, reg_request);
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001958 break;
1959 default:
1960 WARN(1, "invalid initiator %d\n", reg_request->initiator);
Ilan Peer772f0382014-01-14 15:17:23 +02001961 goto out_free;
Luis R. Rodriguezb3eb7f32013-11-05 09:18:03 -08001962 }
1963
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001964 /* This is required so that the orig_* parameters are saved */
1965 if (treatment == REG_REQ_ALREADY_SET && wiphy &&
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01001966 wiphy->regulatory_flags & REGULATORY_STRICT_REG)
Luis R. Rodriguezb23e7a92013-11-05 09:18:06 -08001967 wiphy_update_regulatory(wiphy, reg_request->initiator);
Ilan Peer772f0382014-01-14 15:17:23 +02001968
1969 return;
1970
1971out_free:
Arik Nemtsovc8883932014-04-21 20:39:34 -07001972 reg_free_request(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001973}
1974
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001975/*
1976 * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
1977 * Regulatory hints come on a first come first serve basis and we
1978 * must process each one atomically.
1979 */
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001980static void reg_process_pending_hints(void)
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001981{
Johannes Bergc492db32012-12-06 16:29:25 +01001982 struct regulatory_request *reg_request, *lr;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001983
Johannes Bergc492db32012-12-06 16:29:25 +01001984 lr = get_last_request();
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08001985
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001986 /* When last_request->processed becomes true this will be rescheduled */
Johannes Bergc492db32012-12-06 16:29:25 +01001987 if (lr && !lr->processed) {
Luis R. Rodriguez96cce122014-04-21 20:39:35 -07001988 reg_process_hint(lr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001989 return;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05001990 }
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001991
1992 spin_lock(&reg_requests_lock);
1993
1994 if (list_empty(&reg_requests_list)) {
1995 spin_unlock(&reg_requests_lock);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001996 return;
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08001997 }
1998
1999 reg_request = list_first_entry(&reg_requests_list,
2000 struct regulatory_request,
2001 list);
2002 list_del_init(&reg_request->list);
2003
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002004 spin_unlock(&reg_requests_lock);
Luis R. Rodriguezb0e28802010-11-17 21:46:08 -08002005
Luis R. Rodriguez1daa37c2013-11-05 09:18:02 -08002006 reg_process_hint(reg_request);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002007}
2008
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002009/* Processes beacon hints -- this has nothing to do with country IEs */
2010static void reg_process_pending_beacon_hints(void)
2011{
Johannes Berg79c97e92009-07-07 03:56:12 +02002012 struct cfg80211_registered_device *rdev;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002013 struct reg_beacon *pending_beacon, *tmp;
2014
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002015 /* This goes through the _pending_ beacon list */
2016 spin_lock_bh(&reg_pending_beacons_lock);
2017
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002018 list_for_each_entry_safe(pending_beacon, tmp,
2019 &reg_pending_beacons, list) {
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002020 list_del_init(&pending_beacon->list);
2021
2022 /* Applies the beacon hint to current wiphys */
Johannes Berg79c97e92009-07-07 03:56:12 +02002023 list_for_each_entry(rdev, &cfg80211_rdev_list, list)
2024 wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002025
2026 /* Remembers the beacon hint for new wiphys or reg changes */
2027 list_add_tail(&pending_beacon->list, &reg_beacon_list);
2028 }
2029
2030 spin_unlock_bh(&reg_pending_beacons_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002031}
2032
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002033static void reg_todo(struct work_struct *work)
2034{
Johannes Berg5fe231e2013-05-08 21:45:15 +02002035 rtnl_lock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002036 reg_process_pending_hints();
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002037 reg_process_pending_beacon_hints();
Johannes Berg5fe231e2013-05-08 21:45:15 +02002038 rtnl_unlock();
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002039}
2040
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002041static void queue_regulatory_request(struct regulatory_request *request)
2042{
Johannes Bergd4f2c882012-12-03 18:59:58 +01002043 request->alpha2[0] = toupper(request->alpha2[0]);
2044 request->alpha2[1] = toupper(request->alpha2[1]);
John W. Linvillec61029c2010-08-05 14:26:24 -04002045
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002046 spin_lock(&reg_requests_lock);
2047 list_add_tail(&request->list, &reg_requests_list);
2048 spin_unlock(&reg_requests_lock);
2049
2050 schedule_work(&reg_work);
2051}
2052
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002053/*
2054 * Core regulatory hint -- happens during cfg80211_init()
2055 * and when we restore regulatory settings.
2056 */
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002057static int regulatory_hint_core(const char *alpha2)
2058{
2059 struct regulatory_request *request;
2060
Johannes Berg1a919312012-12-03 17:21:11 +01002061 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002062 if (!request)
2063 return -ENOMEM;
2064
2065 request->alpha2[0] = alpha2[0];
2066 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002067 request->initiator = NL80211_REGDOM_SET_BY_CORE;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002068
Luis R. Rodriguez31e99722010-11-17 21:46:06 -08002069 queue_regulatory_request(request);
Luis R. Rodriguez5078b2e2009-05-13 17:04:42 -04002070
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002071 return 0;
Luis R. Rodriguezba25c142009-02-21 00:04:23 -05002072}
2073
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002074/* User hints */
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002075int regulatory_hint_user(const char *alpha2,
2076 enum nl80211_user_reg_hint_type user_reg_hint_type)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002077{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002078 struct regulatory_request *request;
2079
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002080 if (WARN_ON(!alpha2))
2081 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002082
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002083 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2084 if (!request)
2085 return -ENOMEM;
2086
Johannes Bergf4173762012-12-03 18:23:37 +01002087 request->wiphy_idx = WIPHY_IDX_INVALID;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002088 request->alpha2[0] = alpha2[0];
2089 request->alpha2[1] = alpha2[1];
Luis R. Rodrigueze12822e2010-01-04 11:37:39 -05002090 request->initiator = NL80211_REGDOM_SET_BY_USER;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002091 request->user_reg_hint_type = user_reg_hint_type;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002092
2093 queue_regulatory_request(request);
2094
2095 return 0;
2096}
2097
Ilan Peer52616f22014-02-25 16:26:00 +02002098int regulatory_hint_indoor_user(void)
2099{
2100 struct regulatory_request *request;
2101
2102 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2103 if (!request)
2104 return -ENOMEM;
2105
2106 request->wiphy_idx = WIPHY_IDX_INVALID;
2107 request->initiator = NL80211_REGDOM_SET_BY_USER;
2108 request->user_reg_hint_type = NL80211_USER_REG_HINT_INDOOR;
2109 queue_regulatory_request(request);
2110
2111 return 0;
2112}
2113
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002114/* Driver hints */
2115int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
2116{
2117 struct regulatory_request *request;
2118
Johannes Bergfdc9d7b2012-12-03 18:36:09 +01002119 if (WARN_ON(!alpha2 || !wiphy))
2120 return -EINVAL;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002121
Luis R. Rodriguez4f7b9142013-12-14 20:09:06 +01002122 wiphy->regulatory_flags &= ~REGULATORY_CUSTOM_REG;
2123
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002124 request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
2125 if (!request)
2126 return -ENOMEM;
2127
2128 request->wiphy_idx = get_wiphy_idx(wiphy);
2129
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002130 request->alpha2[0] = alpha2[0];
2131 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002132 request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002133
2134 queue_regulatory_request(request);
2135
2136 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002137}
2138EXPORT_SYMBOL(regulatory_hint);
2139
Luis R. Rodriguez789fd032013-10-04 18:07:24 -07002140void regulatory_hint_country_ie(struct wiphy *wiphy, enum ieee80211_band band,
2141 const u8 *country_ie, u8 country_ie_len)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002142{
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002143 char alpha2[2];
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002144 enum environment_cap env = ENVIRON_ANY;
Johannes Bergdb2424c2013-05-10 19:07:52 +02002145 struct regulatory_request *request = NULL, *lr;
Luis R. Rodriguezd335fe62009-02-21 00:04:27 -05002146
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002147 /* IE len must be evenly divisible by 2 */
2148 if (country_ie_len & 0x01)
Johannes Bergdb2424c2013-05-10 19:07:52 +02002149 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002150
2151 if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Bergdb2424c2013-05-10 19:07:52 +02002152 return;
2153
2154 request = kzalloc(sizeof(*request), GFP_KERNEL);
2155 if (!request)
2156 return;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002157
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002158 alpha2[0] = country_ie[0];
2159 alpha2[1] = country_ie[1];
2160
2161 if (country_ie[2] == 'I')
2162 env = ENVIRON_INDOOR;
2163 else if (country_ie[2] == 'O')
2164 env = ENVIRON_OUTDOOR;
2165
Johannes Bergdb2424c2013-05-10 19:07:52 +02002166 rcu_read_lock();
2167 lr = get_last_request();
2168
2169 if (unlikely(!lr))
2170 goto out;
2171
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002172 /*
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07002173 * We will run this only upon a successful connection on cfg80211.
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07002174 * We leave conflict resolution to the workqueue, where can hold
Johannes Berg5fe231e2013-05-08 21:45:15 +02002175 * the RTNL.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002176 */
Johannes Bergc492db32012-12-06 16:29:25 +01002177 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
2178 lr->wiphy_idx != WIPHY_IDX_INVALID)
Luis R. Rodriguez4b44c8b2009-07-30 17:38:07 -07002179 goto out;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002180
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002181 request->wiphy_idx = get_wiphy_idx(wiphy);
John W. Linville4f366c52010-07-15 14:57:33 -04002182 request->alpha2[0] = alpha2[0];
2183 request->alpha2[1] = alpha2[1];
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -04002184 request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002185 request->country_ie_env = env;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002186
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002187 queue_regulatory_request(request);
Johannes Bergdb2424c2013-05-10 19:07:52 +02002188 request = NULL;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002189out:
Johannes Bergdb2424c2013-05-10 19:07:52 +02002190 kfree(request);
2191 rcu_read_unlock();
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002192}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002193
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002194static void restore_alpha2(char *alpha2, bool reset_user)
2195{
2196 /* indicates there is no alpha2 to consider for restoration */
2197 alpha2[0] = '9';
2198 alpha2[1] = '7';
2199
2200 /* The user setting has precedence over the module parameter */
2201 if (is_user_regdom_saved()) {
2202 /* Unless we're asked to ignore it and reset it */
2203 if (reset_user) {
Johannes Berg1a919312012-12-03 17:21:11 +01002204 REG_DBG_PRINT("Restoring regulatory settings including user preference\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002205 user_alpha2[0] = '9';
2206 user_alpha2[1] = '7';
2207
2208 /*
2209 * If we're ignoring user settings, we still need to
2210 * check the module parameter to ensure we put things
2211 * back as they were for a full restore.
2212 */
2213 if (!is_world_regdom(ieee80211_regdom)) {
Johannes Berg1a919312012-12-03 17:21:11 +01002214 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2215 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002216 alpha2[0] = ieee80211_regdom[0];
2217 alpha2[1] = ieee80211_regdom[1];
2218 }
2219 } else {
Johannes Berg1a919312012-12-03 17:21:11 +01002220 REG_DBG_PRINT("Restoring regulatory settings while preserving user preference for: %c%c\n",
2221 user_alpha2[0], user_alpha2[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002222 alpha2[0] = user_alpha2[0];
2223 alpha2[1] = user_alpha2[1];
2224 }
2225 } else if (!is_world_regdom(ieee80211_regdom)) {
Johannes Berg1a919312012-12-03 17:21:11 +01002226 REG_DBG_PRINT("Keeping preference on module parameter ieee80211_regdom: %c%c\n",
2227 ieee80211_regdom[0], ieee80211_regdom[1]);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002228 alpha2[0] = ieee80211_regdom[0];
2229 alpha2[1] = ieee80211_regdom[1];
2230 } else
Luis R. Rodriguezd91e41b2010-10-20 10:18:59 -07002231 REG_DBG_PRINT("Restoring regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002232}
2233
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302234static void restore_custom_reg_settings(struct wiphy *wiphy)
2235{
2236 struct ieee80211_supported_band *sband;
2237 enum ieee80211_band band;
2238 struct ieee80211_channel *chan;
2239 int i;
2240
2241 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
2242 sband = wiphy->bands[band];
2243 if (!sband)
2244 continue;
2245 for (i = 0; i < sband->n_channels; i++) {
2246 chan = &sband->channels[i];
2247 chan->flags = chan->orig_flags;
2248 chan->max_antenna_gain = chan->orig_mag;
2249 chan->max_power = chan->orig_mpwr;
Paul Stewart899852a2012-08-01 16:54:42 -07002250 chan->beacon_found = false;
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302251 }
2252 }
2253}
2254
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002255/*
2256 * Restoring regulatory settings involves ingoring any
2257 * possibly stale country IE information and user regulatory
2258 * settings if so desired, this includes any beacon hints
2259 * learned as we could have traveled outside to another country
2260 * after disconnection. To restore regulatory settings we do
2261 * exactly what we did at bootup:
2262 *
2263 * - send a core regulatory hint
2264 * - send a user regulatory hint if applicable
2265 *
2266 * Device drivers that send a regulatory hint for a specific country
2267 * keep their own regulatory domain on wiphy->regd so that does does
2268 * not need to be remembered.
2269 */
2270static void restore_regulatory_settings(bool reset_user)
2271{
2272 char alpha2[2];
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08002273 char world_alpha2[2];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002274 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002275 struct regulatory_request *reg_request, *tmp;
2276 LIST_HEAD(tmp_reg_req_list);
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302277 struct cfg80211_registered_device *rdev;
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002278
Johannes Berg5fe231e2013-05-08 21:45:15 +02002279 ASSERT_RTNL();
2280
Ilan Peer52616f22014-02-25 16:26:00 +02002281 reg_is_indoor = false;
2282
Johannes Berg2d319862013-01-09 12:01:38 +01002283 reset_regdomains(true, &world_regdom);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002284 restore_alpha2(alpha2, reset_user);
2285
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002286 /*
2287 * If there's any pending requests we simply
2288 * stash them to a temporary pending queue and
2289 * add then after we've restored regulatory
2290 * settings.
2291 */
2292 spin_lock(&reg_requests_lock);
Johannes Bergfea9bce2012-12-03 17:32:01 +01002293 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
2294 if (reg_request->initiator != NL80211_REGDOM_SET_BY_USER)
2295 continue;
2296 list_move_tail(&reg_request->list, &tmp_reg_req_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002297 }
2298 spin_unlock(&reg_requests_lock);
2299
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002300 /* Clear beacon hints */
2301 spin_lock_bh(&reg_pending_beacons_lock);
Johannes Bergfea9bce2012-12-03 17:32:01 +01002302 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
2303 list_del(&reg_beacon->list);
2304 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002305 }
2306 spin_unlock_bh(&reg_pending_beacons_lock);
2307
Johannes Bergfea9bce2012-12-03 17:32:01 +01002308 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
2309 list_del(&reg_beacon->list);
2310 kfree(reg_beacon);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002311 }
2312
2313 /* First restore to the basic regulatory settings */
Johannes Berg379b82f2012-12-06 15:44:07 +01002314 world_alpha2[0] = cfg80211_world_regdom->alpha2[0];
2315 world_alpha2[1] = cfg80211_world_regdom->alpha2[1];
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002316
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302317 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +01002318 if (rdev->wiphy.regulatory_flags & REGULATORY_CUSTOM_REG)
Rajkumar Manoharan5ce543d2011-12-07 21:50:08 +05302319 restore_custom_reg_settings(&rdev->wiphy);
2320 }
2321
Dmitry Shmidtcee0bec2011-12-19 12:32:21 -08002322 regulatory_hint_core(world_alpha2);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002323
2324 /*
2325 * This restores the ieee80211_regdom module parameter
2326 * preference or the last user requested regulatory
2327 * settings, user regulatory settings takes precedence.
2328 */
2329 if (is_an_alpha2(alpha2))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002330 regulatory_hint_user(user_alpha2, NL80211_USER_REG_HINT_USER);
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002331
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002332 spin_lock(&reg_requests_lock);
Johannes Berg11cff962012-12-03 18:56:41 +01002333 list_splice_tail_init(&tmp_reg_req_list, &reg_requests_list);
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002334 spin_unlock(&reg_requests_lock);
2335
Luis R. Rodriguez14609552011-04-05 10:49:03 -07002336 REG_DBG_PRINT("Kicking the queue\n");
2337
2338 schedule_work(&reg_work);
2339}
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002340
2341void regulatory_hint_disconnect(void)
2342{
Johannes Berg1a919312012-12-03 17:21:11 +01002343 REG_DBG_PRINT("All devices are disconnected, going to restore regulatory settings\n");
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002344 restore_regulatory_settings(false);
2345}
2346
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002347static bool freq_is_chan_12_13_14(u16 freq)
2348{
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002349 if (freq == ieee80211_channel_to_frequency(12, IEEE80211_BAND_2GHZ) ||
2350 freq == ieee80211_channel_to_frequency(13, IEEE80211_BAND_2GHZ) ||
2351 freq == ieee80211_channel_to_frequency(14, IEEE80211_BAND_2GHZ))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002352 return true;
2353 return false;
2354}
2355
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002356static bool pending_reg_beacon(struct ieee80211_channel *beacon_chan)
2357{
2358 struct reg_beacon *pending_beacon;
2359
2360 list_for_each_entry(pending_beacon, &reg_pending_beacons, list)
2361 if (beacon_chan->center_freq ==
2362 pending_beacon->chan.center_freq)
2363 return true;
2364 return false;
2365}
2366
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002367int regulatory_hint_found_beacon(struct wiphy *wiphy,
2368 struct ieee80211_channel *beacon_chan,
2369 gfp_t gfp)
2370{
2371 struct reg_beacon *reg_beacon;
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002372 bool processing;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002373
Johannes Berg1a919312012-12-03 17:21:11 +01002374 if (beacon_chan->beacon_found ||
2375 beacon_chan->flags & IEEE80211_CHAN_RADAR ||
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002376 (beacon_chan->band == IEEE80211_BAND_2GHZ &&
Johannes Berg1a919312012-12-03 17:21:11 +01002377 !freq_is_chan_12_13_14(beacon_chan->center_freq)))
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002378 return 0;
2379
Luis R. Rodriguez3ebfa6e2012-12-19 10:53:02 -08002380 spin_lock_bh(&reg_pending_beacons_lock);
2381 processing = pending_reg_beacon(beacon_chan);
2382 spin_unlock_bh(&reg_pending_beacons_lock);
2383
2384 if (processing)
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002385 return 0;
2386
2387 reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
2388 if (!reg_beacon)
2389 return -ENOMEM;
2390
Johannes Berg1a919312012-12-03 17:21:11 +01002391 REG_DBG_PRINT("Found new beacon on frequency: %d MHz (Ch %d) on %s\n",
Luis R. Rodriguez4113f752010-01-04 11:50:11 -05002392 beacon_chan->center_freq,
2393 ieee80211_frequency_to_channel(beacon_chan->center_freq),
2394 wiphy_name(wiphy));
2395
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002396 memcpy(&reg_beacon->chan, beacon_chan,
Johannes Berg1a919312012-12-03 17:21:11 +01002397 sizeof(struct ieee80211_channel));
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002398
2399 /*
2400 * Since we can be called from BH or and non-BH context
2401 * we must use spin_lock_bh()
2402 */
2403 spin_lock_bh(&reg_pending_beacons_lock);
2404 list_add_tail(&reg_beacon->list, &reg_pending_beacons);
2405 spin_unlock_bh(&reg_pending_beacons_lock);
2406
2407 schedule_work(&reg_work);
2408
2409 return 0;
2410}
2411
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002412static void print_rd_rules(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002413{
2414 unsigned int i;
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002415 const struct ieee80211_reg_rule *reg_rule = NULL;
2416 const struct ieee80211_freq_range *freq_range = NULL;
2417 const struct ieee80211_power_rule *power_rule = NULL;
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002418 char bw[32], cac_time[32];
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002419
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002420 pr_info(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)\n");
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002421
2422 for (i = 0; i < rd->n_reg_rules; i++) {
2423 reg_rule = &rd->reg_rules[i];
2424 freq_range = &reg_rule->freq_range;
2425 power_rule = &reg_rule->power_rule;
2426
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01002427 if (reg_rule->flags & NL80211_RRF_AUTO_BW)
2428 snprintf(bw, sizeof(bw), "%d KHz, %d KHz AUTO",
2429 freq_range->max_bandwidth_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01002430 reg_get_max_bandwidth(rd, reg_rule));
2431 else
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01002432 snprintf(bw, sizeof(bw), "%d KHz",
Janusz Dziedzic97524822014-01-30 09:52:20 +01002433 freq_range->max_bandwidth_khz);
2434
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002435 if (reg_rule->flags & NL80211_RRF_DFS)
2436 scnprintf(cac_time, sizeof(cac_time), "%u s",
2437 reg_rule->dfs_cac_ms/1000);
2438 else
2439 scnprintf(cac_time, sizeof(cac_time), "N/A");
2440
2441
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002442 /*
2443 * There may not be documentation for max antenna gain
2444 * in certain regions
2445 */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002446 if (power_rule->max_antenna_gain)
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002447 pr_info(" (%d KHz - %d KHz @ %s), (%d mBi, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002448 freq_range->start_freq_khz,
2449 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01002450 bw,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002451 power_rule->max_antenna_gain,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002452 power_rule->max_eirp,
2453 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002454 else
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002455 pr_info(" (%d KHz - %d KHz @ %s), (N/A, %d mBm), (%s)\n",
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002456 freq_range->start_freq_khz,
2457 freq_range->end_freq_khz,
Janusz Dziedzic97524822014-01-30 09:52:20 +01002458 bw,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01002459 power_rule->max_eirp,
2460 cac_time);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002461 }
2462}
2463
Luis R. Rodriguez4c7d3982013-11-13 18:54:02 +01002464bool reg_supported_dfs_region(enum nl80211_dfs_regions dfs_region)
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07002465{
2466 switch (dfs_region) {
2467 case NL80211_DFS_UNSET:
2468 case NL80211_DFS_FCC:
2469 case NL80211_DFS_ETSI:
2470 case NL80211_DFS_JP:
2471 return true;
2472 default:
2473 REG_DBG_PRINT("Ignoring uknown DFS master region: %d\n",
2474 dfs_region);
2475 return false;
2476 }
2477}
2478
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002479static void print_regdomain(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002480{
Johannes Bergc492db32012-12-06 16:29:25 +01002481 struct regulatory_request *lr = get_last_request();
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002482
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002483 if (is_intersected_alpha2(rd->alpha2)) {
Johannes Bergc492db32012-12-06 16:29:25 +01002484 if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
Johannes Berg79c97e92009-07-07 03:56:12 +02002485 struct cfg80211_registered_device *rdev;
Johannes Bergc492db32012-12-06 16:29:25 +01002486 rdev = cfg80211_rdev_by_wiphy_idx(lr->wiphy_idx);
Johannes Berg79c97e92009-07-07 03:56:12 +02002487 if (rdev) {
Joe Perchese9c02682010-11-16 19:56:49 -08002488 pr_info("Current regulatory domain updated by AP to: %c%c\n",
Johannes Berg79c97e92009-07-07 03:56:12 +02002489 rdev->country_ie_alpha2[0],
2490 rdev->country_ie_alpha2[1]);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002491 } else
Joe Perchese9c02682010-11-16 19:56:49 -08002492 pr_info("Current regulatory domain intersected:\n");
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002493 } else
Joe Perchese9c02682010-11-16 19:56:49 -08002494 pr_info("Current regulatory domain intersected:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01002495 } else if (is_world_regdom(rd->alpha2)) {
Joe Perchese9c02682010-11-16 19:56:49 -08002496 pr_info("World regulatory domain updated:\n");
Johannes Berg1a919312012-12-03 17:21:11 +01002497 } else {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002498 if (is_unknown_alpha2(rd->alpha2))
Joe Perchese9c02682010-11-16 19:56:49 -08002499 pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n");
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002500 else {
Johannes Bergc492db32012-12-06 16:29:25 +01002501 if (reg_request_cell_base(lr))
Johannes Berg1a919312012-12-03 17:21:11 +01002502 pr_info("Regulatory domain changed to country: %c%c by Cell Station\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002503 rd->alpha2[0], rd->alpha2[1]);
2504 else
Johannes Berg1a919312012-12-03 17:21:11 +01002505 pr_info("Regulatory domain changed to country: %c%c\n",
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002506 rd->alpha2[0], rd->alpha2[1]);
2507 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002508 }
Johannes Berg1a919312012-12-03 17:21:11 +01002509
Luis R. Rodriguez3ef121b2013-11-13 18:54:05 +01002510 pr_info(" DFS Master region: %s", reg_dfs_region_str(rd->dfs_region));
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002511 print_rd_rules(rd);
2512}
2513
Johannes Berg2df78162008-10-28 16:49:41 +01002514static void print_regdomain_info(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002515{
Joe Perchese9c02682010-11-16 19:56:49 -08002516 pr_info("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002517 print_rd_rules(rd);
2518}
2519
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002520static int reg_set_rd_core(const struct ieee80211_regdomain *rd)
2521{
2522 if (!is_world_regdom(rd->alpha2))
2523 return -EINVAL;
2524 update_world_regdomain(rd);
2525 return 0;
2526}
2527
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002528static int reg_set_rd_user(const struct ieee80211_regdomain *rd,
2529 struct regulatory_request *user_request)
2530{
2531 const struct ieee80211_regdomain *intersected_rd = NULL;
2532
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002533 if (!regdom_changes(rd->alpha2))
2534 return -EALREADY;
2535
2536 if (!is_valid_rd(rd)) {
2537 pr_err("Invalid regulatory domain detected:\n");
2538 print_regdomain_info(rd);
2539 return -EINVAL;
2540 }
2541
2542 if (!user_request->intersect) {
2543 reset_regdomains(false, rd);
2544 return 0;
2545 }
2546
2547 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2548 if (!intersected_rd)
2549 return -EINVAL;
2550
2551 kfree(rd);
2552 rd = NULL;
2553 reset_regdomains(false, intersected_rd);
2554
2555 return 0;
2556}
2557
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002558static int reg_set_rd_driver(const struct ieee80211_regdomain *rd,
2559 struct regulatory_request *driver_request)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002560{
Johannes Berge9763c32012-12-03 16:59:46 +01002561 const struct ieee80211_regdomain *regd;
Luis R. Rodriguez9c964772008-10-30 13:33:53 -07002562 const struct ieee80211_regdomain *intersected_rd = NULL;
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002563 const struct ieee80211_regdomain *tmp;
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002564 struct wiphy *request_wiphy;
Johannes Berg6913b492012-12-04 00:48:59 +01002565
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002566 if (is_world_regdom(rd->alpha2))
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002567 return -EINVAL;
2568
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002569 if (!regdom_changes(rd->alpha2))
2570 return -EALREADY;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002571
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002572 if (!is_valid_rd(rd)) {
Joe Perchese9c02682010-11-16 19:56:49 -08002573 pr_err("Invalid regulatory domain detected:\n");
Luis R. Rodriguez8375af32008-11-12 14:21:57 -08002574 print_regdomain_info(rd);
2575 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002576 }
2577
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002578 request_wiphy = wiphy_idx_to_wiphy(driver_request->wiphy_idx);
2579 if (!request_wiphy) {
Shaibal Dutta845f3352014-01-30 15:08:30 -08002580 queue_delayed_work(system_power_efficient_wq,
2581 &reg_timeout, 0);
Johannes Bergde3584b2011-11-21 10:44:00 +01002582 return -ENODEV;
2583 }
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002584
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002585 if (!driver_request->intersect) {
Luis R. Rodriguez558f6d32009-06-08 18:54:37 -07002586 if (request_wiphy->regd)
2587 return -EALREADY;
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002588
Johannes Berge9763c32012-12-03 16:59:46 +01002589 regd = reg_copy_regd(rd);
2590 if (IS_ERR(regd))
2591 return PTR_ERR(regd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002592
Johannes Berg458f4f92012-12-06 15:47:38 +01002593 rcu_assign_pointer(request_wiphy->regd, regd);
Johannes Berg379b82f2012-12-06 15:44:07 +01002594 reset_regdomains(false, rd);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002595 return 0;
2596 }
2597
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002598 intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
2599 if (!intersected_rd)
2600 return -EINVAL;
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002601
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002602 /*
2603 * We can trash what CRDA provided now.
2604 * However if a driver requested this specific regulatory
2605 * domain we keep it for its private use
2606 */
2607 tmp = get_wiphy_regdom(request_wiphy);
2608 rcu_assign_pointer(request_wiphy->regd, rd);
2609 rcu_free_regdom(tmp);
Luis R. Rodriguezb8295ac2008-11-12 14:21:58 -08002610
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002611 rd = NULL;
Larry Fingerb7566fc2013-02-04 15:33:44 -06002612
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002613 reset_regdomains(false, intersected_rd);
Luis R. Rodriguez3e0c3ff2009-01-07 17:43:34 -08002614
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002615 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002616}
2617
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002618static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
2619 struct regulatory_request *country_ie_request)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002620{
2621 struct wiphy *request_wiphy;
2622
2623 if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
2624 !is_unknown_alpha2(rd->alpha2))
2625 return -EINVAL;
2626
2627 /*
2628 * Lets only bother proceeding on the same alpha2 if the current
2629 * rd is non static (it means CRDA was present and was used last)
2630 * and the pending request came in from a country IE
2631 */
2632
2633 if (!is_valid_rd(rd)) {
2634 pr_err("Invalid regulatory domain detected:\n");
2635 print_regdomain_info(rd);
2636 return -EINVAL;
2637 }
2638
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002639 request_wiphy = wiphy_idx_to_wiphy(country_ie_request->wiphy_idx);
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002640 if (!request_wiphy) {
Shaibal Dutta845f3352014-01-30 15:08:30 -08002641 queue_delayed_work(system_power_efficient_wq,
2642 &reg_timeout, 0);
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002643 return -ENODEV;
2644 }
2645
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002646 if (country_ie_request->intersect)
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002647 return -EINVAL;
2648
2649 reset_regdomains(false, rd);
2650 return 0;
2651}
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002652
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002653/*
2654 * Use this call to set the current regulatory domain. Conflicts with
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002655 * multiple drivers can be ironed out later. Caller must've already
Johannes Berg458f4f92012-12-06 15:47:38 +01002656 * kmalloc'd the rd structure.
Luis R. Rodriguezfb1fc7a2009-02-21 00:04:31 -05002657 */
Johannes Berga3d2eaf2008-09-15 11:10:52 +02002658int set_regdom(const struct ieee80211_regdomain *rd)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002659{
Johannes Bergc492db32012-12-06 16:29:25 +01002660 struct regulatory_request *lr;
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002661 bool user_reset = false;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002662 int r;
2663
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002664 if (!reg_is_valid_request(rd->alpha2)) {
2665 kfree(rd);
2666 return -EINVAL;
2667 }
2668
Johannes Bergc492db32012-12-06 16:29:25 +01002669 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002670
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002671 /* Note that this doesn't update the wiphys, this is done below */
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002672 switch (lr->initiator) {
2673 case NL80211_REGDOM_SET_BY_CORE:
2674 r = reg_set_rd_core(rd);
2675 break;
2676 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002677 r = reg_set_rd_user(rd, lr);
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002678 user_reset = true;
Luis R. Rodriguez84721d42013-11-05 09:18:15 -08002679 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002680 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguezf5fe3242013-11-05 09:18:16 -08002681 r = reg_set_rd_driver(rd, lr);
2682 break;
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002683 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez01992402013-11-05 09:18:17 -08002684 r = reg_set_rd_country_ie(rd, lr);
Luis R. Rodriguez3b9e5ac2013-11-05 09:18:14 -08002685 break;
2686 default:
2687 WARN(1, "invalid initiator %d\n", lr->initiator);
2688 return -EINVAL;
2689 }
2690
Johannes Bergd2372b32008-10-24 20:32:20 +02002691 if (r) {
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002692 switch (r) {
2693 case -EALREADY:
Kalle Valo95908532012-07-12 15:33:58 +03002694 reg_set_request_processed();
Janusz Dziedzic092008a2014-02-14 08:54:00 +01002695 break;
2696 default:
2697 /* Back to world regulatory in case of errors */
2698 restore_regulatory_settings(user_reset);
2699 }
Kalle Valo95908532012-07-12 15:33:58 +03002700
Johannes Bergd2372b32008-10-24 20:32:20 +02002701 kfree(rd);
Johannes Berg38fd2142013-05-10 19:17:17 +02002702 return r;
Johannes Bergd2372b32008-10-24 20:32:20 +02002703 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002704
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002705 /* This would make this whole thing pointless */
Johannes Berg38fd2142013-05-10 19:17:17 +02002706 if (WARN_ON(!lr->intersect && rd != get_cfg80211_regdom()))
2707 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002708
2709 /* update all wiphys now with the new established regulatory domain */
Johannes Bergc492db32012-12-06 16:29:25 +01002710 update_all_wiphy_regulatory(lr->initiator);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002711
Johannes Berg458f4f92012-12-06 15:47:38 +01002712 print_regdomain(get_cfg80211_regdom());
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002713
Johannes Bergc492db32012-12-06 16:29:25 +01002714 nl80211_send_reg_change_event(lr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04002715
Luis R. Rodriguezb2e253c2010-11-17 21:46:09 -08002716 reg_set_request_processed();
2717
Johannes Berg38fd2142013-05-10 19:17:17 +02002718 return 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002719}
2720
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002721void wiphy_regulatory_register(struct wiphy *wiphy)
2722{
Arik Nemtsov23df0b72013-07-21 16:36:48 +03002723 struct regulatory_request *lr;
2724
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002725 if (!reg_dev_ignore_cell_hint(wiphy))
2726 reg_num_devs_support_basehint++;
2727
Arik Nemtsov23df0b72013-07-21 16:36:48 +03002728 lr = get_last_request();
2729 wiphy_update_regulatory(wiphy, lr->initiator);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002730}
2731
Luis R. Rodriguezbfead082012-07-12 11:49:19 -07002732void wiphy_regulatory_deregister(struct wiphy *wiphy)
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002733{
Luis R. Rodriguez0ad8aca2009-03-24 21:21:08 -04002734 struct wiphy *request_wiphy = NULL;
Johannes Bergc492db32012-12-06 16:29:25 +01002735 struct regulatory_request *lr;
Luis R. Rodriguez761cf7e2009-02-21 00:04:25 -05002736
Johannes Bergc492db32012-12-06 16:29:25 +01002737 lr = get_last_request();
Luis R. Rodriguezabc73812009-07-30 17:38:08 -07002738
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002739 if (!reg_dev_ignore_cell_hint(wiphy))
2740 reg_num_devs_support_basehint--;
2741
Johannes Berg458f4f92012-12-06 15:47:38 +01002742 rcu_free_regdom(get_wiphy_regdom(wiphy));
Monam Agarwal34dd8862014-03-24 00:53:40 +05302743 RCU_INIT_POINTER(wiphy->regd, NULL);
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002744
Johannes Bergc492db32012-12-06 16:29:25 +01002745 if (lr)
2746 request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
Luis R. Rodriguez806a9e32009-02-21 00:04:26 -05002747
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002748 if (!request_wiphy || request_wiphy != wiphy)
Johannes Berg38fd2142013-05-10 19:17:17 +02002749 return;
Chris Wright0ef9ccd2009-04-24 14:09:31 -07002750
Johannes Bergc492db32012-12-06 16:29:25 +01002751 lr->wiphy_idx = WIPHY_IDX_INVALID;
2752 lr->country_ie_env = ENVIRON_ANY;
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002753}
2754
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002755static void reg_timeout_work(struct work_struct *work)
2756{
Johannes Berg1a919312012-12-03 17:21:11 +01002757 REG_DBG_PRINT("Timeout while waiting for CRDA to reply, restoring regulatory settings\n");
Johannes Bergf77b86d2013-06-24 15:43:38 +02002758 rtnl_lock();
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002759 restore_regulatory_settings(true);
Johannes Bergf77b86d2013-06-24 15:43:38 +02002760 rtnl_unlock();
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002761}
2762
Ilan Peer174e0cd2014-02-23 09:13:01 +02002763/*
2764 * See http://www.fcc.gov/document/5-ghz-unlicensed-spectrum-unii, for
2765 * UNII band definitions
2766 */
2767int cfg80211_get_unii(int freq)
2768{
2769 /* UNII-1 */
2770 if (freq >= 5150 && freq <= 5250)
2771 return 0;
2772
2773 /* UNII-2A */
2774 if (freq > 5250 && freq <= 5350)
2775 return 1;
2776
2777 /* UNII-2B */
2778 if (freq > 5350 && freq <= 5470)
2779 return 2;
2780
2781 /* UNII-2C */
2782 if (freq > 5470 && freq <= 5725)
2783 return 3;
2784
2785 /* UNII-3 */
2786 if (freq > 5725 && freq <= 5825)
2787 return 4;
2788
2789 return -EINVAL;
2790}
2791
Ilan Peerc8866e52014-02-23 09:13:03 +02002792bool regulatory_indoor_allowed(void)
2793{
2794 return reg_is_indoor;
2795}
2796
Uwe Kleine-König2fcc9f72010-06-18 09:38:55 +02002797int __init regulatory_init(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002798{
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002799 int err = 0;
Johannes Berg734366d2008-09-15 10:56:48 +02002800
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002801 reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
2802 if (IS_ERR(reg_pdev))
2803 return PTR_ERR(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002804
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002805 spin_lock_init(&reg_requests_lock);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002806 spin_lock_init(&reg_pending_beacons_lock);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002807
Luis R. Rodriguez80007ef2012-03-23 07:23:31 -07002808 reg_regdb_size_check();
2809
Johannes Berg458f4f92012-12-06 15:47:38 +01002810 rcu_assign_pointer(cfg80211_regdomain, cfg80211_world_regdom);
Johannes Berg734366d2008-09-15 10:56:48 +02002811
Luis R. Rodriguez09d989d2010-01-29 19:58:57 -05002812 user_alpha2[0] = '9';
2813 user_alpha2[1] = '7';
2814
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002815 /* We always try to get an update for the static regdomain */
Johannes Berg458f4f92012-12-06 15:47:38 +01002816 err = regulatory_hint_core(cfg80211_world_regdom->alpha2);
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002817 if (err) {
2818 if (err == -ENOMEM)
2819 return err;
2820 /*
2821 * N.B. kobject_uevent_env() can fail mainly for when we're out
2822 * memory which is handled and propagated appropriately above
2823 * but it can also fail during a netlink_broadcast() or during
2824 * early boot for call_usermodehelper(). For now treat these
2825 * errors as non-fatal.
2826 */
Joe Perchese9c02682010-11-16 19:56:49 -08002827 pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
Luis R. Rodriguezbcf4f992009-02-21 00:04:24 -05002828 }
Johannes Berg734366d2008-09-15 10:56:48 +02002829
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002830 /*
2831 * Finally, if the user set the module parameter treat it
2832 * as a user hint.
2833 */
2834 if (!is_world_regdom(ieee80211_regdom))
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07002835 regulatory_hint_user(ieee80211_regdom,
2836 NL80211_USER_REG_HINT_USER);
Luis R. Rodriguezae9e4b02009-07-14 20:23:15 -04002837
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002838 return 0;
2839}
2840
Johannes Berg1a919312012-12-03 17:21:11 +01002841void regulatory_exit(void)
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002842{
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002843 struct regulatory_request *reg_request, *tmp;
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002844 struct reg_beacon *reg_beacon, *btmp;
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002845
2846 cancel_work_sync(&reg_work);
Luis R. Rodrigueza90c7a32011-04-05 10:49:04 -07002847 cancel_delayed_work_sync(&reg_timeout);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002848
Johannes Berg9027b142012-12-03 17:59:24 +01002849 /* Lock to suppress warnings */
Johannes Berg38fd2142013-05-10 19:17:17 +02002850 rtnl_lock();
Johannes Berg379b82f2012-12-06 15:44:07 +01002851 reset_regdomains(true, NULL);
Johannes Berg38fd2142013-05-10 19:17:17 +02002852 rtnl_unlock();
Johannes Berg734366d2008-09-15 10:56:48 +02002853
Luis R. Rodriguez58ebacc2011-11-08 14:28:06 -08002854 dev_set_uevent_suppress(&reg_pdev->dev, true);
Johannes Bergf6037d02008-10-21 11:01:33 +02002855
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07002856 platform_device_unregister(reg_pdev);
Johannes Berg734366d2008-09-15 10:56:48 +02002857
Johannes Bergfea9bce2012-12-03 17:32:01 +01002858 list_for_each_entry_safe(reg_beacon, btmp, &reg_pending_beacons, list) {
2859 list_del(&reg_beacon->list);
2860 kfree(reg_beacon);
Luis R. Rodrigueze38f8a72009-02-21 00:20:39 -05002861 }
2862
Johannes Bergfea9bce2012-12-03 17:32:01 +01002863 list_for_each_entry_safe(reg_beacon, btmp, &reg_beacon_list, list) {
2864 list_del(&reg_beacon->list);
2865 kfree(reg_beacon);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002866 }
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05002867
Johannes Bergfea9bce2012-12-03 17:32:01 +01002868 list_for_each_entry_safe(reg_request, tmp, &reg_requests_list, list) {
2869 list_del(&reg_request->list);
2870 kfree(reg_request);
Johannes Berg8318d782008-01-24 19:38:38 +01002871 }
Johannes Berg8318d782008-01-24 19:38:38 +01002872}