Linux Modules
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: liuc63 <liuc63@xiaopeng.com>
Cc: linux-modules@vger.kernel.org
Subject: Re: [PATCH] module: validate sh_name for SHT_NULL sections
Date: Sat, 05 Sep 2026 11:19:20 +0000	[thread overview]
Message-ID: <20260905111921.319941F00A3E@smtp.kernel.org> (raw)
In-Reply-To: <20260905110813.150411-1-liuc63@xiaopeng.com>

Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:

New issues:
- [Medium] The patch strictly enforces sh_name boundaries on SHT_NULL sections, violating the ELF specification and risking module load failures for valid files.

Pre-existing issues:
- [Critical] The patch leaves unvalidated sh_offset and sh_size fields of SHT_NULL and SHT_NOBITS sections vulnerable, allowing out-of-bounds reads and memory corruption.
- [High] Consumers like find_any_sec, find_any_unique_sec, and module_enforce_rwx_sections still process SHT_NULL sections, which can cause false positives and crashes if undefined fields contain in-bounds garbage.
--

commit 15965760da3d985f09b447439735945868c9d133
Author: Liu Chao <liuc63@xiaopeng.com>
Subject: module: validate sh_name for SHT_NULL sections

This commit removes the bypass for SHT_NULL sections when checking
section name boundaries. It attempts to prevent out-of-bounds reads
during section name lookups by enforcing that all sections have valid
sh_name offsets.

Link: https://lore.kernel.org/linux-modules/20260708013301.C4D4A1F000E9@smtp.kernel.org/

> diff --git a/kernel/module/main.c b/kernel/module/main.c
> index d0e1e0bd2ad06..7d5943cd65432 100644
> --- a/kernel/module/main.c
> +++ b/kernel/module/main.c
> @@ -2060,9 +2060,6 @@ static int elf_validity_cache_secstrings(struct load_info *info)
>  
>  	for (i = 0; i < info->hdr->e_shnum; i++) {
>  		shdr = &info->sechdrs[i];
> -		/* SHT_NULL means sh_name has an undefined value */
> -		if (shdr->sh_type == SHT_NULL)
> -			continue;

[Severity: Medium]
Does enforcing this boundary on SHT_NULL sections violate the ELF
specification?

According to the ELF specification, members of SHT_NULL sections, other
than the sh_type field itself, have undefined values. By removing this
check, we now strictly enforce sh_name is less than strhdr->sh_size for all
sections.

Could this cause a valid ELF module to be incorrectly rejected with
ENOEXEC if it happens to have an undefined but non-zero sh_name left over
from a post-processing tool shrinking the string table?

[Severity: High]
This is a pre-existing issue, but does removing this bypass leave
other SHT_NULL regressions unpatched?

For example, consumers like find_any_sec() and find_any_unique_sec()
do not check if sh_type is SHT_NULL before doing string comparisons:

find_any_unique_sec()
    ...
    if (strcmp(info->secstrings + info->sechdrs[i].sh_name, name) == 0) {

If an attacker crafts an SHT_NULL section with an in-bounds sh_name
that matches a targeted section name like .modinfo, will the loader
erroneously use this empty section and its undefined sh_offset and
sh_size fields?

[Severity: Critical]
This is also a pre-existing issue, but there appears to be a separate path
where unvalidated fields in SHT_NULL sections can lead to memory
corruption.

In elf_validity_cache_sechdrs(), offset and size bounds checking is
explicitly bypassed for SHT_NULL sections:

elf_validity_cache_sechdrs()
    case SHT_NULL:
    case SHT_NOBITS:
        continue;

However, move_module() does not exclude SHT_NULL sections, it only
excludes SHT_NOBITS:

move_module()
    if (shdr->sh_type != SHT_NOBITS) {
        memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
    }

Can this sequence cause an out-of-bounds read from kernel memory if a
crafted module contains an SHT_NULL section with SHF_ALLOC set and an
arbitrary sh_offset?

Similarly, elf_validity_cache_index_mod() accepts SHT_NULL sections for
the .gnu.linkonce.this_module section.

Does this allow info->mod to point to an arbitrary kernel address when
initialized in elf_validity_cache_copy(), leading to out-of-bounds
writes during module initialization?

>  		if (shdr->sh_name >= strhdr->sh_size) {
>  			pr_err("Invalid ELF section name in module (section %u type %u)\n",
>  			       i, shdr->sh_type);

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260905110813.150411-1-liuc63@xiaopeng.com?part=1

      reply	other threads:[~2026-09-05 11:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-05 11:08 [PATCH] module: validate sh_name for SHT_NULL sections liuc63
2026-09-05 11:19 ` sashiko-bot [this message]

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=20260905111921.319941F00A3E@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=linux-modules@vger.kernel.org \
    --cc=liuc63@xiaopeng.com \
    --cc=sashiko-reviews@lists.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