From: Huang Shijie <shijie@os.amperecomputing.com>
To: catalin.marinas@arm.com, will@kernel.org,
anshuman.khandual@arm.com, corbet@lwn.net
Cc: patches@amperecomputing.com, cl@linux.com,
akpm@linux-foundation.org, thuth@redhat.com, rostedt@goodmis.org,
xiongwei.song@windriver.com, ardb@kernel.org,
inux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Huang Shijie <shijie@os.amperecomputing.com>
Subject: [PATCH v3 1/2] arm64: refactor the rodata=xxx
Date: Mon, 9 Dec 2024 15:20:19 +0800 [thread overview]
Message-ID: <20241209072020.4743-2-shijie@os.amperecomputing.com> (raw)
In-Reply-To: <20241209072020.4743-1-shijie@os.amperecomputing.com>
From Documentation/admin-guide/kernel-parameters.txt:
rodata= [KNL,EARLY]
on Mark read-only kernel memory as read-only (default).
So "rodata=on" is the default.
But the current code does not follow the document, it makes "rodata=full"
as the default.
This patch refactors the "rodata=xxx" :
1.) Make rodata=on behaviour be the original rodata=full.
(Drop the original rodata=full.)
2.) Introduce "rodata=noalias" which is the original "rodata=on"
3.) Add more comment for arch_parse_debug_rodata(),
update kernel-parameters.txt.
After this patch, the rodata=on will be the default.
Signed-off-by: Huang Shijie <shijie@os.amperecomputing.com>
---
.../admin-guide/kernel-parameters.txt | 2 +-
arch/arm64/include/asm/setup.h | 25 +++++++++++++++++--
2 files changed, 24 insertions(+), 3 deletions(-)
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index a22b7e621007..51bce7b9d805 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -5901,7 +5901,7 @@
rodata= [KNL,EARLY]
on Mark read-only kernel memory as read-only (default).
off Leave read-only kernel memory writable for debugging.
- full Mark read-only kernel memory and aliases as read-only
+ noalias Use more block mappings,may have better performance.
[arm64]
rockchip.usb_uart
diff --git a/arch/arm64/include/asm/setup.h b/arch/arm64/include/asm/setup.h
index ba269a7a3201..b3063326b79a 100644
--- a/arch/arm64/include/asm/setup.h
+++ b/arch/arm64/include/asm/setup.h
@@ -13,6 +13,27 @@
extern phys_addr_t __fdt_pointer __initdata;
extern u64 __cacheline_aligned boot_args[4];
+/*
+ * rodata=on (default):
+ * Apply read-only attributes of VM areas to the linear alias of
+ * the backing pages as well. This prevents code or read-only data
+ * from being modified (inadvertently or intentionally) via another
+ * mapping of the same memory page.
+ *
+ * This requires the linear region to be mapped down to pages,
+ * which may adversely affect performance in some cases.
+ *
+ * rodata=off:
+ * It provides us more block mappings and contiguous hits
+ * to map the linear region which minimize the TLB footprint.
+ * Leave read-only kernel memory writable for debugging.
+ *
+ * rodata=noalias:
+ * It provides us more block mappings and contiguous hits
+ * to map the linear region which minimize the TLB footprint.
+ * And the linear aliases of pages belonging to read-only mappings
+ * in vmalloc region are also marked as read-only.
+ */
static inline bool arch_parse_debug_rodata(char *arg)
{
extern bool rodata_enabled;
@@ -21,7 +42,7 @@ static inline bool arch_parse_debug_rodata(char *arg)
if (!arg)
return false;
- if (!strcmp(arg, "full")) {
+ if (!strcmp(arg, "on")) {
rodata_enabled = rodata_full = true;
return true;
}
@@ -31,7 +52,7 @@ static inline bool arch_parse_debug_rodata(char *arg)
return true;
}
- if (!strcmp(arg, "on")) {
+ if (!strcmp(arg, "noalias")) {
rodata_enabled = true;
rodata_full = false;
return true;
--
2.40.1
next prev parent reply other threads:[~2024-12-09 7:20 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-09 7:20 [PATCH v3 0/2] " Huang Shijie
2024-12-09 7:20 ` Huang Shijie [this message]
2024-12-09 17:05 ` [PATCH v3 1/2] " Christoph Lameter (Ampere)
2024-12-10 3:22 ` Shijie Huang
2024-12-10 7:17 ` Anshuman Khandual
2024-12-10 7:21 ` Ard Biesheuvel
2024-12-10 8:38 ` Anshuman Khandual
2024-12-10 9:47 ` Shijie Huang
2024-12-09 7:20 ` [PATCH v3 2/2] arm64: remove CONFIG_RODATA_FULL_DEFAULT_ENABLED Huang Shijie
2024-12-10 7:27 ` Anshuman Khandual
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=20241209072020.4743-2-shijie@os.amperecomputing.com \
--to=shijie@os.amperecomputing.com \
--cc=akpm@linux-foundation.org \
--cc=anshuman.khandual@arm.com \
--cc=ardb@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=cl@linux.com \
--cc=corbet@lwn.net \
--cc=inux-doc@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=patches@amperecomputing.com \
--cc=rostedt@goodmis.org \
--cc=thuth@redhat.com \
--cc=will@kernel.org \
--cc=xiongwei.song@windriver.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®