]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
Add csrand_uniform()
authorAlejandro Colomar <alx@kernel.org>
Fri, 30 Dec 2022 18:46:09 +0000 (19:46 +0100)
committerSerge Hallyn <serge@hallyn.com>
Sat, 28 Jan 2023 03:48:37 +0000 (21:48 -0600)
This API is similar to arc4random_uniform(3).  However, for an input of
0, this function is equivalent to csrand(), while arc4random_uniform(0)
returns 0.

This function will be used to reimplement csrand_interval() as a wrapper
around this one.

The current implementation of csrand_interval() doesn't produce very good
random numbers.  It has a bias.  And that comes from performing some
unnecessary floating-point calculations that overcomplicate the problem.

Looping until the random number hits within bounds is unbiased, and
truncating unwanted bits makes the overhead of the loop very small.

We could reduce loop overhead even more, by keeping unused bits of the
random number, if the width of the mask is not greater than
ULONG_WIDTH/2, however, that complicates the code considerably, and I
prefer to be a bit slower but have simple code.

BTW, Björn really deserves the copyright for csrand() (previously known
as read_random_bytes()), since he rewrote it almost from scratch last
year, and I kept most of its contents.  Since he didn't put himself in
the copyright back then, and BSD-3-Clause doesn't allow me to attribute
derived works, I won't add his name, but if he asks, he should be put in
the copyright too.

Cc: "Jason A. Donenfeld" <Jason@zx2c4.com>
Cc: Cristian Rodríguez <crrodriguez@opensuse.org>
Cc: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Cc: Björn Esser <besser82@fedoraproject.org>
Cc: Yann Droneaud <ydroneaud@opteya.com>
Cc: Joseph Myers <joseph@codesourcery.com>
Cc: Sam James <sam@gentoo.org>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
lib/prototypes.h
libmisc/csrand.c

index 3a04faa8b1bf34ba9ed80bbff326e0eadfc6cffa..722d6d98947e2778f332871f66fcda9592b3c26d 100644 (file)
@@ -358,6 +358,7 @@ extern void pw_free (/*@out@*/ /*@only@*/struct passwd *pwent);
 
 /* csrand.c */
 unsigned long csrand (void);
+unsigned long csrand_uniform (unsigned long n);
 
 /* remove_tree.c */
 extern int remove_tree (const char *root, bool remove_root);
index a023785025a14928975bf542932024ce5e8d8ea4..0cc999723093cf49231b1214303b77cdac1d8417 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * SPDX-FileCopyrightText:  Alejandro Colomar <alx@kernel.org>
+ *
+ * SPDX-License-Identifier:  BSD-3-Clause
+ */
+
 #include <config.h>
 
 #ident "$Id$"
@@ -59,3 +65,23 @@ fail:
        fprintf(log_get_logfd(), _("Unable to obtain random bytes.\n"));
        exit(1);
 }
+
+
+/*
+ * Return a uniformly-distributed CS random value in the interval [0, n-1].
+ */
+unsigned long
+csrand_uniform(unsigned long n)
+{
+       unsigned long  r, max, mask;
+
+       max = n - 1;
+       mask = bit_ceil_wrapul(n) - 1;
+
+       do {
+               r = csrand();
+               r &= mask;  // optimization
+       } while (r > max);  // p = ((mask + 1) % n) / (mask + 1); W.C.: p=0.5
+
+       return r;
+}