wpa_auth_glue.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. /*
  2. * hostapd / WPA authenticator glue code
  3. * Copyright (c) 2002-2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "common/ieee802_11_defs.h"
  11. #include "common/sae.h"
  12. #include "eapol_auth/eapol_auth_sm.h"
  13. #include "eapol_auth/eapol_auth_sm_i.h"
  14. #include "eap_server/eap.h"
  15. #include "l2_packet/l2_packet.h"
  16. #include "hostapd.h"
  17. #include "ieee802_1x.h"
  18. #include "preauth_auth.h"
  19. #include "sta_info.h"
  20. #include "tkip_countermeasures.h"
  21. #include "ap_drv_ops.h"
  22. #include "ap_config.h"
  23. #include "wpa_auth.h"
  24. #include "wpa_auth_glue.h"
  25. static void hostapd_wpa_auth_conf(struct hostapd_bss_config *conf,
  26. struct hostapd_config *iconf,
  27. struct wpa_auth_config *wconf)
  28. {
  29. os_memset(wconf, 0, sizeof(*wconf));
  30. wconf->wpa = conf->wpa;
  31. wconf->wpa_key_mgmt = conf->wpa_key_mgmt;
  32. wconf->wpa_pairwise = conf->wpa_pairwise;
  33. wconf->wpa_group = conf->wpa_group;
  34. wconf->wpa_group_rekey = conf->wpa_group_rekey;
  35. wconf->wpa_strict_rekey = conf->wpa_strict_rekey;
  36. wconf->wpa_gmk_rekey = conf->wpa_gmk_rekey;
  37. wconf->wpa_ptk_rekey = conf->wpa_ptk_rekey;
  38. wconf->rsn_pairwise = conf->rsn_pairwise;
  39. wconf->rsn_preauth = conf->rsn_preauth;
  40. wconf->eapol_version = conf->eapol_version;
  41. wconf->peerkey = conf->peerkey;
  42. wconf->wmm_enabled = conf->wmm_enabled;
  43. wconf->wmm_uapsd = conf->wmm_uapsd;
  44. wconf->disable_pmksa_caching = conf->disable_pmksa_caching;
  45. wconf->okc = conf->okc;
  46. #ifdef CONFIG_IEEE80211W
  47. wconf->ieee80211w = conf->ieee80211w;
  48. #endif /* CONFIG_IEEE80211W */
  49. #ifdef CONFIG_IEEE80211R
  50. wconf->ssid_len = conf->ssid.ssid_len;
  51. if (wconf->ssid_len > SSID_LEN)
  52. wconf->ssid_len = SSID_LEN;
  53. os_memcpy(wconf->ssid, conf->ssid.ssid, wconf->ssid_len);
  54. os_memcpy(wconf->mobility_domain, conf->mobility_domain,
  55. MOBILITY_DOMAIN_ID_LEN);
  56. if (conf->nas_identifier &&
  57. os_strlen(conf->nas_identifier) <= FT_R0KH_ID_MAX_LEN) {
  58. wconf->r0_key_holder_len = os_strlen(conf->nas_identifier);
  59. os_memcpy(wconf->r0_key_holder, conf->nas_identifier,
  60. wconf->r0_key_holder_len);
  61. }
  62. os_memcpy(wconf->r1_key_holder, conf->r1_key_holder, FT_R1KH_ID_LEN);
  63. wconf->r0_key_lifetime = conf->r0_key_lifetime;
  64. wconf->reassociation_deadline = conf->reassociation_deadline;
  65. wconf->r0kh_list = conf->r0kh_list;
  66. wconf->r1kh_list = conf->r1kh_list;
  67. wconf->pmk_r1_push = conf->pmk_r1_push;
  68. wconf->ft_over_ds = conf->ft_over_ds;
  69. #endif /* CONFIG_IEEE80211R */
  70. #ifdef CONFIG_HS20
  71. wconf->disable_gtk = conf->disable_dgaf;
  72. #endif /* CONFIG_HS20 */
  73. #ifdef CONFIG_TESTING_OPTIONS
  74. wconf->corrupt_gtk_rekey_mic_probability =
  75. iconf->corrupt_gtk_rekey_mic_probability;
  76. #endif /* CONFIG_TESTING_OPTIONS */
  77. #ifdef CONFIG_P2P
  78. os_memcpy(wconf->ip_addr_go, conf->ip_addr_go, 4);
  79. os_memcpy(wconf->ip_addr_mask, conf->ip_addr_mask, 4);
  80. os_memcpy(wconf->ip_addr_start, conf->ip_addr_start, 4);
  81. os_memcpy(wconf->ip_addr_end, conf->ip_addr_end, 4);
  82. #endif /* CONFIG_P2P */
  83. }
  84. static void hostapd_wpa_auth_logger(void *ctx, const u8 *addr,
  85. logger_level level, const char *txt)
  86. {
  87. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  88. struct hostapd_data *hapd = ctx;
  89. int hlevel;
  90. switch (level) {
  91. case LOGGER_WARNING:
  92. hlevel = HOSTAPD_LEVEL_WARNING;
  93. break;
  94. case LOGGER_INFO:
  95. hlevel = HOSTAPD_LEVEL_INFO;
  96. break;
  97. case LOGGER_DEBUG:
  98. default:
  99. hlevel = HOSTAPD_LEVEL_DEBUG;
  100. break;
  101. }
  102. hostapd_logger(hapd, addr, HOSTAPD_MODULE_WPA, hlevel, "%s", txt);
  103. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  104. }
  105. static void hostapd_wpa_auth_disconnect(void *ctx, const u8 *addr,
  106. u16 reason)
  107. {
  108. struct hostapd_data *hapd = ctx;
  109. wpa_printf(MSG_DEBUG, "%s: WPA authenticator requests disconnect: "
  110. "STA " MACSTR " reason %d",
  111. __func__, MAC2STR(addr), reason);
  112. ap_sta_disconnect(hapd, NULL, addr, reason);
  113. }
  114. static int hostapd_wpa_auth_mic_failure_report(void *ctx, const u8 *addr)
  115. {
  116. struct hostapd_data *hapd = ctx;
  117. return michael_mic_failure(hapd, addr, 0);
  118. }
  119. static void hostapd_wpa_auth_set_eapol(void *ctx, const u8 *addr,
  120. wpa_eapol_variable var, int value)
  121. {
  122. struct hostapd_data *hapd = ctx;
  123. struct sta_info *sta = ap_get_sta(hapd, addr);
  124. if (sta == NULL)
  125. return;
  126. switch (var) {
  127. case WPA_EAPOL_portEnabled:
  128. ieee802_1x_notify_port_enabled(sta->eapol_sm, value);
  129. break;
  130. case WPA_EAPOL_portValid:
  131. ieee802_1x_notify_port_valid(sta->eapol_sm, value);
  132. break;
  133. case WPA_EAPOL_authorized:
  134. ieee802_1x_set_sta_authorized(hapd, sta, value);
  135. break;
  136. case WPA_EAPOL_portControl_Auto:
  137. if (sta->eapol_sm)
  138. sta->eapol_sm->portControl = Auto;
  139. break;
  140. case WPA_EAPOL_keyRun:
  141. if (sta->eapol_sm)
  142. sta->eapol_sm->keyRun = value ? TRUE : FALSE;
  143. break;
  144. case WPA_EAPOL_keyAvailable:
  145. if (sta->eapol_sm)
  146. sta->eapol_sm->eap_if->eapKeyAvailable =
  147. value ? TRUE : FALSE;
  148. break;
  149. case WPA_EAPOL_keyDone:
  150. if (sta->eapol_sm)
  151. sta->eapol_sm->keyDone = value ? TRUE : FALSE;
  152. break;
  153. case WPA_EAPOL_inc_EapolFramesTx:
  154. if (sta->eapol_sm)
  155. sta->eapol_sm->dot1xAuthEapolFramesTx++;
  156. break;
  157. }
  158. }
  159. static int hostapd_wpa_auth_get_eapol(void *ctx, const u8 *addr,
  160. wpa_eapol_variable var)
  161. {
  162. struct hostapd_data *hapd = ctx;
  163. struct sta_info *sta = ap_get_sta(hapd, addr);
  164. if (sta == NULL || sta->eapol_sm == NULL)
  165. return -1;
  166. switch (var) {
  167. case WPA_EAPOL_keyRun:
  168. return sta->eapol_sm->keyRun;
  169. case WPA_EAPOL_keyAvailable:
  170. return sta->eapol_sm->eap_if->eapKeyAvailable;
  171. default:
  172. return -1;
  173. }
  174. }
  175. static const u8 * hostapd_wpa_auth_get_psk(void *ctx, const u8 *addr,
  176. const u8 *p2p_dev_addr,
  177. const u8 *prev_psk)
  178. {
  179. struct hostapd_data *hapd = ctx;
  180. struct sta_info *sta = ap_get_sta(hapd, addr);
  181. const u8 *psk;
  182. #ifdef CONFIG_SAE
  183. if (sta && sta->auth_alg == WLAN_AUTH_SAE) {
  184. if (!sta->sae || prev_psk)
  185. return NULL;
  186. return sta->sae->pmk;
  187. }
  188. #endif /* CONFIG_SAE */
  189. psk = hostapd_get_psk(hapd->conf, addr, p2p_dev_addr, prev_psk);
  190. /*
  191. * This is about to iterate over all psks, prev_psk gives the last
  192. * returned psk which should not be returned again.
  193. * logic list (all hostapd_get_psk; all sta->psk)
  194. */
  195. if (sta && sta->psk && !psk) {
  196. struct hostapd_sta_wpa_psk_short *pos;
  197. psk = sta->psk->psk;
  198. for (pos = sta->psk; pos; pos = pos->next) {
  199. if (pos->psk == prev_psk) {
  200. psk = pos->next ? pos->next->psk : NULL;
  201. break;
  202. }
  203. }
  204. }
  205. return psk;
  206. }
  207. static int hostapd_wpa_auth_get_msk(void *ctx, const u8 *addr, u8 *msk,
  208. size_t *len)
  209. {
  210. struct hostapd_data *hapd = ctx;
  211. const u8 *key;
  212. size_t keylen;
  213. struct sta_info *sta;
  214. sta = ap_get_sta(hapd, addr);
  215. if (sta == NULL)
  216. return -1;
  217. key = ieee802_1x_get_key(sta->eapol_sm, &keylen);
  218. if (key == NULL)
  219. return -1;
  220. if (keylen > *len)
  221. keylen = *len;
  222. os_memcpy(msk, key, keylen);
  223. *len = keylen;
  224. return 0;
  225. }
  226. static int hostapd_wpa_auth_set_key(void *ctx, int vlan_id, enum wpa_alg alg,
  227. const u8 *addr, int idx, u8 *key,
  228. size_t key_len)
  229. {
  230. struct hostapd_data *hapd = ctx;
  231. const char *ifname = hapd->conf->iface;
  232. if (vlan_id > 0) {
  233. ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan, vlan_id);
  234. if (ifname == NULL)
  235. return -1;
  236. }
  237. return hostapd_drv_set_key(ifname, hapd, alg, addr, idx, 1, NULL, 0,
  238. key, key_len);
  239. }
  240. static int hostapd_wpa_auth_get_seqnum(void *ctx, const u8 *addr, int idx,
  241. u8 *seq)
  242. {
  243. struct hostapd_data *hapd = ctx;
  244. return hostapd_get_seqnum(hapd->conf->iface, hapd, addr, idx, seq);
  245. }
  246. static int hostapd_wpa_auth_send_eapol(void *ctx, const u8 *addr,
  247. const u8 *data, size_t data_len,
  248. int encrypt)
  249. {
  250. struct hostapd_data *hapd = ctx;
  251. struct sta_info *sta;
  252. u32 flags = 0;
  253. sta = ap_get_sta(hapd, addr);
  254. if (sta)
  255. flags = hostapd_sta_flags_to_drv(sta->flags);
  256. return hostapd_drv_hapd_send_eapol(hapd, addr, data, data_len,
  257. encrypt, flags);
  258. }
  259. static int hostapd_wpa_auth_for_each_sta(
  260. void *ctx, int (*cb)(struct wpa_state_machine *sm, void *ctx),
  261. void *cb_ctx)
  262. {
  263. struct hostapd_data *hapd = ctx;
  264. struct sta_info *sta;
  265. for (sta = hapd->sta_list; sta; sta = sta->next) {
  266. if (sta->wpa_sm && cb(sta->wpa_sm, cb_ctx))
  267. return 1;
  268. }
  269. return 0;
  270. }
  271. struct wpa_auth_iface_iter_data {
  272. int (*cb)(struct wpa_authenticator *sm, void *ctx);
  273. void *cb_ctx;
  274. };
  275. static int wpa_auth_iface_iter(struct hostapd_iface *iface, void *ctx)
  276. {
  277. struct wpa_auth_iface_iter_data *data = ctx;
  278. size_t i;
  279. for (i = 0; i < iface->num_bss; i++) {
  280. if (iface->bss[i]->wpa_auth &&
  281. data->cb(iface->bss[i]->wpa_auth, data->cb_ctx))
  282. return 1;
  283. }
  284. return 0;
  285. }
  286. static int hostapd_wpa_auth_for_each_auth(
  287. void *ctx, int (*cb)(struct wpa_authenticator *sm, void *ctx),
  288. void *cb_ctx)
  289. {
  290. struct hostapd_data *hapd = ctx;
  291. struct wpa_auth_iface_iter_data data;
  292. if (hapd->iface->interfaces == NULL ||
  293. hapd->iface->interfaces->for_each_interface == NULL)
  294. return -1;
  295. data.cb = cb;
  296. data.cb_ctx = cb_ctx;
  297. return hapd->iface->interfaces->for_each_interface(
  298. hapd->iface->interfaces, wpa_auth_iface_iter, &data);
  299. }
  300. #ifdef CONFIG_IEEE80211R
  301. struct wpa_auth_ft_iface_iter_data {
  302. struct hostapd_data *src_hapd;
  303. const u8 *dst;
  304. const u8 *data;
  305. size_t data_len;
  306. };
  307. static int hostapd_wpa_auth_ft_iter(struct hostapd_iface *iface, void *ctx)
  308. {
  309. struct wpa_auth_ft_iface_iter_data *idata = ctx;
  310. struct hostapd_data *hapd;
  311. size_t j;
  312. for (j = 0; j < iface->num_bss; j++) {
  313. hapd = iface->bss[j];
  314. if (hapd == idata->src_hapd)
  315. continue;
  316. if (os_memcmp(hapd->own_addr, idata->dst, ETH_ALEN) == 0) {
  317. wpa_printf(MSG_DEBUG, "FT: Send RRB data directly to "
  318. "locally managed BSS " MACSTR "@%s -> "
  319. MACSTR "@%s",
  320. MAC2STR(idata->src_hapd->own_addr),
  321. idata->src_hapd->conf->iface,
  322. MAC2STR(hapd->own_addr), hapd->conf->iface);
  323. wpa_ft_rrb_rx(hapd->wpa_auth,
  324. idata->src_hapd->own_addr,
  325. idata->data, idata->data_len);
  326. return 1;
  327. }
  328. }
  329. return 0;
  330. }
  331. #endif /* CONFIG_IEEE80211R */
  332. static int hostapd_wpa_auth_send_ether(void *ctx, const u8 *dst, u16 proto,
  333. const u8 *data, size_t data_len)
  334. {
  335. struct hostapd_data *hapd = ctx;
  336. struct l2_ethhdr *buf;
  337. int ret;
  338. #ifdef CONFIG_IEEE80211R
  339. if (proto == ETH_P_RRB && hapd->iface->interfaces &&
  340. hapd->iface->interfaces->for_each_interface) {
  341. int res;
  342. struct wpa_auth_ft_iface_iter_data idata;
  343. idata.src_hapd = hapd;
  344. idata.dst = dst;
  345. idata.data = data;
  346. idata.data_len = data_len;
  347. res = hapd->iface->interfaces->for_each_interface(
  348. hapd->iface->interfaces, hostapd_wpa_auth_ft_iter,
  349. &idata);
  350. if (res == 1)
  351. return data_len;
  352. }
  353. #endif /* CONFIG_IEEE80211R */
  354. if (hapd->driver && hapd->driver->send_ether)
  355. return hapd->driver->send_ether(hapd->drv_priv, dst,
  356. hapd->own_addr, proto,
  357. data, data_len);
  358. if (hapd->l2 == NULL)
  359. return -1;
  360. buf = os_malloc(sizeof(*buf) + data_len);
  361. if (buf == NULL)
  362. return -1;
  363. os_memcpy(buf->h_dest, dst, ETH_ALEN);
  364. os_memcpy(buf->h_source, hapd->own_addr, ETH_ALEN);
  365. buf->h_proto = host_to_be16(proto);
  366. os_memcpy(buf + 1, data, data_len);
  367. ret = l2_packet_send(hapd->l2, dst, proto, (u8 *) buf,
  368. sizeof(*buf) + data_len);
  369. os_free(buf);
  370. return ret;
  371. }
  372. #ifdef CONFIG_IEEE80211R
  373. static int hostapd_wpa_auth_send_ft_action(void *ctx, const u8 *dst,
  374. const u8 *data, size_t data_len)
  375. {
  376. struct hostapd_data *hapd = ctx;
  377. int res;
  378. struct ieee80211_mgmt *m;
  379. size_t mlen;
  380. struct sta_info *sta;
  381. sta = ap_get_sta(hapd, dst);
  382. if (sta == NULL || sta->wpa_sm == NULL)
  383. return -1;
  384. m = os_zalloc(sizeof(*m) + data_len);
  385. if (m == NULL)
  386. return -1;
  387. mlen = ((u8 *) &m->u - (u8 *) m) + data_len;
  388. m->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  389. WLAN_FC_STYPE_ACTION);
  390. os_memcpy(m->da, dst, ETH_ALEN);
  391. os_memcpy(m->sa, hapd->own_addr, ETH_ALEN);
  392. os_memcpy(m->bssid, hapd->own_addr, ETH_ALEN);
  393. os_memcpy(&m->u, data, data_len);
  394. res = hostapd_drv_send_mlme(hapd, (u8 *) m, mlen, 0);
  395. os_free(m);
  396. return res;
  397. }
  398. static struct wpa_state_machine *
  399. hostapd_wpa_auth_add_sta(void *ctx, const u8 *sta_addr)
  400. {
  401. struct hostapd_data *hapd = ctx;
  402. struct sta_info *sta;
  403. if (hostapd_add_sta_node(hapd, sta_addr, WLAN_AUTH_FT) < 0)
  404. return NULL;
  405. sta = ap_sta_add(hapd, sta_addr);
  406. if (sta == NULL)
  407. return NULL;
  408. if (sta->wpa_sm) {
  409. sta->auth_alg = WLAN_AUTH_FT;
  410. return sta->wpa_sm;
  411. }
  412. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth, sta->addr, NULL);
  413. if (sta->wpa_sm == NULL) {
  414. ap_free_sta(hapd, sta);
  415. return NULL;
  416. }
  417. sta->auth_alg = WLAN_AUTH_FT;
  418. return sta->wpa_sm;
  419. }
  420. static void hostapd_rrb_receive(void *ctx, const u8 *src_addr, const u8 *buf,
  421. size_t len)
  422. {
  423. struct hostapd_data *hapd = ctx;
  424. struct l2_ethhdr *ethhdr;
  425. if (len < sizeof(*ethhdr))
  426. return;
  427. ethhdr = (struct l2_ethhdr *) buf;
  428. wpa_printf(MSG_DEBUG, "FT: RRB received packet " MACSTR " -> "
  429. MACSTR, MAC2STR(ethhdr->h_source), MAC2STR(ethhdr->h_dest));
  430. wpa_ft_rrb_rx(hapd->wpa_auth, ethhdr->h_source, buf + sizeof(*ethhdr),
  431. len - sizeof(*ethhdr));
  432. }
  433. static int hostapd_wpa_auth_add_tspec(void *ctx, const u8 *sta_addr,
  434. u8 *tspec_ie, size_t tspec_ielen)
  435. {
  436. struct hostapd_data *hapd = ctx;
  437. return hostapd_add_tspec(hapd, sta_addr, tspec_ie, tspec_ielen);
  438. }
  439. #endif /* CONFIG_IEEE80211R */
  440. int hostapd_setup_wpa(struct hostapd_data *hapd)
  441. {
  442. struct wpa_auth_config _conf;
  443. struct wpa_auth_callbacks cb;
  444. const u8 *wpa_ie;
  445. size_t wpa_ie_len;
  446. hostapd_wpa_auth_conf(hapd->conf, hapd->iconf, &_conf);
  447. if (hapd->iface->drv_flags & WPA_DRIVER_FLAGS_EAPOL_TX_STATUS)
  448. _conf.tx_status = 1;
  449. if (hapd->iface->drv_flags & WPA_DRIVER_FLAGS_AP_MLME)
  450. _conf.ap_mlme = 1;
  451. os_memset(&cb, 0, sizeof(cb));
  452. cb.ctx = hapd;
  453. cb.logger = hostapd_wpa_auth_logger;
  454. cb.disconnect = hostapd_wpa_auth_disconnect;
  455. cb.mic_failure_report = hostapd_wpa_auth_mic_failure_report;
  456. cb.set_eapol = hostapd_wpa_auth_set_eapol;
  457. cb.get_eapol = hostapd_wpa_auth_get_eapol;
  458. cb.get_psk = hostapd_wpa_auth_get_psk;
  459. cb.get_msk = hostapd_wpa_auth_get_msk;
  460. cb.set_key = hostapd_wpa_auth_set_key;
  461. cb.get_seqnum = hostapd_wpa_auth_get_seqnum;
  462. cb.send_eapol = hostapd_wpa_auth_send_eapol;
  463. cb.for_each_sta = hostapd_wpa_auth_for_each_sta;
  464. cb.for_each_auth = hostapd_wpa_auth_for_each_auth;
  465. cb.send_ether = hostapd_wpa_auth_send_ether;
  466. #ifdef CONFIG_IEEE80211R
  467. cb.send_ft_action = hostapd_wpa_auth_send_ft_action;
  468. cb.add_sta = hostapd_wpa_auth_add_sta;
  469. cb.add_tspec = hostapd_wpa_auth_add_tspec;
  470. #endif /* CONFIG_IEEE80211R */
  471. hapd->wpa_auth = wpa_init(hapd->own_addr, &_conf, &cb);
  472. if (hapd->wpa_auth == NULL) {
  473. wpa_printf(MSG_ERROR, "WPA initialization failed.");
  474. return -1;
  475. }
  476. if (hostapd_set_privacy(hapd, 1)) {
  477. wpa_printf(MSG_ERROR, "Could not set PrivacyInvoked "
  478. "for interface %s", hapd->conf->iface);
  479. return -1;
  480. }
  481. wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
  482. if (hostapd_set_generic_elem(hapd, wpa_ie, wpa_ie_len)) {
  483. wpa_printf(MSG_ERROR, "Failed to configure WPA IE for "
  484. "the kernel driver.");
  485. return -1;
  486. }
  487. if (rsn_preauth_iface_init(hapd)) {
  488. wpa_printf(MSG_ERROR, "Initialization of RSN "
  489. "pre-authentication failed.");
  490. return -1;
  491. }
  492. #ifdef CONFIG_IEEE80211R
  493. if (!hostapd_drv_none(hapd)) {
  494. hapd->l2 = l2_packet_init(hapd->conf->bridge[0] ?
  495. hapd->conf->bridge :
  496. hapd->conf->iface, NULL, ETH_P_RRB,
  497. hostapd_rrb_receive, hapd, 1);
  498. if (hapd->l2 == NULL &&
  499. (hapd->driver == NULL ||
  500. hapd->driver->send_ether == NULL)) {
  501. wpa_printf(MSG_ERROR, "Failed to open l2_packet "
  502. "interface");
  503. return -1;
  504. }
  505. }
  506. #endif /* CONFIG_IEEE80211R */
  507. return 0;
  508. }
  509. void hostapd_reconfig_wpa(struct hostapd_data *hapd)
  510. {
  511. struct wpa_auth_config wpa_auth_conf;
  512. hostapd_wpa_auth_conf(hapd->conf, hapd->iconf, &wpa_auth_conf);
  513. wpa_reconfig(hapd->wpa_auth, &wpa_auth_conf);
  514. }
  515. void hostapd_deinit_wpa(struct hostapd_data *hapd)
  516. {
  517. ieee80211_tkip_countermeasures_deinit(hapd);
  518. rsn_preauth_iface_deinit(hapd);
  519. if (hapd->wpa_auth) {
  520. wpa_deinit(hapd->wpa_auth);
  521. hapd->wpa_auth = NULL;
  522. if (hostapd_set_privacy(hapd, 0)) {
  523. wpa_printf(MSG_DEBUG, "Could not disable "
  524. "PrivacyInvoked for interface %s",
  525. hapd->conf->iface);
  526. }
  527. if (hostapd_set_generic_elem(hapd, (u8 *) "", 0)) {
  528. wpa_printf(MSG_DEBUG, "Could not remove generic "
  529. "information element from interface %s",
  530. hapd->conf->iface);
  531. }
  532. }
  533. ieee802_1x_deinit(hapd);
  534. #ifdef CONFIG_IEEE80211R
  535. l2_packet_deinit(hapd->l2);
  536. hapd->l2 = NULL;
  537. #endif /* CONFIG_IEEE80211R */
  538. }