1 /* $OpenBSD: cryptodev.c,v 1.52 2002/06/19 07:22:46 deraadt Exp $ */
4 * Linux port done by David McCullough <david_mccullough@mcafee.com>
5 * Copyright (C) 2006-2010 David McCullough
6 * Copyright (C) 2004-2005 Intel Corporation.
7 * The license and original author are listed below.
9 * Copyright (c) 2001 Theo de Raadt
10 * Copyright (c) 2002-2006 Sam Leffler, Errno Consulting
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. The name of the author may not be used to endorse or promote products
22 * derived from this software without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 * Effort sponsored in part by the Defense Advanced Research Projects
36 * Agency (DARPA) and Air Force Research Laboratory, Air Force
37 * Materiel Command, USAF, under agreement number F30602-01-2-0537.
39 __FBSDID("$FreeBSD: src/sys/opencrypto/cryptodev.c,v 1.34 2007/05/09 19:37:02 gnn Exp $");
42 #include <linux/version.h>
43 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33))
44 #include <generated/autoconf.h>
46 #include <linux/autoconf.h>
48 #include <linux/types.h>
49 #include <linux/time.h>
50 #include <linux/delay.h>
51 #include <linux/list.h>
52 #include <linux/init.h>
53 #include <linux/sched.h>
54 #include <linux/unistd.h>
55 #include <linux/module.h>
56 #include <linux/wait.h>
57 #include <linux/slab.h>
59 #include <linux/dcache.h>
60 #include <linux/file.h>
61 #include <linux/mount.h>
62 #include <linux/miscdevice.h>
63 #include <linux/version.h>
64 #include <asm/uaccess.h>
66 #include <cryptodev.h>
69 extern asmlinkage
long sys_dup(unsigned int fildes
);
71 #define debug cryptodev_debug
72 int cryptodev_debug
= 0;
73 module_param(cryptodev_debug
, int, 0644);
74 MODULE_PARM_DESC(cryptodev_debug
, "Enable cryptodev debug");
76 struct csession_info
{
78 u_int16_t minkey
, maxkey
;
81 /* u_int16_t hashsize; */
84 /* u_int16_t ctxsize; */
88 struct list_head list
;
92 wait_queue_head_t waitq
;
100 u_char tmp_iv
[EALG_MAX_BLOCK_LEN
];
105 struct csession_info info
;
113 struct list_head csessions
;
117 static struct csession
*csefind(struct fcrypt
*, u_int
);
118 static int csedelete(struct fcrypt
*, struct csession
*);
119 static struct csession
*cseadd(struct fcrypt
*, struct csession
*);
120 static struct csession
*csecreate(struct fcrypt
*, u_int64_t
,
121 struct cryptoini
*crie
, struct cryptoini
*cria
, struct csession_info
*);
122 static int csefree(struct csession
*);
124 static int cryptodev_op(struct csession
*, struct crypt_op
*);
125 static int cryptodev_key(struct crypt_kop
*);
126 static int cryptodev_find(struct crypt_find_op
*);
128 static int cryptodev_cb(void *);
129 static int cryptodev_open(struct inode
*inode
, struct file
*filp
);
132 * Check a crypto identifier to see if it requested
133 * a valid crid and it's capabilities match.
138 int hid
= crid
& ~(CRYPTOCAP_F_SOFTWARE
| CRYPTOCAP_F_HARDWARE
);
139 int typ
= crid
& (CRYPTOCAP_F_SOFTWARE
| CRYPTOCAP_F_HARDWARE
);
142 /* if the user hasn't selected a driver, then just call newsession */
143 if (hid
== 0 && typ
!= 0)
146 caps
= crypto_getcaps(hid
);
148 /* didn't find anything with capabilities */
150 dprintk("%s: hid=%x typ=%x not matched\n", __FUNCTION__
, hid
, typ
);
154 /* the user didn't specify SW or HW, so the driver is ok */
158 /* if the type specified didn't match */
159 if (typ
!= (caps
& (CRYPTOCAP_F_SOFTWARE
| CRYPTOCAP_F_HARDWARE
))) {
160 dprintk("%s: hid=%x typ=%x caps=%x not matched\n", __FUNCTION__
,
169 cryptodev_op(struct csession
*cse
, struct crypt_op
*cop
)
171 struct cryptop
*crp
= NULL
;
172 struct cryptodesc
*crde
= NULL
, *crda
= NULL
;
175 dprintk("%s()\n", __FUNCTION__
);
176 if (cop
->len
> CRYPTO_MAX_DATA_LEN
) {
177 dprintk("%s: %d > %d\n", __FUNCTION__
, cop
->len
, CRYPTO_MAX_DATA_LEN
);
181 if (cse
->info
.blocksize
&& (cop
->len
% cse
->info
.blocksize
) != 0) {
182 dprintk("%s: blocksize=%d len=%d\n", __FUNCTION__
, cse
->info
.blocksize
,
187 cse
->uio
.uio_iov
= &cse
->iovec
;
188 cse
->uio
.uio_iovcnt
= 1;
189 cse
->uio
.uio_offset
= 0;
191 cse
->uio
.uio_resid
= cop
->len
;
192 cse
->uio
.uio_segflg
= UIO_SYSSPACE
;
193 cse
->uio
.uio_rw
= UIO_WRITE
;
194 cse
->uio
.uio_td
= td
;
196 cse
->uio
.uio_iov
[0].iov_len
= cop
->len
;
197 if (cse
->info
.authsize
)
198 cse
->uio
.uio_iov
[0].iov_len
+= cse
->info
.authsize
;
199 cse
->uio
.uio_iov
[0].iov_base
= kmalloc(cse
->uio
.uio_iov
[0].iov_len
,
202 if (cse
->uio
.uio_iov
[0].iov_base
== NULL
) {
203 dprintk("%s: iov_base kmalloc(%d) failed\n", __FUNCTION__
,
204 (int)cse
->uio
.uio_iov
[0].iov_len
);
208 crp
= crypto_getreq((cse
->info
.blocksize
!= 0) + (cse
->info
.authsize
!= 0));
210 dprintk("%s: ENOMEM\n", __FUNCTION__
);
215 if (cse
->info
.authsize
&& cse
->info
.blocksize
) {
216 if (cop
->op
== COP_ENCRYPT
) {
217 crde
= crp
->crp_desc
;
218 crda
= crde
->crd_next
;
220 crda
= crp
->crp_desc
;
221 crde
= crda
->crd_next
;
223 } else if (cse
->info
.authsize
) {
224 crda
= crp
->crp_desc
;
225 } else if (cse
->info
.blocksize
) {
226 crde
= crp
->crp_desc
;
228 dprintk("%s: bad request\n", __FUNCTION__
);
233 if ((error
= copy_from_user(cse
->uio
.uio_iov
[0].iov_base
, cop
->src
,
235 dprintk("%s: bad copy\n", __FUNCTION__
);
241 crda
->crd_len
= cop
->len
;
242 crda
->crd_inject
= cop
->len
;
244 crda
->crd_alg
= cse
->mac
;
245 crda
->crd_key
= cse
->mackey
;
246 crda
->crd_klen
= cse
->mackeylen
* 8;
250 if (cop
->op
== COP_ENCRYPT
)
251 crde
->crd_flags
|= CRD_F_ENCRYPT
;
253 crde
->crd_flags
&= ~CRD_F_ENCRYPT
;
254 crde
->crd_len
= cop
->len
;
255 crde
->crd_inject
= 0;
257 crde
->crd_alg
= cse
->cipher
;
258 crde
->crd_key
= cse
->key
;
259 crde
->crd_klen
= cse
->keylen
* 8;
262 crp
->crp_ilen
= cse
->uio
.uio_iov
[0].iov_len
;
263 crp
->crp_flags
= CRYPTO_F_IOV
| CRYPTO_F_CBIMM
264 | (cop
->flags
& COP_F_BATCH
);
265 crp
->crp_buf
= (caddr_t
)&cse
->uio
;
266 crp
->crp_callback
= (int (*) (struct cryptop
*)) cryptodev_cb
;
267 crp
->crp_sid
= cse
->sid
;
268 crp
->crp_opaque
= (void *)cse
;
273 dprintk("%s no crde\n", __FUNCTION__
);
276 if (cse
->cipher
== CRYPTO_ARC4
) { /* XXX use flag? */
278 dprintk("%s arc4 with IV\n", __FUNCTION__
);
281 if ((error
= copy_from_user(cse
->tmp_iv
, cop
->iv
,
282 cse
->info
.blocksize
))) {
283 dprintk("%s bad iv copy\n", __FUNCTION__
);
286 memcpy(crde
->crd_iv
, cse
->tmp_iv
, cse
->info
.blocksize
);
287 crde
->crd_flags
|= CRD_F_IV_EXPLICIT
| CRD_F_IV_PRESENT
;
289 } else if (cse
->cipher
== CRYPTO_ARC4
) { /* XXX use flag? */
292 crde
->crd_flags
|= CRD_F_IV_PRESENT
;
293 crde
->crd_skip
= cse
->info
.blocksize
;
294 crde
->crd_len
-= cse
->info
.blocksize
;
297 if (cop
->mac
&& crda
== NULL
) {
299 dprintk("%s no crda\n", __FUNCTION__
);
304 * Let the dispatch run unlocked, then, interlock against the
305 * callback before checking if the operation completed and going
306 * to sleep. This insures drivers don't inherit our lock which
307 * results in a lock order reversal between crypto_dispatch forced
308 * entry and the crypto_done callback into us.
310 error
= crypto_dispatch(crp
);
312 dprintk("%s error in crypto_dispatch\n", __FUNCTION__
);
316 dprintk("%s about to WAIT\n", __FUNCTION__
);
318 * we really need to wait for driver to complete to maintain
319 * state, luckily interrupts will be remembered
322 error
= wait_event_interruptible(crp
->crp_waitq
,
323 ((crp
->crp_flags
& CRYPTO_F_DONE
) != 0));
325 * we can't break out of this loop or we will leave behind
326 * a huge mess, however, staying here means if your driver
327 * is broken user applications can hang and not be killed.
328 * The solution, fix your driver :-)
334 } while ((crp
->crp_flags
& CRYPTO_F_DONE
) == 0);
335 dprintk("%s finished WAITING error=%d\n", __FUNCTION__
, error
);
337 if (crp
->crp_etype
!= 0) {
338 error
= crp
->crp_etype
;
339 dprintk("%s error in crp processing\n", __FUNCTION__
);
345 dprintk("%s error in cse processing\n", __FUNCTION__
);
349 if (cop
->dst
&& (error
= copy_to_user(cop
->dst
,
350 cse
->uio
.uio_iov
[0].iov_base
, cop
->len
))) {
351 dprintk("%s bad dst copy\n", __FUNCTION__
);
356 (error
=copy_to_user(cop
->mac
,
357 (caddr_t
)cse
->uio
.uio_iov
[0].iov_base
+ cop
->len
,
358 cse
->info
.authsize
))) {
359 dprintk("%s bad mac copy\n", __FUNCTION__
);
366 if (cse
->uio
.uio_iov
[0].iov_base
)
367 kfree(cse
->uio
.uio_iov
[0].iov_base
);
373 cryptodev_cb(void *op
)
375 struct cryptop
*crp
= (struct cryptop
*) op
;
376 struct csession
*cse
= (struct csession
*)crp
->crp_opaque
;
379 dprintk("%s()\n", __FUNCTION__
);
380 error
= crp
->crp_etype
;
381 if (error
== EAGAIN
) {
382 crp
->crp_flags
&= ~CRYPTO_F_DONE
;
385 * DAVIDM I am fairly sure that we should turn this into a batch
386 * request to stop bad karma/lockup, revisit
388 crp
->crp_flags
|= CRYPTO_F_BATCH
;
390 return crypto_dispatch(crp
);
392 if (error
!= 0 || (crp
->crp_flags
& CRYPTO_F_DONE
)) {
394 wake_up_interruptible(&crp
->crp_waitq
);
400 cryptodevkey_cb(void *op
)
402 struct cryptkop
*krp
= (struct cryptkop
*) op
;
403 dprintk("%s()\n", __FUNCTION__
);
404 wake_up_interruptible(&krp
->krp_waitq
);
409 cryptodev_key(struct crypt_kop
*kop
)
411 struct cryptkop
*krp
= NULL
;
413 int in
, out
, size
, i
;
415 dprintk("%s()\n", __FUNCTION__
);
416 if (kop
->crk_iparams
+ kop
->crk_oparams
> CRK_MAXPARAM
) {
417 dprintk("%s params too big\n", __FUNCTION__
);
421 in
= kop
->crk_iparams
;
422 out
= kop
->crk_oparams
;
423 switch (kop
->crk_op
) {
425 if (in
== 3 && out
== 1)
428 case CRK_MOD_EXP_CRT
:
429 if (in
== 6 && out
== 1)
433 if (in
== 5 && out
== 2)
437 if (in
== 7 && out
== 0)
440 case CRK_DH_COMPUTE_KEY
:
441 if (in
== 3 && out
== 1)
448 krp
= (struct cryptkop
*)kmalloc(sizeof *krp
, GFP_KERNEL
);
451 bzero(krp
, sizeof *krp
);
452 krp
->krp_op
= kop
->crk_op
;
453 krp
->krp_status
= kop
->crk_status
;
454 krp
->krp_iparams
= kop
->crk_iparams
;
455 krp
->krp_oparams
= kop
->crk_oparams
;
456 krp
->krp_crid
= kop
->crk_crid
;
458 krp
->krp_flags
= CRYPTO_KF_CBIMM
;
459 krp
->krp_callback
= (int (*) (struct cryptkop
*)) cryptodevkey_cb
;
460 init_waitqueue_head(&krp
->krp_waitq
);
462 for (i
= 0; i
< CRK_MAXPARAM
; i
++)
463 krp
->krp_param
[i
].crp_nbits
= kop
->crk_param
[i
].crp_nbits
;
464 for (i
= 0; i
< krp
->krp_iparams
+ krp
->krp_oparams
; i
++) {
465 size
= (krp
->krp_param
[i
].crp_nbits
+ 7) / 8;
468 krp
->krp_param
[i
].crp_p
= (caddr_t
) kmalloc(size
, GFP_KERNEL
);
469 if (i
>= krp
->krp_iparams
)
471 error
= copy_from_user(krp
->krp_param
[i
].crp_p
,
472 kop
->crk_param
[i
].crp_p
, size
);
477 error
= crypto_kdispatch(krp
);
482 error
= wait_event_interruptible(krp
->krp_waitq
,
483 ((krp
->krp_flags
& CRYPTO_KF_DONE
) != 0));
485 * we can't break out of this loop or we will leave behind
486 * a huge mess, however, staying here means if your driver
487 * is broken user applications can hang and not be killed.
488 * The solution, fix your driver :-)
494 } while ((krp
->krp_flags
& CRYPTO_KF_DONE
) == 0);
496 dprintk("%s finished WAITING error=%d\n", __FUNCTION__
, error
);
498 kop
->crk_crid
= krp
->krp_crid
; /* device that did the work */
499 if (krp
->krp_status
!= 0) {
500 error
= krp
->krp_status
;
504 for (i
= krp
->krp_iparams
; i
< krp
->krp_iparams
+ krp
->krp_oparams
; i
++) {
505 size
= (krp
->krp_param
[i
].crp_nbits
+ 7) / 8;
508 error
= copy_to_user(kop
->crk_param
[i
].crp_p
, krp
->krp_param
[i
].crp_p
,
516 kop
->crk_status
= krp
->krp_status
;
517 for (i
= 0; i
< CRK_MAXPARAM
; i
++) {
518 if (krp
->krp_param
[i
].crp_p
)
519 kfree(krp
->krp_param
[i
].crp_p
);
527 cryptodev_find(struct crypt_find_op
*find
)
531 if (find
->crid
!= -1) {
532 dev
= crypto_find_device_byhid(find
->crid
);
535 strlcpy(find
->name
, device_get_nameunit(dev
),
538 find
->crid
= crypto_find_driver(find
->name
);
539 if (find
->crid
== -1)
545 static struct csession
*
546 csefind(struct fcrypt
*fcr
, u_int ses
)
548 struct csession
*cse
;
550 dprintk("%s()\n", __FUNCTION__
);
551 list_for_each_entry(cse
, &fcr
->csessions
, list
)
558 csedelete(struct fcrypt
*fcr
, struct csession
*cse_del
)
560 struct csession
*cse
;
562 dprintk("%s()\n", __FUNCTION__
);
563 list_for_each_entry(cse
, &fcr
->csessions
, list
) {
564 if (cse
== cse_del
) {
565 list_del(&cse
->list
);
572 static struct csession
*
573 cseadd(struct fcrypt
*fcr
, struct csession
*cse
)
575 dprintk("%s()\n", __FUNCTION__
);
576 list_add_tail(&cse
->list
, &fcr
->csessions
);
577 cse
->ses
= fcr
->sesn
++;
581 static struct csession
*
582 csecreate(struct fcrypt
*fcr
, u_int64_t sid
, struct cryptoini
*crie
,
583 struct cryptoini
*cria
, struct csession_info
*info
)
585 struct csession
*cse
;
587 dprintk("%s()\n", __FUNCTION__
);
588 cse
= (struct csession
*) kmalloc(sizeof(struct csession
), GFP_KERNEL
);
591 memset(cse
, 0, sizeof(struct csession
));
593 INIT_LIST_HEAD(&cse
->list
);
594 init_waitqueue_head(&cse
->waitq
);
596 cse
->key
= crie
->cri_key
;
597 cse
->keylen
= crie
->cri_klen
/8;
598 cse
->mackey
= cria
->cri_key
;
599 cse
->mackeylen
= cria
->cri_klen
/8;
601 cse
->cipher
= crie
->cri_alg
;
602 cse
->mac
= cria
->cri_alg
;
609 csefree(struct csession
*cse
)
613 dprintk("%s()\n", __FUNCTION__
);
614 error
= crypto_freesession(cse
->sid
);
630 struct cryptoini cria
, crie
;
631 struct fcrypt
*fcr
= filp
->private_data
;
632 struct csession
*cse
;
633 struct csession_info info
;
634 struct session2_op sop
;
636 struct crypt_kop kop
;
637 struct crypt_find_op fop
;
640 int feat
, fd
, error
= 0, crid
;
643 dprintk("%s(cmd=%x arg=%lx)\n", __FUNCTION__
, cmd
, arg
);
648 dprintk("%s(CRIOGET)\n", __FUNCTION__
);
651 for (fd
= 0; fd
< files_fdtable(current
->files
)->max_fds
; fd
++)
652 if (files_fdtable(current
->files
)->fd
[fd
] == filp
)
656 put_user(fd
, (int *) arg
);
657 return IS_ERR_VALUE(fd
) ? fd
: 0;
660 #define CIOCGSESSSTR (cmd == CIOCGSESSION ? "CIOCGSESSION" : "CIOCGSESSION2")
663 dprintk("%s(%s)\n", __FUNCTION__
, CIOCGSESSSTR
);
664 memset(&crie
, 0, sizeof(crie
));
665 memset(&cria
, 0, sizeof(cria
));
666 memset(&info
, 0, sizeof(info
));
667 memset(&sop
, 0, sizeof(sop
));
669 if (copy_from_user(&sop
, (void*)arg
, (cmd
== CIOCGSESSION
) ?
670 sizeof(struct session_op
) : sizeof(sop
))) {
671 dprintk("%s(%s) - bad copy\n", __FUNCTION__
, CIOCGSESSSTR
);
676 switch (sop
.cipher
) {
678 dprintk("%s(%s) - no cipher\n", __FUNCTION__
, CIOCGSESSSTR
);
680 case CRYPTO_NULL_CBC
:
681 info
.blocksize
= NULL_BLOCK_LEN
;
682 info
.minkey
= NULL_MIN_KEY_LEN
;
683 info
.maxkey
= NULL_MAX_KEY_LEN
;
686 info
.blocksize
= DES_BLOCK_LEN
;
687 info
.minkey
= DES_MIN_KEY_LEN
;
688 info
.maxkey
= DES_MAX_KEY_LEN
;
690 case CRYPTO_3DES_CBC
:
691 info
.blocksize
= DES3_BLOCK_LEN
;
692 info
.minkey
= DES3_MIN_KEY_LEN
;
693 info
.maxkey
= DES3_MAX_KEY_LEN
;
696 info
.blocksize
= BLOWFISH_BLOCK_LEN
;
697 info
.minkey
= BLOWFISH_MIN_KEY_LEN
;
698 info
.maxkey
= BLOWFISH_MAX_KEY_LEN
;
700 case CRYPTO_CAST_CBC
:
701 info
.blocksize
= CAST128_BLOCK_LEN
;
702 info
.minkey
= CAST128_MIN_KEY_LEN
;
703 info
.maxkey
= CAST128_MAX_KEY_LEN
;
705 case CRYPTO_SKIPJACK_CBC
:
706 info
.blocksize
= SKIPJACK_BLOCK_LEN
;
707 info
.minkey
= SKIPJACK_MIN_KEY_LEN
;
708 info
.maxkey
= SKIPJACK_MAX_KEY_LEN
;
711 info
.blocksize
= AES_BLOCK_LEN
;
712 info
.minkey
= AES_MIN_KEY_LEN
;
713 info
.maxkey
= AES_MAX_KEY_LEN
;
716 info
.blocksize
= ARC4_BLOCK_LEN
;
717 info
.minkey
= ARC4_MIN_KEY_LEN
;
718 info
.maxkey
= ARC4_MAX_KEY_LEN
;
720 case CRYPTO_CAMELLIA_CBC
:
721 info
.blocksize
= CAMELLIA_BLOCK_LEN
;
722 info
.minkey
= CAMELLIA_MIN_KEY_LEN
;
723 info
.maxkey
= CAMELLIA_MAX_KEY_LEN
;
726 dprintk("%s(%s) - bad cipher\n", __FUNCTION__
, CIOCGSESSSTR
);
733 dprintk("%s(%s) - no mac\n", __FUNCTION__
, CIOCGSESSSTR
);
735 case CRYPTO_NULL_HMAC
:
736 info
.authsize
= NULL_HASH_LEN
;
739 info
.authsize
= MD5_HASH_LEN
;
742 info
.authsize
= SHA1_HASH_LEN
;
744 case CRYPTO_SHA2_256
:
745 info
.authsize
= SHA2_256_HASH_LEN
;
747 case CRYPTO_SHA2_384
:
748 info
.authsize
= SHA2_384_HASH_LEN
;
750 case CRYPTO_SHA2_512
:
751 info
.authsize
= SHA2_512_HASH_LEN
;
753 case CRYPTO_RIPEMD160
:
754 info
.authsize
= RIPEMD160_HASH_LEN
;
756 case CRYPTO_MD5_HMAC
:
757 info
.authsize
= MD5_HASH_LEN
;
760 case CRYPTO_SHA1_HMAC
:
761 info
.authsize
= SHA1_HASH_LEN
;
764 case CRYPTO_SHA2_256_HMAC
:
765 info
.authsize
= SHA2_256_HASH_LEN
;
768 case CRYPTO_SHA2_384_HMAC
:
769 info
.authsize
= SHA2_384_HASH_LEN
;
772 case CRYPTO_SHA2_512_HMAC
:
773 info
.authsize
= SHA2_512_HASH_LEN
;
776 case CRYPTO_RIPEMD160_HMAC
:
777 info
.authsize
= RIPEMD160_HASH_LEN
;
781 dprintk("%s(%s) - bad mac\n", __FUNCTION__
, CIOCGSESSSTR
);
786 if (info
.blocksize
) {
787 crie
.cri_alg
= sop
.cipher
;
788 crie
.cri_klen
= sop
.keylen
* 8;
789 if ((info
.maxkey
&& sop
.keylen
> info
.maxkey
) ||
790 sop
.keylen
< info
.minkey
) {
791 dprintk("%s(%s) - bad key\n", __FUNCTION__
, CIOCGSESSSTR
);
796 crie
.cri_key
= (u_int8_t
*) kmalloc(crie
.cri_klen
/8+1, GFP_KERNEL
);
797 if (copy_from_user(crie
.cri_key
, sop
.key
,
799 dprintk("%s(%s) - bad copy\n", __FUNCTION__
, CIOCGSESSSTR
);
804 crie
.cri_next
= &cria
;
808 cria
.cri_alg
= sop
.mac
;
809 cria
.cri_klen
= sop
.mackeylen
* 8;
810 if (info
.authkey
&& sop
.mackeylen
!= info
.authkey
) {
811 dprintk("%s(%s) - mackeylen %d != %d\n", __FUNCTION__
,
812 CIOCGSESSSTR
, sop
.mackeylen
, info
.authkey
);
818 cria
.cri_key
= (u_int8_t
*) kmalloc(cria
.cri_klen
/8,GFP_KERNEL
);
819 if (copy_from_user(cria
.cri_key
, sop
.mackey
,
820 cria
.cri_klen
/ 8)) {
821 dprintk("%s(%s) - bad copy\n", __FUNCTION__
, CIOCGSESSSTR
);
828 /* NB: CIOGSESSION2 has the crid */
829 if (cmd
== CIOCGSESSION2
) {
831 error
= checkcrid(crid
);
833 dprintk("%s(%s) - checkcrid %x\n", __FUNCTION__
,
834 CIOCGSESSSTR
, error
);
838 /* allow either HW or SW to be used */
839 crid
= CRYPTOCAP_F_HARDWARE
| CRYPTOCAP_F_SOFTWARE
;
841 error
= crypto_newsession(&sid
, (info
.blocksize
? &crie
: &cria
), crid
);
843 dprintk("%s(%s) - newsession %d\n",__FUNCTION__
,CIOCGSESSSTR
,error
);
847 cse
= csecreate(fcr
, sid
, &crie
, &cria
, &info
);
849 crypto_freesession(sid
);
851 dprintk("%s(%s) - csecreate failed\n", __FUNCTION__
, CIOCGSESSSTR
);
856 if (cmd
== CIOCGSESSION2
) {
857 /* return hardware/driver id */
858 sop
.crid
= CRYPTO_SESID2HID(cse
->sid
);
861 if (copy_to_user((void*)arg
, &sop
, (cmd
== CIOCGSESSION
) ?
862 sizeof(struct session_op
) : sizeof(sop
))) {
863 dprintk("%s(%s) - bad copy\n", __FUNCTION__
, CIOCGSESSSTR
);
868 dprintk("%s(%s) - bail %d\n", __FUNCTION__
, CIOCGSESSSTR
, error
);
876 dprintk("%s(CIOCFSESSION)\n", __FUNCTION__
);
877 get_user(ses
, (uint32_t*)arg
);
878 cse
= csefind(fcr
, ses
);
881 dprintk("%s(CIOCFSESSION) - Fail %d\n", __FUNCTION__
, error
);
885 error
= csefree(cse
);
888 dprintk("%s(CIOCCRYPT)\n", __FUNCTION__
);
889 if(copy_from_user(&cop
, (void*)arg
, sizeof(cop
))) {
890 dprintk("%s(CIOCCRYPT) - bad copy\n", __FUNCTION__
);
894 cse
= csefind(fcr
, cop
.ses
);
897 dprintk("%s(CIOCCRYPT) - Fail %d\n", __FUNCTION__
, error
);
900 error
= cryptodev_op(cse
, &cop
);
901 if(copy_to_user((void*)arg
, &cop
, sizeof(cop
))) {
902 dprintk("%s(CIOCCRYPT) - bad return copy\n", __FUNCTION__
);
909 dprintk("%s(CIOCKEY)\n", __FUNCTION__
);
910 if (!crypto_userasymcrypto
)
911 return (EPERM
); /* XXX compat? */
912 if(copy_from_user(&kop
, (void*)arg
, sizeof(kop
))) {
913 dprintk("%s(CIOCKEY) - bad copy\n", __FUNCTION__
);
917 if (cmd
== CIOCKEY
) {
918 /* NB: crypto core enforces s/w driver use */
920 CRYPTOCAP_F_HARDWARE
| CRYPTOCAP_F_SOFTWARE
;
922 error
= cryptodev_key(&kop
);
923 if(copy_to_user((void*)arg
, &kop
, sizeof(kop
))) {
924 dprintk("%s(CIOCGKEY) - bad return copy\n", __FUNCTION__
);
930 dprintk("%s(CIOCASYMFEAT)\n", __FUNCTION__
);
931 if (!crypto_userasymcrypto
) {
933 * NB: if user asym crypto operations are
934 * not permitted return "no algorithms"
935 * so well-behaved applications will just
936 * fallback to doing them in software.
940 error
= crypto_getfeat(&feat
);
942 error
= copy_to_user((void*)arg
, &feat
, sizeof(feat
));
946 if (copy_from_user(&fop
, (void*)arg
, sizeof(fop
))) {
947 dprintk("%s(CIOCFINDDEV) - bad copy\n", __FUNCTION__
);
951 error
= cryptodev_find(&fop
);
952 if (copy_to_user((void*)arg
, &fop
, sizeof(fop
))) {
953 dprintk("%s(CIOCFINDDEV) - bad return copy\n", __FUNCTION__
);
959 dprintk("%s(unknown ioctl 0x%x)\n", __FUNCTION__
, cmd
);
966 #ifdef HAVE_UNLOCKED_IOCTL
968 cryptodev_unlocked_ioctl(
973 return cryptodev_ioctl(NULL
, filp
, cmd
, arg
);
978 cryptodev_open(struct inode
*inode
, struct file
*filp
)
982 dprintk("%s()\n", __FUNCTION__
);
983 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35)
985 * on 2.6.35 private_data points to a miscdevice structure, we override
986 * it, which is currently safe to do.
988 if (filp
->private_data
) {
989 printk("cryptodev: Private data already exists - %p!\n", filp
->private_data
);
994 fcr
= kmalloc(sizeof(*fcr
), GFP_KERNEL
);
996 dprintk("%s() - malloc failed\n", __FUNCTION__
);
999 memset(fcr
, 0, sizeof(*fcr
));
1001 INIT_LIST_HEAD(&fcr
->csessions
);
1002 filp
->private_data
= fcr
;
1007 cryptodev_release(struct inode
*inode
, struct file
*filp
)
1009 struct fcrypt
*fcr
= filp
->private_data
;
1010 struct csession
*cse
, *tmp
;
1012 dprintk("%s()\n", __FUNCTION__
);
1014 printk("cryptodev: No private data on release\n");
1018 list_for_each_entry_safe(cse
, tmp
, &fcr
->csessions
, list
) {
1019 list_del(&cse
->list
);
1022 filp
->private_data
= NULL
;
1027 static struct file_operations cryptodev_fops
= {
1028 .owner
= THIS_MODULE
,
1029 .open
= cryptodev_open
,
1030 .release
= cryptodev_release
,
1031 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)
1032 .ioctl
= cryptodev_ioctl
,
1034 #ifdef HAVE_UNLOCKED_IOCTL
1035 .unlocked_ioctl
= cryptodev_unlocked_ioctl
,
1039 static struct miscdevice cryptodev
= {
1040 .minor
= CRYPTODEV_MINOR
,
1042 .fops
= &cryptodev_fops
,
1046 cryptodev_init(void)
1050 dprintk("%s(%p)\n", __FUNCTION__
, cryptodev_init
);
1051 rc
= misc_register(&cryptodev
);
1053 printk(KERN_ERR
"cryptodev: registration of /dev/crypto failed\n");
1061 cryptodev_exit(void)
1063 dprintk("%s()\n", __FUNCTION__
);
1064 misc_deregister(&cryptodev
);
1067 module_init(cryptodev_init
);
1068 module_exit(cryptodev_exit
);
1070 MODULE_LICENSE("BSD");
1071 MODULE_AUTHOR("David McCullough <david_mccullough@mcafee.com>");
1072 MODULE_DESCRIPTION("Cryptodev (user interface to OCF)");