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