21#include "llvm/ADT/SmallString.h"
22#include "llvm/Support/raw_ostream.h"
28class UndefResultChecker
29 :
public Checker< check::PostStmt<BinaryOperator> > {
31 const BugType BT{
this,
"Result of operation is garbage or undefined"};
41 if (!isa<ArraySubscriptExpr>(Ex))
57 std::tie(StInBound, StOutBound) = state->assumeInBoundDual(Idx, ElementCount);
58 return StOutBound && !StInBound;
63 if (
C.getSVal(B).isUndef()) {
68 dyn_cast<FunctionDecl>(
C.getStackFrame()->getDecl()))
69 if (
C.getCalleeName(EnclosingFunctionDecl) ==
"swap")
78 llvm::raw_svector_ostream OS(sbuf);
79 const Expr *Ex =
nullptr;
82 if (
C.getSVal(B->
getLHS()).isUndef()) {
86 else if (
C.getSVal(B->
getRHS()).isUndef()) {
92 OS <<
"The " << (isLeft ?
"left" :
"right") <<
" operand of '"
94 <<
"' is a garbage value";
96 OS <<
" due to array index out of bounds";
99 OS <<
"The result of the '"
101 <<
"' expression is undefined";
103 auto report = std::make_unique<PathSensitiveBugReport>(BT, OS.str(), N);
111 C.emitReport(std::move(report));
119bool ento::shouldRegisterUndefResultChecker(
const CheckerManager &mgr) {
static const MemRegion * getRegion(const CallEvent &Call, const MutexDescriptor &Descriptor, bool IsLock)
static bool isArrayIndexOutOfBounds(CheckerContext &C, const Expr *Ex)
A builtin binary operation expression such as "x + y" or "x <= y".
StringRef getOpcodeStr() const
This represents one expression.
Expr * IgnoreParenCasts() LLVM_READONLY
Skip past any parentheses and casts which might surround this expression until reaching a fixed point...
Represents a function declaration or definition.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
CHECKER * registerChecker(AT &&... Args)
Used to register checkers.
bool isValid() const =delete
ElementRegion is used to represent both array elements and casts.
QualType getValueType() const override
MemRegion - The root abstract class for all memory regions.
SVal - This represents a symbolic expression, which can be either an L-value or an R-value.
T castAs() const
Convert to the specified SVal type, asserting that this SVal is of the desired type.
LLVM_ATTRIBUTE_RETURNS_NONNULL const MemRegion * getSuperRegion() const
bool trackExpressionValue(const ExplodedNode *N, const Expr *E, PathSensitiveBugReport &R, TrackingOptions Opts={})
Attempts to add visitors to track expression value back to its point of origin.
DefinedOrUnknownSVal getDynamicElementCount(ProgramStateRef State, const MemRegion *MR, SValBuilder &SVB, QualType Ty)
The JSON file list parser is used to communicate input to InstallAPI.