mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
apps: Fix bug by calling getrandom
Signed-off-by: weizihan <weizihan@xiaomi.com>
This commit is contained in:
parent
8fe295de32
commit
c4972d4721
1 changed files with 6 additions and 5 deletions
|
|
@ -31,6 +31,7 @@
|
|||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sys/random.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
|
|
@ -128,12 +129,12 @@ static const uint8_t g_partition_type_swap[16] =
|
|||
|
||||
static void get_uuid(FAR uint8_t *uuid)
|
||||
{
|
||||
int fd;
|
||||
fd = open("/dev/urandom", O_RDONLY);
|
||||
if (fd > 0)
|
||||
/* call getrandom to read /dev/urandom */
|
||||
|
||||
if (getrandom(uuid, 16, 0) < 0)
|
||||
{
|
||||
read(fd, uuid, 16);
|
||||
close(fd);
|
||||
fprintf(stderr, "error read primary partition table\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue