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.isNVPTX() || TargetTriple.isAMDGPU()) &&
137 "Device targets are not supported");
145 const auto CM =
Mod.getCodeModel();
147 Version |= kVersionPtrSizeRel;
151 void runOn(
Function &
F, MetadataInfoSet &MIS);
176 bool pretendAtomicAccess(
const Value *
Addr);
180 std::unique_ptr<SpecialCaseList> Ignorelist;
181 const Triple TargetTriple;
182 const std::string VersionStr;
188bool SanitizerBinaryMetadata::run() {
202 auto *PtrTy = IRB.getPtrTy();
203 auto *Int32Ty = IRB.getInt32Ty();
204 const std::array<Type *, 3> InitTypes = {Int32Ty, PtrTy, PtrTy};
205 auto *Version = ConstantInt::get(Int32Ty, getVersion());
207 for (
const MetadataInfo *
MI : MIS) {
208 const std::array<
Value *, InitTypes.size()> InitArgs = {
210 getSectionMarker(getSectionStart(
MI->SectionSuffix), PtrTy),
211 getSectionMarker(getSectionEnd(
MI->SectionSuffix), PtrTy),
217 const std::string StructorPrefix = (
MI->FunctionPrefix + VersionStr).str();
225 Mod, StructorPrefix +
".module_ctor",
226 (
MI->FunctionPrefix +
"_add").str(), InitTypes, InitArgs,
231 Mod, StructorPrefix +
".module_dtor",
232 (
MI->FunctionPrefix +
"_del").str(), InitTypes, InitArgs,
237 if (TargetTriple.supportsCOMDAT()) {
247 CtorComdatKey = Ctor;
248 DtorComdatKey = Dtor;
257void SanitizerBinaryMetadata::runOn(
Function &
F, MetadataInfoSet &MIS) {
261 if (
F.hasFnAttribute(Attribute::Naked))
263 if (
F.hasFnAttribute(Attribute::DisableSanitizerInstrumentation))
265 if (Ignorelist && Ignorelist->inSection(
"metadata",
"fun",
F.getName()))
277 bool RequiresCovered =
false;
282 RequiresCovered |= runOn(
I, MIS, MDB, FeatureMask);
285 if (ClNoSanitize &&
F.hasFnAttribute(
"no_sanitize_thread"))
286 FeatureMask &= ~kSanitizerBinaryMetadataAtomics;
288 FeatureMask &= ~kSanitizerBinaryMetadataUAR;
290 RequiresCovered =
true;
297 if (
Options.Covered || (FeatureMask && RequiresCovered)) {
298 NumMetadataCovered++;
299 const auto *
MI = &MetadataInfo::Covered;
303 Constant *CFM = IRB.getInt64(FeatureMask);
304 F.setMetadata(LLVMContext::MD_pcsections,
317 return F && (
F->isIntrinsic() ||
F->doesNotReturn() ||
318 F->getName().starts_with(
"__asan_") ||
319 F->getName().starts_with(
"__hwsan_") ||
320 F->getName().starts_with(
"__ubsan_") ||
321 F->getName().starts_with(
"__msan_") ||
322 F->getName().starts_with(
"__tsan_"));
325bool hasUseAfterReturnUnsafeUses(
Value &V) {
326 for (
User *U :
V.users()) {
327 if (
auto *
I = dyn_cast<Instruction>(U)) {
328 if (
I->isLifetimeStartOrEnd() ||
I->isDroppable())
330 if (
auto *CI = dyn_cast<CallInst>(U)) {
331 if (isUARSafeCall(CI))
334 if (isa<LoadInst>(U))
336 if (
auto *SI = dyn_cast<StoreInst>(U)) {
338 if (
SI->getOperand(1) == &V)
341 if (
auto *GEPI = dyn_cast<GetElementPtrInst>(U)) {
342 if (!hasUseAfterReturnUnsafeUses(*GEPI))
344 }
else if (
auto *BCI = dyn_cast<BitCastInst>(U)) {
345 if (!hasUseAfterReturnUnsafeUses(*BCI))
355 if (isa<AllocaInst>(
I))
356 return hasUseAfterReturnUnsafeUses(
I);
360 else if (
auto *CI = dyn_cast<CallInst>(&
I))
361 return CI->
isTailCall() && !isUARSafeCall(CI);
365bool SanitizerBinaryMetadata::pretendAtomicAccess(
const Value *
Addr) {
369 Addr =
Addr->stripInBoundsOffsets();
370 auto *GV = dyn_cast<GlobalVariable>(
Addr);
376 if (GV->hasSection()) {
380 if (GV->getSection().ends_with(ProfSec))
383 if (GV->getName().starts_with(
"__llvm_gcov") ||
384 GV->getName().starts_with(
"__llvm_gcda"))
391bool maybeSharedMutable(
const Value *
Addr) {
400 Addr =
Addr->stripInBoundsOffsets();
401 if (
auto *GV = dyn_cast<GlobalVariable>(
Addr)) {
402 if (GV->isConstant())
409bool SanitizerBinaryMetadata::runOn(
Instruction &
I, MetadataInfoSet &MIS,
412 bool RequiresCovered =
false;
418 if (useAfterReturnUnsafe(
I))
424 if (
auto *SI = dyn_cast<StoreInst>(&
I))
425 Addr =
SI->getPointerOperand();
426 else if (
auto *LI = dyn_cast<LoadInst>(&
I))
427 Addr = LI->getPointerOperand();
429 if (
I.mayReadOrWriteMemory() && maybeSharedMutable(
Addr)) {
432 pretendAtomicAccess(
Addr)) {
433 NumMetadataAtomics++;
434 InstMetadata.
push_back(&MetadataInfo::Atomics);
437 RequiresCovered =
true;
442 if (!InstMetadata.
empty()) {
443 MIS.insert(InstMetadata.
begin(), InstMetadata.
end());
445 for (
const auto &
MI : InstMetadata)
450 return RequiresCovered;
454SanitizerBinaryMetadata::getSectionMarker(
const Twine &MarkerName,
Type *Ty) {
458 GlobalVariable::ExternalWeakLinkage,
459 nullptr, MarkerName);
467 return StringPool.save(SectionSuffix + VersionStr +
"!C");
475 return StringPool.save(
"__start_" + SectionSuffix + VersionStr);
479 return StringPool.save(
"__stop_" + SectionSuffix + VersionStr);
490 std::unique_ptr<SpecialCaseList> Ignorelist;
491 if (!IgnorelistFiles.
empty()) {
494 if (Ignorelist->inSection(
"metadata",
"src", M.getSourceFileName()))
498 SanitizerBinaryMetadata
Pass(M, Options, std::move(Ignorelist));
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
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
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),...
bool empty() const
empty - Check if the array is empty.
LLVM Basic Block Representation.
Allocate memory in an ever growing pool, as if by bump-pointer.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
This class represents a function call, abstracting a target machine's calling convention.
This is an important base class in LLVM.
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.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
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)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
static 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.
ObjectFormatType getObjectFormat() const
Get the object format for this triple.
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.
LLVM Value Representation.
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.
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.
const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=6)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
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
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...
bool PointerMayBeCaptured(const Value *V, bool ReturnCaptures, bool StoreCaptures, unsigned MaxUsesToExplore=0)
PointerMayBeCaptured - Return true if this pointer value may be captured by the enclosing function (w...
constexpr uint64_t kSanitizerBinaryMetadataAtomics
constexpr char kSanitizerBinaryMetadataCoveredSection[]
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
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[]
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.