* [PATCH] binfmt_elf: use check_mul_overflow() for size calc
@ 2025-06-07 8:28 Pranav Tyagi
2025-06-09 11:25 ` Jan Kara
2025-06-10 4:04 ` Kees Cook
0 siblings, 2 replies; 5+ messages in thread
From: Pranav Tyagi @ 2025-06-07 8:28 UTC (permalink / raw)
To: viro, brauner, jack, kees
Cc: linux-fsdevel, linux-mm, linux-kernel, skhan,
linux-kernel-mentees, Pranav Tyagi
Use check_mul_overflow() to safely compute the total size of ELF program
headers instead of relying on direct multiplication.
Directly multiplying sizeof(struct elf_phdr) with e_phnum risks integer
overflow, especially on 32-bit systems or with malformed ELF binaries
crafted to trigger wrap-around. If an overflow occurs, kmalloc() could
allocate insufficient memory, potentially leading to out-of-bound
accesses, memory corruption or security vulnerabilities.
Using check_mul_overflow() ensures the multiplication is performed
safely and detects overflows before memory allocation. This change makes
the function more robust when handling untrusted or corrupted binaries.
Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
Link: https://github.com/KSPP/linux/issues/92
---
fs/binfmt_elf.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
index a43363d593e5..774e705798b8 100644
--- a/fs/binfmt_elf.c
+++ b/fs/binfmt_elf.c
@@ -518,7 +518,10 @@ static struct elf_phdr *load_elf_phdrs(const struct elfhdr *elf_ex,
/* Sanity check the number of program headers... */
/* ...and their total size. */
- size = sizeof(struct elf_phdr) * elf_ex->e_phnum;
+
+ if (check_mul_overflow(sizeof(struct elf_phdr), elf_ex->e_phnum, &size))
+ goto out;
+
if (size == 0 || size > 65536 || size > ELF_MIN_ALIGN)
goto out;
--
2.49.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] binfmt_elf: use check_mul_overflow() for size calc
2025-06-07 8:28 [PATCH] binfmt_elf: use check_mul_overflow() for size calc Pranav Tyagi
@ 2025-06-09 11:25 ` Jan Kara
2025-06-10 4:04 ` Kees Cook
1 sibling, 0 replies; 5+ messages in thread
From: Jan Kara @ 2025-06-09 11:25 UTC (permalink / raw)
To: Pranav Tyagi
Cc: viro, brauner, jack, kees, linux-fsdevel, linux-mm, linux-kernel,
skhan, linux-kernel-mentees
On Sat 07-06-25 13:58:44, Pranav Tyagi wrote:
> Use check_mul_overflow() to safely compute the total size of ELF program
> headers instead of relying on direct multiplication.
>
> Directly multiplying sizeof(struct elf_phdr) with e_phnum risks integer
> overflow, especially on 32-bit systems or with malformed ELF binaries
> crafted to trigger wrap-around. If an overflow occurs, kmalloc() could
> allocate insufficient memory, potentially leading to out-of-bound
> accesses, memory corruption or security vulnerabilities.
>
> Using check_mul_overflow() ensures the multiplication is performed
> safely and detects overflows before memory allocation. This change makes
> the function more robust when handling untrusted or corrupted binaries.
>
> Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
> Link: https://github.com/KSPP/linux/issues/92
Looks good. Feel free to add:
Reviewed-by: Jan Kara <jack@suse.cz>
Honza
> ---
> fs/binfmt_elf.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
> index a43363d593e5..774e705798b8 100644
> --- a/fs/binfmt_elf.c
> +++ b/fs/binfmt_elf.c
> @@ -518,7 +518,10 @@ static struct elf_phdr *load_elf_phdrs(const struct elfhdr *elf_ex,
>
> /* Sanity check the number of program headers... */
> /* ...and their total size. */
> - size = sizeof(struct elf_phdr) * elf_ex->e_phnum;
> +
> + if (check_mul_overflow(sizeof(struct elf_phdr), elf_ex->e_phnum, &size))
> + goto out;
> +
> if (size == 0 || size > 65536 || size > ELF_MIN_ALIGN)
> goto out;
>
> --
> 2.49.0
>
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] binfmt_elf: use check_mul_overflow() for size calc
2025-06-07 8:28 [PATCH] binfmt_elf: use check_mul_overflow() for size calc Pranav Tyagi
2025-06-09 11:25 ` Jan Kara
@ 2025-06-10 4:04 ` Kees Cook
2025-06-10 7:59 ` Jan Kara
1 sibling, 1 reply; 5+ messages in thread
From: Kees Cook @ 2025-06-10 4:04 UTC (permalink / raw)
To: Pranav Tyagi
Cc: viro, brauner, jack, linux-fsdevel, linux-mm, linux-kernel, skhan,
linux-kernel-mentees
On Sat, Jun 07, 2025 at 01:58:44PM +0530, Pranav Tyagi wrote:
> Use check_mul_overflow() to safely compute the total size of ELF program
> headers instead of relying on direct multiplication.
>
> Directly multiplying sizeof(struct elf_phdr) with e_phnum risks integer
> overflow, especially on 32-bit systems or with malformed ELF binaries
> crafted to trigger wrap-around. If an overflow occurs, kmalloc() could
> allocate insufficient memory, potentially leading to out-of-bound
> accesses, memory corruption or security vulnerabilities.
>
> Using check_mul_overflow() ensures the multiplication is performed
> safely and detects overflows before memory allocation. This change makes
> the function more robust when handling untrusted or corrupted binaries.
>
> Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
> Link: https://github.com/KSPP/linux/issues/92
> ---
> fs/binfmt_elf.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
> index a43363d593e5..774e705798b8 100644
> --- a/fs/binfmt_elf.c
> +++ b/fs/binfmt_elf.c
> @@ -518,7 +518,10 @@ static struct elf_phdr *load_elf_phdrs(const struct elfhdr *elf_ex,
>
> /* Sanity check the number of program headers... */
> /* ...and their total size. */
> - size = sizeof(struct elf_phdr) * elf_ex->e_phnum;
size is unsigned int, which has a maximum value of 4,294,967,295.
elf_ex->e_phnum is a u16 (2 bytes) and will not be changing:
$ pahole -C elf64_hdr */fs/binfmt_elf.o
struct elf64_hdr {
...
Elf64_Half e_phnum; /* 56 2 */
...
$ pahole -C Elf64_Half */fs/binfmt_elf.o
typedef __u16 Elf64_Half;
So it has a maximum value of 65,535.
sizeof(struct elf_phdr) is a fixed value, 56:
$ pahole -C elf64_phdr */fs/binfmt_elf.o
struct elf64_phdr {
...
/* size: 56, cachelines: 1, members: 8 */
/* last cacheline: 56 bytes */
};
So the maximum product of the two is 3,669,960.
It is not possible for this calculation to overflow.
> +
> + if (check_mul_overflow(sizeof(struct elf_phdr), elf_ex->e_phnum, &size))
> + goto out;
> +
You can even see that the entire check would be elided by the compiler:
#include <elf.h>
unsigned int unchecked(Elf64_Ehdr *elf_ex)
{
unsigned int size;
size = sizeof(Elf64_Phdr) * elf_ex->e_phnum;
return size;
}
unsigned int checked(Elf64_Ehdr *elf_ex)
{
unsigned int size;
if (__builtin_mul_overflow(sizeof(Elf64_Phdr), elf_ex->e_phnum, &size))
return 0;
return size;
}
...produces this assembler, identical for both functions:
unchecked:
movzx eax, WORD PTR [rdi+56]
imul eax, eax, 56
ret
checked:
movzx eax, WORD PTR [rdi+56]
imul eax, eax, 56
ret
https://godbolt.org/z/hTEef8cT9
-Kees
--
Kees Cook
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] binfmt_elf: use check_mul_overflow() for size calc
2025-06-10 4:04 ` Kees Cook
@ 2025-06-10 7:59 ` Jan Kara
2025-06-11 14:17 ` Pranav Tyagi
0 siblings, 1 reply; 5+ messages in thread
From: Jan Kara @ 2025-06-10 7:59 UTC (permalink / raw)
To: Kees Cook
Cc: Pranav Tyagi, viro, brauner, jack, linux-fsdevel, linux-mm,
linux-kernel, skhan, linux-kernel-mentees
On Mon 09-06-25 21:04:36, Kees Cook wrote:
> On Sat, Jun 07, 2025 at 01:58:44PM +0530, Pranav Tyagi wrote:
> > Use check_mul_overflow() to safely compute the total size of ELF program
> > headers instead of relying on direct multiplication.
> >
> > Directly multiplying sizeof(struct elf_phdr) with e_phnum risks integer
> > overflow, especially on 32-bit systems or with malformed ELF binaries
> > crafted to trigger wrap-around. If an overflow occurs, kmalloc() could
> > allocate insufficient memory, potentially leading to out-of-bound
> > accesses, memory corruption or security vulnerabilities.
> >
> > Using check_mul_overflow() ensures the multiplication is performed
> > safely and detects overflows before memory allocation. This change makes
> > the function more robust when handling untrusted or corrupted binaries.
> >
> > Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
> > Link: https://github.com/KSPP/linux/issues/92
> > ---
> > fs/binfmt_elf.c | 5 ++++-
> > 1 file changed, 4 insertions(+), 1 deletion(-)
> >
> > diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
> > index a43363d593e5..774e705798b8 100644
> > --- a/fs/binfmt_elf.c
> > +++ b/fs/binfmt_elf.c
> > @@ -518,7 +518,10 @@ static struct elf_phdr *load_elf_phdrs(const struct elfhdr *elf_ex,
> >
> > /* Sanity check the number of program headers... */
> > /* ...and their total size. */
> > - size = sizeof(struct elf_phdr) * elf_ex->e_phnum;
>
> size is unsigned int, which has a maximum value of 4,294,967,295.
>
> elf_ex->e_phnum is a u16 (2 bytes) and will not be changing:
>
> $ pahole -C elf64_hdr */fs/binfmt_elf.o
> struct elf64_hdr {
> ...
> Elf64_Half e_phnum; /* 56 2 */
> ...
Ah, what confused me was that I somehow thought Elf64_Half is u32 without
checking it's definition which clearly shows its actually u16. Thanks for
checking it! You're right that the patch is pointless then.
Honza
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] binfmt_elf: use check_mul_overflow() for size calc
2025-06-10 7:59 ` Jan Kara
@ 2025-06-11 14:17 ` Pranav Tyagi
0 siblings, 0 replies; 5+ messages in thread
From: Pranav Tyagi @ 2025-06-11 14:17 UTC (permalink / raw)
To: Jan Kara
Cc: Kees Cook, viro, brauner, linux-fsdevel, linux-mm, linux-kernel,
skhan, linux-kernel-mentees
On Tue, Jun 10, 2025 at 1:29 PM Jan Kara <jack@suse.cz> wrote:
>
> On Mon 09-06-25 21:04:36, Kees Cook wrote:
> > On Sat, Jun 07, 2025 at 01:58:44PM +0530, Pranav Tyagi wrote:
> > > Use check_mul_overflow() to safely compute the total size of ELF program
> > > headers instead of relying on direct multiplication.
> > >
> > > Directly multiplying sizeof(struct elf_phdr) with e_phnum risks integer
> > > overflow, especially on 32-bit systems or with malformed ELF binaries
> > > crafted to trigger wrap-around. If an overflow occurs, kmalloc() could
> > > allocate insufficient memory, potentially leading to out-of-bound
> > > accesses, memory corruption or security vulnerabilities.
> > >
> > > Using check_mul_overflow() ensures the multiplication is performed
> > > safely and detects overflows before memory allocation. This change makes
> > > the function more robust when handling untrusted or corrupted binaries.
> > >
> > > Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
> > > Link: https://github.com/KSPP/linux/issues/92
> > > ---
> > > fs/binfmt_elf.c | 5 ++++-
> > > 1 file changed, 4 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
> > > index a43363d593e5..774e705798b8 100644
> > > --- a/fs/binfmt_elf.c
> > > +++ b/fs/binfmt_elf.c
> > > @@ -518,7 +518,10 @@ static struct elf_phdr *load_elf_phdrs(const struct elfhdr *elf_ex,
> > >
> > > /* Sanity check the number of program headers... */
> > > /* ...and their total size. */
> > > - size = sizeof(struct elf_phdr) * elf_ex->e_phnum;
> >
> > size is unsigned int, which has a maximum value of 4,294,967,295.
> >
> > elf_ex->e_phnum is a u16 (2 bytes) and will not be changing:
> >
> > $ pahole -C elf64_hdr */fs/binfmt_elf.o
> > struct elf64_hdr {
> > ...
> > Elf64_Half e_phnum; /* 56 2 */
> > ...
>
> Ah, what confused me was that I somehow thought Elf64_Half is u32 without
> checking it's definition which clearly shows its actually u16. Thanks for
> checking it! You're right that the patch is pointless then.
>
> Honza
> --
> Jan Kara <jack@suse.com>
> SUSE Labs, CR
Hi,
I understand that the patch is actually pointless. I am still
new to kernel dev and learnt a lot from your comments. I will keep
this in mind while sending patches in the future.
Regards
Pranav Tyagi
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-06-11 14:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-07 8:28 [PATCH] binfmt_elf: use check_mul_overflow() for size calc Pranav Tyagi
2025-06-09 11:25 ` Jan Kara
2025-06-10 4:04 ` Kees Cook
2025-06-10 7:59 ` Jan Kara
2025-06-11 14:17 ` Pranav Tyagi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).