Home | History | Annotate | Line # | Download | only in opencrypto
crypto.c revision 1.12.4.1
      1  1.12.4.1    simonb /*	$NetBSD: crypto.c,v 1.12.4.1 2006/02/04 14:26:06 simonb Exp $ */
      2       1.1  jonathan /*	$FreeBSD: src/sys/opencrypto/crypto.c,v 1.4.2.5 2003/02/26 00:14:05 sam Exp $	*/
      3       1.1  jonathan /*	$OpenBSD: crypto.c,v 1.41 2002/07/17 23:52:38 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, 2001 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 
     26       1.1  jonathan #include <sys/cdefs.h>
     27  1.12.4.1    simonb __KERNEL_RCSID(0, "$NetBSD: crypto.c,v 1.12.4.1 2006/02/04 14:26:06 simonb Exp $");
     28       1.1  jonathan 
     29       1.1  jonathan /* XXX FIXME: should be defopt'ed */
     30       1.1  jonathan #define CRYPTO_TIMING			/* enable cryptop timing stuff */
     31       1.1  jonathan 
     32       1.1  jonathan #include <sys/param.h>
     33       1.1  jonathan #include <sys/reboot.h>
     34       1.1  jonathan #include <sys/systm.h>
     35       1.1  jonathan #include <sys/malloc.h>
     36       1.1  jonathan #include <sys/proc.h>
     37       1.1  jonathan #include <sys/pool.h>
     38       1.1  jonathan #include <opencrypto/cryptodev.h>
     39       1.1  jonathan #include <sys/kthread.h>
     40      1.11   thorpej #include <sys/once.h>
     41       1.1  jonathan 
     42       1.1  jonathan #include <opencrypto/xform.h>			/* XXX for M_XDATA */
     43       1.1  jonathan 
     44       1.1  jonathan #ifdef __NetBSD__
     45       1.1  jonathan   #define splcrypto splnet
     46       1.1  jonathan   /* below is kludges to check whats still missing */
     47       1.1  jonathan   #define SWI_CRYPTO 17
     48       1.1  jonathan   #define register_swi(lvl, fn)  \
     49       1.1  jonathan   softintr_establish(IPL_SOFTNET, (void (*)(void*))fn, NULL)
     50       1.1  jonathan   #define unregister_swi(lvl, fn)  softintr_disestablish(softintr_cookie)
     51       1.1  jonathan   #define setsoftcrypto(x) softintr_schedule(x)
     52       1.1  jonathan #endif
     53       1.1  jonathan 
     54       1.1  jonathan #define	SESID2HID(sid)	(((sid) >> 32) & 0xffffffff)
     55       1.1  jonathan 
     56       1.1  jonathan /*
     57       1.1  jonathan  * Crypto drivers register themselves by allocating a slot in the
     58       1.1  jonathan  * crypto_drivers table with crypto_get_driverid() and then registering
     59       1.1  jonathan  * each algorithm they support with crypto_register() and crypto_kregister().
     60       1.1  jonathan  */
     61      1.11   thorpej static	struct cryptocap *crypto_drivers;
     62      1.11   thorpej static	int crypto_drivers_num;
     63       1.1  jonathan static	void* softintr_cookie;
     64       1.1  jonathan 
     65       1.1  jonathan /*
     66       1.1  jonathan  * There are two queues for crypto requests; one for symmetric (e.g.
     67       1.1  jonathan  * cipher) operations and one for asymmetric (e.g. MOD) operations.
     68       1.1  jonathan  * See below for how synchronization is handled.
     69       1.1  jonathan  */
     70      1.11   thorpej static	TAILQ_HEAD(,cryptop) crp_q =		/* request queues */
     71      1.11   thorpej 		TAILQ_HEAD_INITIALIZER(crp_q);
     72      1.11   thorpej static	TAILQ_HEAD(,cryptkop) crp_kq =
     73      1.11   thorpej 		TAILQ_HEAD_INITIALIZER(crp_kq);
     74       1.1  jonathan 
     75       1.1  jonathan /*
     76       1.1  jonathan  * There are two queues for processing completed crypto requests; one
     77       1.1  jonathan  * for the symmetric and one for the asymmetric ops.  We only need one
     78       1.1  jonathan  * but have two to avoid type futzing (cryptop vs. cryptkop).  See below
     79       1.1  jonathan  * for how synchronization is handled.
     80       1.1  jonathan  */
     81      1.11   thorpej static	TAILQ_HEAD(,cryptop) crp_ret_q =	/* callback queues */
     82      1.11   thorpej 		TAILQ_HEAD_INITIALIZER(crp_ret_q);
     83      1.11   thorpej static	TAILQ_HEAD(,cryptkop) crp_ret_kq =
     84      1.11   thorpej 		TAILQ_HEAD_INITIALIZER(crp_ret_kq);
     85       1.1  jonathan 
     86       1.1  jonathan /*
     87       1.1  jonathan  * Crypto op and desciptor data structures are allocated
     88       1.1  jonathan  * from separate private zones(FreeBSD)/pools(netBSD/OpenBSD) .
     89       1.1  jonathan  */
     90       1.1  jonathan struct pool cryptop_pool;
     91       1.1  jonathan struct pool cryptodesc_pool;
     92       1.1  jonathan int crypto_pool_initialized = 0;
     93       1.1  jonathan 
     94       1.1  jonathan #ifdef __NetBSD__
     95       1.1  jonathan static void deferred_crypto_thread(void *arg);
     96       1.1  jonathan #endif
     97       1.1  jonathan 
     98       1.1  jonathan int	crypto_usercrypto = 1;		/* userland may open /dev/crypto */
     99       1.1  jonathan int	crypto_userasymcrypto = 1;	/* userland may do asym crypto reqs */
    100      1.10     perry /*
    101       1.6  jonathan  * cryptodevallowsoft is (intended to be) sysctl'able, controlling
    102       1.6  jonathan  * access to hardware versus software transforms as below:
    103       1.6  jonathan  *
    104       1.6  jonathan  * crypto_devallowsoft < 0:  Force userlevel requests to use software
    105       1.6  jonathan  *                              transforms, always
    106       1.6  jonathan  * crypto_devallowsoft = 0:  Use hardware if present, grant userlevel
    107       1.6  jonathan  *                              requests for non-accelerated transforms
    108       1.6  jonathan  *                              (handling the latter in software)
    109       1.6  jonathan  * crypto_devallowsoft > 0:  Allow user requests only for transforms which
    110       1.6  jonathan  *                               are hardware-accelerated.
    111       1.6  jonathan  */
    112       1.9  jonathan int	crypto_devallowsoft = 1;	/* only use hardware crypto */
    113       1.6  jonathan 
    114       1.1  jonathan #ifdef __FreeBSD__
    115       1.1  jonathan SYSCTL_INT(_kern, OID_AUTO, usercrypto, CTLFLAG_RW,
    116       1.1  jonathan 	   &crypto_usercrypto, 0,
    117       1.1  jonathan 	   "Enable/disable user-mode access to crypto support");
    118       1.1  jonathan SYSCTL_INT(_kern, OID_AUTO, userasymcrypto, CTLFLAG_RW,
    119       1.1  jonathan 	   &crypto_userasymcrypto, 0,
    120       1.1  jonathan 	   "Enable/disable user-mode access to asymmetric crypto support");
    121       1.1  jonathan SYSCTL_INT(_kern, OID_AUTO, cryptodevallowsoft, CTLFLAG_RW,
    122       1.1  jonathan 	   &crypto_devallowsoft, 0,
    123       1.1  jonathan 	   "Enable/disable use of software asym crypto support");
    124       1.1  jonathan #endif
    125       1.1  jonathan 
    126       1.1  jonathan MALLOC_DEFINE(M_CRYPTO_DATA, "crypto", "crypto session records");
    127       1.1  jonathan 
    128       1.1  jonathan /*
    129       1.1  jonathan  * Synchronization: read carefully, this is non-trivial.
    130       1.1  jonathan  *
    131       1.1  jonathan  * Crypto requests are submitted via crypto_dispatch.  Typically
    132       1.1  jonathan  * these come in from network protocols at spl0 (output path) or
    133       1.1  jonathan  * spl[,soft]net (input path).
    134       1.1  jonathan  *
    135       1.1  jonathan  * Requests are typically passed on the driver directly, but they
    136       1.1  jonathan  * may also be queued for processing by a software interrupt thread,
    137      1.10     perry  * cryptointr, that runs at splsoftcrypto.  This thread dispatches
    138       1.1  jonathan  * the requests to crypto drivers (h/w or s/w) who call crypto_done
    139       1.1  jonathan  * when a request is complete.  Hardware crypto drivers are assumed
    140       1.1  jonathan  * to register their IRQ's as network devices so their interrupt handlers
    141       1.1  jonathan  * and subsequent "done callbacks" happen at spl[imp,net].
    142       1.1  jonathan  *
    143       1.1  jonathan  * Completed crypto ops are queued for a separate kernel thread that
    144       1.1  jonathan  * handles the callbacks at spl0.  This decoupling insures the crypto
    145       1.1  jonathan  * driver interrupt service routine is not delayed while the callback
    146       1.1  jonathan  * takes place and that callbacks are delivered after a context switch
    147       1.1  jonathan  * (as opposed to a software interrupt that clients must block).
    148       1.1  jonathan  *
    149       1.1  jonathan  * This scheme is not intended for SMP machines.
    150      1.10     perry  */
    151       1.1  jonathan static	void cryptointr(void);		/* swi thread to dispatch ops */
    152       1.1  jonathan static	void cryptoret(void);		/* kernel thread for callbacks*/
    153       1.1  jonathan static	struct proc *cryptoproc;
    154       1.1  jonathan static	void crypto_destroy(void);
    155       1.1  jonathan static	int crypto_invoke(struct cryptop *crp, int hint);
    156       1.1  jonathan static	int crypto_kinvoke(struct cryptkop *krp, int hint);
    157       1.1  jonathan 
    158       1.1  jonathan static struct cryptostats cryptostats;
    159       1.1  jonathan static	int crypto_timing = 0;
    160       1.1  jonathan 
    161       1.1  jonathan #ifdef __FreeBSD__
    162       1.1  jonathan SYSCTL_STRUCT(_kern, OID_AUTO, crypto_stats, CTLFLAG_RW, &cryptostats,
    163       1.1  jonathan 	    cryptostats, "Crypto system statistics");
    164       1.1  jonathan 
    165       1.1  jonathan SYSCTL_INT(_debug, OID_AUTO, crypto_timing, CTLFLAG_RW,
    166       1.1  jonathan 	   &crypto_timing, 0, "Enable/disable crypto timing support");
    167       1.1  jonathan SYSCTL_STRUCT(_kern, OID_AUTO, crypto_stats, CTLFLAG_RW, &cryptostats,
    168       1.1  jonathan 	    cryptostats, "Crypto system statistics");
    169       1.4       lha #endif /* __FreeBSD__ */
    170       1.1  jonathan 
    171      1.12      yamt static int
    172      1.11   thorpej crypto_init0(void)
    173       1.1  jonathan {
    174      1.11   thorpej #ifdef __FreeBSD__
    175       1.1  jonathan 	int error;
    176       1.1  jonathan 
    177       1.1  jonathan 	cryptop_zone = zinit("cryptop", sizeof (struct cryptop), 0, 0, 1);
    178       1.1  jonathan 	cryptodesc_zone = zinit("cryptodesc", sizeof (struct cryptodesc),
    179       1.1  jonathan 				0, 0, 1);
    180       1.1  jonathan 	if (cryptodesc_zone == NULL || cryptop_zone == NULL) {
    181       1.1  jonathan 		printf("crypto_init: cannot setup crypto zones\n");
    182      1.11   thorpej 		return;
    183       1.1  jonathan 	}
    184       1.1  jonathan #endif
    185       1.1  jonathan 
    186      1.11   thorpej 	crypto_drivers = malloc(CRYPTO_DRIVERS_INITIAL *
    187       1.1  jonathan 	    sizeof(struct cryptocap), M_CRYPTO_DATA, M_NOWAIT | M_ZERO);
    188       1.1  jonathan 	if (crypto_drivers == NULL) {
    189       1.1  jonathan 		printf("crypto_init: cannot malloc driver table\n");
    190      1.12      yamt 		return 0;
    191       1.1  jonathan 	}
    192      1.11   thorpej 	crypto_drivers_num = CRYPTO_DRIVERS_INITIAL;
    193       1.1  jonathan 
    194       1.1  jonathan 	softintr_cookie = register_swi(SWI_CRYPTO, cryptointr);
    195       1.1  jonathan #ifdef __FreeBSD__
    196       1.1  jonathan 	error = kthread_create((void (*)(void *)) cryptoret, NULL,
    197       1.1  jonathan 		    &cryptoproc, "cryptoret");
    198       1.1  jonathan 	if (error) {
    199       1.1  jonathan 		printf("crypto_init: cannot start cryptoret thread; error %d",
    200       1.1  jonathan 			error);
    201       1.1  jonathan 		crypto_destroy();
    202       1.1  jonathan 	}
    203       1.1  jonathan #else
    204       1.1  jonathan 	/* defer thread creation until after boot */
    205       1.1  jonathan 	kthread_create( deferred_crypto_thread, NULL);
    206       1.1  jonathan #endif
    207      1.12      yamt 	return 0;
    208      1.11   thorpej }
    209      1.11   thorpej 
    210      1.11   thorpej void
    211      1.11   thorpej crypto_init(void)
    212      1.11   thorpej {
    213      1.11   thorpej 	ONCE_DECL(crypto_init_once);
    214      1.11   thorpej 
    215      1.11   thorpej 	RUN_ONCE(&crypto_init_once, crypto_init0);
    216       1.1  jonathan }
    217       1.1  jonathan 
    218       1.1  jonathan static void
    219       1.1  jonathan crypto_destroy(void)
    220       1.1  jonathan {
    221       1.1  jonathan 	/* XXX no wait to reclaim zones */
    222       1.1  jonathan 	if (crypto_drivers != NULL)
    223       1.1  jonathan 		free(crypto_drivers, M_CRYPTO_DATA);
    224       1.1  jonathan 	unregister_swi(SWI_CRYPTO, cryptointr);
    225       1.1  jonathan }
    226       1.1  jonathan 
    227       1.1  jonathan /*
    228       1.1  jonathan  * Create a new session.
    229       1.1  jonathan  */
    230       1.1  jonathan int
    231       1.1  jonathan crypto_newsession(u_int64_t *sid, struct cryptoini *cri, int hard)
    232       1.1  jonathan {
    233       1.1  jonathan 	struct cryptoini *cr;
    234       1.1  jonathan 	u_int32_t hid, lid;
    235       1.1  jonathan 	int err = EINVAL;
    236       1.1  jonathan 	int s;
    237       1.1  jonathan 
    238       1.1  jonathan 	s = splcrypto();
    239       1.1  jonathan 
    240       1.1  jonathan 	if (crypto_drivers == NULL)
    241       1.1  jonathan 		goto done;
    242       1.1  jonathan 
    243       1.1  jonathan 	/*
    244       1.1  jonathan 	 * The algorithm we use here is pretty stupid; just use the
    245       1.1  jonathan 	 * first driver that supports all the algorithms we need.
    246       1.1  jonathan 	 *
    247       1.1  jonathan 	 * XXX We need more smarts here (in real life too, but that's
    248       1.1  jonathan 	 * XXX another story altogether).
    249       1.1  jonathan 	 */
    250       1.1  jonathan 
    251       1.1  jonathan 	for (hid = 0; hid < crypto_drivers_num; hid++) {
    252       1.1  jonathan 		/*
    253       1.1  jonathan 		 * If it's not initialized or has remaining sessions
    254       1.1  jonathan 		 * referencing it, skip.
    255       1.1  jonathan 		 */
    256       1.1  jonathan 		if (crypto_drivers[hid].cc_newsession == NULL ||
    257       1.1  jonathan 		    (crypto_drivers[hid].cc_flags & CRYPTOCAP_F_CLEANUP))
    258       1.1  jonathan 			continue;
    259       1.1  jonathan 
    260       1.1  jonathan 		/* Hardware required -- ignore software drivers. */
    261       1.1  jonathan 		if (hard > 0 &&
    262       1.1  jonathan 		    (crypto_drivers[hid].cc_flags & CRYPTOCAP_F_SOFTWARE))
    263       1.1  jonathan 			continue;
    264       1.1  jonathan 		/* Software required -- ignore hardware drivers. */
    265       1.1  jonathan 		if (hard < 0 &&
    266       1.1  jonathan 		    (crypto_drivers[hid].cc_flags & CRYPTOCAP_F_SOFTWARE) == 0)
    267       1.1  jonathan 			continue;
    268       1.1  jonathan 
    269       1.1  jonathan 		/* See if all the algorithms are supported. */
    270       1.1  jonathan 		for (cr = cri; cr; cr = cr->cri_next)
    271       1.1  jonathan 			if (crypto_drivers[hid].cc_alg[cr->cri_alg] == 0)
    272       1.1  jonathan 				break;
    273       1.1  jonathan 
    274       1.1  jonathan 		if (cr == NULL) {
    275       1.1  jonathan 			/* Ok, all algorithms are supported. */
    276       1.1  jonathan 
    277       1.1  jonathan 			/*
    278       1.1  jonathan 			 * Can't do everything in one session.
    279       1.1  jonathan 			 *
    280       1.1  jonathan 			 * XXX Fix this. We need to inject a "virtual" session layer right
    281       1.1  jonathan 			 * XXX about here.
    282       1.1  jonathan 			 */
    283       1.1  jonathan 
    284       1.1  jonathan 			/* Call the driver initialization routine. */
    285       1.1  jonathan 			lid = hid;		/* Pass the driver ID. */
    286       1.1  jonathan 			err = crypto_drivers[hid].cc_newsession(
    287       1.1  jonathan 					crypto_drivers[hid].cc_arg, &lid, cri);
    288       1.1  jonathan 			if (err == 0) {
    289       1.1  jonathan 				(*sid) = hid;
    290       1.1  jonathan 				(*sid) <<= 32;
    291       1.1  jonathan 				(*sid) |= (lid & 0xffffffff);
    292       1.1  jonathan 				crypto_drivers[hid].cc_sessions++;
    293       1.1  jonathan 			}
    294       1.1  jonathan 			goto done;
    295       1.1  jonathan 			/*break;*/
    296       1.1  jonathan 		}
    297       1.1  jonathan 	}
    298       1.1  jonathan done:
    299       1.1  jonathan 	splx(s);
    300       1.1  jonathan 	return err;
    301       1.1  jonathan }
    302       1.1  jonathan 
    303       1.1  jonathan /*
    304       1.1  jonathan  * Delete an existing session (or a reserved session on an unregistered
    305       1.1  jonathan  * driver).
    306       1.1  jonathan  */
    307       1.1  jonathan int
    308       1.1  jonathan crypto_freesession(u_int64_t sid)
    309       1.1  jonathan {
    310       1.1  jonathan 	u_int32_t hid;
    311       1.1  jonathan 	int err = 0;
    312       1.1  jonathan 	int s;
    313       1.1  jonathan 
    314       1.1  jonathan 	s = splcrypto();
    315       1.1  jonathan 
    316       1.1  jonathan 	if (crypto_drivers == NULL) {
    317       1.1  jonathan 		err = EINVAL;
    318       1.1  jonathan 		goto done;
    319       1.1  jonathan 	}
    320       1.1  jonathan 
    321       1.1  jonathan 	/* Determine two IDs. */
    322       1.1  jonathan 	hid = SESID2HID(sid);
    323       1.1  jonathan 
    324       1.1  jonathan 	if (hid >= crypto_drivers_num) {
    325       1.1  jonathan 		err = ENOENT;
    326       1.1  jonathan 		goto done;
    327       1.1  jonathan 	}
    328       1.1  jonathan 
    329       1.1  jonathan 	if (crypto_drivers[hid].cc_sessions)
    330       1.1  jonathan 		crypto_drivers[hid].cc_sessions--;
    331       1.1  jonathan 
    332       1.1  jonathan 	/* Call the driver cleanup routine, if available. */
    333       1.1  jonathan 	if (crypto_drivers[hid].cc_freesession)
    334       1.1  jonathan 		err = crypto_drivers[hid].cc_freesession(
    335       1.1  jonathan 				crypto_drivers[hid].cc_arg, sid);
    336       1.1  jonathan 	else
    337       1.1  jonathan 		err = 0;
    338       1.1  jonathan 
    339       1.1  jonathan 	/*
    340       1.1  jonathan 	 * If this was the last session of a driver marked as invalid,
    341       1.1  jonathan 	 * make the entry available for reuse.
    342       1.1  jonathan 	 */
    343       1.1  jonathan 	if ((crypto_drivers[hid].cc_flags & CRYPTOCAP_F_CLEANUP) &&
    344       1.1  jonathan 	    crypto_drivers[hid].cc_sessions == 0)
    345       1.1  jonathan 		bzero(&crypto_drivers[hid], sizeof(struct cryptocap));
    346       1.1  jonathan 
    347       1.1  jonathan done:
    348       1.1  jonathan 	splx(s);
    349       1.1  jonathan 	return err;
    350       1.1  jonathan }
    351       1.1  jonathan 
    352       1.1  jonathan /*
    353       1.1  jonathan  * Return an unused driver id.  Used by drivers prior to registering
    354       1.1  jonathan  * support for the algorithms they handle.
    355       1.1  jonathan  */
    356       1.1  jonathan int32_t
    357       1.1  jonathan crypto_get_driverid(u_int32_t flags)
    358       1.1  jonathan {
    359       1.1  jonathan 	struct cryptocap *newdrv;
    360       1.1  jonathan 	int i, s;
    361       1.1  jonathan 
    362      1.11   thorpej 	crypto_init();
    363      1.11   thorpej 
    364       1.1  jonathan 	s = splcrypto();
    365       1.1  jonathan 	for (i = 0; i < crypto_drivers_num; i++)
    366       1.1  jonathan 		if (crypto_drivers[i].cc_process == NULL &&
    367       1.1  jonathan 		    (crypto_drivers[i].cc_flags & CRYPTOCAP_F_CLEANUP) == 0 &&
    368       1.1  jonathan 		    crypto_drivers[i].cc_sessions == 0)
    369       1.1  jonathan 			break;
    370       1.1  jonathan 
    371       1.1  jonathan 	/* Out of entries, allocate some more. */
    372       1.1  jonathan 	if (i == crypto_drivers_num) {
    373       1.1  jonathan 		/* Be careful about wrap-around. */
    374       1.1  jonathan 		if (2 * crypto_drivers_num <= crypto_drivers_num) {
    375       1.1  jonathan 			splx(s);
    376       1.1  jonathan 			printf("crypto: driver count wraparound!\n");
    377       1.1  jonathan 			return -1;
    378       1.1  jonathan 		}
    379       1.1  jonathan 
    380       1.1  jonathan 		newdrv = malloc(2 * crypto_drivers_num *
    381       1.1  jonathan 		    sizeof(struct cryptocap), M_CRYPTO_DATA, M_NOWAIT|M_ZERO);
    382       1.1  jonathan 		if (newdrv == NULL) {
    383       1.1  jonathan 			splx(s);
    384       1.1  jonathan 			printf("crypto: no space to expand driver table!\n");
    385       1.1  jonathan 			return -1;
    386       1.1  jonathan 		}
    387       1.1  jonathan 
    388       1.1  jonathan 		bcopy(crypto_drivers, newdrv,
    389       1.1  jonathan 		    crypto_drivers_num * sizeof(struct cryptocap));
    390       1.1  jonathan 
    391       1.1  jonathan 		crypto_drivers_num *= 2;
    392       1.1  jonathan 
    393       1.1  jonathan 		free(crypto_drivers, M_CRYPTO_DATA);
    394       1.1  jonathan 		crypto_drivers = newdrv;
    395       1.1  jonathan 	}
    396       1.1  jonathan 
    397       1.1  jonathan 	/* NB: state is zero'd on free */
    398       1.1  jonathan 	crypto_drivers[i].cc_sessions = 1;	/* Mark */
    399       1.1  jonathan 	crypto_drivers[i].cc_flags = flags;
    400       1.1  jonathan 
    401       1.1  jonathan 	if (bootverbose)
    402       1.1  jonathan 		printf("crypto: assign driver %u, flags %u\n", i, flags);
    403       1.1  jonathan 
    404       1.1  jonathan 	splx(s);
    405       1.1  jonathan 
    406       1.1  jonathan 	return i;
    407       1.1  jonathan }
    408       1.1  jonathan 
    409       1.1  jonathan static struct cryptocap *
    410       1.1  jonathan crypto_checkdriver(u_int32_t hid)
    411       1.1  jonathan {
    412       1.1  jonathan 	if (crypto_drivers == NULL)
    413       1.1  jonathan 		return NULL;
    414       1.1  jonathan 	return (hid >= crypto_drivers_num ? NULL : &crypto_drivers[hid]);
    415       1.1  jonathan }
    416       1.1  jonathan 
    417       1.1  jonathan /*
    418       1.1  jonathan  * Register support for a key-related algorithm.  This routine
    419       1.1  jonathan  * is called once for each algorithm supported a driver.
    420       1.1  jonathan  */
    421       1.1  jonathan int
    422       1.1  jonathan crypto_kregister(u_int32_t driverid, int kalg, u_int32_t flags,
    423       1.1  jonathan     int (*kprocess)(void*, struct cryptkop *, int),
    424       1.1  jonathan     void *karg)
    425       1.1  jonathan {
    426       1.1  jonathan 	int s;
    427       1.1  jonathan 	struct cryptocap *cap;
    428       1.1  jonathan 	int err;
    429       1.1  jonathan 
    430       1.1  jonathan 	s = splcrypto();
    431       1.1  jonathan 
    432       1.1  jonathan 	cap = crypto_checkdriver(driverid);
    433       1.1  jonathan 	if (cap != NULL &&
    434       1.1  jonathan 	    (CRK_ALGORITM_MIN <= kalg && kalg <= CRK_ALGORITHM_MAX)) {
    435       1.1  jonathan 		/*
    436       1.1  jonathan 		 * XXX Do some performance testing to determine placing.
    437       1.1  jonathan 		 * XXX We probably need an auxiliary data structure that
    438       1.1  jonathan 		 * XXX describes relative performances.
    439       1.1  jonathan 		 */
    440       1.1  jonathan 
    441       1.1  jonathan 		cap->cc_kalg[kalg] = flags | CRYPTO_ALG_FLAG_SUPPORTED;
    442       1.1  jonathan 		if (bootverbose)
    443       1.1  jonathan 			printf("crypto: driver %u registers key alg %u flags %u\n"
    444       1.1  jonathan 				, driverid
    445       1.1  jonathan 				, kalg
    446       1.1  jonathan 				, flags
    447       1.1  jonathan 			);
    448       1.1  jonathan 
    449       1.1  jonathan 		if (cap->cc_kprocess == NULL) {
    450       1.1  jonathan 			cap->cc_karg = karg;
    451       1.1  jonathan 			cap->cc_kprocess = kprocess;
    452       1.1  jonathan 		}
    453       1.1  jonathan 		err = 0;
    454       1.1  jonathan 	} else
    455       1.1  jonathan 		err = EINVAL;
    456       1.1  jonathan 
    457       1.1  jonathan 	splx(s);
    458       1.1  jonathan 	return err;
    459       1.1  jonathan }
    460       1.1  jonathan 
    461       1.1  jonathan /*
    462       1.1  jonathan  * Register support for a non-key-related algorithm.  This routine
    463       1.1  jonathan  * is called once for each such algorithm supported by a driver.
    464       1.1  jonathan  */
    465       1.1  jonathan int
    466       1.1  jonathan crypto_register(u_int32_t driverid, int alg, u_int16_t maxoplen,
    467       1.1  jonathan     u_int32_t flags,
    468       1.1  jonathan     int (*newses)(void*, u_int32_t*, struct cryptoini*),
    469       1.1  jonathan     int (*freeses)(void*, u_int64_t),
    470       1.1  jonathan     int (*process)(void*, struct cryptop *, int),
    471       1.1  jonathan     void *arg)
    472       1.1  jonathan {
    473       1.1  jonathan 	struct cryptocap *cap;
    474       1.1  jonathan 	int s, err;
    475       1.1  jonathan 
    476       1.1  jonathan 	s = splcrypto();
    477       1.1  jonathan 
    478       1.1  jonathan 	cap = crypto_checkdriver(driverid);
    479       1.1  jonathan 	/* NB: algorithms are in the range [1..max] */
    480       1.1  jonathan 	if (cap != NULL &&
    481       1.1  jonathan 	    (CRYPTO_ALGORITHM_MIN <= alg && alg <= CRYPTO_ALGORITHM_MAX)) {
    482       1.1  jonathan 		/*
    483       1.1  jonathan 		 * XXX Do some performance testing to determine placing.
    484       1.1  jonathan 		 * XXX We probably need an auxiliary data structure that
    485       1.1  jonathan 		 * XXX describes relative performances.
    486       1.1  jonathan 		 */
    487       1.1  jonathan 
    488       1.1  jonathan 		cap->cc_alg[alg] = flags | CRYPTO_ALG_FLAG_SUPPORTED;
    489       1.1  jonathan 		cap->cc_max_op_len[alg] = maxoplen;
    490       1.1  jonathan 		if (bootverbose)
    491       1.1  jonathan 			printf("crypto: driver %u registers alg %u flags %u maxoplen %u\n"
    492       1.1  jonathan 				, driverid
    493       1.1  jonathan 				, alg
    494       1.1  jonathan 				, flags
    495       1.1  jonathan 				, maxoplen
    496       1.1  jonathan 			);
    497       1.1  jonathan 
    498       1.1  jonathan 		if (cap->cc_process == NULL) {
    499       1.1  jonathan 			cap->cc_arg = arg;
    500       1.1  jonathan 			cap->cc_newsession = newses;
    501       1.1  jonathan 			cap->cc_process = process;
    502       1.1  jonathan 			cap->cc_freesession = freeses;
    503       1.1  jonathan 			cap->cc_sessions = 0;		/* Unmark */
    504       1.1  jonathan 		}
    505       1.1  jonathan 		err = 0;
    506       1.1  jonathan 	} else
    507       1.1  jonathan 		err = EINVAL;
    508       1.1  jonathan 
    509       1.1  jonathan 	splx(s);
    510       1.1  jonathan 	return err;
    511       1.1  jonathan }
    512       1.1  jonathan 
    513       1.1  jonathan /*
    514       1.1  jonathan  * Unregister a crypto driver. If there are pending sessions using it,
    515       1.1  jonathan  * leave enough information around so that subsequent calls using those
    516       1.1  jonathan  * sessions will correctly detect the driver has been unregistered and
    517       1.1  jonathan  * reroute requests.
    518       1.1  jonathan  */
    519       1.1  jonathan int
    520       1.1  jonathan crypto_unregister(u_int32_t driverid, int alg)
    521       1.1  jonathan {
    522       1.1  jonathan 	int i, err, s;
    523       1.1  jonathan 	u_int32_t ses;
    524       1.1  jonathan 	struct cryptocap *cap;
    525       1.1  jonathan 
    526       1.1  jonathan 	s = splcrypto();
    527       1.1  jonathan 
    528       1.1  jonathan 	cap = crypto_checkdriver(driverid);
    529       1.1  jonathan 	if (cap != NULL &&
    530       1.1  jonathan 	    (CRYPTO_ALGORITHM_MIN <= alg && alg <= CRYPTO_ALGORITHM_MAX) &&
    531       1.1  jonathan 	    cap->cc_alg[alg] != 0) {
    532       1.1  jonathan 		cap->cc_alg[alg] = 0;
    533       1.1  jonathan 		cap->cc_max_op_len[alg] = 0;
    534       1.1  jonathan 
    535       1.1  jonathan 		/* Was this the last algorithm ? */
    536       1.1  jonathan 		for (i = 1; i <= CRYPTO_ALGORITHM_MAX; i++)
    537       1.1  jonathan 			if (cap->cc_alg[i] != 0)
    538       1.1  jonathan 				break;
    539       1.1  jonathan 
    540       1.1  jonathan 		if (i == CRYPTO_ALGORITHM_MAX + 1) {
    541       1.1  jonathan 			ses = cap->cc_sessions;
    542       1.1  jonathan 			bzero(cap, sizeof(struct cryptocap));
    543       1.1  jonathan 			if (ses != 0) {
    544       1.1  jonathan 				/*
    545       1.1  jonathan 				 * If there are pending sessions, just mark as invalid.
    546       1.1  jonathan 				 */
    547       1.1  jonathan 				cap->cc_flags |= CRYPTOCAP_F_CLEANUP;
    548       1.1  jonathan 				cap->cc_sessions = ses;
    549       1.1  jonathan 			}
    550       1.1  jonathan 		}
    551       1.1  jonathan 		err = 0;
    552       1.1  jonathan 	} else
    553       1.1  jonathan 		err = EINVAL;
    554       1.1  jonathan 
    555       1.1  jonathan 	splx(s);
    556       1.1  jonathan 	return err;
    557       1.1  jonathan }
    558       1.1  jonathan 
    559       1.1  jonathan /*
    560       1.1  jonathan  * Unregister all algorithms associated with a crypto driver.
    561       1.1  jonathan  * If there are pending sessions using it, leave enough information
    562       1.1  jonathan  * around so that subsequent calls using those sessions will
    563       1.1  jonathan  * correctly detect the driver has been unregistered and reroute
    564       1.1  jonathan  * requests.
    565       1.1  jonathan  */
    566       1.1  jonathan int
    567       1.1  jonathan crypto_unregister_all(u_int32_t driverid)
    568       1.1  jonathan {
    569       1.1  jonathan 	int i, err, s = splcrypto();
    570       1.1  jonathan 	u_int32_t ses;
    571       1.1  jonathan 	struct cryptocap *cap;
    572       1.1  jonathan 
    573       1.1  jonathan 	cap = crypto_checkdriver(driverid);
    574       1.1  jonathan 	if (cap != NULL) {
    575       1.1  jonathan 		for (i = CRYPTO_ALGORITHM_MIN; i <= CRYPTO_ALGORITHM_MAX; i++) {
    576       1.1  jonathan 			cap->cc_alg[i] = 0;
    577       1.1  jonathan 			cap->cc_max_op_len[i] = 0;
    578       1.1  jonathan 		}
    579       1.1  jonathan 		ses = cap->cc_sessions;
    580       1.1  jonathan 		bzero(cap, sizeof(struct cryptocap));
    581       1.1  jonathan 		if (ses != 0) {
    582       1.1  jonathan 			/*
    583       1.1  jonathan 			 * If there are pending sessions, just mark as invalid.
    584       1.1  jonathan 			 */
    585       1.1  jonathan 			cap->cc_flags |= CRYPTOCAP_F_CLEANUP;
    586       1.1  jonathan 			cap->cc_sessions = ses;
    587       1.1  jonathan 		}
    588       1.1  jonathan 		err = 0;
    589       1.1  jonathan 	} else
    590       1.1  jonathan 		err = EINVAL;
    591       1.1  jonathan 
    592       1.1  jonathan 	splx(s);
    593       1.1  jonathan 	return err;
    594       1.1  jonathan }
    595       1.1  jonathan 
    596       1.1  jonathan /*
    597       1.1  jonathan  * Clear blockage on a driver.  The what parameter indicates whether
    598       1.1  jonathan  * the driver is now ready for cryptop's and/or cryptokop's.
    599       1.1  jonathan  */
    600       1.1  jonathan int
    601       1.1  jonathan crypto_unblock(u_int32_t driverid, int what)
    602       1.1  jonathan {
    603       1.1  jonathan 	struct cryptocap *cap;
    604       1.1  jonathan 	int needwakeup, err, s;
    605       1.1  jonathan 
    606       1.1  jonathan 	s = splcrypto();
    607       1.1  jonathan 	cap = crypto_checkdriver(driverid);
    608       1.1  jonathan 	if (cap != NULL) {
    609       1.1  jonathan 		needwakeup = 0;
    610       1.1  jonathan 		if (what & CRYPTO_SYMQ) {
    611       1.1  jonathan 			needwakeup |= cap->cc_qblocked;
    612       1.1  jonathan 			cap->cc_qblocked = 0;
    613       1.1  jonathan 		}
    614       1.1  jonathan 		if (what & CRYPTO_ASYMQ) {
    615       1.1  jonathan 			needwakeup |= cap->cc_kqblocked;
    616       1.1  jonathan 			cap->cc_kqblocked = 0;
    617       1.1  jonathan 		}
    618       1.1  jonathan 		if (needwakeup) {
    619       1.1  jonathan 			setsoftcrypto(softintr_cookie);
    620       1.1  jonathan 		}
    621       1.1  jonathan 		err = 0;
    622       1.1  jonathan 	} else
    623       1.1  jonathan 		err = EINVAL;
    624       1.1  jonathan 	splx(s);
    625       1.1  jonathan 
    626       1.1  jonathan 	return err;
    627       1.1  jonathan }
    628       1.1  jonathan 
    629       1.1  jonathan /*
    630       1.1  jonathan  * Dispatch a crypto request to a driver or queue
    631       1.1  jonathan  * it, to be processed by the kernel thread.
    632       1.1  jonathan  */
    633       1.1  jonathan int
    634       1.1  jonathan crypto_dispatch(struct cryptop *crp)
    635       1.1  jonathan {
    636       1.1  jonathan 	u_int32_t hid = SESID2HID(crp->crp_sid);
    637       1.1  jonathan 	int s, result;
    638       1.1  jonathan 
    639       1.1  jonathan 	s = splcrypto();
    640       1.1  jonathan 
    641       1.1  jonathan 	cryptostats.cs_ops++;
    642       1.1  jonathan 
    643       1.1  jonathan #ifdef CRYPTO_TIMING
    644       1.1  jonathan 	if (crypto_timing)
    645       1.1  jonathan 		nanouptime(&crp->crp_tstamp);
    646       1.1  jonathan #endif
    647       1.1  jonathan 	if ((crp->crp_flags & CRYPTO_F_BATCH) == 0) {
    648       1.1  jonathan 		struct cryptocap *cap;
    649       1.1  jonathan 		/*
    650       1.1  jonathan 		 * Caller marked the request to be processed
    651       1.1  jonathan 		 * immediately; dispatch it directly to the
    652       1.1  jonathan 		 * driver unless the driver is currently blocked.
    653       1.1  jonathan 		 */
    654       1.1  jonathan 		cap = crypto_checkdriver(hid);
    655       1.1  jonathan 		if (cap && !cap->cc_qblocked) {
    656       1.1  jonathan 			result = crypto_invoke(crp, 0);
    657       1.1  jonathan 			if (result == ERESTART) {
    658       1.1  jonathan 				/*
    659       1.1  jonathan 				 * The driver ran out of resources, mark the
    660       1.1  jonathan 				 * driver ``blocked'' for cryptop's and put
    661       1.1  jonathan 				 * the op on the queue.
    662       1.1  jonathan 				 */
    663       1.1  jonathan 				crypto_drivers[hid].cc_qblocked = 1;
    664       1.1  jonathan 				TAILQ_INSERT_HEAD(&crp_q, crp, crp_next);
    665       1.1  jonathan 				cryptostats.cs_blocks++;
    666       1.1  jonathan 			}
    667       1.1  jonathan 		} else {
    668       1.1  jonathan 			/*
    669       1.1  jonathan 			 * The driver is blocked, just queue the op until
    670       1.1  jonathan 			 * it unblocks and the swi thread gets kicked.
    671       1.1  jonathan 			 */
    672       1.1  jonathan 			TAILQ_INSERT_TAIL(&crp_q, crp, crp_next);
    673       1.1  jonathan 			result = 0;
    674       1.1  jonathan 		}
    675       1.1  jonathan 	} else {
    676       1.1  jonathan 		int wasempty = TAILQ_EMPTY(&crp_q);
    677       1.1  jonathan 		/*
    678       1.1  jonathan 		 * Caller marked the request as ``ok to delay'';
    679       1.1  jonathan 		 * queue it for the swi thread.  This is desirable
    680       1.1  jonathan 		 * when the operation is low priority and/or suitable
    681       1.1  jonathan 		 * for batching.
    682       1.1  jonathan 		 */
    683       1.1  jonathan 		TAILQ_INSERT_TAIL(&crp_q, crp, crp_next);
    684       1.1  jonathan 		if (wasempty) {
    685       1.1  jonathan 			setsoftcrypto(softintr_cookie);
    686       1.1  jonathan 		}
    687       1.1  jonathan 
    688       1.1  jonathan 		result = 0;
    689       1.1  jonathan 	}
    690       1.1  jonathan 	splx(s);
    691       1.1  jonathan 
    692       1.1  jonathan 	return result;
    693       1.1  jonathan }
    694       1.1  jonathan 
    695       1.1  jonathan /*
    696       1.1  jonathan  * Add an asymetric crypto request to a queue,
    697       1.1  jonathan  * to be processed by the kernel thread.
    698       1.1  jonathan  */
    699       1.1  jonathan int
    700       1.1  jonathan crypto_kdispatch(struct cryptkop *krp)
    701       1.1  jonathan {
    702       1.1  jonathan 	struct cryptocap *cap;
    703       1.1  jonathan 	int s, result;
    704       1.1  jonathan 
    705       1.1  jonathan 	s = splcrypto();
    706       1.1  jonathan 	cryptostats.cs_kops++;
    707       1.1  jonathan 
    708       1.1  jonathan 	cap = crypto_checkdriver(krp->krp_hid);
    709       1.1  jonathan 	if (cap && !cap->cc_kqblocked) {
    710       1.1  jonathan 		result = crypto_kinvoke(krp, 0);
    711       1.1  jonathan 		if (result == ERESTART) {
    712       1.1  jonathan 			/*
    713       1.1  jonathan 			 * The driver ran out of resources, mark the
    714       1.1  jonathan 			 * driver ``blocked'' for cryptop's and put
    715       1.1  jonathan 			 * the op on the queue.
    716       1.1  jonathan 			 */
    717       1.1  jonathan 			crypto_drivers[krp->krp_hid].cc_kqblocked = 1;
    718       1.1  jonathan 			TAILQ_INSERT_HEAD(&crp_kq, krp, krp_next);
    719       1.1  jonathan 			cryptostats.cs_kblocks++;
    720       1.1  jonathan 		}
    721       1.1  jonathan 	} else {
    722       1.1  jonathan 		/*
    723       1.1  jonathan 		 * The driver is blocked, just queue the op until
    724       1.1  jonathan 		 * it unblocks and the swi thread gets kicked.
    725       1.1  jonathan 		 */
    726       1.1  jonathan 		TAILQ_INSERT_TAIL(&crp_kq, krp, krp_next);
    727       1.1  jonathan 		result = 0;
    728       1.1  jonathan 	}
    729       1.1  jonathan 	splx(s);
    730       1.1  jonathan 
    731       1.1  jonathan 	return result;
    732       1.1  jonathan }
    733       1.1  jonathan 
    734       1.1  jonathan /*
    735       1.1  jonathan  * Dispatch an assymetric crypto request to the appropriate crypto devices.
    736       1.1  jonathan  */
    737       1.1  jonathan static int
    738       1.1  jonathan crypto_kinvoke(struct cryptkop *krp, int hint)
    739       1.1  jonathan {
    740       1.1  jonathan 	u_int32_t hid;
    741       1.1  jonathan 	int error;
    742       1.1  jonathan 
    743       1.1  jonathan 	/* Sanity checks. */
    744       1.1  jonathan 	if (krp == NULL)
    745       1.1  jonathan 		return EINVAL;
    746       1.1  jonathan 	if (krp->krp_callback == NULL) {
    747       1.1  jonathan 		free(krp, M_XDATA);		/* XXX allocated in cryptodev */
    748       1.1  jonathan 		return EINVAL;
    749       1.1  jonathan 	}
    750       1.1  jonathan 
    751       1.1  jonathan 	for (hid = 0; hid < crypto_drivers_num; hid++) {
    752       1.1  jonathan 		if ((crypto_drivers[hid].cc_flags & CRYPTOCAP_F_SOFTWARE) &&
    753       1.1  jonathan 		    crypto_devallowsoft == 0)
    754       1.1  jonathan 			continue;
    755       1.1  jonathan 		if (crypto_drivers[hid].cc_kprocess == NULL)
    756       1.1  jonathan 			continue;
    757       1.1  jonathan 		if ((crypto_drivers[hid].cc_kalg[krp->krp_op] &
    758       1.1  jonathan 		    CRYPTO_ALG_FLAG_SUPPORTED) == 0)
    759       1.1  jonathan 			continue;
    760       1.1  jonathan 		break;
    761       1.1  jonathan 	}
    762       1.1  jonathan 	if (hid < crypto_drivers_num) {
    763       1.1  jonathan 		krp->krp_hid = hid;
    764       1.1  jonathan 		error = crypto_drivers[hid].cc_kprocess(
    765       1.1  jonathan 				crypto_drivers[hid].cc_karg, krp, hint);
    766       1.1  jonathan 	} else {
    767       1.1  jonathan 		error = ENODEV;
    768       1.1  jonathan 	}
    769       1.1  jonathan 
    770       1.1  jonathan 	if (error) {
    771       1.1  jonathan 		krp->krp_status = error;
    772       1.1  jonathan 		crypto_kdone(krp);
    773       1.1  jonathan 	}
    774       1.1  jonathan 	return 0;
    775       1.1  jonathan }
    776       1.1  jonathan 
    777       1.1  jonathan #ifdef CRYPTO_TIMING
    778       1.1  jonathan static void
    779       1.1  jonathan crypto_tstat(struct cryptotstat *ts, struct timespec *tv)
    780       1.1  jonathan {
    781       1.1  jonathan 	struct timespec now, t;
    782       1.1  jonathan 
    783       1.1  jonathan 	nanouptime(&now);
    784       1.1  jonathan 	t.tv_sec = now.tv_sec - tv->tv_sec;
    785       1.1  jonathan 	t.tv_nsec = now.tv_nsec - tv->tv_nsec;
    786       1.1  jonathan 	if (t.tv_nsec < 0) {
    787       1.1  jonathan 		t.tv_sec--;
    788       1.1  jonathan 		t.tv_nsec += 1000000000;
    789       1.1  jonathan 	}
    790       1.1  jonathan 	timespecadd(&ts->acc, &t, &t);
    791       1.1  jonathan 	if (timespeccmp(&t, &ts->min, <))
    792       1.1  jonathan 		ts->min = t;
    793       1.1  jonathan 	if (timespeccmp(&t, &ts->max, >))
    794       1.1  jonathan 		ts->max = t;
    795       1.1  jonathan 	ts->count++;
    796       1.1  jonathan 
    797       1.1  jonathan 	*tv = now;
    798       1.1  jonathan }
    799       1.1  jonathan #endif
    800       1.1  jonathan 
    801       1.1  jonathan /*
    802       1.1  jonathan  * Dispatch a crypto request to the appropriate crypto devices.
    803       1.1  jonathan  */
    804       1.1  jonathan static int
    805       1.1  jonathan crypto_invoke(struct cryptop *crp, int hint)
    806       1.1  jonathan {
    807       1.1  jonathan 	u_int32_t hid;
    808       1.1  jonathan 	int (*process)(void*, struct cryptop *, int);
    809       1.1  jonathan 
    810       1.1  jonathan #ifdef CRYPTO_TIMING
    811       1.1  jonathan 	if (crypto_timing)
    812       1.1  jonathan 		crypto_tstat(&cryptostats.cs_invoke, &crp->crp_tstamp);
    813       1.1  jonathan #endif
    814       1.1  jonathan 	/* Sanity checks. */
    815       1.1  jonathan 	if (crp == NULL)
    816       1.1  jonathan 		return EINVAL;
    817       1.1  jonathan 	if (crp->crp_callback == NULL) {
    818       1.1  jonathan 		crypto_freereq(crp);
    819       1.1  jonathan 		return EINVAL;
    820       1.1  jonathan 	}
    821       1.1  jonathan 	if (crp->crp_desc == NULL) {
    822       1.1  jonathan 		crp->crp_etype = EINVAL;
    823       1.1  jonathan 		crypto_done(crp);
    824       1.1  jonathan 		return 0;
    825       1.1  jonathan 	}
    826       1.1  jonathan 
    827       1.1  jonathan 	hid = SESID2HID(crp->crp_sid);
    828       1.1  jonathan 	if (hid < crypto_drivers_num) {
    829       1.1  jonathan 		if (crypto_drivers[hid].cc_flags & CRYPTOCAP_F_CLEANUP)
    830       1.1  jonathan 			crypto_freesession(crp->crp_sid);
    831       1.1  jonathan 		process = crypto_drivers[hid].cc_process;
    832       1.1  jonathan 	} else {
    833       1.1  jonathan 		process = NULL;
    834       1.1  jonathan 	}
    835       1.1  jonathan 
    836       1.1  jonathan 	if (process == NULL) {
    837       1.1  jonathan 		struct cryptodesc *crd;
    838       1.1  jonathan 		u_int64_t nid;
    839       1.1  jonathan 
    840       1.1  jonathan 		/*
    841       1.1  jonathan 		 * Driver has unregistered; migrate the session and return
    842       1.1  jonathan 		 * an error to the caller so they'll resubmit the op.
    843       1.1  jonathan 		 */
    844       1.1  jonathan 		for (crd = crp->crp_desc; crd->crd_next; crd = crd->crd_next)
    845       1.1  jonathan 			crd->CRD_INI.cri_next = &(crd->crd_next->CRD_INI);
    846       1.1  jonathan 
    847       1.1  jonathan 		if (crypto_newsession(&nid, &(crp->crp_desc->CRD_INI), 0) == 0)
    848       1.1  jonathan 			crp->crp_sid = nid;
    849       1.1  jonathan 
    850       1.1  jonathan 		crp->crp_etype = EAGAIN;
    851       1.1  jonathan 		crypto_done(crp);
    852       1.1  jonathan 		return 0;
    853       1.1  jonathan 	} else {
    854       1.1  jonathan 		/*
    855       1.1  jonathan 		 * Invoke the driver to process the request.
    856       1.1  jonathan 		 */
    857       1.1  jonathan 		return (*process)(crypto_drivers[hid].cc_arg, crp, hint);
    858       1.1  jonathan 	}
    859       1.1  jonathan }
    860       1.1  jonathan 
    861       1.1  jonathan /*
    862       1.1  jonathan  * Release a set of crypto descriptors.
    863       1.1  jonathan  */
    864       1.1  jonathan void
    865       1.1  jonathan crypto_freereq(struct cryptop *crp)
    866       1.1  jonathan {
    867       1.1  jonathan 	struct cryptodesc *crd;
    868       1.1  jonathan 	int s;
    869       1.1  jonathan 
    870       1.1  jonathan 	if (crp == NULL)
    871       1.1  jonathan 		return;
    872       1.1  jonathan 
    873       1.1  jonathan 	s = splcrypto();
    874       1.1  jonathan 
    875       1.1  jonathan 	while ((crd = crp->crp_desc) != NULL) {
    876       1.1  jonathan 		crp->crp_desc = crd->crd_next;
    877       1.1  jonathan 		pool_put(&cryptodesc_pool, crd);
    878       1.1  jonathan 	}
    879       1.1  jonathan 
    880       1.1  jonathan 	pool_put(&cryptop_pool, crp);
    881       1.1  jonathan 	splx(s);
    882       1.1  jonathan }
    883       1.1  jonathan 
    884       1.1  jonathan /*
    885       1.1  jonathan  * Acquire a set of crypto descriptors.
    886       1.1  jonathan  */
    887       1.1  jonathan struct cryptop *
    888       1.1  jonathan crypto_getreq(int num)
    889       1.1  jonathan {
    890       1.1  jonathan 	struct cryptodesc *crd;
    891       1.1  jonathan 	struct cryptop *crp;
    892       1.1  jonathan 	int s;
    893       1.1  jonathan 
    894       1.1  jonathan 	s = splcrypto();
    895       1.1  jonathan 
    896       1.1  jonathan 	if (crypto_pool_initialized == 0) {
    897       1.1  jonathan 		pool_init(&cryptop_pool, sizeof(struct cryptop), 0, 0,
    898       1.1  jonathan 		    0, "cryptop", NULL);
    899       1.1  jonathan 		pool_init(&cryptodesc_pool, sizeof(struct cryptodesc), 0, 0,
    900       1.1  jonathan 		    0, "cryptodesc", NULL);
    901       1.1  jonathan 		crypto_pool_initialized = 1;
    902       1.1  jonathan 	}
    903       1.1  jonathan 
    904       1.1  jonathan 	crp = pool_get(&cryptop_pool, 0);
    905       1.1  jonathan 	if (crp == NULL) {
    906       1.1  jonathan 		splx(s);
    907       1.1  jonathan 		return NULL;
    908       1.1  jonathan 	}
    909       1.1  jonathan 	bzero(crp, sizeof(struct cryptop));
    910       1.1  jonathan 
    911       1.1  jonathan 	while (num--) {
    912       1.1  jonathan 		crd = pool_get(&cryptodesc_pool, 0);
    913       1.1  jonathan 		if (crd == NULL) {
    914       1.1  jonathan 			splx(s);
    915       1.1  jonathan 			crypto_freereq(crp);
    916       1.1  jonathan 			return NULL;
    917       1.1  jonathan 		}
    918       1.1  jonathan 
    919       1.1  jonathan 		bzero(crd, sizeof(struct cryptodesc));
    920       1.1  jonathan 		crd->crd_next = crp->crp_desc;
    921       1.1  jonathan 		crp->crp_desc = crd;
    922       1.1  jonathan 	}
    923       1.1  jonathan 
    924       1.1  jonathan 	splx(s);
    925       1.1  jonathan 	return crp;
    926       1.1  jonathan }
    927       1.1  jonathan 
    928       1.1  jonathan /*
    929       1.1  jonathan  * Invoke the callback on behalf of the driver.
    930       1.1  jonathan  */
    931       1.1  jonathan void
    932       1.1  jonathan crypto_done(struct cryptop *crp)
    933       1.1  jonathan {
    934       1.1  jonathan 	if (crp->crp_etype != 0)
    935       1.1  jonathan 		cryptostats.cs_errs++;
    936       1.1  jonathan #ifdef CRYPTO_TIMING
    937       1.1  jonathan 	if (crypto_timing)
    938       1.1  jonathan 		crypto_tstat(&cryptostats.cs_done, &crp->crp_tstamp);
    939       1.1  jonathan #endif
    940       1.1  jonathan 	/*
    941       1.1  jonathan 	 * On netbsd 1.6O, CBIMM does its wake_one() before the requestor
    942       1.1  jonathan 	 * has done its tsleep().
    943       1.1  jonathan 	 */
    944       1.1  jonathan #ifndef __NetBSD__
    945       1.1  jonathan 	if (crp->crp_flags & CRYPTO_F_CBIMM) {
    946       1.1  jonathan 		/*
    947       1.1  jonathan 		 * Do the callback directly.  This is ok when the
    948       1.1  jonathan 		 * callback routine does very little (e.g. the
    949       1.1  jonathan 		 * /dev/crypto callback method just does a wakeup).
    950       1.1  jonathan 		 */
    951       1.1  jonathan #ifdef CRYPTO_TIMING
    952       1.1  jonathan 		if (crypto_timing) {
    953       1.1  jonathan 			/*
    954       1.1  jonathan 			 * NB: We must copy the timestamp before
    955       1.1  jonathan 			 * doing the callback as the cryptop is
    956       1.1  jonathan 			 * likely to be reclaimed.
    957       1.1  jonathan 			 */
    958       1.1  jonathan 			struct timespec t = crp->crp_tstamp;
    959       1.1  jonathan 			crypto_tstat(&cryptostats.cs_cb, &t);
    960       1.1  jonathan 			crp->crp_callback(crp);
    961       1.1  jonathan 			crypto_tstat(&cryptostats.cs_finis, &t);
    962       1.1  jonathan 		} else
    963       1.1  jonathan #endif
    964       1.1  jonathan 			crp->crp_callback(crp);
    965       1.1  jonathan 	} else
    966       1.1  jonathan #endif /* __NetBSD__ */
    967       1.1  jonathan 	{
    968       1.1  jonathan 		int s, wasempty;
    969       1.1  jonathan 		/*
    970       1.1  jonathan 		 * Normal case; queue the callback for the thread.
    971       1.1  jonathan 		 *
    972       1.1  jonathan 		 * The return queue is manipulated by the swi thread
    973       1.1  jonathan 		 * and, potentially, by crypto device drivers calling
    974       1.1  jonathan 		 * back to mark operations completed.  Thus we need
    975       1.1  jonathan 		 * to mask both while manipulating the return queue.
    976       1.1  jonathan 		 */
    977       1.1  jonathan 		s = splcrypto();
    978       1.1  jonathan 		wasempty = TAILQ_EMPTY(&crp_ret_q);
    979       1.1  jonathan 		TAILQ_INSERT_TAIL(&crp_ret_q, crp, crp_next);
    980       1.1  jonathan 		if (wasempty)
    981       1.1  jonathan 			wakeup_one(&crp_ret_q);
    982       1.1  jonathan 		splx(s);
    983       1.1  jonathan 	}
    984       1.1  jonathan }
    985       1.1  jonathan 
    986       1.1  jonathan /*
    987       1.1  jonathan  * Invoke the callback on behalf of the driver.
    988       1.1  jonathan  */
    989       1.1  jonathan void
    990       1.1  jonathan crypto_kdone(struct cryptkop *krp)
    991       1.1  jonathan {
    992       1.1  jonathan 	int s, wasempty;
    993       1.1  jonathan 
    994       1.1  jonathan 	if (krp->krp_status != 0)
    995       1.1  jonathan 		cryptostats.cs_kerrs++;
    996       1.1  jonathan 	/*
    997       1.1  jonathan 	 * The return queue is manipulated by the swi thread
    998       1.1  jonathan 	 * and, potentially, by crypto device drivers calling
    999       1.1  jonathan 	 * back to mark operations completed.  Thus we need
   1000       1.1  jonathan 	 * to mask both while manipulating the return queue.
   1001       1.1  jonathan 	 */
   1002       1.1  jonathan 	s = splcrypto();
   1003       1.1  jonathan 	wasempty = TAILQ_EMPTY(&crp_ret_kq);
   1004       1.1  jonathan 	TAILQ_INSERT_TAIL(&crp_ret_kq, krp, krp_next);
   1005       1.1  jonathan 	if (wasempty)
   1006       1.1  jonathan 		wakeup_one(&crp_ret_q);
   1007       1.1  jonathan 	splx(s);
   1008       1.1  jonathan }
   1009       1.1  jonathan 
   1010       1.1  jonathan int
   1011       1.1  jonathan crypto_getfeat(int *featp)
   1012       1.1  jonathan {
   1013       1.1  jonathan 	int hid, kalg, feat = 0;
   1014       1.1  jonathan 	int s;
   1015       1.1  jonathan 
   1016       1.1  jonathan 	s = splcrypto();
   1017       1.1  jonathan 
   1018       1.1  jonathan 	if (crypto_userasymcrypto == 0)
   1019      1.10     perry 		goto out;
   1020       1.1  jonathan 
   1021       1.1  jonathan 	for (hid = 0; hid < crypto_drivers_num; hid++) {
   1022       1.1  jonathan 		if ((crypto_drivers[hid].cc_flags & CRYPTOCAP_F_SOFTWARE) &&
   1023       1.7  jonathan 		    crypto_devallowsoft == 0) {
   1024       1.1  jonathan 			continue;
   1025       1.1  jonathan 		}
   1026       1.1  jonathan 		if (crypto_drivers[hid].cc_kprocess == NULL)
   1027       1.1  jonathan 			continue;
   1028       1.1  jonathan 		for (kalg = 0; kalg < CRK_ALGORITHM_MAX; kalg++)
   1029       1.1  jonathan 			if ((crypto_drivers[hid].cc_kalg[kalg] &
   1030       1.1  jonathan 			    CRYPTO_ALG_FLAG_SUPPORTED) != 0)
   1031       1.1  jonathan 				feat |=  1 << kalg;
   1032       1.1  jonathan 	}
   1033       1.1  jonathan out:
   1034       1.1  jonathan 	splx(s);
   1035       1.1  jonathan 	*featp = feat;
   1036       1.1  jonathan 	return (0);
   1037       1.1  jonathan }
   1038       1.1  jonathan 
   1039       1.1  jonathan /*
   1040       1.1  jonathan  * Software interrupt thread to dispatch crypto requests.
   1041       1.1  jonathan  */
   1042       1.1  jonathan static void
   1043       1.1  jonathan cryptointr(void)
   1044       1.1  jonathan {
   1045       1.1  jonathan 	struct cryptop *crp, *submit;
   1046       1.1  jonathan 	struct cryptkop *krp;
   1047       1.1  jonathan 	struct cryptocap *cap;
   1048       1.1  jonathan 	int result, hint, s;
   1049       1.1  jonathan 
   1050       1.1  jonathan 	printf("crypto softint\n");
   1051       1.1  jonathan 	cryptostats.cs_intrs++;
   1052       1.1  jonathan 	s = splcrypto();
   1053       1.1  jonathan 	do {
   1054       1.1  jonathan 		/*
   1055       1.1  jonathan 		 * Find the first element in the queue that can be
   1056       1.1  jonathan 		 * processed and look-ahead to see if multiple ops
   1057       1.1  jonathan 		 * are ready for the same driver.
   1058       1.1  jonathan 		 */
   1059       1.1  jonathan 		submit = NULL;
   1060       1.1  jonathan 		hint = 0;
   1061       1.1  jonathan 		TAILQ_FOREACH(crp, &crp_q, crp_next) {
   1062       1.1  jonathan 			u_int32_t hid = SESID2HID(crp->crp_sid);
   1063       1.1  jonathan 			cap = crypto_checkdriver(hid);
   1064       1.1  jonathan 			if (cap == NULL || cap->cc_process == NULL) {
   1065       1.1  jonathan 				/* Op needs to be migrated, process it. */
   1066       1.1  jonathan 				if (submit == NULL)
   1067       1.1  jonathan 					submit = crp;
   1068       1.1  jonathan 				break;
   1069       1.1  jonathan 			}
   1070       1.1  jonathan 			if (!cap->cc_qblocked) {
   1071       1.1  jonathan 				if (submit != NULL) {
   1072       1.1  jonathan 					/*
   1073       1.1  jonathan 					 * We stop on finding another op,
   1074       1.1  jonathan 					 * regardless whether its for the same
   1075       1.1  jonathan 					 * driver or not.  We could keep
   1076       1.1  jonathan 					 * searching the queue but it might be
   1077       1.1  jonathan 					 * better to just use a per-driver
   1078       1.1  jonathan 					 * queue instead.
   1079       1.1  jonathan 					 */
   1080       1.1  jonathan 					if (SESID2HID(submit->crp_sid) == hid)
   1081       1.1  jonathan 						hint = CRYPTO_HINT_MORE;
   1082       1.1  jonathan 					break;
   1083       1.1  jonathan 				} else {
   1084       1.1  jonathan 					submit = crp;
   1085       1.1  jonathan 					if ((submit->crp_flags & CRYPTO_F_BATCH) == 0)
   1086       1.1  jonathan 						break;
   1087       1.1  jonathan 					/* keep scanning for more are q'd */
   1088       1.1  jonathan 				}
   1089       1.1  jonathan 			}
   1090       1.1  jonathan 		}
   1091       1.1  jonathan 		if (submit != NULL) {
   1092       1.1  jonathan 			TAILQ_REMOVE(&crp_q, submit, crp_next);
   1093       1.1  jonathan 			result = crypto_invoke(submit, hint);
   1094       1.1  jonathan 			if (result == ERESTART) {
   1095       1.1  jonathan 				/*
   1096       1.1  jonathan 				 * The driver ran out of resources, mark the
   1097       1.1  jonathan 				 * driver ``blocked'' for cryptop's and put
   1098       1.1  jonathan 				 * the request back in the queue.  It would
   1099       1.1  jonathan 				 * best to put the request back where we got
   1100       1.1  jonathan 				 * it but that's hard so for now we put it
   1101       1.1  jonathan 				 * at the front.  This should be ok; putting
   1102       1.1  jonathan 				 * it at the end does not work.
   1103       1.1  jonathan 				 */
   1104       1.1  jonathan 				/* XXX validate sid again? */
   1105       1.1  jonathan 				crypto_drivers[SESID2HID(submit->crp_sid)].cc_qblocked = 1;
   1106       1.1  jonathan 				TAILQ_INSERT_HEAD(&crp_q, submit, crp_next);
   1107       1.1  jonathan 				cryptostats.cs_blocks++;
   1108       1.1  jonathan 			}
   1109       1.1  jonathan 		}
   1110       1.1  jonathan 
   1111       1.1  jonathan 		/* As above, but for key ops */
   1112       1.1  jonathan 		TAILQ_FOREACH(krp, &crp_kq, krp_next) {
   1113       1.1  jonathan 			cap = crypto_checkdriver(krp->krp_hid);
   1114       1.1  jonathan 			if (cap == NULL || cap->cc_kprocess == NULL) {
   1115       1.1  jonathan 				/* Op needs to be migrated, process it. */
   1116       1.1  jonathan 				break;
   1117       1.1  jonathan 			}
   1118       1.1  jonathan 			if (!cap->cc_kqblocked)
   1119       1.1  jonathan 				break;
   1120       1.1  jonathan 		}
   1121       1.1  jonathan 		if (krp != NULL) {
   1122       1.1  jonathan 			TAILQ_REMOVE(&crp_kq, krp, krp_next);
   1123       1.1  jonathan 			result = crypto_kinvoke(krp, 0);
   1124       1.1  jonathan 			if (result == ERESTART) {
   1125       1.1  jonathan 				/*
   1126       1.1  jonathan 				 * The driver ran out of resources, mark the
   1127       1.1  jonathan 				 * driver ``blocked'' for cryptkop's and put
   1128       1.1  jonathan 				 * the request back in the queue.  It would
   1129       1.1  jonathan 				 * best to put the request back where we got
   1130       1.1  jonathan 				 * it but that's hard so for now we put it
   1131       1.1  jonathan 				 * at the front.  This should be ok; putting
   1132       1.1  jonathan 				 * it at the end does not work.
   1133       1.1  jonathan 				 */
   1134       1.1  jonathan 				/* XXX validate sid again? */
   1135       1.1  jonathan 				crypto_drivers[krp->krp_hid].cc_kqblocked = 1;
   1136       1.1  jonathan 				TAILQ_INSERT_HEAD(&crp_kq, krp, krp_next);
   1137       1.1  jonathan 				cryptostats.cs_kblocks++;
   1138       1.1  jonathan 			}
   1139       1.1  jonathan 		}
   1140       1.1  jonathan 	} while (submit != NULL || krp != NULL);
   1141       1.1  jonathan 	splx(s);
   1142       1.1  jonathan }
   1143       1.1  jonathan 
   1144       1.1  jonathan /*
   1145       1.1  jonathan  * Kernel thread to do callbacks.
   1146       1.1  jonathan  */
   1147       1.1  jonathan static void
   1148       1.1  jonathan cryptoret(void)
   1149       1.1  jonathan {
   1150       1.1  jonathan 	struct cryptop *crp;
   1151       1.1  jonathan 	struct cryptkop *krp;
   1152       1.1  jonathan 	int s;
   1153       1.1  jonathan 
   1154       1.1  jonathan 	s = splcrypto();
   1155       1.1  jonathan 	for (;;) {
   1156       1.1  jonathan 		crp = TAILQ_FIRST(&crp_ret_q);
   1157       1.1  jonathan 		if (crp != NULL)
   1158       1.1  jonathan 			TAILQ_REMOVE(&crp_ret_q, crp, crp_next);
   1159       1.1  jonathan 		krp = TAILQ_FIRST(&crp_ret_kq);
   1160       1.1  jonathan 		if (krp != NULL)
   1161       1.1  jonathan 			TAILQ_REMOVE(&crp_ret_kq, krp, krp_next);
   1162       1.1  jonathan 
   1163       1.1  jonathan 		if (crp != NULL || krp != NULL) {
   1164       1.1  jonathan 			splx(s);		/* lower ipl for callbacks */
   1165       1.1  jonathan 			if (crp != NULL) {
   1166       1.1  jonathan #ifdef CRYPTO_TIMING
   1167       1.1  jonathan 				if (crypto_timing) {
   1168       1.1  jonathan 					/*
   1169       1.1  jonathan 					 * NB: We must copy the timestamp before
   1170       1.1  jonathan 					 * doing the callback as the cryptop is
   1171       1.1  jonathan 					 * likely to be reclaimed.
   1172       1.1  jonathan 					 */
   1173       1.1  jonathan 					struct timespec t = crp->crp_tstamp;
   1174       1.1  jonathan 					crypto_tstat(&cryptostats.cs_cb, &t);
   1175       1.1  jonathan 					crp->crp_callback(crp);
   1176       1.1  jonathan 					crypto_tstat(&cryptostats.cs_finis, &t);
   1177       1.1  jonathan 				} else
   1178       1.1  jonathan #endif
   1179       1.1  jonathan 					crp->crp_callback(crp);
   1180       1.1  jonathan 			}
   1181       1.1  jonathan 			if (krp != NULL)
   1182       1.1  jonathan 				krp->krp_callback(krp);
   1183       1.1  jonathan 			s  = splcrypto();
   1184       1.1  jonathan 		} else {
   1185       1.1  jonathan 			(void) tsleep(&crp_ret_q, PLOCK, "crypto_wait", 0);
   1186       1.1  jonathan 			cryptostats.cs_rets++;
   1187       1.1  jonathan 		}
   1188       1.1  jonathan 	}
   1189       1.1  jonathan }
   1190       1.1  jonathan 
   1191       1.1  jonathan static void
   1193       1.1  jonathan deferred_crypto_thread(void *arg)
   1194       1.1  jonathan {
   1195       1.1  jonathan 	int error;
   1196       1.1  jonathan 
   1197       1.1  jonathan 	error = kthread_create1((void (*)(void*)) cryptoret, NULL,
   1198       1.1  jonathan 				&cryptoproc, "cryptoret");
   1199       1.8  jonathan 	if (error) {
   1200       1.8  jonathan 		printf("crypto_init: cannot start cryptoret thread; error %d",
   1201       1.8  jonathan 		    error);
   1202       1.1  jonathan 		crypto_destroy();
   1203       1.1  jonathan 	}
   1204       1.1  jonathan }
   1205       1.1  jonathan 
   1206       1.1  jonathan #ifdef __FreeBSD__
   1207       1.1  jonathan /*
   1208       1.1  jonathan  * Initialization code, both for static and dynamic loading.
   1209       1.1  jonathan  */
   1210       1.1  jonathan static int
   1211       1.1  jonathan crypto_modevent(module_t mod, int type, void *unused)
   1212       1.1  jonathan {
   1213       1.1  jonathan 	int error = EINVAL;
   1214       1.1  jonathan 
   1215       1.1  jonathan 	switch (type) {
   1216       1.1  jonathan 	case MOD_LOAD:
   1217       1.1  jonathan 		error = crypto_init();
   1218       1.1  jonathan 		if (error == 0 && bootverbose)
   1219       1.1  jonathan 			printf("crypto: <crypto core>\n");
   1220       1.1  jonathan 		break;
   1221       1.1  jonathan 	case MOD_UNLOAD:
   1222       1.1  jonathan 		/*XXX disallow if active sessions */
   1223       1.1  jonathan 		error = 0;
   1224       1.1  jonathan 		crypto_destroy();
   1225       1.1  jonathan 		break;
   1226       1.1  jonathan 	}
   1227       1.1  jonathan 	return error;
   1228       1.1  jonathan }
   1229       1.1  jonathan static moduledata_t crypto_mod = {
   1230       1.1  jonathan 	"crypto",
   1231       1.1  jonathan 	crypto_modevent,
   1232       1.1  jonathan 	0
   1233       1.1  jonathan };
   1234       1.1  jonathan 
   1235       1.1  jonathan MODULE_VERSION(crypto, 1);
   1236       1.4       lha DECLARE_MODULE(crypto, crypto_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
   1237       1.1  jonathan #endif /* __FreeBSD__ */
   1238       1.1  jonathan 
   1239                     
   1240