public inbox for linuxppc-dev@ozlabs.org 
 help / color / mirror / Atom feed
From: Baoquan He <bhe@redhat•com>
To: Ignat Korchagin <ignat@cloudflare•com>
Cc: chenhuacai@kernel•org, linux-ia64@vger•kernel.org,
	linux-sh@vger•kernel.org, Peter Zijlstra <peterz@infradead•org>,
	catalin.marinas@arm•com, linus.walleij@linaro•org,
	dave.hansen@linux•intel.com, linux-mips@vger•kernel.org,
	James Bottomley <James.Bottomley@hansenpartnership•com>,
	dalias@libc•org, eric_devolder@yahoo•com,
	linux-riscv@lists•infradead.org, will@kernel•org,
	kernel@xen0n•name, tsi@tuyoix•net, linux-s390@vger•kernel.org,
	agordeev@linux•ibm.com, rmk+kernel@armlinux•org.uk,
	hpa@zytor•com, paulmck@kernel•org, ysato@users•sourceforge.jp,
	kernel-team <kernel-team@cloudflare•com>,
	deller@gmx•de, x86@kernel•org, linux@armlinux•org.uk,
	paul.walmsley@sifive•com, Ingo Molnar <mingo@redhat•com>,
	geert@linux-m68k•org, hbathini@linux•ibm.com,
	samitolvanen@google•com, ojeda@kernel•org,
	juerg.haefliger@canonical•com, borntraeger@linux•ibm.com,
	frederic@kernel•org, arnd@arndb•de, mhiramat@kernel•org,
	Ard Biesheuvel <ardb@kernel•org>,
	thunder.leizhen@huawei•com, aou@eecs•berkeley.edu,
	 keescook@chromium•org, gor@linux•ibm.com,
	anshuman.khandual@arm•com, hca@linux•ibm.com, xin3.li@intel•com,
	npiggin@gmail•com, konrad.wilk@oracle•com,
	linux-m68k@lists•linux-m68k.org, Borislav Petkov <bp@alien8•de>,
	loongarch@lists•linux.dev, glaubitz@physik•fu-berlin.de,
	Thomas Gleixner <tglx@linutronix•de>,
	ziy@nvidia•com, linux-arm-kernel@lists•infradead.org,
	boris.ostrovsky@oracle•com, tsbogend@alpha•franken.de,
	sebastian.reichel@collabora•com, linux-parisc@vger•kernel.org,
	Greg KH <gregkh@linuxfoundation•org>,
	kirill.shutemov@linux•intel.com, ndesaulniers@google•com,
	linux-kernel <linux-kernel@vger•kernel.org>,
	sourabhjain@linux•ibm.com, palmer@dabbelt•com,
	svens@linux•ibm.com, tj@kernel•org,
	Andrew Morton <akpm@linux-foundation•org>,
	linuxppc-dev@lists•ozlabs.org, masahiroy@kernel•org,
	rppt@kernel•org
Subject: Re: Potential config regression after 89cde455 ("kexec: consolidate kexec and crash options into kernel/Kconfig.kexec")
Date: Wed, 22 Nov 2023 17:34:33 +0800	[thread overview]
Message-ID: <ZV3LKVOokpx2WvKp@MiWiFi-R3L-srv> (raw)
In-Reply-To: <CALrw=nH-vcROja2W23rUKEEZMZhxsQiNB4P_ZZQ-XhPHAJGxrg@mail.gmail.com>

