Skip to content

Commit c6a09e3

Browse files
jcmvbkbckees
authored andcommitted
binfmt_elf_fdpic: fix AUXV size calculation when ELF_HWCAP2 is defined
create_elf_fdpic_tables() does not correctly account the space for the AUX vector when an architecture has ELF_HWCAP2 defined. Prior to the commit 10e2925 ("binfmt_elf_fdpic: fix /proc/<pid>/auxv") it resulted in the last entry of the AUX vector being set to zero, but with that change it results in a kernel BUG. Fix that by adding one to the number of AUXV entries (nitems) when ELF_HWCAP2 is defined. Fixes: 10e2925 ("binfmt_elf_fdpic: fix /proc/<pid>/auxv") Cc: [email protected] Reported-by: Greg Ungerer <[email protected]> Closes: https://lore.kernel.org/lkml/[email protected]/ Signed-off-by: Max Filippov <[email protected]> Tested-by: Greg Ungerer <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Kees Cook <[email protected]>
1 parent f50733b commit c6a09e3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

fs/binfmt_elf_fdpic.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,9 @@ static int create_elf_fdpic_tables(struct linux_binprm *bprm,
589589

590590
if (bprm->have_execfd)
591591
nitems++;
592+
#ifdef ELF_HWCAP2
593+
nitems++;
594+
#endif
592595

593596
csp = sp;
594597
sp -= nitems * 2 * sizeof(unsigned long);

0 commit comments

Comments
 (0)