Skip to content

Commit

Permalink
Merge pull request #280 from masahisak/fix_dev_urandom
Browse files Browse the repository at this point in the history
random-util.c: sync dev_urandom implementation to systemd-udev
  • Loading branch information
bbonev committed Apr 28, 2024
2 parents e98a667 + a49a3aa commit fc9050c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 39 deletions.
4 changes: 4 additions & 0 deletions src/shared/missing.h
Expand Up @@ -79,6 +79,10 @@ static inline int getrandom(void *buffer, size_t count, unsigned flags) {
#define GRND_RANDOM 0x0002
#endif

#ifndef GRND_INSECURE
#define GRND_INSECURE 0x0004
#endif

#ifndef BTRFS_IOCTL_MAGIC
#define BTRFS_IOCTL_MAGIC 0x94
#endif
Expand Down
70 changes: 31 additions & 39 deletions src/shared/random-util.c
Expand Up @@ -31,45 +31,37 @@
#include "util.h"

int dev_urandom(void *p, size_t n) {
static int have_syscall = -1;

_cleanup_close_ int fd = -1;
int r;

/* Gathers some randomness from the kernel. This call will
* never block, and will always return some data from the
* kernel, regardless if the random pool is fully initialized
* or not. It thus makes no guarantee for the quality of the
* returned entropy, but is good enough for or usual usecases
* of seeding the hash functions for hashtable */

/* Use the getrandom() syscall unless we know we don't have
* it, or when the requested size is too large for it. */
if (have_syscall != 0 || (size_t) (int) n != n) {
r = getrandom(p, n, GRND_NONBLOCK);
if (r == (int) n) {
have_syscall = true;
return 0;
}

if (r < 0) {
if (errno == ENOSYS)
/* we lack the syscall, continue with
* reading from /dev/urandom */
have_syscall = false;
else if (errno == EAGAIN)
/* not enough entropy for now. Let's
* remember to use the syscall the
* next time, again, but also read
* from /dev/urandom for now, which
* doesn't care about the current
* amount of entropy. */
have_syscall = true;
else
return -errno;
} else
/* too short read? */
return -ENODATA;
static bool have_getrandom = true, have_grndinsecure = true;
_cleanup_close_ int fd = -EBADF;

if (n == 0)
return 0;

for (;;) {
ssize_t l;

if (!have_getrandom)
break;

l = getrandom(p, n, have_grndinsecure ? GRND_INSECURE : GRND_NONBLOCK);
if (l > 0) {
if ((size_t) l == n)
return 0; /* Done reading, success. */
p = (uint8_t *) p + l;
n -= l;
continue; /* Interrupted by a signal; keep going. */
} else if (l == 0)
break; /* Weird, so fallback to /dev/urandom. */
else if (errno == ENOSYS) {
have_getrandom = false;
break; /* No syscall, so fallback to /dev/urandom. */
} else if (errno == EINVAL && have_grndinsecure) {
have_grndinsecure = false;
continue; /* No GRND_INSECURE; fallback to GRND_NONBLOCK. */
} else if (errno == EAGAIN && !have_grndinsecure)
break; /* Will block, but no GRND_INSECURE, so fallback to /dev/urandom. */

break; /* Unexpected, so just give up and fallback to /dev/urandom. */
}

fd = open("/dev/urandom", O_RDONLY|O_CLOEXEC|O_NOCTTY);
Expand Down

0 comments on commit fc9050c

Please sign in to comment.