Linux filesystem development
 help / color / mirror / Atom feed
* [PATCH] Bug fix to ELF Loader which rejects valid ELFs
@ 2020-08-11 14:44 Burrow, Ryan - 0553 - MITLL
  2020-08-11 15:05 ` Matthew Wilcox
  0 siblings, 1 reply; 3+ messages in thread
From: Burrow, Ryan - 0553 - MITLL @ 2020-08-11 14:44 UTC (permalink / raw)
  To: linux-fsdevel@vger.kernel.org; +Cc: linux-kernel@vger.kernel.org

[-- Attachment #1: Type: text/plain, Size: 954 bytes --]


Check was incorrectly being applied to size of elf phdrs, instead
of the number. The ELF standard allows for up to 65535 headers, but
the check was being compared to the number of headers multiplied by
the size of a program header.
---
 fs/binfmt_elf.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
index 9fe3b51c116a..5605b5205f84 100644
--- a/fs/binfmt_elf.c
+++ b/fs/binfmt_elf.c
@@ -445,11 +445,11 @@ static struct elf_phdr *load_elf_phdrs(const struct
elfhdr *elf_ex,
 		goto out;
 
 	/* Sanity check the number of program headers... */
-	/* ...and their total size. */
-	size = sizeof(struct elf_phdr) * elf_ex->e_phnum;
-	if (size == 0 || size > 65536 || size > ELF_MIN_ALIGN)
+	if (elf_ex->e_phnum == 0 || elf_ex->phnum > 65535)
 		goto out;
 
+	size = sizeof(struct elf_phdr) * elf_ex->e_phnum;
+
 	elf_phdata = kmalloc(size, GFP_KERNEL);
 	if (!elf_phdata)
 		goto out;
-- 
2.17.1

[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5529 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-08-11 16:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-11 14:44 [PATCH] Bug fix to ELF Loader which rejects valid ELFs Burrow, Ryan - 0553 - MITLL
2020-08-11 15:05 ` Matthew Wilcox
2020-08-11 16:39   ` Burrow, Ryan - 0553 - MITLL

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox