mesh_rsn.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. /*
  2. * WPA Supplicant - Mesh RSN routines
  3. * Copyright (c) 2013-2014, cozybit, Inc. All rights reserved.
  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 "crypto/sha256.h"
  11. #include "crypto/random.h"
  12. #include "crypto/aes.h"
  13. #include "crypto/aes_siv.h"
  14. #include "rsn_supp/wpa.h"
  15. #include "ap/hostapd.h"
  16. #include "ap/wpa_auth.h"
  17. #include "ap/sta_info.h"
  18. #include "wpa_supplicant_i.h"
  19. #include "driver_i.h"
  20. #include "wpas_glue.h"
  21. #include "mesh_mpm.h"
  22. #include "mesh_rsn.h"
  23. static void auth_logger(void *ctx, const u8 *addr, logger_level level,
  24. const char *txt)
  25. {
  26. if (addr)
  27. wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " - %s",
  28. MAC2STR(addr), txt);
  29. else
  30. wpa_printf(MSG_DEBUG, "AUTH: %s", txt);
  31. }
  32. static const u8 *auth_get_psk(void *ctx, const u8 *addr,
  33. const u8 *p2p_dev_addr, const u8 *prev_psk)
  34. {
  35. struct mesh_rsn *mesh_rsn = ctx;
  36. struct hostapd_data *hapd = mesh_rsn->wpa_s->ifmsh->bss[0];
  37. struct sta_info *sta = ap_get_sta(hapd, addr);
  38. wpa_printf(MSG_DEBUG, "AUTH: %s (addr=" MACSTR " prev_psk=%p)",
  39. __func__, MAC2STR(addr), prev_psk);
  40. if (sta && sta->auth_alg == WLAN_AUTH_SAE) {
  41. if (!sta->sae || prev_psk)
  42. return NULL;
  43. return sta->sae->pmk;
  44. }
  45. return NULL;
  46. }
  47. static int auth_set_key(void *ctx, int vlan_id, enum wpa_alg alg,
  48. const u8 *addr, int idx, u8 *key, size_t key_len)
  49. {
  50. struct mesh_rsn *mesh_rsn = ctx;
  51. u8 seq[6];
  52. os_memset(seq, 0, sizeof(seq));
  53. if (addr) {
  54. wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d addr=" MACSTR
  55. " key_idx=%d)",
  56. __func__, alg, MAC2STR(addr), idx);
  57. } else {
  58. wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d key_idx=%d)",
  59. __func__, alg, idx);
  60. }
  61. wpa_hexdump_key(MSG_DEBUG, "AUTH: set_key - key", key, key_len);
  62. return wpa_drv_set_key(mesh_rsn->wpa_s, alg, addr, idx,
  63. 1, seq, 6, key, key_len);
  64. }
  65. static int auth_start_ampe(void *ctx, const u8 *addr)
  66. {
  67. struct mesh_rsn *mesh_rsn = ctx;
  68. if (mesh_rsn->wpa_s->current_ssid->mode != WPAS_MODE_MESH)
  69. return -1;
  70. mesh_mpm_auth_peer(mesh_rsn->wpa_s, addr);
  71. return 0;
  72. }
  73. static int __mesh_rsn_auth_init(struct mesh_rsn *rsn, const u8 *addr)
  74. {
  75. struct wpa_auth_config conf;
  76. struct wpa_auth_callbacks cb;
  77. u8 seq[6] = {};
  78. wpa_printf(MSG_DEBUG, "AUTH: Initializing group state machine");
  79. os_memset(&conf, 0, sizeof(conf));
  80. conf.wpa = 2;
  81. conf.wpa_key_mgmt = WPA_KEY_MGMT_SAE;
  82. conf.wpa_pairwise = WPA_CIPHER_CCMP;
  83. conf.rsn_pairwise = WPA_CIPHER_CCMP;
  84. conf.wpa_group = WPA_CIPHER_CCMP;
  85. conf.eapol_version = 0;
  86. conf.wpa_group_rekey = -1;
  87. os_memset(&cb, 0, sizeof(cb));
  88. cb.ctx = rsn;
  89. cb.logger = auth_logger;
  90. cb.get_psk = auth_get_psk;
  91. cb.set_key = auth_set_key;
  92. cb.start_ampe = auth_start_ampe;
  93. rsn->auth = wpa_init(addr, &conf, &cb);
  94. if (rsn->auth == NULL) {
  95. wpa_printf(MSG_DEBUG, "AUTH: wpa_init() failed");
  96. return -1;
  97. }
  98. /* TODO: support rekeying */
  99. if (random_get_bytes(rsn->mgtk, 16) < 0) {
  100. wpa_deinit(rsn->auth);
  101. return -1;
  102. }
  103. /* group mgmt */
  104. wpa_drv_set_key(rsn->wpa_s, WPA_ALG_IGTK, NULL, 4, 1,
  105. seq, sizeof(seq), rsn->mgtk, sizeof(rsn->mgtk));
  106. /* group privacy / data frames */
  107. wpa_drv_set_key(rsn->wpa_s, WPA_ALG_CCMP, NULL, 1, 1,
  108. seq, sizeof(seq), rsn->mgtk, sizeof(rsn->mgtk));
  109. return 0;
  110. }
  111. static void mesh_rsn_deinit(struct mesh_rsn *rsn)
  112. {
  113. os_memset(rsn->mgtk, 0, sizeof(rsn->mgtk));
  114. wpa_deinit(rsn->auth);
  115. }
  116. struct mesh_rsn *mesh_rsn_auth_init(struct wpa_supplicant *wpa_s,
  117. struct mesh_conf *conf)
  118. {
  119. struct mesh_rsn *mesh_rsn;
  120. struct hostapd_data *bss = wpa_s->ifmsh->bss[0];
  121. const u8 *ie;
  122. size_t ie_len;
  123. mesh_rsn = os_zalloc(sizeof(*mesh_rsn));
  124. if (mesh_rsn == NULL)
  125. return NULL;
  126. mesh_rsn->wpa_s = wpa_s;
  127. if (__mesh_rsn_auth_init(mesh_rsn, wpa_s->own_addr) < 0) {
  128. mesh_rsn_deinit(mesh_rsn);
  129. return NULL;
  130. }
  131. bss->wpa_auth = mesh_rsn->auth;
  132. ie = wpa_auth_get_wpa_ie(mesh_rsn->auth, &ie_len);
  133. conf->ies = (u8 *) ie;
  134. conf->ie_len = ie_len;
  135. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  136. return mesh_rsn;
  137. }
  138. static int index_within_array(const int *array, int idx)
  139. {
  140. int i;
  141. for (i = 0; i < idx; i++) {
  142. if (array[i] == -1)
  143. return 0;
  144. }
  145. return 1;
  146. }
  147. static int mesh_rsn_sae_group(struct wpa_supplicant *wpa_s,
  148. struct sae_data *sae)
  149. {
  150. int *groups = wpa_s->ifmsh->bss[0]->conf->sae_groups;
  151. /* Configuration may have changed, so validate current index */
  152. if (!index_within_array(groups, wpa_s->mesh_rsn->sae_group_index))
  153. return -1;
  154. for (;;) {
  155. int group = groups[wpa_s->mesh_rsn->sae_group_index];
  156. if (group <= 0)
  157. break;
  158. if (sae_set_group(sae, group) == 0) {
  159. wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
  160. sae->group);
  161. return 0;
  162. }
  163. wpa_s->mesh_rsn->sae_group_index++;
  164. }
  165. return -1;
  166. }
  167. struct wpabuf *
  168. mesh_rsn_build_sae_commit(struct wpa_supplicant *wpa_s,
  169. struct wpa_ssid *ssid, struct sta_info *sta)
  170. {
  171. struct wpabuf *buf;
  172. int len;
  173. if (ssid->passphrase == NULL) {
  174. wpa_msg(wpa_s, MSG_DEBUG, "SAE: No password available");
  175. return NULL;
  176. }
  177. if (mesh_rsn_sae_group(wpa_s, sta->sae) < 0) {
  178. wpa_msg(wpa_s, MSG_DEBUG, "SAE: Failed to select group");
  179. return NULL;
  180. }
  181. if (sae_prepare_commit(wpa_s->own_addr, sta->addr,
  182. (u8 *) ssid->passphrase,
  183. os_strlen(ssid->passphrase), sta->sae) < 0) {
  184. wpa_msg(wpa_s, MSG_DEBUG, "SAE: Could not pick PWE");
  185. return NULL;
  186. }
  187. len = wpa_s->mesh_rsn->sae_token ?
  188. wpabuf_len(wpa_s->mesh_rsn->sae_token) : 0;
  189. buf = wpabuf_alloc(4 + SAE_COMMIT_MAX_LEN + len);
  190. if (buf == NULL)
  191. return NULL;
  192. sae_write_commit(sta->sae, buf, wpa_s->mesh_rsn->sae_token);
  193. return buf;
  194. }
  195. static void mesh_rsn_send_auth(struct wpa_supplicant *wpa_s,
  196. const u8 *dst, const u8 *src,
  197. u16 auth_transaction, u16 resp,
  198. struct wpabuf *data)
  199. {
  200. struct ieee80211_mgmt *auth;
  201. u8 *buf;
  202. size_t len, ielen = 0;
  203. if (data)
  204. ielen = wpabuf_len(data);
  205. len = IEEE80211_HDRLEN + sizeof(auth->u.auth) + ielen;
  206. buf = os_zalloc(len);
  207. if (buf == NULL)
  208. return;
  209. auth = (struct ieee80211_mgmt *) buf;
  210. auth->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  211. WLAN_FC_STYPE_AUTH);
  212. os_memcpy(auth->da, dst, ETH_ALEN);
  213. os_memcpy(auth->sa, src, ETH_ALEN);
  214. os_memcpy(auth->bssid, src, ETH_ALEN);
  215. auth->u.auth.auth_alg = host_to_le16(WLAN_AUTH_SAE);
  216. auth->u.auth.auth_transaction = host_to_le16(auth_transaction);
  217. auth->u.auth.status_code = host_to_le16(resp);
  218. if (data)
  219. os_memcpy(auth->u.auth.variable, wpabuf_head(data), ielen);
  220. wpa_msg(wpa_s, MSG_DEBUG, "authentication frame: STA=" MACSTR
  221. " auth_transaction=%d resp=%d (IE len=%lu)",
  222. MAC2STR(dst), auth_transaction, resp, (unsigned long) ielen);
  223. if (wpa_drv_send_mlme(wpa_s, buf, len, 0) < 0)
  224. perror("send_auth_reply: send");
  225. os_free(buf);
  226. }
  227. /* initiate new SAE authentication with sta */
  228. int mesh_rsn_auth_sae_sta(struct wpa_supplicant *wpa_s,
  229. struct sta_info *sta)
  230. {
  231. struct wpa_ssid *ssid = wpa_s->current_ssid;
  232. struct wpabuf *buf;
  233. if (!sta->sae) {
  234. sta->sae = os_zalloc(sizeof(*sta->sae));
  235. if (sta->sae == NULL)
  236. return -1;
  237. }
  238. buf = mesh_rsn_build_sae_commit(wpa_s, ssid, sta);
  239. if (!buf)
  240. return -1;
  241. wpa_msg(wpa_s, MSG_DEBUG,
  242. "AUTH: started authentication with SAE peer: " MACSTR,
  243. MAC2STR(sta->addr));
  244. sta->sae->state = SAE_COMMITTED;
  245. wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
  246. mesh_rsn_send_auth(wpa_s, sta->addr, wpa_s->own_addr,
  247. 1, WLAN_STATUS_SUCCESS, buf);
  248. wpabuf_free(buf);
  249. return 0;
  250. }
  251. void mesh_rsn_get_pmkid(struct mesh_rsn *rsn, struct sta_info *sta, u8 *pmkid)
  252. {
  253. /* don't expect wpa auth to cache the pmkid for now */
  254. rsn_pmkid(sta->sae->pmk, PMK_LEN, rsn->wpa_s->own_addr,
  255. sta->addr, pmkid,
  256. wpa_key_mgmt_sha256(wpa_auth_sta_key_mgmt(sta->wpa_sm)));
  257. }
  258. static void
  259. mesh_rsn_derive_aek(struct mesh_rsn *rsn, struct sta_info *sta)
  260. {
  261. u8 *myaddr = rsn->wpa_s->own_addr;
  262. u8 *peer = sta->addr;
  263. u8 *addr1 = peer, *addr2 = myaddr;
  264. u8 context[AES_BLOCK_SIZE];
  265. /* SAE */
  266. RSN_SELECTOR_PUT(context, wpa_cipher_to_suite(0, WPA_CIPHER_GCMP));
  267. if (os_memcmp(myaddr, peer, ETH_ALEN) < 0) {
  268. addr1 = myaddr;
  269. addr2 = peer;
  270. }
  271. os_memcpy(context + 4, addr1, ETH_ALEN);
  272. os_memcpy(context + 10, addr2, ETH_ALEN);
  273. sha256_prf(sta->sae->pmk, sizeof(sta->sae->pmk), "AEK Derivation",
  274. context, sizeof(context), sta->aek, sizeof(sta->aek));
  275. }
  276. /* derive mesh temporal key from pmk */
  277. int mesh_rsn_derive_mtk(struct wpa_supplicant *wpa_s, struct sta_info *sta)
  278. {
  279. u8 *ptr;
  280. u8 *min, *max;
  281. u16 min_lid, max_lid;
  282. size_t nonce_len = sizeof(sta->my_nonce);
  283. size_t lid_len = sizeof(sta->my_lid);
  284. u8 *myaddr = wpa_s->own_addr;
  285. u8 *peer = sta->addr;
  286. /* 2 nonces, 2 linkids, akm suite, 2 mac addrs */
  287. u8 context[64 + 4 + 4 + 12];
  288. ptr = context;
  289. if (os_memcmp(sta->my_nonce, sta->peer_nonce, nonce_len) < 0) {
  290. min = sta->my_nonce;
  291. max = sta->peer_nonce;
  292. } else {
  293. min = sta->peer_nonce;
  294. max = sta->my_nonce;
  295. }
  296. os_memcpy(ptr, min, nonce_len);
  297. os_memcpy(ptr + nonce_len, max, nonce_len);
  298. ptr += 2 * nonce_len;
  299. if (sta->my_lid < sta->peer_lid) {
  300. min_lid = host_to_le16(sta->my_lid);
  301. max_lid = host_to_le16(sta->peer_lid);
  302. } else {
  303. min_lid = host_to_le16(sta->peer_lid);
  304. max_lid = host_to_le16(sta->my_lid);
  305. }
  306. os_memcpy(ptr, &min_lid, lid_len);
  307. os_memcpy(ptr + lid_len, &max_lid, lid_len);
  308. ptr += 2 * lid_len;
  309. /* SAE */
  310. RSN_SELECTOR_PUT(ptr, wpa_cipher_to_suite(0, WPA_CIPHER_GCMP));
  311. ptr += 4;
  312. if (os_memcmp(myaddr, peer, ETH_ALEN) < 0) {
  313. min = myaddr;
  314. max = peer;
  315. } else {
  316. min = peer;
  317. max = myaddr;
  318. }
  319. os_memcpy(ptr, min, ETH_ALEN);
  320. os_memcpy(ptr + ETH_ALEN, max, ETH_ALEN);
  321. sha256_prf(sta->sae->pmk, sizeof(sta->sae->pmk),
  322. "Temporal Key Derivation", context, sizeof(context),
  323. sta->mtk, sizeof(sta->mtk));
  324. return 0;
  325. }
  326. void mesh_rsn_init_ampe_sta(struct wpa_supplicant *wpa_s, struct sta_info *sta)
  327. {
  328. if (random_get_bytes(sta->my_nonce, 32) < 0) {
  329. wpa_printf(MSG_INFO, "mesh: Failed to derive random nonce");
  330. /* TODO: How to handle this more cleanly? */
  331. }
  332. os_memset(sta->peer_nonce, 0, 32);
  333. mesh_rsn_derive_aek(wpa_s->mesh_rsn, sta);
  334. }
  335. /* insert AMPE and encrypted MIC at @ie.
  336. * @mesh_rsn: mesh RSN context
  337. * @sta: STA we're sending to
  338. * @cat: pointer to category code in frame header.
  339. * @buf: wpabuf to add encrypted AMPE and MIC to.
  340. * */
  341. int mesh_rsn_protect_frame(struct mesh_rsn *rsn, struct sta_info *sta,
  342. const u8 *cat, struct wpabuf *buf)
  343. {
  344. struct ieee80211_ampe_ie *ampe;
  345. u8 const *ie = wpabuf_head_u8(buf) + wpabuf_len(buf);
  346. u8 *ampe_ie = NULL, *mic_ie = NULL, *mic_payload;
  347. const u8 *aad[] = { rsn->wpa_s->own_addr, sta->addr, cat };
  348. const size_t aad_len[] = { ETH_ALEN, ETH_ALEN, ie - cat };
  349. int ret = 0;
  350. if (AES_BLOCK_SIZE + 2 + sizeof(*ampe) + 2 > wpabuf_tailroom(buf)) {
  351. wpa_printf(MSG_ERROR, "protect frame: buffer too small");
  352. return -EINVAL;
  353. }
  354. ampe_ie = os_zalloc(2 + sizeof(*ampe));
  355. if (!ampe_ie) {
  356. wpa_printf(MSG_ERROR, "protect frame: out of memory");
  357. return -ENOMEM;
  358. }
  359. mic_ie = os_zalloc(2 + AES_BLOCK_SIZE);
  360. if (!mic_ie) {
  361. wpa_printf(MSG_ERROR, "protect frame: out of memory");
  362. ret = -ENOMEM;
  363. goto free;
  364. }
  365. /* IE: AMPE */
  366. ampe_ie[0] = WLAN_EID_AMPE;
  367. ampe_ie[1] = sizeof(*ampe);
  368. ampe = (struct ieee80211_ampe_ie *) (ampe_ie + 2);
  369. RSN_SELECTOR_PUT(ampe->selected_pairwise_suite,
  370. wpa_cipher_to_suite(WPA_PROTO_RSN, WPA_CIPHER_CCMP));
  371. os_memcpy(ampe->local_nonce, sta->my_nonce, 32);
  372. os_memcpy(ampe->peer_nonce, sta->peer_nonce, 32);
  373. /* incomplete: see 13.5.4 */
  374. /* TODO: static mgtk for now since we don't support rekeying! */
  375. os_memcpy(ampe->mgtk, rsn->mgtk, 16);
  376. /* TODO: Populate Key RSC */
  377. /* expire in 13 decades or so */
  378. os_memset(ampe->key_expiration, 0xff, 4);
  379. /* IE: MIC */
  380. mic_ie[0] = WLAN_EID_MIC;
  381. mic_ie[1] = AES_BLOCK_SIZE;
  382. wpabuf_put_data(buf, mic_ie, 2);
  383. /* MIC field is output ciphertext */
  384. /* encrypt after MIC */
  385. mic_payload = (u8 *) wpabuf_put(buf, 2 + sizeof(*ampe) +
  386. AES_BLOCK_SIZE);
  387. if (aes_siv_encrypt(sta->aek, ampe_ie, 2 + sizeof(*ampe), 3,
  388. aad, aad_len, mic_payload)) {
  389. wpa_printf(MSG_ERROR, "protect frame: failed to encrypt");
  390. ret = -ENOMEM;
  391. goto free;
  392. }
  393. free:
  394. os_free(ampe_ie);
  395. os_free(mic_ie);
  396. return ret;
  397. }
  398. int mesh_rsn_process_ampe(struct wpa_supplicant *wpa_s, struct sta_info *sta,
  399. struct ieee802_11_elems *elems, const u8 *cat,
  400. const u8 *start, size_t elems_len)
  401. {
  402. int ret = 0;
  403. struct ieee80211_ampe_ie *ampe;
  404. u8 null_nonce[32] = {};
  405. u8 ampe_eid;
  406. u8 ampe_ie_len;
  407. u8 *ampe_buf, *crypt = NULL;
  408. size_t crypt_len;
  409. const u8 *aad[] = { sta->addr, wpa_s->own_addr, cat };
  410. const size_t aad_len[] = { ETH_ALEN, ETH_ALEN,
  411. (elems->mic - 2) - cat };
  412. if (!elems->mic || elems->mic_len < AES_BLOCK_SIZE) {
  413. wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: missing mic ie");
  414. return -1;
  415. }
  416. ampe_buf = (u8 *) elems->mic + elems->mic_len;
  417. if ((int) elems_len < ampe_buf - start)
  418. return -1;
  419. crypt_len = elems_len - (elems->mic - start);
  420. if (crypt_len < 2) {
  421. wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: missing ampe ie");
  422. return -1;
  423. }
  424. /* crypt is modified by siv_decrypt */
  425. crypt = os_zalloc(crypt_len);
  426. if (!crypt) {
  427. wpa_printf(MSG_ERROR, "Mesh RSN: out of memory");
  428. ret = -ENOMEM;
  429. goto free;
  430. }
  431. os_memcpy(crypt, elems->mic, crypt_len);
  432. if (aes_siv_decrypt(sta->aek, crypt, crypt_len, 3,
  433. aad, aad_len, ampe_buf)) {
  434. wpa_printf(MSG_ERROR, "Mesh RSN: frame verification failed!");
  435. ret = -1;
  436. goto free;
  437. }
  438. ampe_eid = *ampe_buf++;
  439. ampe_ie_len = *ampe_buf++;
  440. if (ampe_eid != WLAN_EID_AMPE ||
  441. ampe_ie_len < sizeof(struct ieee80211_ampe_ie)) {
  442. wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: invalid ampe ie");
  443. ret = -1;
  444. goto free;
  445. }
  446. ampe = (struct ieee80211_ampe_ie *) ampe_buf;
  447. if (os_memcmp(ampe->peer_nonce, null_nonce, 32) != 0 &&
  448. os_memcmp(ampe->peer_nonce, sta->my_nonce, 32) != 0) {
  449. wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: invalid peer nonce");
  450. ret = -1;
  451. goto free;
  452. }
  453. os_memcpy(sta->peer_nonce, ampe->local_nonce,
  454. sizeof(ampe->local_nonce));
  455. os_memcpy(sta->mgtk, ampe->mgtk, sizeof(ampe->mgtk));
  456. /* todo parse mgtk expiration */
  457. free:
  458. os_free(crypt);
  459. return ret;
  460. }