From: Baolin Wang <baolin.wang@linux.alibaba.com>
To: olvaffe@gmail.com, Andrey Ryabinin <ryabinin.a.a@gmail.com>,
Alexander Potapenko <glider@google.com>,
Andrey Konovalov <andreyknvl@gmail.com>,
Dmitry Vyukov <dvyukov@google.com>,
Vincenzo Frascino <vincenzo.frascino@arm.com>,
Andrew Morton <akpm@linux-foundation.org>,
Hugh Dickins <hughd@google.com>, Kairui Song <kasong@tencent.com>
Cc: kasan-dev@googlegroups.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org,
Boris Brezillon <boris.brezillon@collabora.com>
Subject: Re: [PATCH RFC v2] mm/shmem: set __GFP_SKIP_KASAN for swap_cluster_readahead
Date: Wed, 20 May 2026 18:04:12 +0800 [thread overview]
Message-ID: <72bec63c-09f2-4a97-908d-3e6af8e3e0ae@linux.alibaba.com> (raw)
In-Reply-To: <20260519-panthor-kasan-v2-1-b7384458f076@gmail.com>
CC Kairui,
On 5/20/26 12:31 PM, Chia-I Wu via B4 Relay wrote:
> From: Chia-I Wu <olvaffe@gmail.com>
>
> swap_cluster_readahead can allocate folios for other mappings. If the
> gfp flags do not have __GFP_SKIP_KASAN, but the other mappings have
> PROT_MTE, we can end up with false KASAN errors such as
>
> BUG: KASAN: invalid-access in swap_writepage+0xb0/0x21c
> Read at addr f5ffff81aa71dff8 by task WM.task-4/6956
> Pointer tag: [f5], memory tag: [f9]
>
> In the above example, because __GFP_SKIP_KASAN was missing, KASAN set
> both pointer tag and memory tag to 0xf5 when swap_cluster_readahead
> allocated the folio. But the userspace had already set the memory tag to
> 0xf9 before swapped out. arch_swap_restore restored the memory tag back
> to 0xf9, leading to the mismatch.
>
> Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
> ---
> Changes in v2:
> - set __GFP_SKIP_KASAN for shmem instead of drm/panthor
> - Link to v1: https://patch.msgid.link/20260512-panthor-kasan-v1-1-d8d3e275d71b@gmail.com
> ---
> mm/shmem.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/mm/shmem.c b/mm/shmem.c
> index 3b5dc21b323c2..db9130a8c5b76 100644
> --- a/mm/shmem.c
> +++ b/mm/shmem.c
> @@ -1784,6 +1784,11 @@ static struct folio *shmem_swapin_cluster(swp_entry_t swap, gfp_t gfp,
> pgoff_t ilx;
> struct folio *folio;
>
> + /* swap_cluster_readahead might cross the mapping boundary and
> + * allocate pages for other mappings. We have to skip KASAN.
> + */
> + gfp |= __GFP_SKIP_KASAN;
> +
> mpol = shmem_get_pgoff_policy(info, index, 0, &ilx);
> folio = swap_cluster_readahead(swap, gfp, mpol, ilx);
> mpol_cond_put(mpol);
If we force __GFP_SKIP_KASAN, would this cause issues for mappings that
explicitly should NOT have the flag? and your v1 link already mentions
this scenario.
Additionally, I'm wondering if we could use shmem_should_replace_folio()
to detect such cases where shmem is being prematurely swapped in with
incorrect GFP flags (e.g.: __GFP_SKIP_KASAN), and then handle it through
shmem_replace_folio()?
next prev parent reply other threads:[~2026-05-20 10:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-20 4:31 Chia-I Wu via B4 Relay
2026-05-20 10:04 ` Baolin Wang [this message]
2026-05-20 17:06 ` Chia-I Wu
2026-05-21 7:05 ` Baolin Wang
2026-05-21 8:51 ` Boris Brezillon
2026-05-21 15:49 ` Chia-I Wu
2026-05-21 21:12 ` Chia-I Wu
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=72bec63c-09f2-4a97-908d-3e6af8e3e0ae@linux.alibaba.com \
--to=baolin.wang@linux.alibaba.com \
--cc=akpm@linux-foundation.org \
--cc=andreyknvl@gmail.com \
--cc=boris.brezillon@collabora.com \
--cc=dvyukov@google.com \
--cc=glider@google.com \
--cc=hughd@google.com \
--cc=kasan-dev@googlegroups.com \
--cc=kasong@tencent.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=olvaffe@gmail.com \
--cc=ryabinin.a.a@gmail.com \
--cc=vincenzo.frascino@arm.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
Powered by JetHome