Linux-Fsdevel Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] fs/binfmt_elf: Fix memleak in load_elf_binary
@ 2020-08-27 11:46 Dinghao Liu
0 siblings, 0 replies; only message in thread
From: Dinghao Liu @ 2020-08-27 11:46 UTC (permalink / raw)
To: dinghao.liu, kjlu; +Cc: Alexander Viro, linux-fsdevel, linux-kernel
When arch_setup_additional_pages() fails, interp_elf_ex may
not have been freed, which leads to memleak. It's the same
when create_elf_tables() fails.
Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
---
fs/binfmt_elf.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
index 13d053982dd7..984c30684e49 100644
--- a/fs/binfmt_elf.c
+++ b/fs/binfmt_elf.c
@@ -1204,6 +1204,7 @@ static int load_elf_binary(struct linux_binprm *bprm)
fput(interpreter);
kfree(interp_elf_ex);
+ interp_elf_ex = NULL;
kfree(interp_elf_phdata);
} else {
elf_entry = e_entry;
@@ -1219,14 +1220,18 @@ static int load_elf_binary(struct linux_binprm *bprm)
#ifdef ARCH_HAS_SETUP_ADDITIONAL_PAGES
retval = arch_setup_additional_pages(bprm, !!interpreter);
- if (retval < 0)
+ if (retval < 0) {
+ kfree(interp_elf_ex);
goto out;
+ }
#endif /* ARCH_HAS_SETUP_ADDITIONAL_PAGES */
retval = create_elf_tables(bprm, elf_ex,
load_addr, interp_load_addr, e_entry);
- if (retval < 0)
+ if (retval < 0) {
+ kfree(interp_elf_ex);
goto out;
+ }
mm = current->mm;
mm->end_code = end_code;
--
2.17.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-08-27 11:50 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-27 11:46 [PATCH] fs/binfmt_elf: Fix memleak in load_elf_binary Dinghao Liu
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).