* Re: [PATCH] x86/kexec: Disable KCOV instrumentation after load_segments() [not found] <20260216173716.2279847-1-nogikh@google.com> @ 2026-02-23 12:42 ` Aleksandr Nogikh [not found] ` <CACT4Y+b1UZpV_i68cSP3XOBsr9EfbX+SAbXRdL3btmAnSvmMBA@mail.gmail.com> 1 sibling, 0 replies; 2+ messages in thread From: Aleksandr Nogikh @ 2026-02-23 12:42 UTC (permalink / raw) To: tglx, mingo, bp Cc: x86, linux-kernel, dvyukov, kasan-dev, stable, syzkaller, linux-mm, Andrew Morton On Mon, Feb 16, 2026 at 6:37 PM Aleksandr Nogikh <nogikh@google.com> wrote: > > The load_segments() function changes segment registers, invalidating > GS base (which KCOV relies on for per-cpu data). When CONFIG_KCOV is > enabled, any subsequent instrumented C code call (e.g. > native_gdt_invalidate()) begins crashing the kernel in an > endless loop. > > To reproduce the problem, it's sufficient to do kexec on a > KCOV-instrumented kernel: > $ kexec -l /boot/otherKernel > $ kexec -e > > (additional problems arise when the kernel is booting into a crash > kernel) > > Disabling instrumentation for the individual functions would be too > fragile, so let's fix the bug by disabling KCOV instrumentation for > the whole machine_kexec_64.c and physaddr.c. > > The problem is not relevant for 32 bit kernels as CONFIG_KCOV is not > supported there. > > Signed-off-by: Aleksandr Nogikh <nogikh@google.com> > Cc: stable@vger.kernel.org > --- > arch/x86/kernel/Makefile | 4 ++++ > arch/x86/mm/Makefile | 4 ++++ > 2 files changed, 8 insertions(+) A gentle ping on this patch. Should it go through the x86 tree or the mm tree like other kcov patches? > > diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile > index e9aeeeafad173..5703fa6027866 100644 > --- a/arch/x86/kernel/Makefile > +++ b/arch/x86/kernel/Makefile > @@ -43,6 +43,10 @@ KCOV_INSTRUMENT_dumpstack_$(BITS).o := n > KCOV_INSTRUMENT_unwind_orc.o := n > KCOV_INSTRUMENT_unwind_frame.o := n > KCOV_INSTRUMENT_unwind_guess.o := n > +# When a kexec kernel is loaded, calling load_segments() breaks all > +# subsequent KCOV instrumentation until new kernel takes control. > +# Keep KCOV instrumentation disabled to prevent kernel crashes. > +KCOV_INSTRUMENT_machine_kexec_64.o := n > > CFLAGS_head32.o := -fno-stack-protector > CFLAGS_head64.o := -fno-stack-protector > diff --git a/arch/x86/mm/Makefile b/arch/x86/mm/Makefile > index 5b9908f13dcfd..a678a38a40266 100644 > --- a/arch/x86/mm/Makefile > +++ b/arch/x86/mm/Makefile > @@ -4,6 +4,10 @@ KCOV_INSTRUMENT_tlb.o := n > KCOV_INSTRUMENT_mem_encrypt.o := n > KCOV_INSTRUMENT_mem_encrypt_amd.o := n > KCOV_INSTRUMENT_pgprot.o := n > +# When a kexec kernel is loaded, calling load_segments() breaks all > +# subsequent KCOV instrumentation until new kernel takes control. > +# Keep KCOV instrumentation disabled to prevent kernel crashes. > +KCOV_INSTRUMENT_physaddr.o := n > > KASAN_SANITIZE_mem_encrypt.o := n > KASAN_SANITIZE_mem_encrypt_amd.o := n > -- > 2.53.0.273.g2a3d683680-goog > ^ permalink raw reply [flat|nested] 2+ messages in thread
[parent not found: <CACT4Y+b1UZpV_i68cSP3XOBsr9EfbX+SAbXRdL3btmAnSvmMBA@mail.gmail.com>]
* Re: [PATCH] x86/kexec: Disable KCOV instrumentation after load_segments() [not found] ` <CACT4Y+b1UZpV_i68cSP3XOBsr9EfbX+SAbXRdL3btmAnSvmMBA@mail.gmail.com> @ 2026-03-11 21:27 ` Aleksandr Nogikh 0 siblings, 0 replies; 2+ messages in thread From: Aleksandr Nogikh @ 2026-03-11 21:27 UTC (permalink / raw) To: Dmitry Vyukov Cc: tglx, mingo, bp, x86, linux-kernel, kasan-dev, stable, Andrew Morton, linux-mm +Cc linux-mm On Fri, Feb 27, 2026 at 2:26 PM Dmitry Vyukov <dvyukov@google.com> wrote: > > On Mon, 16 Feb 2026 at 18:37, Aleksandr Nogikh <nogikh@google.com> wrote: > > > > The load_segments() function changes segment registers, invalidating > > GS base (which KCOV relies on for per-cpu data). When CONFIG_KCOV is > > enabled, any subsequent instrumented C code call (e.g. > > native_gdt_invalidate()) begins crashing the kernel in an > > endless loop. > > > > To reproduce the problem, it's sufficient to do kexec on a > > KCOV-instrumented kernel: > > $ kexec -l /boot/otherKernel > > $ kexec -e > > > > (additional problems arise when the kernel is booting into a crash > > kernel) > > > > Disabling instrumentation for the individual functions would be too > > fragile, so let's fix the bug by disabling KCOV instrumentation for > > the whole machine_kexec_64.c and physaddr.c. > > > > The problem is not relevant for 32 bit kernels as CONFIG_KCOV is not > > supported there. > > > > Signed-off-by: Aleksandr Nogikh <nogikh@google.com> > > Cc: stable@vger.kernel.org > > Reviewed-by: Dmitry Vyukov <dvyukov@google.com> > > > --- > > arch/x86/kernel/Makefile | 4 ++++ > > arch/x86/mm/Makefile | 4 ++++ > > 2 files changed, 8 insertions(+) > > > > diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile > > index e9aeeeafad173..5703fa6027866 100644 > > --- a/arch/x86/kernel/Makefile > > +++ b/arch/x86/kernel/Makefile > > @@ -43,6 +43,10 @@ KCOV_INSTRUMENT_dumpstack_$(BITS).o := n > > KCOV_INSTRUMENT_unwind_orc.o := n > > KCOV_INSTRUMENT_unwind_frame.o := n > > KCOV_INSTRUMENT_unwind_guess.o := n > > +# When a kexec kernel is loaded, calling load_segments() breaks all > > +# subsequent KCOV instrumentation until new kernel takes control. > > +# Keep KCOV instrumentation disabled to prevent kernel crashes. > > +KCOV_INSTRUMENT_machine_kexec_64.o := n > > > > CFLAGS_head32.o := -fno-stack-protector > > CFLAGS_head64.o := -fno-stack-protector > > diff --git a/arch/x86/mm/Makefile b/arch/x86/mm/Makefile > > index 5b9908f13dcfd..a678a38a40266 100644 > > --- a/arch/x86/mm/Makefile > > +++ b/arch/x86/mm/Makefile > > @@ -4,6 +4,10 @@ KCOV_INSTRUMENT_tlb.o := n > > KCOV_INSTRUMENT_mem_encrypt.o := n > > KCOV_INSTRUMENT_mem_encrypt_amd.o := n > > KCOV_INSTRUMENT_pgprot.o := n > > +# When a kexec kernel is loaded, calling load_segments() breaks all > > +# subsequent KCOV instrumentation until new kernel takes control. > > +# Keep KCOV instrumentation disabled to prevent kernel crashes. > > +KCOV_INSTRUMENT_physaddr.o := n > > > > KASAN_SANITIZE_mem_encrypt.o := n > > KASAN_SANITIZE_mem_encrypt_amd.o := n > > -- > > 2.53.0.273.g2a3d683680-goog > > ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-11 21:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20260216173716.2279847-1-nogikh@google.com>
2026-02-23 12:42 ` [PATCH] x86/kexec: Disable KCOV instrumentation after load_segments() Aleksandr Nogikh
[not found] ` <CACT4Y+b1UZpV_i68cSP3XOBsr9EfbX+SAbXRdL3btmAnSvmMBA@mail.gmail.com>
2026-03-11 21:27 ` Aleksandr Nogikh
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox