acs.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825
  1. /*
  2. * ACS - Automatic Channel Selection module
  3. * Copyright (c) 2011, Atheros Communications
  4. * Copyright (c) 2013, Qualcomm Atheros, Inc.
  5. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #include "utils/includes.h"
  10. #include <math.h>
  11. #include "utils/common.h"
  12. #include "utils/list.h"
  13. #include "common/ieee802_11_defs.h"
  14. #include "common/wpa_ctrl.h"
  15. #include "drivers/driver.h"
  16. #include "hostapd.h"
  17. #include "ap_drv_ops.h"
  18. #include "ap_config.h"
  19. #include "hw_features.h"
  20. #include "acs.h"
  21. /*
  22. * Automatic Channel Selection
  23. * ===========================
  24. *
  25. * More info at
  26. * ------------
  27. * http://wireless.kernel.org/en/users/Documentation/acs
  28. *
  29. * How to use
  30. * ----------
  31. * - make sure you have CONFIG_ACS=y in hostapd's .config
  32. * - use channel=0 or channel=acs to enable ACS
  33. *
  34. * How does it work
  35. * ----------------
  36. * 1. passive scans are used to collect survey data
  37. * (it is assumed that scan trigger collection of survey data in driver)
  38. * 2. interference factor is calculated for each channel
  39. * 3. ideal channel is picked depending on channel width by using adjacent
  40. * channel interference factors
  41. *
  42. * Known limitations
  43. * -----------------
  44. * - Current implementation depends heavily on the amount of time willing to
  45. * spend gathering survey data during hostapd startup. Short traffic bursts
  46. * may be missed and a suboptimal channel may be picked.
  47. * - Ideal channel may end up overlapping a channel with 40 MHz intolerant BSS
  48. *
  49. * Todo / Ideas
  50. * ------------
  51. * - implement other interference computation methods
  52. * - BSS/RSSI based
  53. * - spectral scan based
  54. * (should be possibly to hook this up with current ACS scans)
  55. * - add wpa_supplicant support (for P2P)
  56. * - collect a histogram of interference over time allowing more educated
  57. * guess about an ideal channel (perhaps CSA could be used to migrate AP to a
  58. * new "better" channel while running)
  59. * - include neighboring BSS scan to avoid conflicts with 40 MHz intolerant BSSs
  60. * when choosing the ideal channel
  61. *
  62. * Survey interference factor implementation details
  63. * -------------------------------------------------
  64. * Generic interference_factor in struct hostapd_channel_data is used.
  65. *
  66. * The survey interference factor is defined as the ratio of the
  67. * observed busy time over the time we spent on the channel,
  68. * this value is then amplified by the observed noise floor on
  69. * the channel in comparison to the lowest noise floor observed
  70. * on the entire band.
  71. *
  72. * This corresponds to:
  73. * ---
  74. * (busy time - tx time) / (active time - tx time) * 2^(chan_nf + band_min_nf)
  75. * ---
  76. *
  77. * The coefficient of 2 reflects the way power in "far-field"
  78. * radiation decreases as the square of distance from the antenna [1].
  79. * What this does is it decreases the observed busy time ratio if the
  80. * noise observed was low but increases it if the noise was high,
  81. * proportionally to the way "far field" radiation changes over
  82. * distance.
  83. *
  84. * If channel busy time is not available the fallback is to use channel RX time.
  85. *
  86. * Since noise floor is in dBm it is necessary to convert it into Watts so that
  87. * combined channel interference (e.g., HT40, which uses two channels) can be
  88. * calculated easily.
  89. * ---
  90. * (busy time - tx time) / (active time - tx time) *
  91. * 2^(10^(chan_nf/10) + 10^(band_min_nf/10))
  92. * ---
  93. *
  94. * However to account for cases where busy/rx time is 0 (channel load is then
  95. * 0%) channel noise floor signal power is combined into the equation so a
  96. * channel with lower noise floor is preferred. The equation becomes:
  97. * ---
  98. * 10^(chan_nf/5) + (busy time - tx time) / (active time - tx time) *
  99. * 2^(10^(chan_nf/10) + 10^(band_min_nf/10))
  100. * ---
  101. *
  102. * All this "interference factor" is purely subjective and only time
  103. * will tell how usable this is. By using the minimum noise floor we
  104. * remove any possible issues due to card calibration. The computation
  105. * of the interference factor then is dependent on what the card itself
  106. * picks up as the minimum noise, not an actual real possible card
  107. * noise value.
  108. *
  109. * Total interference computation details
  110. * --------------------------------------
  111. * The above channel interference factor is calculated with no respect to
  112. * target operational bandwidth.
  113. *
  114. * To find an ideal channel the above data is combined by taking into account
  115. * the target operational bandwidth and selected band. E.g., on 2.4 GHz channels
  116. * overlap with 20 MHz bandwidth, but there is no overlap for 20 MHz bandwidth
  117. * on 5 GHz.
  118. *
  119. * Each valid and possible channel spec (i.e., channel + width) is taken and its
  120. * interference factor is computed by summing up interferences of each channel
  121. * it overlaps. The one with least total interference is picked up.
  122. *
  123. * Note: This implies base channel interference factor must be non-negative
  124. * allowing easy summing up.
  125. *
  126. * Example ACS analysis printout
  127. * -----------------------------
  128. *
  129. * ACS: Trying survey-based ACS
  130. * ACS: Survey analysis for channel 1 (2412 MHz)
  131. * ACS: 1: min_nf=-113 interference_factor=0.0802469 nf=-113 time=162 busy=0 rx=13
  132. * ACS: 2: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
  133. * ACS: 3: min_nf=-113 interference_factor=0.0679012 nf=-113 time=162 busy=0 rx=11
  134. * ACS: 4: min_nf=-113 interference_factor=0.0310559 nf=-113 time=161 busy=0 rx=5
  135. * ACS: 5: min_nf=-113 interference_factor=0.0248447 nf=-113 time=161 busy=0 rx=4
  136. * ACS: * interference factor average: 0.0557166
  137. * ACS: Survey analysis for channel 2 (2417 MHz)
  138. * ACS: 1: min_nf=-113 interference_factor=0.0185185 nf=-113 time=162 busy=0 rx=3
  139. * ACS: 2: min_nf=-113 interference_factor=0.0246914 nf=-113 time=162 busy=0 rx=4
  140. * ACS: 3: min_nf=-113 interference_factor=0.037037 nf=-113 time=162 busy=0 rx=6
  141. * ACS: 4: min_nf=-113 interference_factor=0.149068 nf=-113 time=161 busy=0 rx=24
  142. * ACS: 5: min_nf=-113 interference_factor=0.0248447 nf=-113 time=161 busy=0 rx=4
  143. * ACS: * interference factor average: 0.050832
  144. * ACS: Survey analysis for channel 3 (2422 MHz)
  145. * ACS: 1: min_nf=-113 interference_factor=2.51189e-23 nf=-113 time=162 busy=0 rx=0
  146. * ACS: 2: min_nf=-113 interference_factor=0.0185185 nf=-113 time=162 busy=0 rx=3
  147. * ACS: 3: min_nf=-113 interference_factor=0.0186335 nf=-113 time=161 busy=0 rx=3
  148. * ACS: 4: min_nf=-113 interference_factor=0.0186335 nf=-113 time=161 busy=0 rx=3
  149. * ACS: 5: min_nf=-113 interference_factor=0.0186335 nf=-113 time=161 busy=0 rx=3
  150. * ACS: * interference factor average: 0.0148838
  151. * ACS: Survey analysis for channel 4 (2427 MHz)
  152. * ACS: 1: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=162 busy=0 rx=0
  153. * ACS: 2: min_nf=-114 interference_factor=0.0555556 nf=-114 time=162 busy=0 rx=9
  154. * ACS: 3: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=161 busy=0 rx=0
  155. * ACS: 4: min_nf=-114 interference_factor=0.0186335 nf=-114 time=161 busy=0 rx=3
  156. * ACS: 5: min_nf=-114 interference_factor=0.00621118 nf=-114 time=161 busy=0 rx=1
  157. * ACS: * interference factor average: 0.0160801
  158. * ACS: Survey analysis for channel 5 (2432 MHz)
  159. * ACS: 1: min_nf=-114 interference_factor=0.409938 nf=-113 time=161 busy=0 rx=66
  160. * ACS: 2: min_nf=-114 interference_factor=0.0432099 nf=-113 time=162 busy=0 rx=7
  161. * ACS: 3: min_nf=-114 interference_factor=0.0124224 nf=-113 time=161 busy=0 rx=2
  162. * ACS: 4: min_nf=-114 interference_factor=0.677019 nf=-113 time=161 busy=0 rx=109
  163. * ACS: 5: min_nf=-114 interference_factor=0.0186335 nf=-114 time=161 busy=0 rx=3
  164. * ACS: * interference factor average: 0.232244
  165. * ACS: Survey analysis for channel 6 (2437 MHz)
  166. * ACS: 1: min_nf=-113 interference_factor=0.552795 nf=-113 time=161 busy=0 rx=89
  167. * ACS: 2: min_nf=-113 interference_factor=0.0807453 nf=-112 time=161 busy=0 rx=13
  168. * ACS: 3: min_nf=-113 interference_factor=0.0310559 nf=-113 time=161 busy=0 rx=5
  169. * ACS: 4: min_nf=-113 interference_factor=0.434783 nf=-112 time=161 busy=0 rx=70
  170. * ACS: 5: min_nf=-113 interference_factor=0.0621118 nf=-113 time=161 busy=0 rx=10
  171. * ACS: * interference factor average: 0.232298
  172. * ACS: Survey analysis for channel 7 (2442 MHz)
  173. * ACS: 1: min_nf=-113 interference_factor=0.440994 nf=-112 time=161 busy=0 rx=71
  174. * ACS: 2: min_nf=-113 interference_factor=0.385093 nf=-113 time=161 busy=0 rx=62
  175. * ACS: 3: min_nf=-113 interference_factor=0.0372671 nf=-113 time=161 busy=0 rx=6
  176. * ACS: 4: min_nf=-113 interference_factor=0.0372671 nf=-113 time=161 busy=0 rx=6
  177. * ACS: 5: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
  178. * ACS: * interference factor average: 0.195031
  179. * ACS: Survey analysis for channel 8 (2447 MHz)
  180. * ACS: 1: min_nf=-114 interference_factor=0.0496894 nf=-112 time=161 busy=0 rx=8
  181. * ACS: 2: min_nf=-114 interference_factor=0.0496894 nf=-114 time=161 busy=0 rx=8
  182. * ACS: 3: min_nf=-114 interference_factor=0.0372671 nf=-113 time=161 busy=0 rx=6
  183. * ACS: 4: min_nf=-114 interference_factor=0.12963 nf=-113 time=162 busy=0 rx=21
  184. * ACS: 5: min_nf=-114 interference_factor=0.166667 nf=-114 time=162 busy=0 rx=27
  185. * ACS: * interference factor average: 0.0865885
  186. * ACS: Survey analysis for channel 9 (2452 MHz)
  187. * ACS: 1: min_nf=-114 interference_factor=0.0124224 nf=-114 time=161 busy=0 rx=2
  188. * ACS: 2: min_nf=-114 interference_factor=0.0310559 nf=-114 time=161 busy=0 rx=5
  189. * ACS: 3: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=161 busy=0 rx=0
  190. * ACS: 4: min_nf=-114 interference_factor=0.00617284 nf=-114 time=162 busy=0 rx=1
  191. * ACS: 5: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=162 busy=0 rx=0
  192. * ACS: * interference factor average: 0.00993022
  193. * ACS: Survey analysis for channel 10 (2457 MHz)
  194. * ACS: 1: min_nf=-114 interference_factor=0.00621118 nf=-114 time=161 busy=0 rx=1
  195. * ACS: 2: min_nf=-114 interference_factor=0.00621118 nf=-114 time=161 busy=0 rx=1
  196. * ACS: 3: min_nf=-114 interference_factor=0.00621118 nf=-114 time=161 busy=0 rx=1
  197. * ACS: 4: min_nf=-114 interference_factor=0.0493827 nf=-114 time=162 busy=0 rx=8
  198. * ACS: 5: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=162 busy=0 rx=0
  199. * ACS: * interference factor average: 0.0136033
  200. * ACS: Survey analysis for channel 11 (2462 MHz)
  201. * ACS: 1: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=161 busy=0 rx=0
  202. * ACS: 2: min_nf=-114 interference_factor=2.51189e-23 nf=-113 time=161 busy=0 rx=0
  203. * ACS: 3: min_nf=-114 interference_factor=2.51189e-23 nf=-113 time=161 busy=0 rx=0
  204. * ACS: 4: min_nf=-114 interference_factor=0.0432099 nf=-114 time=162 busy=0 rx=7
  205. * ACS: 5: min_nf=-114 interference_factor=0.0925926 nf=-114 time=162 busy=0 rx=15
  206. * ACS: * interference factor average: 0.0271605
  207. * ACS: Survey analysis for channel 12 (2467 MHz)
  208. * ACS: 1: min_nf=-114 interference_factor=0.0621118 nf=-113 time=161 busy=0 rx=10
  209. * ACS: 2: min_nf=-114 interference_factor=0.00621118 nf=-114 time=161 busy=0 rx=1
  210. * ACS: 3: min_nf=-114 interference_factor=2.51189e-23 nf=-113 time=162 busy=0 rx=0
  211. * ACS: 4: min_nf=-114 interference_factor=2.51189e-23 nf=-113 time=162 busy=0 rx=0
  212. * ACS: 5: min_nf=-114 interference_factor=0.00617284 nf=-113 time=162 busy=0 rx=1
  213. * ACS: * interference factor average: 0.0148992
  214. * ACS: Survey analysis for channel 13 (2472 MHz)
  215. * ACS: 1: min_nf=-114 interference_factor=0.0745342 nf=-114 time=161 busy=0 rx=12
  216. * ACS: 2: min_nf=-114 interference_factor=0.0555556 nf=-114 time=162 busy=0 rx=9
  217. * ACS: 3: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=162 busy=0 rx=0
  218. * ACS: 4: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=162 busy=0 rx=0
  219. * ACS: 5: min_nf=-114 interference_factor=1.58489e-23 nf=-114 time=162 busy=0 rx=0
  220. * ACS: * interference factor average: 0.0260179
  221. * ACS: Survey analysis for selected bandwidth 20MHz
  222. * ACS: * channel 1: total interference = 0.121432
  223. * ACS: * channel 2: total interference = 0.137512
  224. * ACS: * channel 3: total interference = 0.369757
  225. * ACS: * channel 4: total interference = 0.546338
  226. * ACS: * channel 5: total interference = 0.690538
  227. * ACS: * channel 6: total interference = 0.762242
  228. * ACS: * channel 7: total interference = 0.756092
  229. * ACS: * channel 8: total interference = 0.537451
  230. * ACS: * channel 9: total interference = 0.332313
  231. * ACS: * channel 10: total interference = 0.152182
  232. * ACS: * channel 11: total interference = 0.0916111
  233. * ACS: * channel 12: total interference = 0.0816809
  234. * ACS: * channel 13: total interference = 0.0680776
  235. * ACS: Ideal channel is 13 (2472 MHz) with total interference factor of 0.0680776
  236. *
  237. * [1] http://en.wikipedia.org/wiki/Near_and_far_field
  238. */
  239. static int acs_request_scan(struct hostapd_iface *iface);
  240. static void acs_clean_chan_surveys(struct hostapd_channel_data *chan)
  241. {
  242. struct freq_survey *survey, *tmp;
  243. if (dl_list_empty(&chan->survey_list))
  244. return;
  245. dl_list_for_each_safe(survey, tmp, &chan->survey_list,
  246. struct freq_survey, list) {
  247. dl_list_del(&survey->list);
  248. os_free(survey);
  249. }
  250. }
  251. static void acs_cleanup(struct hostapd_iface *iface)
  252. {
  253. int i;
  254. struct hostapd_channel_data *chan;
  255. for (i = 0; i < iface->current_mode->num_channels; i++) {
  256. chan = &iface->current_mode->channels[i];
  257. if (chan->flag & HOSTAPD_CHAN_SURVEY_LIST_INITIALIZED)
  258. acs_clean_chan_surveys(chan);
  259. dl_list_init(&chan->survey_list);
  260. chan->flag |= HOSTAPD_CHAN_SURVEY_LIST_INITIALIZED;
  261. chan->min_nf = 0;
  262. }
  263. iface->chans_surveyed = 0;
  264. iface->acs_num_completed_scans = 0;
  265. }
  266. static void acs_fail(struct hostapd_iface *iface)
  267. {
  268. wpa_printf(MSG_ERROR, "ACS: Failed to start");
  269. acs_cleanup(iface);
  270. hostapd_disable_iface(iface);
  271. }
  272. static long double
  273. acs_survey_interference_factor(struct freq_survey *survey, s8 min_nf)
  274. {
  275. long double factor, busy, total;
  276. if (survey->filled & SURVEY_HAS_CHAN_TIME_BUSY)
  277. busy = survey->channel_time_busy;
  278. else if (survey->filled & SURVEY_HAS_CHAN_TIME_RX)
  279. busy = survey->channel_time_rx;
  280. else {
  281. /* This shouldn't really happen as survey data is checked in
  282. * acs_sanity_check() */
  283. wpa_printf(MSG_ERROR, "ACS: Survey data missing");
  284. return 0;
  285. }
  286. total = survey->channel_time;
  287. if (survey->filled & SURVEY_HAS_CHAN_TIME_TX) {
  288. busy -= survey->channel_time_tx;
  289. total -= survey->channel_time_tx;
  290. }
  291. /* TODO: figure out the best multiplier for noise floor base */
  292. factor = pow(10, survey->nf / 5.0L) +
  293. (busy / total) *
  294. pow(2, pow(10, (long double) survey->nf / 10.0L) -
  295. pow(10, (long double) min_nf / 10.0L));
  296. return factor;
  297. }
  298. static void
  299. acs_survey_chan_interference_factor(struct hostapd_iface *iface,
  300. struct hostapd_channel_data *chan)
  301. {
  302. struct freq_survey *survey;
  303. unsigned int i = 0;
  304. long double int_factor = 0;
  305. if (dl_list_empty(&chan->survey_list))
  306. return;
  307. if (chan->flag & HOSTAPD_CHAN_DISABLED)
  308. return;
  309. chan->interference_factor = 0;
  310. dl_list_for_each(survey, &chan->survey_list, struct freq_survey, list)
  311. {
  312. int_factor = acs_survey_interference_factor(survey,
  313. iface->lowest_nf);
  314. chan->interference_factor += int_factor;
  315. wpa_printf(MSG_DEBUG, "ACS: %d: min_nf=%d interference_factor=%Lg nf=%d time=%lu busy=%lu rx=%lu",
  316. ++i, chan->min_nf, int_factor,
  317. survey->nf, (unsigned long) survey->channel_time,
  318. (unsigned long) survey->channel_time_busy,
  319. (unsigned long) survey->channel_time_rx);
  320. }
  321. chan->interference_factor = chan->interference_factor /
  322. dl_list_len(&chan->survey_list);
  323. }
  324. static int acs_usable_ht40_chan(struct hostapd_channel_data *chan)
  325. {
  326. const int allowed[] = { 36, 44, 52, 60, 100, 108, 116, 124, 132, 149,
  327. 157, 184, 192 };
  328. unsigned int i;
  329. for (i = 0; i < ARRAY_SIZE(allowed); i++)
  330. if (chan->chan == allowed[i])
  331. return 1;
  332. return 0;
  333. }
  334. static int acs_usable_vht80_chan(struct hostapd_channel_data *chan)
  335. {
  336. const int allowed[] = { 36, 52, 100, 116, 132, 149 };
  337. unsigned int i;
  338. for (i = 0; i < ARRAY_SIZE(allowed); i++)
  339. if (chan->chan == allowed[i])
  340. return 1;
  341. return 0;
  342. }
  343. static int acs_survey_is_sufficient(struct freq_survey *survey)
  344. {
  345. if (!(survey->filled & SURVEY_HAS_NF)) {
  346. wpa_printf(MSG_ERROR, "ACS: Survey is missing noise floor");
  347. return 0;
  348. }
  349. if (!(survey->filled & SURVEY_HAS_CHAN_TIME)) {
  350. wpa_printf(MSG_ERROR, "ACS: Survey is missing channel time");
  351. return 0;
  352. }
  353. if (!(survey->filled & SURVEY_HAS_CHAN_TIME_BUSY) &&
  354. !(survey->filled & SURVEY_HAS_CHAN_TIME_RX)) {
  355. wpa_printf(MSG_ERROR, "ACS: Survey is missing RX and busy time (at least one is required)");
  356. return 0;
  357. }
  358. return 1;
  359. }
  360. static int acs_survey_list_is_sufficient(struct hostapd_channel_data *chan)
  361. {
  362. struct freq_survey *survey;
  363. dl_list_for_each(survey, &chan->survey_list, struct freq_survey, list)
  364. {
  365. if (!acs_survey_is_sufficient(survey)) {
  366. wpa_printf(MSG_ERROR, "ACS: Channel %d has insufficient survey data",
  367. chan->chan);
  368. return 0;
  369. }
  370. }
  371. return 1;
  372. }
  373. static int acs_surveys_are_sufficient(struct hostapd_iface *iface)
  374. {
  375. int i;
  376. struct hostapd_channel_data *chan;
  377. int valid = 0;
  378. for (i = 0; i < iface->current_mode->num_channels; i++) {
  379. chan = &iface->current_mode->channels[i];
  380. if (chan->flag & HOSTAPD_CHAN_DISABLED)
  381. continue;
  382. if (!acs_survey_list_is_sufficient(chan))
  383. continue;
  384. valid++;
  385. }
  386. /* We need at least survey data for one channel */
  387. return !!valid;
  388. }
  389. static int acs_usable_chan(struct hostapd_channel_data *chan)
  390. {
  391. if (dl_list_empty(&chan->survey_list))
  392. return 0;
  393. if (chan->flag & HOSTAPD_CHAN_DISABLED)
  394. return 0;
  395. if (!acs_survey_list_is_sufficient(chan))
  396. return 0;
  397. return 1;
  398. }
  399. static void acs_survey_all_chans_intereference_factor(
  400. struct hostapd_iface *iface)
  401. {
  402. int i;
  403. struct hostapd_channel_data *chan;
  404. for (i = 0; i < iface->current_mode->num_channels; i++) {
  405. chan = &iface->current_mode->channels[i];
  406. if (!acs_usable_chan(chan))
  407. continue;
  408. wpa_printf(MSG_DEBUG, "ACS: Survey analysis for channel %d (%d MHz)",
  409. chan->chan, chan->freq);
  410. acs_survey_chan_interference_factor(iface, chan);
  411. wpa_printf(MSG_DEBUG, "ACS: * interference factor average: %Lg",
  412. chan->interference_factor);
  413. }
  414. }
  415. static struct hostapd_channel_data *acs_find_chan(struct hostapd_iface *iface,
  416. int freq)
  417. {
  418. struct hostapd_channel_data *chan;
  419. int i;
  420. for (i = 0; i < iface->current_mode->num_channels; i++) {
  421. chan = &iface->current_mode->channels[i];
  422. if (chan->flag & HOSTAPD_CHAN_DISABLED)
  423. continue;
  424. if (chan->freq == freq)
  425. return chan;
  426. }
  427. return NULL;
  428. }
  429. /*
  430. * At this point it's assumed chan->interface_factor has been computed.
  431. * This function should be reusable regardless of interference computation
  432. * option (survey, BSS, spectral, ...). chan->interference factor must be
  433. * summable (i.e., must be always greater than zero).
  434. */
  435. static struct hostapd_channel_data *
  436. acs_find_ideal_chan(struct hostapd_iface *iface)
  437. {
  438. struct hostapd_channel_data *chan, *adj_chan, *ideal_chan = NULL,
  439. *rand_chan = NULL;
  440. long double factor, ideal_factor = 0;
  441. int i, j;
  442. int n_chans = 1;
  443. /* TODO: HT40- support */
  444. if (iface->conf->ieee80211n &&
  445. iface->conf->secondary_channel == -1) {
  446. wpa_printf(MSG_ERROR, "ACS: HT40- is not supported yet. Please try HT40+");
  447. return NULL;
  448. }
  449. if (iface->conf->ieee80211n &&
  450. iface->conf->secondary_channel)
  451. n_chans = 2;
  452. if (iface->conf->ieee80211ac &&
  453. iface->conf->vht_oper_chwidth == 1)
  454. n_chans = 4;
  455. /* TODO: VHT80+80, VHT160. Update acs_adjust_vht_center_freq() too. */
  456. wpa_printf(MSG_DEBUG, "ACS: Survey analysis for selected bandwidth %d MHz",
  457. n_chans == 1 ? 20 :
  458. n_chans == 2 ? 40 :
  459. n_chans == 4 ? 80 :
  460. -1);
  461. for (i = 0; i < iface->current_mode->num_channels; i++) {
  462. chan = &iface->current_mode->channels[i];
  463. if (chan->flag & HOSTAPD_CHAN_DISABLED)
  464. continue;
  465. /* HT40 on 5 GHz has a limited set of primary channels as per
  466. * 11n Annex J */
  467. if (iface->current_mode->mode == HOSTAPD_MODE_IEEE80211A &&
  468. iface->conf->ieee80211n &&
  469. iface->conf->secondary_channel &&
  470. !acs_usable_ht40_chan(chan)) {
  471. wpa_printf(MSG_DEBUG, "ACS: Channel %d: not allowed as primary channel for HT40",
  472. chan->chan);
  473. continue;
  474. }
  475. if (iface->current_mode->mode == HOSTAPD_MODE_IEEE80211A &&
  476. iface->conf->ieee80211ac &&
  477. iface->conf->vht_oper_chwidth == 1 &&
  478. !acs_usable_vht80_chan(chan)) {
  479. wpa_printf(MSG_DEBUG, "ACS: Channel %d: not allowed as primary channel for VHT80",
  480. chan->chan);
  481. continue;
  482. }
  483. factor = 0;
  484. if (acs_usable_chan(chan))
  485. factor = chan->interference_factor;
  486. for (j = 1; j < n_chans; j++) {
  487. adj_chan = acs_find_chan(iface, chan->freq + (j * 20));
  488. if (!adj_chan)
  489. break;
  490. if (acs_usable_chan(adj_chan))
  491. factor += adj_chan->interference_factor;
  492. }
  493. if (j != n_chans) {
  494. wpa_printf(MSG_DEBUG, "ACS: Channel %d: not enough bandwidth",
  495. chan->chan);
  496. continue;
  497. }
  498. /* 2.4 GHz has overlapping 20 MHz channels. Include adjacent
  499. * channel interference factor. */
  500. if (iface->current_mode->mode == HOSTAPD_MODE_IEEE80211B ||
  501. iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G) {
  502. for (j = 0; j < n_chans; j++) {
  503. /* TODO: perhaps a multiplier should be used
  504. * here? */
  505. adj_chan = acs_find_chan(iface, chan->freq +
  506. (j * 20) - 5);
  507. if (adj_chan && acs_usable_chan(adj_chan))
  508. factor += adj_chan->interference_factor;
  509. adj_chan = acs_find_chan(iface, chan->freq +
  510. (j * 20) - 10);
  511. if (adj_chan && acs_usable_chan(adj_chan))
  512. factor += adj_chan->interference_factor;
  513. adj_chan = acs_find_chan(iface, chan->freq +
  514. (j * 20) + 5);
  515. if (adj_chan && acs_usable_chan(adj_chan))
  516. factor += adj_chan->interference_factor;
  517. adj_chan = acs_find_chan(iface, chan->freq +
  518. (j * 20) + 10);
  519. if (adj_chan && acs_usable_chan(adj_chan))
  520. factor += adj_chan->interference_factor;
  521. }
  522. }
  523. wpa_printf(MSG_DEBUG, "ACS: * channel %d: total interference = %Lg",
  524. chan->chan, factor);
  525. if (acs_usable_chan(chan) &&
  526. (!ideal_chan || factor < ideal_factor)) {
  527. ideal_factor = factor;
  528. ideal_chan = chan;
  529. }
  530. /* This channel would at least be usable */
  531. if (!rand_chan)
  532. rand_chan = chan;
  533. }
  534. if (ideal_chan) {
  535. wpa_printf(MSG_DEBUG, "ACS: Ideal channel is %d (%d MHz) with total interference factor of %Lg",
  536. ideal_chan->chan, ideal_chan->freq, ideal_factor);
  537. return ideal_chan;
  538. }
  539. return rand_chan;
  540. }
  541. static void acs_adjust_vht_center_freq(struct hostapd_iface *iface)
  542. {
  543. wpa_printf(MSG_DEBUG, "ACS: Adjusting VHT center frequency");
  544. switch (iface->conf->vht_oper_chwidth) {
  545. case VHT_CHANWIDTH_USE_HT:
  546. iface->conf->vht_oper_centr_freq_seg0_idx =
  547. iface->conf->channel + 2;
  548. break;
  549. case VHT_CHANWIDTH_80MHZ:
  550. iface->conf->vht_oper_centr_freq_seg0_idx =
  551. iface->conf->channel + 6;
  552. break;
  553. default:
  554. /* TODO: How can this be calculated? Adjust
  555. * acs_find_ideal_chan() */
  556. wpa_printf(MSG_INFO, "ACS: Only VHT20/40/80 is supported now");
  557. break;
  558. }
  559. }
  560. static int acs_study_survey_based(struct hostapd_iface *iface)
  561. {
  562. wpa_printf(MSG_DEBUG, "ACS: Trying survey-based ACS");
  563. if (!iface->chans_surveyed) {
  564. wpa_printf(MSG_ERROR, "ACS: Unable to collect survey data");
  565. return -1;
  566. }
  567. if (!acs_surveys_are_sufficient(iface)) {
  568. wpa_printf(MSG_ERROR, "ACS: Surveys have insufficient data");
  569. return -1;
  570. }
  571. acs_survey_all_chans_intereference_factor(iface);
  572. return 0;
  573. }
  574. static int acs_study_options(struct hostapd_iface *iface)
  575. {
  576. int err;
  577. err = acs_study_survey_based(iface);
  578. if (err == 0)
  579. return 0;
  580. /* TODO: If no surveys are available/sufficient this is a good
  581. * place to fallback to BSS-based ACS */
  582. return -1;
  583. }
  584. static void acs_study(struct hostapd_iface *iface)
  585. {
  586. struct hostapd_channel_data *ideal_chan;
  587. int err;
  588. err = acs_study_options(iface);
  589. if (err < 0) {
  590. wpa_printf(MSG_ERROR, "ACS: All study options have failed");
  591. goto fail;
  592. }
  593. ideal_chan = acs_find_ideal_chan(iface);
  594. if (!ideal_chan) {
  595. wpa_printf(MSG_ERROR, "ACS: Failed to compute ideal channel");
  596. err = -1;
  597. goto fail;
  598. }
  599. iface->conf->channel = ideal_chan->chan;
  600. if (iface->conf->ieee80211ac)
  601. acs_adjust_vht_center_freq(iface);
  602. err = 0;
  603. fail:
  604. /*
  605. * hostapd_setup_interface_complete() will return -1 on failure,
  606. * 0 on success and 0 is HOSTAPD_CHAN_VALID :)
  607. */
  608. if (hostapd_acs_completed(iface, err) == HOSTAPD_CHAN_VALID) {
  609. acs_cleanup(iface);
  610. return;
  611. }
  612. /* This can possibly happen if channel parameters (secondary
  613. * channel, center frequencies) are misconfigured */
  614. wpa_printf(MSG_ERROR, "ACS: Possibly channel configuration is invalid, please report this along with your config file.");
  615. acs_fail(iface);
  616. }
  617. static void acs_scan_complete(struct hostapd_iface *iface)
  618. {
  619. int err;
  620. iface->scan_cb = NULL;
  621. wpa_printf(MSG_DEBUG, "ACS: Using survey based algorithm (acs_num_scans=%d)",
  622. iface->conf->acs_num_scans);
  623. err = hostapd_drv_get_survey(iface->bss[0], 0);
  624. if (err) {
  625. wpa_printf(MSG_ERROR, "ACS: Failed to get survey data");
  626. acs_fail(iface);
  627. }
  628. if (++iface->acs_num_completed_scans < iface->conf->acs_num_scans) {
  629. err = acs_request_scan(iface);
  630. if (err) {
  631. wpa_printf(MSG_ERROR, "ACS: Failed to request scan");
  632. goto fail;
  633. }
  634. return;
  635. }
  636. acs_study(iface);
  637. return;
  638. fail:
  639. hostapd_acs_completed(iface, 1);
  640. acs_fail(iface);
  641. }
  642. static int acs_request_scan(struct hostapd_iface *iface)
  643. {
  644. struct wpa_driver_scan_params params;
  645. struct hostapd_channel_data *chan;
  646. int i, *freq;
  647. os_memset(&params, 0, sizeof(params));
  648. params.freqs = os_calloc(iface->current_mode->num_channels + 1,
  649. sizeof(params.freqs[0]));
  650. if (params.freqs == NULL)
  651. return -1;
  652. freq = params.freqs;
  653. for (i = 0; i < iface->current_mode->num_channels; i++) {
  654. chan = &iface->current_mode->channels[i];
  655. if (chan->flag & HOSTAPD_CHAN_DISABLED)
  656. continue;
  657. *freq++ = chan->freq;
  658. }
  659. *freq = 0;
  660. iface->scan_cb = acs_scan_complete;
  661. wpa_printf(MSG_DEBUG, "ACS: Scanning %d / %d",
  662. iface->acs_num_completed_scans + 1,
  663. iface->conf->acs_num_scans);
  664. if (hostapd_driver_scan(iface->bss[0], &params) < 0) {
  665. wpa_printf(MSG_ERROR, "ACS: Failed to request initial scan");
  666. acs_cleanup(iface);
  667. return -1;
  668. }
  669. os_free(params.freqs);
  670. return 0;
  671. }
  672. enum hostapd_chan_status acs_init(struct hostapd_iface *iface)
  673. {
  674. int err;
  675. wpa_printf(MSG_INFO, "ACS: Automatic channel selection started, this may take a bit");
  676. acs_cleanup(iface);
  677. err = acs_request_scan(iface);
  678. if (err < 0)
  679. return HOSTAPD_CHAN_INVALID;
  680. hostapd_set_state(iface, HAPD_IFACE_ACS);
  681. wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, ACS_EVENT_STARTED);
  682. return HOSTAPD_CHAN_ACS;
  683. }