From: Roland McGrath Date: Wed, 28 Mar 2012 17:22:35 +0000 (-0700) Subject: RHBZ#805447: Fix core file grokking for case of truncated .dynstr X-Git-Tag: elfutils-0.154~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=210c2f03efbbaacc51f2641baa0947d9c316de12;p=thirdparty%2Felfutils.git RHBZ#805447: Fix core file grokking for case of truncated .dynstr --- diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index 87a055506..86f6fba47 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,10 @@ +2012-03-28 Roland McGrath + + * dwfl_segment_report_module.c + (dwfl_segment_report_module: read_portion): Don't use existing buffer + when FILESZ is zero (string mode) and available portion doesn't hold + a terminated string. + 2011-12-02 Roland McGrath * elf-from-memory.c (elf_from_remote_memory): Fix ELFCLASS64 case diff --git a/libdwfl/dwfl_segment_report_module.c b/libdwfl/dwfl_segment_report_module.c index 012a0fdeb..553418042 100644 --- a/libdwfl/dwfl_segment_report_module.c +++ b/libdwfl/dwfl_segment_report_module.c @@ -1,5 +1,5 @@ /* Sniff out modules from ELF headers visible in memory segments. - Copyright (C) 2008-2010 Red Hat, Inc. + Copyright (C) 2008-2012 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -155,7 +155,11 @@ dwfl_segment_report_module (Dwfl *dwfl, int ndx, const char *name, inline bool read_portion (void **data, size_t *data_size, GElf_Addr vaddr, size_t filesz) { - if (vaddr - start + filesz > buffer_available) + if (vaddr - start + filesz > buffer_available + /* If we're in string mode, then don't consider the buffer we have + sufficient unless it contains the terminator of the string. */ + || (filesz == 0 && memchr (vaddr - start + buffer, '\0', + buffer_available - (vaddr - start)) == NULL)) { *data = NULL; *data_size = filesz;