Home | History | Annotate | Line # | Download | only in kern
subr_cprng.c revision 1.5.2.9
      1  1.5.2.9      snj /*	$NetBSD: subr_cprng.c,v 1.5.2.9 2018/03/03 20:44:38 snj Exp $ */
      2      1.1      tls 
      3      1.1      tls /*-
      4      1.1      tls  * Copyright (c) 2011 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.1      tls  * by Thor Lancelot Simon.
      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.1      tls #include <sys/types.h>
     33      1.1      tls #include <sys/time.h>
     34      1.1      tls #include <sys/param.h>
     35      1.1      tls #include <sys/kernel.h>
     36      1.1      tls #include <sys/systm.h>
     37      1.1      tls #include <sys/kmem.h>
     38      1.1      tls #include <sys/mutex.h>
     39      1.1      tls #include <sys/rngtest.h>
     40      1.1      tls #include <sys/rnd.h>
     41      1.3      tls #include <dev/rnd_private.h>
     42      1.1      tls 
     43      1.2  tsutsui #if defined(__HAVE_CPU_COUNTER)
     44      1.1      tls #include <machine/cpu_counter.h>
     45      1.2  tsutsui #endif
     46      1.1      tls 
     47      1.1      tls #include <sys/cprng.h>
     48      1.1      tls 
     49  1.5.2.9      snj __KERNEL_RCSID(0, "$NetBSD: subr_cprng.c,v 1.5.2.9 2018/03/03 20:44:38 snj Exp $");
     50      1.1      tls 
     51      1.1      tls void
     52      1.1      tls cprng_init(void)
     53      1.1      tls {
     54      1.1      tls 	nist_ctr_initialize();
     55      1.1      tls }
     56      1.1      tls 
     57      1.1      tls static inline uint32_t
     58      1.1      tls cprng_counter(void)
     59      1.1      tls {
     60      1.1      tls 	struct timeval tv;
     61      1.1      tls 
     62      1.1      tls #if defined(__HAVE_CPU_COUNTER)
     63      1.1      tls 	if (cpu_hascounter())
     64      1.1      tls 		return cpu_counter32();
     65      1.1      tls #endif
     66      1.1      tls 	if (__predict_false(cold)) {
     67      1.1      tls 		/* microtime unsafe if clock not running yet */
     68      1.1      tls 		return 0;
     69      1.1      tls 	}
     70      1.1      tls 	microtime(&tv);
     71      1.1      tls 	return (tv.tv_sec * 1000000 + tv.tv_usec);
     72      1.1      tls }
     73      1.1      tls 
     74      1.1      tls static void
     75  1.5.2.2      riz cprng_strong_doreseed(cprng_strong_t *const c)
     76  1.5.2.2      riz {
     77  1.5.2.2      riz 	uint32_t cc = cprng_counter();
     78  1.5.2.2      riz 
     79  1.5.2.2      riz 	KASSERT(mutex_owned(&c->mtx));
     80  1.5.2.2      riz 	KASSERT(mutex_owned(&c->reseed.mtx));
     81  1.5.2.2      riz 	KASSERT(c->reseed.len == NIST_BLOCK_KEYLEN_BYTES);
     82  1.5.2.2      riz 
     83  1.5.2.2      riz 	if (nist_ctr_drbg_reseed(&c->drbg, c->reseed.data, c->reseed.len,
     84  1.5.2.2      riz 				 &cc, sizeof(cc))) {
     85  1.5.2.2      riz 		panic("cprng %s: nist_ctr_drbg_reseed failed.", c->name);
     86  1.5.2.2      riz 	}
     87  1.5.2.7   bouyer 	memset(c->reseed.data, 0, c->reseed.len);
     88  1.5.2.7   bouyer 
     89  1.5.2.2      riz #ifdef RND_VERBOSE
     90  1.5.2.2      riz 	printf("cprng %s: reseeded with rnd_filled = %d\n", c->name,
     91  1.5.2.2      riz 							    rnd_filled);
     92  1.5.2.2      riz #endif
     93  1.5.2.2      riz 	c->entropy_serial = rnd_filled;
     94  1.5.2.2      riz 	c->reseed.state = RSTATE_IDLE;
     95  1.5.2.2      riz 	if (c->flags & CPRNG_USE_CV) {
     96  1.5.2.2      riz 		cv_broadcast(&c->cv);
     97  1.5.2.2      riz 	}
     98  1.5.2.9      snj 	selnotify(&c->selq, 0, NOTE_SUBMIT);
     99  1.5.2.2      riz }
    100  1.5.2.2      riz 
    101  1.5.2.2      riz static void
    102      1.5      tls cprng_strong_sched_reseed(cprng_strong_t *const c)
    103      1.5      tls {
    104      1.5      tls 	KASSERT(mutex_owned(&c->mtx));
    105  1.5.2.2      riz 	if (mutex_tryenter(&c->reseed.mtx)) {
    106  1.5.2.2      riz 		switch (c->reseed.state) {
    107  1.5.2.2      riz 		    case RSTATE_IDLE:
    108  1.5.2.2      riz 			c->reseed.state = RSTATE_PENDING;
    109  1.5.2.2      riz 			c->reseed.len = NIST_BLOCK_KEYLEN_BYTES;
    110  1.5.2.2      riz 			rndsink_attach(&c->reseed);
    111  1.5.2.2      riz 			break;
    112  1.5.2.2      riz 		    case RSTATE_HASBITS:
    113  1.5.2.2      riz 			/* Just rekey the underlying generator now. */
    114  1.5.2.2      riz 			cprng_strong_doreseed(c);
    115  1.5.2.2      riz 			break;
    116  1.5.2.2      riz 		    case RSTATE_PENDING:
    117  1.5.2.2      riz 			if (c->entropy_serial != rnd_filled) {
    118  1.5.2.2      riz 				rndsink_detach(&c->reseed);
    119  1.5.2.2      riz 				rndsink_attach(&c->reseed);
    120  1.5.2.2      riz 			}
    121  1.5.2.2      riz 			break;
    122  1.5.2.2      riz 		    default:
    123  1.5.2.2      riz 			panic("cprng %s: bad reseed state %d",
    124  1.5.2.2      riz 			      c->name, c->reseed.state);
    125  1.5.2.2      riz 			break;
    126  1.5.2.2      riz 		}
    127  1.5.2.1      riz 		mutex_spin_exit(&c->reseed.mtx);
    128      1.5      tls 	}
    129  1.5.2.2      riz #ifdef RND_VERBOSE
    130  1.5.2.2      riz 	else {
    131  1.5.2.2      riz 		printf("cprng %s: skipping sched_reseed, sink busy\n",
    132  1.5.2.2      riz 		       c->name);
    133  1.5.2.2      riz 	}
    134  1.5.2.2      riz #endif
    135      1.5      tls }
    136      1.5      tls 
    137      1.5      tls static void
    138      1.1      tls cprng_strong_reseed(void *const arg)
    139      1.1      tls {
    140      1.1      tls 	cprng_strong_t *c = arg;
    141  1.5.2.2      riz 
    142  1.5.2.2      riz 	KASSERT(mutex_owned(&c->reseed.mtx));
    143  1.5.2.2      riz 	KASSERT(RSTATE_HASBITS == c->reseed.state);
    144      1.1      tls 
    145  1.5.2.1      riz 	if (!mutex_tryenter(&c->mtx)) {
    146  1.5.2.2      riz #ifdef RND_VERBOSE
    147  1.5.2.2      riz 	    printf("cprng: sink %s cprng busy, no reseed\n", c->reseed.name);
    148  1.5.2.2      riz #endif
    149  1.5.2.3      jdc 	    if (c->flags & CPRNG_USE_CV) {	/* XXX if flags change? */
    150  1.5.2.3      jdc         	cv_broadcast(&c->cv);
    151  1.5.2.3      jdc 	    }
    152  1.5.2.1      riz 	    return;
    153  1.5.2.1      riz 	}
    154  1.5.2.1      riz 
    155  1.5.2.2      riz 	cprng_strong_doreseed(c);
    156      1.1      tls 	mutex_exit(&c->mtx);
    157      1.1      tls }
    158      1.1      tls 
    159  1.5.2.7   bouyer static size_t
    160  1.5.2.8  msaitoh cprng_entropy_try(uint8_t *key, size_t keylen)
    161  1.5.2.7   bouyer {
    162  1.5.2.7   bouyer 	int r;
    163  1.5.2.7   bouyer 	r = rnd_extract_data(key, keylen, RND_EXTRACT_GOOD);
    164  1.5.2.8  msaitoh 	if (r != keylen) {	/* Always fill in, for safety */
    165  1.5.2.7   bouyer 		rnd_extract_data(key + r, keylen - r, RND_EXTRACT_ANY);
    166  1.5.2.7   bouyer 	}
    167  1.5.2.7   bouyer 	return r;
    168  1.5.2.7   bouyer }
    169  1.5.2.7   bouyer 
    170      1.1      tls cprng_strong_t *
    171      1.1      tls cprng_strong_create(const char *const name, int ipl, int flags)
    172      1.1      tls {
    173      1.1      tls 	cprng_strong_t *c;
    174      1.1      tls 	uint8_t key[NIST_BLOCK_KEYLEN_BYTES];
    175      1.5      tls 	int r, getmore = 0, hard = 0;
    176      1.1      tls 	uint32_t cc;
    177      1.1      tls 
    178      1.1      tls 	c = kmem_alloc(sizeof(*c), KM_NOSLEEP);
    179      1.1      tls 	if (c == NULL) {
    180      1.1      tls 		return NULL;
    181      1.1      tls 	}
    182      1.1      tls 	c->flags = flags;
    183      1.1      tls 	strlcpy(c->name, name, sizeof(c->name));
    184  1.5.2.2      riz 	c->reseed.state = RSTATE_IDLE;
    185      1.1      tls 	c->reseed.cb = cprng_strong_reseed;
    186      1.1      tls 	c->reseed.arg = c;
    187  1.5.2.4      riz 	c->entropy_serial = rnd_initial_entropy ? rnd_filled : -1;
    188  1.5.2.1      riz 	mutex_init(&c->reseed.mtx, MUTEX_DEFAULT, IPL_VM);
    189      1.1      tls 	strlcpy(c->reseed.name, name, sizeof(c->reseed.name));
    190      1.1      tls 
    191      1.1      tls 	mutex_init(&c->mtx, MUTEX_DEFAULT, ipl);
    192      1.1      tls 
    193      1.1      tls 	if (c->flags & CPRNG_USE_CV) {
    194  1.5.2.6      jdc 		cv_init(&c->cv, (const char *)c->name);
    195      1.1      tls 	}
    196      1.1      tls 
    197      1.5      tls 	selinit(&c->selq);
    198      1.5      tls 
    199  1.5.2.8  msaitoh 	r = cprng_entropy_try(key, sizeof(key));
    200      1.1      tls 	if (r != sizeof(key)) {
    201      1.1      tls 		if (c->flags & CPRNG_INIT_ANY) {
    202      1.5      tls #ifdef DEBUG
    203      1.1      tls 			printf("cprng %s: WARNING insufficient "
    204      1.1      tls 			       "entropy at creation.\n", name);
    205      1.5      tls #endif
    206      1.1      tls 		} else {
    207      1.5      tls 			hard++;
    208      1.1      tls 		}
    209      1.1      tls 		getmore++;
    210      1.1      tls 	}
    211      1.1      tls 
    212      1.1      tls 	if (nist_ctr_drbg_instantiate(&c->drbg, key, sizeof(key),
    213      1.1      tls 				      &cc, sizeof(cc), name, strlen(name))) {
    214      1.1      tls 		panic("cprng %s: instantiation failed.", name);
    215      1.1      tls 	}
    216      1.1      tls 
    217      1.1      tls 	if (getmore) {
    218      1.5      tls 		/* Cause readers to wait for rekeying. */
    219      1.5      tls 		if (hard) {
    220      1.5      tls 			c->drbg.reseed_counter =
    221      1.5      tls 			    NIST_CTR_DRBG_RESEED_INTERVAL + 1;
    222      1.5      tls 		} else {
    223      1.5      tls 			c->drbg.reseed_counter =
    224      1.5      tls 			    (NIST_CTR_DRBG_RESEED_INTERVAL / 2) + 1;
    225      1.1      tls 		}
    226      1.1      tls 	}
    227      1.1      tls 	return c;
    228      1.1      tls }
    229      1.1      tls 
    230      1.1      tls size_t
    231      1.5      tls cprng_strong(cprng_strong_t *const c, void *const p, size_t len, int flags)
    232      1.1      tls {
    233      1.1      tls 	uint32_t cc = cprng_counter();
    234      1.5      tls #ifdef DEBUG
    235      1.5      tls 	int testfail = 0;
    236      1.5      tls #endif
    237      1.1      tls 	if (len > CPRNG_MAX_LEN) {	/* XXX should we loop? */
    238      1.1      tls 		len = CPRNG_MAX_LEN;	/* let the caller loop if desired */
    239      1.1      tls 	}
    240      1.5      tls 	mutex_enter(&c->mtx);
    241      1.1      tls 
    242  1.5.2.4      riz 	/* If we were initialized with the pool empty, rekey ASAP */
    243  1.5.2.4      riz 	if (__predict_false(c->entropy_serial == -1) && rnd_initial_entropy) {
    244  1.5.2.4      riz 		c->entropy_serial = 0;
    245  1.5.2.4      riz 		goto rekeyany;		/* We have _some_ entropy, use it. */
    246  1.5.2.4      riz 	}
    247  1.5.2.4      riz 
    248      1.1      tls 	if (nist_ctr_drbg_generate(&c->drbg, p, len, &cc, sizeof(cc))) {
    249      1.1      tls 		/* A generator failure really means we hit the hard limit. */
    250  1.5.2.4      riz rekeyany:
    251      1.1      tls 		if (c->flags & CPRNG_REKEY_ANY) {
    252      1.1      tls 			uint8_t key[NIST_BLOCK_KEYLEN_BYTES];
    253      1.1      tls 
    254  1.5.2.8  msaitoh 			if (cprng_entropy_try(key, sizeof(key)) !=
    255  1.5.2.7   bouyer 			    sizeof(key)) {
    256  1.5.2.7   bouyer  				printf("cprng %s: WARNING "
    257  1.5.2.7   bouyer 				       "pseudorandom rekeying.\n", c->name);
    258  1.5.2.7   bouyer 			}
    259      1.1      tls 			cc = cprng_counter();
    260      1.1      tls 			if (nist_ctr_drbg_reseed(&c->drbg, key, sizeof(key),
    261      1.1      tls 			    &cc, sizeof(cc))) {
    262      1.1      tls 				panic("cprng %s: nist_ctr_drbg_reseed "
    263      1.1      tls 				      "failed.", c->name);
    264      1.1      tls 			}
    265  1.5.2.7   bouyer 			memset(key, 0, sizeof(key));
    266      1.1      tls 		} else {
    267  1.5.2.3      jdc 			int wr;
    268      1.1      tls 
    269  1.5.2.3      jdc 			do {
    270      1.5      tls 				cprng_strong_sched_reseed(c);
    271  1.5.2.3      jdc 				if ((flags & FNONBLOCK) ||
    272  1.5.2.3      jdc 				    !(c->flags & CPRNG_USE_CV)) {
    273  1.5.2.3      jdc 					len = 0;
    274  1.5.2.3      jdc 					break;
    275  1.5.2.3      jdc 				}
    276  1.5.2.3      jdc 			/*
    277  1.5.2.3      jdc 			 * XXX There's a race with the cv_broadcast
    278  1.5.2.3      jdc 			 * XXX in cprng_strong_sched_reseed, because
    279  1.5.2.3      jdc 			 * XXX of the use of tryenter in that function.
    280  1.5.2.3      jdc 			 * XXX This "timedwait" hack works around it,
    281  1.5.2.3      jdc 			 * XXX at the expense of occasionaly polling
    282  1.5.2.3      jdc 			 * XXX for success on a /dev/random rekey.
    283  1.5.2.3      jdc 			 */
    284  1.5.2.3      jdc 				wr = cv_timedwait_sig(&c->cv, &c->mtx,
    285  1.5.2.3      jdc 						      mstohz(100));
    286  1.5.2.3      jdc 				if (wr == ERESTART) {
    287  1.5.2.3      jdc 					mutex_exit(&c->mtx);
    288  1.5.2.3      jdc 					return 0;
    289  1.5.2.3      jdc 				}
    290  1.5.2.3      jdc 			} while (nist_ctr_drbg_generate(&c->drbg, p,
    291  1.5.2.3      jdc 							len, &cc,
    292  1.5.2.3      jdc 							sizeof(cc)));
    293      1.1      tls 		}
    294      1.1      tls 	}
    295      1.1      tls 
    296      1.5      tls #ifdef DEBUG
    297      1.1      tls 	/*
    298      1.1      tls 	 * If the generator has just been keyed, perform
    299      1.1      tls 	 * the statistical RNG test.
    300      1.1      tls 	 */
    301  1.5.2.5      riz 	if (__predict_false(c->drbg.reseed_counter == 1) &&
    302  1.5.2.5      riz 	    (flags & FASYNC) == 0) {
    303      1.5      tls 		rngtest_t *rt = kmem_alloc(sizeof(*rt), KM_NOSLEEP);
    304      1.1      tls 
    305      1.5      tls 		if (rt) {
    306      1.1      tls 
    307      1.5      tls 			strncpy(rt->rt_name, c->name, sizeof(rt->rt_name));
    308      1.5      tls 
    309      1.5      tls 			if (nist_ctr_drbg_generate(&c->drbg, rt->rt_b,
    310      1.5      tls 		  	    sizeof(rt->rt_b), NULL, 0)) {
    311      1.5      tls 				panic("cprng %s: nist_ctr_drbg_generate "
    312      1.5      tls 				      "failed!", c->name);
    313      1.1      tls 
    314      1.5      tls 			}
    315      1.5      tls 			testfail = rngtest(rt);
    316      1.5      tls 
    317      1.5      tls 			if (testfail) {
    318      1.5      tls 				printf("cprng %s: failed statistical RNG "
    319      1.5      tls 				       "test.\n", c->name);
    320      1.5      tls 				c->drbg.reseed_counter =
    321      1.5      tls 				    NIST_CTR_DRBG_RESEED_INTERVAL + 1;
    322      1.5      tls 				len = 0;
    323      1.5      tls 			}
    324      1.5      tls 			memset(rt, 0, sizeof(*rt));
    325      1.5      tls 			kmem_free(rt, sizeof(*rt));
    326      1.1      tls 		}
    327      1.1      tls 	}
    328      1.1      tls #endif
    329      1.1      tls 	if (__predict_false(c->drbg.reseed_counter >
    330      1.5      tls 			     (NIST_CTR_DRBG_RESEED_INTERVAL / 2))) {
    331      1.5      tls 		cprng_strong_sched_reseed(c);
    332  1.5.2.2      riz 	} else if (rnd_full) {
    333  1.5.2.2      riz 		if (c->entropy_serial != rnd_filled) {
    334  1.5.2.2      riz #ifdef RND_VERBOSE
    335  1.5.2.2      riz 			printf("cprng %s: reseeding from full pool "
    336  1.5.2.2      riz 			       "(serial %d vs pool %d)\n", c->name,
    337  1.5.2.2      riz 			       c->entropy_serial, rnd_filled);
    338  1.5.2.2      riz #endif
    339      1.5      tls 			cprng_strong_sched_reseed(c);
    340      1.1      tls 		}
    341      1.1      tls 	}
    342      1.1      tls 
    343      1.1      tls 	mutex_exit(&c->mtx);
    344      1.1      tls 	return len;
    345      1.1      tls }
    346      1.1      tls 
    347      1.1      tls void
    348      1.1      tls cprng_strong_destroy(cprng_strong_t *c)
    349      1.1      tls {
    350      1.5      tls 	mutex_enter(&c->mtx);
    351  1.5.2.1      riz 	mutex_spin_enter(&c->reseed.mtx);
    352      1.5      tls 
    353      1.1      tls 	if (c->flags & CPRNG_USE_CV) {
    354      1.1      tls 		KASSERT(!cv_has_waiters(&c->cv));
    355      1.1      tls 		cv_destroy(&c->cv);
    356      1.1      tls 	}
    357      1.5      tls 	seldestroy(&c->selq);
    358      1.1      tls 
    359  1.5.2.2      riz 	if (RSTATE_PENDING == c->reseed.state) {
    360      1.1      tls 		rndsink_detach(&c->reseed);
    361      1.1      tls 	}
    362  1.5.2.1      riz 	mutex_spin_exit(&c->reseed.mtx);
    363  1.5.2.1      riz 	mutex_destroy(&c->reseed.mtx);
    364  1.5.2.1      riz 
    365      1.1      tls 	nist_ctr_drbg_destroy(&c->drbg);
    366      1.5      tls 
    367      1.5      tls 	mutex_exit(&c->mtx);
    368      1.5      tls 	mutex_destroy(&c->mtx);
    369      1.5      tls 
    370      1.1      tls 	memset(c, 0, sizeof(*c));
    371      1.1      tls 	kmem_free(c, sizeof(*c));
    372      1.1      tls }
    373      1.1      tls 
    374      1.1      tls int
    375      1.1      tls cprng_strong_getflags(cprng_strong_t *const c)
    376      1.1      tls {
    377      1.1      tls 	KASSERT(mutex_owned(&c->mtx));
    378      1.1      tls 	return c->flags;
    379      1.1      tls }
    380      1.1      tls 
    381      1.1      tls void
    382      1.1      tls cprng_strong_setflags(cprng_strong_t *const c, int flags)
    383      1.1      tls {
    384      1.1      tls 	KASSERT(mutex_owned(&c->mtx));
    385      1.1      tls 	if (flags & CPRNG_USE_CV) {
    386      1.1      tls 		if (!(c->flags & CPRNG_USE_CV)) {
    387      1.1      tls 			cv_init(&c->cv, (const char *)c->name);
    388      1.1      tls 		}
    389      1.1      tls 	} else {
    390      1.1      tls 		if (c->flags & CPRNG_USE_CV) {
    391      1.1      tls 			KASSERT(!cv_has_waiters(&c->cv));
    392      1.1      tls 			cv_destroy(&c->cv);
    393      1.1      tls 		}
    394      1.1      tls 	}
    395      1.1      tls 	if (flags & CPRNG_REKEY_ANY) {
    396      1.1      tls 		if (!(c->flags & CPRNG_REKEY_ANY)) {
    397      1.1      tls 			if (c->flags & CPRNG_USE_CV) {
    398      1.1      tls 				cv_broadcast(&c->cv);
    399      1.1      tls 			}
    400  1.5.2.9      snj 			selnotify(&c->selq, 0, NOTE_SUBMIT);
    401      1.1      tls 		}
    402      1.1      tls 	}
    403      1.1      tls 	c->flags = flags;
    404      1.1      tls }
    405