From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Jason A. Donenfeld" <Jason@zx2c4.com>,
Yoshinori Sato <ysato@users.sourceforge.jp>
Subject: [PULL 7/8] hw/rx: pass random seed to fdt
Date: Fri, 22 Jul 2022 19:04:48 +0200 [thread overview]
Message-ID: <20220722170449.853222-8-pbonzini@redhat.com> (raw)
In-Reply-To: <20220722170449.853222-1-pbonzini@redhat.com>
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
If the FDT contains /chosen/rng-seed, then the Linux RNG will use it to
initialize early. Set this using the usual guest random number
generation function. This FDT node is part of the DT specification.
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Message-Id: <20220719122033.135902-1-Jason@zx2c4.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
hw/rx/rx-gdbsim.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/hw/rx/rx-gdbsim.c b/hw/rx/rx-gdbsim.c
index be147b4bd9..8ffe1b8035 100644
--- a/hw/rx/rx-gdbsim.c
+++ b/hw/rx/rx-gdbsim.c
@@ -19,6 +19,7 @@
#include "qemu/osdep.h"
#include "qemu/cutils.h"
#include "qemu/error-report.h"
+#include "qemu/guest-random.h"
#include "qapi/error.h"
#include "hw/loader.h"
#include "hw/rx/rx62n.h"
@@ -83,6 +84,7 @@ static void rx_gdbsim_init(MachineState *machine)
MemoryRegion *sysmem = get_system_memory();
const char *kernel_filename = machine->kernel_filename;
const char *dtb_filename = machine->dtb;
+ uint8_t rng_seed[32];
if (machine->ram_size < mc->default_ram_size) {
char *sz = size_to_str(mc->default_ram_size);
@@ -140,6 +142,8 @@ static void rx_gdbsim_init(MachineState *machine)
error_report("Couldn't set /chosen/bootargs");
exit(1);
}
+ qemu_guest_getrandom_nofail(rng_seed, sizeof(rng_seed));
+ qemu_fdt_setprop(dtb, "/chosen", "rng-seed", rng_seed, sizeof(rng_seed));
/* DTB is located at the end of SDRAM space. */
dtb_offset = ROUND_DOWN(machine->ram_size - dtb_size, 16);
rom_add_blob_fixed("dtb", dtb, dtb_size,
--
2.36.1
next prev parent reply other threads:[~2022-07-22 17:14 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-22 17:04 [PULL v2 0/8] More fixes + random seed patches for QEMU 7.1 Paolo Bonzini
2022-07-22 17:04 ` [PULL 1/8] docs: Add caveats for Windows as the build platform Paolo Bonzini
2022-07-22 17:04 ` [PULL 2/8] accel/kvm: Avoid Coverity warning in query_stats() Paolo Bonzini
2022-07-22 17:04 ` [PULL 3/8] oss-fuzz: remove binaries from qemu-bundle tree Paolo Bonzini
2022-07-22 17:04 ` [PULL 4/8] oss-fuzz: ensure base_copy is a generic-fuzzer Paolo Bonzini
2022-07-22 17:04 ` [PULL 5/8] hw/nios2: virt: pass random seed to fdt Paolo Bonzini
2022-07-22 17:04 ` [PULL 6/8] hw/mips: boston: " Paolo Bonzini
2022-07-22 17:04 ` Paolo Bonzini [this message]
2022-07-22 17:04 ` [PULL 8/8] hw/i386: pass RNG seed via setup_data entry Paolo Bonzini
2022-07-25 15:04 ` [PULL v2 0/8] More fixes + random seed patches for QEMU 7.1 Peter Maydell
2022-07-26 8:17 ` Paolo Bonzini
2022-07-26 9:30 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220722170449.853222-8-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=Jason@zx2c4.com \
--cc=qemu-devel@nongnu.org \
--cc=ysato@users.sourceforge.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).