Sun Apr 12 07:16:09 2020 UTC ()
Don't inline cprng_strong{32,64}(), so they can be called from asm.


(maxv)
diff -r1.34 -r1.35 src/sys/kern/subr_cprng.c
diff -r1.15 -r1.16 src/sys/sys/cprng.h

cvs diff -r1.34 -r1.35 src/sys/kern/subr_cprng.c (switch to unified diff)

--- src/sys/kern/subr_cprng.c 2019/12/04 05:36:34 1.34
+++ src/sys/kern/subr_cprng.c 2020/04/12 07:16:09 1.35
@@ -1,567 +1,583 @@ @@ -1,567 +1,583 @@
1/* $NetBSD: subr_cprng.c,v 1.34 2019/12/04 05:36:34 riastradh Exp $ */ 1/* $NetBSD: subr_cprng.c,v 1.35 2020/04/12 07:16:09 maxv Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2011-2013 The NetBSD Foundation, Inc. 4 * Copyright (c) 2011-2013 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Thor Lancelot Simon and Taylor R. Campbell. 8 * by Thor Lancelot Simon and Taylor R. Campbell.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#include <sys/cdefs.h> 32#include <sys/cdefs.h>
33__KERNEL_RCSID(0, "$NetBSD: subr_cprng.c,v 1.34 2019/12/04 05:36:34 riastradh Exp $"); 33__KERNEL_RCSID(0, "$NetBSD: subr_cprng.c,v 1.35 2020/04/12 07:16:09 maxv Exp $");
34 34
35#include <sys/param.h> 35#include <sys/param.h>
36#include <sys/types.h> 36#include <sys/types.h>
37#include <sys/condvar.h> 37#include <sys/condvar.h>
38#include <sys/cprng.h> 38#include <sys/cprng.h>
39#include <sys/errno.h> 39#include <sys/errno.h>
40#include <sys/event.h> /* XXX struct knote */ 40#include <sys/event.h> /* XXX struct knote */
41#include <sys/fcntl.h> /* XXX FNONBLOCK */ 41#include <sys/fcntl.h> /* XXX FNONBLOCK */
42#include <sys/kernel.h> 42#include <sys/kernel.h>
43#include <sys/kmem.h> 43#include <sys/kmem.h>
44#include <sys/lwp.h> 44#include <sys/lwp.h>
45#include <sys/once.h> 45#include <sys/once.h>
46#include <sys/percpu.h> 46#include <sys/percpu.h>
47#include <sys/poll.h> /* XXX POLLIN/POLLOUT/&c. */ 47#include <sys/poll.h> /* XXX POLLIN/POLLOUT/&c. */
48#include <sys/select.h> 48#include <sys/select.h>
49#include <sys/systm.h> 49#include <sys/systm.h>
50#include <sys/sysctl.h> 50#include <sys/sysctl.h>
51#include <sys/rndsink.h> 51#include <sys/rndsink.h>
52 52
53#include <crypto/nist_hash_drbg/nist_hash_drbg.h> 53#include <crypto/nist_hash_drbg/nist_hash_drbg.h>
54 54
55#if defined(__HAVE_CPU_COUNTER) 55#if defined(__HAVE_CPU_COUNTER)
56#include <machine/cpu_counter.h> 56#include <machine/cpu_counter.h>
57#endif 57#endif
58 58
59static int sysctl_kern_urnd(SYSCTLFN_PROTO); 59static int sysctl_kern_urnd(SYSCTLFN_PROTO);
60static int sysctl_kern_arnd(SYSCTLFN_PROTO); 60static int sysctl_kern_arnd(SYSCTLFN_PROTO);
61 61
62static void cprng_strong_generate(struct cprng_strong *, void *, size_t); 62static void cprng_strong_generate(struct cprng_strong *, void *, size_t);
63static void cprng_strong_reseed(struct cprng_strong *); 63static void cprng_strong_reseed(struct cprng_strong *);
64static void cprng_strong_reseed_from(struct cprng_strong *, const void *, 64static void cprng_strong_reseed_from(struct cprng_strong *, const void *,
65 size_t, bool); 65 size_t, bool);
66 66
67static rndsink_callback_t cprng_strong_rndsink_callback; 67static rndsink_callback_t cprng_strong_rndsink_callback;
68 68
69void 69void
70cprng_init(void) 70cprng_init(void)
71{ 71{
72 static struct sysctllog *random_sysctllog; 72 static struct sysctllog *random_sysctllog;
73 73
74 if (nist_hash_drbg_initialize() != 0) 74 if (nist_hash_drbg_initialize() != 0)
75 panic("NIST Hash_DRBG failed self-test"); 75 panic("NIST Hash_DRBG failed self-test");
76 76
77 sysctl_createv(&random_sysctllog, 0, NULL, NULL, 77 sysctl_createv(&random_sysctllog, 0, NULL, NULL,
78 CTLFLAG_PERMANENT, 78 CTLFLAG_PERMANENT,
79 CTLTYPE_INT, "urandom", 79 CTLTYPE_INT, "urandom",
80 SYSCTL_DESCR("Random integer value"), 80 SYSCTL_DESCR("Random integer value"),
81 sysctl_kern_urnd, 0, NULL, 0, 81 sysctl_kern_urnd, 0, NULL, 0,
82 CTL_KERN, KERN_URND, CTL_EOL); 82 CTL_KERN, KERN_URND, CTL_EOL);
83 sysctl_createv(&random_sysctllog, 0, NULL, NULL, 83 sysctl_createv(&random_sysctllog, 0, NULL, NULL,
84 CTLFLAG_PERMANENT, 84 CTLFLAG_PERMANENT,
85 CTLTYPE_INT, "arandom", 85 CTLTYPE_INT, "arandom",
86 SYSCTL_DESCR("n bytes of random data"), 86 SYSCTL_DESCR("n bytes of random data"),
87 sysctl_kern_arnd, 0, NULL, 0, 87 sysctl_kern_arnd, 0, NULL, 0,
88 CTL_KERN, KERN_ARND, CTL_EOL); 88 CTL_KERN, KERN_ARND, CTL_EOL);
89} 89}
90 90
91static inline uint32_t 91static inline uint32_t
92cprng_counter(void) 92cprng_counter(void)
93{ 93{
94 struct timeval tv; 94 struct timeval tv;
95 95
96#if defined(__HAVE_CPU_COUNTER) 96#if defined(__HAVE_CPU_COUNTER)
97 if (cpu_hascounter()) 97 if (cpu_hascounter())
98 return cpu_counter32(); 98 return cpu_counter32();
99#endif 99#endif
100 if (__predict_false(cold)) { 100 if (__predict_false(cold)) {
101 static int ctr; 101 static int ctr;
102 /* microtime unsafe if clock not running yet */ 102 /* microtime unsafe if clock not running yet */
103 return ctr++; 103 return ctr++;
104 } 104 }
105 getmicrotime(&tv); 105 getmicrotime(&tv);
106 return (tv.tv_sec * 1000000 + tv.tv_usec); 106 return (tv.tv_sec * 1000000 + tv.tv_usec);
107} 107}
108 108
109struct cprng_strong { 109struct cprng_strong {
110 char cs_name[16]; 110 char cs_name[16];
111 int cs_flags; 111 int cs_flags;
112 kmutex_t cs_lock; 112 kmutex_t cs_lock;
113 percpu_t *cs_percpu; 113 percpu_t *cs_percpu;
114 kcondvar_t cs_cv; 114 kcondvar_t cs_cv;
115 struct selinfo cs_selq; 115 struct selinfo cs_selq;
116 struct rndsink *cs_rndsink; 116 struct rndsink *cs_rndsink;
117 bool cs_ready; 117 bool cs_ready;
118 NIST_HASH_DRBG cs_drbg; 118 NIST_HASH_DRBG cs_drbg;
119 119
120 /* XXX Kludge for /dev/random `information-theoretic' properties. */ 120 /* XXX Kludge for /dev/random `information-theoretic' properties. */
121 unsigned int cs_remaining; 121 unsigned int cs_remaining;
122}; 122};
123 123
124struct cprng_strong * 124struct cprng_strong *
125cprng_strong_create(const char *name, int ipl, int flags) 125cprng_strong_create(const char *name, int ipl, int flags)
126{ 126{
127 const uint32_t cc = cprng_counter(); 127 const uint32_t cc = cprng_counter();
128 struct cprng_strong *const cprng = kmem_alloc(sizeof(*cprng), 128 struct cprng_strong *const cprng = kmem_alloc(sizeof(*cprng),
129 KM_SLEEP); 129 KM_SLEEP);
130 130
131 /* 131 /*
132 * rndsink_request takes a spin lock at IPL_VM, so we can be no 132 * rndsink_request takes a spin lock at IPL_VM, so we can be no
133 * higher than that. 133 * higher than that.
134 */ 134 */
135 KASSERT(ipl != IPL_SCHED && ipl != IPL_HIGH); 135 KASSERT(ipl != IPL_SCHED && ipl != IPL_HIGH);
136 136
137 /* Initialize the easy fields. */ 137 /* Initialize the easy fields. */
138 memset(cprng->cs_name, 0, sizeof(cprng->cs_name)); 138 memset(cprng->cs_name, 0, sizeof(cprng->cs_name));
139 (void)strlcpy(cprng->cs_name, name, sizeof(cprng->cs_name)); 139 (void)strlcpy(cprng->cs_name, name, sizeof(cprng->cs_name));
140 cprng->cs_flags = flags; 140 cprng->cs_flags = flags;
141 mutex_init(&cprng->cs_lock, MUTEX_DEFAULT, ipl); 141 mutex_init(&cprng->cs_lock, MUTEX_DEFAULT, ipl);
142 cv_init(&cprng->cs_cv, cprng->cs_name); 142 cv_init(&cprng->cs_cv, cprng->cs_name);
143 selinit(&cprng->cs_selq); 143 selinit(&cprng->cs_selq);
144 cprng->cs_rndsink = rndsink_create(NIST_HASH_DRBG_MIN_SEEDLEN_BYTES, 144 cprng->cs_rndsink = rndsink_create(NIST_HASH_DRBG_MIN_SEEDLEN_BYTES,
145 &cprng_strong_rndsink_callback, cprng); 145 &cprng_strong_rndsink_callback, cprng);
146 146
147 /* Get some initial entropy. Record whether it is full entropy. */ 147 /* Get some initial entropy. Record whether it is full entropy. */
148 uint8_t seed[NIST_HASH_DRBG_MIN_SEEDLEN_BYTES]; 148 uint8_t seed[NIST_HASH_DRBG_MIN_SEEDLEN_BYTES];
149 mutex_enter(&cprng->cs_lock); 149 mutex_enter(&cprng->cs_lock);
150 cprng->cs_ready = rndsink_request(cprng->cs_rndsink, seed, 150 cprng->cs_ready = rndsink_request(cprng->cs_rndsink, seed,
151 sizeof(seed)); 151 sizeof(seed));
152 if (nist_hash_drbg_instantiate(&cprng->cs_drbg, seed, sizeof(seed), 152 if (nist_hash_drbg_instantiate(&cprng->cs_drbg, seed, sizeof(seed),
153 &cc, sizeof(cc), cprng->cs_name, sizeof(cprng->cs_name))) 153 &cc, sizeof(cc), cprng->cs_name, sizeof(cprng->cs_name)))
154 /* XXX Fix nist_hash_drbg API so this can't happen. */ 154 /* XXX Fix nist_hash_drbg API so this can't happen. */
155 panic("cprng %s: NIST Hash_DRBG instantiation failed", 155 panic("cprng %s: NIST Hash_DRBG instantiation failed",
156 cprng->cs_name); 156 cprng->cs_name);
157 explicit_memset(seed, 0, sizeof(seed)); 157 explicit_memset(seed, 0, sizeof(seed));
158 158
159 if (ISSET(flags, CPRNG_HARD)) 159 if (ISSET(flags, CPRNG_HARD))
160 cprng->cs_remaining = NIST_HASH_DRBG_MIN_SEEDLEN_BYTES; 160 cprng->cs_remaining = NIST_HASH_DRBG_MIN_SEEDLEN_BYTES;
161 else 161 else
162 cprng->cs_remaining = 0; 162 cprng->cs_remaining = 0;
163 163
164 if (!cprng->cs_ready && !ISSET(flags, CPRNG_INIT_ANY)) 164 if (!cprng->cs_ready && !ISSET(flags, CPRNG_INIT_ANY))
165 printf("cprng %s: creating with partial entropy\n", 165 printf("cprng %s: creating with partial entropy\n",
166 cprng->cs_name); 166 cprng->cs_name);
167 mutex_exit(&cprng->cs_lock); 167 mutex_exit(&cprng->cs_lock);
168 168
169 return cprng; 169 return cprng;
170} 170}
171 171
172void 172void
173cprng_strong_destroy(struct cprng_strong *cprng) 173cprng_strong_destroy(struct cprng_strong *cprng)
174{ 174{
175 175
176 /* 176 /*
177 * Destroy the rndsink first to prevent calls to the callback. 177 * Destroy the rndsink first to prevent calls to the callback.
178 */ 178 */
179 rndsink_destroy(cprng->cs_rndsink); 179 rndsink_destroy(cprng->cs_rndsink);
180 180
181 KASSERT(!cv_has_waiters(&cprng->cs_cv)); 181 KASSERT(!cv_has_waiters(&cprng->cs_cv));
182#if 0 182#if 0
183 KASSERT(!select_has_waiters(&cprng->cs_selq)) /* XXX ? */ 183 KASSERT(!select_has_waiters(&cprng->cs_selq)) /* XXX ? */
184#endif 184#endif
185 185
186 nist_hash_drbg_destroy(&cprng->cs_drbg); 186 nist_hash_drbg_destroy(&cprng->cs_drbg);
187 seldestroy(&cprng->cs_selq); 187 seldestroy(&cprng->cs_selq);
188 cv_destroy(&cprng->cs_cv); 188 cv_destroy(&cprng->cs_cv);
189 mutex_destroy(&cprng->cs_lock); 189 mutex_destroy(&cprng->cs_lock);
190 190
191 explicit_memset(cprng, 0, sizeof(*cprng)); /* paranoia */ 191 explicit_memset(cprng, 0, sizeof(*cprng)); /* paranoia */
192 kmem_free(cprng, sizeof(*cprng)); 192 kmem_free(cprng, sizeof(*cprng));
193} 193}
194 194
195/* 195/*
196 * Generate some data from cprng. Block or return zero bytes, 196 * Generate some data from cprng. Block or return zero bytes,
197 * depending on flags & FNONBLOCK, if cprng was created without 197 * depending on flags & FNONBLOCK, if cprng was created without
198 * CPRNG_REKEY_ANY. 198 * CPRNG_REKEY_ANY.
199 */ 199 */
200size_t 200size_t
201cprng_strong(struct cprng_strong *cprng, void *buffer, size_t bytes, int flags) 201cprng_strong(struct cprng_strong *cprng, void *buffer, size_t bytes, int flags)
202{ 202{
203 size_t result; 203 size_t result;
204 204
205 /* Caller must loop for more than CPRNG_MAX_LEN bytes. */ 205 /* Caller must loop for more than CPRNG_MAX_LEN bytes. */
206 bytes = MIN(bytes, CPRNG_MAX_LEN); 206 bytes = MIN(bytes, CPRNG_MAX_LEN);
207 207
208 mutex_enter(&cprng->cs_lock); 208 mutex_enter(&cprng->cs_lock);
209 209
210 if (ISSET(cprng->cs_flags, CPRNG_REKEY_ANY)) { 210 if (ISSET(cprng->cs_flags, CPRNG_REKEY_ANY)) {
211 if (!cprng->cs_ready) 211 if (!cprng->cs_ready)
212 cprng_strong_reseed(cprng); 212 cprng_strong_reseed(cprng);
213 } else { 213 } else {
214 while (!cprng->cs_ready) { 214 while (!cprng->cs_ready) {
215 if (ISSET(flags, FNONBLOCK) || 215 if (ISSET(flags, FNONBLOCK) ||
216 !ISSET(cprng->cs_flags, CPRNG_USE_CV) || 216 !ISSET(cprng->cs_flags, CPRNG_USE_CV) ||
217 cv_wait_sig(&cprng->cs_cv, &cprng->cs_lock)) { 217 cv_wait_sig(&cprng->cs_cv, &cprng->cs_lock)) {
218 result = 0; 218 result = 0;
219 goto out; 219 goto out;
220 } 220 }
221 } 221 }
222 } 222 }
223 223
224 /* 224 /*
225 * Debit the entropy if requested. 225 * Debit the entropy if requested.
226 * 226 *
227 * XXX Kludge for /dev/random `information-theoretic' properties. 227 * XXX Kludge for /dev/random `information-theoretic' properties.
228 */ 228 */
229 if (__predict_false(ISSET(cprng->cs_flags, CPRNG_HARD))) { 229 if (__predict_false(ISSET(cprng->cs_flags, CPRNG_HARD))) {
230 KASSERT(0 < cprng->cs_remaining); 230 KASSERT(0 < cprng->cs_remaining);
231 KASSERT(cprng->cs_remaining <= 231 KASSERT(cprng->cs_remaining <=
232 NIST_HASH_DRBG_MIN_SEEDLEN_BYTES); 232 NIST_HASH_DRBG_MIN_SEEDLEN_BYTES);
233 if (bytes < cprng->cs_remaining) { 233 if (bytes < cprng->cs_remaining) {
234 cprng->cs_remaining -= bytes; 234 cprng->cs_remaining -= bytes;
235 } else { 235 } else {
236 bytes = cprng->cs_remaining; 236 bytes = cprng->cs_remaining;
237 cprng->cs_remaining = NIST_HASH_DRBG_MIN_SEEDLEN_BYTES; 237 cprng->cs_remaining = NIST_HASH_DRBG_MIN_SEEDLEN_BYTES;
238 cprng->cs_ready = false; 238 cprng->cs_ready = false;
239 rndsink_schedule(cprng->cs_rndsink); 239 rndsink_schedule(cprng->cs_rndsink);
240 } 240 }
241 KASSERT(bytes <= NIST_HASH_DRBG_MIN_SEEDLEN_BYTES); 241 KASSERT(bytes <= NIST_HASH_DRBG_MIN_SEEDLEN_BYTES);
242 KASSERT(0 < cprng->cs_remaining); 242 KASSERT(0 < cprng->cs_remaining);
243 KASSERT(cprng->cs_remaining <= 243 KASSERT(cprng->cs_remaining <=
244 NIST_HASH_DRBG_MIN_SEEDLEN_BYTES); 244 NIST_HASH_DRBG_MIN_SEEDLEN_BYTES);
245 } 245 }
246 246
247 cprng_strong_generate(cprng, buffer, bytes); 247 cprng_strong_generate(cprng, buffer, bytes);
248 result = bytes; 248 result = bytes;
249 249
250out: mutex_exit(&cprng->cs_lock); 250out: mutex_exit(&cprng->cs_lock);
251 return result; 251 return result;
252} 252}
253 253
 254uint32_t
 255cprng_strong32(void)
 256{
 257 uint32_t r;
 258 cprng_strong(kern_cprng, &r, sizeof(r), 0);
 259 return r;
 260}
 261
 262uint64_t
 263cprng_strong64(void)
 264{
 265 uint64_t r;
 266 cprng_strong(kern_cprng, &r, sizeof(r), 0);
 267 return r;
 268}
 269
