minidump: Create memory regions from the sections of loaded modules
authorPavel Labath <pavel@labath.sk>
Wed, 16 Oct 2019 08:38:10 +0000 (10:38 +0200)
committerPavel Labath <pavel@labath.sk>
Thu, 31 Oct 2019 10:24:55 +0000 (11:24 +0100)
commit193a7bfb697b5d2adb1c3d37a9d624aa8131ec35
treeb6fe618ffc417076927ab1076cfac364936e31ce
parente9430231accacdb872bc4c82feb9a6a64d57941b
minidump: Create memory regions from the sections of loaded modules

Summary:
Not all minidumps contain information about memory permissions. However,
it is still important to know which regions of memory contain
potentially executable code. This is particularly important for
unwinding on win32, as the default unwind method there relies on
scanning the stack for things which "look like" code pointers.

This patch enables ProcessMinidump to reconstruct the likely permissions
of memory regions using the sections of loaded object files. It only
does this if we don't have a better source (memory info list stream, or
linux /proc/maps) for this information, and only if the information in
the object files does not conflict with the information in the minidump.

Theoretically that last bit could be improved, since the permissions
obtained from the MemoryList streams is also only a very rough guess,
but it did not seem worthwhile to complicate the implementation because
of that because there will generally be no overlap in practice as the
MemoryList will contain the stack contents and not any module data.

The patch adds a test checking that the module section permissions are
entered into the memory region list, and also a test which demonstrate
that now the unwinder is able to correctly find return addresses even in
minidumps without memory info list streams.

There's one TODO left in this patch, which is that the "memory region"
output does not give any indication about the "don't know" values of
memory region permissions (it just prints them as if they permission bit
was set). I address this in a follow up.

Reviewers: amccarth, clayborg

Subscribers: mgrang, lldb-commits

Differential Revision: https://reviews.llvm.org/D69105
lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
lldb/test/Shell/Minidump/Inputs/basic-elf.yaml [new file with mode: 0644]
lldb/test/Shell/Minidump/memory-region-from-module.yaml [new file with mode: 0644]
lldb/test/Shell/SymbolFile/Breakpad/unwind-via-stack-win-no-memory-info.yaml [new file with mode: 0644]