/src/boringssl/crypto/cipher/e_chacha20poly1305.cc
Line | Count | Source (jump to first uncovered line) |
1 | | // Copyright 2014 The BoringSSL Authors |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); |
4 | | // you may not use this file except in compliance with the License. |
5 | | // You may obtain a copy of the License at |
6 | | // |
7 | | // https://www.apache.org/licenses/LICENSE-2.0 |
8 | | // |
9 | | // Unless required by applicable law or agreed to in writing, software |
10 | | // distributed under the License is distributed on an "AS IS" BASIS, |
11 | | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 | | // See the License for the specific language governing permissions and |
13 | | // limitations under the License. |
14 | | |
15 | | #include <openssl/aead.h> |
16 | | |
17 | | #include <assert.h> |
18 | | #include <string.h> |
19 | | |
20 | | #include <openssl/chacha.h> |
21 | | #include <openssl/cipher.h> |
22 | | #include <openssl/err.h> |
23 | | #include <openssl/mem.h> |
24 | | #include <openssl/poly1305.h> |
25 | | |
26 | | #include "internal.h" |
27 | | #include "../chacha/internal.h" |
28 | | #include "../fipsmodule/cipher/internal.h" |
29 | | #include "../internal.h" |
30 | | |
31 | | struct aead_chacha20_poly1305_ctx { |
32 | | uint8_t key[32]; |
33 | | }; |
34 | | |
35 | | static_assert(sizeof(((EVP_AEAD_CTX *)NULL)->state) >= |
36 | | sizeof(struct aead_chacha20_poly1305_ctx), |
37 | | "AEAD state is too small"); |
38 | | static_assert(alignof(union evp_aead_ctx_st_state) >= |
39 | | alignof(struct aead_chacha20_poly1305_ctx), |
40 | | "AEAD state has insufficient alignment"); |
41 | | |
42 | | static int aead_chacha20_poly1305_init(EVP_AEAD_CTX *ctx, const uint8_t *key, |
43 | 19.1k | size_t key_len, size_t tag_len) { |
44 | 19.1k | struct aead_chacha20_poly1305_ctx *c20_ctx = |
45 | 19.1k | (struct aead_chacha20_poly1305_ctx *)&ctx->state; |
46 | | |
47 | 19.1k | if (tag_len == 0) { |
48 | 19.1k | tag_len = POLY1305_TAG_LEN; |
49 | 19.1k | } |
50 | | |
51 | 19.1k | if (tag_len > POLY1305_TAG_LEN) { |
52 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TOO_LARGE); |
53 | 0 | return 0; |
54 | 0 | } |
55 | | |
56 | 19.1k | if (key_len != sizeof(c20_ctx->key)) { |
57 | 0 | return 0; // internal error - EVP_AEAD_CTX_init should catch this. |
58 | 0 | } |
59 | | |
60 | 19.1k | OPENSSL_memcpy(c20_ctx->key, key, key_len); |
61 | 19.1k | ctx->tag_len = tag_len; |
62 | | |
63 | 19.1k | return 1; |
64 | 19.1k | } |
65 | | |
66 | 19.1k | static void aead_chacha20_poly1305_cleanup(EVP_AEAD_CTX *ctx) {} |
67 | | |
68 | 0 | static void poly1305_update_length(poly1305_state *poly1305, size_t data_len) { |
69 | 0 | uint8_t length_bytes[8]; |
70 | |
|
71 | 0 | for (unsigned i = 0; i < sizeof(length_bytes); i++) { |
72 | 0 | length_bytes[i] = data_len; |
73 | 0 | data_len >>= 8; |
74 | 0 | } |
75 | |
|
76 | 0 | CRYPTO_poly1305_update(poly1305, length_bytes, sizeof(length_bytes)); |
77 | 0 | } |
78 | | |
79 | | // calc_tag fills |tag| with the authentication tag for the given inputs. |
80 | | static void calc_tag(uint8_t tag[POLY1305_TAG_LEN], const uint8_t *key, |
81 | | const uint8_t nonce[12], const uint8_t *ad, size_t ad_len, |
82 | | const uint8_t *ciphertext, size_t ciphertext_len, |
83 | | const uint8_t *ciphertext_extra, |
84 | 0 | size_t ciphertext_extra_len) { |
85 | 0 | alignas(16) uint8_t poly1305_key[32]; |
86 | 0 | OPENSSL_memset(poly1305_key, 0, sizeof(poly1305_key)); |
87 | 0 | CRYPTO_chacha_20(poly1305_key, poly1305_key, sizeof(poly1305_key), key, nonce, |
88 | 0 | 0); |
89 | |
|
90 | 0 | static const uint8_t padding[16] = { 0 }; // Padding is all zeros. |
91 | 0 | poly1305_state ctx; |
92 | 0 | CRYPTO_poly1305_init(&ctx, poly1305_key); |
93 | 0 | CRYPTO_poly1305_update(&ctx, ad, ad_len); |
94 | 0 | if (ad_len % 16 != 0) { |
95 | 0 | CRYPTO_poly1305_update(&ctx, padding, sizeof(padding) - (ad_len % 16)); |
96 | 0 | } |
97 | 0 | CRYPTO_poly1305_update(&ctx, ciphertext, ciphertext_len); |
98 | 0 | CRYPTO_poly1305_update(&ctx, ciphertext_extra, ciphertext_extra_len); |
99 | 0 | const size_t ciphertext_total = ciphertext_len + ciphertext_extra_len; |
100 | 0 | if (ciphertext_total % 16 != 0) { |
101 | 0 | CRYPTO_poly1305_update(&ctx, padding, |
102 | 0 | sizeof(padding) - (ciphertext_total % 16)); |
103 | 0 | } |
104 | 0 | poly1305_update_length(&ctx, ad_len); |
105 | 0 | poly1305_update_length(&ctx, ciphertext_total); |
106 | 0 | CRYPTO_poly1305_finish(&ctx, tag); |
107 | 0 | } |
108 | | |
109 | | static int chacha20_poly1305_seal_scatter( |
110 | | const uint8_t *key, uint8_t *out, uint8_t *out_tag, |
111 | | size_t *out_tag_len, size_t max_out_tag_len, const uint8_t *nonce, |
112 | | size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *extra_in, |
113 | 325 | size_t extra_in_len, const uint8_t *ad, size_t ad_len, size_t tag_len) { |
114 | 325 | if (extra_in_len + tag_len < tag_len) { |
115 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TOO_LARGE); |
116 | 0 | return 0; |
117 | 0 | } |
118 | 325 | if (max_out_tag_len < tag_len + extra_in_len) { |
119 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BUFFER_TOO_SMALL); |
120 | 0 | return 0; |
121 | 0 | } |
122 | 325 | if (nonce_len != 12) { |
123 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_UNSUPPORTED_NONCE_SIZE); |
124 | 0 | return 0; |
125 | 0 | } |
126 | | |
127 | | // |CRYPTO_chacha_20| uses a 32-bit block counter. Therefore we disallow |
128 | | // individual operations that work on more than 256GB at a time. |
129 | | // |in_len_64| is needed because, on 32-bit platforms, size_t is only |
130 | | // 32-bits and this produces a warning because it's always false. |
131 | | // Casting to uint64_t inside the conditional is not sufficient to stop |
132 | | // the warning. |
133 | 325 | const uint64_t in_len_64 = in_len; |
134 | 325 | if (in_len_64 >= (UINT64_C(1) << 32) * 64 - 64) { |
135 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TOO_LARGE); |
136 | 0 | return 0; |
137 | 0 | } |
138 | | |
139 | 325 | if (max_out_tag_len < tag_len) { |
140 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BUFFER_TOO_SMALL); |
141 | 0 | return 0; |
142 | 0 | } |
143 | | |
144 | | // The the extra input is given, it is expected to be very short and so is |
145 | | // encrypted byte-by-byte first. |
146 | 325 | if (extra_in_len) { |
147 | 215 | static const size_t kChaChaBlockSize = 64; |
148 | 215 | uint32_t block_counter = (uint32_t)(1 + (in_len / kChaChaBlockSize)); |
149 | 215 | size_t offset = in_len % kChaChaBlockSize; |
150 | 215 | uint8_t block[64 /* kChaChaBlockSize */]; |
151 | | |
152 | 430 | for (size_t done = 0; done < extra_in_len; block_counter++) { |
153 | 215 | memset(block, 0, sizeof(block)); |
154 | 215 | CRYPTO_chacha_20(block, block, sizeof(block), key, nonce, |
155 | 215 | block_counter); |
156 | 430 | for (size_t i = offset; i < sizeof(block) && done < extra_in_len; |
157 | 215 | i++, done++) { |
158 | 215 | out_tag[done] = extra_in[done] ^ block[i]; |
159 | 215 | } |
160 | 215 | offset = 0; |
161 | 215 | } |
162 | 215 | } |
163 | | |
164 | 325 | union chacha20_poly1305_seal_data data; |
165 | 325 | if (chacha20_poly1305_asm_capable()) { |
166 | 325 | OPENSSL_memcpy(data.in.key, key, 32); |
167 | 325 | data.in.counter = 0; |
168 | 325 | OPENSSL_memcpy(data.in.nonce, nonce, 12); |
169 | 325 | data.in.extra_ciphertext = out_tag; |
170 | 325 | data.in.extra_ciphertext_len = extra_in_len; |
171 | 325 | chacha20_poly1305_seal(out, in, in_len, ad, ad_len, &data); |
172 | 325 | } else { |
173 | 0 | CRYPTO_chacha_20(out, in, in_len, key, nonce, 1); |
174 | 0 | calc_tag(data.out.tag, key, nonce, ad, ad_len, out, in_len, out_tag, |
175 | 0 | extra_in_len); |
176 | 0 | } |
177 | | |
178 | 325 | OPENSSL_memcpy(out_tag + extra_in_len, data.out.tag, tag_len); |
179 | 325 | *out_tag_len = extra_in_len + tag_len; |
180 | 325 | return 1; |
181 | 325 | } |
182 | | |
183 | | static int aead_chacha20_poly1305_seal_scatter( |
184 | | const EVP_AEAD_CTX *ctx, uint8_t *out, uint8_t *out_tag, |
185 | | size_t *out_tag_len, size_t max_out_tag_len, const uint8_t *nonce, |
186 | | size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *extra_in, |
187 | 325 | size_t extra_in_len, const uint8_t *ad, size_t ad_len) { |
188 | 325 | const struct aead_chacha20_poly1305_ctx *c20_ctx = |
189 | 325 | (struct aead_chacha20_poly1305_ctx *)&ctx->state; |
190 | | |
191 | 325 | return chacha20_poly1305_seal_scatter( |
192 | 325 | c20_ctx->key, out, out_tag, out_tag_len, max_out_tag_len, nonce, |
193 | 325 | nonce_len, in, in_len, extra_in, extra_in_len, ad, ad_len, ctx->tag_len); |
194 | 325 | } |
195 | | |
196 | | static int aead_xchacha20_poly1305_seal_scatter( |
197 | | const EVP_AEAD_CTX *ctx, uint8_t *out, uint8_t *out_tag, |
198 | | size_t *out_tag_len, size_t max_out_tag_len, const uint8_t *nonce, |
199 | | size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *extra_in, |
200 | 0 | size_t extra_in_len, const uint8_t *ad, size_t ad_len) { |
201 | 0 | const struct aead_chacha20_poly1305_ctx *c20_ctx = |
202 | 0 | (struct aead_chacha20_poly1305_ctx *)&ctx->state; |
203 | |
|
204 | 0 | if (nonce_len != 24) { |
205 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_UNSUPPORTED_NONCE_SIZE); |
206 | 0 | return 0; |
207 | 0 | } |
208 | | |
209 | 0 | alignas(4) uint8_t derived_key[32]; |
210 | 0 | alignas(4) uint8_t derived_nonce[12]; |
211 | 0 | CRYPTO_hchacha20(derived_key, c20_ctx->key, nonce); |
212 | 0 | OPENSSL_memset(derived_nonce, 0, 4); |
213 | 0 | OPENSSL_memcpy(&derived_nonce[4], &nonce[16], 8); |
214 | |
|
215 | 0 | return chacha20_poly1305_seal_scatter( |
216 | 0 | derived_key, out, out_tag, out_tag_len, max_out_tag_len, |
217 | 0 | derived_nonce, sizeof(derived_nonce), in, in_len, extra_in, extra_in_len, |
218 | 0 | ad, ad_len, ctx->tag_len); |
219 | 0 | } |
220 | | |
221 | | static int chacha20_poly1305_open_gather( |
222 | | const uint8_t *key, uint8_t *out, const uint8_t *nonce, |
223 | | size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *in_tag, |
224 | 859 | size_t in_tag_len, const uint8_t *ad, size_t ad_len, size_t tag_len) { |
225 | 859 | if (nonce_len != 12) { |
226 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_UNSUPPORTED_NONCE_SIZE); |
227 | 0 | return 0; |
228 | 0 | } |
229 | | |
230 | 859 | if (in_tag_len != tag_len) { |
231 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BAD_DECRYPT); |
232 | 0 | return 0; |
233 | 0 | } |
234 | | |
235 | | // |CRYPTO_chacha_20| uses a 32-bit block counter. Therefore we disallow |
236 | | // individual operations that work on more than 256GB at a time. |
237 | | // |in_len_64| is needed because, on 32-bit platforms, size_t is only |
238 | | // 32-bits and this produces a warning because it's always false. |
239 | | // Casting to uint64_t inside the conditional is not sufficient to stop |
240 | | // the warning. |
241 | 859 | const uint64_t in_len_64 = in_len; |
242 | 859 | if (in_len_64 >= (UINT64_C(1) << 32) * 64 - 64) { |
243 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_TOO_LARGE); |
244 | 0 | return 0; |
245 | 0 | } |
246 | | |
247 | 859 | union chacha20_poly1305_open_data data; |
248 | 859 | if (chacha20_poly1305_asm_capable()) { |
249 | 859 | OPENSSL_memcpy(data.in.key, key, 32); |
250 | 859 | data.in.counter = 0; |
251 | 859 | OPENSSL_memcpy(data.in.nonce, nonce, 12); |
252 | 859 | chacha20_poly1305_open(out, in, in_len, ad, ad_len, &data); |
253 | 859 | } else { |
254 | 0 | calc_tag(data.out.tag, key, nonce, ad, ad_len, in, in_len, NULL, 0); |
255 | 0 | CRYPTO_chacha_20(out, in, in_len, key, nonce, 1); |
256 | 0 | } |
257 | | |
258 | 859 | if (CRYPTO_memcmp(data.out.tag, in_tag, tag_len) != 0) { |
259 | 274 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_BAD_DECRYPT); |
260 | 274 | return 0; |
261 | 274 | } |
262 | | |
263 | 585 | return 1; |
264 | 859 | } |
265 | | |
266 | | static int aead_chacha20_poly1305_open_gather( |
267 | | const EVP_AEAD_CTX *ctx, uint8_t *out, const uint8_t *nonce, |
268 | | size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *in_tag, |
269 | 859 | size_t in_tag_len, const uint8_t *ad, size_t ad_len) { |
270 | 859 | const struct aead_chacha20_poly1305_ctx *c20_ctx = |
271 | 859 | (struct aead_chacha20_poly1305_ctx *)&ctx->state; |
272 | | |
273 | 859 | return chacha20_poly1305_open_gather(c20_ctx->key, out, nonce, nonce_len, in, |
274 | 859 | in_len, in_tag, in_tag_len, ad, ad_len, |
275 | 859 | ctx->tag_len); |
276 | 859 | } |
277 | | |
278 | | static int aead_xchacha20_poly1305_open_gather( |
279 | | const EVP_AEAD_CTX *ctx, uint8_t *out, const uint8_t *nonce, |
280 | | size_t nonce_len, const uint8_t *in, size_t in_len, const uint8_t *in_tag, |
281 | 0 | size_t in_tag_len, const uint8_t *ad, size_t ad_len) { |
282 | 0 | const struct aead_chacha20_poly1305_ctx *c20_ctx = |
283 | 0 | (struct aead_chacha20_poly1305_ctx *)&ctx->state; |
284 | |
|
285 | 0 | if (nonce_len != 24) { |
286 | 0 | OPENSSL_PUT_ERROR(CIPHER, CIPHER_R_UNSUPPORTED_NONCE_SIZE); |
287 | 0 | return 0; |
288 | 0 | } |
289 | | |
290 | 0 | alignas(4) uint8_t derived_key[32]; |
291 | 0 | alignas(4) uint8_t derived_nonce[12]; |
292 | 0 | CRYPTO_hchacha20(derived_key, c20_ctx->key, nonce); |
293 | 0 | OPENSSL_memset(derived_nonce, 0, 4); |
294 | 0 | OPENSSL_memcpy(&derived_nonce[4], &nonce[16], 8); |
295 | |
|
296 | 0 | return chacha20_poly1305_open_gather( |
297 | 0 | derived_key, out, derived_nonce, sizeof(derived_nonce), in, in_len, |
298 | 0 | in_tag, in_tag_len, ad, ad_len, ctx->tag_len); |
299 | 0 | } |
300 | | |
301 | | static const EVP_AEAD aead_chacha20_poly1305 = { |
302 | | 32, // key len |
303 | | 12, // nonce len |
304 | | POLY1305_TAG_LEN, // overhead |
305 | | POLY1305_TAG_LEN, // max tag length |
306 | | 1, // seal_scatter_supports_extra_in |
307 | | |
308 | | aead_chacha20_poly1305_init, |
309 | | NULL, // init_with_direction |
310 | | aead_chacha20_poly1305_cleanup, |
311 | | NULL /* open */, |
312 | | aead_chacha20_poly1305_seal_scatter, |
313 | | aead_chacha20_poly1305_open_gather, |
314 | | NULL, // get_iv |
315 | | NULL, // tag_len |
316 | | }; |
317 | | |
318 | | static const EVP_AEAD aead_xchacha20_poly1305 = { |
319 | | 32, // key len |
320 | | 24, // nonce len |
321 | | POLY1305_TAG_LEN, // overhead |
322 | | POLY1305_TAG_LEN, // max tag length |
323 | | 1, // seal_scatter_supports_extra_in |
324 | | |
325 | | aead_chacha20_poly1305_init, |
326 | | NULL, // init_with_direction |
327 | | aead_chacha20_poly1305_cleanup, |
328 | | NULL /* open */, |
329 | | aead_xchacha20_poly1305_seal_scatter, |
330 | | aead_xchacha20_poly1305_open_gather, |
331 | | NULL, // get_iv |
332 | | NULL, // tag_len |
333 | | }; |
334 | | |
335 | 38.2k | const EVP_AEAD *EVP_aead_chacha20_poly1305(void) { |
336 | 38.2k | return &aead_chacha20_poly1305; |
337 | 38.2k | } |
338 | | |
339 | 0 | const EVP_AEAD *EVP_aead_xchacha20_poly1305(void) { |
340 | 0 | return &aead_xchacha20_poly1305; |
341 | 0 | } |