ca567dc67d931f6fa86e31afbe45e7b30dd500dc
[openssl.git] / crypto / engine / eng_cryptodev.c
1 /*
2  * Copyright (c) 2002 Bob Beck <beck@openbsd.org>
3  * Copyright (c) 2002 Theo de Raadt
4  * Copyright (c) 2002 Markus Friedl
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  */
28
29 #include <openssl/objects.h>
30 #include <openssl/engine.h>
31 #include <openssl/evp.h>
32 #include <openssl/bn.h>
33
34 #if (defined(__unix__) || defined(unix)) && !defined(USG) && \
35         (defined(OpenBSD) || defined(__FreeBSD__))
36 # include <sys/param.h>
37 # if (OpenBSD >= 200112) || ((__FreeBSD_version >= 470101 && __FreeBSD_version < 500000) || __FreeBSD_version >= 500041)
38 #  define HAVE_CRYPTODEV
39 # endif
40 # if (OpenBSD >= 200110)
41 #  define HAVE_SYSLOG_R
42 # endif
43 #endif
44
45 #ifndef HAVE_CRYPTODEV
46
47 void ENGINE_load_cryptodev(void)
48 {
49     /* This is a NOP on platforms without /dev/crypto */
50     return;
51 }
52
53 #else
54
55 # include <sys/types.h>
56 # include <crypto/cryptodev.h>
57 # include <openssl/dh.h>
58 # include <openssl/dsa.h>
59 # include <openssl/err.h>
60 # include <openssl/rsa.h>
61 # include <sys/ioctl.h>
62 # include <errno.h>
63 # include <stdio.h>
64 # include <unistd.h>
65 # include <fcntl.h>
66 # include <stdarg.h>
67 # include <syslog.h>
68 # include <errno.h>
69 # include <string.h>
70
71 struct dev_crypto_state {
72     struct session_op d_sess;
73     int d_fd;
74 # ifdef USE_CRYPTODEV_DIGESTS
75     char dummy_mac_key[HASH_MAX_LEN];
76     unsigned char digest_res[HASH_MAX_LEN];
77     char *mac_data;
78     int mac_len;
79 # endif
80 };
81
82 static u_int32_t cryptodev_asymfeat = 0;
83
84 static int get_asym_dev_crypto(void);
85 static int open_dev_crypto(void);
86 static int get_dev_crypto(void);
87 static int get_cryptodev_ciphers(const int **cnids);
88 # ifdef USE_CRYPTODEV_DIGESTS
89 static int get_cryptodev_digests(const int **cnids);
90 # endif
91 static int cryptodev_usable_ciphers(const int **nids);
92 static int cryptodev_usable_digests(const int **nids);
93 static int cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
94                             const unsigned char *in, size_t inl);
95 static int cryptodev_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
96                               const unsigned char *iv, int enc);
97 static int cryptodev_cleanup(EVP_CIPHER_CTX *ctx);
98 static int cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
99                                     const int **nids, int nid);
100 static int cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest,
101                                     const int **nids, int nid);
102 static int bn2crparam(const BIGNUM *a, struct crparam *crp);
103 static int crparam2bn(struct crparam *crp, BIGNUM *a);
104 static void zapparams(struct crypt_kop *kop);
105 static int cryptodev_asym(struct crypt_kop *kop, int rlen, BIGNUM *r,
106                           int slen, BIGNUM *s);
107
108 static int cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a,
109                                 const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,
110                                 BN_MONT_CTX *m_ctx);
111 static int cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa,
112                                        BN_CTX *ctx);
113 static int cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa,
114                                  BN_CTX *ctx);
115 static int cryptodev_dsa_bn_mod_exp(DSA *dsa, BIGNUM *r, BIGNUM *a,
116                                     const BIGNUM *p, const BIGNUM *m,
117                                     BN_CTX *ctx, BN_MONT_CTX *m_ctx);
118 static int cryptodev_dsa_dsa_mod_exp(DSA *dsa, BIGNUM *t1, BIGNUM *g,
119                                      BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2,
120                                      BIGNUM *p, BN_CTX *ctx,
121                                      BN_MONT_CTX *mont);
122 static DSA_SIG *cryptodev_dsa_do_sign(const unsigned char *dgst, int dlen,
123                                       DSA *dsa);
124 static int cryptodev_dsa_verify(const unsigned char *dgst, int dgst_len,
125                                 DSA_SIG *sig, DSA *dsa);
126 static int cryptodev_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a,
127                                 const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,
128                                 BN_MONT_CTX *m_ctx);
129 static int cryptodev_dh_compute_key(unsigned char *key, const BIGNUM *pub_key,
130                                     DH *dh);
131 static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
132                           void (*f) (void));
133 void ENGINE_load_cryptodev(void);
134
135 static const ENGINE_CMD_DEFN cryptodev_defns[] = {
136     {0, NULL, NULL, 0}
137 };
138
139 static struct {
140     int id;
141     int nid;
142     int ivmax;
143     int keylen;
144 } ciphers[] = {
145     {
146         CRYPTO_ARC4, NID_rc4, 0, 16,
147     },
148     {
149         CRYPTO_DES_CBC, NID_des_cbc, 8, 8,
150     },
151     {
152         CRYPTO_3DES_CBC, NID_des_ede3_cbc, 8, 24,
153     },
154     {
155         CRYPTO_AES_CBC, NID_aes_128_cbc, 16, 16,
156     },
157     {
158         CRYPTO_AES_CBC, NID_aes_192_cbc, 16, 24,
159     },
160     {
161         CRYPTO_AES_CBC, NID_aes_256_cbc, 16, 32,
162     },
163 # ifdef CRYPTO_AES_CTR
164     {
165         CRYPTO_AES_CTR, NID_aes_128_ctr, 14, 16,
166     },
167     {
168         CRYPTO_AES_CTR, NID_aes_192_ctr, 14, 24,
169     },
170     {
171         CRYPTO_AES_CTR, NID_aes_256_ctr, 14, 32,
172     },
173 # endif
174     {
175         CRYPTO_BLF_CBC, NID_bf_cbc, 8, 16,
176     },
177     {
178         CRYPTO_CAST_CBC, NID_cast5_cbc, 8, 16,
179     },
180     {
181         CRYPTO_SKIPJACK_CBC, NID_undef, 0, 0,
182     },
183     {
184         0, NID_undef, 0, 0,
185     },
186 };
187
188 # ifdef USE_CRYPTODEV_DIGESTS
189 static struct {
190     int id;
191     int nid;
192     int keylen;
193 } digests[] = {
194     {
195         CRYPTO_MD5_HMAC, NID_hmacWithMD5, 16
196     },
197     {
198         CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, 20
199     },
200     {
201         CRYPTO_RIPEMD160_HMAC, NID_ripemd160, 16
202         /* ? */
203     },
204     {
205         CRYPTO_MD5_KPDK, NID_undef, 0
206     },
207     {
208         CRYPTO_SHA1_KPDK, NID_undef, 0
209     },
210     {
211         CRYPTO_MD5, NID_md5, 16
212     },
213     {
214         CRYPTO_SHA1, NID_sha1, 20
215     },
216     {
217         0, NID_undef, 0
218     },
219 };
220 # endif
221
222 /*
223  * Return a fd if /dev/crypto seems usable, 0 otherwise.
224  */
225 static int open_dev_crypto(void)
226 {
227     static int fd = -1;
228
229     if (fd == -1) {
230         if ((fd = open("/dev/crypto", O_RDWR, 0)) == -1)
231             return (-1);
232         /* close on exec */
233         if (fcntl(fd, F_SETFD, 1) == -1) {
234             close(fd);
235             fd = -1;
236             return (-1);
237         }
238     }
239     return (fd);
240 }
241
242 static int get_dev_crypto(void)
243 {
244     int fd, retfd;
245
246     if ((fd = open_dev_crypto()) == -1)
247         return (-1);
248 # ifndef CRIOGET_NOT_NEEDED
249     if (ioctl(fd, CRIOGET, &retfd) == -1)
250         return (-1);
251
252     /* close on exec */
253     if (fcntl(retfd, F_SETFD, 1) == -1) {
254         close(retfd);
255         return (-1);
256     }
257 # else
258     retfd = fd;
259 # endif
260     return (retfd);
261 }
262
263 static void put_dev_crypto(int fd)
264 {
265 # ifndef CRIOGET_NOT_NEEDED
266     close(fd);
267 # endif
268 }
269
270 /* Caching version for asym operations */
271 static int get_asym_dev_crypto(void)
272 {
273     static int fd = -1;
274
275     if (fd == -1)
276         fd = get_dev_crypto();
277     return fd;
278 }
279
280 /*
281  * Find out what ciphers /dev/crypto will let us have a session for.
282  * XXX note, that some of these openssl doesn't deal with yet!
283  * returning them here is harmless, as long as we return NULL
284  * when asked for a handler in the cryptodev_engine_ciphers routine
285  */
286 static int get_cryptodev_ciphers(const int **cnids)
287 {
288     static int nids[CRYPTO_ALGORITHM_MAX];
289     struct session_op sess;
290     int fd, i, count = 0;
291
292     if ((fd = get_dev_crypto()) < 0) {
293         *cnids = NULL;
294         return (0);
295     }
296     memset(&sess, 0, sizeof(sess));
297     sess.key = (caddr_t) "123456789abcdefghijklmno";
298
299     for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
300         if (ciphers[i].nid == NID_undef)
301             continue;
302         sess.cipher = ciphers[i].id;
303         sess.keylen = ciphers[i].keylen;
304         sess.mac = 0;
305         if (ioctl(fd, CIOCGSESSION, &sess) != -1 &&
306             ioctl(fd, CIOCFSESSION, &sess.ses) != -1)
307             nids[count++] = ciphers[i].nid;
308     }
309     put_dev_crypto(fd);
310
311     if (count > 0)
312         *cnids = nids;
313     else
314         *cnids = NULL;
315     return (count);
316 }
317
318 # ifdef USE_CRYPTODEV_DIGESTS
319 /*
320  * Find out what digests /dev/crypto will let us have a session for.
321  * XXX note, that some of these openssl doesn't deal with yet!
322  * returning them here is harmless, as long as we return NULL
323  * when asked for a handler in the cryptodev_engine_digests routine
324  */
325 static int get_cryptodev_digests(const int **cnids)
326 {
327     static int nids[CRYPTO_ALGORITHM_MAX];
328     struct session_op sess;
329     int fd, i, count = 0;
330
331     if ((fd = get_dev_crypto()) < 0) {
332         *cnids = NULL;
333         return (0);
334     }
335     memset(&sess, 0, sizeof(sess));
336     sess.mackey = (caddr_t) "123456789abcdefghijklmno";
337     for (i = 0; digests[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
338         if (digests[i].nid == NID_undef)
339             continue;
340         sess.mac = digests[i].id;
341         sess.mackeylen = digests[i].keylen;
342         sess.cipher = 0;
343         if (ioctl(fd, CIOCGSESSION, &sess) != -1 &&
344             ioctl(fd, CIOCFSESSION, &sess.ses) != -1)
345             nids[count++] = digests[i].nid;
346     }
347     put_dev_crypto(fd);
348
349     if (count > 0)
350         *cnids = nids;
351     else
352         *cnids = NULL;
353     return (count);
354 }
355 # endif                         /* 0 */
356
357 /*
358  * Find the useable ciphers|digests from dev/crypto - this is the first
359  * thing called by the engine init crud which determines what it
360  * can use for ciphers from this engine. We want to return
361  * only what we can do, anythine else is handled by software.
362  *
363  * If we can't initialize the device to do anything useful for
364  * any reason, we want to return a NULL array, and 0 length,
365  * which forces everything to be done is software. By putting
366  * the initalization of the device in here, we ensure we can
367  * use this engine as the default, and if for whatever reason
368  * /dev/crypto won't do what we want it will just be done in
369  * software
370  *
371  * This can (should) be greatly expanded to perhaps take into
372  * account speed of the device, and what we want to do.
373  * (although the disabling of particular alg's could be controlled
374  * by the device driver with sysctl's.) - this is where we
375  * want most of the decisions made about what we actually want
376  * to use from /dev/crypto.
377  */
378 static int cryptodev_usable_ciphers(const int **nids)
379 {
380     return (get_cryptodev_ciphers(nids));
381 }
382
383 static int cryptodev_usable_digests(const int **nids)
384 {
385 # ifdef USE_CRYPTODEV_DIGESTS
386     return (get_cryptodev_digests(nids));
387 # else
388     /*
389      * XXXX just disable all digests for now, because it sucks.
390      * we need a better way to decide this - i.e. I may not
391      * want digests on slow cards like hifn on fast machines,
392      * but might want them on slow or loaded machines, etc.
393      * will also want them when using crypto cards that don't
394      * suck moose gonads - would be nice to be able to decide something
395      * as reasonable default without having hackery that's card dependent.
396      * of course, the default should probably be just do everything,
397      * with perhaps a sysctl to turn algoritms off (or have them off
398      * by default) on cards that generally suck like the hifn.
399      */
400     *nids = NULL;
401     return (0);
402 # endif
403 }
404
405 static int
406 cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
407                  const unsigned char *in, size_t inl)
408 {
409     struct crypt_op cryp;
410     struct dev_crypto_state *state = ctx->cipher_data;
411     struct session_op *sess = &state->d_sess;
412     const void *iiv;
413     unsigned char save_iv[EVP_MAX_IV_LENGTH];
414
415     if (state->d_fd < 0)
416         return (0);
417     if (!inl)
418         return (1);
419     if ((inl % ctx->cipher->block_size) != 0)
420         return (0);
421
422     memset(&cryp, 0, sizeof(cryp));
423
424     cryp.ses = sess->ses;
425     cryp.flags = 0;
426     cryp.len = inl;
427     cryp.src = (caddr_t) in;
428     cryp.dst = (caddr_t) out;
429     cryp.mac = 0;
430
431     cryp.op = ctx->encrypt ? COP_ENCRYPT : COP_DECRYPT;
432
433     if (ctx->cipher->iv_len) {
434         cryp.iv = (caddr_t) ctx->iv;
435         if (!ctx->encrypt) {
436             iiv = in + inl - ctx->cipher->iv_len;
437             memcpy(save_iv, iiv, ctx->cipher->iv_len);
438         }
439     } else
440         cryp.iv = NULL;
441
442     if (ioctl(state->d_fd, CIOCCRYPT, &cryp) == -1) {
443         /*
444          * XXX need better errror handling this can fail for a number of
445          * different reasons.
446          */
447         return (0);
448     }
449
450     if (ctx->cipher->iv_len) {
451         if (ctx->encrypt)
452             iiv = out + inl - ctx->cipher->iv_len;
453         else
454             iiv = save_iv;
455         memcpy(ctx->iv, iiv, ctx->cipher->iv_len);
456     }
457     return (1);
458 }
459
460 static int
461 cryptodev_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
462                    const unsigned char *iv, int enc)
463 {
464     struct dev_crypto_state *state = ctx->cipher_data;
465     struct session_op *sess = &state->d_sess;
466     int cipher = -1, i;
467
468     for (i = 0; ciphers[i].id; i++)
469         if (ctx->cipher->nid == ciphers[i].nid &&
470             ctx->cipher->iv_len <= ciphers[i].ivmax &&
471             ctx->key_len == ciphers[i].keylen) {
472             cipher = ciphers[i].id;
473             break;
474         }
475
476     if (!ciphers[i].id) {
477         state->d_fd = -1;
478         return (0);
479     }
480
481     memset(sess, 0, sizeof(*sess));
482
483     if ((state->d_fd = get_dev_crypto()) < 0)
484         return (0);
485
486     sess->key = (caddr_t) key;
487     sess->keylen = ctx->key_len;
488     sess->cipher = cipher;
489
490     if (ioctl(state->d_fd, CIOCGSESSION, sess) == -1) {
491         put_dev_crypto(state->d_fd);
492         state->d_fd = -1;
493         return (0);
494     }
495     return (1);
496 }
497
498 /*
499  * free anything we allocated earlier when initting a
500  * session, and close the session.
501  */
502 static int cryptodev_cleanup(EVP_CIPHER_CTX *ctx)
503 {
504     int ret = 0;
505     struct dev_crypto_state *state = ctx->cipher_data;
506     struct session_op *sess = &state->d_sess;
507
508     if (state->d_fd < 0)
509         return (0);
510
511     /*
512      * XXX if this ioctl fails, someting's wrong. the invoker may have called
513      * us with a bogus ctx, or we could have a device that for whatever
514      * reason just doesn't want to play ball - it's not clear what's right
515      * here - should this be an error? should it just increase a counter,
516      * hmm. For right now, we return 0 - I don't believe that to be "right".
517      * we could call the gorpy openssl lib error handlers that print messages
518      * to users of the library. hmm..
519      */
520
521     if (ioctl(state->d_fd, CIOCFSESSION, &sess->ses) == -1) {
522         ret = 0;
523     } else {
524         ret = 1;
525     }
526     put_dev_crypto(state->d_fd);
527     state->d_fd = -1;
528
529     return (ret);
530 }
531
532 /*
533  * libcrypto EVP stuff - this is how we get wired to EVP so the engine
534  * gets called when libcrypto requests a cipher NID.
535  */
536
537 /* RC4 */
538 const EVP_CIPHER cryptodev_rc4 = {
539     NID_rc4,
540     1, 16, 0,
541     EVP_CIPH_VARIABLE_LENGTH,
542     cryptodev_init_key,
543     cryptodev_cipher,
544     cryptodev_cleanup,
545     sizeof(struct dev_crypto_state),
546     NULL,
547     NULL,
548     NULL
549 };
550
551 /* DES CBC EVP */
552 const EVP_CIPHER cryptodev_des_cbc = {
553     NID_des_cbc,
554     8, 8, 8,
555     EVP_CIPH_CBC_MODE,
556     cryptodev_init_key,
557     cryptodev_cipher,
558     cryptodev_cleanup,
559     sizeof(struct dev_crypto_state),
560     EVP_CIPHER_set_asn1_iv,
561     EVP_CIPHER_get_asn1_iv,
562     NULL
563 };
564
565 /* 3DES CBC EVP */
566 const EVP_CIPHER cryptodev_3des_cbc = {
567     NID_des_ede3_cbc,
568     8, 24, 8,
569     EVP_CIPH_CBC_MODE,
570     cryptodev_init_key,
571     cryptodev_cipher,
572     cryptodev_cleanup,
573     sizeof(struct dev_crypto_state),
574     EVP_CIPHER_set_asn1_iv,
575     EVP_CIPHER_get_asn1_iv,
576     NULL
577 };
578
579 const EVP_CIPHER cryptodev_bf_cbc = {
580     NID_bf_cbc,
581     8, 16, 8,
582     EVP_CIPH_CBC_MODE,
583     cryptodev_init_key,
584     cryptodev_cipher,
585     cryptodev_cleanup,
586     sizeof(struct dev_crypto_state),
587     EVP_CIPHER_set_asn1_iv,
588     EVP_CIPHER_get_asn1_iv,
589     NULL
590 };
591
592 const EVP_CIPHER cryptodev_cast_cbc = {
593     NID_cast5_cbc,
594     8, 16, 8,
595     EVP_CIPH_CBC_MODE,
596     cryptodev_init_key,
597     cryptodev_cipher,
598     cryptodev_cleanup,
599     sizeof(struct dev_crypto_state),
600     EVP_CIPHER_set_asn1_iv,
601     EVP_CIPHER_get_asn1_iv,
602     NULL
603 };
604
605 const EVP_CIPHER cryptodev_aes_cbc = {
606     NID_aes_128_cbc,
607     16, 16, 16,
608     EVP_CIPH_CBC_MODE,
609     cryptodev_init_key,
610     cryptodev_cipher,
611     cryptodev_cleanup,
612     sizeof(struct dev_crypto_state),
613     EVP_CIPHER_set_asn1_iv,
614     EVP_CIPHER_get_asn1_iv,
615     NULL
616 };
617
618 const EVP_CIPHER cryptodev_aes_192_cbc = {
619     NID_aes_192_cbc,
620     16, 24, 16,
621     EVP_CIPH_CBC_MODE,
622     cryptodev_init_key,
623     cryptodev_cipher,
624     cryptodev_cleanup,
625     sizeof(struct dev_crypto_state),
626     EVP_CIPHER_set_asn1_iv,
627     EVP_CIPHER_get_asn1_iv,
628     NULL
629 };
630
631 const EVP_CIPHER cryptodev_aes_256_cbc = {
632     NID_aes_256_cbc,
633     16, 32, 16,
634     EVP_CIPH_CBC_MODE,
635     cryptodev_init_key,
636     cryptodev_cipher,
637     cryptodev_cleanup,
638     sizeof(struct dev_crypto_state),
639     EVP_CIPHER_set_asn1_iv,
640     EVP_CIPHER_get_asn1_iv,
641     NULL
642 };
643
644 # ifdef CRYPTO_AES_CTR
645 const EVP_CIPHER cryptodev_aes_ctr = {
646     NID_aes_128_ctr,
647     16, 16, 14,
648     EVP_CIPH_CTR_MODE,
649     cryptodev_init_key,
650     cryptodev_cipher,
651     cryptodev_cleanup,
652     sizeof(struct dev_crypto_state),
653     EVP_CIPHER_set_asn1_iv,
654     EVP_CIPHER_get_asn1_iv,
655     NULL
656 };
657
658 const EVP_CIPHER cryptodev_aes_ctr_192 = {
659     NID_aes_192_ctr,
660     16, 24, 14,
661     EVP_CIPH_CTR_MODE,
662     cryptodev_init_key,
663     cryptodev_cipher,
664     cryptodev_cleanup,
665     sizeof(struct dev_crypto_state),
666     EVP_CIPHER_set_asn1_iv,
667     EVP_CIPHER_get_asn1_iv,
668     NULL
669 };
670
671 const EVP_CIPHER cryptodev_aes_ctr_256 = {
672     NID_aes_256_ctr,
673     16, 32, 14,
674     EVP_CIPH_CTR_MODE,
675     cryptodev_init_key,
676     cryptodev_cipher,
677     cryptodev_cleanup,
678     sizeof(struct dev_crypto_state),
679     EVP_CIPHER_set_asn1_iv,
680     EVP_CIPHER_get_asn1_iv,
681     NULL
682 };
683 # endif
684 /*
685  * Registered by the ENGINE when used to find out how to deal with
686  * a particular NID in the ENGINE. this says what we'll do at the
687  * top level - note, that list is restricted by what we answer with
688  */
689 static int
690 cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
691                          const int **nids, int nid)
692 {
693     if (!cipher)
694         return (cryptodev_usable_ciphers(nids));
695
696     switch (nid) {
697     case NID_rc4:
698         *cipher = &cryptodev_rc4;
699         break;
700     case NID_des_ede3_cbc:
701         *cipher = &cryptodev_3des_cbc;
702         break;
703     case NID_des_cbc:
704         *cipher = &cryptodev_des_cbc;
705         break;
706     case NID_bf_cbc:
707         *cipher = &cryptodev_bf_cbc;
708         break;
709     case NID_cast5_cbc:
710         *cipher = &cryptodev_cast_cbc;
711         break;
712     case NID_aes_128_cbc:
713         *cipher = &cryptodev_aes_cbc;
714         break;
715     case NID_aes_192_cbc:
716         *cipher = &cryptodev_aes_192_cbc;
717         break;
718     case NID_aes_256_cbc:
719         *cipher = &cryptodev_aes_256_cbc;
720         break;
721 # ifdef CRYPTO_AES_CTR
722     case NID_aes_128_ctr:
723         *cipher = &cryptodev_aes_ctr;
724         break;
725     case NID_aes_192_ctr:
726         *cipher = &cryptodev_aes_ctr_192;
727         break;
728     case NID_aes_256_ctr:
729         *cipher = &cryptodev_aes_ctr_256;
730         break;
731 # endif
732     default:
733         *cipher = NULL;
734         break;
735     }
736     return (*cipher != NULL);
737 }
738
739 # ifdef USE_CRYPTODEV_DIGESTS
740
741 /* convert digest type to cryptodev */
742 static int digest_nid_to_cryptodev(int nid)
743 {
744     int i;
745
746     for (i = 0; digests[i].id; i++)
747         if (digests[i].nid == nid)
748             return (digests[i].id);
749     return (0);
750 }
751
752 static int digest_key_length(int nid)
753 {
754     int i;
755
756     for (i = 0; digests[i].id; i++)
757         if (digests[i].nid == nid)
758             return digests[i].keylen;
759     return (0);
760 }
761
762 static int cryptodev_digest_init(EVP_MD_CTX *ctx)
763 {
764     struct dev_crypto_state *state = ctx->md_data;
765     struct session_op *sess = &state->d_sess;
766     int digest;
767
768     if ((digest = digest_nid_to_cryptodev(ctx->digest->type)) == NID_undef) {
769         printf("cryptodev_digest_init: Can't get digest \n");
770         return (0);
771     }
772
773     memset(state, 0, sizeof(*state));
774
775     if ((state->d_fd = get_dev_crypto()) < 0) {
776         printf("cryptodev_digest_init: Can't get Dev \n");
777         return (0);
778     }
779
780     sess->mackey = state->dummy_mac_key;
781     sess->mackeylen = digest_key_length(ctx->digest->type);
782     sess->mac = digest;
783
784     if (ioctl(state->d_fd, CIOCGSESSION, sess) < 0) {
785         put_dev_crypto(state->d_fd);
786         state->d_fd = -1;
787         printf("cryptodev_digest_init: Open session failed\n");
788         return (0);
789     }
790
791     return (1);
792 }
793
794 static int cryptodev_digest_update(EVP_MD_CTX *ctx, const void *data,
795                                    size_t count)
796 {
797     struct crypt_op cryp;
798     struct dev_crypto_state *state = ctx->md_data;
799     struct session_op *sess = &state->d_sess;
800     char *new_mac_data;
801
802     if (!data || state->d_fd < 0) {
803         printf("cryptodev_digest_update: illegal inputs \n");
804         return (0);
805     }
806
807     if (!count) {
808         return (0);
809     }
810
811     if (!(ctx->flags & EVP_MD_CTX_FLAG_ONESHOT)) {
812         /* if application doesn't support one buffer */
813         new_mac_data =
814             OPENSSL_realloc(state->mac_data, state->mac_len + count);
815
816         if (!new_mac_data) {
817             printf("cryptodev_digest_update: realloc failed\n");
818             return (0);
819         }
820         state->mac_data = new_mac_data;
821
822         memcpy(state->mac_data + state->mac_len, data, count);
823         state->mac_len += count;
824
825         return (1);
826     }
827
828     memset(&cryp, 0, sizeof(cryp));
829
830     cryp.ses = sess->ses;
831     cryp.flags = 0;
832     cryp.len = count;
833     cryp.src = (caddr_t) data;
834     cryp.dst = NULL;
835     cryp.mac = (caddr_t) state->digest_res;
836     if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) {
837         printf("cryptodev_digest_update: digest failed\n");
838         return (0);
839     }
840     return (1);
841 }
842
843 static int cryptodev_digest_final(EVP_MD_CTX *ctx, unsigned char *md)
844 {
845     struct crypt_op cryp;
846     struct dev_crypto_state *state = ctx->md_data;
847     struct session_op *sess = &state->d_sess;
848
849     int ret = 1;
850
851     if (!md || state->d_fd < 0) {
852         printf("cryptodev_digest_final: illegal input\n");
853         return (0);
854     }
855
856     if (!(ctx->flags & EVP_MD_CTX_FLAG_ONESHOT)) {
857         /* if application doesn't support one buffer */
858         memset(&cryp, 0, sizeof(cryp));
859         cryp.ses = sess->ses;
860         cryp.flags = 0;
861         cryp.len = state->mac_len;
862         cryp.src = state->mac_data;
863         cryp.dst = NULL;
864         cryp.mac = (caddr_t) md;
865         if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) {
866             printf("cryptodev_digest_final: digest failed\n");
867             return (0);
868         }
869
870         return 1;
871     }
872
873     memcpy(md, state->digest_res, ctx->digest->md_size);
874
875     return (ret);
876 }
877
878 static int cryptodev_digest_cleanup(EVP_MD_CTX *ctx)
879 {
880     int ret = 1;
881     struct dev_crypto_state *state = ctx->md_data;
882     struct session_op *sess = &state->d_sess;
883
884     if (state == NULL)
885         return 0;
886
887     if (state->d_fd < 0) {
888         printf("cryptodev_digest_cleanup: illegal input\n");
889         return (0);
890     }
891
892     OPENSSL_free(state->mac_data);
893     state->mac_data = NULL;
894     state->mac_len = 0;
895
896     if (ioctl(state->d_fd, CIOCFSESSION, &sess->ses) < 0) {
897         printf("cryptodev_digest_cleanup: failed to close session\n");
898         ret = 0;
899     } else {
900         ret = 1;
901     }
902     put_dev_crypto(state->d_fd);
903     state->d_fd = -1;
904
905     return (ret);
906 }
907
908 static int cryptodev_digest_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from)
909 {
910     struct dev_crypto_state *fstate = from->md_data;
911     struct dev_crypto_state *dstate = to->md_data;
912     struct session_op *sess;
913     int digest;
914
915     if (dstate == NULL || fstate == NULL)
916         return 1;
917
918     memcpy(dstate, fstate, sizeof(struct dev_crypto_state));
919
920     sess = &dstate->d_sess;
921
922     digest = digest_nid_to_cryptodev(to->digest->type);
923
924     sess->mackey = dstate->dummy_mac_key;
925     sess->mackeylen = digest_key_length(to->digest->type);
926     sess->mac = digest;
927
928     dstate->d_fd = get_dev_crypto();
929
930     if (ioctl(dstate->d_fd, CIOCGSESSION, sess) < 0) {
931         put_dev_crypto(dstate->d_fd);
932         dstate->d_fd = -1;
933         printf("cryptodev_digest_copy: Open session failed\n");
934         return (0);
935     }
936
937     if (fstate->mac_len != 0) {
938         if (fstate->mac_data != NULL) {
939             dstate->mac_data = OPENSSL_malloc(fstate->mac_len);
940             if (dstate->mac_data == NULL) {
941                 printf("cryptodev_digest_copy: mac_data allocation failed\n");
942                 return (0);
943             }
944             memcpy(dstate->mac_data, fstate->mac_data, fstate->mac_len);
945             dstate->mac_len = fstate->mac_len;
946         }
947     }
948
949     return 1;
950 }
951
952 const EVP_MD cryptodev_sha1 = {
953     NID_sha1,
954     NID_undef,
955     SHA_DIGEST_LENGTH,
956     EVP_MD_FLAG_ONESHOT,
957     cryptodev_digest_init,
958     cryptodev_digest_update,
959     cryptodev_digest_final,
960     cryptodev_digest_copy,
961     cryptodev_digest_cleanup,
962     EVP_PKEY_NULL_method,
963     SHA_CBLOCK,
964     sizeof(struct dev_crypto_state),
965 };
966
967 const EVP_MD cryptodev_md5 = {
968     NID_md5,
969     NID_undef,
970     16 /* MD5_DIGEST_LENGTH */ ,
971     EVP_MD_FLAG_ONESHOT,
972     cryptodev_digest_init,
973     cryptodev_digest_update,
974     cryptodev_digest_final,
975     cryptodev_digest_copy,
976     cryptodev_digest_cleanup,
977     EVP_PKEY_NULL_method,
978     64 /* MD5_CBLOCK */ ,
979     sizeof(struct dev_crypto_state),
980 };
981
982 # endif                         /* USE_CRYPTODEV_DIGESTS */
983
984 static int
985 cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest,
986                          const int **nids, int nid)
987 {
988     if (!digest)
989         return (cryptodev_usable_digests(nids));
990
991     switch (nid) {
992 # ifdef USE_CRYPTODEV_DIGESTS
993     case NID_md5:
994         *digest = &cryptodev_md5;
995         break;
996     case NID_sha1:
997         *digest = &cryptodev_sha1;
998         break;
999     default:
1000 # endif                         /* USE_CRYPTODEV_DIGESTS */
1001         *digest = NULL;
1002         break;
1003     }
1004     return (*digest != NULL);
1005 }
1006
1007 /*
1008  * Convert a BIGNUM to the representation that /dev/crypto needs.
1009  * Upon completion of use, the caller is responsible for freeing
1010  * crp->crp_p.
1011  */
1012 static int bn2crparam(const BIGNUM *a, struct crparam *crp)
1013 {
1014     ssize_t bytes, bits;
1015     u_char *b;
1016
1017     crp->crp_p = NULL;
1018     crp->crp_nbits = 0;
1019
1020     bits = BN_num_bits(a);
1021     bytes = BN_num_bytes(a);
1022
1023     b = OPENSSL_zalloc(bytes);
1024     if (b == NULL)
1025         return (1);
1026
1027     crp->crp_p = (caddr_t) b;
1028     crp->crp_nbits = bits;
1029
1030     BN_bn2bin(a, b);
1031     return (0);
1032 }
1033
1034 /* Convert a /dev/crypto parameter to a BIGNUM */
1035 static int crparam2bn(struct crparam *crp, BIGNUM *a)
1036 {
1037     u_int8_t *pd;
1038     int i, bytes;
1039
1040     bytes = (crp->crp_nbits + 7) / 8;
1041
1042     if (bytes == 0)
1043         return (-1);
1044
1045     if ((pd = OPENSSL_malloc(bytes)) == NULL)
1046         return (-1);
1047
1048     for (i = 0; i < bytes; i++)
1049         pd[i] = crp->crp_p[bytes - i - 1];
1050
1051     BN_bin2bn(pd, bytes, a);
1052     free(pd);
1053
1054     return (0);
1055 }
1056
1057 static void zapparams(struct crypt_kop *kop)
1058 {
1059     int i;
1060
1061     for (i = 0; i < kop->crk_iparams + kop->crk_oparams; i++) {
1062         if (kop->crk_param[i].crp_p)
1063             free(kop->crk_param[i].crp_p);
1064         kop->crk_param[i].crp_p = NULL;
1065         kop->crk_param[i].crp_nbits = 0;
1066     }
1067 }
1068
1069 static int
1070 cryptodev_asym(struct crypt_kop *kop, int rlen, BIGNUM *r, int slen,
1071                BIGNUM *s)
1072 {
1073     int fd, ret = -1;
1074
1075     if ((fd = get_asym_dev_crypto()) < 0)
1076         return (ret);
1077
1078     if (r) {
1079         kop->crk_param[kop->crk_iparams].crp_p = calloc(rlen, sizeof(char));
1080         kop->crk_param[kop->crk_iparams].crp_nbits = rlen * 8;
1081         kop->crk_oparams++;
1082     }
1083     if (s) {
1084         kop->crk_param[kop->crk_iparams + 1].crp_p =
1085             calloc(slen, sizeof(char));
1086         kop->crk_param[kop->crk_iparams + 1].crp_nbits = slen * 8;
1087         kop->crk_oparams++;
1088     }
1089
1090     if (ioctl(fd, CIOCKEY, kop) == 0) {
1091         if (r)
1092             crparam2bn(&kop->crk_param[kop->crk_iparams], r);
1093         if (s)
1094             crparam2bn(&kop->crk_param[kop->crk_iparams + 1], s);
1095         ret = 0;
1096     }
1097
1098     return (ret);
1099 }
1100
1101 static int
1102 cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
1103                      const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont)
1104 {
1105     struct crypt_kop kop;
1106     int ret = 1;
1107
1108     /*
1109      * Currently, we know we can do mod exp iff we can do any asymmetric
1110      * operations at all.
1111      */
1112     if (cryptodev_asymfeat == 0) {
1113         ret = BN_mod_exp(r, a, p, m, ctx);
1114         return (ret);
1115     }
1116
1117     memset(&kop, 0, sizeof(kop));
1118     kop.crk_op = CRK_MOD_EXP;
1119
1120     /* inputs: a^p % m */
1121     if (bn2crparam(a, &kop.crk_param[0]))
1122         goto err;
1123     if (bn2crparam(p, &kop.crk_param[1]))
1124         goto err;
1125     if (bn2crparam(m, &kop.crk_param[2]))
1126         goto err;
1127     kop.crk_iparams = 3;
1128
1129     if (cryptodev_asym(&kop, BN_num_bytes(m), r, 0, NULL)) {
1130         const RSA_METHOD *meth = RSA_PKCS1_SSLeay();
1131         printf("OCF asym process failed, Running in software\n");
1132         ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont);
1133
1134     } else if (ECANCELED == kop.crk_status) {
1135         const RSA_METHOD *meth = RSA_PKCS1_SSLeay();
1136         printf("OCF hardware operation cancelled. Running in Software\n");
1137         ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont);
1138     }
1139     /* else cryptodev operation worked ok ==> ret = 1 */
1140
1141  err:
1142     zapparams(&kop);
1143     return (ret);
1144 }
1145
1146 static int
1147 cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa,
1148                             BN_CTX *ctx)
1149 {
1150     int r;
1151     ctx = BN_CTX_new();
1152     r = cryptodev_bn_mod_exp(r0, I, rsa->d, rsa->n, ctx, NULL);
1153     BN_CTX_free(ctx);
1154     return (r);
1155 }
1156
1157 static int
1158 cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
1159 {
1160     struct crypt_kop kop;
1161     int ret = 1;
1162
1163     if (!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp) {
1164         /* XXX 0 means failure?? */
1165         return (0);
1166     }
1167
1168     memset(&kop, 0, sizeof(kop));
1169     kop.crk_op = CRK_MOD_EXP_CRT;
1170     /* inputs: rsa->p rsa->q I rsa->dmp1 rsa->dmq1 rsa->iqmp */
1171     if (bn2crparam(rsa->p, &kop.crk_param[0]))
1172         goto err;
1173     if (bn2crparam(rsa->q, &kop.crk_param[1]))
1174         goto err;
1175     if (bn2crparam(I, &kop.crk_param[2]))
1176         goto err;
1177     if (bn2crparam(rsa->dmp1, &kop.crk_param[3]))
1178         goto err;
1179     if (bn2crparam(rsa->dmq1, &kop.crk_param[4]))
1180         goto err;
1181     if (bn2crparam(rsa->iqmp, &kop.crk_param[5]))
1182         goto err;
1183     kop.crk_iparams = 6;
1184
1185     if (cryptodev_asym(&kop, BN_num_bytes(rsa->n), r0, 0, NULL)) {
1186         const RSA_METHOD *meth = RSA_PKCS1_SSLeay();
1187         printf("OCF asym process failed, running in Software\n");
1188         ret = (*meth->rsa_mod_exp) (r0, I, rsa, ctx);
1189
1190     } else if (ECANCELED == kop.crk_status) {
1191         const RSA_METHOD *meth = RSA_PKCS1_SSLeay();
1192         printf("OCF hardware operation cancelled. Running in Software\n");
1193         ret = (*meth->rsa_mod_exp) (r0, I, rsa, ctx);
1194     }
1195     /* else cryptodev operation worked ok ==> ret = 1 */
1196
1197  err:
1198     zapparams(&kop);
1199     return (ret);
1200 }
1201
1202 static RSA_METHOD cryptodev_rsa = {
1203     "cryptodev RSA method",
1204     NULL,                       /* rsa_pub_enc */
1205     NULL,                       /* rsa_pub_dec */
1206     NULL,                       /* rsa_priv_enc */
1207     NULL,                       /* rsa_priv_dec */
1208     NULL,
1209     NULL,
1210     NULL,                       /* init */
1211     NULL,                       /* finish */
1212     0,                          /* flags */
1213     NULL,                       /* app_data */
1214     NULL,                       /* rsa_sign */
1215     NULL                        /* rsa_verify */
1216 };
1217
1218 static int
1219 cryptodev_dsa_bn_mod_exp(DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p,
1220                          const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx)
1221 {
1222     return (cryptodev_bn_mod_exp(r, a, p, m, ctx, m_ctx));
1223 }
1224
1225 static int
1226 cryptodev_dsa_dsa_mod_exp(DSA *dsa, BIGNUM *t1, BIGNUM *g,
1227                           BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p,
1228                           BN_CTX *ctx, BN_MONT_CTX *mont)
1229 {
1230     BIGNUM *t2;
1231     int ret = 0;
1232
1233     t2 = BN_new();
1234
1235     /* v = ( g^u1 * y^u2 mod p ) mod q */
1236     /* let t1 = g ^ u1 mod p */
1237     ret = 0;
1238
1239     if (!dsa->meth->bn_mod_exp(dsa, t1, dsa->g, u1, dsa->p, ctx, mont))
1240         goto err;
1241
1242     /* let t2 = y ^ u2 mod p */
1243     if (!dsa->meth->bn_mod_exp(dsa, t2, dsa->pub_key, u2, dsa->p, ctx, mont))
1244         goto err;
1245     /* let u1 = t1 * t2 mod p */
1246     if (!BN_mod_mul(u1, t1, t2, dsa->p, ctx))
1247         goto err;
1248
1249     BN_copy(t1, u1);
1250
1251     ret = 1;
1252  err:
1253     BN_free(t2);
1254     return (ret);
1255 }
1256
1257 static DSA_SIG *cryptodev_dsa_do_sign(const unsigned char *dgst, int dlen,
1258                                       DSA *dsa)
1259 {
1260     struct crypt_kop kop;
1261     BIGNUM *r = NULL, *s = NULL;
1262     DSA_SIG *dsaret = NULL;
1263
1264     if ((r = BN_new()) == NULL)
1265         goto err;
1266     if ((s = BN_new()) == NULL) {
1267         BN_free(r);
1268         goto err;
1269     }
1270
1271     memset(&kop, 0, sizeof(kop));
1272     kop.crk_op = CRK_DSA_SIGN;
1273
1274     /* inputs: dgst dsa->p dsa->q dsa->g dsa->priv_key */
1275     kop.crk_param[0].crp_p = (caddr_t) dgst;
1276     kop.crk_param[0].crp_nbits = dlen * 8;
1277     if (bn2crparam(dsa->p, &kop.crk_param[1]))
1278         goto err;
1279     if (bn2crparam(dsa->q, &kop.crk_param[2]))
1280         goto err;
1281     if (bn2crparam(dsa->g, &kop.crk_param[3]))
1282         goto err;
1283     if (bn2crparam(dsa->priv_key, &kop.crk_param[4]))
1284         goto err;
1285     kop.crk_iparams = 5;
1286
1287     if (cryptodev_asym(&kop, BN_num_bytes(dsa->q), r,
1288                        BN_num_bytes(dsa->q), s) == 0) {
1289         dsaret = DSA_SIG_new();
1290         dsaret->r = r;
1291         dsaret->s = s;
1292     } else {
1293         const DSA_METHOD *meth = DSA_OpenSSL();
1294         BN_free(r);
1295         BN_free(s);
1296         dsaret = (meth->dsa_do_sign) (dgst, dlen, dsa);
1297     }
1298  err:
1299     kop.crk_param[0].crp_p = NULL;
1300     zapparams(&kop);
1301     return (dsaret);
1302 }
1303
1304 static int
1305 cryptodev_dsa_verify(const unsigned char *dgst, int dlen,
1306                      DSA_SIG *sig, DSA *dsa)
1307 {
1308     struct crypt_kop kop;
1309     int dsaret = 1;
1310
1311     memset(&kop, 0, sizeof(kop));
1312     kop.crk_op = CRK_DSA_VERIFY;
1313
1314     /* inputs: dgst dsa->p dsa->q dsa->g dsa->pub_key sig->r sig->s */
1315     kop.crk_param[0].crp_p = (caddr_t) dgst;
1316     kop.crk_param[0].crp_nbits = dlen * 8;
1317     if (bn2crparam(dsa->p, &kop.crk_param[1]))
1318         goto err;
1319     if (bn2crparam(dsa->q, &kop.crk_param[2]))
1320         goto err;
1321     if (bn2crparam(dsa->g, &kop.crk_param[3]))
1322         goto err;
1323     if (bn2crparam(dsa->pub_key, &kop.crk_param[4]))
1324         goto err;
1325     if (bn2crparam(sig->r, &kop.crk_param[5]))
1326         goto err;
1327     if (bn2crparam(sig->s, &kop.crk_param[6]))
1328         goto err;
1329     kop.crk_iparams = 7;
1330
1331     if (cryptodev_asym(&kop, 0, NULL, 0, NULL) == 0) {
1332         /*
1333          * OCF success value is 0, if not zero, change dsaret to fail
1334          */
1335         if (0 != kop.crk_status)
1336             dsaret = 0;
1337     } else {
1338         const DSA_METHOD *meth = DSA_OpenSSL();
1339
1340         dsaret = (meth->dsa_do_verify) (dgst, dlen, sig, dsa);
1341     }
1342  err:
1343     kop.crk_param[0].crp_p = NULL;
1344     zapparams(&kop);
1345     return (dsaret);
1346 }
1347
1348 static DSA_METHOD cryptodev_dsa = {
1349     "cryptodev DSA method",
1350     NULL,
1351     NULL,                       /* dsa_sign_setup */
1352     NULL,
1353     NULL,                       /* dsa_mod_exp */
1354     NULL,
1355     NULL,                       /* init */
1356     NULL,                       /* finish */
1357     0,                          /* flags */
1358     NULL                        /* app_data */
1359 };
1360
1361 static int
1362 cryptodev_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a,
1363                      const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,
1364                      BN_MONT_CTX *m_ctx)
1365 {
1366     return (cryptodev_bn_mod_exp(r, a, p, m, ctx, m_ctx));
1367 }
1368
1369 static int
1370 cryptodev_dh_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh)
1371 {
1372     struct crypt_kop kop;
1373     int dhret = 1;
1374     int fd, keylen;
1375
1376     if ((fd = get_asym_dev_crypto()) < 0) {
1377         const DH_METHOD *meth = DH_OpenSSL();
1378
1379         return ((meth->compute_key) (key, pub_key, dh));
1380     }
1381
1382     keylen = BN_num_bits(dh->p);
1383
1384     memset(&kop, 0, sizeof(kop));
1385     kop.crk_op = CRK_DH_COMPUTE_KEY;
1386
1387     /* inputs: dh->priv_key pub_key dh->p key */
1388     if (bn2crparam(dh->priv_key, &kop.crk_param[0]))
1389         goto err;
1390     if (bn2crparam(pub_key, &kop.crk_param[1]))
1391         goto err;
1392     if (bn2crparam(dh->p, &kop.crk_param[2]))
1393         goto err;
1394     kop.crk_iparams = 3;
1395
1396     kop.crk_param[3].crp_p = (caddr_t) key;
1397     kop.crk_param[3].crp_nbits = keylen * 8;
1398     kop.crk_oparams = 1;
1399
1400     if (ioctl(fd, CIOCKEY, &kop) == -1) {
1401         const DH_METHOD *meth = DH_OpenSSL();
1402
1403         dhret = (meth->compute_key) (key, pub_key, dh);
1404     }
1405  err:
1406     kop.crk_param[3].crp_p = NULL;
1407     zapparams(&kop);
1408     return (dhret);
1409 }
1410
1411 static DH_METHOD cryptodev_dh = {
1412     "cryptodev DH method",
1413     NULL,                       /* cryptodev_dh_generate_key */
1414     NULL,
1415     NULL,
1416     NULL,
1417     NULL,
1418     0,                          /* flags */
1419     NULL                        /* app_data */
1420 };
1421
1422 /*
1423  * ctrl right now is just a wrapper that doesn't do much
1424  * but I expect we'll want some options soon.
1425  */
1426 static int
1427 cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void))
1428 {
1429 # ifdef HAVE_SYSLOG_R
1430     struct syslog_data sd = SYSLOG_DATA_INIT;
1431 # endif
1432
1433     switch (cmd) {
1434     default:
1435 # ifdef HAVE_SYSLOG_R
1436         syslog_r(LOG_ERR, &sd, "cryptodev_ctrl: unknown command %d", cmd);
1437 # else
1438         syslog(LOG_ERR, "cryptodev_ctrl: unknown command %d", cmd);
1439 # endif
1440         break;
1441     }
1442     return (1);
1443 }
1444
1445 void ENGINE_load_cryptodev(void)
1446 {
1447     ENGINE *engine = ENGINE_new();
1448     int fd;
1449
1450     if (engine == NULL)
1451         return;
1452     if ((fd = get_dev_crypto()) < 0) {
1453         ENGINE_free(engine);
1454         return;
1455     }
1456
1457     /*
1458      * find out what asymmetric crypto algorithms we support
1459      */
1460     if (ioctl(fd, CIOCASYMFEAT, &cryptodev_asymfeat) == -1) {
1461         put_dev_crypto(fd);
1462         ENGINE_free(engine);
1463         return;
1464     }
1465     put_dev_crypto(fd);
1466
1467     if (!ENGINE_set_id(engine, "cryptodev") ||
1468         !ENGINE_set_name(engine, "BSD cryptodev engine") ||
1469         !ENGINE_set_ciphers(engine, cryptodev_engine_ciphers) ||
1470         !ENGINE_set_digests(engine, cryptodev_engine_digests) ||
1471         !ENGINE_set_ctrl_function(engine, cryptodev_ctrl) ||
1472         !ENGINE_set_cmd_defns(engine, cryptodev_defns)) {
1473         ENGINE_free(engine);
1474         return;
1475     }
1476
1477     if (ENGINE_set_RSA(engine, &cryptodev_rsa)) {
1478         const RSA_METHOD *rsa_meth = RSA_PKCS1_SSLeay();
1479
1480         cryptodev_rsa.bn_mod_exp = rsa_meth->bn_mod_exp;
1481         cryptodev_rsa.rsa_mod_exp = rsa_meth->rsa_mod_exp;
1482         cryptodev_rsa.rsa_pub_enc = rsa_meth->rsa_pub_enc;
1483         cryptodev_rsa.rsa_pub_dec = rsa_meth->rsa_pub_dec;
1484         cryptodev_rsa.rsa_priv_enc = rsa_meth->rsa_priv_enc;
1485         cryptodev_rsa.rsa_priv_dec = rsa_meth->rsa_priv_dec;
1486         if (cryptodev_asymfeat & CRF_MOD_EXP) {
1487             cryptodev_rsa.bn_mod_exp = cryptodev_bn_mod_exp;
1488             if (cryptodev_asymfeat & CRF_MOD_EXP_CRT)
1489                 cryptodev_rsa.rsa_mod_exp = cryptodev_rsa_mod_exp;
1490             else
1491                 cryptodev_rsa.rsa_mod_exp = cryptodev_rsa_nocrt_mod_exp;
1492         }
1493     }
1494
1495     if (ENGINE_set_DSA(engine, &cryptodev_dsa)) {
1496         const DSA_METHOD *meth = DSA_OpenSSL();
1497
1498         memcpy(&cryptodev_dsa, meth, sizeof(DSA_METHOD));
1499         if (cryptodev_asymfeat & CRF_DSA_SIGN)
1500             cryptodev_dsa.dsa_do_sign = cryptodev_dsa_do_sign;
1501         if (cryptodev_asymfeat & CRF_MOD_EXP) {
1502             cryptodev_dsa.bn_mod_exp = cryptodev_dsa_bn_mod_exp;
1503             cryptodev_dsa.dsa_mod_exp = cryptodev_dsa_dsa_mod_exp;
1504         }
1505         if (cryptodev_asymfeat & CRF_DSA_VERIFY)
1506             cryptodev_dsa.dsa_do_verify = cryptodev_dsa_verify;
1507     }
1508
1509     if (ENGINE_set_DH(engine, &cryptodev_dh)) {
1510         const DH_METHOD *dh_meth = DH_OpenSSL();
1511
1512         cryptodev_dh.generate_key = dh_meth->generate_key;
1513         cryptodev_dh.compute_key = dh_meth->compute_key;
1514         cryptodev_dh.bn_mod_exp = dh_meth->bn_mod_exp;
1515         if (cryptodev_asymfeat & CRF_MOD_EXP) {
1516             cryptodev_dh.bn_mod_exp = cryptodev_mod_exp_dh;
1517             if (cryptodev_asymfeat & CRF_DH_COMPUTE_KEY)
1518                 cryptodev_dh.compute_key = cryptodev_dh_compute_key;
1519         }
1520     }
1521
1522     ENGINE_add(engine);
1523     ENGINE_free(engine);
1524     ERR_clear_error();
1525 }
1526
1527 #endif                          /* HAVE_CRYPTODEV */