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 15/19] kasan: x86: Apply multishot to the inline report handler
Date: Mon, 8 Sep 2025 15:02:32 +0200 [thread overview]
Message-ID: <cfz7zprwfird7gf5fl36zdpmv3lmht2ibcfwkeulqocw3kokpl@u6snlpuqcc5k> (raw)
In-Reply-To: <CA+fCnZf1YeWzf38XjkXPjTH3dqSCeZ2_XaK0AGUeG05UuXPAbw@mail.gmail.com>
On 2025-09-06 at 19:19:06 +0200, Andrey Konovalov wrote:
>On Mon, Aug 25, 2025 at 10:30 PM Maciej Wieczor-Retman
><maciej.wieczor-retman@intel.com> wrote:
>>
>> KASAN by default reports only one tag mismatch and based on other
>> command line parameters either keeps going or panics. The multishot
>> mechanism - enabled either through a command line parameter or by inline
>> enable/disable function calls - lifts that restriction and allows an
>> infinite number of tag mismatch reports to be shown.
>>
>> Inline KASAN uses the INT3 instruction to pass metadata to the report
>> handling function. Currently the "recover" field in that metadata is
>> broken in the compiler layer and causes every inline tag mismatch to
>> panic the kernel.
>>
>> Check the multishot state in the KASAN hook called inside the INT3
>> handling function.
>>
>> Signed-off-by: Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>
>> ---
>> Changelog v4:
>> - Add this patch to the series.
>>
>> arch/x86/mm/kasan_inline.c | 3 +++
>> include/linux/kasan.h | 3 +++
>> mm/kasan/report.c | 8 +++++++-
>> 3 files changed, 13 insertions(+), 1 deletion(-)
>>
>> diff --git a/arch/x86/mm/kasan_inline.c b/arch/x86/mm/kasan_inline.c
>> index 9f85dfd1c38b..f837caf32e6c 100644
>> --- a/arch/x86/mm/kasan_inline.c
>> +++ b/arch/x86/mm/kasan_inline.c
>> @@ -17,6 +17,9 @@ bool kasan_inline_handler(struct pt_regs *regs)
>> if (!kasan_report((void *)addr, size, write, pc))
>> return false;
>>
>> + if (kasan_multi_shot_enabled())
>> + return true;
>
>It's odd this this is required on x86 but not on arm64, see my comment
>on the patch that adds kasan_inline_handler().
>
I think this is needed if we want to keep the kasan_inline_recover below.
Because without this patch, kasan_report() will report a mismatch, an then die()
will be called. So the multishot gets ignored.
I'll check what happens on arm64 when a mismatch happens with inline mode +
multishot.
>
>> +
>> kasan_inline_recover(recover, "Oops - KASAN", regs, metadata, die);
>>
>> return true;
>> diff --git a/include/linux/kasan.h b/include/linux/kasan.h
>> index 8691ad870f3b..7a2527794549 100644
>> --- a/include/linux/kasan.h
>> +++ b/include/linux/kasan.h
>> @@ -663,7 +663,10 @@ void kasan_non_canonical_hook(unsigned long addr);
>> static inline void kasan_non_canonical_hook(unsigned long addr) { }
>> #endif /* CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS */
>>
>> +bool kasan_multi_shot_enabled(void);
>> +
>> #ifdef CONFIG_KASAN_SW_TAGS
>> +
>> /*
>> * The instrumentation allows to control whether we can proceed after
>> * a crash was detected. This is done by passing the -recover flag to
>> diff --git a/mm/kasan/report.c b/mm/kasan/report.c
>> index 50d487a0687a..9e830639e1b2 100644
>> --- a/mm/kasan/report.c
>> +++ b/mm/kasan/report.c
>> @@ -121,6 +121,12 @@ static void report_suppress_stop(void)
>> #endif
>> }
>>
>> +bool kasan_multi_shot_enabled(void)
>> +{
>> + return test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
>> +}
>> +EXPORT_SYMBOL(kasan_multi_shot_enabled);
>> +
>> /*
>> * Used to avoid reporting more than one KASAN bug unless kasan_multi_shot
>> * is enabled. Note that KASAN tests effectively enable kasan_multi_shot
>> @@ -128,7 +134,7 @@ static void report_suppress_stop(void)
>> */
>> static bool report_enabled(void)
>> {
>> - if (test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags))
>> + if (kasan_multi_shot_enabled())
>> return true;
>> return !test_and_set_bit(KASAN_BIT_REPORTED, &kasan_flags);
>> }
>> --
>> 2.50.1
>>
--
Kind regards
Maciej Wieczór-Retman
next prev parent reply other threads:[~2025-09-08 13:04 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
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 [this message]
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=cfz7zprwfird7gf5fl36zdpmv3lmht2ibcfwkeulqocw3kokpl@u6snlpuqcc5k \
--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