Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Use cprng_strong, not cprng_fast, for sysctl kern.a...



details:   https://anonhg.NetBSD.org/src/rev/b3017720ea93
branches:  trunk
changeset: 846626:b3017720ea93
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Nov 25 15:19:54 2019 +0000

description:
Use cprng_strong, not cprng_fast, for sysctl kern.arnd.

diffstat:

 sys/kern/subr_cprng.c |  13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diffs (58 lines):

diff -r 60cf668ea7e3 -r b3017720ea93 sys/kern/subr_cprng.c
--- a/sys/kern/subr_cprng.c     Mon Nov 25 08:53:39 2019 +0000
+++ b/sys/kern/subr_cprng.c     Mon Nov 25 15:19:54 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: subr_cprng.c,v 1.32 2019/11/17 12:32:31 nia Exp $ */
+/*     $NetBSD: subr_cprng.c,v 1.33 2019/11/25 15:19:54 riastradh Exp $ */
 
 /*-
  * Copyright (c) 2011-2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_cprng.c,v 1.32 2019/11/17 12:32:31 nia Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_cprng.c,v 1.33 2019/11/25 15:19:54 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -539,6 +539,7 @@
        mutex_exit(&cprng->cs_lock);
 }
 
+static ONCE_DECL(sysctl_prng_once);
 static cprng_strong_t *sysctl_prng;
 
 static int
@@ -558,10 +559,9 @@
 static int
 sysctl_kern_urnd(SYSCTLFN_ARGS)
 {
-       static ONCE_DECL(control);
        int v, rv;
 
-       RUN_ONCE(&control, makeprng);
+       RUN_ONCE(&sysctl_prng_once, makeprng);
        rv = cprng_strong(sysctl_prng, &v, sizeof(v), 0);
        if (rv == sizeof(v)) {
                struct sysctlnode node = *rnode;
@@ -591,6 +591,7 @@
        int error;
        void *v;
        struct sysctlnode node = *rnode;
+       size_t n __diagused;
 
        switch (*oldlenp) {
            case 0:
@@ -599,8 +600,10 @@
                if (*oldlenp > 256) {
                        return E2BIG;
                }
+               RUN_ONCE(&sysctl_prng_once, makeprng);
                v = kmem_alloc(*oldlenp, KM_SLEEP);
-               cprng_fast(v, *oldlenp);
+               n = cprng_strong(sysctl_prng, v, *oldlenp, 0);
+               KASSERT(n == *oldlenp);
                node.sysctl_data = v;
                node.sysctl_size = *oldlenp;
                error = sysctl_lookup(SYSCTLFN_CALL(&node));



Home | Main Index | Thread Index | Old Index