diff options
author | Alan Modra <amodra@gmail.com> | 2020-06-27 12:47:45 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-06-27 12:55:35 +0930 |
commit | cfc16775b7678e1ad8f9fce048652defd78e3787 (patch) | |
tree | c96a499b820e11d40ef063f32dd3e8243f47ff0b /binutils | |
parent | aa57a9d3b6b471e665639a6d927061cbf2529e2e (diff) | |
download | gdb-cfc16775b7678e1ad8f9fce048652defd78e3787.zip gdb-cfc16775b7678e1ad8f9fce048652defd78e3787.tar.gz gdb-cfc16775b7678e1ad8f9fce048652defd78e3787.tar.bz2 |
asan: readelf: use after free in process_archive
This tidies up in cases where fuzzed thin archives hit the error return
path in setup_nested_archive.
* elfcomm.c (setup_nested_archive): Set nested_arch->file to NULL
after freeing.
(release_archive): Set fields of arch to NULL after freeing.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/elfcomm.c | 9 |
2 files changed, 14 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 95a868a..13d9c3e 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2020-06-27 Alan Modra <amodra@gmail.com> + + * elfcomm.c (setup_nested_archive): Set nested_arch->file to NULL + after freeing. + (release_archive): Set fields of arch to NULL after freeing. + 2020-06-26 Nick Alcock <nick.alcock@oracle.com> * readelf.c (dump_section_as_ctf): Support .ctf archives using diff --git a/binutils/elfcomm.c b/binutils/elfcomm.c index 558afa7..37f9dbe 100644 --- a/binutils/elfcomm.c +++ b/binutils/elfcomm.c @@ -727,7 +727,10 @@ setup_nested_archive (struct archive_info *nested_arch, /* Close previous file and discard cached information. */ if (nested_arch->file != NULL) - fclose (nested_arch->file); + { + fclose (nested_arch->file); + nested_arch->file = NULL; + } release_archive (nested_arch); member_file = fopen (member_file_name, "rb"); @@ -748,6 +751,10 @@ release_archive (struct archive_info * arch) free (arch->index_array); free (arch->sym_table); free (arch->longnames); + arch->file_name = NULL; + arch->index_array = NULL; + arch->sym_table = NULL; + arch->longnames = NULL; } /* Get the name of an archive member from the current archive header. |