// GRSimpleVals.cpp - Transfer functions for tracking simple values -*- C++ -*-- // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines GRSimpleVals, a sub-class of GRTransferFuncs that // provides transfer functions for performing simple value tracking with // limited support for symbolics. // //===----------------------------------------------------------------------===// #include "GRSimpleVals.h" #include "BasicObjCFoundationChecks.h" #include "clang/Basic/SourceManager.h" #include "clang/Analysis/PathDiagnostic.h" #include "clang/Analysis/PathSensitive/ValueState.h" #include "clang/Analysis/PathSensitive/BugReporter.h" #include "llvm/Support/Compiler.h" #include using namespace clang; //===----------------------------------------------------------------------===// // Utility functions. //===----------------------------------------------------------------------===// template inline ExplodedNode* GetNode(ITERATOR I) { return *I; } template <> inline ExplodedNode* GetNode(GRExprEngine::undef_arg_iterator I) { return I->first; } template void GenericEmitWarnings(BugReporter& BR, const BugType& D, ITER I, ITER E) { for (; I != E; ++I) { BugReport R(D); BR.EmitPathWarning(R, GetNode(I)); } } //===----------------------------------------------------------------------===// // Bug Descriptions. //===----------------------------------------------------------------------===// namespace { class VISIBILITY_HIDDEN NullDeref : public BugType { public: virtual const char* getName() const { return "null dereference"; } virtual const char* getDescription() const { return "Dereference of null pointer."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); GenericEmitWarnings(BR, *this, Eng.null_derefs_begin(), Eng.null_derefs_end()); } }; class VISIBILITY_HIDDEN UndefDeref : public BugType { public: virtual const char* getName() const { return "bad dereference"; } virtual const char* getDescription() const { return "Dereference of undefined value."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); GenericEmitWarnings(BR, *this, Eng.undef_derefs_begin(), Eng.undef_derefs_end()); } }; class VISIBILITY_HIDDEN UndefBranch : public BugType { public: virtual const char* getName() const { return "uninitialized value"; } virtual const char* getDescription() const { return "Branch condition evaluates to an uninitialized value."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); GenericEmitWarnings(BR, *this, Eng.undef_branches_begin(), Eng.undef_branches_end()); } }; class VISIBILITY_HIDDEN DivZero : public BugType { public: virtual const char* getName() const { return "divide-by-zero"; } virtual const char* getDescription() const { return "Division by zero/undefined value."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); GenericEmitWarnings(BR, *this, Eng.explicit_bad_divides_begin(), Eng.explicit_bad_divides_end()); } }; class VISIBILITY_HIDDEN UndefResult : public BugType { public: virtual const char* getName() const { return "undefined result"; } virtual const char* getDescription() const { return "Result of operation is undefined."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); GenericEmitWarnings(BR, *this, Eng.undef_results_begin(), Eng.undef_results_end()); } }; class VISIBILITY_HIDDEN BadCall : public BugType { public: virtual const char* getName() const { return "invalid function call"; } virtual const char* getDescription() const { return "Called function is a NULL or undefined function pointer value."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); GenericEmitWarnings(BR, *this, Eng.bad_calls_begin(), Eng.bad_calls_end()); } }; class VISIBILITY_HIDDEN BadArg : public BugType { protected: class Report : public BugReport { const SourceRange R; public: Report(BugType& D, Expr* E) : BugReport(D), R(E->getSourceRange()) {} virtual ~Report() {} virtual void getRanges(const SourceRange*& B, const SourceRange*& E) const { B = &R; E = B+1; } }; public: virtual ~BadArg() {} virtual const char* getName() const { return "bad argument"; } virtual const char* getDescription() const { return "Pass-by-value argument in function is undefined."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); for (GRExprEngine::UndefArgsTy::iterator I = Eng.undef_arg_begin(), E = Eng.undef_arg_end(); I!=E; ++I) { // Generate a report for this bug. Report report(*this, I->second); // Emit the warning. BR.EmitPathWarning(report, I->first); } } }; class VISIBILITY_HIDDEN BadMsgExprArg : public BadArg { public: virtual const char* getName() const { return "bad argument"; } virtual const char* getDescription() const { return "Pass-by-value argument in message expression is undefined."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); for (GRExprEngine::UndefArgsTy::iterator I=Eng.msg_expr_undef_arg_begin(), E = Eng.msg_expr_undef_arg_end(); I!=E; ++I) { // Generate a report for this bug. Report report(*this, I->second); // Emit the warning. BR.EmitPathWarning(report, I->first); } } }; class VISIBILITY_HIDDEN BadReceiver : public BugType { class Report : public BugReport { SourceRange R; public: Report(BugType& D, ExplodedNode *N) : BugReport(D) { Stmt *S = cast(N->getLocation()).getStmt(); Expr* E = cast(S)->getReceiver(); assert (E && "Receiver cannot be NULL"); R = E->getSourceRange(); } virtual ~Report() {} virtual void getRanges(const SourceRange*& B, const SourceRange*& E) const { B = &R; E = B+1; } }; public: virtual const char* getName() const { return "bad receiver"; } virtual const char* getDescription() const { return "Receiver in message expression is an uninitialized value."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); for (GRExprEngine::UndefReceiversTy::iterator I=Eng.undef_receivers_begin(), E = Eng.undef_receivers_end(); I!=E; ++I) { // Generate a report for this bug. Report report(*this, *I); // Emit the warning. BR.EmitPathWarning(report, *I); } } }; class VISIBILITY_HIDDEN RetStack : public BugType { public: virtual const char* getName() const { return "return of stack address"; } virtual const char* getDescription() const { return "Address of stack-allocated variable returned."; } virtual void EmitWarnings(BugReporter& BR) { GRExprEngine& Eng = BR.getEngine(); GenericEmitWarnings(BR, *this, Eng.ret_stackaddr_begin(), Eng.ret_stackaddr_end()); } }; } // end anonymous namespace void GRSimpleVals::RegisterChecks(GRExprEngine& Eng) { Eng.Register(new NullDeref()); Eng.Register(new UndefDeref()); Eng.Register(new UndefBranch()); Eng.Register(new DivZero()); Eng.Register(new UndefResult()); Eng.Register(new BadCall()); Eng.Register(new RetStack()); Eng.Register(new BadArg()); Eng.Register(new BadMsgExprArg()); Eng.Register(new BadReceiver()); // Add extra checkers. GRSimpleAPICheck* FoundationCheck = CreateBasicObjCFoundationChecks(Eng.getContext(), &Eng.getStateManager()); Eng.AddObjCMessageExprCheck(FoundationCheck); } //===----------------------------------------------------------------------===// // Analysis Driver. //===----------------------------------------------------------------------===// namespace clang { unsigned RunGRSimpleVals(CFG& cfg, Decl& CD, ASTContext& Ctx, Diagnostic& Diag, PathDiagnosticClient* PD, bool Visualize, bool TrimGraph) { // Construct the analysis engine. GRExprEngine Eng(cfg, CD, Ctx); // Set base transfer functions. GRSimpleVals GRSV; Eng.setTransferFunctions(GRSV); // Execute the worklist algorithm. Eng.ExecuteWorkList(); // Display warnings. Eng.EmitWarnings(Diag, PD); #ifndef NDEBUG if (Visualize) Eng.ViewGraph(TrimGraph); #endif return Eng.getGraph().size(); } } // end clang namespace //===----------------------------------------------------------------------===// // Transfer function for Casts. //===----------------------------------------------------------------------===// RVal GRSimpleVals::EvalCast(GRExprEngine& Eng, NonLVal X, QualType T) { if (!isa(X)) return UnknownVal(); BasicValueFactory& BasicVals = Eng.getBasicVals(); llvm::APSInt V = cast(X).getValue(); V.setIsUnsigned(T->isUnsignedIntegerType() || T->isPointerType() || T->isObjCQualifiedIdType()); V.extOrTrunc(Eng.getContext().getTypeSize(T)); if (T->isPointerType()) return lval::ConcreteInt(BasicVals.getValue(V)); else return nonlval::ConcreteInt(BasicVals.getValue(V)); } // Casts. RVal GRSimpleVals::EvalCast(GRExprEngine& Eng, LVal X, QualType T) { if (T->isPointerLikeType() || T->isObjCQualifiedIdType()) return X; assert (T->isIntegerType()); if (!isa(X)) return UnknownVal(); BasicValueFactory& BasicVals = Eng.getBasicVals(); llvm::APSInt V = cast(X).getValue(); V.setIsUnsigned(T->isUnsignedIntegerType() || T->isPointerType()); V.extOrTrunc(Eng.getContext().getTypeSize(T)); return nonlval::ConcreteInt(BasicVals.getValue(V)); } // Unary operators. RVal GRSimpleVals::EvalMinus(GRExprEngine& Eng, UnaryOperator* U, NonLVal X){ switch (X.getSubKind()) { case nonlval::ConcreteIntKind: return cast(X).EvalMinus(Eng.getBasicVals(), U); default: return UnknownVal(); } } RVal GRSimpleVals::EvalComplement(GRExprEngine& Eng, NonLVal X) { switch (X.getSubKind()) { case nonlval::ConcreteIntKind: return cast(X).EvalComplement(Eng.getBasicVals()); default: return UnknownVal(); } } // Binary operators. RVal GRSimpleVals::EvalBinOp(GRExprEngine& Eng, BinaryOperator::Opcode Op, NonLVal L, NonLVal R) { BasicValueFactory& BasicVals = Eng.getBasicVals(); while (1) { switch (L.getSubKind()) { default: return UnknownVal(); case nonlval::ConcreteIntKind: if (isa(R)) { const nonlval::ConcreteInt& L_CI = cast(L); const nonlval::ConcreteInt& R_CI = cast(R); return L_CI.EvalBinOp(BasicVals, Op, R_CI); } else { NonLVal tmp = R; R = L; L = tmp; continue; } case nonlval::SymbolValKind: { if (isa(R)) { const SymIntConstraint& C = BasicVals.getConstraint(cast(L).getSymbol(), Op, cast(R).getValue()); return nonlval::SymIntConstraintVal(C); } else return UnknownVal(); } } } } // Binary Operators (except assignments and comma). RVal GRSimpleVals::EvalBinOp(GRExprEngine& Eng, BinaryOperator::Opcode Op, LVal L, LVal R) { switch (Op) { default: return UnknownVal(); case BinaryOperator::EQ: return EvalEQ(Eng, L, R); case BinaryOperator::NE: return EvalNE(Eng, L, R); } } // Pointer arithmetic. RVal GRSimpleVals::EvalBinOp(GRExprEngine& Eng, BinaryOperator::Opcode Op, LVal L, NonLVal R) { return UnknownVal(); } // Equality operators for LVals. RVal GRSimpleVals::EvalEQ(GRExprEngine& Eng, LVal L, LVal R) { BasicValueFactory& BasicVals = Eng.getBasicVals(); switch (L.getSubKind()) { default: assert(false && "EQ not implemented for this LVal."); return UnknownVal(); case lval::ConcreteIntKind: if (isa(R)) { bool b = cast(L).getValue() == cast(R).getValue(); return NonLVal::MakeIntTruthVal(BasicVals, b); } else if (isa(R)) { const SymIntConstraint& C = BasicVals.getConstraint(cast(R).getSymbol(), BinaryOperator::EQ, cast(L).getValue()); return nonlval::SymIntConstraintVal(C); } break; case lval::SymbolValKind: { if (isa(R)) { const SymIntConstraint& C = BasicVals.getConstraint(cast(L).getSymbol(), BinaryOperator::EQ, cast(R).getValue()); return nonlval::SymIntConstraintVal(C); } // FIXME: Implement == for lval Symbols. This is mainly useful // in iterator loops when traversing a buffer, e.g. while(z != zTerm). // Since this is not useful for many checkers we'll punt on this for // now. return UnknownVal(); } case lval::DeclValKind: case lval::FuncValKind: case lval::GotoLabelKind: return NonLVal::MakeIntTruthVal(BasicVals, L == R); } return NonLVal::MakeIntTruthVal(BasicVals, false); } RVal GRSimpleVals::EvalNE(GRExprEngine& Eng, LVal L, LVal R) { BasicValueFactory& BasicVals = Eng.getBasicVals(); switch (L.getSubKind()) { default: assert(false && "NE not implemented for this LVal."); return UnknownVal(); case lval::ConcreteIntKind: if (isa(R)) { bool b = cast(L).getValue() != cast(R).getValue(); return NonLVal::MakeIntTruthVal(BasicVals, b); } else if (isa(R)) { const SymIntConstraint& C = BasicVals.getConstraint(cast(R).getSymbol(), BinaryOperator::NE, cast(L).getValue()); return nonlval::SymIntConstraintVal(C); } break; case lval::SymbolValKind: { if (isa(R)) { const SymIntConstraint& C = BasicVals.getConstraint(cast(L).getSymbol(), BinaryOperator::NE, cast(R).getValue()); return nonlval::SymIntConstraintVal(C); } // FIXME: Implement != for lval Symbols. This is mainly useful // in iterator loops when traversing a buffer, e.g. while(z != zTerm). // Since this is not useful for many checkers we'll punt on this for // now. return UnknownVal(); break; } case lval::DeclValKind: case lval::FuncValKind: case lval::GotoLabelKind: return NonLVal::MakeIntTruthVal(BasicVals, L != R); } return NonLVal::MakeIntTruthVal(BasicVals, true); } //===----------------------------------------------------------------------===// // Transfer function for Function Calls. //===----------------------------------------------------------------------===// void GRSimpleVals::EvalCall(ExplodedNodeSet& Dst, GRExprEngine& Eng, GRStmtNodeBuilder& Builder, CallExpr* CE, LVal L, ExplodedNode* Pred) { ValueStateManager& StateMgr = Eng.getStateManager(); ValueState* St = Builder.GetState(Pred); // Invalidate all arguments passed in by reference (LVals). for (CallExpr::arg_iterator I = CE->arg_begin(), E = CE->arg_end(); I != E; ++I) { RVal V = StateMgr.GetRVal(St, *I); if (isa(V)) St = StateMgr.SetRVal(St, cast(V), UnknownVal()); } // Make up a symbol for the return value of this function. if (CE->getType() != Eng.getContext().VoidTy) { unsigned Count = Builder.getCurrentBlockCount(); SymbolID Sym = Eng.getSymbolManager().getConjuredSymbol(CE, Count); RVal X = CE->getType()->isPointerType() ? cast(lval::SymbolVal(Sym)) : cast(nonlval::SymbolVal(Sym)); St = StateMgr.SetRVal(St, CE, X, Eng.getCFG().isBlkExpr(CE), false); } Builder.MakeNode(Dst, CE, Pred, St); }