[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Minios-devel] [UNIKRAFT PATCH v3 2/4] lib/ukswrand: Add seed generating function


  • To: "minios-devel@xxxxxxxxxxxxx" <minios-devel@xxxxxxxxxxxxx>
  • From: Vlad-Andrei BĂDOIU (78692) <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
  • Date: Mon, 21 Oct 2019 11:35:31 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=stud.acs.upb.ro; dmarc=pass action=none header.from=stud.acs.upb.ro; dkim=pass header.d=stud.acs.upb.ro; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=TnGP9MmEcrcZyUkawrbYshSbDgubbF4gKma2SGSTCbc=; b=iDBxGyEFaxcFs5nf0++eFjZH/elpeHt3qn22vBQZA/ENNq0aRMwgDBqmPk/dVGINfCZlMI3g04QHC9Vt3r4EmFf+zCXL+T4ffC9xiswn8q+ftmTiHr5HyZ0/CuZlubvY/VaeezAypwrBoIHUROXRptjb1OR0EizJXuhC02hNwwqrGQglHp82jWG5yhkKxE53gXB6MfprkRSxaTm4+kF7qjNlIT2t8mmw6KsyyAXnAkKxrM9z6HMSEOG+QCyJIIbsg4jAgu4pRyDIW8hbmh2zCW168gGxVAUNSoP4GP9aVLKZBrQ2CD/EFT2ozfgWskldW00V6u/RxwWohdSb6c5dmQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Em61fyaw78uYHUjwhT20yH76cyEBM/BuvUfwWi8WSbLVsRJFt6UkqnSoYWKlJgUlAk4Q/ndNdn26+tZevJC773ooPcQLiYi4DBALLg8JuKymEK6mM9DnqHZk+l2wOSnFEZMamWUe2pql1SCfwso0zIfVqnH7zpV/cWR9Os+I5fOEMuxmgTe+MBe9ZXUiS3K2OahtqChDJn65nxOt/YIOLrDK5pB1LYH4pdJ7oo+J1EAmRQceHC/qYXt+xH3K38uXPxwR3smsiD3HgYR7fU8qvts+kqxnTikUZYCtOksembmsny6HJrcFe9Mrosytbzv4cUJ3a0lhMY+je20Mtci+Zw==
  • Authentication-results: spf=none (sender IP is ) smtp.mailfrom=vlad_andrei.badoiu@xxxxxxxxxxxxxxx;
  • Cc: "felipe.huici@xxxxxxxxx" <felipe.huici@xxxxxxxxx>, "simon.kuenzer@xxxxxxxxx" <simon.kuenzer@xxxxxxxxx>, Vlad-Andrei BĂDOIU (78692) <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
  • Delivery-date: Mon, 21 Oct 2019 11:35:37 +0000
  • List-id: Mini-os development list <minios-devel.lists.xenproject.org>
  • Thread-index: AQHViAOlh7eya66pvUS1iffh4Eif3A==
  • Thread-topic: [UNIKRAFT PATCH v3 2/4] lib/ukswrand: Add seed generating function

This patch adds a new function, _get_random_seed32 for seed generaton. If the
pre-compiled config option is not selected, then rdrand is used on x86 and
ukplat_wall_clock on ARM.

Signed-off-by: Vlad-Andrei Badoiu <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
---
 lib/ukswrand/Config.uk           | 22 +++++++++++++++++++---
 lib/ukswrand/include/uk/swrand.h |  2 ++
 lib/ukswrand/mwc.c               |  1 -
 lib/ukswrand/swrand.c            | 22 +++++++++++++++++++++-
 4 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/lib/ukswrand/Config.uk b/lib/ukswrand/Config.uk
index c58371bb..e056b4c5 100644
--- a/lib/ukswrand/Config.uk
+++ b/lib/ukswrand/Config.uk
@@ -14,9 +14,25 @@ config LIBUKSWRAND_MWC
                Use multiply-with-carry algorithm
 endchoice
 
