ap_drv_ops.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. /*
  2. * hostapd - Driver operations
  3. * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #include "utils/common.h"
  16. #include "drivers/driver.h"
  17. #include "common/ieee802_11_defs.h"
  18. #include "hostapd.h"
  19. #include "ieee802_11.h"
  20. #include "sta_info.h"
  21. #include "ap_config.h"
  22. #include "ap_drv_ops.h"
  23. static int hostapd_sta_flags_to_drv(int flags)
  24. {
  25. int res = 0;
  26. if (flags & WLAN_STA_AUTHORIZED)
  27. res |= WPA_STA_AUTHORIZED;
  28. if (flags & WLAN_STA_WMM)
  29. res |= WPA_STA_WMM;
  30. if (flags & WLAN_STA_SHORT_PREAMBLE)
  31. res |= WPA_STA_SHORT_PREAMBLE;
  32. if (flags & WLAN_STA_MFP)
  33. res |= WPA_STA_MFP;
  34. return res;
  35. }
  36. static int hostapd_set_ap_wps_ie(struct hostapd_data *hapd,
  37. const struct wpabuf *beacon,
  38. const struct wpabuf *proberesp)
  39. {
  40. if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL)
  41. return 0;
  42. return hapd->driver->set_ap_wps_ie(hapd->drv_priv, beacon, proberesp);
  43. }
  44. static int hostapd_send_mgmt_frame(struct hostapd_data *hapd, const void *msg,
  45. size_t len)
  46. {
  47. if (hapd->driver == NULL || hapd->driver->send_mlme == NULL)
  48. return 0;
  49. return hapd->driver->send_mlme(hapd->drv_priv, msg, len);
  50. }
  51. static int hostapd_send_eapol(struct hostapd_data *hapd, const u8 *addr,
  52. const u8 *data, size_t data_len, int encrypt)
  53. {
  54. if (hapd->driver == NULL || hapd->driver->hapd_send_eapol == NULL)
  55. return 0;
  56. return hapd->driver->hapd_send_eapol(hapd->drv_priv, addr, data,
  57. data_len, encrypt,
  58. hapd->own_addr);
  59. }
  60. static int hostapd_set_authorized(struct hostapd_data *hapd,
  61. struct sta_info *sta, int authorized)
  62. {
  63. if (authorized) {
  64. return hostapd_sta_set_flags(hapd, sta->addr,
  65. hostapd_sta_flags_to_drv(
  66. sta->flags),
  67. WPA_STA_AUTHORIZED, ~0);
  68. }
  69. return hostapd_sta_set_flags(hapd, sta->addr,
  70. hostapd_sta_flags_to_drv(sta->flags),
  71. 0, ~WPA_STA_AUTHORIZED);
  72. }
  73. static int hostapd_set_key(const char *ifname, struct hostapd_data *hapd,
  74. enum wpa_alg alg, const u8 *addr, int key_idx,
  75. int set_tx, const u8 *seq, size_t seq_len,
  76. const u8 *key, size_t key_len)
  77. {
  78. if (hapd->driver == NULL || hapd->driver->set_key == NULL)
  79. return 0;
  80. return hapd->driver->set_key(ifname, hapd->drv_priv, alg, addr,
  81. key_idx, set_tx, seq, seq_len, key,
  82. key_len);
  83. }
  84. static int hostapd_read_sta_data(struct hostapd_data *hapd,
  85. struct hostap_sta_driver_data *data,
  86. const u8 *addr)
  87. {
  88. if (hapd->driver == NULL || hapd->driver->read_sta_data == NULL)
  89. return -1;
  90. return hapd->driver->read_sta_data(hapd->drv_priv, data, addr);
  91. }
  92. static int hostapd_sta_clear_stats(struct hostapd_data *hapd, const u8 *addr)
  93. {
  94. if (hapd->driver == NULL || hapd->driver->sta_clear_stats == NULL)
  95. return 0;
  96. return hapd->driver->sta_clear_stats(hapd->drv_priv, addr);
  97. }
  98. static int hostapd_set_sta_flags(struct hostapd_data *hapd,
  99. struct sta_info *sta)
  100. {
  101. int set_flags, total_flags, flags_and, flags_or;
  102. total_flags = hostapd_sta_flags_to_drv(sta->flags);
  103. set_flags = WPA_STA_SHORT_PREAMBLE | WPA_STA_WMM | WPA_STA_MFP;
  104. if (((!hapd->conf->ieee802_1x && !hapd->conf->wpa) ||
  105. sta->auth_alg == WLAN_AUTH_FT) &&
  106. sta->flags & WLAN_STA_AUTHORIZED)
  107. set_flags |= WPA_STA_AUTHORIZED;
  108. flags_or = total_flags & set_flags;
  109. flags_and = total_flags | ~set_flags;
  110. return hostapd_sta_set_flags(hapd, sta->addr, total_flags,
  111. flags_or, flags_and);
  112. }
  113. static int hostapd_set_drv_ieee8021x(struct hostapd_data *hapd,
  114. const char *ifname, int enabled)
  115. {
  116. struct wpa_bss_params params;
  117. os_memset(&params, 0, sizeof(params));
  118. params.ifname = ifname;
  119. params.enabled = enabled;
  120. if (enabled) {
  121. params.wpa = hapd->conf->wpa;
  122. params.ieee802_1x = hapd->conf->ieee802_1x;
  123. params.wpa_group = hapd->conf->wpa_group;
  124. params.wpa_pairwise = hapd->conf->wpa_pairwise;
  125. params.wpa_key_mgmt = hapd->conf->wpa_key_mgmt;
  126. params.rsn_preauth = hapd->conf->rsn_preauth;
  127. }
  128. return hostapd_set_ieee8021x(hapd, &params);
  129. }
  130. static int hostapd_set_radius_acl_auth(struct hostapd_data *hapd,
  131. const u8 *mac, int accepted,
  132. u32 session_timeout)
  133. {
  134. if (hapd->driver == NULL || hapd->driver->set_radius_acl_auth == NULL)
  135. return 0;
  136. return hapd->driver->set_radius_acl_auth(hapd->drv_priv, mac, accepted,
  137. session_timeout);
  138. }
  139. static int hostapd_set_radius_acl_expire(struct hostapd_data *hapd,
  140. const u8 *mac)
  141. {
  142. if (hapd->driver == NULL ||
  143. hapd->driver->set_radius_acl_expire == NULL)
  144. return 0;
  145. return hapd->driver->set_radius_acl_expire(hapd->drv_priv, mac);
  146. }
  147. static int hostapd_set_bss_params(struct hostapd_data *hapd,
  148. int use_protection)
  149. {
  150. int ret = 0;
  151. int preamble;
  152. #ifdef CONFIG_IEEE80211N
  153. u8 buf[60], *ht_capab, *ht_oper, *pos;
  154. pos = buf;
  155. ht_capab = pos;
  156. pos = hostapd_eid_ht_capabilities(hapd, pos);
  157. ht_oper = pos;
  158. pos = hostapd_eid_ht_operation(hapd, pos);
  159. if (pos > ht_oper && ht_oper > ht_capab &&
  160. hostapd_set_ht_params(hapd, ht_capab + 2, ht_capab[1],
  161. ht_oper + 2, ht_oper[1])) {
  162. wpa_printf(MSG_ERROR, "Could not set HT capabilities "
  163. "for kernel driver");
  164. ret = -1;
  165. }
  166. #endif /* CONFIG_IEEE80211N */
  167. if (hostapd_set_cts_protect(hapd, use_protection)) {
  168. wpa_printf(MSG_ERROR, "Failed to set CTS protect in kernel "
  169. "driver");
  170. ret = -1;
  171. }
  172. if (hapd->iface->current_mode &&
  173. hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G &&
  174. hostapd_set_short_slot_time(hapd,
  175. hapd->iface->num_sta_no_short_slot_time
  176. > 0 ? 0 : 1)) {
  177. wpa_printf(MSG_ERROR, "Failed to set Short Slot Time option "
  178. "in kernel driver");
  179. ret = -1;
  180. }
  181. if (hapd->iface->num_sta_no_short_preamble == 0 &&
  182. hapd->iconf->preamble == SHORT_PREAMBLE)
  183. preamble = SHORT_PREAMBLE;
  184. else
  185. preamble = LONG_PREAMBLE;
  186. if (hostapd_set_preamble(hapd, preamble)) {
  187. wpa_printf(MSG_ERROR, "Could not set preamble for kernel "
  188. "driver");
  189. ret = -1;
  190. }
  191. return ret;
  192. }
  193. static int hostapd_set_beacon(struct hostapd_data *hapd,
  194. const u8 *head, size_t head_len,
  195. const u8 *tail, size_t tail_len, int dtim_period,
  196. int beacon_int)
  197. {
  198. if (hapd->driver == NULL || hapd->driver->set_beacon == NULL)
  199. return 0;
  200. return hapd->driver->set_beacon(hapd->drv_priv,
  201. head, head_len, tail, tail_len,
  202. dtim_period, beacon_int);
  203. }
  204. static int hostapd_vlan_if_add(struct hostapd_data *hapd, const char *ifname)
  205. {
  206. return hostapd_if_add(hapd, WPA_IF_AP_VLAN, ifname, NULL, NULL, NULL);
  207. }
  208. static int hostapd_vlan_if_remove(struct hostapd_data *hapd,
  209. const char *ifname)
  210. {
  211. return hostapd_if_remove(hapd, WPA_IF_AP_VLAN, ifname);
  212. }
  213. static int hostapd_set_wds_sta(struct hostapd_data *hapd, const u8 *addr,
  214. int aid, int val)
  215. {
  216. if (hapd->driver == NULL || hapd->driver->set_wds_sta == NULL)
  217. return 0;
  218. return hapd->driver->set_wds_sta(hapd->drv_priv, addr, aid, val);
  219. }
  220. static int hostapd_set_sta_vlan(const char *ifname, struct hostapd_data *hapd,
  221. const u8 *addr, int vlan_id)
  222. {
  223. if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL)
  224. return 0;
  225. return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname,
  226. vlan_id);
  227. }
  228. static int hostapd_get_inact_sec(struct hostapd_data *hapd, const u8 *addr)
  229. {
  230. if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL)
  231. return 0;
  232. return hapd->driver->get_inact_sec(hapd->drv_priv, addr);
  233. }
  234. static int hostapd_sta_deauth(struct hostapd_data *hapd, const u8 *addr,
  235. int reason)
  236. {
  237. if (hapd->driver == NULL || hapd->driver->sta_deauth == NULL)
  238. return 0;
  239. return hapd->driver->sta_deauth(hapd->drv_priv, hapd->own_addr, addr,
  240. reason);
  241. }
  242. static int hostapd_sta_disassoc(struct hostapd_data *hapd, const u8 *addr,
  243. int reason)
  244. {
  245. if (hapd->driver == NULL || hapd->driver->sta_disassoc == NULL)
  246. return 0;
  247. return hapd->driver->sta_disassoc(hapd->drv_priv, hapd->own_addr, addr,
  248. reason);
  249. }
  250. static int hostapd_sta_add(struct hostapd_data *hapd,
  251. const u8 *addr, u16 aid, u16 capability,
  252. const u8 *supp_rates, size_t supp_rates_len,
  253. u16 listen_interval,
  254. const struct ieee80211_ht_capabilities *ht_capab)
  255. {
  256. struct hostapd_sta_add_params params;
  257. if (hapd->driver == NULL)
  258. return 0;
  259. if (hapd->driver->sta_add == NULL)
  260. return 0;
  261. os_memset(&params, 0, sizeof(params));
  262. params.addr = addr;
  263. params.aid = aid;
  264. params.capability = capability;
  265. params.supp_rates = supp_rates;
  266. params.supp_rates_len = supp_rates_len;
  267. params.listen_interval = listen_interval;
  268. params.ht_capabilities = ht_capab;
  269. return hapd->driver->sta_add(hapd->drv_priv, &params);
  270. }
  271. static int hostapd_sta_remove(struct hostapd_data *hapd, const u8 *addr)
  272. {
  273. if (hapd->driver == NULL || hapd->driver->sta_remove == NULL)
  274. return 0;
  275. return hapd->driver->sta_remove(hapd->drv_priv, addr);
  276. }
  277. static int hostapd_set_countermeasures(struct hostapd_data *hapd, int enabled)
  278. {
  279. if (hapd->driver == NULL ||
  280. hapd->driver->hapd_set_countermeasures == NULL)
  281. return 0;
  282. return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled);
  283. }
  284. void hostapd_set_driver_ops(struct hostapd_driver_ops *ops)
  285. {
  286. ops->set_ap_wps_ie = hostapd_set_ap_wps_ie;
  287. ops->send_mgmt_frame = hostapd_send_mgmt_frame;
  288. ops->send_eapol = hostapd_send_eapol;
  289. ops->set_authorized = hostapd_set_authorized;
  290. ops->set_key = hostapd_set_key;
  291. ops->read_sta_data = hostapd_read_sta_data;
  292. ops->sta_clear_stats = hostapd_sta_clear_stats;
  293. ops->set_sta_flags = hostapd_set_sta_flags;
  294. ops->set_drv_ieee8021x = hostapd_set_drv_ieee8021x;
  295. ops->set_radius_acl_auth = hostapd_set_radius_acl_auth;
  296. ops->set_radius_acl_expire = hostapd_set_radius_acl_expire;
  297. ops->set_bss_params = hostapd_set_bss_params;
  298. ops->set_beacon = hostapd_set_beacon;
  299. ops->vlan_if_add = hostapd_vlan_if_add;
  300. ops->vlan_if_remove = hostapd_vlan_if_remove;
  301. ops->set_wds_sta = hostapd_set_wds_sta;
  302. ops->set_sta_vlan = hostapd_set_sta_vlan;
  303. ops->get_inact_sec = hostapd_get_inact_sec;
  304. ops->sta_deauth = hostapd_sta_deauth;
  305. ops->sta_disassoc = hostapd_sta_disassoc;
  306. ops->sta_add = hostapd_sta_add;
  307. ops->sta_remove = hostapd_sta_remove;
  308. ops->set_countermeasures = hostapd_set_countermeasures;
  309. }
  310. int hostapd_set_privacy(struct hostapd_data *hapd, int enabled)
  311. {
  312. if (hapd->driver == NULL || hapd->driver->set_privacy == NULL)
  313. return 0;
  314. return hapd->driver->set_privacy(hapd->drv_priv, enabled);
  315. }
  316. int hostapd_set_generic_elem(struct hostapd_data *hapd, const u8 *elem,
  317. size_t elem_len)
  318. {
  319. if (hapd->driver == NULL || hapd->driver->set_generic_elem == NULL)
  320. return 0;
  321. return hapd->driver->set_generic_elem(hapd->drv_priv, elem, elem_len);
  322. }
  323. int hostapd_get_ssid(struct hostapd_data *hapd, u8 *buf, size_t len)
  324. {
  325. if (hapd->driver == NULL || hapd->driver->hapd_get_ssid == NULL)
  326. return 0;
  327. return hapd->driver->hapd_get_ssid(hapd->drv_priv, buf, len);
  328. }
  329. int hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len)
  330. {
  331. if (hapd->driver == NULL || hapd->driver->hapd_set_ssid == NULL)
  332. return 0;
  333. return hapd->driver->hapd_set_ssid(hapd->drv_priv, buf, len);
  334. }
  335. int hostapd_if_add(struct hostapd_data *hapd, enum wpa_driver_if_type type,
  336. const char *ifname, const u8 *addr, void *bss_ctx,
  337. void **drv_priv)
  338. {
  339. if (hapd->driver == NULL || hapd->driver->if_add == NULL)
  340. return -1;
  341. return hapd->driver->if_add(hapd->drv_priv, type, ifname, addr,
  342. bss_ctx, drv_priv);
  343. }
  344. int hostapd_if_remove(struct hostapd_data *hapd, enum wpa_driver_if_type type,
  345. const char *ifname)
  346. {
  347. if (hapd->driver == NULL || hapd->driver->if_remove == NULL)
  348. return -1;
  349. return hapd->driver->if_remove(hapd->drv_priv, type, ifname);
  350. }
  351. int hostapd_set_ieee8021x(struct hostapd_data *hapd,
  352. struct wpa_bss_params *params)
  353. {
  354. if (hapd->driver == NULL || hapd->driver->set_ieee8021x == NULL)
  355. return 0;
  356. return hapd->driver->set_ieee8021x(hapd->drv_priv, params);
  357. }
  358. int hostapd_get_seqnum(const char *ifname, struct hostapd_data *hapd,
  359. const u8 *addr, int idx, u8 *seq)
  360. {
  361. if (hapd->driver == NULL || hapd->driver->get_seqnum == NULL)
  362. return 0;
  363. return hapd->driver->get_seqnum(ifname, hapd->drv_priv, addr, idx,
  364. seq);
  365. }
  366. int hostapd_flush(struct hostapd_data *hapd)
  367. {
  368. if (hapd->driver == NULL || hapd->driver->flush == NULL)
  369. return 0;
  370. return hapd->driver->flush(hapd->drv_priv);
  371. }
  372. int hostapd_set_freq(struct hostapd_data *hapd, int mode, int freq,
  373. int channel, int ht_enabled, int sec_channel_offset)
  374. {
  375. struct hostapd_freq_params data;
  376. if (hapd->driver == NULL)
  377. return 0;
  378. if (hapd->driver->set_freq == NULL)
  379. return 0;
  380. os_memset(&data, 0, sizeof(data));
  381. data.mode = mode;
  382. data.freq = freq;
  383. data.channel = channel;
  384. data.ht_enabled = ht_enabled;
  385. data.sec_channel_offset = sec_channel_offset;
  386. return hapd->driver->set_freq(hapd->drv_priv, &data);
  387. }
  388. int hostapd_set_rts(struct hostapd_data *hapd, int rts)
  389. {
  390. if (hapd->driver == NULL || hapd->driver->set_rts == NULL)
  391. return 0;
  392. return hapd->driver->set_rts(hapd->drv_priv, rts);
  393. }
  394. int hostapd_set_frag(struct hostapd_data *hapd, int frag)
  395. {
  396. if (hapd->driver == NULL || hapd->driver->set_frag == NULL)
  397. return 0;
  398. return hapd->driver->set_frag(hapd->drv_priv, frag);
  399. }
  400. int hostapd_sta_set_flags(struct hostapd_data *hapd, u8 *addr,
  401. int total_flags, int flags_or, int flags_and)
  402. {
  403. if (hapd->driver == NULL || hapd->driver->sta_set_flags == NULL)
  404. return 0;
  405. return hapd->driver->sta_set_flags(hapd->drv_priv, addr, total_flags,
  406. flags_or, flags_and);
  407. }
  408. int hostapd_set_rate_sets(struct hostapd_data *hapd, int *supp_rates,
  409. int *basic_rates, int mode)
  410. {
  411. if (hapd->driver == NULL || hapd->driver->set_rate_sets == NULL)
  412. return 0;
  413. return hapd->driver->set_rate_sets(hapd->drv_priv, supp_rates,
  414. basic_rates, mode);
  415. }
  416. int hostapd_set_country(struct hostapd_data *hapd, const char *country)
  417. {
  418. if (hapd->driver == NULL ||
  419. hapd->driver->set_country == NULL)
  420. return 0;
  421. return hapd->driver->set_country(hapd->drv_priv, country);
  422. }
  423. int hostapd_set_cts_protect(struct hostapd_data *hapd, int value)
  424. {
  425. if (hapd->driver == NULL || hapd->driver->set_cts_protect == NULL)
  426. return 0;
  427. return hapd->driver->set_cts_protect(hapd->drv_priv, value);
  428. }
  429. int hostapd_set_preamble(struct hostapd_data *hapd, int value)
  430. {
  431. if (hapd->driver == NULL || hapd->driver->set_preamble == NULL)
  432. return 0;
  433. return hapd->driver->set_preamble(hapd->drv_priv, value);
  434. }
  435. int hostapd_set_short_slot_time(struct hostapd_data *hapd, int value)
  436. {
  437. if (hapd->driver == NULL || hapd->driver->set_short_slot_time == NULL)
  438. return 0;
  439. return hapd->driver->set_short_slot_time(hapd->drv_priv, value);
  440. }
  441. int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs,
  442. int cw_min, int cw_max, int burst_time)
  443. {
  444. if (hapd->driver == NULL || hapd->driver->set_tx_queue_params == NULL)
  445. return 0;
  446. return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,
  447. cw_min, cw_max, burst_time);
  448. }
  449. int hostapd_valid_bss_mask(struct hostapd_data *hapd, const u8 *addr,
  450. const u8 *mask)
  451. {
  452. if (hapd->driver == NULL || hapd->driver->valid_bss_mask == NULL)
  453. return 1;
  454. return hapd->driver->valid_bss_mask(hapd->drv_priv, addr, mask);
  455. }
  456. struct hostapd_hw_modes *
  457. hostapd_get_hw_feature_data(struct hostapd_data *hapd, u16 *num_modes,
  458. u16 *flags)
  459. {
  460. if (hapd->driver == NULL ||
  461. hapd->driver->get_hw_feature_data == NULL)
  462. return NULL;
  463. return hapd->driver->get_hw_feature_data(hapd->drv_priv, num_modes,
  464. flags);
  465. }
  466. int hostapd_driver_commit(struct hostapd_data *hapd)
  467. {
  468. if (hapd->driver == NULL || hapd->driver->commit == NULL)
  469. return 0;
  470. return hapd->driver->commit(hapd->drv_priv);
  471. }
  472. int hostapd_set_ht_params(struct hostapd_data *hapd,
  473. const u8 *ht_capab, size_t ht_capab_len,
  474. const u8 *ht_oper, size_t ht_oper_len)
  475. {
  476. if (hapd->driver == NULL || hapd->driver->set_ht_params == NULL ||
  477. ht_capab == NULL || ht_oper == NULL)
  478. return 0;
  479. return hapd->driver->set_ht_params(hapd->drv_priv,
  480. ht_capab, ht_capab_len,
  481. ht_oper, ht_oper_len);
  482. }
  483. int hostapd_drv_none(struct hostapd_data *hapd)
  484. {
  485. return hapd->driver && os_strcmp(hapd->driver->name, "none") == 0;
  486. }
  487. int hostapd_driver_scan(struct hostapd_data *hapd,
  488. struct wpa_driver_scan_params *params)
  489. {
  490. if (hapd->driver && hapd->driver->scan2)
  491. return hapd->driver->scan2(hapd->drv_priv, params);
  492. return -1;
  493. }
  494. struct wpa_scan_results * hostapd_driver_get_scan_results(
  495. struct hostapd_data *hapd)
  496. {
  497. if (hapd->driver && hapd->driver->get_scan_results2)
  498. return hapd->driver->get_scan_results2(hapd->drv_priv);
  499. return NULL;
  500. }