wpas_glue.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  1. /*
  2. * WPA Supplicant - Glue code to setup EAPOL and RSN modules
  3. * Copyright (c) 2003-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 "includes.h"
  9. #include "common.h"
  10. #include "eapol_supp/eapol_supp_sm.h"
  11. #include "rsn_supp/wpa.h"
  12. #include "eloop.h"
  13. #include "config.h"
  14. #include "l2_packet/l2_packet.h"
  15. #include "common/wpa_common.h"
  16. #include "wpa_supplicant_i.h"
  17. #include "driver_i.h"
  18. #include "rsn_supp/pmksa_cache.h"
  19. #include "sme.h"
  20. #include "common/ieee802_11_defs.h"
  21. #include "common/wpa_ctrl.h"
  22. #include "wpas_glue.h"
  23. #include "wps_supplicant.h"
  24. #include "bss.h"
  25. #include "scan.h"
  26. #include "notify.h"
  27. #include "wpas_kay.h"
  28. #ifndef CONFIG_NO_CONFIG_BLOBS
  29. #if defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA)
  30. static void wpa_supplicant_set_config_blob(void *ctx,
  31. struct wpa_config_blob *blob)
  32. {
  33. struct wpa_supplicant *wpa_s = ctx;
  34. wpa_config_set_blob(wpa_s->conf, blob);
  35. if (wpa_s->conf->update_config) {
  36. int ret = wpa_config_write(wpa_s->confname, wpa_s->conf);
  37. if (ret) {
  38. wpa_printf(MSG_DEBUG, "Failed to update config after "
  39. "blob set");
  40. }
  41. }
  42. }
  43. static const struct wpa_config_blob *
  44. wpa_supplicant_get_config_blob(void *ctx, const char *name)
  45. {
  46. struct wpa_supplicant *wpa_s = ctx;
  47. return wpa_config_get_blob(wpa_s->conf, name);
  48. }
  49. #endif /* defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA) */
  50. #endif /* CONFIG_NO_CONFIG_BLOBS */
  51. #if defined(IEEE8021X_EAPOL) || !defined(CONFIG_NO_WPA)
  52. static u8 * wpa_alloc_eapol(const struct wpa_supplicant *wpa_s, u8 type,
  53. const void *data, u16 data_len,
  54. size_t *msg_len, void **data_pos)
  55. {
  56. struct ieee802_1x_hdr *hdr;
  57. *msg_len = sizeof(*hdr) + data_len;
  58. hdr = os_malloc(*msg_len);
  59. if (hdr == NULL)
  60. return NULL;
  61. hdr->version = wpa_s->conf->eapol_version;
  62. hdr->type = type;
  63. hdr->length = host_to_be16(data_len);
  64. if (data)
  65. os_memcpy(hdr + 1, data, data_len);
  66. else
  67. os_memset(hdr + 1, 0, data_len);
  68. if (data_pos)
  69. *data_pos = hdr + 1;
  70. return (u8 *) hdr;
  71. }
  72. /**
  73. * wpa_ether_send - Send Ethernet frame
  74. * @wpa_s: Pointer to wpa_supplicant data
  75. * @dest: Destination MAC address
  76. * @proto: Ethertype in host byte order
  77. * @buf: Frame payload starting from IEEE 802.1X header
  78. * @len: Frame payload length
  79. * Returns: >=0 on success, <0 on failure
  80. */
  81. static int wpa_ether_send(struct wpa_supplicant *wpa_s, const u8 *dest,
  82. u16 proto, const u8 *buf, size_t len)
  83. {
  84. if (wpa_s->l2) {
  85. return l2_packet_send(wpa_s->l2, dest, proto, buf, len);
  86. }
  87. return wpa_drv_send_eapol(wpa_s, dest, proto, buf, len);
  88. }
  89. #endif /* IEEE8021X_EAPOL || !CONFIG_NO_WPA */
  90. #ifdef IEEE8021X_EAPOL
  91. /**
  92. * wpa_supplicant_eapol_send - Send IEEE 802.1X EAPOL packet to Authenticator
  93. * @ctx: Pointer to wpa_supplicant data (wpa_s)
  94. * @type: IEEE 802.1X packet type (IEEE802_1X_TYPE_*)
  95. * @buf: EAPOL payload (after IEEE 802.1X header)
  96. * @len: EAPOL payload length
  97. * Returns: >=0 on success, <0 on failure
  98. *
  99. * This function adds Ethernet and IEEE 802.1X header and sends the EAPOL frame
  100. * to the current Authenticator.
  101. */
  102. static int wpa_supplicant_eapol_send(void *ctx, int type, const u8 *buf,
  103. size_t len)
  104. {
  105. struct wpa_supplicant *wpa_s = ctx;
  106. u8 *msg, *dst, bssid[ETH_ALEN];
  107. size_t msglen;
  108. int res;
  109. /* TODO: could add l2_packet_sendmsg that allows fragments to avoid
  110. * extra copy here */
  111. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) ||
  112. wpa_s->key_mgmt == WPA_KEY_MGMT_NONE) {
  113. /* Current SSID is not using IEEE 802.1X/EAP, so drop possible
  114. * EAPOL frames (mainly, EAPOL-Start) from EAPOL state
  115. * machines. */
  116. wpa_printf(MSG_DEBUG, "WPA: drop TX EAPOL in non-IEEE 802.1X "
  117. "mode (type=%d len=%lu)", type,
  118. (unsigned long) len);
  119. return -1;
  120. }
  121. if (pmksa_cache_get_current(wpa_s->wpa) &&
  122. type == IEEE802_1X_TYPE_EAPOL_START) {
  123. /* Trying to use PMKSA caching - do not send EAPOL-Start frames
  124. * since they will trigger full EAPOL authentication. */
  125. wpa_printf(MSG_DEBUG, "RSN: PMKSA caching - do not send "
  126. "EAPOL-Start");
  127. return -1;
  128. }
  129. if (is_zero_ether_addr(wpa_s->bssid)) {
  130. wpa_printf(MSG_DEBUG, "BSSID not set when trying to send an "
  131. "EAPOL frame");
  132. if (wpa_drv_get_bssid(wpa_s, bssid) == 0 &&
  133. !is_zero_ether_addr(bssid)) {
  134. dst = bssid;
  135. wpa_printf(MSG_DEBUG, "Using current BSSID " MACSTR
  136. " from the driver as the EAPOL destination",
  137. MAC2STR(dst));
  138. } else {
  139. dst = wpa_s->last_eapol_src;
  140. wpa_printf(MSG_DEBUG, "Using the source address of the"
  141. " last received EAPOL frame " MACSTR " as "
  142. "the EAPOL destination",
  143. MAC2STR(dst));
  144. }
  145. } else {
  146. /* BSSID was already set (from (Re)Assoc event, so use it as
  147. * the EAPOL destination. */
  148. dst = wpa_s->bssid;
  149. }
  150. msg = wpa_alloc_eapol(wpa_s, type, buf, len, &msglen, NULL);
  151. if (msg == NULL)
  152. return -1;
  153. wpa_printf(MSG_DEBUG, "TX EAPOL: dst=" MACSTR, MAC2STR(dst));
  154. wpa_hexdump(MSG_MSGDUMP, "TX EAPOL", msg, msglen);
  155. res = wpa_ether_send(wpa_s, dst, ETH_P_EAPOL, msg, msglen);
  156. os_free(msg);
  157. return res;
  158. }
  159. /**
  160. * wpa_eapol_set_wep_key - set WEP key for the driver
  161. * @ctx: Pointer to wpa_supplicant data (wpa_s)
  162. * @unicast: 1 = individual unicast key, 0 = broadcast key
  163. * @keyidx: WEP key index (0..3)
  164. * @key: Pointer to key data
  165. * @keylen: Key length in bytes
  166. * Returns: 0 on success or < 0 on error.
  167. */
  168. static int wpa_eapol_set_wep_key(void *ctx, int unicast, int keyidx,
  169. const u8 *key, size_t keylen)
  170. {
  171. struct wpa_supplicant *wpa_s = ctx;
  172. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  173. int cipher = (keylen == 5) ? WPA_CIPHER_WEP40 :
  174. WPA_CIPHER_WEP104;
  175. if (unicast)
  176. wpa_s->pairwise_cipher = cipher;
  177. else
  178. wpa_s->group_cipher = cipher;
  179. }
  180. return wpa_drv_set_key(wpa_s, WPA_ALG_WEP,
  181. unicast ? wpa_s->bssid : NULL,
  182. keyidx, unicast, NULL, 0, key, keylen);
  183. }
  184. static void wpa_supplicant_aborted_cached(void *ctx)
  185. {
  186. struct wpa_supplicant *wpa_s = ctx;
  187. wpa_sm_aborted_cached(wpa_s->wpa);
  188. }
  189. static const char * result_str(enum eapol_supp_result result)
  190. {
  191. switch (result) {
  192. case EAPOL_SUPP_RESULT_FAILURE:
  193. return "FAILURE";
  194. case EAPOL_SUPP_RESULT_SUCCESS:
  195. return "SUCCESS";
  196. case EAPOL_SUPP_RESULT_EXPECTED_FAILURE:
  197. return "EXPECTED_FAILURE";
  198. }
  199. return "?";
  200. }
  201. static void wpa_supplicant_eapol_cb(struct eapol_sm *eapol,
  202. enum eapol_supp_result result,
  203. void *ctx)
  204. {
  205. struct wpa_supplicant *wpa_s = ctx;
  206. int res, pmk_len;
  207. u8 pmk[PMK_LEN];
  208. wpa_printf(MSG_DEBUG, "EAPOL authentication completed - result=%s",
  209. result_str(result));
  210. if (wpas_wps_eapol_cb(wpa_s) > 0)
  211. return;
  212. wpa_s->eap_expected_failure = result ==
  213. EAPOL_SUPP_RESULT_EXPECTED_FAILURE;
  214. if (result != EAPOL_SUPP_RESULT_SUCCESS) {
  215. /*
  216. * Make sure we do not get stuck here waiting for long EAPOL
  217. * timeout if the AP does not disconnect in case of
  218. * authentication failure.
  219. */
  220. wpa_supplicant_req_auth_timeout(wpa_s, 2, 0);
  221. } else {
  222. ieee802_1x_notify_create_actor(wpa_s, wpa_s->last_eapol_src);
  223. }
  224. if (result != EAPOL_SUPP_RESULT_SUCCESS ||
  225. !(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE))
  226. return;
  227. if (!wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt))
  228. return;
  229. wpa_printf(MSG_DEBUG, "Configure PMK for driver-based RSN 4-way "
  230. "handshake");
  231. pmk_len = PMK_LEN;
  232. if (wpa_key_mgmt_ft(wpa_s->key_mgmt)) {
  233. #ifdef CONFIG_IEEE80211R
  234. u8 buf[2 * PMK_LEN];
  235. wpa_printf(MSG_DEBUG, "RSN: Use FT XXKey as PMK for "
  236. "driver-based 4-way hs and FT");
  237. res = eapol_sm_get_key(eapol, buf, 2 * PMK_LEN);
  238. if (res == 0) {
  239. os_memcpy(pmk, buf + PMK_LEN, PMK_LEN);
  240. os_memset(buf, 0, sizeof(buf));
  241. }
  242. #else /* CONFIG_IEEE80211R */
  243. res = -1;
  244. #endif /* CONFIG_IEEE80211R */
  245. } else {
  246. res = eapol_sm_get_key(eapol, pmk, PMK_LEN);
  247. if (res) {
  248. /*
  249. * EAP-LEAP is an exception from other EAP methods: it
  250. * uses only 16-byte PMK.
  251. */
  252. res = eapol_sm_get_key(eapol, pmk, 16);
  253. pmk_len = 16;
  254. }
  255. }
  256. if (res) {
  257. wpa_printf(MSG_DEBUG, "Failed to get PMK from EAPOL state "
  258. "machines");
  259. return;
  260. }
  261. wpa_hexdump_key(MSG_DEBUG, "RSN: Configure PMK for driver-based 4-way "
  262. "handshake", pmk, pmk_len);
  263. if (wpa_drv_set_key(wpa_s, WPA_ALG_PMK, NULL, 0, 0, NULL, 0, pmk,
  264. pmk_len)) {
  265. wpa_printf(MSG_DEBUG, "Failed to set PMK to the driver");
  266. }
  267. wpa_supplicant_cancel_scan(wpa_s);
  268. wpa_supplicant_cancel_auth_timeout(wpa_s);
  269. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  270. }
  271. static void wpa_supplicant_notify_eapol_done(void *ctx)
  272. {
  273. struct wpa_supplicant *wpa_s = ctx;
  274. wpa_msg(wpa_s, MSG_DEBUG, "WPA: EAPOL processing complete");
  275. if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
  276. wpa_supplicant_set_state(wpa_s, WPA_4WAY_HANDSHAKE);
  277. } else {
  278. wpa_supplicant_cancel_auth_timeout(wpa_s);
  279. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  280. }
  281. }
  282. #endif /* IEEE8021X_EAPOL */
  283. #ifndef CONFIG_NO_WPA
  284. static int wpa_get_beacon_ie(struct wpa_supplicant *wpa_s)
  285. {
  286. int ret = 0;
  287. struct wpa_bss *curr = NULL, *bss;
  288. struct wpa_ssid *ssid = wpa_s->current_ssid;
  289. const u8 *ie;
  290. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  291. if (os_memcmp(bss->bssid, wpa_s->bssid, ETH_ALEN) != 0)
  292. continue;
  293. if (ssid == NULL ||
  294. ((bss->ssid_len == ssid->ssid_len &&
  295. os_memcmp(bss->ssid, ssid->ssid, ssid->ssid_len) == 0) ||
  296. ssid->ssid_len == 0)) {
  297. curr = bss;
  298. break;
  299. }
  300. }
  301. if (curr) {
  302. ie = wpa_bss_get_vendor_ie(curr, WPA_IE_VENDOR_TYPE);
  303. if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0))
  304. ret = -1;
  305. ie = wpa_bss_get_ie(curr, WLAN_EID_RSN);
  306. if (wpa_sm_set_ap_rsn_ie(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0))
  307. ret = -1;
  308. } else {
  309. ret = -1;
  310. }
  311. return ret;
  312. }
  313. static int wpa_supplicant_get_beacon_ie(void *ctx)
  314. {
  315. struct wpa_supplicant *wpa_s = ctx;
  316. if (wpa_get_beacon_ie(wpa_s) == 0) {
  317. return 0;
  318. }
  319. /* No WPA/RSN IE found in the cached scan results. Try to get updated
  320. * scan results from the driver. */
  321. if (wpa_supplicant_update_scan_results(wpa_s) < 0)
  322. return -1;
  323. return wpa_get_beacon_ie(wpa_s);
  324. }
  325. static u8 * _wpa_alloc_eapol(void *wpa_s, u8 type,
  326. const void *data, u16 data_len,
  327. size_t *msg_len, void **data_pos)
  328. {
  329. return wpa_alloc_eapol(wpa_s, type, data, data_len, msg_len, data_pos);
  330. }
  331. static int _wpa_ether_send(void *wpa_s, const u8 *dest, u16 proto,
  332. const u8 *buf, size_t len)
  333. {
  334. return wpa_ether_send(wpa_s, dest, proto, buf, len);
  335. }
  336. static void _wpa_supplicant_cancel_auth_timeout(void *wpa_s)
  337. {
  338. wpa_supplicant_cancel_auth_timeout(wpa_s);
  339. }
  340. static void _wpa_supplicant_set_state(void *wpa_s, enum wpa_states state)
  341. {
  342. wpa_supplicant_set_state(wpa_s, state);
  343. }
  344. /**
  345. * wpa_supplicant_get_state - Get the connection state
  346. * @wpa_s: Pointer to wpa_supplicant data
  347. * Returns: The current connection state (WPA_*)
  348. */
  349. static enum wpa_states wpa_supplicant_get_state(struct wpa_supplicant *wpa_s)
  350. {
  351. return wpa_s->wpa_state;
  352. }
  353. static enum wpa_states _wpa_supplicant_get_state(void *wpa_s)
  354. {
  355. return wpa_supplicant_get_state(wpa_s);
  356. }
  357. static void _wpa_supplicant_deauthenticate(void *wpa_s, int reason_code)
  358. {
  359. wpa_supplicant_deauthenticate(wpa_s, reason_code);
  360. /* Schedule a scan to make sure we continue looking for networks */
  361. wpa_supplicant_req_scan(wpa_s, 5, 0);
  362. }
  363. static void * wpa_supplicant_get_network_ctx(void *wpa_s)
  364. {
  365. return wpa_supplicant_get_ssid(wpa_s);
  366. }
  367. static int wpa_supplicant_get_bssid(void *ctx, u8 *bssid)
  368. {
  369. struct wpa_supplicant *wpa_s = ctx;
  370. return wpa_drv_get_bssid(wpa_s, bssid);
  371. }
  372. static int wpa_supplicant_set_key(void *_wpa_s, enum wpa_alg alg,
  373. const u8 *addr, int key_idx, int set_tx,
  374. const u8 *seq, size_t seq_len,
  375. const u8 *key, size_t key_len)
  376. {
  377. struct wpa_supplicant *wpa_s = _wpa_s;
  378. if (alg == WPA_ALG_TKIP && key_idx == 0 && key_len == 32) {
  379. /* Clear the MIC error counter when setting a new PTK. */
  380. wpa_s->mic_errors_seen = 0;
  381. }
  382. #ifdef CONFIG_TESTING_GET_GTK
  383. if (key_idx > 0 && addr && is_broadcast_ether_addr(addr) &&
  384. alg != WPA_ALG_NONE && key_len <= sizeof(wpa_s->last_gtk)) {
  385. os_memcpy(wpa_s->last_gtk, key, key_len);
  386. wpa_s->last_gtk_len = key_len;
  387. }
  388. #endif /* CONFIG_TESTING_GET_GTK */
  389. return wpa_drv_set_key(wpa_s, alg, addr, key_idx, set_tx, seq, seq_len,
  390. key, key_len);
  391. }
  392. static int wpa_supplicant_mlme_setprotection(void *wpa_s, const u8 *addr,
  393. int protection_type,
  394. int key_type)
  395. {
  396. return wpa_drv_mlme_setprotection(wpa_s, addr, protection_type,
  397. key_type);
  398. }
  399. static int wpa_supplicant_add_pmkid(void *wpa_s,
  400. const u8 *bssid, const u8 *pmkid)
  401. {
  402. return wpa_drv_add_pmkid(wpa_s, bssid, pmkid);
  403. }
  404. static int wpa_supplicant_remove_pmkid(void *wpa_s,
  405. const u8 *bssid, const u8 *pmkid)
  406. {
  407. return wpa_drv_remove_pmkid(wpa_s, bssid, pmkid);
  408. }
  409. #ifdef CONFIG_IEEE80211R
  410. static int wpa_supplicant_update_ft_ies(void *ctx, const u8 *md,
  411. const u8 *ies, size_t ies_len)
  412. {
  413. struct wpa_supplicant *wpa_s = ctx;
  414. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME)
  415. return sme_update_ft_ies(wpa_s, md, ies, ies_len);
  416. return wpa_drv_update_ft_ies(wpa_s, md, ies, ies_len);
  417. }
  418. static int wpa_supplicant_send_ft_action(void *ctx, u8 action,
  419. const u8 *target_ap,
  420. const u8 *ies, size_t ies_len)
  421. {
  422. struct wpa_supplicant *wpa_s = ctx;
  423. return wpa_drv_send_ft_action(wpa_s, action, target_ap, ies, ies_len);
  424. }
  425. static int wpa_supplicant_mark_authenticated(void *ctx, const u8 *target_ap)
  426. {
  427. struct wpa_supplicant *wpa_s = ctx;
  428. struct wpa_driver_auth_params params;
  429. struct wpa_bss *bss;
  430. bss = wpa_bss_get_bssid(wpa_s, target_ap);
  431. if (bss == NULL)
  432. return -1;
  433. os_memset(&params, 0, sizeof(params));
  434. params.bssid = target_ap;
  435. params.freq = bss->freq;
  436. params.ssid = bss->ssid;
  437. params.ssid_len = bss->ssid_len;
  438. params.auth_alg = WPA_AUTH_ALG_FT;
  439. params.local_state_change = 1;
  440. return wpa_drv_authenticate(wpa_s, &params);
  441. }
  442. #endif /* CONFIG_IEEE80211R */
  443. #ifdef CONFIG_TDLS
  444. static int wpa_supplicant_tdls_get_capa(void *ctx, int *tdls_supported,
  445. int *tdls_ext_setup)
  446. {
  447. struct wpa_supplicant *wpa_s = ctx;
  448. *tdls_supported = 0;
  449. *tdls_ext_setup = 0;
  450. if (!wpa_s->drv_capa_known)
  451. return -1;
  452. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT)
  453. *tdls_supported = 1;
  454. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP)
  455. *tdls_ext_setup = 1;
  456. return 0;
  457. }
  458. static int wpa_supplicant_send_tdls_mgmt(void *ctx, const u8 *dst,
  459. u8 action_code, u8 dialog_token,
  460. u16 status_code, u32 peer_capab,
  461. const u8 *buf, size_t len)
  462. {
  463. struct wpa_supplicant *wpa_s = ctx;
  464. return wpa_drv_send_tdls_mgmt(wpa_s, dst, action_code, dialog_token,
  465. status_code, peer_capab, buf, len);
  466. }
  467. static int wpa_supplicant_tdls_oper(void *ctx, int oper, const u8 *peer)
  468. {
  469. struct wpa_supplicant *wpa_s = ctx;
  470. return wpa_drv_tdls_oper(wpa_s, oper, peer);
  471. }
  472. static int wpa_supplicant_tdls_peer_addset(
  473. void *ctx, const u8 *peer, int add, u16 aid, u16 capability,
  474. const u8 *supp_rates, size_t supp_rates_len,
  475. const struct ieee80211_ht_capabilities *ht_capab,
  476. const struct ieee80211_vht_capabilities *vht_capab,
  477. u8 qosinfo, const u8 *ext_capab, size_t ext_capab_len,
  478. const u8 *supp_channels, size_t supp_channels_len,
  479. const u8 *supp_oper_classes, size_t supp_oper_classes_len)
  480. {
  481. struct wpa_supplicant *wpa_s = ctx;
  482. struct hostapd_sta_add_params params;
  483. os_memset(&params, 0, sizeof(params));
  484. params.addr = peer;
  485. params.aid = aid;
  486. params.capability = capability;
  487. params.flags = WPA_STA_TDLS_PEER | WPA_STA_AUTHORIZED;
  488. /*
  489. * TDLS Setup frames do not contain WMM IEs, hence need to depend on
  490. * qosinfo to check if the peer is WMM capable.
  491. */
  492. if (qosinfo)
  493. params.flags |= WPA_STA_WMM;
  494. params.ht_capabilities = ht_capab;
  495. params.vht_capabilities = vht_capab;
  496. params.qosinfo = qosinfo;
  497. params.listen_interval = 0;
  498. params.supp_rates = supp_rates;
  499. params.supp_rates_len = supp_rates_len;
  500. params.set = !add;
  501. params.ext_capab = ext_capab;
  502. params.ext_capab_len = ext_capab_len;
  503. params.supp_channels = supp_channels;
  504. params.supp_channels_len = supp_channels_len;
  505. params.supp_oper_classes = supp_oper_classes;
  506. params.supp_oper_classes_len = supp_oper_classes_len;
  507. return wpa_drv_sta_add(wpa_s, &params);
  508. }
  509. #endif /* CONFIG_TDLS */
  510. #endif /* CONFIG_NO_WPA */
  511. enum wpa_ctrl_req_type wpa_supplicant_ctrl_req_from_string(const char *field)
  512. {
  513. if (os_strcmp(field, "IDENTITY") == 0)
  514. return WPA_CTRL_REQ_EAP_IDENTITY;
  515. else if (os_strcmp(field, "PASSWORD") == 0)
  516. return WPA_CTRL_REQ_EAP_PASSWORD;
  517. else if (os_strcmp(field, "NEW_PASSWORD") == 0)
  518. return WPA_CTRL_REQ_EAP_NEW_PASSWORD;
  519. else if (os_strcmp(field, "PIN") == 0)
  520. return WPA_CTRL_REQ_EAP_PIN;
  521. else if (os_strcmp(field, "OTP") == 0)
  522. return WPA_CTRL_REQ_EAP_OTP;
  523. else if (os_strcmp(field, "PASSPHRASE") == 0)
  524. return WPA_CTRL_REQ_EAP_PASSPHRASE;
  525. else if (os_strcmp(field, "SIM") == 0)
  526. return WPA_CTRL_REQ_SIM;
  527. return WPA_CTRL_REQ_UNKNOWN;
  528. }
  529. const char * wpa_supplicant_ctrl_req_to_string(enum wpa_ctrl_req_type field,
  530. const char *default_txt,
  531. const char **txt)
  532. {
  533. const char *ret = NULL;
  534. *txt = default_txt;
  535. switch (field) {
  536. case WPA_CTRL_REQ_EAP_IDENTITY:
  537. *txt = "Identity";
  538. ret = "IDENTITY";
  539. break;
  540. case WPA_CTRL_REQ_EAP_PASSWORD:
  541. *txt = "Password";
  542. ret = "PASSWORD";
  543. break;
  544. case WPA_CTRL_REQ_EAP_NEW_PASSWORD:
  545. *txt = "New Password";
  546. ret = "NEW_PASSWORD";
  547. break;
  548. case WPA_CTRL_REQ_EAP_PIN:
  549. *txt = "PIN";
  550. ret = "PIN";
  551. break;
  552. case WPA_CTRL_REQ_EAP_OTP:
  553. ret = "OTP";
  554. break;
  555. case WPA_CTRL_REQ_EAP_PASSPHRASE:
  556. *txt = "Private key passphrase";
  557. ret = "PASSPHRASE";
  558. break;
  559. case WPA_CTRL_REQ_SIM:
  560. ret = "SIM";
  561. break;
  562. default:
  563. break;
  564. }
  565. /* txt needs to be something */
  566. if (*txt == NULL) {
  567. wpa_printf(MSG_WARNING, "No message for request %d", field);
  568. ret = NULL;
  569. }
  570. return ret;
  571. }
  572. #ifdef IEEE8021X_EAPOL
  573. #if defined(CONFIG_CTRL_IFACE) || !defined(CONFIG_NO_STDOUT_DEBUG)
  574. static void wpa_supplicant_eap_param_needed(void *ctx,
  575. enum wpa_ctrl_req_type field,
  576. const char *default_txt)
  577. {
  578. struct wpa_supplicant *wpa_s = ctx;
  579. struct wpa_ssid *ssid = wpa_s->current_ssid;
  580. const char *field_name, *txt = NULL;
  581. char *buf;
  582. size_t buflen;
  583. int len;
  584. if (ssid == NULL)
  585. return;
  586. wpas_notify_network_request(wpa_s, ssid, field, default_txt);
  587. field_name = wpa_supplicant_ctrl_req_to_string(field, default_txt,
  588. &txt);
  589. if (field_name == NULL) {
  590. wpa_printf(MSG_WARNING, "Unhandled EAP param %d needed",
  591. field);
  592. return;
  593. }
  594. wpas_notify_eap_status(wpa_s, "eap parameter needed", field_name);
  595. buflen = 100 + os_strlen(txt) + ssid->ssid_len;
  596. buf = os_malloc(buflen);
  597. if (buf == NULL)
  598. return;
  599. len = os_snprintf(buf, buflen,
  600. WPA_CTRL_REQ "%s-%d:%s needed for SSID ",
  601. field_name, ssid->id, txt);
  602. if (len < 0 || (size_t) len >= buflen) {
  603. os_free(buf);
  604. return;
  605. }
  606. if (ssid->ssid && buflen > len + ssid->ssid_len) {
  607. os_memcpy(buf + len, ssid->ssid, ssid->ssid_len);
  608. len += ssid->ssid_len;
  609. buf[len] = '\0';
  610. }
  611. buf[buflen - 1] = '\0';
  612. wpa_msg(wpa_s, MSG_INFO, "%s", buf);
  613. os_free(buf);
  614. }
  615. #else /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
  616. #define wpa_supplicant_eap_param_needed NULL
  617. #endif /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
  618. static void wpa_supplicant_port_cb(void *ctx, int authorized)
  619. {
  620. struct wpa_supplicant *wpa_s = ctx;
  621. #ifdef CONFIG_AP
  622. if (wpa_s->ap_iface) {
  623. wpa_printf(MSG_DEBUG, "AP mode active - skip EAPOL Supplicant "
  624. "port status: %s",
  625. authorized ? "Authorized" : "Unauthorized");
  626. return;
  627. }
  628. #endif /* CONFIG_AP */
  629. wpa_printf(MSG_DEBUG, "EAPOL: Supplicant port status: %s",
  630. authorized ? "Authorized" : "Unauthorized");
  631. wpa_drv_set_supp_port(wpa_s, authorized);
  632. }
  633. static void wpa_supplicant_cert_cb(void *ctx, int depth, const char *subject,
  634. const char *cert_hash,
  635. const struct wpabuf *cert)
  636. {
  637. struct wpa_supplicant *wpa_s = ctx;
  638. wpas_notify_certification(wpa_s, depth, subject, cert_hash, cert);
  639. }
  640. static void wpa_supplicant_status_cb(void *ctx, const char *status,
  641. const char *parameter)
  642. {
  643. struct wpa_supplicant *wpa_s = ctx;
  644. wpas_notify_eap_status(wpa_s, status, parameter);
  645. }
  646. static void wpa_supplicant_set_anon_id(void *ctx, const u8 *id, size_t len)
  647. {
  648. struct wpa_supplicant *wpa_s = ctx;
  649. char *str;
  650. int res;
  651. wpa_hexdump_ascii(MSG_DEBUG, "EAP method updated anonymous_identity",
  652. id, len);
  653. if (wpa_s->current_ssid == NULL)
  654. return;
  655. if (id == NULL) {
  656. if (wpa_config_set(wpa_s->current_ssid, "anonymous_identity",
  657. "NULL", 0) < 0)
  658. return;
  659. } else {
  660. str = os_malloc(len * 2 + 1);
  661. if (str == NULL)
  662. return;
  663. wpa_snprintf_hex(str, len * 2 + 1, id, len);
  664. res = wpa_config_set(wpa_s->current_ssid, "anonymous_identity",
  665. str, 0);
  666. os_free(str);
  667. if (res < 0)
  668. return;
  669. }
  670. if (wpa_s->conf->update_config) {
  671. res = wpa_config_write(wpa_s->confname, wpa_s->conf);
  672. if (res) {
  673. wpa_printf(MSG_DEBUG, "Failed to update config after "
  674. "anonymous_id update");
  675. }
  676. }
  677. }
  678. #endif /* IEEE8021X_EAPOL */
  679. int wpa_supplicant_init_eapol(struct wpa_supplicant *wpa_s)
  680. {
  681. #ifdef IEEE8021X_EAPOL
  682. struct eapol_ctx *ctx;
  683. ctx = os_zalloc(sizeof(*ctx));
  684. if (ctx == NULL) {
  685. wpa_printf(MSG_ERROR, "Failed to allocate EAPOL context.");
  686. return -1;
  687. }
  688. ctx->ctx = wpa_s;
  689. ctx->msg_ctx = wpa_s;
  690. ctx->eapol_send_ctx = wpa_s;
  691. ctx->preauth = 0;
  692. ctx->eapol_done_cb = wpa_supplicant_notify_eapol_done;
  693. ctx->eapol_send = wpa_supplicant_eapol_send;
  694. ctx->set_wep_key = wpa_eapol_set_wep_key;
  695. #ifndef CONFIG_NO_CONFIG_BLOBS
  696. ctx->set_config_blob = wpa_supplicant_set_config_blob;
  697. ctx->get_config_blob = wpa_supplicant_get_config_blob;
  698. #endif /* CONFIG_NO_CONFIG_BLOBS */
  699. ctx->aborted_cached = wpa_supplicant_aborted_cached;
  700. ctx->opensc_engine_path = wpa_s->conf->opensc_engine_path;
  701. ctx->pkcs11_engine_path = wpa_s->conf->pkcs11_engine_path;
  702. ctx->pkcs11_module_path = wpa_s->conf->pkcs11_module_path;
  703. ctx->wps = wpa_s->wps;
  704. ctx->eap_param_needed = wpa_supplicant_eap_param_needed;
  705. ctx->port_cb = wpa_supplicant_port_cb;
  706. ctx->cb = wpa_supplicant_eapol_cb;
  707. ctx->cert_cb = wpa_supplicant_cert_cb;
  708. ctx->status_cb = wpa_supplicant_status_cb;
  709. ctx->set_anon_id = wpa_supplicant_set_anon_id;
  710. ctx->cb_ctx = wpa_s;
  711. wpa_s->eapol = eapol_sm_init(ctx);
  712. if (wpa_s->eapol == NULL) {
  713. os_free(ctx);
  714. wpa_printf(MSG_ERROR, "Failed to initialize EAPOL state "
  715. "machines.");
  716. return -1;
  717. }
  718. #endif /* IEEE8021X_EAPOL */
  719. return 0;
  720. }
  721. #ifndef CONFIG_NO_WPA
  722. static void wpa_supplicant_set_rekey_offload(void *ctx, const u8 *kek,
  723. const u8 *kck,
  724. const u8 *replay_ctr)
  725. {
  726. struct wpa_supplicant *wpa_s = ctx;
  727. wpa_drv_set_rekey_info(wpa_s, kek, kck, replay_ctr);
  728. }
  729. #endif /* CONFIG_NO_WPA */
  730. int wpa_supplicant_init_wpa(struct wpa_supplicant *wpa_s)
  731. {
  732. #ifndef CONFIG_NO_WPA
  733. struct wpa_sm_ctx *ctx;
  734. ctx = os_zalloc(sizeof(*ctx));
  735. if (ctx == NULL) {
  736. wpa_printf(MSG_ERROR, "Failed to allocate WPA context.");
  737. return -1;
  738. }
  739. ctx->ctx = wpa_s;
  740. ctx->msg_ctx = wpa_s;
  741. ctx->set_state = _wpa_supplicant_set_state;
  742. ctx->get_state = _wpa_supplicant_get_state;
  743. ctx->deauthenticate = _wpa_supplicant_deauthenticate;
  744. ctx->set_key = wpa_supplicant_set_key;
  745. ctx->get_network_ctx = wpa_supplicant_get_network_ctx;
  746. ctx->get_bssid = wpa_supplicant_get_bssid;
  747. ctx->ether_send = _wpa_ether_send;
  748. ctx->get_beacon_ie = wpa_supplicant_get_beacon_ie;
  749. ctx->alloc_eapol = _wpa_alloc_eapol;
  750. ctx->cancel_auth_timeout = _wpa_supplicant_cancel_auth_timeout;
  751. ctx->add_pmkid = wpa_supplicant_add_pmkid;
  752. ctx->remove_pmkid = wpa_supplicant_remove_pmkid;
  753. #ifndef CONFIG_NO_CONFIG_BLOBS
  754. ctx->set_config_blob = wpa_supplicant_set_config_blob;
  755. ctx->get_config_blob = wpa_supplicant_get_config_blob;
  756. #endif /* CONFIG_NO_CONFIG_BLOBS */
  757. ctx->mlme_setprotection = wpa_supplicant_mlme_setprotection;
  758. #ifdef CONFIG_IEEE80211R
  759. ctx->update_ft_ies = wpa_supplicant_update_ft_ies;
  760. ctx->send_ft_action = wpa_supplicant_send_ft_action;
  761. ctx->mark_authenticated = wpa_supplicant_mark_authenticated;
  762. #endif /* CONFIG_IEEE80211R */
  763. #ifdef CONFIG_TDLS
  764. ctx->tdls_get_capa = wpa_supplicant_tdls_get_capa;
  765. ctx->send_tdls_mgmt = wpa_supplicant_send_tdls_mgmt;
  766. ctx->tdls_oper = wpa_supplicant_tdls_oper;
  767. ctx->tdls_peer_addset = wpa_supplicant_tdls_peer_addset;
  768. #endif /* CONFIG_TDLS */
  769. ctx->set_rekey_offload = wpa_supplicant_set_rekey_offload;
  770. wpa_s->wpa = wpa_sm_init(ctx);
  771. if (wpa_s->wpa == NULL) {
  772. wpa_printf(MSG_ERROR, "Failed to initialize WPA state "
  773. "machine");
  774. return -1;
  775. }
  776. #endif /* CONFIG_NO_WPA */
  777. return 0;
  778. }
  779. void wpa_supplicant_rsn_supp_set_config(struct wpa_supplicant *wpa_s,
  780. struct wpa_ssid *ssid)
  781. {
  782. struct rsn_supp_config conf;
  783. if (ssid) {
  784. os_memset(&conf, 0, sizeof(conf));
  785. conf.network_ctx = ssid;
  786. conf.peerkey_enabled = ssid->peerkey;
  787. conf.allowed_pairwise_cipher = ssid->pairwise_cipher;
  788. #ifdef IEEE8021X_EAPOL
  789. conf.proactive_key_caching = ssid->proactive_key_caching < 0 ?
  790. wpa_s->conf->okc : ssid->proactive_key_caching;
  791. conf.eap_workaround = ssid->eap_workaround;
  792. conf.eap_conf_ctx = &ssid->eap;
  793. #endif /* IEEE8021X_EAPOL */
  794. conf.ssid = ssid->ssid;
  795. conf.ssid_len = ssid->ssid_len;
  796. conf.wpa_ptk_rekey = ssid->wpa_ptk_rekey;
  797. #ifdef CONFIG_P2P
  798. if (ssid->p2p_group && wpa_s->current_bss &&
  799. !wpa_s->p2p_disable_ip_addr_req) {
  800. struct wpabuf *p2p;
  801. p2p = wpa_bss_get_vendor_ie_multi(wpa_s->current_bss,
  802. P2P_IE_VENDOR_TYPE);
  803. if (p2p) {
  804. u8 group_capab;
  805. group_capab = p2p_get_group_capab(p2p);
  806. if (group_capab &
  807. P2P_GROUP_CAPAB_IP_ADDR_ALLOCATION)
  808. conf.p2p = 1;
  809. wpabuf_free(p2p);
  810. }
  811. }
  812. #endif /* CONFIG_P2P */
  813. }
  814. wpa_sm_set_config(wpa_s->wpa, ssid ? &conf : NULL);
  815. }