blob: f17ee026891739a1d725621137109fbec71d98df [file] [log] [blame]
Kostya Serebryany244384d2013-04-11 11:39:19 +00001//===-- asan_fake_stack.h ---------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of AddressSanitizer, an address sanity checker.
11//
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +000012// ASan-private header for asan_fake_stack.cc, implements FakeStack.
Kostya Serebryany244384d2013-04-11 11:39:19 +000013//===----------------------------------------------------------------------===//
14
15#ifndef ASAN_FAKE_STACK_H
16#define ASAN_FAKE_STACK_H
17
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +000018#include "sanitizer_common/sanitizer_common.h"
19
Kostya Serebryany244384d2013-04-11 11:39:19 +000020namespace __asan {
21
22// Fake stack frame contains local variables of one function.
Kostya Serebryany244384d2013-04-11 11:39:19 +000023struct FakeFrame {
24 uptr magic; // Modified by the instrumented code.
25 uptr descr; // Modified by the instrumented code.
Kostya Serebryanyce0f7d12013-04-11 12:49:38 +000026 uptr pc; // Modified by the instrumented code.
Kostya Serebryany0f228372013-09-13 07:50:44 +000027 uptr real_stack;
Kostya Serebryany244384d2013-04-11 11:39:19 +000028};
29
30// For each thread we create a fake stack and place stack objects on this fake
31// stack instead of the real stack. The fake stack is not really a stack but
32// a fast malloc-like allocator so that when a function exits the fake stack
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +000033// is not popped but remains there for quite some time until gets used again.
Kostya Serebryany244384d2013-04-11 11:39:19 +000034// So, we poison the objects on the fake stack when function returns.
35// It helps us find use-after-return bugs.
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +000036//
37// The FakeStack objects is allocated by a single mmap call and has no other
38// pointers. The size of the fake stack depends on the actual thread stack size
39// and thus can not be a constant.
40// stack_size is a power of two greater or equal to the thread's stack size;
41// we store it as its logarithm (stack_size_log).
42// FakeStack has kNumberOfSizeClasses (11) size classes, each size class
43// is a power of two, starting from 64 bytes. Each size class occupies
44// stack_size bytes and thus can allocate
45// NumberOfFrames=(stack_size/BytesInSizeClass) fake frames (also a power of 2).
46// For each size class we have NumberOfFrames allocation flags,
47// each flag indicates whether the given frame is currently allocated.
48// All flags for size classes 0 .. 10 are stored in a single contiguous region
49// followed by another contiguous region which contains the actual memory for
50// size classes. The addresses are computed by GetFlags and GetFrame without
51// any memory accesses solely based on 'this' and stack_size_log.
52// Allocate() flips the appropriate allocation flag atomically, thus achieving
53// async-signal safety.
54// This allocator does not have quarantine per se, but it tries to allocate the
55// frames in round robin fasion to maximize the delay between a deallocation
56// and the next allocation.
Kostya Serebryany244384d2013-04-11 11:39:19 +000057class FakeStack {
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +000058 static const uptr kMinStackFrameSizeLog = 6; // Min frame is 64B.
59 static const uptr kMaxStackFrameSizeLog = 16; // Max stack frame is 64K.
60
Kostya Serebryany244384d2013-04-11 11:39:19 +000061 public:
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +000062 static const uptr kNumberOfSizeClasses =
63 kMaxStackFrameSizeLog - kMinStackFrameSizeLog + 1;
64
65 // CTOR: create the FakeStack as a single mmap-ed object.
Kostya Serebryanye1c68c32013-09-27 11:37:23 +000066 static FakeStack *Create(uptr stack_size_log);
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +000067
Kostya Serebryanye1c68c32013-09-27 11:37:23 +000068 void Destroy();
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +000069
70 // stack_size_log is at least 15 (stack_size >= 32K).
71 static uptr SizeRequiredForFlags(uptr stack_size_log) {
72 return 1UL << (stack_size_log + 1 - kMinStackFrameSizeLog);
73 }
74
75 // Each size class occupies stack_size bytes.
76 static uptr SizeRequiredForFrames(uptr stack_size_log) {
77 return (1ULL << stack_size_log) * kNumberOfSizeClasses;
78 }
79
80 // Number of bytes requires for the whole object.
81 static uptr RequiredSize(uptr stack_size_log) {
82 return kFlagsOffset + SizeRequiredForFlags(stack_size_log) +
83 SizeRequiredForFrames(stack_size_log);
84 }
85
86 // Offset of the given flag from the first flag.
87 // The flags for class 0 begin at offset 000000000
88 // The flags for class 1 begin at offset 100000000
89 // ....................2................ 110000000
90 // ....................3................ 111000000
91 // and so on.
92 static uptr FlagsOffset(uptr stack_size_log, uptr class_id) {
93 uptr t = kNumberOfSizeClasses - 1 - class_id;
94 const uptr all_ones = (1 << (kNumberOfSizeClasses - 1)) - 1;
95 return ((all_ones >> t) << t) << (stack_size_log - 15);
96 }
97
98 static uptr NumberOfFrames(uptr stack_size_log, uptr class_id) {
99 return 1UL << (stack_size_log - kMinStackFrameSizeLog - class_id);
100 }
101
102 // Divide n by the numbe of frames in size class.
103 static uptr ModuloNumberOfFrames(uptr stack_size_log, uptr class_id, uptr n) {
104 return n & (NumberOfFrames(stack_size_log, class_id) - 1);
105 }
106
107 // The the pointer to the flags of the given class_id.
108 u8 *GetFlags(uptr stack_size_log, uptr class_id) {
109 return reinterpret_cast<u8 *>(this) + kFlagsOffset +
110 FlagsOffset(stack_size_log, class_id);
111 }
112
113 // Get frame by class_id and pos.
114 u8 *GetFrame(uptr stack_size_log, uptr class_id, uptr pos) {
115 return reinterpret_cast<u8 *>(this) + kFlagsOffset +
116 SizeRequiredForFlags(stack_size_log) +
117 (1 << stack_size_log) * class_id + BytesInSizeClass(class_id) * pos;
118 }
119
120 // Allocate the fake frame.
121 FakeFrame *Allocate(uptr stack_size_log, uptr class_id, uptr real_stack);
122
Kostya Serebryanyb3889872013-09-17 07:42:54 +0000123 // Deallocate the fake frame: read the saved flag address and write 0 there.
124 static void Deallocate(uptr x, uptr class_id) {
125 **SavedFlagPtr(x, class_id) = 0;
126 }
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +0000127
128 // Poison the entire FakeStack's shadow with the magic value.
129 void PoisonAll(u8 magic);
130
131 // Return the beginning of the FakeFrame or 0 if the address is not ours.
Kostya Serebryany244384d2013-04-11 11:39:19 +0000132 uptr AddrIsInFakeStack(uptr addr);
Kostya Serebryany244384d2013-04-11 11:39:19 +0000133
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +0000134 // Number of bytes in a fake frame of this size class.
135 static uptr BytesInSizeClass(uptr class_id) {
Kostya Serebryany34e3ed12013-09-10 13:16:26 +0000136 return 1UL << (class_id + kMinStackFrameSizeLog);
137 }
138
Kostya Serebryanyb3889872013-09-17 07:42:54 +0000139 // The fake frame is guaranteed to have a right redzone.
140 // We use the last word of that redzone to store the address of the flag
141 // that corresponds to the current frame to make faster deallocation.
142 static u8 **SavedFlagPtr(uptr x, uptr class_id) {
143 return reinterpret_cast<u8 **>(x + BytesInSizeClass(class_id) - sizeof(x));
144 }
145
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +0000146 uptr stack_size_log() const { return stack_size_log_; }
147
Kostya Serebryany89de4572013-09-12 13:25:29 +0000148 void HandleNoReturn();
149 void GC(uptr real_stack);
150
Sergey Matveevc5193352013-10-14 14:04:50 +0000151 void ForEachFakeFrame(RangeIteratorCallback callback, void *arg);
152
Kostya Serebryany244384d2013-04-11 11:39:19 +0000153 private:
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +0000154 FakeStack() { }
Kostya Serebryany89de4572013-09-12 13:25:29 +0000155 static const uptr kFlagsOffset = 4096; // This is were the flags begin.
Kostya Serebryany34e3ed12013-09-10 13:16:26 +0000156 // Must match the number of uses of DEFINE_STACK_MALLOC_FREE_WITH_CLASS_ID
157 COMPILER_CHECK(kNumberOfSizeClasses == 11);
158 static const uptr kMaxStackMallocSize = 1 << kMaxStackFrameSizeLog;
Kostya Serebryany244384d2013-04-11 11:39:19 +0000159
Kostya Serebryanyac3ae5d2013-09-12 07:11:58 +0000160 uptr hint_position_[kNumberOfSizeClasses];
161 uptr stack_size_log_;
Kostya Serebryany89de4572013-09-12 13:25:29 +0000162 // a bit is set if something was allocated from the corresponding size class.
Kostya Serebryany89de4572013-09-12 13:25:29 +0000163 bool needs_gc_;
Kostya Serebryany244384d2013-04-11 11:39:19 +0000164};
165
Kostya Serebryany9433af32013-09-13 06:32:26 +0000166FakeStack *GetTLSFakeStack();
167void SetTLSFakeStack(FakeStack *fs);
168
Kostya Serebryany244384d2013-04-11 11:39:19 +0000169} // namespace __asan
170
171#endif // ASAN_FAKE_STACK_H