From: Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>
To: Andrey Konovalov <andreyknvl@gmail.com>
Cc: <sohil.mehta@intel.com>, <baohua@kernel.org>, <david@redhat.com>,
<kbingham@kernel.org>, <weixugc@google.com>,
<Liam.Howlett@oracle.com>, <alexandre.chartre@oracle.com>,
<kas@kernel.org>, <mark.rutland@arm.com>,
<trintaeoitogc@gmail.com>, <axelrasmussen@google.com>,
<yuanchu@google.com>, <joey.gouly@arm.com>,
<samitolvanen@google.com>, <joel.granados@kernel.org>,
<graf@amazon.com>, <vincenzo.frascino@arm.com>, <kees@kernel.org>,
<ardb@kernel.org>, <thiago.bauermann@linaro.org>,
<glider@google.com>, <thuth@redhat.com>,
<kuan-ying.lee@canonical.com>, <pasha.tatashin@soleen.com>,
<nick.desaulniers+lkml@gmail.com>, <vbabka@suse.cz>,
<kaleshsingh@google.com>, <justinstitt@google.com>,
<catalin.marinas@arm.com>, <alexander.shishkin@linux.intel.com>,
<samuel.holland@sifive.com>, <dave.hansen@linux.intel.com>,
<corbet@lwn.net>, <xin@zytor.com>, <dvyukov@google.com>,
<tglx@linutronix.de>, <scott@os.amperecomputing.com>,
<jason.andryuk@amd.com>, <morbo@google.com>, <nathan@kernel.org>,
<lorenzo.stoakes@oracle.com>, <mingo@redhat.com>,
<brgerst@gmail.com>, <kristina.martsenko@arm.com>,
<bigeasy@linutronix.de>, <luto@kernel.org>, <jgross@suse.com>,
<jpoimboe@kernel.org>, <urezki@gmail.com>, <mhocko@suse.com>,
<ada.coupriediaz@arm.com>, <hpa@zytor.com>, <leitao@debian.org>,
<peterz@infradead.org>, <wangkefeng.wang@huawei.com>,
<surenb@google.com>, <ziy@nvidia.com>, <smostafa@google.com>,
<ryabinin.a.a@gmail.com>, <ubizjak@gmail.com>, <jbohac@suse.cz>,
<broonie@kernel.org>, <akpm@linux-foundation.org>,
<guoweikang.kernel@gmail.com>, <rppt@kernel.org>,
<pcc@google.com>, <jan.kiszka@siemens.com>,
<nicolas.schier@linux.dev>, <will@kernel.org>,
<jhubbard@nvidia.com>, <bp@alien8.de>, <x86@kernel.org>,
<linux-doc@vger.kernel.org>, <linux-mm@kvack.org>,
<llvm@lists.linux.dev>, <linux-kbuild@vger.kernel.org>,
<kasan-dev@googlegroups.com>, <linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v5 05/19] kasan: arm64: x86: Make special tags arch specific
Date: Mon, 8 Sep 2025 12:12:35 +0200 [thread overview]
Message-ID: <mjuxddfbpdvjpjetctqbs5kg4iz4ngsnwl5ovvv63k2gc3f2ir@n67fqqlnyuz6> (raw)
In-Reply-To: <CA+fCnZecdx5QsYcwn6ZyNoOkQRqmonUmSmfiihYTF8Ws_0O9KA@mail.gmail.com>
On 2025-09-06 at 19:18:33 +0200, Andrey Konovalov wrote:
>On Mon, Aug 25, 2025 at 10:27 PM Maciej Wieczor-Retman
><maciej.wieczor-retman@intel.com> wrote:
>>
>> KASAN's tag-based mode defines multiple special tag values. They're
>> reserved for:
>> - Native kernel value. On arm64 it's 0xFF and it causes an early return
>> in the tag checking function.
>> - Invalid value. 0xFE marks an area as freed / unallocated. It's also
>> the value that is used to initialize regions of shadow memory.
>> - Max value. 0xFD is the highest value that can be randomly generated
>> for a new tag.
>>
>> Metadata macro is also defined:
>> - Tag width equal to 8.
>>
>> Tag-based mode on x86 is going to use 4 bit wide tags so all the above
>> values need to be changed accordingly.
>>
>> Make native kernel tag arch specific for x86 and arm64.
>>
>> Replace hardcoded kernel tag value and tag width with macros in KASAN's
>> non-arch specific code.
>>
>> Signed-off-by: Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>
>> ---
>> Changelog v5:
>> - Move KASAN_TAG_MIN to the arm64 kasan-tags.h for the hardware KASAN
>> mode case.
>>
>> Changelog v4:
>> - Move KASAN_TAG_MASK to kasan-tags.h.
>>
>> Changelog v2:
>> - Remove risc-v from the patch.
>>
>> MAINTAINERS | 2 +-
>> arch/arm64/include/asm/kasan-tags.h | 13 +++++++++++++
>> arch/arm64/include/asm/kasan.h | 4 ----
>> arch/x86/include/asm/kasan-tags.h | 9 +++++++++
>> include/linux/kasan-tags.h | 10 +++++++++-
>> include/linux/kasan.h | 4 +++-
>> include/linux/mm.h | 6 +++---
>> include/linux/mmzone.h | 1 -
>> include/linux/page-flags-layout.h | 9 +--------
>> 9 files changed, 39 insertions(+), 19 deletions(-)
>> create mode 100644 arch/arm64/include/asm/kasan-tags.h
>> create mode 100644 arch/x86/include/asm/kasan-tags.h
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index fed6cd812d79..788532771832 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -13176,7 +13176,7 @@ L: kasan-dev@googlegroups.com
>> S: Maintained
>> B: https://bugzilla.kernel.org/buglist.cgi?component=Sanitizers&product=Memory%20Management
>> F: Documentation/dev-tools/kasan.rst
>> -F: arch/*/include/asm/*kasan.h
>> +F: arch/*/include/asm/*kasan*.h
>> F: arch/*/mm/kasan_init*
>> F: include/linux/kasan*.h
>> F: lib/Kconfig.kasan
>> diff --git a/arch/arm64/include/asm/kasan-tags.h b/arch/arm64/include/asm/kasan-tags.h
>> new file mode 100644
>> index 000000000000..152465d03508
>> --- /dev/null
>> +++ b/arch/arm64/include/asm/kasan-tags.h
>> @@ -0,0 +1,13 @@
>> +/* SPDX-License-Identifier: GPL-2.0 */
>> +#ifndef __ASM_KASAN_TAGS_H
>> +#define __ASM_KASAN_TAGS_H
>> +
>> +#define KASAN_TAG_KERNEL 0xFF /* native kernel pointers tag */
>> +
>> +#define KASAN_TAG_WIDTH 8
>> +
>> +#ifdef CONFIG_KASAN_HW_TAGS
>> +#define KASAN_TAG_MIN 0xF0 /* minimum value for random tags */
>> +#endif
>> +
>> +#endif /* ASM_KASAN_TAGS_H */
>> diff --git a/arch/arm64/include/asm/kasan.h b/arch/arm64/include/asm/kasan.h
>> index 4ab419df8b93..d2841e0fb908 100644
>> --- a/arch/arm64/include/asm/kasan.h
>> +++ b/arch/arm64/include/asm/kasan.h
>> @@ -7,10 +7,6 @@
>> #include <linux/linkage.h>
>> #include <asm/memory.h>
>>
>> -#ifdef CONFIG_KASAN_HW_TAGS
>> -#define KASAN_TAG_MIN 0xF0 /* minimum value for random tags */
>> -#endif
>> -
>> #define arch_kasan_set_tag(addr, tag) __tag_set(addr, tag)
>> #define arch_kasan_reset_tag(addr) __tag_reset(addr)
>> #define arch_kasan_get_tag(addr) __tag_get(addr)
>> diff --git a/arch/x86/include/asm/kasan-tags.h b/arch/x86/include/asm/kasan-tags.h
>> new file mode 100644
>> index 000000000000..68ba385bc75c
>> --- /dev/null
>> +++ b/arch/x86/include/asm/kasan-tags.h
>> @@ -0,0 +1,9 @@
>> +/* SPDX-License-Identifier: GPL-2.0 */
>> +#ifndef __ASM_KASAN_TAGS_H
>> +#define __ASM_KASAN_TAGS_H
>> +
>> +#define KASAN_TAG_KERNEL 0xF /* native kernel pointers tag */
>> +
>> +#define KASAN_TAG_WIDTH 4
>> +
>> +#endif /* ASM_KASAN_TAGS_H */
>> diff --git a/include/linux/kasan-tags.h b/include/linux/kasan-tags.h
>> index e07c896f95d3..fe80fa8f3315 100644
>> --- a/include/linux/kasan-tags.h
>> +++ b/include/linux/kasan-tags.h
>> @@ -2,7 +2,15 @@
>> #ifndef _LINUX_KASAN_TAGS_H
>> #define _LINUX_KASAN_TAGS_H
>>
>> -#include <asm/kasan.h>
>> +#if defined(CONFIG_KASAN_SW_TAGS) || defined(CONFIG_KASAN_HW_TAGS)
>> +#include <asm/kasan-tags.h>
>> +#endif
>> +
>> +#ifndef KASAN_TAG_WIDTH
>> +#define KASAN_TAG_WIDTH 0
>> +#endif
>> +
>> +#define KASAN_TAG_MASK ((1UL << KASAN_TAG_WIDTH) - 1)
>>
>> #ifndef KASAN_TAG_KERNEL
>> #define KASAN_TAG_KERNEL 0xFF /* native kernel pointers tag */
>> diff --git a/include/linux/kasan.h b/include/linux/kasan.h
>> index b396feca714f..54481f8c30c5 100644
>> --- a/include/linux/kasan.h
>> +++ b/include/linux/kasan.h
>> @@ -40,7 +40,9 @@ typedef unsigned int __bitwise kasan_vmalloc_flags_t;
>>
>> #ifdef CONFIG_KASAN_SW_TAGS
>> /* This matches KASAN_TAG_INVALID. */
>> -#define KASAN_SHADOW_INIT 0xFE
>> +#ifndef KASAN_SHADOW_INIT
>
>Do we need this ifndef?
I just checked and you're right, it's not needed. I think it might have been a
leftover of my dense mode code.
>
>> +#define KASAN_SHADOW_INIT KASAN_TAG_INVALID
>> +#endif
>> #else
>> #define KASAN_SHADOW_INIT 0
>> #endif
>> diff --git a/include/linux/mm.h b/include/linux/mm.h
>> index 1ae97a0b8ec7..bb494cb1d5af 100644
>> --- a/include/linux/mm.h
>> +++ b/include/linux/mm.h
>> @@ -1692,7 +1692,7 @@ static inline u8 page_kasan_tag(const struct page *page)
>>
>> if (kasan_enabled()) {
>> tag = (page->flags >> KASAN_TAG_PGSHIFT) & KASAN_TAG_MASK;
>> - tag ^= 0xff;
>> + tag ^= KASAN_TAG_KERNEL;
>> }
>>
>> return tag;
>> @@ -1705,7 +1705,7 @@ static inline void page_kasan_tag_set(struct page *page, u8 tag)
>> if (!kasan_enabled())
>> return;
>>
>> - tag ^= 0xff;
>> + tag ^= KASAN_TAG_KERNEL;
>> old_flags = READ_ONCE(page->flags);
>> do {
>> flags = old_flags;
>> @@ -1724,7 +1724,7 @@ static inline void page_kasan_tag_reset(struct page *page)
>>
>> static inline u8 page_kasan_tag(const struct page *page)
>> {
>> - return 0xff;
>> + return KASAN_TAG_KERNEL;
>> }
>>
>> static inline void page_kasan_tag_set(struct page *page, u8 tag) { }
>> diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
>> index 0c5da9141983..c139fb3d862d 100644
>> --- a/include/linux/mmzone.h
>> +++ b/include/linux/mmzone.h
>> @@ -1166,7 +1166,6 @@ static inline bool zone_is_empty(struct zone *zone)
>> #define NODES_MASK ((1UL << NODES_WIDTH) - 1)
>> #define SECTIONS_MASK ((1UL << SECTIONS_WIDTH) - 1)
>> #define LAST_CPUPID_MASK ((1UL << LAST_CPUPID_SHIFT) - 1)
>> -#define KASAN_TAG_MASK ((1UL << KASAN_TAG_WIDTH) - 1)
>
>So we cannot define this here because of include dependencies? Having
>this value defined here would look cleaner.
>
>Otherwise, let's add a comment here with a reference to where this
>value is defined.
I'll retest with a couple of configs but I removed this change and everything
compile fine. Thanks for noticing that
>
>> #define ZONEID_MASK ((1UL << ZONEID_SHIFT) - 1)
>>
>> static inline enum zone_type page_zonenum(const struct page *page)
>> diff --git a/include/linux/page-flags-layout.h b/include/linux/page-flags-layout.h
>> index 760006b1c480..b2cc4cb870e0 100644
>> --- a/include/linux/page-flags-layout.h
>> +++ b/include/linux/page-flags-layout.h
>> @@ -3,6 +3,7 @@
>> #define PAGE_FLAGS_LAYOUT_H
>>
>> #include <linux/numa.h>
>> +#include <linux/kasan-tags.h>
>> #include <generated/bounds.h>
>>
>> /*
>> @@ -72,14 +73,6 @@
>> #define NODE_NOT_IN_PAGE_FLAGS 1
>> #endif
>>
>> -#if defined(CONFIG_KASAN_SW_TAGS)
>> -#define KASAN_TAG_WIDTH 8
>> -#elif defined(CONFIG_KASAN_HW_TAGS)
>> -#define KASAN_TAG_WIDTH 4
>
>This case is removed here but not added to arch/arm64/include/asm/kasan-tags.h.
Right, I'll correct that.
>
>
>> -#else
>> -#define KASAN_TAG_WIDTH 0
>> -#endif
>> -
>> #ifdef CONFIG_NUMA_BALANCING
>> #define LAST__PID_SHIFT 8
>> #define LAST__PID_MASK ((1 << LAST__PID_SHIFT)-1)
>> --
>> 2.50.1
>>
--
Kind regards
Maciej Wieczór-Retman
next prev parent reply other threads:[~2025-09-08 10:13 UTC|newest]
Thread overview: 68+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-25 20:24 [PATCH v5 00/19] kasan: x86: arm64: KASAN tag-based mode for x86 Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 01/19] kasan: sw_tags: Use arithmetic shift for shadow computation Maciej Wieczor-Retman
2025-08-26 19:35 ` Catalin Marinas
2025-08-27 6:26 ` Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 02/19] kasan: sw_tags: Support tag widths less than 8 bits Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 03/19] kasan: Fix inline mode for x86 tag-based mode Maciej Wieczor-Retman
2025-09-06 17:17 ` Andrey Konovalov
2025-08-25 20:24 ` [PATCH v5 04/19] x86: Add arch specific kasan functions Maciej Wieczor-Retman
2025-09-06 17:17 ` Andrey Konovalov
2025-09-08 9:06 ` Maciej Wieczor-Retman
2025-09-18 15:52 ` Andrey Ryabinin
2025-09-19 11:05 ` Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 05/19] kasan: arm64: x86: Make special tags arch specific Maciej Wieczor-Retman
2025-09-06 17:18 ` Andrey Konovalov
2025-09-08 10:12 ` Maciej Wieczor-Retman [this message]
2025-08-25 20:24 ` [PATCH v5 06/19] x86: Reset tag for virtual to physical address conversions Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 07/19] mm: x86: Untag addresses in EXECMEM_ROX related pointer arithmetic Maciej Wieczor-Retman
2025-08-28 9:50 ` Mike Rapoport
2025-08-28 16:22 ` Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 08/19] x86: Physical address comparisons in fill_p*d/pte Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 09/19] x86: KASAN raw shadow memory PTE init Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 10/19] x86: LAM compatible non-canonical definition Maciej Wieczor-Retman
2025-08-25 20:59 ` Samuel Holland
2025-08-27 6:32 ` Maciej Wieczor-Retman
2025-08-25 21:36 ` Dave Hansen
2025-08-26 8:08 ` Maciej Wieczor-Retman
2025-08-27 0:46 ` Samuel Holland
2025-08-27 6:08 ` Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 11/19] x86: LAM initialization Maciej Wieczor-Retman
2025-09-06 22:24 ` Borislav Petkov
2025-09-08 8:30 ` Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 12/19] x86: Minimal SLAB alignment Maciej Wieczor-Retman
2025-09-06 17:18 ` Andrey Konovalov
2025-08-25 20:24 ` [PATCH v5 13/19] kasan: x86: Handle int3 for inline KASAN reports Maciej Wieczor-Retman
2025-09-06 17:19 ` Andrey Konovalov
2025-09-08 10:38 ` Maciej Wieczor-Retman
2025-09-08 12:54 ` Maciej Wieczor-Retman
2025-09-08 13:08 ` Maciej Wieczor-Retman
2025-09-08 20:19 ` Andrey Konovalov
2025-09-09 8:24 ` Maciej Wieczor-Retman
2025-09-09 8:34 ` Peter Zijlstra
2025-09-09 8:40 ` Peter Zijlstra
2025-09-09 8:49 ` Maciej Wieczor-Retman
2025-09-09 9:03 ` Peter Zijlstra
2025-09-10 8:23 ` Maciej Wieczor-Retman
2025-09-09 8:53 ` Maciej Wieczor-Retman
2025-09-09 14:46 ` Andrey Konovalov
2025-08-25 20:24 ` [PATCH v5 14/19] arm64: Unify software tag-based KASAN inline recovery path Maciej Wieczor-Retman
2025-08-26 19:35 ` Catalin Marinas
2025-08-25 20:24 ` [PATCH v5 15/19] kasan: x86: Apply multishot to the inline report handler Maciej Wieczor-Retman
2025-09-06 17:19 ` Andrey Konovalov
2025-09-08 13:02 ` Maciej Wieczor-Retman
2025-09-08 20:19 ` Andrey Konovalov
2025-09-09 8:42 ` Maciej Wieczor-Retman
2025-09-09 14:45 ` Andrey Konovalov
2025-09-09 14:46 ` Andrey Konovalov
2025-08-25 20:24 ` [PATCH v5 16/19] kasan: x86: Logical bit shift for kasan_mem_to_shadow Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 17/19] mm: Unpoison pcpu chunks with base address tag Maciej Wieczor-Retman
2025-09-13 8:29 ` Baoquan He
2025-09-15 6:29 ` Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 18/19] mm: Unpoison vms[area] addresses with a common tag Maciej Wieczor-Retman
2025-09-06 17:19 ` Andrey Konovalov
2025-09-08 13:11 ` Maciej Wieczor-Retman
2025-09-08 20:19 ` Andrey Konovalov
2025-09-09 8:26 ` Maciej Wieczor-Retman
2025-08-25 20:24 ` [PATCH v5 19/19] x86: Make software tag-based kasan available Maciej Wieczor-Retman
2025-09-06 17:19 ` Andrey Konovalov
2025-09-08 14:11 ` Maciej Wieczor-Retman
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=mjuxddfbpdvjpjetctqbs5kg4iz4ngsnwl5ovvv63k2gc3f2ir@n67fqqlnyuz6 \
--to=maciej.wieczor-retman@intel.com \
--cc=Liam.Howlett@oracle.com \
--cc=ada.coupriediaz@arm.com \
--cc=akpm@linux-foundation.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=alexandre.chartre@oracle.com \
--cc=andreyknvl@gmail.com \
--cc=ardb@kernel.org \
--cc=axelrasmussen@google.com \
--cc=baohua@kernel.org \
--cc=bigeasy@linutronix.de \
--cc=bp@alien8.de \
--cc=brgerst@gmail.com \
--cc=broonie@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=corbet@lwn.net \
--cc=dave.hansen@linux.intel.com \
--cc=david@redhat.com \
--cc=dvyukov@google.com \
--cc=glider@google.com \
--cc=graf@amazon.com \
--cc=guoweikang.kernel@gmail.com \
--cc=hpa@zytor.com \
--cc=jan.kiszka@siemens.com \
--cc=jason.andryuk@amd.com \
--cc=jbohac@suse.cz \
--cc=jgross@suse.com \
--cc=jhubbard@nvidia.com \
--cc=joel.granados@kernel.org \
--cc=joey.gouly@arm.com \
--cc=jpoimboe@kernel.org \
--cc=justinstitt@google.com \
--cc=kaleshsingh@google.com \
--cc=kas@kernel.org \
--cc=kasan-dev@googlegroups.com \
--cc=kbingham@kernel.org \
--cc=kees@kernel.org \
--cc=kristina.martsenko@arm.com \
--cc=kuan-ying.lee@canonical.com \
--cc=leitao@debian.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kbuild@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=llvm@lists.linux.dev \
--cc=lorenzo.stoakes@oracle.com \
--cc=luto@kernel.org \
--cc=mark.rutland@arm.com \
--cc=mhocko@suse.com \
--cc=mingo@redhat.com \
--cc=morbo@google.com \
--cc=nathan@kernel.org \
--cc=nick.desaulniers+lkml@gmail.com \
--cc=nicolas.schier@linux.dev \
--cc=pasha.tatashin@soleen.com \
--cc=pcc@google.com \
--cc=peterz@infradead.org \
--cc=rppt@kernel.org \
--cc=ryabinin.a.a@gmail.com \
--cc=samitolvanen@google.com \
--cc=samuel.holland@sifive.com \
--cc=scott@os.amperecomputing.com \
--cc=smostafa@google.com \
--cc=sohil.mehta@intel.com \
--cc=surenb@google.com \
--cc=tglx@linutronix.de \
--cc=thiago.bauermann@linaro.org \
--cc=thuth@redhat.com \
--cc=trintaeoitogc@gmail.com \
--cc=ubizjak@gmail.com \
--cc=urezki@gmail.com \
--cc=vbabka@suse.cz \
--cc=vincenzo.frascino@arm.com \
--cc=wangkefeng.wang@huawei.com \
--cc=weixugc@google.com \
--cc=will@kernel.org \
--cc=x86@kernel.org \
--cc=xin@zytor.com \
--cc=yuanchu@google.com \
--cc=ziy@nvidia.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