From: "Russell King (Oracle)" <linux@armlinux.org.uk>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Clement LE GOFFIC <clement.legoffic@foss.st.com>,
Kees Cook <kees@kernel.org>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Mark Brown <broonie@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Ard Biesheuvel <ardb@kernel.org>,
Antonio Borneo <antonio.borneo@foss.st.com>,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org, stable@vger.kernel.org
Subject: Re: [PATCH 1/2] ARM: ioremap: Flush PGDs for VMALLOC shadow
Date: Tue, 15 Oct 2024 22:46:38 +0100 [thread overview]
Message-ID: <Zw7ivkeqKWzkQrN2@shell.armlinux.org.uk> (raw)
In-Reply-To: <20241015-arm-kasan-vmalloc-crash-v1-1-dbb23592ca83@linaro.org>
On Tue, Oct 15, 2024 at 11:37:14PM +0200, Linus Walleij wrote:
> @@ -125,6 +126,12 @@ void __check_vmalloc_seq(struct mm_struct *mm)
> pgd_offset_k(VMALLOC_START),
> sizeof(pgd_t) * (pgd_index(VMALLOC_END) -
> pgd_index(VMALLOC_START)));
> + if (IS_ENABLED(CONFIG_KASAN_VMALLOC)) {
> + memcpy(pgd_offset(mm, (unsigned long)kasan_mem_to_shadow((void *)VMALLOC_START)),
> + pgd_offset_k((unsigned long)kasan_mem_to_shadow((void *)VMALLOC_START)),
> + sizeof(pgd_t) * (pgd_index((unsigned long)kasan_mem_to_shadow((void *)VMALLOC_END)) -
> + pgd_index((unsigned long)kasan_mem_to_shadow((void *)VMALLOC_START))));
Maybe the following would be more readable:
static unsigned long arm_kasan_mem_to_shadow(unsigned long addr)
{
return (unsigned long)kasan_mem_to_shadow((void *)addr);
}
static void memcpy_pgd(struct mm_struct *mm, unsigned long start,
unsigned long end)
{
memcpy(pgd_offset(mm, start), pgd_offset_k(start),
sizeof(pgd_t) * (pgd_index(end) - pgd_index(start)));
}
seq = ...;
memcpy_pgd(mm, VMALLOC_START, VMALLOC_END);
if (IS_ENABLED(CONFIG_KASAN_VMALLOC)) {
unsigned long start =
arm_kasan_mem_to_shadow(VMALLOC_START);
unsigned long end =
arm_kasan_mem_to_shadow(VMALLOC_END);
memcpy_pgd(mm, start, end);
> + }
?
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
next prev parent reply other threads:[~2024-10-15 21:46 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-15 21:37 [PATCH 0/2] Fix KASAN crash when using KASAN_VMALLOC Linus Walleij
2024-10-15 21:37 ` [PATCH 1/2] ARM: ioremap: Flush PGDs for VMALLOC shadow Linus Walleij
2024-10-15 21:46 ` Russell King (Oracle) [this message]
2024-10-16 11:32 ` Ard Biesheuvel
2024-10-16 18:38 ` Linus Walleij
2024-10-16 18:50 ` Ard Biesheuvel
2024-10-16 19:04 ` Linus Walleij
2024-10-15 21:37 ` [PATCH 2/2] ARM: entry: Do a dummy read from VMAP shadow Linus Walleij
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=Zw7ivkeqKWzkQrN2@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=angelogioacchino.delregno@collabora.com \
--cc=antonio.borneo@foss.st.com \
--cc=ardb@kernel.org \
--cc=broonie@kernel.org \
--cc=clement.legoffic@foss.st.com \
--cc=kees@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mark.rutland@arm.com \
--cc=stable@vger.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 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.