254static void 270static void
255filt_cprng_detach(struct knote *kn) 271filt_cprng_detach(struct knote *kn)
256{ 272{
257 struct cprng_strong *const cprng = kn->kn_hook; 273 struct cprng_strong *const cprng = kn->kn_hook;
258 274
259 mutex_enter(&cprng->cs_lock); 275 mutex_enter(&cprng->cs_lock);
260 SLIST_REMOVE(&cprng->cs_selq.sel_klist, kn, knote, kn_selnext); 276 SLIST_REMOVE(&cprng->cs_selq.sel_klist, kn, knote, kn_selnext);
261 mutex_exit(&cprng->cs_lock); 277 mutex_exit(&cprng->cs_lock);
262} 278}
263 279
264static int 280static int
265filt_cprng_read_event(struct knote *kn, long hint) 281filt_cprng_read_event(struct knote *kn, long hint)
266{ 282{
267 struct cprng_strong *const cprng = kn->kn_hook; 283 struct cprng_strong *const cprng = kn->kn_hook;
268 int ret; 284 int ret;
269 285
270 if (hint == NOTE_SUBMIT) 286 if (hint == NOTE_SUBMIT)
271 KASSERT(mutex_owned(&cprng->cs_lock)); 287 KASSERT(mutex_owned(&cprng->cs_lock));
272 else 288 else
273 mutex_enter(&cprng->cs_lock); 289 mutex_enter(&cprng->cs_lock);
274 if (cprng->cs_ready) { 290 if (cprng->cs_ready) {
275 kn->kn_data = CPRNG_MAX_LEN; /* XXX Too large? */ 291 kn->kn_data = CPRNG_MAX_LEN; /* XXX Too large? */
276 ret = 1; 292 ret = 1;
277 } else { 293 } else {
278 ret = 0; 294 ret = 0;
279 } 295 }
280 if (hint == NOTE_SUBMIT) 296 if (hint == NOTE_SUBMIT)
281 KASSERT(mutex_owned(&cprng->cs_lock)); 297 KASSERT(mutex_owned(&cprng->cs_lock));
282 else 298 else
283 mutex_exit(&cprng->cs_lock); 299 mutex_exit(&cprng->cs_lock);
284 300
285 return ret; 301 return ret;
286} 302}
287 303
288static int 304static int
289filt_cprng_write_event(struct knote *kn, long hint) 305filt_cprng_write_event(struct knote *kn, long hint)
290{ 306{
291 struct cprng_strong *const cprng = kn->kn_hook; 307 struct cprng_strong *const cprng = kn->kn_hook;
292 308
293 if (hint == NOTE_SUBMIT) 309 if (hint == NOTE_SUBMIT)
294 KASSERT(mutex_owned(&cprng->cs_lock)); 310 KASSERT(mutex_owned(&cprng->cs_lock));
295 else 311 else
296 mutex_enter(&cprng->cs_lock); 312 mutex_enter(&cprng->cs_lock);
297 313
298 kn->kn_data = 0; 314 kn->kn_data = 0;
299 315
300 if (hint == NOTE_SUBMIT) 316 if (hint == NOTE_SUBMIT)
301 KASSERT(mutex_owned(&cprng->cs_lock)); 317 KASSERT(mutex_owned(&cprng->cs_lock));
302 else 318 else
303 mutex_exit(&cprng->cs_lock); 319 mutex_exit(&cprng->cs_lock);
304 320
305 return 0; 321 return 0;
306} 322}
307 323
308static const struct filterops cprng_read_filtops = { 324static const struct filterops cprng_read_filtops = {
309 .f_isfd = 1, 325 .f_isfd = 1,
310 .f_attach = NULL, 326 .f_attach = NULL,
311 .f_detach = filt_cprng_detach, 327 .f_detach = filt_cprng_detach,
312 .f_event = filt_cprng_read_event, 328 .f_event = filt_cprng_read_event,
313}; 329};
314 330
315static const struct filterops cprng_write_filtops = { 331static const struct filterops cprng_write_filtops = {
316 .f_isfd = 1, 332 .f_isfd = 1,
317 .f_attach = NULL, 333 .f_attach = NULL,
318 .f_detach = filt_cprng_detach, 334 .f_detach = filt_cprng_detach,
319 .f_event = filt_cprng_write_event, 335 .f_event = filt_cprng_write_event,
320}; 336};
321 337
322int 338int
323cprng_strong_kqfilter(struct cprng_strong *cprng, struct knote *kn) 339cprng_strong_kqfilter(struct cprng_strong *cprng, struct knote *kn)
324{ 340{
325 341
326 switch (kn->kn_filter) { 342 switch (kn->kn_filter) {
327 case EVFILT_READ: 343 case EVFILT_READ:
328 kn->kn_fop = &cprng_read_filtops; 344 kn->kn_fop = &cprng_read_filtops;
329 break; 345 break;
330 case EVFILT_WRITE: 346 case EVFILT_WRITE:
331 kn->kn_fop = &cprng_write_filtops; 347 kn->kn_fop = &cprng_write_filtops;
332 break; 348 break;
333 default: 349 default:
334 return EINVAL; 350 return EINVAL;
335 } 351 }
336 352
337 kn->kn_hook = cprng; 353 kn->kn_hook = cprng;
338 mutex_enter(&cprng->cs_lock); 354 mutex_enter(&cprng->cs_lock);
339 SLIST_INSERT_HEAD(&cprng->cs_selq.sel_klist, kn, kn_selnext); 355 SLIST_INSERT_HEAD(&cprng->cs_selq.sel_klist, kn, kn_selnext);
340 mutex_exit(&cprng->cs_lock); 356 mutex_exit(&cprng->cs_lock);
341 return 0; 357 return 0;
342} 358}
343 359
344int 360int
345cprng_strong_poll(struct cprng_strong *cprng, int events) 361cprng_strong_poll(struct cprng_strong *cprng, int events)
346{ 362{
347 int revents; 363 int revents;
348 364
349 if (!ISSET(events, (POLLIN | POLLRDNORM))) 365 if (!ISSET(events, (POLLIN | POLLRDNORM)))
350 return 0; 366 return 0;
351 367
352 mutex_enter(&cprng->cs_lock); 368 mutex_enter(&cprng->cs_lock);
353 if (cprng->cs_ready) { 369 if (cprng->cs_ready) {
354 revents = (events & (POLLIN | POLLRDNORM)); 370 revents = (events & (POLLIN | POLLRDNORM));
355 } else { 371 } else {
356 selrecord(curlwp, &cprng->cs_selq); 372 selrecord(curlwp, &cprng->cs_selq);
357 revents = 0; 373 revents = 0;
358 } 374 }
359 mutex_exit(&cprng->cs_lock); 375 mutex_exit(&cprng->cs_lock);
360 376
361 return revents; 377 return revents;
362} 378}
363 379
364/* 380/*
365 * XXX Move nist_hash_drbg_reseed_advised_p and 381 * XXX Move nist_hash_drbg_reseed_advised_p and
366 * nist_hash_drbg_reseed_needed_p into the nist_hash_drbg API and make 382 * nist_hash_drbg_reseed_needed_p into the nist_hash_drbg API and make
367 * the NIST_HASH_DRBG structure opaque. 383 * the NIST_HASH_DRBG structure opaque.
368 */ 384 */
369static bool 385static bool
370nist_hash_drbg_reseed_advised_p(NIST_HASH_DRBG *drbg) 386nist_hash_drbg_reseed_advised_p(NIST_HASH_DRBG *drbg)
371{ 387{
372 388
373 return (drbg->reseed_counter > (NIST_HASH_DRBG_RESEED_INTERVAL / 2)); 389 return (drbg->reseed_counter > (NIST_HASH_DRBG_RESEED_INTERVAL / 2));
374} 390}
375 391
376static bool 392static bool
377nist_hash_drbg_reseed_needed_p(NIST_HASH_DRBG *drbg) 393nist_hash_drbg_reseed_needed_p(NIST_HASH_DRBG *drbg)
378{ 394{
379 395
380 return (drbg->reseed_counter >= NIST_HASH_DRBG_RESEED_INTERVAL); 396 return (drbg->reseed_counter >= NIST_HASH_DRBG_RESEED_INTERVAL);
381} 397}
382 398
383/* 399/*
384 * Generate some data from the underlying generator. 400 * Generate some data from the underlying generator.
385 */ 401 */
386static void 402static void
387cprng_strong_generate(struct cprng_strong *cprng, void *buffer, size_t bytes) 403cprng_strong_generate(struct cprng_strong *cprng, void *buffer, size_t bytes)
388{ 404{
389 const uint32_t cc = cprng_counter(); 405 const uint32_t cc = cprng_counter();
390 406
391 KASSERT(bytes <= CPRNG_MAX_LEN); 407 KASSERT(bytes <= CPRNG_MAX_LEN);
392 KASSERT(mutex_owned(&cprng->cs_lock)); 408 KASSERT(mutex_owned(&cprng->cs_lock));
393 409
394 /* 410 /*
395 * Generate some data from the NIST Hash_DRBG. Caller 411 * Generate some data from the NIST Hash_DRBG. Caller
396 * guarantees reseed if we're not ready, and if we exhaust the 412 * guarantees reseed if we're not ready, and if we exhaust the
397 * generator, we mark ourselves not ready. Consequently, this 413 * generator, we mark ourselves not ready. Consequently, this
398 * call to the Hash_DRBG should not fail. 414 * call to the Hash_DRBG should not fail.
399 */ 415 */
400 if (__predict_false(nist_hash_drbg_generate(&cprng->cs_drbg, buffer, 416 if (__predict_false(nist_hash_drbg_generate(&cprng->cs_drbg, buffer,
401 bytes, &cc, sizeof(cc)))) 417 bytes, &cc, sizeof(cc))))
402 panic("cprng %s: NIST Hash_DRBG failed", cprng->cs_name); 418 panic("cprng %s: NIST Hash_DRBG failed", cprng->cs_name);
403 419
404 /* 420 /*
405 * If we've been seeing a lot of use, ask for some fresh 421 * If we've been seeing a lot of use, ask for some fresh
406 * entropy soon. 422 * entropy soon.
407 */ 423 */
408 if (__predict_false(nist_hash_drbg_reseed_advised_p(&cprng->cs_drbg))) 424 if (__predict_false(nist_hash_drbg_reseed_advised_p(&cprng->cs_drbg)))
409 rndsink_schedule(cprng->cs_rndsink); 425 rndsink_schedule(cprng->cs_rndsink);
410 426
411 /* 427 /*
412 * If we just exhausted the generator, inform the next user 428 * If we just exhausted the generator, inform the next user
413 * that we need a reseed. 429 * that we need a reseed.
414 */ 430 */
415 if (__predict_false(nist_hash_drbg_reseed_needed_p(&cprng->cs_drbg))) { 431 if (__predict_false(nist_hash_drbg_reseed_needed_p(&cprng->cs_drbg))) {
416 cprng->cs_ready = false; 432 cprng->cs_ready = false;
417 rndsink_schedule(cprng->cs_rndsink); /* paranoia */ 433 rndsink_schedule(cprng->cs_rndsink); /* paranoia */
418 } 434 }
419} 435}
420 436
421/* 437/*
422 * Reseed with whatever we can get from the system entropy pool right now. 438 * Reseed with whatever we can get from the system entropy pool right now.
423 */ 439 */
424static void 440static void
425cprng_strong_reseed(struct cprng_strong *cprng) 441cprng_strong_reseed(struct cprng_strong *cprng)
426{ 442{
427 uint8_t seed[NIST_HASH_DRBG_MIN_SEEDLEN_BYTES]; 443 uint8_t seed[NIST_HASH_DRBG_MIN_SEEDLEN_BYTES];
428 444
429 KASSERT(mutex_owned(&cprng->cs_lock)); 445 KASSERT(mutex_owned(&cprng->cs_lock));
430 446
431 const bool full_entropy = rndsink_request(cprng->cs_rndsink, seed, 447 const bool full_entropy = rndsink_request(cprng->cs_rndsink, seed,
432 sizeof(seed)); 448 sizeof(seed));
433 cprng_strong_reseed_from(cprng, seed, sizeof(seed), full_entropy); 449 cprng_strong_reseed_from(cprng, seed, sizeof(seed), full_entropy);
434 explicit_memset(seed, 0, sizeof(seed)); 450 explicit_memset(seed, 0, sizeof(seed));
435} 451}
436 452
437/* 453/*
438 * Reseed with the given seed. If we now have full entropy, notify waiters. 454 * Reseed with the given seed. If we now have full entropy, notify waiters.
439 */ 455 */
440static void 456static void
441cprng_strong_reseed_from(struct cprng_strong *cprng, 457cprng_strong_reseed_from(struct cprng_strong *cprng,
442 const void *seed, size_t bytes, bool full_entropy) 458 const void *seed, size_t bytes, bool full_entropy)
443{ 459{
444 const uint32_t cc = cprng_counter(); 460 const uint32_t cc = cprng_counter();
445 461
446 KASSERT(bytes == NIST_HASH_DRBG_MIN_SEEDLEN_BYTES); 462 KASSERT(bytes == NIST_HASH_DRBG_MIN_SEEDLEN_BYTES);
447 KASSERT(mutex_owned(&cprng->cs_lock)); 463 KASSERT(mutex_owned(&cprng->cs_lock));
448 464
449 /* 465 /*
450 * Notify anyone interested in the partiality of entropy in our 466 * Notify anyone interested in the partiality of entropy in our
451 * seed -- anyone waiting for full entropy, or any system 467 * seed -- anyone waiting for full entropy, or any system
452 * operators interested in knowing when the entropy pool is 468 * operators interested in knowing when the entropy pool is
453 * running on fumes. 469 * running on fumes.
454 */ 470 */
455 if (full_entropy) { 471 if (full_entropy) {
456 if (!cprng->cs_ready) { 472 if (!cprng->cs_ready) {
457 cprng->cs_ready = true; 473 cprng->cs_ready = true;
458 cv_broadcast(&cprng->cs_cv); 474 cv_broadcast(&cprng->cs_cv);
459 selnotify(&cprng->cs_selq, (POLLIN | POLLRDNORM), 475 selnotify(&cprng->cs_selq, (POLLIN | POLLRDNORM),
460 NOTE_SUBMIT); 476 NOTE_SUBMIT);
461 } 477 }
462 } else { 478 } else {
463 /* 479 /*
464 * XXX Is there is any harm in reseeding with partial 480 * XXX Is there is any harm in reseeding with partial
465 * entropy when we had full entropy before? If so, 481 * entropy when we had full entropy before? If so,
466 * remove the conditional on this message. 482 * remove the conditional on this message.
467 */ 483 */
468 if (!cprng->cs_ready && 484 if (!cprng->cs_ready &&
469 !ISSET(cprng->cs_flags, CPRNG_REKEY_ANY)) 485 !ISSET(cprng->cs_flags, CPRNG_REKEY_ANY))
470 printf("cprng %s: reseeding with partial entropy\n", 486 printf("cprng %s: reseeding with partial entropy\n",
471 cprng->cs_name); 487 cprng->cs_name);
472 } 488 }
473 489
474 if (nist_hash_drbg_reseed(&cprng->cs_drbg, seed, bytes, &cc, 490 if (nist_hash_drbg_reseed(&cprng->cs_drbg, seed, bytes, &cc,
475 sizeof(cc))) 491 sizeof(cc)))
476 /* XXX Fix nist_hash_drbg API so this can't happen. */ 492 /* XXX Fix nist_hash_drbg API so this can't happen. */
477 panic("cprng %s: NIST Hash_DRBG reseed failed", 493 panic("cprng %s: NIST Hash_DRBG reseed failed",
478 cprng->cs_name); 494 cprng->cs_name);
479} 495}
480 496
481/* 497/*
482 * Feed entropy from an rndsink request into the CPRNG for which the 498 * Feed entropy from an rndsink request into the CPRNG for which the
483 * request was issued. 499 * request was issued.
484 */ 500 */
485static void 501static void
486cprng_strong_rndsink_callback(void *context, const void *seed, size_t bytes) 502cprng_strong_rndsink_callback(void *context, const void *seed, size_t bytes)
487{ 503{
488 struct cprng_strong *const cprng = context; 504 struct cprng_strong *const cprng = context;
489 505
490 mutex_enter(&cprng->cs_lock); 506 mutex_enter(&cprng->cs_lock);
491 /* Assume that rndsinks provide only full-entropy output. */ 507 /* Assume that rndsinks provide only full-entropy output. */
492 cprng_strong_reseed_from(cprng, seed, bytes, true); 508 cprng_strong_reseed_from(cprng, seed, bytes, true);
493 mutex_exit(&cprng->cs_lock); 509 mutex_exit(&cprng->cs_lock);
494} 510}
495 511
496static ONCE_DECL(sysctl_prng_once); 512static ONCE_DECL(sysctl_prng_once);
497static cprng_strong_t *sysctl_prng; 513static cprng_strong_t *sysctl_prng;
498 514
499static int 515static int
500makeprng(void) 516makeprng(void)
501{ 517{
502 518
503 /* can't create in cprng_init(), too early */ 519 /* can't create in cprng_init(), too early */
504 sysctl_prng = cprng_strong_create("sysctl", IPL_NONE, 520 sysctl_prng = cprng_strong_create("sysctl", IPL_NONE,
505 CPRNG_INIT_ANY|CPRNG_REKEY_ANY); 521 CPRNG_INIT_ANY|CPRNG_REKEY_ANY);
506 return 0; 522 return 0;
507} 523}
508 524
509/* 525/*
510 * sysctl helper routine for kern.urandom node. Picks a random number 526 * sysctl helper routine for kern.urandom node. Picks a random number
511 * for you. 527 * for you.
512 */ 528 */
513static int 529static int
514sysctl_kern_urnd(SYSCTLFN_ARGS) 530sysctl_kern_urnd(SYSCTLFN_ARGS)
515{ 531{
516 int v, rv; 532 int v, rv;
517 533
518 RUN_ONCE(&sysctl_prng_once, makeprng); 534 RUN_ONCE(&sysctl_prng_once, makeprng);
519 rv = cprng_strong(sysctl_prng, &v, sizeof(v), 0); 535 rv = cprng_strong(sysctl_prng, &v, sizeof(v), 0);
520 if (rv == sizeof(v)) { 536 if (rv == sizeof(v)) {
521 struct sysctlnode node = *rnode; 537 struct sysctlnode node = *rnode;
522 node.sysctl_data = &v; 538 node.sysctl_data = &v;
523 return (sysctl_lookup(SYSCTLFN_CALL(&node))); 539 return (sysctl_lookup(SYSCTLFN_CALL(&node)));
524 } 540 }
525 else 541 else
526 return (EIO); /*XXX*/ 542 return (EIO); /*XXX*/
527} 543}
528 544
529/* 545/*
530 * sysctl helper routine for kern.arandom node. Fills the supplied 546 * sysctl helper routine for kern.arandom node. Fills the supplied
531 * structure with random data for you. 547 * structure with random data for you.
532 * 548 *
533 * This node was originally declared as type "int" but its implementation 549 * This node was originally declared as type "int" but its implementation
534 * in OpenBSD, whence it came, would happily return up to 8K of data if 550 * in OpenBSD, whence it came, would happily return up to 8K of data if
535 * requested. Evidently this was used to key RC4 in userspace. 551 * requested. Evidently this was used to key RC4 in userspace.
536 * 552 *
537 * In NetBSD, the libc stack-smash-protection code reads 64 bytes 553 * In NetBSD, the libc stack-smash-protection code reads 64 bytes
538 * from here at every program startup. Third-party software also often 554 * from here at every program startup. Third-party software also often
539 * uses this to obtain a key for CSPRNG, reading 32 bytes or more, while 555 * uses this to obtain a key for CSPRNG, reading 32 bytes or more, while
540 * avoiding the need to open /dev/urandom. 556 * avoiding the need to open /dev/urandom.
541 */ 557 */
542static int 558static int
543sysctl_kern_arnd(SYSCTLFN_ARGS) 559sysctl_kern_arnd(SYSCTLFN_ARGS)
544{ 560{
545 int error; 561 int error;
546 void *v; 562 void *v;
547 struct sysctlnode node = *rnode; 563 struct sysctlnode node = *rnode;
548 size_t n __diagused; 564 size_t n __diagused;
549 565
550 switch (*oldlenp) { 566 switch (*oldlenp) {
551 case 0: 567 case 0:
552 return 0; 568 return 0;
553 default: 569 default:
554 if (*oldlenp > 256) { 570 if (*oldlenp > 256) {
555 return E2BIG; 571 return E2BIG;
556 } 572 }
557 RUN_ONCE(&sysctl_prng_once, makeprng); 573 RUN_ONCE(&sysctl_prng_once, makeprng);
558 v = kmem_alloc(*oldlenp, KM_SLEEP); 574 v = kmem_alloc(*oldlenp, KM_SLEEP);
559 n = cprng_strong(sysctl_prng, v, *oldlenp, 0); 575 n = cprng_strong(sysctl_prng, v, *oldlenp, 0);
560 KASSERT(n == *oldlenp); 576 KASSERT(n == *oldlenp);
561 node.sysctl_data = v; 577 node.sysctl_data = v;
562 node.sysctl_size = *oldlenp; 578 node.sysctl_size = *oldlenp;
563 error = sysctl_lookup(SYSCTLFN_CALL(&node)); 579 error = sysctl_lookup(SYSCTLFN_CALL(&node));
564 kmem_free(v, *oldlenp); 580 kmem_free(v, *oldlenp);
565 return error; 581 return error;
566 } 582 }
567} 583}

