summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/tests
diff options
context:
space:
mode:
authorKuba Mracek <mracek@apple.com>2016-12-02 21:27:14 +0000
committerKuba Mracek <mracek@apple.com>2016-12-02 21:27:14 +0000
commit74c8f498fa128f0cd4eb97d603c017f250dd3694 (patch)
treea568579c59198d668eb06237a8483c0cf9cbd2d0 /lib/sanitizer_common/tests
parent4ca6e75ef3a392468b39bd7d99238580859228ce (diff)
[sanitizer] Track architecture and UUID of modules in LoadedModule
When we enumerate loaded modules, we only track the module name and base address, which then has several problems on macOS. Dylibs and executables often have several architecture slices and not storing which architecture/UUID is actually loaded creates problems with symbolication: A file path + offset isn't enough to correctly symbolicate, since the offset can be valid in multiple slices. This is especially common for Haswell+ X86_64 machines, where x86_64h slices are preferred, but if one is not available, a regular x86_64 is loaded instead. But the same issue exists for i386 vs. x86_64 as well. This patch adds tracking of arch and UUID for each LoadedModule. At this point, this information isn't used in reports, but this is the first step. The goal is to correctly identify which slice is loaded in symbolication, and also to output this information in reports so that we can tell which exact slices were loaded in post-mortem analysis. Differential Revision: https://reviews.llvm.org/D26632 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@288537 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/tests')
-rw-r--r--lib/sanitizer_common/tests/sanitizer_procmaps_test.cc21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/sanitizer_common/tests/sanitizer_procmaps_test.cc b/lib/sanitizer_common/tests/sanitizer_procmaps_test.cc
index ae7c5d531..4ac55c706 100644
--- a/lib/sanitizer_common/tests/sanitizer_procmaps_test.cc
+++ b/lib/sanitizer_common/tests/sanitizer_procmaps_test.cc
@@ -52,5 +52,26 @@ TEST(MemoryMappingLayout, DumpListOfModules) {
EXPECT_TRUE(found);
}
+TEST(MemoryMapping, LoadedModuleArchAndUUID) {
+ if (SANITIZER_MAC) {
+ MemoryMappingLayout memory_mapping(false);
+ const uptr kMaxModules = 100;
+ InternalMmapVector<LoadedModule> modules(kMaxModules);
+ memory_mapping.DumpListOfModules(&modules);
+ for (uptr i = 0; i < modules.size(); ++i) {
+ ModuleArch arch = modules[i].arch();
+ // Darwin unit tests are only run on i386/x86_64/x86_64h.
+ if (SANITIZER_WORDSIZE == 32) {
+ EXPECT_EQ(arch, kModuleArchI386);
+ } else if (SANITIZER_WORDSIZE == 64) {
+ EXPECT_TRUE(arch == kModuleArchX86_64 || arch == kModuleArchX86_64H);
+ }
+ const u8 *uuid = modules[i].uuid();
+ u8 null_uuid[kModuleUUIDSize] = {0};
+ EXPECT_NE(memcmp(null_uuid, uuid, kModuleUUIDSize), 0);
+ }
+ }
+}
+
} // namespace __sanitizer
#endif // !defined(_WIN32)