-config LIBUKSWRAND_INITIALSEED
-       int "Initial random seed"
-       default 23
+choice
+    prompt "Initial seed"
+    default LIBUKSWRANDR_INITIALSEED_TIME
+
+config LIBUKSWRAND_INITIALSEED_TIME
+    bool "Platform timestamp"
+
+config LIBUKSWRAND_INITIALSEED_RDRAND
+    depends on ARCH_X86_64 && (MARCH_X86_64_COREI7AVXI)
+    bool "`rdrand` instruction"
+
+config LIBUKSWRAND_INITIALSEED_USECONSTANT
+    bool "Compiled-in constant"
+endchoice
+
+config LIBUKSWRAND_INITIALSEED_CONSTANT
+    int "Initial seed constant"
+    depends on LIBUKSWRAND_INITIALSEED_USECONSTANT
+    default 23
 
 config LIBUKSWRAND_DEVFS
        bool "Register random and urandom device to devfs"
diff --git a/lib/ukswrand/include/uk/swrand.h b/lib/ukswrand/include/uk/swrand.h
index 35f3e2fe..7f5eeed2 100644
--- a/lib/ukswrand/include/uk/swrand.h
+++ b/lib/ukswrand/include/uk/swrand.h
@@ -39,6 +39,7 @@
 #include <uk/arch/types.h>
 #include <uk/plat/lcpu.h>
 #include <uk/config.h>
+#include <uk/plat/time.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -51,6 +52,7 @@ extern struct uk_swrand uk_swrand_def;
 void uk_swrand_init_r(struct uk_swrand *r, __u32 seed);
 __u32 uk_swrand_randr_r(struct uk_swrand *r);
 
+__u32 _get_random_seed32(void);
 /* Uses the pre-initialized default generator  */
 /* TODO: Add assertion when we can test if we are in interrupt context */
 /* TODO: Revisit with multi-CPU support */
diff --git a/lib/ukswrand/mwc.c b/lib/ukswrand/mwc.c
index 3ee07051..19166c4b 100644
--- a/lib/ukswrand/mwc.c
+++ b/lib/ukswrand/mwc.c
@@ -93,4 +93,3 @@ __u32 uk_swrand_randr_r(struct uk_swrand *r)
        r->c = c;
        return (r->Q[i] = y - x);
 }
-
diff --git a/lib/ukswrand/swrand.c b/lib/ukswrand/swrand.c
index d9497bf8..16ad3496 100644
--- a/lib/ukswrand/swrand.c
+++ b/lib/ukswrand/swrand.c
@@ -37,6 +37,26 @@
 
 #define UK_SWRAND_CTOR_PRIO    1
 
+__u32 _get_random_seed32(void)
+{
+       __u32 val;
+
+#ifdef CONFIG_LIBUKSWRAND_INITIALSEED_TIME
+       val = (__u32)ukplat_wall_clock();
+#endif
+
+#ifdef CONFIG_LIBUKSWRAND_INITIALSEED_RDRAND
+       asm volatile ("rdrand %%eax;"
+               : "=a" (val));
+#endif
+
+#ifdef CONFIG_LIBUKSWRAND_INITIALSEED_USECONSTANT
+       val = CONFIG_LIBUKSWRAND_INITIALSEED_CONSTANT;
+#endif
+
+       return val;
+}
+
 ssize_t uk_swrand_fill_buffer(void *buf, size_t buflen)
 {
        size_t step, chunk_size, i;
@@ -60,7 +80,7 @@ ssize_t uk_swrand_fill_buffer(void *buf, size_t buflen)
 static void _uk_swrand_ctor(void)
 {
        uk_pr_info("Initialize random number generator...\n");
-       uk_swrand_init_r(&uk_swrand_def, CONFIG_LIBUKSWRAND_INITIALSEED);
+       uk_swrand_init_r(&uk_swrand_def, _get_random_seed32());
 }
 
 UK_CTOR_FUNC(UK_SWRAND_CTOR_PRIO, _uk_swrand_ctor);
-- 
2.20.1


_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.