asan: heap buffer overflow in _bfd_error_handler
authorAlan Modra <amodra@gmail.com>
Sat, 6 Aug 2022 10:24:46 +0000 (19:54 +0930)
committerAlan Modra <amodra@gmail.com>
Sat, 6 Aug 2022 10:29:02 +0000 (19:59 +0930)
On coff_slurp_symbol_table printing "unrecognized storage class"
for a symbol error.  If the symbol name is the last string in its
section and not terminated, we run off the end of the buffer.

* coffgen.c (build_debug_section): Terminate the section with
an extra 0.

bfd/coffgen.c

index 4d2b82e4a6fa365d5d07322aeedef2bdf898cac5..90fba3b855479a03712610771acdf9823379c89d 100644 (file)
@@ -1539,9 +1539,10 @@ build_debug_section (bfd *abfd, asection ** sect_return)
     return NULL;
 
   sec_size = sect->size;
-  debug_section = (char *) _bfd_alloc_and_read (abfd, sec_size, sec_size);
+  debug_section = (char *) _bfd_alloc_and_read (abfd, sec_size + 1, sec_size);
   if (debug_section == NULL)
     return NULL;
+  debug_section[sec_size] = 0;
 
   if (bfd_seek (abfd, position, SEEK_SET) != 0)
     return NULL;