From: Eric Blake <eblake@redhat.com>
To: Magnus Reftel <reftel@spotify.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] linux-user: Let user specify random seed
Date: Wed, 08 Oct 2014 08:45:07 -0600 [thread overview]
Message-ID: <54354DF3.6010108@redhat.com> (raw)
In-Reply-To: <1412770434-6290-2-git-send-email-reftel@spotify.com>
[-- Attachment #1: Type: text/plain, Size: 2012 bytes --]
On 10/08/2014 06:13 AM, Magnus Reftel wrote:
> This patch introduces the -seed command line option and the
> QEMU_RAND_SEED environment variable for setting the random seed, which
> is used for the AT_RANDOM ELF aux entry.
>
> Signed-off-by: Magnus Reftel <reftel@spotify.com>
> ---
> linux-user/elfload.c | 1 -
> linux-user/main.c | 21 +++++++++++++++++++++
> 2 files changed, 21 insertions(+), 1 deletion(-)
>
> +++ b/linux-user/main.c
> @@ -46,6 +46,8 @@ unsigned long mmap_min_addr;
> #if defined(CONFIG_USE_GUEST_BASE)
> unsigned long guest_base;
> int have_guest_base;
> +static bool have_rand_seed = false;
static variables are automatically 0-initialized without needing an
explicit initializer.
> +static int rand_seed;
> #if (TARGET_LONG_BITS == 32) && (HOST_LONG_BITS == 64)
> /*
> * When running 32-on-64 we should make sure we can fit all of the possible
> @@ -3546,6 +3548,12 @@ static void handle_arg_pagesize(const char *arg)
> }
> }
>
> +static void handle_arg_randseed(const char *arg)
> +{
> + have_rand_seed = true;
> + rand_seed = atoi(arg);
> +}
atoi() is trash when compared to strtol() - it doesn't diagnose
overflow, trailing garbage, or empty input.
> @@ -3926,6 +3936,17 @@ int main(int argc, char **argv, char **envp)
> do_strace = 1;
> }
>
> + if (getenv("QEMU_RAND_SEED")) {
> + have_rand_seed = true;
> + rand_seed = atoi(getenv("QEMU_RAND_SEED"));
> + }
why not call handle_arg_randseed(getenv("QEMU_RAND_SEED")) here?
> +
> + if (have_rand_seed) {
> + srand(rand_seed);
> + } else {
> + srand((int)time(NULL));
The cast is pointless. This is C.
> + }
Do you even need have_rand_seed? Why not just pre-initialize
rand_seed=time(NULL) and then overwrite rand_seed if the environment
variable is present?
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 539 bytes --]
next prev parent reply other threads:[~2014-10-08 14:45 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-08 12:13 [Qemu-devel] [PATCH] Let user specify random seed for linux-user Magnus Reftel
2014-10-08 12:13 ` [Qemu-devel] [PATCH] linux-user: Let user specify random seed Magnus Reftel
2014-10-08 14:45 ` Eric Blake [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-10-09 8:36 [Qemu-devel] [PATCH v2] " Magnus Reftel
2014-10-09 8:36 ` [Qemu-devel] [PATCH] " Magnus Reftel
2014-10-09 15:27 ` Eric Blake
2014-10-09 19:10 ` Magnus Reftel
2014-10-09 19:12 [Qemu-devel] [PATCH v3] " Magnus Reftel
2014-10-09 19:12 ` [Qemu-devel] [PATCH] " Magnus Reftel
2014-10-09 21:30 ` Eric Blake
2014-10-10 8:16 ` Magnus Reftel
2014-10-10 16:20 ` Eric Blake
2014-10-14 9:46 ` Magnus Reftel
2014-10-14 9:50 [Qemu-devel] [PATCH v4] " Magnus Reftel
2014-10-14 9:50 ` [Qemu-devel] [PATCH] " Magnus Reftel
2014-10-14 15:07 ` Eric Blake
2014-10-14 15:18 [Qemu-devel] [PATCH v5] " Magnus Reftel
2014-10-14 15:18 ` [Qemu-devel] [PATCH] " Magnus Reftel
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=54354DF3.6010108@redhat.com \
--to=eblake@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=reftel@spotify.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.