crypto.c revision 108990
13455Sache/*	$FreeBSD: head/sys/opencrypto/crypto.c 108990 2003-01-09 05:39:04Z sam $	*/
24898Sache/*	$OpenBSD: crypto.c,v 1.38 2002/06/11 11:14:29 beck Exp $	*/
33455Sache/*
43410Sache * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
54898Sache *
63410Sache * This code was written by Angelos D. Keromytis in Athens, Greece, in
73410Sache * February 2000. Network Security Technologies Inc. (NSTI) kindly
83410Sache * supported the development of this code.
93410Sache *
103410Sache * Copyright (c) 2000, 2001 Angelos D. Keromytis
114860Sache *
124860Sache * Permission to use, copy, and modify this software with or without fee
133410Sache * is hereby granted, provided that this entire notice is included in
143455Sache * all source code copies of any software which is or includes a copy or
153410Sache * modification of this software.
164898Sache *
173526Sache * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
183410Sache * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
193523Sache * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
203523Sache * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
213523Sache * PURPOSE.
223523Sache */
233410Sache#define	CRYPTO_TIMING				/* enable timing support */
244898Sache
253523Sache#include <sys/param.h>
263523Sache#include <sys/systm.h>
273523Sache#include <sys/eventhandler.h>
284898Sache#include <sys/kernel.h>
294898Sache#include <sys/kthread.h>
304898Sache#include <sys/lock.h>
313410Sache#include <sys/mutex.h>
323523Sache#include <sys/malloc.h>
333523Sache#include <sys/proc.h>
343410Sache#include <sys/sysctl.h>
353410Sache
363523Sache#include <vm/uma.h>
373410Sache#include <opencrypto/cryptodev.h>
383523Sache#include <opencrypto/xform.h>			/* XXX for M_XDATA */
393410Sache
403410Sache#define	SESID2HID(sid)	(((sid) >> 32) & 0xffffffff)
413410Sache
423410Sache/*
433410Sache * Crypto drivers register themselves by allocating a slot in the
443410Sache * crypto_drivers table with crypto_get_driverid() and then registering
453410Sache * each algorithm they support with crypto_register() and crypto_kregister().
463410Sache */
473410Sachestatic	struct mtx crypto_drivers_mtx;		/* lock on driver table */
483410Sache#define	CRYPTO_DRIVER_LOCK()	mtx_lock(&crypto_drivers_mtx)
493410Sache#define	CRYPTO_DRIVER_UNLOCK()	mtx_unlock(&crypto_drivers_mtx)
503410Sachestatic	struct cryptocap *crypto_drivers = NULL;
513410Sachestatic	int crypto_drivers_num = 0;
523410Sache
533410Sache/*
543410Sache * There are two queues for crypto requests; one for symmetric (e.g.
553410Sache * cipher) operations and one for asymmetric (e.g. MOD)operations.
563410Sache * A single mutex is used to lock access to both queues.  We could
573410Sache * have one per-queue but having one simplifies handling of block/unblock
583410Sache * operations.
593410Sache */
603410Sachestatic	TAILQ_HEAD(,cryptop) crp_q;		/* request queues */
613410Sachestatic	TAILQ_HEAD(,cryptkop) crp_kq;
623410Sachestatic	struct mtx crypto_q_mtx;
633410Sache#define	CRYPTO_Q_LOCK()		mtx_lock(&crypto_q_mtx)
643410Sache#define	CRYPTO_Q_UNLOCK()	mtx_unlock(&crypto_q_mtx)
653410Sache
663410Sache/*
673410Sache * There are two queues for processing completed crypto requests; one
683410Sache * for the symmetric and one for the asymmetric ops.  We only need one
693410Sache * but have two to avoid type futzing (cryptop vs. cryptkop).  A single
703410Sache * mutex is used to lock access to both queues.  Note that this lock
713410Sache * must be separate from the lock on request queues to insure driver
723410Sache * callbacks don't generate lock order reversals.
733410Sache */
743410Sachestatic	TAILQ_HEAD(,cryptop) crp_ret_q;		/* callback queues */
753410Sachestatic	TAILQ_HEAD(,cryptkop) crp_ret_kq;
763410Sachestatic	struct mtx crypto_ret_q_mtx;
773410Sache#define	CRYPTO_RETQ_LOCK()	mtx_lock(&crypto_ret_q_mtx)
783410Sache#define	CRYPTO_RETQ_UNLOCK()	mtx_unlock(&crypto_ret_q_mtx)
793410Sache
803410Sachestatic	uma_zone_t cryptop_zone;
813410Sachestatic	uma_zone_t cryptodesc_zone;
82
83int	crypto_userasymcrypto = 1;	/* userland may do asym crypto reqs */
84SYSCTL_INT(_kern, OID_AUTO, userasymcrypto, CTLFLAG_RW,
85	   &crypto_userasymcrypto, 0,
86	   "Enable/disable user-mode access to asymmetric crypto support");
87int	crypto_devallowsoft = 0;	/* only use hardware crypto for asym */
88SYSCTL_INT(_kern, OID_AUTO, cryptodevallowsoft, CTLFLAG_RW,
89	   &crypto_devallowsoft, 0,
90	   "Enable/disable use of software asym crypto support");
91
92MALLOC_DEFINE(M_CRYPTO_DATA, "crypto", "crypto session records");
93
94static	void crypto_proc(void);
95static	struct proc *cryptoproc;
96static	void crypto_ret_proc(void);
97static	struct proc *cryptoretproc;
98static	void crypto_destroy(void);
99static	int crypto_invoke(struct cryptop *crp, int hint);
100static	int crypto_kinvoke(struct cryptkop *krp, int hint);
101
102static	struct cryptostats cryptostats;
103SYSCTL_STRUCT(_kern, OID_AUTO, crypto_stats, CTLFLAG_RW, &cryptostats,
104	    cryptostats, "Crypto system statistics");
105
106#ifdef CRYPTO_TIMING
107static	int crypto_timing = 0;
108SYSCTL_INT(_debug, OID_AUTO, crypto_timing, CTLFLAG_RW,
109	   &crypto_timing, 0, "Enable/disable crypto timing support");
110#endif
111
112static int
113crypto_init(void)
114{
115	int error;
116
117	mtx_init(&crypto_drivers_mtx, "crypto driver table",
118		NULL, MTX_DEF|MTX_QUIET);
119
120	TAILQ_INIT(&crp_q);
121	TAILQ_INIT(&crp_kq);
122	mtx_init(&crypto_q_mtx, "crypto op queues", NULL, MTX_DEF);
123
124	TAILQ_INIT(&crp_ret_q);
125	TAILQ_INIT(&crp_ret_kq);
126	mtx_init(&crypto_ret_q_mtx, "crypto return queues", NULL, MTX_DEF);
127
128	cryptop_zone = uma_zcreate("cryptop", sizeof (struct cryptop),
129				    0, 0, 0, 0,
130				    UMA_ALIGN_PTR, UMA_ZONE_ZINIT);
131	cryptodesc_zone = uma_zcreate("cryptodesc", sizeof (struct cryptodesc),
132				    0, 0, 0, 0,
133				    UMA_ALIGN_PTR, UMA_ZONE_ZINIT);
134	if (cryptodesc_zone == NULL || cryptop_zone == NULL) {
135		printf("crypto_init: cannot setup crypto zones\n");
136		error = ENOMEM;
137		goto bad;
138	}
139
140	crypto_drivers_num = CRYPTO_DRIVERS_INITIAL;
141	crypto_drivers = malloc(crypto_drivers_num *
142	    sizeof(struct cryptocap), M_CRYPTO_DATA, M_NOWAIT | M_ZERO);
143	if (crypto_drivers == NULL) {
144		printf("crypto_init: cannot setup crypto drivers\n");
145		error = ENOMEM;
146		goto bad;
147	}
148
149	error = kthread_create((void (*)(void *)) crypto_proc, NULL,
150		    &cryptoproc, 0, 0, "crypto");
151	if (error) {
152		printf("crypto_init: cannot start crypto thread; error %d",
153			error);
154		goto bad;
155	}
156
157	error = kthread_create((void (*)(void *)) crypto_ret_proc, NULL,
158		    &cryptoretproc, 0, 0, "crypto returns");
159	if (error) {
160		printf("crypto_init: cannot start cryptoret thread; error %d",
161			error);
162		goto bad;
163	}
164	return 0;
165bad:
166	crypto_destroy();
167	return error;
168}
169
170/*
171 * Signal a crypto thread to terminate.  We use the driver
172 * table lock to synchronize the sleep/wakeups so that we
173 * are sure the threads have terminated before we release
174 * the data structures they use.  See crypto_finis below
175 * for the other half of this song-and-dance.
176 */
177static void
178crypto_terminate(struct proc **pp, void *q)
179{
180	struct proc *p;
181
182	mtx_assert(&crypto_drivers_mtx, MA_OWNED);
183	p = *pp;
184	*pp = NULL;
185	if (p) {
186		wakeup_one(q);
187		PROC_LOCK(p);		/* NB: insure we don't miss wakeup */
188		CRYPTO_DRIVER_UNLOCK();	/* let crypto_finis progress */
189		msleep(p, &p->p_mtx, PWAIT, "crypto_destroy", 0);
190		PROC_UNLOCK(p);
191		CRYPTO_DRIVER_LOCK();
192	}
193}
194
195static void
196crypto_destroy(void)
197{
198	/*
199	 * Terminate any crypto threads.
200	 */
201	CRYPTO_DRIVER_LOCK();
202	crypto_terminate(&cryptoproc, &crp_q);
203	crypto_terminate(&cryptoretproc, &crp_ret_q);
204	CRYPTO_DRIVER_UNLOCK();
205
206	/* XXX flush queues??? */
207
208	/*
209	 * Reclaim dynamically allocated resources.
210	 */
211	if (crypto_drivers != NULL)
212		free(crypto_drivers, M_CRYPTO_DATA);
213
214	if (cryptodesc_zone != NULL)
215		uma_zdestroy(cryptodesc_zone);
216	if (cryptop_zone != NULL)
217		uma_zdestroy(cryptop_zone);
218	mtx_destroy(&crypto_q_mtx);
219	mtx_destroy(&crypto_ret_q_mtx);
220	mtx_destroy(&crypto_drivers_mtx);
221}
222
223/*
224 * Initialization code, both for static and dynamic loading.
225 */
226static int
227crypto_modevent(module_t mod, int type, void *unused)
228{
229	int error = EINVAL;
230
231	switch (type) {
232	case MOD_LOAD:
233		error = crypto_init();
234		if (error == 0 && bootverbose)
235			printf("crypto: <crypto core>\n");
236		break;
237	case MOD_UNLOAD:
238		/*XXX disallow if active sessions */
239		error = 0;
240		crypto_destroy();
241		return 0;
242	}
243	return error;
244}
245
246static moduledata_t crypto_mod = {
247	"crypto",
248	crypto_modevent,
249	0
250};
251MODULE_VERSION(crypto, 1);
252DECLARE_MODULE(crypto, crypto_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
253
254/*
255 * Create a new session.
256 */
257int
258crypto_newsession(u_int64_t *sid, struct cryptoini *cri, int hard)
259{
260	struct cryptoini *cr;
261	u_int32_t hid, lid;
262	int err = EINVAL;
263
264	CRYPTO_DRIVER_LOCK();
265
266	if (crypto_drivers == NULL)
267		goto done;
268
269	/*
270	 * The algorithm we use here is pretty stupid; just use the
271	 * first driver that supports all the algorithms we need.
272	 *
273	 * XXX We need more smarts here (in real life too, but that's
274	 * XXX another story altogether).
275	 */
276
277	for (hid = 0; hid < crypto_drivers_num; hid++) {
278		/*
279		 * If it's not initialized or has remaining sessions
280		 * referencing it, skip.
281		 */
282		if (crypto_drivers[hid].cc_newsession == NULL ||
283		    (crypto_drivers[hid].cc_flags & CRYPTOCAP_F_CLEANUP))
284			continue;
285
286		/* Hardware required -- ignore software drivers. */
287		if (hard > 0 &&
288		    (crypto_drivers[hid].cc_flags & CRYPTOCAP_F_SOFTWARE))
289			continue;
290		/* Software required -- ignore hardware drivers. */
291		if (hard < 0 &&
292		    (crypto_drivers[hid].cc_flags & CRYPTOCAP_F_SOFTWARE) == 0)
293			continue;
294
295		/* See if all the algorithms are supported. */
296		for (cr = cri; cr; cr = cr->cri_next)
297			if (crypto_drivers[hid].cc_alg[cr->cri_alg] == 0)
298				break;
299
300		if (cr == NULL) {
301			/* Ok, all algorithms are supported. */
302
303			/*
304			 * Can't do everything in one session.
305			 *
306			 * XXX Fix this. We need to inject a "virtual" session layer right
307			 * XXX about here.
308			 */
309
310			/* Call the driver initialization routine. */
311			lid = hid;		/* Pass the driver ID. */
312			err = crypto_drivers[hid].cc_newsession(
313					crypto_drivers[hid].cc_arg, &lid, cri);
314			if (err == 0) {
315				(*sid) = hid;
316				(*sid) <<= 32;
317				(*sid) |= (lid & 0xffffffff);
318				crypto_drivers[hid].cc_sessions++;
319			}
320			break;
321		}
322	}
323done:
324	CRYPTO_DRIVER_UNLOCK();
325	return err;
326}
327
328/*
329 * Delete an existing session (or a reserved session on an unregistered
330 * driver).
331 */
332int
333crypto_freesession(u_int64_t sid)
334{
335	u_int32_t hid;
336	int err;
337
338	CRYPTO_DRIVER_LOCK();
339
340	if (crypto_drivers == NULL) {
341		err = EINVAL;
342		goto done;
343	}
344
345	/* Determine two IDs. */
346	hid = SESID2HID(sid);
347
348	if (hid >= crypto_drivers_num) {
349		err = ENOENT;
350		goto done;
351	}
352
353	if (crypto_drivers[hid].cc_sessions)
354		crypto_drivers[hid].cc_sessions--;
355
356	/* Call the driver cleanup routine, if available. */
357	if (crypto_drivers[hid].cc_freesession)
358		err = crypto_drivers[hid].cc_freesession(
359				crypto_drivers[hid].cc_arg, sid);
360	else
361		err = 0;
362
363	/*
364	 * If this was the last session of a driver marked as invalid,
365	 * make the entry available for reuse.
366	 */
367	if ((crypto_drivers[hid].cc_flags & CRYPTOCAP_F_CLEANUP) &&
368	    crypto_drivers[hid].cc_sessions == 0)
369		bzero(&crypto_drivers[hid], sizeof(struct cryptocap));
370
371done:
372	CRYPTO_DRIVER_UNLOCK();
373	return err;
374}
375
376/*
377 * Return an unused driver id.  Used by drivers prior to registering
378 * support for the algorithms they handle.
379 */
380int32_t
381crypto_get_driverid(u_int32_t flags)
382{
383	struct cryptocap *newdrv;
384	int i;
385
386	CRYPTO_DRIVER_LOCK();
387
388	for (i = 0; i < crypto_drivers_num; i++)
389		if (crypto_drivers[i].cc_process == NULL &&
390		    (crypto_drivers[i].cc_flags & CRYPTOCAP_F_CLEANUP) == 0 &&
391		    crypto_drivers[i].cc_sessions == 0)
392			break;
393
394	/* Out of entries, allocate some more. */
395	if (i == crypto_drivers_num) {
396		/* Be careful about wrap-around. */
397		if (2 * crypto_drivers_num <= crypto_drivers_num) {
398			CRYPTO_DRIVER_UNLOCK();
399			printf("crypto: driver count wraparound!\n");
400			return -1;
401		}
402
403		newdrv = malloc(2 * crypto_drivers_num *
404		    sizeof(struct cryptocap), M_CRYPTO_DATA, M_NOWAIT|M_ZERO);
405		if (newdrv == NULL) {
406			CRYPTO_DRIVER_UNLOCK();
407			printf("crypto: no space to expand driver table!\n");
408			return -1;
409		}
410
411		bcopy(crypto_drivers, newdrv,
412		    crypto_drivers_num * sizeof(struct cryptocap));
413
414		crypto_drivers_num *= 2;
415
416		free(crypto_drivers, M_CRYPTO_DATA);
417		crypto_drivers = newdrv;
418	}
419
420	/* NB: state is zero'd on free */
421	crypto_drivers[i].cc_sessions = 1;	/* Mark */
422	crypto_drivers[i].cc_flags = flags;
423	if (bootverbose)
424		printf("crypto: assign driver %u, flags %u\n", i, flags);
425
426	CRYPTO_DRIVER_UNLOCK();
427
428	return i;
429}
430
431static struct cryptocap *
432crypto_checkdriver(u_int32_t hid)
433{
434	if (crypto_drivers == NULL)
435		return NULL;
436	return (hid >= crypto_drivers_num ? NULL : &crypto_drivers[hid]);
437}
438
439/*
440 * Register support for a key-related algorithm.  This routine
441 * is called once for each algorithm supported a driver.
442 */
443int
444crypto_kregister(u_int32_t driverid, int kalg, u_int32_t flags,
445    int (*kprocess)(void*, struct cryptkop *, int),
446    void *karg)
447{
448	struct cryptocap *cap;
449	int err;
450
451	CRYPTO_DRIVER_LOCK();
452
453	cap = crypto_checkdriver(driverid);
454	if (cap != NULL &&
455	    (CRK_ALGORITM_MIN <= kalg && kalg <= CRK_ALGORITHM_MAX)) {
456		/*
457		 * XXX Do some performance testing to determine placing.
458		 * XXX We probably need an auxiliary data structure that
459		 * XXX describes relative performances.
460		 */
461
462		cap->cc_kalg[kalg] = flags | CRYPTO_ALG_FLAG_SUPPORTED;
463		if (bootverbose)
464			printf("crypto: driver %u registers key alg %u flags %u\n"
465				, driverid
466				, kalg
467				, flags
468			);
469
470		if (cap->cc_kprocess == NULL) {
471			cap->cc_karg = karg;
472			cap->cc_kprocess = kprocess;
473		}
474		err = 0;
475	} else
476		err = EINVAL;
477
478	CRYPTO_DRIVER_UNLOCK();
479	return err;
480}
481
482/*
483 * Register support for a non-key-related algorithm.  This routine
484 * is called once for each such algorithm supported by a driver.
485 */
486int
487crypto_register(u_int32_t driverid, int alg, u_int16_t maxoplen,
488    u_int32_t flags,
489    int (*newses)(void*, u_int32_t*, struct cryptoini*),
490    int (*freeses)(void*, u_int64_t),
491    int (*process)(void*, struct cryptop *, int),
492    void *arg)
493{
494	struct cryptocap *cap;
495	int err;
496
497	CRYPTO_DRIVER_LOCK();
498
499	cap = crypto_checkdriver(driverid);
500	/* NB: algorithms are in the range [1..max] */
501	if (cap != NULL &&
502	    (CRYPTO_ALGORITHM_MIN <= alg && alg <= CRYPTO_ALGORITHM_MAX)) {
503		/*
504		 * XXX Do some performance testing to determine placing.
505		 * XXX We probably need an auxiliary data structure that
506		 * XXX describes relative performances.
507		 */
508
509		cap->cc_alg[alg] = flags | CRYPTO_ALG_FLAG_SUPPORTED;
510		cap->cc_max_op_len[alg] = maxoplen;
511		if (bootverbose)
512			printf("crypto: driver %u registers alg %u flags %u maxoplen %u\n"
513				, driverid
514				, alg
515				, flags
516				, maxoplen
517			);
518
519		if (cap->cc_process == NULL) {
520			cap->cc_arg = arg;
521			cap->cc_newsession = newses;
522			cap->cc_process = process;
523			cap->cc_freesession = freeses;
524			cap->cc_sessions = 0;		/* Unmark */
525		}
526		err = 0;
527	} else
528		err = EINVAL;
529
530	CRYPTO_DRIVER_UNLOCK();
531	return err;
532}
533
534/*
535 * Unregister a crypto driver. If there are pending sessions using it,
536 * leave enough information around so that subsequent calls using those
537 * sessions will correctly detect the driver has been unregistered and
538 * reroute requests.
539 */
540int
541crypto_unregister(u_int32_t driverid, int alg)
542{
543	int i, err;
544	u_int32_t ses;
545	struct cryptocap *cap;
546
547	CRYPTO_DRIVER_LOCK();
548
549	cap = crypto_checkdriver(driverid);
550	if (cap != NULL &&
551	    (CRYPTO_ALGORITHM_MIN <= alg && alg <= CRYPTO_ALGORITHM_MAX) &&
552	    cap->cc_alg[alg] != 0) {
553		cap->cc_alg[alg] = 0;
554		cap->cc_max_op_len[alg] = 0;
555
556		/* Was this the last algorithm ? */
557		for (i = 1; i <= CRYPTO_ALGORITHM_MAX; i++)
558			if (cap->cc_alg[i] != 0)
559				break;
560
561		if (i == CRYPTO_ALGORITHM_MAX + 1) {
562			ses = cap->cc_sessions;
563			bzero(cap, sizeof(struct cryptocap));
564			if (ses != 0) {
565				/*
566				 * If there are pending sessions, just mark as invalid.
567				 */
568				cap->cc_flags |= CRYPTOCAP_F_CLEANUP;
569				cap->cc_sessions = ses;
570			}
571		}
572		err = 0;
573	} else
574		err = EINVAL;
575
576	CRYPTO_DRIVER_UNLOCK();
577	return err;
578}
579
580/*
581 * Unregister all algorithms associated with a crypto driver.
582 * If there are pending sessions using it, leave enough information
583 * around so that subsequent calls using those sessions will
584 * correctly detect the driver has been unregistered and reroute
585 * requests.
586 */
587int
588crypto_unregister_all(u_int32_t driverid)
589{
590	int i, err;
591	u_int32_t ses;
592	struct cryptocap *cap;
593
594	CRYPTO_DRIVER_LOCK();
595
596	cap = crypto_checkdriver(driverid);
597	if (cap != NULL) {
598		for (i = CRYPTO_ALGORITHM_MIN; i <= CRYPTO_ALGORITHM_MAX; i++) {
599			cap->cc_alg[i] = 0;
600			cap->cc_max_op_len[i] = 0;
601		}
602		ses = cap->cc_sessions;
603		bzero(cap, sizeof(struct cryptocap));
604		if (ses != 0) {
605			/*
606			 * If there are pending sessions, just mark as invalid.
607			 */
608			cap->cc_flags |= CRYPTOCAP_F_CLEANUP;
609			cap->cc_sessions = ses;
610		}
611		err = 0;
612	} else
613		err = EINVAL;
614
615	CRYPTO_DRIVER_UNLOCK();
616	return err;
617}
618
619/*
620 * Clear blockage on a driver.  The what parameter indicates whether
621 * the driver is now ready for cryptop's and/or cryptokop's.
622 */
623int
624crypto_unblock(u_int32_t driverid, int what)
625{
626	struct cryptocap *cap;
627	int needwakeup, err;
628
629	CRYPTO_Q_LOCK();
630	cap = crypto_checkdriver(driverid);
631	if (cap != NULL) {
632		needwakeup = 0;
633		if (what & CRYPTO_SYMQ) {
634			needwakeup |= cap->cc_qblocked;
635			cap->cc_qblocked = 0;
636		}
637		if (what & CRYPTO_ASYMQ) {
638			needwakeup |= cap->cc_kqblocked;
639			cap->cc_kqblocked = 0;
640		}
641		if (needwakeup)
642			wakeup_one(&crp_q);
643		err = 0;
644	} else
645		err = EINVAL;
646	CRYPTO_Q_UNLOCK();
647
648	return err;
649}
650
651/*
652 * Add a crypto request to a queue, to be processed by the kernel thread.
653 */
654int
655crypto_dispatch(struct cryptop *crp)
656{
657	u_int32_t hid = SESID2HID(crp->crp_sid);
658	struct cryptocap *cap;
659	int result;
660
661	cryptostats.cs_ops++;
662
663#ifdef CRYPTO_TIMING
664	if (crypto_timing)
665		binuptime(&crp->crp_tstamp);
666#endif
667
668	CRYPTO_Q_LOCK();
669	cap = crypto_checkdriver(hid);
670	if (cap && !cap->cc_qblocked) {
671		result = crypto_invoke(crp, 0);
672		if (result == ERESTART) {
673			/*
674			 * The driver ran out of resources, mark the
675			 * driver ``blocked'' for cryptop's and put
676			 * the request on the queue.
677			 */
678			crypto_drivers[hid].cc_qblocked = 1;
679			TAILQ_INSERT_HEAD(&crp_q, crp, crp_next);
680			cryptostats.cs_blocks++;
681		}
682	} else {
683		/*
684		 * The driver is blocked, just queue the op until
685		 * it unblocks and the kernel thread gets kicked.
686		 */
687		TAILQ_INSERT_TAIL(&crp_q, crp, crp_next);
688		result = 0;
689	}
690	CRYPTO_Q_UNLOCK();
691
692	return result;
693}
694
695/*
696 * Add an asymetric crypto request to a queue,
697 * to be processed by the kernel thread.
698 */
699int
700crypto_kdispatch(struct cryptkop *krp)
701{
702	struct cryptocap *cap;
703	int result;
704
705	cryptostats.cs_kops++;
706
707	CRYPTO_Q_LOCK();
708	cap = crypto_checkdriver(krp->krp_hid);
709	if (cap && !cap->cc_kqblocked) {
710		result = crypto_kinvoke(krp, 0);
711		if (result == ERESTART) {
712			/*
713			 * The driver ran out of resources, mark the
714			 * driver ``blocked'' for cryptkop's and put
715			 * the request back in the queue.  It would
716			 * best to put the request back where we got
717			 * it but that's hard so for now we put it
718			 * at the front.  This should be ok; putting
719			 * it at the end does not work.
720			 */
721			crypto_drivers[krp->krp_hid].cc_kqblocked = 1;
722			TAILQ_INSERT_HEAD(&crp_kq, krp, krp_next);
723			cryptostats.cs_kblocks++;
724		}
725	} else {
726		/*
727		 * The driver is blocked, just queue the op until
728		 * it unblocks and the kernel thread gets kicked.
729		 */
730		TAILQ_INSERT_TAIL(&crp_kq, krp, krp_next);
731		result = 0;
732	}
733	CRYPTO_Q_UNLOCK();
734
735	return result;
736}
737
738/*
739 * Dispatch an assymetric crypto request to the appropriate crypto devices.
740 */
741static int
742crypto_kinvoke(struct cryptkop *krp, int hint)
743{
744	u_int32_t hid;
745	int error;
746
747	mtx_assert(&crypto_q_mtx, MA_OWNED);
748
749	/* Sanity checks. */
750	if (krp == NULL)
751		return EINVAL;
752	if (krp->krp_callback == NULL) {
753		free(krp, M_XDATA);		/* XXX allocated in cryptodev */
754		return EINVAL;
755	}
756
757	for (hid = 0; hid < crypto_drivers_num; hid++) {
758		if ((crypto_drivers[hid].cc_flags & CRYPTOCAP_F_SOFTWARE) &&
759		    !crypto_devallowsoft)
760			continue;
761		if (crypto_drivers[hid].cc_kprocess == NULL)
762			continue;
763		if ((crypto_drivers[hid].cc_kalg[krp->krp_op] &
764		    CRYPTO_ALG_FLAG_SUPPORTED) == 0)
765			continue;
766		break;
767	}
768	if (hid < crypto_drivers_num) {
769		krp->krp_hid = hid;
770		error = crypto_drivers[hid].cc_kprocess(
771				crypto_drivers[hid].cc_karg, krp, hint);
772	} else
773		error = ENODEV;
774
775	if (error) {
776		krp->krp_status = error;
777		crypto_kdone(krp);
778	}
779	return 0;
780}
781
782#ifdef CRYPTO_TIMING
783static void
784crypto_tstat(struct cryptotstat *ts, struct bintime *bt)
785{
786	struct bintime now, delta;
787	struct timespec t;
788	uint64_t u;
789
790	binuptime(&now);
791	u = now.frac;
792	delta.frac = now.frac - bt->frac;
793	delta.sec = now.sec - bt->sec;
794	if (u < delta.frac)
795		delta.sec--;
796	bintime2timespec(&delta, &t);
797	timespecadd(&ts->acc, &t);
798	if (timespeccmp(&t, &ts->min, <))
799		ts->min = t;
800	if (timespeccmp(&t, &ts->max, >))
801		ts->max = t;
802	ts->count++;
803
804	*bt = now;
805}
806#endif
807
808/*
809 * Dispatch a crypto request to the appropriate crypto devices.
810 */
811static int
812crypto_invoke(struct cryptop *crp, int hint)
813{
814	u_int32_t hid;
815	int (*process)(void*, struct cryptop *, int);
816
817#ifdef CRYPTO_TIMING
818	if (crypto_timing)
819		crypto_tstat(&cryptostats.cs_invoke, &crp->crp_tstamp);
820#endif
821	mtx_assert(&crypto_q_mtx, MA_OWNED);
822
823	/* Sanity checks. */
824	if (crp == NULL)
825		return EINVAL;
826	if (crp->crp_callback == NULL) {
827		crypto_freereq(crp);
828		return EINVAL;
829	}
830	if (crp->crp_desc == NULL) {
831		crp->crp_etype = EINVAL;
832		crypto_done(crp);
833		return 0;
834	}
835
836	hid = SESID2HID(crp->crp_sid);
837	if (hid < crypto_drivers_num) {
838		if (crypto_drivers[hid].cc_flags & CRYPTOCAP_F_CLEANUP)
839			crypto_freesession(crp->crp_sid);
840		process = crypto_drivers[hid].cc_process;
841	} else {
842		process = NULL;
843	}
844
845	if (process == NULL) {
846		struct cryptodesc *crd;
847		u_int64_t nid;
848
849		/*
850		 * Driver has unregistered; migrate the session and return
851		 * an error to the caller so they'll resubmit the op.
852		 */
853		for (crd = crp->crp_desc; crd->crd_next; crd = crd->crd_next)
854			crd->CRD_INI.cri_next = &(crd->crd_next->CRD_INI);
855
856		if (crypto_newsession(&nid, &(crp->crp_desc->CRD_INI), 0) == 0)
857			crp->crp_sid = nid;
858
859		crp->crp_etype = EAGAIN;
860		crypto_done(crp);
861		return 0;
862	} else {
863		/*
864		 * Invoke the driver to process the request.
865		 */
866		return (*process)(crypto_drivers[hid].cc_arg, crp, hint);
867	}
868}
869
870/*
871 * Release a set of crypto descriptors.
872 */
873void
874crypto_freereq(struct cryptop *crp)
875{
876	struct cryptodesc *crd;
877
878	if (crp == NULL)
879		return;
880
881	while ((crd = crp->crp_desc) != NULL) {
882		crp->crp_desc = crd->crd_next;
883		uma_zfree(cryptodesc_zone, crd);
884	}
885
886	uma_zfree(cryptop_zone, crp);
887}
888
889/*
890 * Acquire a set of crypto descriptors.
891 */
892struct cryptop *
893crypto_getreq(int num)
894{
895	struct cryptodesc *crd;
896	struct cryptop *crp;
897
898	crp = uma_zalloc(cryptop_zone, M_NOWAIT|M_ZERO);
899	if (crp != NULL) {
900		while (num--) {
901			crd = uma_zalloc(cryptodesc_zone, M_NOWAIT|M_ZERO);
902			if (crd == NULL) {
903				crypto_freereq(crp);
904				return NULL;
905			}
906
907			crd->crd_next = crp->crp_desc;
908			crp->crp_desc = crd;
909		}
910	}
911	return crp;
912}
913
914/*
915 * Invoke the callback on behalf of the driver.
916 */
917void
918crypto_done(struct cryptop *crp)
919{
920	int wasempty;
921
922	if (crp->crp_etype != 0)
923		cryptostats.cs_errs++;
924#ifdef CRYPTO_TIMING
925	if (crypto_timing)
926		crypto_tstat(&cryptostats.cs_done, &crp->crp_tstamp);
927#endif
928	CRYPTO_RETQ_LOCK();
929	wasempty = TAILQ_EMPTY(&crp_ret_q);
930	TAILQ_INSERT_TAIL(&crp_ret_q, crp, crp_next);
931
932	if (wasempty)
933		wakeup_one(&crp_ret_q);		/* shared wait channel */
934	CRYPTO_RETQ_UNLOCK();
935}
936
937/*
938 * Invoke the callback on behalf of the driver.
939 */
940void
941crypto_kdone(struct cryptkop *krp)
942{
943	int wasempty;
944
945	if (krp->krp_status != 0)
946		cryptostats.cs_kerrs++;
947	CRYPTO_RETQ_LOCK();
948	wasempty = TAILQ_EMPTY(&crp_ret_kq);
949	TAILQ_INSERT_TAIL(&crp_ret_kq, krp, krp_next);
950
951	if (wasempty)
952		wakeup_one(&crp_ret_q);		/* shared wait channel */
953	CRYPTO_RETQ_UNLOCK();
954}
955
956int
957crypto_getfeat(int *featp)
958{
959	int hid, kalg, feat = 0;
960
961	if (!crypto_userasymcrypto)
962		goto out;
963
964	CRYPTO_DRIVER_LOCK();
965	for (hid = 0; hid < crypto_drivers_num; hid++) {
966		if ((crypto_drivers[hid].cc_flags & CRYPTOCAP_F_SOFTWARE) &&
967		    !crypto_devallowsoft) {
968			continue;
969		}
970		if (crypto_drivers[hid].cc_kprocess == NULL)
971			continue;
972		for (kalg = 0; kalg < CRK_ALGORITHM_MAX; kalg++)
973			if ((crypto_drivers[hid].cc_kalg[kalg] &
974			    CRYPTO_ALG_FLAG_SUPPORTED) != 0)
975				feat |=  1 << kalg;
976	}
977	CRYPTO_DRIVER_UNLOCK();
978out:
979	*featp = feat;
980	return (0);
981}
982
983/*
984 * Terminate a thread at module unload.  The process that
985 * initiated this is waiting for us to signal that we're gone;
986 * wake it up and exit.  We use the driver table lock to insure
987 * we don't do the wakeup before they're waiting.  There is no
988 * race here because the waiter sleeps on the proc lock for the
989 * thread so it gets notified at the right time because of an
990 * extra wakeup that's done in exit1().
991 */
992static void
993crypto_finis(void *chan)
994{
995	CRYPTO_DRIVER_LOCK();
996	wakeup_one(chan);
997	CRYPTO_DRIVER_UNLOCK();
998	mtx_lock(&Giant);
999	kthread_exit(0);
1000}
1001
1002/*
1003 * Crypto thread, dispatches crypto requests.
1004 */
1005static void
1006crypto_proc(void)
1007{
1008	struct cryptop *crp, *submit;
1009	struct cryptkop *krp;
1010	struct cryptocap *cap;
1011	int result, hint;
1012
1013	CRYPTO_Q_LOCK();
1014	for (;;) {
1015		/*
1016		 * Find the first element in the queue that can be
1017		 * processed and look-ahead to see if multiple ops
1018		 * are ready for the same driver.
1019		 */
1020		submit = NULL;
1021		hint = 0;
1022		TAILQ_FOREACH(crp, &crp_q, crp_next) {
1023			u_int32_t hid = SESID2HID(crp->crp_sid);
1024			cap = crypto_checkdriver(hid);
1025			if (cap == NULL || cap->cc_process == NULL) {
1026				/* Op needs to be migrated, process it. */
1027				if (submit == NULL)
1028					submit = crp;
1029				break;
1030			}
1031			if (!cap->cc_qblocked) {
1032				if (submit != NULL) {
1033					/*
1034					 * We stop on finding another op,
1035					 * regardless whether its for the same
1036					 * driver or not.  We could keep
1037					 * searching the queue but it might be
1038					 * better to just use a per-driver
1039					 * queue instead.
1040					 */
1041					if (SESID2HID(submit->crp_sid) == hid)
1042						hint = CRYPTO_HINT_MORE;
1043					break;
1044				} else {
1045					submit = crp;
1046					if (submit->crp_flags & CRYPTO_F_NODELAY)
1047						break;
1048					/* keep scanning for more are q'd */
1049				}
1050			}
1051		}
1052		if (submit != NULL) {
1053			TAILQ_REMOVE(&crp_q, submit, crp_next);
1054			result = crypto_invoke(submit, hint);
1055			if (result == ERESTART) {
1056				/*
1057				 * The driver ran out of resources, mark the
1058				 * driver ``blocked'' for cryptop's and put
1059				 * the request back in the queue.  It would
1060				 * best to put the request back where we got
1061				 * it but that's hard so for now we put it
1062				 * at the front.  This should be ok; putting
1063				 * it at the end does not work.
1064				 */
1065				/* XXX validate sid again? */
1066				crypto_drivers[SESID2HID(submit->crp_sid)].cc_qblocked = 1;
1067				TAILQ_INSERT_HEAD(&crp_q, submit, crp_next);
1068				cryptostats.cs_blocks++;
1069			}
1070		}
1071
1072		/* As above, but for key ops */
1073		TAILQ_FOREACH(krp, &crp_kq, krp_next) {
1074			cap = crypto_checkdriver(krp->krp_hid);
1075			if (cap == NULL || cap->cc_kprocess == NULL) {
1076				/* Op needs to be migrated, process it. */
1077				break;
1078			}
1079			if (!cap->cc_kqblocked)
1080				break;
1081		}
1082		if (krp != NULL) {
1083			TAILQ_REMOVE(&crp_kq, krp, krp_next);
1084			result = crypto_kinvoke(krp, 0);
1085			if (result == ERESTART) {
1086				/*
1087				 * The driver ran out of resources, mark the
1088				 * driver ``blocked'' for cryptkop's and put
1089				 * the request back in the queue.  It would
1090				 * best to put the request back where we got
1091				 * it but that's hard so for now we put it
1092				 * at the front.  This should be ok; putting
1093				 * it at the end does not work.
1094				 */
1095				/* XXX validate sid again? */
1096				crypto_drivers[krp->krp_hid].cc_kqblocked = 1;
1097				TAILQ_INSERT_HEAD(&crp_kq, krp, krp_next);
1098				cryptostats.cs_kblocks++;
1099			}
1100		}
1101
1102		if (submit == NULL && krp == NULL) {
1103			/*
1104			 * Nothing more to be processed.  Sleep until we're
1105			 * woken because there are more ops to process.
1106			 * This happens either by submission or by a driver
1107			 * becoming unblocked and notifying us through
1108			 * crypto_unblock.  Note that when we wakeup we
1109			 * start processing each queue again from the
1110			 * front. It's not clear that it's important to
1111			 * preserve this ordering since ops may finish
1112			 * out of order if dispatched to different devices
1113			 * and some become blocked while others do not.
1114			 */
1115			msleep(&crp_q, &crypto_q_mtx, PWAIT, "crypto_wait", 0);
1116			if (cryptoproc == NULL)
1117				break;
1118			cryptostats.cs_intrs++;
1119		}
1120	}
1121	CRYPTO_Q_UNLOCK();
1122
1123	crypto_finis(&crp_q);
1124}
1125
1126/*
1127 * Crypto returns thread, does callbacks for processed crypto requests.
1128 * Callbacks are done here, rather than in the crypto drivers, because
1129 * callbacks typically are expensive and would slow interrupt handling.
1130 */
1131static void
1132crypto_ret_proc(void)
1133{
1134	struct cryptop *crpt;
1135	struct cryptkop *krpt;
1136
1137	CRYPTO_RETQ_LOCK();
1138	for (;;) {
1139		/* Harvest return q's for completed ops */
1140		crpt = TAILQ_FIRST(&crp_ret_q);
1141		if (crpt != NULL)
1142			TAILQ_REMOVE(&crp_ret_q, crpt, crp_next);
1143
1144		krpt = TAILQ_FIRST(&crp_ret_kq);
1145		if (krpt != NULL)
1146			TAILQ_REMOVE(&crp_ret_kq, krpt, krp_next);
1147
1148		if (crpt != NULL || krpt != NULL) {
1149			CRYPTO_RETQ_UNLOCK();
1150			/*
1151			 * Run callbacks unlocked.
1152			 */
1153			if (crpt != NULL) {
1154#ifdef CRYPTO_TIMING
1155				if (crypto_timing) {
1156					/*
1157					 * NB: We must copy the timestamp before
1158					 * doing the callback as the cryptop is
1159					 * likely to be reclaimed.
1160					 */
1161					struct bintime t = crpt->crp_tstamp;
1162					crypto_tstat(&cryptostats.cs_cb, &t);
1163					crpt->crp_callback(crpt);
1164					crypto_tstat(&cryptostats.cs_finis, &t);
1165				} else
1166#endif
1167					crpt->crp_callback(crpt);
1168			}
1169			if (krpt != NULL)
1170				krpt->krp_callback(krpt);
1171			CRYPTO_RETQ_LOCK();
1172		} else {
1173			/*
1174			 * Nothing more to be processed.  Sleep until we're
1175			 * woken because there are more returns to process.
1176			 */
1177			msleep(&crp_ret_q, &crypto_ret_q_mtx, PWAIT,
1178				"crypto_ret_wait", 0);
1179			if (cryptoretproc == NULL)
1180				break;
1181			cryptostats.cs_rets++;
1182		}
1183	}
1184	CRYPTO_RETQ_UNLOCK();
1185
1186	crypto_finis(&crp_ret_q);
1187}
1188