blob: ddc975cbed1a71db1224336b0b6a09e75f3046ad [file] [log] [blame]
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001//===-- DataFlowSanitizer.cpp - dynamic data flow analysis ----------------===//
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/// \file
10/// This file is a part of DataFlowSanitizer, a generalised dynamic data flow
11/// analysis.
12///
13/// Unlike other Sanitizer tools, this tool is not designed to detect a specific
14/// class of bugs on its own. Instead, it provides a generic dynamic data flow
15/// analysis framework to be used by clients to help detect application-specific
16/// issues within their own code.
17///
18/// The analysis is based on automatic propagation of data flow labels (also
19/// known as taint labels) through a program as it performs computation. Each
20/// byte of application memory is backed by two bytes of shadow memory which
21/// hold the label. On Linux/x86_64, memory is laid out as follows:
22///
23/// +--------------------+ 0x800000000000 (top of memory)
24/// | application memory |
25/// +--------------------+ 0x700000008000 (kAppAddr)
26/// | |
27/// | unused |
28/// | |
29/// +--------------------+ 0x200200000000 (kUnusedAddr)
30/// | union table |
31/// +--------------------+ 0x200000000000 (kUnionTableAddr)
32/// | shadow memory |
33/// +--------------------+ 0x000000010000 (kShadowAddr)
34/// | reserved by kernel |
35/// +--------------------+ 0x000000000000
36///
37/// To derive a shadow memory address from an application memory address,
38/// bits 44-46 are cleared to bring the address into the range
39/// [0x000000008000,0x100000000000). Then the address is shifted left by 1 to
40/// account for the double byte representation of shadow labels and move the
41/// address into the shadow memory range. See the function
42/// DataFlowSanitizer::getShadowAddress below.
43///
44/// For more information, please refer to the design document:
45/// http://clang.llvm.org/docs/DataFlowSanitizerDesign.html
46
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000047#include "llvm/ADT/DenseMap.h"
48#include "llvm/ADT/DenseSet.h"
49#include "llvm/ADT/DepthFirstIterator.h"
Peter Collingbourne28a10af2013-08-27 22:09:06 +000050#include "llvm/ADT/StringExtras.h"
Peter Collingbourne0826e602014-12-05 21:22:32 +000051#include "llvm/ADT/Triple.h"
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000052#include "llvm/Analysis/ValueTracking.h"
David Blaikiec6c6c7b2014-10-07 22:59:46 +000053#include "llvm/IR/DebugInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000054#include "llvm/IR/Dominators.h"
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000055#include "llvm/IR/IRBuilder.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000056#include "llvm/IR/InlineAsm.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000057#include "llvm/IR/InstVisitor.h"
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000058#include "llvm/IR/LLVMContext.h"
59#include "llvm/IR/MDBuilder.h"
60#include "llvm/IR/Type.h"
61#include "llvm/IR/Value.h"
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000062#include "llvm/Pass.h"
63#include "llvm/Support/CommandLine.h"
Alexey Samsonovb7dd3292014-07-09 19:40:08 +000064#include "llvm/Support/SpecialCaseList.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000065#include "llvm/Transforms/Instrumentation.h"
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000066#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Peter Collingbourneae66d572013-08-09 21:42:53 +000067#include "llvm/Transforms/Utils/Local.h"
Peter Collingbourne9947c492014-07-15 22:13:19 +000068#include <algorithm>
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000069#include <iterator>
Peter Collingbourne9947c492014-07-15 22:13:19 +000070#include <set>
71#include <utility>
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000072
73using namespace llvm;
74
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +000075// External symbol to be used when generating the shadow address for
76// architectures with multiple VMAs. Instead of using a constant integer
77// the runtime will set the external mask based on the VMA range.
78static const char *const kDFSanExternShadowPtrMask = "__dfsan_shadow_ptr_mask";
Adhemerval Zanella4754e2d2015-08-24 13:48:10 +000079
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +000080// The -dfsan-preserve-alignment flag controls whether this pass assumes that
81// alignment requirements provided by the input IR are correct. For example,
82// if the input IR contains a load with alignment 8, this flag will cause
83// the shadow load to have alignment 16. This flag is disabled by default as
84// we have unfortunately encountered too much code (including Clang itself;
85// see PR14291) which performs misaligned access.
86static cl::opt<bool> ClPreserveAlignment(
87 "dfsan-preserve-alignment",
88 cl::desc("respect alignment requirements provided by input IR"), cl::Hidden,
89 cl::init(false));
90
Alexey Samsonovb9b80272015-02-04 17:39:48 +000091// The ABI list files control how shadow parameters are passed. The pass treats
Peter Collingbourne68162e72013-08-14 18:54:12 +000092// every function labelled "uninstrumented" in the ABI list file as conforming
93// to the "native" (i.e. unsanitized) ABI. Unless the ABI list contains
94// additional annotations for those functions, a call to one of those functions
95// will produce a warning message, as the labelling behaviour of the function is
96// unknown. The other supported annotations are "functional" and "discard",
97// which are described below under DataFlowSanitizer::WrapperKind.
Alexey Samsonovb9b80272015-02-04 17:39:48 +000098static cl::list<std::string> ClABIListFiles(
Peter Collingbourne68162e72013-08-14 18:54:12 +000099 "dfsan-abilist",
100 cl::desc("File listing native ABI functions and how the pass treats them"),
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000101 cl::Hidden);
102
Peter Collingbourne68162e72013-08-14 18:54:12 +0000103// Controls whether the pass uses IA_Args or IA_TLS as the ABI for instrumented
104// functions (see DataFlowSanitizer::InstrumentedABI below).
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000105static cl::opt<bool> ClArgsABI(
106 "dfsan-args-abi",
107 cl::desc("Use the argument ABI rather than the TLS ABI"),
108 cl::Hidden);
109
Peter Collingbourne0be79e12013-11-21 23:20:54 +0000110// Controls whether the pass includes or ignores the labels of pointers in load
111// instructions.
112static cl::opt<bool> ClCombinePointerLabelsOnLoad(
113 "dfsan-combine-pointer-labels-on-load",
114 cl::desc("Combine the label of the pointer with the label of the data when "
115 "loading from memory."),
116 cl::Hidden, cl::init(true));
117
118// Controls whether the pass includes or ignores the labels of pointers in
119// stores instructions.
120static cl::opt<bool> ClCombinePointerLabelsOnStore(
121 "dfsan-combine-pointer-labels-on-store",
122 cl::desc("Combine the label of the pointer with the label of the data when "
123 "storing in memory."),
124 cl::Hidden, cl::init(false));
125
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000126static cl::opt<bool> ClDebugNonzeroLabels(
127 "dfsan-debug-nonzero-labels",
128 cl::desc("Insert calls to __dfsan_nonzero_label on observing a parameter, "
129 "load or return with a nonzero label"),
130 cl::Hidden);
131
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000132
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000133namespace {
134
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000135StringRef GetGlobalTypeString(const GlobalValue &G) {
136 // Types of GlobalVariables are always pointer types.
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000137 Type *GType = G.getValueType();
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000138 // For now we support blacklisting struct types only.
139 if (StructType *SGType = dyn_cast<StructType>(GType)) {
140 if (!SGType->isLiteral())
141 return SGType->getName();
142 }
143 return "<unknown type>";
144}
145
146class DFSanABIList {
147 std::unique_ptr<SpecialCaseList> SCL;
148
149 public:
Alexey Samsonovb9b80272015-02-04 17:39:48 +0000150 DFSanABIList() {}
151
152 void set(std::unique_ptr<SpecialCaseList> List) { SCL = std::move(List); }
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000153
154 /// Returns whether either this function or its source file are listed in the
155 /// given category.
Craig Topper6dc4a8bc2014-08-30 16:48:02 +0000156 bool isIn(const Function &F, StringRef Category) const {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000157 return isIn(*F.getParent(), Category) ||
158 SCL->inSection("fun", F.getName(), Category);
159 }
160
161 /// Returns whether this global alias is listed in the given category.
162 ///
163 /// If GA aliases a function, the alias's name is matched as a function name
164 /// would be. Similarly, aliases of globals are matched like globals.
Craig Topper6dc4a8bc2014-08-30 16:48:02 +0000165 bool isIn(const GlobalAlias &GA, StringRef Category) const {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000166 if (isIn(*GA.getParent(), Category))
167 return true;
168
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000169 if (isa<FunctionType>(GA.getValueType()))
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000170 return SCL->inSection("fun", GA.getName(), Category);
171
172 return SCL->inSection("global", GA.getName(), Category) ||
173 SCL->inSection("type", GetGlobalTypeString(GA), Category);
174 }
175
176 /// Returns whether this module is listed in the given category.
Craig Topper6dc4a8bc2014-08-30 16:48:02 +0000177 bool isIn(const Module &M, StringRef Category) const {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000178 return SCL->inSection("src", M.getModuleIdentifier(), Category);
179 }
180};
181
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000182class DataFlowSanitizer : public ModulePass {
183 friend struct DFSanFunction;
184 friend class DFSanVisitor;
185
186 enum {
187 ShadowWidth = 16
188 };
189
Peter Collingbourne68162e72013-08-14 18:54:12 +0000190 /// Which ABI should be used for instrumented functions?
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000191 enum InstrumentedABI {
Peter Collingbourne68162e72013-08-14 18:54:12 +0000192 /// Argument and return value labels are passed through additional
193 /// arguments and by modifying the return type.
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000194 IA_Args,
Peter Collingbourne68162e72013-08-14 18:54:12 +0000195
196 /// Argument and return value labels are passed through TLS variables
197 /// __dfsan_arg_tls and __dfsan_retval_tls.
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000198 IA_TLS
199 };
200
Peter Collingbourne68162e72013-08-14 18:54:12 +0000201 /// How should calls to uninstrumented functions be handled?
202 enum WrapperKind {
203 /// This function is present in an uninstrumented form but we don't know
204 /// how it should be handled. Print a warning and call the function anyway.
205 /// Don't label the return value.
206 WK_Warning,
207
208 /// This function does not write to (user-accessible) memory, and its return
209 /// value is unlabelled.
210 WK_Discard,
211
212 /// This function does not write to (user-accessible) memory, and the label
213 /// of its return value is the union of the label of its arguments.
214 WK_Functional,
215
216 /// Instead of calling the function, a custom wrapper __dfsw_F is called,
217 /// where F is the name of the function. This function may wrap the
218 /// original function or provide its own implementation. This is similar to
219 /// the IA_Args ABI, except that IA_Args uses a struct return type to
220 /// pass the return value shadow in a register, while WK_Custom uses an
221 /// extra pointer argument to return the shadow. This allows the wrapped
222 /// form of the function type to be expressed in C.
223 WK_Custom
224 };
225
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000226 Module *Mod;
227 LLVMContext *Ctx;
228 IntegerType *ShadowTy;
229 PointerType *ShadowPtrTy;
230 IntegerType *IntptrTy;
231 ConstantInt *ZeroShadow;
232 ConstantInt *ShadowPtrMask;
233 ConstantInt *ShadowPtrMul;
234 Constant *ArgTLS;
235 Constant *RetvalTLS;
236 void *(*GetArgTLSPtr)();
237 void *(*GetRetvalTLSPtr)();
238 Constant *GetArgTLS;
239 Constant *GetRetvalTLS;
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000240 Constant *ExternalShadowMask;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000241 FunctionType *DFSanUnionFnTy;
242 FunctionType *DFSanUnionLoadFnTy;
Peter Collingbourne68162e72013-08-14 18:54:12 +0000243 FunctionType *DFSanUnimplementedFnTy;
Peter Collingbourne9d31d6f2013-08-14 20:51:38 +0000244 FunctionType *DFSanSetLabelFnTy;
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000245 FunctionType *DFSanNonzeroLabelFnTy;
Peter Collingbournea1099842014-11-05 17:21:00 +0000246 FunctionType *DFSanVarargWrapperFnTy;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000247 Constant *DFSanUnionFn;
Peter Collingbournedf240b22014-08-06 00:33:40 +0000248 Constant *DFSanCheckedUnionFn;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000249 Constant *DFSanUnionLoadFn;
Peter Collingbourne68162e72013-08-14 18:54:12 +0000250 Constant *DFSanUnimplementedFn;
Peter Collingbourne9d31d6f2013-08-14 20:51:38 +0000251 Constant *DFSanSetLabelFn;
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000252 Constant *DFSanNonzeroLabelFn;
Peter Collingbournea1099842014-11-05 17:21:00 +0000253 Constant *DFSanVarargWrapperFn;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000254 MDNode *ColdCallWeights;
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000255 DFSanABIList ABIList;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000256 DenseMap<Value *, Function *> UnwrappedFnMap;
Reid Kleckneree4930b2017-05-02 22:07:37 +0000257 AttrBuilder ReadOnlyNoneAttrs;
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000258 bool DFSanRuntimeShadowMask;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000259
260 Value *getShadowAddress(Value *Addr, Instruction *Pos);
Peter Collingbourne59b12622013-08-22 20:08:08 +0000261 bool isInstrumented(const Function *F);
262 bool isInstrumented(const GlobalAlias *GA);
Peter Collingbourne68162e72013-08-14 18:54:12 +0000263 FunctionType *getArgsFunctionType(FunctionType *T);
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000264 FunctionType *getTrampolineFunctionType(FunctionType *T);
Peter Collingbourne68162e72013-08-14 18:54:12 +0000265 FunctionType *getCustomFunctionType(FunctionType *T);
266 InstrumentedABI getInstrumentedABI();
267 WrapperKind getWrapperKind(Function *F);
Peter Collingbourne59b12622013-08-22 20:08:08 +0000268 void addGlobalNamePrefix(GlobalValue *GV);
Peter Collingbourne761a4fc2013-08-22 20:08:11 +0000269 Function *buildWrapperFunction(Function *F, StringRef NewFName,
270 GlobalValue::LinkageTypes NewFLink,
271 FunctionType *NewFT);
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000272 Constant *getOrBuildTrampolineFunction(FunctionType *FT, StringRef FName);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000273
Dmitry Vyukov96a70842013-08-13 16:52:41 +0000274 public:
Alexey Samsonovb9b80272015-02-04 17:39:48 +0000275 DataFlowSanitizer(
276 const std::vector<std::string> &ABIListFiles = std::vector<std::string>(),
277 void *(*getArgTLS)() = nullptr, void *(*getRetValTLS)() = nullptr);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000278 static char ID;
Craig Topper3e4c6972014-03-05 09:10:37 +0000279 bool doInitialization(Module &M) override;
280 bool runOnModule(Module &M) override;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000281};
282
283struct DFSanFunction {
284 DataFlowSanitizer &DFS;
285 Function *F;
Peter Collingbourne705a1ae2014-07-15 04:41:17 +0000286 DominatorTree DT;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000287 DataFlowSanitizer::InstrumentedABI IA;
Peter Collingbourne68162e72013-08-14 18:54:12 +0000288 bool IsNativeABI;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000289 Value *ArgTLSPtr;
290 Value *RetvalTLSPtr;
Peter Collingbourne68162e72013-08-14 18:54:12 +0000291 AllocaInst *LabelReturnAlloca;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000292 DenseMap<Value *, Value *> ValShadowMap;
293 DenseMap<AllocaInst *, AllocaInst *> AllocaShadowMap;
294 std::vector<std::pair<PHINode *, PHINode *> > PHIFixups;
295 DenseSet<Instruction *> SkipInsts;
Peter Collingbournefab565a2014-08-22 01:18:18 +0000296 std::vector<Value *> NonZeroChecks;
Peter Collingbournedf240b22014-08-06 00:33:40 +0000297 bool AvoidNewBlocks;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000298
Peter Collingbourne705a1ae2014-07-15 04:41:17 +0000299 struct CachedCombinedShadow {
300 BasicBlock *Block;
301 Value *Shadow;
302 };
303 DenseMap<std::pair<Value *, Value *>, CachedCombinedShadow>
304 CachedCombinedShadows;
Peter Collingbourne9947c492014-07-15 22:13:19 +0000305 DenseMap<Value *, std::set<Value *>> ShadowElements;
Peter Collingbourne705a1ae2014-07-15 04:41:17 +0000306
Peter Collingbourne68162e72013-08-14 18:54:12 +0000307 DFSanFunction(DataFlowSanitizer &DFS, Function *F, bool IsNativeABI)
308 : DFS(DFS), F(F), IA(DFS.getInstrumentedABI()),
Craig Topperf40110f2014-04-25 05:29:35 +0000309 IsNativeABI(IsNativeABI), ArgTLSPtr(nullptr), RetvalTLSPtr(nullptr),
Peter Collingbourne705a1ae2014-07-15 04:41:17 +0000310 LabelReturnAlloca(nullptr) {
311 DT.recalculate(*F);
Peter Collingbournedf240b22014-08-06 00:33:40 +0000312 // FIXME: Need to track down the register allocator issue which causes poor
313 // performance in pathological cases with large numbers of basic blocks.
314 AvoidNewBlocks = F->size() > 1000;
Peter Collingbourne705a1ae2014-07-15 04:41:17 +0000315 }
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000316 Value *getArgTLSPtr();
317 Value *getArgTLS(unsigned Index, Instruction *Pos);
318 Value *getRetvalTLS();
319 Value *getShadow(Value *V);
320 void setShadow(Instruction *I, Value *Shadow);
Peter Collingbourne83def1c2014-07-15 04:41:14 +0000321 Value *combineShadows(Value *V1, Value *V2, Instruction *Pos);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000322 Value *combineOperandShadows(Instruction *Inst);
323 Value *loadShadow(Value *ShadowAddr, uint64_t Size, uint64_t Align,
324 Instruction *Pos);
325 void storeShadow(Value *Addr, uint64_t Size, uint64_t Align, Value *Shadow,
326 Instruction *Pos);
327};
328
329class DFSanVisitor : public InstVisitor<DFSanVisitor> {
Dmitry Vyukov96a70842013-08-13 16:52:41 +0000330 public:
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000331 DFSanFunction &DFSF;
332 DFSanVisitor(DFSanFunction &DFSF) : DFSF(DFSF) {}
333
Matt Arsenault3c1fc762017-04-10 22:27:50 +0000334 const DataLayout &getDataLayout() const {
335 return DFSF.F->getParent()->getDataLayout();
336 }
337
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000338 void visitOperandShadowInst(Instruction &I);
339
340 void visitBinaryOperator(BinaryOperator &BO);
341 void visitCastInst(CastInst &CI);
342 void visitCmpInst(CmpInst &CI);
343 void visitGetElementPtrInst(GetElementPtrInst &GEPI);
344 void visitLoadInst(LoadInst &LI);
345 void visitStoreInst(StoreInst &SI);
346 void visitReturnInst(ReturnInst &RI);
347 void visitCallSite(CallSite CS);
348 void visitPHINode(PHINode &PN);
349 void visitExtractElementInst(ExtractElementInst &I);
350 void visitInsertElementInst(InsertElementInst &I);
351 void visitShuffleVectorInst(ShuffleVectorInst &I);
352 void visitExtractValueInst(ExtractValueInst &I);
353 void visitInsertValueInst(InsertValueInst &I);
354 void visitAllocaInst(AllocaInst &I);
355 void visitSelectInst(SelectInst &I);
Peter Collingbourne9d31d6f2013-08-14 20:51:38 +0000356 void visitMemSetInst(MemSetInst &I);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000357 void visitMemTransferInst(MemTransferInst &I);
358};
359
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000360}
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000361
362char DataFlowSanitizer::ID;
363INITIALIZE_PASS(DataFlowSanitizer, "dfsan",
364 "DataFlowSanitizer: dynamic data flow analysis.", false, false)
365
Alexey Samsonovb9b80272015-02-04 17:39:48 +0000366ModulePass *
367llvm::createDataFlowSanitizerPass(const std::vector<std::string> &ABIListFiles,
368 void *(*getArgTLS)(),
369 void *(*getRetValTLS)()) {
370 return new DataFlowSanitizer(ABIListFiles, getArgTLS, getRetValTLS);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000371}
372
Alexey Samsonovb9b80272015-02-04 17:39:48 +0000373DataFlowSanitizer::DataFlowSanitizer(
374 const std::vector<std::string> &ABIListFiles, void *(*getArgTLS)(),
375 void *(*getRetValTLS)())
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000376 : ModulePass(ID), GetArgTLSPtr(getArgTLS), GetRetvalTLSPtr(getRetValTLS),
377 DFSanRuntimeShadowMask(false) {
Alexey Samsonovb9b80272015-02-04 17:39:48 +0000378 std::vector<std::string> AllABIListFiles(std::move(ABIListFiles));
379 AllABIListFiles.insert(AllABIListFiles.end(), ClABIListFiles.begin(),
380 ClABIListFiles.end());
381 ABIList.set(SpecialCaseList::createOrDie(AllABIListFiles));
Peter Collingbourne68162e72013-08-14 18:54:12 +0000382}
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000383
Peter Collingbourne68162e72013-08-14 18:54:12 +0000384FunctionType *DataFlowSanitizer::getArgsFunctionType(FunctionType *T) {
Benjamin Kramer6cd780f2015-02-17 15:29:18 +0000385 llvm::SmallVector<Type *, 4> ArgTypes(T->param_begin(), T->param_end());
386 ArgTypes.append(T->getNumParams(), ShadowTy);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000387 if (T->isVarArg())
388 ArgTypes.push_back(ShadowPtrTy);
389 Type *RetType = T->getReturnType();
390 if (!RetType->isVoidTy())
Serge Gueltone38003f2017-05-09 19:31:13 +0000391 RetType = StructType::get(RetType, ShadowTy);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000392 return FunctionType::get(RetType, ArgTypes, T->isVarArg());
393}
394
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000395FunctionType *DataFlowSanitizer::getTrampolineFunctionType(FunctionType *T) {
396 assert(!T->isVarArg());
397 llvm::SmallVector<Type *, 4> ArgTypes;
398 ArgTypes.push_back(T->getPointerTo());
Benjamin Kramer6cd780f2015-02-17 15:29:18 +0000399 ArgTypes.append(T->param_begin(), T->param_end());
400 ArgTypes.append(T->getNumParams(), ShadowTy);
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000401 Type *RetType = T->getReturnType();
402 if (!RetType->isVoidTy())
403 ArgTypes.push_back(ShadowPtrTy);
404 return FunctionType::get(T->getReturnType(), ArgTypes, false);
405}
406
Peter Collingbourne68162e72013-08-14 18:54:12 +0000407FunctionType *DataFlowSanitizer::getCustomFunctionType(FunctionType *T) {
Peter Collingbourne68162e72013-08-14 18:54:12 +0000408 llvm::SmallVector<Type *, 4> ArgTypes;
Alexey Samsonov9b7e2b52013-08-28 11:25:12 +0000409 for (FunctionType::param_iterator i = T->param_begin(), e = T->param_end();
410 i != e; ++i) {
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000411 FunctionType *FT;
Alexey Samsonov9b7e2b52013-08-28 11:25:12 +0000412 if (isa<PointerType>(*i) && (FT = dyn_cast<FunctionType>(cast<PointerType>(
413 *i)->getElementType()))) {
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000414 ArgTypes.push_back(getTrampolineFunctionType(FT)->getPointerTo());
415 ArgTypes.push_back(Type::getInt8PtrTy(*Ctx));
416 } else {
417 ArgTypes.push_back(*i);
418 }
419 }
Peter Collingbourne68162e72013-08-14 18:54:12 +0000420 for (unsigned i = 0, e = T->getNumParams(); i != e; ++i)
421 ArgTypes.push_back(ShadowTy);
Peter Collingbournedd3486e2014-10-30 13:22:57 +0000422 if (T->isVarArg())
423 ArgTypes.push_back(ShadowPtrTy);
Peter Collingbourne68162e72013-08-14 18:54:12 +0000424 Type *RetType = T->getReturnType();
425 if (!RetType->isVoidTy())
426 ArgTypes.push_back(ShadowPtrTy);
Peter Collingbournedd3486e2014-10-30 13:22:57 +0000427 return FunctionType::get(T->getReturnType(), ArgTypes, T->isVarArg());
Peter Collingbourne68162e72013-08-14 18:54:12 +0000428}
429
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000430bool DataFlowSanitizer::doInitialization(Module &M) {
Peter Collingbourne0826e602014-12-05 21:22:32 +0000431 llvm::Triple TargetTriple(M.getTargetTriple());
432 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
433 bool IsMIPS64 = TargetTriple.getArch() == llvm::Triple::mips64 ||
434 TargetTriple.getArch() == llvm::Triple::mips64el;
Adhemerval Zanellabfe1eaf2015-07-30 20:49:35 +0000435 bool IsAArch64 = TargetTriple.getArch() == llvm::Triple::aarch64 ||
436 TargetTriple.getArch() == llvm::Triple::aarch64_be;
Peter Collingbourne0826e602014-12-05 21:22:32 +0000437
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000438 const DataLayout &DL = M.getDataLayout();
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000439
440 Mod = &M;
441 Ctx = &M.getContext();
442 ShadowTy = IntegerType::get(*Ctx, ShadowWidth);
443 ShadowPtrTy = PointerType::getUnqual(ShadowTy);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000444 IntptrTy = DL.getIntPtrType(*Ctx);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000445 ZeroShadow = ConstantInt::getSigned(ShadowTy, 0);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000446 ShadowPtrMul = ConstantInt::getSigned(IntptrTy, ShadowWidth / 8);
Peter Collingbourne0826e602014-12-05 21:22:32 +0000447 if (IsX86_64)
448 ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0x700000000000LL);
449 else if (IsMIPS64)
450 ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0xF000000000LL);
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000451 // AArch64 supports multiple VMAs and the shadow mask is set at runtime.
Adhemerval Zanellabfe1eaf2015-07-30 20:49:35 +0000452 else if (IsAArch64)
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000453 DFSanRuntimeShadowMask = true;
Peter Collingbourne0826e602014-12-05 21:22:32 +0000454 else
455 report_fatal_error("unsupported triple");
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000456
457 Type *DFSanUnionArgs[2] = { ShadowTy, ShadowTy };
458 DFSanUnionFnTy =
459 FunctionType::get(ShadowTy, DFSanUnionArgs, /*isVarArg=*/ false);
460 Type *DFSanUnionLoadArgs[2] = { ShadowPtrTy, IntptrTy };
461 DFSanUnionLoadFnTy =
462 FunctionType::get(ShadowTy, DFSanUnionLoadArgs, /*isVarArg=*/ false);
Peter Collingbourne68162e72013-08-14 18:54:12 +0000463 DFSanUnimplementedFnTy = FunctionType::get(
464 Type::getVoidTy(*Ctx), Type::getInt8PtrTy(*Ctx), /*isVarArg=*/false);
Peter Collingbourne9d31d6f2013-08-14 20:51:38 +0000465 Type *DFSanSetLabelArgs[3] = { ShadowTy, Type::getInt8PtrTy(*Ctx), IntptrTy };
466 DFSanSetLabelFnTy = FunctionType::get(Type::getVoidTy(*Ctx),
467 DFSanSetLabelArgs, /*isVarArg=*/false);
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000468 DFSanNonzeroLabelFnTy = FunctionType::get(
Craig Toppere1d12942014-08-27 05:25:25 +0000469 Type::getVoidTy(*Ctx), None, /*isVarArg=*/false);
Peter Collingbournea1099842014-11-05 17:21:00 +0000470 DFSanVarargWrapperFnTy = FunctionType::get(
471 Type::getVoidTy(*Ctx), Type::getInt8PtrTy(*Ctx), /*isVarArg=*/false);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000472
473 if (GetArgTLSPtr) {
474 Type *ArgTLSTy = ArrayType::get(ShadowTy, 64);
Craig Topperf40110f2014-04-25 05:29:35 +0000475 ArgTLS = nullptr;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000476 GetArgTLS = ConstantExpr::getIntToPtr(
477 ConstantInt::get(IntptrTy, uintptr_t(GetArgTLSPtr)),
478 PointerType::getUnqual(
Serge Guelton778ece82017-05-10 13:24:17 +0000479 FunctionType::get(PointerType::getUnqual(ArgTLSTy), false)));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000480 }
481 if (GetRetvalTLSPtr) {
Craig Topperf40110f2014-04-25 05:29:35 +0000482 RetvalTLS = nullptr;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000483 GetRetvalTLS = ConstantExpr::getIntToPtr(
484 ConstantInt::get(IntptrTy, uintptr_t(GetRetvalTLSPtr)),
485 PointerType::getUnqual(
Serge Guelton778ece82017-05-10 13:24:17 +0000486 FunctionType::get(PointerType::getUnqual(ShadowTy), false)));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000487 }
488
489 ColdCallWeights = MDBuilder(*Ctx).createBranchWeights(1, 1000);
490 return true;
491}
492
Peter Collingbourne59b12622013-08-22 20:08:08 +0000493bool DataFlowSanitizer::isInstrumented(const Function *F) {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000494 return !ABIList.isIn(*F, "uninstrumented");
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000495}
496
Peter Collingbourne59b12622013-08-22 20:08:08 +0000497bool DataFlowSanitizer::isInstrumented(const GlobalAlias *GA) {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000498 return !ABIList.isIn(*GA, "uninstrumented");
Peter Collingbourne59b12622013-08-22 20:08:08 +0000499}
500
Peter Collingbourne68162e72013-08-14 18:54:12 +0000501DataFlowSanitizer::InstrumentedABI DataFlowSanitizer::getInstrumentedABI() {
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000502 return ClArgsABI ? IA_Args : IA_TLS;
503}
504
Peter Collingbourne68162e72013-08-14 18:54:12 +0000505DataFlowSanitizer::WrapperKind DataFlowSanitizer::getWrapperKind(Function *F) {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000506 if (ABIList.isIn(*F, "functional"))
Peter Collingbourne68162e72013-08-14 18:54:12 +0000507 return WK_Functional;
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000508 if (ABIList.isIn(*F, "discard"))
Peter Collingbourne68162e72013-08-14 18:54:12 +0000509 return WK_Discard;
Lorenzo Martignoni40d3dee2014-09-30 12:33:16 +0000510 if (ABIList.isIn(*F, "custom"))
Peter Collingbourne68162e72013-08-14 18:54:12 +0000511 return WK_Custom;
512
513 return WK_Warning;
514}
515
Peter Collingbourne59b12622013-08-22 20:08:08 +0000516void DataFlowSanitizer::addGlobalNamePrefix(GlobalValue *GV) {
517 std::string GVName = GV->getName(), Prefix = "dfs$";
518 GV->setName(Prefix + GVName);
519
520 // Try to change the name of the function in module inline asm. We only do
521 // this for specific asm directives, currently only ".symver", to try to avoid
522 // corrupting asm which happens to contain the symbol name as a substring.
523 // Note that the substitution for .symver assumes that the versioned symbol
524 // also has an instrumented name.
525 std::string Asm = GV->getParent()->getModuleInlineAsm();
526 std::string SearchStr = ".symver " + GVName + ",";
527 size_t Pos = Asm.find(SearchStr);
528 if (Pos != std::string::npos) {
529 Asm.replace(Pos, SearchStr.size(),
530 ".symver " + Prefix + GVName + "," + Prefix);
531 GV->getParent()->setModuleInlineAsm(Asm);
532 }
533}
534
Peter Collingbourne761a4fc2013-08-22 20:08:11 +0000535Function *
536DataFlowSanitizer::buildWrapperFunction(Function *F, StringRef NewFName,
537 GlobalValue::LinkageTypes NewFLink,
538 FunctionType *NewFT) {
539 FunctionType *FT = F->getFunctionType();
540 Function *NewF = Function::Create(NewFT, NewFLink, NewFName,
541 F->getParent());
542 NewF->copyAttributesFrom(F);
543 NewF->removeAttributes(
Reid Klecknerb5180542017-03-21 16:57:19 +0000544 AttributeList::ReturnIndex,
Reid Kleckneree4930b2017-05-02 22:07:37 +0000545 AttributeFuncs::typeIncompatible(NewFT->getReturnType()));
Peter Collingbourne761a4fc2013-08-22 20:08:11 +0000546
547 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", NewF);
Peter Collingbournea1099842014-11-05 17:21:00 +0000548 if (F->isVarArg()) {
Reid Kleckneree4930b2017-05-02 22:07:37 +0000549 NewF->removeAttributes(AttributeList::FunctionIndex,
550 AttrBuilder().addAttribute("split-stack"));
Peter Collingbournea1099842014-11-05 17:21:00 +0000551 CallInst::Create(DFSanVarargWrapperFn,
552 IRBuilder<>(BB).CreateGlobalStringPtr(F->getName()), "",
553 BB);
554 new UnreachableInst(*Ctx, BB);
555 } else {
556 std::vector<Value *> Args;
557 unsigned n = FT->getNumParams();
558 for (Function::arg_iterator ai = NewF->arg_begin(); n != 0; ++ai, --n)
559 Args.push_back(&*ai);
560 CallInst *CI = CallInst::Create(F, Args, "", BB);
561 if (FT->getReturnType()->isVoidTy())
562 ReturnInst::Create(*Ctx, BB);
563 else
564 ReturnInst::Create(*Ctx, CI, BB);
565 }
Peter Collingbourne761a4fc2013-08-22 20:08:11 +0000566
567 return NewF;
568}
569
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000570Constant *DataFlowSanitizer::getOrBuildTrampolineFunction(FunctionType *FT,
571 StringRef FName) {
572 FunctionType *FTT = getTrampolineFunctionType(FT);
573 Constant *C = Mod->getOrInsertFunction(FName, FTT);
574 Function *F = dyn_cast<Function>(C);
575 if (F && F->isDeclaration()) {
576 F->setLinkage(GlobalValue::LinkOnceODRLinkage);
577 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F);
578 std::vector<Value *> Args;
579 Function::arg_iterator AI = F->arg_begin(); ++AI;
580 for (unsigned N = FT->getNumParams(); N != 0; ++AI, --N)
581 Args.push_back(&*AI);
Reid Kleckner45707d42017-03-16 22:59:15 +0000582 CallInst *CI = CallInst::Create(&*F->arg_begin(), Args, "", BB);
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000583 ReturnInst *RI;
584 if (FT->getReturnType()->isVoidTy())
585 RI = ReturnInst::Create(*Ctx, BB);
586 else
587 RI = ReturnInst::Create(*Ctx, CI, BB);
588
589 DFSanFunction DFSF(*this, F, /*IsNativeABI=*/true);
590 Function::arg_iterator ValAI = F->arg_begin(), ShadowAI = AI; ++ValAI;
591 for (unsigned N = FT->getNumParams(); N != 0; ++ValAI, ++ShadowAI, --N)
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000592 DFSF.ValShadowMap[&*ValAI] = &*ShadowAI;
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000593 DFSanVisitor(DFSF).visitCallInst(*CI);
594 if (!FT->getReturnType()->isVoidTy())
595 new StoreInst(DFSF.getShadow(RI->getReturnValue()),
Reid Kleckner45707d42017-03-16 22:59:15 +0000596 &*std::prev(F->arg_end()), RI);
Peter Collingbourne28a10af2013-08-27 22:09:06 +0000597 }
598
599 return C;
600}
601
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000602bool DataFlowSanitizer::runOnModule(Module &M) {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +0000603 if (ABIList.isIn(M, "skip"))
Peter Collingbourne68162e72013-08-14 18:54:12 +0000604 return false;
605
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000606 if (!GetArgTLSPtr) {
607 Type *ArgTLSTy = ArrayType::get(ShadowTy, 64);
608 ArgTLS = Mod->getOrInsertGlobal("__dfsan_arg_tls", ArgTLSTy);
609 if (GlobalVariable *G = dyn_cast<GlobalVariable>(ArgTLS))
610 G->setThreadLocalMode(GlobalVariable::InitialExecTLSModel);
611 }
612 if (!GetRetvalTLSPtr) {
613 RetvalTLS = Mod->getOrInsertGlobal("__dfsan_retval_tls", ShadowTy);
614 if (GlobalVariable *G = dyn_cast<GlobalVariable>(RetvalTLS))
615 G->setThreadLocalMode(GlobalVariable::InitialExecTLSModel);
616 }
617
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000618 ExternalShadowMask =
619 Mod->getOrInsertGlobal(kDFSanExternShadowPtrMask, IntptrTy);
620
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000621 DFSanUnionFn = Mod->getOrInsertFunction("__dfsan_union", DFSanUnionFnTy);
622 if (Function *F = dyn_cast<Function>(DFSanUnionFn)) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000623 F->addAttribute(AttributeList::FunctionIndex, Attribute::NoUnwind);
624 F->addAttribute(AttributeList::FunctionIndex, Attribute::ReadNone);
625 F->addAttribute(AttributeList::ReturnIndex, Attribute::ZExt);
Reid Klecknera0b45f42017-05-03 18:17:31 +0000626 F->addParamAttr(0, Attribute::ZExt);
627 F->addParamAttr(1, Attribute::ZExt);
Peter Collingbournedf240b22014-08-06 00:33:40 +0000628 }
629 DFSanCheckedUnionFn = Mod->getOrInsertFunction("dfsan_union", DFSanUnionFnTy);
630 if (Function *F = dyn_cast<Function>(DFSanCheckedUnionFn)) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000631 F->addAttribute(AttributeList::FunctionIndex, Attribute::NoUnwind);
632 F->addAttribute(AttributeList::FunctionIndex, Attribute::ReadNone);
633 F->addAttribute(AttributeList::ReturnIndex, Attribute::ZExt);
Reid Klecknera0b45f42017-05-03 18:17:31 +0000634 F->addParamAttr(0, Attribute::ZExt);
635 F->addParamAttr(1, Attribute::ZExt);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000636 }
637 DFSanUnionLoadFn =
638 Mod->getOrInsertFunction("__dfsan_union_load", DFSanUnionLoadFnTy);
639 if (Function *F = dyn_cast<Function>(DFSanUnionLoadFn)) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000640 F->addAttribute(AttributeList::FunctionIndex, Attribute::NoUnwind);
641 F->addAttribute(AttributeList::FunctionIndex, Attribute::ReadOnly);
642 F->addAttribute(AttributeList::ReturnIndex, Attribute::ZExt);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000643 }
Peter Collingbourne68162e72013-08-14 18:54:12 +0000644 DFSanUnimplementedFn =
645 Mod->getOrInsertFunction("__dfsan_unimplemented", DFSanUnimplementedFnTy);
Peter Collingbourne9d31d6f2013-08-14 20:51:38 +0000646 DFSanSetLabelFn =
647 Mod->getOrInsertFunction("__dfsan_set_label", DFSanSetLabelFnTy);
648 if (Function *F = dyn_cast<Function>(DFSanSetLabelFn)) {
Reid Klecknera0b45f42017-05-03 18:17:31 +0000649 F->addParamAttr(0, Attribute::ZExt);
Peter Collingbourne9d31d6f2013-08-14 20:51:38 +0000650 }
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000651 DFSanNonzeroLabelFn =
652 Mod->getOrInsertFunction("__dfsan_nonzero_label", DFSanNonzeroLabelFnTy);
Peter Collingbournea1099842014-11-05 17:21:00 +0000653 DFSanVarargWrapperFn = Mod->getOrInsertFunction("__dfsan_vararg_wrapper",
654 DFSanVarargWrapperFnTy);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000655
656 std::vector<Function *> FnsToInstrument;
Peter Collingbourne68162e72013-08-14 18:54:12 +0000657 llvm::SmallPtrSet<Function *, 2> FnsWithNativeABI;
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000658 for (Function &i : M) {
659 if (!i.isIntrinsic() &&
660 &i != DFSanUnionFn &&
661 &i != DFSanCheckedUnionFn &&
662 &i != DFSanUnionLoadFn &&
663 &i != DFSanUnimplementedFn &&
664 &i != DFSanSetLabelFn &&
665 &i != DFSanNonzeroLabelFn &&
666 &i != DFSanVarargWrapperFn)
667 FnsToInstrument.push_back(&i);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000668 }
669
Peter Collingbourne34f0c312013-08-22 20:08:15 +0000670 // Give function aliases prefixes when necessary, and build wrappers where the
671 // instrumentedness is inconsistent.
Peter Collingbourne59b12622013-08-22 20:08:08 +0000672 for (Module::alias_iterator i = M.alias_begin(), e = M.alias_end(); i != e;) {
673 GlobalAlias *GA = &*i;
674 ++i;
675 // Don't stop on weak. We assume people aren't playing games with the
676 // instrumentedness of overridden weak aliases.
Peter Collingbourne2e28edf2014-07-10 01:30:39 +0000677 if (auto F = dyn_cast<Function>(GA->getBaseObject())) {
Peter Collingbourne59b12622013-08-22 20:08:08 +0000678 bool GAInst = isInstrumented(GA), FInst = isInstrumented(F);
679 if (GAInst && FInst) {
680 addGlobalNamePrefix(GA);
Peter Collingbourne34f0c312013-08-22 20:08:15 +0000681 } else if (GAInst != FInst) {
682 // Non-instrumented alias of an instrumented function, or vice versa.
683 // Replace the alias with a native-ABI wrapper of the aliasee. The pass
684 // below will take care of instrumenting it.
685 Function *NewF =
686 buildWrapperFunction(F, "", GA->getLinkage(), F->getFunctionType());
Peter Collingbourne2e28edf2014-07-10 01:30:39 +0000687 GA->replaceAllUsesWith(ConstantExpr::getBitCast(NewF, GA->getType()));
Peter Collingbourne34f0c312013-08-22 20:08:15 +0000688 NewF->takeName(GA);
689 GA->eraseFromParent();
690 FnsToInstrument.push_back(NewF);
Peter Collingbourne59b12622013-08-22 20:08:08 +0000691 }
692 }
693 }
694
Reid Kleckneree4930b2017-05-02 22:07:37 +0000695 ReadOnlyNoneAttrs.addAttribute(Attribute::ReadOnly)
696 .addAttribute(Attribute::ReadNone);
Peter Collingbourne68162e72013-08-14 18:54:12 +0000697
698 // First, change the ABI of every function in the module. ABI-listed
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000699 // functions keep their original ABI and get a wrapper function.
700 for (std::vector<Function *>::iterator i = FnsToInstrument.begin(),
701 e = FnsToInstrument.end();
702 i != e; ++i) {
703 Function &F = **i;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000704 FunctionType *FT = F.getFunctionType();
Peter Collingbourne68162e72013-08-14 18:54:12 +0000705
Peter Collingbourne59b12622013-08-22 20:08:08 +0000706 bool IsZeroArgsVoidRet = (FT->getNumParams() == 0 && !FT->isVarArg() &&
707 FT->getReturnType()->isVoidTy());
Peter Collingbourne68162e72013-08-14 18:54:12 +0000708
709 if (isInstrumented(&F)) {
Peter Collingbourne59b12622013-08-22 20:08:08 +0000710 // Instrumented functions get a 'dfs$' prefix. This allows us to more
711 // easily identify cases of mismatching ABIs.
712 if (getInstrumentedABI() == IA_Args && !IsZeroArgsVoidRet) {
Peter Collingbourne68162e72013-08-14 18:54:12 +0000713 FunctionType *NewFT = getArgsFunctionType(FT);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000714 Function *NewF = Function::Create(NewFT, F.getLinkage(), "", &M);
Peter Collingbourne68162e72013-08-14 18:54:12 +0000715 NewF->copyAttributesFrom(&F);
716 NewF->removeAttributes(
Reid Klecknerb5180542017-03-21 16:57:19 +0000717 AttributeList::ReturnIndex,
Reid Kleckneree4930b2017-05-02 22:07:37 +0000718 AttributeFuncs::typeIncompatible(NewFT->getReturnType()));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000719 for (Function::arg_iterator FArg = F.arg_begin(),
720 NewFArg = NewF->arg_begin(),
721 FArgEnd = F.arg_end();
722 FArg != FArgEnd; ++FArg, ++NewFArg) {
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000723 FArg->replaceAllUsesWith(&*NewFArg);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000724 }
725 NewF->getBasicBlockList().splice(NewF->begin(), F.getBasicBlockList());
726
Chandler Carruthcdf47882014-03-09 03:16:01 +0000727 for (Function::user_iterator UI = F.user_begin(), UE = F.user_end();
728 UI != UE;) {
729 BlockAddress *BA = dyn_cast<BlockAddress>(*UI);
730 ++UI;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000731 if (BA) {
732 BA->replaceAllUsesWith(
733 BlockAddress::get(NewF, BA->getBasicBlock()));
734 delete BA;
735 }
736 }
737 F.replaceAllUsesWith(
738 ConstantExpr::getBitCast(NewF, PointerType::getUnqual(FT)));
739 NewF->takeName(&F);
740 F.eraseFromParent();
741 *i = NewF;
Peter Collingbourne59b12622013-08-22 20:08:08 +0000742 addGlobalNamePrefix(NewF);
743 } else {
744 addGlobalNamePrefix(&F);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000745 }
Peter Collingbourne59b12622013-08-22 20:08:08 +0000746 } else if (!IsZeroArgsVoidRet || getWrapperKind(&F) == WK_Custom) {
Peter Collingbourne68162e72013-08-14 18:54:12 +0000747 // Build a wrapper function for F. The wrapper simply calls F, and is
748 // added to FnsToInstrument so that any instrumentation according to its
749 // WrapperKind is done in the second pass below.
750 FunctionType *NewFT = getInstrumentedABI() == IA_Args
751 ? getArgsFunctionType(FT)
752 : FT;
Alexey Samsonov6dae24d2013-08-23 07:42:51 +0000753 Function *NewF = buildWrapperFunction(
754 &F, std::string("dfsw$") + std::string(F.getName()),
755 GlobalValue::LinkOnceODRLinkage, NewFT);
Peter Collingbourne68162e72013-08-14 18:54:12 +0000756 if (getInstrumentedABI() == IA_TLS)
Reid Klecknerb5180542017-03-21 16:57:19 +0000757 NewF->removeAttributes(AttributeList::FunctionIndex, ReadOnlyNoneAttrs);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000758
Peter Collingbourne68162e72013-08-14 18:54:12 +0000759 Value *WrappedFnCst =
760 ConstantExpr::getBitCast(NewF, PointerType::getUnqual(FT));
761 F.replaceAllUsesWith(WrappedFnCst);
David Blaikiec6c6c7b2014-10-07 22:59:46 +0000762
Peter Collingbourne68162e72013-08-14 18:54:12 +0000763 UnwrappedFnMap[WrappedFnCst] = &F;
764 *i = NewF;
765
766 if (!F.isDeclaration()) {
767 // This function is probably defining an interposition of an
768 // uninstrumented function and hence needs to keep the original ABI.
769 // But any functions it may call need to use the instrumented ABI, so
770 // we instrument it in a mode which preserves the original ABI.
771 FnsWithNativeABI.insert(&F);
772
773 // This code needs to rebuild the iterators, as they may be invalidated
774 // by the push_back, taking care that the new range does not include
775 // any functions added by this code.
776 size_t N = i - FnsToInstrument.begin(),
777 Count = e - FnsToInstrument.begin();
778 FnsToInstrument.push_back(&F);
779 i = FnsToInstrument.begin() + N;
780 e = FnsToInstrument.begin() + Count;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000781 }
Lorenzo Martignoni40d3dee2014-09-30 12:33:16 +0000782 // Hopefully, nobody will try to indirectly call a vararg
783 // function... yet.
784 } else if (FT->isVarArg()) {
785 UnwrappedFnMap[&F] = &F;
786 *i = nullptr;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000787 }
788 }
789
Benjamin Kramer135f7352016-06-26 12:28:59 +0000790 for (Function *i : FnsToInstrument) {
791 if (!i || i->isDeclaration())
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000792 continue;
793
Benjamin Kramer135f7352016-06-26 12:28:59 +0000794 removeUnreachableBlocks(*i);
Peter Collingbourneae66d572013-08-09 21:42:53 +0000795
Benjamin Kramer135f7352016-06-26 12:28:59 +0000796 DFSanFunction DFSF(*this, i, FnsWithNativeABI.count(i));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000797
798 // DFSanVisitor may create new basic blocks, which confuses df_iterator.
799 // Build a copy of the list before iterating over it.
Benjamin Kramer135f7352016-06-26 12:28:59 +0000800 llvm::SmallVector<BasicBlock *, 4> BBList(depth_first(&i->getEntryBlock()));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000801
Benjamin Kramer135f7352016-06-26 12:28:59 +0000802 for (BasicBlock *i : BBList) {
803 Instruction *Inst = &i->front();
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000804 while (1) {
805 // DFSanVisitor may split the current basic block, changing the current
806 // instruction's next pointer and moving the next instruction to the
807 // tail block from which we should continue.
808 Instruction *Next = Inst->getNextNode();
Peter Collingbournefb3a2b42013-08-12 22:38:39 +0000809 // DFSanVisitor may delete Inst, so keep track of whether it was a
810 // terminator.
811 bool IsTerminator = isa<TerminatorInst>(Inst);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000812 if (!DFSF.SkipInsts.count(Inst))
813 DFSanVisitor(DFSF).visit(Inst);
Peter Collingbournefb3a2b42013-08-12 22:38:39 +0000814 if (IsTerminator)
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000815 break;
816 Inst = Next;
817 }
818 }
819
Peter Collingbourne68162e72013-08-14 18:54:12 +0000820 // We will not necessarily be able to compute the shadow for every phi node
821 // until we have visited every block. Therefore, the code that handles phi
822 // nodes adds them to the PHIFixups list so that they can be properly
823 // handled here.
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000824 for (std::vector<std::pair<PHINode *, PHINode *> >::iterator
825 i = DFSF.PHIFixups.begin(),
826 e = DFSF.PHIFixups.end();
827 i != e; ++i) {
828 for (unsigned val = 0, n = i->first->getNumIncomingValues(); val != n;
829 ++val) {
830 i->second->setIncomingValue(
831 val, DFSF.getShadow(i->first->getIncomingValue(val)));
832 }
833 }
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000834
835 // -dfsan-debug-nonzero-labels will split the CFG in all kinds of crazy
836 // places (i.e. instructions in basic blocks we haven't even begun visiting
837 // yet). To make our life easier, do this work in a pass after the main
838 // instrumentation.
839 if (ClDebugNonzeroLabels) {
Peter Collingbournefab565a2014-08-22 01:18:18 +0000840 for (Value *V : DFSF.NonZeroChecks) {
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000841 Instruction *Pos;
Peter Collingbournefab565a2014-08-22 01:18:18 +0000842 if (Instruction *I = dyn_cast<Instruction>(V))
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000843 Pos = I->getNextNode();
844 else
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000845 Pos = &DFSF.F->getEntryBlock().front();
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000846 while (isa<PHINode>(Pos) || isa<AllocaInst>(Pos))
847 Pos = Pos->getNextNode();
848 IRBuilder<> IRB(Pos);
Peter Collingbournefab565a2014-08-22 01:18:18 +0000849 Value *Ne = IRB.CreateICmpNE(V, DFSF.DFS.ZeroShadow);
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000850 BranchInst *BI = cast<BranchInst>(SplitBlockAndInsertIfThen(
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000851 Ne, Pos, /*Unreachable=*/false, ColdCallWeights));
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000852 IRBuilder<> ThenIRB(BI);
David Blaikieff6409d2015-05-18 22:13:54 +0000853 ThenIRB.CreateCall(DFSF.DFS.DFSanNonzeroLabelFn, {});
Peter Collingbourne444c59e2013-08-15 18:51:12 +0000854 }
855 }
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000856 }
857
858 return false;
859}
860
861Value *DFSanFunction::getArgTLSPtr() {
862 if (ArgTLSPtr)
863 return ArgTLSPtr;
864 if (DFS.ArgTLS)
865 return ArgTLSPtr = DFS.ArgTLS;
866
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000867 IRBuilder<> IRB(&F->getEntryBlock().front());
David Blaikieff6409d2015-05-18 22:13:54 +0000868 return ArgTLSPtr = IRB.CreateCall(DFS.GetArgTLS, {});
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000869}
870
871Value *DFSanFunction::getRetvalTLS() {
872 if (RetvalTLSPtr)
873 return RetvalTLSPtr;
874 if (DFS.RetvalTLS)
875 return RetvalTLSPtr = DFS.RetvalTLS;
876
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000877 IRBuilder<> IRB(&F->getEntryBlock().front());
David Blaikieff6409d2015-05-18 22:13:54 +0000878 return RetvalTLSPtr = IRB.CreateCall(DFS.GetRetvalTLS, {});
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000879}
880
881Value *DFSanFunction::getArgTLS(unsigned Idx, Instruction *Pos) {
882 IRBuilder<> IRB(Pos);
883 return IRB.CreateConstGEP2_64(getArgTLSPtr(), 0, Idx);
884}
885
886Value *DFSanFunction::getShadow(Value *V) {
887 if (!isa<Argument>(V) && !isa<Instruction>(V))
888 return DFS.ZeroShadow;
889 Value *&Shadow = ValShadowMap[V];
890 if (!Shadow) {
891 if (Argument *A = dyn_cast<Argument>(V)) {
Peter Collingbourne68162e72013-08-14 18:54:12 +0000892 if (IsNativeABI)
893 return DFS.ZeroShadow;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000894 switch (IA) {
895 case DataFlowSanitizer::IA_TLS: {
896 Value *ArgTLSPtr = getArgTLSPtr();
897 Instruction *ArgTLSPos =
898 DFS.ArgTLS ? &*F->getEntryBlock().begin()
899 : cast<Instruction>(ArgTLSPtr)->getNextNode();
900 IRBuilder<> IRB(ArgTLSPos);
901 Shadow = IRB.CreateLoad(getArgTLS(A->getArgNo(), ArgTLSPos));
902 break;
903 }
904 case DataFlowSanitizer::IA_Args: {
Reid Kleckner45707d42017-03-16 22:59:15 +0000905 unsigned ArgIdx = A->getArgNo() + F->arg_size() / 2;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000906 Function::arg_iterator i = F->arg_begin();
907 while (ArgIdx--)
908 ++i;
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000909 Shadow = &*i;
Peter Collingbourne68162e72013-08-14 18:54:12 +0000910 assert(Shadow->getType() == DFS.ShadowTy);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000911 break;
912 }
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000913 }
Peter Collingbournefab565a2014-08-22 01:18:18 +0000914 NonZeroChecks.push_back(Shadow);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000915 } else {
916 Shadow = DFS.ZeroShadow;
917 }
918 }
919 return Shadow;
920}
921
922void DFSanFunction::setShadow(Instruction *I, Value *Shadow) {
923 assert(!ValShadowMap.count(I));
924 assert(Shadow->getType() == DFS.ShadowTy);
925 ValShadowMap[I] = Shadow;
926}
927
928Value *DataFlowSanitizer::getShadowAddress(Value *Addr, Instruction *Pos) {
929 assert(Addr != RetvalTLS && "Reinstrumenting?");
930 IRBuilder<> IRB(Pos);
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000931 Value *ShadowPtrMaskValue;
932 if (DFSanRuntimeShadowMask)
933 ShadowPtrMaskValue = IRB.CreateLoad(IntptrTy, ExternalShadowMask);
934 else
935 ShadowPtrMaskValue = ShadowPtrMask;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000936 return IRB.CreateIntToPtr(
937 IRB.CreateMul(
Adhemerval Zanellad93c0c42015-11-27 12:42:39 +0000938 IRB.CreateAnd(IRB.CreatePtrToInt(Addr, IntptrTy),
939 IRB.CreatePtrToInt(ShadowPtrMaskValue, IntptrTy)),
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000940 ShadowPtrMul),
941 ShadowPtrTy);
942}
943
944// Generates IR to compute the union of the two given shadows, inserting it
945// before Pos. Returns the computed union Value.
Peter Collingbourne83def1c2014-07-15 04:41:14 +0000946Value *DFSanFunction::combineShadows(Value *V1, Value *V2, Instruction *Pos) {
947 if (V1 == DFS.ZeroShadow)
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000948 return V2;
Peter Collingbourne83def1c2014-07-15 04:41:14 +0000949 if (V2 == DFS.ZeroShadow)
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000950 return V1;
951 if (V1 == V2)
952 return V1;
Peter Collingbourne705a1ae2014-07-15 04:41:17 +0000953
Peter Collingbourne9947c492014-07-15 22:13:19 +0000954 auto V1Elems = ShadowElements.find(V1);
955 auto V2Elems = ShadowElements.find(V2);
956 if (V1Elems != ShadowElements.end() && V2Elems != ShadowElements.end()) {
957 if (std::includes(V1Elems->second.begin(), V1Elems->second.end(),
958 V2Elems->second.begin(), V2Elems->second.end())) {
959 return V1;
960 } else if (std::includes(V2Elems->second.begin(), V2Elems->second.end(),
961 V1Elems->second.begin(), V1Elems->second.end())) {
962 return V2;
963 }
964 } else if (V1Elems != ShadowElements.end()) {
965 if (V1Elems->second.count(V2))
966 return V1;
967 } else if (V2Elems != ShadowElements.end()) {
968 if (V2Elems->second.count(V1))
969 return V2;
970 }
971
Peter Collingbourne705a1ae2014-07-15 04:41:17 +0000972 auto Key = std::make_pair(V1, V2);
973 if (V1 > V2)
974 std::swap(Key.first, Key.second);
975 CachedCombinedShadow &CCS = CachedCombinedShadows[Key];
976 if (CCS.Block && DT.dominates(CCS.Block, Pos->getParent()))
977 return CCS.Shadow;
978
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000979 IRBuilder<> IRB(Pos);
Peter Collingbournedf240b22014-08-06 00:33:40 +0000980 if (AvoidNewBlocks) {
David Blaikieff6409d2015-05-18 22:13:54 +0000981 CallInst *Call = IRB.CreateCall(DFS.DFSanCheckedUnionFn, {V1, V2});
Reid Klecknerb5180542017-03-21 16:57:19 +0000982 Call->addAttribute(AttributeList::ReturnIndex, Attribute::ZExt);
Reid Klecknera0b45f42017-05-03 18:17:31 +0000983 Call->addParamAttr(0, Attribute::ZExt);
984 Call->addParamAttr(1, Attribute::ZExt);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +0000985
Peter Collingbournedf240b22014-08-06 00:33:40 +0000986 CCS.Block = Pos->getParent();
987 CCS.Shadow = Call;
988 } else {
989 BasicBlock *Head = Pos->getParent();
990 Value *Ne = IRB.CreateICmpNE(V1, V2);
991 BranchInst *BI = cast<BranchInst>(SplitBlockAndInsertIfThen(
992 Ne, Pos, /*Unreachable=*/false, DFS.ColdCallWeights, &DT));
993 IRBuilder<> ThenIRB(BI);
David Blaikieff6409d2015-05-18 22:13:54 +0000994 CallInst *Call = ThenIRB.CreateCall(DFS.DFSanUnionFn, {V1, V2});
Reid Klecknerb5180542017-03-21 16:57:19 +0000995 Call->addAttribute(AttributeList::ReturnIndex, Attribute::ZExt);
Reid Klecknera0b45f42017-05-03 18:17:31 +0000996 Call->addParamAttr(0, Attribute::ZExt);
997 Call->addParamAttr(1, Attribute::ZExt);
Peter Collingbourne705a1ae2014-07-15 04:41:17 +0000998
Peter Collingbournedf240b22014-08-06 00:33:40 +0000999 BasicBlock *Tail = BI->getSuccessor(0);
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001000 PHINode *Phi = PHINode::Create(DFS.ShadowTy, 2, "", &Tail->front());
Peter Collingbournedf240b22014-08-06 00:33:40 +00001001 Phi->addIncoming(Call, Call->getParent());
1002 Phi->addIncoming(V1, Head);
1003
1004 CCS.Block = Tail;
1005 CCS.Shadow = Phi;
1006 }
Peter Collingbourne9947c492014-07-15 22:13:19 +00001007
1008 std::set<Value *> UnionElems;
1009 if (V1Elems != ShadowElements.end()) {
1010 UnionElems = V1Elems->second;
1011 } else {
1012 UnionElems.insert(V1);
1013 }
1014 if (V2Elems != ShadowElements.end()) {
1015 UnionElems.insert(V2Elems->second.begin(), V2Elems->second.end());
1016 } else {
1017 UnionElems.insert(V2);
1018 }
Peter Collingbournedf240b22014-08-06 00:33:40 +00001019 ShadowElements[CCS.Shadow] = std::move(UnionElems);
Peter Collingbourne9947c492014-07-15 22:13:19 +00001020
Peter Collingbournedf240b22014-08-06 00:33:40 +00001021 return CCS.Shadow;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001022}
1023
1024// A convenience function which folds the shadows of each of the operands
1025// of the provided instruction Inst, inserting the IR before Inst. Returns
1026// the computed union Value.
1027Value *DFSanFunction::combineOperandShadows(Instruction *Inst) {
1028 if (Inst->getNumOperands() == 0)
1029 return DFS.ZeroShadow;
1030
1031 Value *Shadow = getShadow(Inst->getOperand(0));
1032 for (unsigned i = 1, n = Inst->getNumOperands(); i != n; ++i) {
Peter Collingbourne83def1c2014-07-15 04:41:14 +00001033 Shadow = combineShadows(Shadow, getShadow(Inst->getOperand(i)), Inst);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001034 }
1035 return Shadow;
1036}
1037
1038void DFSanVisitor::visitOperandShadowInst(Instruction &I) {
1039 Value *CombinedShadow = DFSF.combineOperandShadows(&I);
1040 DFSF.setShadow(&I, CombinedShadow);
1041}
1042
1043// Generates IR to load shadow corresponding to bytes [Addr, Addr+Size), where
1044// Addr has alignment Align, and take the union of each of those shadows.
1045Value *DFSanFunction::loadShadow(Value *Addr, uint64_t Size, uint64_t Align,
1046 Instruction *Pos) {
1047 if (AllocaInst *AI = dyn_cast<AllocaInst>(Addr)) {
1048 llvm::DenseMap<AllocaInst *, AllocaInst *>::iterator i =
1049 AllocaShadowMap.find(AI);
1050 if (i != AllocaShadowMap.end()) {
1051 IRBuilder<> IRB(Pos);
1052 return IRB.CreateLoad(i->second);
1053 }
1054 }
1055
1056 uint64_t ShadowAlign = Align * DFS.ShadowWidth / 8;
1057 SmallVector<Value *, 2> Objs;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001058 GetUnderlyingObjects(Addr, Objs, Pos->getModule()->getDataLayout());
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001059 bool AllConstants = true;
Benjamin Kramer135f7352016-06-26 12:28:59 +00001060 for (Value *Obj : Objs) {
1061 if (isa<Function>(Obj) || isa<BlockAddress>(Obj))
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001062 continue;
Benjamin Kramer135f7352016-06-26 12:28:59 +00001063 if (isa<GlobalVariable>(Obj) && cast<GlobalVariable>(Obj)->isConstant())
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001064 continue;
1065
1066 AllConstants = false;
1067 break;
1068 }
1069 if (AllConstants)
1070 return DFS.ZeroShadow;
1071
1072 Value *ShadowAddr = DFS.getShadowAddress(Addr, Pos);
1073 switch (Size) {
1074 case 0:
1075 return DFS.ZeroShadow;
1076 case 1: {
1077 LoadInst *LI = new LoadInst(ShadowAddr, "", Pos);
1078 LI->setAlignment(ShadowAlign);
1079 return LI;
1080 }
1081 case 2: {
1082 IRBuilder<> IRB(Pos);
David Blaikie93c54442015-04-03 19:41:44 +00001083 Value *ShadowAddr1 = IRB.CreateGEP(DFS.ShadowTy, ShadowAddr,
1084 ConstantInt::get(DFS.IntptrTy, 1));
Peter Collingbourne83def1c2014-07-15 04:41:14 +00001085 return combineShadows(IRB.CreateAlignedLoad(ShadowAddr, ShadowAlign),
1086 IRB.CreateAlignedLoad(ShadowAddr1, ShadowAlign), Pos);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001087 }
1088 }
Peter Collingbournedf240b22014-08-06 00:33:40 +00001089 if (!AvoidNewBlocks && Size % (64 / DFS.ShadowWidth) == 0) {
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001090 // Fast path for the common case where each byte has identical shadow: load
1091 // shadow 64 bits at a time, fall out to a __dfsan_union_load call if any
1092 // shadow is non-equal.
1093 BasicBlock *FallbackBB = BasicBlock::Create(*DFS.Ctx, "", F);
1094 IRBuilder<> FallbackIRB(FallbackBB);
David Blaikieff6409d2015-05-18 22:13:54 +00001095 CallInst *FallbackCall = FallbackIRB.CreateCall(
1096 DFS.DFSanUnionLoadFn,
1097 {ShadowAddr, ConstantInt::get(DFS.IntptrTy, Size)});
Reid Klecknerb5180542017-03-21 16:57:19 +00001098 FallbackCall->addAttribute(AttributeList::ReturnIndex, Attribute::ZExt);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001099
1100 // Compare each of the shadows stored in the loaded 64 bits to each other,
1101 // by computing (WideShadow rotl ShadowWidth) == WideShadow.
1102 IRBuilder<> IRB(Pos);
1103 Value *WideAddr =
1104 IRB.CreateBitCast(ShadowAddr, Type::getInt64PtrTy(*DFS.Ctx));
1105 Value *WideShadow = IRB.CreateAlignedLoad(WideAddr, ShadowAlign);
1106 Value *TruncShadow = IRB.CreateTrunc(WideShadow, DFS.ShadowTy);
1107 Value *ShlShadow = IRB.CreateShl(WideShadow, DFS.ShadowWidth);
1108 Value *ShrShadow = IRB.CreateLShr(WideShadow, 64 - DFS.ShadowWidth);
1109 Value *RotShadow = IRB.CreateOr(ShlShadow, ShrShadow);
1110 Value *ShadowsEq = IRB.CreateICmpEQ(WideShadow, RotShadow);
1111
1112 BasicBlock *Head = Pos->getParent();
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001113 BasicBlock *Tail = Head->splitBasicBlock(Pos->getIterator());
Peter Collingbourne705a1ae2014-07-15 04:41:17 +00001114
1115 if (DomTreeNode *OldNode = DT.getNode(Head)) {
1116 std::vector<DomTreeNode *> Children(OldNode->begin(), OldNode->end());
1117
1118 DomTreeNode *NewNode = DT.addNewBlock(Tail, Head);
1119 for (auto Child : Children)
1120 DT.changeImmediateDominator(Child, NewNode);
1121 }
1122
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001123 // In the following code LastBr will refer to the previous basic block's
1124 // conditional branch instruction, whose true successor is fixed up to point
1125 // to the next block during the loop below or to the tail after the final
1126 // iteration.
1127 BranchInst *LastBr = BranchInst::Create(FallbackBB, FallbackBB, ShadowsEq);
1128 ReplaceInstWithInst(Head->getTerminator(), LastBr);
Peter Collingbourne705a1ae2014-07-15 04:41:17 +00001129 DT.addNewBlock(FallbackBB, Head);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001130
1131 for (uint64_t Ofs = 64 / DFS.ShadowWidth; Ofs != Size;
1132 Ofs += 64 / DFS.ShadowWidth) {
1133 BasicBlock *NextBB = BasicBlock::Create(*DFS.Ctx, "", F);
Peter Collingbourne705a1ae2014-07-15 04:41:17 +00001134 DT.addNewBlock(NextBB, LastBr->getParent());
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001135 IRBuilder<> NextIRB(NextBB);
David Blaikie93c54442015-04-03 19:41:44 +00001136 WideAddr = NextIRB.CreateGEP(Type::getInt64Ty(*DFS.Ctx), WideAddr,
1137 ConstantInt::get(DFS.IntptrTy, 1));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001138 Value *NextWideShadow = NextIRB.CreateAlignedLoad(WideAddr, ShadowAlign);
1139 ShadowsEq = NextIRB.CreateICmpEQ(WideShadow, NextWideShadow);
1140 LastBr->setSuccessor(0, NextBB);
1141 LastBr = NextIRB.CreateCondBr(ShadowsEq, FallbackBB, FallbackBB);
1142 }
1143
1144 LastBr->setSuccessor(0, Tail);
1145 FallbackIRB.CreateBr(Tail);
1146 PHINode *Shadow = PHINode::Create(DFS.ShadowTy, 2, "", &Tail->front());
1147 Shadow->addIncoming(FallbackCall, FallbackBB);
1148 Shadow->addIncoming(TruncShadow, LastBr->getParent());
1149 return Shadow;
1150 }
1151
1152 IRBuilder<> IRB(Pos);
David Blaikieff6409d2015-05-18 22:13:54 +00001153 CallInst *FallbackCall = IRB.CreateCall(
1154 DFS.DFSanUnionLoadFn, {ShadowAddr, ConstantInt::get(DFS.IntptrTy, Size)});
Reid Klecknerb5180542017-03-21 16:57:19 +00001155 FallbackCall->addAttribute(AttributeList::ReturnIndex, Attribute::ZExt);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001156 return FallbackCall;
1157}
1158
1159void DFSanVisitor::visitLoadInst(LoadInst &LI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001160 auto &DL = LI.getModule()->getDataLayout();
1161 uint64_t Size = DL.getTypeStoreSize(LI.getType());
Peter Collingbourne142fdff2014-08-01 21:18:18 +00001162 if (Size == 0) {
1163 DFSF.setShadow(&LI, DFSF.DFS.ZeroShadow);
1164 return;
1165 }
1166
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001167 uint64_t Align;
1168 if (ClPreserveAlignment) {
1169 Align = LI.getAlignment();
1170 if (Align == 0)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001171 Align = DL.getABITypeAlignment(LI.getType());
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001172 } else {
1173 Align = 1;
1174 }
1175 IRBuilder<> IRB(&LI);
Peter Collingbourne0be79e12013-11-21 23:20:54 +00001176 Value *Shadow = DFSF.loadShadow(LI.getPointerOperand(), Size, Align, &LI);
1177 if (ClCombinePointerLabelsOnLoad) {
1178 Value *PtrShadow = DFSF.getShadow(LI.getPointerOperand());
Peter Collingbourne83def1c2014-07-15 04:41:14 +00001179 Shadow = DFSF.combineShadows(Shadow, PtrShadow, &LI);
Peter Collingbourne0be79e12013-11-21 23:20:54 +00001180 }
1181 if (Shadow != DFSF.DFS.ZeroShadow)
Peter Collingbournefab565a2014-08-22 01:18:18 +00001182 DFSF.NonZeroChecks.push_back(Shadow);
Peter Collingbourne444c59e2013-08-15 18:51:12 +00001183
Peter Collingbourne0be79e12013-11-21 23:20:54 +00001184 DFSF.setShadow(&LI, Shadow);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001185}
1186
1187void DFSanFunction::storeShadow(Value *Addr, uint64_t Size, uint64_t Align,
1188 Value *Shadow, Instruction *Pos) {
1189 if (AllocaInst *AI = dyn_cast<AllocaInst>(Addr)) {
1190 llvm::DenseMap<AllocaInst *, AllocaInst *>::iterator i =
1191 AllocaShadowMap.find(AI);
1192 if (i != AllocaShadowMap.end()) {
1193 IRBuilder<> IRB(Pos);
1194 IRB.CreateStore(Shadow, i->second);
1195 return;
1196 }
1197 }
1198
1199 uint64_t ShadowAlign = Align * DFS.ShadowWidth / 8;
1200 IRBuilder<> IRB(Pos);
1201 Value *ShadowAddr = DFS.getShadowAddress(Addr, Pos);
1202 if (Shadow == DFS.ZeroShadow) {
1203 IntegerType *ShadowTy = IntegerType::get(*DFS.Ctx, Size * DFS.ShadowWidth);
1204 Value *ExtZeroShadow = ConstantInt::get(ShadowTy, 0);
1205 Value *ExtShadowAddr =
1206 IRB.CreateBitCast(ShadowAddr, PointerType::getUnqual(ShadowTy));
1207 IRB.CreateAlignedStore(ExtZeroShadow, ExtShadowAddr, ShadowAlign);
1208 return;
1209 }
1210
1211 const unsigned ShadowVecSize = 128 / DFS.ShadowWidth;
1212 uint64_t Offset = 0;
1213 if (Size >= ShadowVecSize) {
1214 VectorType *ShadowVecTy = VectorType::get(DFS.ShadowTy, ShadowVecSize);
1215 Value *ShadowVec = UndefValue::get(ShadowVecTy);
1216 for (unsigned i = 0; i != ShadowVecSize; ++i) {
1217 ShadowVec = IRB.CreateInsertElement(
1218 ShadowVec, Shadow, ConstantInt::get(Type::getInt32Ty(*DFS.Ctx), i));
1219 }
1220 Value *ShadowVecAddr =
1221 IRB.CreateBitCast(ShadowAddr, PointerType::getUnqual(ShadowVecTy));
1222 do {
David Blaikie95d3e532015-04-03 23:03:54 +00001223 Value *CurShadowVecAddr =
1224 IRB.CreateConstGEP1_32(ShadowVecTy, ShadowVecAddr, Offset);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001225 IRB.CreateAlignedStore(ShadowVec, CurShadowVecAddr, ShadowAlign);
1226 Size -= ShadowVecSize;
1227 ++Offset;
1228 } while (Size >= ShadowVecSize);
1229 Offset *= ShadowVecSize;
1230 }
1231 while (Size > 0) {
David Blaikie95d3e532015-04-03 23:03:54 +00001232 Value *CurShadowAddr =
1233 IRB.CreateConstGEP1_32(DFS.ShadowTy, ShadowAddr, Offset);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001234 IRB.CreateAlignedStore(Shadow, CurShadowAddr, ShadowAlign);
1235 --Size;
1236 ++Offset;
1237 }
1238}
1239
1240void DFSanVisitor::visitStoreInst(StoreInst &SI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001241 auto &DL = SI.getModule()->getDataLayout();
1242 uint64_t Size = DL.getTypeStoreSize(SI.getValueOperand()->getType());
Peter Collingbourne142fdff2014-08-01 21:18:18 +00001243 if (Size == 0)
1244 return;
1245
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001246 uint64_t Align;
1247 if (ClPreserveAlignment) {
1248 Align = SI.getAlignment();
1249 if (Align == 0)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001250 Align = DL.getABITypeAlignment(SI.getValueOperand()->getType());
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001251 } else {
1252 Align = 1;
1253 }
Peter Collingbourne0be79e12013-11-21 23:20:54 +00001254
1255 Value* Shadow = DFSF.getShadow(SI.getValueOperand());
1256 if (ClCombinePointerLabelsOnStore) {
1257 Value *PtrShadow = DFSF.getShadow(SI.getPointerOperand());
Peter Collingbourne83def1c2014-07-15 04:41:14 +00001258 Shadow = DFSF.combineShadows(Shadow, PtrShadow, &SI);
Peter Collingbourne0be79e12013-11-21 23:20:54 +00001259 }
1260 DFSF.storeShadow(SI.getPointerOperand(), Size, Align, Shadow, &SI);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001261}
1262
1263void DFSanVisitor::visitBinaryOperator(BinaryOperator &BO) {
1264 visitOperandShadowInst(BO);
1265}
1266
1267void DFSanVisitor::visitCastInst(CastInst &CI) { visitOperandShadowInst(CI); }
1268
1269void DFSanVisitor::visitCmpInst(CmpInst &CI) { visitOperandShadowInst(CI); }
1270
1271void DFSanVisitor::visitGetElementPtrInst(GetElementPtrInst &GEPI) {
1272 visitOperandShadowInst(GEPI);
1273}
1274
1275void DFSanVisitor::visitExtractElementInst(ExtractElementInst &I) {
1276 visitOperandShadowInst(I);
1277}
1278
1279void DFSanVisitor::visitInsertElementInst(InsertElementInst &I) {
1280 visitOperandShadowInst(I);
1281}
1282
1283void DFSanVisitor::visitShuffleVectorInst(ShuffleVectorInst &I) {
1284 visitOperandShadowInst(I);
1285}
1286
1287void DFSanVisitor::visitExtractValueInst(ExtractValueInst &I) {
1288 visitOperandShadowInst(I);
1289}
1290
1291void DFSanVisitor::visitInsertValueInst(InsertValueInst &I) {
1292 visitOperandShadowInst(I);
1293}
1294
1295void DFSanVisitor::visitAllocaInst(AllocaInst &I) {
1296 bool AllLoadsStores = true;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001297 for (User *U : I.users()) {
1298 if (isa<LoadInst>(U))
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001299 continue;
1300
Chandler Carruthcdf47882014-03-09 03:16:01 +00001301 if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001302 if (SI->getPointerOperand() == &I)
1303 continue;
1304 }
1305
1306 AllLoadsStores = false;
1307 break;
1308 }
1309 if (AllLoadsStores) {
1310 IRBuilder<> IRB(&I);
1311 DFSF.AllocaShadowMap[&I] = IRB.CreateAlloca(DFSF.DFS.ShadowTy);
1312 }
1313 DFSF.setShadow(&I, DFSF.DFS.ZeroShadow);
1314}
1315
1316void DFSanVisitor::visitSelectInst(SelectInst &I) {
1317 Value *CondShadow = DFSF.getShadow(I.getCondition());
1318 Value *TrueShadow = DFSF.getShadow(I.getTrueValue());
1319 Value *FalseShadow = DFSF.getShadow(I.getFalseValue());
1320
1321 if (isa<VectorType>(I.getCondition()->getType())) {
1322 DFSF.setShadow(
Peter Collingbourne83def1c2014-07-15 04:41:14 +00001323 &I,
1324 DFSF.combineShadows(
1325 CondShadow, DFSF.combineShadows(TrueShadow, FalseShadow, &I), &I));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001326 } else {
1327 Value *ShadowSel;
1328 if (TrueShadow == FalseShadow) {
1329 ShadowSel = TrueShadow;
1330 } else {
1331 ShadowSel =
1332 SelectInst::Create(I.getCondition(), TrueShadow, FalseShadow, "", &I);
1333 }
Peter Collingbourne83def1c2014-07-15 04:41:14 +00001334 DFSF.setShadow(&I, DFSF.combineShadows(CondShadow, ShadowSel, &I));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001335 }
1336}
1337
Peter Collingbourne9d31d6f2013-08-14 20:51:38 +00001338void DFSanVisitor::visitMemSetInst(MemSetInst &I) {
1339 IRBuilder<> IRB(&I);
1340 Value *ValShadow = DFSF.getShadow(I.getValue());
David Blaikieff6409d2015-05-18 22:13:54 +00001341 IRB.CreateCall(DFSF.DFS.DFSanSetLabelFn,
1342 {ValShadow, IRB.CreateBitCast(I.getDest(), Type::getInt8PtrTy(
1343 *DFSF.DFS.Ctx)),
1344 IRB.CreateZExtOrTrunc(I.getLength(), DFSF.DFS.IntptrTy)});
Peter Collingbourne9d31d6f2013-08-14 20:51:38 +00001345}
1346
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001347void DFSanVisitor::visitMemTransferInst(MemTransferInst &I) {
1348 IRBuilder<> IRB(&I);
1349 Value *DestShadow = DFSF.DFS.getShadowAddress(I.getDest(), &I);
1350 Value *SrcShadow = DFSF.DFS.getShadowAddress(I.getSource(), &I);
1351 Value *LenShadow = IRB.CreateMul(
1352 I.getLength(),
1353 ConstantInt::get(I.getLength()->getType(), DFSF.DFS.ShadowWidth / 8));
Pete Cooper67cf9a72015-11-19 05:56:52 +00001354 Value *AlignShadow;
1355 if (ClPreserveAlignment) {
1356 AlignShadow = IRB.CreateMul(I.getAlignmentCst(),
1357 ConstantInt::get(I.getAlignmentCst()->getType(),
1358 DFSF.DFS.ShadowWidth / 8));
1359 } else {
1360 AlignShadow = ConstantInt::get(I.getAlignmentCst()->getType(),
1361 DFSF.DFS.ShadowWidth / 8);
1362 }
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001363 Type *Int8Ptr = Type::getInt8PtrTy(*DFSF.DFS.Ctx);
1364 DestShadow = IRB.CreateBitCast(DestShadow, Int8Ptr);
1365 SrcShadow = IRB.CreateBitCast(SrcShadow, Int8Ptr);
Pete Cooper67cf9a72015-11-19 05:56:52 +00001366 IRB.CreateCall(I.getCalledValue(), {DestShadow, SrcShadow, LenShadow,
1367 AlignShadow, I.getVolatileCst()});
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001368}
1369
1370void DFSanVisitor::visitReturnInst(ReturnInst &RI) {
Peter Collingbourne68162e72013-08-14 18:54:12 +00001371 if (!DFSF.IsNativeABI && RI.getReturnValue()) {
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001372 switch (DFSF.IA) {
1373 case DataFlowSanitizer::IA_TLS: {
1374 Value *S = DFSF.getShadow(RI.getReturnValue());
1375 IRBuilder<> IRB(&RI);
1376 IRB.CreateStore(S, DFSF.getRetvalTLS());
1377 break;
1378 }
1379 case DataFlowSanitizer::IA_Args: {
1380 IRBuilder<> IRB(&RI);
1381 Type *RT = DFSF.F->getFunctionType()->getReturnType();
1382 Value *InsVal =
1383 IRB.CreateInsertValue(UndefValue::get(RT), RI.getReturnValue(), 0);
1384 Value *InsShadow =
1385 IRB.CreateInsertValue(InsVal, DFSF.getShadow(RI.getReturnValue()), 1);
1386 RI.setOperand(0, InsShadow);
1387 break;
1388 }
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001389 }
1390 }
1391}
1392
1393void DFSanVisitor::visitCallSite(CallSite CS) {
1394 Function *F = CS.getCalledFunction();
1395 if ((F && F->isIntrinsic()) || isa<InlineAsm>(CS.getCalledValue())) {
1396 visitOperandShadowInst(*CS.getInstruction());
1397 return;
1398 }
1399
Peter Collingbournea1099842014-11-05 17:21:00 +00001400 // Calls to this function are synthesized in wrappers, and we shouldn't
1401 // instrument them.
1402 if (F == DFSF.DFS.DFSanVarargWrapperFn)
1403 return;
1404
Peter Collingbourne68162e72013-08-14 18:54:12 +00001405 IRBuilder<> IRB(CS.getInstruction());
1406
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001407 DenseMap<Value *, Function *>::iterator i =
1408 DFSF.DFS.UnwrappedFnMap.find(CS.getCalledValue());
1409 if (i != DFSF.DFS.UnwrappedFnMap.end()) {
Peter Collingbourne68162e72013-08-14 18:54:12 +00001410 Function *F = i->second;
1411 switch (DFSF.DFS.getWrapperKind(F)) {
1412 case DataFlowSanitizer::WK_Warning: {
1413 CS.setCalledFunction(F);
1414 IRB.CreateCall(DFSF.DFS.DFSanUnimplementedFn,
1415 IRB.CreateGlobalStringPtr(F->getName()));
1416 DFSF.setShadow(CS.getInstruction(), DFSF.DFS.ZeroShadow);
1417 return;
1418 }
1419 case DataFlowSanitizer::WK_Discard: {
1420 CS.setCalledFunction(F);
1421 DFSF.setShadow(CS.getInstruction(), DFSF.DFS.ZeroShadow);
1422 return;
1423 }
1424 case DataFlowSanitizer::WK_Functional: {
1425 CS.setCalledFunction(F);
1426 visitOperandShadowInst(*CS.getInstruction());
1427 return;
1428 }
1429 case DataFlowSanitizer::WK_Custom: {
1430 // Don't try to handle invokes of custom functions, it's too complicated.
1431 // Instead, invoke the dfsw$ wrapper, which will in turn call the __dfsw_
1432 // wrapper.
1433 if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) {
1434 FunctionType *FT = F->getFunctionType();
1435 FunctionType *CustomFT = DFSF.DFS.getCustomFunctionType(FT);
1436 std::string CustomFName = "__dfsw_";
1437 CustomFName += F->getName();
1438 Constant *CustomF =
1439 DFSF.DFS.Mod->getOrInsertFunction(CustomFName, CustomFT);
1440 if (Function *CustomFn = dyn_cast<Function>(CustomF)) {
1441 CustomFn->copyAttributesFrom(F);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001442
Peter Collingbourne68162e72013-08-14 18:54:12 +00001443 // Custom functions returning non-void will write to the return label.
1444 if (!FT->getReturnType()->isVoidTy()) {
Reid Klecknerb5180542017-03-21 16:57:19 +00001445 CustomFn->removeAttributes(AttributeList::FunctionIndex,
Peter Collingbourne68162e72013-08-14 18:54:12 +00001446 DFSF.DFS.ReadOnlyNoneAttrs);
1447 }
1448 }
1449
1450 std::vector<Value *> Args;
1451
1452 CallSite::arg_iterator i = CS.arg_begin();
Peter Collingbournedd3486e2014-10-30 13:22:57 +00001453 for (unsigned n = FT->getNumParams(); n != 0; ++i, --n) {
Peter Collingbourne28a10af2013-08-27 22:09:06 +00001454 Type *T = (*i)->getType();
1455 FunctionType *ParamFT;
1456 if (isa<PointerType>(T) &&
1457 (ParamFT = dyn_cast<FunctionType>(
1458 cast<PointerType>(T)->getElementType()))) {
1459 std::string TName = "dfst";
1460 TName += utostr(FT->getNumParams() - n);
1461 TName += "$";
1462 TName += F->getName();
1463 Constant *T = DFSF.DFS.getOrBuildTrampolineFunction(ParamFT, TName);
1464 Args.push_back(T);
1465 Args.push_back(
1466 IRB.CreateBitCast(*i, Type::getInt8PtrTy(*DFSF.DFS.Ctx)));
1467 } else {
1468 Args.push_back(*i);
1469 }
1470 }
Peter Collingbourne68162e72013-08-14 18:54:12 +00001471
1472 i = CS.arg_begin();
Simon Dardisb5205c62017-08-17 14:14:25 +00001473 const unsigned ShadowArgStart = Args.size();
Peter Collingbournedd3486e2014-10-30 13:22:57 +00001474 for (unsigned n = FT->getNumParams(); n != 0; ++i, --n)
Peter Collingbourne68162e72013-08-14 18:54:12 +00001475 Args.push_back(DFSF.getShadow(*i));
1476
Peter Collingbournedd3486e2014-10-30 13:22:57 +00001477 if (FT->isVarArg()) {
David Blaikie1b01e7e2015-04-05 22:44:57 +00001478 auto *LabelVATy = ArrayType::get(DFSF.DFS.ShadowTy,
1479 CS.arg_size() - FT->getNumParams());
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001480 auto *LabelVAAlloca = new AllocaInst(
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001481 LabelVATy, getDataLayout().getAllocaAddrSpace(),
1482 "labelva", &DFSF.F->getEntryBlock().front());
Peter Collingbournedd3486e2014-10-30 13:22:57 +00001483
1484 for (unsigned n = 0; i != CS.arg_end(); ++i, ++n) {
David Blaikie64646022015-04-05 22:41:44 +00001485 auto LabelVAPtr = IRB.CreateStructGEP(LabelVATy, LabelVAAlloca, n);
Peter Collingbournedd3486e2014-10-30 13:22:57 +00001486 IRB.CreateStore(DFSF.getShadow(*i), LabelVAPtr);
1487 }
1488
David Blaikie64646022015-04-05 22:41:44 +00001489 Args.push_back(IRB.CreateStructGEP(LabelVATy, LabelVAAlloca, 0));
Peter Collingbournedd3486e2014-10-30 13:22:57 +00001490 }
1491
Peter Collingbourne68162e72013-08-14 18:54:12 +00001492 if (!FT->getReturnType()->isVoidTy()) {
1493 if (!DFSF.LabelReturnAlloca) {
1494 DFSF.LabelReturnAlloca =
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001495 new AllocaInst(DFSF.DFS.ShadowTy,
1496 getDataLayout().getAllocaAddrSpace(),
1497 "labelreturn", &DFSF.F->getEntryBlock().front());
Peter Collingbourne68162e72013-08-14 18:54:12 +00001498 }
1499 Args.push_back(DFSF.LabelReturnAlloca);
1500 }
1501
Peter Collingbournedd3486e2014-10-30 13:22:57 +00001502 for (i = CS.arg_begin() + FT->getNumParams(); i != CS.arg_end(); ++i)
1503 Args.push_back(*i);
1504
Peter Collingbourne68162e72013-08-14 18:54:12 +00001505 CallInst *CustomCI = IRB.CreateCall(CustomF, Args);
1506 CustomCI->setCallingConv(CI->getCallingConv());
1507 CustomCI->setAttributes(CI->getAttributes());
1508
Simon Dardisb5205c62017-08-17 14:14:25 +00001509 // Update the parameter attributes of the custom call instruction to
1510 // zero extend the shadow parameters. This is required for targets
1511 // which consider ShadowTy an illegal type.
1512 for (unsigned n = 0; n < FT->getNumParams(); n++) {
1513 const unsigned ArgNo = ShadowArgStart + n;
1514 if (CustomCI->getArgOperand(ArgNo)->getType() == DFSF.DFS.ShadowTy)
1515 CustomCI->addParamAttr(ArgNo, Attribute::ZExt);
1516 }
1517
Peter Collingbourne68162e72013-08-14 18:54:12 +00001518 if (!FT->getReturnType()->isVoidTy()) {
1519 LoadInst *LabelLoad = IRB.CreateLoad(DFSF.LabelReturnAlloca);
1520 DFSF.setShadow(CustomCI, LabelLoad);
1521 }
1522
1523 CI->replaceAllUsesWith(CustomCI);
1524 CI->eraseFromParent();
1525 return;
1526 }
1527 break;
1528 }
1529 }
1530 }
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001531
1532 FunctionType *FT = cast<FunctionType>(
1533 CS.getCalledValue()->getType()->getPointerElementType());
Peter Collingbourne68162e72013-08-14 18:54:12 +00001534 if (DFSF.DFS.getInstrumentedABI() == DataFlowSanitizer::IA_TLS) {
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001535 for (unsigned i = 0, n = FT->getNumParams(); i != n; ++i) {
1536 IRB.CreateStore(DFSF.getShadow(CS.getArgument(i)),
1537 DFSF.getArgTLS(i, CS.getInstruction()));
1538 }
1539 }
1540
Craig Topperf40110f2014-04-25 05:29:35 +00001541 Instruction *Next = nullptr;
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001542 if (!CS.getType()->isVoidTy()) {
1543 if (InvokeInst *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
1544 if (II->getNormalDest()->getSinglePredecessor()) {
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001545 Next = &II->getNormalDest()->front();
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001546 } else {
1547 BasicBlock *NewBB =
Chandler Carruthd4500562015-01-19 12:36:53 +00001548 SplitEdge(II->getParent(), II->getNormalDest(), &DFSF.DT);
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001549 Next = &NewBB->front();
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001550 }
1551 } else {
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001552 assert(CS->getIterator() != CS->getParent()->end());
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001553 Next = CS->getNextNode();
1554 }
1555
Peter Collingbourne68162e72013-08-14 18:54:12 +00001556 if (DFSF.DFS.getInstrumentedABI() == DataFlowSanitizer::IA_TLS) {
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001557 IRBuilder<> NextIRB(Next);
1558 LoadInst *LI = NextIRB.CreateLoad(DFSF.getRetvalTLS());
1559 DFSF.SkipInsts.insert(LI);
1560 DFSF.setShadow(CS.getInstruction(), LI);
Peter Collingbournefab565a2014-08-22 01:18:18 +00001561 DFSF.NonZeroChecks.push_back(LI);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001562 }
1563 }
1564
1565 // Do all instrumentation for IA_Args down here to defer tampering with the
1566 // CFG in a way that SplitEdge may be able to detect.
Peter Collingbourne68162e72013-08-14 18:54:12 +00001567 if (DFSF.DFS.getInstrumentedABI() == DataFlowSanitizer::IA_Args) {
1568 FunctionType *NewFT = DFSF.DFS.getArgsFunctionType(FT);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001569 Value *Func =
1570 IRB.CreateBitCast(CS.getCalledValue(), PointerType::getUnqual(NewFT));
1571 std::vector<Value *> Args;
1572
1573 CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1574 for (unsigned n = FT->getNumParams(); n != 0; ++i, --n)
1575 Args.push_back(*i);
1576
1577 i = CS.arg_begin();
1578 for (unsigned n = FT->getNumParams(); n != 0; ++i, --n)
1579 Args.push_back(DFSF.getShadow(*i));
1580
1581 if (FT->isVarArg()) {
1582 unsigned VarArgSize = CS.arg_size() - FT->getNumParams();
1583 ArrayType *VarArgArrayTy = ArrayType::get(DFSF.DFS.ShadowTy, VarArgSize);
1584 AllocaInst *VarArgShadow =
Matt Arsenault3c1fc762017-04-10 22:27:50 +00001585 new AllocaInst(VarArgArrayTy, getDataLayout().getAllocaAddrSpace(),
1586 "", &DFSF.F->getEntryBlock().front());
David Blaikie4e5d47f42015-04-04 21:07:10 +00001587 Args.push_back(IRB.CreateConstGEP2_32(VarArgArrayTy, VarArgShadow, 0, 0));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001588 for (unsigned n = 0; i != e; ++i, ++n) {
David Blaikie4e5d47f42015-04-04 21:07:10 +00001589 IRB.CreateStore(
1590 DFSF.getShadow(*i),
1591 IRB.CreateConstGEP2_32(VarArgArrayTy, VarArgShadow, 0, n));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001592 Args.push_back(*i);
1593 }
1594 }
1595
1596 CallSite NewCS;
1597 if (InvokeInst *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
1598 NewCS = IRB.CreateInvoke(Func, II->getNormalDest(), II->getUnwindDest(),
1599 Args);
1600 } else {
1601 NewCS = IRB.CreateCall(Func, Args);
1602 }
1603 NewCS.setCallingConv(CS.getCallingConv());
1604 NewCS.setAttributes(CS.getAttributes().removeAttributes(
Reid Klecknerb5180542017-03-21 16:57:19 +00001605 *DFSF.DFS.Ctx, AttributeList::ReturnIndex,
Pete Cooper2777d8872015-05-06 23:19:56 +00001606 AttributeFuncs::typeIncompatible(NewCS.getInstruction()->getType())));
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001607
1608 if (Next) {
1609 ExtractValueInst *ExVal =
1610 ExtractValueInst::Create(NewCS.getInstruction(), 0, "", Next);
1611 DFSF.SkipInsts.insert(ExVal);
1612 ExtractValueInst *ExShadow =
1613 ExtractValueInst::Create(NewCS.getInstruction(), 1, "", Next);
1614 DFSF.SkipInsts.insert(ExShadow);
1615 DFSF.setShadow(ExVal, ExShadow);
Peter Collingbournefab565a2014-08-22 01:18:18 +00001616 DFSF.NonZeroChecks.push_back(ExShadow);
Peter Collingbournee5d5b0c2013-08-07 22:47:18 +00001617
1618 CS.getInstruction()->replaceAllUsesWith(ExVal);
1619 }
1620
1621 CS.getInstruction()->eraseFromParent();
1622 }
1623}
1624
1625void DFSanVisitor::visitPHINode(PHINode &PN) {
1626 PHINode *ShadowPN =
1627 PHINode::Create(DFSF.DFS.ShadowTy, PN.getNumIncomingValues(), "", &PN);
1628
1629 // Give the shadow phi node valid predecessors to fool SplitEdge into working.
1630 Value *UndefShadow = UndefValue::get(DFSF.DFS.ShadowTy);
1631 for (PHINode::block_iterator i = PN.block_begin(), e = PN.block_end(); i != e;
1632 ++i) {
1633 ShadowPN->addIncoming(UndefShadow, *i);
1634 }
1635
1636 DFSF.PHIFixups.push_back(std::make_pair(&PN, ShadowPN));
1637 DFSF.setShadow(&PN, ShadowPN);
1638}