blob: 89b12775b1c4896401fe4eacddfb69a8a1724c60 [file] [log] [blame]
Matt Caswella14e9ff2015-02-13 23:25:33 +00001/*
Rich Salz440e5d82016-05-17 14:20:24 -04002 * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
Matt Caswella14e9ff2015-02-13 23:25:33 +00003 *
Rich Salz440e5d82016-05-17 14:20:24 -04004 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
Matt Caswella14e9ff2015-02-13 23:25:33 +00008 */
9
Andy Polyakovf1f5ee12016-06-26 13:40:15 +020010#if defined(_WIN32)
11# include <windows.h>
12#endif
13
Matt Caswella14e9ff2015-02-13 23:25:33 +000014#include <stdio.h>
15#include <string.h>
16
17#include <openssl/engine.h>
18#include <openssl/sha.h>
Matt Caswell2f2c9ca2015-11-27 12:02:25 +000019#include <openssl/aes.h>
Matt Caswella14e9ff2015-02-13 23:25:33 +000020#include <openssl/rsa.h>
21#include <openssl/evp.h>
22#include <openssl/async.h>
23#include <openssl/bn.h>
Matt Caswell7b9f8f72016-02-08 16:43:03 +000024#include <openssl/crypto.h>
Matt Caswell98ee7542015-09-22 11:11:24 +010025#include <openssl/ssl.h>
26#include <openssl/modes.h>
Matt Caswella14e9ff2015-02-13 23:25:33 +000027
Matt Caswellff75a252016-01-25 15:28:57 +000028#if (defined(OPENSSL_SYS_UNIX) || defined(OPENSSL_SYS_CYGWIN)) && defined(OPENSSL_THREADS)
29# undef ASYNC_POSIX
30# define ASYNC_POSIX
31# include <unistd.h>
32#elif defined(_WIN32)
33# undef ASYNC_WIN
34# define ASYNC_WIN
Matt Caswellff75a252016-01-25 15:28:57 +000035#endif
36
Matt Caswella14e9ff2015-02-13 23:25:33 +000037#define DASYNC_LIB_NAME "DASYNC"
38#include "e_dasync_err.c"
39
40/* Engine Id and Name */
41static const char *engine_dasync_id = "dasync";
42static const char *engine_dasync_name = "Dummy Async engine support";
43
44
45/* Engine Lifetime functions */
46static int dasync_destroy(ENGINE *e);
47static int dasync_init(ENGINE *e);
48static int dasync_finish(ENGINE *e);
Matt Caswellb3599db2016-04-12 12:20:16 +010049void engine_load_dasync_int(void);
Matt Caswella14e9ff2015-02-13 23:25:33 +000050
51
52/* Set up digests. Just SHA1 for now */
53static int dasync_digests(ENGINE *e, const EVP_MD **digest,
54 const int **nids, int nid);
55
Matt Caswellf4da39d2015-07-24 08:15:31 +010056static void dummy_pause_job(void);
Matt Caswella14e9ff2015-02-13 23:25:33 +000057
58/* SHA1 */
Matt Caswell46a283c2015-10-09 16:45:25 +010059static int dasync_sha1_init(EVP_MD_CTX *ctx);
60static int dasync_sha1_update(EVP_MD_CTX *ctx, const void *data,
Kurt Roeckx652d4a82015-11-21 17:58:12 +010061 size_t count);
Matt Caswell46a283c2015-10-09 16:45:25 +010062static int dasync_sha1_final(EVP_MD_CTX *ctx, unsigned char *md);
Matt Caswella14e9ff2015-02-13 23:25:33 +000063
Matt Caswell11780ac2016-03-07 11:08:02 +000064/*
65 * Holds the EVP_MD object for sha1 in this engine. Set up once only during
66 * engine bind and can then be reused many times.
67 */
Richard Levittecddcea82015-11-30 10:24:12 +010068static EVP_MD *_hidden_sha1_md = NULL;
69static const EVP_MD *dasync_sha1(void)
70{
Richard Levittecddcea82015-11-30 10:24:12 +010071 return _hidden_sha1_md;
72}
73static void destroy_digests(void)
74{
75 EVP_MD_meth_free(_hidden_sha1_md);
76 _hidden_sha1_md = NULL;
77}
Matt Caswell11780ac2016-03-07 11:08:02 +000078
Richard Levittecddcea82015-11-30 10:24:12 +010079static int dasync_digest_nids(const int **nids)
80{
81 static int digest_nids[2] = { 0, 0 };
82 static int pos = 0;
83 static int init = 0;
84
85 if (!init) {
86 const EVP_MD *md;
87 if ((md = dasync_sha1()) != NULL)
88 digest_nids[pos++] = EVP_MD_type(md);
89 digest_nids[pos] = 0;
90 init = 1;
91 }
92 *nids = digest_nids;
93 return pos;
94}
Matt Caswella14e9ff2015-02-13 23:25:33 +000095
96/* RSA */
97
98static int dasync_pub_enc(int flen, const unsigned char *from,
99 unsigned char *to, RSA *rsa, int padding);
100static int dasync_pub_dec(int flen, const unsigned char *from,
101 unsigned char *to, RSA *rsa, int padding);
102static int dasync_rsa_priv_enc(int flen, const unsigned char *from,
103 unsigned char *to, RSA *rsa, int padding);
104static int dasync_rsa_priv_dec(int flen, const unsigned char *from,
105 unsigned char *to, RSA *rsa, int padding);
106static int dasync_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa,
107 BN_CTX *ctx);
108
109static int dasync_rsa_init(RSA *rsa);
110static int dasync_rsa_finish(RSA *rsa);
111
Richard Levitteb72c9122016-04-02 18:46:17 +0200112static RSA_METHOD *dasync_rsa_method = NULL;
Matt Caswella14e9ff2015-02-13 23:25:33 +0000113
Matt Caswell98ee7542015-09-22 11:11:24 +0100114/* AES */
115
116static int dasync_aes128_cbc_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
117 void *ptr);
Matt Caswell98ee7542015-09-22 11:11:24 +0100118static int dasync_aes128_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
119 const unsigned char *iv, int enc);
Matt Caswell98ee7542015-09-22 11:11:24 +0100120static int dasync_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
121 const unsigned char *in, size_t inl);
Matt Caswell98ee7542015-09-22 11:11:24 +0100122static int dasync_aes128_cbc_cleanup(EVP_CIPHER_CTX *ctx);
123
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000124static int dasync_aes128_cbc_hmac_sha1_ctrl(EVP_CIPHER_CTX *ctx, int type,
125 int arg, void *ptr);
126static int dasync_aes128_cbc_hmac_sha1_init_key(EVP_CIPHER_CTX *ctx,
127 const unsigned char *key,
128 const unsigned char *iv,
129 int enc);
130static int dasync_aes128_cbc_hmac_sha1_cipher(EVP_CIPHER_CTX *ctx,
131 unsigned char *out,
132 const unsigned char *in,
133 size_t inl);
134static int dasync_aes128_cbc_hmac_sha1_cleanup(EVP_CIPHER_CTX *ctx);
135
Matt Caswelle38c2e82016-03-07 12:03:48 +0000136struct dasync_pipeline_ctx {
Matt Caswell98ee7542015-09-22 11:11:24 +0100137 void *inner_cipher_data;
Matt Caswell98ee7542015-09-22 11:11:24 +0100138 unsigned int numpipes;
139 unsigned char **inbufs;
140 unsigned char **outbufs;
141 size_t *lens;
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000142 int enc;
143 unsigned char tlsaad[SSL_MAX_PIPELINES][EVP_AEAD_TLS1_AAD_LEN];
144 unsigned int aadctr;
Matt Caswell98ee7542015-09-22 11:11:24 +0100145};
146
Matt Caswell11780ac2016-03-07 11:08:02 +0000147/*
148 * Holds the EVP_CIPHER object for aes_128_cbc in this engine. Set up once only
149 * during engine bind and can then be reused many times.
150 */
Matt Caswell98ee7542015-09-22 11:11:24 +0100151static EVP_CIPHER *_hidden_aes_128_cbc = NULL;
152static const EVP_CIPHER *dasync_aes_128_cbc(void)
153{
Matt Caswell98ee7542015-09-22 11:11:24 +0100154 return _hidden_aes_128_cbc;
155}
156
Matt Caswell11780ac2016-03-07 11:08:02 +0000157/*
158 * Holds the EVP_CIPHER object for aes_128_cbc_hmac_sha1 in this engine. Set up
159 * once only during engine bind and can then be reused many times.
160 */
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000161static EVP_CIPHER *_hidden_aes_128_cbc_hmac_sha1 = NULL;
162static const EVP_CIPHER *dasync_aes_128_cbc_hmac_sha1(void)
163{
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000164 return _hidden_aes_128_cbc_hmac_sha1;
165}
Matt Caswell98ee7542015-09-22 11:11:24 +0100166
Matt Caswell11780ac2016-03-07 11:08:02 +0000167static void destroy_ciphers(void)
168{
169 EVP_CIPHER_meth_free(_hidden_aes_128_cbc);
170 EVP_CIPHER_meth_free(_hidden_aes_128_cbc_hmac_sha1);
171 _hidden_aes_128_cbc = NULL;
172 _hidden_aes_128_cbc_hmac_sha1 = NULL;
173}
174
Matt Caswell98ee7542015-09-22 11:11:24 +0100175static int dasync_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
176 const int **nids, int nid);
177
Matt Caswell98ee7542015-09-22 11:11:24 +0100178static int dasync_cipher_nids[] = {
179 NID_aes_128_cbc,
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000180 NID_aes_128_cbc_hmac_sha1,
Matt Caswell98ee7542015-09-22 11:11:24 +0100181 0
182};
Matt Caswell98ee7542015-09-22 11:11:24 +0100183
Matt Caswella14e9ff2015-02-13 23:25:33 +0000184static int bind_dasync(ENGINE *e)
185{
Richard Levitteb72c9122016-04-02 18:46:17 +0200186 /* Setup RSA_METHOD */
187 if ((dasync_rsa_method = RSA_meth_new("Dummy Async RSA method", 0)) == NULL
188 || RSA_meth_set_pub_enc(dasync_rsa_method, dasync_pub_enc) == 0
189 || RSA_meth_set_pub_dec(dasync_rsa_method, dasync_pub_dec) == 0
190 || RSA_meth_set_priv_enc(dasync_rsa_method, dasync_rsa_priv_enc) == 0
Matt Caswell8aac5d22016-04-26 16:28:26 +0100191 || RSA_meth_set_priv_dec(dasync_rsa_method, dasync_rsa_priv_dec) == 0
Richard Levitteb72c9122016-04-02 18:46:17 +0200192 || RSA_meth_set_mod_exp(dasync_rsa_method, dasync_rsa_mod_exp) == 0
193 || RSA_meth_set_bn_mod_exp(dasync_rsa_method, BN_mod_exp_mont) == 0
194 || RSA_meth_set_init(dasync_rsa_method, dasync_rsa_init) == 0
195 || RSA_meth_set_finish(dasync_rsa_method, dasync_rsa_finish) == 0) {
196 DASYNCerr(DASYNC_F_BIND_DASYNC, DASYNC_R_INIT_FAILED);
197 return 0;
198 }
199
Matt Caswella14e9ff2015-02-13 23:25:33 +0000200 /* Ensure the dasync error handling is set up */
201 ERR_load_DASYNC_strings();
202
203 if (!ENGINE_set_id(e, engine_dasync_id)
204 || !ENGINE_set_name(e, engine_dasync_name)
Richard Levitteb72c9122016-04-02 18:46:17 +0200205 || !ENGINE_set_RSA(e, dasync_rsa_method)
Matt Caswella14e9ff2015-02-13 23:25:33 +0000206 || !ENGINE_set_digests(e, dasync_digests)
Matt Caswell98ee7542015-09-22 11:11:24 +0100207 || !ENGINE_set_ciphers(e, dasync_ciphers)
Matt Caswella14e9ff2015-02-13 23:25:33 +0000208 || !ENGINE_set_destroy_function(e, dasync_destroy)
209 || !ENGINE_set_init_function(e, dasync_init)
210 || !ENGINE_set_finish_function(e, dasync_finish)) {
211 DASYNCerr(DASYNC_F_BIND_DASYNC, DASYNC_R_INIT_FAILED);
212 return 0;
213 }
214
Matt Caswell11780ac2016-03-07 11:08:02 +0000215 /*
216 * Set up the EVP_CIPHER and EVP_MD objects for the ciphers/digests
217 * supplied by this engine
218 */
219 _hidden_sha1_md = EVP_MD_meth_new(NID_sha1, NID_sha1WithRSAEncryption);
220 if (_hidden_sha1_md == NULL
221 || !EVP_MD_meth_set_result_size(_hidden_sha1_md, SHA_DIGEST_LENGTH)
222 || !EVP_MD_meth_set_input_blocksize(_hidden_sha1_md, SHA_CBLOCK)
223 || !EVP_MD_meth_set_app_datasize(_hidden_sha1_md,
224 sizeof(EVP_MD *) + sizeof(SHA_CTX))
225 || !EVP_MD_meth_set_flags(_hidden_sha1_md, EVP_MD_FLAG_DIGALGID_ABSENT)
226 || !EVP_MD_meth_set_init(_hidden_sha1_md, dasync_sha1_init)
227 || !EVP_MD_meth_set_update(_hidden_sha1_md, dasync_sha1_update)
228 || !EVP_MD_meth_set_final(_hidden_sha1_md, dasync_sha1_final)) {
229 EVP_MD_meth_free(_hidden_sha1_md);
230 _hidden_sha1_md = NULL;
231 }
232
233 _hidden_aes_128_cbc = EVP_CIPHER_meth_new(NID_aes_128_cbc,
234 16 /* block size */,
235 16 /* key len */);
236 if (_hidden_aes_128_cbc == NULL
237 || !EVP_CIPHER_meth_set_iv_length(_hidden_aes_128_cbc,16)
238 || !EVP_CIPHER_meth_set_flags(_hidden_aes_128_cbc,
239 EVP_CIPH_FLAG_DEFAULT_ASN1
240 | EVP_CIPH_CBC_MODE
241 | EVP_CIPH_FLAG_PIPELINE)
242 || !EVP_CIPHER_meth_set_init(_hidden_aes_128_cbc,
243 dasync_aes128_init_key)
244 || !EVP_CIPHER_meth_set_do_cipher(_hidden_aes_128_cbc,
245 dasync_aes128_cbc_cipher)
246 || !EVP_CIPHER_meth_set_cleanup(_hidden_aes_128_cbc,
247 dasync_aes128_cbc_cleanup)
248 || !EVP_CIPHER_meth_set_ctrl(_hidden_aes_128_cbc,
249 dasync_aes128_cbc_ctrl)
250 || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_aes_128_cbc,
Matt Caswelle38c2e82016-03-07 12:03:48 +0000251 sizeof(struct dasync_pipeline_ctx))) {
Matt Caswell11780ac2016-03-07 11:08:02 +0000252 EVP_CIPHER_meth_free(_hidden_aes_128_cbc);
253 _hidden_aes_128_cbc = NULL;
254 }
255
256 _hidden_aes_128_cbc_hmac_sha1 = EVP_CIPHER_meth_new(
257 NID_aes_128_cbc_hmac_sha1,
258 16 /* block size */,
259 16 /* key len */);
260 if (_hidden_aes_128_cbc_hmac_sha1 == NULL
261 || !EVP_CIPHER_meth_set_iv_length(_hidden_aes_128_cbc_hmac_sha1,16)
262 || !EVP_CIPHER_meth_set_flags(_hidden_aes_128_cbc_hmac_sha1,
263 EVP_CIPH_CBC_MODE
264 | EVP_CIPH_FLAG_DEFAULT_ASN1
265 | EVP_CIPH_FLAG_AEAD_CIPHER
266 | EVP_CIPH_FLAG_PIPELINE)
267 || !EVP_CIPHER_meth_set_init(_hidden_aes_128_cbc_hmac_sha1,
268 dasync_aes128_cbc_hmac_sha1_init_key)
269 || !EVP_CIPHER_meth_set_do_cipher(_hidden_aes_128_cbc_hmac_sha1,
270 dasync_aes128_cbc_hmac_sha1_cipher)
271 || !EVP_CIPHER_meth_set_cleanup(_hidden_aes_128_cbc_hmac_sha1,
272 dasync_aes128_cbc_hmac_sha1_cleanup)
273 || !EVP_CIPHER_meth_set_ctrl(_hidden_aes_128_cbc_hmac_sha1,
274 dasync_aes128_cbc_hmac_sha1_ctrl)
275 || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_aes_128_cbc_hmac_sha1,
Matt Caswelle38c2e82016-03-07 12:03:48 +0000276 sizeof(struct dasync_pipeline_ctx))) {
Matt Caswell11780ac2016-03-07 11:08:02 +0000277 EVP_CIPHER_meth_free(_hidden_aes_128_cbc_hmac_sha1);
278 _hidden_aes_128_cbc_hmac_sha1 = NULL;
279 }
280
Matt Caswella14e9ff2015-02-13 23:25:33 +0000281 return 1;
282}
283
284# ifndef OPENSSL_NO_DYNAMIC_ENGINE
285static int bind_helper(ENGINE *e, const char *id)
286{
287 if (id && (strcmp(id, engine_dasync_id) != 0))
288 return 0;
289 if (!bind_dasync(e))
290 return 0;
291 return 1;
292}
293
294IMPLEMENT_DYNAMIC_CHECK_FN()
295 IMPLEMENT_DYNAMIC_BIND_FN(bind_helper)
296# endif
297
298static ENGINE *engine_dasync(void)
299{
300 ENGINE *ret = ENGINE_new();
301 if (!ret)
302 return NULL;
303 if (!bind_dasync(ret)) {
304 ENGINE_free(ret);
305 return NULL;
306 }
307 return ret;
308}
309
Matt Caswellb3599db2016-04-12 12:20:16 +0100310void engine_load_dasync_int(void)
Matt Caswella14e9ff2015-02-13 23:25:33 +0000311{
312 ENGINE *toadd = engine_dasync();
313 if (!toadd)
314 return;
315 ENGINE_add(toadd);
316 ENGINE_free(toadd);
317 ERR_clear_error();
318}
319
320static int dasync_init(ENGINE *e)
321{
322 return 1;
323}
324
325
326static int dasync_finish(ENGINE *e)
327{
328 return 1;
329}
330
331
332static int dasync_destroy(ENGINE *e)
333{
Richard Levittecddcea82015-11-30 10:24:12 +0100334 destroy_digests();
Matt Caswell11780ac2016-03-07 11:08:02 +0000335 destroy_ciphers();
Richard Levitteb72c9122016-04-02 18:46:17 +0200336 RSA_meth_free(dasync_rsa_method);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000337 ERR_unload_DASYNC_strings();
338 return 1;
339}
340
341static int dasync_digests(ENGINE *e, const EVP_MD **digest,
342 const int **nids, int nid)
343{
344 int ok = 1;
345 if (!digest) {
346 /* We are returning a list of supported nids */
Richard Levittecddcea82015-11-30 10:24:12 +0100347 return dasync_digest_nids(nids);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000348 }
349 /* We are being asked for a specific digest */
350 switch (nid) {
351 case NID_sha1:
Richard Levittecddcea82015-11-30 10:24:12 +0100352 *digest = dasync_sha1();
Matt Caswella14e9ff2015-02-13 23:25:33 +0000353 break;
354 default:
355 ok = 0;
356 *digest = NULL;
357 break;
358 }
359 return ok;
360}
361
Matt Caswell98ee7542015-09-22 11:11:24 +0100362static int dasync_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
363 const int **nids, int nid)
364{
365 int ok = 1;
Matt Caswell11780ac2016-03-07 11:08:02 +0000366 if (cipher == NULL) {
Matt Caswell98ee7542015-09-22 11:11:24 +0100367 /* We are returning a list of supported nids */
368 *nids = dasync_cipher_nids;
369 return (sizeof(dasync_cipher_nids) -
370 1) / sizeof(dasync_cipher_nids[0]);
371 }
372 /* We are being asked for a specific cipher */
373 switch (nid) {
374 case NID_aes_128_cbc:
375 *cipher = dasync_aes_128_cbc();
376 break;
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000377 case NID_aes_128_cbc_hmac_sha1:
378 *cipher = dasync_aes_128_cbc_hmac_sha1();
379 break;
Matt Caswell98ee7542015-09-22 11:11:24 +0100380 default:
381 ok = 0;
382 *cipher = NULL;
383 break;
384 }
385 return ok;
386}
387
Matt Caswellff75a252016-01-25 15:28:57 +0000388static void wait_cleanup(ASYNC_WAIT_CTX *ctx, const void *key,
389 OSSL_ASYNC_FD readfd, void *pvwritefd)
390{
391 OSSL_ASYNC_FD *pwritefd = (OSSL_ASYNC_FD *)pvwritefd;
392#if defined(ASYNC_WIN)
393 CloseHandle(readfd);
394 CloseHandle(*pwritefd);
395#elif defined(ASYNC_POSIX)
396 close(readfd);
397 close(*pwritefd);
398#endif
399 OPENSSL_free(pwritefd);
400}
401
402#define DUMMY_CHAR 'X'
403
Matt Caswellf4da39d2015-07-24 08:15:31 +0100404static void dummy_pause_job(void) {
405 ASYNC_JOB *job;
Matt Caswellff75a252016-01-25 15:28:57 +0000406 ASYNC_WAIT_CTX *waitctx;
407 OSSL_ASYNC_FD pipefds[2] = {0, 0};
408 OSSL_ASYNC_FD *writefd;
409#if defined(ASYNC_WIN)
410 DWORD numwritten, numread;
411 char buf = DUMMY_CHAR;
412#elif defined(ASYNC_POSIX)
413 char buf = DUMMY_CHAR;
414#endif
Matt Caswellf4da39d2015-07-24 08:15:31 +0100415
416 if ((job = ASYNC_get_current_job()) == NULL)
417 return;
418
Matt Caswellff75a252016-01-25 15:28:57 +0000419 waitctx = ASYNC_get_wait_ctx(job);
420
421 if (ASYNC_WAIT_CTX_get_fd(waitctx, engine_dasync_id, &pipefds[0],
422 (void **)&writefd)) {
423 pipefds[1] = *writefd;
424 } else {
425 writefd = OPENSSL_malloc(sizeof(*writefd));
426 if (writefd == NULL)
427 return;
428#if defined(ASYNC_WIN)
429 if (CreatePipe(&pipefds[0], &pipefds[1], NULL, 256) == 0) {
430 OPENSSL_free(writefd);
431 return;
432 }
433#elif defined(ASYNC_POSIX)
434 if (pipe(pipefds) != 0) {
435 OPENSSL_free(writefd);
436 return;
437 }
438#endif
439 *writefd = pipefds[1];
440
441 if(!ASYNC_WAIT_CTX_set_wait_fd(waitctx, engine_dasync_id, pipefds[0],
442 writefd, wait_cleanup)) {
443 wait_cleanup(waitctx, engine_dasync_id, pipefds[0], writefd);
444 return;
445 }
446 }
Matt Caswellf4da39d2015-07-24 08:15:31 +0100447 /*
448 * In the Dummy async engine we are cheating. We signal that the job
449 * is complete by waking it before the call to ASYNC_pause_job(). A real
450 * async engine would only wake when the job was actually complete
451 */
Matt Caswellff75a252016-01-25 15:28:57 +0000452#if defined(ASYNC_WIN)
453 WriteFile(pipefds[1], &buf, 1, &numwritten, NULL);
454#elif defined(ASYNC_POSIX)
Alessandro Ghedinib8972ed2016-03-07 12:27:52 +0000455 if (write(pipefds[1], &buf, 1) < 0)
456 return;
Matt Caswellff75a252016-01-25 15:28:57 +0000457#endif
Matt Caswellf4da39d2015-07-24 08:15:31 +0100458
459 /* Ignore errors - we carry on anyway */
460 ASYNC_pause_job();
461
Matt Caswellff75a252016-01-25 15:28:57 +0000462 /* Clear the wake signal */
463#if defined(ASYNC_WIN)
464 ReadFile(pipefds[0], &buf, 1, &numread, NULL);
465#elif defined(ASYNC_POSIX)
Alessandro Ghedinib8972ed2016-03-07 12:27:52 +0000466 if (read(pipefds[0], &buf, 1) < 0)
467 return;
Matt Caswellff75a252016-01-25 15:28:57 +0000468#endif
Matt Caswellf4da39d2015-07-24 08:15:31 +0100469}
470
Matt Caswella14e9ff2015-02-13 23:25:33 +0000471/*
472 * SHA1 implementation. At the moment we just defer to the standard
473 * implementation
474 */
475#undef data
Richard Levitte6e59a892015-11-27 14:02:12 +0100476#define data(ctx) ((SHA_CTX *)EVP_MD_CTX_md_data(ctx))
Matt Caswell46a283c2015-10-09 16:45:25 +0100477static int dasync_sha1_init(EVP_MD_CTX *ctx)
Matt Caswella14e9ff2015-02-13 23:25:33 +0000478{
Matt Caswellf4da39d2015-07-24 08:15:31 +0100479 dummy_pause_job();
Matt Caswella14e9ff2015-02-13 23:25:33 +0000480
481 return SHA1_Init(data(ctx));
482}
483
Matt Caswell46a283c2015-10-09 16:45:25 +0100484static int dasync_sha1_update(EVP_MD_CTX *ctx, const void *data,
Kurt Roeckx652d4a82015-11-21 17:58:12 +0100485 size_t count)
Matt Caswella14e9ff2015-02-13 23:25:33 +0000486{
Matt Caswellf4da39d2015-07-24 08:15:31 +0100487 dummy_pause_job();
Matt Caswella14e9ff2015-02-13 23:25:33 +0000488
489 return SHA1_Update(data(ctx), data, (size_t)count);
490}
491
Matt Caswell46a283c2015-10-09 16:45:25 +0100492static int dasync_sha1_final(EVP_MD_CTX *ctx, unsigned char *md)
Matt Caswella14e9ff2015-02-13 23:25:33 +0000493{
Matt Caswellf4da39d2015-07-24 08:15:31 +0100494 dummy_pause_job();
Matt Caswella14e9ff2015-02-13 23:25:33 +0000495
496 return SHA1_Final(md, data(ctx));
497}
498
499/*
500 * RSA implementation
501 */
502
503static int dasync_pub_enc(int flen, const unsigned char *from,
504 unsigned char *to, RSA *rsa, int padding) {
505 /* Ignore errors - we carry on anyway */
Matt Caswellf4da39d2015-07-24 08:15:31 +0100506 dummy_pause_job();
Richard Levitteb72c9122016-04-02 18:46:17 +0200507 return RSA_meth_get_pub_enc(RSA_PKCS1_OpenSSL())
508 (flen, from, to, rsa, padding);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000509}
510
511static int dasync_pub_dec(int flen, const unsigned char *from,
512 unsigned char *to, RSA *rsa, int padding) {
513 /* Ignore errors - we carry on anyway */
Matt Caswellf4da39d2015-07-24 08:15:31 +0100514 dummy_pause_job();
Richard Levitteb72c9122016-04-02 18:46:17 +0200515 return RSA_meth_get_pub_dec(RSA_PKCS1_OpenSSL())
516 (flen, from, to, rsa, padding);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000517}
518
519static int dasync_rsa_priv_enc(int flen, const unsigned char *from,
520 unsigned char *to, RSA *rsa, int padding)
521{
522 /* Ignore errors - we carry on anyway */
Matt Caswellf4da39d2015-07-24 08:15:31 +0100523 dummy_pause_job();
Richard Levitteb72c9122016-04-02 18:46:17 +0200524 return RSA_meth_get_priv_enc(RSA_PKCS1_OpenSSL())
525 (flen, from, to, rsa, padding);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000526}
527
528static int dasync_rsa_priv_dec(int flen, const unsigned char *from,
529 unsigned char *to, RSA *rsa, int padding)
530{
531 /* Ignore errors - we carry on anyway */
Matt Caswellf4da39d2015-07-24 08:15:31 +0100532 dummy_pause_job();
Richard Levitteb72c9122016-04-02 18:46:17 +0200533 return RSA_meth_get_priv_dec(RSA_PKCS1_OpenSSL())
534 (flen, from, to, rsa, padding);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000535}
536
537static int dasync_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
538{
539 /* Ignore errors - we carry on anyway */
Matt Caswellf4da39d2015-07-24 08:15:31 +0100540 dummy_pause_job();
Richard Levitteb72c9122016-04-02 18:46:17 +0200541 return RSA_meth_get_mod_exp(RSA_PKCS1_OpenSSL())(r0, I, rsa, ctx);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000542}
543
544static int dasync_rsa_init(RSA *rsa)
545{
Richard Levitteb72c9122016-04-02 18:46:17 +0200546 return RSA_meth_get_init(RSA_PKCS1_OpenSSL())(rsa);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000547}
548static int dasync_rsa_finish(RSA *rsa)
549{
Richard Levitteb72c9122016-04-02 18:46:17 +0200550 return RSA_meth_get_finish(RSA_PKCS1_OpenSSL())(rsa);
Matt Caswella14e9ff2015-02-13 23:25:33 +0000551}
Matt Caswell98ee7542015-09-22 11:11:24 +0100552
Matt Caswelle38c2e82016-03-07 12:03:48 +0000553/* Cipher helper functions */
Matt Caswell98ee7542015-09-22 11:11:24 +0100554
Matt Caswelle38c2e82016-03-07 12:03:48 +0000555static int dasync_cipher_ctrl_helper(EVP_CIPHER_CTX *ctx, int type, int arg,
556 void *ptr, int aeadcapable)
Matt Caswell98ee7542015-09-22 11:11:24 +0100557{
558 int ret;
Matt Caswelle38c2e82016-03-07 12:03:48 +0000559 struct dasync_pipeline_ctx *pipe_ctx =
560 (struct dasync_pipeline_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx);
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000561
562 if (pipe_ctx == NULL)
563 return 0;
564
565 switch (type) {
566 case EVP_CTRL_SET_PIPELINE_OUTPUT_BUFS:
567 pipe_ctx->numpipes = arg;
568 pipe_ctx->outbufs = (unsigned char **)ptr;
569 break;
570
571 case EVP_CTRL_SET_PIPELINE_INPUT_BUFS:
572 pipe_ctx->numpipes = arg;
573 pipe_ctx->inbufs = (unsigned char **)ptr;
574 break;
575
576 case EVP_CTRL_SET_PIPELINE_INPUT_LENS:
577 pipe_ctx->numpipes = arg;
578 pipe_ctx->lens = (size_t *)ptr;
579 break;
580
581 case EVP_CTRL_AEAD_SET_MAC_KEY:
Matt Caswelle38c2e82016-03-07 12:03:48 +0000582 if (!aeadcapable)
583 return -1;
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000584 EVP_CIPHER_CTX_set_cipher_data(ctx, pipe_ctx->inner_cipher_data);
585 ret = EVP_CIPHER_meth_get_ctrl(EVP_aes_128_cbc_hmac_sha1())
586 (ctx, type, arg, ptr);
587 EVP_CIPHER_CTX_set_cipher_data(ctx, pipe_ctx);
588 return ret;
589
590 case EVP_CTRL_AEAD_TLS1_AAD:
591 {
592 unsigned char *p = ptr;
593 unsigned int len;
594
Matt Caswelle38c2e82016-03-07 12:03:48 +0000595 if (!aeadcapable || arg != EVP_AEAD_TLS1_AAD_LEN)
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000596 return -1;
597
598 if (pipe_ctx->aadctr >= SSL_MAX_PIPELINES)
599 return -1;
600
601 memcpy(pipe_ctx->tlsaad[pipe_ctx->aadctr], ptr,
602 EVP_AEAD_TLS1_AAD_LEN);
603 pipe_ctx->aadctr++;
604
605 len = p[arg - 2] << 8 | p[arg - 1];
606
607 if (pipe_ctx->enc) {
608 if ((p[arg - 4] << 8 | p[arg - 3]) >= TLS1_1_VERSION) {
609 len -= AES_BLOCK_SIZE;
610 }
611
612 return ((len + SHA_DIGEST_LENGTH + AES_BLOCK_SIZE)
613 & -AES_BLOCK_SIZE) - len;
614 } else {
615 return SHA_DIGEST_LENGTH;
616 }
617 }
618
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000619 default:
620 return 0;
621 }
622
623 return 1;
624}
625
Matt Caswelle38c2e82016-03-07 12:03:48 +0000626static int dasync_cipher_init_key_helper(EVP_CIPHER_CTX *ctx,
627 const unsigned char *key,
628 const unsigned char *iv, int enc,
629 const EVP_CIPHER *cipher)
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000630{
631 int ret;
Matt Caswelle38c2e82016-03-07 12:03:48 +0000632 struct dasync_pipeline_ctx *pipe_ctx =
633 (struct dasync_pipeline_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx);
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000634
635 if (pipe_ctx->inner_cipher_data == NULL
Matt Caswelle38c2e82016-03-07 12:03:48 +0000636 && EVP_CIPHER_impl_ctx_size(cipher) != 0) {
637 pipe_ctx->inner_cipher_data = OPENSSL_zalloc(
638 EVP_CIPHER_impl_ctx_size(cipher));
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000639 if (pipe_ctx->inner_cipher_data == NULL) {
Alessandro Ghedini2f781952016-03-08 23:12:53 +0000640 DASYNCerr(DASYNC_F_DASYNC_CIPHER_INIT_KEY_HELPER,
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000641 ERR_R_MALLOC_FAILURE);
642 return 0;
643 }
644 }
645
646 pipe_ctx->numpipes = 0;
Matt Caswelle38c2e82016-03-07 12:03:48 +0000647 pipe_ctx->aadctr = 0;
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000648
649 EVP_CIPHER_CTX_set_cipher_data(ctx, pipe_ctx->inner_cipher_data);
Matt Caswelle38c2e82016-03-07 12:03:48 +0000650 ret = EVP_CIPHER_meth_get_init(cipher)(ctx, key, iv, enc);
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000651 EVP_CIPHER_CTX_set_cipher_data(ctx, pipe_ctx);
652
653 return ret;
654}
655
Matt Caswelle38c2e82016-03-07 12:03:48 +0000656static int dasync_cipher_helper(EVP_CIPHER_CTX *ctx, unsigned char *out,
657 const unsigned char *in, size_t inl,
658 const EVP_CIPHER *cipher)
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000659{
660 int ret = 1;
661 unsigned int i, pipes;
Matt Caswelle38c2e82016-03-07 12:03:48 +0000662 struct dasync_pipeline_ctx *pipe_ctx =
663 (struct dasync_pipeline_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx);
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000664
665 pipes = pipe_ctx->numpipes;
666 EVP_CIPHER_CTX_set_cipher_data(ctx, pipe_ctx->inner_cipher_data);
667 if (pipes == 0) {
668 if (pipe_ctx->aadctr != 0) {
669 if (pipe_ctx->aadctr != 1)
670 return -1;
Matt Caswelle38c2e82016-03-07 12:03:48 +0000671 EVP_CIPHER_meth_get_ctrl(cipher)
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000672 (ctx, EVP_CTRL_AEAD_TLS1_AAD,
673 EVP_AEAD_TLS1_AAD_LEN,
674 pipe_ctx->tlsaad[0]);
675 }
Matt Caswelle38c2e82016-03-07 12:03:48 +0000676 ret = EVP_CIPHER_meth_get_do_cipher(cipher)
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000677 (ctx, out, in, inl);
678 } else {
679 if (pipe_ctx->aadctr > 0 && pipe_ctx->aadctr != pipes)
680 return -1;
681 for (i = 0; i < pipes; i++) {
682 if (pipe_ctx->aadctr > 0) {
Matt Caswelle38c2e82016-03-07 12:03:48 +0000683 EVP_CIPHER_meth_get_ctrl(cipher)
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000684 (ctx, EVP_CTRL_AEAD_TLS1_AAD,
685 EVP_AEAD_TLS1_AAD_LEN,
686 pipe_ctx->tlsaad[i]);
687 }
Matt Caswelle38c2e82016-03-07 12:03:48 +0000688 ret = ret && EVP_CIPHER_meth_get_do_cipher(cipher)
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000689 (ctx, pipe_ctx->outbufs[i], pipe_ctx->inbufs[i],
690 pipe_ctx->lens[i]);
691 }
692 pipe_ctx->numpipes = 0;
693 }
694 pipe_ctx->aadctr = 0;
695 EVP_CIPHER_CTX_set_cipher_data(ctx, pipe_ctx);
696 return ret;
697}
698
Matt Caswelle38c2e82016-03-07 12:03:48 +0000699static int dasync_cipher_cleanup_helper(EVP_CIPHER_CTX *ctx,
700 const EVP_CIPHER *cipher)
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000701{
Matt Caswelle38c2e82016-03-07 12:03:48 +0000702 struct dasync_pipeline_ctx *pipe_ctx =
703 (struct dasync_pipeline_ctx *)EVP_CIPHER_CTX_get_cipher_data(ctx);
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000704
705 OPENSSL_clear_free(pipe_ctx->inner_cipher_data,
Matt Caswelle38c2e82016-03-07 12:03:48 +0000706 EVP_CIPHER_impl_ctx_size(cipher));
Matt Caswell2f2c9ca2015-11-27 12:02:25 +0000707
708 return 1;
709}
Matt Caswelle38c2e82016-03-07 12:03:48 +0000710
711/*
712 * AES128 CBC Implementation
713 */
714
715static int dasync_aes128_cbc_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
716 void *ptr)
717{
718 return dasync_cipher_ctrl_helper(ctx, type, arg, ptr, 0);
719}
720
721static int dasync_aes128_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
722 const unsigned char *iv, int enc)
723{
724 return dasync_cipher_init_key_helper(ctx, key, iv, enc, EVP_aes_128_cbc());
725}
726
727static int dasync_aes128_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
728 const unsigned char *in, size_t inl)
729{
730 return dasync_cipher_helper(ctx, out, in, inl, EVP_aes_128_cbc());
731}
732
733static int dasync_aes128_cbc_cleanup(EVP_CIPHER_CTX *ctx)
734{
735 return dasync_cipher_cleanup_helper(ctx, EVP_aes_128_cbc());
736}
737
738
739/*
740 * AES128 CBC HMAC SHA1 Implementation
741 */
742
743static int dasync_aes128_cbc_hmac_sha1_ctrl(EVP_CIPHER_CTX *ctx, int type,
744 int arg, void *ptr)
745{
746 return dasync_cipher_ctrl_helper(ctx, type, arg, ptr, 1);
747}
748
749static int dasync_aes128_cbc_hmac_sha1_init_key(EVP_CIPHER_CTX *ctx,
750 const unsigned char *key,
751 const unsigned char *iv,
752 int enc)
753{
754 return dasync_cipher_init_key_helper(ctx, key, iv, enc,
755 EVP_aes_128_cbc_hmac_sha1());
756}
757
758static int dasync_aes128_cbc_hmac_sha1_cipher(EVP_CIPHER_CTX *ctx,
759 unsigned char *out,
760 const unsigned char *in,
761 size_t inl)
762{
763 return dasync_cipher_helper(ctx, out, in, inl, EVP_aes_128_cbc_hmac_sha1());
764}
765
766static int dasync_aes128_cbc_hmac_sha1_cleanup(EVP_CIPHER_CTX *ctx)
767{
768 return dasync_cipher_cleanup_helper(ctx, EVP_aes_128_cbc_hmac_sha1());
769}