Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2017, Google Inc. |
| 2 | * |
| 3 | * Permission to use, copy, modify, and/or distribute this software for any |
| 4 | * purpose with or without fee is hereby granted, provided that the above |
| 5 | * copyright notice and this permission notice appear in all copies. |
| 6 | * |
| 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION |
| 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ |
| 14 | |
| 15 | #include <openssl/aead.h> |
David Benjamin | b065177 | 2017-07-10 16:39:36 -0400 | [diff] [blame] | 16 | |
| 17 | #include <assert.h> |
| 18 | |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 19 | #include <openssl/cipher.h> |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 20 | #include <openssl/cpu.h> |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 21 | #include <openssl/crypto.h> |
| 22 | #include <openssl/err.h> |
| 23 | |
Adam Langley | 2e2a226 | 2017-05-03 13:23:37 -0700 | [diff] [blame] | 24 | #include "../fipsmodule/cipher/internal.h" |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 25 | |
| 26 | |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 27 | #define EVP_AEAD_AES_GCM_SIV_NONCE_LEN 12 |
| 28 | #define EVP_AEAD_AES_GCM_SIV_TAG_LEN 16 |
| 29 | |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 30 | #if defined(OPENSSL_X86_64) && !defined(OPENSSL_NO_ASM) |
| 31 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 32 | // Optimised AES-GCM-SIV |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 33 | |
| 34 | struct aead_aes_gcm_siv_asm_ctx { |
David Benjamin | b065177 | 2017-07-10 16:39:36 -0400 | [diff] [blame] | 35 | alignas(16) uint8_t key[16*15]; |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 36 | int is_128_bit; |
Adam Langley | a16e86c | 2017-09-12 09:03:29 -0700 | [diff] [blame] | 37 | // ptr contains the original pointer from |OPENSSL_malloc|, which may only be |
| 38 | // 8-byte aligned. When freeing this structure, actually call |OPENSSL_free| |
| 39 | // on this pointer. |
| 40 | void *ptr; |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 43 | // aes128gcmsiv_aes_ks writes an AES-128 key schedule for |key| to |
| 44 | // |out_expanded_key|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 45 | extern void aes128gcmsiv_aes_ks( |
| 46 | const uint8_t key[16], uint8_t out_expanded_key[16*15]); |
| 47 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 48 | // aes128gcmsiv_aes_ks writes an AES-128 key schedule for |key| to |
| 49 | // |out_expanded_key|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 50 | extern void aes256gcmsiv_aes_ks( |
| 51 | const uint8_t key[16], uint8_t out_expanded_key[16*15]); |
| 52 | |
| 53 | static int aead_aes_gcm_siv_asm_init(EVP_AEAD_CTX *ctx, const uint8_t *key, |
| 54 | size_t key_len, size_t tag_len) { |
| 55 | const size_t key_bits = key_len * 8; |
| 56 | |
| 57 | if (key_bits != 128 && key_bits != 256) { |
| 58 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BAD_KEY_LENGTH); |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 59 | return 0; // EVP_AEAD_CTX_init should catch this. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | if (tag_len == EVP_AEAD_DEFAULT_TAG_LENGTH) { |
| 63 | tag_len = EVP_AEAD_AES_GCM_SIV_TAG_LEN; |
| 64 | } |
| 65 | |
| 66 | if (tag_len != EVP_AEAD_AES_GCM_SIV_TAG_LEN) { |
| 67 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TAG_TOO_LARGE); |
| 68 | return 0; |
| 69 | } |
| 70 | |
Adam Langley | a16e86c | 2017-09-12 09:03:29 -0700 | [diff] [blame] | 71 | char *ptr = OPENSSL_malloc(sizeof(struct aead_aes_gcm_siv_asm_ctx) + 8); |
| 72 | if (ptr == NULL) { |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 73 | return 0; |
| 74 | } |
Adam Langley | a16e86c | 2017-09-12 09:03:29 -0700 | [diff] [blame] | 75 | assert((((uintptr_t)ptr) & 7) == 0); |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 76 | |
Adam Langley | a16e86c | 2017-09-12 09:03:29 -0700 | [diff] [blame] | 77 | // gcm_siv_ctx needs to be 16-byte aligned in a cross-platform way. |
| 78 | struct aead_aes_gcm_siv_asm_ctx *gcm_siv_ctx = |
| 79 | (struct aead_aes_gcm_siv_asm_ctx *)(ptr + (((uintptr_t)ptr) & 8)); |
| 80 | |
David Benjamin | b065177 | 2017-07-10 16:39:36 -0400 | [diff] [blame] | 81 | assert((((uintptr_t)gcm_siv_ctx) & 15) == 0); |
Adam Langley | a16e86c | 2017-09-12 09:03:29 -0700 | [diff] [blame] | 82 | gcm_siv_ctx->ptr = ptr; |
David Benjamin | b065177 | 2017-07-10 16:39:36 -0400 | [diff] [blame] | 83 | |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 84 | if (key_bits == 128) { |
| 85 | aes128gcmsiv_aes_ks(key, &gcm_siv_ctx->key[0]); |
| 86 | gcm_siv_ctx->is_128_bit = 1; |
| 87 | } else { |
| 88 | aes256gcmsiv_aes_ks(key, &gcm_siv_ctx->key[0]); |
| 89 | gcm_siv_ctx->is_128_bit = 0; |
| 90 | } |
| 91 | ctx->aead_state = gcm_siv_ctx; |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 92 | ctx->tag_len = tag_len; |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 93 | |
| 94 | return 1; |
| 95 | } |
| 96 | |
| 97 | static void aead_aes_gcm_siv_asm_cleanup(EVP_AEAD_CTX *ctx) { |
Adam Langley | a16e86c | 2017-09-12 09:03:29 -0700 | [diff] [blame] | 98 | const struct aead_aes_gcm_siv_asm_ctx *gcm_siv_ctx = ctx->aead_state; |
| 99 | OPENSSL_free(gcm_siv_ctx->ptr); |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 100 | } |
| 101 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 102 | // aesgcmsiv_polyval_horner updates the POLYVAL value in |in_out_poly| to |
| 103 | // include a number (|in_blocks|) of 16-byte blocks of data from |in|, given |
| 104 | // the POLYVAL key in |key|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 105 | extern void aesgcmsiv_polyval_horner(const uint8_t in_out_poly[16], |
| 106 | const uint8_t key[16], const uint8_t *in, |
| 107 | size_t in_blocks); |
| 108 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 109 | // aesgcmsiv_htable_init writes powers 1..8 of |auth_key| to |out_htable|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 110 | extern void aesgcmsiv_htable_init(uint8_t out_htable[16 * 8], |
| 111 | const uint8_t auth_key[16]); |
| 112 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 113 | // aesgcmsiv_htable6_init writes powers 1..6 of |auth_key| to |out_htable|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 114 | extern void aesgcmsiv_htable6_init(uint8_t out_htable[16 * 6], |
| 115 | const uint8_t auth_key[16]); |
| 116 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 117 | // aesgcmsiv_htable_polyval updates the POLYVAL value in |in_out_poly| to |
| 118 | // include |in_len| bytes of data from |in|. (Where |in_len| must be a multiple |
| 119 | // of 16.) It uses the precomputed powers of the key given in |htable|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 120 | extern void aesgcmsiv_htable_polyval(const uint8_t htable[16 * 8], |
| 121 | const uint8_t *in, size_t in_len, |
| 122 | uint8_t in_out_poly[16]); |
| 123 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 124 | // aes128gcmsiv_dec decrypts |in_len| & ~15 bytes from |out| and writes them to |
| 125 | // |in|. (The full value of |in_len| is still used to find the authentication |
| 126 | // tag appended to the ciphertext, however, so must not be pre-masked.) |
| 127 | // |
| 128 | // |in| and |out| may be equal, but must not otherwise overlap. |
| 129 | // |
| 130 | // While decrypting, it updates the POLYVAL value found at the beginning of |
| 131 | // |in_out_calculated_tag_and_scratch| and writes the updated value back before |
| 132 | // return. During executation, it may use the whole of this space for other |
| 133 | // purposes. In order to decrypt and update the POLYVAL value, it uses the |
| 134 | // expanded key from |key| and the table of powers in |htable|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 135 | extern void aes128gcmsiv_dec(const uint8_t *in, uint8_t *out, |
| 136 | uint8_t in_out_calculated_tag_and_scratch[16 * 8], |
| 137 | const uint8_t htable[16 * 6], |
| 138 | const struct aead_aes_gcm_siv_asm_ctx *key, |
| 139 | size_t in_len); |
| 140 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 141 | // aes256gcmsiv_dec acts like |aes128gcmsiv_dec|, but for AES-256. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 142 | extern void aes256gcmsiv_dec(const uint8_t *in, uint8_t *out, |
| 143 | uint8_t in_out_calculated_tag_and_scratch[16 * 8], |
| 144 | const uint8_t htable[16 * 6], |
| 145 | const struct aead_aes_gcm_siv_asm_ctx *key, |
| 146 | size_t in_len); |
| 147 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 148 | // aes128gcmsiv_kdf performs the AES-GCM-SIV KDF given the expanded key from |
| 149 | // |key_schedule| and the nonce in |nonce|. Note that, while only 12 bytes of |
| 150 | // the nonce are used, 16 bytes are read and so the value must be |
| 151 | // right-padded. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 152 | extern void aes128gcmsiv_kdf(const uint8_t nonce[16], |
| 153 | uint64_t out_key_material[8], |
| 154 | const uint8_t *key_schedule); |
| 155 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 156 | // aes256gcmsiv_kdf acts like |aes128gcmsiv_kdf|, but for AES-256. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 157 | extern void aes256gcmsiv_kdf(const uint8_t nonce[16], |
| 158 | uint64_t out_key_material[12], |
| 159 | const uint8_t *key_schedule); |
| 160 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 161 | // aes128gcmsiv_aes_ks_enc_x1 performs a key expansion of the AES-128 key in |
| 162 | // |key|, writes the expanded key to |out_expanded_key| and encrypts a single |
| 163 | // block from |in| to |out|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 164 | extern void aes128gcmsiv_aes_ks_enc_x1(const uint8_t in[16], uint8_t out[16], |
| 165 | uint8_t out_expanded_key[16 * 15], |
| 166 | const uint64_t key[2]); |
| 167 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 168 | // aes256gcmsiv_aes_ks_enc_x1 acts like |aes128gcmsiv_aes_ks_enc_x1|, but for |
| 169 | // AES-256. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 170 | extern void aes256gcmsiv_aes_ks_enc_x1(const uint8_t in[16], uint8_t out[16], |
| 171 | uint8_t out_expanded_key[16 * 15], |
| 172 | const uint64_t key[4]); |
| 173 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 174 | // aes128gcmsiv_ecb_enc_block encrypts a single block from |in| to |out| using |
| 175 | // the expanded key in |expanded_key|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 176 | extern void aes128gcmsiv_ecb_enc_block( |
| 177 | const uint8_t in[16], uint8_t out[16], |
| 178 | const struct aead_aes_gcm_siv_asm_ctx *expanded_key); |
| 179 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 180 | // aes256gcmsiv_ecb_enc_block acts like |aes128gcmsiv_ecb_enc_block|, but for |
| 181 | // AES-256. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 182 | extern void aes256gcmsiv_ecb_enc_block( |
| 183 | const uint8_t in[16], uint8_t out[16], |
| 184 | const struct aead_aes_gcm_siv_asm_ctx *expanded_key); |
| 185 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 186 | // aes128gcmsiv_enc_msg_x4 encrypts |in_len| bytes from |in| to |out| using the |
| 187 | // expanded key from |key|. (The value of |in_len| must be a multiple of 16.) |
| 188 | // The |in| and |out| buffers may be equal but must not otherwise overlap. The |
| 189 | // initial counter is constructed from the given |tag| as required by |
| 190 | // AES-GCM-SIV. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 191 | extern void aes128gcmsiv_enc_msg_x4(const uint8_t *in, uint8_t *out, |
| 192 | const uint8_t *tag, |
| 193 | const struct aead_aes_gcm_siv_asm_ctx *key, |
| 194 | size_t in_len); |
| 195 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 196 | // aes256gcmsiv_enc_msg_x4 acts like |aes128gcmsiv_enc_msg_x4|, but for |
| 197 | // AES-256. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 198 | extern void aes256gcmsiv_enc_msg_x4(const uint8_t *in, uint8_t *out, |
| 199 | const uint8_t *tag, |
| 200 | const struct aead_aes_gcm_siv_asm_ctx *key, |
| 201 | size_t in_len); |
| 202 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 203 | // aes128gcmsiv_enc_msg_x8 acts like |aes128gcmsiv_enc_msg_x4|, but is |
| 204 | // optimised for longer messages. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 205 | extern void aes128gcmsiv_enc_msg_x8(const uint8_t *in, uint8_t *out, |
| 206 | const uint8_t *tag, |
| 207 | const struct aead_aes_gcm_siv_asm_ctx *key, |
| 208 | size_t in_len); |
| 209 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 210 | // aes256gcmsiv_enc_msg_x8 acts like |aes256gcmsiv_enc_msg_x4|, but is |
| 211 | // optimised for longer messages. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 212 | extern void aes256gcmsiv_enc_msg_x8(const uint8_t *in, uint8_t *out, |
| 213 | const uint8_t *tag, |
| 214 | const struct aead_aes_gcm_siv_asm_ctx *key, |
| 215 | size_t in_len); |
| 216 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 217 | // gcm_siv_asm_polyval evaluates POLYVAL at |auth_key| on the given plaintext |
| 218 | // and AD. The result is written to |out_tag|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 219 | static void gcm_siv_asm_polyval(uint8_t out_tag[16], const uint8_t *in, |
| 220 | size_t in_len, const uint8_t *ad, size_t ad_len, |
| 221 | const uint8_t auth_key[16], |
| 222 | const uint8_t nonce[12]) { |
| 223 | OPENSSL_memset(out_tag, 0, 16); |
| 224 | const size_t ad_blocks = ad_len / 16; |
| 225 | const size_t in_blocks = in_len / 16; |
| 226 | int htable_init = 0; |
| 227 | alignas(16) uint8_t htable[16*8]; |
| 228 | |
| 229 | if (ad_blocks > 8 || in_blocks > 8) { |
| 230 | htable_init = 1; |
| 231 | aesgcmsiv_htable_init(htable, auth_key); |
| 232 | } |
| 233 | |
| 234 | if (htable_init) { |
| 235 | aesgcmsiv_htable_polyval(htable, ad, ad_len & ~15, out_tag); |
| 236 | } else { |
| 237 | aesgcmsiv_polyval_horner(out_tag, auth_key, ad, ad_blocks); |
| 238 | } |
| 239 | |
| 240 | uint8_t scratch[16]; |
| 241 | if (ad_len & 15) { |
| 242 | OPENSSL_memset(scratch, 0, sizeof(scratch)); |
| 243 | OPENSSL_memcpy(scratch, &ad[ad_len & ~15], ad_len & 15); |
| 244 | aesgcmsiv_polyval_horner(out_tag, auth_key, scratch, 1); |
| 245 | } |
| 246 | |
| 247 | if (htable_init) { |
| 248 | aesgcmsiv_htable_polyval(htable, in, in_len & ~15, out_tag); |
| 249 | } else { |
| 250 | aesgcmsiv_polyval_horner(out_tag, auth_key, in, in_blocks); |
| 251 | } |
| 252 | |
| 253 | if (in_len & 15) { |
| 254 | OPENSSL_memset(scratch, 0, sizeof(scratch)); |
| 255 | OPENSSL_memcpy(scratch, &in[in_len & ~15], in_len & 15); |
| 256 | aesgcmsiv_polyval_horner(out_tag, auth_key, scratch, 1); |
| 257 | } |
| 258 | |
| 259 | union { |
| 260 | uint8_t c[16]; |
| 261 | struct { |
| 262 | uint64_t ad; |
| 263 | uint64_t in; |
| 264 | } bitlens; |
| 265 | } length_block; |
| 266 | |
| 267 | length_block.bitlens.ad = ad_len * 8; |
| 268 | length_block.bitlens.in = in_len * 8; |
| 269 | aesgcmsiv_polyval_horner(out_tag, auth_key, length_block.c, 1); |
| 270 | |
| 271 | for (size_t i = 0; i < 12; i++) { |
| 272 | out_tag[i] ^= nonce[i]; |
| 273 | } |
| 274 | |
| 275 | out_tag[15] &= 0x7f; |
| 276 | } |
| 277 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 278 | // aead_aes_gcm_siv_asm_crypt_last_block handles the encryption/decryption |
| 279 | // (same thing in CTR mode) of the final block of a plaintext/ciphertext. It |
| 280 | // writes |in_len| & 15 bytes to |out| + |in_len|, based on an initial counter |
| 281 | // derived from |tag|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 282 | static void aead_aes_gcm_siv_asm_crypt_last_block( |
| 283 | int is_128_bit, uint8_t *out, const uint8_t *in, size_t in_len, |
| 284 | const uint8_t tag[16], |
| 285 | const struct aead_aes_gcm_siv_asm_ctx *enc_key_expanded) { |
| 286 | alignas(16) union { |
| 287 | uint8_t c[16]; |
| 288 | uint32_t u32[4]; |
| 289 | } counter; |
| 290 | OPENSSL_memcpy(&counter, tag, sizeof(counter)); |
| 291 | counter.c[15] |= 0x80; |
| 292 | counter.u32[0] += in_len / 16; |
| 293 | |
| 294 | if (is_128_bit) { |
| 295 | aes128gcmsiv_ecb_enc_block(&counter.c[0], &counter.c[0], enc_key_expanded); |
| 296 | } else { |
| 297 | aes256gcmsiv_ecb_enc_block(&counter.c[0], &counter.c[0], enc_key_expanded); |
| 298 | } |
| 299 | |
| 300 | const size_t last_bytes_offset = in_len & ~15; |
| 301 | const size_t last_bytes_len = in_len & 15; |
| 302 | uint8_t *last_bytes_out = &out[last_bytes_offset]; |
| 303 | const uint8_t *last_bytes_in = &in[last_bytes_offset]; |
| 304 | for (size_t i = 0; i < last_bytes_len; i++) { |
| 305 | last_bytes_out[i] = last_bytes_in[i] ^ counter.c[i]; |
| 306 | } |
| 307 | } |
| 308 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 309 | // aead_aes_gcm_siv_kdf calculates the record encryption and authentication |
| 310 | // keys given the |nonce|. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 311 | static void aead_aes_gcm_siv_kdf( |
| 312 | int is_128_bit, const struct aead_aes_gcm_siv_asm_ctx *gcm_siv_ctx, |
| 313 | uint64_t out_record_auth_key[2], uint64_t out_record_enc_key[4], |
| 314 | const uint8_t nonce[12]) { |
| 315 | alignas(16) uint8_t padded_nonce[16]; |
| 316 | OPENSSL_memcpy(padded_nonce, nonce, 12); |
| 317 | |
| 318 | alignas(16) uint64_t key_material[12]; |
| 319 | if (is_128_bit) { |
| 320 | aes128gcmsiv_kdf(padded_nonce, key_material, &gcm_siv_ctx->key[0]); |
| 321 | out_record_enc_key[0] = key_material[4]; |
| 322 | out_record_enc_key[1] = key_material[6]; |
| 323 | } else { |
| 324 | aes256gcmsiv_kdf(padded_nonce, key_material, &gcm_siv_ctx->key[0]); |
| 325 | out_record_enc_key[0] = key_material[4]; |
| 326 | out_record_enc_key[1] = key_material[6]; |
| 327 | out_record_enc_key[2] = key_material[8]; |
| 328 | out_record_enc_key[3] = key_material[10]; |
| 329 | } |
| 330 | |
| 331 | out_record_auth_key[0] = key_material[0]; |
| 332 | out_record_auth_key[1] = key_material[2]; |
| 333 | } |
| 334 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 335 | static int aead_aes_gcm_siv_asm_seal_scatter( |
| 336 | const EVP_AEAD_CTX *ctx, uint8_t *out, uint8_t *out_tag, |
| 337 | size_t *out_tag_len, size_t max_out_tag_len, const uint8_t *nonce, |
Martin Kreichgauer | 74bce29 | 2017-06-23 14:49:22 -0700 | [diff] [blame] | 338 | size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *extra_in, |
| 339 | size_t extra_in_len, const uint8_t *ad, size_t ad_len) { |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 340 | const struct aead_aes_gcm_siv_asm_ctx *gcm_siv_ctx = ctx->aead_state; |
| 341 | const uint64_t in_len_64 = in_len; |
| 342 | const uint64_t ad_len_64 = ad_len; |
| 343 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 344 | if (in_len_64 > (UINT64_C(1) << 36) || |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 345 | ad_len_64 >= (UINT64_C(1) << 61)) { |
| 346 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TOO_LARGE); |
| 347 | return 0; |
| 348 | } |
| 349 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 350 | if (max_out_tag_len < EVP_AEAD_AES_GCM_SIV_TAG_LEN) { |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 351 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BUFFER_TOO_SMALL); |
| 352 | return 0; |
| 353 | } |
| 354 | |
| 355 | if (nonce_len != EVP_AEAD_AES_GCM_SIV_NONCE_LEN) { |
| 356 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_UNSUPPORTED_NONCE_SIZE); |
| 357 | return 0; |
| 358 | } |
| 359 | |
| 360 | alignas(16) uint64_t record_auth_key[2]; |
| 361 | alignas(16) uint64_t record_enc_key[4]; |
| 362 | aead_aes_gcm_siv_kdf(gcm_siv_ctx->is_128_bit, gcm_siv_ctx, record_auth_key, |
| 363 | record_enc_key, nonce); |
| 364 | |
| 365 | alignas(16) uint8_t tag[16] = {0}; |
| 366 | gcm_siv_asm_polyval(tag, in, in_len, ad, ad_len, |
| 367 | (const uint8_t *)record_auth_key, nonce); |
| 368 | |
| 369 | struct aead_aes_gcm_siv_asm_ctx enc_key_expanded; |
| 370 | |
| 371 | if (gcm_siv_ctx->is_128_bit) { |
| 372 | aes128gcmsiv_aes_ks_enc_x1(tag, tag, &enc_key_expanded.key[0], |
| 373 | record_enc_key); |
| 374 | |
| 375 | if (in_len < 128) { |
| 376 | aes128gcmsiv_enc_msg_x4(in, out, tag, &enc_key_expanded, in_len & ~15); |
| 377 | } else { |
| 378 | aes128gcmsiv_enc_msg_x8(in, out, tag, &enc_key_expanded, in_len & ~15); |
| 379 | } |
| 380 | } else { |
| 381 | aes256gcmsiv_aes_ks_enc_x1(tag, tag, &enc_key_expanded.key[0], |
| 382 | record_enc_key); |
| 383 | |
| 384 | if (in_len < 128) { |
| 385 | aes256gcmsiv_enc_msg_x4(in, out, tag, &enc_key_expanded, in_len & ~15); |
| 386 | } else { |
| 387 | aes256gcmsiv_enc_msg_x8(in, out, tag, &enc_key_expanded, in_len & ~15); |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | if (in_len & 15) { |
| 392 | aead_aes_gcm_siv_asm_crypt_last_block(gcm_siv_ctx->is_128_bit, out, in, |
| 393 | in_len, tag, &enc_key_expanded); |
| 394 | } |
| 395 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 396 | OPENSSL_memcpy(out_tag, tag, sizeof(tag)); |
| 397 | *out_tag_len = EVP_AEAD_AES_GCM_SIV_TAG_LEN; |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 398 | |
| 399 | return 1; |
| 400 | } |
| 401 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 402 | // TODO(martinkr): Add aead_aes_gcm_siv_asm_open_gather. N.B. aes128gcmsiv_dec |
| 403 | // expects ciphertext and tag in a contiguous buffer. |
| 404 | |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 405 | static int aead_aes_gcm_siv_asm_open(const EVP_AEAD_CTX *ctx, uint8_t *out, |
| 406 | size_t *out_len, size_t max_out_len, |
| 407 | const uint8_t *nonce, size_t nonce_len, |
| 408 | const uint8_t *in, size_t in_len, |
| 409 | const uint8_t *ad, size_t ad_len) { |
| 410 | const uint64_t ad_len_64 = ad_len; |
| 411 | if (ad_len_64 >= (UINT64_C(1) << 61)) { |
| 412 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TOO_LARGE); |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | const uint64_t in_len_64 = in_len; |
| 417 | if (in_len < EVP_AEAD_AES_GCM_SIV_TAG_LEN || |
| 418 | in_len_64 > (UINT64_C(1) << 36) + AES_BLOCK_SIZE) { |
| 419 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BAD_DECRYPT); |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | const struct aead_aes_gcm_siv_asm_ctx *gcm_siv_ctx = ctx->aead_state; |
| 424 | const size_t plaintext_len = in_len - EVP_AEAD_AES_GCM_SIV_TAG_LEN; |
| 425 | const uint8_t *const given_tag = in + plaintext_len; |
| 426 | |
| 427 | if (max_out_len < plaintext_len) { |
| 428 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BUFFER_TOO_SMALL); |
| 429 | return 0; |
| 430 | } |
| 431 | |
| 432 | alignas(16) uint64_t record_auth_key[2]; |
| 433 | alignas(16) uint64_t record_enc_key[4]; |
| 434 | aead_aes_gcm_siv_kdf(gcm_siv_ctx->is_128_bit, gcm_siv_ctx, record_auth_key, |
| 435 | record_enc_key, nonce); |
| 436 | |
| 437 | struct aead_aes_gcm_siv_asm_ctx expanded_key; |
| 438 | if (gcm_siv_ctx->is_128_bit) { |
| 439 | aes128gcmsiv_aes_ks((const uint8_t *) record_enc_key, &expanded_key.key[0]); |
| 440 | } else { |
| 441 | aes256gcmsiv_aes_ks((const uint8_t *) record_enc_key, &expanded_key.key[0]); |
| 442 | } |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 443 | // calculated_tag is 16*8 bytes, rather than 16 bytes, because |
| 444 | // aes[128|256]gcmsiv_dec uses the extra as scratch space. |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 445 | alignas(16) uint8_t calculated_tag[16 * 8] = {0}; |
| 446 | |
| 447 | OPENSSL_memset(calculated_tag, 0, EVP_AEAD_AES_GCM_SIV_TAG_LEN); |
| 448 | const size_t ad_blocks = ad_len / 16; |
| 449 | aesgcmsiv_polyval_horner(calculated_tag, (const uint8_t *)record_auth_key, ad, |
| 450 | ad_blocks); |
| 451 | |
| 452 | uint8_t scratch[16]; |
| 453 | if (ad_len & 15) { |
| 454 | OPENSSL_memset(scratch, 0, sizeof(scratch)); |
| 455 | OPENSSL_memcpy(scratch, &ad[ad_len & ~15], ad_len & 15); |
| 456 | aesgcmsiv_polyval_horner(calculated_tag, (const uint8_t *)record_auth_key, |
| 457 | scratch, 1); |
| 458 | } |
| 459 | |
| 460 | alignas(16) uint8_t htable[16 * 6]; |
| 461 | aesgcmsiv_htable6_init(htable, (const uint8_t *)record_auth_key); |
| 462 | |
| 463 | if (gcm_siv_ctx->is_128_bit) { |
| 464 | aes128gcmsiv_dec(in, out, calculated_tag, htable, &expanded_key, |
| 465 | plaintext_len); |
| 466 | } else { |
| 467 | aes256gcmsiv_dec(in, out, calculated_tag, htable, &expanded_key, |
| 468 | plaintext_len); |
| 469 | } |
| 470 | |
| 471 | if (plaintext_len & 15) { |
| 472 | aead_aes_gcm_siv_asm_crypt_last_block(gcm_siv_ctx->is_128_bit, out, in, |
| 473 | plaintext_len, given_tag, |
| 474 | &expanded_key); |
| 475 | OPENSSL_memset(scratch, 0, sizeof(scratch)); |
| 476 | OPENSSL_memcpy(scratch, out + (plaintext_len & ~15), plaintext_len & 15); |
| 477 | aesgcmsiv_polyval_horner(calculated_tag, (const uint8_t *)record_auth_key, |
| 478 | scratch, 1); |
| 479 | } |
| 480 | |
| 481 | union { |
| 482 | uint8_t c[16]; |
| 483 | struct { |
| 484 | uint64_t ad; |
| 485 | uint64_t in; |
| 486 | } bitlens; |
| 487 | } length_block; |
| 488 | |
| 489 | length_block.bitlens.ad = ad_len * 8; |
| 490 | length_block.bitlens.in = plaintext_len * 8; |
| 491 | aesgcmsiv_polyval_horner(calculated_tag, (const uint8_t *)record_auth_key, |
| 492 | length_block.c, 1); |
| 493 | |
| 494 | for (size_t i = 0; i < 12; i++) { |
| 495 | calculated_tag[i] ^= nonce[i]; |
| 496 | } |
| 497 | |
| 498 | calculated_tag[15] &= 0x7f; |
| 499 | |
| 500 | if (gcm_siv_ctx->is_128_bit) { |
| 501 | aes128gcmsiv_ecb_enc_block(calculated_tag, calculated_tag, &expanded_key); |
| 502 | } else { |
| 503 | aes256gcmsiv_ecb_enc_block(calculated_tag, calculated_tag, &expanded_key); |
| 504 | } |
| 505 | |
| 506 | if (CRYPTO_memcmp(calculated_tag, given_tag, EVP_AEAD_AES_GCM_SIV_TAG_LEN) != |
| 507 | 0) { |
| 508 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BAD_DECRYPT); |
| 509 | return 0; |
| 510 | } |
| 511 | |
| 512 | *out_len = in_len - EVP_AEAD_AES_GCM_SIV_TAG_LEN; |
| 513 | return 1; |
| 514 | } |
| 515 | |
| 516 | static const EVP_AEAD aead_aes_128_gcm_siv_asm = { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 517 | 16, // key length |
| 518 | EVP_AEAD_AES_GCM_SIV_NONCE_LEN, // nonce length |
| 519 | EVP_AEAD_AES_GCM_SIV_TAG_LEN, // overhead |
| 520 | EVP_AEAD_AES_GCM_SIV_TAG_LEN, // max tag length |
| 521 | 0, // seal_scatter_supports_extra_in |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 522 | |
| 523 | aead_aes_gcm_siv_asm_init, |
| 524 | NULL /* init_with_direction */, |
| 525 | aead_aes_gcm_siv_asm_cleanup, |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 526 | aead_aes_gcm_siv_asm_open, |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 527 | aead_aes_gcm_siv_asm_seal_scatter, |
| 528 | NULL /* open_gather */, |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 529 | NULL /* get_iv */, |
Martin Kreichgauer | abbf365 | 2017-07-21 16:27:54 -0700 | [diff] [blame] | 530 | NULL /* tag_len */, |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 531 | }; |
| 532 | |
| 533 | static const EVP_AEAD aead_aes_256_gcm_siv_asm = { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 534 | 32, // key length |
| 535 | EVP_AEAD_AES_GCM_SIV_NONCE_LEN, // nonce length |
| 536 | EVP_AEAD_AES_GCM_SIV_TAG_LEN, // overhead |
| 537 | EVP_AEAD_AES_GCM_SIV_TAG_LEN, // max tag length |
| 538 | 0, // seal_scatter_supports_extra_in |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 539 | |
| 540 | aead_aes_gcm_siv_asm_init, |
| 541 | NULL /* init_with_direction */, |
| 542 | aead_aes_gcm_siv_asm_cleanup, |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 543 | aead_aes_gcm_siv_asm_open, |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 544 | aead_aes_gcm_siv_asm_seal_scatter, |
| 545 | NULL /* open_gather */, |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 546 | NULL /* get_iv */, |
Martin Kreichgauer | abbf365 | 2017-07-21 16:27:54 -0700 | [diff] [blame] | 547 | NULL /* tag_len */, |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 548 | }; |
| 549 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 550 | #endif // X86_64 && !NO_ASM |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 551 | |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 552 | struct aead_aes_gcm_siv_ctx { |
| 553 | union { |
| 554 | double align; |
| 555 | AES_KEY ks; |
| 556 | } ks; |
| 557 | block128_f kgk_block; |
| 558 | unsigned is_256:1; |
| 559 | }; |
| 560 | |
| 561 | static int aead_aes_gcm_siv_init(EVP_AEAD_CTX *ctx, const uint8_t *key, |
| 562 | size_t key_len, size_t tag_len) { |
| 563 | const size_t key_bits = key_len * 8; |
| 564 | |
| 565 | if (key_bits != 128 && key_bits != 256) { |
| 566 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BAD_KEY_LENGTH); |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 567 | return 0; // EVP_AEAD_CTX_init should catch this. |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | if (tag_len == EVP_AEAD_DEFAULT_TAG_LENGTH) { |
| 571 | tag_len = EVP_AEAD_AES_GCM_SIV_TAG_LEN; |
| 572 | } |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 573 | if (tag_len != EVP_AEAD_AES_GCM_SIV_TAG_LEN) { |
| 574 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TAG_TOO_LARGE); |
| 575 | return 0; |
| 576 | } |
| 577 | |
| 578 | struct aead_aes_gcm_siv_ctx *gcm_siv_ctx = |
| 579 | OPENSSL_malloc(sizeof(struct aead_aes_gcm_siv_ctx)); |
| 580 | if (gcm_siv_ctx == NULL) { |
| 581 | return 0; |
| 582 | } |
| 583 | OPENSSL_memset(gcm_siv_ctx, 0, sizeof(struct aead_aes_gcm_siv_ctx)); |
| 584 | |
| 585 | aes_ctr_set_key(&gcm_siv_ctx->ks.ks, NULL, &gcm_siv_ctx->kgk_block, key, |
| 586 | key_len); |
| 587 | gcm_siv_ctx->is_256 = (key_len == 32); |
| 588 | ctx->aead_state = gcm_siv_ctx; |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 589 | ctx->tag_len = tag_len; |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 590 | |
| 591 | return 1; |
| 592 | } |
| 593 | |
| 594 | static void aead_aes_gcm_siv_cleanup(EVP_AEAD_CTX *ctx) { |
| 595 | struct aead_aes_gcm_siv_ctx *gcm_siv_ctx = ctx->aead_state; |
| 596 | OPENSSL_cleanse(gcm_siv_ctx, sizeof(struct aead_aes_gcm_siv_ctx)); |
| 597 | OPENSSL_free(gcm_siv_ctx); |
| 598 | } |
| 599 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 600 | // gcm_siv_crypt encrypts (or decrypts—it's the same thing) |in_len| bytes from |
| 601 | // |in| to |out|, using the block function |enc_block| with |key| in counter |
| 602 | // mode, starting at |initial_counter|. This differs from the traditional |
| 603 | // counter mode code in that the counter is handled little-endian, only the |
| 604 | // first four bytes are used and the GCM-SIV tweak to the final byte is |
| 605 | // applied. The |in| and |out| pointers may be equal but otherwise must not |
| 606 | // alias. |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 607 | static void gcm_siv_crypt(uint8_t *out, const uint8_t *in, size_t in_len, |
| 608 | const uint8_t initial_counter[AES_BLOCK_SIZE], |
| 609 | block128_f enc_block, const AES_KEY *key) { |
| 610 | union { |
| 611 | uint32_t w[4]; |
| 612 | uint8_t c[16]; |
| 613 | } counter; |
| 614 | |
| 615 | OPENSSL_memcpy(counter.c, initial_counter, AES_BLOCK_SIZE); |
| 616 | counter.c[15] |= 0x80; |
| 617 | |
| 618 | for (size_t done = 0; done < in_len;) { |
| 619 | uint8_t keystream[AES_BLOCK_SIZE]; |
| 620 | enc_block(counter.c, keystream, key); |
| 621 | counter.w[0]++; |
| 622 | |
| 623 | size_t todo = AES_BLOCK_SIZE; |
| 624 | if (in_len - done < todo) { |
| 625 | todo = in_len - done; |
| 626 | } |
| 627 | |
| 628 | for (size_t i = 0; i < todo; i++) { |
| 629 | out[done + i] = keystream[i] ^ in[done + i]; |
| 630 | } |
| 631 | |
| 632 | done += todo; |
| 633 | } |
| 634 | } |
| 635 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 636 | // gcm_siv_polyval evaluates POLYVAL at |auth_key| on the given plaintext and |
| 637 | // AD. The result is written to |out_tag|. |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 638 | static void gcm_siv_polyval( |
| 639 | uint8_t out_tag[16], const uint8_t *in, size_t in_len, const uint8_t *ad, |
| 640 | size_t ad_len, const uint8_t auth_key[16], |
| 641 | const uint8_t nonce[EVP_AEAD_AES_GCM_SIV_NONCE_LEN]) { |
| 642 | struct polyval_ctx polyval_ctx; |
| 643 | CRYPTO_POLYVAL_init(&polyval_ctx, auth_key); |
| 644 | |
| 645 | CRYPTO_POLYVAL_update_blocks(&polyval_ctx, ad, ad_len & ~15); |
| 646 | |
| 647 | uint8_t scratch[16]; |
| 648 | if (ad_len & 15) { |
| 649 | OPENSSL_memset(scratch, 0, sizeof(scratch)); |
| 650 | OPENSSL_memcpy(scratch, &ad[ad_len & ~15], ad_len & 15); |
| 651 | CRYPTO_POLYVAL_update_blocks(&polyval_ctx, scratch, sizeof(scratch)); |
| 652 | } |
| 653 | |
| 654 | CRYPTO_POLYVAL_update_blocks(&polyval_ctx, in, in_len & ~15); |
| 655 | if (in_len & 15) { |
| 656 | OPENSSL_memset(scratch, 0, sizeof(scratch)); |
| 657 | OPENSSL_memcpy(scratch, &in[in_len & ~15], in_len & 15); |
| 658 | CRYPTO_POLYVAL_update_blocks(&polyval_ctx, scratch, sizeof(scratch)); |
| 659 | } |
| 660 | |
| 661 | union { |
| 662 | uint8_t c[16]; |
| 663 | struct { |
| 664 | uint64_t ad; |
| 665 | uint64_t in; |
| 666 | } bitlens; |
| 667 | } length_block; |
| 668 | |
| 669 | length_block.bitlens.ad = ad_len * 8; |
| 670 | length_block.bitlens.in = in_len * 8; |
| 671 | CRYPTO_POLYVAL_update_blocks(&polyval_ctx, length_block.c, |
| 672 | sizeof(length_block)); |
| 673 | |
| 674 | CRYPTO_POLYVAL_finish(&polyval_ctx, out_tag); |
| 675 | for (size_t i = 0; i < EVP_AEAD_AES_GCM_SIV_NONCE_LEN; i++) { |
| 676 | out_tag[i] ^= nonce[i]; |
| 677 | } |
| 678 | out_tag[15] &= 0x7f; |
| 679 | } |
| 680 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 681 | // gcm_siv_record_keys contains the keys used for a specific GCM-SIV record. |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 682 | struct gcm_siv_record_keys { |
| 683 | uint8_t auth_key[16]; |
| 684 | union { |
| 685 | double align; |
| 686 | AES_KEY ks; |
| 687 | } enc_key; |
| 688 | block128_f enc_block; |
| 689 | }; |
| 690 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 691 | // gcm_siv_keys calculates the keys for a specific GCM-SIV record with the |
| 692 | // given nonce and writes them to |*out_keys|. |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 693 | static void gcm_siv_keys( |
| 694 | const struct aead_aes_gcm_siv_ctx *gcm_siv_ctx, |
| 695 | struct gcm_siv_record_keys *out_keys, |
| 696 | const uint8_t nonce[EVP_AEAD_AES_GCM_SIV_NONCE_LEN]) { |
| 697 | const AES_KEY *const key = &gcm_siv_ctx->ks.ks; |
| 698 | uint8_t key_material[(128 /* POLYVAL key */ + 256 /* max AES key */) / 8]; |
| 699 | const size_t blocks_needed = gcm_siv_ctx->is_256 ? 6 : 4; |
| 700 | |
| 701 | uint8_t counter[AES_BLOCK_SIZE]; |
| 702 | OPENSSL_memset(counter, 0, AES_BLOCK_SIZE - EVP_AEAD_AES_GCM_SIV_NONCE_LEN); |
| 703 | OPENSSL_memcpy(counter + AES_BLOCK_SIZE - EVP_AEAD_AES_GCM_SIV_NONCE_LEN, |
| 704 | nonce, EVP_AEAD_AES_GCM_SIV_NONCE_LEN); |
| 705 | for (size_t i = 0; i < blocks_needed; i++) { |
| 706 | counter[0] = i; |
| 707 | |
| 708 | uint8_t ciphertext[AES_BLOCK_SIZE]; |
| 709 | gcm_siv_ctx->kgk_block(counter, ciphertext, key); |
| 710 | OPENSSL_memcpy(&key_material[i * 8], ciphertext, 8); |
| 711 | } |
| 712 | |
| 713 | OPENSSL_memcpy(out_keys->auth_key, key_material, 16); |
| 714 | aes_ctr_set_key(&out_keys->enc_key.ks, NULL, &out_keys->enc_block, |
| 715 | key_material + 16, gcm_siv_ctx->is_256 ? 32 : 16); |
| 716 | } |
| 717 | |
Martin Kreichgauer | 74bce29 | 2017-06-23 14:49:22 -0700 | [diff] [blame] | 718 | static int aead_aes_gcm_siv_seal_scatter( |
| 719 | const EVP_AEAD_CTX *ctx, uint8_t *out, uint8_t *out_tag, |
| 720 | size_t *out_tag_len, size_t max_out_tag_len, const uint8_t *nonce, |
| 721 | size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *extra_in, |
| 722 | size_t extra_in_len, const uint8_t *ad, size_t ad_len) { |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 723 | const struct aead_aes_gcm_siv_ctx *gcm_siv_ctx = ctx->aead_state; |
| 724 | const uint64_t in_len_64 = in_len; |
| 725 | const uint64_t ad_len_64 = ad_len; |
| 726 | |
| 727 | if (in_len + EVP_AEAD_AES_GCM_SIV_TAG_LEN < in_len || |
| 728 | in_len_64 > (UINT64_C(1) << 36) || |
| 729 | ad_len_64 >= (UINT64_C(1) << 61)) { |
| 730 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TOO_LARGE); |
| 731 | return 0; |
| 732 | } |
| 733 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 734 | if (max_out_tag_len < EVP_AEAD_AES_GCM_SIV_TAG_LEN) { |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 735 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BUFFER_TOO_SMALL); |
| 736 | return 0; |
| 737 | } |
| 738 | |
| 739 | if (nonce_len != EVP_AEAD_AES_GCM_SIV_NONCE_LEN) { |
| 740 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_UNSUPPORTED_NONCE_SIZE); |
| 741 | return 0; |
| 742 | } |
| 743 | |
| 744 | struct gcm_siv_record_keys keys; |
| 745 | gcm_siv_keys(gcm_siv_ctx, &keys, nonce); |
| 746 | |
| 747 | uint8_t tag[16]; |
| 748 | gcm_siv_polyval(tag, in, in_len, ad, ad_len, keys.auth_key, nonce); |
| 749 | keys.enc_block(tag, tag, &keys.enc_key.ks); |
| 750 | |
| 751 | gcm_siv_crypt(out, in, in_len, tag, keys.enc_block, &keys.enc_key.ks); |
| 752 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 753 | OPENSSL_memcpy(out_tag, tag, EVP_AEAD_AES_GCM_SIV_TAG_LEN); |
| 754 | *out_tag_len = EVP_AEAD_AES_GCM_SIV_TAG_LEN; |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 755 | |
| 756 | return 1; |
| 757 | } |
| 758 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 759 | static int aead_aes_gcm_siv_open_gather(const EVP_AEAD_CTX *ctx, uint8_t *out, |
| 760 | const uint8_t *nonce, size_t nonce_len, |
| 761 | const uint8_t *in, size_t in_len, |
| 762 | const uint8_t *in_tag, |
| 763 | size_t in_tag_len, const uint8_t *ad, |
| 764 | size_t ad_len) { |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 765 | const uint64_t ad_len_64 = ad_len; |
| 766 | if (ad_len_64 >= (UINT64_C(1) << 61)) { |
| 767 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TOO_LARGE); |
| 768 | return 0; |
| 769 | } |
| 770 | |
| 771 | const uint64_t in_len_64 = in_len; |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 772 | if (in_tag_len != EVP_AEAD_AES_GCM_SIV_TAG_LEN || |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 773 | in_len_64 > (UINT64_C(1) << 36) + AES_BLOCK_SIZE) { |
| 774 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BAD_DECRYPT); |
| 775 | return 0; |
| 776 | } |
| 777 | |
| 778 | if (nonce_len != EVP_AEAD_AES_GCM_SIV_NONCE_LEN) { |
| 779 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_UNSUPPORTED_NONCE_SIZE); |
| 780 | return 0; |
| 781 | } |
| 782 | |
| 783 | const struct aead_aes_gcm_siv_ctx *gcm_siv_ctx = ctx->aead_state; |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 784 | |
| 785 | struct gcm_siv_record_keys keys; |
| 786 | gcm_siv_keys(gcm_siv_ctx, &keys, nonce); |
| 787 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 788 | gcm_siv_crypt(out, in, in_len, in_tag, keys.enc_block, &keys.enc_key.ks); |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 789 | |
| 790 | uint8_t expected_tag[EVP_AEAD_AES_GCM_SIV_TAG_LEN]; |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 791 | gcm_siv_polyval(expected_tag, out, in_len, ad, ad_len, keys.auth_key, nonce); |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 792 | keys.enc_block(expected_tag, expected_tag, &keys.enc_key.ks); |
| 793 | |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 794 | if (CRYPTO_memcmp(expected_tag, in_tag, sizeof(expected_tag)) != 0) { |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 795 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BAD_DECRYPT); |
| 796 | return 0; |
| 797 | } |
| 798 | |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 799 | return 1; |
| 800 | } |
| 801 | |
| 802 | static const EVP_AEAD aead_aes_128_gcm_siv = { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 803 | 16, // key length |
| 804 | EVP_AEAD_AES_GCM_SIV_NONCE_LEN, // nonce length |
| 805 | EVP_AEAD_AES_GCM_SIV_TAG_LEN, // overhead |
| 806 | EVP_AEAD_AES_GCM_SIV_TAG_LEN, // max tag length |
| 807 | 0, // seal_scatter_supports_extra_in |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 808 | |
| 809 | aead_aes_gcm_siv_init, |
| 810 | NULL /* init_with_direction */, |
| 811 | aead_aes_gcm_siv_cleanup, |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 812 | NULL /* open */, |
| 813 | aead_aes_gcm_siv_seal_scatter, |
| 814 | aead_aes_gcm_siv_open_gather, |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 815 | NULL /* get_iv */, |
Martin Kreichgauer | abbf365 | 2017-07-21 16:27:54 -0700 | [diff] [blame] | 816 | NULL /* tag_len */, |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 817 | }; |
| 818 | |
| 819 | static const EVP_AEAD aead_aes_256_gcm_siv = { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 820 | 32, // key length |
| 821 | EVP_AEAD_AES_GCM_SIV_NONCE_LEN, // nonce length |
| 822 | EVP_AEAD_AES_GCM_SIV_TAG_LEN, // overhead |
| 823 | EVP_AEAD_AES_GCM_SIV_TAG_LEN, // max tag length |
| 824 | 0, // seal_scatter_supports_extra_in |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 825 | |
| 826 | aead_aes_gcm_siv_init, |
| 827 | NULL /* init_with_direction */, |
| 828 | aead_aes_gcm_siv_cleanup, |
Martin Kreichgauer | 18d9f28 | 2017-06-06 12:29:48 -0700 | [diff] [blame] | 829 | NULL /* open */, |
| 830 | aead_aes_gcm_siv_seal_scatter, |
| 831 | aead_aes_gcm_siv_open_gather, |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 832 | NULL /* get_iv */, |
Martin Kreichgauer | abbf365 | 2017-07-21 16:27:54 -0700 | [diff] [blame] | 833 | NULL /* tag_len */, |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 834 | }; |
| 835 | |
Adam Langley | b0521e3 | 2017-04-29 15:50:26 -0700 | [diff] [blame] | 836 | #if defined(OPENSSL_X86_64) && !defined(OPENSSL_NO_ASM) |
| 837 | |
| 838 | static char avx_aesni_capable(void) { |
| 839 | const uint32_t ecx = OPENSSL_ia32cap_P[1]; |
| 840 | |
| 841 | return (ecx & (1 << (57 - 32))) != 0 /* AESNI */ && |
| 842 | (ecx & (1 << 28)) != 0 /* AVX */; |
| 843 | } |
| 844 | |
| 845 | const EVP_AEAD *EVP_aead_aes_128_gcm_siv(void) { |
| 846 | if (avx_aesni_capable()) { |
| 847 | return &aead_aes_128_gcm_siv_asm; |
| 848 | } |
| 849 | return &aead_aes_128_gcm_siv; |
| 850 | } |
| 851 | |
| 852 | const EVP_AEAD *EVP_aead_aes_256_gcm_siv(void) { |
| 853 | if (avx_aesni_capable()) { |
| 854 | return &aead_aes_256_gcm_siv_asm; |
| 855 | } |
| 856 | return &aead_aes_256_gcm_siv; |
| 857 | } |
| 858 | |
| 859 | #else |
| 860 | |
Adam Langley | 2042253 | 2017-04-07 11:46:13 -0700 | [diff] [blame] | 861 | const EVP_AEAD *EVP_aead_aes_128_gcm_siv(void) { |
| 862 | return &aead_aes_128_gcm_siv; |
| 863 | } |
| 864 | |
| 865 | const EVP_AEAD *EVP_aead_aes_256_gcm_siv(void) { |
| 866 | return &aead_aes_256_gcm_siv; |
| 867 | } |
| 868 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 869 | #endif // X86_64 && !NO_ASM |