wpa_auth_glue.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029
  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 "utils/eloop.h"
  11. #include "utils/list.h"
  12. #include "common/ieee802_11_defs.h"
  13. #include "common/sae.h"
  14. #include "common/wpa_ctrl.h"
  15. #include "crypto/sha1.h"
  16. #include "eapol_auth/eapol_auth_sm.h"
  17. #include "eapol_auth/eapol_auth_sm_i.h"
  18. #include "eap_server/eap.h"
  19. #include "l2_packet/l2_packet.h"
  20. #include "eth_p_oui.h"
  21. #include "hostapd.h"
  22. #include "ieee802_1x.h"
  23. #include "preauth_auth.h"
  24. #include "sta_info.h"
  25. #include "tkip_countermeasures.h"
  26. #include "ap_drv_ops.h"
  27. #include "ap_config.h"
  28. #include "pmksa_cache_auth.h"
  29. #include "wpa_auth.h"
  30. #include "wpa_auth_glue.h"
  31. static void hostapd_wpa_auth_conf(struct hostapd_bss_config *conf,
  32. struct hostapd_config *iconf,
  33. struct wpa_auth_config *wconf)
  34. {
  35. os_memset(wconf, 0, sizeof(*wconf));
  36. wconf->wpa = conf->wpa;
  37. wconf->wpa_key_mgmt = conf->wpa_key_mgmt;
  38. wconf->wpa_pairwise = conf->wpa_pairwise;
  39. wconf->wpa_group = conf->wpa_group;
  40. wconf->wpa_group_rekey = conf->wpa_group_rekey;
  41. wconf->wpa_strict_rekey = conf->wpa_strict_rekey;
  42. wconf->wpa_gmk_rekey = conf->wpa_gmk_rekey;
  43. wconf->wpa_ptk_rekey = conf->wpa_ptk_rekey;
  44. wconf->wpa_group_update_count = conf->wpa_group_update_count;
  45. wconf->wpa_pairwise_update_count = conf->wpa_pairwise_update_count;
  46. wconf->rsn_pairwise = conf->rsn_pairwise;
  47. wconf->rsn_preauth = conf->rsn_preauth;
  48. wconf->eapol_version = conf->eapol_version;
  49. wconf->peerkey = conf->peerkey;
  50. wconf->wmm_enabled = conf->wmm_enabled;
  51. wconf->wmm_uapsd = conf->wmm_uapsd;
  52. wconf->disable_pmksa_caching = conf->disable_pmksa_caching;
  53. wconf->okc = conf->okc;
  54. #ifdef CONFIG_IEEE80211W
  55. wconf->ieee80211w = conf->ieee80211w;
  56. wconf->group_mgmt_cipher = conf->group_mgmt_cipher;
  57. #endif /* CONFIG_IEEE80211W */
  58. #ifdef CONFIG_IEEE80211R_AP
  59. wconf->ssid_len = conf->ssid.ssid_len;
  60. if (wconf->ssid_len > SSID_MAX_LEN)
  61. wconf->ssid_len = SSID_MAX_LEN;
  62. os_memcpy(wconf->ssid, conf->ssid.ssid, wconf->ssid_len);
  63. os_memcpy(wconf->mobility_domain, conf->mobility_domain,
  64. MOBILITY_DOMAIN_ID_LEN);
  65. if (conf->nas_identifier &&
  66. os_strlen(conf->nas_identifier) <= FT_R0KH_ID_MAX_LEN) {
  67. wconf->r0_key_holder_len = os_strlen(conf->nas_identifier);
  68. os_memcpy(wconf->r0_key_holder, conf->nas_identifier,
  69. wconf->r0_key_holder_len);
  70. }
  71. os_memcpy(wconf->r1_key_holder, conf->r1_key_holder, FT_R1KH_ID_LEN);
  72. wconf->r0_key_lifetime = conf->r0_key_lifetime;
  73. wconf->reassociation_deadline = conf->reassociation_deadline;
  74. wconf->rkh_pos_timeout = conf->rkh_pos_timeout;
  75. wconf->rkh_neg_timeout = conf->rkh_neg_timeout;
  76. wconf->rkh_pull_timeout = conf->rkh_pull_timeout;
  77. wconf->rkh_pull_retries = conf->rkh_pull_retries;
  78. wconf->r0kh_list = &conf->r0kh_list;
  79. wconf->r1kh_list = &conf->r1kh_list;
  80. wconf->pmk_r1_push = conf->pmk_r1_push;
  81. wconf->ft_over_ds = conf->ft_over_ds;
  82. wconf->ft_psk_generate_local = conf->ft_psk_generate_local;
  83. #endif /* CONFIG_IEEE80211R_AP */
  84. #ifdef CONFIG_HS20
  85. wconf->disable_gtk = conf->disable_dgaf;
  86. if (conf->osen) {
  87. wconf->disable_gtk = 1;
  88. wconf->wpa = WPA_PROTO_OSEN;
  89. wconf->wpa_key_mgmt = WPA_KEY_MGMT_OSEN;
  90. wconf->wpa_pairwise = 0;
  91. wconf->wpa_group = WPA_CIPHER_CCMP;
  92. wconf->rsn_pairwise = WPA_CIPHER_CCMP;
  93. wconf->rsn_preauth = 0;
  94. wconf->disable_pmksa_caching = 1;
  95. #ifdef CONFIG_IEEE80211W
  96. wconf->ieee80211w = 1;
  97. #endif /* CONFIG_IEEE80211W */
  98. }
  99. #endif /* CONFIG_HS20 */
  100. #ifdef CONFIG_TESTING_OPTIONS
  101. wconf->corrupt_gtk_rekey_mic_probability =
  102. iconf->corrupt_gtk_rekey_mic_probability;
  103. if (conf->own_ie_override &&
  104. wpabuf_len(conf->own_ie_override) <= MAX_OWN_IE_OVERRIDE) {
  105. wconf->own_ie_override_len = wpabuf_len(conf->own_ie_override);
  106. os_memcpy(wconf->own_ie_override,
  107. wpabuf_head(conf->own_ie_override),
  108. wconf->own_ie_override_len);
  109. }
  110. #endif /* CONFIG_TESTING_OPTIONS */
  111. #ifdef CONFIG_P2P
  112. os_memcpy(wconf->ip_addr_go, conf->ip_addr_go, 4);
  113. os_memcpy(wconf->ip_addr_mask, conf->ip_addr_mask, 4);
  114. os_memcpy(wconf->ip_addr_start, conf->ip_addr_start, 4);
  115. os_memcpy(wconf->ip_addr_end, conf->ip_addr_end, 4);
  116. #endif /* CONFIG_P2P */
  117. #ifdef CONFIG_FILS
  118. wconf->fils_cache_id_set = conf->fils_cache_id_set;
  119. os_memcpy(wconf->fils_cache_id, conf->fils_cache_id,
  120. FILS_CACHE_ID_LEN);
  121. #endif /* CONFIG_FILS */
  122. }
  123. static void hostapd_wpa_auth_logger(void *ctx, const u8 *addr,
  124. logger_level level, const char *txt)
  125. {
  126. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  127. struct hostapd_data *hapd = ctx;
  128. int hlevel;
  129. switch (level) {
  130. case LOGGER_WARNING:
  131. hlevel = HOSTAPD_LEVEL_WARNING;
  132. break;
  133. case LOGGER_INFO:
  134. hlevel = HOSTAPD_LEVEL_INFO;
  135. break;
  136. case LOGGER_DEBUG:
  137. default:
  138. hlevel = HOSTAPD_LEVEL_DEBUG;
  139. break;
  140. }
  141. hostapd_logger(hapd, addr, HOSTAPD_MODULE_WPA, hlevel, "%s", txt);
  142. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  143. }
  144. static void hostapd_wpa_auth_disconnect(void *ctx, const u8 *addr,
  145. u16 reason)
  146. {
  147. struct hostapd_data *hapd = ctx;
  148. wpa_printf(MSG_DEBUG, "%s: WPA authenticator requests disconnect: "
  149. "STA " MACSTR " reason %d",
  150. __func__, MAC2STR(addr), reason);
  151. ap_sta_disconnect(hapd, NULL, addr, reason);
  152. }
  153. static int hostapd_wpa_auth_mic_failure_report(void *ctx, const u8 *addr)
  154. {
  155. struct hostapd_data *hapd = ctx;
  156. return michael_mic_failure(hapd, addr, 0);
  157. }
  158. static void hostapd_wpa_auth_psk_failure_report(void *ctx, const u8 *addr)
  159. {
  160. struct hostapd_data *hapd = ctx;
  161. wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_POSSIBLE_PSK_MISMATCH MACSTR,
  162. MAC2STR(addr));
  163. }
  164. static void hostapd_wpa_auth_set_eapol(void *ctx, const u8 *addr,
  165. wpa_eapol_variable var, int value)
  166. {
  167. struct hostapd_data *hapd = ctx;
  168. struct sta_info *sta = ap_get_sta(hapd, addr);
  169. if (sta == NULL)
  170. return;
  171. switch (var) {
  172. case WPA_EAPOL_portEnabled:
  173. ieee802_1x_notify_port_enabled(sta->eapol_sm, value);
  174. break;
  175. case WPA_EAPOL_portValid:
  176. ieee802_1x_notify_port_valid(sta->eapol_sm, value);
  177. break;
  178. case WPA_EAPOL_authorized:
  179. ieee802_1x_set_sta_authorized(hapd, sta, value);
  180. break;
  181. case WPA_EAPOL_portControl_Auto:
  182. if (sta->eapol_sm)
  183. sta->eapol_sm->portControl = Auto;
  184. break;
  185. case WPA_EAPOL_keyRun:
  186. if (sta->eapol_sm)
  187. sta->eapol_sm->keyRun = value ? TRUE : FALSE;
  188. break;
  189. case WPA_EAPOL_keyAvailable:
  190. if (sta->eapol_sm)
  191. sta->eapol_sm->eap_if->eapKeyAvailable =
  192. value ? TRUE : FALSE;
  193. break;
  194. case WPA_EAPOL_keyDone:
  195. if (sta->eapol_sm)
  196. sta->eapol_sm->keyDone = value ? TRUE : FALSE;
  197. break;
  198. case WPA_EAPOL_inc_EapolFramesTx:
  199. if (sta->eapol_sm)
  200. sta->eapol_sm->dot1xAuthEapolFramesTx++;
  201. break;
  202. }
  203. }
  204. static int hostapd_wpa_auth_get_eapol(void *ctx, const u8 *addr,
  205. wpa_eapol_variable var)
  206. {
  207. struct hostapd_data *hapd = ctx;
  208. struct sta_info *sta = ap_get_sta(hapd, addr);
  209. if (sta == NULL || sta->eapol_sm == NULL)
  210. return -1;
  211. switch (var) {
  212. case WPA_EAPOL_keyRun:
  213. return sta->eapol_sm->keyRun;
  214. case WPA_EAPOL_keyAvailable:
  215. return sta->eapol_sm->eap_if->eapKeyAvailable;
  216. default:
  217. return -1;
  218. }
  219. }
  220. static const u8 * hostapd_wpa_auth_get_psk(void *ctx, const u8 *addr,
  221. const u8 *p2p_dev_addr,
  222. const u8 *prev_psk, size_t *psk_len)
  223. {
  224. struct hostapd_data *hapd = ctx;
  225. struct sta_info *sta = ap_get_sta(hapd, addr);
  226. const u8 *psk;
  227. if (psk_len)
  228. *psk_len = PMK_LEN;
  229. #ifdef CONFIG_SAE
  230. if (sta && sta->auth_alg == WLAN_AUTH_SAE) {
  231. if (!sta->sae || prev_psk)
  232. return NULL;
  233. return sta->sae->pmk;
  234. }
  235. if (sta && wpa_auth_uses_sae(sta->wpa_sm)) {
  236. wpa_printf(MSG_DEBUG,
  237. "No PSK for STA trying to use SAE with PMKSA caching");
  238. return NULL;
  239. }
  240. #endif /* CONFIG_SAE */
  241. #ifdef CONFIG_OWE
  242. if ((hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_OWE) &&
  243. sta && sta->owe_pmk) {
  244. if (psk_len)
  245. *psk_len = sta->owe_pmk_len;
  246. return sta->owe_pmk;
  247. }
  248. if ((hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_OWE) && sta) {
  249. struct rsn_pmksa_cache_entry *sa;
  250. sa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
  251. if (sa && sa->akmp == WPA_KEY_MGMT_OWE) {
  252. if (psk_len)
  253. *psk_len = sa->pmk_len;
  254. return sa->pmk;
  255. }
  256. }
  257. #endif /* CONFIG_OWE */
  258. psk = hostapd_get_psk(hapd->conf, addr, p2p_dev_addr, prev_psk);
  259. /*
  260. * This is about to iterate over all psks, prev_psk gives the last
  261. * returned psk which should not be returned again.
  262. * logic list (all hostapd_get_psk; all sta->psk)
  263. */
  264. if (sta && sta->psk && !psk) {
  265. struct hostapd_sta_wpa_psk_short *pos;
  266. psk = sta->psk->psk;
  267. for (pos = sta->psk; pos; pos = pos->next) {
  268. if (pos->is_passphrase) {
  269. pbkdf2_sha1(pos->passphrase,
  270. hapd->conf->ssid.ssid,
  271. hapd->conf->ssid.ssid_len, 4096,
  272. pos->psk, PMK_LEN);
  273. pos->is_passphrase = 0;
  274. }
  275. if (pos->psk == prev_psk) {
  276. psk = pos->next ? pos->next->psk : NULL;
  277. break;
  278. }
  279. }
  280. }
  281. return psk;
  282. }
  283. static int hostapd_wpa_auth_get_msk(void *ctx, const u8 *addr, u8 *msk,
  284. size_t *len)
  285. {
  286. struct hostapd_data *hapd = ctx;
  287. const u8 *key;
  288. size_t keylen;
  289. struct sta_info *sta;
  290. sta = ap_get_sta(hapd, addr);
  291. if (sta == NULL) {
  292. wpa_printf(MSG_DEBUG, "AUTH_GET_MSK: Cannot find STA");
  293. return -1;
  294. }
  295. key = ieee802_1x_get_key(sta->eapol_sm, &keylen);
  296. if (key == NULL) {
  297. wpa_printf(MSG_DEBUG, "AUTH_GET_MSK: Key is null, eapol_sm: %p",
  298. sta->eapol_sm);
  299. return -1;
  300. }
  301. if (keylen > *len)
  302. keylen = *len;
  303. os_memcpy(msk, key, keylen);
  304. *len = keylen;
  305. return 0;
  306. }
  307. static int hostapd_wpa_auth_set_key(void *ctx, int vlan_id, enum wpa_alg alg,
  308. const u8 *addr, int idx, u8 *key,
  309. size_t key_len)
  310. {
  311. struct hostapd_data *hapd = ctx;
  312. const char *ifname = hapd->conf->iface;
  313. if (vlan_id > 0) {
  314. ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan, vlan_id);
  315. if (ifname == NULL)
  316. return -1;
  317. }
  318. return hostapd_drv_set_key(ifname, hapd, alg, addr, idx, 1, NULL, 0,
  319. key, key_len);
  320. }
  321. static int hostapd_wpa_auth_get_seqnum(void *ctx, const u8 *addr, int idx,
  322. u8 *seq)
  323. {
  324. struct hostapd_data *hapd = ctx;
  325. return hostapd_get_seqnum(hapd->conf->iface, hapd, addr, idx, seq);
  326. }
  327. static int hostapd_wpa_auth_send_eapol(void *ctx, const u8 *addr,
  328. const u8 *data, size_t data_len,
  329. int encrypt)
  330. {
  331. struct hostapd_data *hapd = ctx;
  332. struct sta_info *sta;
  333. u32 flags = 0;
  334. #ifdef CONFIG_TESTING_OPTIONS
  335. if (hapd->ext_eapol_frame_io) {
  336. size_t hex_len = 2 * data_len + 1;
  337. char *hex = os_malloc(hex_len);
  338. if (hex == NULL)
  339. return -1;
  340. wpa_snprintf_hex(hex, hex_len, data, data_len);
  341. wpa_msg(hapd->msg_ctx, MSG_INFO, "EAPOL-TX " MACSTR " %s",
  342. MAC2STR(addr), hex);
  343. os_free(hex);
  344. return 0;
  345. }
  346. #endif /* CONFIG_TESTING_OPTIONS */
  347. sta = ap_get_sta(hapd, addr);
  348. if (sta)
  349. flags = hostapd_sta_flags_to_drv(sta->flags);
  350. return hostapd_drv_hapd_send_eapol(hapd, addr, data, data_len,
  351. encrypt, flags);
  352. }
  353. static int hostapd_wpa_auth_for_each_sta(
  354. void *ctx, int (*cb)(struct wpa_state_machine *sm, void *ctx),
  355. void *cb_ctx)
  356. {
  357. struct hostapd_data *hapd = ctx;
  358. struct sta_info *sta;
  359. for (sta = hapd->sta_list; sta; sta = sta->next) {
  360. if (sta->wpa_sm && cb(sta->wpa_sm, cb_ctx))
  361. return 1;
  362. }
  363. return 0;
  364. }
  365. struct wpa_auth_iface_iter_data {
  366. int (*cb)(struct wpa_authenticator *sm, void *ctx);
  367. void *cb_ctx;
  368. };
  369. static int wpa_auth_iface_iter(struct hostapd_iface *iface, void *ctx)
  370. {
  371. struct wpa_auth_iface_iter_data *data = ctx;
  372. size_t i;
  373. for (i = 0; i < iface->num_bss; i++) {
  374. if (iface->bss[i]->wpa_auth &&
  375. data->cb(iface->bss[i]->wpa_auth, data->cb_ctx))
  376. return 1;
  377. }
  378. return 0;
  379. }
  380. static int hostapd_wpa_auth_for_each_auth(
  381. void *ctx, int (*cb)(struct wpa_authenticator *sm, void *ctx),
  382. void *cb_ctx)
  383. {
  384. struct hostapd_data *hapd = ctx;
  385. struct wpa_auth_iface_iter_data data;
  386. if (hapd->iface->interfaces == NULL ||
  387. hapd->iface->interfaces->for_each_interface == NULL)
  388. return -1;
  389. data.cb = cb;
  390. data.cb_ctx = cb_ctx;
  391. return hapd->iface->interfaces->for_each_interface(
  392. hapd->iface->interfaces, wpa_auth_iface_iter, &data);
  393. }
  394. #ifdef CONFIG_IEEE80211R_AP
  395. struct wpa_ft_rrb_rx_later_data {
  396. struct dl_list list;
  397. u8 addr[ETH_ALEN];
  398. size_t data_len;
  399. /* followed by data_len octets of data */
  400. };
  401. static void hostapd_wpa_ft_rrb_rx_later(void *eloop_ctx, void *timeout_ctx)
  402. {
  403. struct hostapd_data *hapd = eloop_ctx;
  404. struct wpa_ft_rrb_rx_later_data *data, *n;
  405. dl_list_for_each_safe(data, n, &hapd->l2_queue,
  406. struct wpa_ft_rrb_rx_later_data, list) {
  407. if (hapd->wpa_auth) {
  408. wpa_ft_rrb_rx(hapd->wpa_auth, data->addr,
  409. (const u8 *) (data + 1),
  410. data->data_len);
  411. }
  412. dl_list_del(&data->list);
  413. os_free(data);
  414. }
  415. }
  416. struct wpa_auth_ft_iface_iter_data {
  417. struct hostapd_data *src_hapd;
  418. const u8 *dst;
  419. const u8 *data;
  420. size_t data_len;
  421. };
  422. static int hostapd_wpa_auth_ft_iter(struct hostapd_iface *iface, void *ctx)
  423. {
  424. struct wpa_auth_ft_iface_iter_data *idata = ctx;
  425. struct wpa_ft_rrb_rx_later_data *data;
  426. struct hostapd_data *hapd;
  427. size_t j;
  428. for (j = 0; j < iface->num_bss; j++) {
  429. hapd = iface->bss[j];
  430. if (hapd == idata->src_hapd ||
  431. !hapd->wpa_auth ||
  432. os_memcmp(hapd->own_addr, idata->dst, ETH_ALEN) != 0)
  433. continue;
  434. wpa_printf(MSG_DEBUG,
  435. "FT: Send RRB data directly to locally managed BSS "
  436. MACSTR "@%s -> " MACSTR "@%s",
  437. MAC2STR(idata->src_hapd->own_addr),
  438. idata->src_hapd->conf->iface,
  439. MAC2STR(hapd->own_addr), hapd->conf->iface);
  440. /* Defer wpa_ft_rrb_rx() until next eloop step as this is
  441. * when it would be triggered when reading from a socket.
  442. * This avoids
  443. * hapd0:send -> hapd1:recv -> hapd1:send -> hapd0:recv,
  444. * that is calling hapd0:recv handler from within
  445. * hapd0:send directly.
  446. */
  447. data = os_zalloc(sizeof(*data) + idata->data_len);
  448. if (!data)
  449. return 1;
  450. os_memcpy(data->addr, idata->src_hapd->own_addr, ETH_ALEN);
  451. os_memcpy(data + 1, idata->data, idata->data_len);
  452. data->data_len = idata->data_len;
  453. dl_list_add(&hapd->l2_queue, &data->list);
  454. if (!eloop_is_timeout_registered(hostapd_wpa_ft_rrb_rx_later,
  455. hapd, NULL))
  456. eloop_register_timeout(0, 0,
  457. hostapd_wpa_ft_rrb_rx_later,
  458. hapd, NULL);
  459. return 1;
  460. }
  461. return 0;
  462. }
  463. #endif /* CONFIG_IEEE80211R_AP */
  464. static int hostapd_wpa_auth_send_ether(void *ctx, const u8 *dst, u16 proto,
  465. const u8 *data, size_t data_len)
  466. {
  467. struct hostapd_data *hapd = ctx;
  468. struct l2_ethhdr *buf;
  469. int ret;
  470. #ifdef CONFIG_TESTING_OPTIONS
  471. if (hapd->ext_eapol_frame_io && proto == ETH_P_EAPOL) {
  472. size_t hex_len = 2 * data_len + 1;
  473. char *hex = os_malloc(hex_len);
  474. if (hex == NULL)
  475. return -1;
  476. wpa_snprintf_hex(hex, hex_len, data, data_len);
  477. wpa_msg(hapd->msg_ctx, MSG_INFO, "EAPOL-TX " MACSTR " %s",
  478. MAC2STR(dst), hex);
  479. os_free(hex);
  480. return 0;
  481. }
  482. #endif /* CONFIG_TESTING_OPTIONS */
  483. #ifdef CONFIG_IEEE80211R_AP
  484. if (proto == ETH_P_RRB && hapd->iface->interfaces &&
  485. hapd->iface->interfaces->for_each_interface) {
  486. int res;
  487. struct wpa_auth_ft_iface_iter_data idata;
  488. idata.src_hapd = hapd;
  489. idata.dst = dst;
  490. idata.data = data;
  491. idata.data_len = data_len;
  492. res = hapd->iface->interfaces->for_each_interface(
  493. hapd->iface->interfaces, hostapd_wpa_auth_ft_iter,
  494. &idata);
  495. if (res == 1)
  496. return data_len;
  497. }
  498. #endif /* CONFIG_IEEE80211R_AP */
  499. if (hapd->driver && hapd->driver->send_ether)
  500. return hapd->driver->send_ether(hapd->drv_priv, dst,
  501. hapd->own_addr, proto,
  502. data, data_len);
  503. if (hapd->l2 == NULL)
  504. return -1;
  505. buf = os_malloc(sizeof(*buf) + data_len);
  506. if (buf == NULL)
  507. return -1;
  508. os_memcpy(buf->h_dest, dst, ETH_ALEN);
  509. os_memcpy(buf->h_source, hapd->own_addr, ETH_ALEN);
  510. buf->h_proto = host_to_be16(proto);
  511. os_memcpy(buf + 1, data, data_len);
  512. ret = l2_packet_send(hapd->l2, dst, proto, (u8 *) buf,
  513. sizeof(*buf) + data_len);
  514. os_free(buf);
  515. return ret;
  516. }
  517. #ifdef CONFIG_ETH_P_OUI
  518. static struct eth_p_oui_ctx * hostapd_wpa_get_oui(struct hostapd_data *hapd,
  519. u8 oui_suffix)
  520. {
  521. switch (oui_suffix) {
  522. #ifdef CONFIG_IEEE80211R_AP
  523. case FT_PACKET_R0KH_R1KH_PULL:
  524. return hapd->oui_pull;
  525. case FT_PACKET_R0KH_R1KH_RESP:
  526. return hapd->oui_resp;
  527. case FT_PACKET_R0KH_R1KH_PUSH:
  528. return hapd->oui_push;
  529. case FT_PACKET_R0KH_R1KH_SEQ_REQ:
  530. return hapd->oui_sreq;
  531. case FT_PACKET_R0KH_R1KH_SEQ_RESP:
  532. return hapd->oui_sresp;
  533. #endif /* CONFIG_IEEE80211R_AP */
  534. default:
  535. return NULL;
  536. }
  537. }
  538. #endif /* CONFIG_ETH_P_OUI */
  539. #ifdef CONFIG_IEEE80211R_AP
  540. struct oui_deliver_later_data {
  541. struct dl_list list;
  542. u8 src_addr[ETH_ALEN];
  543. u8 dst_addr[ETH_ALEN];
  544. size_t data_len;
  545. u8 oui_suffix;
  546. /* followed by data_len octets of data */
  547. };
  548. static void hostapd_oui_deliver_later(void *eloop_ctx, void *timeout_ctx)
  549. {
  550. struct hostapd_data *hapd = eloop_ctx;
  551. struct oui_deliver_later_data *data, *n;
  552. struct eth_p_oui_ctx *oui_ctx;
  553. dl_list_for_each_safe(data, n, &hapd->l2_oui_queue,
  554. struct oui_deliver_later_data, list) {
  555. oui_ctx = hostapd_wpa_get_oui(hapd, data->oui_suffix);
  556. if (hapd->wpa_auth && oui_ctx) {
  557. eth_p_oui_deliver(oui_ctx, data->src_addr,
  558. data->dst_addr,
  559. (const u8 *) (data + 1),
  560. data->data_len);
  561. }
  562. dl_list_del(&data->list);
  563. os_free(data);
  564. }
  565. }
  566. struct wpa_auth_oui_iface_iter_data {
  567. struct hostapd_data *src_hapd;
  568. const u8 *dst_addr;
  569. const u8 *data;
  570. size_t data_len;
  571. u8 oui_suffix;
  572. };
  573. static int hostapd_wpa_auth_oui_iter(struct hostapd_iface *iface, void *ctx)
  574. {
  575. struct wpa_auth_oui_iface_iter_data *idata = ctx;
  576. struct oui_deliver_later_data *data;
  577. struct hostapd_data *hapd;
  578. size_t j;
  579. for (j = 0; j < iface->num_bss; j++) {
  580. hapd = iface->bss[j];
  581. if (hapd == idata->src_hapd)
  582. continue;
  583. if (!is_multicast_ether_addr(idata->dst_addr) &&
  584. os_memcmp(hapd->own_addr, idata->dst_addr, ETH_ALEN) != 0)
  585. continue;
  586. /* defer eth_p_oui_deliver until next eloop step as this is
  587. * when it would be triggerd from reading from sock
  588. * This avoids
  589. * hapd0:send -> hapd1:recv -> hapd1:send -> hapd0:recv,
  590. * that is calling hapd0:recv handler from within
  591. * hapd0:send directly.
  592. */
  593. data = os_zalloc(sizeof(*data) + idata->data_len);
  594. if (!data)
  595. return 1;
  596. os_memcpy(data->src_addr, idata->src_hapd->own_addr, ETH_ALEN);
  597. os_memcpy(data->dst_addr, idata->dst_addr, ETH_ALEN);
  598. os_memcpy(data + 1, idata->data, idata->data_len);
  599. data->data_len = idata->data_len;
  600. data->oui_suffix = idata->oui_suffix;
  601. dl_list_add(&hapd->l2_oui_queue, &data->list);
  602. if (!eloop_is_timeout_registered(hostapd_oui_deliver_later,
  603. hapd, NULL))
  604. eloop_register_timeout(0, 0,
  605. hostapd_oui_deliver_later,
  606. hapd, NULL);
  607. return 1;
  608. }
  609. return 0;
  610. }
  611. #endif /* CONFIG_IEEE80211R_AP */
  612. static int hostapd_wpa_auth_send_oui(void *ctx, const u8 *dst, u8 oui_suffix,
  613. const u8 *data, size_t data_len)
  614. {
  615. #ifdef CONFIG_ETH_P_OUI
  616. struct hostapd_data *hapd = ctx;
  617. struct eth_p_oui_ctx *oui_ctx;
  618. #ifdef CONFIG_IEEE80211R_AP
  619. if (hapd->iface->interfaces &&
  620. hapd->iface->interfaces->for_each_interface) {
  621. struct wpa_auth_oui_iface_iter_data idata;
  622. int res;
  623. idata.src_hapd = hapd;
  624. idata.dst_addr = dst;
  625. idata.data = data;
  626. idata.data_len = data_len;
  627. idata.oui_suffix = oui_suffix;
  628. res = hapd->iface->interfaces->for_each_interface(
  629. hapd->iface->interfaces, hostapd_wpa_auth_oui_iter,
  630. &idata);
  631. if (res == 1)
  632. return data_len;
  633. }
  634. #endif /* CONFIG_IEEE80211R_AP */
  635. oui_ctx = hostapd_wpa_get_oui(hapd, oui_suffix);
  636. if (!oui_ctx)
  637. return -1;
  638. return eth_p_oui_send(oui_ctx, hapd->own_addr, dst, data, data_len);
  639. #else /* CONFIG_ETH_P_OUI */
  640. return -1;
  641. #endif /* CONFIG_ETH_P_OUI */
  642. }
  643. #ifdef CONFIG_IEEE80211R_AP
  644. static int hostapd_wpa_auth_send_ft_action(void *ctx, const u8 *dst,
  645. const u8 *data, size_t data_len)
  646. {
  647. struct hostapd_data *hapd = ctx;
  648. int res;
  649. struct ieee80211_mgmt *m;
  650. size_t mlen;
  651. struct sta_info *sta;
  652. sta = ap_get_sta(hapd, dst);
  653. if (sta == NULL || sta->wpa_sm == NULL)
  654. return -1;
  655. m = os_zalloc(sizeof(*m) + data_len);
  656. if (m == NULL)
  657. return -1;
  658. mlen = ((u8 *) &m->u - (u8 *) m) + data_len;
  659. m->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  660. WLAN_FC_STYPE_ACTION);
  661. os_memcpy(m->da, dst, ETH_ALEN);
  662. os_memcpy(m->sa, hapd->own_addr, ETH_ALEN);
  663. os_memcpy(m->bssid, hapd->own_addr, ETH_ALEN);
  664. os_memcpy(&m->u, data, data_len);
  665. res = hostapd_drv_send_mlme(hapd, (u8 *) m, mlen, 0);
  666. os_free(m);
  667. return res;
  668. }
  669. static struct wpa_state_machine *
  670. hostapd_wpa_auth_add_sta(void *ctx, const u8 *sta_addr)
  671. {
  672. struct hostapd_data *hapd = ctx;
  673. struct sta_info *sta;
  674. if (hostapd_add_sta_node(hapd, sta_addr, WLAN_AUTH_FT) < 0)
  675. return NULL;
  676. sta = ap_sta_add(hapd, sta_addr);
  677. if (sta == NULL)
  678. return NULL;
  679. if (sta->wpa_sm) {
  680. sta->auth_alg = WLAN_AUTH_FT;
  681. return sta->wpa_sm;
  682. }
  683. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth, sta->addr, NULL);
  684. if (sta->wpa_sm == NULL) {
  685. ap_free_sta(hapd, sta);
  686. return NULL;
  687. }
  688. sta->auth_alg = WLAN_AUTH_FT;
  689. return sta->wpa_sm;
  690. }
  691. static void hostapd_rrb_receive(void *ctx, const u8 *src_addr, const u8 *buf,
  692. size_t len)
  693. {
  694. struct hostapd_data *hapd = ctx;
  695. struct l2_ethhdr *ethhdr;
  696. if (len < sizeof(*ethhdr))
  697. return;
  698. ethhdr = (struct l2_ethhdr *) buf;
  699. wpa_printf(MSG_DEBUG, "FT: RRB received packet " MACSTR " -> "
  700. MACSTR, MAC2STR(ethhdr->h_source), MAC2STR(ethhdr->h_dest));
  701. if (!is_multicast_ether_addr(ethhdr->h_dest) &&
  702. os_memcmp(hapd->own_addr, ethhdr->h_dest, ETH_ALEN) != 0)
  703. return;
  704. wpa_ft_rrb_rx(hapd->wpa_auth, ethhdr->h_source, buf + sizeof(*ethhdr),
  705. len - sizeof(*ethhdr));
  706. }
  707. static void hostapd_rrb_oui_receive(void *ctx, const u8 *src_addr,
  708. const u8 *dst_addr, u8 oui_suffix,
  709. const u8 *buf, size_t len)
  710. {
  711. struct hostapd_data *hapd = ctx;
  712. wpa_printf(MSG_DEBUG, "FT: RRB received packet " MACSTR " -> "
  713. MACSTR, MAC2STR(src_addr), MAC2STR(dst_addr));
  714. if (!is_multicast_ether_addr(dst_addr) &&
  715. os_memcmp(hapd->own_addr, dst_addr, ETH_ALEN) != 0)
  716. return;
  717. wpa_ft_rrb_oui_rx(hapd->wpa_auth, src_addr, dst_addr, oui_suffix, buf,
  718. len);
  719. }
  720. static int hostapd_wpa_auth_add_tspec(void *ctx, const u8 *sta_addr,
  721. u8 *tspec_ie, size_t tspec_ielen)
  722. {
  723. struct hostapd_data *hapd = ctx;
  724. return hostapd_add_tspec(hapd, sta_addr, tspec_ie, tspec_ielen);
  725. }
  726. static int hostapd_wpa_register_ft_oui(struct hostapd_data *hapd,
  727. const char *ft_iface)
  728. {
  729. hapd->oui_pull = eth_p_oui_register(hapd, ft_iface,
  730. FT_PACKET_R0KH_R1KH_PULL,
  731. hostapd_rrb_oui_receive, hapd);
  732. if (!hapd->oui_pull)
  733. return -1;
  734. hapd->oui_resp = eth_p_oui_register(hapd, ft_iface,
  735. FT_PACKET_R0KH_R1KH_RESP,
  736. hostapd_rrb_oui_receive, hapd);
  737. if (!hapd->oui_resp)
  738. return -1;
  739. hapd->oui_push = eth_p_oui_register(hapd, ft_iface,
  740. FT_PACKET_R0KH_R1KH_PUSH,
  741. hostapd_rrb_oui_receive, hapd);
  742. if (!hapd->oui_push)
  743. return -1;
  744. hapd->oui_sreq = eth_p_oui_register(hapd, ft_iface,
  745. FT_PACKET_R0KH_R1KH_SEQ_REQ,
  746. hostapd_rrb_oui_receive, hapd);
  747. if (!hapd->oui_sreq)
  748. return -1;
  749. hapd->oui_sresp = eth_p_oui_register(hapd, ft_iface,
  750. FT_PACKET_R0KH_R1KH_SEQ_RESP,
  751. hostapd_rrb_oui_receive, hapd);
  752. if (!hapd->oui_sresp)
  753. return -1;
  754. return 0;
  755. }
  756. static void hostapd_wpa_unregister_ft_oui(struct hostapd_data *hapd)
  757. {
  758. eth_p_oui_unregister(hapd->oui_pull);
  759. hapd->oui_pull = NULL;
  760. eth_p_oui_unregister(hapd->oui_resp);
  761. hapd->oui_resp = NULL;
  762. eth_p_oui_unregister(hapd->oui_push);
  763. hapd->oui_push = NULL;
  764. eth_p_oui_unregister(hapd->oui_sreq);
  765. hapd->oui_sreq = NULL;
  766. eth_p_oui_unregister(hapd->oui_sresp);
  767. hapd->oui_sresp = NULL;
  768. }
  769. #endif /* CONFIG_IEEE80211R_AP */
  770. int hostapd_setup_wpa(struct hostapd_data *hapd)
  771. {
  772. struct wpa_auth_config _conf;
  773. static const struct wpa_auth_callbacks cb = {
  774. .logger = hostapd_wpa_auth_logger,
  775. .disconnect = hostapd_wpa_auth_disconnect,
  776. .mic_failure_report = hostapd_wpa_auth_mic_failure_report,
  777. .psk_failure_report = hostapd_wpa_auth_psk_failure_report,
  778. .set_eapol = hostapd_wpa_auth_set_eapol,
  779. .get_eapol = hostapd_wpa_auth_get_eapol,
  780. .get_psk = hostapd_wpa_auth_get_psk,
  781. .get_msk = hostapd_wpa_auth_get_msk,
  782. .set_key = hostapd_wpa_auth_set_key,
  783. .get_seqnum = hostapd_wpa_auth_get_seqnum,
  784. .send_eapol = hostapd_wpa_auth_send_eapol,
  785. .for_each_sta = hostapd_wpa_auth_for_each_sta,
  786. .for_each_auth = hostapd_wpa_auth_for_each_auth,
  787. .send_ether = hostapd_wpa_auth_send_ether,
  788. .send_oui = hostapd_wpa_auth_send_oui,
  789. #ifdef CONFIG_IEEE80211R_AP
  790. .send_ft_action = hostapd_wpa_auth_send_ft_action,
  791. .add_sta = hostapd_wpa_auth_add_sta,
  792. .add_tspec = hostapd_wpa_auth_add_tspec,
  793. #endif /* CONFIG_IEEE80211R_AP */
  794. };
  795. const u8 *wpa_ie;
  796. size_t wpa_ie_len;
  797. hostapd_wpa_auth_conf(hapd->conf, hapd->iconf, &_conf);
  798. if (hapd->iface->drv_flags & WPA_DRIVER_FLAGS_EAPOL_TX_STATUS)
  799. _conf.tx_status = 1;
  800. if (hapd->iface->drv_flags & WPA_DRIVER_FLAGS_AP_MLME)
  801. _conf.ap_mlme = 1;
  802. hapd->wpa_auth = wpa_init(hapd->own_addr, &_conf, &cb, hapd);
  803. if (hapd->wpa_auth == NULL) {
  804. wpa_printf(MSG_ERROR, "WPA initialization failed.");
  805. return -1;
  806. }
  807. if (hostapd_set_privacy(hapd, 1)) {
  808. wpa_printf(MSG_ERROR, "Could not set PrivacyInvoked "
  809. "for interface %s", hapd->conf->iface);
  810. return -1;
  811. }
  812. wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
  813. if (hostapd_set_generic_elem(hapd, wpa_ie, wpa_ie_len)) {
  814. wpa_printf(MSG_ERROR, "Failed to configure WPA IE for "
  815. "the kernel driver.");
  816. return -1;
  817. }
  818. if (rsn_preauth_iface_init(hapd)) {
  819. wpa_printf(MSG_ERROR, "Initialization of RSN "
  820. "pre-authentication failed.");
  821. return -1;
  822. }
  823. #ifdef CONFIG_IEEE80211R_AP
  824. if (!hostapd_drv_none(hapd) &&
  825. wpa_key_mgmt_ft(hapd->conf->wpa_key_mgmt)) {
  826. const char *ft_iface;
  827. ft_iface = hapd->conf->bridge[0] ? hapd->conf->bridge :
  828. hapd->conf->iface;
  829. hapd->l2 = l2_packet_init(ft_iface, NULL, ETH_P_RRB,
  830. hostapd_rrb_receive, hapd, 1);
  831. if (hapd->l2 == NULL &&
  832. (hapd->driver == NULL ||
  833. hapd->driver->send_ether == NULL)) {
  834. wpa_printf(MSG_ERROR, "Failed to open l2_packet "
  835. "interface");
  836. return -1;
  837. }
  838. if (hostapd_wpa_register_ft_oui(hapd, ft_iface)) {
  839. wpa_printf(MSG_ERROR,
  840. "Failed to open ETH_P_OUI interface");
  841. return -1;
  842. }
  843. }
  844. #endif /* CONFIG_IEEE80211R_AP */
  845. return 0;
  846. }
  847. void hostapd_reconfig_wpa(struct hostapd_data *hapd)
  848. {
  849. struct wpa_auth_config wpa_auth_conf;
  850. hostapd_wpa_auth_conf(hapd->conf, hapd->iconf, &wpa_auth_conf);
  851. wpa_reconfig(hapd->wpa_auth, &wpa_auth_conf);
  852. }
  853. void hostapd_deinit_wpa(struct hostapd_data *hapd)
  854. {
  855. ieee80211_tkip_countermeasures_deinit(hapd);
  856. rsn_preauth_iface_deinit(hapd);
  857. if (hapd->wpa_auth) {
  858. wpa_deinit(hapd->wpa_auth);
  859. hapd->wpa_auth = NULL;
  860. if (hapd->drv_priv && hostapd_set_privacy(hapd, 0)) {
  861. wpa_printf(MSG_DEBUG, "Could not disable "
  862. "PrivacyInvoked for interface %s",
  863. hapd->conf->iface);
  864. }
  865. if (hapd->drv_priv &&
  866. hostapd_set_generic_elem(hapd, (u8 *) "", 0)) {
  867. wpa_printf(MSG_DEBUG, "Could not remove generic "
  868. "information element from interface %s",
  869. hapd->conf->iface);
  870. }
  871. }
  872. ieee802_1x_deinit(hapd);
  873. #ifdef CONFIG_IEEE80211R_AP
  874. eloop_cancel_timeout(hostapd_wpa_ft_rrb_rx_later, hapd, ELOOP_ALL_CTX);
  875. hostapd_wpa_ft_rrb_rx_later(hapd, NULL); /* flush without delivering */
  876. eloop_cancel_timeout(hostapd_oui_deliver_later, hapd, ELOOP_ALL_CTX);
  877. hostapd_oui_deliver_later(hapd, NULL); /* flush without delivering */
  878. l2_packet_deinit(hapd->l2);
  879. hapd->l2 = NULL;
  880. hostapd_wpa_unregister_ft_oui(hapd);
  881. #endif /* CONFIG_IEEE80211R_AP */
  882. }