xref: /freebsd/sys/dev/random/ivy.c (revision daceb336172a6b0572de864b97e70b28451ca636)
1 /*-
2  * Copyright (c) 2013 The FreeBSD Foundation
3  * Copyright (c) 2013 David E. O'Brien <obrien@NUXI.org>
4  * Copyright (c) 2012 Konstantin Belousov <kib@FreeBSD.org>
5  * All rights reserved.
6  *
7  * Portions of this software were developed by Konstantin Belousov
8  * under sponsorship from the FreeBSD Foundation.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer
15  *    in this position and unchanged.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  *
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 #include <sys/param.h>
37 #include <sys/kernel.h>
38 #include <sys/conf.h>
39 #include <sys/lock.h>
40 #include <sys/malloc.h>
41 #include <sys/module.h>
42 #include <sys/random.h>
43 #include <sys/systm.h>
44 
45 #include <machine/md_var.h>
46 #include <machine/specialreg.h>
47 #include <x86/ifunc.h>
48 
49 #include <dev/random/randomdev.h>
50 
51 #define	RETRY_COUNT	10
52 
53 static bool has_rdrand, has_rdseed;
54 static u_int random_ivy_read(void *, u_int);
55 
56 static struct random_source random_ivy = {
57 	.rs_ident = "Intel Secure Key RNG",
58 	.rs_source = RANDOM_PURE_RDRAND,
59 	.rs_read = random_ivy_read
60 };
61 
62 static int
63 x86_rdrand_store(u_long *buf)
64 {
65 	u_long rndval;
66 	int retry;
67 
68 	retry = RETRY_COUNT;
69 	__asm __volatile(
70 	    "1:\n\t"
71 	    "rdrand	%1\n\t"	/* read randomness into rndval */
72 	    "jc		2f\n\t" /* CF is set on success, exit retry loop */
73 	    "dec	%0\n\t" /* otherwise, retry-- */
74 	    "jne	1b\n\t" /* and loop if retries are not exhausted */
75 	    "2:"
76 	    : "+r" (retry), "=r" (rndval) : : "cc");
77 	*buf = rndval;
78 	return (retry);
79 }
80 
81 static int
82 x86_rdseed_store(u_long *buf)
83 {
84 	u_long rndval;
85 	int retry;
86 
87 	retry = RETRY_COUNT;
88 	__asm __volatile(
89 	    "1:\n\t"
90 	    "rdseed	%1\n\t"	/* read randomness into rndval */
91 	    "jc		2f\n\t" /* CF is set on success, exit retry loop */
92 	    "dec	%0\n\t" /* otherwise, retry-- */
93 	    "jne	1b\n\t" /* and loop if retries are not exhausted */
94 	    "2:"
95 	    : "+r" (retry), "=r" (rndval) : : "cc");
96 	*buf = rndval;
97 	return (retry);
98 }
99 
100 DEFINE_IFUNC(static, int, x86_rng_store, (u_long *buf), static)
101 {
102 	has_rdrand = (cpu_feature2 & CPUID2_RDRAND);
103 	has_rdseed = (cpu_stdext_feature & CPUID_STDEXT_RDSEED);
104 
105 	if (has_rdseed)
106 		return (x86_rdseed_store);
107 	else if (has_rdrand)
108 		return (x86_rdrand_store);
109 	else
110 		return (NULL);
111 }
112 
113 /* It is required that buf length is a multiple of sizeof(u_long). */
114 static u_int
115 random_ivy_read(void *buf, u_int c)
116 {
117 	u_long *b, rndval;
118 	u_int count;
119 
120 	KASSERT(c % sizeof(*b) == 0, ("partial read %d", c));
121 	b = buf;
122 	for (count = c; count > 0; count -= sizeof(*b)) {
123 		if (x86_rng_store(&rndval) == 0)
124 			break;
125 		*b++ = rndval;
126 	}
127 	return (c - count);
128 }
129 
130 static int
131 rdrand_modevent(module_t mod, int type, void *unused)
132 {
133 	int error = 0;
134 
135 	switch (type) {
136 	case MOD_LOAD:
137 		if (has_rdrand || has_rdseed) {
138 			random_source_register(&random_ivy);
139 			printf("random: fast provider: \"%s\"\n", random_ivy.rs_ident);
140 		}
141 		break;
142 
143 	case MOD_UNLOAD:
144 		if (has_rdrand || has_rdseed)
145 			random_source_deregister(&random_ivy);
146 		break;
147 
148 	case MOD_SHUTDOWN:
149 		break;
150 
151 	default:
152 		error = EOPNOTSUPP;
153 		break;
154 
155 	}
156 
157 	return (error);
158 }
159 
160 DEV_MODULE(rdrand, rdrand_modevent, NULL);
161 MODULE_VERSION(rdrand, 1);
162 MODULE_DEPEND(rdrand, random_device, 1, 1, 1);
163