cvs diff -r1.15 -r1.16 src/sys/sys/cprng.h (switch to unified diff)

--- src/sys/sys/cprng.h 2019/09/02 20:09:30 1.15
+++ src/sys/sys/cprng.h 2020/04/12 07:16:09 1.16
@@ -1,90 +1,77 @@ @@ -1,90 +1,77 @@
1/* $NetBSD: cprng.h,v 1.15 2019/09/02 20:09:30 riastradh Exp $ */ 1/* $NetBSD: cprng.h,v 1.16 2020/04/12 07:16:09 maxv Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2011-2013 The NetBSD Foundation, Inc. 4 * Copyright (c) 2011-2013 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Thor Lancelot Simon and Taylor R. Campbell. 8 * by Thor Lancelot Simon and Taylor R. Campbell.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32/* 32/*
33 * XXX Don't change this to _SYS_CPRNG_H or anything -- code outside 33 * XXX Don't change this to _SYS_CPRNG_H or anything -- code outside
34 * this file relies on its name... (I'm looking at you, ipf!) 34 * this file relies on its name... (I'm looking at you, ipf!)
35 */ 35 */
36#ifndef _CPRNG_H 36#ifndef _CPRNG_H
37#define _CPRNG_H 37#define _CPRNG_H
38 38
39#include <sys/types.h> 39#include <sys/types.h>
40 40
41#include <crypto/nist_hash_drbg/nist_hash_drbg.h> 41#include <crypto/nist_hash_drbg/nist_hash_drbg.h>
42#include <crypto/cprng_fast/cprng_fast.h> 42#include <crypto/cprng_fast/cprng_fast.h>
43 43
44/* 44/*
45 * NIST SP800-90 says 2^19 bytes per request for the Hash_DRBG. 45 * NIST SP800-90 says 2^19 bytes per request for the Hash_DRBG.
46 */ 46 */
47#define CPRNG_MAX_LEN 524288 47#define CPRNG_MAX_LEN 524288
48 48
49typedef struct cprng_strong cprng_strong_t; 49typedef struct cprng_strong cprng_strong_t;
50 50
51void cprng_init(void); 51void cprng_init(void);
52 52
53#define CPRNG_INIT_ANY 0x00000001 53#define CPRNG_INIT_ANY 0x00000001
54#define CPRNG_REKEY_ANY 0x00000002 54#define CPRNG_REKEY_ANY 0x00000002
55#define CPRNG_USE_CV 0x00000004 55#define CPRNG_USE_CV 0x00000004
56#define CPRNG_HARD 0x00000008 56#define CPRNG_HARD 0x00000008
57#define CPRNG_FMT "\177\020\ 57#define CPRNG_FMT "\177\020\
58b\0INIT_ANY\0\ 58b\0INIT_ANY\0\
59b\1REKEY_ANY\0\ 59b\1REKEY_ANY\0\
60b\2USE_CV\0\ 60b\2USE_CV\0\
61b\3HARD\0" 61b\3HARD\0"
62 62
63cprng_strong_t * 63cprng_strong_t *
64 cprng_strong_create(const char *, int, int); 64 cprng_strong_create(const char *, int, int);
65void cprng_strong_destroy(cprng_strong_t *); 65void cprng_strong_destroy(cprng_strong_t *);
66size_t cprng_strong(cprng_strong_t *, void *, size_t, int); 66size_t cprng_strong(cprng_strong_t *, void *, size_t, int);
67 67
68struct knote; /* XXX temp, for /dev/random */ 68struct knote; /* XXX temp, for /dev/random */
69int cprng_strong_kqfilter(cprng_strong_t *, struct knote *); /* XXX " */ 69int cprng_strong_kqfilter(cprng_strong_t *, struct knote *); /* XXX " */
70int cprng_strong_poll(cprng_strong_t *, int); /* XXX " */ 70int cprng_strong_poll(cprng_strong_t *, int); /* XXX " */
71 71
72extern cprng_strong_t *kern_cprng; 72extern cprng_strong_t *kern_cprng;
73 73
74static __inline uint32_t 74uint32_t cprng_strong32(void);
75cprng_strong32(void) 75uint64_t cprng_strong64(void);
76{ 
77 uint32_t r; 
78 cprng_strong(kern_cprng, &r, sizeof(r), 0); 
79 return r; 
80} 
81 
82static __inline uint64_t 
83cprng_strong64(void) 
84{ 
85 uint64_t r; 
86 cprng_strong(kern_cprng, &r, sizeof(r), 0); 
87 return r; 
88} 
89 76
90#endif /* _CPRNG_H */ 77#endif /* _CPRNG_H */