Home | History | Annotate | Line # | Download | only in opencrypto
cryptodev.h revision 1.7
      1  1.7   thorpej /*	$NetBSD: cryptodev.h,v 1.7 2005/11/25 16:16:46 thorpej Exp $ */
      2  1.5  jonathan /*	$FreeBSD: src/sys/opencrypto/cryptodev.h,v 1.2.2.6 2003/07/02 17:04:50 sam Exp $	*/
      3  1.1  jonathan /*	$OpenBSD: cryptodev.h,v 1.33 2002/07/17 23:52:39 art Exp $	*/
      4  1.1  jonathan 
      5  1.1  jonathan /*
      6  1.1  jonathan  * The author of this code is Angelos D. Keromytis (angelos (at) cis.upenn.edu)
      7  1.1  jonathan  *
      8  1.1  jonathan  * This code was written by Angelos D. Keromytis in Athens, Greece, in
      9  1.1  jonathan  * February 2000. Network Security Technologies Inc. (NSTI) kindly
     10  1.1  jonathan  * supported the development of this code.
     11  1.1  jonathan  *
     12  1.1  jonathan  * Copyright (c) 2000 Angelos D. Keromytis
     13  1.1  jonathan  *
     14  1.1  jonathan  * Permission to use, copy, and modify this software with or without fee
     15  1.1  jonathan  * is hereby granted, provided that this entire notice is included in
     16  1.1  jonathan  * all source code copies of any software which is or includes a copy or
     17  1.1  jonathan  * modification of this software.
     18  1.1  jonathan  *
     19  1.1  jonathan  * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
     20  1.1  jonathan  * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
     21  1.1  jonathan  * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
     22  1.1  jonathan  * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
     23  1.1  jonathan  * PURPOSE.
     24  1.1  jonathan  *
     25  1.1  jonathan  * Copyright (c) 2001 Theo de Raadt
     26  1.1  jonathan  *
     27  1.1  jonathan  * Redistribution and use in source and binary forms, with or without
     28  1.1  jonathan  * modification, are permitted provided that the following conditions
     29  1.1  jonathan  * are met:
     30  1.1  jonathan  *
     31  1.1  jonathan  * 1. Redistributions of source code must retain the above copyright
     32  1.1  jonathan  *   notice, this list of conditions and the following disclaimer.
     33  1.1  jonathan  * 2. Redistributions in binary form must reproduce the above copyright
     34  1.1  jonathan  *   notice, this list of conditions and the following disclaimer in the
     35  1.1  jonathan  *   documentation and/or other materials provided with the distribution.
     36  1.1  jonathan  * 3. The name of the author may not be used to endorse or promote products
     37  1.1  jonathan  *   derived from this software without specific prior written permission.
     38  1.1  jonathan  *
     39  1.1  jonathan  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     40  1.1  jonathan  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     41  1.1  jonathan  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     42  1.1  jonathan  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     43  1.1  jonathan  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     44  1.1  jonathan  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     45  1.1  jonathan  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     46  1.1  jonathan  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     47  1.1  jonathan  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     48  1.1  jonathan  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     49  1.1  jonathan  *
     50  1.1  jonathan  * Effort sponsored in part by the Defense Advanced Research Projects
     51  1.1  jonathan  * Agency (DARPA) and Air Force Research Laboratory, Air Force
     52  1.1  jonathan  * Materiel Command, USAF, under agreement number F30602-01-2-0537.
     53  1.1  jonathan  *
     54  1.1  jonathan  */
     55  1.1  jonathan 
     56  1.1  jonathan #ifndef _CRYPTO_CRYPTO_H_
     57  1.1  jonathan #define _CRYPTO_CRYPTO_H_
     58  1.1  jonathan 
     59  1.1  jonathan #include <sys/ioccom.h>
     60  1.1  jonathan 
     61  1.1  jonathan /* Some initial values */
     62  1.1  jonathan #define CRYPTO_DRIVERS_INITIAL	4
     63  1.1  jonathan #define CRYPTO_SW_SESSIONS	32
     64  1.1  jonathan 
     65  1.1  jonathan /* HMAC values */
     66  1.1  jonathan #define HMAC_BLOCK_LEN		64
     67  1.1  jonathan #define HMAC_IPAD_VAL		0x36
     68  1.1  jonathan #define HMAC_OPAD_VAL		0x5C
     69  1.1  jonathan 
     70  1.1  jonathan /* Encryption algorithm block sizes */
     71  1.1  jonathan #define DES_BLOCK_LEN		8
     72  1.1  jonathan #define DES3_BLOCK_LEN		8
     73  1.1  jonathan #define BLOWFISH_BLOCK_LEN	8
     74  1.1  jonathan #define SKIPJACK_BLOCK_LEN	8
     75  1.1  jonathan #define CAST128_BLOCK_LEN	8
     76  1.1  jonathan #define RIJNDAEL128_BLOCK_LEN	16
     77  1.1  jonathan #define EALG_MAX_BLOCK_LEN	16 /* Keep this updated */
     78  1.1  jonathan 
     79  1.1  jonathan /* Maximum hash algorithm result length */
     80  1.1  jonathan #define AALG_MAX_RESULT_LEN	64 /* Keep this updated */
     81  1.1  jonathan 
     82  1.1  jonathan #define	CRYPTO_ALGORITHM_MIN	1
     83  1.1  jonathan #define CRYPTO_DES_CBC		1
     84  1.1  jonathan #define CRYPTO_3DES_CBC		2
     85  1.1  jonathan #define CRYPTO_BLF_CBC		3
     86  1.1  jonathan #define CRYPTO_CAST_CBC		4
     87  1.1  jonathan #define CRYPTO_SKIPJACK_CBC	5
     88  1.1  jonathan #define CRYPTO_MD5_HMAC		6
     89  1.1  jonathan #define CRYPTO_SHA1_HMAC	7
     90  1.1  jonathan #define CRYPTO_RIPEMD160_HMAC	8
     91  1.1  jonathan #define CRYPTO_MD5_KPDK		9
     92  1.1  jonathan #define CRYPTO_SHA1_KPDK	10
     93  1.1  jonathan #define CRYPTO_RIJNDAEL128_CBC	11 /* 128 bit blocksize */
     94  1.1  jonathan #define CRYPTO_AES_CBC		11 /* 128 bit blocksize -- the same as above */
     95  1.1  jonathan #define CRYPTO_ARC4		12
     96  1.1  jonathan #define CRYPTO_MD5		13
     97  1.1  jonathan #define CRYPTO_SHA1		14
     98  1.1  jonathan #define	CRYPTO_SHA2_HMAC	15
     99  1.1  jonathan #define CRYPTO_NULL_HMAC	16
    100  1.1  jonathan #define CRYPTO_NULL_CBC		17
    101  1.1  jonathan #define CRYPTO_DEFLATE_COMP	18 /* Deflate compression algorithm */
    102  1.1  jonathan #define CRYPTO_ALGORITHM_MAX	18 /* Keep updated - see below */
    103  1.1  jonathan 
    104  1.1  jonathan /* Algorithm flags */
    105  1.1  jonathan #define	CRYPTO_ALG_FLAG_SUPPORTED	0x01 /* Algorithm is supported */
    106  1.1  jonathan #define	CRYPTO_ALG_FLAG_RNG_ENABLE	0x02 /* Has HW RNG for DH/DSA */
    107  1.1  jonathan #define	CRYPTO_ALG_FLAG_DSA_SHA		0x04 /* Can do SHA on msg */
    108  1.1  jonathan 
    109  1.1  jonathan struct session_op {
    110  1.1  jonathan 	u_int32_t	cipher;		/* ie. CRYPTO_DES_CBC */
    111  1.1  jonathan 	u_int32_t	mac;		/* ie. CRYPTO_MD5_HMAC */
    112  1.1  jonathan 
    113  1.1  jonathan 	u_int32_t	keylen;		/* cipher key */
    114  1.1  jonathan 	caddr_t		key;
    115  1.1  jonathan 	int		mackeylen;	/* mac key */
    116  1.1  jonathan 	caddr_t		mackey;
    117  1.1  jonathan 
    118  1.6     perry   	u_int32_t	ses;		/* returns: session # */
    119  1.1  jonathan };
    120  1.1  jonathan 
    121  1.1  jonathan struct crypt_op {
    122  1.1  jonathan 	u_int32_t	ses;
    123  1.1  jonathan 	u_int16_t	op;		/* i.e. COP_ENCRYPT */
    124  1.1  jonathan #define COP_ENCRYPT	1
    125  1.1  jonathan #define COP_DECRYPT	2
    126  1.1  jonathan 	u_int16_t	flags;
    127  1.1  jonathan #define	COP_F_BATCH 	0x0008		/* Dispatch as quickly as possible */
    128  1.1  jonathan 	u_int		len;
    129  1.1  jonathan 	caddr_t		src, dst;	/* become iov[] inside kernel */
    130  1.1  jonathan 	caddr_t		mac;		/* must be big enough for chosen MAC */
    131  1.1  jonathan 	caddr_t		iv;
    132  1.1  jonathan };
    133  1.1  jonathan 
    134  1.1  jonathan #define CRYPTO_MAX_MAC_LEN	20
    135  1.1  jonathan 
    136  1.1  jonathan /* bignum parameter, in packed bytes, ... */
    137  1.1  jonathan struct crparam {
    138  1.1  jonathan 	caddr_t		crp_p;
    139  1.1  jonathan 	u_int		crp_nbits;
    140  1.1  jonathan };
    141  1.1  jonathan 
    142  1.1  jonathan #define CRK_MAXPARAM	8
    143  1.1  jonathan 
    144  1.1  jonathan struct crypt_kop {
    145  1.1  jonathan 	u_int		crk_op;		/* ie. CRK_MOD_EXP or other */
    146  1.1  jonathan 	u_int		crk_status;	/* return status */
    147  1.1  jonathan 	u_short		crk_iparams;	/* # of input parameters */
    148  1.1  jonathan 	u_short		crk_oparams;	/* # of output parameters */
    149  1.1  jonathan 	u_int		crk_pad1;
    150  1.1  jonathan 	struct crparam	crk_param[CRK_MAXPARAM];
    151  1.1  jonathan };
    152  1.1  jonathan #define	CRK_ALGORITM_MIN	0
    153  1.1  jonathan #define CRK_MOD_EXP		0
    154  1.1  jonathan #define CRK_MOD_EXP_CRT		1
    155  1.1  jonathan #define CRK_DSA_SIGN		2
    156  1.1  jonathan #define CRK_DSA_VERIFY		3
    157  1.1  jonathan #define CRK_DH_COMPUTE_KEY	4
    158  1.1  jonathan #define CRK_ALGORITHM_MAX	4 /* Keep updated - see below */
    159  1.1  jonathan 
    160  1.1  jonathan #define CRF_MOD_EXP		(1 << CRK_MOD_EXP)
    161  1.1  jonathan #define CRF_MOD_EXP_CRT		(1 << CRK_MOD_EXP_CRT)
    162  1.1  jonathan #define CRF_DSA_SIGN		(1 << CRK_DSA_SIGN)
    163  1.1  jonathan #define CRF_DSA_VERIFY		(1 << CRK_DSA_VERIFY)
    164  1.1  jonathan #define CRF_DH_COMPUTE_KEY	(1 << CRK_DH_COMPUTE_KEY)
    165  1.1  jonathan 
    166  1.1  jonathan /*
    167  1.1  jonathan  * done against open of /dev/crypto, to get a cloned descriptor.
    168  1.1  jonathan  * Please use F_SETFD against the cloned descriptor.
    169  1.1  jonathan  */
    170  1.1  jonathan #define	CRIOGET		_IOWR('c', 100, u_int32_t)
    171  1.1  jonathan 
    172  1.1  jonathan /* the following are done against the cloned descriptor */
    173  1.1  jonathan #define	CIOCGSESSION	_IOWR('c', 101, struct session_op)
    174  1.1  jonathan #define	CIOCFSESSION	_IOW('c', 102, u_int32_t)
    175  1.1  jonathan #define CIOCCRYPT	_IOWR('c', 103, struct crypt_op)
    176  1.1  jonathan #define CIOCKEY		_IOWR('c', 104, struct crypt_kop)
    177  1.1  jonathan 
    178  1.1  jonathan #define CIOCASYMFEAT	_IOR('c', 105, u_int32_t)
    179  1.1  jonathan 
    180  1.1  jonathan struct cryptotstat {
    181  1.1  jonathan 	struct timespec	acc;		/* total accumulated time */
    182  1.1  jonathan 	struct timespec	min;		/* max time */
    183  1.1  jonathan 	struct timespec	max;		/* max time */
    184  1.1  jonathan 	u_int32_t	count;		/* number of observations */
    185  1.1  jonathan };
    186  1.1  jonathan 
    187  1.1  jonathan struct cryptostats {
    188  1.1  jonathan 	u_int32_t	cs_ops;		/* symmetric crypto ops submitted */
    189  1.1  jonathan 	u_int32_t	cs_errs;	/* symmetric crypto ops that failed */
    190  1.1  jonathan 	u_int32_t	cs_kops;	/* asymetric/key ops submitted */
    191  1.1  jonathan 	u_int32_t	cs_kerrs;	/* asymetric/key ops that failed */
    192  1.1  jonathan 	u_int32_t	cs_intrs;	/* crypto swi thread activations */
    193  1.1  jonathan 	u_int32_t	cs_rets;	/* crypto return thread activations */
    194  1.1  jonathan 	u_int32_t	cs_blocks;	/* symmetric op driver block */
    195  1.1  jonathan 	u_int32_t	cs_kblocks;	/* symmetric op driver block */
    196  1.1  jonathan 	/*
    197  1.1  jonathan 	 * When CRYPTO_TIMING is defined at compile time and the
    198  1.1  jonathan 	 * sysctl debug.crypto is set to 1, the crypto system will
    199  1.1  jonathan 	 * accumulate statistics about how long it takes to process
    200  1.1  jonathan 	 * crypto requests at various points during processing.
    201  1.1  jonathan 	 */
    202  1.1  jonathan 	struct cryptotstat cs_invoke;	/* crypto_dipsatch -> crypto_invoke */
    203  1.1  jonathan 	struct cryptotstat cs_done;	/* crypto_invoke -> crypto_done */
    204  1.1  jonathan 	struct cryptotstat cs_cb;	/* crypto_done -> callback */
    205  1.1  jonathan 	struct cryptotstat cs_finis;	/* callback -> callback return */
    206  1.1  jonathan };
    207  1.1  jonathan 
    208  1.1  jonathan #ifdef _KERNEL
    209  1.1  jonathan /* Standard initialization structure beginning */
    210  1.1  jonathan struct cryptoini {
    211  1.1  jonathan 	int		cri_alg;	/* Algorithm to use */
    212  1.1  jonathan 	int		cri_klen;	/* Key length, in bits */
    213  1.1  jonathan 	int		cri_rnd;	/* Algorithm rounds, where relevant */
    214  1.1  jonathan 	caddr_t		cri_key;	/* key to use */
    215  1.1  jonathan 	u_int8_t	cri_iv[EALG_MAX_BLOCK_LEN];	/* IV to use */
    216  1.1  jonathan 	struct cryptoini *cri_next;
    217  1.1  jonathan };
    218  1.1  jonathan 
    219  1.1  jonathan /* Describe boundaries of a single crypto operation */
    220  1.1  jonathan struct cryptodesc {
    221  1.1  jonathan 	int		crd_skip;	/* How many bytes to ignore from start */
    222  1.1  jonathan 	int		crd_len;	/* How many bytes to process */
    223  1.1  jonathan 	int		crd_inject;	/* Where to inject results, if applicable */
    224  1.1  jonathan 	int		crd_flags;
    225  1.1  jonathan 
    226  1.1  jonathan #define	CRD_F_ENCRYPT		0x01	/* Set when doing encryption */
    227  1.1  jonathan #define	CRD_F_IV_PRESENT	0x02	/* When encrypting, IV is already in
    228  1.1  jonathan 					   place, so don't copy. */
    229  1.1  jonathan #define	CRD_F_IV_EXPLICIT	0x04	/* IV explicitly provided */
    230  1.1  jonathan #define	CRD_F_DSA_SHA_NEEDED	0x08	/* Compute SHA-1 of buffer for DSA */
    231  1.1  jonathan #define CRD_F_COMP		0x0f    /* Set when doing compression */
    232  1.1  jonathan 
    233  1.1  jonathan 	struct cryptoini	CRD_INI; /* Initialization/context data */
    234  1.1  jonathan #define crd_iv		CRD_INI.cri_iv
    235  1.1  jonathan #define crd_key		CRD_INI.cri_key
    236  1.1  jonathan #define crd_rnd		CRD_INI.cri_rnd
    237  1.1  jonathan #define crd_alg		CRD_INI.cri_alg
    238  1.1  jonathan #define crd_klen	CRD_INI.cri_klen
    239  1.1  jonathan 
    240  1.1  jonathan 	struct cryptodesc *crd_next;
    241  1.1  jonathan };
    242  1.1  jonathan 
    243  1.1  jonathan /* Structure describing complete operation */
    244  1.1  jonathan struct cryptop {
    245  1.1  jonathan 	TAILQ_ENTRY(cryptop) crp_next;
    246  1.1  jonathan 
    247  1.1  jonathan 	u_int64_t	crp_sid;	/* Session ID */
    248  1.1  jonathan 	int		crp_ilen;	/* Input data total length */
    249  1.1  jonathan 	int		crp_olen;	/* Result total length */
    250  1.1  jonathan 
    251  1.1  jonathan 	int		crp_etype;	/*
    252  1.1  jonathan 					 * Error type (zero means no error).
    253  1.1  jonathan 					 * All error codes except EAGAIN
    254  1.1  jonathan 					 * indicate possible data corruption (as in,
    255  1.1  jonathan 					 * the data have been touched). On all
    256  1.1  jonathan 					 * errors, the crp_sid may have changed
    257  1.1  jonathan 					 * (reset to a new one), so the caller
    258  1.1  jonathan 					 * should always check and use the new
    259  1.1  jonathan 					 * value on future requests.
    260  1.1  jonathan 					 */
    261  1.1  jonathan 	int		crp_flags;
    262  1.1  jonathan 
    263  1.5  jonathan #define CRYPTO_F_IMBUF		0x0001	/* Input/output are mbuf chains */
    264  1.5  jonathan #define CRYPTO_F_IOV		0x0002	/* Input/output are uio */
    265  1.5  jonathan #define CRYPTO_F_REL		0x0004	/* Must return data in same place */
    266  1.5  jonathan #define	CRYPTO_F_BATCH		0x0008	/* Batch op if possible possible */
    267  1.5  jonathan #define	CRYPTO_F_CBIMM		0x0010	/* Do callback immediately */
    268  1.5  jonathan #define	CRYPTO_F_DONE		0x0020	/* Operation completed */
    269  1.5  jonathan #define	CRYPTO_F_CBIFSYNC	0x0040	/* Do CBIMM if op is synchronous */
    270  1.1  jonathan 
    271  1.1  jonathan 	caddr_t		crp_buf;	/* Data to be processed */
    272  1.1  jonathan 	caddr_t		crp_opaque;	/* Opaque pointer, passed along */
    273  1.1  jonathan 	struct cryptodesc *crp_desc;	/* Linked list of processing descriptors */
    274  1.1  jonathan 
    275  1.1  jonathan 	int (*crp_callback)(struct cryptop *); /* Callback function */
    276  1.1  jonathan 
    277  1.1  jonathan 	caddr_t		crp_mac;
    278  1.1  jonathan 	struct timespec	crp_tstamp;	/* performance time stamp */
    279  1.1  jonathan };
    280  1.1  jonathan 
    281  1.1  jonathan #define CRYPTO_BUF_CONTIG	0x0
    282  1.1  jonathan #define CRYPTO_BUF_IOV		0x1
    283  1.1  jonathan #define CRYPTO_BUF_MBUF		0x2
    284  1.1  jonathan 
    285  1.1  jonathan #define CRYPTO_OP_DECRYPT	0x0
    286  1.1  jonathan #define CRYPTO_OP_ENCRYPT	0x1
    287  1.1  jonathan 
    288  1.1  jonathan /*
    289  1.1  jonathan  * Hints passed to process methods.
    290  1.1  jonathan  */
    291  1.1  jonathan #define	CRYPTO_HINT_MORE	0x1	/* more ops coming shortly */
    292  1.1  jonathan 
    293  1.1  jonathan struct cryptkop {
    294  1.1  jonathan 	TAILQ_ENTRY(cryptkop) krp_next;
    295  1.1  jonathan 
    296  1.1  jonathan 	u_int		krp_op;		/* ie. CRK_MOD_EXP or other */
    297  1.1  jonathan 	u_int		krp_status;	/* return status */
    298  1.1  jonathan 	u_short		krp_iparams;	/* # of input parameters */
    299  1.1  jonathan 	u_short		krp_oparams;	/* # of output parameters */
    300  1.1  jonathan 	u_int32_t	krp_hid;
    301  1.1  jonathan 	struct crparam	krp_param[CRK_MAXPARAM];	/* kvm */
    302  1.1  jonathan 	int		(*krp_callback)(struct cryptkop *);
    303  1.1  jonathan };
    304  1.1  jonathan 
    305  1.1  jonathan /* Crypto capabilities structure */
    306  1.1  jonathan struct cryptocap {
    307  1.1  jonathan 	u_int32_t	cc_sessions;
    308  1.1  jonathan 
    309  1.1  jonathan 	/*
    310  1.1  jonathan 	 * Largest possible operator length (in bits) for each type of
    311  1.1  jonathan 	 * encryption algorithm.
    312  1.1  jonathan 	 */
    313  1.1  jonathan 	u_int16_t	cc_max_op_len[CRYPTO_ALGORITHM_MAX + 1];
    314  1.1  jonathan 
    315  1.1  jonathan 	u_int8_t	cc_alg[CRYPTO_ALGORITHM_MAX + 1];
    316  1.1  jonathan 
    317  1.1  jonathan 	u_int8_t	cc_kalg[CRK_ALGORITHM_MAX + 1];
    318  1.1  jonathan 
    319  1.1  jonathan 	u_int8_t	cc_flags;
    320  1.1  jonathan 	u_int8_t	cc_qblocked;		/* symmetric q blocked */
    321  1.1  jonathan 	u_int8_t	cc_kqblocked;		/* asymmetric q blocked */
    322  1.5  jonathan #define CRYPTOCAP_F_CLEANUP	0x01		/* needs resource cleanup */
    323  1.5  jonathan #define CRYPTOCAP_F_SOFTWARE	0x02		/* software implementation */
    324  1.5  jonathan #define CRYPTOCAP_F_SYNC	0x04		/* operates synchronously */
    325  1.1  jonathan 
    326  1.1  jonathan 	void		*cc_arg;		/* callback argument */
    327  1.1  jonathan 	int		(*cc_newsession)(void*, u_int32_t*, struct cryptoini*);
    328  1.1  jonathan 	int		(*cc_process) (void*, struct cryptop *, int);
    329  1.1  jonathan 	int		(*cc_freesession) (void*, u_int64_t);
    330  1.1  jonathan 	void		*cc_karg;		/* callback argument */
    331  1.1  jonathan 	int		(*cc_kprocess) (void*, struct cryptkop *, int);
    332  1.1  jonathan };
    333  1.5  jonathan 
    334  1.5  jonathan /*
    335  1.5  jonathan  * Session ids are 64 bits.  The lower 32 bits contain a "local id" which
    336  1.5  jonathan  * is a driver-private session identifier.  The upper 32 bits contain a
    337  1.5  jonathan  * "hardware id" used by the core crypto code to identify the driver and
    338  1.5  jonathan  * a copy of the driver's capabilities that can be used by client code to
    339  1.5  jonathan  * optimize operation.
    340  1.5  jonathan  */
    341  1.5  jonathan #define	CRYPTO_SESID2HID(_sid)	(((_sid) >> 32) & 0xffffff)
    342  1.5  jonathan #define	CRYPTO_SESID2CAPS(_sid)	(((_sid) >> 56) & 0xff)
    343  1.5  jonathan #define	CRYPTO_SESID2LID(_sid)	(((u_int32_t) (_sid)) & 0xffffffff)
    344  1.1  jonathan 
    345  1.1  jonathan MALLOC_DECLARE(M_CRYPTO_DATA);
    346  1.1  jonathan 
    347  1.1  jonathan extern	int crypto_newsession(u_int64_t *sid, struct cryptoini *cri, int hard);
    348  1.1  jonathan extern	int crypto_freesession(u_int64_t sid);
    349  1.1  jonathan extern	int32_t crypto_get_driverid(u_int32_t flags);
    350  1.1  jonathan extern	int crypto_register(u_int32_t driverid, int alg, u_int16_t maxoplen,
    351  1.1  jonathan 	    u_int32_t flags,
    352  1.1  jonathan 	    int (*newses)(void*, u_int32_t*, struct cryptoini*),
    353  1.1  jonathan 	    int (*freeses)(void*, u_int64_t),
    354  1.1  jonathan 	    int (*process)(void*, struct cryptop *, int),
    355  1.1  jonathan 	    void *arg);
    356  1.1  jonathan extern	int crypto_kregister(u_int32_t, int, u_int32_t,
    357  1.1  jonathan 	    int (*)(void*, struct cryptkop *, int),
    358  1.1  jonathan 	    void *arg);
    359  1.1  jonathan extern	int crypto_unregister(u_int32_t driverid, int alg);
    360  1.1  jonathan extern	int crypto_unregister_all(u_int32_t driverid);
    361  1.1  jonathan extern	int crypto_dispatch(struct cryptop *crp);
    362  1.1  jonathan extern	int crypto_kdispatch(struct cryptkop *);
    363  1.1  jonathan #define	CRYPTO_SYMQ	0x1
    364  1.1  jonathan #define	CRYPTO_ASYMQ	0x2
    365  1.1  jonathan extern	int crypto_unblock(u_int32_t, int);
    366  1.1  jonathan extern	void crypto_done(struct cryptop *crp);
    367  1.1  jonathan extern	void crypto_kdone(struct cryptkop *);
    368  1.1  jonathan extern	int crypto_getfeat(int *);
    369  1.1  jonathan 
    370  1.1  jonathan void	cuio_copydata(struct uio *, int, int, caddr_t);
    371  1.1  jonathan void	cuio_copyback(struct uio *, int, int, caddr_t);
    372  1.1  jonathan int	cuio_apply(struct uio *, int, int,
    373  1.1  jonathan 	    int (*f)(caddr_t, caddr_t, unsigned int), caddr_t);
    374  1.1  jonathan 
    375  1.1  jonathan extern	void crypto_freereq(struct cryptop *crp);
    376  1.1  jonathan extern	struct cryptop *crypto_getreq(int num);
    377  1.1  jonathan 
    378  1.1  jonathan extern	int crypto_usercrypto;		/* userland may do crypto requests */
    379  1.1  jonathan extern	int crypto_userasymcrypto;	/* userland may do asym crypto reqs */
    380  1.1  jonathan extern	int crypto_devallowsoft;	/* only use hardware crypto */
    381  1.3  jonathan 
    382  1.3  jonathan 
    383  1.3  jonathan /*
    384  1.3  jonathan  * initialize the crypto framework subsystem (not the pseudo-device).
    385  1.3  jonathan  * This must be called very early in boot, so the framework is ready
    386  1.3  jonathan  * to handle registration requests when crpto hardware is autoconfigured.
    387  1.3  jonathan  * (This declaration doesnt really belong here but there's no header
    388  1.3  jonathan  * for the raw framework.)
    389  1.3  jonathan  */
    390  1.7   thorpej void	crypto_init(void);
    391  1.1  jonathan 
    392  1.1  jonathan /*
    393  1.1  jonathan  * Crypto-related utility routines used mainly by drivers.
    394  1.1  jonathan  *
    395  1.1  jonathan  * XXX these don't really belong here; but for now they're
    396  1.1  jonathan  *     kept apart from the rest of the system.
    397  1.1  jonathan  */
    398  1.1  jonathan struct mbuf;
    399  1.1  jonathan struct	mbuf	*m_getptr(struct mbuf *, int, int *);
    400  1.1  jonathan 
    401  1.1  jonathan struct uio;
    402  1.1  jonathan extern	void cuio_copydata(struct uio* uio, int off, int len, caddr_t cp);
    403  1.1  jonathan extern	void cuio_copyback(struct uio* uio, int off, int len, caddr_t cp);
    404  1.1  jonathan #ifdef __FreeBSD__
    405  1.1  jonathan extern struct iovec *cuio_getptr(struct uio *uio, int loc, int *off);
    406  1.1  jonathan #else
    407  1.1  jonathan extern int	cuio_getptr(struct uio *, int loc, int *off);
    408  1.1  jonathan #endif
    409  1.1  jonathan 
    410  1.2  jonathan #ifdef __FreeBSD__	/* Standalone m_apply()/m_getptr() */
    411  1.1  jonathan extern  int m_apply(struct mbuf *m, int off, int len,
    412  1.1  jonathan                     int (*f)(caddr_t, caddr_t, unsigned int), caddr_t fstate);
    413  1.1  jonathan extern  struct mbuf * m_getptr(struct mbuf *m, int loc, int *off);
    414  1.2  jonathan #endif	/* Standalone m_apply()/m_getptr() */
    415  1.1  jonathan 
    416  1.1  jonathan #endif /* _KERNEL */
    417  1.1  jonathan #endif /* _CRYPTO_CRYPTO_H_ */
    418