xref: /freebsd/sys/opencrypto/crypto.c (revision 6e17a2e00d62fd3041e0bb511fe925079ad1c0d7)
16810ad6fSSam Leffler /*-
26810ad6fSSam Leffler  * Copyright (c) 2002-2006 Sam Leffler.  All rights reserved.
3ae18720dSJohn Baldwin  * Copyright (c) 2021 The FreeBSD Foundation
4ae18720dSJohn Baldwin  *
5ae18720dSJohn Baldwin  * Portions of this software were developed by Ararat River
6ae18720dSJohn Baldwin  * Consulting, LLC under sponsorship of the FreeBSD Foundation.
76810ad6fSSam Leffler  *
86810ad6fSSam Leffler  * Redistribution and use in source and binary forms, with or without
96810ad6fSSam Leffler  * modification, are permitted provided that the following conditions
106810ad6fSSam Leffler  * are met:
116810ad6fSSam Leffler  * 1. Redistributions of source code must retain the above copyright
126810ad6fSSam Leffler  *    notice, this list of conditions and the following disclaimer.
136810ad6fSSam Leffler  * 2. Redistributions in binary form must reproduce the above copyright
146810ad6fSSam Leffler  *    notice, this list of conditions and the following disclaimer in the
156810ad6fSSam Leffler  *    documentation and/or other materials provided with the distribution.
166810ad6fSSam Leffler  *
176810ad6fSSam Leffler  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
186810ad6fSSam Leffler  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
196810ad6fSSam Leffler  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
206810ad6fSSam Leffler  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
216810ad6fSSam Leffler  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
226810ad6fSSam Leffler  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236810ad6fSSam Leffler  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246810ad6fSSam Leffler  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256810ad6fSSam Leffler  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
266810ad6fSSam Leffler  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276810ad6fSSam Leffler  */
286810ad6fSSam Leffler 
296810ad6fSSam Leffler #include <sys/cdefs.h>
306810ad6fSSam Leffler __FBSDID("$FreeBSD$");
316810ad6fSSam Leffler 
326810ad6fSSam Leffler /*
336810ad6fSSam Leffler  * Cryptographic Subsystem.
346810ad6fSSam Leffler  *
356810ad6fSSam Leffler  * This code is derived from the Openbsd Cryptographic Framework (OCF)
366810ad6fSSam Leffler  * that has the copyright shown below.  Very little of the original
376810ad6fSSam Leffler  * code remains.
386810ad6fSSam Leffler  */
396810ad6fSSam Leffler 
4060727d8bSWarner Losh /*-
41091d81d1SSam Leffler  * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
42091d81d1SSam Leffler  *
43091d81d1SSam Leffler  * This code was written by Angelos D. Keromytis in Athens, Greece, in
44091d81d1SSam Leffler  * February 2000. Network Security Technologies Inc. (NSTI) kindly
45091d81d1SSam Leffler  * supported the development of this code.
46091d81d1SSam Leffler  *
47091d81d1SSam Leffler  * Copyright (c) 2000, 2001 Angelos D. Keromytis
48091d81d1SSam Leffler  *
49091d81d1SSam Leffler  * Permission to use, copy, and modify this software with or without fee
50091d81d1SSam Leffler  * is hereby granted, provided that this entire notice is included in
51091d81d1SSam Leffler  * all source code copies of any software which is or includes a copy or
52091d81d1SSam Leffler  * modification of this software.
53091d81d1SSam Leffler  *
54091d81d1SSam Leffler  * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
55091d81d1SSam Leffler  * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
56091d81d1SSam Leffler  * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
57091d81d1SSam Leffler  * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
58091d81d1SSam Leffler  * PURPOSE.
59091d81d1SSam Leffler  */
602c446514SDavid E. O'Brien 
61c0341432SJohn Baldwin #include "opt_compat.h"
626810ad6fSSam Leffler #include "opt_ddb.h"
636810ad6fSSam Leffler 
64091d81d1SSam Leffler #include <sys/param.h>
65091d81d1SSam Leffler #include <sys/systm.h>
667290cb47SMark Johnston #include <sys/counter.h>
67091d81d1SSam Leffler #include <sys/kernel.h>
68091d81d1SSam Leffler #include <sys/kthread.h>
69ec5c0e5bSAllan Jude #include <sys/linker.h>
70091d81d1SSam Leffler #include <sys/lock.h>
715dba30f1SPoul-Henning Kamp #include <sys/module.h>
72091d81d1SSam Leffler #include <sys/mutex.h>
73091d81d1SSam Leffler #include <sys/malloc.h>
749c0e3d3aSJohn Baldwin #include <sys/mbuf.h>
75091d81d1SSam Leffler #include <sys/proc.h>
76c0341432SJohn Baldwin #include <sys/refcount.h>
77df21ad6eSBjoern A. Zeeb #include <sys/sdt.h>
7839bbca6fSFabien Thomas #include <sys/smp.h>
79091d81d1SSam Leffler #include <sys/sysctl.h>
8039bbca6fSFabien Thomas #include <sys/taskqueue.h>
819c0e3d3aSJohn Baldwin #include <sys/uio.h>
82091d81d1SSam Leffler 
836810ad6fSSam Leffler #include <ddb/ddb.h>
846810ad6fSSam Leffler 
85e6f6d0c9SAlan Somers #include <machine/vmparam.h>
86091d81d1SSam Leffler #include <vm/uma.h>
87e6f6d0c9SAlan Somers 
88ec5c0e5bSAllan Jude #include <crypto/intake.h>
89091d81d1SSam Leffler #include <opencrypto/cryptodev.h>
90c0341432SJohn Baldwin #include <opencrypto/xform_auth.h>
91c0341432SJohn Baldwin #include <opencrypto/xform_enc.h>
92091d81d1SSam Leffler 
936810ad6fSSam Leffler #include <sys/kobj.h>
946810ad6fSSam Leffler #include <sys/bus.h>
956810ad6fSSam Leffler #include "cryptodev_if.h"
966810ad6fSSam Leffler 
976ed982a2SAndrew Turner #if defined(__i386__) || defined(__amd64__) || defined(__aarch64__)
9804c49e68SKonstantin Belousov #include <machine/pcb.h>
9904c49e68SKonstantin Belousov #endif
10004c49e68SKonstantin Belousov 
101df21ad6eSBjoern A. Zeeb SDT_PROVIDER_DEFINE(opencrypto);
102df21ad6eSBjoern A. Zeeb 
103091d81d1SSam Leffler /*
104091d81d1SSam Leffler  * Crypto drivers register themselves by allocating a slot in the
10576681661SJohn Baldwin  * crypto_drivers table with crypto_get_driverid().
106091d81d1SSam Leffler  */
107091d81d1SSam Leffler static	struct mtx crypto_drivers_mtx;		/* lock on driver table */
108091d81d1SSam Leffler #define	CRYPTO_DRIVER_LOCK()	mtx_lock(&crypto_drivers_mtx)
109091d81d1SSam Leffler #define	CRYPTO_DRIVER_UNLOCK()	mtx_unlock(&crypto_drivers_mtx)
1106810ad6fSSam Leffler #define	CRYPTO_DRIVER_ASSERT()	mtx_assert(&crypto_drivers_mtx, MA_OWNED)
1116810ad6fSSam Leffler 
1126810ad6fSSam Leffler /*
1136810ad6fSSam Leffler  * Crypto device/driver capabilities structure.
1146810ad6fSSam Leffler  *
1156810ad6fSSam Leffler  * Synchronization:
1166810ad6fSSam Leffler  * (d) - protected by CRYPTO_DRIVER_LOCK()
1176810ad6fSSam Leffler  * (q) - protected by CRYPTO_Q_LOCK()
1186810ad6fSSam Leffler  * Not tagged fields are read-only.
1196810ad6fSSam Leffler  */
1206810ad6fSSam Leffler struct cryptocap {
121c0341432SJohn Baldwin 	device_t	cc_dev;
122c0341432SJohn Baldwin 	uint32_t	cc_hid;
123d3d79e96SJohn Baldwin 	uint32_t	cc_sessions;		/* (d) # of sessions */
1246810ad6fSSam Leffler 
1256810ad6fSSam Leffler 	int		cc_flags;		/* (d) flags */
1266810ad6fSSam Leffler #define CRYPTOCAP_F_CLEANUP	0x80000000	/* needs resource cleanup */
1276810ad6fSSam Leffler 	int		cc_qblocked;		/* (q) symmetric q blocked */
1281b0909d5SConrad Meyer 	size_t		cc_session_size;
129c0341432SJohn Baldwin 	volatile int	cc_refs;
1306810ad6fSSam Leffler };
131c0341432SJohn Baldwin 
132c0341432SJohn Baldwin static	struct cryptocap **crypto_drivers = NULL;
133c0341432SJohn Baldwin static	int crypto_drivers_size = 0;
134c0341432SJohn Baldwin 
135c0341432SJohn Baldwin struct crypto_session {
136c0341432SJohn Baldwin 	struct cryptocap *cap;
137c0341432SJohn Baldwin 	struct crypto_session_params csp;
13898d788c8SMark Johnston 	uint64_t id;
1398adcc757SMark Johnston 	/* Driver softc follows. */
140c0341432SJohn Baldwin };
141091d81d1SSam Leffler 
1423a865c82SPawel Jakub Dawidek static	int crp_sleep = 0;
14339bbca6fSFabien Thomas static	TAILQ_HEAD(cryptop_q ,cryptop) crp_q;		/* request queues */
144091d81d1SSam Leffler static	struct mtx crypto_q_mtx;
145091d81d1SSam Leffler #define	CRYPTO_Q_LOCK()		mtx_lock(&crypto_q_mtx)
146091d81d1SSam Leffler #define	CRYPTO_Q_UNLOCK()	mtx_unlock(&crypto_q_mtx)
147091d81d1SSam Leffler 
14833f3bad3SJohn Baldwin SYSCTL_NODE(_kern, OID_AUTO, crypto, CTLFLAG_RW, 0,
149c0341432SJohn Baldwin     "In-kernel cryptography");
150c0341432SJohn Baldwin 
151091d81d1SSam Leffler /*
15239bbca6fSFabien Thomas  * Taskqueue used to dispatch the crypto requests
15339bbca6fSFabien Thomas  * that have the CRYPTO_F_ASYNC flag
154091d81d1SSam Leffler  */
15539bbca6fSFabien Thomas static struct taskqueue *crypto_tq;
15639bbca6fSFabien Thomas 
15739bbca6fSFabien Thomas /*
15839bbca6fSFabien Thomas  * Crypto seq numbers are operated on with modular arithmetic
15939bbca6fSFabien Thomas  */
16039bbca6fSFabien Thomas #define	CRYPTO_SEQ_GT(a,b)	((int)((a)-(b)) > 0)
16139bbca6fSFabien Thomas 
16239bbca6fSFabien Thomas struct crypto_ret_worker {
16339bbca6fSFabien Thomas 	struct mtx crypto_ret_mtx;
16439bbca6fSFabien Thomas 
16539bbca6fSFabien Thomas 	TAILQ_HEAD(,cryptop) crp_ordered_ret_q;	/* ordered callback queue for symetric jobs */
16639bbca6fSFabien Thomas 	TAILQ_HEAD(,cryptop) crp_ret_q;		/* callback queue for symetric jobs */
16739bbca6fSFabien Thomas 
168d3d79e96SJohn Baldwin 	uint32_t reorder_ops;		/* total ordered sym jobs received */
169d3d79e96SJohn Baldwin 	uint32_t reorder_cur_seq;	/* current sym job dispatched */
17039bbca6fSFabien Thomas 
17171785781SJohn Baldwin 	struct thread *td;
17239bbca6fSFabien Thomas };
17339bbca6fSFabien Thomas static struct crypto_ret_worker *crypto_ret_workers = NULL;
17439bbca6fSFabien Thomas 
17539bbca6fSFabien Thomas #define CRYPTO_RETW(i)		(&crypto_ret_workers[i])
17639bbca6fSFabien Thomas #define CRYPTO_RETW_ID(w)	((w) - crypto_ret_workers)
17739bbca6fSFabien Thomas #define FOREACH_CRYPTO_RETW(w) \
17839bbca6fSFabien Thomas 	for (w = crypto_ret_workers; w < crypto_ret_workers + crypto_workers_num; ++w)
17939bbca6fSFabien Thomas 
18039bbca6fSFabien Thomas #define	CRYPTO_RETW_LOCK(w)	mtx_lock(&w->crypto_ret_mtx)
18139bbca6fSFabien Thomas #define	CRYPTO_RETW_UNLOCK(w)	mtx_unlock(&w->crypto_ret_mtx)
18239bbca6fSFabien Thomas 
18339bbca6fSFabien Thomas static int crypto_workers_num = 0;
184c0341432SJohn Baldwin SYSCTL_INT(_kern_crypto, OID_AUTO, num_workers, CTLFLAG_RDTUN,
185c0341432SJohn Baldwin 	   &crypto_workers_num, 0,
186c0341432SJohn Baldwin 	   "Number of crypto workers used to dispatch crypto jobs");
187c0341432SJohn Baldwin #ifdef COMPAT_FREEBSD12
18839bbca6fSFabien Thomas SYSCTL_INT(_kern, OID_AUTO, crypto_workers_num, CTLFLAG_RDTUN,
18939bbca6fSFabien Thomas 	   &crypto_workers_num, 0,
19039bbca6fSFabien Thomas 	   "Number of crypto workers used to dispatch crypto jobs");
191c0341432SJohn Baldwin #endif
192091d81d1SSam Leffler 
193091d81d1SSam Leffler static	uma_zone_t cryptop_zone;
194091d81d1SSam Leffler 
195c0341432SJohn Baldwin int	crypto_devallowsoft = 0;
1969e0c0512SMark Johnston SYSCTL_INT(_kern_crypto, OID_AUTO, allow_soft, CTLFLAG_RWTUN,
197c0341432SJohn Baldwin 	   &crypto_devallowsoft, 0,
198c0341432SJohn Baldwin 	   "Enable use of software crypto by /dev/crypto");
199c0341432SJohn Baldwin #ifdef COMPAT_FREEBSD12
2009e0c0512SMark Johnston SYSCTL_INT(_kern, OID_AUTO, cryptodevallowsoft, CTLFLAG_RWTUN,
201091d81d1SSam Leffler 	   &crypto_devallowsoft, 0,
2026c20d7a3SJohn-Mark Gurney 	   "Enable/disable use of software crypto by /dev/crypto");
203c0341432SJohn Baldwin #endif
204091d81d1SSam Leffler 
205091d81d1SSam Leffler MALLOC_DEFINE(M_CRYPTO_DATA, "crypto", "crypto session records");
206091d81d1SSam Leffler 
20771785781SJohn Baldwin static	void crypto_dispatch_thread(void *arg);
20871785781SJohn Baldwin static	struct thread *cryptotd;
20971785781SJohn Baldwin static	void crypto_ret_thread(void *arg);
21051e45326SSam Leffler static	void crypto_destroy(void);
2114acae0acSPawel Jakub Dawidek static	int crypto_invoke(struct cryptocap *cap, struct cryptop *crp, int hint);
21239bbca6fSFabien Thomas static	void crypto_task_invoke(void *ctx, int pending);
21339bbca6fSFabien Thomas static void crypto_batch_enqueue(struct cryptop *crp);
21451e45326SSam Leffler 
2157290cb47SMark Johnston static counter_u64_t cryptostats[sizeof(struct cryptostats) / sizeof(uint64_t)];
2167290cb47SMark Johnston SYSCTL_COUNTER_U64_ARRAY(_kern_crypto, OID_AUTO, stats, CTLFLAG_RW,
2177290cb47SMark Johnston     cryptostats, nitems(cryptostats),
2187290cb47SMark Johnston     "Crypto system statistics");
2197290cb47SMark Johnston 
2207290cb47SMark Johnston #define	CRYPTOSTAT_INC(stat) do {					\
2217290cb47SMark Johnston 	counter_u64_add(						\
2227290cb47SMark Johnston 	    cryptostats[offsetof(struct cryptostats, stat) / sizeof(uint64_t)],\
2237290cb47SMark Johnston 	    1);								\
2247290cb47SMark Johnston } while (0)
2257290cb47SMark Johnston 
2267290cb47SMark Johnston static void
2277290cb47SMark Johnston cryptostats_init(void *arg __unused)
2287290cb47SMark Johnston {
2297290cb47SMark Johnston 	COUNTER_ARRAY_ALLOC(cryptostats, nitems(cryptostats), M_WAITOK);
2307290cb47SMark Johnston }
2317290cb47SMark Johnston SYSINIT(cryptostats_init, SI_SUB_COUNTER, SI_ORDER_ANY, cryptostats_init, NULL);
2327290cb47SMark Johnston 
2337290cb47SMark Johnston static void
2347290cb47SMark Johnston cryptostats_fini(void *arg __unused)
2357290cb47SMark Johnston {
2367290cb47SMark Johnston 	COUNTER_ARRAY_FREE(cryptostats, nitems(cryptostats));
2377290cb47SMark Johnston }
2387290cb47SMark Johnston SYSUNINIT(cryptostats_fini, SI_SUB_COUNTER, SI_ORDER_ANY, cryptostats_fini,
2397290cb47SMark Johnston     NULL);
2407d1853eeSSam Leffler 
241ec5c0e5bSAllan Jude /* Try to avoid directly exposing the key buffer as a symbol */
242ec5c0e5bSAllan Jude static struct keybuf *keybuf;
243ec5c0e5bSAllan Jude 
244ec5c0e5bSAllan Jude static struct keybuf empty_keybuf = {
245ec5c0e5bSAllan Jude         .kb_nents = 0
246ec5c0e5bSAllan Jude };
247ec5c0e5bSAllan Jude 
248ec5c0e5bSAllan Jude /* Obtain the key buffer from boot metadata */
249ec5c0e5bSAllan Jude static void
250ec5c0e5bSAllan Jude keybuf_init(void)
251ec5c0e5bSAllan Jude {
252ec5c0e5bSAllan Jude 	caddr_t kmdp;
253ec5c0e5bSAllan Jude 
254ec5c0e5bSAllan Jude 	kmdp = preload_search_by_type("elf kernel");
255ec5c0e5bSAllan Jude 
256ec5c0e5bSAllan Jude 	if (kmdp == NULL)
257ec5c0e5bSAllan Jude 		kmdp = preload_search_by_type("elf64 kernel");
258ec5c0e5bSAllan Jude 
259ec5c0e5bSAllan Jude 	keybuf = (struct keybuf *)preload_search_info(kmdp,
260ec5c0e5bSAllan Jude 	    MODINFO_METADATA | MODINFOMD_KEYBUF);
261ec5c0e5bSAllan Jude 
262ec5c0e5bSAllan Jude         if (keybuf == NULL)
263ec5c0e5bSAllan Jude                 keybuf = &empty_keybuf;
264ec5c0e5bSAllan Jude }
265ec5c0e5bSAllan Jude 
266ec5c0e5bSAllan Jude /* It'd be nice if we could store these in some kind of secure memory... */
2675973f492SJohn Baldwin struct keybuf *
2685973f492SJohn Baldwin get_keybuf(void)
2695973f492SJohn Baldwin {
270ec5c0e5bSAllan Jude 
271ec5c0e5bSAllan Jude         return (keybuf);
272ec5c0e5bSAllan Jude }
273ec5c0e5bSAllan Jude 
274c0341432SJohn Baldwin static struct cryptocap *
275c0341432SJohn Baldwin cap_ref(struct cryptocap *cap)
276c0341432SJohn Baldwin {
277c0341432SJohn Baldwin 
278c0341432SJohn Baldwin 	refcount_acquire(&cap->cc_refs);
279c0341432SJohn Baldwin 	return (cap);
280c0341432SJohn Baldwin }
281c0341432SJohn Baldwin 
282c0341432SJohn Baldwin static void
283c0341432SJohn Baldwin cap_rele(struct cryptocap *cap)
284c0341432SJohn Baldwin {
285c0341432SJohn Baldwin 
286c0341432SJohn Baldwin 	if (refcount_release(&cap->cc_refs) == 0)
287c0341432SJohn Baldwin 		return;
288c0341432SJohn Baldwin 
289c0341432SJohn Baldwin 	KASSERT(cap->cc_sessions == 0,
290c0341432SJohn Baldwin 	    ("freeing crypto driver with active sessions"));
291c0341432SJohn Baldwin 
292c0341432SJohn Baldwin 	free(cap, M_CRYPTO_DATA);
293c0341432SJohn Baldwin }
294c0341432SJohn Baldwin 
29551e45326SSam Leffler static int
296091d81d1SSam Leffler crypto_init(void)
297091d81d1SSam Leffler {
29839bbca6fSFabien Thomas 	struct crypto_ret_worker *ret_worker;
29971785781SJohn Baldwin 	struct proc *p;
30051e45326SSam Leffler 	int error;
301091d81d1SSam Leffler 
3024e057806SJohn Baldwin 	mtx_init(&crypto_drivers_mtx, "crypto driver table", NULL, MTX_DEF);
303091d81d1SSam Leffler 
304091d81d1SSam Leffler 	TAILQ_INIT(&crp_q);
3054e057806SJohn Baldwin 	mtx_init(&crypto_q_mtx, "crypto op queues", NULL, MTX_DEF);
306091d81d1SSam Leffler 
307e5587cbbSMark Johnston 	cryptop_zone = uma_zcreate("cryptop",
308e5587cbbSMark Johnston 	    sizeof(struct cryptop), NULL, NULL, NULL, NULL,
30951e45326SSam Leffler 	    UMA_ALIGN_PTR, UMA_ZONE_ZINIT);
3101b0909d5SConrad Meyer 
311c0341432SJohn Baldwin 	crypto_drivers_size = CRYPTO_DRIVERS_INITIAL;
312c0341432SJohn Baldwin 	crypto_drivers = malloc(crypto_drivers_size *
313e5587cbbSMark Johnston 	    sizeof(struct cryptocap), M_CRYPTO_DATA, M_WAITOK | M_ZERO);
31451e45326SSam Leffler 
31539bbca6fSFabien Thomas 	if (crypto_workers_num < 1 || crypto_workers_num > mp_ncpus)
31639bbca6fSFabien Thomas 		crypto_workers_num = mp_ncpus;
31739bbca6fSFabien Thomas 
31839bbca6fSFabien Thomas 	crypto_tq = taskqueue_create("crypto", M_WAITOK | M_ZERO,
31939bbca6fSFabien Thomas 	    taskqueue_thread_enqueue, &crypto_tq);
32039bbca6fSFabien Thomas 
32139bbca6fSFabien Thomas 	taskqueue_start_threads(&crypto_tq, crypto_workers_num, PRI_MIN_KERN,
32239bbca6fSFabien Thomas 	    "crypto");
32339bbca6fSFabien Thomas 
32471785781SJohn Baldwin 	p = NULL;
32571785781SJohn Baldwin 	error = kproc_kthread_add(crypto_dispatch_thread, NULL, &p, &cryptotd,
32671785781SJohn Baldwin 	    0, 0, "crypto", "crypto");
32751e45326SSam Leffler 	if (error) {
32851e45326SSam Leffler 		printf("crypto_init: cannot start crypto thread; error %d",
32951e45326SSam Leffler 			error);
33051e45326SSam Leffler 		goto bad;
33151e45326SSam Leffler 	}
33251e45326SSam Leffler 
333e5587cbbSMark Johnston 	crypto_ret_workers = mallocarray(crypto_workers_num,
334e5587cbbSMark Johnston 	    sizeof(struct crypto_ret_worker), M_CRYPTO_DATA, M_WAITOK | M_ZERO);
33539bbca6fSFabien Thomas 
33639bbca6fSFabien Thomas 	FOREACH_CRYPTO_RETW(ret_worker) {
33739bbca6fSFabien Thomas 		TAILQ_INIT(&ret_worker->crp_ordered_ret_q);
33839bbca6fSFabien Thomas 		TAILQ_INIT(&ret_worker->crp_ret_q);
33939bbca6fSFabien Thomas 
34039bbca6fSFabien Thomas 		ret_worker->reorder_ops = 0;
34139bbca6fSFabien Thomas 		ret_worker->reorder_cur_seq = 0;
34239bbca6fSFabien Thomas 
3434e057806SJohn Baldwin 		mtx_init(&ret_worker->crypto_ret_mtx, "crypto return queues",
3444e057806SJohn Baldwin 		    NULL, MTX_DEF);
34539bbca6fSFabien Thomas 
34671785781SJohn Baldwin 		error = kthread_add(crypto_ret_thread, ret_worker, p,
34771785781SJohn Baldwin 		    &ret_worker->td, 0, 0, "crypto returns %td",
34871785781SJohn Baldwin 		    CRYPTO_RETW_ID(ret_worker));
34951e45326SSam Leffler 		if (error) {
35051e45326SSam Leffler 			printf("crypto_init: cannot start cryptoret thread; error %d",
35151e45326SSam Leffler 				error);
35251e45326SSam Leffler 			goto bad;
35351e45326SSam Leffler 		}
35439bbca6fSFabien Thomas 	}
355ec5c0e5bSAllan Jude 
356ec5c0e5bSAllan Jude 	keybuf_init();
357ec5c0e5bSAllan Jude 
35851e45326SSam Leffler 	return 0;
35951e45326SSam Leffler bad:
36051e45326SSam Leffler 	crypto_destroy();
36151e45326SSam Leffler 	return error;
36251e45326SSam Leffler }
36351e45326SSam Leffler 
36451e45326SSam Leffler /*
36551e45326SSam Leffler  * Signal a crypto thread to terminate.  We use the driver
36651e45326SSam Leffler  * table lock to synchronize the sleep/wakeups so that we
36751e45326SSam Leffler  * are sure the threads have terminated before we release
36851e45326SSam Leffler  * the data structures they use.  See crypto_finis below
36951e45326SSam Leffler  * for the other half of this song-and-dance.
37051e45326SSam Leffler  */
37151e45326SSam Leffler static void
37271785781SJohn Baldwin crypto_terminate(struct thread **tdp, void *q)
37351e45326SSam Leffler {
37471785781SJohn Baldwin 	struct thread *td;
37551e45326SSam Leffler 
37651e45326SSam Leffler 	mtx_assert(&crypto_drivers_mtx, MA_OWNED);
37771785781SJohn Baldwin 	td = *tdp;
37871785781SJohn Baldwin 	*tdp = NULL;
37971785781SJohn Baldwin 	if (td != NULL) {
38051e45326SSam Leffler 		wakeup_one(q);
38171785781SJohn Baldwin 		mtx_sleep(td, &crypto_drivers_mtx, PWAIT, "crypto_destroy", 0);
38251e45326SSam Leffler 	}
38351e45326SSam Leffler }
38451e45326SSam Leffler 
38551e45326SSam Leffler static void
386d588dc7dSMark Johnston hmac_init_pad(const struct auth_hash *axf, const char *key, int klen,
387d588dc7dSMark Johnston     void *auth_ctx, uint8_t padval)
388c0341432SJohn Baldwin {
389c0341432SJohn Baldwin 	uint8_t hmac_key[HMAC_MAX_BLOCK_LEN];
390c0341432SJohn Baldwin 	u_int i;
391c0341432SJohn Baldwin 
392c0341432SJohn Baldwin 	KASSERT(axf->blocksize <= sizeof(hmac_key),
393c0341432SJohn Baldwin 	    ("Invalid HMAC block size %d", axf->blocksize));
394c0341432SJohn Baldwin 
395c0341432SJohn Baldwin 	/*
396c0341432SJohn Baldwin 	 * If the key is larger than the block size, use the digest of
397c0341432SJohn Baldwin 	 * the key as the key instead.
398c0341432SJohn Baldwin 	 */
399c0341432SJohn Baldwin 	memset(hmac_key, 0, sizeof(hmac_key));
400c0341432SJohn Baldwin 	if (klen > axf->blocksize) {
401c0341432SJohn Baldwin 		axf->Init(auth_ctx);
402c0341432SJohn Baldwin 		axf->Update(auth_ctx, key, klen);
403c0341432SJohn Baldwin 		axf->Final(hmac_key, auth_ctx);
404c0341432SJohn Baldwin 		klen = axf->hashsize;
405c0341432SJohn Baldwin 	} else
406c0341432SJohn Baldwin 		memcpy(hmac_key, key, klen);
407c0341432SJohn Baldwin 
408c0341432SJohn Baldwin 	for (i = 0; i < axf->blocksize; i++)
409c0341432SJohn Baldwin 		hmac_key[i] ^= padval;
410c0341432SJohn Baldwin 
411c0341432SJohn Baldwin 	axf->Init(auth_ctx);
412c0341432SJohn Baldwin 	axf->Update(auth_ctx, hmac_key, axf->blocksize);
41317a831eaSJohn Baldwin 	explicit_bzero(hmac_key, sizeof(hmac_key));
414c0341432SJohn Baldwin }
415c0341432SJohn Baldwin 
416c0341432SJohn Baldwin void
417d588dc7dSMark Johnston hmac_init_ipad(const struct auth_hash *axf, const char *key, int klen,
418c0341432SJohn Baldwin     void *auth_ctx)
419c0341432SJohn Baldwin {
420c0341432SJohn Baldwin 
421c0341432SJohn Baldwin 	hmac_init_pad(axf, key, klen, auth_ctx, HMAC_IPAD_VAL);
422c0341432SJohn Baldwin }
423c0341432SJohn Baldwin 
424c0341432SJohn Baldwin void
425d588dc7dSMark Johnston hmac_init_opad(const struct auth_hash *axf, const char *key, int klen,
426c0341432SJohn Baldwin     void *auth_ctx)
427c0341432SJohn Baldwin {
428c0341432SJohn Baldwin 
429c0341432SJohn Baldwin 	hmac_init_pad(axf, key, klen, auth_ctx, HMAC_OPAD_VAL);
430c0341432SJohn Baldwin }
431c0341432SJohn Baldwin 
432c0341432SJohn Baldwin static void
43351e45326SSam Leffler crypto_destroy(void)
43451e45326SSam Leffler {
43539bbca6fSFabien Thomas 	struct crypto_ret_worker *ret_worker;
436c0341432SJohn Baldwin 	int i;
43739bbca6fSFabien Thomas 
43851e45326SSam Leffler 	/*
43951e45326SSam Leffler 	 * Terminate any crypto threads.
44051e45326SSam Leffler 	 */
44139bbca6fSFabien Thomas 	if (crypto_tq != NULL)
44239bbca6fSFabien Thomas 		taskqueue_drain_all(crypto_tq);
44351e45326SSam Leffler 	CRYPTO_DRIVER_LOCK();
44471785781SJohn Baldwin 	crypto_terminate(&cryptotd, &crp_q);
44539bbca6fSFabien Thomas 	FOREACH_CRYPTO_RETW(ret_worker)
44671785781SJohn Baldwin 		crypto_terminate(&ret_worker->td, &ret_worker->crp_ret_q);
44751e45326SSam Leffler 	CRYPTO_DRIVER_UNLOCK();
44851e45326SSam Leffler 
44951e45326SSam Leffler 	/* XXX flush queues??? */
45051e45326SSam Leffler 
45151e45326SSam Leffler 	/*
45251e45326SSam Leffler 	 * Reclaim dynamically allocated resources.
45351e45326SSam Leffler 	 */
454c0341432SJohn Baldwin 	for (i = 0; i < crypto_drivers_size; i++) {
455c0341432SJohn Baldwin 		if (crypto_drivers[i] != NULL)
456c0341432SJohn Baldwin 			cap_rele(crypto_drivers[i]);
457c0341432SJohn Baldwin 	}
45851e45326SSam Leffler 	free(crypto_drivers, M_CRYPTO_DATA);
45951e45326SSam Leffler 
46051e45326SSam Leffler 	if (cryptop_zone != NULL)
46151e45326SSam Leffler 		uma_zdestroy(cryptop_zone);
46251e45326SSam Leffler 	mtx_destroy(&crypto_q_mtx);
46339bbca6fSFabien Thomas 	FOREACH_CRYPTO_RETW(ret_worker)
46439bbca6fSFabien Thomas 		mtx_destroy(&ret_worker->crypto_ret_mtx);
46539bbca6fSFabien Thomas 	free(crypto_ret_workers, M_CRYPTO_DATA);
46639bbca6fSFabien Thomas 	if (crypto_tq != NULL)
46739bbca6fSFabien Thomas 		taskqueue_free(crypto_tq);
46851e45326SSam Leffler 	mtx_destroy(&crypto_drivers_mtx);
469091d81d1SSam Leffler }
470f544a528SMark Murray 
4711b0909d5SConrad Meyer uint32_t
4721b0909d5SConrad Meyer crypto_ses2hid(crypto_session_t crypto_session)
4731b0909d5SConrad Meyer {
474c0341432SJohn Baldwin 	return (crypto_session->cap->cc_hid);
4751b0909d5SConrad Meyer }
4761b0909d5SConrad Meyer 
4771b0909d5SConrad Meyer uint32_t
4781b0909d5SConrad Meyer crypto_ses2caps(crypto_session_t crypto_session)
4791b0909d5SConrad Meyer {
480c0341432SJohn Baldwin 	return (crypto_session->cap->cc_flags & 0xff000000);
4811b0909d5SConrad Meyer }
4821b0909d5SConrad Meyer 
4831b0909d5SConrad Meyer void *
4841b0909d5SConrad Meyer crypto_get_driver_session(crypto_session_t crypto_session)
4851b0909d5SConrad Meyer {
486d1816248SMark Johnston 	return (crypto_session + 1);
4871b0909d5SConrad Meyer }
4881b0909d5SConrad Meyer 
489c0341432SJohn Baldwin const struct crypto_session_params *
490c0341432SJohn Baldwin crypto_get_params(crypto_session_t crypto_session)
491c0341432SJohn Baldwin {
492c0341432SJohn Baldwin 	return (&crypto_session->csp);
493c0341432SJohn Baldwin }
494c0341432SJohn Baldwin 
495d8787d4fSMark Johnston const struct auth_hash *
496c0341432SJohn Baldwin crypto_auth_hash(const struct crypto_session_params *csp)
497c0341432SJohn Baldwin {
498c0341432SJohn Baldwin 
499c0341432SJohn Baldwin 	switch (csp->csp_auth_alg) {
500c0341432SJohn Baldwin 	case CRYPTO_SHA1_HMAC:
501c0341432SJohn Baldwin 		return (&auth_hash_hmac_sha1);
502c0341432SJohn Baldwin 	case CRYPTO_SHA2_224_HMAC:
503c0341432SJohn Baldwin 		return (&auth_hash_hmac_sha2_224);
504c0341432SJohn Baldwin 	case CRYPTO_SHA2_256_HMAC:
505c0341432SJohn Baldwin 		return (&auth_hash_hmac_sha2_256);
506c0341432SJohn Baldwin 	case CRYPTO_SHA2_384_HMAC:
507c0341432SJohn Baldwin 		return (&auth_hash_hmac_sha2_384);
508c0341432SJohn Baldwin 	case CRYPTO_SHA2_512_HMAC:
509c0341432SJohn Baldwin 		return (&auth_hash_hmac_sha2_512);
510c0341432SJohn Baldwin 	case CRYPTO_NULL_HMAC:
511c0341432SJohn Baldwin 		return (&auth_hash_null);
512c0341432SJohn Baldwin 	case CRYPTO_RIPEMD160_HMAC:
513c0341432SJohn Baldwin 		return (&auth_hash_hmac_ripemd_160);
514c0341432SJohn Baldwin 	case CRYPTO_SHA1:
515c0341432SJohn Baldwin 		return (&auth_hash_sha1);
516c0341432SJohn Baldwin 	case CRYPTO_SHA2_224:
517c0341432SJohn Baldwin 		return (&auth_hash_sha2_224);
518c0341432SJohn Baldwin 	case CRYPTO_SHA2_256:
519c0341432SJohn Baldwin 		return (&auth_hash_sha2_256);
520c0341432SJohn Baldwin 	case CRYPTO_SHA2_384:
521c0341432SJohn Baldwin 		return (&auth_hash_sha2_384);
522c0341432SJohn Baldwin 	case CRYPTO_SHA2_512:
523c0341432SJohn Baldwin 		return (&auth_hash_sha2_512);
524c0341432SJohn Baldwin 	case CRYPTO_AES_NIST_GMAC:
525c0341432SJohn Baldwin 		switch (csp->csp_auth_klen) {
526c0341432SJohn Baldwin 		case 128 / 8:
527c0341432SJohn Baldwin 			return (&auth_hash_nist_gmac_aes_128);
528c0341432SJohn Baldwin 		case 192 / 8:
529c0341432SJohn Baldwin 			return (&auth_hash_nist_gmac_aes_192);
530c0341432SJohn Baldwin 		case 256 / 8:
531c0341432SJohn Baldwin 			return (&auth_hash_nist_gmac_aes_256);
532c0341432SJohn Baldwin 		default:
533c0341432SJohn Baldwin 			return (NULL);
534c0341432SJohn Baldwin 		}
535c0341432SJohn Baldwin 	case CRYPTO_BLAKE2B:
536c0341432SJohn Baldwin 		return (&auth_hash_blake2b);
537c0341432SJohn Baldwin 	case CRYPTO_BLAKE2S:
538c0341432SJohn Baldwin 		return (&auth_hash_blake2s);
539c0341432SJohn Baldwin 	case CRYPTO_POLY1305:
540c0341432SJohn Baldwin 		return (&auth_hash_poly1305);
541c0341432SJohn Baldwin 	case CRYPTO_AES_CCM_CBC_MAC:
542c0341432SJohn Baldwin 		switch (csp->csp_auth_klen) {
543c0341432SJohn Baldwin 		case 128 / 8:
544c0341432SJohn Baldwin 			return (&auth_hash_ccm_cbc_mac_128);
545c0341432SJohn Baldwin 		case 192 / 8:
546c0341432SJohn Baldwin 			return (&auth_hash_ccm_cbc_mac_192);
547c0341432SJohn Baldwin 		case 256 / 8:
548c0341432SJohn Baldwin 			return (&auth_hash_ccm_cbc_mac_256);
549c0341432SJohn Baldwin 		default:
550c0341432SJohn Baldwin 			return (NULL);
551c0341432SJohn Baldwin 		}
552c0341432SJohn Baldwin 	default:
553c0341432SJohn Baldwin 		return (NULL);
554c0341432SJohn Baldwin 	}
555c0341432SJohn Baldwin }
556c0341432SJohn Baldwin 
557d8787d4fSMark Johnston const struct enc_xform *
558c0341432SJohn Baldwin crypto_cipher(const struct crypto_session_params *csp)
559c0341432SJohn Baldwin {
560c0341432SJohn Baldwin 
561c0341432SJohn Baldwin 	switch (csp->csp_cipher_alg) {
562c0341432SJohn Baldwin 	case CRYPTO_RIJNDAEL128_CBC:
563c0341432SJohn Baldwin 		return (&enc_xform_rijndael128);
564c0341432SJohn Baldwin 	case CRYPTO_AES_XTS:
565c0341432SJohn Baldwin 		return (&enc_xform_aes_xts);
566c0341432SJohn Baldwin 	case CRYPTO_AES_ICM:
567c0341432SJohn Baldwin 		return (&enc_xform_aes_icm);
568c0341432SJohn Baldwin 	case CRYPTO_AES_NIST_GCM_16:
569c0341432SJohn Baldwin 		return (&enc_xform_aes_nist_gcm);
570c0341432SJohn Baldwin 	case CRYPTO_CAMELLIA_CBC:
571c0341432SJohn Baldwin 		return (&enc_xform_camellia);
572c0341432SJohn Baldwin 	case CRYPTO_NULL_CBC:
573c0341432SJohn Baldwin 		return (&enc_xform_null);
574c0341432SJohn Baldwin 	case CRYPTO_CHACHA20:
575c0341432SJohn Baldwin 		return (&enc_xform_chacha20);
576c0341432SJohn Baldwin 	case CRYPTO_AES_CCM_16:
577c0341432SJohn Baldwin 		return (&enc_xform_ccm);
578fc8fc743SJohn Baldwin 	case CRYPTO_CHACHA20_POLY1305:
579fc8fc743SJohn Baldwin 		return (&enc_xform_chacha20_poly1305);
580c0341432SJohn Baldwin 	default:
581c0341432SJohn Baldwin 		return (NULL);
582c0341432SJohn Baldwin 	}
583c0341432SJohn Baldwin }
584c0341432SJohn Baldwin 
5856810ad6fSSam Leffler static struct cryptocap *
586d3d79e96SJohn Baldwin crypto_checkdriver(uint32_t hid)
5876810ad6fSSam Leffler {
5886810ad6fSSam Leffler 
589c0341432SJohn Baldwin 	return (hid >= crypto_drivers_size ? NULL : crypto_drivers[hid]);
590f544a528SMark Murray }
591f544a528SMark Murray 
592091d81d1SSam Leffler /*
5936810ad6fSSam Leffler  * Select a driver for a new session that supports the specified
5946810ad6fSSam Leffler  * algorithms and, optionally, is constrained according to the flags.
595091d81d1SSam Leffler  */
5966810ad6fSSam Leffler static struct cryptocap *
597c0341432SJohn Baldwin crypto_select_driver(const struct crypto_session_params *csp, int flags)
5986810ad6fSSam Leffler {
5996810ad6fSSam Leffler 	struct cryptocap *cap, *best;
600c0341432SJohn Baldwin 	int best_match, error, hid;
6016810ad6fSSam Leffler 
6026810ad6fSSam Leffler 	CRYPTO_DRIVER_ASSERT();
603091d81d1SSam Leffler 
6046810ad6fSSam Leffler 	best = NULL;
605c0341432SJohn Baldwin 	for (hid = 0; hid < crypto_drivers_size; hid++) {
606091d81d1SSam Leffler 		/*
607c0341432SJohn Baldwin 		 * If there is no driver for this slot, or the driver
608c0341432SJohn Baldwin 		 * is not appropriate (hardware or software based on
609c0341432SJohn Baldwin 		 * match), then skip.
610091d81d1SSam Leffler 		 */
611c0341432SJohn Baldwin 		cap = crypto_drivers[hid];
612c0341432SJohn Baldwin 		if (cap == NULL ||
613c0341432SJohn Baldwin 		    (cap->cc_flags & flags) == 0)
614091d81d1SSam Leffler 			continue;
615091d81d1SSam Leffler 
616c0341432SJohn Baldwin 		error = CRYPTODEV_PROBESESSION(cap->cc_dev, csp);
617c0341432SJohn Baldwin 		if (error >= 0)
618c0341432SJohn Baldwin 			continue;
619c0341432SJohn Baldwin 
620c0341432SJohn Baldwin 		/*
621c0341432SJohn Baldwin 		 * Use the driver with the highest probe value.
622c0341432SJohn Baldwin 		 * Hardware drivers use a higher probe value than
623c0341432SJohn Baldwin 		 * software.  In case of a tie, prefer the driver with
624c0341432SJohn Baldwin 		 * the fewest active sessions.
625c0341432SJohn Baldwin 		 */
626c0341432SJohn Baldwin 		if (best == NULL || error > best_match ||
627c0341432SJohn Baldwin 		    (error == best_match &&
628c0341432SJohn Baldwin 		    cap->cc_sessions < best->cc_sessions)) {
6296810ad6fSSam Leffler 			best = cap;
630c0341432SJohn Baldwin 			best_match = error;
6316810ad6fSSam Leffler 		}
6326810ad6fSSam Leffler 	}
6336810ad6fSSam Leffler 	return best;
6346810ad6fSSam Leffler }
635091d81d1SSam Leffler 
636ad557055SJohn Baldwin static enum alg_type {
637ad557055SJohn Baldwin 	ALG_NONE = 0,
638ad557055SJohn Baldwin 	ALG_CIPHER,
639ad557055SJohn Baldwin 	ALG_DIGEST,
640ad557055SJohn Baldwin 	ALG_KEYED_DIGEST,
641ad557055SJohn Baldwin 	ALG_COMPRESSION,
642ad557055SJohn Baldwin 	ALG_AEAD
643ad557055SJohn Baldwin } alg_types[] = {
644ad557055SJohn Baldwin 	[CRYPTO_SHA1_HMAC] = ALG_KEYED_DIGEST,
645ad557055SJohn Baldwin 	[CRYPTO_RIPEMD160_HMAC] = ALG_KEYED_DIGEST,
646ad557055SJohn Baldwin 	[CRYPTO_AES_CBC] = ALG_CIPHER,
647ad557055SJohn Baldwin 	[CRYPTO_SHA1] = ALG_DIGEST,
648ad557055SJohn Baldwin 	[CRYPTO_NULL_HMAC] = ALG_DIGEST,
649ad557055SJohn Baldwin 	[CRYPTO_NULL_CBC] = ALG_CIPHER,
650ad557055SJohn Baldwin 	[CRYPTO_DEFLATE_COMP] = ALG_COMPRESSION,
651ad557055SJohn Baldwin 	[CRYPTO_SHA2_256_HMAC] = ALG_KEYED_DIGEST,
652ad557055SJohn Baldwin 	[CRYPTO_SHA2_384_HMAC] = ALG_KEYED_DIGEST,
653ad557055SJohn Baldwin 	[CRYPTO_SHA2_512_HMAC] = ALG_KEYED_DIGEST,
654ad557055SJohn Baldwin 	[CRYPTO_CAMELLIA_CBC] = ALG_CIPHER,
655ad557055SJohn Baldwin 	[CRYPTO_AES_XTS] = ALG_CIPHER,
656ad557055SJohn Baldwin 	[CRYPTO_AES_ICM] = ALG_CIPHER,
657ad557055SJohn Baldwin 	[CRYPTO_AES_NIST_GMAC] = ALG_KEYED_DIGEST,
658ad557055SJohn Baldwin 	[CRYPTO_AES_NIST_GCM_16] = ALG_AEAD,
659ad557055SJohn Baldwin 	[CRYPTO_BLAKE2B] = ALG_KEYED_DIGEST,
660ad557055SJohn Baldwin 	[CRYPTO_BLAKE2S] = ALG_KEYED_DIGEST,
661ad557055SJohn Baldwin 	[CRYPTO_CHACHA20] = ALG_CIPHER,
662ad557055SJohn Baldwin 	[CRYPTO_SHA2_224_HMAC] = ALG_KEYED_DIGEST,
663ad557055SJohn Baldwin 	[CRYPTO_RIPEMD160] = ALG_DIGEST,
664ad557055SJohn Baldwin 	[CRYPTO_SHA2_224] = ALG_DIGEST,
665ad557055SJohn Baldwin 	[CRYPTO_SHA2_256] = ALG_DIGEST,
666ad557055SJohn Baldwin 	[CRYPTO_SHA2_384] = ALG_DIGEST,
667ad557055SJohn Baldwin 	[CRYPTO_SHA2_512] = ALG_DIGEST,
668ad557055SJohn Baldwin 	[CRYPTO_POLY1305] = ALG_KEYED_DIGEST,
669ad557055SJohn Baldwin 	[CRYPTO_AES_CCM_CBC_MAC] = ALG_KEYED_DIGEST,
670ad557055SJohn Baldwin 	[CRYPTO_AES_CCM_16] = ALG_AEAD,
671fc8fc743SJohn Baldwin 	[CRYPTO_CHACHA20_POLY1305] = ALG_AEAD,
672ad557055SJohn Baldwin };
673ad557055SJohn Baldwin 
674ad557055SJohn Baldwin static enum alg_type
675ad557055SJohn Baldwin alg_type(int alg)
676ad557055SJohn Baldwin {
677ad557055SJohn Baldwin 
678ad557055SJohn Baldwin 	if (alg < nitems(alg_types))
679ad557055SJohn Baldwin 		return (alg_types[alg]);
680ad557055SJohn Baldwin 	return (ALG_NONE);
681ad557055SJohn Baldwin }
682ad557055SJohn Baldwin 
683c0341432SJohn Baldwin static bool
684c0341432SJohn Baldwin alg_is_compression(int alg)
685c0341432SJohn Baldwin {
686c0341432SJohn Baldwin 
687ad557055SJohn Baldwin 	return (alg_type(alg) == ALG_COMPRESSION);
688c0341432SJohn Baldwin }
689c0341432SJohn Baldwin 
690c0341432SJohn Baldwin static bool
691c0341432SJohn Baldwin alg_is_cipher(int alg)
692c0341432SJohn Baldwin {
693c0341432SJohn Baldwin 
694ad557055SJohn Baldwin 	return (alg_type(alg) == ALG_CIPHER);
695c0341432SJohn Baldwin }
696c0341432SJohn Baldwin 
697c0341432SJohn Baldwin static bool
698c0341432SJohn Baldwin alg_is_digest(int alg)
699c0341432SJohn Baldwin {
700c0341432SJohn Baldwin 
701ad557055SJohn Baldwin 	return (alg_type(alg) == ALG_DIGEST ||
702ad557055SJohn Baldwin 	    alg_type(alg) == ALG_KEYED_DIGEST);
703c0341432SJohn Baldwin }
704c0341432SJohn Baldwin 
705c0341432SJohn Baldwin static bool
706c0341432SJohn Baldwin alg_is_keyed_digest(int alg)
707c0341432SJohn Baldwin {
708c0341432SJohn Baldwin 
709ad557055SJohn Baldwin 	return (alg_type(alg) == ALG_KEYED_DIGEST);
710c0341432SJohn Baldwin }
711c0341432SJohn Baldwin 
712c0341432SJohn Baldwin static bool
713c0341432SJohn Baldwin alg_is_aead(int alg)
714c0341432SJohn Baldwin {
715c0341432SJohn Baldwin 
716ad557055SJohn Baldwin 	return (alg_type(alg) == ALG_AEAD);
717c0341432SJohn Baldwin }
718c0341432SJohn Baldwin 
719ae18720dSJohn Baldwin static bool
720ae18720dSJohn Baldwin ccm_tag_length_valid(int len)
721ae18720dSJohn Baldwin {
722ae18720dSJohn Baldwin 	/* RFC 3610 */
723ae18720dSJohn Baldwin 	switch (len) {
724ae18720dSJohn Baldwin 	case 4:
725ae18720dSJohn Baldwin 	case 6:
726ae18720dSJohn Baldwin 	case 8:
727ae18720dSJohn Baldwin 	case 10:
728ae18720dSJohn Baldwin 	case 12:
729ae18720dSJohn Baldwin 	case 14:
730ae18720dSJohn Baldwin 	case 16:
731ae18720dSJohn Baldwin 		return (true);
732ae18720dSJohn Baldwin 	default:
733ae18720dSJohn Baldwin 		return (false);
734ae18720dSJohn Baldwin 	}
735ae18720dSJohn Baldwin }
736ae18720dSJohn Baldwin 
7377e89ae49SMarcin Wojtas #define SUPPORTED_SES (CSP_F_SEPARATE_OUTPUT | CSP_F_SEPARATE_AAD | CSP_F_ESN)
7387e89ae49SMarcin Wojtas 
739c0341432SJohn Baldwin /* Various sanity checks on crypto session parameters. */
740c0341432SJohn Baldwin static bool
741c0341432SJohn Baldwin check_csp(const struct crypto_session_params *csp)
742c0341432SJohn Baldwin {
743d8787d4fSMark Johnston 	const struct auth_hash *axf;
744c0341432SJohn Baldwin 
745c0341432SJohn Baldwin 	/* Mode-independent checks. */
7467e89ae49SMarcin Wojtas 	if ((csp->csp_flags & ~(SUPPORTED_SES)) != 0)
747c0341432SJohn Baldwin 		return (false);
748c0341432SJohn Baldwin 	if (csp->csp_ivlen < 0 || csp->csp_cipher_klen < 0 ||
749c0341432SJohn Baldwin 	    csp->csp_auth_klen < 0 || csp->csp_auth_mlen < 0)
750c0341432SJohn Baldwin 		return (false);
751c0341432SJohn Baldwin 	if (csp->csp_auth_key != NULL && csp->csp_auth_klen == 0)
752c0341432SJohn Baldwin 		return (false);
753c0341432SJohn Baldwin 	if (csp->csp_cipher_key != NULL && csp->csp_cipher_klen == 0)
754c0341432SJohn Baldwin 		return (false);
755c0341432SJohn Baldwin 
756c0341432SJohn Baldwin 	switch (csp->csp_mode) {
757c0341432SJohn Baldwin 	case CSP_MODE_COMPRESS:
758c0341432SJohn Baldwin 		if (!alg_is_compression(csp->csp_cipher_alg))
759c0341432SJohn Baldwin 			return (false);
7609c0e3d3aSJohn Baldwin 		if (csp->csp_flags & CSP_F_SEPARATE_OUTPUT)
761c0341432SJohn Baldwin 			return (false);
7629b774dc0SJohn Baldwin 		if (csp->csp_flags & CSP_F_SEPARATE_AAD)
7639b774dc0SJohn Baldwin 			return (false);
764c0341432SJohn Baldwin 		if (csp->csp_cipher_klen != 0 || csp->csp_ivlen != 0 ||
765c0341432SJohn Baldwin 		    csp->csp_auth_alg != 0 || csp->csp_auth_klen != 0 ||
766c0341432SJohn Baldwin 		    csp->csp_auth_mlen != 0)
767c0341432SJohn Baldwin 			return (false);
768c0341432SJohn Baldwin 		break;
769c0341432SJohn Baldwin 	case CSP_MODE_CIPHER:
770c0341432SJohn Baldwin 		if (!alg_is_cipher(csp->csp_cipher_alg))
771c0341432SJohn Baldwin 			return (false);
7729b774dc0SJohn Baldwin 		if (csp->csp_flags & CSP_F_SEPARATE_AAD)
7739b774dc0SJohn Baldwin 			return (false);
774c0341432SJohn Baldwin 		if (csp->csp_cipher_alg != CRYPTO_NULL_CBC) {
775c0341432SJohn Baldwin 			if (csp->csp_cipher_klen == 0)
776c0341432SJohn Baldwin 				return (false);
777c0341432SJohn Baldwin 			if (csp->csp_ivlen == 0)
778c0341432SJohn Baldwin 				return (false);
779c0341432SJohn Baldwin 		}
780c0341432SJohn Baldwin 		if (csp->csp_ivlen >= EALG_MAX_BLOCK_LEN)
781c0341432SJohn Baldwin 			return (false);
782c0341432SJohn Baldwin 		if (csp->csp_auth_alg != 0 || csp->csp_auth_klen != 0 ||
783c0341432SJohn Baldwin 		    csp->csp_auth_mlen != 0)
784c0341432SJohn Baldwin 			return (false);
785c0341432SJohn Baldwin 		break;
786c0341432SJohn Baldwin 	case CSP_MODE_DIGEST:
787c0341432SJohn Baldwin 		if (csp->csp_cipher_alg != 0 || csp->csp_cipher_klen != 0)
788c0341432SJohn Baldwin 			return (false);
789c0341432SJohn Baldwin 
7909b774dc0SJohn Baldwin 		if (csp->csp_flags & CSP_F_SEPARATE_AAD)
7919b774dc0SJohn Baldwin 			return (false);
7929b774dc0SJohn Baldwin 
793c0341432SJohn Baldwin 		/* IV is optional for digests (e.g. GMAC). */
794ae18720dSJohn Baldwin 		switch (csp->csp_auth_alg) {
795ae18720dSJohn Baldwin 		case CRYPTO_AES_CCM_CBC_MAC:
796ae18720dSJohn Baldwin 			if (csp->csp_ivlen < 7 || csp->csp_ivlen > 13)
797c0341432SJohn Baldwin 				return (false);
798ae18720dSJohn Baldwin 			break;
799ae18720dSJohn Baldwin 		case CRYPTO_AES_NIST_GMAC:
800ae18720dSJohn Baldwin 			if (csp->csp_ivlen != AES_GCM_IV_LEN)
801ae18720dSJohn Baldwin 				return (false);
802ae18720dSJohn Baldwin 			break;
803ae18720dSJohn Baldwin 		default:
804ae18720dSJohn Baldwin 			if (csp->csp_ivlen != 0)
805ae18720dSJohn Baldwin 				return (false);
806ae18720dSJohn Baldwin 			break;
807ae18720dSJohn Baldwin 		}
808ae18720dSJohn Baldwin 
809c0341432SJohn Baldwin 		if (!alg_is_digest(csp->csp_auth_alg))
810c0341432SJohn Baldwin 			return (false);
811c0341432SJohn Baldwin 
812c0341432SJohn Baldwin 		/* Key is optional for BLAKE2 digests. */
813c0341432SJohn Baldwin 		if (csp->csp_auth_alg == CRYPTO_BLAKE2B ||
814c0341432SJohn Baldwin 		    csp->csp_auth_alg == CRYPTO_BLAKE2S)
815c0341432SJohn Baldwin 			;
816c0341432SJohn Baldwin 		else if (alg_is_keyed_digest(csp->csp_auth_alg)) {
817c0341432SJohn Baldwin 			if (csp->csp_auth_klen == 0)
818c0341432SJohn Baldwin 				return (false);
819c0341432SJohn Baldwin 		} else {
820c0341432SJohn Baldwin 			if (csp->csp_auth_klen != 0)
821c0341432SJohn Baldwin 				return (false);
822c0341432SJohn Baldwin 		}
823c0341432SJohn Baldwin 		if (csp->csp_auth_mlen != 0) {
824c0341432SJohn Baldwin 			axf = crypto_auth_hash(csp);
825c0341432SJohn Baldwin 			if (axf == NULL || csp->csp_auth_mlen > axf->hashsize)
826c0341432SJohn Baldwin 				return (false);
827ae18720dSJohn Baldwin 
828ae18720dSJohn Baldwin 			if (csp->csp_auth_alg == CRYPTO_AES_CCM_CBC_MAC &&
829ae18720dSJohn Baldwin 			    !ccm_tag_length_valid(csp->csp_auth_mlen))
830ae18720dSJohn Baldwin 				return (false);
831c0341432SJohn Baldwin 		}
832c0341432SJohn Baldwin 		break;
833c0341432SJohn Baldwin 	case CSP_MODE_AEAD:
834c0341432SJohn Baldwin 		if (!alg_is_aead(csp->csp_cipher_alg))
835c0341432SJohn Baldwin 			return (false);
836c0341432SJohn Baldwin 		if (csp->csp_cipher_klen == 0)
837c0341432SJohn Baldwin 			return (false);
838c0341432SJohn Baldwin 		if (csp->csp_ivlen == 0 ||
839c0341432SJohn Baldwin 		    csp->csp_ivlen >= EALG_MAX_BLOCK_LEN)
840c0341432SJohn Baldwin 			return (false);
841c0341432SJohn Baldwin 		if (csp->csp_auth_alg != 0 || csp->csp_auth_klen != 0)
842c0341432SJohn Baldwin 			return (false);
843c0341432SJohn Baldwin 
844c0341432SJohn Baldwin 		switch (csp->csp_cipher_alg) {
845c0341432SJohn Baldwin 		case CRYPTO_AES_CCM_16:
846ae18720dSJohn Baldwin 			if (csp->csp_auth_mlen != 0 &&
847ae18720dSJohn Baldwin 			    !ccm_tag_length_valid(csp->csp_auth_mlen))
848ae18720dSJohn Baldwin 				return (false);
849ae18720dSJohn Baldwin 
850ae18720dSJohn Baldwin 			if (csp->csp_ivlen < 7 || csp->csp_ivlen > 13)
851ae18720dSJohn Baldwin 				return (false);
852ae18720dSJohn Baldwin 			break;
853ae18720dSJohn Baldwin 		case CRYPTO_AES_NIST_GCM_16:
854*6e17a2e0SJohn Baldwin 			if (csp->csp_auth_mlen > AES_GMAC_HASH_LEN)
855*6e17a2e0SJohn Baldwin 				return (false);
856*6e17a2e0SJohn Baldwin 
857*6e17a2e0SJohn Baldwin 			if (csp->csp_ivlen != AES_GCM_IV_LEN)
858c0341432SJohn Baldwin 				return (false);
859c0341432SJohn Baldwin 			break;
86042dcd395SJohn Baldwin 		case CRYPTO_CHACHA20_POLY1305:
86142dcd395SJohn Baldwin 			if (csp->csp_ivlen != 8 && csp->csp_ivlen != 12)
86242dcd395SJohn Baldwin 				return (false);
86342dcd395SJohn Baldwin 			if (csp->csp_auth_mlen > POLY1305_HASH_LEN)
86442dcd395SJohn Baldwin 				return (false);
86542dcd395SJohn Baldwin 			break;
866c0341432SJohn Baldwin 		}
867c0341432SJohn Baldwin 		break;
868c0341432SJohn Baldwin 	case CSP_MODE_ETA:
869c0341432SJohn Baldwin 		if (!alg_is_cipher(csp->csp_cipher_alg))
870c0341432SJohn Baldwin 			return (false);
871c0341432SJohn Baldwin 		if (csp->csp_cipher_alg != CRYPTO_NULL_CBC) {
872c0341432SJohn Baldwin 			if (csp->csp_cipher_klen == 0)
873c0341432SJohn Baldwin 				return (false);
874c0341432SJohn Baldwin 			if (csp->csp_ivlen == 0)
875c0341432SJohn Baldwin 				return (false);
876c0341432SJohn Baldwin 		}
877c0341432SJohn Baldwin 		if (csp->csp_ivlen >= EALG_MAX_BLOCK_LEN)
878c0341432SJohn Baldwin 			return (false);
879c0341432SJohn Baldwin 		if (!alg_is_digest(csp->csp_auth_alg))
880c0341432SJohn Baldwin 			return (false);
881c0341432SJohn Baldwin 
882c0341432SJohn Baldwin 		/* Key is optional for BLAKE2 digests. */
883c0341432SJohn Baldwin 		if (csp->csp_auth_alg == CRYPTO_BLAKE2B ||
884c0341432SJohn Baldwin 		    csp->csp_auth_alg == CRYPTO_BLAKE2S)
885c0341432SJohn Baldwin 			;
886c0341432SJohn Baldwin 		else if (alg_is_keyed_digest(csp->csp_auth_alg)) {
887c0341432SJohn Baldwin 			if (csp->csp_auth_klen == 0)
888c0341432SJohn Baldwin 				return (false);
889c0341432SJohn Baldwin 		} else {
890c0341432SJohn Baldwin 			if (csp->csp_auth_klen != 0)
891c0341432SJohn Baldwin 				return (false);
892c0341432SJohn Baldwin 		}
893c0341432SJohn Baldwin 		if (csp->csp_auth_mlen != 0) {
894c0341432SJohn Baldwin 			axf = crypto_auth_hash(csp);
895c0341432SJohn Baldwin 			if (axf == NULL || csp->csp_auth_mlen > axf->hashsize)
896c0341432SJohn Baldwin 				return (false);
897c0341432SJohn Baldwin 		}
898c0341432SJohn Baldwin 		break;
899c0341432SJohn Baldwin 	default:
900c0341432SJohn Baldwin 		return (false);
901c0341432SJohn Baldwin 	}
902c0341432SJohn Baldwin 
903c0341432SJohn Baldwin 	return (true);
904c0341432SJohn Baldwin }
905c0341432SJohn Baldwin 
906c0341432SJohn Baldwin /*
907c0341432SJohn Baldwin  * Delete a session after it has been detached from its driver.
908c0341432SJohn Baldwin  */
909c0341432SJohn Baldwin static void
910c0341432SJohn Baldwin crypto_deletesession(crypto_session_t cses)
911c0341432SJohn Baldwin {
912c0341432SJohn Baldwin 	struct cryptocap *cap;
913c0341432SJohn Baldwin 
914c0341432SJohn Baldwin 	cap = cses->cap;
915c0341432SJohn Baldwin 
916d1816248SMark Johnston 	zfree(cses, M_CRYPTO_DATA);
917c0341432SJohn Baldwin 
918c0341432SJohn Baldwin 	CRYPTO_DRIVER_LOCK();
919c0341432SJohn Baldwin 	cap->cc_sessions--;
920c0341432SJohn Baldwin 	if (cap->cc_sessions == 0 && cap->cc_flags & CRYPTOCAP_F_CLEANUP)
921c0341432SJohn Baldwin 		wakeup(cap);
922c0341432SJohn Baldwin 	CRYPTO_DRIVER_UNLOCK();
923c0341432SJohn Baldwin 	cap_rele(cap);
924c0341432SJohn Baldwin }
925c0341432SJohn Baldwin 
926694e0113SPawel Jakub Dawidek /*
9276810ad6fSSam Leffler  * Create a new session.  The crid argument specifies a crypto
9286810ad6fSSam Leffler  * driver to use or constraints on a driver to select (hardware
9296810ad6fSSam Leffler  * only, software only, either).  Whatever driver is selected
9306810ad6fSSam Leffler  * must be capable of the requested crypto algorithms.
931694e0113SPawel Jakub Dawidek  */
9326810ad6fSSam Leffler int
933c0341432SJohn Baldwin crypto_newsession(crypto_session_t *cses,
934c0341432SJohn Baldwin     const struct crypto_session_params *csp, int crid)
9356810ad6fSSam Leffler {
93698d788c8SMark Johnston 	static uint64_t sessid = 0;
9371b0909d5SConrad Meyer 	crypto_session_t res;
9386810ad6fSSam Leffler 	struct cryptocap *cap;
9396810ad6fSSam Leffler 	int err;
9406810ad6fSSam Leffler 
941c0341432SJohn Baldwin 	if (!check_csp(csp))
942c0341432SJohn Baldwin 		return (EINVAL);
943c0341432SJohn Baldwin 
9441b0909d5SConrad Meyer 	res = NULL;
9451b0909d5SConrad Meyer 
9466810ad6fSSam Leffler 	CRYPTO_DRIVER_LOCK();
9476810ad6fSSam Leffler 	if ((crid & (CRYPTOCAP_F_HARDWARE | CRYPTOCAP_F_SOFTWARE)) == 0) {
948694e0113SPawel Jakub Dawidek 		/*
9496810ad6fSSam Leffler 		 * Use specified driver; verify it is capable.
950694e0113SPawel Jakub Dawidek 		 */
9516810ad6fSSam Leffler 		cap = crypto_checkdriver(crid);
952c0341432SJohn Baldwin 		if (cap != NULL && CRYPTODEV_PROBESESSION(cap->cc_dev, csp) > 0)
953694e0113SPawel Jakub Dawidek 			cap = NULL;
9546810ad6fSSam Leffler 	} else {
9556810ad6fSSam Leffler 		/*
9566810ad6fSSam Leffler 		 * No requested driver; select based on crid flags.
9576810ad6fSSam Leffler 		 */
958c0341432SJohn Baldwin 		cap = crypto_select_driver(csp, crid);
959694e0113SPawel Jakub Dawidek 	}
9601b0909d5SConrad Meyer 	if (cap == NULL) {
961c0341432SJohn Baldwin 		CRYPTO_DRIVER_UNLOCK();
96208fca7a5SJohn-Mark Gurney 		CRYPTDEB("no driver");
963c0341432SJohn Baldwin 		return (EOPNOTSUPP);
96408fca7a5SJohn-Mark Gurney 	}
965c0341432SJohn Baldwin 	cap_ref(cap);
9661b0909d5SConrad Meyer 	cap->cc_sessions++;
967091d81d1SSam Leffler 	CRYPTO_DRIVER_UNLOCK();
9681b0909d5SConrad Meyer 
9698adcc757SMark Johnston 	/* Allocate a single block for the generic session and driver softc. */
970d1816248SMark Johnston 	res = malloc(sizeof(*res) + cap->cc_session_size, M_CRYPTO_DATA,
971d1816248SMark Johnston 	    M_WAITOK | M_ZERO);
972c0341432SJohn Baldwin 	res->cap = cap;
973c0341432SJohn Baldwin 	res->csp = *csp;
97498d788c8SMark Johnston 	res->id = atomic_fetchadd_64(&sessid, 1);
9751b0909d5SConrad Meyer 
9761b0909d5SConrad Meyer 	/* Call the driver initialization routine. */
977c0341432SJohn Baldwin 	err = CRYPTODEV_NEWSESSION(cap->cc_dev, res, csp);
9781b0909d5SConrad Meyer 	if (err != 0) {
9791b0909d5SConrad Meyer 		CRYPTDEB("dev newsession failed: %d", err);
980c0341432SJohn Baldwin 		crypto_deletesession(res);
981c0341432SJohn Baldwin 		return (err);
9821b0909d5SConrad Meyer 	}
9831b0909d5SConrad Meyer 
9841b0909d5SConrad Meyer 	*cses = res;
985c0341432SJohn Baldwin 	return (0);
9864acae0acSPawel Jakub Dawidek }
9874acae0acSPawel Jakub Dawidek 
988091d81d1SSam Leffler /*
989091d81d1SSam Leffler  * Delete an existing session (or a reserved session on an unregistered
990091d81d1SSam Leffler  * driver).
991091d81d1SSam Leffler  */
9921b0909d5SConrad Meyer void
9931b0909d5SConrad Meyer crypto_freesession(crypto_session_t cses)
994091d81d1SSam Leffler {
9954acae0acSPawel Jakub Dawidek 	struct cryptocap *cap;
9961b0909d5SConrad Meyer 
9971b0909d5SConrad Meyer 	if (cses == NULL)
9981b0909d5SConrad Meyer 		return;
999091d81d1SSam Leffler 
1000c0341432SJohn Baldwin 	cap = cses->cap;
1001091d81d1SSam Leffler 
1002091d81d1SSam Leffler 	/* Call the driver cleanup routine, if available. */
10031b0909d5SConrad Meyer 	CRYPTODEV_FREESESSION(cap->cc_dev, cses);
10041b0909d5SConrad Meyer 
1005c0341432SJohn Baldwin 	crypto_deletesession(cses);
1006091d81d1SSam Leffler }
1007091d81d1SSam Leffler 
1008091d81d1SSam Leffler /*
1009c0341432SJohn Baldwin  * Return a new driver id.  Registers a driver with the system so that
1010c0341432SJohn Baldwin  * it can be probed by subsequent sessions.
1011091d81d1SSam Leffler  */
1012091d81d1SSam Leffler int32_t
10131b0909d5SConrad Meyer crypto_get_driverid(device_t dev, size_t sessionsize, int flags)
1014091d81d1SSam Leffler {
1015c0341432SJohn Baldwin 	struct cryptocap *cap, **newdrv;
1016091d81d1SSam Leffler 	int i;
1017091d81d1SSam Leffler 
10186810ad6fSSam Leffler 	if ((flags & (CRYPTOCAP_F_HARDWARE | CRYPTOCAP_F_SOFTWARE)) == 0) {
1019c0341432SJohn Baldwin 		device_printf(dev,
1020c0341432SJohn Baldwin 		    "no flags specified when registering driver\n");
10216810ad6fSSam Leffler 		return -1;
10226810ad6fSSam Leffler 	}
10236810ad6fSSam Leffler 
1024c0341432SJohn Baldwin 	cap = malloc(sizeof(*cap), M_CRYPTO_DATA, M_WAITOK | M_ZERO);
1025c0341432SJohn Baldwin 	cap->cc_dev = dev;
1026c0341432SJohn Baldwin 	cap->cc_session_size = sessionsize;
1027c0341432SJohn Baldwin 	cap->cc_flags = flags;
1028c0341432SJohn Baldwin 	refcount_init(&cap->cc_refs, 1);
1029c0341432SJohn Baldwin 
1030091d81d1SSam Leffler 	CRYPTO_DRIVER_LOCK();
1031c0341432SJohn Baldwin 	for (;;) {
1032c0341432SJohn Baldwin 		for (i = 0; i < crypto_drivers_size; i++) {
1033c0341432SJohn Baldwin 			if (crypto_drivers[i] == NULL)
1034091d81d1SSam Leffler 				break;
10354acae0acSPawel Jakub Dawidek 		}
1036c0341432SJohn Baldwin 
1037c0341432SJohn Baldwin 		if (i < crypto_drivers_size)
1038c0341432SJohn Baldwin 			break;
1039091d81d1SSam Leffler 
1040091d81d1SSam Leffler 		/* Out of entries, allocate some more. */
1041c0341432SJohn Baldwin 
1042c0341432SJohn Baldwin 		if (2 * crypto_drivers_size <= crypto_drivers_size) {
1043091d81d1SSam Leffler 			CRYPTO_DRIVER_UNLOCK();
1044091d81d1SSam Leffler 			printf("crypto: driver count wraparound!\n");
1045c0341432SJohn Baldwin 			cap_rele(cap);
1046c0341432SJohn Baldwin 			return (-1);
1047091d81d1SSam Leffler 		}
1048091d81d1SSam Leffler 		CRYPTO_DRIVER_UNLOCK();
1049091d81d1SSam Leffler 
1050c0341432SJohn Baldwin 		newdrv = malloc(2 * crypto_drivers_size *
1051c0341432SJohn Baldwin 		    sizeof(*crypto_drivers), M_CRYPTO_DATA, M_WAITOK | M_ZERO);
1052091d81d1SSam Leffler 
1053c0341432SJohn Baldwin 		CRYPTO_DRIVER_LOCK();
1054c0341432SJohn Baldwin 		memcpy(newdrv, crypto_drivers,
1055c0341432SJohn Baldwin 		    crypto_drivers_size * sizeof(*crypto_drivers));
1056c0341432SJohn Baldwin 
1057c0341432SJohn Baldwin 		crypto_drivers_size *= 2;
1058091d81d1SSam Leffler 
1059091d81d1SSam Leffler 		free(crypto_drivers, M_CRYPTO_DATA);
1060091d81d1SSam Leffler 		crypto_drivers = newdrv;
1061091d81d1SSam Leffler 	}
1062091d81d1SSam Leffler 
1063c0341432SJohn Baldwin 	cap->cc_hid = i;
1064c0341432SJohn Baldwin 	crypto_drivers[i] = cap;
1065c0341432SJohn Baldwin 	CRYPTO_DRIVER_UNLOCK();
1066c0341432SJohn Baldwin 
1067091d81d1SSam Leffler 	if (bootverbose)
1068d7d2f0d4SConrad Meyer 		printf("crypto: assign %s driver id %u, flags 0x%x\n",
10696810ad6fSSam Leffler 		    device_get_nameunit(dev), i, flags);
1070091d81d1SSam Leffler 
1071091d81d1SSam Leffler 	return i;
1072091d81d1SSam Leffler }
1073091d81d1SSam Leffler 
10746810ad6fSSam Leffler /*
10756810ad6fSSam Leffler  * Lookup a driver by name.  We match against the full device
10766810ad6fSSam Leffler  * name and unit, and against just the name.  The latter gives
10776810ad6fSSam Leffler  * us a simple widlcarding by device name.  On success return the
10786810ad6fSSam Leffler  * driver/hardware identifier; otherwise return -1.
10796810ad6fSSam Leffler  */
10806810ad6fSSam Leffler int
10816810ad6fSSam Leffler crypto_find_driver(const char *match)
1082091d81d1SSam Leffler {
1083c0341432SJohn Baldwin 	struct cryptocap *cap;
10846810ad6fSSam Leffler 	int i, len = strlen(match);
10856810ad6fSSam Leffler 
10866810ad6fSSam Leffler 	CRYPTO_DRIVER_LOCK();
1087c0341432SJohn Baldwin 	for (i = 0; i < crypto_drivers_size; i++) {
1088c0341432SJohn Baldwin 		if (crypto_drivers[i] == NULL)
10896810ad6fSSam Leffler 			continue;
1090c0341432SJohn Baldwin 		cap = crypto_drivers[i];
1091c0341432SJohn Baldwin 		if (strncmp(match, device_get_nameunit(cap->cc_dev), len) == 0 ||
1092c0341432SJohn Baldwin 		    strncmp(match, device_get_name(cap->cc_dev), len) == 0) {
1093c0341432SJohn Baldwin 			CRYPTO_DRIVER_UNLOCK();
1094c0341432SJohn Baldwin 			return (i);
1095c0341432SJohn Baldwin 		}
10966810ad6fSSam Leffler 	}
10976810ad6fSSam Leffler 	CRYPTO_DRIVER_UNLOCK();
1098c0341432SJohn Baldwin 	return (-1);
10996810ad6fSSam Leffler }
11006810ad6fSSam Leffler 
11016810ad6fSSam Leffler /*
11026810ad6fSSam Leffler  * Return the device_t for the specified driver or NULL
11036810ad6fSSam Leffler  * if the driver identifier is invalid.
11046810ad6fSSam Leffler  */
11056810ad6fSSam Leffler device_t
11066810ad6fSSam Leffler crypto_find_device_byhid(int hid)
11076810ad6fSSam Leffler {
1108c0341432SJohn Baldwin 	struct cryptocap *cap;
1109c0341432SJohn Baldwin 	device_t dev;
1110c0341432SJohn Baldwin 
1111c0341432SJohn Baldwin 	dev = NULL;
1112c0341432SJohn Baldwin 	CRYPTO_DRIVER_LOCK();
1113c0341432SJohn Baldwin 	cap = crypto_checkdriver(hid);
1114c0341432SJohn Baldwin 	if (cap != NULL)
1115c0341432SJohn Baldwin 		dev = cap->cc_dev;
1116c0341432SJohn Baldwin 	CRYPTO_DRIVER_UNLOCK();
1117c0341432SJohn Baldwin 	return (dev);
11186810ad6fSSam Leffler }
11196810ad6fSSam Leffler 
11206810ad6fSSam Leffler /*
11216810ad6fSSam Leffler  * Return the device/driver capabilities.
11226810ad6fSSam Leffler  */
11236810ad6fSSam Leffler int
11246810ad6fSSam Leffler crypto_getcaps(int hid)
11256810ad6fSSam Leffler {
1126c0341432SJohn Baldwin 	struct cryptocap *cap;
1127c0341432SJohn Baldwin 	int flags;
1128c0341432SJohn Baldwin 
1129c0341432SJohn Baldwin 	flags = 0;
1130c0341432SJohn Baldwin 	CRYPTO_DRIVER_LOCK();
1131c0341432SJohn Baldwin 	cap = crypto_checkdriver(hid);
1132c0341432SJohn Baldwin 	if (cap != NULL)
1133c0341432SJohn Baldwin 		flags = cap->cc_flags;
1134c0341432SJohn Baldwin 	CRYPTO_DRIVER_UNLOCK();
1135c0341432SJohn Baldwin 	return (flags);
1136091d81d1SSam Leffler }
1137091d81d1SSam Leffler 
1138091d81d1SSam Leffler /*
1139091d81d1SSam Leffler  * Unregister all algorithms associated with a crypto driver.
1140091d81d1SSam Leffler  * If there are pending sessions using it, leave enough information
1141091d81d1SSam Leffler  * around so that subsequent calls using those sessions will
1142091d81d1SSam Leffler  * correctly detect the driver has been unregistered and reroute
1143091d81d1SSam Leffler  * requests.
1144091d81d1SSam Leffler  */
1145091d81d1SSam Leffler int
1146d3d79e96SJohn Baldwin crypto_unregister_all(uint32_t driverid)
1147091d81d1SSam Leffler {
1148091d81d1SSam Leffler 	struct cryptocap *cap;
1149091d81d1SSam Leffler 
1150091d81d1SSam Leffler 	CRYPTO_DRIVER_LOCK();
1151091d81d1SSam Leffler 	cap = crypto_checkdriver(driverid);
1152c0341432SJohn Baldwin 	if (cap == NULL) {
1153091d81d1SSam Leffler 		CRYPTO_DRIVER_UNLOCK();
1154c0341432SJohn Baldwin 		return (EINVAL);
1155c0341432SJohn Baldwin 	}
11566810ad6fSSam Leffler 
1157c0341432SJohn Baldwin 	cap->cc_flags |= CRYPTOCAP_F_CLEANUP;
1158c0341432SJohn Baldwin 	crypto_drivers[driverid] = NULL;
1159c0341432SJohn Baldwin 
1160c0341432SJohn Baldwin 	/*
1161c0341432SJohn Baldwin 	 * XXX: This doesn't do anything to kick sessions that
1162c0341432SJohn Baldwin 	 * have no pending operations.
1163c0341432SJohn Baldwin 	 */
116476681661SJohn Baldwin 	while (cap->cc_sessions != 0)
1165c0341432SJohn Baldwin 		mtx_sleep(cap, &crypto_drivers_mtx, 0, "cryunreg", 0);
1166c0341432SJohn Baldwin 	CRYPTO_DRIVER_UNLOCK();
1167c0341432SJohn Baldwin 	cap_rele(cap);
1168c0341432SJohn Baldwin 
1169c0341432SJohn Baldwin 	return (0);
1170091d81d1SSam Leffler }
1171091d81d1SSam Leffler 
1172091d81d1SSam Leffler /*
1173091d81d1SSam Leffler  * Clear blockage on a driver.  The what parameter indicates whether
1174091d81d1SSam Leffler  * the driver is now ready for cryptop's and/or cryptokop's.
1175091d81d1SSam Leffler  */
1176091d81d1SSam Leffler int
1177d3d79e96SJohn Baldwin crypto_unblock(uint32_t driverid, int what)
1178091d81d1SSam Leffler {
1179091d81d1SSam Leffler 	struct cryptocap *cap;
11803a865c82SPawel Jakub Dawidek 	int err;
1181091d81d1SSam Leffler 
1182091d81d1SSam Leffler 	CRYPTO_Q_LOCK();
1183091d81d1SSam Leffler 	cap = crypto_checkdriver(driverid);
1184091d81d1SSam Leffler 	if (cap != NULL) {
11853a865c82SPawel Jakub Dawidek 		if (what & CRYPTO_SYMQ)
1186091d81d1SSam Leffler 			cap->cc_qblocked = 0;
11873a865c82SPawel Jakub Dawidek 		if (crp_sleep)
11881a91ccccSSam Leffler 			wakeup_one(&crp_q);
1189091d81d1SSam Leffler 		err = 0;
1190091d81d1SSam Leffler 	} else
1191091d81d1SSam Leffler 		err = EINVAL;
1192091d81d1SSam Leffler 	CRYPTO_Q_UNLOCK();
1193091d81d1SSam Leffler 
1194091d81d1SSam Leffler 	return err;
1195091d81d1SSam Leffler }
1196091d81d1SSam Leffler 
11979c0e3d3aSJohn Baldwin size_t
11989c0e3d3aSJohn Baldwin crypto_buffer_len(struct crypto_buffer *cb)
11999c0e3d3aSJohn Baldwin {
12009c0e3d3aSJohn Baldwin 	switch (cb->cb_type) {
12019c0e3d3aSJohn Baldwin 	case CRYPTO_BUF_CONTIG:
12029c0e3d3aSJohn Baldwin 		return (cb->cb_buf_len);
12039c0e3d3aSJohn Baldwin 	case CRYPTO_BUF_MBUF:
12049c0e3d3aSJohn Baldwin 		if (cb->cb_mbuf->m_flags & M_PKTHDR)
12059c0e3d3aSJohn Baldwin 			return (cb->cb_mbuf->m_pkthdr.len);
12069c0e3d3aSJohn Baldwin 		return (m_length(cb->cb_mbuf, NULL));
1207883a0196SJohn Baldwin 	case CRYPTO_BUF_SINGLE_MBUF:
1208883a0196SJohn Baldwin 		return (cb->cb_mbuf->m_len);
1209e6f6d0c9SAlan Somers 	case CRYPTO_BUF_VMPAGE:
1210e6f6d0c9SAlan Somers 		return (cb->cb_vm_page_len);
12119c0e3d3aSJohn Baldwin 	case CRYPTO_BUF_UIO:
12129c0e3d3aSJohn Baldwin 		return (cb->cb_uio->uio_resid);
12139c0e3d3aSJohn Baldwin 	default:
12149c0e3d3aSJohn Baldwin 		return (0);
12159c0e3d3aSJohn Baldwin 	}
12169c0e3d3aSJohn Baldwin }
12179c0e3d3aSJohn Baldwin 
1218c0341432SJohn Baldwin #ifdef INVARIANTS
1219c0341432SJohn Baldwin /* Various sanity checks on crypto requests. */
1220c0341432SJohn Baldwin static void
12219c0e3d3aSJohn Baldwin cb_sanity(struct crypto_buffer *cb, const char *name)
12229c0e3d3aSJohn Baldwin {
12239c0e3d3aSJohn Baldwin 	KASSERT(cb->cb_type > CRYPTO_BUF_NONE && cb->cb_type <= CRYPTO_BUF_LAST,
12249c0e3d3aSJohn Baldwin 	    ("incoming crp with invalid %s buffer type", name));
1225e6f6d0c9SAlan Somers 	switch (cb->cb_type) {
1226e6f6d0c9SAlan Somers 	case CRYPTO_BUF_CONTIG:
12279c0e3d3aSJohn Baldwin 		KASSERT(cb->cb_buf_len >= 0,
12289c0e3d3aSJohn Baldwin 		    ("incoming crp with -ve %s buffer length", name));
1229e6f6d0c9SAlan Somers 		break;
1230e6f6d0c9SAlan Somers 	case CRYPTO_BUF_VMPAGE:
1231e6f6d0c9SAlan Somers 		KASSERT(CRYPTO_HAS_VMPAGE,
1232e6f6d0c9SAlan Somers 		    ("incoming crp uses dmap on supported arch"));
1233e6f6d0c9SAlan Somers 		KASSERT(cb->cb_vm_page_len >= 0,
1234e6f6d0c9SAlan Somers 		    ("incoming crp with -ve %s buffer length", name));
1235e6f6d0c9SAlan Somers 		KASSERT(cb->cb_vm_page_offset >= 0,
1236e6f6d0c9SAlan Somers 		    ("incoming crp with -ve %s buffer offset", name));
1237e6f6d0c9SAlan Somers 		KASSERT(cb->cb_vm_page_offset < PAGE_SIZE,
1238e6f6d0c9SAlan Somers 		    ("incoming crp with %s buffer offset greater than page size"
1239e6f6d0c9SAlan Somers 		     , name));
1240e6f6d0c9SAlan Somers 		break;
1241e6f6d0c9SAlan Somers 	default:
1242e6f6d0c9SAlan Somers 		break;
1243e6f6d0c9SAlan Somers 	}
12449c0e3d3aSJohn Baldwin }
12459c0e3d3aSJohn Baldwin 
12469c0e3d3aSJohn Baldwin static void
1247c0341432SJohn Baldwin crp_sanity(struct cryptop *crp)
1248c0341432SJohn Baldwin {
1249c0341432SJohn Baldwin 	struct crypto_session_params *csp;
12509c0e3d3aSJohn Baldwin 	struct crypto_buffer *out;
12519c0e3d3aSJohn Baldwin 	size_t ilen, len, olen;
1252c0341432SJohn Baldwin 
1253c0341432SJohn Baldwin 	KASSERT(crp->crp_session != NULL, ("incoming crp without a session"));
12549c0e3d3aSJohn Baldwin 	KASSERT(crp->crp_obuf.cb_type >= CRYPTO_BUF_NONE &&
12559c0e3d3aSJohn Baldwin 	    crp->crp_obuf.cb_type <= CRYPTO_BUF_LAST,
12569c0e3d3aSJohn Baldwin 	    ("incoming crp with invalid output buffer type"));
1257c0341432SJohn Baldwin 	KASSERT(crp->crp_etype == 0, ("incoming crp with error"));
1258c0341432SJohn Baldwin 	KASSERT(!(crp->crp_flags & CRYPTO_F_DONE),
1259c0341432SJohn Baldwin 	    ("incoming crp already done"));
1260c0341432SJohn Baldwin 
1261c0341432SJohn Baldwin 	csp = &crp->crp_session->csp;
12629c0e3d3aSJohn Baldwin 	cb_sanity(&crp->crp_buf, "input");
12639c0e3d3aSJohn Baldwin 	ilen = crypto_buffer_len(&crp->crp_buf);
12649c0e3d3aSJohn Baldwin 	olen = ilen;
12659c0e3d3aSJohn Baldwin 	out = NULL;
12669c0e3d3aSJohn Baldwin 	if (csp->csp_flags & CSP_F_SEPARATE_OUTPUT) {
12679c0e3d3aSJohn Baldwin 		if (crp->crp_obuf.cb_type != CRYPTO_BUF_NONE) {
12689c0e3d3aSJohn Baldwin 			cb_sanity(&crp->crp_obuf, "output");
12699c0e3d3aSJohn Baldwin 			out = &crp->crp_obuf;
12709c0e3d3aSJohn Baldwin 			olen = crypto_buffer_len(out);
12719c0e3d3aSJohn Baldwin 		}
12729c0e3d3aSJohn Baldwin 	} else
12739c0e3d3aSJohn Baldwin 		KASSERT(crp->crp_obuf.cb_type == CRYPTO_BUF_NONE,
12749c0e3d3aSJohn Baldwin 		    ("incoming crp with separate output buffer "
12759c0e3d3aSJohn Baldwin 		    "but no session support"));
12769c0e3d3aSJohn Baldwin 
1277c0341432SJohn Baldwin 	switch (csp->csp_mode) {
1278c0341432SJohn Baldwin 	case CSP_MODE_COMPRESS:
1279c0341432SJohn Baldwin 		KASSERT(crp->crp_op == CRYPTO_OP_COMPRESS ||
1280c0341432SJohn Baldwin 		    crp->crp_op == CRYPTO_OP_DECOMPRESS,
1281c0341432SJohn Baldwin 		    ("invalid compression op %x", crp->crp_op));
1282c0341432SJohn Baldwin 		break;
1283c0341432SJohn Baldwin 	case CSP_MODE_CIPHER:
1284c0341432SJohn Baldwin 		KASSERT(crp->crp_op == CRYPTO_OP_ENCRYPT ||
1285c0341432SJohn Baldwin 		    crp->crp_op == CRYPTO_OP_DECRYPT,
1286c0341432SJohn Baldwin 		    ("invalid cipher op %x", crp->crp_op));
1287c0341432SJohn Baldwin 		break;
1288c0341432SJohn Baldwin 	case CSP_MODE_DIGEST:
1289c0341432SJohn Baldwin 		KASSERT(crp->crp_op == CRYPTO_OP_COMPUTE_DIGEST ||
1290c0341432SJohn Baldwin 		    crp->crp_op == CRYPTO_OP_VERIFY_DIGEST,
1291c0341432SJohn Baldwin 		    ("invalid digest op %x", crp->crp_op));
1292c0341432SJohn Baldwin 		break;
1293c0341432SJohn Baldwin 	case CSP_MODE_AEAD:
1294c0341432SJohn Baldwin 		KASSERT(crp->crp_op ==
1295c0341432SJohn Baldwin 		    (CRYPTO_OP_ENCRYPT | CRYPTO_OP_COMPUTE_DIGEST) ||
1296c0341432SJohn Baldwin 		    crp->crp_op ==
1297c0341432SJohn Baldwin 		    (CRYPTO_OP_DECRYPT | CRYPTO_OP_VERIFY_DIGEST),
1298c0341432SJohn Baldwin 		    ("invalid AEAD op %x", crp->crp_op));
1299c0341432SJohn Baldwin 		KASSERT(crp->crp_flags & CRYPTO_F_IV_SEPARATE,
1300fc8fc743SJohn Baldwin 		    ("AEAD without a separate IV"));
1301c0341432SJohn Baldwin 		break;
1302c0341432SJohn Baldwin 	case CSP_MODE_ETA:
1303c0341432SJohn Baldwin 		KASSERT(crp->crp_op ==
1304c0341432SJohn Baldwin 		    (CRYPTO_OP_ENCRYPT | CRYPTO_OP_COMPUTE_DIGEST) ||
1305c0341432SJohn Baldwin 		    crp->crp_op ==
1306c0341432SJohn Baldwin 		    (CRYPTO_OP_DECRYPT | CRYPTO_OP_VERIFY_DIGEST),
1307c0341432SJohn Baldwin 		    ("invalid ETA op %x", crp->crp_op));
1308c0341432SJohn Baldwin 		break;
1309c0341432SJohn Baldwin 	}
1310c0341432SJohn Baldwin 	if (csp->csp_mode == CSP_MODE_AEAD || csp->csp_mode == CSP_MODE_ETA) {
13119b774dc0SJohn Baldwin 		if (crp->crp_aad == NULL) {
1312c0341432SJohn Baldwin 			KASSERT(crp->crp_aad_start == 0 ||
13139c0e3d3aSJohn Baldwin 			    crp->crp_aad_start < ilen,
1314c0341432SJohn Baldwin 			    ("invalid AAD start"));
13159b774dc0SJohn Baldwin 			KASSERT(crp->crp_aad_length != 0 ||
13169b774dc0SJohn Baldwin 			    crp->crp_aad_start == 0,
1317c0341432SJohn Baldwin 			    ("AAD with zero length and non-zero start"));
1318c0341432SJohn Baldwin 			KASSERT(crp->crp_aad_length == 0 ||
13199c0e3d3aSJohn Baldwin 			    crp->crp_aad_start + crp->crp_aad_length <= ilen,
1320c0341432SJohn Baldwin 			    ("AAD outside input length"));
1321c0341432SJohn Baldwin 		} else {
13229b774dc0SJohn Baldwin 			KASSERT(csp->csp_flags & CSP_F_SEPARATE_AAD,
13239b774dc0SJohn Baldwin 			    ("session doesn't support separate AAD buffer"));
13249b774dc0SJohn Baldwin 			KASSERT(crp->crp_aad_start == 0,
13259b774dc0SJohn Baldwin 			    ("separate AAD buffer with non-zero AAD start"));
13269b774dc0SJohn Baldwin 			KASSERT(crp->crp_aad_length != 0,
13279b774dc0SJohn Baldwin 			    ("separate AAD buffer with zero length"));
13289b774dc0SJohn Baldwin 		}
13299b774dc0SJohn Baldwin 	} else {
13309b774dc0SJohn Baldwin 		KASSERT(crp->crp_aad == NULL && crp->crp_aad_start == 0 &&
13319b774dc0SJohn Baldwin 		    crp->crp_aad_length == 0,
1332c0341432SJohn Baldwin 		    ("AAD region in request not supporting AAD"));
1333c0341432SJohn Baldwin 	}
1334c0341432SJohn Baldwin 	if (csp->csp_ivlen == 0) {
133529fe41ddSJohn Baldwin 		KASSERT((crp->crp_flags & CRYPTO_F_IV_SEPARATE) == 0,
133629fe41ddSJohn Baldwin 		    ("IV_SEPARATE set when IV isn't used"));
1337c0341432SJohn Baldwin 		KASSERT(crp->crp_iv_start == 0,
1338c0341432SJohn Baldwin 		    ("crp_iv_start set when IV isn't used"));
1339c0341432SJohn Baldwin 	} else if (crp->crp_flags & CRYPTO_F_IV_SEPARATE) {
1340c0341432SJohn Baldwin 		KASSERT(crp->crp_iv_start == 0,
1341c0341432SJohn Baldwin 		    ("IV_SEPARATE used with non-zero IV start"));
1342c0341432SJohn Baldwin 	} else {
13439c0e3d3aSJohn Baldwin 		KASSERT(crp->crp_iv_start < ilen,
1344c0341432SJohn Baldwin 		    ("invalid IV start"));
13459c0e3d3aSJohn Baldwin 		KASSERT(crp->crp_iv_start + csp->csp_ivlen <= ilen,
13469c0e3d3aSJohn Baldwin 		    ("IV outside buffer length"));
1347c0341432SJohn Baldwin 	}
13489c0e3d3aSJohn Baldwin 	/* XXX: payload_start of 0 should always be < ilen? */
1349c0341432SJohn Baldwin 	KASSERT(crp->crp_payload_start == 0 ||
13509c0e3d3aSJohn Baldwin 	    crp->crp_payload_start < ilen,
1351c0341432SJohn Baldwin 	    ("invalid payload start"));
1352c0341432SJohn Baldwin 	KASSERT(crp->crp_payload_start + crp->crp_payload_length <=
13539c0e3d3aSJohn Baldwin 	    ilen, ("payload outside input buffer"));
13549c0e3d3aSJohn Baldwin 	if (out == NULL) {
13559c0e3d3aSJohn Baldwin 		KASSERT(crp->crp_payload_output_start == 0,
13569c0e3d3aSJohn Baldwin 		    ("payload output start non-zero without output buffer"));
13579c0e3d3aSJohn Baldwin 	} else {
1358ec498562SJohn Baldwin 		KASSERT(crp->crp_payload_output_start == 0 ||
1359ec498562SJohn Baldwin 		    crp->crp_payload_output_start < olen,
13609c0e3d3aSJohn Baldwin 		    ("invalid payload output start"));
13619c0e3d3aSJohn Baldwin 		KASSERT(crp->crp_payload_output_start +
13629c0e3d3aSJohn Baldwin 		    crp->crp_payload_length <= olen,
13639c0e3d3aSJohn Baldwin 		    ("payload outside output buffer"));
13649c0e3d3aSJohn Baldwin 	}
1365c0341432SJohn Baldwin 	if (csp->csp_mode == CSP_MODE_DIGEST ||
1366c0341432SJohn Baldwin 	    csp->csp_mode == CSP_MODE_AEAD || csp->csp_mode == CSP_MODE_ETA) {
13679c0e3d3aSJohn Baldwin 		if (crp->crp_op & CRYPTO_OP_VERIFY_DIGEST)
13689c0e3d3aSJohn Baldwin 			len = ilen;
13699c0e3d3aSJohn Baldwin 		else
13709c0e3d3aSJohn Baldwin 			len = olen;
1371c0341432SJohn Baldwin 		KASSERT(crp->crp_digest_start == 0 ||
13729c0e3d3aSJohn Baldwin 		    crp->crp_digest_start < len,
1373c0341432SJohn Baldwin 		    ("invalid digest start"));
1374c0341432SJohn Baldwin 		/* XXX: For the mlen == 0 case this check isn't perfect. */
13759c0e3d3aSJohn Baldwin 		KASSERT(crp->crp_digest_start + csp->csp_auth_mlen <= len,
13769c0e3d3aSJohn Baldwin 		    ("digest outside buffer"));
1377c0341432SJohn Baldwin 	} else {
1378c0341432SJohn Baldwin 		KASSERT(crp->crp_digest_start == 0,
1379c0341432SJohn Baldwin 		    ("non-zero digest start for request without a digest"));
1380c0341432SJohn Baldwin 	}
1381c0341432SJohn Baldwin 	if (csp->csp_cipher_klen != 0)
1382c0341432SJohn Baldwin 		KASSERT(csp->csp_cipher_key != NULL ||
1383c0341432SJohn Baldwin 		    crp->crp_cipher_key != NULL,
1384c0341432SJohn Baldwin 		    ("cipher request without a key"));
1385c0341432SJohn Baldwin 	if (csp->csp_auth_klen != 0)
1386c0341432SJohn Baldwin 		KASSERT(csp->csp_auth_key != NULL || crp->crp_auth_key != NULL,
1387c0341432SJohn Baldwin 		    ("auth request without a key"));
1388c0341432SJohn Baldwin 	KASSERT(crp->crp_callback != NULL, ("incoming crp without callback"));
1389c0341432SJohn Baldwin }
1390c0341432SJohn Baldwin #endif
1391c0341432SJohn Baldwin 
139268f6800cSMark Johnston static int
139368f6800cSMark Johnston crypto_dispatch_one(struct cryptop *crp, int hint)
1394091d81d1SSam Leffler {
13954acae0acSPawel Jakub Dawidek 	struct cryptocap *cap;
13964acae0acSPawel Jakub Dawidek 	int result;
1397091d81d1SSam Leffler 
1398c0341432SJohn Baldwin #ifdef INVARIANTS
1399c0341432SJohn Baldwin 	crp_sanity(crp);
1400c0341432SJohn Baldwin #endif
14017290cb47SMark Johnston 	CRYPTOSTAT_INC(cs_ops);
14027d1853eeSSam Leffler 
140398d788c8SMark Johnston 	crp->crp_retw_id = crp->crp_session->id % crypto_workers_num;
1404de2b2c90SFabien Thomas 
140568f6800cSMark Johnston 	/*
140668f6800cSMark Johnston 	 * Caller marked the request to be processed immediately; dispatch it
140768f6800cSMark Johnston 	 * directly to the driver unless the driver is currently blocked, in
140868f6800cSMark Johnston 	 * which case it is queued for deferred dispatch.
140968f6800cSMark Johnston 	 */
141068f6800cSMark Johnston 	cap = crp->crp_session->cap;
141168f6800cSMark Johnston 	if (!atomic_load_int(&cap->cc_qblocked)) {
141268f6800cSMark Johnston 		result = crypto_invoke(cap, crp, hint);
141368f6800cSMark Johnston 		if (result != ERESTART)
141468f6800cSMark Johnston 			return (result);
141568f6800cSMark Johnston 
141668f6800cSMark Johnston 		/*
141768f6800cSMark Johnston 		 * The driver ran out of resources, put the request on the
141868f6800cSMark Johnston 		 * queue.
141968f6800cSMark Johnston 		 */
142068f6800cSMark Johnston 	}
142168f6800cSMark Johnston 	crypto_batch_enqueue(crp);
142268f6800cSMark Johnston 	return (0);
142368f6800cSMark Johnston }
142468f6800cSMark Johnston 
142568f6800cSMark Johnston int
142668f6800cSMark Johnston crypto_dispatch(struct cryptop *crp)
142768f6800cSMark Johnston {
142868f6800cSMark Johnston 	return (crypto_dispatch_one(crp, 0));
142968f6800cSMark Johnston }
143068f6800cSMark Johnston 
143168f6800cSMark Johnston int
143268f6800cSMark Johnston crypto_dispatch_async(struct cryptop *crp, int flags)
143368f6800cSMark Johnston {
143439bbca6fSFabien Thomas 	struct crypto_ret_worker *ret_worker;
143539bbca6fSFabien Thomas 
143668f6800cSMark Johnston 	if (!CRYPTO_SESS_SYNC(crp->crp_session)) {
143768f6800cSMark Johnston 		/*
143868f6800cSMark Johnston 		 * The driver issues completions asynchonously, don't bother
143968f6800cSMark Johnston 		 * deferring dispatch to a worker thread.
144068f6800cSMark Johnston 		 */
144168f6800cSMark Johnston 		return (crypto_dispatch(crp));
144268f6800cSMark Johnston 	}
144339bbca6fSFabien Thomas 
144468f6800cSMark Johnston #ifdef INVARIANTS
144568f6800cSMark Johnston 	crp_sanity(crp);
144668f6800cSMark Johnston #endif
144768f6800cSMark Johnston 	CRYPTOSTAT_INC(cs_ops);
144868f6800cSMark Johnston 
144968f6800cSMark Johnston 	crp->crp_retw_id = crp->crp_session->id % crypto_workers_num;
145068f6800cSMark Johnston 	if ((flags & CRYPTO_ASYNC_ORDERED) != 0) {
145168f6800cSMark Johnston 		crp->crp_flags |= CRYPTO_F_ASYNC_ORDERED;
145268f6800cSMark Johnston 		ret_worker = CRYPTO_RETW(crp->crp_retw_id);
145339bbca6fSFabien Thomas 		CRYPTO_RETW_LOCK(ret_worker);
145439bbca6fSFabien Thomas 		crp->crp_seq = ret_worker->reorder_ops++;
145539bbca6fSFabien Thomas 		CRYPTO_RETW_UNLOCK(ret_worker);
145639bbca6fSFabien Thomas 	}
145739bbca6fSFabien Thomas 	TASK_INIT(&crp->crp_task, 0, crypto_task_invoke, crp);
145839bbca6fSFabien Thomas 	taskqueue_enqueue(crypto_tq, &crp->crp_task);
145939bbca6fSFabien Thomas 	return (0);
146039bbca6fSFabien Thomas }
14614acae0acSPawel Jakub Dawidek 
146268f6800cSMark Johnston void
146368f6800cSMark Johnston crypto_dispatch_batch(struct cryptopq *crpq, int flags)
146468f6800cSMark Johnston {
146568f6800cSMark Johnston 	struct cryptop *crp;
146668f6800cSMark Johnston 	int hint;
146768f6800cSMark Johnston 
146868f6800cSMark Johnston 	while ((crp = TAILQ_FIRST(crpq)) != NULL) {
146968f6800cSMark Johnston 		hint = TAILQ_NEXT(crp, crp_next) != NULL ? CRYPTO_HINT_MORE : 0;
147068f6800cSMark Johnston 		TAILQ_REMOVE(crpq, crp, crp_next);
147168f6800cSMark Johnston 		if (crypto_dispatch_one(crp, hint) != 0)
147239bbca6fSFabien Thomas 			crypto_batch_enqueue(crp);
147368f6800cSMark Johnston 	}
147439bbca6fSFabien Thomas }
147539bbca6fSFabien Thomas 
147668f6800cSMark Johnston static void
147739bbca6fSFabien Thomas crypto_batch_enqueue(struct cryptop *crp)
147839bbca6fSFabien Thomas {
147939bbca6fSFabien Thomas 
14804acae0acSPawel Jakub Dawidek 	CRYPTO_Q_LOCK();
14814acae0acSPawel Jakub Dawidek 	TAILQ_INSERT_TAIL(&crp_q, crp, crp_next);
14823a865c82SPawel Jakub Dawidek 	if (crp_sleep)
14833a865c82SPawel Jakub Dawidek 		wakeup_one(&crp_q);
14843569ae7fSSam Leffler 	CRYPTO_Q_UNLOCK();
1485091d81d1SSam Leffler }
1486091d81d1SSam Leffler 
148739bbca6fSFabien Thomas static void
148839bbca6fSFabien Thomas crypto_task_invoke(void *ctx, int pending)
148939bbca6fSFabien Thomas {
149039bbca6fSFabien Thomas 	struct cryptocap *cap;
149139bbca6fSFabien Thomas 	struct cryptop *crp;
1492c0341432SJohn Baldwin 	int result;
149339bbca6fSFabien Thomas 
149439bbca6fSFabien Thomas 	crp = (struct cryptop *)ctx;
1495c0341432SJohn Baldwin 	cap = crp->crp_session->cap;
149639bbca6fSFabien Thomas 	result = crypto_invoke(cap, crp, 0);
149739bbca6fSFabien Thomas 	if (result == ERESTART)
149839bbca6fSFabien Thomas 		crypto_batch_enqueue(crp);
149939bbca6fSFabien Thomas }
150039bbca6fSFabien Thomas 
1501091d81d1SSam Leffler /*
1502091d81d1SSam Leffler  * Dispatch a crypto request to the appropriate crypto devices.
1503091d81d1SSam Leffler  */
1504091d81d1SSam Leffler static int
15054acae0acSPawel Jakub Dawidek crypto_invoke(struct cryptocap *cap, struct cryptop *crp, int hint)
1506091d81d1SSam Leffler {
15074acae0acSPawel Jakub Dawidek 
15084acae0acSPawel Jakub Dawidek 	KASSERT(crp != NULL, ("%s: crp == NULL", __func__));
15094acae0acSPawel Jakub Dawidek 	KASSERT(crp->crp_callback != NULL,
15104acae0acSPawel Jakub Dawidek 	    ("%s: crp->crp_callback == NULL", __func__));
1511c0341432SJohn Baldwin 	KASSERT(crp->crp_session != NULL,
1512c0341432SJohn Baldwin 	    ("%s: crp->crp_session == NULL", __func__));
1513091d81d1SSam Leffler 
15144acae0acSPawel Jakub Dawidek 	if (cap->cc_flags & CRYPTOCAP_F_CLEANUP) {
1515c0341432SJohn Baldwin 		struct crypto_session_params csp;
15161b0909d5SConrad Meyer 		crypto_session_t nses;
1517091d81d1SSam Leffler 
1518091d81d1SSam Leffler 		/*
1519091d81d1SSam Leffler 		 * Driver has unregistered; migrate the session and return
1520091d81d1SSam Leffler 		 * an error to the caller so they'll resubmit the op.
15214acae0acSPawel Jakub Dawidek 		 *
15224acae0acSPawel Jakub Dawidek 		 * XXX: What if there are more already queued requests for this
15234acae0acSPawel Jakub Dawidek 		 *      session?
1524c0341432SJohn Baldwin 		 *
1525c0341432SJohn Baldwin 		 * XXX: Real solution is to make sessions refcounted
1526c0341432SJohn Baldwin 		 * and force callers to hold a reference when
1527c0341432SJohn Baldwin 		 * assigning to crp_session.  Could maybe change
1528c0341432SJohn Baldwin 		 * crypto_getreq to accept a session pointer to make
1529c0341432SJohn Baldwin 		 * that work.  Alternatively, we could abandon the
1530c0341432SJohn Baldwin 		 * notion of rewriting crp_session in requests forcing
1531c0341432SJohn Baldwin 		 * the caller to deal with allocating a new session.
1532c0341432SJohn Baldwin 		 * Perhaps provide a method to allow a crp's session to
1533c0341432SJohn Baldwin 		 * be swapped that callers could use.
1534091d81d1SSam Leffler 		 */
1535c0341432SJohn Baldwin 		csp = crp->crp_session->csp;
15361b0909d5SConrad Meyer 		crypto_freesession(crp->crp_session);
15374acae0acSPawel Jakub Dawidek 
1538c0341432SJohn Baldwin 		/*
1539c0341432SJohn Baldwin 		 * XXX: Key pointers may no longer be valid.  If we
1540c0341432SJohn Baldwin 		 * really want to support this we need to define the
1541c0341432SJohn Baldwin 		 * KPI such that 'csp' is required to be valid for the
1542c0341432SJohn Baldwin 		 * duration of a session by the caller perhaps.
1543c0341432SJohn Baldwin 		 *
1544c0341432SJohn Baldwin 		 * XXX: If the keys have been changed this will reuse
1545c0341432SJohn Baldwin 		 * the old keys.  This probably suggests making
1546c0341432SJohn Baldwin 		 * rekeying more explicit and updating the key
1547c0341432SJohn Baldwin 		 * pointers in 'csp' when the keys change.
1548c0341432SJohn Baldwin 		 */
1549c0341432SJohn Baldwin 		if (crypto_newsession(&nses, &csp,
15506810ad6fSSam Leffler 		    CRYPTOCAP_F_HARDWARE | CRYPTOCAP_F_SOFTWARE) == 0)
15511b0909d5SConrad Meyer 			crp->crp_session = nses;
1552091d81d1SSam Leffler 
1553091d81d1SSam Leffler 		crp->crp_etype = EAGAIN;
15541a91ccccSSam Leffler 		crypto_done(crp);
1555091d81d1SSam Leffler 		return 0;
1556091d81d1SSam Leffler 	} else {
1557091d81d1SSam Leffler 		/*
1558091d81d1SSam Leffler 		 * Invoke the driver to process the request.
1559091d81d1SSam Leffler 		 */
15606810ad6fSSam Leffler 		return CRYPTODEV_PROCESS(cap->cc_dev, crp, hint);
1561091d81d1SSam Leffler 	}
1562091d81d1SSam Leffler }
1563091d81d1SSam Leffler 
1564091d81d1SSam Leffler void
1565946b8f6fSJohn Baldwin crypto_destroyreq(struct cryptop *crp)
1566091d81d1SSam Leffler {
15670d5c337bSPawel Jakub Dawidek #ifdef DIAGNOSTIC
15680d5c337bSPawel Jakub Dawidek 	{
15690d5c337bSPawel Jakub Dawidek 		struct cryptop *crp2;
157039bbca6fSFabien Thomas 		struct crypto_ret_worker *ret_worker;
15710d5c337bSPawel Jakub Dawidek 
15720d5c337bSPawel Jakub Dawidek 		CRYPTO_Q_LOCK();
15730d5c337bSPawel Jakub Dawidek 		TAILQ_FOREACH(crp2, &crp_q, crp_next) {
15740d5c337bSPawel Jakub Dawidek 			KASSERT(crp2 != crp,
15750d5c337bSPawel Jakub Dawidek 			    ("Freeing cryptop from the crypto queue (%p).",
15760d5c337bSPawel Jakub Dawidek 			    crp));
15770d5c337bSPawel Jakub Dawidek 		}
15780d5c337bSPawel Jakub Dawidek 		CRYPTO_Q_UNLOCK();
157939bbca6fSFabien Thomas 
158039bbca6fSFabien Thomas 		FOREACH_CRYPTO_RETW(ret_worker) {
158139bbca6fSFabien Thomas 			CRYPTO_RETW_LOCK(ret_worker);
158239bbca6fSFabien Thomas 			TAILQ_FOREACH(crp2, &ret_worker->crp_ret_q, crp_next) {
15830d5c337bSPawel Jakub Dawidek 				KASSERT(crp2 != crp,
15840d5c337bSPawel Jakub Dawidek 				    ("Freeing cryptop from the return queue (%p).",
15850d5c337bSPawel Jakub Dawidek 				    crp));
15860d5c337bSPawel Jakub Dawidek 			}
158739bbca6fSFabien Thomas 			CRYPTO_RETW_UNLOCK(ret_worker);
158839bbca6fSFabien Thomas 		}
15890d5c337bSPawel Jakub Dawidek 	}
15900d5c337bSPawel Jakub Dawidek #endif
1591946b8f6fSJohn Baldwin }
15920d5c337bSPawel Jakub Dawidek 
1593946b8f6fSJohn Baldwin void
1594946b8f6fSJohn Baldwin crypto_freereq(struct cryptop *crp)
1595946b8f6fSJohn Baldwin {
1596946b8f6fSJohn Baldwin 	if (crp == NULL)
1597946b8f6fSJohn Baldwin 		return;
1598946b8f6fSJohn Baldwin 
1599946b8f6fSJohn Baldwin 	crypto_destroyreq(crp);
1600091d81d1SSam Leffler 	uma_zfree(cryptop_zone, crp);
1601091d81d1SSam Leffler }
1602091d81d1SSam Leffler 
1603946b8f6fSJohn Baldwin static void
1604946b8f6fSJohn Baldwin _crypto_initreq(struct cryptop *crp, crypto_session_t cses)
1605946b8f6fSJohn Baldwin {
1606946b8f6fSJohn Baldwin 	crp->crp_session = cses;
1607946b8f6fSJohn Baldwin }
1608946b8f6fSJohn Baldwin 
1609946b8f6fSJohn Baldwin void
1610946b8f6fSJohn Baldwin crypto_initreq(struct cryptop *crp, crypto_session_t cses)
1611946b8f6fSJohn Baldwin {
1612946b8f6fSJohn Baldwin 	memset(crp, 0, sizeof(*crp));
1613946b8f6fSJohn Baldwin 	_crypto_initreq(crp, cses);
1614946b8f6fSJohn Baldwin }
1615946b8f6fSJohn Baldwin 
1616091d81d1SSam Leffler struct cryptop *
1617c0341432SJohn Baldwin crypto_getreq(crypto_session_t cses, int how)
1618091d81d1SSam Leffler {
1619091d81d1SSam Leffler 	struct cryptop *crp;
1620091d81d1SSam Leffler 
1621c0341432SJohn Baldwin 	MPASS(how == M_WAITOK || how == M_NOWAIT);
1622c0341432SJohn Baldwin 	crp = uma_zalloc(cryptop_zone, how | M_ZERO);
1623946b8f6fSJohn Baldwin 	if (crp != NULL)
1624946b8f6fSJohn Baldwin 		_crypto_initreq(crp, cses);
1625c0341432SJohn Baldwin 	return (crp);
1626091d81d1SSam Leffler }
1627091d81d1SSam Leffler 
1628091d81d1SSam Leffler /*
1629091d81d1SSam Leffler  * Invoke the callback on behalf of the driver.
1630091d81d1SSam Leffler  */
1631091d81d1SSam Leffler void
1632091d81d1SSam Leffler crypto_done(struct cryptop *crp)
1633091d81d1SSam Leffler {
16343569ae7fSSam Leffler 	KASSERT((crp->crp_flags & CRYPTO_F_DONE) == 0,
16353569ae7fSSam Leffler 		("crypto_done: op already done, flags 0x%x", crp->crp_flags));
16363569ae7fSSam Leffler 	crp->crp_flags |= CRYPTO_F_DONE;
16377d1853eeSSam Leffler 	if (crp->crp_etype != 0)
16387290cb47SMark Johnston 		CRYPTOSTAT_INC(cs_errs);
1639a5c053f5SMark Johnston 
1640d8409aafSSam Leffler 	/*
1641d8409aafSSam Leffler 	 * CBIMM means unconditionally do the callback immediately;
1642d8409aafSSam Leffler 	 * CBIFSYNC means do the callback immediately only if the
1643d8409aafSSam Leffler 	 * operation was done synchronously.  Both are used to avoid
1644d8409aafSSam Leffler 	 * doing extraneous context switches; the latter is mostly
1645d8409aafSSam Leffler 	 * used with the software crypto driver.
1646d8409aafSSam Leffler 	 */
164768f6800cSMark Johnston 	if ((crp->crp_flags & CRYPTO_F_ASYNC_ORDERED) == 0 &&
164868f6800cSMark Johnston 	    ((crp->crp_flags & CRYPTO_F_CBIMM) != 0 ||
164968f6800cSMark Johnston 	    ((crp->crp_flags & CRYPTO_F_CBIFSYNC) != 0 &&
165068f6800cSMark Johnston 	    CRYPTO_SESS_SYNC(crp->crp_session)))) {
1651eb73a605SSam Leffler 		/*
1652eb73a605SSam Leffler 		 * Do the callback directly.  This is ok when the
1653eb73a605SSam Leffler 		 * callback routine does very little (e.g. the
1654eb73a605SSam Leffler 		 * /dev/crypto callback method just does a wakeup).
1655eb73a605SSam Leffler 		 */
1656eb73a605SSam Leffler 		crp->crp_callback(crp);
1657eb73a605SSam Leffler 	} else {
165839bbca6fSFabien Thomas 		struct crypto_ret_worker *ret_worker;
165939bbca6fSFabien Thomas 		bool wake;
166039bbca6fSFabien Thomas 
166139bbca6fSFabien Thomas 		ret_worker = CRYPTO_RETW(crp->crp_retw_id);
166239bbca6fSFabien Thomas 
1663eb73a605SSam Leffler 		/*
1664eb73a605SSam Leffler 		 * Normal case; queue the callback for the thread.
1665eb73a605SSam Leffler 		 */
166639bbca6fSFabien Thomas 		CRYPTO_RETW_LOCK(ret_worker);
166768f6800cSMark Johnston 		if ((crp->crp_flags & CRYPTO_F_ASYNC_ORDERED) != 0) {
166839bbca6fSFabien Thomas 			struct cryptop *tmp;
166939bbca6fSFabien Thomas 
167068f6800cSMark Johnston 			TAILQ_FOREACH_REVERSE(tmp,
167168f6800cSMark Johnston 			    &ret_worker->crp_ordered_ret_q, cryptop_q,
167268f6800cSMark Johnston 			    crp_next) {
167339bbca6fSFabien Thomas 				if (CRYPTO_SEQ_GT(crp->crp_seq, tmp->crp_seq)) {
167468f6800cSMark Johnston 					TAILQ_INSERT_AFTER(
167568f6800cSMark Johnston 					    &ret_worker->crp_ordered_ret_q, tmp,
167668f6800cSMark Johnston 					    crp, crp_next);
167739bbca6fSFabien Thomas 					break;
167839bbca6fSFabien Thomas 				}
167939bbca6fSFabien Thomas 			}
168039bbca6fSFabien Thomas 			if (tmp == NULL) {
168168f6800cSMark Johnston 				TAILQ_INSERT_HEAD(
168268f6800cSMark Johnston 				    &ret_worker->crp_ordered_ret_q, crp,
168368f6800cSMark Johnston 				    crp_next);
168439bbca6fSFabien Thomas 			}
168539bbca6fSFabien Thomas 
168668f6800cSMark Johnston 			wake = crp->crp_seq == ret_worker->reorder_cur_seq;
168768f6800cSMark Johnston 		} else {
168868f6800cSMark Johnston 			wake = TAILQ_EMPTY(&ret_worker->crp_ret_q);
168968f6800cSMark Johnston 			TAILQ_INSERT_TAIL(&ret_worker->crp_ret_q, crp,
169068f6800cSMark Johnston 			    crp_next);
169139bbca6fSFabien Thomas 		}
169239bbca6fSFabien Thomas 
169339bbca6fSFabien Thomas 		if (wake)
169439bbca6fSFabien Thomas 			wakeup_one(&ret_worker->crp_ret_q);	/* shared wait channel */
169539bbca6fSFabien Thomas 		CRYPTO_RETW_UNLOCK(ret_worker);
1696091d81d1SSam Leffler 	}
1697eb73a605SSam Leffler }
1698091d81d1SSam Leffler 
1699091d81d1SSam Leffler /*
170051e45326SSam Leffler  * Terminate a thread at module unload.  The process that
170151e45326SSam Leffler  * initiated this is waiting for us to signal that we're gone;
170251e45326SSam Leffler  * wake it up and exit.  We use the driver table lock to insure
170351e45326SSam Leffler  * we don't do the wakeup before they're waiting.  There is no
170451e45326SSam Leffler  * race here because the waiter sleeps on the proc lock for the
170551e45326SSam Leffler  * thread so it gets notified at the right time because of an
170651e45326SSam Leffler  * extra wakeup that's done in exit1().
170751e45326SSam Leffler  */
1708091d81d1SSam Leffler static void
170951e45326SSam Leffler crypto_finis(void *chan)
1710091d81d1SSam Leffler {
171151e45326SSam Leffler 	CRYPTO_DRIVER_LOCK();
171251e45326SSam Leffler 	wakeup_one(chan);
171351e45326SSam Leffler 	CRYPTO_DRIVER_UNLOCK();
171471785781SJohn Baldwin 	kthread_exit();
1715091d81d1SSam Leffler }
1716091d81d1SSam Leffler 
1717091d81d1SSam Leffler /*
17181a91ccccSSam Leffler  * Crypto thread, dispatches crypto requests.
1719091d81d1SSam Leffler  */
1720091d81d1SSam Leffler static void
172171785781SJohn Baldwin crypto_dispatch_thread(void *arg __unused)
1722091d81d1SSam Leffler {
17231a91ccccSSam Leffler 	struct cryptop *crp, *submit;
1724091d81d1SSam Leffler 	struct cryptocap *cap;
1725091d81d1SSam Leffler 	int result, hint;
1726091d81d1SSam Leffler 
17276ed982a2SAndrew Turner #if defined(__i386__) || defined(__amd64__) || defined(__aarch64__)
172804c49e68SKonstantin Belousov 	fpu_kern_thread(FPU_KERN_NORMAL);
172904c49e68SKonstantin Belousov #endif
173004c49e68SKonstantin Belousov 
17311a91ccccSSam Leffler 	CRYPTO_Q_LOCK();
1732091d81d1SSam Leffler 	for (;;) {
1733091d81d1SSam Leffler 		/*
1734091d81d1SSam Leffler 		 * Find the first element in the queue that can be
1735091d81d1SSam Leffler 		 * processed and look-ahead to see if multiple ops
1736091d81d1SSam Leffler 		 * are ready for the same driver.
1737091d81d1SSam Leffler 		 */
1738091d81d1SSam Leffler 		submit = NULL;
1739091d81d1SSam Leffler 		hint = 0;
1740091d81d1SSam Leffler 		TAILQ_FOREACH(crp, &crp_q, crp_next) {
1741c0341432SJohn Baldwin 			cap = crp->crp_session->cap;
17424acae0acSPawel Jakub Dawidek 			/*
17434acae0acSPawel Jakub Dawidek 			 * Driver cannot disappeared when there is an active
17444acae0acSPawel Jakub Dawidek 			 * session.
17454acae0acSPawel Jakub Dawidek 			 */
1746c3c82036SPawel Jakub Dawidek 			KASSERT(cap != NULL, ("%s:%u Driver disappeared.",
1747c3c82036SPawel Jakub Dawidek 			    __func__, __LINE__));
1748c0341432SJohn Baldwin 			if (cap->cc_flags & CRYPTOCAP_F_CLEANUP) {
1749091d81d1SSam Leffler 				/* Op needs to be migrated, process it. */
1750091d81d1SSam Leffler 				if (submit == NULL)
1751091d81d1SSam Leffler 					submit = crp;
1752091d81d1SSam Leffler 				break;
1753091d81d1SSam Leffler 			}
1754091d81d1SSam Leffler 			if (!cap->cc_qblocked) {
1755091d81d1SSam Leffler 				if (submit != NULL) {
1756091d81d1SSam Leffler 					/*
1757091d81d1SSam Leffler 					 * We stop on finding another op,
1758091d81d1SSam Leffler 					 * regardless whether its for the same
1759091d81d1SSam Leffler 					 * driver or not.  We could keep
1760091d81d1SSam Leffler 					 * searching the queue but it might be
1761091d81d1SSam Leffler 					 * better to just use a per-driver
1762091d81d1SSam Leffler 					 * queue instead.
1763091d81d1SSam Leffler 					 */
1764c0341432SJohn Baldwin 					if (submit->crp_session->cap == cap)
1765091d81d1SSam Leffler 						hint = CRYPTO_HINT_MORE;
1766091d81d1SSam Leffler 				} else {
1767091d81d1SSam Leffler 					submit = crp;
1768091d81d1SSam Leffler 				}
176968f6800cSMark Johnston 				break;
1770091d81d1SSam Leffler 			}
1771091d81d1SSam Leffler 		}
1772091d81d1SSam Leffler 		if (submit != NULL) {
1773091d81d1SSam Leffler 			TAILQ_REMOVE(&crp_q, submit, crp_next);
1774c0341432SJohn Baldwin 			cap = submit->crp_session->cap;
1775c3c82036SPawel Jakub Dawidek 			KASSERT(cap != NULL, ("%s:%u Driver disappeared.",
1776c3c82036SPawel Jakub Dawidek 			    __func__, __LINE__));
1777c0341432SJohn Baldwin 			CRYPTO_Q_UNLOCK();
17784acae0acSPawel Jakub Dawidek 			result = crypto_invoke(cap, submit, hint);
1779c0341432SJohn Baldwin 			CRYPTO_Q_LOCK();
1780091d81d1SSam Leffler 			if (result == ERESTART) {
1781091d81d1SSam Leffler 				/*
1782091d81d1SSam Leffler 				 * The driver ran out of resources, mark the
1783091d81d1SSam Leffler 				 * driver ``blocked'' for cryptop's and put
1784091d81d1SSam Leffler 				 * the request back in the queue.  It would
1785091d81d1SSam Leffler 				 * best to put the request back where we got
1786091d81d1SSam Leffler 				 * it but that's hard so for now we put it
1787091d81d1SSam Leffler 				 * at the front.  This should be ok; putting
1788091d81d1SSam Leffler 				 * it at the end does not work.
1789091d81d1SSam Leffler 				 */
1790c0341432SJohn Baldwin 				cap->cc_qblocked = 1;
1791091d81d1SSam Leffler 				TAILQ_INSERT_HEAD(&crp_q, submit, crp_next);
17927290cb47SMark Johnston 				CRYPTOSTAT_INC(cs_blocks);
1793091d81d1SSam Leffler 			}
179476681661SJohn Baldwin 		} else {
1795091d81d1SSam Leffler 			/*
1796091d81d1SSam Leffler 			 * Nothing more to be processed.  Sleep until we're
1797091d81d1SSam Leffler 			 * woken because there are more ops to process.
1798091d81d1SSam Leffler 			 * This happens either by submission or by a driver
1799091d81d1SSam Leffler 			 * becoming unblocked and notifying us through
1800091d81d1SSam Leffler 			 * crypto_unblock.  Note that when we wakeup we
1801091d81d1SSam Leffler 			 * start processing each queue again from the
1802091d81d1SSam Leffler 			 * front. It's not clear that it's important to
1803091d81d1SSam Leffler 			 * preserve this ordering since ops may finish
1804091d81d1SSam Leffler 			 * out of order if dispatched to different devices
1805091d81d1SSam Leffler 			 * and some become blocked while others do not.
1806091d81d1SSam Leffler 			 */
18073a865c82SPawel Jakub Dawidek 			crp_sleep = 1;
18081a91ccccSSam Leffler 			msleep(&crp_q, &crypto_q_mtx, PWAIT, "crypto_wait", 0);
18093a865c82SPawel Jakub Dawidek 			crp_sleep = 0;
181071785781SJohn Baldwin 			if (cryptotd == NULL)
181151e45326SSam Leffler 				break;
18127290cb47SMark Johnston 			CRYPTOSTAT_INC(cs_intrs);
1813091d81d1SSam Leffler 		}
1814091d81d1SSam Leffler 	}
181551e45326SSam Leffler 	CRYPTO_Q_UNLOCK();
18161a91ccccSSam Leffler 
181751e45326SSam Leffler 	crypto_finis(&crp_q);
18181a91ccccSSam Leffler }
18191a91ccccSSam Leffler 
18201a91ccccSSam Leffler /*
18211a91ccccSSam Leffler  * Crypto returns thread, does callbacks for processed crypto requests.
18221a91ccccSSam Leffler  * Callbacks are done here, rather than in the crypto drivers, because
18231a91ccccSSam Leffler  * callbacks typically are expensive and would slow interrupt handling.
18241a91ccccSSam Leffler  */
18251a91ccccSSam Leffler static void
182671785781SJohn Baldwin crypto_ret_thread(void *arg)
18271a91ccccSSam Leffler {
182871785781SJohn Baldwin 	struct crypto_ret_worker *ret_worker = arg;
18291a91ccccSSam Leffler 	struct cryptop *crpt;
18301a91ccccSSam Leffler 
183139bbca6fSFabien Thomas 	CRYPTO_RETW_LOCK(ret_worker);
18321a91ccccSSam Leffler 	for (;;) {
18331a91ccccSSam Leffler 		/* Harvest return q's for completed ops */
183439bbca6fSFabien Thomas 		crpt = TAILQ_FIRST(&ret_worker->crp_ordered_ret_q);
183539bbca6fSFabien Thomas 		if (crpt != NULL) {
183639bbca6fSFabien Thomas 			if (crpt->crp_seq == ret_worker->reorder_cur_seq) {
183739bbca6fSFabien Thomas 				TAILQ_REMOVE(&ret_worker->crp_ordered_ret_q, crpt, crp_next);
183839bbca6fSFabien Thomas 				ret_worker->reorder_cur_seq++;
183939bbca6fSFabien Thomas 			} else {
184039bbca6fSFabien Thomas 				crpt = NULL;
184139bbca6fSFabien Thomas 			}
184239bbca6fSFabien Thomas 		}
18431a91ccccSSam Leffler 
184439bbca6fSFabien Thomas 		if (crpt == NULL) {
184539bbca6fSFabien Thomas 			crpt = TAILQ_FIRST(&ret_worker->crp_ret_q);
184639bbca6fSFabien Thomas 			if (crpt != NULL)
184739bbca6fSFabien Thomas 				TAILQ_REMOVE(&ret_worker->crp_ret_q, crpt, crp_next);
184839bbca6fSFabien Thomas 		}
184939bbca6fSFabien Thomas 
185076681661SJohn Baldwin 		if (crpt != NULL) {
185139bbca6fSFabien Thomas 			CRYPTO_RETW_UNLOCK(ret_worker);
18521a91ccccSSam Leffler 			/*
18531a91ccccSSam Leffler 			 * Run callbacks unlocked.
18541a91ccccSSam Leffler 			 */
1855a5c053f5SMark Johnston 			if (crpt != NULL)
18561a91ccccSSam Leffler 				crpt->crp_callback(crpt);
185739bbca6fSFabien Thomas 			CRYPTO_RETW_LOCK(ret_worker);
18581a91ccccSSam Leffler 		} else {
18591a91ccccSSam Leffler 			/*
18601a91ccccSSam Leffler 			 * Nothing more to be processed.  Sleep until we're
18611a91ccccSSam Leffler 			 * woken because there are more returns to process.
18621a91ccccSSam Leffler 			 */
186339bbca6fSFabien Thomas 			msleep(&ret_worker->crp_ret_q, &ret_worker->crypto_ret_mtx, PWAIT,
18641a91ccccSSam Leffler 				"crypto_ret_wait", 0);
186571785781SJohn Baldwin 			if (ret_worker->td == NULL)
186651e45326SSam Leffler 				break;
18677290cb47SMark Johnston 			CRYPTOSTAT_INC(cs_rets);
18681a91ccccSSam Leffler 		}
18691a91ccccSSam Leffler 	}
187039bbca6fSFabien Thomas 	CRYPTO_RETW_UNLOCK(ret_worker);
187151e45326SSam Leffler 
187239bbca6fSFabien Thomas 	crypto_finis(&ret_worker->crp_ret_q);
18731a91ccccSSam Leffler }
18746810ad6fSSam Leffler 
18756810ad6fSSam Leffler #ifdef DDB
18766810ad6fSSam Leffler static void
18776810ad6fSSam Leffler db_show_drivers(void)
18786810ad6fSSam Leffler {
18796810ad6fSSam Leffler 	int hid;
18806810ad6fSSam Leffler 
188176681661SJohn Baldwin 	db_printf("%12s %4s %8s %2s\n"
18826810ad6fSSam Leffler 		, "Device"
18836810ad6fSSam Leffler 		, "Ses"
18846810ad6fSSam Leffler 		, "Flags"
18856810ad6fSSam Leffler 		, "QB"
18866810ad6fSSam Leffler 	);
1887c0341432SJohn Baldwin 	for (hid = 0; hid < crypto_drivers_size; hid++) {
1888c0341432SJohn Baldwin 		const struct cryptocap *cap = crypto_drivers[hid];
1889c0341432SJohn Baldwin 		if (cap == NULL)
18906810ad6fSSam Leffler 			continue;
189176681661SJohn Baldwin 		db_printf("%-12s %4u %08x %2u\n"
18926810ad6fSSam Leffler 		    , device_get_nameunit(cap->cc_dev)
18936810ad6fSSam Leffler 		    , cap->cc_sessions
18946810ad6fSSam Leffler 		    , cap->cc_flags
18956810ad6fSSam Leffler 		    , cap->cc_qblocked
18966810ad6fSSam Leffler 		);
18976810ad6fSSam Leffler 	}
18986810ad6fSSam Leffler }
18996810ad6fSSam Leffler 
19006810ad6fSSam Leffler DB_SHOW_COMMAND(crypto, db_show_crypto)
19016810ad6fSSam Leffler {
19026810ad6fSSam Leffler 	struct cryptop *crp;
190339bbca6fSFabien Thomas 	struct crypto_ret_worker *ret_worker;
19046810ad6fSSam Leffler 
19056810ad6fSSam Leffler 	db_show_drivers();
19066810ad6fSSam Leffler 	db_printf("\n");
19076810ad6fSSam Leffler 
19086810ad6fSSam Leffler 	db_printf("%4s %8s %4s %4s %4s %4s %8s %8s\n",
19096810ad6fSSam Leffler 	    "HID", "Caps", "Ilen", "Olen", "Etype", "Flags",
1910c0341432SJohn Baldwin 	    "Device", "Callback");
19116810ad6fSSam Leffler 	TAILQ_FOREACH(crp, &crp_q, crp_next) {
19129c0e3d3aSJohn Baldwin 		db_printf("%4u %08x %4u %4u %04x %8p %8p\n"
1913c0341432SJohn Baldwin 		    , crp->crp_session->cap->cc_hid
19141b0909d5SConrad Meyer 		    , (int) crypto_ses2caps(crp->crp_session)
19159c0e3d3aSJohn Baldwin 		    , crp->crp_olen
19166810ad6fSSam Leffler 		    , crp->crp_etype
19176810ad6fSSam Leffler 		    , crp->crp_flags
1918c0341432SJohn Baldwin 		    , device_get_nameunit(crp->crp_session->cap->cc_dev)
19196810ad6fSSam Leffler 		    , crp->crp_callback
19206810ad6fSSam Leffler 		);
19216810ad6fSSam Leffler 	}
192239bbca6fSFabien Thomas 	FOREACH_CRYPTO_RETW(ret_worker) {
192339bbca6fSFabien Thomas 		db_printf("\n%8s %4s %4s %4s %8s\n",
192439bbca6fSFabien Thomas 		    "ret_worker", "HID", "Etype", "Flags", "Callback");
192539bbca6fSFabien Thomas 		if (!TAILQ_EMPTY(&ret_worker->crp_ret_q)) {
192639bbca6fSFabien Thomas 			TAILQ_FOREACH(crp, &ret_worker->crp_ret_q, crp_next) {
192739bbca6fSFabien Thomas 				db_printf("%8td %4u %4u %04x %8p\n"
192839bbca6fSFabien Thomas 				    , CRYPTO_RETW_ID(ret_worker)
1929c0341432SJohn Baldwin 				    , crp->crp_session->cap->cc_hid
19306810ad6fSSam Leffler 				    , crp->crp_etype
19316810ad6fSSam Leffler 				    , crp->crp_flags
19326810ad6fSSam Leffler 				    , crp->crp_callback
19336810ad6fSSam Leffler 				);
19346810ad6fSSam Leffler 			}
19356810ad6fSSam Leffler 		}
19366810ad6fSSam Leffler 	}
193739bbca6fSFabien Thomas }
19386810ad6fSSam Leffler #endif
19396810ad6fSSam Leffler 
19406810ad6fSSam Leffler int crypto_modevent(module_t mod, int type, void *unused);
19416810ad6fSSam Leffler 
19426810ad6fSSam Leffler /*
19436810ad6fSSam Leffler  * Initialization code, both for static and dynamic loading.
19446810ad6fSSam Leffler  * Note this is not invoked with the usual MODULE_DECLARE
19456810ad6fSSam Leffler  * mechanism but instead is listed as a dependency by the
19466810ad6fSSam Leffler  * cryptosoft driver.  This guarantees proper ordering of
19476810ad6fSSam Leffler  * calls on module load/unload.
19486810ad6fSSam Leffler  */
19496810ad6fSSam Leffler int
19506810ad6fSSam Leffler crypto_modevent(module_t mod, int type, void *unused)
19516810ad6fSSam Leffler {
19526810ad6fSSam Leffler 	int error = EINVAL;
19536810ad6fSSam Leffler 
19546810ad6fSSam Leffler 	switch (type) {
19556810ad6fSSam Leffler 	case MOD_LOAD:
19566810ad6fSSam Leffler 		error = crypto_init();
19576810ad6fSSam Leffler 		if (error == 0 && bootverbose)
19586810ad6fSSam Leffler 			printf("crypto: <crypto core>\n");
19596810ad6fSSam Leffler 		break;
19606810ad6fSSam Leffler 	case MOD_UNLOAD:
19616810ad6fSSam Leffler 		/*XXX disallow if active sessions */
19626810ad6fSSam Leffler 		error = 0;
19636810ad6fSSam Leffler 		crypto_destroy();
19646810ad6fSSam Leffler 		return 0;
19656810ad6fSSam Leffler 	}
19666810ad6fSSam Leffler 	return error;
19676810ad6fSSam Leffler }
19686810ad6fSSam Leffler MODULE_VERSION(crypto, 1);
19696810ad6fSSam Leffler MODULE_DEPEND(crypto, zlib, 1, 1, 1);
1970