51#define DEBUG_TYPE "sanmd"
58constexpr uint32_t kVersionPtrSizeRel = (1u << 16);
59constexpr int kCtorDtorPriority = 2;
68 static const MetadataInfo Covered;
69 static const MetadataInfo Atomics;
73 explicit constexpr MetadataInfo(
StringRef FunctionPrefix,
75 : FunctionPrefix(FunctionPrefix), SectionSuffix(SectionSuffix) {}
77const MetadataInfo MetadataInfo::Covered{
79const MetadataInfo MetadataInfo::Atomics{
90 "sanitizer-metadata-weak-callbacks",
91 cl::desc(
"Declare callbacks extern weak, and only call if non-null."),
94 ClNoSanitize(
"sanitizer-metadata-nosanitize-attr",
95 cl::desc(
"Mark some metadata features uncovered in functions "
96 "with associated no_sanitize attributes."),
100 cl::desc(
"Emit PCs for covered functions."),
103 cl::desc(
"Emit PCs for atomic operations."),
106 cl::desc(
"Emit PCs for start of functions that are "
107 "subject for use-after-return checking"),
112STATISTIC(NumMetadataCovered,
"Metadata attached to covered functions");
113STATISTIC(NumMetadataAtomics,
"Metadata attached to atomics");
114STATISTIC(NumMetadataUAR,
"Metadata attached to UAR functions");
122 Opts.Atomics |= ClEmitAtomics;
123 Opts.UAR |= ClEmitUAR;
124 return std::move(Opts);
127class SanitizerBinaryMetadata {
130 std::unique_ptr<SpecialCaseList> Ignorelist)
131 :
Mod(M),
Options(transformOptionsFromCl(std::move(Opts))),
132 Ignorelist(std::move(Ignorelist)), TargetTriple(M.getTargetTriple()),
133 VersionStr(
utostr(getVersion())), IRB(M.getContext()) {
135 assert(TargetTriple.isOSBinFormatELF() &&
"ELF only");
136 assert(!TargetTriple.isGPU() &&
"Device targets are not supported");
144 const auto CM =
Mod.getCodeModel();
146 Version |= kVersionPtrSizeRel;
150 void runOn(
Function &
F, MetadataInfoSet &MIS);
175 bool pretendAtomicAccess(
const Value *Addr);
179 std::unique_ptr<SpecialCaseList> Ignorelist;
180 const Triple TargetTriple;
181 const std::string VersionStr;
187bool SanitizerBinaryMetadata::run() {
203 const std::array<Type *, 3> InitTypes = {
Int32Ty, PtrTy, PtrTy};
204 auto *Version = ConstantInt::get(
Int32Ty, getVersion());
206 for (
const MetadataInfo *
MI : MIS) {
207 const std::array<
Value *, InitTypes.size()> InitArgs = {
209 getSectionMarker(getSectionStart(
MI->SectionSuffix), PtrTy),
210 getSectionMarker(getSectionEnd(
MI->SectionSuffix), PtrTy),
216 const std::string StructorPrefix = (
MI->FunctionPrefix + VersionStr).str();
224 Mod, StructorPrefix +
".module_ctor",
225 (
MI->FunctionPrefix +
"_add").str(), InitTypes, InitArgs,
230 Mod, StructorPrefix +
".module_dtor",
231 (
MI->FunctionPrefix +
"_del").str(), InitTypes, InitArgs,
246 CtorComdatKey = Ctor;
247 DtorComdatKey = Dtor;
256void SanitizerBinaryMetadata::runOn(
Function &
F, MetadataInfoSet &MIS) {
260 if (
F.hasFnAttribute(Attribute::Naked))
262 if (
F.hasFnAttribute(Attribute::DisableSanitizerInstrumentation))
264 if (Ignorelist && Ignorelist->inSection(
"metadata",
"fun",
F.getName()))
276 bool RequiresCovered =
false;
281 RequiresCovered |= runOn(
I, MIS, MDB, FeatureMask);
284 if (ClNoSanitize &&
F.hasFnAttribute(
"no_sanitize_thread"))
289 RequiresCovered =
true;
296 if (
Options.Covered || (FeatureMask && RequiresCovered)) {
297 NumMetadataCovered++;
298 const auto *
MI = &MetadataInfo::Covered;
303 F.setMetadata(LLVMContext::MD_pcsections,
308bool isUARSafeCall(CallInst *CI) {
316 return F && (
F->isIntrinsic() ||
F->doesNotReturn() ||
317 F->getName().starts_with(
"__asan_") ||
318 F->getName().starts_with(
"__hwsan_") ||
319 F->getName().starts_with(
"__ubsan_") ||
320 F->getName().starts_with(
"__msan_") ||
321 F->getName().starts_with(
"__tsan_"));
324bool hasUseAfterReturnUnsafeUses(
Value &V) {
325 for (User *U :
V.users()) {
327 if (
I->isLifetimeStartOrEnd() ||
I->isDroppable())
330 if (isUARSafeCall(CI))
337 if (
SI->getOperand(1) == &V)
341 if (!hasUseAfterReturnUnsafeUses(*GEPI))
344 if (!hasUseAfterReturnUnsafeUses(*BCI))
353bool useAfterReturnUnsafe(Instruction &
I) {
355 return hasUseAfterReturnUnsafeUses(
I);
360 return CI->
isTailCall() && !isUARSafeCall(CI);
364bool SanitizerBinaryMetadata::pretendAtomicAccess(
const Value *Addr) {
375 if (GV->hasSection()) {
376 const auto OF =
Mod.getTargetTriple().getObjectFormat();
379 if (GV->getSection().ends_with(ProfSec))
382 if (GV->getName().starts_with(
"__llvm_gcov") ||
383 GV->getName().starts_with(
"__llvm_gcda"))
390bool maybeSharedMutable(
const Value *Addr) {
401 if (GV->isConstant())
408bool SanitizerBinaryMetadata::runOn(Instruction &
I, MetadataInfoSet &MIS,
409 MDBuilder &MDB, uint64_t &FeatureMask) {
411 bool RequiresCovered =
false;
417 if (useAfterReturnUnsafe(
I))
422 const Value *Addr =
nullptr;
424 Addr =
SI->getPointerOperand();
426 Addr = LI->getPointerOperand();
428 if (
I.mayReadOrWriteMemory() && maybeSharedMutable(Addr)) {
431 pretendAtomicAccess(Addr)) {
432 NumMetadataAtomics++;
433 InstMetadata.
push_back(&MetadataInfo::Atomics);
436 RequiresCovered =
true;
441 if (!InstMetadata.
empty()) {
442 MIS.insert_range(InstMetadata);
444 for (
const auto &
MI : InstMetadata)
449 return RequiresCovered;
453SanitizerBinaryMetadata::getSectionMarker(
const Twine &MarkerName,
Type *Ty) {
456 auto *Marker =
new GlobalVariable(
Mod, Ty,
false,
457 GlobalVariable::ExternalWeakLinkage,
458 nullptr, MarkerName);
463StringRef SanitizerBinaryMetadata::getSectionName(StringRef SectionSuffix) {
466 return StringPool.
save(SectionSuffix + VersionStr +
"!C");
469StringRef SanitizerBinaryMetadata::getSectionStart(StringRef SectionSuffix) {
474 return StringPool.
save(
"__start_" + SectionSuffix + VersionStr);
477StringRef SanitizerBinaryMetadata::getSectionEnd(StringRef SectionSuffix) {
478 return StringPool.
save(
"__stop_" + SectionSuffix + VersionStr);
485 : Options(
std::
move(Opts)), IgnorelistFiles(
std::
move(IgnorelistFiles)) {}
489 std::unique_ptr<SpecialCaseList> Ignorelist;
490 if (!IgnorelistFiles.empty()) {
493 if (Ignorelist->inSection(
"metadata",
"src", M.getSourceFileName()))
497 SanitizerBinaryMetadata
Pass(M, Options, std::move(Ignorelist));
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Prepare AGPR Alloc
This file defines the BumpPtrAllocator interface.
Module.h This file contains the declarations for the Module class.
if(auto Err=PB.parsePassPipeline(MPM, Passes)) return wrap(std MPM run * Mod
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Defines the virtual file system interface vfs::FileSystem.
A container for analyses that lazily runs them and caches their results.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
LLVM Basic Block Representation.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
This is an important base class in LLVM.
LLVM_ABI void setComdat(Comdat *C)
void setLinkage(LinkageTypes LT)
@ HiddenVisibility
The GV is hidden.
void setVisibility(VisibilityTypes V)
@ ExternalLinkage
Externally visible function.
@ AvailableExternallyLinkage
Available for inspection, not emission.
IntegerType * getInt32Ty()
Fetch the type representing a 32-bit integer.
ConstantInt * getInt64(uint64_t C)
Get a constant 64-bit value.
PointerType * getPtrTy(unsigned AddrSpace=0)
Fetch the type representing a pointer.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
LLVM_ABI MDNode * createPCSections(ArrayRef< PCSection > Sections)
Return metadata for PC sections.
A Module instance is used to store all the information related to an LLVM module.
Pass interface - Implemented by all 'passes'.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
A vector that has set insertion semantics.
void push_back(const T &Elt)
static LLVM_ABI std::unique_ptr< SpecialCaseList > createOrDie(const std::vector< std::string > &Paths, llvm::vfs::FileSystem &FS)
Parses the special case list entries from files.
StringRef - Represent a constant reference to a string, i.e.
Triple - Helper class for working with autoconf configuration names.
bool supportsCOMDAT() const
Tests whether the target supports comdat.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
Saves strings in the provided stable storage and returns a StringRef with a stable character pointer.
StringRef save(const char *S)
LLVM Value Representation.
LLVM_ABI const Value * stripInBoundsOffsets(function_ref< void(const Value *)> Func=[](const Value *) {}) const
Strip off pointer casts and inbounds GEPs.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
@ SingleThread
Synchronized with respect to signal handlers executing in the same thread.
initializer< Ty > init(const Ty &Val)
static constexpr const StringLiteral & getSectionName(DebugSectionKind SectionKind)
Return the name of the section.
LLVM_ABI IntrusiveRefCntPtr< FileSystem > getRealFileSystem()
Gets an vfs::FileSystem for the 'real' file system, as seen by the operating system.
This is an optimization pass for GlobalISel generic memory operations.
FunctionAddr VTableAddr Value
LLVM_ABI AllocaInst * findAllocaForValue(Value *V, bool OffsetZero=false)
Returns unique alloca where the value comes from, or nullptr.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
FunctionAddr VTableAddr uintptr_t uintptr_t Int32Ty
std::string utostr(uint64_t X, bool isNeg=false)
LLVM_ABI std::string getInstrProfSectionName(InstrProfSectKind IPSK, Triple::ObjectFormatType OF, bool AddSegmentInfo=true)
Return the name of the profile section corresponding to IPSK.
constexpr uint64_t kSanitizerBinaryMetadataUAR
LLVM_ABI std::pair< Function *, FunctionCallee > createSanitizerCtorAndInitFunctions(Module &M, StringRef CtorName, StringRef InitName, ArrayRef< Type * > InitArgTypes, ArrayRef< Value * > InitArgs, StringRef VersionCheckName=StringRef(), bool Weak=false)
Creates sanitizer constructor function, and calls sanitizer's init function from it.
std::optional< SyncScope::ID > getAtomicSyncScopeID(const Instruction *I)
A helper function that returns an atomic operation's sync scope; returns std::nullopt if it is not an...
constexpr uint64_t kSanitizerBinaryMetadataAtomics
BumpPtrAllocatorImpl BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
constexpr char kSanitizerBinaryMetadataCoveredSection[]
@ Mod
The access may modify the value stored in memory.
LLVM_ABI bool PointerMayBeCaptured(const Value *V, bool ReturnCaptures, unsigned MaxUsesToExplore=0)
PointerMayBeCaptured - Return true if this pointer value may be captured by the enclosing function (w...
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI void appendToGlobalCtors(Module &M, Function *F, int Priority, Constant *Data=nullptr)
Append F to the list of global ctors of module M with the given Priority.
constexpr char kSanitizerBinaryMetadataAtomicsSection[]
LLVM_ABI void appendToGlobalDtors(Module &M, Function *F, int Priority, Constant *Data=nullptr)
Same as appendToGlobalCtors(), but for global dtors.
Implement std::hash so that hash_code can be used in STL containers.