reg.c 59 KB

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