sae.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. /*
  2. * Simultaneous authentication of equals
  3. * Copyright (c) 2012-2013, 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 "crypto/crypto.h"
  11. #include "crypto/sha256.h"
  12. #include "crypto/random.h"
  13. #include "ieee802_11_defs.h"
  14. #include "sae.h"
  15. int sae_set_group(struct sae_data *sae, int group)
  16. {
  17. crypto_ec_deinit(sae->ec);
  18. sae->ec = crypto_ec_init(group);
  19. if (!sae->ec)
  20. return -1;
  21. sae->group = group;
  22. sae->prime_len = crypto_ec_prime_len(sae->ec);
  23. return 0;
  24. }
  25. void sae_clear_data(struct sae_data *sae)
  26. {
  27. if (sae == NULL)
  28. return;
  29. crypto_ec_deinit(sae->ec);
  30. os_memset(sae, 0, sizeof(*sae));
  31. }
  32. static int val_zero_or_one(const u8 *val, size_t len)
  33. {
  34. size_t i;
  35. for (i = 0; i < len - 1; i++) {
  36. if (val[i])
  37. return 0;
  38. }
  39. return val[len - 1] <= 1;
  40. }
  41. static int val_zero(const u8 *val, size_t len)
  42. {
  43. size_t i;
  44. for (i = 0; i < len; i++) {
  45. if (val[i])
  46. return 0;
  47. }
  48. return 1;
  49. }
  50. static int sae_get_rand(const u8 *order, size_t prime_len, u8 *val)
  51. {
  52. int iter = 0;
  53. do {
  54. if (random_get_bytes(val, prime_len) < 0)
  55. return -1;
  56. if (iter++ > 100)
  57. return -1;
  58. } while (os_memcmp(val, order, prime_len) >= 0 ||
  59. val_zero_or_one(val, prime_len));
  60. return 0;
  61. }
  62. static struct crypto_bignum * sae_get_rand_and_mask(struct sae_data *sae)
  63. {
  64. u8 mask[SAE_MAX_PRIME_LEN], order[SAE_MAX_PRIME_LEN];
  65. struct crypto_bignum *bn;
  66. if (crypto_bignum_to_bin(crypto_ec_get_order(sae->ec),
  67. order, sizeof(order), sae->prime_len) < 0)
  68. return NULL;
  69. if (sae_get_rand(order, sae->prime_len, sae->sae_rand) < 0 ||
  70. sae_get_rand(order, sae->prime_len, mask) < 0)
  71. return NULL;
  72. wpa_hexdump_key(MSG_DEBUG, "SAE: rand",
  73. sae->sae_rand, sae->prime_len);
  74. wpa_hexdump_key(MSG_DEBUG, "SAE: mask", mask, sae->prime_len);
  75. bn = crypto_bignum_init_set(mask, sae->prime_len);
  76. os_memset(mask, 0, sizeof(mask));
  77. return bn;
  78. }
  79. static void sae_pwd_seed_key(const u8 *addr1, const u8 *addr2, u8 *key)
  80. {
  81. wpa_printf(MSG_DEBUG, "SAE: PWE derivation - addr1=" MACSTR
  82. " addr2=" MACSTR, MAC2STR(addr1), MAC2STR(addr2));
  83. if (os_memcmp(addr1, addr2, ETH_ALEN) > 0) {
  84. os_memcpy(key, addr1, ETH_ALEN);
  85. os_memcpy(key + ETH_ALEN, addr2, ETH_ALEN);
  86. } else {
  87. os_memcpy(key, addr2, ETH_ALEN);
  88. os_memcpy(key + ETH_ALEN, addr1, ETH_ALEN);
  89. }
  90. }
  91. static int sae_test_pwd_seed(struct sae_data *sae, const u8 *pwd_seed,
  92. struct crypto_ec_point *pwe, u8 *pwe_bin)
  93. {
  94. u8 pwd_value[SAE_MAX_PRIME_LEN], prime[SAE_MAX_PRIME_LEN];
  95. struct crypto_bignum *x;
  96. int y_bit;
  97. if (crypto_bignum_to_bin(crypto_ec_get_prime(sae->ec),
  98. prime, sizeof(prime), sae->prime_len) < 0)
  99. return -1;
  100. wpa_hexdump_key(MSG_DEBUG, "SAE: pwd-seed", pwd_seed, SHA256_MAC_LEN);
  101. /* pwd-value = KDF-z(pwd-seed, "SAE Hunting and Pecking", p) */
  102. sha256_prf(pwd_seed, SHA256_MAC_LEN, "SAE Hunting and Pecking",
  103. prime, sae->prime_len, pwd_value, sae->prime_len);
  104. wpa_hexdump_key(MSG_DEBUG, "SAE: pwd-value",
  105. pwd_value, sae->prime_len);
  106. if (os_memcmp(pwd_value, prime, sae->prime_len) >= 0)
  107. return 0;
  108. y_bit = pwd_seed[SHA256_MAC_LEN - 1] & 0x01;
  109. x = crypto_bignum_init_set(pwd_value, sae->prime_len);
  110. if (x == NULL)
  111. return -1;
  112. if (crypto_ec_point_solve_y_coord(sae->ec, pwe, x, y_bit) < 0) {
  113. crypto_bignum_deinit(x, 0);
  114. wpa_printf(MSG_DEBUG, "SAE: No solution found");
  115. return 0;
  116. }
  117. crypto_bignum_deinit(x, 0);
  118. wpa_printf(MSG_DEBUG, "SAE: PWE found");
  119. if (crypto_ec_point_to_bin(sae->ec, pwe, pwe_bin,
  120. pwe_bin + sae->prime_len) < 0)
  121. return -1;
  122. wpa_hexdump_key(MSG_DEBUG, "SAE: PWE x", pwe_bin, sae->prime_len);
  123. wpa_hexdump_key(MSG_DEBUG, "SAE: PWE y",
  124. pwe_bin + sae->prime_len, sae->prime_len);
  125. return 1;
  126. }
  127. static int sae_derive_pwe(struct sae_data *sae, const u8 *addr1,
  128. const u8 *addr2, const u8 *password,
  129. size_t password_len, struct crypto_ec_point *pwe,
  130. u8 *pwe_bin)
  131. {
  132. u8 counter, k = 4;
  133. u8 addrs[2 * ETH_ALEN];
  134. const u8 *addr[2];
  135. size_t len[2];
  136. int found = 0;
  137. struct crypto_ec_point *pwe_tmp;
  138. u8 pwe_bin_tmp[2 * SAE_MAX_PRIME_LEN];
  139. pwe_tmp = crypto_ec_point_init(sae->ec);
  140. if (pwe_tmp == NULL)
  141. return -1;
  142. wpa_hexdump_ascii_key(MSG_DEBUG, "SAE: password",
  143. password, password_len);
  144. /*
  145. * H(salt, ikm) = HMAC-SHA256(salt, ikm)
  146. * pwd-seed = H(MAX(STA-A-MAC, STA-B-MAC) || MIN(STA-A-MAC, STA-B-MAC),
  147. * password || counter)
  148. */
  149. sae_pwd_seed_key(addr1, addr2, addrs);
  150. addr[0] = password;
  151. len[0] = password_len;
  152. addr[1] = &counter;
  153. len[1] = sizeof(counter);
  154. /*
  155. * Continue for at least k iterations to protect against side-channel
  156. * attacks that attempt to determine the number of iterations required
  157. * in the loop.
  158. */
  159. for (counter = 1; counter < k || !found; counter++) {
  160. u8 pwd_seed[SHA256_MAC_LEN];
  161. int res;
  162. if (counter > 200) {
  163. /* This should not happen in practice */
  164. wpa_printf(MSG_DEBUG, "SAE: Failed to derive PWE");
  165. break;
  166. }
  167. wpa_printf(MSG_DEBUG, "SAE: counter = %u", counter);
  168. if (hmac_sha256_vector(addrs, sizeof(addrs), 2, addr, len,
  169. pwd_seed) < 0)
  170. break;
  171. res = sae_test_pwd_seed(sae, pwd_seed,
  172. found ? pwe_tmp : pwe,
  173. found ? pwe_bin_tmp : pwe_bin);
  174. if (res < 0)
  175. break;
  176. if (res == 0)
  177. continue;
  178. if (found) {
  179. wpa_printf(MSG_DEBUG, "SAE: Ignore this PWE (one was "
  180. "already selected)");
  181. } else {
  182. wpa_printf(MSG_DEBUG, "SAE: Use this PWE");
  183. found = 1;
  184. }
  185. }
  186. crypto_ec_point_deinit(pwe_tmp, 1);
  187. return found ? 0 : -1;
  188. }
  189. static int sae_derive_commit(struct sae_data *sae, struct crypto_ec_point *pwe)
  190. {
  191. struct crypto_bignum *x, *bn_rand, *mask;
  192. struct crypto_ec_point *elem;
  193. int ret = -1;
  194. mask = sae_get_rand_and_mask(sae);
  195. if (mask == NULL)
  196. return -1;
  197. x = crypto_bignum_init();
  198. bn_rand = crypto_bignum_init_set(sae->sae_rand, sae->prime_len);
  199. elem = crypto_ec_point_init(sae->ec);
  200. if (x == NULL || bn_rand == NULL || elem == NULL)
  201. goto fail;
  202. /* commit-scalar = (rand + mask) modulo r */
  203. crypto_bignum_add(bn_rand, mask, x);
  204. crypto_bignum_mod(x, crypto_ec_get_order(sae->ec), x);
  205. crypto_bignum_to_bin(x, sae->own_commit_scalar,
  206. sizeof(sae->own_commit_scalar), sae->prime_len);
  207. wpa_hexdump(MSG_DEBUG, "SAE: commit-scalar",
  208. sae->own_commit_scalar, sae->prime_len);
  209. /* COMMIT-ELEMENT = inverse(scalar-op(mask, PWE)) */
  210. if (crypto_ec_point_mul(sae->ec, pwe, mask, elem) < 0 ||
  211. crypto_ec_point_invert(sae->ec, elem) < 0 ||
  212. crypto_ec_point_to_bin(sae->ec, elem, sae->own_commit_element,
  213. sae->own_commit_element + sae->prime_len) <
  214. 0)
  215. goto fail;
  216. wpa_hexdump(MSG_DEBUG, "SAE: commit-element x",
  217. sae->own_commit_element, sae->prime_len);
  218. wpa_hexdump(MSG_DEBUG, "SAE: commit-element y",
  219. sae->own_commit_element + sae->prime_len, sae->prime_len);
  220. ret = 0;
  221. fail:
  222. crypto_ec_point_deinit(elem, 0);
  223. crypto_bignum_deinit(mask, 1);
  224. crypto_bignum_deinit(bn_rand, 1);
  225. crypto_bignum_deinit(x, 1);
  226. return ret;
  227. }
  228. int sae_prepare_commit(const u8 *addr1, const u8 *addr2,
  229. const u8 *password, size_t password_len,
  230. struct sae_data *sae)
  231. {
  232. struct crypto_ec_point *pwe;
  233. int ret = 0;
  234. pwe = crypto_ec_point_init(sae->ec);
  235. if (pwe == NULL ||
  236. sae_derive_pwe(sae, addr1, addr2, password, password_len, pwe,
  237. sae->pwe) < 0 ||
  238. sae_derive_commit(sae, pwe) < 0)
  239. ret = -1;
  240. crypto_ec_point_deinit(pwe, 1);
  241. return ret;
  242. }
  243. static int sae_check_peer_commit(struct sae_data *sae)
  244. {
  245. u8 order[SAE_MAX_PRIME_LEN], prime[SAE_MAX_PRIME_LEN];
  246. if (crypto_bignum_to_bin(crypto_ec_get_order(sae->ec),
  247. order, sizeof(order), sae->prime_len) < 0 ||
  248. crypto_bignum_to_bin(crypto_ec_get_prime(sae->ec),
  249. prime, sizeof(prime), sae->prime_len) < 0)
  250. return -1;
  251. /* 0 < scalar < r */
  252. if (val_zero(sae->peer_commit_scalar, sae->prime_len) ||
  253. os_memcmp(sae->peer_commit_scalar, order, sae->prime_len) >= 0) {
  254. wpa_printf(MSG_DEBUG, "SAE: Invalid peer scalar");
  255. return -1;
  256. }
  257. /* element x and y coordinates < p */
  258. if (os_memcmp(sae->peer_commit_element, prime, sae->prime_len) >= 0 ||
  259. os_memcmp(sae->peer_commit_element + sae->prime_len, prime,
  260. sae->prime_len) >= 0) {
  261. wpa_printf(MSG_DEBUG, "SAE: Invalid coordinates in peer "
  262. "element");
  263. return -1;
  264. }
  265. return 0;
  266. }
  267. static int sae_derive_k(struct sae_data *sae, u8 *k)
  268. {
  269. struct crypto_ec_point *pwe, *peer_elem, *K;
  270. struct crypto_bignum *rand_bn, *peer_scalar;
  271. int ret = -1;
  272. pwe = crypto_ec_point_from_bin(sae->ec, sae->pwe);
  273. peer_scalar = crypto_bignum_init_set(sae->peer_commit_scalar,
  274. sae->prime_len);
  275. peer_elem = crypto_ec_point_from_bin(sae->ec, sae->peer_commit_element);
  276. K = crypto_ec_point_init(sae->ec);
  277. rand_bn = crypto_bignum_init_set(sae->sae_rand, sae->prime_len);
  278. if (pwe == NULL || peer_elem == NULL || peer_scalar == NULL ||
  279. K == NULL || rand_bn == NULL)
  280. goto fail;
  281. if (!crypto_ec_point_is_on_curve(sae->ec, peer_elem)) {
  282. wpa_printf(MSG_DEBUG, "SAE: Peer element is not on curve");
  283. goto fail;
  284. }
  285. /*
  286. * K = scalar-op(rand, (elem-op(scalar-op(peer-commit-scalar, PWE),
  287. * PEER-COMMIT-ELEMENT)))
  288. * If K is identity element (point-at-infinity), reject
  289. * k = F(K) (= x coordinate)
  290. */
  291. if (crypto_ec_point_mul(sae->ec, pwe, peer_scalar, K) < 0 ||
  292. crypto_ec_point_add(sae->ec, K, peer_elem, K) < 0 ||
  293. crypto_ec_point_mul(sae->ec, K, rand_bn, K) < 0 ||
  294. crypto_ec_point_is_at_infinity(sae->ec, K) ||
  295. crypto_ec_point_to_bin(sae->ec, K, k, NULL) < 0) {
  296. wpa_printf(MSG_DEBUG, "SAE: Failed to calculate K and k");
  297. goto fail;
  298. }
  299. wpa_hexdump_key(MSG_DEBUG, "SAE: k", k, sae->prime_len);
  300. ret = 0;
  301. fail:
  302. crypto_ec_point_deinit(pwe, 1);
  303. crypto_ec_point_deinit(peer_elem, 0);
  304. crypto_ec_point_deinit(K, 1);
  305. crypto_bignum_deinit(rand_bn, 1);
  306. return ret;
  307. }
  308. static int sae_derive_keys(struct sae_data *sae, const u8 *k)
  309. {
  310. u8 null_key[SAE_KEYSEED_KEY_LEN], val[SAE_MAX_PRIME_LEN];
  311. u8 keyseed[SHA256_MAC_LEN];
  312. u8 keys[SAE_KCK_LEN + SAE_PMK_LEN];
  313. struct crypto_bignum *own_scalar, *peer_scalar, *tmp;
  314. int ret = -1;
  315. own_scalar = crypto_bignum_init_set(sae->own_commit_scalar,
  316. sae->prime_len);
  317. peer_scalar = crypto_bignum_init_set(sae->peer_commit_scalar,
  318. sae->prime_len);
  319. tmp = crypto_bignum_init();
  320. if (own_scalar == NULL || peer_scalar == NULL || tmp == NULL)
  321. goto fail;
  322. /* keyseed = H(<0>32, k)
  323. * KCK || PMK = KDF-512(keyseed, "SAE KCK and PMK",
  324. * (commit-scalar + peer-commit-scalar) modulo r)
  325. * PMKID = L((commit-scalar + peer-commit-scalar) modulo r, 0, 128)
  326. */
  327. os_memset(null_key, 0, sizeof(null_key));
  328. hmac_sha256(null_key, sizeof(null_key), k, sae->prime_len, keyseed);
  329. wpa_hexdump_key(MSG_DEBUG, "SAE: keyseed", keyseed, sizeof(keyseed));
  330. crypto_bignum_add(own_scalar, peer_scalar, tmp);
  331. crypto_bignum_mod(tmp, crypto_ec_get_order(sae->ec), tmp);
  332. crypto_bignum_to_bin(tmp, val, sizeof(val), sae->prime_len);
  333. wpa_hexdump(MSG_DEBUG, "SAE: PMKID", val, SAE_PMKID_LEN);
  334. sha256_prf(keyseed, sizeof(keyseed), "SAE KCK and PMK",
  335. val, sae->prime_len, keys, sizeof(keys));
  336. os_memcpy(sae->kck, keys, SAE_KCK_LEN);
  337. os_memcpy(sae->pmk, keys + SAE_KCK_LEN, SAE_PMK_LEN);
  338. wpa_hexdump_key(MSG_DEBUG, "SAE: KCK", sae->kck, SAE_KCK_LEN);
  339. wpa_hexdump_key(MSG_DEBUG, "SAE: PMK", sae->pmk, SAE_PMK_LEN);
  340. ret = 0;
  341. fail:
  342. crypto_bignum_deinit(tmp, 0);
  343. crypto_bignum_deinit(peer_scalar, 0);
  344. crypto_bignum_deinit(own_scalar, 0);
  345. return ret;
  346. }
  347. int sae_process_commit(struct sae_data *sae)
  348. {
  349. u8 k[SAE_MAX_PRIME_LEN];
  350. if (sae_check_peer_commit(sae) < 0 ||
  351. sae_derive_k(sae, k) < 0 ||
  352. sae_derive_keys(sae, k) < 0)
  353. return -1;
  354. return 0;
  355. }
  356. void sae_write_commit(struct sae_data *sae, struct wpabuf *buf,
  357. const struct wpabuf *token)
  358. {
  359. wpabuf_put_le16(buf, sae->group); /* Finite Cyclic Group */
  360. if (token)
  361. wpabuf_put_buf(buf, token);
  362. wpabuf_put_data(buf, sae->own_commit_scalar, sae->prime_len);
  363. wpabuf_put_data(buf, sae->own_commit_element, 2 * sae->prime_len);
  364. }
  365. u16 sae_parse_commit(struct sae_data *sae, const u8 *data, size_t len,
  366. const u8 **token, size_t *token_len)
  367. {
  368. const u8 *pos = data, *end = data + len;
  369. u16 group;
  370. wpa_hexdump(MSG_DEBUG, "SAE: Commit fields", data, len);
  371. if (token)
  372. *token = NULL;
  373. if (token_len)
  374. *token_len = 0;
  375. /* Check Finite Cyclic Group */
  376. if (pos + 2 > end)
  377. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  378. group = WPA_GET_LE16(pos);
  379. if (sae->state == SAE_COMMITTED && group != sae->group) {
  380. wpa_printf(MSG_DEBUG, "SAE: Do not allow group to be changed");
  381. return WLAN_STATUS_FINITE_CYCLIC_GROUP_NOT_SUPPORTED;
  382. }
  383. if (group != sae->group && sae_set_group(sae, group) < 0) {
  384. wpa_printf(MSG_DEBUG, "SAE: Unsupported Finite Cyclic Group %u",
  385. group);
  386. return WLAN_STATUS_FINITE_CYCLIC_GROUP_NOT_SUPPORTED;
  387. }
  388. pos += 2;
  389. if (pos + 3 * sae->prime_len < end) {
  390. size_t tlen = end - (pos + 3 * sae->prime_len);
  391. wpa_hexdump(MSG_DEBUG, "SAE: Anti-Clogging Token", pos, tlen);
  392. if (token)
  393. *token = pos;
  394. if (token_len)
  395. *token_len = tlen;
  396. pos += tlen;
  397. }
  398. if (pos + sae->prime_len > end) {
  399. wpa_printf(MSG_DEBUG, "SAE: Not enough data for scalar");
  400. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  401. }
  402. /*
  403. * IEEE Std 802.11-2012, 11.3.8.6.1: If there is a protocol instance for
  404. * the peer and it is in Authenticated state, the new Commit Message
  405. * shall be dropped if the peer-scalar is identical to the one used in
  406. * the existing protocol instance.
  407. */
  408. if (sae->state == SAE_ACCEPTED &&
  409. os_memcmp(sae->peer_commit_scalar, pos, sae->prime_len) == 0) {
  410. wpa_printf(MSG_DEBUG, "SAE: Do not accept re-use of previous "
  411. "peer-commit-scalar");
  412. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  413. }
  414. os_memcpy(sae->peer_commit_scalar, pos, sae->prime_len);
  415. wpa_hexdump(MSG_DEBUG, "SAE: Peer commit-scalar",
  416. sae->peer_commit_scalar, sae->prime_len);
  417. pos += sae->prime_len;
  418. if (pos + 2 * sae->prime_len > end) {
  419. wpa_printf(MSG_DEBUG, "SAE: Not enough data for "
  420. "commit-element");
  421. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  422. }
  423. os_memcpy(sae->peer_commit_element, pos, 2 * sae->prime_len);
  424. wpa_hexdump(MSG_DEBUG, "SAE: Peer commit-element(x)",
  425. sae->peer_commit_element, sae->prime_len);
  426. wpa_hexdump(MSG_DEBUG, "SAE: Peer commit-element(y)",
  427. sae->peer_commit_element + sae->prime_len, sae->prime_len);
  428. return WLAN_STATUS_SUCCESS;
  429. }
  430. void sae_write_confirm(struct sae_data *sae, struct wpabuf *buf)
  431. {
  432. const u8 *sc;
  433. const u8 *addr[5];
  434. size_t len[5];
  435. /* Send-Confirm */
  436. sc = wpabuf_put(buf, 0);
  437. wpabuf_put_le16(buf, sae->send_confirm);
  438. sae->send_confirm++;
  439. /* Confirm
  440. * CN(key, X, Y, Z, ...) =
  441. * HMAC-SHA256(key, D2OS(X) || D2OS(Y) || D2OS(Z) | ...)
  442. * confirm = CN(KCK, send-confirm, commit-scalar, COMMIT-ELEMENT,
  443. * peer-commit-scalar, PEER-COMMIT-ELEMENT)
  444. */
  445. addr[0] = sc;
  446. len[0] = 2;
  447. addr[1] = sae->own_commit_scalar;
  448. len[1] = sae->prime_len;
  449. addr[2] = sae->own_commit_element;
  450. len[2] = 2 * sae->prime_len;
  451. addr[3] = sae->peer_commit_scalar;
  452. len[3] = sae->prime_len;
  453. addr[4] = sae->peer_commit_element;
  454. len[4] = 2 * sae->prime_len;
  455. hmac_sha256_vector(sae->kck, sizeof(sae->kck), 5, addr, len,
  456. wpabuf_put(buf, SHA256_MAC_LEN));
  457. }
  458. int sae_check_confirm(struct sae_data *sae, const u8 *data, size_t len)
  459. {
  460. u16 rc;
  461. const u8 *addr[5];
  462. size_t elen[5];
  463. u8 verifier[SHA256_MAC_LEN];
  464. wpa_hexdump(MSG_DEBUG, "SAE: Confirm fields", data, len);
  465. if (len < 2 + SHA256_MAC_LEN) {
  466. wpa_printf(MSG_DEBUG, "SAE: Too short confirm message");
  467. return -1;
  468. }
  469. rc = WPA_GET_LE16(data);
  470. wpa_printf(MSG_DEBUG, "SAE: peer-send-confirm %u", rc);
  471. /* Confirm
  472. * CN(key, X, Y, Z, ...) =
  473. * HMAC-SHA256(key, D2OS(X) || D2OS(Y) || D2OS(Z) | ...)
  474. * verifier = CN(KCK, peer-send-confirm, peer-commit-scalar,
  475. * PEER-COMMIT-ELEMENT, commit-scalar, COMMIT-ELEMENT)
  476. */
  477. addr[0] = data;
  478. elen[0] = 2;
  479. addr[1] = sae->peer_commit_scalar;
  480. elen[1] = sae->prime_len;
  481. addr[2] = sae->peer_commit_element;
  482. elen[2] = 2 * sae->prime_len;
  483. addr[3] = sae->own_commit_scalar;
  484. elen[3] = sae->prime_len;
  485. addr[4] = sae->own_commit_element;
  486. elen[4] = 2 * sae->prime_len;
  487. hmac_sha256_vector(sae->kck, sizeof(sae->kck), 5, addr, elen, verifier);
  488. if (os_memcmp(verifier, data + 2, SHA256_MAC_LEN) != 0) {
  489. wpa_printf(MSG_DEBUG, "SAE: Confirm mismatch");
  490. wpa_hexdump(MSG_DEBUG, "SAE: Received confirm",
  491. data + 2, SHA256_MAC_LEN);
  492. wpa_hexdump(MSG_DEBUG, "SAE: Calculated verifier",
  493. verifier, SHA256_MAC_LEN);
  494. return -1;
  495. }
  496. return 0;
  497. }