aboutsummaryrefslogtreecommitdiff
path: root/gnulib/ChangeLog
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2024-11-18 16:19:43 +0000
committerAndrew Burgess <aburgess@redhat.com>2024-11-21 19:38:39 +0000
commit978324718990b6b371d4eeeba02cfe13a0ebf120 (patch)
tree59fa8fda18cf50a64ff2470ab0020420fee26640 /gnulib/ChangeLog
parentbe740e7cc62fed098ad62cef3b2e2b25b44d8748 (diff)
downloadgdb-978324718990b6b371d4eeeba02cfe13a0ebf120.zip
gdb-978324718990b6b371d4eeeba02cfe13a0ebf120.tar.gz
gdb-978324718990b6b371d4eeeba02cfe13a0ebf120.tar.bz2
gdb/build-id: protect against weirdly short build-ids
While looking at build_id_to_bfd_suffix (in gdb/build-id.c) I realised that GDB would likely not do what we wanted if a build-id was ever a single byte. Right now, build-ids generated by the GNU linker are 32 bytes, but there's nothing that forces this to be the case, it's pretty easy to create a fake, single byte, build-id. Given that the build-id is an external input (read from the objfile), GDB should protect itself against these edge cases. The problem with build_id_to_bfd_suffix is that this function creates the path used to lookup either the debug information, or an executable, based on its build-id. So a 3-byte build-id 0xaabbcc will look in the path: `$DEBUG_FILE_DIRECTORY/.build-id/aa/bbcc.debug`. However, a single byte build-id 0xaa, will look in the file: `$DEBUG_FILE_DIRECTORY/.build-id/aa/.debug` which doesn't seem right. Worse, when looking for an objfile given a build-id GDB will look for a file called `$DEBUG_FILE_DIRECTORY/.build-id/aa/` with a trailing '/' character. I propose that, in build_id_to_bfd_suffix we just return early if the build-id is 1 byte (or less) with a return value that indicates no separate file was found. For testing I made use of the DWARF assembler. I needed to update the build-id creation proc, the existing code assumes that the build-id is a multiple of 4 bytes, so I added some additional padding to ensure that the generated note was a multiple of 4 bytes, even if the build-id was not. I added a test with a 1 byte build-id, and also for the case where the build-id has zero length. The zero length case already does what you'd expect (no debug is loaded) as the bfd library rejects the build-id when loading it from the objfile, but adding this additional test is pretty cheap. Approved-By: Kevin Buettner <kevinb@redhat.com>
Diffstat (limited to 'gnulib/ChangeLog')
0 files changed, 0 insertions, 0 deletions