Remove the GOST engine
[openssl.git] / engines / e_dasync.c
1 /* engines/e_dasync.c */
2 /*
3  * Written by Matt Caswell (matt@openssl.org) for the OpenSSL project.
4  */
5 /* ====================================================================
6  * Copyright (c) 2015 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  */
53
54 #include <stdio.h>
55 #include <string.h>
56
57 #include <openssl/engine.h>
58 #include <openssl/sha.h>
59 #include <openssl/rsa.h>
60 #include <openssl/evp.h>
61 #include <openssl/async.h>
62 #include <openssl/bn.h>
63
64 #define DASYNC_LIB_NAME "DASYNC"
65 #include "e_dasync_err.c"
66
67 /* Engine Id and Name */
68 static const char *engine_dasync_id = "dasync";
69 static const char *engine_dasync_name = "Dummy Async engine support";
70
71
72 /* Engine Lifetime functions */
73 static int dasync_destroy(ENGINE *e);
74 static int dasync_init(ENGINE *e);
75 static int dasync_finish(ENGINE *e);
76 void ENGINE_load_dasync(void);
77
78
79 /* Set up digests. Just SHA1 for now */
80 static int dasync_digests(ENGINE *e, const EVP_MD **digest,
81                           const int **nids, int nid);
82
83 static void dummy_pause_job(void);
84
85 /* SHA1 */
86 static int dasync_sha1_init(EVP_MD_CTX *ctx);
87 static int dasync_sha1_update(EVP_MD_CTX *ctx, const void *data,
88                              size_t count);
89 static int dasync_sha1_final(EVP_MD_CTX *ctx, unsigned char *md);
90
91 static EVP_MD *_hidden_sha1_md = NULL;
92 static const EVP_MD *dasync_sha1(void)
93 {
94     if (_hidden_sha1_md == NULL) {
95         EVP_MD *md;
96
97         if ((md = EVP_MD_meth_new(NID_sha1, NID_sha1WithRSAEncryption)) == NULL
98             || !EVP_MD_meth_set_result_size(md, SHA_DIGEST_LENGTH)
99             || !EVP_MD_meth_set_input_blocksize(md, SHA_CBLOCK)
100             || !EVP_MD_meth_set_app_datasize(md,
101                                              sizeof(EVP_MD *) + sizeof(SHA_CTX))
102             || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_DIGALGID_ABSENT)
103             || !EVP_MD_meth_set_init(md, dasync_sha1_init)
104             || !EVP_MD_meth_set_update(md, dasync_sha1_update)
105             || !EVP_MD_meth_set_final(md, dasync_sha1_final)) {
106             EVP_MD_meth_free(md);
107             md = NULL;
108         }
109         _hidden_sha1_md = md;
110     }
111     return _hidden_sha1_md;
112 }
113 static void destroy_digests(void)
114 {
115     EVP_MD_meth_free(_hidden_sha1_md);
116     _hidden_sha1_md = NULL;
117 }
118 static int dasync_digest_nids(const int **nids)
119 {
120     static int digest_nids[2] = { 0, 0 };
121     static int pos = 0;
122     static int init = 0;
123
124     if (!init) {
125         const EVP_MD *md;
126         if ((md = dasync_sha1()) != NULL)
127             digest_nids[pos++] = EVP_MD_type(md);
128         digest_nids[pos] = 0;
129         init = 1;
130     }
131     *nids = digest_nids;
132     return pos;
133 }
134
135 /* RSA */
136
137 static int dasync_pub_enc(int flen, const unsigned char *from,
138                     unsigned char *to, RSA *rsa, int padding);
139 static int dasync_pub_dec(int flen, const unsigned char *from,
140                     unsigned char *to, RSA *rsa, int padding);
141 static int dasync_rsa_priv_enc(int flen, const unsigned char *from,
142                       unsigned char *to, RSA *rsa, int padding);
143 static int dasync_rsa_priv_dec(int flen, const unsigned char *from,
144                       unsigned char *to, RSA *rsa, int padding);
145 static int dasync_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa,
146                               BN_CTX *ctx);
147
148 static int dasync_rsa_init(RSA *rsa);
149 static int dasync_rsa_finish(RSA *rsa);
150
151 static RSA_METHOD dasync_rsa_method = {
152     "Dummy Async RSA method",
153     dasync_pub_enc,             /* pub_enc */
154     dasync_pub_dec,             /* pub_dec */
155     dasync_rsa_priv_enc,        /* priv_enc */
156     dasync_rsa_priv_dec,        /* priv_dec */
157     dasync_rsa_mod_exp,         /* rsa_mod_exp */
158     BN_mod_exp_mont,            /* bn_mod_exp */
159     dasync_rsa_init,            /* init */
160     dasync_rsa_finish,          /* finish */
161     0,                          /* flags */
162     NULL,                       /* app_data */
163     0,                          /* rsa_sign */
164     0,                          /* rsa_verify */
165     NULL                        /* rsa_keygen */
166 };
167
168
169 static int bind_dasync(ENGINE *e)
170 {
171     /* Ensure the dasync error handling is set up */
172     ERR_load_DASYNC_strings();
173
174     if (!ENGINE_set_id(e, engine_dasync_id)
175         || !ENGINE_set_name(e, engine_dasync_name)
176         || !ENGINE_set_RSA(e, &dasync_rsa_method)
177         || !ENGINE_set_digests(e, dasync_digests)
178         || !ENGINE_set_destroy_function(e, dasync_destroy)
179         || !ENGINE_set_init_function(e, dasync_init)
180         || !ENGINE_set_finish_function(e, dasync_finish)) {
181         DASYNCerr(DASYNC_F_BIND_DASYNC, DASYNC_R_INIT_FAILED);
182         return 0;
183     }
184
185     return 1;
186 }
187
188 # ifndef OPENSSL_NO_DYNAMIC_ENGINE
189 static int bind_helper(ENGINE *e, const char *id)
190 {
191     if (id && (strcmp(id, engine_dasync_id) != 0))
192         return 0;
193     if (!bind_dasync(e))
194         return 0;
195     return 1;
196 }
197
198 IMPLEMENT_DYNAMIC_CHECK_FN()
199     IMPLEMENT_DYNAMIC_BIND_FN(bind_helper)
200 # endif
201
202 static ENGINE *engine_dasync(void)
203 {
204     ENGINE *ret = ENGINE_new();
205     if (!ret)
206         return NULL;
207     if (!bind_dasync(ret)) {
208         ENGINE_free(ret);
209         return NULL;
210     }
211     return ret;
212 }
213
214 void ENGINE_load_dasync(void)
215 {
216     ENGINE *toadd = engine_dasync();
217     if (!toadd)
218         return;
219     ENGINE_add(toadd);
220     ENGINE_free(toadd);
221     ERR_clear_error();
222 }
223
224 static int dasync_init(ENGINE *e)
225 {
226     return 1;
227 }
228
229
230 static int dasync_finish(ENGINE *e)
231 {
232     return 1;
233 }
234
235
236 static int dasync_destroy(ENGINE *e)
237 {
238     destroy_digests();
239     ERR_unload_DASYNC_strings();
240     return 1;
241 }
242
243 static int dasync_digests(ENGINE *e, const EVP_MD **digest,
244                           const int **nids, int nid)
245 {
246     int ok = 1;
247     if (!digest) {
248         /* We are returning a list of supported nids */
249         return dasync_digest_nids(nids);
250     }
251     /* We are being asked for a specific digest */
252     switch (nid) {
253     case NID_sha1:
254         *digest = dasync_sha1();
255         break;
256     default:
257         ok = 0;
258         *digest = NULL;
259         break;
260     }
261     return ok;
262 }
263
264 static void dummy_pause_job(void) {
265     ASYNC_JOB *job;
266
267     if ((job = ASYNC_get_current_job()) == NULL)
268         return;
269
270     /*
271      * In the Dummy async engine we are cheating. We signal that the job
272      * is complete by waking it before the call to ASYNC_pause_job(). A real
273      * async engine would only wake when the job was actually complete
274      */
275     ASYNC_wake(job);
276
277     /* Ignore errors - we carry on anyway */
278     ASYNC_pause_job();
279
280     ASYNC_clear_wake(job);
281 }
282
283
284 /*
285  * SHA1 implementation. At the moment we just defer to the standard
286  * implementation
287  */
288 #undef data
289 #define data(ctx) ((SHA_CTX *)EVP_MD_CTX_md_data(ctx))
290 static int dasync_sha1_init(EVP_MD_CTX *ctx)
291 {
292     dummy_pause_job();
293
294     return SHA1_Init(data(ctx));
295 }
296
297 static int dasync_sha1_update(EVP_MD_CTX *ctx, const void *data,
298                              size_t count)
299 {
300     dummy_pause_job();
301
302     return SHA1_Update(data(ctx), data, (size_t)count);
303 }
304
305 static int dasync_sha1_final(EVP_MD_CTX *ctx, unsigned char *md)
306 {
307     dummy_pause_job();
308
309     return SHA1_Final(md, data(ctx));
310 }
311
312 /*
313  * RSA implementation
314  */
315
316 static int dasync_pub_enc(int flen, const unsigned char *from,
317                     unsigned char *to, RSA *rsa, int padding) {
318     /* Ignore errors - we carry on anyway */
319     dummy_pause_job();
320     return RSA_PKCS1_OpenSSL()->rsa_pub_enc(flen, from, to, rsa, padding);
321 }
322
323 static int dasync_pub_dec(int flen, const unsigned char *from,
324                     unsigned char *to, RSA *rsa, int padding) {
325     /* Ignore errors - we carry on anyway */
326     dummy_pause_job();
327     return RSA_PKCS1_OpenSSL()->rsa_pub_dec(flen, from, to, rsa, padding);
328 }
329
330 static int dasync_rsa_priv_enc(int flen, const unsigned char *from,
331                       unsigned char *to, RSA *rsa, int padding)
332 {
333     /* Ignore errors - we carry on anyway */
334     dummy_pause_job();
335     return RSA_PKCS1_OpenSSL()->rsa_priv_enc(flen, from, to, rsa, padding);
336 }
337
338 static int dasync_rsa_priv_dec(int flen, const unsigned char *from,
339                       unsigned char *to, RSA *rsa, int padding)
340 {
341     /* Ignore errors - we carry on anyway */
342     dummy_pause_job();
343     return RSA_PKCS1_OpenSSL()->rsa_priv_dec(flen, from, to, rsa, padding);
344 }
345
346 static int dasync_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
347 {
348     /* Ignore errors - we carry on anyway */
349     dummy_pause_job();
350     return RSA_PKCS1_OpenSSL()->rsa_mod_exp(r0, I, rsa, ctx);
351 }
352
353 static int dasync_rsa_init(RSA *rsa)
354 {
355     return RSA_PKCS1_OpenSSL()->init(rsa);
356 }
357 static int dasync_rsa_finish(RSA *rsa)
358 {
359     return RSA_PKCS1_OpenSSL()->finish(rsa);
360 }