提交 92fdad28 编写于 作者: M Matthias Brugger 提交者: Tom Rini

lib: uuid: use RNG device if present

When calculating a random UUID we use a weak seed.
Use a RNG device if present to increase entropy.
Signed-off-by: NMatthias Brugger <mbrugger@suse.com>
Reviewed-by: NTorsten Duwe <duwe@suse.de>
上级 0be3d1fa
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
#include <asm/io.h> #include <asm/io.h>
#include <part_efi.h> #include <part_efi.h>
#include <malloc.h> #include <malloc.h>
#include <dm/uclass.h>
#include <rng.h>
/* /*
* UUID - Universally Unique IDentifier - 128 bits unique number. * UUID - Universally Unique IDentifier - 128 bits unique number.
...@@ -249,9 +251,22 @@ void gen_rand_uuid(unsigned char *uuid_bin) ...@@ -249,9 +251,22 @@ void gen_rand_uuid(unsigned char *uuid_bin)
{ {
u32 ptr[4]; u32 ptr[4];
struct uuid *uuid = (struct uuid *)ptr; struct uuid *uuid = (struct uuid *)ptr;
int i; int i, ret;
struct udevice *devp;
srand(get_ticks() + rand()); u32 randv = 0;
if (IS_ENABLED(CONFIG_DM_RNG)) {
ret = uclass_get_device(UCLASS_RNG, 0, &devp);
if (ret) {
ret = dm_rng_read(devp, &randv, sizeof(randv));
if (ret < 0)
randv = 0;
}
}
if (randv)
srand(randv);
else
srand(get_ticks() + rand());
/* Set all fields randomly */ /* Set all fields randomly */
for (i = 0; i < 4; i++) for (i = 0; i < 4; i++)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册