Clear static_links in reread_symbols
authorTom Tromey <tom@tromey.com>
Thu, 26 Jul 2018 23:54:00 +0000 (17:54 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 19 Oct 2018 16:28:33 +0000 (10:28 -0600)
-fsanitize=address pointed out a use-after free in
objfile_register_static_link.  The bug turned out to be that
reread_symbols does not clear the static_links field; this leaves a
hash table that is filled with freed pointers.

Jan's (now quite old) idea of replacing reread_symbols with a simple
delete/new still seems good to me, and it's worth noting that it would
have avoided this bug.

Tested by the buildbot and by observing the change with
-fsanitize=address.

gdb/ChangeLog
2018-10-19  Tom Tromey  <tom@tromey.com>

* symfile.c (reread_symbols): Clear "static_links".

gdb/ChangeLog
gdb/symfile.c

index da613eb769b52a5faa6e076d207686c0d76a8610..483b00e32a1f49d5736f825e28e888c897b5e258 100644 (file)
@@ -1,3 +1,7 @@
+2018-10-19  Tom Tromey  <tom@tromey.com>
+
+       * symfile.c (reread_symbols): Clear "static_links".
+
 2018-10-19  Alan Hayward  <alan.hayward@arm.com>
 
        * aarch64-linux-tdep.c (AARCH64_SIGCONTEXT_RESERVED_SIZE): New
index 6a1140edbcd08dfa9db8b22bc55286b9632e48bc..8ab6a25de7c376249778d42a6fcd666a09910a02 100644 (file)
@@ -2497,6 +2497,7 @@ reread_symbols (void)
          objfile->psymtabs_addrmap = NULL;
          objfile->free_psymtabs = NULL;
          objfile->template_symbols = NULL;
+         objfile->static_links = NULL;
 
          /* obstack_init also initializes the obstack so it is
             empty.  We could use obstack_specify_allocation but
This page took 0.03274 seconds and 4 git commands to generate.