compiling random.c
random.c: In function 'fill_random_bytes_syscall':
random.c:528:43: error: 'GRND_NONBLOCK' undeclared (first use in this function)
ret = syscall(SYS_getrandom, seed, size, GRND_NONBLOCK);
^
random.c:528:43: note: each undeclared identifier is reported only once for each function it appears in
Makefile:369: recipe for target 'random.o' failed
make: *** [random.o] Error 1
Sorry, r51374 may lead to a problem under the following situation.
the system uses a new libc that knows SYS_getrandom, but
the system uses an old linux kernel that does not know getrandom syscall.
I guess it is not a good idea to determine the availability of getrandom by checking if SYS_getrandom is defined or not.
Instead, it should check the runtime kernel version or something, though it is too ugly.
I bet that we should not use the direct syscall but wait for libc to provide a wrapper function to getrandom.
$ ./x86_64-linux/bin/ruby -v -e 'syscall(9999)'
ruby 2.3.0dev (2015-07-26 trunk 51386) [x86_64-linux]
-e:1: warning: We plan to remove a syscall function at future release. DL(Fiddle) provides safer alternative.
-e:1:in `syscall': Function not implemented (Errno::ENOSYS)
from -e:1:in `<main>'