mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-19 19:23:24 +02:00
libreboot-utils: tidy up rand
also re-add /dev/urandom support, as a config option Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -903,11 +903,12 @@ mkhtemp_fill_random(char *p, size_t xc)
|
|||||||
for (chx = 0; chx < xc; chx++) {
|
for (chx = 0; chx < xc; chx++) {
|
||||||
|
|
||||||
retry_rand:
|
retry_rand:
|
||||||
/* on bsd: uses arc4random
|
/* /dev/urandom if enabled, OR:
|
||||||
on linux: uses getrandom
|
* on bsd: uses arc4random
|
||||||
*never returns error*
|
* on linux: uses getrandom
|
||||||
|
NOTE: *aborts* on error, regardless of method
|
||||||
*/
|
*/
|
||||||
r = rlong(); /* always returns successful */
|
r = rlong(); /* always *returns* successfully */
|
||||||
if (r >= limit)
|
if (r >= limit)
|
||||||
goto retry_rand;
|
goto retry_rand;
|
||||||
|
|
||||||
|
|||||||
@@ -12,10 +12,13 @@
|
|||||||
#endif
|
#endif
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#ifndef USE_URANDOM
|
||||||
|
#define USE_URANDOM 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#if !((defined(__OpenBSD__) && (OpenBSD) >= 201) || \
|
#if defined(USE_URANDOM) && \
|
||||||
defined(__FreeBSD__) || \
|
((USE_URANDOM) > 0)
|
||||||
defined(__NetBSD__) || defined(__APPLE__))
|
|
||||||
#include <fcntl.h> /* if not arc4random: /dev/urandom */
|
#include <fcntl.h> /* if not arc4random: /dev/urandom */
|
||||||
#endif
|
#endif
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
@@ -26,86 +29,42 @@
|
|||||||
|
|
||||||
#include "../include/common.h"
|
#include "../include/common.h"
|
||||||
|
|
||||||
/* Random numbers
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* when calling this: save errno
|
|
||||||
* first, then set errno to zero.
|
|
||||||
* on error, this function will
|
|
||||||
* set errno and possibly return
|
|
||||||
*
|
|
||||||
* rlong also preserves errno
|
|
||||||
* and leaves it unchanged on
|
|
||||||
* success, so if you do it
|
|
||||||
* right, you can detect error.
|
|
||||||
* this is because it uses
|
|
||||||
* /dev/urandom which can err.
|
|
||||||
* ditto getrandom (EINTR),
|
|
||||||
* theoretically.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* for the linux version: we use only the
|
|
||||||
* syscall, because we cannot trust /dev/urandom
|
|
||||||
* to be as robust, and some libc implementations
|
|
||||||
* may default to /dev/urandom under fault conditions.
|
|
||||||
*
|
|
||||||
* for general high reliability, we must abort on
|
|
||||||
* failure. in practise, it will likely never fail.
|
|
||||||
* the arc4random call on bsd never returns error.
|
|
||||||
*/
|
|
||||||
|
|
||||||
size_t
|
size_t
|
||||||
rlong(void)
|
rlong(void)
|
||||||
{
|
{
|
||||||
size_t rval;
|
|
||||||
int saved_errno = errno;
|
int saved_errno = errno;
|
||||||
|
size_t len = sizeof(size_t);
|
||||||
|
|
||||||
#if (defined(__OpenBSD__) || defined(__FreeBSD__) || \
|
#if (defined(__OpenBSD__) || defined(__FreeBSD__) || \
|
||||||
defined(__NetBSD__) || defined(__APPLE__) || \
|
defined(__NetBSD__) || defined(__APPLE__) || \
|
||||||
defined(__DragonFly__))
|
defined(__DragonFly__)) && !(defined(USE_URANDOM) && \
|
||||||
|
((USE_URANDOM) > 0))
|
||||||
|
|
||||||
arc4random_buf(&rval, sizeof(size_t));
|
arc4random_buf(&rval, len);
|
||||||
goto out;
|
goto out;
|
||||||
|
#else
|
||||||
#elif defined(USE_URANDOM) && \
|
size_t off = errno = 0;
|
||||||
((USE_URANDOM) > 0)
|
|
||||||
|
|
||||||
/* Use of /dev/urandom is ill advised, due
|
|
||||||
to FD exhaustion */
|
|
||||||
|
|
||||||
int fd = -1;
|
|
||||||
ssize_t rc = 0;
|
ssize_t rc = 0;
|
||||||
|
size_t rval;
|
||||||
|
|
||||||
errno = 0;
|
#if defined(USE_URANDOM) && \
|
||||||
|
((USE_URANDOM) > 0)
|
||||||
|
int fd = -1;
|
||||||
|
|
||||||
if ((fd = open("/dev/urandom", O_RDONLY)) < 0)
|
if ((fd = open("/dev/urandom", O_RDONLY)) < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
retry_rand:
|
retry_rand:
|
||||||
|
if ((rc = read(fd, &rval, len)) < 0) {
|
||||||
if ((rc = read(fd, &rval, sizeof(rval))) < 0) {
|
|
||||||
if (errno == EINTR || errno == EAGAIN)
|
|
||||||
goto retry_rand;
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((rval += (size_t)rc) < sizeof(rval))
|
|
||||||
goto retry_rand;
|
|
||||||
|
|
||||||
#elif defined(__linux__)
|
#elif defined(__linux__)
|
||||||
|
|
||||||
size_t off = 0;
|
|
||||||
size_t len = sizeof(rval);
|
|
||||||
ssize_t rc;
|
|
||||||
|
|
||||||
errno = 0;
|
|
||||||
|
|
||||||
retry_rand:
|
retry_rand:
|
||||||
rc = (ssize_t)syscall(SYS_getrandom,
|
if ((rc = (ssize_t)syscall(SYS_getrandom,
|
||||||
(char *)&rval + off, len - off, 0);
|
(char *)&rval + off, len - off, 0)) < 0) {
|
||||||
|
#else
|
||||||
|
#error Unsupported operating system (possibly unsecure randomisation)
|
||||||
|
#endif
|
||||||
|
if (errno == EINTR ||
|
||||||
|
errno == EAGAIN) {
|
||||||
|
|
||||||
if (rc < 0) {
|
|
||||||
if (errno == EINTR || errno == EAGAIN) {
|
|
||||||
usleep(100);
|
usleep(100);
|
||||||
goto retry_rand;
|
goto retry_rand;
|
||||||
}
|
}
|
||||||
@@ -117,25 +76,17 @@ retry_rand:
|
|||||||
goto retry_rand;
|
goto retry_rand;
|
||||||
|
|
||||||
goto out;
|
goto out;
|
||||||
#else
|
|
||||||
#error Unsupported operating system (possibly unsecure randomisation)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
out:
|
|
||||||
errno = saved_errno;
|
|
||||||
return rval;
|
|
||||||
err:
|
err:
|
||||||
/*
|
|
||||||
* getrandom can return with error, but arc4random
|
|
||||||
* doesn't. generally, getrandom will be reliable,
|
|
||||||
* but we of course have to maintain parity with
|
|
||||||
* BSD. So a rand failure is to be interpreted as
|
|
||||||
* a major systems failure, and we act accordingly.
|
|
||||||
*/
|
|
||||||
err_no_cleanup(1, ECANCELED,
|
err_no_cleanup(1, ECANCELED,
|
||||||
"Randomisation failure, possibly unsupported in your kernel.");
|
"Randomisation failure, possibly unsupported in your kernel.");
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
out:
|
||||||
|
errno = saved_errno;
|
||||||
|
return rval;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -44,8 +44,14 @@ main(int argc, char *argv[])
|
|||||||
#if (OpenBSD) >= 604
|
#if (OpenBSD) >= 604
|
||||||
if (pledge("stdio flock rpath wpath cpath unveil", NULL) == -1)
|
if (pledge("stdio flock rpath wpath cpath unveil", NULL) == -1)
|
||||||
err_no_cleanup(0, errno, "pledge plus unveil, main");
|
err_no_cleanup(0, errno, "pledge plus unveil, main");
|
||||||
|
#if defined(USE_URANDOM) && \
|
||||||
|
((USE_URANDOM) > 0)
|
||||||
if (unveil("/dev/null", "r") == -1)
|
if (unveil("/dev/null", "r") == -1)
|
||||||
err_no_cleanup(0, errno, "unveil r: /dev/null");
|
err_no_cleanup(0, errno, "unveil r: /dev/null");
|
||||||
|
#else
|
||||||
|
if (unveil("/dev/urandom", "r") == -1)
|
||||||
|
err_no_cleanup(0, errno, "unveil r: /dev/urandom");
|
||||||
|
#endif
|
||||||
#elif (OpenBSD) >= 509
|
#elif (OpenBSD) >= 509
|
||||||
if (pledge("stdio flock rpath wpath cpath", NULL) == -1)
|
if (pledge("stdio flock rpath wpath cpath", NULL) == -1)
|
||||||
err_no_cleanup(0, errno, "pledge, main");
|
err_no_cleanup(0, errno, "pledge, main");
|
||||||
|
|||||||
Reference in New Issue
Block a user