[PATCH v3 1/7] arm64: mte: Fix/clarify the PG_mte_tagged semantics
Cornelia Huck
cohuck at redhat.com
Fri Sep 2 03:26:25 PDT 2022
On Wed, Aug 10 2022, Peter Collingbourne <pcc at google.com> wrote:
> From: Catalin Marinas <catalin.marinas at arm.com>
>
> Currently the PG_mte_tagged page flag mostly means the page contains
> valid tags and it should be set after the tags have been cleared or
> restored. However, in mte_sync_tags() it is set before setting the tags
> to avoid, in theory, a race with concurrent mprotect(PROT_MTE) for
> shared pages. However, a concurrent mprotect(PROT_MTE) with a copy on
> write in another thread can cause the new page to have stale tags.
> Similarly, tag reading via ptrace() can read stale tags of the
s/of/if/
> PG_mte_tagged flag is set before actually clearing/restoring the tags.
>
> Fix the PG_mte_tagged semantics so that it is only set after the tags
> have been cleared or restored. This is safe for swap restoring into a
> MAP_SHARED or CoW page since the core code takes the page lock. Add two
> functions to test and set the PG_mte_tagged flag with acquire and
> release semantics. The downside is that concurrent mprotect(PROT_MTE) on
> a MAP_SHARED page may cause tag loss. This is already the case for KVM
> guests if a VMM changes the page protection while the guest triggers a
> user_mem_abort().
>
> Signed-off-by: Catalin Marinas <catalin.marinas at arm.com>
> Cc: Will Deacon <will at kernel.org>
> Cc: Marc Zyngier <maz at kernel.org>
> Cc: Steven Price <steven.price at arm.com>
> Cc: Peter Collingbourne <pcc at google.com>
> ---
> v3:
> - fix build with CONFIG_ARM64_MTE disabled
>
> arch/arm64/include/asm/mte.h | 30 ++++++++++++++++++++++++++++++
> arch/arm64/include/asm/pgtable.h | 2 +-
> arch/arm64/kernel/cpufeature.c | 4 +++-
> arch/arm64/kernel/elfcore.c | 2 +-
> arch/arm64/kernel/hibernate.c | 2 +-
> arch/arm64/kernel/mte.c | 12 +++++++-----
> arch/arm64/kvm/guest.c | 4 ++--
> arch/arm64/kvm/mmu.c | 4 ++--
> arch/arm64/mm/copypage.c | 4 ++--
> arch/arm64/mm/fault.c | 2 +-
> arch/arm64/mm/mteswap.c | 2 +-
> 11 files changed, 51 insertions(+), 17 deletions(-)
Reviewed-by: Cornelia Huck <cohuck at redhat.com>
More information about the linux-arm-kernel
mailing list