From: Alex Lindsay <alexlindsay239@gmail.com>
To: gdb-patches@sourceware.org
Subject: Synthetic symbol leak in in elf_x86_64_get_synthetic_symtab and elf_read_minimal_symbols
Date: Mon, 07 Aug 2017 15:19:00 -0000 [thread overview]
Message-ID: <ce856f01-6e4b-5e74-fe8a-8e4aa0cb89e6@gmail.com> (raw)
Detected this leak with valgrind memcheck:
==21225== 463 (336 direct, 127 indirect) bytes in 1 blocks are
definitely lost in loss record 10,770 of 10,949^M
==21225== at 0x4C2DB8F: malloc (in
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)^M
==21225== by 0x6C6DA2: bfd_malloc (libbfd.c:193)^M
==21225== by 0x6C6F4D: bfd_zmalloc (libbfd.c:278)^M
==21225== by 0x6D252E: elf_x86_64_get_synthetic_symtab
(elf64-x86-64.c:6846)^M
==21225== by 0x4B397A: elf_read_minimal_symbols (elfread.c:1124)^M
==21225== by 0x4B397A: elf_symfile_read(objfile*,
enum_flags<symfile_add_flag>) (elfread.c:1182)^M
==21225== by 0x63AC94: read_symbols(objfile*,
enum_flags<symfile_add_flag>) (symfile.c:861)^M
==21225== by 0x63A773: syms_from_objfile_1 (symfile.c:1062)
We perform a couple of dynamic allocations in
elf_x86_64_get_synthetic_symtab (elf64-x86-64.c):
s = *ret = (asymbol *) bfd_zmalloc (size);
names = (char *) bfd_malloc (size);
that appear to never get freed. My patch for this:
diff --git a/gdb/elfread.c b/gdb/elfread.c
index ece704ca7c..5ed8a6f957 100644
--- a/gdb/elfread.c
+++ b/gdb/elfread.c
@@ -1144,6 +1144,9 @@ elf_read_minimal_symbols (struct objfile *objfile,
int symfile_flags,
if (symtab_create_debug)
fprintf_unfiltered (gdb_stdlog, "Done reading minimal symbols.\n");
+ if (synthcount > 0)
+ xfree ((char *) synthsyms->name);
+ xfree (synthsyms);
}
/* Scan and build partial symbols for a symbol file.
next reply other threads:[~2017-08-07 15:19 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-07 15:19 Alex Lindsay [this message]
2017-08-11 9:27 ` Yao Qi
2017-08-11 15:07 ` Alex Lindsay
2017-08-11 15:31 ` H.J. Lu
2017-08-11 15:46 ` Yao Qi
2017-08-11 16:44 ` H.J. Lu
2017-08-11 21:20 ` Alex Lindsay
2017-08-17 11:00 ` Yao Qi
2017-08-17 12:31 ` Philippe Waroquiers
2017-08-17 17:42 ` Pedro Alves
2017-08-17 22:32 ` [PATCH] Plug line_header leaks (Re: Synthetic symbol leak in in elf_x86_64_get_synthetic_symtab and elf_read_minimal_symbols) Pedro Alves
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=ce856f01-6e4b-5e74-fe8a-8e4aa0cb89e6@gmail.com \
--to=alexlindsay239@gmail.com \
--cc=gdb-patches@sourceware.org \
/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