Fix seeding from random device w/o getrandom syscall
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Thu, 14 Feb 2019 23:03:50 +0000 (00:03 +0100)
committerBernd Edlinger <bernd.edlinger@hotmail.de>
Fri, 1 Mar 2019 17:29:56 +0000 (18:29 +0100)
commitc352bd07ed2ff872876534c950a6968d75ef121e
tree0c3742aa52a5b3a223f8eee7db9900ec0ac16118
parentde4fb434c7f5fe7359dd9f57185bb98845d8e6f1
Fix seeding from random device w/o getrandom syscall

Use select to wait for /dev/random in readable state,
but do not actually read anything from /dev/random,
use /dev/urandom first.

Use linux define __NR_getrandom instead of the
glibc define SYS_getrandom, in case the kernel headers
are more current than the glibc headers.

Fixes #8215

Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
(Merged from https://github.com/openssl/openssl/pull/8251)

(cherry picked from commit 38023b87f037f4b832c236dfce2a76272be08763)
crypto/rand/rand_unix.c
e_os.h