reg.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535
  1. /*
  2. * Copyright 2002-2005, Instant802 Networks, Inc.
  3. * Copyright 2005-2006, Devicescape Software, Inc.
  4. * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
  5. * Copyright 2008-2011 Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for any
  8. * purpose with or without fee is hereby granted, provided that the above
  9. * copyright notice and this permission notice appear in all copies.
  10. *
  11. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  12. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  13. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  14. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  15. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  16. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  17. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. /**
  20. * DOC: Wireless regulatory infrastructure
  21. *
  22. * The usual implementation is for a driver to read a device EEPROM to
  23. * determine which regulatory domain it should be operating under, then
  24. * looking up the allowable channels in a driver-local table and finally
  25. * registering those channels in the wiphy structure.
  26. *
  27. * Another set of compliance enforcement is for drivers to use their
  28. * own compliance limits which can be stored on the EEPROM. The host
  29. * driver or firmware may ensure these are used.
  30. *
  31. * In addition to all this we provide an extra layer of regulatory
  32. * conformance. For drivers which do not have any regulatory
  33. * information CRDA provides the complete regulatory solution.
  34. * For others it provides a community effort on further restrictions
  35. * to enhance compliance.
  36. *
  37. * Note: When number of rules --> infinity we will not be able to
  38. * index on alpha2 any more, instead we'll probably have to
  39. * rely on some SHA1 checksum of the regdomain for example.
  40. *
  41. */
  42. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  43. #include <linux/kernel.h>
  44. #include <linux/export.h>
  45. #include <linux/slab.h>
  46. #include <linux/list.h>
  47. #include <linux/random.h>
  48. #include <linux/ctype.h>
  49. #include <linux/nl80211.h>
  50. #include <linux/platform_device.h>
  51. #include <linux/moduleparam.h>
  52. #include <net/cfg80211.h>
  53. #include "core.h"
  54. #include "reg.h"
  55. #include "regdb.h"
  56. #include "nl80211.h"
  57. #ifdef CONFIG_CFG80211_REG_DEBUG
  58. #define REG_DBG_PRINT(format, args...) \
  59. printk(KERN_DEBUG pr_fmt(format), ##args)
  60. #else
  61. #define REG_DBG_PRINT(args...)
  62. #endif
  63. static struct regulatory_request core_request_world = {
  64. .initiator = NL80211_REGDOM_SET_BY_CORE,
  65. .alpha2[0] = '0',
  66. .alpha2[1] = '0',
  67. .intersect = false,
  68. .processed = true,
  69. .country_ie_env = ENVIRON_ANY,
  70. };
  71. /* Receipt of information from last regulatory request */
  72. static struct regulatory_request *last_request = &core_request_world;
  73. /* To trigger userspace events */
  74. static struct platform_device *reg_pdev;
  75. static struct device_type reg_device_type = {
  76. .uevent = reg_device_uevent,
  77. };
  78. /*
  79. * Central wireless core regulatory domains, we only need two,
  80. * the current one and a world regulatory domain in case we have no
  81. * information to give us an alpha2
  82. */
  83. const struct ieee80211_regdomain *cfg80211_regdomain;
  84. /*
  85. * Protects static reg.c components:
  86. * - cfg80211_world_regdom
  87. * - cfg80211_regdom
  88. * - last_request
  89. * - reg_num_devs_support_basehint
  90. */
  91. static DEFINE_MUTEX(reg_mutex);
  92. /*
  93. * Number of devices that registered to the core
  94. * that support cellular base station regulatory hints
  95. */
  96. static int reg_num_devs_support_basehint;
  97. static inline void assert_reg_lock(void)
  98. {
  99. lockdep_assert_held(&reg_mutex);
  100. }
  101. /* Used to queue up regulatory hints */
  102. static LIST_HEAD(reg_requests_list);
  103. static spinlock_t reg_requests_lock;
  104. /* Used to queue up beacon hints for review */
  105. static LIST_HEAD(reg_pending_beacons);
  106. static spinlock_t reg_pending_beacons_lock;
  107. /* Used to keep track of processed beacon hints */
  108. static LIST_HEAD(reg_beacon_list);
  109. struct reg_beacon {
  110. struct list_head list;
  111. struct ieee80211_channel chan;
  112. };
  113. static void reg_todo(struct work_struct *work);
  114. static DECLARE_WORK(reg_work, reg_todo);
  115. static void reg_timeout_work(struct work_struct *work);
  116. static DECLARE_DELAYED_WORK(reg_timeout, reg_timeout_work);
  117. /* We keep a static world regulatory domain in case of the absence of CRDA */
  118. static const struct ieee80211_regdomain world_regdom = {
  119. .n_reg_rules = 6,
  120. .alpha2 = "00",
  121. .reg_rules = {
  122. /* IEEE 802.11b/g, channels 1..11 */
  123. REG_RULE(2412-10, 2462+10, 40, 6, 20, 0),
  124. /* IEEE 802.11b/g, channels 12..13. No HT40
  125. * channel fits here. */
  126. REG_RULE(2467-10, 2472+10, 20, 6, 20,
  127. NL80211_RRF_PASSIVE_SCAN |
  128. NL80211_RRF_NO_IBSS),
  129. /* IEEE 802.11 channel 14 - Only JP enables
  130. * this and for 802.11b only */
  131. REG_RULE(2484-10, 2484+10, 20, 6, 20,
  132. NL80211_RRF_PASSIVE_SCAN |
  133. NL80211_RRF_NO_IBSS |
  134. NL80211_RRF_NO_OFDM),
  135. /* IEEE 802.11a, channel 36..48 */
  136. REG_RULE(5180-10, 5240+10, 40, 6, 20,
  137. NL80211_RRF_PASSIVE_SCAN |
  138. NL80211_RRF_NO_IBSS),
  139. /* NB: 5260 MHz - 5700 MHz requies DFS */
  140. /* IEEE 802.11a, channel 149..165 */
  141. REG_RULE(5745-10, 5825+10, 40, 6, 20,
  142. NL80211_RRF_PASSIVE_SCAN |
  143. NL80211_RRF_NO_IBSS),
  144. /* IEEE 802.11ad (60gHz), channels 1..3 */
  145. REG_RULE(56160+2160*1-1080, 56160+2160*3+1080, 2160, 0, 0, 0),
  146. }
  147. };
  148. static const struct ieee80211_regdomain *cfg80211_world_regdom =
  149. &world_regdom;
  150. static char *ieee80211_regdom = "00";
  151. static char user_alpha2[2];
  152. module_param(ieee80211_regdom, charp, 0444);
  153. MODULE_PARM_DESC(ieee80211_regdom, "IEEE 802.11 regulatory domain code");
  154. static void reset_regdomains(bool full_reset)
  155. {
  156. /* avoid freeing static information or freeing something twice */
  157. if (cfg80211_regdomain == cfg80211_world_regdom)
  158. cfg80211_regdomain = NULL;
  159. if (cfg80211_world_regdom == &world_regdom)
  160. cfg80211_world_regdom = NULL;
  161. if (cfg80211_regdomain == &world_regdom)
  162. cfg80211_regdomain = NULL;
  163. kfree(cfg80211_regdomain);
  164. kfree(cfg80211_world_regdom);
  165. cfg80211_world_regdom = &world_regdom;
  166. cfg80211_regdomain = NULL;
  167. if (!full_reset)
  168. return;
  169. if (last_request != &core_request_world)
  170. kfree(last_request);
  171. last_request = &core_request_world;
  172. }
  173. /*
  174. * Dynamic world regulatory domain requested by the wireless
  175. * core upon initialization
  176. */
  177. static void update_world_regdomain(const struct ieee80211_regdomain *rd)
  178. {
  179. BUG_ON(!last_request);
  180. reset_regdomains(false);
  181. cfg80211_world_regdom = rd;
  182. cfg80211_regdomain = rd;
  183. }
  184. bool is_world_regdom(const char *alpha2)
  185. {
  186. if (!alpha2)
  187. return false;
  188. if (alpha2[0] == '0' && alpha2[1] == '0')
  189. return true;
  190. return false;
  191. }
  192. static bool is_alpha2_set(const char *alpha2)
  193. {
  194. if (!alpha2)
  195. return false;
  196. if (alpha2[0] != 0 && alpha2[1] != 0)
  197. return true;
  198. return false;
  199. }
  200. static bool is_unknown_alpha2(const char *alpha2)
  201. {
  202. if (!alpha2)
  203. return false;
  204. /*
  205. * Special case where regulatory domain was built by driver
  206. * but a specific alpha2 cannot be determined
  207. */
  208. if (alpha2[0] == '9' && alpha2[1] == '9')
  209. return true;
  210. return false;
  211. }
  212. static bool is_intersected_alpha2(const char *alpha2)
  213. {
  214. if (!alpha2)
  215. return false;
  216. /*
  217. * Special case where regulatory domain is the
  218. * result of an intersection between two regulatory domain
  219. * structures
  220. */
  221. if (alpha2[0] == '9' && alpha2[1] == '8')
  222. return true;
  223. return false;
  224. }
  225. static bool is_an_alpha2(const char *alpha2)
  226. {
  227. if (!alpha2)
  228. return false;
  229. if (isalpha(alpha2[0]) && isalpha(alpha2[1]))
  230. return true;
  231. return false;
  232. }
  233. static bool alpha2_equal(const char *alpha2_x, const char *alpha2_y)
  234. {
  235. if (!alpha2_x || !alpha2_y)
  236. return false;
  237. if (alpha2_x[0] == alpha2_y[0] &&
  238. alpha2_x[1] == alpha2_y[1])
  239. return true;
  240. return false;
  241. }
  242. static bool regdom_changes(const char *alpha2)
  243. {
  244. assert_cfg80211_lock();
  245. if (!cfg80211_regdomain)
  246. return true;
  247. if (alpha2_equal(cfg80211_regdomain->alpha2, alpha2))
  248. return false;
  249. return true;
  250. }
  251. /*
  252. * The NL80211_REGDOM_SET_BY_USER regdom alpha2 is cached, this lets
  253. * you know if a valid regulatory hint with NL80211_REGDOM_SET_BY_USER
  254. * has ever been issued.
  255. */
  256. static bool is_user_regdom_saved(void)
  257. {
  258. if (user_alpha2[0] == '9' && user_alpha2[1] == '7')
  259. return false;
  260. /* This would indicate a mistake on the design */
  261. if (WARN((!is_world_regdom(user_alpha2) &&
  262. !is_an_alpha2(user_alpha2)),
  263. "Unexpected user alpha2: %c%c\n",
  264. user_alpha2[0],
  265. user_alpha2[1]))
  266. return false;
  267. return true;
  268. }
  269. static int reg_copy_regd(const struct ieee80211_regdomain **dst_regd,
  270. const struct ieee80211_regdomain *src_regd)
  271. {
  272. struct ieee80211_regdomain *regd;
  273. int size_of_regd = 0;
  274. unsigned int i;
  275. size_of_regd = sizeof(struct ieee80211_regdomain) +
  276. ((src_regd->n_reg_rules + 1) * sizeof(struct ieee80211_reg_rule));
  277. regd = kzalloc(size_of_regd, GFP_KERNEL);
  278. if (!regd)
  279. return -ENOMEM;
  280. memcpy(regd, src_regd, sizeof(struct ieee80211_regdomain));
  281. for (i = 0; i < src_regd->n_reg_rules; i++)
  282. memcpy(&regd->reg_rules[i], &src_regd->reg_rules[i],
  283. sizeof(struct ieee80211_reg_rule));
  284. *dst_regd = regd;
  285. return 0;
  286. }
  287. #ifdef CONFIG_CFG80211_INTERNAL_REGDB
  288. struct reg_regdb_search_request {
  289. char alpha2[2];
  290. struct list_head list;
  291. };
  292. static LIST_HEAD(reg_regdb_search_list);
  293. static DEFINE_MUTEX(reg_regdb_search_mutex);
  294. static void reg_regdb_search(struct work_struct *work)
  295. {
  296. struct reg_regdb_search_request *request;
  297. const struct ieee80211_regdomain *curdom, *regdom;
  298. int i, r;
  299. mutex_lock(&reg_regdb_search_mutex);
  300. while (!list_empty(&reg_regdb_search_list)) {
  301. request = list_first_entry(&reg_regdb_search_list,
  302. struct reg_regdb_search_request,
  303. list);
  304. list_del(&request->list);
  305. for (i=0; i<reg_regdb_size; i++) {
  306. curdom = reg_regdb[i];
  307. if (!memcmp(request->alpha2, curdom->alpha2, 2)) {
  308. r = reg_copy_regd(&regdom, curdom);
  309. if (r)
  310. break;
  311. mutex_lock(&cfg80211_mutex);
  312. set_regdom(regdom);
  313. mutex_unlock(&cfg80211_mutex);
  314. break;
  315. }
  316. }
  317. kfree(request);
  318. }
  319. mutex_unlock(&reg_regdb_search_mutex);
  320. }
  321. static DECLARE_WORK(reg_regdb_work, reg_regdb_search);
  322. static void reg_regdb_query(const char *alpha2)
  323. {
  324. struct reg_regdb_search_request *request;
  325. if (!alpha2)
  326. return;
  327. request = kzalloc(sizeof(struct reg_regdb_search_request), GFP_KERNEL);
  328. if (!request)
  329. return;
  330. memcpy(request->alpha2, alpha2, 2);
  331. mutex_lock(&reg_regdb_search_mutex);
  332. list_add_tail(&request->list, &reg_regdb_search_list);
  333. mutex_unlock(&reg_regdb_search_mutex);
  334. schedule_work(&reg_regdb_work);
  335. }
  336. /* Feel free to add any other sanity checks here */
  337. static void reg_regdb_size_check(void)
  338. {
  339. /* We should ideally BUILD_BUG_ON() but then random builds would fail */
  340. WARN_ONCE(!reg_regdb_size, "db.txt is empty, you should update it...");
  341. }
  342. #else
  343. static inline void reg_regdb_size_check(void) {}
  344. static inline void reg_regdb_query(const char *alpha2) {}
  345. #endif /* CONFIG_CFG80211_INTERNAL_REGDB */
  346. /*
  347. * This lets us keep regulatory code which is updated on a regulatory
  348. * basis in userspace. Country information is filled in by
  349. * reg_device_uevent
  350. */
  351. static int call_crda(const char *alpha2)
  352. {
  353. if (!is_world_regdom((char *) alpha2))
  354. pr_info("Calling CRDA for country: %c%c\n",
  355. alpha2[0], alpha2[1]);
  356. else
  357. pr_info("Calling CRDA to update world regulatory domain\n");
  358. /* query internal regulatory database (if it exists) */
  359. reg_regdb_query(alpha2);
  360. return kobject_uevent(&reg_pdev->dev.kobj, KOBJ_CHANGE);
  361. }
  362. /* Used by nl80211 before kmalloc'ing our regulatory domain */
  363. bool reg_is_valid_request(const char *alpha2)
  364. {
  365. assert_cfg80211_lock();
  366. if (!last_request)
  367. return false;
  368. return alpha2_equal(last_request->alpha2, alpha2);
  369. }
  370. /* Sanity check on a regulatory rule */
  371. static bool is_valid_reg_rule(const struct ieee80211_reg_rule *rule)
  372. {
  373. const struct ieee80211_freq_range *freq_range = &rule->freq_range;
  374. u32 freq_diff;
  375. if (freq_range->start_freq_khz <= 0 || freq_range->end_freq_khz <= 0)
  376. return false;
  377. if (freq_range->start_freq_khz > freq_range->end_freq_khz)
  378. return false;
  379. freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
  380. if (freq_range->end_freq_khz <= freq_range->start_freq_khz ||
  381. freq_range->max_bandwidth_khz > freq_diff)
  382. return false;
  383. return true;
  384. }
  385. static bool is_valid_rd(const struct ieee80211_regdomain *rd)
  386. {
  387. const struct ieee80211_reg_rule *reg_rule = NULL;
  388. unsigned int i;
  389. if (!rd->n_reg_rules)
  390. return false;
  391. if (WARN_ON(rd->n_reg_rules > NL80211_MAX_SUPP_REG_RULES))
  392. return false;
  393. for (i = 0; i < rd->n_reg_rules; i++) {
  394. reg_rule = &rd->reg_rules[i];
  395. if (!is_valid_reg_rule(reg_rule))
  396. return false;
  397. }
  398. return true;
  399. }
  400. static bool reg_does_bw_fit(const struct ieee80211_freq_range *freq_range,
  401. u32 center_freq_khz,
  402. u32 bw_khz)
  403. {
  404. u32 start_freq_khz, end_freq_khz;
  405. start_freq_khz = center_freq_khz - (bw_khz/2);
  406. end_freq_khz = center_freq_khz + (bw_khz/2);
  407. if (start_freq_khz >= freq_range->start_freq_khz &&
  408. end_freq_khz <= freq_range->end_freq_khz)
  409. return true;
  410. return false;
  411. }
  412. /**
  413. * freq_in_rule_band - tells us if a frequency is in a frequency band
  414. * @freq_range: frequency rule we want to query
  415. * @freq_khz: frequency we are inquiring about
  416. *
  417. * This lets us know if a specific frequency rule is or is not relevant to
  418. * a specific frequency's band. Bands are device specific and artificial
  419. * definitions (the "2.4 GHz band" and the "5 GHz band"), however it is
  420. * safe for now to assume that a frequency rule should not be part of a
  421. * frequency's band if the start freq or end freq are off by more than 2 GHz.
  422. * This resolution can be lowered and should be considered as we add
  423. * regulatory rule support for other "bands".
  424. **/
  425. static bool freq_in_rule_band(const struct ieee80211_freq_range *freq_range,
  426. u32 freq_khz)
  427. {
  428. #define ONE_GHZ_IN_KHZ 1000000
  429. if (abs(freq_khz - freq_range->start_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
  430. return true;
  431. if (abs(freq_khz - freq_range->end_freq_khz) <= (2 * ONE_GHZ_IN_KHZ))
  432. return true;
  433. return false;
  434. #undef ONE_GHZ_IN_KHZ
  435. }
  436. /*
  437. * Helper for regdom_intersect(), this does the real
  438. * mathematical intersection fun
  439. */
  440. static int reg_rules_intersect(
  441. const struct ieee80211_reg_rule *rule1,
  442. const struct ieee80211_reg_rule *rule2,
  443. struct ieee80211_reg_rule *intersected_rule)
  444. {
  445. const struct ieee80211_freq_range *freq_range1, *freq_range2;
  446. struct ieee80211_freq_range *freq_range;
  447. const struct ieee80211_power_rule *power_rule1, *power_rule2;
  448. struct ieee80211_power_rule *power_rule;
  449. u32 freq_diff;
  450. freq_range1 = &rule1->freq_range;
  451. freq_range2 = &rule2->freq_range;
  452. freq_range = &intersected_rule->freq_range;
  453. power_rule1 = &rule1->power_rule;
  454. power_rule2 = &rule2->power_rule;
  455. power_rule = &intersected_rule->power_rule;
  456. freq_range->start_freq_khz = max(freq_range1->start_freq_khz,
  457. freq_range2->start_freq_khz);
  458. freq_range->end_freq_khz = min(freq_range1->end_freq_khz,
  459. freq_range2->end_freq_khz);
  460. freq_range->max_bandwidth_khz = min(freq_range1->max_bandwidth_khz,
  461. freq_range2->max_bandwidth_khz);
  462. freq_diff = freq_range->end_freq_khz - freq_range->start_freq_khz;
  463. if (freq_range->max_bandwidth_khz > freq_diff)
  464. freq_range->max_bandwidth_khz = freq_diff;
  465. power_rule->max_eirp = min(power_rule1->max_eirp,
  466. power_rule2->max_eirp);
  467. power_rule->max_antenna_gain = min(power_rule1->max_antenna_gain,
  468. power_rule2->max_antenna_gain);
  469. intersected_rule->flags = (rule1->flags | rule2->flags);
  470. if (!is_valid_reg_rule(intersected_rule))
  471. return -EINVAL;
  472. return 0;
  473. }
  474. /**
  475. * regdom_intersect - do the intersection between two regulatory domains
  476. * @rd1: first regulatory domain
  477. * @rd2: second regulatory domain
  478. *
  479. * Use this function to get the intersection between two regulatory domains.
  480. * Once completed we will mark the alpha2 for the rd as intersected, "98",
  481. * as no one single alpha2 can represent this regulatory domain.
  482. *
  483. * Returns a pointer to the regulatory domain structure which will hold the
  484. * resulting intersection of rules between rd1 and rd2. We will
  485. * kzalloc() this structure for you.
  486. */
  487. static struct ieee80211_regdomain *regdom_intersect(
  488. const struct ieee80211_regdomain *rd1,
  489. const struct ieee80211_regdomain *rd2)
  490. {
  491. int r, size_of_regd;
  492. unsigned int x, y;
  493. unsigned int num_rules = 0, rule_idx = 0;
  494. const struct ieee80211_reg_rule *rule1, *rule2;
  495. struct ieee80211_reg_rule *intersected_rule;
  496. struct ieee80211_regdomain *rd;
  497. /* This is just a dummy holder to help us count */
  498. struct ieee80211_reg_rule irule;
  499. /* Uses the stack temporarily for counter arithmetic */
  500. intersected_rule = &irule;
  501. memset(intersected_rule, 0, sizeof(struct ieee80211_reg_rule));
  502. if (!rd1 || !rd2)
  503. return NULL;
  504. /*
  505. * First we get a count of the rules we'll need, then we actually
  506. * build them. This is to so we can malloc() and free() a
  507. * regdomain once. The reason we use reg_rules_intersect() here
  508. * is it will return -EINVAL if the rule computed makes no sense.
  509. * All rules that do check out OK are valid.
  510. */
  511. for (x = 0; x < rd1->n_reg_rules; x++) {
  512. rule1 = &rd1->reg_rules[x];
  513. for (y = 0; y < rd2->n_reg_rules; y++) {
  514. rule2 = &rd2->reg_rules[y];
  515. if (!reg_rules_intersect(rule1, rule2,
  516. intersected_rule))
  517. num_rules++;
  518. memset(intersected_rule, 0,
  519. sizeof(struct ieee80211_reg_rule));
  520. }
  521. }
  522. if (!num_rules)
  523. return NULL;
  524. size_of_regd = sizeof(struct ieee80211_regdomain) +
  525. ((num_rules + 1) * sizeof(struct ieee80211_reg_rule));
  526. rd = kzalloc(size_of_regd, GFP_KERNEL);
  527. if (!rd)
  528. return NULL;
  529. for (x = 0; x < rd1->n_reg_rules; x++) {
  530. rule1 = &rd1->reg_rules[x];
  531. for (y = 0; y < rd2->n_reg_rules; y++) {
  532. rule2 = &rd2->reg_rules[y];
  533. /*
  534. * This time around instead of using the stack lets
  535. * write to the target rule directly saving ourselves
  536. * a memcpy()
  537. */
  538. intersected_rule = &rd->reg_rules[rule_idx];
  539. r = reg_rules_intersect(rule1, rule2,
  540. intersected_rule);
  541. /*
  542. * No need to memset here the intersected rule here as
  543. * we're not using the stack anymore
  544. */
  545. if (r)
  546. continue;
  547. rule_idx++;
  548. }
  549. }
  550. if (rule_idx != num_rules) {
  551. kfree(rd);
  552. return NULL;
  553. }
  554. rd->n_reg_rules = num_rules;
  555. rd->alpha2[0] = '9';
  556. rd->alpha2[1] = '8';
  557. return rd;
  558. }
  559. /*
  560. * XXX: add support for the rest of enum nl80211_reg_rule_flags, we may
  561. * want to just have the channel structure use these
  562. */
  563. static u32 map_regdom_flags(u32 rd_flags)
  564. {
  565. u32 channel_flags = 0;
  566. if (rd_flags & NL80211_RRF_PASSIVE_SCAN)
  567. channel_flags |= IEEE80211_CHAN_PASSIVE_SCAN;
  568. if (rd_flags & NL80211_RRF_NO_IBSS)
  569. channel_flags |= IEEE80211_CHAN_NO_IBSS;
  570. if (rd_flags & NL80211_RRF_DFS)
  571. channel_flags |= IEEE80211_CHAN_RADAR;
  572. if (rd_flags & NL80211_RRF_NO_OFDM)
  573. channel_flags |= IEEE80211_CHAN_NO_OFDM;
  574. return channel_flags;
  575. }
  576. static int freq_reg_info_regd(struct wiphy *wiphy,
  577. u32 center_freq,
  578. u32 desired_bw_khz,
  579. const struct ieee80211_reg_rule **reg_rule,
  580. const struct ieee80211_regdomain *custom_regd)
  581. {
  582. int i;
  583. bool band_rule_found = false;
  584. const struct ieee80211_regdomain *regd;
  585. bool bw_fits = false;
  586. if (!desired_bw_khz)
  587. desired_bw_khz = MHZ_TO_KHZ(20);
  588. regd = custom_regd ? custom_regd : cfg80211_regdomain;
  589. /*
  590. * Follow the driver's regulatory domain, if present, unless a country
  591. * IE has been processed or a user wants to help complaince further
  592. */
  593. if (!custom_regd &&
  594. last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
  595. last_request->initiator != NL80211_REGDOM_SET_BY_USER &&
  596. wiphy->regd)
  597. regd = wiphy->regd;
  598. if (!regd)
  599. return -EINVAL;
  600. for (i = 0; i < regd->n_reg_rules; i++) {
  601. const struct ieee80211_reg_rule *rr;
  602. const struct ieee80211_freq_range *fr = NULL;
  603. rr = &regd->reg_rules[i];
  604. fr = &rr->freq_range;
  605. /*
  606. * We only need to know if one frequency rule was
  607. * was in center_freq's band, that's enough, so lets
  608. * not overwrite it once found
  609. */
  610. if (!band_rule_found)
  611. band_rule_found = freq_in_rule_band(fr, center_freq);
  612. bw_fits = reg_does_bw_fit(fr,
  613. center_freq,
  614. desired_bw_khz);
  615. if (band_rule_found && bw_fits) {
  616. *reg_rule = rr;
  617. return 0;
  618. }
  619. }
  620. if (!band_rule_found)
  621. return -ERANGE;
  622. return -EINVAL;
  623. }
  624. int freq_reg_info(struct wiphy *wiphy,
  625. u32 center_freq,
  626. u32 desired_bw_khz,
  627. const struct ieee80211_reg_rule **reg_rule)
  628. {
  629. assert_cfg80211_lock();
  630. return freq_reg_info_regd(wiphy,
  631. center_freq,
  632. desired_bw_khz,
  633. reg_rule,
  634. NULL);
  635. }
  636. EXPORT_SYMBOL(freq_reg_info);
  637. #ifdef CONFIG_CFG80211_REG_DEBUG
  638. static const char *reg_initiator_name(enum nl80211_reg_initiator initiator)
  639. {
  640. switch (initiator) {
  641. case NL80211_REGDOM_SET_BY_CORE:
  642. return "Set by core";
  643. case NL80211_REGDOM_SET_BY_USER:
  644. return "Set by user";
  645. case NL80211_REGDOM_SET_BY_DRIVER:
  646. return "Set by driver";
  647. case NL80211_REGDOM_SET_BY_COUNTRY_IE:
  648. return "Set by country IE";
  649. default:
  650. WARN_ON(1);
  651. return "Set by bug";
  652. }
  653. }
  654. static void chan_reg_rule_print_dbg(struct ieee80211_channel *chan,
  655. u32 desired_bw_khz,
  656. const struct ieee80211_reg_rule *reg_rule)
  657. {
  658. const struct ieee80211_power_rule *power_rule;
  659. const struct ieee80211_freq_range *freq_range;
  660. char max_antenna_gain[32];
  661. power_rule = &reg_rule->power_rule;
  662. freq_range = &reg_rule->freq_range;
  663. if (!power_rule->max_antenna_gain)
  664. snprintf(max_antenna_gain, 32, "N/A");
  665. else
  666. snprintf(max_antenna_gain, 32, "%d", power_rule->max_antenna_gain);
  667. REG_DBG_PRINT("Updating information on frequency %d MHz "
  668. "for a %d MHz width channel with regulatory rule:\n",
  669. chan->center_freq,
  670. KHZ_TO_MHZ(desired_bw_khz));
  671. REG_DBG_PRINT("%d KHz - %d KHz @ %d KHz), (%s mBi, %d mBm)\n",
  672. freq_range->start_freq_khz,
  673. freq_range->end_freq_khz,
  674. freq_range->max_bandwidth_khz,
  675. max_antenna_gain,
  676. power_rule->max_eirp);
  677. }
  678. #else
  679. static void chan_reg_rule_print_dbg(struct ieee80211_channel *chan,
  680. u32 desired_bw_khz,
  681. const struct ieee80211_reg_rule *reg_rule)
  682. {
  683. return;
  684. }
  685. #endif
  686. /*
  687. * Note that right now we assume the desired channel bandwidth
  688. * is always 20 MHz for each individual channel (HT40 uses 20 MHz
  689. * per channel, the primary and the extension channel). To support
  690. * smaller custom bandwidths such as 5 MHz or 10 MHz we'll need a
  691. * new ieee80211_channel.target_bw and re run the regulatory check
  692. * on the wiphy with the target_bw specified. Then we can simply use
  693. * that below for the desired_bw_khz below.
  694. */
  695. static void handle_channel(struct wiphy *wiphy,
  696. enum nl80211_reg_initiator initiator,
  697. enum ieee80211_band band,
  698. unsigned int chan_idx)
  699. {
  700. int r;
  701. u32 flags, bw_flags = 0;
  702. u32 desired_bw_khz = MHZ_TO_KHZ(20);
  703. const struct ieee80211_reg_rule *reg_rule = NULL;
  704. const struct ieee80211_power_rule *power_rule = NULL;
  705. const struct ieee80211_freq_range *freq_range = NULL;
  706. struct ieee80211_supported_band *sband;
  707. struct ieee80211_channel *chan;
  708. struct wiphy *request_wiphy = NULL;
  709. assert_cfg80211_lock();
  710. request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
  711. sband = wiphy->bands[band];
  712. BUG_ON(chan_idx >= sband->n_channels);
  713. chan = &sband->channels[chan_idx];
  714. flags = chan->orig_flags;
  715. r = freq_reg_info(wiphy,
  716. MHZ_TO_KHZ(chan->center_freq),
  717. desired_bw_khz,
  718. &reg_rule);
  719. if (r) {
  720. /*
  721. * We will disable all channels that do not match our
  722. * received regulatory rule unless the hint is coming
  723. * from a Country IE and the Country IE had no information
  724. * about a band. The IEEE 802.11 spec allows for an AP
  725. * to send only a subset of the regulatory rules allowed,
  726. * so an AP in the US that only supports 2.4 GHz may only send
  727. * a country IE with information for the 2.4 GHz band
  728. * while 5 GHz is still supported.
  729. */
  730. if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
  731. r == -ERANGE)
  732. return;
  733. REG_DBG_PRINT("Disabling freq %d MHz\n", chan->center_freq);
  734. chan->flags = IEEE80211_CHAN_DISABLED;
  735. return;
  736. }
  737. chan_reg_rule_print_dbg(chan, desired_bw_khz, reg_rule);
  738. power_rule = &reg_rule->power_rule;
  739. freq_range = &reg_rule->freq_range;
  740. if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
  741. bw_flags = IEEE80211_CHAN_NO_HT40;
  742. if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
  743. request_wiphy && request_wiphy == wiphy &&
  744. request_wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) {
  745. /*
  746. * This guarantees the driver's requested regulatory domain
  747. * will always be used as a base for further regulatory
  748. * settings
  749. */
  750. chan->flags = chan->orig_flags =
  751. map_regdom_flags(reg_rule->flags) | bw_flags;
  752. chan->max_antenna_gain = chan->orig_mag =
  753. (int) MBI_TO_DBI(power_rule->max_antenna_gain);
  754. chan->max_power = chan->orig_mpwr =
  755. (int) MBM_TO_DBM(power_rule->max_eirp);
  756. return;
  757. }
  758. chan->beacon_found = false;
  759. chan->flags = flags | bw_flags | map_regdom_flags(reg_rule->flags);
  760. chan->max_antenna_gain = min(chan->orig_mag,
  761. (int) MBI_TO_DBI(power_rule->max_antenna_gain));
  762. chan->max_reg_power = (int) MBM_TO_DBM(power_rule->max_eirp);
  763. if (chan->orig_mpwr) {
  764. /*
  765. * Devices that have their own custom regulatory domain
  766. * but also use WIPHY_FLAG_STRICT_REGULATORY will follow the
  767. * passed country IE power settings.
  768. */
  769. if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
  770. wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY &&
  771. wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY)
  772. chan->max_power = chan->max_reg_power;
  773. else
  774. chan->max_power = min(chan->orig_mpwr,
  775. chan->max_reg_power);
  776. } else
  777. chan->max_power = chan->max_reg_power;
  778. }
  779. static void handle_band(struct wiphy *wiphy,
  780. enum ieee80211_band band,
  781. enum nl80211_reg_initiator initiator)
  782. {
  783. unsigned int i;
  784. struct ieee80211_supported_band *sband;
  785. BUG_ON(!wiphy->bands[band]);
  786. sband = wiphy->bands[band];
  787. for (i = 0; i < sband->n_channels; i++)
  788. handle_channel(wiphy, initiator, band, i);
  789. }
  790. static bool reg_request_cell_base(struct regulatory_request *request)
  791. {
  792. if (request->initiator != NL80211_REGDOM_SET_BY_USER)
  793. return false;
  794. if (request->user_reg_hint_type != NL80211_USER_REG_HINT_CELL_BASE)
  795. return false;
  796. return true;
  797. }
  798. bool reg_last_request_cell_base(void)
  799. {
  800. bool val;
  801. assert_cfg80211_lock();
  802. mutex_lock(&reg_mutex);
  803. val = reg_request_cell_base(last_request);
  804. mutex_unlock(&reg_mutex);
  805. return val;
  806. }
  807. #ifdef CONFIG_CFG80211_CERTIFICATION_ONUS
  808. /* Core specific check */
  809. static int reg_ignore_cell_hint(struct regulatory_request *pending_request)
  810. {
  811. if (!reg_num_devs_support_basehint)
  812. return -EOPNOTSUPP;
  813. if (reg_request_cell_base(last_request)) {
  814. if (!regdom_changes(pending_request->alpha2))
  815. return -EALREADY;
  816. return 0;
  817. }
  818. return 0;
  819. }
  820. /* Device specific check */
  821. static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
  822. {
  823. if (!(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS))
  824. return true;
  825. return false;
  826. }
  827. #else
  828. static int reg_ignore_cell_hint(struct regulatory_request *pending_request)
  829. {
  830. return -EOPNOTSUPP;
  831. }
  832. static int reg_dev_ignore_cell_hint(struct wiphy *wiphy)
  833. {
  834. return true;
  835. }
  836. #endif
  837. static bool ignore_reg_update(struct wiphy *wiphy,
  838. enum nl80211_reg_initiator initiator)
  839. {
  840. if (!last_request) {
  841. REG_DBG_PRINT("Ignoring regulatory request %s since "
  842. "last_request is not set\n",
  843. reg_initiator_name(initiator));
  844. return true;
  845. }
  846. if (initiator == NL80211_REGDOM_SET_BY_CORE &&
  847. wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) {
  848. REG_DBG_PRINT("Ignoring regulatory request %s "
  849. "since the driver uses its own custom "
  850. "regulatory domain\n",
  851. reg_initiator_name(initiator));
  852. return true;
  853. }
  854. /*
  855. * wiphy->regd will be set once the device has its own
  856. * desired regulatory domain set
  857. */
  858. if (wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY && !wiphy->regd &&
  859. initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
  860. !is_world_regdom(last_request->alpha2)) {
  861. REG_DBG_PRINT("Ignoring regulatory request %s "
  862. "since the driver requires its own regulatory "
  863. "domain to be set first\n",
  864. reg_initiator_name(initiator));
  865. return true;
  866. }
  867. if (reg_request_cell_base(last_request))
  868. return reg_dev_ignore_cell_hint(wiphy);
  869. return false;
  870. }
  871. static void handle_reg_beacon(struct wiphy *wiphy,
  872. unsigned int chan_idx,
  873. struct reg_beacon *reg_beacon)
  874. {
  875. struct ieee80211_supported_band *sband;
  876. struct ieee80211_channel *chan;
  877. bool channel_changed = false;
  878. struct ieee80211_channel chan_before;
  879. assert_cfg80211_lock();
  880. sband = wiphy->bands[reg_beacon->chan.band];
  881. chan = &sband->channels[chan_idx];
  882. if (likely(chan->center_freq != reg_beacon->chan.center_freq))
  883. return;
  884. if (chan->beacon_found)
  885. return;
  886. chan->beacon_found = true;
  887. if (wiphy->flags & WIPHY_FLAG_DISABLE_BEACON_HINTS)
  888. return;
  889. chan_before.center_freq = chan->center_freq;
  890. chan_before.flags = chan->flags;
  891. if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) {
  892. chan->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN;
  893. channel_changed = true;
  894. }
  895. if (chan->flags & IEEE80211_CHAN_NO_IBSS) {
  896. chan->flags &= ~IEEE80211_CHAN_NO_IBSS;
  897. channel_changed = true;
  898. }
  899. if (channel_changed)
  900. nl80211_send_beacon_hint_event(wiphy, &chan_before, chan);
  901. }
  902. /*
  903. * Called when a scan on a wiphy finds a beacon on
  904. * new channel
  905. */
  906. static void wiphy_update_new_beacon(struct wiphy *wiphy,
  907. struct reg_beacon *reg_beacon)
  908. {
  909. unsigned int i;
  910. struct ieee80211_supported_band *sband;
  911. assert_cfg80211_lock();
  912. if (!wiphy->bands[reg_beacon->chan.band])
  913. return;
  914. sband = wiphy->bands[reg_beacon->chan.band];
  915. for (i = 0; i < sband->n_channels; i++)
  916. handle_reg_beacon(wiphy, i, reg_beacon);
  917. }
  918. /*
  919. * Called upon reg changes or a new wiphy is added
  920. */
  921. static void wiphy_update_beacon_reg(struct wiphy *wiphy)
  922. {
  923. unsigned int i;
  924. struct ieee80211_supported_band *sband;
  925. struct reg_beacon *reg_beacon;
  926. assert_cfg80211_lock();
  927. if (list_empty(&reg_beacon_list))
  928. return;
  929. list_for_each_entry(reg_beacon, &reg_beacon_list, list) {
  930. if (!wiphy->bands[reg_beacon->chan.band])
  931. continue;
  932. sband = wiphy->bands[reg_beacon->chan.band];
  933. for (i = 0; i < sband->n_channels; i++)
  934. handle_reg_beacon(wiphy, i, reg_beacon);
  935. }
  936. }
  937. static bool reg_is_world_roaming(struct wiphy *wiphy)
  938. {
  939. if (is_world_regdom(cfg80211_regdomain->alpha2) ||
  940. (wiphy->regd && is_world_regdom(wiphy->regd->alpha2)))
  941. return true;
  942. if (last_request &&
  943. last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
  944. wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY)
  945. return true;
  946. return false;
  947. }
  948. /* Reap the advantages of previously found beacons */
  949. static void reg_process_beacons(struct wiphy *wiphy)
  950. {
  951. /*
  952. * Means we are just firing up cfg80211, so no beacons would
  953. * have been processed yet.
  954. */
  955. if (!last_request)
  956. return;
  957. if (!reg_is_world_roaming(wiphy))
  958. return;
  959. wiphy_update_beacon_reg(wiphy);
  960. }
  961. static bool is_ht40_not_allowed(struct ieee80211_channel *chan)
  962. {
  963. if (!chan)
  964. return true;
  965. if (chan->flags & IEEE80211_CHAN_DISABLED)
  966. return true;
  967. /* This would happen when regulatory rules disallow HT40 completely */
  968. if (IEEE80211_CHAN_NO_HT40 == (chan->flags & (IEEE80211_CHAN_NO_HT40)))
  969. return true;
  970. return false;
  971. }
  972. static void reg_process_ht_flags_channel(struct wiphy *wiphy,
  973. enum ieee80211_band band,
  974. unsigned int chan_idx)
  975. {
  976. struct ieee80211_supported_band *sband;
  977. struct ieee80211_channel *channel;
  978. struct ieee80211_channel *channel_before = NULL, *channel_after = NULL;
  979. unsigned int i;
  980. assert_cfg80211_lock();
  981. sband = wiphy->bands[band];
  982. BUG_ON(chan_idx >= sband->n_channels);
  983. channel = &sband->channels[chan_idx];
  984. if (is_ht40_not_allowed(channel)) {
  985. channel->flags |= IEEE80211_CHAN_NO_HT40;
  986. return;
  987. }
  988. /*
  989. * We need to ensure the extension channels exist to
  990. * be able to use HT40- or HT40+, this finds them (or not)
  991. */
  992. for (i = 0; i < sband->n_channels; i++) {
  993. struct ieee80211_channel *c = &sband->channels[i];
  994. if (c->center_freq == (channel->center_freq - 20))
  995. channel_before = c;
  996. if (c->center_freq == (channel->center_freq + 20))
  997. channel_after = c;
  998. }
  999. /*
  1000. * Please note that this assumes target bandwidth is 20 MHz,
  1001. * if that ever changes we also need to change the below logic
  1002. * to include that as well.
  1003. */
  1004. if (is_ht40_not_allowed(channel_before))
  1005. channel->flags |= IEEE80211_CHAN_NO_HT40MINUS;
  1006. else
  1007. channel->flags &= ~IEEE80211_CHAN_NO_HT40MINUS;
  1008. if (is_ht40_not_allowed(channel_after))
  1009. channel->flags |= IEEE80211_CHAN_NO_HT40PLUS;
  1010. else
  1011. channel->flags &= ~IEEE80211_CHAN_NO_HT40PLUS;
  1012. }
  1013. static void reg_process_ht_flags_band(struct wiphy *wiphy,
  1014. enum ieee80211_band band)
  1015. {
  1016. unsigned int i;
  1017. struct ieee80211_supported_band *sband;
  1018. BUG_ON(!wiphy->bands[band]);
  1019. sband = wiphy->bands[band];
  1020. for (i = 0; i < sband->n_channels; i++)
  1021. reg_process_ht_flags_channel(wiphy, band, i);
  1022. }
  1023. static void reg_process_ht_flags(struct wiphy *wiphy)
  1024. {
  1025. enum ieee80211_band band;
  1026. if (!wiphy)
  1027. return;
  1028. for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
  1029. if (wiphy->bands[band])
  1030. reg_process_ht_flags_band(wiphy, band);
  1031. }
  1032. }
  1033. static void wiphy_update_regulatory(struct wiphy *wiphy,
  1034. enum nl80211_reg_initiator initiator)
  1035. {
  1036. enum ieee80211_band band;
  1037. assert_reg_lock();
  1038. if (ignore_reg_update(wiphy, initiator))
  1039. return;
  1040. last_request->dfs_region = cfg80211_regdomain->dfs_region;
  1041. for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
  1042. if (wiphy->bands[band])
  1043. handle_band(wiphy, band, initiator);
  1044. }
  1045. reg_process_beacons(wiphy);
  1046. reg_process_ht_flags(wiphy);
  1047. if (wiphy->reg_notifier)
  1048. wiphy->reg_notifier(wiphy, last_request);
  1049. }
  1050. static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
  1051. {
  1052. struct cfg80211_registered_device *rdev;
  1053. struct wiphy *wiphy;
  1054. list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
  1055. wiphy = &rdev->wiphy;
  1056. wiphy_update_regulatory(wiphy, initiator);
  1057. /*
  1058. * Regulatory updates set by CORE are ignored for custom
  1059. * regulatory cards. Let us notify the changes to the driver,
  1060. * as some drivers used this to restore its orig_* reg domain.
  1061. */
  1062. if (initiator == NL80211_REGDOM_SET_BY_CORE &&
  1063. wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY &&
  1064. wiphy->reg_notifier)
  1065. wiphy->reg_notifier(wiphy, last_request);
  1066. }
  1067. }
  1068. static void handle_channel_custom(struct wiphy *wiphy,
  1069. enum ieee80211_band band,
  1070. unsigned int chan_idx,
  1071. const struct ieee80211_regdomain *regd)
  1072. {
  1073. int r;
  1074. u32 desired_bw_khz = MHZ_TO_KHZ(20);
  1075. u32 bw_flags = 0;
  1076. const struct ieee80211_reg_rule *reg_rule = NULL;
  1077. const struct ieee80211_power_rule *power_rule = NULL;
  1078. const struct ieee80211_freq_range *freq_range = NULL;
  1079. struct ieee80211_supported_band *sband;
  1080. struct ieee80211_channel *chan;
  1081. assert_reg_lock();
  1082. sband = wiphy->bands[band];
  1083. BUG_ON(chan_idx >= sband->n_channels);
  1084. chan = &sband->channels[chan_idx];
  1085. r = freq_reg_info_regd(wiphy,
  1086. MHZ_TO_KHZ(chan->center_freq),
  1087. desired_bw_khz,
  1088. &reg_rule,
  1089. regd);
  1090. if (r) {
  1091. REG_DBG_PRINT("Disabling freq %d MHz as custom "
  1092. "regd has no rule that fits a %d MHz "
  1093. "wide channel\n",
  1094. chan->center_freq,
  1095. KHZ_TO_MHZ(desired_bw_khz));
  1096. chan->flags = IEEE80211_CHAN_DISABLED;
  1097. return;
  1098. }
  1099. chan_reg_rule_print_dbg(chan, desired_bw_khz, reg_rule);
  1100. power_rule = &reg_rule->power_rule;
  1101. freq_range = &reg_rule->freq_range;
  1102. if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
  1103. bw_flags = IEEE80211_CHAN_NO_HT40;
  1104. chan->flags |= map_regdom_flags(reg_rule->flags) | bw_flags;
  1105. chan->max_antenna_gain = (int) MBI_TO_DBI(power_rule->max_antenna_gain);
  1106. chan->max_power = (int) MBM_TO_DBM(power_rule->max_eirp);
  1107. }
  1108. static void handle_band_custom(struct wiphy *wiphy, enum ieee80211_band band,
  1109. const struct ieee80211_regdomain *regd)
  1110. {
  1111. unsigned int i;
  1112. struct ieee80211_supported_band *sband;
  1113. BUG_ON(!wiphy->bands[band]);
  1114. sband = wiphy->bands[band];
  1115. for (i = 0; i < sband->n_channels; i++)
  1116. handle_channel_custom(wiphy, band, i, regd);
  1117. }
  1118. /* Used by drivers prior to wiphy registration */
  1119. void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
  1120. const struct ieee80211_regdomain *regd)
  1121. {
  1122. enum ieee80211_band band;
  1123. unsigned int bands_set = 0;
  1124. mutex_lock(&reg_mutex);
  1125. for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
  1126. if (!wiphy->bands[band])
  1127. continue;
  1128. handle_band_custom(wiphy, band, regd);
  1129. bands_set++;
  1130. }
  1131. mutex_unlock(&reg_mutex);
  1132. /*
  1133. * no point in calling this if it won't have any effect
  1134. * on your device's supportd bands.
  1135. */
  1136. WARN_ON(!bands_set);
  1137. }
  1138. EXPORT_SYMBOL(wiphy_apply_custom_regulatory);
  1139. /*
  1140. * Return value which can be used by ignore_request() to indicate
  1141. * it has been determined we should intersect two regulatory domains
  1142. */
  1143. #define REG_INTERSECT 1
  1144. /* This has the logic which determines when a new request
  1145. * should be ignored. */
  1146. static int ignore_request(struct wiphy *wiphy,
  1147. struct regulatory_request *pending_request)
  1148. {
  1149. struct wiphy *last_wiphy = NULL;
  1150. assert_cfg80211_lock();
  1151. /* All initial requests are respected */
  1152. if (!last_request)
  1153. return 0;
  1154. switch (pending_request->initiator) {
  1155. case NL80211_REGDOM_SET_BY_CORE:
  1156. return 0;
  1157. case NL80211_REGDOM_SET_BY_COUNTRY_IE:
  1158. if (reg_request_cell_base(last_request)) {
  1159. /* Trust a Cell base station over the AP's country IE */
  1160. if (regdom_changes(pending_request->alpha2))
  1161. return -EOPNOTSUPP;
  1162. return -EALREADY;
  1163. }
  1164. last_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
  1165. if (unlikely(!is_an_alpha2(pending_request->alpha2)))
  1166. return -EINVAL;
  1167. if (last_request->initiator ==
  1168. NL80211_REGDOM_SET_BY_COUNTRY_IE) {
  1169. if (last_wiphy != wiphy) {
  1170. /*
  1171. * Two cards with two APs claiming different
  1172. * Country IE alpha2s. We could
  1173. * intersect them, but that seems unlikely
  1174. * to be correct. Reject second one for now.
  1175. */
  1176. if (regdom_changes(pending_request->alpha2))
  1177. return -EOPNOTSUPP;
  1178. return -EALREADY;
  1179. }
  1180. /*
  1181. * Two consecutive Country IE hints on the same wiphy.
  1182. * This should be picked up early by the driver/stack
  1183. */
  1184. if (WARN_ON(regdom_changes(pending_request->alpha2)))
  1185. return 0;
  1186. return -EALREADY;
  1187. }
  1188. return 0;
  1189. case NL80211_REGDOM_SET_BY_DRIVER:
  1190. if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE) {
  1191. if (regdom_changes(pending_request->alpha2))
  1192. return 0;
  1193. return -EALREADY;
  1194. }
  1195. /*
  1196. * This would happen if you unplug and plug your card
  1197. * back in or if you add a new device for which the previously
  1198. * loaded card also agrees on the regulatory domain.
  1199. */
  1200. if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
  1201. !regdom_changes(pending_request->alpha2))
  1202. return -EALREADY;
  1203. return REG_INTERSECT;
  1204. case NL80211_REGDOM_SET_BY_USER:
  1205. if (reg_request_cell_base(pending_request))
  1206. return reg_ignore_cell_hint(pending_request);
  1207. if (reg_request_cell_base(last_request))
  1208. return -EOPNOTSUPP;
  1209. if (last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
  1210. return REG_INTERSECT;
  1211. /*
  1212. * If the user knows better the user should set the regdom
  1213. * to their country before the IE is picked up
  1214. */
  1215. if (last_request->initiator == NL80211_REGDOM_SET_BY_USER &&
  1216. last_request->intersect)
  1217. return -EOPNOTSUPP;
  1218. /*
  1219. * Process user requests only after previous user/driver/core
  1220. * requests have been processed
  1221. */
  1222. if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE ||
  1223. last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
  1224. last_request->initiator == NL80211_REGDOM_SET_BY_USER) {
  1225. if (regdom_changes(last_request->alpha2))
  1226. return -EAGAIN;
  1227. }
  1228. if (!regdom_changes(pending_request->alpha2))
  1229. return -EALREADY;
  1230. return 0;
  1231. }
  1232. return -EINVAL;
  1233. }
  1234. static void reg_set_request_processed(void)
  1235. {
  1236. bool need_more_processing = false;
  1237. last_request->processed = true;
  1238. spin_lock(&reg_requests_lock);
  1239. if (!list_empty(&reg_requests_list))
  1240. need_more_processing = true;
  1241. spin_unlock(&reg_requests_lock);
  1242. if (last_request->initiator == NL80211_REGDOM_SET_BY_USER)
  1243. cancel_delayed_work(&reg_timeout);
  1244. if (need_more_processing)
  1245. schedule_work(&reg_work);
  1246. }
  1247. /**
  1248. * __regulatory_hint - hint to the wireless core a regulatory domain
  1249. * @wiphy: if the hint comes from country information from an AP, this
  1250. * is required to be set to the wiphy that received the information
  1251. * @pending_request: the regulatory request currently being processed
  1252. *
  1253. * The Wireless subsystem can use this function to hint to the wireless core
  1254. * what it believes should be the current regulatory domain.
  1255. *
  1256. * Returns zero if all went fine, %-EALREADY if a regulatory domain had
  1257. * already been set or other standard error codes.
  1258. *
  1259. * Caller must hold &cfg80211_mutex and &reg_mutex
  1260. */
  1261. static int __regulatory_hint(struct wiphy *wiphy,
  1262. struct regulatory_request *pending_request)
  1263. {
  1264. bool intersect = false;
  1265. int r = 0;
  1266. assert_cfg80211_lock();
  1267. r = ignore_request(wiphy, pending_request);
  1268. if (r == REG_INTERSECT) {
  1269. if (pending_request->initiator ==
  1270. NL80211_REGDOM_SET_BY_DRIVER) {
  1271. r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
  1272. if (r) {
  1273. kfree(pending_request);
  1274. return r;
  1275. }
  1276. }
  1277. intersect = true;
  1278. } else if (r) {
  1279. /*
  1280. * If the regulatory domain being requested by the
  1281. * driver has already been set just copy it to the
  1282. * wiphy
  1283. */
  1284. if (r == -EALREADY &&
  1285. pending_request->initiator ==
  1286. NL80211_REGDOM_SET_BY_DRIVER) {
  1287. r = reg_copy_regd(&wiphy->regd, cfg80211_regdomain);
  1288. if (r) {
  1289. kfree(pending_request);
  1290. return r;
  1291. }
  1292. r = -EALREADY;
  1293. goto new_request;
  1294. }
  1295. kfree(pending_request);
  1296. return r;
  1297. }
  1298. new_request:
  1299. if (last_request != &core_request_world)
  1300. kfree(last_request);
  1301. last_request = pending_request;
  1302. last_request->intersect = intersect;
  1303. pending_request = NULL;
  1304. if (last_request->initiator == NL80211_REGDOM_SET_BY_USER) {
  1305. user_alpha2[0] = last_request->alpha2[0];
  1306. user_alpha2[1] = last_request->alpha2[1];
  1307. }
  1308. /* When r == REG_INTERSECT we do need to call CRDA */
  1309. if (r < 0) {
  1310. /*
  1311. * Since CRDA will not be called in this case as we already
  1312. * have applied the requested regulatory domain before we just
  1313. * inform userspace we have processed the request
  1314. */
  1315. if (r == -EALREADY) {
  1316. nl80211_send_reg_change_event(last_request);
  1317. reg_set_request_processed();
  1318. }
  1319. return r;
  1320. }
  1321. return call_crda(last_request->alpha2);
  1322. }
  1323. /* This processes *all* regulatory hints */
  1324. static void reg_process_hint(struct regulatory_request *reg_request,
  1325. enum nl80211_reg_initiator reg_initiator)
  1326. {
  1327. int r = 0;
  1328. struct wiphy *wiphy = NULL;
  1329. BUG_ON(!reg_request->alpha2);
  1330. if (wiphy_idx_valid(reg_request->wiphy_idx))
  1331. wiphy = wiphy_idx_to_wiphy(reg_request->wiphy_idx);
  1332. if (reg_initiator == NL80211_REGDOM_SET_BY_DRIVER &&
  1333. !wiphy) {
  1334. kfree(reg_request);
  1335. return;
  1336. }
  1337. r = __regulatory_hint(wiphy, reg_request);
  1338. /* This is required so that the orig_* parameters are saved */
  1339. if (r == -EALREADY && wiphy &&
  1340. wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) {
  1341. wiphy_update_regulatory(wiphy, reg_initiator);
  1342. return;
  1343. }
  1344. /*
  1345. * We only time out user hints, given that they should be the only
  1346. * source of bogus requests.
  1347. */
  1348. if (r != -EALREADY &&
  1349. reg_initiator == NL80211_REGDOM_SET_BY_USER)
  1350. schedule_delayed_work(&reg_timeout, msecs_to_jiffies(3142));
  1351. }
  1352. /*
  1353. * Processes regulatory hints, this is all the NL80211_REGDOM_SET_BY_*
  1354. * Regulatory hints come on a first come first serve basis and we
  1355. * must process each one atomically.
  1356. */
  1357. static void reg_process_pending_hints(void)
  1358. {
  1359. struct regulatory_request *reg_request;
  1360. mutex_lock(&cfg80211_mutex);
  1361. mutex_lock(&reg_mutex);
  1362. /* When last_request->processed becomes true this will be rescheduled */
  1363. if (last_request && !last_request->processed) {
  1364. REG_DBG_PRINT("Pending regulatory request, waiting "
  1365. "for it to be processed...\n");
  1366. goto out;
  1367. }
  1368. spin_lock(&reg_requests_lock);
  1369. if (list_empty(&reg_requests_list)) {
  1370. spin_unlock(&reg_requests_lock);
  1371. goto out;
  1372. }
  1373. reg_request = list_first_entry(&reg_requests_list,
  1374. struct regulatory_request,
  1375. list);
  1376. list_del_init(&reg_request->list);
  1377. spin_unlock(&reg_requests_lock);
  1378. reg_process_hint(reg_request, reg_request->initiator);
  1379. out:
  1380. mutex_unlock(&reg_mutex);
  1381. mutex_unlock(&cfg80211_mutex);
  1382. }
  1383. /* Processes beacon hints -- this has nothing to do with country IEs */
  1384. static void reg_process_pending_beacon_hints(void)
  1385. {
  1386. struct cfg80211_registered_device *rdev;
  1387. struct reg_beacon *pending_beacon, *tmp;
  1388. /*
  1389. * No need to hold the reg_mutex here as we just touch wiphys
  1390. * and do not read or access regulatory variables.
  1391. */
  1392. mutex_lock(&cfg80211_mutex);
  1393. /* This goes through the _pending_ beacon list */
  1394. spin_lock_bh(&reg_pending_beacons_lock);
  1395. if (list_empty(&reg_pending_beacons)) {
  1396. spin_unlock_bh(&reg_pending_beacons_lock);
  1397. goto out;
  1398. }
  1399. list_for_each_entry_safe(pending_beacon, tmp,
  1400. &reg_pending_beacons, list) {
  1401. list_del_init(&pending_beacon->list);
  1402. /* Applies the beacon hint to current wiphys */
  1403. list_for_each_entry(rdev, &cfg80211_rdev_list, list)
  1404. wiphy_update_new_beacon(&rdev->wiphy, pending_beacon);
  1405. /* Remembers the beacon hint for new wiphys or reg changes */
  1406. list_add_tail(&pending_beacon->list, &reg_beacon_list);
  1407. }
  1408. spin_unlock_bh(&reg_pending_beacons_lock);
  1409. out:
  1410. mutex_unlock(&cfg80211_mutex);
  1411. }
  1412. static void reg_todo(struct work_struct *work)
  1413. {
  1414. reg_process_pending_hints();
  1415. reg_process_pending_beacon_hints();
  1416. }
  1417. static void queue_regulatory_request(struct regulatory_request *request)
  1418. {
  1419. if (isalpha(request->alpha2[0]))
  1420. request->alpha2[0] = toupper(request->alpha2[0]);
  1421. if (isalpha(request->alpha2[1]))
  1422. request->alpha2[1] = toupper(request->alpha2[1]);
  1423. spin_lock(&reg_requests_lock);
  1424. list_add_tail(&request->list, &reg_requests_list);
  1425. spin_unlock(&reg_requests_lock);
  1426. schedule_work(&reg_work);
  1427. }
  1428. /*
  1429. * Core regulatory hint -- happens during cfg80211_init()
  1430. * and when we restore regulatory settings.
  1431. */
  1432. static int regulatory_hint_core(const char *alpha2)
  1433. {
  1434. struct regulatory_request *request;
  1435. request = kzalloc(sizeof(struct regulatory_request),
  1436. GFP_KERNEL);
  1437. if (!request)
  1438. return -ENOMEM;
  1439. request->alpha2[0] = alpha2[0];
  1440. request->alpha2[1] = alpha2[1];
  1441. request->initiator = NL80211_REGDOM_SET_BY_CORE;
  1442. queue_regulatory_request(request);
  1443. return 0;
  1444. }
  1445. /* User hints */
  1446. int regulatory_hint_user(const char *alpha2,
  1447. enum nl80211_user_reg_hint_type user_reg_hint_type)
  1448. {
  1449. struct regulatory_request *request;
  1450. BUG_ON(!alpha2);
  1451. request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
  1452. if (!request)
  1453. return -ENOMEM;
  1454. request->wiphy_idx = WIPHY_IDX_STALE;
  1455. request->alpha2[0] = alpha2[0];
  1456. request->alpha2[1] = alpha2[1];
  1457. request->initiator = NL80211_REGDOM_SET_BY_USER;
  1458. request->user_reg_hint_type = user_reg_hint_type;
  1459. queue_regulatory_request(request);
  1460. return 0;
  1461. }
  1462. /* Driver hints */
  1463. int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
  1464. {
  1465. struct regulatory_request *request;
  1466. BUG_ON(!alpha2);
  1467. BUG_ON(!wiphy);
  1468. request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
  1469. if (!request)
  1470. return -ENOMEM;
  1471. request->wiphy_idx = get_wiphy_idx(wiphy);
  1472. /* Must have registered wiphy first */
  1473. BUG_ON(!wiphy_idx_valid(request->wiphy_idx));
  1474. request->alpha2[0] = alpha2[0];
  1475. request->alpha2[1] = alpha2[1];
  1476. request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
  1477. queue_regulatory_request(request);
  1478. return 0;
  1479. }
  1480. EXPORT_SYMBOL(regulatory_hint);
  1481. /*
  1482. * We hold wdev_lock() here so we cannot hold cfg80211_mutex() and
  1483. * therefore cannot iterate over the rdev list here.
  1484. */
  1485. void regulatory_hint_11d(struct wiphy *wiphy,
  1486. enum ieee80211_band band,
  1487. u8 *country_ie,
  1488. u8 country_ie_len)
  1489. {
  1490. char alpha2[2];
  1491. enum environment_cap env = ENVIRON_ANY;
  1492. struct regulatory_request *request;
  1493. mutex_lock(&reg_mutex);
  1494. if (unlikely(!last_request))
  1495. goto out;
  1496. /* IE len must be evenly divisible by 2 */
  1497. if (country_ie_len & 0x01)
  1498. goto out;
  1499. if (country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
  1500. goto out;
  1501. alpha2[0] = country_ie[0];
  1502. alpha2[1] = country_ie[1];
  1503. if (country_ie[2] == 'I')
  1504. env = ENVIRON_INDOOR;
  1505. else if (country_ie[2] == 'O')
  1506. env = ENVIRON_OUTDOOR;
  1507. /*
  1508. * We will run this only upon a successful connection on cfg80211.
  1509. * We leave conflict resolution to the workqueue, where can hold
  1510. * cfg80211_mutex.
  1511. */
  1512. if (likely(last_request->initiator ==
  1513. NL80211_REGDOM_SET_BY_COUNTRY_IE &&
  1514. wiphy_idx_valid(last_request->wiphy_idx)))
  1515. goto out;
  1516. request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
  1517. if (!request)
  1518. goto out;
  1519. request->wiphy_idx = get_wiphy_idx(wiphy);
  1520. request->alpha2[0] = alpha2[0];
  1521. request->alpha2[1] = alpha2[1];
  1522. request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
  1523. request->country_ie_env = env;
  1524. mutex_unlock(&reg_mutex);
  1525. queue_regulatory_request(request);
  1526. return;
  1527. out:
  1528. mutex_unlock(&reg_mutex);
  1529. }
  1530. static void restore_alpha2(char *alpha2, bool reset_user)
  1531. {
  1532. /* indicates there is no alpha2 to consider for restoration */
  1533. alpha2[0] = '9';
  1534. alpha2[1] = '7';
  1535. /* The user setting has precedence over the module parameter */
  1536. if (is_user_regdom_saved()) {
  1537. /* Unless we're asked to ignore it and reset it */
  1538. if (reset_user) {
  1539. REG_DBG_PRINT("Restoring regulatory settings "
  1540. "including user preference\n");
  1541. user_alpha2[0] = '9';
  1542. user_alpha2[1] = '7';
  1543. /*
  1544. * If we're ignoring user settings, we still need to
  1545. * check the module parameter to ensure we put things
  1546. * back as they were for a full restore.
  1547. */
  1548. if (!is_world_regdom(ieee80211_regdom)) {
  1549. REG_DBG_PRINT("Keeping preference on "
  1550. "module parameter ieee80211_regdom: %c%c\n",
  1551. ieee80211_regdom[0],
  1552. ieee80211_regdom[1]);
  1553. alpha2[0] = ieee80211_regdom[0];
  1554. alpha2[1] = ieee80211_regdom[1];
  1555. }
  1556. } else {
  1557. REG_DBG_PRINT("Restoring regulatory settings "
  1558. "while preserving user preference for: %c%c\n",
  1559. user_alpha2[0],
  1560. user_alpha2[1]);
  1561. alpha2[0] = user_alpha2[0];
  1562. alpha2[1] = user_alpha2[1];
  1563. }
  1564. } else if (!is_world_regdom(ieee80211_regdom)) {
  1565. REG_DBG_PRINT("Keeping preference on "
  1566. "module parameter ieee80211_regdom: %c%c\n",
  1567. ieee80211_regdom[0],
  1568. ieee80211_regdom[1]);
  1569. alpha2[0] = ieee80211_regdom[0];
  1570. alpha2[1] = ieee80211_regdom[1];
  1571. } else
  1572. REG_DBG_PRINT("Restoring regulatory settings\n");
  1573. }
  1574. static void restore_custom_reg_settings(struct wiphy *wiphy)
  1575. {
  1576. struct ieee80211_supported_band *sband;
  1577. enum ieee80211_band band;
  1578. struct ieee80211_channel *chan;
  1579. int i;
  1580. for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
  1581. sband = wiphy->bands[band];
  1582. if (!sband)
  1583. continue;
  1584. for (i = 0; i < sband->n_channels; i++) {
  1585. chan = &sband->channels[i];
  1586. chan->flags = chan->orig_flags;
  1587. chan->max_antenna_gain = chan->orig_mag;
  1588. chan->max_power = chan->orig_mpwr;
  1589. }
  1590. }
  1591. }
  1592. /*
  1593. * Restoring regulatory settings involves ingoring any
  1594. * possibly stale country IE information and user regulatory
  1595. * settings if so desired, this includes any beacon hints
  1596. * learned as we could have traveled outside to another country
  1597. * after disconnection. To restore regulatory settings we do
  1598. * exactly what we did at bootup:
  1599. *
  1600. * - send a core regulatory hint
  1601. * - send a user regulatory hint if applicable
  1602. *
  1603. * Device drivers that send a regulatory hint for a specific country
  1604. * keep their own regulatory domain on wiphy->regd so that does does
  1605. * not need to be remembered.
  1606. */
  1607. static void restore_regulatory_settings(bool reset_user)
  1608. {
  1609. char alpha2[2];
  1610. char world_alpha2[2];
  1611. struct reg_beacon *reg_beacon, *btmp;
  1612. struct regulatory_request *reg_request, *tmp;
  1613. LIST_HEAD(tmp_reg_req_list);
  1614. struct cfg80211_registered_device *rdev;
  1615. mutex_lock(&cfg80211_mutex);
  1616. mutex_lock(&reg_mutex);
  1617. reset_regdomains(true);
  1618. restore_alpha2(alpha2, reset_user);
  1619. /*
  1620. * If there's any pending requests we simply
  1621. * stash them to a temporary pending queue and
  1622. * add then after we've restored regulatory
  1623. * settings.
  1624. */
  1625. spin_lock(&reg_requests_lock);
  1626. if (!list_empty(&reg_requests_list)) {
  1627. list_for_each_entry_safe(reg_request, tmp,
  1628. &reg_requests_list, list) {
  1629. if (reg_request->initiator !=
  1630. NL80211_REGDOM_SET_BY_USER)
  1631. continue;
  1632. list_del(&reg_request->list);
  1633. list_add_tail(&reg_request->list, &tmp_reg_req_list);
  1634. }
  1635. }
  1636. spin_unlock(&reg_requests_lock);
  1637. /* Clear beacon hints */
  1638. spin_lock_bh(&reg_pending_beacons_lock);
  1639. if (!list_empty(&reg_pending_beacons)) {
  1640. list_for_each_entry_safe(reg_beacon, btmp,
  1641. &reg_pending_beacons, list) {
  1642. list_del(&reg_beacon->list);
  1643. kfree(reg_beacon);
  1644. }
  1645. }
  1646. spin_unlock_bh(&reg_pending_beacons_lock);
  1647. if (!list_empty(&reg_beacon_list)) {
  1648. list_for_each_entry_safe(reg_beacon, btmp,
  1649. &reg_beacon_list, list) {
  1650. list_del(&reg_beacon->list);
  1651. kfree(reg_beacon);
  1652. }
  1653. }
  1654. /* First restore to the basic regulatory settings */
  1655. cfg80211_regdomain = cfg80211_world_regdom;
  1656. world_alpha2[0] = cfg80211_regdomain->alpha2[0];
  1657. world_alpha2[1] = cfg80211_regdomain->alpha2[1];
  1658. list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
  1659. if (rdev->wiphy.flags & WIPHY_FLAG_CUSTOM_REGULATORY)
  1660. restore_custom_reg_settings(&rdev->wiphy);
  1661. }
  1662. mutex_unlock(&reg_mutex);
  1663. mutex_unlock(&cfg80211_mutex);
  1664. regulatory_hint_core(world_alpha2);
  1665. /*
  1666. * This restores the ieee80211_regdom module parameter
  1667. * preference or the last user requested regulatory
  1668. * settings, user regulatory settings takes precedence.
  1669. */
  1670. if (is_an_alpha2(alpha2))
  1671. regulatory_hint_user(user_alpha2, NL80211_USER_REG_HINT_USER);
  1672. if (list_empty(&tmp_reg_req_list))
  1673. return;
  1674. mutex_lock(&cfg80211_mutex);
  1675. mutex_lock(&reg_mutex);
  1676. spin_lock(&reg_requests_lock);
  1677. list_for_each_entry_safe(reg_request, tmp, &tmp_reg_req_list, list) {
  1678. REG_DBG_PRINT("Adding request for country %c%c back "
  1679. "into the queue\n",
  1680. reg_request->alpha2[0],
  1681. reg_request->alpha2[1]);
  1682. list_del(&reg_request->list);
  1683. list_add_tail(&reg_request->list, &reg_requests_list);
  1684. }
  1685. spin_unlock(&reg_requests_lock);
  1686. mutex_unlock(&reg_mutex);
  1687. mutex_unlock(&cfg80211_mutex);
  1688. REG_DBG_PRINT("Kicking the queue\n");
  1689. schedule_work(&reg_work);
  1690. }
  1691. void regulatory_hint_disconnect(void)
  1692. {
  1693. REG_DBG_PRINT("All devices are disconnected, going to "
  1694. "restore regulatory settings\n");
  1695. restore_regulatory_settings(false);
  1696. }
  1697. static bool freq_is_chan_12_13_14(u16 freq)
  1698. {
  1699. if (freq == ieee80211_channel_to_frequency(12, IEEE80211_BAND_2GHZ) ||
  1700. freq == ieee80211_channel_to_frequency(13, IEEE80211_BAND_2GHZ) ||
  1701. freq == ieee80211_channel_to_frequency(14, IEEE80211_BAND_2GHZ))
  1702. return true;
  1703. return false;
  1704. }
  1705. int regulatory_hint_found_beacon(struct wiphy *wiphy,
  1706. struct ieee80211_channel *beacon_chan,
  1707. gfp_t gfp)
  1708. {
  1709. struct reg_beacon *reg_beacon;
  1710. if (likely((beacon_chan->beacon_found ||
  1711. (beacon_chan->flags & IEEE80211_CHAN_RADAR) ||
  1712. (beacon_chan->band == IEEE80211_BAND_2GHZ &&
  1713. !freq_is_chan_12_13_14(beacon_chan->center_freq)))))
  1714. return 0;
  1715. reg_beacon = kzalloc(sizeof(struct reg_beacon), gfp);
  1716. if (!reg_beacon)
  1717. return -ENOMEM;
  1718. REG_DBG_PRINT("Found new beacon on "
  1719. "frequency: %d MHz (Ch %d) on %s\n",
  1720. beacon_chan->center_freq,
  1721. ieee80211_frequency_to_channel(beacon_chan->center_freq),
  1722. wiphy_name(wiphy));
  1723. memcpy(&reg_beacon->chan, beacon_chan,
  1724. sizeof(struct ieee80211_channel));
  1725. /*
  1726. * Since we can be called from BH or and non-BH context
  1727. * we must use spin_lock_bh()
  1728. */
  1729. spin_lock_bh(&reg_pending_beacons_lock);
  1730. list_add_tail(&reg_beacon->list, &reg_pending_beacons);
  1731. spin_unlock_bh(&reg_pending_beacons_lock);
  1732. schedule_work(&reg_work);
  1733. return 0;
  1734. }
  1735. static void print_rd_rules(const struct ieee80211_regdomain *rd)
  1736. {
  1737. unsigned int i;
  1738. const struct ieee80211_reg_rule *reg_rule = NULL;
  1739. const struct ieee80211_freq_range *freq_range = NULL;
  1740. const struct ieee80211_power_rule *power_rule = NULL;
  1741. pr_info(" (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)\n");
  1742. for (i = 0; i < rd->n_reg_rules; i++) {
  1743. reg_rule = &rd->reg_rules[i];
  1744. freq_range = &reg_rule->freq_range;
  1745. power_rule = &reg_rule->power_rule;
  1746. /*
  1747. * There may not be documentation for max antenna gain
  1748. * in certain regions
  1749. */
  1750. if (power_rule->max_antenna_gain)
  1751. pr_info(" (%d KHz - %d KHz @ %d KHz), (%d mBi, %d mBm)\n",
  1752. freq_range->start_freq_khz,
  1753. freq_range->end_freq_khz,
  1754. freq_range->max_bandwidth_khz,
  1755. power_rule->max_antenna_gain,
  1756. power_rule->max_eirp);
  1757. else
  1758. pr_info(" (%d KHz - %d KHz @ %d KHz), (N/A, %d mBm)\n",
  1759. freq_range->start_freq_khz,
  1760. freq_range->end_freq_khz,
  1761. freq_range->max_bandwidth_khz,
  1762. power_rule->max_eirp);
  1763. }
  1764. }
  1765. bool reg_supported_dfs_region(u8 dfs_region)
  1766. {
  1767. switch (dfs_region) {
  1768. case NL80211_DFS_UNSET:
  1769. case NL80211_DFS_FCC:
  1770. case NL80211_DFS_ETSI:
  1771. case NL80211_DFS_JP:
  1772. return true;
  1773. default:
  1774. REG_DBG_PRINT("Ignoring uknown DFS master region: %d\n",
  1775. dfs_region);
  1776. return false;
  1777. }
  1778. }
  1779. static void print_dfs_region(u8 dfs_region)
  1780. {
  1781. if (!dfs_region)
  1782. return;
  1783. switch (dfs_region) {
  1784. case NL80211_DFS_FCC:
  1785. pr_info(" DFS Master region FCC");
  1786. break;
  1787. case NL80211_DFS_ETSI:
  1788. pr_info(" DFS Master region ETSI");
  1789. break;
  1790. case NL80211_DFS_JP:
  1791. pr_info(" DFS Master region JP");
  1792. break;
  1793. default:
  1794. pr_info(" DFS Master region Uknown");
  1795. break;
  1796. }
  1797. }
  1798. static void print_regdomain(const struct ieee80211_regdomain *rd)
  1799. {
  1800. if (is_intersected_alpha2(rd->alpha2)) {
  1801. if (last_request->initiator ==
  1802. NL80211_REGDOM_SET_BY_COUNTRY_IE) {
  1803. struct cfg80211_registered_device *rdev;
  1804. rdev = cfg80211_rdev_by_wiphy_idx(
  1805. last_request->wiphy_idx);
  1806. if (rdev) {
  1807. pr_info("Current regulatory domain updated by AP to: %c%c\n",
  1808. rdev->country_ie_alpha2[0],
  1809. rdev->country_ie_alpha2[1]);
  1810. } else
  1811. pr_info("Current regulatory domain intersected:\n");
  1812. } else
  1813. pr_info("Current regulatory domain intersected:\n");
  1814. } else if (is_world_regdom(rd->alpha2))
  1815. pr_info("World regulatory domain updated:\n");
  1816. else {
  1817. if (is_unknown_alpha2(rd->alpha2))
  1818. pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n");
  1819. else {
  1820. if (reg_request_cell_base(last_request))
  1821. pr_info("Regulatory domain changed "
  1822. "to country: %c%c by Cell Station\n",
  1823. rd->alpha2[0], rd->alpha2[1]);
  1824. else
  1825. pr_info("Regulatory domain changed "
  1826. "to country: %c%c\n",
  1827. rd->alpha2[0], rd->alpha2[1]);
  1828. }
  1829. }
  1830. print_dfs_region(rd->dfs_region);
  1831. print_rd_rules(rd);
  1832. }
  1833. static void print_regdomain_info(const struct ieee80211_regdomain *rd)
  1834. {
  1835. pr_info("Regulatory domain: %c%c\n", rd->alpha2[0], rd->alpha2[1]);
  1836. print_rd_rules(rd);
  1837. }
  1838. /* Takes ownership of rd only if it doesn't fail */
  1839. static int __set_regdom(const struct ieee80211_regdomain *rd)
  1840. {
  1841. const struct ieee80211_regdomain *intersected_rd = NULL;
  1842. struct cfg80211_registered_device *rdev = NULL;
  1843. struct wiphy *request_wiphy;
  1844. /* Some basic sanity checks first */
  1845. if (is_world_regdom(rd->alpha2)) {
  1846. if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
  1847. return -EINVAL;
  1848. update_world_regdomain(rd);
  1849. return 0;
  1850. }
  1851. if (!is_alpha2_set(rd->alpha2) && !is_an_alpha2(rd->alpha2) &&
  1852. !is_unknown_alpha2(rd->alpha2))
  1853. return -EINVAL;
  1854. if (!last_request)
  1855. return -EINVAL;
  1856. /*
  1857. * Lets only bother proceeding on the same alpha2 if the current
  1858. * rd is non static (it means CRDA was present and was used last)
  1859. * and the pending request came in from a country IE
  1860. */
  1861. if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
  1862. /*
  1863. * If someone else asked us to change the rd lets only bother
  1864. * checking if the alpha2 changes if CRDA was already called
  1865. */
  1866. if (!regdom_changes(rd->alpha2))
  1867. return -EALREADY;
  1868. }
  1869. /*
  1870. * Now lets set the regulatory domain, update all driver channels
  1871. * and finally inform them of what we have done, in case they want
  1872. * to review or adjust their own settings based on their own
  1873. * internal EEPROM data
  1874. */
  1875. if (WARN_ON(!reg_is_valid_request(rd->alpha2)))
  1876. return -EINVAL;
  1877. if (!is_valid_rd(rd)) {
  1878. pr_err("Invalid regulatory domain detected:\n");
  1879. print_regdomain_info(rd);
  1880. return -EINVAL;
  1881. }
  1882. request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
  1883. if (!request_wiphy &&
  1884. (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
  1885. last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)) {
  1886. schedule_delayed_work(&reg_timeout, 0);
  1887. return -ENODEV;
  1888. }
  1889. if (!last_request->intersect) {
  1890. int r;
  1891. if (last_request->initiator != NL80211_REGDOM_SET_BY_DRIVER) {
  1892. reset_regdomains(false);
  1893. cfg80211_regdomain = rd;
  1894. return 0;
  1895. }
  1896. /*
  1897. * For a driver hint, lets copy the regulatory domain the
  1898. * driver wanted to the wiphy to deal with conflicts
  1899. */
  1900. /*
  1901. * Userspace could have sent two replies with only
  1902. * one kernel request.
  1903. */
  1904. if (request_wiphy->regd)
  1905. return -EALREADY;
  1906. r = reg_copy_regd(&request_wiphy->regd, rd);
  1907. if (r)
  1908. return r;
  1909. reset_regdomains(false);
  1910. cfg80211_regdomain = rd;
  1911. return 0;
  1912. }
  1913. /* Intersection requires a bit more work */
  1914. if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
  1915. intersected_rd = regdom_intersect(rd, cfg80211_regdomain);
  1916. if (!intersected_rd)
  1917. return -EINVAL;
  1918. /*
  1919. * We can trash what CRDA provided now.
  1920. * However if a driver requested this specific regulatory
  1921. * domain we keep it for its private use
  1922. */
  1923. if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER)
  1924. request_wiphy->regd = rd;
  1925. else
  1926. kfree(rd);
  1927. rd = NULL;
  1928. reset_regdomains(false);
  1929. cfg80211_regdomain = intersected_rd;
  1930. return 0;
  1931. }
  1932. if (!intersected_rd)
  1933. return -EINVAL;
  1934. rdev = wiphy_to_dev(request_wiphy);
  1935. rdev->country_ie_alpha2[0] = rd->alpha2[0];
  1936. rdev->country_ie_alpha2[1] = rd->alpha2[1];
  1937. rdev->env = last_request->country_ie_env;
  1938. BUG_ON(intersected_rd == rd);
  1939. kfree(rd);
  1940. rd = NULL;
  1941. reset_regdomains(false);
  1942. cfg80211_regdomain = intersected_rd;
  1943. return 0;
  1944. }
  1945. /*
  1946. * Use this call to set the current regulatory domain. Conflicts with
  1947. * multiple drivers can be ironed out later. Caller must've already
  1948. * kmalloc'd the rd structure. Caller must hold cfg80211_mutex
  1949. */
  1950. int set_regdom(const struct ieee80211_regdomain *rd)
  1951. {
  1952. int r;
  1953. assert_cfg80211_lock();
  1954. mutex_lock(&reg_mutex);
  1955. /* Note that this doesn't update the wiphys, this is done below */
  1956. r = __set_regdom(rd);
  1957. if (r) {
  1958. if (r == -EALREADY)
  1959. reg_set_request_processed();
  1960. kfree(rd);
  1961. mutex_unlock(&reg_mutex);
  1962. return r;
  1963. }
  1964. /* This would make this whole thing pointless */
  1965. if (!last_request->intersect)
  1966. BUG_ON(rd != cfg80211_regdomain);
  1967. /* update all wiphys now with the new established regulatory domain */
  1968. update_all_wiphy_regulatory(last_request->initiator);
  1969. print_regdomain(cfg80211_regdomain);
  1970. nl80211_send_reg_change_event(last_request);
  1971. reg_set_request_processed();
  1972. mutex_unlock(&reg_mutex);
  1973. return r;
  1974. }
  1975. #ifdef CONFIG_HOTPLUG
  1976. int reg_device_uevent(struct device *dev, struct kobj_uevent_env *env)
  1977. {
  1978. if (last_request && !last_request->processed) {
  1979. if (add_uevent_var(env, "COUNTRY=%c%c",
  1980. last_request->alpha2[0],
  1981. last_request->alpha2[1]))
  1982. return -ENOMEM;
  1983. }
  1984. return 0;
  1985. }
  1986. #else
  1987. int reg_device_uevent(struct device *dev, struct kobj_uevent_env *env)
  1988. {
  1989. return -ENODEV;
  1990. }
  1991. #endif /* CONFIG_HOTPLUG */
  1992. void wiphy_regulatory_register(struct wiphy *wiphy)
  1993. {
  1994. assert_cfg80211_lock();
  1995. mutex_lock(&reg_mutex);
  1996. if (!reg_dev_ignore_cell_hint(wiphy))
  1997. reg_num_devs_support_basehint++;
  1998. wiphy_update_regulatory(wiphy, NL80211_REGDOM_SET_BY_CORE);
  1999. mutex_unlock(&reg_mutex);
  2000. }
  2001. /* Caller must hold cfg80211_mutex */
  2002. void wiphy_regulatory_deregister(struct wiphy *wiphy)
  2003. {
  2004. struct wiphy *request_wiphy = NULL;
  2005. assert_cfg80211_lock();
  2006. mutex_lock(&reg_mutex);
  2007. if (!reg_dev_ignore_cell_hint(wiphy))
  2008. reg_num_devs_support_basehint--;
  2009. kfree(wiphy->regd);
  2010. if (last_request)
  2011. request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx);
  2012. if (!request_wiphy || request_wiphy != wiphy)
  2013. goto out;
  2014. last_request->wiphy_idx = WIPHY_IDX_STALE;
  2015. last_request->country_ie_env = ENVIRON_ANY;
  2016. out:
  2017. mutex_unlock(&reg_mutex);
  2018. }
  2019. static void reg_timeout_work(struct work_struct *work)
  2020. {
  2021. REG_DBG_PRINT("Timeout while waiting for CRDA to reply, "
  2022. "restoring regulatory settings\n");
  2023. restore_regulatory_settings(true);
  2024. }
  2025. int __init regulatory_init(void)
  2026. {
  2027. int err = 0;
  2028. reg_pdev = platform_device_register_simple("regulatory", 0, NULL, 0);
  2029. if (IS_ERR(reg_pdev))
  2030. return PTR_ERR(reg_pdev);
  2031. reg_pdev->dev.type = &reg_device_type;
  2032. spin_lock_init(&reg_requests_lock);
  2033. spin_lock_init(&reg_pending_beacons_lock);
  2034. reg_regdb_size_check();
  2035. cfg80211_regdomain = cfg80211_world_regdom;
  2036. user_alpha2[0] = '9';
  2037. user_alpha2[1] = '7';
  2038. /* We always try to get an update for the static regdomain */
  2039. err = regulatory_hint_core(cfg80211_regdomain->alpha2);
  2040. if (err) {
  2041. if (err == -ENOMEM)
  2042. return err;
  2043. /*
  2044. * N.B. kobject_uevent_env() can fail mainly for when we're out
  2045. * memory which is handled and propagated appropriately above
  2046. * but it can also fail during a netlink_broadcast() or during
  2047. * early boot for call_usermodehelper(). For now treat these
  2048. * errors as non-fatal.
  2049. */
  2050. pr_err("kobject_uevent_env() was unable to call CRDA during init\n");
  2051. #ifdef CONFIG_CFG80211_REG_DEBUG
  2052. /* We want to find out exactly why when debugging */
  2053. WARN_ON(err);
  2054. #endif
  2055. }
  2056. /*
  2057. * Finally, if the user set the module parameter treat it
  2058. * as a user hint.
  2059. */
  2060. if (!is_world_regdom(ieee80211_regdom))
  2061. regulatory_hint_user(ieee80211_regdom,
  2062. NL80211_USER_REG_HINT_USER);
  2063. return 0;
  2064. }
  2065. void /* __init_or_exit */ regulatory_exit(void)
  2066. {
  2067. struct regulatory_request *reg_request, *tmp;
  2068. struct reg_beacon *reg_beacon, *btmp;
  2069. cancel_work_sync(&reg_work);
  2070. cancel_delayed_work_sync(&reg_timeout);
  2071. mutex_lock(&cfg80211_mutex);
  2072. mutex_lock(&reg_mutex);
  2073. reset_regdomains(true);
  2074. dev_set_uevent_suppress(&reg_pdev->dev, true);
  2075. platform_device_unregister(reg_pdev);
  2076. spin_lock_bh(&reg_pending_beacons_lock);
  2077. if (!list_empty(&reg_pending_beacons)) {
  2078. list_for_each_entry_safe(reg_beacon, btmp,
  2079. &reg_pending_beacons, list) {
  2080. list_del(&reg_beacon->list);
  2081. kfree(reg_beacon);
  2082. }
  2083. }
  2084. spin_unlock_bh(&reg_pending_beacons_lock);
  2085. if (!list_empty(&reg_beacon_list)) {
  2086. list_for_each_entry_safe(reg_beacon, btmp,
  2087. &reg_beacon_list, list) {
  2088. list_del(&reg_beacon->list);
  2089. kfree(reg_beacon);
  2090. }
  2091. }
  2092. spin_lock(&reg_requests_lock);
  2093. if (!list_empty(&reg_requests_list)) {
  2094. list_for_each_entry_safe(reg_request, tmp,
  2095. &reg_requests_list, list) {
  2096. list_del(&reg_request->list);
  2097. kfree(reg_request);
  2098. }
  2099. }
  2100. spin_unlock(&reg_requests_lock);
  2101. mutex_unlock(&reg_mutex);
  2102. mutex_unlock(&cfg80211_mutex);
  2103. }