subr_cprng.c revision 1.18 1 1.18 riastrad /* $NetBSD: subr_cprng.c,v 1.18 2013/06/23 02:35:24 riastradh Exp $ */
2 1.1 tls
3 1.1 tls /*-
4 1.18 riastrad * Copyright (c) 2011-2013 The NetBSD Foundation, Inc.
5 1.1 tls * All rights reserved.
6 1.1 tls *
7 1.1 tls * This code is derived from software contributed to The NetBSD Foundation
8 1.18 riastrad * by Thor Lancelot Simon and Taylor R. Campbell.
9 1.1 tls *
10 1.1 tls * Redistribution and use in source and binary forms, with or without
11 1.1 tls * modification, are permitted provided that the following conditions
12 1.1 tls * are met:
13 1.1 tls * 1. Redistributions of source code must retain the above copyright
14 1.1 tls * notice, this list of conditions and the following disclaimer.
15 1.1 tls * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 tls * notice, this list of conditions and the following disclaimer in the
17 1.1 tls * documentation and/or other materials provided with the distribution.
18 1.1 tls *
19 1.1 tls * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 tls * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 tls * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 tls * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 tls * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 tls * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 tls * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 tls * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 tls * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 tls * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 tls * POSSIBILITY OF SUCH DAMAGE.
30 1.1 tls */
31 1.1 tls
32 1.18 riastrad #include <sys/cdefs.h>
33 1.18 riastrad __KERNEL_RCSID(0, "$NetBSD: subr_cprng.c,v 1.18 2013/06/23 02:35:24 riastradh Exp $");
34 1.18 riastrad
35 1.18 riastrad #include <sys/param.h>
36 1.1 tls #include <sys/types.h>
37 1.18 riastrad #include <sys/condvar.h>
38 1.18 riastrad #include <sys/cprng.h>
39 1.18 riastrad #include <sys/errno.h>
40 1.18 riastrad #include <sys/event.h> /* XXX struct knote */
41 1.18 riastrad #include <sys/fcntl.h> /* XXX FNONBLOCK */
42 1.1 tls #include <sys/kernel.h>
43 1.18 riastrad #include <sys/kmem.h>
44 1.18 riastrad #include <sys/poll.h> /* XXX POLLIN/POLLOUT/&c. */
45 1.18 riastrad #include <sys/select.h>
46 1.1 tls #include <sys/systm.h>
47 1.18 riastrad #include <sys/rnd.h>
48 1.18 riastrad #include <sys/rndsink.h>
49 1.18 riastrad #if DEBUG
50 1.1 tls #include <sys/rngtest.h>
51 1.18 riastrad #endif
52 1.18 riastrad
53 1.18 riastrad #include <crypto/nist_ctr_drbg/nist_ctr_drbg.h>
54 1.1 tls
55 1.2 tsutsui #if defined(__HAVE_CPU_COUNTER)
56 1.1 tls #include <machine/cpu_counter.h>
57 1.2 tsutsui #endif
58 1.1 tls
59 1.18 riastrad static void cprng_strong_generate(struct cprng_strong *, void *, size_t);
60 1.18 riastrad static void cprng_strong_reseed(struct cprng_strong *);
61 1.18 riastrad static void cprng_strong_reseed_from(struct cprng_strong *, const void *,
62 1.18 riastrad size_t, bool);
63 1.18 riastrad #if DEBUG
64 1.18 riastrad static void cprng_strong_rngtest(struct cprng_strong *);
65 1.18 riastrad #endif
66 1.1 tls
67 1.18 riastrad static rndsink_callback_t cprng_strong_rndsink_callback;
68 1.1 tls
69 1.1 tls void
70 1.1 tls cprng_init(void)
71 1.1 tls {
72 1.1 tls nist_ctr_initialize();
73 1.1 tls }
74 1.1 tls
75 1.1 tls static inline uint32_t
76 1.1 tls cprng_counter(void)
77 1.1 tls {
78 1.1 tls struct timeval tv;
79 1.1 tls
80 1.1 tls #if defined(__HAVE_CPU_COUNTER)
81 1.1 tls if (cpu_hascounter())
82 1.1 tls return cpu_counter32();
83 1.1 tls #endif
84 1.1 tls if (__predict_false(cold)) {
85 1.1 tls /* microtime unsafe if clock not running yet */
86 1.1 tls return 0;
87 1.1 tls }
88 1.1 tls microtime(&tv);
89 1.1 tls return (tv.tv_sec * 1000000 + tv.tv_usec);
90 1.1 tls }
91 1.1 tls
92 1.18 riastrad struct cprng_strong {
93 1.18 riastrad char cs_name[16];
94 1.18 riastrad int cs_flags;
95 1.18 riastrad kmutex_t cs_lock;
96 1.18 riastrad kcondvar_t cs_cv;
97 1.18 riastrad struct selinfo cs_selq;
98 1.18 riastrad struct rndsink *cs_rndsink;
99 1.18 riastrad bool cs_ready;
100 1.18 riastrad NIST_CTR_DRBG cs_drbg;
101 1.18 riastrad };
102 1.18 riastrad
103 1.18 riastrad struct cprng_strong *
104 1.18 riastrad cprng_strong_create(const char *name, int ipl, int flags)
105 1.18 riastrad {
106 1.18 riastrad const uint32_t cc = cprng_counter();
107 1.18 riastrad struct cprng_strong *const cprng = kmem_alloc(sizeof(*cprng),
108 1.18 riastrad KM_SLEEP);
109 1.18 riastrad
110 1.18 riastrad /*
111 1.18 riastrad * rndsink_request takes a spin lock at IPL_VM, so we can be no
112 1.18 riastrad * higher than that.
113 1.18 riastrad */
114 1.18 riastrad KASSERT(ipl <= IPL_VM);
115 1.18 riastrad
116 1.18 riastrad /* Initialize the easy fields. */
117 1.18 riastrad (void)strlcpy(cprng->cs_name, name, sizeof(cprng->cs_name));
118 1.18 riastrad cprng->cs_flags = flags;
119 1.18 riastrad mutex_init(&cprng->cs_lock, MUTEX_DEFAULT, ipl);
120 1.18 riastrad cv_init(&cprng->cs_cv, cprng->cs_name);
121 1.18 riastrad selinit(&cprng->cs_selq);
122 1.18 riastrad cprng->cs_rndsink = rndsink_create(NIST_BLOCK_KEYLEN_BYTES,
123 1.18 riastrad &cprng_strong_rndsink_callback, cprng);
124 1.18 riastrad
125 1.18 riastrad /* Get some initial entropy. Record whether it is full entropy. */
126 1.18 riastrad uint8_t seed[NIST_BLOCK_KEYLEN_BYTES];
127 1.18 riastrad cprng->cs_ready = rndsink_request(cprng->cs_rndsink, seed,
128 1.18 riastrad sizeof(seed));
129 1.18 riastrad if (nist_ctr_drbg_instantiate(&cprng->cs_drbg, seed, sizeof(seed),
130 1.18 riastrad &cc, sizeof(cc), cprng->cs_name, sizeof(cprng->cs_name)))
131 1.18 riastrad /* XXX Fix nist_ctr_drbg API so this can't happen. */
132 1.18 riastrad panic("cprng %s: NIST CTR_DRBG instantiation failed",
133 1.18 riastrad cprng->cs_name);
134 1.18 riastrad explicit_bzero(seed, sizeof(seed));
135 1.18 riastrad
136 1.18 riastrad if (!cprng->cs_ready && !ISSET(flags, CPRNG_INIT_ANY))
137 1.18 riastrad printf("cprng %s: creating with partial entropy\n",
138 1.18 riastrad cprng->cs_name);
139 1.18 riastrad
140 1.18 riastrad return cprng;
141 1.18 riastrad }
142 1.18 riastrad
143 1.18 riastrad void
144 1.18 riastrad cprng_strong_destroy(struct cprng_strong *cprng)
145 1.8 tls {
146 1.8 tls
147 1.18 riastrad /*
148 1.18 riastrad * Destroy the rndsink first to prevent calls to the callback.
149 1.18 riastrad */
150 1.18 riastrad rndsink_destroy(cprng->cs_rndsink);
151 1.8 tls
152 1.18 riastrad KASSERT(!cv_has_waiters(&cprng->cs_cv));
153 1.18 riastrad #if 0
154 1.18 riastrad KASSERT(!select_has_waiters(&cprng->cs_selq)) /* XXX ? */
155 1.18 riastrad #endif
156 1.15 tls
157 1.18 riastrad nist_ctr_drbg_destroy(&cprng->cs_drbg);
158 1.18 riastrad seldestroy(&cprng->cs_selq);
159 1.18 riastrad cv_destroy(&cprng->cs_cv);
160 1.18 riastrad mutex_destroy(&cprng->cs_lock);
161 1.18 riastrad
162 1.18 riastrad explicit_bzero(cprng, sizeof(*cprng)); /* paranoia */
163 1.18 riastrad kmem_free(cprng, sizeof(*cprng));
164 1.8 tls }
165 1.8 tls
166 1.18 riastrad /*
167 1.18 riastrad * Generate some data from cprng. Block or return zero bytes,
168 1.18 riastrad * depending on flags & FNONBLOCK, if cprng was created without
169 1.18 riastrad * CPRNG_REKEY_ANY.
170 1.18 riastrad */
171 1.18 riastrad size_t
172 1.18 riastrad cprng_strong(struct cprng_strong *cprng, void *buffer, size_t bytes, int flags)
173 1.5 tls {
174 1.18 riastrad size_t result;
175 1.18 riastrad
176 1.18 riastrad /* Caller must loop for more than CPRNG_MAX_LEN bytes. */
177 1.18 riastrad bytes = MIN(bytes, CPRNG_MAX_LEN);
178 1.18 riastrad
179 1.18 riastrad mutex_enter(&cprng->cs_lock);
180 1.18 riastrad
181 1.18 riastrad if (ISSET(cprng->cs_flags, CPRNG_REKEY_ANY)) {
182 1.18 riastrad if (!cprng->cs_ready)
183 1.18 riastrad cprng_strong_reseed(cprng);
184 1.18 riastrad } else {
185 1.18 riastrad while (!cprng->cs_ready) {
186 1.18 riastrad if (ISSET(flags, FNONBLOCK) ||
187 1.18 riastrad !ISSET(cprng->cs_flags, CPRNG_USE_CV) ||
188 1.18 riastrad cv_wait_sig(&cprng->cs_cv, &cprng->cs_lock)) {
189 1.18 riastrad result = 0;
190 1.18 riastrad goto out;
191 1.8 tls }
192 1.8 tls }
193 1.5 tls }
194 1.18 riastrad
195 1.18 riastrad cprng_strong_generate(cprng, buffer, bytes);
196 1.18 riastrad result = bytes;
197 1.18 riastrad
198 1.18 riastrad out: mutex_exit(&cprng->cs_lock);
199 1.18 riastrad return result;
200 1.18 riastrad }
201 1.18 riastrad
202 1.18 riastrad static void filt_cprng_detach(struct knote *);
203 1.18 riastrad static int filt_cprng_event(struct knote *, long);
204 1.18 riastrad
205 1.18 riastrad static const struct filterops cprng_filtops =
206 1.18 riastrad { 1, NULL, filt_cprng_detach, filt_cprng_event };
207 1.18 riastrad
208 1.18 riastrad int
209 1.18 riastrad cprng_strong_kqfilter(struct cprng_strong *cprng, struct knote *kn)
210 1.18 riastrad {
211 1.18 riastrad
212 1.18 riastrad switch (kn->kn_filter) {
213 1.18 riastrad case EVFILT_READ:
214 1.18 riastrad kn->kn_fop = &cprng_filtops;
215 1.18 riastrad kn->kn_hook = cprng;
216 1.18 riastrad mutex_enter(&cprng->cs_lock);
217 1.18 riastrad SLIST_INSERT_HEAD(&cprng->cs_selq.sel_klist, kn, kn_selnext);
218 1.18 riastrad mutex_exit(&cprng->cs_lock);
219 1.18 riastrad return 0;
220 1.18 riastrad
221 1.18 riastrad case EVFILT_WRITE:
222 1.18 riastrad default:
223 1.18 riastrad return EINVAL;
224 1.8 tls }
225 1.5 tls }
226 1.5 tls
227 1.5 tls static void
228 1.18 riastrad filt_cprng_detach(struct knote *kn)
229 1.1 tls {
230 1.18 riastrad struct cprng_strong *const cprng = kn->kn_hook;
231 1.18 riastrad
232 1.18 riastrad mutex_enter(&cprng->cs_lock);
233 1.18 riastrad SLIST_REMOVE(&cprng->cs_selq.sel_klist, kn, knote, kn_selnext);
234 1.18 riastrad mutex_exit(&cprng->cs_lock);
235 1.18 riastrad }
236 1.8 tls
237 1.18 riastrad static int
238 1.18 riastrad filt_cprng_event(struct knote *kn, long hint)
239 1.18 riastrad {
240 1.18 riastrad struct cprng_strong *const cprng = kn->kn_hook;
241 1.18 riastrad int ret;
242 1.1 tls
243 1.18 riastrad if (hint == NOTE_SUBMIT)
244 1.18 riastrad KASSERT(mutex_owned(&cprng->cs_lock));
245 1.18 riastrad else
246 1.18 riastrad mutex_enter(&cprng->cs_lock);
247 1.18 riastrad if (cprng->cs_ready) {
248 1.18 riastrad kn->kn_data = CPRNG_MAX_LEN; /* XXX Too large? */
249 1.18 riastrad ret = 1;
250 1.18 riastrad } else {
251 1.18 riastrad ret = 0;
252 1.7 tls }
253 1.18 riastrad if (hint == NOTE_SUBMIT)
254 1.18 riastrad KASSERT(mutex_owned(&cprng->cs_lock));
255 1.18 riastrad else
256 1.18 riastrad mutex_exit(&cprng->cs_lock);
257 1.7 tls
258 1.18 riastrad return ret;
259 1.1 tls }
260 1.1 tls
261 1.18 riastrad int
262 1.18 riastrad cprng_strong_poll(struct cprng_strong *cprng, int events)
263 1.15 tls {
264 1.18 riastrad int revents;
265 1.18 riastrad
266 1.18 riastrad if (!ISSET(events, (POLLIN | POLLRDNORM)))
267 1.18 riastrad return 0;
268 1.18 riastrad
269 1.18 riastrad mutex_enter(&cprng->cs_lock);
270 1.18 riastrad if (cprng->cs_ready) {
271 1.18 riastrad revents = (events & (POLLIN | POLLRDNORM));
272 1.18 riastrad } else {
273 1.18 riastrad selrecord(curlwp, &cprng->cs_selq);
274 1.18 riastrad revents = 0;
275 1.15 tls }
276 1.18 riastrad mutex_exit(&cprng->cs_lock);
277 1.18 riastrad
278 1.18 riastrad return revents;
279 1.18 riastrad }
280 1.18 riastrad
281 1.18 riastrad /*
282 1.18 riastrad * XXX Kludge for the current /dev/random implementation.
283 1.18 riastrad */
284 1.18 riastrad void
285 1.18 riastrad cprng_strong_deplete(struct cprng_strong *cprng)
286 1.18 riastrad {
287 1.18 riastrad
288 1.18 riastrad mutex_enter(&cprng->cs_lock);
289 1.18 riastrad cprng->cs_ready = false;
290 1.18 riastrad rndsink_schedule(cprng->cs_rndsink);
291 1.18 riastrad mutex_exit(&cprng->cs_lock);
292 1.18 riastrad }
293 1.18 riastrad
294 1.18 riastrad /*
295 1.18 riastrad * XXX Move nist_ctr_drbg_reseed_advised_p and
296 1.18 riastrad * nist_ctr_drbg_reseed_needed_p into the nist_ctr_drbg API and make
297 1.18 riastrad * the NIST_CTR_DRBG structure opaque.
298 1.18 riastrad */
299 1.18 riastrad static bool
300 1.18 riastrad nist_ctr_drbg_reseed_advised_p(NIST_CTR_DRBG *drbg)
301 1.18 riastrad {
302 1.18 riastrad
303 1.18 riastrad return (drbg->reseed_counter > (NIST_CTR_DRBG_RESEED_INTERVAL / 2));
304 1.15 tls }
305 1.15 tls
306 1.18 riastrad static bool
307 1.18 riastrad nist_ctr_drbg_reseed_needed_p(NIST_CTR_DRBG *drbg)
308 1.1 tls {
309 1.1 tls
310 1.18 riastrad return (drbg->reseed_counter >= NIST_CTR_DRBG_RESEED_INTERVAL);
311 1.18 riastrad }
312 1.18 riastrad
313 1.18 riastrad /*
314 1.18 riastrad * Generate some data from the underlying generator.
315 1.18 riastrad */
316 1.18 riastrad static void
317 1.18 riastrad cprng_strong_generate(struct cprng_strong *cprng, void *buffer,
318 1.18 riastrad size_t bytes)
319 1.18 riastrad {
320 1.18 riastrad const uint32_t cc = cprng_counter();
321 1.18 riastrad
322 1.18 riastrad KASSERT(bytes <= CPRNG_MAX_LEN);
323 1.18 riastrad KASSERT(mutex_owned(&cprng->cs_lock));
324 1.18 riastrad
325 1.18 riastrad /*
326 1.18 riastrad * Generate some data from the NIST CTR_DRBG. Caller
327 1.18 riastrad * guarantees reseed if we're not ready, and if we exhaust the
328 1.18 riastrad * generator, we mark ourselves not ready. Consequently, this
329 1.18 riastrad * call to the CTR_DRBG should not fail.
330 1.18 riastrad */
331 1.18 riastrad if (__predict_false(nist_ctr_drbg_generate(&cprng->cs_drbg, buffer,
332 1.18 riastrad bytes, &cc, sizeof(cc))))
333 1.18 riastrad panic("cprng %s: NIST CTR_DRBG failed", cprng->cs_name);
334 1.1 tls
335 1.18 riastrad /*
336 1.18 riastrad * If we've been seeing a lot of use, ask for some fresh
337 1.18 riastrad * entropy soon.
338 1.18 riastrad */
339 1.18 riastrad if (__predict_false(nist_ctr_drbg_reseed_advised_p(&cprng->cs_drbg)))
340 1.18 riastrad rndsink_schedule(cprng->cs_rndsink);
341 1.1 tls
342 1.18 riastrad /*
343 1.18 riastrad * If we just exhausted the generator, inform the next user
344 1.18 riastrad * that we need a reseed.
345 1.18 riastrad *
346 1.18 riastrad * XXX For /dev/random CPRNGs, the criterion is supposed to be
347 1.18 riastrad * `Has this seeding generated 32 bytes?'.
348 1.18 riastrad */
349 1.18 riastrad if (__predict_false(nist_ctr_drbg_reseed_needed_p(&cprng->cs_drbg))) {
350 1.18 riastrad cprng->cs_ready = false;
351 1.18 riastrad rndsink_schedule(cprng->cs_rndsink); /* paranoia */
352 1.1 tls }
353 1.18 riastrad }
354 1.1 tls
355 1.18 riastrad /*
356 1.18 riastrad * Reseed with whatever we can get from the system entropy pool right now.
357 1.18 riastrad */
358 1.18 riastrad static void
359 1.18 riastrad cprng_strong_reseed(struct cprng_strong *cprng)
360 1.18 riastrad {
361 1.18 riastrad uint8_t seed[NIST_BLOCK_KEYLEN_BYTES];
362 1.5 tls
363 1.18 riastrad KASSERT(mutex_owned(&cprng->cs_lock));
364 1.1 tls
365 1.18 riastrad const bool full_entropy = rndsink_request(cprng->cs_rndsink, seed,
366 1.18 riastrad sizeof(seed));
367 1.18 riastrad cprng_strong_reseed_from(cprng, seed, sizeof(seed), full_entropy);
368 1.18 riastrad explicit_bzero(seed, sizeof(seed));
369 1.1 tls }
370 1.1 tls
371 1.18 riastrad /*
372 1.18 riastrad * Reseed with the given seed. If we now have full entropy, notify waiters.
373 1.18 riastrad */
374 1.18 riastrad static void
375 1.18 riastrad cprng_strong_reseed_from(struct cprng_strong *cprng,
376 1.18 riastrad const void *seed, size_t bytes, bool full_entropy)
377 1.1 tls {
378 1.18 riastrad const uint32_t cc = cprng_counter();
379 1.1 tls
380 1.18 riastrad KASSERT(bytes == NIST_BLOCK_KEYLEN_BYTES);
381 1.18 riastrad KASSERT(mutex_owned(&cprng->cs_lock));
382 1.1 tls
383 1.1 tls /*
384 1.18 riastrad * Notify anyone interested in the partiality of entropy in our
385 1.18 riastrad * seed -- anyone waiting for full entropy, or any system
386 1.18 riastrad * operators interested in knowing when the entropy pool is
387 1.18 riastrad * running on fumes.
388 1.1 tls */
389 1.18 riastrad if (full_entropy) {
390 1.18 riastrad if (!cprng->cs_ready) {
391 1.18 riastrad cprng->cs_ready = true;
392 1.18 riastrad cv_broadcast(&cprng->cs_cv);
393 1.18 riastrad selnotify(&cprng->cs_selq, (POLLIN | POLLRDNORM),
394 1.18 riastrad NOTE_SUBMIT);
395 1.18 riastrad }
396 1.18 riastrad } else {
397 1.18 riastrad /*
398 1.18 riastrad * XXX Is there is any harm in reseeding with partial
399 1.18 riastrad * entropy when we had full entropy before? If so,
400 1.18 riastrad * remove the conditional on this message.
401 1.18 riastrad */
402 1.18 riastrad if (!cprng->cs_ready &&
403 1.18 riastrad !ISSET(cprng->cs_flags, CPRNG_REKEY_ANY))
404 1.18 riastrad printf("cprng %s: reseeding with partial entropy\n",
405 1.18 riastrad cprng->cs_name);
406 1.18 riastrad }
407 1.18 riastrad
408 1.18 riastrad if (nist_ctr_drbg_reseed(&cprng->cs_drbg, seed, bytes, &cc, sizeof(cc)))
409 1.18 riastrad /* XXX Fix nist_ctr_drbg API so this can't happen. */
410 1.18 riastrad panic("cprng %s: NIST CTR_DRBG reseed failed", cprng->cs_name);
411 1.5 tls
412 1.18 riastrad #if DEBUG
413 1.18 riastrad cprng_strong_rngtest(cprng);
414 1.8 tls #endif
415 1.1 tls }
416 1.1 tls
417 1.18 riastrad #if DEBUG
418 1.18 riastrad /*
419 1.18 riastrad * Generate some output and apply a statistical RNG test to it.
420 1.18 riastrad */
421 1.18 riastrad static void
422 1.18 riastrad cprng_strong_rngtest(struct cprng_strong *cprng)
423 1.1 tls {
424 1.5 tls
425 1.18 riastrad KASSERT(mutex_owned(&cprng->cs_lock));
426 1.18 riastrad
427 1.18 riastrad /* XXX Switch to a pool cache instead? */
428 1.18 riastrad rngtest_t *const rt = kmem_intr_alloc(sizeof(*rt), KM_NOSLEEP);
429 1.18 riastrad if (rt == NULL)
430 1.18 riastrad /* XXX Warn? */
431 1.18 riastrad return;
432 1.1 tls
433 1.18 riastrad (void)strlcpy(rt->rt_name, cprng->cs_name, sizeof(rt->rt_name));
434 1.6 tls
435 1.18 riastrad if (nist_ctr_drbg_generate(&cprng->cs_drbg, rt->rt_b, sizeof(rt->rt_b),
436 1.18 riastrad NULL, 0))
437 1.18 riastrad panic("cprng %s: NIST CTR_DRBG failed after reseed",
438 1.18 riastrad cprng->cs_name);
439 1.5 tls
440 1.18 riastrad if (rngtest(rt)) {
441 1.18 riastrad printf("cprng %s: failed statistical RNG test\n",
442 1.18 riastrad cprng->cs_name);
443 1.18 riastrad /* XXX Not clear that this does any good... */
444 1.18 riastrad cprng->cs_ready = false;
445 1.18 riastrad rndsink_schedule(cprng->cs_rndsink);
446 1.18 riastrad }
447 1.5 tls
448 1.18 riastrad explicit_bzero(rt, sizeof(*rt)); /* paranoia */
449 1.18 riastrad kmem_intr_free(rt, sizeof(*rt));
450 1.1 tls }
451 1.18 riastrad #endif
452 1.1 tls
453 1.18 riastrad /*
454 1.18 riastrad * Feed entropy from an rndsink request into the CPRNG for which the
455 1.18 riastrad * request was issued.
456 1.18 riastrad */
457 1.18 riastrad static void
458 1.18 riastrad cprng_strong_rndsink_callback(void *context, const void *seed, size_t bytes)
459 1.1 tls {
460 1.18 riastrad struct cprng_strong *const cprng = context;
461 1.1 tls
462 1.18 riastrad mutex_enter(&cprng->cs_lock);
463 1.18 riastrad /* Assume that rndsinks provide only full-entropy output. */
464 1.18 riastrad cprng_strong_reseed_from(cprng, seed, bytes, true);
465 1.18 riastrad mutex_exit(&cprng->cs_lock);
466 1.1 tls }
467