On 11/21/23 at 09:43am, Ignat Korchagin wrote:
> On Tue, Nov 21, 2023 at 7:53 AM Ignat Korchagin <ignat@cloudflare•com> wrote:
> >
> > On Tue, Nov 21, 2023 at 1:50 AM Baoquan He <bhe@redhat•com> wrote:
> > >
> > > Eric DeVolder's Oracle mail address is not available anymore, add his
> > > current mail address he told me.
> >
> > Thank you!
> >
> > > On 11/20/23 at 10:52pm, Ignat Korchagin wrote:
> > > > Good day!
> > > >
> > > > We have recently started to evaluate Linux 6.6 and noticed that we
> > > > cannot disable CONFIG_KEXEC anymore, but keep CONFIG_CRASH_DUMP
> > > > enabled. It seems to be related to commit 89cde455 ("kexec:
> > > > consolidate kexec and crash options into kernel/Kconfig.kexec"), where
> > > > a CONFIG_KEXEC dependency was added to CONFIG_CRASH_DUMP.
> > > >
> > > > In our current kernel (Linux 6.1) we only enable CONFIG_KEXEC_FILE
> > > > with enforced signature check to support the kernel crash dumping
> > > > functionality and would like to keep CONFIG_KEXEC disabled for
> > > > security reasons [1].
> > > >
> > > > I was reading the long commit message, but the reason for adding
> > > > CONFIG_KEXEC as a dependency for CONFIG_CRASH_DUMP evaded me. And I
> > > > believe from the implementation perspective CONFIG_KEXEC_FILE should
> > > > suffice here (as we successfully used it for crashdumps on Linux 6.1).
> > > >
> > > > Is there a reason for adding this dependency or is it just an
> > > > oversight? Would some solution of requiring either CONFIG_KEXEC or
> > > > CONFIG_KEXEC_FILE work here?
> > >
> > > I searched the patch history, found Eric didn't add the dependency on
> > > CONFIG_KEXEC at the beginning. Later a linux-next building failure with
> > > randconfig was reported, in there CONFIG_CRASH_DUMP enabled, while
> > > CONFIG_KEXEC is disabled. Finally Eric added the KEXEC dependency for
> > > CRASH_DUMP. Please see below link for more details:
> > >
> > > https://lore.kernel.org/all/3e8eecd1-a277-2cfb-690e-5de2eb7b988e@oracle.com/T/#u
> >
> > Thank you for digging this up. However I'm still confused, because
> > this is exactly how we configure Linux 6.1 (although we do have
> > CONFIG_KEXEC_FILE enabled) and we don't have any problems. I believe
> > we did not investigate this issue properly.
> 
> I did some preliminary investigation for this. If I patch out the
> dependency on CONFIG_KEXEC the kernel builds just fine for x86
> (without CONFIG_CRASH_HOTPLUG - which is probably another issue) - so
> this was the previous behaviour. I can see that the reported error is
> for arm architecture and was able to reproduce it with a simple cross
> compiler in Debian. However, I think it is still somehow related to
> this patchset as the previous kernels (up to 6.5) build fine with just
> CONFIG_CRASH_DUMP and without CONFIG_KEXEC for arm as well. So even
> for arm it was introduced in 6.6.

Thanks for the information.

I haven't run the reproducer of issue reported on Eric's old patchset,
while checkout to kernel 6.1, only s390 selected KEXEC for CRASH_DUMP
already. And with the ARM building breakage, the simplest idea is 
to select KEXEC only for ARM or S390 CRASH_DUMP. I plan to try the
reproducer later. If you have any idea or draft patch, please feel free
to post.

diff --git a/kernel/Kconfig.kexec b/kernel/Kconfig.kexec
index 7aff28ded2f4..382dcd8d7a9d 100644
--- a/kernel/Kconfig.kexec
+++ b/kernel/Kconfig.kexec
@@ -97,7 +97,7 @@ config CRASH_DUMP
        depends on ARCH_SUPPORTS_KEXEC
        select CRASH_CORE
        select KEXEC_CORE
-       select KEXEC
+       select KEXEC if (ARM || S390)


arch/s390/Kconfig in kernel 6.1:
config CRASH_DUMP
        bool "kernel crash dumps"
        select KEXEC
        help
          Generate crash dump after being started by kexec.
          Crash dump kernels are loaded in the main kernel with kexec-tools
          into a specially reserved region and then later executed after
          a crash by kdump/kexec.
          Refer to <file:Documentation/s390/zfcpdump.rst> for more details on this.
          This option also enables s390 zfcpdump.
          See also <file:Documentation/s390/zfcpdump.rst>

> 
> > > And besides, the newly added CONFIG_CRASH_HOTPLUG also needs
> > > CONFIG_KEXEC if the elfcorehdr is allowed to be manipulated when
> > > cpu/memory hotplug hapened.
> >
> > This still feels like a regression to me: any crash dump support
> > should be independent of KEXEC syscalls being present. While probably
> > the common case (including us) that the crashing kernel and recovery
> > kernel are the same, they don't have to be. We need kexec syscall in
> > the crashing kernel, but crashdump support in the recovery kernel (but
> > the recovery kernel not having the kexec syscalls should be totally
> > fine). If we do require some code definitions from kexec - at most we
> > should put them under CONFIG_KEXEC_CORE.
> >
> > > Thanks
> > > Baoquan
> > >
> 
> Ignat
> 


  reply	other threads:[~2023-11-22 16:47 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-20 22:52 Potential config regression after 89cde455 ("kexec: consolidate kexec and crash options into kernel/Kconfig.kexec") Ignat Korchagin
2023-11-21  1:05 ` Michael Ellerman
2023-11-21  1:50 ` Baoquan He
2023-11-21  7:53   ` Ignat Korchagin
2023-11-21  9:43     ` Ignat Korchagin
2023-11-22  9:34       ` Baoquan He [this message]
2023-11-22  9:47         ` Ignat Korchagin
2023-11-23  8:27           ` Baoquan He
2023-11-21  9:56     ` Baoquan He

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=ZV3LKVOokpx2WvKp@MiWiFi-R3L-srv \
    --to=bhe@redhat$(echo .)com \
    --cc=James.Bottomley@hansenpartnership$(echo .)com \
    --cc=agordeev@linux$(echo .)ibm.com \
    --cc=akpm@linux-foundation$(echo .)org \
    --cc=anshuman.khandual@arm$(echo .)com \
    --cc=aou@eecs$(echo .)berkeley.edu \
    --cc=ardb@kernel$(echo .)org \
    --cc=arnd@arndb$(echo .)de \
    --cc=boris.ostrovsky@oracle$(echo .)com \
    --cc=borntraeger@linux$(echo .)ibm.com \
    --cc=bp@alien8$(echo .)de \
    --cc=catalin.marinas@arm$(echo .)com \
    --cc=chenhuacai@kernel$(echo .)org \
    --cc=dalias@libc$(echo .)org \
    --cc=dave.hansen@linux$(echo .)intel.com \
    --cc=deller@gmx$(echo .)de \
    --cc=eric_devolder@yahoo$(echo .)com \
    --cc=frederic@kernel$(echo .)org \
    --cc=geert@linux-m68k$(echo .)org \
    --cc=glaubitz@physik$(echo .)fu-berlin.de \
    --cc=gor@linux$(echo .)ibm.com \
    --cc=gregkh@linuxfoundation$(echo .)org \
    --cc=hbathini@linux$(echo .)ibm.com \
    --cc=hca@linux$(echo .)ibm.com \
    --cc=hpa@zytor$(echo .)com \
    --cc=ignat@cloudflare$(echo .)com \
    --cc=juerg.haefliger@canonical$(echo .)com \
    --cc=keescook@chromium$(echo .)org \
    --cc=kernel-team@cloudflare$(echo .)com \
    --cc=kernel@xen0n$(echo .)name \
    --cc=kirill.shutemov@linux$(echo .)intel.com \
    --cc=konrad.wilk@oracle$(echo .)com \
    --cc=linus.walleij@linaro$(echo .)org \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    --cc=linux-ia64@vger$(echo .)kernel.org \
    --cc=linux-kernel@vger$(echo .)kernel.org \
    --cc=linux-m68k@lists$(echo .)linux-m68k.org \
    --cc=linux-mips@vger$(echo .)kernel.org \
    --cc=linux-parisc@vger$(echo .)kernel.org \
    --cc=linux-riscv@lists$(echo .)infradead.org \
    --cc=linux-s390@vger$(echo .)kernel.org \
    --cc=linux-sh@vger$(echo .)kernel.org \
    --cc=linux@armlinux$(echo .)org.uk \
    --cc=linuxppc-dev@lists$(echo .)ozlabs.org \
    --cc=loongarch@lists$(echo .)linux.dev \
    --cc=masahiroy@kernel$(echo .)org \
    --cc=mhiramat@kernel$(echo .)org \
    --cc=mingo@redhat$(echo .)com \
    --cc=ndesaulniers@google$(echo .)com \
    --cc=npiggin@gmail$(echo .)com \
    --cc=ojeda@kernel$(echo .)org \
    --cc=palmer@dabbelt$(echo .)com \
    --cc=paul.walmsley@sifive$(echo .)com \
    --cc=paulmck@kernel$(echo .)org \
    --cc=peterz@infradead$(echo .)org \
    --cc=rmk+kernel@armlinux$(echo .)org.uk \
    --cc=rppt@kernel$(echo .)org \
    --cc=samitolvanen@google$(echo .)com \
    --cc=sebastian.reichel@collabora$(echo .)com \
    --cc=sourabhjain@linux$(echo .)ibm.com \
    --cc=svens@linux$(echo .)ibm.com \
    --cc=tglx@linutronix$(echo .)de \
    --cc=thunder.leizhen@huawei$(echo .)com \
    --cc=tj@kernel$(echo .)org \
    --cc=tsbogend@alpha$(echo .)franken.de \
    --cc=tsi@tuyoix$(echo .)net \
    --cc=will@kernel$(echo .)org \
    --cc=x86@kernel$(echo .)org \
    --cc=xin3.li@intel$(echo .)com \
    --cc=ysato@users$(echo .)sourceforge.jp \
    --cc=ziy@nvidia$(echo .)com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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