blob: a7de158e65ce1d91bf8476c0a751e4b9e222b70f [file] [log] [blame]
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001//===-- ASanStackFrameLayout.cpp - helper for AddressSanitizer ------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Kostya Serebryany4fb78012013-12-06 09:00:17 +00006//
7//===----------------------------------------------------------------------===//
8//
9// Definition of ComputeASanStackFrameLayout (see ASanStackFrameLayout.h).
10//
11//===----------------------------------------------------------------------===//
12#include "llvm/Transforms/Utils/ASanStackFrameLayout.h"
13#include "llvm/ADT/SmallString.h"
Vitaly Bukad88e5202016-10-18 23:29:41 +000014#include "llvm/IR/DebugInfo.h"
Evgeniy Stepanov292acab2015-02-16 14:49:37 +000015#include "llvm/Support/MathExtras.h"
Vitaly Buka490fda32016-10-19 00:16:56 +000016#include "llvm/Support/ScopedPrinter.h"
Weiming Zhao45d4cb92015-11-24 18:57:06 +000017#include "llvm/Support/raw_ostream.h"
Kostya Serebryany4fb78012013-12-06 09:00:17 +000018#include <algorithm>
19
20namespace llvm {
21
22// We sort the stack variables by alignment (largest first) to minimize
23// unnecessary large gaps due to alignment.
24// It is tempting to also sort variables by size so that larger variables
25// have larger redzones at both ends. But reordering will make report analysis
26// harder, especially when temporary unnamed variables are present.
27// So, until we can provide more information (type, line number, etc)
28// for the stack variables we avoid reordering them too much.
29static inline bool CompareVars(const ASanStackVariableDescription &a,
30 const ASanStackVariableDescription &b) {
31 return a.Alignment > b.Alignment;
32}
33
34// We also force minimal alignment for all vars to kMinAlignment so that vars
35// with e.g. alignment 1 and alignment 16 do not get reordered by CompareVars.
36static const size_t kMinAlignment = 16;
37
Walter Lee9abeecc2017-11-18 01:13:18 +000038// We want to add a full redzone after every variable.
Kostya Serebryany4fb78012013-12-06 09:00:17 +000039// The larger the variable Size the larger is the redzone.
40// The resulting frame size is a multiple of Alignment.
Walter Lee9abeecc2017-11-18 01:13:18 +000041static size_t VarAndRedzoneSize(size_t Size, size_t Granularity,
42 size_t Alignment) {
Kostya Serebryany4fb78012013-12-06 09:00:17 +000043 size_t Res = 0;
44 if (Size <= 4) Res = 16;
45 else if (Size <= 16) Res = 32;
46 else if (Size <= 128) Res = Size + 32;
47 else if (Size <= 512) Res = Size + 64;
48 else if (Size <= 4096) Res = Size + 128;
49 else Res = Size + 256;
Walter Lee9abeecc2017-11-18 01:13:18 +000050 return alignTo(std::max(Res, 2 * Granularity), Alignment);
Kostya Serebryany4fb78012013-12-06 09:00:17 +000051}
52
Vitaly Bukadb331d82016-08-29 17:41:29 +000053ASanStackFrameLayout
Kostya Serebryany4fb78012013-12-06 09:00:17 +000054ComputeASanStackFrameLayout(SmallVectorImpl<ASanStackVariableDescription> &Vars,
Vitaly Bukadb331d82016-08-29 17:41:29 +000055 size_t Granularity, size_t MinHeaderSize) {
Kostya Serebryany4fb78012013-12-06 09:00:17 +000056 assert(Granularity >= 8 && Granularity <= 64 &&
57 (Granularity & (Granularity - 1)) == 0);
58 assert(MinHeaderSize >= 16 && (MinHeaderSize & (MinHeaderSize - 1)) == 0 &&
59 MinHeaderSize >= Granularity);
Vitaly Bukadb331d82016-08-29 17:41:29 +000060 const size_t NumVars = Vars.size();
Kostya Serebryany4fb78012013-12-06 09:00:17 +000061 assert(NumVars > 0);
62 for (size_t i = 0; i < NumVars; i++)
63 Vars[i].Alignment = std::max(Vars[i].Alignment, kMinAlignment);
64
65 std::stable_sort(Vars.begin(), Vars.end(), CompareVars);
Vitaly Bukadb331d82016-08-29 17:41:29 +000066
67 ASanStackFrameLayout Layout;
68 Layout.Granularity = Granularity;
69 Layout.FrameAlignment = std::max(Granularity, Vars[0].Alignment);
Kostya Serebryany4fb78012013-12-06 09:00:17 +000070 size_t Offset = std::max(std::max(MinHeaderSize, Granularity),
71 Vars[0].Alignment);
72 assert((Offset % Granularity) == 0);
Kostya Serebryany4fb78012013-12-06 09:00:17 +000073 for (size_t i = 0; i < NumVars; i++) {
74 bool IsLast = i == NumVars - 1;
75 size_t Alignment = std::max(Granularity, Vars[i].Alignment);
Kostya Serebryany152d48d2013-12-06 09:26:09 +000076 (void)Alignment; // Used only in asserts.
Kostya Serebryany4fb78012013-12-06 09:00:17 +000077 size_t Size = Vars[i].Size;
Kostya Serebryany4fb78012013-12-06 09:00:17 +000078 assert((Alignment & (Alignment - 1)) == 0);
Vitaly Bukadb331d82016-08-29 17:41:29 +000079 assert(Layout.FrameAlignment >= Alignment);
Kostya Serebryany4fb78012013-12-06 09:00:17 +000080 assert((Offset % Alignment) == 0);
81 assert(Size > 0);
Kostya Serebryany4fb78012013-12-06 09:00:17 +000082 size_t NextAlignment = IsLast ? Granularity
83 : std::max(Granularity, Vars[i + 1].Alignment);
Walter Lee9abeecc2017-11-18 01:13:18 +000084 size_t SizeWithRedzone = VarAndRedzoneSize(Size, Granularity,
85 NextAlignment);
Kostya Serebryany4fb78012013-12-06 09:00:17 +000086 Vars[i].Offset = Offset;
87 Offset += SizeWithRedzone;
88 }
89 if (Offset % MinHeaderSize) {
Vitaly Bukadb331d82016-08-29 17:41:29 +000090 Offset += MinHeaderSize - (Offset % MinHeaderSize);
Kostya Serebryany4fb78012013-12-06 09:00:17 +000091 }
Vitaly Bukadb331d82016-08-29 17:41:29 +000092 Layout.FrameSize = Offset;
93 assert((Layout.FrameSize % MinHeaderSize) == 0);
Vitaly Bukadb331d82016-08-29 17:41:29 +000094 return Layout;
95}
96
Vitaly Buka5910a922016-10-18 23:29:52 +000097SmallString<64> ComputeASanStackFrameDescription(
98 const SmallVectorImpl<ASanStackVariableDescription> &Vars) {
99 SmallString<2048> StackDescriptionStorage;
100 raw_svector_ostream StackDescription(StackDescriptionStorage);
101 StackDescription << Vars.size();
102
103 for (const auto &Var : Vars) {
104 std::string Name = Var.Name;
105 if (Var.Line) {
106 Name += ":";
Vitaly Buka490fda32016-10-19 00:16:56 +0000107 Name += to_string(Var.Line);
Vitaly Buka5910a922016-10-18 23:29:52 +0000108 }
109 StackDescription << " " << Var.Offset << " " << Var.Size << " "
110 << Name.size() << " " << Name;
111 }
112 return StackDescription.str();
113}
114
Vitaly Bukadb331d82016-08-29 17:41:29 +0000115SmallVector<uint8_t, 64>
116GetShadowBytes(const SmallVectorImpl<ASanStackVariableDescription> &Vars,
117 const ASanStackFrameLayout &Layout) {
Tim Northoverc10c3342016-08-29 19:12:20 +0000118 assert(Vars.size() > 0);
Vitaly Bukadb331d82016-08-29 17:41:29 +0000119 SmallVector<uint8_t, 64> SB;
120 SB.clear();
Vitaly Bukadb331d82016-08-29 17:41:29 +0000121 const size_t Granularity = Layout.Granularity;
122 SB.resize(Vars[0].Offset / Granularity, kAsanStackLeftRedzoneMagic);
123 for (const auto &Var : Vars) {
124 SB.resize(Var.Offset / Granularity, kAsanStackMidRedzoneMagic);
125
126 SB.resize(SB.size() + Var.Size / Granularity, 0);
127 if (Var.Size % Granularity)
128 SB.push_back(Var.Size % Granularity);
129 }
130 SB.resize(Layout.FrameSize / Granularity, kAsanStackRightRedzoneMagic);
131 return SB;
132}
133
134SmallVector<uint8_t, 64> GetShadowBytesAfterScope(
135 const SmallVectorImpl<ASanStackVariableDescription> &Vars,
136 const ASanStackFrameLayout &Layout) {
137 SmallVector<uint8_t, 64> SB = GetShadowBytes(Vars, Layout);
138 const size_t Granularity = Layout.Granularity;
139
140 for (const auto &Var : Vars) {
Vitaly Buka5910a922016-10-18 23:29:52 +0000141 assert(Var.LifetimeSize <= Var.Size);
Vitaly Bukadb331d82016-08-29 17:41:29 +0000142 const size_t LifetimeShadowSize =
143 (Var.LifetimeSize + Granularity - 1) / Granularity;
144 const size_t Offset = Var.Offset / Granularity;
145 std::fill(SB.begin() + Offset, SB.begin() + Offset + LifetimeShadowSize,
146 kAsanStackUseAfterScopeMagic);
147 }
148
149 return SB;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000150}
151
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000152} // llvm namespace