6638567202122dae879a5feecd2d226e678e4fba
[openssl.git] / crypto / engine / hw_nuron.c
1 /* crypto/engine/hw_nuron.c */
2 /* Written by Ben Laurie for the OpenSSL Project, leaning heavily on Geoff
3  * Thorpe's Atalla implementation.
4  */
5 /* ====================================================================
6  * Copyright (c) 2000 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  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <stdio.h>
60 #include <openssl/crypto.h>
61 #include "cryptlib.h"
62 #include <openssl/dso.h>
63 #include "engine_int.h"
64 #include <openssl/engine.h>
65 #ifdef HAVE_DLFCN_H
66 #include <dlfcn.h>
67 #endif
68
69
70 #ifndef NO_HW
71 #ifndef NO_HW_NURON
72
73 typedef int tfnModExp(BIGNUM *r,BIGNUM *a,const BIGNUM *p,const BIGNUM *m);
74 static tfnModExp *pfnModExp = NULL;
75
76 static DSO *pvDSOHandle = NULL;
77
78 static int nuron_init()
79         {
80         if(pvDSOHandle != NULL)
81                 {
82                 ENGINEerr(ENGINE_F_NURON_INIT,ENGINE_R_ALREADY_LOADED);
83                 return 0;
84                 }
85
86         pvDSOHandle=DSO_load(NULL,"nuronssl",NULL,
87                 DSO_FLAG_NAME_TRANSLATION_EXT_ONLY);
88         if(!pvDSOHandle)
89                 {
90                 ENGINEerr(ENGINE_F_NURON_INIT,ENGINE_R_DSO_NOT_FOUND);
91                 return 0;
92                 }
93
94         pfnModExp=(tfnModExp *)DSO_bind_func(pvDSOHandle,"nuron_mod_exp");
95         if(!pfnModExp)
96                 {
97                 ENGINEerr(ENGINE_F_NURON_INIT,ENGINE_R_DSO_FUNCTION_NOT_FOUND);
98                 return 0;
99                 }
100
101         return 1;
102         }
103
104 static int nuron_finish()
105         {
106         if(pvDSOHandle == NULL)
107                 {
108                 ENGINEerr(ENGINE_F_NURON_FINISH,ENGINE_R_NOT_LOADED);
109                 return 0;
110                 }
111         if(!DSO_free(pvDSOHandle))
112                 {
113                 ENGINEerr(ENGINE_F_NURON_FINISH,ENGINE_R_DSO_FAILURE);
114                 return 0;
115                 }
116         pvDSOHandle=NULL;
117         pfnModExp=NULL;
118         return 1;
119         }
120
121 static int nuron_mod_exp(BIGNUM *r,BIGNUM *a,const BIGNUM *p,
122                          const BIGNUM *m,BN_CTX *ctx)
123         {
124         if(!pvDSOHandle)
125                 {
126                 ENGINEerr(ENGINE_F_NURON_MOD_EXP,ENGINE_R_NOT_LOADED);
127                 return 0;
128                 }
129         return pfnModExp(r,a,p,m);
130         }
131
132 static int nuron_rsa_mod_exp(BIGNUM *r0, BIGNUM *I, RSA *rsa)
133         {
134         return nuron_mod_exp(r0,I,rsa->d,rsa->n,NULL);
135         }
136
137 /* This code was liberated and adapted from the commented-out code in
138  * dsa_ossl.c. Because of the unoptimised form of the Atalla acceleration
139  * (it doesn't have a CRT form for RSA), this function means that an
140  * Atalla system running with a DSA server certificate can handshake
141  * around 5 or 6 times faster/more than an equivalent system running with
142  * RSA. Just check out the "signs" statistics from the RSA and DSA parts
143  * of "openssl speed -engine atalla dsa1024 rsa1024". */
144 static int nuron_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1,
145                              BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
146                              BN_CTX *ctx, BN_MONT_CTX *in_mont)
147         {
148         BIGNUM t;
149         int to_return = 0;
150  
151         BN_init(&t);
152         /* let rr = a1 ^ p1 mod m */
153         if (!nuron_mod_exp(rr,a1,p1,m,ctx))
154                 goto end;
155         /* let t = a2 ^ p2 mod m */
156         if (!nuron_mod_exp(&t,a2,p2,m,ctx))
157                 goto end;
158         /* let rr = rr * t mod m */
159         if (!BN_mod_mul(rr,rr,&t,m,ctx))
160                 goto end;
161         to_return = 1;
162 end:
163         BN_free(&t);
164         return to_return;
165         }
166
167
168 static int nuron_mod_exp_dsa(DSA *dsa, BIGNUM *r, BIGNUM *a,
169                              const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,
170                              BN_MONT_CTX *m_ctx)
171         {
172         return nuron_mod_exp(r, a, p, m, ctx);
173         }
174
175 /* This function is aliased to mod_exp (with the mont stuff dropped). */
176 static int nuron_mod_exp_mont(BIGNUM *r, BIGNUM *a, const BIGNUM *p,
177                               const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx)
178         {
179         return nuron_mod_exp(r, a, p, m, ctx);
180         }
181
182 /* This function is aliased to mod_exp (with the dh and mont dropped). */
183 static int nuron_mod_exp_dh(DH *dh, BIGNUM *r, BIGNUM *a, const BIGNUM *p,
184                             const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx)
185         {
186         return nuron_mod_exp(r, a, p, m, ctx);
187         }
188
189 static RSA_METHOD nuron_rsa =
190         {
191         "Nuron RSA method",
192         NULL,
193         NULL,
194         NULL,
195         NULL,
196         nuron_rsa_mod_exp,
197         nuron_mod_exp_mont,
198         NULL,
199         NULL,
200         0,
201         NULL,
202         NULL,
203         NULL
204         };
205
206 static DSA_METHOD nuron_dsa =
207         {
208         "Nuron DSA method",
209         NULL, /* dsa_do_sign */
210         NULL, /* dsa_sign_setup */
211         NULL, /* dsa_do_verify */
212         nuron_dsa_mod_exp, /* dsa_mod_exp */
213         nuron_mod_exp_dsa, /* bn_mod_exp */
214         NULL, /* init */
215         NULL, /* finish */
216         0, /* flags */
217         NULL /* app_data */
218         };
219
220 static DH_METHOD nuron_dh =
221         {
222         "Nuron DH method",
223         NULL,
224         NULL,
225         nuron_mod_exp_dh,
226         NULL,
227         NULL,
228         0,
229         NULL
230         };
231
232 static ENGINE engine_nuron =
233         {
234         "nuron",
235         "Nuron hardware engine support",
236         &nuron_rsa,
237         &nuron_dsa,
238         &nuron_dh,
239         NULL,
240         nuron_mod_exp,
241         NULL,
242         nuron_init,
243         nuron_finish,
244         NULL, /* no ctrl() */
245         NULL, /* no load_privkey() */
246         NULL, /* no load_pubkey() */
247         0, /* no flags */
248         0, 0, /* no references */
249         NULL, NULL /* unlinked */
250         };
251
252 /* As this is only ever called once, there's no need for locking
253  * (indeed - the lock will already be held by our caller!!!) */
254 ENGINE *ENGINE_nuron()
255         {
256         RSA_METHOD *meth1;
257         DSA_METHOD *meth2;
258         DH_METHOD *meth3;
259
260         /* We know that the "PKCS1_SSLeay()" functions hook properly
261          * to the nuron-specific mod_exp and mod_exp_crt so we use
262          * those functions. NB: We don't use ENGINE_openssl() or
263          * anything "more generic" because something like the RSAref
264          * code may not hook properly, and if you own one of these
265          * cards then you have the right to do RSA operations on it
266          * anyway! */ 
267         meth1=RSA_PKCS1_SSLeay();
268         nuron_rsa.rsa_pub_enc=meth1->rsa_pub_enc;
269         nuron_rsa.rsa_pub_dec=meth1->rsa_pub_dec;
270         nuron_rsa.rsa_priv_enc=meth1->rsa_priv_enc;
271         nuron_rsa.rsa_priv_dec=meth1->rsa_priv_dec;
272
273         /* Use the DSA_OpenSSL() method and just hook the mod_exp-ish
274          * bits. */
275         meth2=DSA_OpenSSL();
276         nuron_dsa.dsa_do_sign=meth2->dsa_do_sign;
277         nuron_dsa.dsa_sign_setup=meth2->dsa_sign_setup;
278         nuron_dsa.dsa_do_verify=meth2->dsa_do_verify;
279
280         /* Much the same for Diffie-Hellman */
281         meth3=DH_OpenSSL();
282         nuron_dh.generate_key=meth3->generate_key;
283         nuron_dh.compute_key=meth3->compute_key;
284         return &engine_nuron;
285         }
286
287 #endif /* !NO_HW_NURON */
288 #endif /* !NO_HW */