From: Pingfan Liu <piliu@redhat.com>
To: Philipp Rudo <prudo@redhat.com>
Cc: kexec@lists.infradead.org, Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
John Fastabend <john.fastabend@gmail.com>,
Andrii Nakryiko <andrii@kernel.org>,
Martin KaFai Lau <martin.lau@linux.dev>,
Eduard Zingerman <eddyz87@gmail.com>, Song Liu <song@kernel.org>,
Yonghong Song <yonghong.song@linux.dev>,
Jeremy Linton <jeremy.linton@arm.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>, Ard Biesheuvel <ardb@kernel.org>,
Simon Horman <horms@kernel.org>,
Gerd Hoffmann <kraxel@redhat.com>,
Vitaly Kuznetsov <vkuznets@redhat.com>,
Viktor Malik <vmalik@redhat.com>,
Jan Hendrik Farr <kernel@jfarr.cc>, Baoquan He <bhe@redhat.com>,
Dave Young <dyoung@redhat.com>,
Andrew Morton <akpm@linux-foundation.org>,
bpf@vger.kernel.org, systemd-devel@lists.freedesktop.org
Subject: Re: [PATCHv5 08/12] kexec: Factor out routine to find a symbol in ELF
Date: Tue, 16 Sep 2025 09:27:59 +0800 [thread overview]
Message-ID: <aMi9H7Jeuiq8mbyE@fedora> (raw)
In-Reply-To: <20250901163107.5a0c17e6@rotkaeppchen>
On Mon, Sep 01, 2025 at 04:31:07PM +0200, Philipp Rudo wrote:
> On Tue, 19 Aug 2025 09:24:24 +0800
> Pingfan Liu <piliu@redhat.com> wrote:
>
> > The routine to search a symbol in ELF can be shared, so split it out.
> >
> > Signed-off-by: Pingfan Liu <piliu@redhat.com>
> > Cc: Baoquan He <bhe@redhat.com>
> > Cc: Dave Young <dyoung@redhat.com>
> > Cc: Andrew Morton <akpm@linux-foundation.org>
> > Cc: Philipp Rudo <prudo@redhat.com>
> > To: kexec@lists.infradead.org
> > ---
> > include/linux/kexec.h | 8 ++++
> > kernel/kexec_file.c | 86 +++++++++++++++++++++++--------------------
> > 2 files changed, 54 insertions(+), 40 deletions(-)
> >
> > diff --git a/include/linux/kexec.h b/include/linux/kexec.h
> > index 8f7322c932fb5..2998d8da09d86 100644
> > --- a/include/linux/kexec.h
> > +++ b/include/linux/kexec.h
> > @@ -23,6 +23,10 @@
> > #include <uapi/linux/kexec.h>
> > #include <linux/verification.h>
> >
> > +#if defined(CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY) || defined(CONFIG_KEXEC_PE_IMAGE)
> > +#include <linux/module.h>
> > +#endif
> > +
>
> What is linux/module.h used for? Plus module.h already gets included a
> little below, when CONFIG_KEXEC_CORE is set, which should always be the
> case for those two configs.
>
Yes, it should be dropped. Once I placed the declaration of
elf_find_symbol() here, and later moved it behind.
Thanks,
Pingfan
> Thanks
> Philipp
>
> > extern note_buf_t __percpu *crash_notes;
> >
> > #ifdef CONFIG_CRASH_DUMP
> > @@ -550,6 +554,10 @@ void set_kexec_sig_enforced(void);
> > static inline void set_kexec_sig_enforced(void) {}
> > #endif
> >
> > +#if defined(CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY) || defined(CONFIG_KEXEC_PE_IMAGE)
> > +const Elf_Sym *elf_find_symbol(const Elf_Ehdr *ehdr, const char *name);
> > +#endif
> > +
> > #endif /* !defined(__ASSEBMLY__) */
> >
> > #endif /* LINUX_KEXEC_H */
> > diff --git a/kernel/kexec_file.c b/kernel/kexec_file.c
> > index 4780d8aae24e7..137049e7e2410 100644
> > --- a/kernel/kexec_file.c
> > +++ b/kernel/kexec_file.c
> > @@ -880,6 +880,51 @@ static int kexec_calculate_store_digests(struct kimage *image)
> > return ret;
> > }
> >
> > +#if defined(CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY) || defined(CONFIG_KEXEC_PE_IMAGE)
> > +const Elf_Sym *elf_find_symbol(const Elf_Ehdr *ehdr, const char *name)
> > +{
> > + const Elf_Shdr *sechdrs;
> > + const Elf_Sym *syms;
> > + const char *strtab;
> > + int i, k;
> > +
> > + sechdrs = (void *)ehdr + ehdr->e_shoff;
> > +
> > + for (i = 0; i < ehdr->e_shnum; i++) {
> > + if (sechdrs[i].sh_type != SHT_SYMTAB)
> > + continue;
> > +
> > + if (sechdrs[i].sh_link >= ehdr->e_shnum)
> > + /* Invalid strtab section number */
> > + continue;
> > + strtab = (void *)ehdr + sechdrs[sechdrs[i].sh_link].sh_offset;
> > + syms = (void *)ehdr + sechdrs[i].sh_offset;
> > +
> > + /* Go through symbols for a match */
> > + for (k = 0; k < sechdrs[i].sh_size/sizeof(Elf_Sym); k++) {
> > + if (ELF_ST_BIND(syms[k].st_info) != STB_GLOBAL)
> > + continue;
> > +
> > + if (strcmp(strtab + syms[k].st_name, name) != 0)
> > + continue;
> > +
> > + if (syms[k].st_shndx == SHN_UNDEF ||
> > + syms[k].st_shndx >= ehdr->e_shnum) {
> > + pr_debug("Symbol: %s has bad section index %d.\n",
> > + name, syms[k].st_shndx);
> > + return NULL;
> > + }
> > +
> > + /* Found the symbol we are looking for */
> > + return &syms[k];
> > + }
> > + }
> > +
> > + return NULL;
> > +}
> > +
> > +#endif
> > +
> > #ifdef CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY
> > /*
> > * kexec_purgatory_setup_kbuf - prepare buffer to load purgatory.
> > @@ -1137,49 +1182,10 @@ int kexec_load_purgatory(struct kimage *image, struct kexec_buf *kbuf)
> > static const Elf_Sym *kexec_purgatory_find_symbol(struct purgatory_info *pi,
> > const char *name)
> > {
> > - const Elf_Shdr *sechdrs;
> > - const Elf_Ehdr *ehdr;
> > - const Elf_Sym *syms;
> > - const char *strtab;
> > - int i, k;
> > -
> > if (!pi->ehdr)
> > return NULL;
> >
> > - ehdr = pi->ehdr;
> > - sechdrs = (void *)ehdr + ehdr->e_shoff;
> > -
> > - for (i = 0; i < ehdr->e_shnum; i++) {
> > - if (sechdrs[i].sh_type != SHT_SYMTAB)
> > - continue;
> > -
> > - if (sechdrs[i].sh_link >= ehdr->e_shnum)
> > - /* Invalid strtab section number */
> > - continue;
> > - strtab = (void *)ehdr + sechdrs[sechdrs[i].sh_link].sh_offset;
> > - syms = (void *)ehdr + sechdrs[i].sh_offset;
> > -
> > - /* Go through symbols for a match */
> > - for (k = 0; k < sechdrs[i].sh_size/sizeof(Elf_Sym); k++) {
> > - if (ELF_ST_BIND(syms[k].st_info) != STB_GLOBAL)
> > - continue;
> > -
> > - if (strcmp(strtab + syms[k].st_name, name) != 0)
> > - continue;
> > -
> > - if (syms[k].st_shndx == SHN_UNDEF ||
> > - syms[k].st_shndx >= ehdr->e_shnum) {
> > - pr_debug("Symbol: %s has bad section index %d.\n",
> > - name, syms[k].st_shndx);
> > - return NULL;
> > - }
> > -
> > - /* Found the symbol we are looking for */
> > - return &syms[k];
> > - }
> > - }
> > -
> > - return NULL;
> > + return elf_find_symbol(pi->ehdr, name);
> > }
> >
> > void *kexec_purgatory_get_symbol_addr(struct kimage *image, const char *name)
>
next prev parent reply other threads:[~2025-09-16 1:28 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-19 1:24 [PATCHv5 00/12] kexec: Use BPF lskel to enable kexec to load PE format boot image Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 01/12] kexec_file: Make kexec_image_load_default global visible Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 02/12] lib/decompress: Keep decompressor when CONFIG_KEEP_COMPRESSOR Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 03/12] bpf: Introduce bpf_copy_to_kernel() to buffer the content from bpf-prog Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 04/12] bpf: Introduce decompressor kfunc Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 05/12] kexec: Introduce kexec_pe_image to parse and load PE file Pingfan Liu
2025-09-01 14:30 ` Philipp Rudo
2025-09-17 13:04 ` Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 06/12] kexec: Integrate with the introduced bpf kfuncs Pingfan Liu
2025-09-01 14:30 ` Philipp Rudo
2025-09-16 6:52 ` Pingfan Liu
2025-09-18 13:43 ` Philipp Rudo
2025-09-19 1:26 ` Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 07/12] kexec: Introduce a bpf-prog lskel to parse PE file Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 08/12] kexec: Factor out routine to find a symbol in ELF Pingfan Liu
2025-09-01 14:31 ` Philipp Rudo
2025-09-16 1:27 ` Pingfan Liu [this message]
2025-08-19 1:24 ` [PATCHv5 09/12] kexec: Integrate bpf light skeleton to load zboot image Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 10/12] arm64/kexec: Add PE image format support Pingfan Liu
2025-08-19 18:23 ` kernel test robot
2025-08-19 18:54 ` kernel test robot
2025-08-20 3:09 ` Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 11/12] tools/kexec: Introduce a bpf-prog to parse zboot image format Pingfan Liu
2025-08-19 1:24 ` [PATCHv5 12/12] tools/kexec: Add a zboot image building tool Pingfan Liu
2025-09-01 14:29 ` [PATCHv5 00/12] kexec: Use BPF lskel to enable kexec to load PE format boot image Philipp Rudo
2025-09-16 2:00 ` Pingfan Liu
2025-09-18 13:43 ` Philipp Rudo
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=aMi9H7Jeuiq8mbyE@fedora \
--to=piliu@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=andrii@kernel.org \
--cc=ardb@kernel.org \
--cc=ast@kernel.org \
--cc=bhe@redhat.com \
--cc=bpf@vger.kernel.org \
--cc=catalin.marinas@arm.com \
--cc=daniel@iogearbox.net \
--cc=dyoung@redhat.com \
--cc=eddyz87@gmail.com \
--cc=horms@kernel.org \
--cc=jeremy.linton@arm.com \
--cc=john.fastabend@gmail.com \
--cc=kernel@jfarr.cc \
--cc=kexec@lists.infradead.org \
--cc=kraxel@redhat.com \
--cc=martin.lau@linux.dev \
--cc=prudo@redhat.com \
--cc=song@kernel.org \
--cc=systemd-devel@lists.freedesktop.org \
--cc=vkuznets@redhat.com \
--cc=vmalik@redhat.com \
--cc=will@kernel.org \
--cc=yonghong.song@linux.dev \
/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