After opening the file descriptor fd and other sanity checks for /dev/random, I am attempting to read how many bytes are readable from the device so I can pull this amount if it is required by my program.
My basic code is this:
if (fd = open("/dev/random", O_RDONLY) < 0) {
perror("open");
return 1;
}
...
if(ioctl(fd, FIONREAD, &n) < 0) { //file descriptor, call, unsigned int
perror("ioctl");
return 1;
}
printf("%d bytes available for reading.\n", n);
return 0;
No matter what the scenario (as root or normal user in case that was required) it always return 0 bytes available to be read.
I have been suggested before that this is a method to retrieve what I can take out of the device, do you know what possible problems or faults in my program cause it to always return zero? Do you know of any other methods to do what I am wishing to do?
/dev/urandom? Get a try – maverik Apr 4 '11 at 7:200– Alexander Apr 4 '11 at 8:35