1 //===-- asan_allocator.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 a part of AddressSanitizer, an address sanity checker.
11 // ASan-private header for asan_allocator.cpp.
12 //===----------------------------------------------------------------------===//
14 #ifndef ASAN_ALLOCATOR_H
15 #define ASAN_ALLOCATOR_H
17 #include "asan_flags.h"
18 #include "asan_interceptors.h"
19 #include "asan_internal.h"
20 #include "sanitizer_common/sanitizer_allocator.h"
21 #include "sanitizer_common/sanitizer_list.h"
22 #include "sanitizer_common/sanitizer_platform.h"
27 FROM_MALLOC
= 1, // Memory block came from malloc, calloc, realloc, etc.
28 FROM_NEW
= 2, // Memory block came from operator new.
29 FROM_NEW_BR
= 3 // Memory block came from operator new [ ]
34 struct AllocatorOptions
{
35 u32 quarantine_size_mb
;
36 u32 thread_local_quarantine_size_kb
;
40 u8 alloc_dealloc_mismatch
;
41 s32 release_to_os_interval_ms
;
43 void SetFrom(const Flags
*f
, const CommonFlags
*cf
);
44 void CopyTo(Flags
*f
, CommonFlags
*cf
);
47 void InitializeAllocator(const AllocatorOptions
&options
);
48 void ReInitializeAllocator(const AllocatorOptions
&options
);
49 void GetAllocatorOptions(AllocatorOptions
*options
);
53 explicit AsanChunkView(AsanChunk
*chunk
) : chunk_(chunk
) {}
54 bool IsValid() const; // Checks if AsanChunkView points to a valid
55 // allocated or quarantined chunk.
56 bool IsAllocated() const; // Checks if the memory is currently allocated.
57 bool IsQuarantined() const; // Checks if the memory is currently quarantined.
58 uptr
Beg() const; // First byte of user memory.
59 uptr
End() const; // Last byte of user memory.
60 uptr
UsedSize() const; // Size requested by the user.
61 u32
UserRequestedAlignment() const; // Originally requested alignment.
62 uptr
AllocTid() const;
64 bool Eq(const AsanChunkView
&c
) const { return chunk_
== c
.chunk_
; }
65 u32
GetAllocStackId() const;
66 u32
GetFreeStackId() const;
67 AllocType
GetAllocType() const;
68 bool AddrIsInside(uptr addr
, uptr access_size
, sptr
*offset
) const {
69 if (addr
>= Beg() && (addr
+ access_size
) <= End()) {
70 *offset
= addr
- Beg();
75 bool AddrIsAtLeft(uptr addr
, uptr access_size
, sptr
*offset
) const {
78 *offset
= Beg() - addr
;
83 bool AddrIsAtRight(uptr addr
, uptr access_size
, sptr
*offset
) const {
84 if (addr
+ access_size
> End()) {
85 *offset
= addr
- End();
92 AsanChunk
*const chunk_
;
95 AsanChunkView
FindHeapChunkByAddress(uptr address
);
96 AsanChunkView
FindHeapChunkByAllocBeg(uptr address
);
98 // List of AsanChunks with total size.
99 class AsanChunkFifoList
: public IntrusiveList
<AsanChunk
> {
101 explicit AsanChunkFifoList(LinkerInitialized
) { }
102 AsanChunkFifoList() { clear(); }
103 void Push(AsanChunk
*n
);
104 void PushList(AsanChunkFifoList
*q
);
106 uptr
size() { return size_
; }
108 IntrusiveList
<AsanChunk
>::clear();
115 struct AsanMapUnmapCallback
{
116 void OnMap(uptr p
, uptr size
) const;
117 void OnUnmap(uptr p
, uptr size
) const;
120 #if SANITIZER_CAN_USE_ALLOCATOR64
121 # if SANITIZER_FUCHSIA
122 const uptr kAllocatorSpace
= ~(uptr
)0;
123 const uptr kAllocatorSize
= 0x40000000000ULL
; // 4T.
124 typedef DefaultSizeClassMap SizeClassMap
;
125 # elif defined(__powerpc64__)
126 const uptr kAllocatorSpace
= ~(uptr
)0;
127 const uptr kAllocatorSize
= 0x20000000000ULL
; // 2T.
128 typedef DefaultSizeClassMap SizeClassMap
;
129 # elif defined(__aarch64__) && SANITIZER_ANDROID
130 // Android needs to support 39, 42 and 48 bit VMA.
131 const uptr kAllocatorSpace
= ~(uptr
)0;
132 const uptr kAllocatorSize
= 0x2000000000ULL
; // 128G.
133 typedef VeryCompactSizeClassMap SizeClassMap
;
134 #elif SANITIZER_RISCV64
135 const uptr kAllocatorSpace
= ~(uptr
)0;
136 const uptr kAllocatorSize
= 0x2000000000ULL
; // 128G.
137 typedef VeryDenseSizeClassMap SizeClassMap
;
138 # elif defined(__aarch64__)
139 // AArch64/SANITIZER_CAN_USE_ALLOCATOR64 is only for 42-bit VMA
140 // so no need to different values for different VMA.
141 const uptr kAllocatorSpace
= 0x10000000000ULL
;
142 const uptr kAllocatorSize
= 0x10000000000ULL
; // 3T.
143 typedef DefaultSizeClassMap SizeClassMap
;
144 #elif defined(__sparc__)
145 const uptr kAllocatorSpace
= ~(uptr
)0;
146 const uptr kAllocatorSize
= 0x20000000000ULL
; // 2T.
147 typedef DefaultSizeClassMap SizeClassMap
;
148 # elif SANITIZER_WINDOWS
149 const uptr kAllocatorSpace
= ~(uptr
)0;
150 const uptr kAllocatorSize
= 0x8000000000ULL
; // 500G
151 typedef DefaultSizeClassMap SizeClassMap
;
153 const uptr kAllocatorSpace
= 0x600000000000ULL
;
154 const uptr kAllocatorSize
= 0x40000000000ULL
; // 4T.
155 typedef DefaultSizeClassMap SizeClassMap
;
157 template <typename AddressSpaceViewTy
>
158 struct AP64
{ // Allocator64 parameters. Deliberately using a short name.
159 static const uptr kSpaceBeg
= kAllocatorSpace
;
160 static const uptr kSpaceSize
= kAllocatorSize
;
161 static const uptr kMetadataSize
= 0;
162 typedef __asan::SizeClassMap SizeClassMap
;
163 typedef AsanMapUnmapCallback MapUnmapCallback
;
164 static const uptr kFlags
= 0;
165 using AddressSpaceView
= AddressSpaceViewTy
;
168 template <typename AddressSpaceView
>
169 using PrimaryAllocatorASVT
= SizeClassAllocator64
<AP64
<AddressSpaceView
>>;
170 using PrimaryAllocator
= PrimaryAllocatorASVT
<LocalAddressSpaceView
>;
171 #else // Fallback to SizeClassAllocator32.
172 typedef CompactSizeClassMap SizeClassMap
;
173 template <typename AddressSpaceViewTy
>
175 static const uptr kSpaceBeg
= 0;
176 static const u64 kSpaceSize
= SANITIZER_MMAP_RANGE_SIZE
;
177 static const uptr kMetadataSize
= 0;
178 typedef __asan::SizeClassMap SizeClassMap
;
179 static const uptr kRegionSizeLog
= 20;
180 using AddressSpaceView
= AddressSpaceViewTy
;
181 typedef AsanMapUnmapCallback MapUnmapCallback
;
182 static const uptr kFlags
= 0;
184 template <typename AddressSpaceView
>
185 using PrimaryAllocatorASVT
= SizeClassAllocator32
<AP32
<AddressSpaceView
> >;
186 using PrimaryAllocator
= PrimaryAllocatorASVT
<LocalAddressSpaceView
>;
187 #endif // SANITIZER_CAN_USE_ALLOCATOR64
189 static const uptr kNumberOfSizeClasses
= SizeClassMap::kNumClasses
;
191 template <typename AddressSpaceView
>
192 using AsanAllocatorASVT
=
193 CombinedAllocator
<PrimaryAllocatorASVT
<AddressSpaceView
>>;
194 using AsanAllocator
= AsanAllocatorASVT
<LocalAddressSpaceView
>;
195 using AllocatorCache
= AsanAllocator::AllocatorCache
;
197 struct AsanThreadLocalMallocStorage
{
198 uptr quarantine_cache
[16];
199 AllocatorCache allocator_cache
;
202 // These objects are allocated via mmap() and are zero-initialized.
203 AsanThreadLocalMallocStorage() {}
206 void *asan_memalign(uptr alignment
, uptr size
, BufferedStackTrace
*stack
,
207 AllocType alloc_type
);
208 void asan_free(void *ptr
, BufferedStackTrace
*stack
, AllocType alloc_type
);
209 void asan_delete(void *ptr
, uptr size
, uptr alignment
,
210 BufferedStackTrace
*stack
, AllocType alloc_type
);
212 void *asan_malloc(uptr size
, BufferedStackTrace
*stack
);
213 void *asan_calloc(uptr nmemb
, uptr size
, BufferedStackTrace
*stack
);
214 void *asan_realloc(void *p
, uptr size
, BufferedStackTrace
*stack
);
215 void *asan_reallocarray(void *p
, uptr nmemb
, uptr size
,
216 BufferedStackTrace
*stack
);
217 void *asan_valloc(uptr size
, BufferedStackTrace
*stack
);
218 void *asan_pvalloc(uptr size
, BufferedStackTrace
*stack
);
220 void *asan_aligned_alloc(uptr alignment
, uptr size
, BufferedStackTrace
*stack
);
221 int asan_posix_memalign(void **memptr
, uptr alignment
, uptr size
,
222 BufferedStackTrace
*stack
);
223 uptr
asan_malloc_usable_size(const void *ptr
, uptr pc
, uptr bp
);
225 uptr
asan_mz_size(const void *ptr
);
226 void asan_mz_force_lock();
227 void asan_mz_force_unlock();
229 void PrintInternalAllocatorStats();
230 void AsanSoftRssLimitExceededCallback(bool exceeded
);
232 } // namespace __asan
233 #endif // ASAN_ALLOCATOR_H