devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] of/kexec: Omit kaslr-seed when kexecing with nokaslr
@ 2023-09-08 10:44 Song Shuai
  2023-09-08 14:58 ` Rob Herring
  0 siblings, 1 reply; 3+ messages in thread
From: Song Shuai @ 2023-09-08 10:44 UTC (permalink / raw)
  To: robh+dt, frowand.list; +Cc: devicetree, linux-kernel, Song Shuai

The chosen node always adds the kaslr-seed property which is needless
for the kernels kexeced with the cmdline contained "nokaslr".

So omit the kaslr-seed when kexecing with nokaslr.

Signed-off-by: Song Shuai <songshuaishuai@tinylab.org>
---
 drivers/of/kexec.c | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/drivers/of/kexec.c b/drivers/of/kexec.c
index f26d2ba8a371..c0d53b10cb70 100644
--- a/drivers/of/kexec.c
+++ b/drivers/of/kexec.c
@@ -19,6 +19,7 @@
 #include <linux/random.h>
 #include <linux/slab.h>
 #include <linux/types.h>
+#include <linux/string.h>
 
 #define RNG_SEED_SIZE		128
 
@@ -263,6 +264,14 @@ static inline int setup_ima_buffer(const struct kimage *image, void *fdt,
 }
 #endif /* CONFIG_IMA_KEXEC */
 
+static bool is_nokaslr_cmdline(const char *cmdline)
+{
+	char *str;
+
+	str = strstr(cmdline, "nokaslr");
+	return str == cmdline || (str > cmdline && *(str - 1) == ' ');
+}
+
 /*
  * of_kexec_alloc_and_setup_fdt - Alloc and setup a new Flattened Device Tree
  *
@@ -429,15 +438,15 @@ void *of_kexec_alloc_and_setup_fdt(const struct kimage *image,
 	else if (ret)
 		goto out;
 
-	if (rng_is_initialized()) {
+	if (!is_nokaslr_cmdline(cmdline) && rng_is_initialized()) {
 		u64 seed = get_random_u64();
 
 		ret = fdt_setprop_u64(fdt, chosen_node, "kaslr-seed", seed);
 		if (ret)
 			goto out;
 	} else {
-		pr_notice("RNG is not initialised: omitting \"%s\" property\n",
-			  "kaslr-seed");
+		pr_notice("RNG is not initialised or Kexec with nokaslr:"
+			  " omitting \"%s\" property\n", "kaslr-seed");
 	}
 
 	/* add rng-seed */
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-09-11  2:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-08 10:44 [PATCH] of/kexec: Omit kaslr-seed when kexecing with nokaslr Song Shuai
2023-09-08 14:58 ` Rob Herring
2023-09-11  2:22   ` Song Shuai

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).