ntdll: Fall back to reading /dev/urandom if getrandom() is not supported.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50168 Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c57e98eae9
commit
e6407c39ba
|
@ -2036,6 +2036,22 @@ static void get_timezone_info( RTL_DYNAMIC_TIME_ZONE_INFORMATION *tzi )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void read_dev_urandom( void *buf, ULONG len )
|
||||||
|
{
|
||||||
|
int fd = open( "/dev/urandom", O_RDONLY );
|
||||||
|
if (fd != -1)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
ret = read( fd, buf, len );
|
||||||
|
}
|
||||||
|
while (ret == -1 && errno == EINTR);
|
||||||
|
close( fd );
|
||||||
|
}
|
||||||
|
else WARN( "can't open /dev/urandom\n" );
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* NtQuerySystemInformation (NTDLL.@)
|
* NtQuerySystemInformation (NTDLL.@)
|
||||||
*/
|
*/
|
||||||
|
@ -2525,19 +2541,10 @@ NTSTATUS WINAPI NtQuerySystemInformation( SYSTEM_INFORMATION_CLASS class,
|
||||||
ret = getrandom( info, len, 0 );
|
ret = getrandom( info, len, 0 );
|
||||||
}
|
}
|
||||||
while (ret == -1 && errno == EINTR);
|
while (ret == -1 && errno == EINTR);
|
||||||
|
|
||||||
|
if (ret == -1 && errno == ENOSYS) read_dev_urandom( info, len );
|
||||||
#else
|
#else
|
||||||
int fd = open( "/dev/urandom", O_RDONLY );
|
read_dev_urandom( info, len );
|
||||||
if (fd != -1)
|
|
||||||
{
|
|
||||||
int ret;
|
|
||||||
do
|
|
||||||
{
|
|
||||||
ret = read( fd, info, len );
|
|
||||||
}
|
|
||||||
while (ret == -1 && errno == EINTR);
|
|
||||||
close( fd );
|
|
||||||
}
|
|
||||||
else WARN( "can't open /dev/urandom\n" );
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue