gcmp.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. /*
  2. * GCM with GMAC Protocol (GCMP)
  3. * Copyright (c) 2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "common/ieee802_11_defs.h"
  11. #include "crypto/aes.h"
  12. #include "wlantest.h"
  13. static void inc32(u8 *block)
  14. {
  15. u32 val;
  16. val = WPA_GET_BE32(block + AES_BLOCK_SIZE - 4);
  17. val++;
  18. WPA_PUT_BE32(block + AES_BLOCK_SIZE - 4, val);
  19. }
  20. static void xor_block(u8 *dst, const u8 *src)
  21. {
  22. u32 *d = (u32 *) dst;
  23. u32 *s = (u32 *) src;
  24. *d++ ^= *s++;
  25. *d++ ^= *s++;
  26. *d++ ^= *s++;
  27. *d++ ^= *s++;
  28. }
  29. static void shift_right_block(u8 *v)
  30. {
  31. u32 val;
  32. val = WPA_GET_BE32(v + 12);
  33. val >>= 1;
  34. if (v[11] & 0x01)
  35. val |= 0x80000000;
  36. WPA_PUT_BE32(v + 12, val);
  37. val = WPA_GET_BE32(v + 8);
  38. val >>= 1;
  39. if (v[7] & 0x01)
  40. val |= 0x80000000;
  41. WPA_PUT_BE32(v + 8, val);
  42. val = WPA_GET_BE32(v + 4);
  43. val >>= 1;
  44. if (v[3] & 0x01)
  45. val |= 0x80000000;
  46. WPA_PUT_BE32(v + 4, val);
  47. val = WPA_GET_BE32(v);
  48. val >>= 1;
  49. WPA_PUT_BE32(v, val);
  50. }
  51. /* Multiplication in GF(2^128) */
  52. static void gf_mult(const u8 *x, const u8 *y, u8 *z)
  53. {
  54. u8 v[16];
  55. int i, j;
  56. os_memset(z, 0, 16); /* Z_0 = 0^128 */
  57. os_memcpy(v, y, 16); /* V_0 = Y */
  58. for (i = 0; i < 16; i++) {
  59. for (j = 0; j < 8; j++) {
  60. if (x[i] & BIT(7 - j)) {
  61. /* Z_(i + 1) = Z_i XOR V_i */
  62. xor_block(z, v);
  63. } else {
  64. /* Z_(i + 1) = Z_i */
  65. }
  66. if (v[15] & 0x01) {
  67. /* V_(i + 1) = (V_i >> 1) XOR R */
  68. shift_right_block(v);
  69. /* R = 11100001 || 0^120 */
  70. v[0] ^= 0xe1;
  71. } else {
  72. /* V_(i + 1) = V_i >> 1 */
  73. shift_right_block(v);
  74. }
  75. }
  76. }
  77. }
  78. static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y)
  79. {
  80. size_t m, i;
  81. const u8 *xpos = x;
  82. u8 tmp[16];
  83. m = xlen / 16;
  84. /* Y_0 = 0^128 */
  85. os_memset(y, 0, 16);
  86. for (i = 0; i < m; i++) {
  87. /* Y_i = (Y^(i-1) XOR X_i) dot H */
  88. xor_block(y, xpos);
  89. xpos += 16;
  90. /* dot operation:
  91. * multiplication operation for binary Galois (finite) field of
  92. * 2^128 elements */
  93. gf_mult(y, h, tmp);
  94. os_memcpy(y, tmp, 16);
  95. }
  96. /* Return Y_m */
  97. }
  98. static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y)
  99. {
  100. size_t i, n, last;
  101. u8 cb[AES_BLOCK_SIZE], tmp[AES_BLOCK_SIZE];
  102. const u8 *xpos = x;
  103. u8 *ypos = y;
  104. if (xlen == 0)
  105. return;
  106. n = xlen / 16;
  107. os_memcpy(cb, icb, AES_BLOCK_SIZE);
  108. /* Full blocks */
  109. for (i = 0; i < n; i++) {
  110. aes_encrypt(aes, cb, ypos);
  111. xor_block(ypos, xpos);
  112. xpos += AES_BLOCK_SIZE;
  113. ypos += AES_BLOCK_SIZE;
  114. inc32(cb);
  115. }
  116. last = x + xlen - xpos;
  117. if (last) {
  118. /* Last, partial block */
  119. aes_encrypt(aes, cb, tmp);
  120. for (i = 0; i < last; i++)
  121. *ypos++ = *xpos++ ^ tmp[i];
  122. }
  123. }
  124. /**
  125. * aes_gcm_ae - GCM-AE_K(IV, P, A) with len(IV) = 96
  126. */
  127. static int aes_gcm_ae(const u8 *key, const u8 *iv,
  128. const u8 *plain, size_t plain_len,
  129. const u8 *aad, size_t aad_len,
  130. u8 *crypt, u8 *tag)
  131. {
  132. u8 *auth, *apos;
  133. u8 H[AES_BLOCK_SIZE];
  134. u8 J0[AES_BLOCK_SIZE];
  135. u8 S[16];
  136. void *aes;
  137. size_t padlen;
  138. size_t iv_len = 12;
  139. aes = aes_encrypt_init(key, 16);
  140. if (aes == NULL)
  141. return -1;
  142. /* 1. Generate hash subkey H = AES_K(0^128) */
  143. os_memset(H, 0, sizeof(H));
  144. aes_encrypt(aes, H, H);
  145. wpa_hexdump_key(MSG_EXCESSIVE, "Hash subkey H for GHASH", H, sizeof(H));
  146. /* 2. Prepare block J_0 = IV || 0^31 || 1 [len(IV) = 96] */
  147. os_memcpy(J0, iv, iv_len);
  148. os_memset(J0 + iv_len, 0, AES_BLOCK_SIZE - iv_len);
  149. J0[AES_BLOCK_SIZE - 1] = 0x01;
  150. /* 3. C = GCTR_K(inc_32(J_0), P) */
  151. inc32(J0);
  152. aes_gctr(aes, J0, plain, plain_len, crypt);
  153. /*
  154. * 4. u = 128 * ceil[len(C)/128] - len(C)
  155. * v = 128 * ceil[len(A)/128] - len(A)
  156. * 5. S = GHASH_H(A || 0^v || C || 0^u || [len(A)]64 || [len(C)]64)
  157. * (i.e., zero padded to block size A || C and lengths of each in bits)
  158. */
  159. auth = os_malloc(32 + 16 + plain_len + 8 + 8);
  160. if (auth == NULL) {
  161. aes_encrypt_deinit(aes);
  162. return -1;
  163. }
  164. apos = auth;
  165. /* Zero-padded AAD */
  166. os_memcpy(apos, aad, aad_len);
  167. apos += aad_len;
  168. padlen = (16 - aad_len % 16) % 16;
  169. os_memset(apos, 0, padlen);
  170. apos += padlen;
  171. /* Zero-padded C */
  172. os_memcpy(apos, crypt, plain_len);
  173. apos += plain_len;
  174. padlen = (16 - plain_len % 16) % 16;
  175. os_memset(apos, 0, padlen);
  176. apos += padlen;
  177. /* Length of AAD and C in bits */
  178. WPA_PUT_BE64(apos, aad_len * 8);
  179. apos += 8;
  180. WPA_PUT_BE64(apos, plain_len * 8);
  181. apos += 8;
  182. wpa_hexdump_key(MSG_EXCESSIVE, "GHASH_H input", auth, apos - auth);
  183. ghash(H, auth, apos - auth, S);
  184. wpa_hexdump_key(MSG_EXCESSIVE, "S = GHASH_H(...)", S, 16);
  185. os_free(auth);
  186. /* 6. T = MSB_t(GCTR_K(J_0, S)) */
  187. J0[AES_BLOCK_SIZE - 1] = 0x01;
  188. aes_gctr(aes, J0, S, sizeof(S), tag);
  189. /* 7. Return (C, T) */
  190. aes_encrypt_deinit(aes);
  191. return 0;
  192. }
  193. /**
  194. * aes_gcm_ad - GCM-AD_K(IV, C, A, T) with len(IV) = 96
  195. */
  196. static int aes_gcm_ad(const u8 *key, const u8 *iv,
  197. const u8 *crypt, size_t crypt_len,
  198. const u8 *aad, size_t aad_len, const u8 *tag,
  199. u8 *plain)
  200. {
  201. u8 *auth, *apos;
  202. u8 H[AES_BLOCK_SIZE];
  203. u8 J0[AES_BLOCK_SIZE];
  204. u8 S[16], T[16];
  205. void *aes;
  206. size_t padlen;
  207. size_t iv_len = 12;
  208. aes = aes_encrypt_init(key, 16);
  209. if (aes == NULL)
  210. return -1;
  211. /* 2. Generate hash subkey H = AES_K(0^128) */
  212. os_memset(H, 0, sizeof(H));
  213. aes_encrypt(aes, H, H);
  214. wpa_hexdump(MSG_EXCESSIVE, "Hash subkey H for GHASH", H, sizeof(H));
  215. /* 3. Prepare block J_0 = IV || 0^31 || 1 [len(IV) = 96] */
  216. os_memcpy(J0, iv, iv_len);
  217. os_memset(J0 + iv_len, 0, AES_BLOCK_SIZE - iv_len);
  218. J0[AES_BLOCK_SIZE - 1] = 0x01;
  219. /* 4. C = GCTR_K(inc_32(J_0), C) */
  220. inc32(J0);
  221. aes_gctr(aes, J0, crypt, crypt_len, plain);
  222. /*
  223. * 5. u = 128 * ceil[len(C)/128] - len(C)
  224. * v = 128 * ceil[len(A)/128] - len(A)
  225. * 6. S = GHASH_H(A || 0^v || C || 0^u || [len(A)]64 || [len(C)]64)
  226. * (i.e., zero padded to block size A || C and lengths of each in bits)
  227. */
  228. auth = os_malloc(32 + 16 + crypt_len + 8 + 8);
  229. if (auth == NULL) {
  230. aes_encrypt_deinit(aes);
  231. return -1;
  232. }
  233. apos = auth;
  234. /* Zero-padded AAD */
  235. os_memcpy(apos, aad, aad_len);
  236. apos += aad_len;
  237. padlen = (16 - aad_len % 16) % 16;
  238. os_memset(apos, 0, padlen);
  239. apos += padlen;
  240. /* Zero-padded C */
  241. os_memcpy(apos, crypt, crypt_len);
  242. apos += crypt_len;
  243. padlen = (16 - crypt_len % 16) % 16;
  244. os_memset(apos, 0, padlen);
  245. apos += padlen;
  246. /* Length of AAD and C in bits */
  247. WPA_PUT_BE64(apos, aad_len * 8);
  248. apos += 8;
  249. WPA_PUT_BE64(apos, crypt_len * 8);
  250. apos += 8;
  251. wpa_hexdump(MSG_EXCESSIVE, "GHASH_H input", auth, apos - auth);
  252. ghash(H, auth, apos - auth, S);
  253. wpa_hexdump(MSG_EXCESSIVE, "S = GHASH_H(...)", S, 16);
  254. os_free(auth);
  255. /* 7. T' = MSB_t(GCTR_K(J_0, S)) */
  256. J0[AES_BLOCK_SIZE - 1] = 0x01;
  257. aes_gctr(aes, J0, S, sizeof(S), T);
  258. aes_encrypt_deinit(aes);
  259. if (os_memcmp(tag, T, 16) != 0) {
  260. wpa_printf(MSG_EXCESSIVE, "GCM: Tag mismatch");
  261. return -1;
  262. }
  263. return 0;
  264. }
  265. static void gcmp_aad_nonce(const struct ieee80211_hdr *hdr, const u8 *data,
  266. u8 *aad, size_t *aad_len, u8 *nonce)
  267. {
  268. u16 fc, stype, seq;
  269. int qos = 0, addr4 = 0;
  270. u8 *pos;
  271. fc = le_to_host16(hdr->frame_control);
  272. stype = WLAN_FC_GET_STYPE(fc);
  273. if ((fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) ==
  274. (WLAN_FC_TODS | WLAN_FC_FROMDS))
  275. addr4 = 1;
  276. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_DATA) {
  277. fc &= ~0x0070; /* Mask subtype bits */
  278. if (stype & 0x08) {
  279. const u8 *qc;
  280. qos = 1;
  281. fc &= ~WLAN_FC_ORDER;
  282. qc = (const u8 *) (hdr + 1);
  283. if (addr4)
  284. qc += ETH_ALEN;
  285. }
  286. }
  287. fc &= ~(WLAN_FC_RETRY | WLAN_FC_PWRMGT | WLAN_FC_MOREDATA);
  288. fc |= WLAN_FC_ISWEP;
  289. WPA_PUT_LE16(aad, fc);
  290. pos = aad + 2;
  291. os_memcpy(pos, hdr->addr1, 3 * ETH_ALEN);
  292. pos += 3 * ETH_ALEN;
  293. seq = le_to_host16(hdr->seq_ctrl);
  294. seq &= ~0xfff0; /* Mask Seq#; do not modify Frag# */
  295. WPA_PUT_LE16(pos, seq);
  296. pos += 2;
  297. os_memcpy(pos, hdr + 1, addr4 * ETH_ALEN + qos * 2);
  298. pos += addr4 * ETH_ALEN;
  299. if (qos) {
  300. pos[0] &= ~0x70;
  301. if (1 /* FIX: either device has SPP A-MSDU Capab = 0 */)
  302. pos[0] &= ~0x80;
  303. pos++;
  304. *pos++ = 0x00;
  305. }
  306. *aad_len = pos - aad;
  307. os_memcpy(nonce, hdr->addr2, ETH_ALEN);
  308. nonce[6] = data[7]; /* PN5 */
  309. nonce[7] = data[6]; /* PN4 */
  310. nonce[8] = data[5]; /* PN3 */
  311. nonce[9] = data[4]; /* PN2 */
  312. nonce[10] = data[1]; /* PN1 */
  313. nonce[11] = data[0]; /* PN0 */
  314. }
  315. u8 * gcmp_decrypt(const u8 *tk, const struct ieee80211_hdr *hdr,
  316. const u8 *data, size_t data_len, size_t *decrypted_len)
  317. {
  318. u8 aad[2 + 30], nonce[12], *plain;
  319. size_t aad_len, mlen;
  320. const u8 *m;
  321. if (data_len < 8 + 16)
  322. return NULL;
  323. plain = os_malloc(data_len + AES_BLOCK_SIZE);
  324. if (plain == NULL)
  325. return NULL;
  326. m = data + 8;
  327. mlen = data_len - 8 - 16;
  328. os_memset(aad, 0, sizeof(aad));
  329. gcmp_aad_nonce(hdr, data, &aad[2], &aad_len, nonce);
  330. WPA_PUT_BE16(aad, aad_len);
  331. wpa_hexdump(MSG_EXCESSIVE, "GCMP AAD", &aad[2], aad_len);
  332. wpa_hexdump(MSG_EXCESSIVE, "GCMP nonce", nonce, sizeof(nonce));
  333. if (aes_gcm_ad(tk, nonce, m, mlen, &aad[2], aad_len, m + mlen, plain) <
  334. 0) {
  335. u16 seq_ctrl = le_to_host16(hdr->seq_ctrl);
  336. wpa_printf(MSG_INFO, "Invalid GCMP frame: A1=" MACSTR
  337. " A2=" MACSTR " A3=" MACSTR " seq=%u frag=%u",
  338. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  339. MAC2STR(hdr->addr3),
  340. WLAN_GET_SEQ_SEQ(seq_ctrl),
  341. WLAN_GET_SEQ_FRAG(seq_ctrl));
  342. os_free(plain);
  343. return NULL;
  344. }
  345. *decrypted_len = mlen;
  346. return plain;
  347. }
  348. u8 * gcmp_encrypt(const u8 *tk, u8 *frame, size_t len, size_t hdrlen, u8 *qos,
  349. u8 *pn, int keyid, size_t *encrypted_len)
  350. {
  351. u8 aad[2 + 30], nonce[12], *crypt, *pos;
  352. size_t aad_len, plen;
  353. struct ieee80211_hdr *hdr;
  354. if (len < hdrlen || hdrlen < 24)
  355. return NULL;
  356. plen = len - hdrlen;
  357. crypt = os_malloc(hdrlen + 8 + plen + 16 + AES_BLOCK_SIZE);
  358. if (crypt == NULL)
  359. return NULL;
  360. os_memcpy(crypt, frame, hdrlen);
  361. hdr = (struct ieee80211_hdr *) crypt;
  362. hdr->frame_control |= host_to_le16(WLAN_FC_ISWEP);
  363. pos = crypt + hdrlen;
  364. *pos++ = pn[5]; /* PN0 */
  365. *pos++ = pn[4]; /* PN1 */
  366. *pos++ = 0x00; /* Rsvd */
  367. *pos++ = 0x20 | (keyid << 6);
  368. *pos++ = pn[3]; /* PN2 */
  369. *pos++ = pn[2]; /* PN3 */
  370. *pos++ = pn[1]; /* PN4 */
  371. *pos++ = pn[0]; /* PN5 */
  372. os_memset(aad, 0, sizeof(aad));
  373. gcmp_aad_nonce(hdr, crypt + hdrlen, &aad[2], &aad_len, nonce);
  374. WPA_PUT_BE16(aad, aad_len);
  375. wpa_hexdump(MSG_EXCESSIVE, "GCMP AAD", &aad[2], aad_len);
  376. wpa_hexdump(MSG_EXCESSIVE, "GCMP nonce", nonce, sizeof(nonce));
  377. if (aes_gcm_ae(tk, nonce, frame + hdrlen, plen, &aad[2], aad_len,
  378. pos, pos + plen) < 0) {
  379. os_free(crypt);
  380. return NULL;
  381. }
  382. wpa_hexdump(MSG_EXCESSIVE, "GCMP MIC", pos + plen, 16);
  383. wpa_hexdump(MSG_EXCESSIVE, "GCMP encrypted", pos, plen);
  384. *encrypted_len = hdrlen + 8 + plen + 16;
  385. return crypt;
  386. }