46 if (!SVFUtil::isa<CallICFGNode>(node))
116 std::string funcName =
callNode->getCalledFunction()->getName();
117 if (funcName ==
"SAFE_BUFACCESS")
131 assert(
false &&
"SAFE_BUFACCESS size is bottom");
137 std::cout <<
"safe buffer access success: " <<
callNode->toString()
143 std::string
err_msg =
"this SAFE_BUFACCESS should be a safe access but detected buffer overflow. Pos: ";
145 std::cerr <<
err_msg << std::endl;
149 else if (funcName ==
"UNSAFE_BUFACCESS")
154 if (
callNode->arg_size() < 2)
return;
160 assert(
false &&
"UNSAFE_BUFACCESS size is bottom");
166 std::cout <<
"detect buffer overflow success: " <<
callNode->toString() << std::endl;
171 std::string
err_msg =
"this UNSAFE_BUFACCESS should be a buffer overflow but not detected. Pos: ";
173 std::cerr <<
err_msg << std::endl;
229 if (
annotation.find(
"MEMCPY") != std::string::npos)
231 if (
annotation.find(
"MEMSET") != std::string::npos)
233 if (
annotation.find(
"STRCPY") != std::string::npos)
235 if (
annotation.find(
"STRCAT") != std::string::npos)
247 std::vector<std::pair<u32_t, u32_t>>
args =
267 std::vector<std::pair<u32_t, u32_t>>
args =
319 if (SVFUtil::isa<BaseObjVar>(
obj))
321 return as.getByteOffset(
gep);
323 else if (SVFUtil::isa<GepObjVar>(
obj))
330 assert(SVFUtil::isa<DummyObjVar>(
obj) &&
"Unknown object type");
354 if (SVFUtil::isa<BaseObjVar>(
obj))
363 else if (SVFUtil::isa<GepObjVar>(
obj))
379 assert(
false &&
"GEP RHS object has no offset from base");
416 const std::vector<std::string>
strcatGroup = {
"__strcat_chk",
"strcat",
"__wcscat_chk",
"wcscat"};
417 const std::vector<std::string>
strncatGroup = {
"__strncat_chk",
"strncat",
"__wcsncat_chk",
"wcsncat"};
439 assert(
false &&
"Unknown strcat function, please add it to strcatGroup or strncatGroup");
496 if (
offset.ub().getIntNumeral() >= size)
Exception class for handling errors in Abstract Execution.
IntervalValue getStrlen(AbstractState &as, const SVF::SVFVar *strValue)
Calculates the length of a string.
ExtAPIType
Enumeration of external API types.
static AbstractInterpretation & getAEInstance()
AbstractState & getAbsStateFromTrace(const ICFGNode *node)
Set< const CallICFGNode * > checkpoints
static u32_t getInternalID(u32_t idx)
Return the internal index if idx is an address otherwise return the value of idx.
const ICFGNode * getICFGNode() const
Get the ICFGNode related to the creation of this object.
bool isConstantByteSize() const
Check if byte size is a const value.
u32_t getByteSizeOfObj() const
Get the byte size of this object.
IntervalValue getAccessOffset(AbstractState &as, NodeID objId, const GepStmt *gep)
Retrieves the access offset for a given object and GEP statement.
void addToGepObjOffsetFromBase(const GepObjVar *obj, const IntervalValue &offset)
Adds an offset to a GEP object.
Map< std::string, std::vector< std::pair< u32_t, u32_t > > > extAPIBufOverflowCheckRules
Rules for checking buffer overflows in external APIs.
void detect(AbstractState &as, const ICFGNode *)
Detect buffer overflow issues within a node.
bool detectStrcpy(AbstractState &as, const CallICFGNode *call)
Detects buffer overflow in 'strcpy' function calls.
bool detectStrcat(AbstractState &as, const CallICFGNode *call)
Detects buffer overflow in 'strcat' function calls.
IntervalValue getGepObjOffsetFromBase(const GepObjVar *obj) const
Retrieves the offset of a GEP object from its base.
void handleStubFunctions(const CallICFGNode *)
Handles external API calls related to buffer overflow detection.
bool hasGepObjOffsetFromBase(const GepObjVar *obj) const
Checks if a GEP object has an associated offset.
void updateGepObjOffsetFromBase(AddressValue gepAddrs, AddressValue objAddrs, IntervalValue offset)
Updates the offset of a GEP object from its base.
bool canSafelyAccessMemory(AbstractState &as, const SVFVar *value, const IntervalValue &len)
Checks if memory can be safely accessed.
void initExtAPIBufOverflowCheckRules()
Initializes external API buffer overflow check rules.
void detectExtAPI(AbstractState &as, const CallICFGNode *call)
Handles external API calls related to buffer overflow detection.
void addBugToReporter(const AEException &e, const ICFGNode *node)
Adds a bug to the reporter based on an exception.
const std::string toString() const override
const ValVar * getArgument(u32_t ArgNo) const
Parameter operations.
const FunObjVar * getCalledFunction() const
static ExtAPI * getExtAPI()
const std::vector< std::string > & getExtFuncAnnotations(const FunObjVar *fun)
NodeType * getGNode(NodeID id) const
Get a node.
const SVFStmtList & getSVFStmts() const
static IntervalValue bottom()
Create the bottom IntervalValue [+inf, -inf].
static IntervalValue top()
Create the IntervalValue [-inf, +inf].
const BaseObjVar * getBaseObject(NodeID id) const
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
NodeID getId() const
Get ID.
virtual const std::string & getName() const
std::ostream & errs()
Overwrite llvm::errs()
bool isExtCall(const FunObjVar *fun)
llvm::IRBuilder IRBuilder