hw_features.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718
  1. /*
  2. * hostapd / Hardware feature query and different modes
  3. * Copyright 2002-2003, Instant802 Networks, Inc.
  4. * Copyright 2005-2006, Devicescape Software, Inc.
  5. * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
  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. * Alternatively, this software may be distributed under the terms of BSD
  12. * license.
  13. *
  14. * See README and COPYING for more details.
  15. */
  16. #include "includes.h"
  17. #include "common.h"
  18. #include "hostapd.h"
  19. #include "common/ieee802_11_defs.h"
  20. #include "common/ieee802_11_common.h"
  21. #include "eloop.h"
  22. #include "hw_features.h"
  23. #include "driver_i.h"
  24. #include "config.h"
  25. void hostapd_free_hw_features(struct hostapd_hw_modes *hw_features,
  26. size_t num_hw_features)
  27. {
  28. size_t i;
  29. if (hw_features == NULL)
  30. return;
  31. for (i = 0; i < num_hw_features; i++) {
  32. os_free(hw_features[i].channels);
  33. os_free(hw_features[i].rates);
  34. }
  35. os_free(hw_features);
  36. }
  37. int hostapd_get_hw_features(struct hostapd_iface *iface)
  38. {
  39. struct hostapd_data *hapd = iface->bss[0];
  40. int ret = 0, i, j;
  41. u16 num_modes, flags;
  42. struct hostapd_hw_modes *modes;
  43. if (hostapd_drv_none(hapd))
  44. return -1;
  45. modes = hostapd_get_hw_feature_data(hapd, &num_modes, &flags);
  46. if (modes == NULL) {
  47. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
  48. HOSTAPD_LEVEL_DEBUG,
  49. "Fetching hardware channel/rate support not "
  50. "supported.");
  51. return -1;
  52. }
  53. iface->hw_flags = flags;
  54. hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
  55. iface->hw_features = modes;
  56. iface->num_hw_features = num_modes;
  57. for (i = 0; i < num_modes; i++) {
  58. struct hostapd_hw_modes *feature = &modes[i];
  59. /* set flag for channels we can use in current regulatory
  60. * domain */
  61. for (j = 0; j < feature->num_channels; j++) {
  62. /*
  63. * Disable all channels that are marked not to allow
  64. * IBSS operation or active scanning. In addition,
  65. * disable all channels that require radar detection,
  66. * since that (in addition to full DFS) is not yet
  67. * supported.
  68. */
  69. if (feature->channels[j].flag &
  70. (HOSTAPD_CHAN_NO_IBSS |
  71. HOSTAPD_CHAN_PASSIVE_SCAN |
  72. HOSTAPD_CHAN_RADAR))
  73. feature->channels[j].flag |=
  74. HOSTAPD_CHAN_DISABLED;
  75. if (feature->channels[j].flag & HOSTAPD_CHAN_DISABLED)
  76. continue;
  77. wpa_printf(MSG_MSGDUMP, "Allowed channel: mode=%d "
  78. "chan=%d freq=%d MHz max_tx_power=%d dBm",
  79. feature->mode,
  80. feature->channels[j].chan,
  81. feature->channels[j].freq,
  82. feature->channels[j].max_tx_power);
  83. }
  84. }
  85. return ret;
  86. }
  87. static int hostapd_prepare_rates(struct hostapd_data *hapd,
  88. struct hostapd_hw_modes *mode)
  89. {
  90. int i, num_basic_rates = 0;
  91. int basic_rates_a[] = { 60, 120, 240, -1 };
  92. int basic_rates_b[] = { 10, 20, -1 };
  93. int basic_rates_g[] = { 10, 20, 55, 110, -1 };
  94. int *basic_rates;
  95. if (hapd->iconf->basic_rates)
  96. basic_rates = hapd->iconf->basic_rates;
  97. else switch (mode->mode) {
  98. case HOSTAPD_MODE_IEEE80211A:
  99. basic_rates = basic_rates_a;
  100. break;
  101. case HOSTAPD_MODE_IEEE80211B:
  102. basic_rates = basic_rates_b;
  103. break;
  104. case HOSTAPD_MODE_IEEE80211G:
  105. basic_rates = basic_rates_g;
  106. break;
  107. default:
  108. return -1;
  109. }
  110. if (hostapd_set_rate_sets(hapd, hapd->iconf->supported_rates,
  111. basic_rates, mode->mode)) {
  112. wpa_printf(MSG_ERROR, "Failed to update rate sets in kernel "
  113. "module");
  114. }
  115. os_free(hapd->iface->current_rates);
  116. hapd->iface->num_rates = 0;
  117. hapd->iface->current_rates =
  118. os_malloc(mode->num_rates * sizeof(struct hostapd_rate_data));
  119. if (!hapd->iface->current_rates) {
  120. wpa_printf(MSG_ERROR, "Failed to allocate memory for rate "
  121. "table.");
  122. return -1;
  123. }
  124. for (i = 0; i < mode->num_rates; i++) {
  125. struct hostapd_rate_data *rate;
  126. if (hapd->iconf->supported_rates &&
  127. !hostapd_rate_found(hapd->iconf->supported_rates,
  128. mode->rates[i].rate))
  129. continue;
  130. rate = &hapd->iface->current_rates[hapd->iface->num_rates];
  131. os_memcpy(rate, &mode->rates[i],
  132. sizeof(struct hostapd_rate_data));
  133. if (hostapd_rate_found(basic_rates, rate->rate)) {
  134. rate->flags |= HOSTAPD_RATE_BASIC;
  135. num_basic_rates++;
  136. } else
  137. rate->flags &= ~HOSTAPD_RATE_BASIC;
  138. wpa_printf(MSG_DEBUG, "RATE[%d] rate=%d flags=0x%x",
  139. hapd->iface->num_rates, rate->rate, rate->flags);
  140. hapd->iface->num_rates++;
  141. }
  142. if (hapd->iface->num_rates == 0 || num_basic_rates == 0) {
  143. wpa_printf(MSG_ERROR, "No rates remaining in supported/basic "
  144. "rate sets (%d,%d).",
  145. hapd->iface->num_rates, num_basic_rates);
  146. return -1;
  147. }
  148. return 0;
  149. }
  150. #ifdef CONFIG_IEEE80211N
  151. static int ieee80211n_allowed_ht40_channel_pair(struct hostapd_iface *iface)
  152. {
  153. int sec_chan, ok, j, first;
  154. int allowed[] = { 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157,
  155. 184, 192 };
  156. size_t k;
  157. if (!iface->conf->secondary_channel)
  158. return 1; /* HT40 not used */
  159. sec_chan = iface->conf->channel + iface->conf->secondary_channel * 4;
  160. wpa_printf(MSG_DEBUG, "HT40: control channel: %d "
  161. "secondary channel: %d",
  162. iface->conf->channel, sec_chan);
  163. /* Verify that HT40 secondary channel is an allowed 20 MHz
  164. * channel */
  165. ok = 0;
  166. for (j = 0; j < iface->current_mode->num_channels; j++) {
  167. struct hostapd_channel_data *chan =
  168. &iface->current_mode->channels[j];
  169. if (!(chan->flag & HOSTAPD_CHAN_DISABLED) &&
  170. chan->chan == sec_chan) {
  171. ok = 1;
  172. break;
  173. }
  174. }
  175. if (!ok) {
  176. wpa_printf(MSG_ERROR, "HT40 secondary channel %d not allowed",
  177. sec_chan);
  178. return 0;
  179. }
  180. /*
  181. * Verify that HT40 primary,secondary channel pair is allowed per
  182. * IEEE 802.11n Annex J. This is only needed for 5 GHz band since
  183. * 2.4 GHz rules allow all cases where the secondary channel fits into
  184. * the list of allowed channels (already checked above).
  185. */
  186. if (iface->current_mode->mode != HOSTAPD_MODE_IEEE80211A)
  187. return 1;
  188. if (iface->conf->secondary_channel > 0)
  189. first = iface->conf->channel;
  190. else
  191. first = sec_chan;
  192. ok = 0;
  193. for (k = 0; k < sizeof(allowed) / sizeof(allowed[0]); k++) {
  194. if (first == allowed[k]) {
  195. ok = 1;
  196. break;
  197. }
  198. }
  199. if (!ok) {
  200. wpa_printf(MSG_ERROR, "HT40 channel pair (%d, %d) not allowed",
  201. iface->conf->channel,
  202. iface->conf->secondary_channel);
  203. return 0;
  204. }
  205. return 1;
  206. }
  207. static void ieee80211n_switch_pri_sec(struct hostapd_iface *iface)
  208. {
  209. if (iface->conf->secondary_channel > 0) {
  210. iface->conf->channel += 4;
  211. iface->conf->secondary_channel = -1;
  212. } else {
  213. iface->conf->channel -= 4;
  214. iface->conf->secondary_channel = 1;
  215. }
  216. }
  217. static void ieee80211n_get_pri_sec_chan(struct wpa_scan_res *bss,
  218. int *pri_chan, int *sec_chan)
  219. {
  220. struct ieee80211_ht_operation *oper;
  221. struct ieee802_11_elems elems;
  222. *pri_chan = *sec_chan = 0;
  223. ieee802_11_parse_elems((u8 *) (bss + 1), bss->ie_len, &elems, 0);
  224. if (elems.ht_operation &&
  225. elems.ht_operation_len >= sizeof(*oper)) {
  226. oper = (struct ieee80211_ht_operation *) elems.ht_operation;
  227. *pri_chan = oper->control_chan;
  228. if (oper->ht_param & HT_INFO_HT_PARAM_REC_TRANS_CHNL_WIDTH) {
  229. if (oper->ht_param &
  230. HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
  231. *sec_chan = *pri_chan + 4;
  232. else if (oper->ht_param &
  233. HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
  234. *sec_chan = *pri_chan - 4;
  235. }
  236. }
  237. }
  238. static int ieee80211n_check_40mhz_5g(struct hostapd_iface *iface,
  239. struct wpa_scan_results *scan_res)
  240. {
  241. int pri_chan, sec_chan, pri_freq, sec_freq, pri_bss, sec_bss;
  242. int bss_pri_chan, bss_sec_chan;
  243. size_t i;
  244. int match;
  245. pri_chan = iface->conf->channel;
  246. sec_chan = iface->conf->secondary_channel * 4;
  247. pri_freq = hostapd_hw_get_freq(iface->bss[0], pri_chan);
  248. if (iface->conf->secondary_channel > 0)
  249. sec_freq = pri_freq + 20;
  250. else
  251. sec_freq = pri_freq - 20;
  252. /*
  253. * Switch PRI/SEC channels if Beacons were detected on selected SEC
  254. * channel, but not on selected PRI channel.
  255. */
  256. pri_bss = sec_bss = 0;
  257. for (i = 0; i < scan_res->num; i++) {
  258. struct wpa_scan_res *bss = scan_res->res[i];
  259. if (bss->freq == pri_freq)
  260. pri_bss++;
  261. else if (bss->freq == sec_freq)
  262. sec_bss++;
  263. }
  264. if (sec_bss && !pri_bss) {
  265. wpa_printf(MSG_INFO, "Switch own primary and secondary "
  266. "channel to get secondary channel with no Beacons "
  267. "from other BSSes");
  268. ieee80211n_switch_pri_sec(iface);
  269. }
  270. /*
  271. * Match PRI/SEC channel with any existing HT40 BSS on the same
  272. * channels that we are about to use (if already mixed order in
  273. * existing BSSes, use own preference).
  274. */
  275. match = 0;
  276. for (i = 0; i < scan_res->num; i++) {
  277. struct wpa_scan_res *bss = scan_res->res[i];
  278. ieee80211n_get_pri_sec_chan(bss, &bss_pri_chan, &bss_sec_chan);
  279. if (pri_chan == bss_pri_chan &&
  280. sec_chan == bss_sec_chan) {
  281. match = 1;
  282. break;
  283. }
  284. }
  285. if (!match) {
  286. for (i = 0; i < scan_res->num; i++) {
  287. struct wpa_scan_res *bss = scan_res->res[i];
  288. ieee80211n_get_pri_sec_chan(bss, &bss_pri_chan,
  289. &bss_sec_chan);
  290. if (pri_chan == bss_sec_chan &&
  291. sec_chan == bss_pri_chan) {
  292. wpa_printf(MSG_INFO, "Switch own primary and "
  293. "secondary channel due to BSS "
  294. "overlap with " MACSTR,
  295. MAC2STR(bss->bssid));
  296. ieee80211n_switch_pri_sec(iface);
  297. break;
  298. }
  299. }
  300. }
  301. return 1;
  302. }
  303. static int ieee80211n_check_40mhz_2g4(struct hostapd_iface *iface,
  304. struct wpa_scan_results *scan_res)
  305. {
  306. int pri_freq, sec_freq;
  307. int affected_start, affected_end;
  308. size_t i;
  309. pri_freq = hostapd_hw_get_freq(iface->bss[0], iface->conf->channel);
  310. if (iface->conf->secondary_channel > 0)
  311. sec_freq = pri_freq + 20;
  312. else
  313. sec_freq = pri_freq - 20;
  314. affected_start = (pri_freq + sec_freq) / 2 - 25;
  315. affected_end = (pri_freq + sec_freq) / 2 + 25;
  316. wpa_printf(MSG_DEBUG, "40 MHz affected channel range: [%d,%d] MHz",
  317. affected_start, affected_end);
  318. for (i = 0; i < scan_res->num; i++) {
  319. struct wpa_scan_res *bss = scan_res->res[i];
  320. int pri = bss->freq;
  321. int sec = pri;
  322. int sec_chan, pri_chan;
  323. ieee80211n_get_pri_sec_chan(bss, &pri_chan, &sec_chan);
  324. if (sec_chan) {
  325. if (sec_chan < pri_chan)
  326. sec = pri - 20;
  327. else
  328. sec = pri + 20;
  329. }
  330. if ((pri < affected_start || pri > affected_end) &&
  331. (sec < affected_start || sec > affected_end))
  332. continue; /* not within affected channel range */
  333. wpa_printf(MSG_DEBUG, "Neighboring BSS: " MACSTR
  334. " freq=%d pri=%d sec=%d",
  335. MAC2STR(bss->bssid), bss->freq, pri_chan, sec_chan);
  336. if (sec_chan) {
  337. if (pri_freq != pri || sec_freq != sec) {
  338. wpa_printf(MSG_DEBUG, "40 MHz pri/sec "
  339. "mismatch with BSS " MACSTR
  340. " <%d,%d> (chan=%d%c) vs. <%d,%d>",
  341. MAC2STR(bss->bssid),
  342. pri, sec, pri_chan,
  343. sec > pri ? '+' : '-',
  344. pri_freq, sec_freq);
  345. return 0;
  346. }
  347. }
  348. /* TODO: 40 MHz intolerant */
  349. }
  350. return 1;
  351. }
  352. static void ieee80211n_check_scan(struct hostapd_iface *iface)
  353. {
  354. struct wpa_scan_results *scan_res;
  355. int oper40;
  356. /* Check list of neighboring BSSes (from scan) to see whether 40 MHz is
  357. * allowed per IEEE 802.11n/D7.0, 11.14.3.2 */
  358. iface->scan_cb = NULL;
  359. scan_res = hostapd_driver_get_scan_results(iface->bss[0]);
  360. if (scan_res == NULL) {
  361. hostapd_setup_interface_complete(iface, 1);
  362. return;
  363. }
  364. if (iface->current_mode->mode == HOSTAPD_MODE_IEEE80211A)
  365. oper40 = ieee80211n_check_40mhz_5g(iface, scan_res);
  366. else
  367. oper40 = ieee80211n_check_40mhz_2g4(iface, scan_res);
  368. wpa_scan_results_free(scan_res);
  369. if (!oper40) {
  370. wpa_printf(MSG_INFO, "20/40 MHz operation not permitted on "
  371. "channel pri=%d sec=%d based on overlapping BSSes",
  372. iface->conf->channel,
  373. iface->conf->channel +
  374. iface->conf->secondary_channel * 4);
  375. iface->conf->secondary_channel = 0;
  376. iface->conf->ht_capab &= ~HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
  377. }
  378. hostapd_setup_interface_complete(iface, 0);
  379. }
  380. static int ieee80211n_check_40mhz(struct hostapd_iface *iface)
  381. {
  382. struct wpa_driver_scan_params params;
  383. if (!iface->conf->secondary_channel)
  384. return 0; /* HT40 not used */
  385. wpa_printf(MSG_DEBUG, "Scan for neighboring BSSes prior to enabling "
  386. "40 MHz channel");
  387. os_memset(&params, 0, sizeof(params));
  388. /* TODO: scan only the needed frequency */
  389. if (hostapd_driver_scan(iface->bss[0], &params) < 0) {
  390. wpa_printf(MSG_ERROR, "Failed to request a scan of "
  391. "neighboring BSSes");
  392. return -1;
  393. }
  394. iface->scan_cb = ieee80211n_check_scan;
  395. return 1;
  396. }
  397. static int ieee80211n_supported_ht_capab(struct hostapd_iface *iface)
  398. {
  399. u16 hw = iface->current_mode->ht_capab;
  400. u16 conf = iface->conf->ht_capab;
  401. if (!iface->conf->ieee80211n)
  402. return 1;
  403. if ((conf & HT_CAP_INFO_LDPC_CODING_CAP) &&
  404. !(hw & HT_CAP_INFO_LDPC_CODING_CAP)) {
  405. wpa_printf(MSG_ERROR, "Driver does not support configured "
  406. "HT capability [LDPC]");
  407. return 0;
  408. }
  409. if ((conf & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET) &&
  410. !(hw & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET)) {
  411. wpa_printf(MSG_ERROR, "Driver does not support configured "
  412. "HT capability [HT40*]");
  413. return 0;
  414. }
  415. if ((conf & HT_CAP_INFO_SMPS_MASK) != (hw & HT_CAP_INFO_SMPS_MASK) &&
  416. (conf & HT_CAP_INFO_SMPS_MASK) != HT_CAP_INFO_SMPS_DISABLED) {
  417. wpa_printf(MSG_ERROR, "Driver does not support configured "
  418. "HT capability [SMPS-*]");
  419. return 0;
  420. }
  421. if ((conf & HT_CAP_INFO_GREEN_FIELD) &&
  422. !(hw & HT_CAP_INFO_GREEN_FIELD)) {
  423. wpa_printf(MSG_ERROR, "Driver does not support configured "
  424. "HT capability [GF]");
  425. return 0;
  426. }
  427. if ((conf & HT_CAP_INFO_SHORT_GI20MHZ) &&
  428. !(hw & HT_CAP_INFO_SHORT_GI20MHZ)) {
  429. wpa_printf(MSG_ERROR, "Driver does not support configured "
  430. "HT capability [SHORT-GI-20]");
  431. return 0;
  432. }
  433. if ((conf & HT_CAP_INFO_SHORT_GI40MHZ) &&
  434. !(hw & HT_CAP_INFO_SHORT_GI40MHZ)) {
  435. wpa_printf(MSG_ERROR, "Driver does not support configured "
  436. "HT capability [SHORT-GI-40]");
  437. return 0;
  438. }
  439. if ((conf & HT_CAP_INFO_TX_STBC) && !(hw & HT_CAP_INFO_TX_STBC)) {
  440. wpa_printf(MSG_ERROR, "Driver does not support configured "
  441. "HT capability [TX-STBC]");
  442. return 0;
  443. }
  444. if ((conf & HT_CAP_INFO_RX_STBC_MASK) >
  445. (hw & HT_CAP_INFO_RX_STBC_MASK)) {
  446. wpa_printf(MSG_ERROR, "Driver does not support configured "
  447. "HT capability [RX-STBC*]");
  448. return 0;
  449. }
  450. if ((conf & HT_CAP_INFO_DELAYED_BA) &&
  451. !(hw & HT_CAP_INFO_DELAYED_BA)) {
  452. wpa_printf(MSG_ERROR, "Driver does not support configured "
  453. "HT capability [DELAYED-BA]");
  454. return 0;
  455. }
  456. if ((conf & HT_CAP_INFO_MAX_AMSDU_SIZE) &&
  457. !(hw & HT_CAP_INFO_MAX_AMSDU_SIZE)) {
  458. wpa_printf(MSG_ERROR, "Driver does not support configured "
  459. "HT capability [MAX-AMSDU-7935]");
  460. return 0;
  461. }
  462. if ((conf & HT_CAP_INFO_DSSS_CCK40MHZ) &&
  463. !(hw & HT_CAP_INFO_DSSS_CCK40MHZ)) {
  464. wpa_printf(MSG_ERROR, "Driver does not support configured "
  465. "HT capability [DSSS_CCK-40]");
  466. return 0;
  467. }
  468. if ((conf & HT_CAP_INFO_PSMP_SUPP) && !(hw & HT_CAP_INFO_PSMP_SUPP)) {
  469. wpa_printf(MSG_ERROR, "Driver does not support configured "
  470. "HT capability [PSMP]");
  471. return 0;
  472. }
  473. if ((conf & HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT) &&
  474. !(hw & HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT)) {
  475. wpa_printf(MSG_ERROR, "Driver does not support configured "
  476. "HT capability [LSIG-TXOP-PROT]");
  477. return 0;
  478. }
  479. return 1;
  480. }
  481. #endif /* CONFIG_IEEE80211N */
  482. int hostapd_check_ht_capab(struct hostapd_iface *iface)
  483. {
  484. #ifdef CONFIG_IEEE80211N
  485. int ret;
  486. ret = ieee80211n_check_40mhz(iface);
  487. if (ret)
  488. return ret;
  489. if (!ieee80211n_allowed_ht40_channel_pair(iface))
  490. return -1;
  491. if (!ieee80211n_supported_ht_capab(iface))
  492. return -1;
  493. #endif /* CONFIG_IEEE80211N */
  494. return 0;
  495. }
  496. /**
  497. * hostapd_select_hw_mode - Select the hardware mode
  498. * @iface: Pointer to interface data.
  499. * Returns: 0 on success, -1 on failure
  500. *
  501. * Sets up the hardware mode, channel, rates, and passive scanning
  502. * based on the configuration.
  503. */
  504. int hostapd_select_hw_mode(struct hostapd_iface *iface)
  505. {
  506. int i, j, ok;
  507. if (iface->num_hw_features < 1)
  508. return -1;
  509. iface->current_mode = NULL;
  510. for (i = 0; i < iface->num_hw_features; i++) {
  511. struct hostapd_hw_modes *mode = &iface->hw_features[i];
  512. if (mode->mode == iface->conf->hw_mode) {
  513. iface->current_mode = mode;
  514. break;
  515. }
  516. }
  517. if (iface->current_mode == NULL) {
  518. wpa_printf(MSG_ERROR, "Hardware does not support configured "
  519. "mode");
  520. hostapd_logger(iface->bss[0], NULL, HOSTAPD_MODULE_IEEE80211,
  521. HOSTAPD_LEVEL_WARNING,
  522. "Hardware does not support configured mode "
  523. "(%d)", (int) iface->conf->hw_mode);
  524. return -1;
  525. }
  526. ok = 0;
  527. for (j = 0; j < iface->current_mode->num_channels; j++) {
  528. struct hostapd_channel_data *chan =
  529. &iface->current_mode->channels[j];
  530. if (!(chan->flag & HOSTAPD_CHAN_DISABLED) &&
  531. (chan->chan == iface->conf->channel)) {
  532. ok = 1;
  533. break;
  534. }
  535. }
  536. if (iface->conf->channel == 0) {
  537. /* TODO: could request a scan of neighboring BSSes and select
  538. * the channel automatically */
  539. wpa_printf(MSG_ERROR, "Channel not configured "
  540. "(hw_mode/channel in hostapd.conf)");
  541. return -1;
  542. }
  543. if (ok == 0 && iface->conf->channel != 0) {
  544. hostapd_logger(iface->bss[0], NULL,
  545. HOSTAPD_MODULE_IEEE80211,
  546. HOSTAPD_LEVEL_WARNING,
  547. "Configured channel (%d) not found from the "
  548. "channel list of current mode (%d) %s",
  549. iface->conf->channel,
  550. iface->current_mode->mode,
  551. hostapd_hw_mode_txt(iface->current_mode->mode));
  552. iface->current_mode = NULL;
  553. }
  554. if (iface->current_mode == NULL) {
  555. hostapd_logger(iface->bss[0], NULL, HOSTAPD_MODULE_IEEE80211,
  556. HOSTAPD_LEVEL_WARNING,
  557. "Hardware does not support configured channel");
  558. return -1;
  559. }
  560. if (hostapd_prepare_rates(iface->bss[0], iface->current_mode)) {
  561. wpa_printf(MSG_ERROR, "Failed to prepare rates table.");
  562. hostapd_logger(iface->bss[0], NULL, HOSTAPD_MODULE_IEEE80211,
  563. HOSTAPD_LEVEL_WARNING,
  564. "Failed to prepare rates table.");
  565. return -1;
  566. }
  567. return 0;
  568. }
  569. const char * hostapd_hw_mode_txt(int mode)
  570. {
  571. switch (mode) {
  572. case HOSTAPD_MODE_IEEE80211A:
  573. return "IEEE 802.11a";
  574. case HOSTAPD_MODE_IEEE80211B:
  575. return "IEEE 802.11b";
  576. case HOSTAPD_MODE_IEEE80211G:
  577. return "IEEE 802.11g";
  578. default:
  579. return "UNKNOWN";
  580. }
  581. }
  582. int hostapd_hw_get_freq(struct hostapd_data *hapd, int chan)
  583. {
  584. int i;
  585. if (!hapd->iface->current_mode)
  586. return 0;
  587. for (i = 0; i < hapd->iface->current_mode->num_channels; i++) {
  588. struct hostapd_channel_data *ch =
  589. &hapd->iface->current_mode->channels[i];
  590. if (ch->chan == chan)
  591. return ch->freq;
  592. }
  593. return 0;
  594. }
  595. int hostapd_hw_get_channel(struct hostapd_data *hapd, int freq)
  596. {
  597. int i;
  598. if (!hapd->iface->current_mode)
  599. return 0;
  600. for (i = 0; i < hapd->iface->current_mode->num_channels; i++) {
  601. struct hostapd_channel_data *ch =
  602. &hapd->iface->current_mode->channels[i];
  603. if (ch->freq == freq)
  604. return ch->chan;
  605. }
  606. return 0;
  607. }