From: Pavan Kondeti <quic_pkondeti@quicinc.com>
To: Zhenhua Huang <quic_zhenhuah@quicinc.com>
Cc: <catalin.marinas@arm.com>, <will@kernel.org>, <glider@google.com>,
<elver@google.com>, <dvyukov@google.com>,
<akpm@linux-foundation.org>, <robin.murphy@arm.com>,
<mark.rutland@arm.com>, <jianyong.wu@arm.com>,
<james.morse@arm.com>, <wangkefeng.wang@huawei.com>,
<linux-arm-kernel@lists.infradead.org>,
<kasan-dev@googlegroups.com>, <linux-mm@kvack.org>,
<quic_pkondeti@quicinc.com>, <quic_guptap@quicinc.com>,
<quic_tingweiz@quicinc.com>, <quic_charante@quicinc.com>
Subject: Re: [PATCH v8] mm,kfence: decouple kfence from page granularity mapping judgement
Date: Tue, 14 Mar 2023 14:06:45 +0530 [thread overview]
Message-ID: <20230314083645.GA556474@hu-pkondeti-hyd.qualcomm.com> (raw)
In-Reply-To: <1678777502-6933-1-git-send-email-quic_zhenhuah@quicinc.com>
On Tue, Mar 14, 2023 at 03:05:02PM +0800, Zhenhua Huang wrote:
> Kfence only needs its pool to be mapped as page granularity, if it is
> inited early. Previous judgement was a bit over protected. From [1], Mark
> suggested to "just map the KFENCE region a page granularity". So I
> decouple it from judgement and do page granularity mapping for kfence
> pool only. Need to be noticed that late init of kfence pool still requires
> page granularity mapping.
>
> Page granularity mapping in theory cost more(2M per 1GB) memory on arm64
> platform. Like what I've tested on QEMU(emulated 1GB RAM) with
> gki_defconfig, also turning off rodata protection:
> Before:
> [root@liebao ]# cat /proc/meminfo
> MemTotal: 999484 kB
> After:
> [root@liebao ]# cat /proc/meminfo
> MemTotal: 1001480 kB
>
> To implement this, also relocate the kfence pool allocation before the
> linear mapping setting up, arm64_kfence_alloc_pool is to allocate phys
> addr, __kfence_pool is to be set after linear mapping set up.
>
> LINK: [1] https://lore.kernel.org/linux-arm-kernel/Y+IsdrvDNILA59UN@FVFF77S0Q05N/
> Suggested-by: Mark Rutland <mark.rutland@arm.com>
> Signed-off-by: Zhenhua Huang <quic_zhenhuah@quicinc.com>
> ---
> arch/arm64/include/asm/kfence.h | 2 ++
> arch/arm64/mm/mmu.c | 44 +++++++++++++++++++++++++++++++++++++++++
> arch/arm64/mm/pageattr.c | 9 +++++++--
> include/linux/kfence.h | 8 ++++++++
> mm/kfence/core.c | 9 +++++++++
> 5 files changed, 70 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm64/include/asm/kfence.h b/arch/arm64/include/asm/kfence.h
> index aa855c6..f1f9ca2d 100644
> --- a/arch/arm64/include/asm/kfence.h
> +++ b/arch/arm64/include/asm/kfence.h
> @@ -10,6 +10,8 @@
>
> #include <asm/set_memory.h>
>
> +extern phys_addr_t early_kfence_pool;
> +
> static inline bool arch_kfence_init_pool(void) { return true; }
>
> static inline bool kfence_protect_page(unsigned long addr, bool protect)
> diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c
> index 6f9d889..7fbf2ed 100644
> --- a/arch/arm64/mm/mmu.c
> +++ b/arch/arm64/mm/mmu.c
> @@ -24,6 +24,7 @@
> #include <linux/mm.h>
> #include <linux/vmalloc.h>
> #include <linux/set_memory.h>
> +#include <linux/kfence.h>
>
> #include <asm/barrier.h>
> #include <asm/cputype.h>
> @@ -38,6 +39,7 @@
> #include <asm/ptdump.h>
> #include <asm/tlbflush.h>
> #include <asm/pgalloc.h>
> +#include <asm/kfence.h>
>
> #define NO_BLOCK_MAPPINGS BIT(0)
> #define NO_CONT_MAPPINGS BIT(1)
> @@ -525,6 +527,33 @@ static int __init enable_crash_mem_map(char *arg)
> }
> early_param("crashkernel", enable_crash_mem_map);
>
> +#ifdef CONFIG_KFENCE
> +
> +static phys_addr_t arm64_kfence_alloc_pool(void)
> +{
> + phys_addr_t kfence_pool;
> +
> + if (!kfence_sample_interval)
> + return 0;
> +
Are you sure that kernel commandline param are processed this early?
AFAICS, start_kernel()->parse_args() process the kernel arguments. We
are here before that. without your patch, mm_init() which takes care of
allocating kfence memory is called after parse_args().
Can you check your patch with kfence.sample_interval=0 appended to
kernel commandline?
> + kfence_pool = memblock_phys_alloc(KFENCE_POOL_SIZE, PAGE_SIZE);
> + if (!kfence_pool)
> + pr_err("failed to allocate kfence pool\n");
> +
For whatever reason, if this allocation fails, what should be done? We
end up not calling kfence_set_pool(). kfence_alloc_pool() is going to
attempt allocation again but we did not setup page granularity. That
means, we are enabling KFENCE without meeting pre-conditions. Can you
check this?
> + return kfence_pool;
> +}
> +
Thanks,
Pavan
next prev parent reply other threads:[~2023-03-14 8:37 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-14 7:05 Zhenhua Huang
2023-03-14 8:36 ` Pavan Kondeti [this message]
2023-03-14 10:08 ` Zhenhua Huang
2023-03-14 11:14 ` Pavan Kondeti
2023-03-15 6:51 ` Zhenhua Huang
2023-03-15 8:52 ` Marco Elver
2023-03-15 11:19 ` Zhenhua Huang
2023-03-14 11:20 ` Zhenhua Huang
2023-03-14 8:41 ` Marco Elver
2023-03-14 10:31 ` Zhenhua Huang
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=20230314083645.GA556474@hu-pkondeti-hyd.qualcomm.com \
--to=quic_pkondeti@quicinc.com \
--cc=akpm@linux-foundation.org \
--cc=catalin.marinas@arm.com \
--cc=dvyukov@google.com \
--cc=elver@google.com \
--cc=glider@google.com \
--cc=james.morse@arm.com \
--cc=jianyong.wu@arm.com \
--cc=kasan-dev@googlegroups.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mm@kvack.org \
--cc=mark.rutland@arm.com \
--cc=quic_charante@quicinc.com \
--cc=quic_guptap@quicinc.com \
--cc=quic_tingweiz@quicinc.com \
--cc=quic_zhenhuah@quicinc.com \
--cc=robin.murphy@arm.com \
--cc=wangkefeng.wang@huawei.com \
--cc=will@kernel.org \
/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