1 //===-- sanitizer_procmaps.h ------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file is shared between AddressSanitizer and ThreadSanitizer.
11 // Information about the process mappings.
12 //===----------------------------------------------------------------------===//
13 #ifndef SANITIZER_PROCMAPS_H
14 #define SANITIZER_PROCMAPS_H
16 #include "sanitizer_platform.h"
18 #if SANITIZER_LINUX || SANITIZER_FREEBSD || SANITIZER_NETBSD || \
19 SANITIZER_APPLE || SANITIZER_SOLARIS || \
22 #include "sanitizer_common.h"
23 #include "sanitizer_internal_defs.h"
24 #include "sanitizer_fuchsia.h"
25 #include "sanitizer_linux.h"
26 #include "sanitizer_mac.h"
27 #include "sanitizer_mutex.h"
29 namespace __sanitizer
{
31 // Memory protection masks.
32 static const uptr kProtectionRead
= 1;
33 static const uptr kProtectionWrite
= 2;
34 static const uptr kProtectionExecute
= 4;
35 static const uptr kProtectionShared
= 8;
37 struct MemoryMappedSegmentData
;
39 class MemoryMappedSegment
{
41 explicit MemoryMappedSegment(char *buff
= nullptr, uptr size
= 0)
42 : filename(buff
), filename_size(size
), data_(nullptr) {}
43 ~MemoryMappedSegment() {}
45 bool IsReadable() const { return protection
& kProtectionRead
; }
46 bool IsWritable() const { return protection
& kProtectionWrite
; }
47 bool IsExecutable() const { return protection
& kProtectionExecute
; }
48 bool IsShared() const { return protection
& kProtectionShared
; }
50 void AddAddressRanges(LoadedModule
*module
);
55 char *filename
; // owned by caller
59 u8 uuid
[kModuleUUIDSize
];
62 friend class MemoryMappingLayout
;
64 // This field is assigned and owned by MemoryMappingLayout if needed
65 MemoryMappedSegmentData
*data_
;
70 class MemoryMappingLayoutBase
{
72 virtual bool Next(MemoryMappedSegment
*segment
) { UNIMPLEMENTED(); }
73 virtual bool Error() const { UNIMPLEMENTED(); };
74 virtual void Reset() { UNIMPLEMENTED(); }
77 ~MemoryMappingLayoutBase() {}
80 class MemoryMappingLayout
: public MemoryMappingLayoutBase
{
82 explicit MemoryMappingLayout(bool cache_enabled
);
84 // This destructor cannot be virtual, as it would cause an operator new() linking
85 // failures in hwasan test cases. However non-virtual destructors emit warnings
86 // in macOS build, hence disabling those
87 #pragma clang diagnostic push
88 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
89 ~MemoryMappingLayout();
90 #pragma clang diagnostic pop
92 virtual bool Next(MemoryMappedSegment
*segment
) override
;
93 virtual bool Error() const override
;
94 virtual void Reset() override
;
95 // In some cases, e.g. when running under a sandbox on Linux, ASan is unable
96 // to obtain the memory mappings. It should fall back to pre-cached data
97 // instead of aborting.
98 static void CacheMemoryMappings();
100 // Adds all mapped objects into a vector.
101 void DumpListOfModules(InternalMmapVectorNoCtor
<LoadedModule
> *modules
);
105 virtual const ImageHeader
*CurrentImageHeader();
107 MemoryMappingLayoutData data_
;
110 void LoadFromCache();
113 // Returns code range for the specified module.
114 bool GetCodeRangeForFile(const char *module
, uptr
*start
, uptr
*end
);
116 bool IsDecimal(char c
);
117 uptr
ParseDecimal(const char **p
);
119 uptr
ParseHex(const char **p
);
121 } // namespace __sanitizer
124 #endif // SANITIZER_PROCMAPS_H