2017-05-29 23:03:20 +08:00
|
|
|
//===-- IteratorChecker.cpp ---------------------------------------*- C++ -*--//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2017-05-29 23:03:20 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Defines a checker for using iterators outside their range (past end). Usage
|
|
|
|
// means here dereferencing, incrementing etc.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// In the code, iterator can be represented as a:
|
|
|
|
// * type-I: typedef-ed pointer. Operations over such iterator, such as
|
|
|
|
// comparisons or increments, are modeled straightforwardly by the
|
|
|
|
// analyzer.
|
|
|
|
// * type-II: structure with its method bodies available. Operations over such
|
|
|
|
// iterator are inlined by the analyzer, and results of modeling
|
|
|
|
// these operations are exposing implementation details of the
|
|
|
|
// iterators, which is not necessarily helping.
|
|
|
|
// * type-III: completely opaque structure. Operations over such iterator are
|
|
|
|
// modeled conservatively, producing conjured symbols everywhere.
|
|
|
|
//
|
|
|
|
// To handle all these types in a common way we introduce a structure called
|
|
|
|
// IteratorPosition which is an abstraction of the position the iterator
|
|
|
|
// represents using symbolic expressions. The checker handles all the
|
|
|
|
// operations on this structure.
|
|
|
|
//
|
|
|
|
// Additionally, depending on the circumstances, operators of types II and III
|
|
|
|
// can be represented as:
|
|
|
|
// * type-IIa, type-IIIa: conjured structure symbols - when returned by value
|
|
|
|
// from conservatively evaluated methods such as
|
|
|
|
// `.begin()`.
|
|
|
|
// * type-IIb, type-IIIb: memory regions of iterator-typed objects, such as
|
|
|
|
// variables or temporaries, when the iterator object is
|
|
|
|
// currently treated as an lvalue.
|
|
|
|
// * type-IIc, type-IIIc: compound values of iterator-typed objects, when the
|
|
|
|
// iterator object is treated as an rvalue taken of a
|
|
|
|
// particular lvalue, eg. a copy of "type-a" iterator
|
|
|
|
// object, or an iterator that existed before the
|
|
|
|
// analysis has started.
|
|
|
|
//
|
|
|
|
// To handle any of these three different representations stored in an SVal we
|
|
|
|
// use setter and getters functions which separate the three cases. To store
|
|
|
|
// them we use a pointer union of symbol and memory region.
|
|
|
|
//
|
2018-06-28 18:58:53 +08:00
|
|
|
// The checker works the following way: We record the begin and the
|
|
|
|
// past-end iterator for all containers whenever their `.begin()` and `.end()`
|
|
|
|
// are called. Since the Constraint Manager cannot handle such SVals we need
|
|
|
|
// to take over its role. We post-check equality and non-equality comparisons
|
|
|
|
// and record that the two sides are equal if we are in the 'equal' branch
|
|
|
|
// (true-branch for `==` and false-branch for `!=`).
|
2017-05-29 23:03:20 +08:00
|
|
|
//
|
|
|
|
// In case of type-I or type-II iterators we get a concrete integer as a result
|
|
|
|
// of the comparison (1 or 0) but in case of type-III we only get a Symbol. In
|
|
|
|
// this latter case we record the symbol and reload it in evalAssume() and do
|
|
|
|
// the propagation there. We also handle (maybe double) negated comparisons
|
2018-06-28 18:58:53 +08:00
|
|
|
// which are represented in the form of (x == 0 or x != 0) where x is the
|
2017-05-29 23:03:20 +08:00
|
|
|
// comparison itself.
|
2018-06-28 18:58:53 +08:00
|
|
|
//
|
|
|
|
// Since `SimpleConstraintManager` cannot handle complex symbolic expressions
|
|
|
|
// we only use expressions of the format S, S+n or S-n for iterator positions
|
|
|
|
// where S is a conjured symbol and n is an unsigned concrete integer. When
|
|
|
|
// making an assumption e.g. `S1 + n == S2 + m` we store `S1 - S2 == m - n` as
|
|
|
|
// a constraint which we later retrieve when doing an actual comparison.
|
2017-05-29 23:03:20 +08:00
|
|
|
|
[analyzer][NFC] Move CheckerRegistry from the Core directory to Frontend
ClangCheckerRegistry is a very non-obvious, poorly documented, weird concept.
It derives from CheckerRegistry, and is placed in lib/StaticAnalyzer/Frontend,
whereas it's base is located in lib/StaticAnalyzer/Core. It was, from what I can
imagine, used to circumvent the problem that the registry functions of the
checkers are located in the clangStaticAnalyzerCheckers library, but that
library depends on clangStaticAnalyzerCore. However, clangStaticAnalyzerFrontend
depends on both of those libraries.
One can make the observation however, that CheckerRegistry has no place in Core,
it isn't used there at all! The only place where it is used is Frontend, which
is where it ultimately belongs.
This move implies that since
include/clang/StaticAnalyzer/Checkers/ClangCheckers.h only contained a single function:
class CheckerRegistry;
void registerBuiltinCheckers(CheckerRegistry ®istry);
it had to re purposed, as CheckerRegistry is no longer available to
clangStaticAnalyzerCheckers. It was renamed to BuiltinCheckerRegistration.h,
which actually describes it a lot better -- it does not contain the registration
functions for checkers, but only those generated by the tblgen files.
Differential Revision: https://reviews.llvm.org/D54436
llvm-svn: 349275
2018-12-16 00:23:51 +08:00
|
|
|
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
2018-08-28 16:41:15 +08:00
|
|
|
#include "clang/AST/DeclTemplate.h"
|
2017-05-29 23:03:20 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/Checker.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
2018-09-10 17:06:31 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h"
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
#include <utility>
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
using namespace clang;
|
|
|
|
using namespace ento;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Abstract position of an iterator. This helps to handle all three kinds
|
|
|
|
// of operators in a common way by using a symbolic position.
|
|
|
|
struct IteratorPosition {
|
|
|
|
private:
|
|
|
|
|
|
|
|
// Container the iterator belongs to
|
|
|
|
const MemRegion *Cont;
|
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
// Whether iterator is valid
|
|
|
|
const bool Valid;
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
// Abstract offset
|
2018-06-28 18:58:53 +08:00
|
|
|
const SymbolRef Offset;
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
IteratorPosition(const MemRegion *C, bool V, SymbolRef Of)
|
|
|
|
: Cont(C), Valid(V), Offset(Of) {}
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
const MemRegion *getContainer() const { return Cont; }
|
2018-08-28 16:41:15 +08:00
|
|
|
bool isValid() const { return Valid; }
|
2017-05-29 23:03:20 +08:00
|
|
|
SymbolRef getOffset() const { return Offset; }
|
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
IteratorPosition invalidate() const {
|
|
|
|
return IteratorPosition(Cont, false, Offset);
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
static IteratorPosition getPosition(const MemRegion *C, SymbolRef Of) {
|
2018-08-28 16:41:15 +08:00
|
|
|
return IteratorPosition(C, true, Of);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
IteratorPosition setTo(SymbolRef NewOf) const {
|
2018-08-28 16:41:15 +08:00
|
|
|
return IteratorPosition(Cont, Valid, NewOf);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
2018-09-10 17:04:27 +08:00
|
|
|
IteratorPosition reAssign(const MemRegion *NewCont) const {
|
|
|
|
return IteratorPosition(NewCont, Valid, Offset);
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
bool operator==(const IteratorPosition &X) const {
|
2018-08-28 16:41:15 +08:00
|
|
|
return Cont == X.Cont && Valid == X.Valid && Offset == X.Offset;
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const IteratorPosition &X) const {
|
2018-08-28 16:41:15 +08:00
|
|
|
return Cont != X.Cont || Valid != X.Valid || Offset != X.Offset;
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Profile(llvm::FoldingSetNodeID &ID) const {
|
|
|
|
ID.AddPointer(Cont);
|
2018-08-28 16:41:15 +08:00
|
|
|
ID.AddInteger(Valid);
|
2017-05-29 23:03:20 +08:00
|
|
|
ID.Add(Offset);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
// Structure to record the symbolic begin and end position of a container
|
2017-05-29 23:03:20 +08:00
|
|
|
struct ContainerData {
|
|
|
|
private:
|
2018-06-28 18:58:53 +08:00
|
|
|
const SymbolRef Begin, End;
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
ContainerData(SymbolRef B, SymbolRef E) : Begin(B), End(E) {}
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
public:
|
2018-06-28 18:58:53 +08:00
|
|
|
static ContainerData fromBegin(SymbolRef B) {
|
|
|
|
return ContainerData(B, nullptr);
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
static ContainerData fromEnd(SymbolRef E) {
|
2018-06-28 18:58:53 +08:00
|
|
|
return ContainerData(nullptr, E);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
SymbolRef getBegin() const { return Begin; }
|
2017-05-29 23:03:20 +08:00
|
|
|
SymbolRef getEnd() const { return End; }
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
ContainerData newBegin(SymbolRef B) const { return ContainerData(B, End); }
|
|
|
|
|
|
|
|
ContainerData newEnd(SymbolRef E) const { return ContainerData(Begin, E); }
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
bool operator==(const ContainerData &X) const {
|
2018-06-28 18:58:53 +08:00
|
|
|
return Begin == X.Begin && End == X.End;
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const ContainerData &X) const {
|
2018-06-28 18:58:53 +08:00
|
|
|
return Begin != X.Begin || End != X.End;
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Profile(llvm::FoldingSetNodeID &ID) const {
|
2018-06-28 18:58:53 +08:00
|
|
|
ID.Add(Begin);
|
2017-05-29 23:03:20 +08:00
|
|
|
ID.Add(End);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class IteratorChecker
|
|
|
|
: public Checker<check::PreCall, check::PostCall,
|
2018-09-10 17:07:47 +08:00
|
|
|
check::PostStmt<MaterializeTemporaryExpr>, check::Bind,
|
2019-04-23 15:15:55 +08:00
|
|
|
check::LiveSymbols, check::DeadSymbols> {
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
std::unique_ptr<BugType> OutOfRangeBugType;
|
2018-09-10 17:03:22 +08:00
|
|
|
std::unique_ptr<BugType> MismatchedBugType;
|
2018-08-28 16:41:15 +08:00
|
|
|
std::unique_ptr<BugType> InvalidatedBugType;
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2019-04-23 15:15:55 +08:00
|
|
|
void handleComparison(CheckerContext &C, const Expr *CE, const SVal &RetVal,
|
|
|
|
const SVal &LVal, const SVal &RVal,
|
|
|
|
OverloadedOperatorKind Op) const;
|
|
|
|
void processComparison(CheckerContext &C, ProgramStateRef State,
|
|
|
|
SymbolRef Sym1, SymbolRef Sym2, const SVal &RetVal,
|
|
|
|
OverloadedOperatorKind Op) const;
|
2018-08-28 16:41:15 +08:00
|
|
|
void verifyAccess(CheckerContext &C, const SVal &Val) const;
|
2017-05-29 23:03:20 +08:00
|
|
|
void verifyDereference(CheckerContext &C, const SVal &Val) const;
|
2018-06-28 18:58:53 +08:00
|
|
|
void handleIncrement(CheckerContext &C, const SVal &RetVal, const SVal &Iter,
|
|
|
|
bool Postfix) const;
|
|
|
|
void handleDecrement(CheckerContext &C, const SVal &RetVal, const SVal &Iter,
|
|
|
|
bool Postfix) const;
|
|
|
|
void handleRandomIncrOrDecr(CheckerContext &C, OverloadedOperatorKind Op,
|
|
|
|
const SVal &RetVal, const SVal &LHS,
|
|
|
|
const SVal &RHS) const;
|
|
|
|
void handleBegin(CheckerContext &C, const Expr *CE, const SVal &RetVal,
|
|
|
|
const SVal &Cont) const;
|
2017-05-29 23:03:20 +08:00
|
|
|
void handleEnd(CheckerContext &C, const Expr *CE, const SVal &RetVal,
|
|
|
|
const SVal &Cont) const;
|
|
|
|
void assignToContainer(CheckerContext &C, const Expr *CE, const SVal &RetVal,
|
|
|
|
const MemRegion *Cont) const;
|
2018-09-10 17:04:27 +08:00
|
|
|
void handleAssign(CheckerContext &C, const SVal &Cont,
|
|
|
|
const Expr *CE = nullptr,
|
|
|
|
const SVal &OldCont = UndefinedVal()) const;
|
2018-09-10 17:07:47 +08:00
|
|
|
void handleClear(CheckerContext &C, const SVal &Cont) const;
|
2018-09-10 17:06:31 +08:00
|
|
|
void handlePushBack(CheckerContext &C, const SVal &Cont) const;
|
|
|
|
void handlePopBack(CheckerContext &C, const SVal &Cont) const;
|
|
|
|
void handlePushFront(CheckerContext &C, const SVal &Cont) const;
|
|
|
|
void handlePopFront(CheckerContext &C, const SVal &Cont) const;
|
2018-09-10 17:07:47 +08:00
|
|
|
void handleInsert(CheckerContext &C, const SVal &Iter) const;
|
|
|
|
void handleErase(CheckerContext &C, const SVal &Iter) const;
|
|
|
|
void handleErase(CheckerContext &C, const SVal &Iter1,
|
|
|
|
const SVal &Iter2) const;
|
|
|
|
void handleEraseAfter(CheckerContext &C, const SVal &Iter) const;
|
|
|
|
void handleEraseAfter(CheckerContext &C, const SVal &Iter1,
|
|
|
|
const SVal &Iter2) const;
|
2018-12-04 18:27:27 +08:00
|
|
|
void verifyIncrement(CheckerContext &C, const SVal &Iter) const;
|
|
|
|
void verifyDecrement(CheckerContext &C, const SVal &Iter) const;
|
2018-06-28 18:58:53 +08:00
|
|
|
void verifyRandomIncrOrDecr(CheckerContext &C, OverloadedOperatorKind Op,
|
2018-12-04 18:27:27 +08:00
|
|
|
const SVal &LHS, const SVal &RHS) const;
|
2018-09-10 17:07:47 +08:00
|
|
|
void verifyMatch(CheckerContext &C, const SVal &Iter,
|
|
|
|
const MemRegion *Cont) const;
|
2018-09-10 17:03:22 +08:00
|
|
|
void verifyMatch(CheckerContext &C, const SVal &Iter1,
|
|
|
|
const SVal &Iter2) const;
|
2018-12-04 18:27:27 +08:00
|
|
|
IteratorPosition advancePosition(CheckerContext &C, OverloadedOperatorKind Op,
|
|
|
|
const IteratorPosition &Pos,
|
|
|
|
const SVal &Distance) const;
|
2017-05-29 23:03:20 +08:00
|
|
|
void reportOutOfRangeBug(const StringRef &Message, const SVal &Val,
|
|
|
|
CheckerContext &C, ExplodedNode *ErrNode) const;
|
2018-09-10 17:03:22 +08:00
|
|
|
void reportMismatchedBug(const StringRef &Message, const SVal &Val1,
|
|
|
|
const SVal &Val2, CheckerContext &C,
|
|
|
|
ExplodedNode *ErrNode) const;
|
2018-09-10 17:05:31 +08:00
|
|
|
void reportMismatchedBug(const StringRef &Message, const SVal &Val,
|
|
|
|
const MemRegion *Reg, CheckerContext &C,
|
|
|
|
ExplodedNode *ErrNode) const;
|
2018-08-28 16:41:15 +08:00
|
|
|
void reportInvalidatedBug(const StringRef &Message, const SVal &Val,
|
|
|
|
CheckerContext &C, ExplodedNode *ErrNode) const;
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
IteratorChecker();
|
|
|
|
|
|
|
|
enum CheckKind {
|
|
|
|
CK_IteratorRangeChecker,
|
2018-09-10 17:03:22 +08:00
|
|
|
CK_MismatchedIteratorChecker,
|
2018-08-28 16:41:15 +08:00
|
|
|
CK_InvalidatedIteratorChecker,
|
2017-05-29 23:03:20 +08:00
|
|
|
CK_NumCheckKinds
|
|
|
|
};
|
|
|
|
|
|
|
|
DefaultBool ChecksEnabled[CK_NumCheckKinds];
|
|
|
|
CheckName CheckNames[CK_NumCheckKinds];
|
|
|
|
|
|
|
|
void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
|
|
|
|
void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
|
2018-09-10 17:07:47 +08:00
|
|
|
void checkBind(SVal Loc, SVal Val, const Stmt *S, CheckerContext &C) const;
|
|
|
|
void checkPostStmt(const CXXConstructExpr *CCE, CheckerContext &C) const;
|
|
|
|
void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const;
|
2017-05-29 23:03:20 +08:00
|
|
|
void checkPostStmt(const MaterializeTemporaryExpr *MTE,
|
|
|
|
CheckerContext &C) const;
|
2018-06-28 18:58:53 +08:00
|
|
|
void checkLiveSymbols(ProgramStateRef State, SymbolReaper &SR) const;
|
2017-05-29 23:03:20 +08:00
|
|
|
void checkDeadSymbols(SymbolReaper &SR, CheckerContext &C) const;
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
REGISTER_MAP_WITH_PROGRAMSTATE(IteratorSymbolMap, SymbolRef, IteratorPosition)
|
|
|
|
REGISTER_MAP_WITH_PROGRAMSTATE(IteratorRegionMap, const MemRegion *,
|
|
|
|
IteratorPosition)
|
|
|
|
|
|
|
|
REGISTER_MAP_WITH_PROGRAMSTATE(ContainerMap, const MemRegion *, ContainerData)
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool isIteratorType(const QualType &Type);
|
|
|
|
bool isIterator(const CXXRecordDecl *CRD);
|
2018-09-10 17:05:31 +08:00
|
|
|
bool isComparisonOperator(OverloadedOperatorKind OK);
|
2018-06-28 18:58:53 +08:00
|
|
|
bool isBeginCall(const FunctionDecl *Func);
|
2017-05-29 23:03:20 +08:00
|
|
|
bool isEndCall(const FunctionDecl *Func);
|
2018-09-10 17:07:47 +08:00
|
|
|
bool isAssignCall(const FunctionDecl *Func);
|
|
|
|
bool isClearCall(const FunctionDecl *Func);
|
2018-09-10 17:06:31 +08:00
|
|
|
bool isPushBackCall(const FunctionDecl *Func);
|
|
|
|
bool isEmplaceBackCall(const FunctionDecl *Func);
|
|
|
|
bool isPopBackCall(const FunctionDecl *Func);
|
|
|
|
bool isPushFrontCall(const FunctionDecl *Func);
|
|
|
|
bool isEmplaceFrontCall(const FunctionDecl *Func);
|
|
|
|
bool isPopFrontCall(const FunctionDecl *Func);
|
2018-09-10 17:07:47 +08:00
|
|
|
bool isInsertCall(const FunctionDecl *Func);
|
|
|
|
bool isEraseCall(const FunctionDecl *Func);
|
|
|
|
bool isEraseAfterCall(const FunctionDecl *Func);
|
|
|
|
bool isEmplaceCall(const FunctionDecl *Func);
|
2018-08-28 16:41:15 +08:00
|
|
|
bool isAssignmentOperator(OverloadedOperatorKind OK);
|
2017-05-29 23:03:20 +08:00
|
|
|
bool isSimpleComparisonOperator(OverloadedOperatorKind OK);
|
2018-08-28 16:41:15 +08:00
|
|
|
bool isAccessOperator(OverloadedOperatorKind OK);
|
2017-05-29 23:03:20 +08:00
|
|
|
bool isDereferenceOperator(OverloadedOperatorKind OK);
|
2018-06-28 18:58:53 +08:00
|
|
|
bool isIncrementOperator(OverloadedOperatorKind OK);
|
|
|
|
bool isDecrementOperator(OverloadedOperatorKind OK);
|
|
|
|
bool isRandomIncrOrDecrOperator(OverloadedOperatorKind OK);
|
2018-09-10 17:06:31 +08:00
|
|
|
bool hasSubscriptOperator(ProgramStateRef State, const MemRegion *Reg);
|
|
|
|
bool frontModifiable(ProgramStateRef State, const MemRegion *Reg);
|
|
|
|
bool backModifiable(ProgramStateRef State, const MemRegion *Reg);
|
2018-06-28 18:58:53 +08:00
|
|
|
SymbolRef getContainerBegin(ProgramStateRef State, const MemRegion *Cont);
|
2017-05-29 23:03:20 +08:00
|
|
|
SymbolRef getContainerEnd(ProgramStateRef State, const MemRegion *Cont);
|
2018-06-28 18:58:53 +08:00
|
|
|
ProgramStateRef createContainerBegin(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont,
|
|
|
|
const SymbolRef Sym);
|
2017-05-29 23:03:20 +08:00
|
|
|
ProgramStateRef createContainerEnd(ProgramStateRef State, const MemRegion *Cont,
|
|
|
|
const SymbolRef Sym);
|
|
|
|
const IteratorPosition *getIteratorPosition(ProgramStateRef State,
|
|
|
|
const SVal &Val);
|
|
|
|
ProgramStateRef setIteratorPosition(ProgramStateRef State, const SVal &Val,
|
|
|
|
const IteratorPosition &Pos);
|
|
|
|
ProgramStateRef removeIteratorPosition(ProgramStateRef State, const SVal &Val);
|
2019-04-23 15:15:55 +08:00
|
|
|
ProgramStateRef assumeNoOverflow(ProgramStateRef State, SymbolRef Sym,
|
|
|
|
long Scale);
|
2018-08-28 16:41:15 +08:00
|
|
|
ProgramStateRef invalidateAllIteratorPositions(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont);
|
2018-09-10 17:07:47 +08:00
|
|
|
ProgramStateRef
|
|
|
|
invalidateAllIteratorPositionsExcept(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont, SymbolRef Offset,
|
|
|
|
BinaryOperator::Opcode Opc);
|
2018-09-10 17:06:31 +08:00
|
|
|
ProgramStateRef invalidateIteratorPositions(ProgramStateRef State,
|
|
|
|
SymbolRef Offset,
|
|
|
|
BinaryOperator::Opcode Opc);
|
2018-09-10 17:07:47 +08:00
|
|
|
ProgramStateRef invalidateIteratorPositions(ProgramStateRef State,
|
|
|
|
SymbolRef Offset1,
|
|
|
|
BinaryOperator::Opcode Opc1,
|
|
|
|
SymbolRef Offset2,
|
|
|
|
BinaryOperator::Opcode Opc2);
|
2018-09-10 17:04:27 +08:00
|
|
|
ProgramStateRef reassignAllIteratorPositions(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont,
|
|
|
|
const MemRegion *NewCont);
|
|
|
|
ProgramStateRef reassignAllIteratorPositionsUnless(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont,
|
|
|
|
const MemRegion *NewCont,
|
|
|
|
SymbolRef Offset,
|
|
|
|
BinaryOperator::Opcode Opc);
|
|
|
|
ProgramStateRef rebaseSymbolInIteratorPositionsIf(
|
|
|
|
ProgramStateRef State, SValBuilder &SVB, SymbolRef OldSym,
|
|
|
|
SymbolRef NewSym, SymbolRef CondSym, BinaryOperator::Opcode Opc);
|
2019-04-23 15:15:55 +08:00
|
|
|
ProgramStateRef relateSymbols(ProgramStateRef State, SymbolRef Sym1,
|
|
|
|
SymbolRef Sym2, bool Equal);
|
2017-05-29 23:03:20 +08:00
|
|
|
const ContainerData *getContainerData(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont);
|
|
|
|
ProgramStateRef setContainerData(ProgramStateRef State, const MemRegion *Cont,
|
|
|
|
const ContainerData &CData);
|
2018-07-30 16:52:21 +08:00
|
|
|
bool hasLiveIterators(ProgramStateRef State, const MemRegion *Cont);
|
2018-09-10 17:03:22 +08:00
|
|
|
bool isBoundThroughLazyCompoundVal(const Environment &Env,
|
|
|
|
const MemRegion *Reg);
|
2018-12-04 18:27:27 +08:00
|
|
|
bool isPastTheEnd(ProgramStateRef State, const IteratorPosition &Pos);
|
|
|
|
bool isAheadOfRange(ProgramStateRef State, const IteratorPosition &Pos);
|
|
|
|
bool isBehindPastTheEnd(ProgramStateRef State, const IteratorPosition &Pos);
|
2018-06-28 18:58:53 +08:00
|
|
|
bool isZero(ProgramStateRef State, const NonLoc &Val);
|
2017-05-29 23:03:20 +08:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
IteratorChecker::IteratorChecker() {
|
|
|
|
OutOfRangeBugType.reset(
|
2019-01-19 03:24:55 +08:00
|
|
|
new BugType(this, "Iterator out of range", "Misuse of STL APIs",
|
|
|
|
/*SuppressOnSink=*/true));
|
2018-09-10 17:03:22 +08:00
|
|
|
MismatchedBugType.reset(
|
2019-01-19 03:24:55 +08:00
|
|
|
new BugType(this, "Iterator(s) mismatched", "Misuse of STL APIs",
|
|
|
|
/*SuppressOnSink=*/true));
|
2018-08-28 16:41:15 +08:00
|
|
|
InvalidatedBugType.reset(
|
2019-01-19 03:24:55 +08:00
|
|
|
new BugType(this, "Iterator invalidated", "Misuse of STL APIs",
|
|
|
|
/*SuppressOnSink=*/true));
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::checkPreCall(const CallEvent &Call,
|
|
|
|
CheckerContext &C) const {
|
2018-08-28 16:41:15 +08:00
|
|
|
// Check for out of range access or access of invalidated position and
|
|
|
|
// iterator mismatches
|
2017-05-29 23:03:20 +08:00
|
|
|
const auto *Func = dyn_cast_or_null<FunctionDecl>(Call.getDecl());
|
|
|
|
if (!Func)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (Func->isOverloadedOperator()) {
|
2018-08-28 16:41:15 +08:00
|
|
|
if (ChecksEnabled[CK_InvalidatedIteratorChecker] &&
|
|
|
|
isAccessOperator(Func->getOverloadedOperator())) {
|
|
|
|
// Check for any kind of access of invalidated iterator positions
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
verifyAccess(C, InstCall->getCXXThisVal());
|
|
|
|
} else {
|
|
|
|
verifyAccess(C, Call.getArgSVal(0));
|
|
|
|
}
|
|
|
|
}
|
2018-12-04 18:27:27 +08:00
|
|
|
if (ChecksEnabled[CK_IteratorRangeChecker]) {
|
|
|
|
if (isIncrementOperator(Func->getOverloadedOperator())) {
|
|
|
|
// Check for out-of-range incrementions
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
verifyIncrement(C, InstCall->getCXXThisVal());
|
|
|
|
} else {
|
|
|
|
if (Call.getNumArgs() >= 1) {
|
|
|
|
verifyIncrement(C, Call.getArgSVal(0));
|
|
|
|
}
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
2018-12-04 18:27:27 +08:00
|
|
|
} else if (isDecrementOperator(Func->getOverloadedOperator())) {
|
|
|
|
// Check for out-of-range decrementions
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
verifyDecrement(C, InstCall->getCXXThisVal());
|
|
|
|
} else {
|
|
|
|
if (Call.getNumArgs() >= 1) {
|
|
|
|
verifyDecrement(C, Call.getArgSVal(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (isRandomIncrOrDecrOperator(Func->getOverloadedOperator())) {
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
// Check for out-of-range incrementions and decrementions
|
|
|
|
if (Call.getNumArgs() >= 1) {
|
|
|
|
verifyRandomIncrOrDecr(C, Func->getOverloadedOperator(),
|
|
|
|
InstCall->getCXXThisVal(),
|
|
|
|
Call.getArgSVal(0));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (Call.getNumArgs() >= 2) {
|
|
|
|
verifyRandomIncrOrDecr(C, Func->getOverloadedOperator(),
|
|
|
|
Call.getArgSVal(0), Call.getArgSVal(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (isDereferenceOperator(Func->getOverloadedOperator())) {
|
|
|
|
// Check for dereference of out-of-range iterators
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
verifyDereference(C, InstCall->getCXXThisVal());
|
|
|
|
} else {
|
|
|
|
verifyDereference(C, Call.getArgSVal(0));
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
2018-09-10 17:05:31 +08:00
|
|
|
} else if (ChecksEnabled[CK_MismatchedIteratorChecker] &&
|
|
|
|
isComparisonOperator(Func->getOverloadedOperator())) {
|
|
|
|
// Check for comparisons of iterators of different containers
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
if (Call.getNumArgs() < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!isIteratorType(InstCall->getCXXThisExpr()->getType()) ||
|
|
|
|
!isIteratorType(Call.getArgExpr(0)->getType()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
verifyMatch(C, InstCall->getCXXThisVal(), Call.getArgSVal(0));
|
|
|
|
} else {
|
|
|
|
if (Call.getNumArgs() < 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!isIteratorType(Call.getArgExpr(0)->getType()) ||
|
|
|
|
!isIteratorType(Call.getArgExpr(1)->getType()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
verifyMatch(C, Call.getArgSVal(0), Call.getArgSVal(1));
|
|
|
|
}
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
2018-09-10 17:07:47 +08:00
|
|
|
} else if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
if (!ChecksEnabled[CK_MismatchedIteratorChecker])
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *ContReg = InstCall->getCXXThisVal().getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
// Check for erase, insert and emplace using iterator of another container
|
|
|
|
if (isEraseCall(Func) || isEraseAfterCall(Func)) {
|
|
|
|
verifyMatch(C, Call.getArgSVal(0),
|
|
|
|
InstCall->getCXXThisVal().getAsRegion());
|
|
|
|
if (Call.getNumArgs() == 2) {
|
|
|
|
verifyMatch(C, Call.getArgSVal(1),
|
|
|
|
InstCall->getCXXThisVal().getAsRegion());
|
|
|
|
}
|
|
|
|
} else if (isInsertCall(Func)) {
|
|
|
|
verifyMatch(C, Call.getArgSVal(0),
|
|
|
|
InstCall->getCXXThisVal().getAsRegion());
|
|
|
|
if (Call.getNumArgs() == 3 &&
|
|
|
|
isIteratorType(Call.getArgExpr(1)->getType()) &&
|
|
|
|
isIteratorType(Call.getArgExpr(2)->getType())) {
|
|
|
|
verifyMatch(C, Call.getArgSVal(1), Call.getArgSVal(2));
|
|
|
|
}
|
|
|
|
} else if (isEmplaceCall(Func)) {
|
|
|
|
verifyMatch(C, Call.getArgSVal(0),
|
|
|
|
InstCall->getCXXThisVal().getAsRegion());
|
|
|
|
}
|
2018-09-10 17:05:31 +08:00
|
|
|
} else if (isa<CXXConstructorCall>(&Call)) {
|
|
|
|
// Check match of first-last iterator pair in a constructor of a container
|
|
|
|
if (Call.getNumArgs() < 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *Ctr = cast<CXXConstructorDecl>(Call.getDecl());
|
|
|
|
if (Ctr->getNumParams() < 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (Ctr->getParamDecl(0)->getName() != "first" ||
|
|
|
|
Ctr->getParamDecl(1)->getName() != "last")
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!isIteratorType(Call.getArgExpr(0)->getType()) ||
|
|
|
|
!isIteratorType(Call.getArgExpr(1)->getType()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
verifyMatch(C, Call.getArgSVal(0), Call.getArgSVal(1));
|
|
|
|
} else {
|
2018-09-10 17:03:22 +08:00
|
|
|
// The main purpose of iterators is to abstract away from different
|
|
|
|
// containers and provide a (maybe limited) uniform access to them.
|
|
|
|
// This implies that any correctly written template function that
|
|
|
|
// works on multiple containers using iterators takes different
|
|
|
|
// template parameters for different containers. So we can safely
|
|
|
|
// assume that passing iterators of different containers as arguments
|
|
|
|
// whose type replaces the same template parameter is a bug.
|
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
// template<typename I1, typename I2>
|
|
|
|
// void f(I1 first1, I1 last1, I2 first2, I2 last2);
|
|
|
|
//
|
|
|
|
// In this case the first two arguments to f() must be iterators must belong
|
|
|
|
// to the same container and the last to also to the same container but
|
Misc typos fixes in ./lib folder
Summary: Found via `codespell -q 3 -I ../clang-whitelist.txt -L uint,importd,crasher,gonna,cant,ue,ons,orign,ned`
Reviewers: teemperor
Reviewed By: teemperor
Subscribers: teemperor, jholewinski, jvesely, nhaehnle, whisperity, jfb, cfe-commits
Differential Revision: https://reviews.llvm.org/D55475
llvm-svn: 348755
2018-12-10 20:37:46 +08:00
|
|
|
// not necessarily to the same as the first two.
|
2018-09-10 17:03:22 +08:00
|
|
|
|
|
|
|
if (!ChecksEnabled[CK_MismatchedIteratorChecker])
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *Templ = Func->getPrimaryTemplate();
|
|
|
|
if (!Templ)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *TParams = Templ->getTemplateParameters();
|
|
|
|
const auto *TArgs = Func->getTemplateSpecializationArgs();
|
|
|
|
|
|
|
|
// Iterate over all the template parameters
|
|
|
|
for (size_t I = 0; I < TParams->size(); ++I) {
|
|
|
|
const auto *TPDecl = dyn_cast<TemplateTypeParmDecl>(TParams->getParam(I));
|
|
|
|
if (!TPDecl)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (TPDecl->isParameterPack())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const auto TAType = TArgs->get(I).getAsType();
|
|
|
|
if (!isIteratorType(TAType))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
SVal LHS = UndefinedVal();
|
|
|
|
|
|
|
|
// For every template parameter which is an iterator type in the
|
|
|
|
// instantiation look for all functions' parameters' type by it and
|
|
|
|
// check whether they belong to the same container
|
|
|
|
for (auto J = 0U; J < Func->getNumParams(); ++J) {
|
|
|
|
const auto *Param = Func->getParamDecl(J);
|
|
|
|
const auto *ParamType =
|
|
|
|
Param->getType()->getAs<SubstTemplateTypeParmType>();
|
|
|
|
if (!ParamType ||
|
|
|
|
ParamType->getReplacedParameter()->getDecl() != TPDecl)
|
|
|
|
continue;
|
|
|
|
if (LHS.isUndef()) {
|
|
|
|
LHS = Call.getArgSVal(J);
|
|
|
|
} else {
|
|
|
|
verifyMatch(C, LHS, Call.getArgSVal(J));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::checkPostCall(const CallEvent &Call,
|
|
|
|
CheckerContext &C) const {
|
|
|
|
// Record new iterator positions and iterator position changes
|
|
|
|
const auto *Func = dyn_cast_or_null<FunctionDecl>(Call.getDecl());
|
|
|
|
if (!Func)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (Func->isOverloadedOperator()) {
|
|
|
|
const auto Op = Func->getOverloadedOperator();
|
2018-08-28 16:41:15 +08:00
|
|
|
if (isAssignmentOperator(Op)) {
|
|
|
|
const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call);
|
2019-04-26 15:30:07 +08:00
|
|
|
if (cast<CXXMethodDecl>(Func)->isMoveAssignmentOperator()) {
|
2018-09-10 17:04:27 +08:00
|
|
|
handleAssign(C, InstCall->getCXXThisVal(), Call.getOriginExpr(),
|
|
|
|
Call.getArgSVal(0));
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
2018-09-10 17:04:27 +08:00
|
|
|
}
|
2019-04-26 15:30:07 +08:00
|
|
|
|
|
|
|
handleAssign(C, InstCall->getCXXThisVal());
|
|
|
|
return;
|
2018-08-28 16:41:15 +08:00
|
|
|
} else if (isSimpleComparisonOperator(Op)) {
|
2019-04-23 15:15:55 +08:00
|
|
|
const auto *OrigExpr = Call.getOriginExpr();
|
|
|
|
if (!OrigExpr)
|
|
|
|
return;
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
2019-04-23 15:15:55 +08:00
|
|
|
handleComparison(C, OrigExpr, Call.getReturnValue(),
|
|
|
|
InstCall->getCXXThisVal(), Call.getArgSVal(0), Op);
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
2019-04-26 15:30:07 +08:00
|
|
|
|
|
|
|
handleComparison(C, OrigExpr, Call.getReturnValue(), Call.getArgSVal(0),
|
|
|
|
Call.getArgSVal(1), Op);
|
|
|
|
return;
|
2018-06-28 18:58:53 +08:00
|
|
|
} else if (isRandomIncrOrDecrOperator(Func->getOverloadedOperator())) {
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
if (Call.getNumArgs() >= 1) {
|
|
|
|
handleRandomIncrOrDecr(C, Func->getOverloadedOperator(),
|
|
|
|
Call.getReturnValue(),
|
|
|
|
InstCall->getCXXThisVal(), Call.getArgSVal(0));
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (Call.getNumArgs() >= 2) {
|
|
|
|
handleRandomIncrOrDecr(C, Func->getOverloadedOperator(),
|
|
|
|
Call.getReturnValue(), Call.getArgSVal(0),
|
|
|
|
Call.getArgSVal(1));
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (isIncrementOperator(Func->getOverloadedOperator())) {
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
handleIncrement(C, Call.getReturnValue(), InstCall->getCXXThisVal(),
|
|
|
|
Call.getNumArgs());
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
2019-04-26 15:30:07 +08:00
|
|
|
|
|
|
|
handleIncrement(C, Call.getReturnValue(), Call.getArgSVal(0),
|
|
|
|
Call.getNumArgs());
|
|
|
|
return;
|
2018-06-28 18:58:53 +08:00
|
|
|
} else if (isDecrementOperator(Func->getOverloadedOperator())) {
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
|
|
|
handleDecrement(C, Call.getReturnValue(), InstCall->getCXXThisVal(),
|
|
|
|
Call.getNumArgs());
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
2019-04-26 15:30:07 +08:00
|
|
|
|
|
|
|
handleDecrement(C, Call.getReturnValue(), Call.getArgSVal(0),
|
|
|
|
Call.getNumArgs());
|
|
|
|
return;
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
} else {
|
2018-09-10 17:06:31 +08:00
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
2018-09-10 17:07:47 +08:00
|
|
|
if (isAssignCall(Func)) {
|
|
|
|
handleAssign(C, InstCall->getCXXThisVal());
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isClearCall(Func)) {
|
2018-09-10 17:07:47 +08:00
|
|
|
handleClear(C, InstCall->getCXXThisVal());
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isPushBackCall(Func) || isEmplaceBackCall(Func)) {
|
2018-09-10 17:06:31 +08:00
|
|
|
handlePushBack(C, InstCall->getCXXThisVal());
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isPopBackCall(Func)) {
|
2018-09-10 17:06:31 +08:00
|
|
|
handlePopBack(C, InstCall->getCXXThisVal());
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isPushFrontCall(Func) || isEmplaceFrontCall(Func)) {
|
2018-09-10 17:06:31 +08:00
|
|
|
handlePushFront(C, InstCall->getCXXThisVal());
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isPopFrontCall(Func)) {
|
2018-09-10 17:06:31 +08:00
|
|
|
handlePopFront(C, InstCall->getCXXThisVal());
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isInsertCall(Func) || isEmplaceCall(Func)) {
|
2018-09-10 17:07:47 +08:00
|
|
|
handleInsert(C, Call.getArgSVal(0));
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isEraseCall(Func)) {
|
2018-09-10 17:07:47 +08:00
|
|
|
if (Call.getNumArgs() == 1) {
|
|
|
|
handleErase(C, Call.getArgSVal(0));
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Call.getNumArgs() == 2) {
|
2018-09-10 17:07:47 +08:00
|
|
|
handleErase(C, Call.getArgSVal(0), Call.getArgSVal(1));
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
2018-09-10 17:07:47 +08:00
|
|
|
}
|
2019-04-26 15:30:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isEraseAfterCall(Func)) {
|
2018-09-10 17:07:47 +08:00
|
|
|
if (Call.getNumArgs() == 1) {
|
|
|
|
handleEraseAfter(C, Call.getArgSVal(0));
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Call.getNumArgs() == 2) {
|
2018-09-10 17:07:47 +08:00
|
|
|
handleEraseAfter(C, Call.getArgSVal(0), Call.getArgSVal(1));
|
2019-04-26 15:30:07 +08:00
|
|
|
return;
|
2018-09-10 17:07:47 +08:00
|
|
|
}
|
2018-09-10 17:06:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
const auto *OrigExpr = Call.getOriginExpr();
|
|
|
|
if (!OrigExpr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!isIteratorType(Call.getResultType()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto State = C.getState();
|
|
|
|
|
|
|
|
if (const auto *InstCall = dyn_cast<CXXInstanceCall>(&Call)) {
|
2018-06-28 18:58:53 +08:00
|
|
|
if (isBeginCall(Func)) {
|
|
|
|
handleBegin(C, OrigExpr, Call.getReturnValue(),
|
|
|
|
InstCall->getCXXThisVal());
|
|
|
|
return;
|
|
|
|
}
|
2019-04-26 15:30:07 +08:00
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
if (isEndCall(Func)) {
|
|
|
|
handleEnd(C, OrigExpr, Call.getReturnValue(),
|
|
|
|
InstCall->getCXXThisVal());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:04:27 +08:00
|
|
|
// Already bound to container?
|
|
|
|
if (getIteratorPosition(State, Call.getReturnValue()))
|
|
|
|
return;
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
// Copy-like and move constructors
|
|
|
|
if (isa<CXXConstructorCall>(&Call) && Call.getNumArgs() == 1) {
|
|
|
|
if (const auto *Pos = getIteratorPosition(State, Call.getArgSVal(0))) {
|
|
|
|
State = setIteratorPosition(State, Call.getReturnValue(), *Pos);
|
|
|
|
if (cast<CXXConstructorDecl>(Func)->isMoveConstructor()) {
|
|
|
|
State = removeIteratorPosition(State, Call.getArgSVal(0));
|
|
|
|
}
|
|
|
|
C.addTransition(State);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assumption: if return value is an iterator which is not yet bound to a
|
|
|
|
// container, then look for the first iterator argument, and
|
|
|
|
// bind the return value to the same container. This approach
|
|
|
|
// works for STL algorithms.
|
|
|
|
// FIXME: Add a more conservative mode
|
|
|
|
for (unsigned i = 0; i < Call.getNumArgs(); ++i) {
|
|
|
|
if (isIteratorType(Call.getArgExpr(i)->getType())) {
|
|
|
|
if (const auto *Pos = getIteratorPosition(State, Call.getArgSVal(i))) {
|
|
|
|
assignToContainer(C, OrigExpr, Call.getReturnValue(),
|
|
|
|
Pos->getContainer());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:47 +08:00
|
|
|
void IteratorChecker::checkBind(SVal Loc, SVal Val, const Stmt *S,
|
|
|
|
CheckerContext &C) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Val);
|
|
|
|
if (Pos) {
|
|
|
|
State = setIteratorPosition(State, Loc, *Pos);
|
|
|
|
C.addTransition(State);
|
|
|
|
} else {
|
|
|
|
const auto *OldPos = getIteratorPosition(State, Loc);
|
|
|
|
if (OldPos) {
|
|
|
|
State = removeIteratorPosition(State, Loc);
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
void IteratorChecker::checkPostStmt(const MaterializeTemporaryExpr *MTE,
|
|
|
|
CheckerContext &C) const {
|
|
|
|
/* Transfer iterator state to temporary objects */
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos =
|
2018-01-18 04:27:29 +08:00
|
|
|
getIteratorPosition(State, C.getSVal(MTE->GetTemporaryExpr()));
|
2017-05-29 23:03:20 +08:00
|
|
|
if (!Pos)
|
|
|
|
return;
|
2018-01-18 04:27:29 +08:00
|
|
|
State = setIteratorPosition(State, C.getSVal(MTE), *Pos);
|
2017-05-29 23:03:20 +08:00
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
void IteratorChecker::checkLiveSymbols(ProgramStateRef State,
|
|
|
|
SymbolReaper &SR) const {
|
|
|
|
// Keep symbolic expressions of iterator positions, container begins and ends
|
|
|
|
// alive
|
|
|
|
auto RegionMap = State->get<IteratorRegionMap>();
|
|
|
|
for (const auto Reg : RegionMap) {
|
2018-07-16 17:27:27 +08:00
|
|
|
const auto Offset = Reg.second.getOffset();
|
|
|
|
for (auto i = Offset->symbol_begin(); i != Offset->symbol_end(); ++i)
|
|
|
|
if (isa<SymbolData>(*i))
|
|
|
|
SR.markLive(*i);
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
auto SymbolMap = State->get<IteratorSymbolMap>();
|
|
|
|
for (const auto Sym : SymbolMap) {
|
2018-07-16 17:27:27 +08:00
|
|
|
const auto Offset = Sym.second.getOffset();
|
|
|
|
for (auto i = Offset->symbol_begin(); i != Offset->symbol_end(); ++i)
|
|
|
|
if (isa<SymbolData>(*i))
|
|
|
|
SR.markLive(*i);
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
auto ContMap = State->get<ContainerMap>();
|
|
|
|
for (const auto Cont : ContMap) {
|
|
|
|
const auto CData = Cont.second;
|
|
|
|
if (CData.getBegin()) {
|
|
|
|
SR.markLive(CData.getBegin());
|
2018-09-10 17:06:31 +08:00
|
|
|
if(const auto *SIE = dyn_cast<SymIntExpr>(CData.getBegin()))
|
|
|
|
SR.markLive(SIE->getLHS());
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
|
|
|
if (CData.getEnd()) {
|
|
|
|
SR.markLive(CData.getEnd());
|
2018-09-10 17:06:31 +08:00
|
|
|
if(const auto *SIE = dyn_cast<SymIntExpr>(CData.getEnd()))
|
|
|
|
SR.markLive(SIE->getLHS());
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
void IteratorChecker::checkDeadSymbols(SymbolReaper &SR,
|
|
|
|
CheckerContext &C) const {
|
|
|
|
// Cleanup
|
|
|
|
auto State = C.getState();
|
|
|
|
|
|
|
|
auto RegionMap = State->get<IteratorRegionMap>();
|
|
|
|
for (const auto Reg : RegionMap) {
|
|
|
|
if (!SR.isLiveRegion(Reg.first)) {
|
2018-09-10 17:03:22 +08:00
|
|
|
// The region behind the `LazyCompoundVal` is often cleaned up before
|
|
|
|
// the `LazyCompoundVal` itself. If there are iterator positions keyed
|
|
|
|
// by these regions their cleanup must be deferred.
|
|
|
|
if (!isBoundThroughLazyCompoundVal(State->getEnvironment(), Reg.first)) {
|
|
|
|
State = State->remove<IteratorRegionMap>(Reg.first);
|
|
|
|
}
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto SymbolMap = State->get<IteratorSymbolMap>();
|
|
|
|
for (const auto Sym : SymbolMap) {
|
|
|
|
if (!SR.isLive(Sym.first)) {
|
|
|
|
State = State->remove<IteratorSymbolMap>(Sym.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto ContMap = State->get<ContainerMap>();
|
|
|
|
for (const auto Cont : ContMap) {
|
|
|
|
if (!SR.isLiveRegion(Cont.first)) {
|
2018-07-30 16:52:21 +08:00
|
|
|
// We must keep the container data while it has live iterators to be able
|
|
|
|
// to compare them to the begin and the end of the container.
|
|
|
|
if (!hasLiveIterators(State, Cont.first)) {
|
|
|
|
State = State->remove<ContainerMap>(Cont.first);
|
|
|
|
}
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 00:14:59 +08:00
|
|
|
C.addTransition(State);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
2019-04-23 15:15:55 +08:00
|
|
|
void IteratorChecker::handleComparison(CheckerContext &C, const Expr *CE,
|
|
|
|
const SVal &RetVal, const SVal &LVal,
|
|
|
|
const SVal &RVal,
|
|
|
|
OverloadedOperatorKind Op) const {
|
|
|
|
// Record the operands and the operator of the comparison for the next
|
|
|
|
// evalAssume, if the result is a symbolic expression. If it is a concrete
|
|
|
|
// value (only one branch is possible), then transfer the state between
|
|
|
|
// the operands according to the operator and the result
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *LPos = getIteratorPosition(State, LVal);
|
|
|
|
const auto *RPos = getIteratorPosition(State, RVal);
|
|
|
|
const MemRegion *Cont = nullptr;
|
|
|
|
if (LPos) {
|
|
|
|
Cont = LPos->getContainer();
|
|
|
|
} else if (RPos) {
|
|
|
|
Cont = RPos->getContainer();
|
|
|
|
}
|
|
|
|
if (!Cont)
|
|
|
|
return;
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2019-04-23 15:15:55 +08:00
|
|
|
// At least one of the iterators have recorded positions. If one of them has
|
|
|
|
// not then create a new symbol for the offset.
|
|
|
|
SymbolRef Sym;
|
|
|
|
if (!LPos || !RPos) {
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
2019-04-23 19:18:50 +08:00
|
|
|
Sym = SymMgr.conjureSymbol(CE, C.getLocationContext(),
|
2019-04-23 15:15:55 +08:00
|
|
|
C.getASTContext().LongTy, C.blockCount());
|
|
|
|
State = assumeNoOverflow(State, Sym, 4);
|
|
|
|
}
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2019-04-23 15:15:55 +08:00
|
|
|
if (!LPos) {
|
|
|
|
State = setIteratorPosition(State, LVal,
|
|
|
|
IteratorPosition::getPosition(Cont, Sym));
|
|
|
|
LPos = getIteratorPosition(State, LVal);
|
|
|
|
} else if (!RPos) {
|
|
|
|
State = setIteratorPosition(State, RVal,
|
|
|
|
IteratorPosition::getPosition(Cont, Sym));
|
|
|
|
RPos = getIteratorPosition(State, RVal);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
2019-04-23 15:15:55 +08:00
|
|
|
processComparison(C, State, LPos->getOffset(), RPos->getOffset(), RetVal, Op);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
2019-04-23 15:15:55 +08:00
|
|
|
void IteratorChecker::processComparison(CheckerContext &C,
|
|
|
|
ProgramStateRef State, SymbolRef Sym1,
|
|
|
|
SymbolRef Sym2, const SVal &RetVal,
|
|
|
|
OverloadedOperatorKind Op) const {
|
|
|
|
if (const auto TruthVal = RetVal.getAs<nonloc::ConcreteInt>()) {
|
2019-04-23 15:45:10 +08:00
|
|
|
if ((State = relateSymbols(State, Sym1, Sym2,
|
2019-04-23 15:15:55 +08:00
|
|
|
(Op == OO_EqualEqual) ==
|
2019-04-23 15:45:10 +08:00
|
|
|
(TruthVal->getValue() != 0)))) {
|
2017-05-29 23:03:20 +08:00
|
|
|
C.addTransition(State);
|
|
|
|
} else {
|
|
|
|
C.generateSink(State, C.getPredecessor());
|
|
|
|
}
|
2019-04-23 15:15:55 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto ConditionVal = RetVal.getAs<DefinedSVal>();
|
|
|
|
if (!ConditionVal)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (auto StateTrue = relateSymbols(State, Sym1, Sym2, Op == OO_EqualEqual)) {
|
|
|
|
StateTrue = StateTrue->assume(*ConditionVal, true);
|
|
|
|
C.addTransition(StateTrue);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auto StateFalse = relateSymbols(State, Sym1, Sym2, Op != OO_EqualEqual)) {
|
|
|
|
StateFalse = StateFalse->assume(*ConditionVal, false);
|
|
|
|
C.addTransition(StateFalse);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::verifyDereference(CheckerContext &C,
|
|
|
|
const SVal &Val) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Val);
|
2018-12-04 18:27:27 +08:00
|
|
|
if (Pos && isPastTheEnd(State, *Pos)) {
|
2018-08-28 16:41:15 +08:00
|
|
|
auto *N = C.generateNonFatalErrorNode(State);
|
2018-06-28 18:58:53 +08:00
|
|
|
if (!N)
|
2017-05-29 23:03:20 +08:00
|
|
|
return;
|
2018-12-04 18:27:27 +08:00
|
|
|
reportOutOfRangeBug("Past-the-end iterator dereferenced.", Val, C, N);
|
|
|
|
return;
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
void IteratorChecker::verifyAccess(CheckerContext &C, const SVal &Val) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Val);
|
|
|
|
if (Pos && !Pos->isValid()) {
|
|
|
|
auto *N = C.generateNonFatalErrorNode(State);
|
|
|
|
if (!N) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
reportInvalidatedBug("Invalidated iterator accessed.", Val, C, N);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
void IteratorChecker::handleIncrement(CheckerContext &C, const SVal &RetVal,
|
|
|
|
const SVal &Iter, bool Postfix) const {
|
|
|
|
// Increment the symbolic expressions which represents the position of the
|
|
|
|
// iterator
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Iter);
|
|
|
|
if (Pos) {
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &BVF = SymMgr.getBasicVals();
|
2018-12-04 18:27:27 +08:00
|
|
|
const auto NewPos =
|
|
|
|
advancePosition(C, OO_Plus, *Pos,
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))));
|
2018-06-28 18:58:53 +08:00
|
|
|
State = setIteratorPosition(State, Iter, NewPos);
|
|
|
|
State = setIteratorPosition(State, RetVal, Postfix ? *Pos : NewPos);
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handleDecrement(CheckerContext &C, const SVal &RetVal,
|
|
|
|
const SVal &Iter, bool Postfix) const {
|
|
|
|
// Decrement the symbolic expressions which represents the position of the
|
|
|
|
// iterator
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Iter);
|
|
|
|
if (Pos) {
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &BVF = SymMgr.getBasicVals();
|
2018-12-04 18:27:27 +08:00
|
|
|
const auto NewPos =
|
|
|
|
advancePosition(C, OO_Minus, *Pos,
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))));
|
2018-06-28 18:58:53 +08:00
|
|
|
State = setIteratorPosition(State, Iter, NewPos);
|
|
|
|
State = setIteratorPosition(State, RetVal, Postfix ? *Pos : NewPos);
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handleRandomIncrOrDecr(CheckerContext &C,
|
|
|
|
OverloadedOperatorKind Op,
|
|
|
|
const SVal &RetVal,
|
|
|
|
const SVal &LHS,
|
|
|
|
const SVal &RHS) const {
|
|
|
|
// Increment or decrement the symbolic expressions which represents the
|
|
|
|
// position of the iterator
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, LHS);
|
|
|
|
if (!Pos)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *value = &RHS;
|
|
|
|
if (auto loc = RHS.getAs<Loc>()) {
|
|
|
|
const auto val = State->getRawSVal(*loc);
|
|
|
|
value = &val;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &TgtVal = (Op == OO_PlusEqual || Op == OO_MinusEqual) ? LHS : RetVal;
|
2018-12-04 18:27:27 +08:00
|
|
|
State =
|
|
|
|
setIteratorPosition(State, TgtVal, advancePosition(C, Op, *Pos, *value));
|
2018-06-28 18:58:53 +08:00
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
void IteratorChecker::verifyIncrement(CheckerContext &C,
|
|
|
|
const SVal &Iter) const {
|
|
|
|
auto &BVF = C.getSValBuilder().getBasicValueFactory();
|
|
|
|
verifyRandomIncrOrDecr(C, OO_Plus, Iter,
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))));
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::verifyDecrement(CheckerContext &C,
|
|
|
|
const SVal &Iter) const {
|
|
|
|
auto &BVF = C.getSValBuilder().getBasicValueFactory();
|
|
|
|
verifyRandomIncrOrDecr(C, OO_Minus, Iter,
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))));
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
void IteratorChecker::verifyRandomIncrOrDecr(CheckerContext &C,
|
|
|
|
OverloadedOperatorKind Op,
|
|
|
|
const SVal &LHS,
|
|
|
|
const SVal &RHS) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
|
|
|
|
// If the iterator is initially inside its range, then the operation is valid
|
|
|
|
const auto *Pos = getIteratorPosition(State, LHS);
|
2018-12-04 18:27:27 +08:00
|
|
|
if (!Pos)
|
2018-06-28 18:58:53 +08:00
|
|
|
return;
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
auto Value = RHS;
|
|
|
|
if (auto ValAsLoc = RHS.getAs<Loc>()) {
|
|
|
|
Value = State->getRawSVal(*ValAsLoc);
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
if (Value.isUnknown())
|
2018-06-28 18:58:53 +08:00
|
|
|
return;
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
// Incremention or decremention by 0 is never a bug.
|
|
|
|
if (isZero(State, Value.castAs<NonLoc>()))
|
2018-06-28 18:58:53 +08:00
|
|
|
return;
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
// The result may be the past-end iterator of the container, but any other
|
|
|
|
// out of range position is undefined behaviour
|
|
|
|
if (isAheadOfRange(State, advancePosition(C, Op, *Pos, Value))) {
|
2018-06-28 18:58:53 +08:00
|
|
|
auto *N = C.generateNonFatalErrorNode(State);
|
|
|
|
if (!N)
|
|
|
|
return;
|
2018-12-04 18:27:27 +08:00
|
|
|
reportOutOfRangeBug("Iterator decremented ahead of its valid range.", LHS,
|
|
|
|
C, N);
|
|
|
|
}
|
|
|
|
if (isBehindPastTheEnd(State, advancePosition(C, Op, *Pos, Value))) {
|
|
|
|
auto *N = C.generateNonFatalErrorNode(State);
|
|
|
|
if (!N)
|
|
|
|
return;
|
|
|
|
reportOutOfRangeBug("Iterator incremented behind the past-the-end "
|
|
|
|
"iterator.", LHS, C, N);
|
2018-06-28 18:58:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:47 +08:00
|
|
|
void IteratorChecker::verifyMatch(CheckerContext &C, const SVal &Iter,
|
|
|
|
const MemRegion *Cont) const {
|
|
|
|
// Verify match between a container and the container of an iterator
|
2018-12-04 18:22:28 +08:00
|
|
|
Cont = Cont->getMostDerivedObjectRegion();
|
2018-09-10 17:07:47 +08:00
|
|
|
|
2019-03-13 21:55:11 +08:00
|
|
|
if (const auto *ContSym = Cont->getSymbolicBase()) {
|
|
|
|
if (isa<SymbolConjured>(ContSym->getSymbol()))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:47 +08:00
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Iter);
|
2019-03-13 21:55:11 +08:00
|
|
|
if (!Pos)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *IterCont = Pos->getContainer();
|
|
|
|
|
|
|
|
// Skip symbolic regions based on conjured symbols. Two conjured symbols
|
|
|
|
// may or may not be the same. For example, the same function can return
|
|
|
|
// the same or a different container but we get different conjured symbols
|
|
|
|
// for each call. This may cause false positives so omit them from the check.
|
|
|
|
if (const auto *ContSym = IterCont->getSymbolicBase()) {
|
|
|
|
if (isa<SymbolConjured>(ContSym->getSymbol()))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IterCont != Cont) {
|
2018-09-10 17:07:47 +08:00
|
|
|
auto *N = C.generateNonFatalErrorNode(State);
|
|
|
|
if (!N) {
|
|
|
|
return;
|
|
|
|
}
|
2019-03-13 21:55:11 +08:00
|
|
|
reportMismatchedBug("Container accessed using foreign iterator argument.",
|
|
|
|
Iter, Cont, C, N);
|
2018-09-10 17:07:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:03:22 +08:00
|
|
|
void IteratorChecker::verifyMatch(CheckerContext &C, const SVal &Iter1,
|
|
|
|
const SVal &Iter2) const {
|
|
|
|
// Verify match between the containers of two iterators
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos1 = getIteratorPosition(State, Iter1);
|
2019-03-13 21:55:11 +08:00
|
|
|
if (!Pos1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *IterCont1 = Pos1->getContainer();
|
|
|
|
|
|
|
|
// Skip symbolic regions based on conjured symbols. Two conjured symbols
|
|
|
|
// may or may not be the same. For example, the same function can return
|
|
|
|
// the same or a different container but we get different conjured symbols
|
|
|
|
// for each call. This may cause false positives so omit them from the check.
|
|
|
|
if (const auto *ContSym = IterCont1->getSymbolicBase()) {
|
|
|
|
if (isa<SymbolConjured>(ContSym->getSymbol()))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:03:22 +08:00
|
|
|
const auto *Pos2 = getIteratorPosition(State, Iter2);
|
2019-03-13 21:55:11 +08:00
|
|
|
if (!Pos2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *IterCont2 = Pos2->getContainer();
|
|
|
|
if (const auto *ContSym = IterCont2->getSymbolicBase()) {
|
|
|
|
if (isa<SymbolConjured>(ContSym->getSymbol()))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IterCont1 != IterCont2) {
|
2018-09-10 17:03:22 +08:00
|
|
|
auto *N = C.generateNonFatalErrorNode(State);
|
|
|
|
if (!N)
|
|
|
|
return;
|
|
|
|
reportMismatchedBug("Iterators of different containers used where the "
|
|
|
|
"same container is expected.", Iter1, Iter2, C, N);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
void IteratorChecker::handleBegin(CheckerContext &C, const Expr *CE,
|
|
|
|
const SVal &RetVal, const SVal &Cont) const {
|
|
|
|
const auto *ContReg = Cont.getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
|
2018-12-04 18:22:28 +08:00
|
|
|
ContReg = ContReg->getMostDerivedObjectRegion();
|
2018-06-28 18:58:53 +08:00
|
|
|
|
|
|
|
// If the container already has a begin symbol then use it. Otherwise first
|
|
|
|
// create a new one.
|
|
|
|
auto State = C.getState();
|
|
|
|
auto BeginSym = getContainerBegin(State, ContReg);
|
|
|
|
if (!BeginSym) {
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
BeginSym = SymMgr.conjureSymbol(CE, C.getLocationContext(),
|
|
|
|
C.getASTContext().LongTy, C.blockCount());
|
|
|
|
State = assumeNoOverflow(State, BeginSym, 4);
|
|
|
|
State = createContainerBegin(State, ContReg, BeginSym);
|
|
|
|
}
|
|
|
|
State = setIteratorPosition(State, RetVal,
|
|
|
|
IteratorPosition::getPosition(ContReg, BeginSym));
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
void IteratorChecker::handleEnd(CheckerContext &C, const Expr *CE,
|
|
|
|
const SVal &RetVal, const SVal &Cont) const {
|
|
|
|
const auto *ContReg = Cont.getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
|
2018-12-04 18:22:28 +08:00
|
|
|
ContReg = ContReg->getMostDerivedObjectRegion();
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
// If the container already has an end symbol then use it. Otherwise first
|
|
|
|
// create a new one.
|
|
|
|
auto State = C.getState();
|
|
|
|
auto EndSym = getContainerEnd(State, ContReg);
|
|
|
|
if (!EndSym) {
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
EndSym = SymMgr.conjureSymbol(CE, C.getLocationContext(),
|
|
|
|
C.getASTContext().LongTy, C.blockCount());
|
2018-06-28 18:58:53 +08:00
|
|
|
State = assumeNoOverflow(State, EndSym, 4);
|
2017-05-29 23:03:20 +08:00
|
|
|
State = createContainerEnd(State, ContReg, EndSym);
|
|
|
|
}
|
|
|
|
State = setIteratorPosition(State, RetVal,
|
|
|
|
IteratorPosition::getPosition(ContReg, EndSym));
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::assignToContainer(CheckerContext &C, const Expr *CE,
|
|
|
|
const SVal &RetVal,
|
|
|
|
const MemRegion *Cont) const {
|
2018-12-04 18:22:28 +08:00
|
|
|
Cont = Cont->getMostDerivedObjectRegion();
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
auto State = C.getState();
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto Sym = SymMgr.conjureSymbol(CE, C.getLocationContext(),
|
|
|
|
C.getASTContext().LongTy, C.blockCount());
|
2018-06-28 18:58:53 +08:00
|
|
|
State = assumeNoOverflow(State, Sym, 4);
|
2017-05-29 23:03:20 +08:00
|
|
|
State = setIteratorPosition(State, RetVal,
|
|
|
|
IteratorPosition::getPosition(Cont, Sym));
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:04:27 +08:00
|
|
|
void IteratorChecker::handleAssign(CheckerContext &C, const SVal &Cont,
|
|
|
|
const Expr *CE, const SVal &OldCont) const {
|
2018-08-28 16:41:15 +08:00
|
|
|
const auto *ContReg = Cont.getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
|
2018-12-04 18:22:28 +08:00
|
|
|
ContReg = ContReg->getMostDerivedObjectRegion();
|
2018-08-28 16:41:15 +08:00
|
|
|
|
|
|
|
// Assignment of a new value to a container always invalidates all its
|
|
|
|
// iterators
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto CData = getContainerData(State, ContReg);
|
|
|
|
if (CData) {
|
|
|
|
State = invalidateAllIteratorPositions(State, ContReg);
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:04:27 +08:00
|
|
|
// In case of move, iterators of the old container (except the past-end
|
|
|
|
// iterators) remain valid but refer to the new container
|
|
|
|
if (!OldCont.isUndef()) {
|
|
|
|
const auto *OldContReg = OldCont.getAsRegion();
|
|
|
|
if (OldContReg) {
|
2018-12-04 18:22:28 +08:00
|
|
|
OldContReg = OldContReg->getMostDerivedObjectRegion();
|
2018-09-10 17:04:27 +08:00
|
|
|
const auto OldCData = getContainerData(State, OldContReg);
|
|
|
|
if (OldCData) {
|
|
|
|
if (const auto OldEndSym = OldCData->getEnd()) {
|
Misc typos fixes in ./lib folder
Summary: Found via `codespell -q 3 -I ../clang-whitelist.txt -L uint,importd,crasher,gonna,cant,ue,ons,orign,ned`
Reviewers: teemperor
Reviewed By: teemperor
Subscribers: teemperor, jholewinski, jvesely, nhaehnle, whisperity, jfb, cfe-commits
Differential Revision: https://reviews.llvm.org/D55475
llvm-svn: 348755
2018-12-10 20:37:46 +08:00
|
|
|
// If we already assigned an "end" symbol to the old container, then
|
2018-09-10 17:04:27 +08:00
|
|
|
// first reassign all iterator positions to the new container which
|
|
|
|
// are not past the container (thus not greater or equal to the
|
|
|
|
// current "end" symbol).
|
|
|
|
State = reassignAllIteratorPositionsUnless(State, OldContReg, ContReg,
|
|
|
|
OldEndSym, BO_GE);
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &SVB = C.getSValBuilder();
|
|
|
|
// Then generate and assign a new "end" symbol for the new container.
|
|
|
|
auto NewEndSym =
|
|
|
|
SymMgr.conjureSymbol(CE, C.getLocationContext(),
|
|
|
|
C.getASTContext().LongTy, C.blockCount());
|
|
|
|
State = assumeNoOverflow(State, NewEndSym, 4);
|
|
|
|
if (CData) {
|
|
|
|
State = setContainerData(State, ContReg, CData->newEnd(NewEndSym));
|
|
|
|
} else {
|
|
|
|
State = setContainerData(State, ContReg,
|
|
|
|
ContainerData::fromEnd(NewEndSym));
|
|
|
|
}
|
|
|
|
// Finally, replace the old "end" symbol in the already reassigned
|
|
|
|
// iterator positions with the new "end" symbol.
|
|
|
|
State = rebaseSymbolInIteratorPositionsIf(
|
|
|
|
State, SVB, OldEndSym, NewEndSym, OldEndSym, BO_LT);
|
|
|
|
} else {
|
|
|
|
// There was no "end" symbol assigned yet to the old container,
|
|
|
|
// so reassign all iterator positions to the new container.
|
|
|
|
State = reassignAllIteratorPositions(State, OldContReg, ContReg);
|
|
|
|
}
|
|
|
|
if (const auto OldBeginSym = OldCData->getBegin()) {
|
|
|
|
// If we already assigned a "begin" symbol to the old container, then
|
|
|
|
// assign it to the new container and remove it from the old one.
|
|
|
|
if (CData) {
|
|
|
|
State =
|
|
|
|
setContainerData(State, ContReg, CData->newBegin(OldBeginSym));
|
|
|
|
} else {
|
|
|
|
State = setContainerData(State, ContReg,
|
|
|
|
ContainerData::fromBegin(OldBeginSym));
|
|
|
|
}
|
|
|
|
State =
|
|
|
|
setContainerData(State, OldContReg, OldCData->newEnd(nullptr));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// There was neither "begin" nor "end" symbol assigned yet to the old
|
|
|
|
// container, so reassign all iterator positions to the new container.
|
|
|
|
State = reassignAllIteratorPositions(State, OldContReg, ContReg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-28 16:41:15 +08:00
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:47 +08:00
|
|
|
void IteratorChecker::handleClear(CheckerContext &C, const SVal &Cont) const {
|
|
|
|
const auto *ContReg = Cont.getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
|
2018-12-04 18:22:28 +08:00
|
|
|
ContReg = ContReg->getMostDerivedObjectRegion();
|
2018-09-10 17:07:47 +08:00
|
|
|
|
|
|
|
// The clear() operation invalidates all the iterators, except the past-end
|
|
|
|
// iterators of list-like containers
|
|
|
|
auto State = C.getState();
|
|
|
|
if (!hasSubscriptOperator(State, ContReg) ||
|
|
|
|
!backModifiable(State, ContReg)) {
|
|
|
|
const auto CData = getContainerData(State, ContReg);
|
|
|
|
if (CData) {
|
|
|
|
if (const auto EndSym = CData->getEnd()) {
|
|
|
|
State =
|
|
|
|
invalidateAllIteratorPositionsExcept(State, ContReg, EndSym, BO_GE);
|
|
|
|
C.addTransition(State);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
State = invalidateAllIteratorPositions(State, ContReg);
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:06:31 +08:00
|
|
|
void IteratorChecker::handlePushBack(CheckerContext &C,
|
|
|
|
const SVal &Cont) const {
|
|
|
|
const auto *ContReg = Cont.getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
|
2018-12-04 18:22:28 +08:00
|
|
|
ContReg = ContReg->getMostDerivedObjectRegion();
|
2018-09-10 17:06:31 +08:00
|
|
|
|
|
|
|
// For deque-like containers invalidate all iterator positions
|
|
|
|
auto State = C.getState();
|
|
|
|
if (hasSubscriptOperator(State, ContReg) && frontModifiable(State, ContReg)) {
|
|
|
|
State = invalidateAllIteratorPositions(State, ContReg);
|
|
|
|
C.addTransition(State);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto CData = getContainerData(State, ContReg);
|
|
|
|
if (!CData)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// For vector-like containers invalidate the past-end iterator positions
|
|
|
|
if (const auto EndSym = CData->getEnd()) {
|
|
|
|
if (hasSubscriptOperator(State, ContReg)) {
|
|
|
|
State = invalidateIteratorPositions(State, EndSym, BO_GE);
|
|
|
|
}
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &BVF = SymMgr.getBasicVals();
|
|
|
|
auto &SVB = C.getSValBuilder();
|
|
|
|
const auto newEndSym =
|
|
|
|
SVB.evalBinOp(State, BO_Add,
|
|
|
|
nonloc::SymbolVal(EndSym),
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))),
|
|
|
|
SymMgr.getType(EndSym)).getAsSymbol();
|
|
|
|
State = setContainerData(State, ContReg, CData->newEnd(newEndSym));
|
|
|
|
}
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handlePopBack(CheckerContext &C, const SVal &Cont) const {
|
|
|
|
const auto *ContReg = Cont.getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
|
2018-12-04 18:22:28 +08:00
|
|
|
ContReg = ContReg->getMostDerivedObjectRegion();
|
2018-09-10 17:06:31 +08:00
|
|
|
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto CData = getContainerData(State, ContReg);
|
|
|
|
if (!CData)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (const auto EndSym = CData->getEnd()) {
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &BVF = SymMgr.getBasicVals();
|
|
|
|
auto &SVB = C.getSValBuilder();
|
|
|
|
const auto BackSym =
|
|
|
|
SVB.evalBinOp(State, BO_Sub,
|
|
|
|
nonloc::SymbolVal(EndSym),
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))),
|
|
|
|
SymMgr.getType(EndSym)).getAsSymbol();
|
|
|
|
// For vector-like and deque-like containers invalidate the last and the
|
|
|
|
// past-end iterator positions. For list-like containers only invalidate
|
|
|
|
// the last position
|
|
|
|
if (hasSubscriptOperator(State, ContReg) &&
|
|
|
|
backModifiable(State, ContReg)) {
|
|
|
|
State = invalidateIteratorPositions(State, BackSym, BO_GE);
|
|
|
|
State = setContainerData(State, ContReg, CData->newEnd(nullptr));
|
|
|
|
} else {
|
|
|
|
State = invalidateIteratorPositions(State, BackSym, BO_EQ);
|
|
|
|
}
|
|
|
|
auto newEndSym = BackSym;
|
|
|
|
State = setContainerData(State, ContReg, CData->newEnd(newEndSym));
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handlePushFront(CheckerContext &C,
|
|
|
|
const SVal &Cont) const {
|
|
|
|
const auto *ContReg = Cont.getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
|
2018-12-04 18:22:28 +08:00
|
|
|
ContReg = ContReg->getMostDerivedObjectRegion();
|
2018-09-10 17:06:31 +08:00
|
|
|
|
|
|
|
// For deque-like containers invalidate all iterator positions
|
|
|
|
auto State = C.getState();
|
|
|
|
if (hasSubscriptOperator(State, ContReg)) {
|
|
|
|
State = invalidateAllIteratorPositions(State, ContReg);
|
|
|
|
C.addTransition(State);
|
|
|
|
} else {
|
|
|
|
const auto CData = getContainerData(State, ContReg);
|
|
|
|
if (!CData)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (const auto BeginSym = CData->getBegin()) {
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &BVF = SymMgr.getBasicVals();
|
|
|
|
auto &SVB = C.getSValBuilder();
|
|
|
|
const auto newBeginSym =
|
|
|
|
SVB.evalBinOp(State, BO_Sub,
|
|
|
|
nonloc::SymbolVal(BeginSym),
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))),
|
|
|
|
SymMgr.getType(BeginSym)).getAsSymbol();
|
|
|
|
State = setContainerData(State, ContReg, CData->newBegin(newBeginSym));
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handlePopFront(CheckerContext &C,
|
|
|
|
const SVal &Cont) const {
|
|
|
|
const auto *ContReg = Cont.getAsRegion();
|
|
|
|
if (!ContReg)
|
|
|
|
return;
|
|
|
|
|
2018-12-04 18:22:28 +08:00
|
|
|
ContReg = ContReg->getMostDerivedObjectRegion();
|
2018-09-10 17:06:31 +08:00
|
|
|
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto CData = getContainerData(State, ContReg);
|
|
|
|
if (!CData)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// For deque-like containers invalidate all iterator positions. For list-like
|
|
|
|
// iterators only invalidate the first position
|
|
|
|
if (const auto BeginSym = CData->getBegin()) {
|
|
|
|
if (hasSubscriptOperator(State, ContReg)) {
|
|
|
|
State = invalidateIteratorPositions(State, BeginSym, BO_LE);
|
|
|
|
} else {
|
|
|
|
State = invalidateIteratorPositions(State, BeginSym, BO_EQ);
|
|
|
|
}
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &BVF = SymMgr.getBasicVals();
|
|
|
|
auto &SVB = C.getSValBuilder();
|
|
|
|
const auto newBeginSym =
|
|
|
|
SVB.evalBinOp(State, BO_Add,
|
|
|
|
nonloc::SymbolVal(BeginSym),
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))),
|
|
|
|
SymMgr.getType(BeginSym)).getAsSymbol();
|
|
|
|
State = setContainerData(State, ContReg, CData->newBegin(newBeginSym));
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:47 +08:00
|
|
|
void IteratorChecker::handleInsert(CheckerContext &C, const SVal &Iter) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Iter);
|
|
|
|
if (!Pos)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// For deque-like containers invalidate all iterator positions. For
|
|
|
|
// vector-like containers invalidate iterator positions after the insertion.
|
|
|
|
const auto *Cont = Pos->getContainer();
|
|
|
|
if (hasSubscriptOperator(State, Cont) && backModifiable(State, Cont)) {
|
|
|
|
if (frontModifiable(State, Cont)) {
|
|
|
|
State = invalidateAllIteratorPositions(State, Cont);
|
|
|
|
} else {
|
|
|
|
State = invalidateIteratorPositions(State, Pos->getOffset(), BO_GE);
|
|
|
|
}
|
|
|
|
if (const auto *CData = getContainerData(State, Cont)) {
|
|
|
|
if (const auto EndSym = CData->getEnd()) {
|
|
|
|
State = invalidateIteratorPositions(State, EndSym, BO_GE);
|
|
|
|
State = setContainerData(State, Cont, CData->newEnd(nullptr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handleErase(CheckerContext &C, const SVal &Iter) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Iter);
|
|
|
|
if (!Pos)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// For deque-like containers invalidate all iterator positions. For
|
|
|
|
// vector-like containers invalidate iterator positions at and after the
|
|
|
|
// deletion. For list-like containers only invalidate the deleted position.
|
|
|
|
const auto *Cont = Pos->getContainer();
|
|
|
|
if (hasSubscriptOperator(State, Cont) && backModifiable(State, Cont)) {
|
|
|
|
if (frontModifiable(State, Cont)) {
|
|
|
|
State = invalidateAllIteratorPositions(State, Cont);
|
|
|
|
} else {
|
|
|
|
State = invalidateIteratorPositions(State, Pos->getOffset(), BO_GE);
|
|
|
|
}
|
|
|
|
if (const auto *CData = getContainerData(State, Cont)) {
|
|
|
|
if (const auto EndSym = CData->getEnd()) {
|
|
|
|
State = invalidateIteratorPositions(State, EndSym, BO_GE);
|
|
|
|
State = setContainerData(State, Cont, CData->newEnd(nullptr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
State = invalidateIteratorPositions(State, Pos->getOffset(), BO_EQ);
|
|
|
|
}
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handleErase(CheckerContext &C, const SVal &Iter1,
|
|
|
|
const SVal &Iter2) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos1 = getIteratorPosition(State, Iter1);
|
|
|
|
const auto *Pos2 = getIteratorPosition(State, Iter2);
|
|
|
|
if (!Pos1 || !Pos2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// For deque-like containers invalidate all iterator positions. For
|
|
|
|
// vector-like containers invalidate iterator positions at and after the
|
|
|
|
// deletion range. For list-like containers only invalidate the deleted
|
|
|
|
// position range [first..last].
|
|
|
|
const auto *Cont = Pos1->getContainer();
|
|
|
|
if (hasSubscriptOperator(State, Cont) && backModifiable(State, Cont)) {
|
|
|
|
if (frontModifiable(State, Cont)) {
|
|
|
|
State = invalidateAllIteratorPositions(State, Cont);
|
|
|
|
} else {
|
|
|
|
State = invalidateIteratorPositions(State, Pos1->getOffset(), BO_GE);
|
|
|
|
}
|
|
|
|
if (const auto *CData = getContainerData(State, Cont)) {
|
|
|
|
if (const auto EndSym = CData->getEnd()) {
|
|
|
|
State = invalidateIteratorPositions(State, EndSym, BO_GE);
|
|
|
|
State = setContainerData(State, Cont, CData->newEnd(nullptr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
State = invalidateIteratorPositions(State, Pos1->getOffset(), BO_GE,
|
|
|
|
Pos2->getOffset(), BO_LT);
|
|
|
|
}
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handleEraseAfter(CheckerContext &C,
|
|
|
|
const SVal &Iter) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos = getIteratorPosition(State, Iter);
|
|
|
|
if (!Pos)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Invalidate the deleted iterator position, which is the position of the
|
|
|
|
// parameter plus one.
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &BVF = SymMgr.getBasicVals();
|
|
|
|
auto &SVB = C.getSValBuilder();
|
|
|
|
const auto NextSym =
|
|
|
|
SVB.evalBinOp(State, BO_Add,
|
|
|
|
nonloc::SymbolVal(Pos->getOffset()),
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(1))),
|
|
|
|
SymMgr.getType(Pos->getOffset())).getAsSymbol();
|
|
|
|
State = invalidateIteratorPositions(State, NextSym, BO_EQ);
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IteratorChecker::handleEraseAfter(CheckerContext &C, const SVal &Iter1,
|
|
|
|
const SVal &Iter2) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
const auto *Pos1 = getIteratorPosition(State, Iter1);
|
|
|
|
const auto *Pos2 = getIteratorPosition(State, Iter2);
|
|
|
|
if (!Pos1 || !Pos2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Invalidate the deleted iterator position range (first..last)
|
|
|
|
State = invalidateIteratorPositions(State, Pos1->getOffset(), BO_GT,
|
|
|
|
Pos2->getOffset(), BO_LT);
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
IteratorPosition IteratorChecker::advancePosition(CheckerContext &C,
|
|
|
|
OverloadedOperatorKind Op,
|
|
|
|
const IteratorPosition &Pos,
|
|
|
|
const SVal &Distance) const {
|
|
|
|
auto State = C.getState();
|
|
|
|
auto &SymMgr = C.getSymbolManager();
|
|
|
|
auto &SVB = C.getSValBuilder();
|
|
|
|
|
|
|
|
assert ((Op == OO_Plus || Op == OO_PlusEqual ||
|
|
|
|
Op == OO_Minus || Op == OO_MinusEqual) &&
|
|
|
|
"Advance operator must be one of +, -, += and -=.");
|
|
|
|
auto BinOp = (Op == OO_Plus || Op == OO_PlusEqual) ? BO_Add : BO_Sub;
|
|
|
|
if (const auto IntDist = Distance.getAs<nonloc::ConcreteInt>()) {
|
|
|
|
// For concrete integers we can calculate the new position
|
|
|
|
return Pos.setTo(SVB.evalBinOp(State, BinOp,
|
|
|
|
nonloc::SymbolVal(Pos.getOffset()), *IntDist,
|
|
|
|
SymMgr.getType(Pos.getOffset()))
|
|
|
|
.getAsSymbol());
|
|
|
|
} else {
|
|
|
|
// For other symbols create a new symbol to keep expressions simple
|
|
|
|
const auto &LCtx = C.getLocationContext();
|
|
|
|
const auto NewPosSym = SymMgr.conjureSymbol(nullptr, LCtx,
|
|
|
|
SymMgr.getType(Pos.getOffset()),
|
|
|
|
C.blockCount());
|
|
|
|
State = assumeNoOverflow(State, NewPosSym, 4);
|
|
|
|
return Pos.setTo(NewPosSym);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
void IteratorChecker::reportOutOfRangeBug(const StringRef &Message,
|
|
|
|
const SVal &Val, CheckerContext &C,
|
|
|
|
ExplodedNode *ErrNode) const {
|
|
|
|
auto R = llvm::make_unique<BugReport>(*OutOfRangeBugType, Message, ErrNode);
|
|
|
|
R->markInteresting(Val);
|
|
|
|
C.emitReport(std::move(R));
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:03:22 +08:00
|
|
|
void IteratorChecker::reportMismatchedBug(const StringRef &Message,
|
|
|
|
const SVal &Val1, const SVal &Val2,
|
|
|
|
CheckerContext &C,
|
|
|
|
ExplodedNode *ErrNode) const {
|
|
|
|
auto R = llvm::make_unique<BugReport>(*MismatchedBugType, Message, ErrNode);
|
|
|
|
R->markInteresting(Val1);
|
|
|
|
R->markInteresting(Val2);
|
|
|
|
C.emitReport(std::move(R));
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:05:31 +08:00
|
|
|
void IteratorChecker::reportMismatchedBug(const StringRef &Message,
|
|
|
|
const SVal &Val, const MemRegion *Reg,
|
|
|
|
CheckerContext &C,
|
|
|
|
ExplodedNode *ErrNode) const {
|
|
|
|
auto R = llvm::make_unique<BugReport>(*MismatchedBugType, Message, ErrNode);
|
|
|
|
R->markInteresting(Val);
|
|
|
|
R->markInteresting(Reg);
|
|
|
|
C.emitReport(std::move(R));
|
|
|
|
}
|
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
void IteratorChecker::reportInvalidatedBug(const StringRef &Message,
|
|
|
|
const SVal &Val, CheckerContext &C,
|
|
|
|
ExplodedNode *ErrNode) const {
|
|
|
|
auto R = llvm::make_unique<BugReport>(*InvalidatedBugType, Message, ErrNode);
|
|
|
|
R->markInteresting(Val);
|
|
|
|
C.emitReport(std::move(R));
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
namespace {
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
bool isLess(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2);
|
2018-12-04 18:27:27 +08:00
|
|
|
bool isGreater(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2);
|
|
|
|
bool isEqual(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2);
|
2017-05-29 23:03:20 +08:00
|
|
|
bool compare(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2,
|
|
|
|
BinaryOperator::Opcode Opc);
|
2018-06-28 18:58:53 +08:00
|
|
|
bool compare(ProgramStateRef State, NonLoc NL1, NonLoc NL2,
|
|
|
|
BinaryOperator::Opcode Opc);
|
2018-09-10 17:06:31 +08:00
|
|
|
const CXXRecordDecl *getCXXRecordDecl(ProgramStateRef State,
|
|
|
|
const MemRegion *Reg);
|
2018-09-10 17:04:27 +08:00
|
|
|
SymbolRef rebaseSymbol(ProgramStateRef State, SValBuilder &SVB, SymbolRef Expr,
|
|
|
|
SymbolRef OldSym, SymbolRef NewSym);
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
bool isIteratorType(const QualType &Type) {
|
|
|
|
if (Type->isPointerType())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const auto *CRD = Type->getUnqualifiedDesugaredType()->getAsCXXRecordDecl();
|
|
|
|
return isIterator(CRD);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isIterator(const CXXRecordDecl *CRD) {
|
|
|
|
if (!CRD)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const auto Name = CRD->getName();
|
|
|
|
if (!(Name.endswith_lower("iterator") || Name.endswith_lower("iter") ||
|
|
|
|
Name.endswith_lower("it")))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool HasCopyCtor = false, HasCopyAssign = true, HasDtor = false,
|
|
|
|
HasPreIncrOp = false, HasPostIncrOp = false, HasDerefOp = false;
|
|
|
|
for (const auto *Method : CRD->methods()) {
|
|
|
|
if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(Method)) {
|
|
|
|
if (Ctor->isCopyConstructor()) {
|
|
|
|
HasCopyCtor = !Ctor->isDeleted() && Ctor->getAccess() == AS_public;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(Method)) {
|
|
|
|
HasDtor = !Dtor->isDeleted() && Dtor->getAccess() == AS_public;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (Method->isCopyAssignmentOperator()) {
|
|
|
|
HasCopyAssign = !Method->isDeleted() && Method->getAccess() == AS_public;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!Method->isOverloadedOperator())
|
|
|
|
continue;
|
|
|
|
const auto OPK = Method->getOverloadedOperator();
|
|
|
|
if (OPK == OO_PlusPlus) {
|
|
|
|
HasPreIncrOp = HasPreIncrOp || (Method->getNumParams() == 0);
|
|
|
|
HasPostIncrOp = HasPostIncrOp || (Method->getNumParams() == 1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (OPK == OO_Star) {
|
|
|
|
HasDerefOp = (Method->getNumParams() == 0);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return HasCopyCtor && HasCopyAssign && HasDtor && HasPreIncrOp &&
|
|
|
|
HasPostIncrOp && HasDerefOp;
|
|
|
|
}
|
2018-09-10 17:05:31 +08:00
|
|
|
|
|
|
|
bool isComparisonOperator(OverloadedOperatorKind OK) {
|
|
|
|
return OK == OO_EqualEqual || OK == OO_ExclaimEqual || OK == OO_Less ||
|
|
|
|
OK == OO_LessEqual || OK == OO_Greater || OK == OO_GreaterEqual;
|
|
|
|
}
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
bool isBeginCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName().endswith_lower("begin");
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
bool isEndCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName().endswith_lower("end");
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:47 +08:00
|
|
|
bool isAssignCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() > 2)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "assign";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isClearCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() > 0)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "clear";
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:06:31 +08:00
|
|
|
bool isPushBackCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() != 1)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "push_back";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEmplaceBackCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() < 1)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "emplace_back";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isPopBackCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() > 0)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "pop_back";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isPushFrontCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() != 1)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "push_front";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEmplaceFrontCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() < 1)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "emplace_front";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isPopFrontCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() > 0)
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "pop_front";
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:47 +08:00
|
|
|
bool isInsertCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() < 2 || Func->getNumParams() > 3)
|
|
|
|
return false;
|
|
|
|
if (!isIteratorType(Func->getParamDecl(0)->getType()))
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "insert";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEmplaceCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() < 2)
|
|
|
|
return false;
|
|
|
|
if (!isIteratorType(Func->getParamDecl(0)->getType()))
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "emplace";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEraseCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() < 1 || Func->getNumParams() > 2)
|
|
|
|
return false;
|
|
|
|
if (!isIteratorType(Func->getParamDecl(0)->getType()))
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() == 2 &&
|
|
|
|
!isIteratorType(Func->getParamDecl(1)->getType()))
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "erase";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEraseAfterCall(const FunctionDecl *Func) {
|
|
|
|
const auto *IdInfo = Func->getIdentifier();
|
|
|
|
if (!IdInfo)
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() < 1 || Func->getNumParams() > 2)
|
|
|
|
return false;
|
|
|
|
if (!isIteratorType(Func->getParamDecl(0)->getType()))
|
|
|
|
return false;
|
|
|
|
if (Func->getNumParams() == 2 &&
|
|
|
|
!isIteratorType(Func->getParamDecl(1)->getType()))
|
|
|
|
return false;
|
|
|
|
return IdInfo->getName() == "erase_after";
|
|
|
|
}
|
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
bool isAssignmentOperator(OverloadedOperatorKind OK) { return OK == OO_Equal; }
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
bool isSimpleComparisonOperator(OverloadedOperatorKind OK) {
|
|
|
|
return OK == OO_EqualEqual || OK == OO_ExclaimEqual;
|
|
|
|
}
|
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
bool isAccessOperator(OverloadedOperatorKind OK) {
|
|
|
|
return isDereferenceOperator(OK) || isIncrementOperator(OK) ||
|
|
|
|
isDecrementOperator(OK) || isRandomIncrOrDecrOperator(OK);
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
bool isDereferenceOperator(OverloadedOperatorKind OK) {
|
|
|
|
return OK == OO_Star || OK == OO_Arrow || OK == OO_ArrowStar ||
|
|
|
|
OK == OO_Subscript;
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
bool isIncrementOperator(OverloadedOperatorKind OK) {
|
|
|
|
return OK == OO_PlusPlus;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isDecrementOperator(OverloadedOperatorKind OK) {
|
|
|
|
return OK == OO_MinusMinus;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isRandomIncrOrDecrOperator(OverloadedOperatorKind OK) {
|
|
|
|
return OK == OO_Plus || OK == OO_PlusEqual || OK == OO_Minus ||
|
|
|
|
OK == OO_MinusEqual;
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:06:31 +08:00
|
|
|
bool hasSubscriptOperator(ProgramStateRef State, const MemRegion *Reg) {
|
|
|
|
const auto *CRD = getCXXRecordDecl(State, Reg);
|
|
|
|
if (!CRD)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (const auto *Method : CRD->methods()) {
|
|
|
|
if (!Method->isOverloadedOperator())
|
|
|
|
continue;
|
|
|
|
const auto OPK = Method->getOverloadedOperator();
|
|
|
|
if (OPK == OO_Subscript) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool frontModifiable(ProgramStateRef State, const MemRegion *Reg) {
|
|
|
|
const auto *CRD = getCXXRecordDecl(State, Reg);
|
|
|
|
if (!CRD)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (const auto *Method : CRD->methods()) {
|
|
|
|
if (!Method->getDeclName().isIdentifier())
|
|
|
|
continue;
|
|
|
|
if (Method->getName() == "push_front" || Method->getName() == "pop_front") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool backModifiable(ProgramStateRef State, const MemRegion *Reg) {
|
|
|
|
const auto *CRD = getCXXRecordDecl(State, Reg);
|
|
|
|
if (!CRD)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (const auto *Method : CRD->methods()) {
|
|
|
|
if (!Method->getDeclName().isIdentifier())
|
|
|
|
continue;
|
|
|
|
if (Method->getName() == "push_back" || Method->getName() == "pop_back") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const CXXRecordDecl *getCXXRecordDecl(ProgramStateRef State,
|
|
|
|
const MemRegion *Reg) {
|
|
|
|
auto TI = getDynamicTypeInfo(State, Reg);
|
|
|
|
if (!TI.isValid())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
auto Type = TI.getType();
|
|
|
|
if (const auto *RefT = Type->getAs<ReferenceType>()) {
|
|
|
|
Type = RefT->getPointeeType();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Type->getUnqualifiedDesugaredType()->getAsCXXRecordDecl();
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
SymbolRef getContainerBegin(ProgramStateRef State, const MemRegion *Cont) {
|
|
|
|
const auto *CDataPtr = getContainerData(State, Cont);
|
|
|
|
if (!CDataPtr)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return CDataPtr->getBegin();
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
SymbolRef getContainerEnd(ProgramStateRef State, const MemRegion *Cont) {
|
|
|
|
const auto *CDataPtr = getContainerData(State, Cont);
|
|
|
|
if (!CDataPtr)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return CDataPtr->getEnd();
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
ProgramStateRef createContainerBegin(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont,
|
|
|
|
const SymbolRef Sym) {
|
|
|
|
// Only create if it does not exist
|
|
|
|
const auto *CDataPtr = getContainerData(State, Cont);
|
|
|
|
if (CDataPtr) {
|
|
|
|
if (CDataPtr->getBegin()) {
|
|
|
|
return State;
|
|
|
|
}
|
|
|
|
const auto CData = CDataPtr->newBegin(Sym);
|
|
|
|
return setContainerData(State, Cont, CData);
|
|
|
|
}
|
|
|
|
const auto CData = ContainerData::fromBegin(Sym);
|
|
|
|
return setContainerData(State, Cont, CData);
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
ProgramStateRef createContainerEnd(ProgramStateRef State, const MemRegion *Cont,
|
|
|
|
const SymbolRef Sym) {
|
|
|
|
// Only create if it does not exist
|
|
|
|
const auto *CDataPtr = getContainerData(State, Cont);
|
|
|
|
if (CDataPtr) {
|
|
|
|
if (CDataPtr->getEnd()) {
|
|
|
|
return State;
|
|
|
|
}
|
2018-06-28 18:58:53 +08:00
|
|
|
const auto CData = CDataPtr->newEnd(Sym);
|
2017-05-29 23:03:20 +08:00
|
|
|
return setContainerData(State, Cont, CData);
|
|
|
|
}
|
2018-06-28 18:58:53 +08:00
|
|
|
const auto CData = ContainerData::fromEnd(Sym);
|
|
|
|
return setContainerData(State, Cont, CData);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const ContainerData *getContainerData(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont) {
|
|
|
|
return State->get<ContainerMap>(Cont);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramStateRef setContainerData(ProgramStateRef State, const MemRegion *Cont,
|
|
|
|
const ContainerData &CData) {
|
|
|
|
return State->set<ContainerMap>(Cont, CData);
|
|
|
|
}
|
|
|
|
|
|
|
|
const IteratorPosition *getIteratorPosition(ProgramStateRef State,
|
|
|
|
const SVal &Val) {
|
2018-12-04 18:22:28 +08:00
|
|
|
if (auto Reg = Val.getAsRegion()) {
|
|
|
|
Reg = Reg->getMostDerivedObjectRegion();
|
2017-05-29 23:03:20 +08:00
|
|
|
return State->get<IteratorRegionMap>(Reg);
|
|
|
|
} else if (const auto Sym = Val.getAsSymbol()) {
|
|
|
|
return State->get<IteratorSymbolMap>(Sym);
|
|
|
|
} else if (const auto LCVal = Val.getAs<nonloc::LazyCompoundVal>()) {
|
|
|
|
return State->get<IteratorRegionMap>(LCVal->getRegion());
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramStateRef setIteratorPosition(ProgramStateRef State, const SVal &Val,
|
|
|
|
const IteratorPosition &Pos) {
|
2018-12-04 18:22:28 +08:00
|
|
|
if (auto Reg = Val.getAsRegion()) {
|
|
|
|
Reg = Reg->getMostDerivedObjectRegion();
|
2017-05-29 23:03:20 +08:00
|
|
|
return State->set<IteratorRegionMap>(Reg, Pos);
|
|
|
|
} else if (const auto Sym = Val.getAsSymbol()) {
|
|
|
|
return State->set<IteratorSymbolMap>(Sym, Pos);
|
|
|
|
} else if (const auto LCVal = Val.getAs<nonloc::LazyCompoundVal>()) {
|
|
|
|
return State->set<IteratorRegionMap>(LCVal->getRegion(), Pos);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramStateRef removeIteratorPosition(ProgramStateRef State, const SVal &Val) {
|
2018-12-04 18:22:28 +08:00
|
|
|
if (auto Reg = Val.getAsRegion()) {
|
|
|
|
Reg = Reg->getMostDerivedObjectRegion();
|
2017-05-29 23:03:20 +08:00
|
|
|
return State->remove<IteratorRegionMap>(Reg);
|
|
|
|
} else if (const auto Sym = Val.getAsSymbol()) {
|
|
|
|
return State->remove<IteratorSymbolMap>(Sym);
|
|
|
|
} else if (const auto LCVal = Val.getAs<nonloc::LazyCompoundVal>()) {
|
|
|
|
return State->remove<IteratorRegionMap>(LCVal->getRegion());
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2019-04-23 15:15:55 +08:00
|
|
|
ProgramStateRef relateSymbols(ProgramStateRef State, SymbolRef Sym1,
|
|
|
|
SymbolRef Sym2, bool Equal) {
|
2017-05-29 23:03:20 +08:00
|
|
|
auto &SVB = State->getStateManager().getSValBuilder();
|
2018-07-16 17:27:27 +08:00
|
|
|
|
|
|
|
// FIXME: This code should be reworked as follows:
|
|
|
|
// 1. Subtract the operands using evalBinOp().
|
|
|
|
// 2. Assume that the result doesn't overflow.
|
|
|
|
// 3. Compare the result to 0.
|
|
|
|
// 4. Assume the result of the comparison.
|
2017-05-29 23:03:20 +08:00
|
|
|
const auto comparison =
|
2019-04-23 15:15:55 +08:00
|
|
|
SVB.evalBinOp(State, BO_EQ, nonloc::SymbolVal(Sym1),
|
|
|
|
nonloc::SymbolVal(Sym2), SVB.getConditionType());
|
2018-07-16 17:27:27 +08:00
|
|
|
|
|
|
|
assert(comparison.getAs<DefinedSVal>() &&
|
|
|
|
"Symbol comparison must be a `DefinedSVal`");
|
|
|
|
|
|
|
|
auto NewState = State->assume(comparison.castAs<DefinedSVal>(), Equal);
|
2019-04-23 15:15:55 +08:00
|
|
|
if (!NewState)
|
|
|
|
return nullptr;
|
|
|
|
|
2018-07-16 17:27:27 +08:00
|
|
|
if (const auto CompSym = comparison.getAsSymbol()) {
|
|
|
|
assert(isa<SymIntExpr>(CompSym) &&
|
|
|
|
"Symbol comparison must be a `SymIntExpr`");
|
|
|
|
assert(BinaryOperator::isComparisonOp(
|
|
|
|
cast<SymIntExpr>(CompSym)->getOpcode()) &&
|
|
|
|
"Symbol comparison must be a comparison");
|
|
|
|
return assumeNoOverflow(NewState, cast<SymIntExpr>(CompSym)->getLHS(), 2);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
2018-07-16 17:27:27 +08:00
|
|
|
return NewState;
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
2018-07-30 16:52:21 +08:00
|
|
|
bool hasLiveIterators(ProgramStateRef State, const MemRegion *Cont) {
|
|
|
|
auto RegionMap = State->get<IteratorRegionMap>();
|
|
|
|
for (const auto Reg : RegionMap) {
|
|
|
|
if (Reg.second.getContainer() == Cont)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto SymbolMap = State->get<IteratorSymbolMap>();
|
|
|
|
for (const auto Sym : SymbolMap) {
|
|
|
|
if (Sym.second.getContainer() == Cont)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:03:22 +08:00
|
|
|
bool isBoundThroughLazyCompoundVal(const Environment &Env,
|
|
|
|
const MemRegion *Reg) {
|
|
|
|
for (const auto Binding: Env) {
|
|
|
|
if (const auto LCVal = Binding.second.getAs<nonloc::LazyCompoundVal>()) {
|
|
|
|
if (LCVal->getRegion() == Reg)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-04-23 15:15:55 +08:00
|
|
|
// This function tells the analyzer's engine that symbols produced by our
|
|
|
|
// checker, most notably iterator positions, are relatively small.
|
|
|
|
// A distance between items in the container should not be very large.
|
|
|
|
// By assuming that it is within around 1/8 of the address space,
|
|
|
|
// we can help the analyzer perform operations on these symbols
|
|
|
|
// without being afraid of integer overflows.
|
|
|
|
// FIXME: Should we provide it as an API, so that all checkers could use it?
|
|
|
|
ProgramStateRef assumeNoOverflow(ProgramStateRef State, SymbolRef Sym,
|
|
|
|
long Scale) {
|
|
|
|
SValBuilder &SVB = State->getStateManager().getSValBuilder();
|
|
|
|
BasicValueFactory &BV = SVB.getBasicValueFactory();
|
|
|
|
|
|
|
|
QualType T = Sym->getType();
|
|
|
|
assert(T->isSignedIntegerOrEnumerationType());
|
|
|
|
APSIntType AT = BV.getAPSIntType(T);
|
|
|
|
|
|
|
|
ProgramStateRef NewState = State;
|
|
|
|
|
|
|
|
llvm::APSInt Max = AT.getMaxValue() / AT.getValue(Scale);
|
|
|
|
SVal IsCappedFromAbove =
|
|
|
|
SVB.evalBinOpNN(State, BO_LE, nonloc::SymbolVal(Sym),
|
|
|
|
nonloc::ConcreteInt(Max), SVB.getConditionType());
|
|
|
|
if (auto DV = IsCappedFromAbove.getAs<DefinedSVal>()) {
|
|
|
|
NewState = NewState->assume(*DV, true);
|
|
|
|
if (!NewState)
|
|
|
|
return State;
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::APSInt Min = -Max;
|
|
|
|
SVal IsCappedFromBelow =
|
|
|
|
SVB.evalBinOpNN(State, BO_GE, nonloc::SymbolVal(Sym),
|
|
|
|
nonloc::ConcreteInt(Min), SVB.getConditionType());
|
|
|
|
if (auto DV = IsCappedFromBelow.getAs<DefinedSVal>()) {
|
|
|
|
NewState = NewState->assume(*DV, true);
|
|
|
|
if (!NewState)
|
|
|
|
return State;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewState;
|
|
|
|
}
|
|
|
|
|
2018-08-28 16:41:15 +08:00
|
|
|
template <typename Condition, typename Process>
|
|
|
|
ProgramStateRef processIteratorPositions(ProgramStateRef State, Condition Cond,
|
|
|
|
Process Proc) {
|
|
|
|
auto &RegionMapFactory = State->get_context<IteratorRegionMap>();
|
|
|
|
auto RegionMap = State->get<IteratorRegionMap>();
|
|
|
|
bool Changed = false;
|
|
|
|
for (const auto Reg : RegionMap) {
|
|
|
|
if (Cond(Reg.second)) {
|
|
|
|
RegionMap = RegionMapFactory.add(RegionMap, Reg.first, Proc(Reg.second));
|
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Changed)
|
|
|
|
State = State->set<IteratorRegionMap>(RegionMap);
|
|
|
|
|
|
|
|
auto &SymbolMapFactory = State->get_context<IteratorSymbolMap>();
|
|
|
|
auto SymbolMap = State->get<IteratorSymbolMap>();
|
|
|
|
Changed = false;
|
|
|
|
for (const auto Sym : SymbolMap) {
|
|
|
|
if (Cond(Sym.second)) {
|
|
|
|
SymbolMap = SymbolMapFactory.add(SymbolMap, Sym.first, Proc(Sym.second));
|
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Changed)
|
|
|
|
State = State->set<IteratorSymbolMap>(SymbolMap);
|
|
|
|
|
|
|
|
return State;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramStateRef invalidateAllIteratorPositions(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont) {
|
|
|
|
auto MatchCont = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.getContainer() == Cont;
|
|
|
|
};
|
|
|
|
auto Invalidate = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.invalidate();
|
|
|
|
};
|
|
|
|
return processIteratorPositions(State, MatchCont, Invalidate);
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:07:47 +08:00
|
|
|
ProgramStateRef
|
|
|
|
invalidateAllIteratorPositionsExcept(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont, SymbolRef Offset,
|
|
|
|
BinaryOperator::Opcode Opc) {
|
|
|
|
auto MatchContAndCompare = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.getContainer() == Cont &&
|
|
|
|
!compare(State, Pos.getOffset(), Offset, Opc);
|
|
|
|
};
|
|
|
|
auto Invalidate = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.invalidate();
|
|
|
|
};
|
|
|
|
return processIteratorPositions(State, MatchContAndCompare, Invalidate);
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:06:31 +08:00
|
|
|
ProgramStateRef invalidateIteratorPositions(ProgramStateRef State,
|
|
|
|
SymbolRef Offset,
|
|
|
|
BinaryOperator::Opcode Opc) {
|
|
|
|
auto Compare = [&](const IteratorPosition &Pos) {
|
|
|
|
return compare(State, Pos.getOffset(), Offset, Opc);
|
|
|
|
};
|
|
|
|
auto Invalidate = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.invalidate();
|
2018-09-10 17:07:47 +08:00
|
|
|
};
|
|
|
|
return processIteratorPositions(State, Compare, Invalidate);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramStateRef invalidateIteratorPositions(ProgramStateRef State,
|
|
|
|
SymbolRef Offset1,
|
|
|
|
BinaryOperator::Opcode Opc1,
|
|
|
|
SymbolRef Offset2,
|
|
|
|
BinaryOperator::Opcode Opc2) {
|
|
|
|
auto Compare = [&](const IteratorPosition &Pos) {
|
|
|
|
return compare(State, Pos.getOffset(), Offset1, Opc1) &&
|
|
|
|
compare(State, Pos.getOffset(), Offset2, Opc2);
|
|
|
|
};
|
|
|
|
auto Invalidate = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.invalidate();
|
2018-09-10 17:06:31 +08:00
|
|
|
};
|
|
|
|
return processIteratorPositions(State, Compare, Invalidate);
|
|
|
|
}
|
|
|
|
|
2018-09-10 17:04:27 +08:00
|
|
|
ProgramStateRef reassignAllIteratorPositions(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont,
|
|
|
|
const MemRegion *NewCont) {
|
|
|
|
auto MatchCont = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.getContainer() == Cont;
|
|
|
|
};
|
|
|
|
auto ReAssign = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.reAssign(NewCont);
|
|
|
|
};
|
|
|
|
return processIteratorPositions(State, MatchCont, ReAssign);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramStateRef reassignAllIteratorPositionsUnless(ProgramStateRef State,
|
|
|
|
const MemRegion *Cont,
|
|
|
|
const MemRegion *NewCont,
|
|
|
|
SymbolRef Offset,
|
|
|
|
BinaryOperator::Opcode Opc) {
|
|
|
|
auto MatchContAndCompare = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.getContainer() == Cont &&
|
|
|
|
!compare(State, Pos.getOffset(), Offset, Opc);
|
|
|
|
};
|
|
|
|
auto ReAssign = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.reAssign(NewCont);
|
|
|
|
};
|
|
|
|
return processIteratorPositions(State, MatchContAndCompare, ReAssign);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function rebases symbolic expression `OldSym + Int` to `NewSym + Int`,
|
|
|
|
// `OldSym - Int` to `NewSym - Int` and `OldSym` to `NewSym` in any iterator
|
|
|
|
// position offsets where `CondSym` is true.
|
|
|
|
ProgramStateRef rebaseSymbolInIteratorPositionsIf(
|
|
|
|
ProgramStateRef State, SValBuilder &SVB, SymbolRef OldSym,
|
|
|
|
SymbolRef NewSym, SymbolRef CondSym, BinaryOperator::Opcode Opc) {
|
|
|
|
auto LessThanEnd = [&](const IteratorPosition &Pos) {
|
|
|
|
return compare(State, Pos.getOffset(), CondSym, Opc);
|
|
|
|
};
|
|
|
|
auto RebaseSymbol = [&](const IteratorPosition &Pos) {
|
|
|
|
return Pos.setTo(rebaseSymbol(State, SVB, Pos.getOffset(), OldSym,
|
|
|
|
NewSym));
|
|
|
|
};
|
|
|
|
return processIteratorPositions(State, LessThanEnd, RebaseSymbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function rebases symbolic expression `OldExpr + Int` to `NewExpr + Int`,
|
|
|
|
// `OldExpr - Int` to `NewExpr - Int` and `OldExpr` to `NewExpr` in expression
|
|
|
|
// `OrigExpr`.
|
|
|
|
SymbolRef rebaseSymbol(ProgramStateRef State, SValBuilder &SVB,
|
|
|
|
SymbolRef OrigExpr, SymbolRef OldExpr,
|
|
|
|
SymbolRef NewSym) {
|
|
|
|
auto &SymMgr = SVB.getSymbolManager();
|
|
|
|
auto Diff = SVB.evalBinOpNN(State, BO_Sub, nonloc::SymbolVal(OrigExpr),
|
|
|
|
nonloc::SymbolVal(OldExpr),
|
|
|
|
SymMgr.getType(OrigExpr));
|
|
|
|
|
|
|
|
const auto DiffInt = Diff.getAs<nonloc::ConcreteInt>();
|
|
|
|
if (!DiffInt)
|
|
|
|
return OrigExpr;
|
|
|
|
|
|
|
|
return SVB.evalBinOpNN(State, BO_Add, *DiffInt, nonloc::SymbolVal(NewSym),
|
|
|
|
SymMgr.getType(OrigExpr)).getAsSymbol();
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
bool isZero(ProgramStateRef State, const NonLoc &Val) {
|
|
|
|
auto &BVF = State->getBasicVals();
|
|
|
|
return compare(State, Val,
|
|
|
|
nonloc::ConcreteInt(BVF.getValue(llvm::APSInt::get(0))),
|
|
|
|
BO_EQ);
|
|
|
|
}
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
bool isPastTheEnd(ProgramStateRef State, const IteratorPosition &Pos) {
|
2017-05-29 23:03:20 +08:00
|
|
|
const auto *Cont = Pos.getContainer();
|
|
|
|
const auto *CData = getContainerData(State, Cont);
|
|
|
|
if (!CData)
|
|
|
|
return false;
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
const auto End = CData->getEnd();
|
|
|
|
if (End) {
|
|
|
|
if (isEqual(State, Pos.getOffset(), End)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isAheadOfRange(ProgramStateRef State, const IteratorPosition &Pos) {
|
|
|
|
const auto *Cont = Pos.getContainer();
|
|
|
|
const auto *CData = getContainerData(State, Cont);
|
|
|
|
if (!CData)
|
|
|
|
return false;
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
const auto Beg = CData->getBegin();
|
|
|
|
if (Beg) {
|
|
|
|
if (isLess(State, Pos.getOffset(), Beg)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isBehindPastTheEnd(ProgramStateRef State, const IteratorPosition &Pos) {
|
|
|
|
const auto *Cont = Pos.getContainer();
|
|
|
|
const auto *CData = getContainerData(State, Cont);
|
|
|
|
if (!CData)
|
|
|
|
return false;
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
const auto End = CData->getEnd();
|
|
|
|
if (End) {
|
2018-12-04 18:27:27 +08:00
|
|
|
if (isGreater(State, Pos.getOffset(), End)) {
|
2017-05-29 23:03:20 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-28 18:58:53 +08:00
|
|
|
bool isLess(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2) {
|
|
|
|
return compare(State, Sym1, Sym2, BO_LT);
|
|
|
|
}
|
|
|
|
|
2018-12-04 18:27:27 +08:00
|
|
|
bool isGreater(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2) {
|
|
|
|
return compare(State, Sym1, Sym2, BO_GT);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEqual(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2) {
|
|
|
|
return compare(State, Sym1, Sym2, BO_EQ);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool compare(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2,
|
|
|
|
BinaryOperator::Opcode Opc) {
|
2018-06-28 18:58:53 +08:00
|
|
|
return compare(State, nonloc::SymbolVal(Sym1), nonloc::SymbolVal(Sym2), Opc);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool compare(ProgramStateRef State, NonLoc NL1, NonLoc NL2,
|
|
|
|
BinaryOperator::Opcode Opc) {
|
|
|
|
auto &SVB = State->getStateManager().getSValBuilder();
|
2017-05-29 23:03:20 +08:00
|
|
|
|
|
|
|
const auto comparison =
|
2018-07-16 17:27:27 +08:00
|
|
|
SVB.evalBinOp(State, Opc, NL1, NL2, SVB.getConditionType());
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2018-07-16 17:27:27 +08:00
|
|
|
assert(comparison.getAs<DefinedSVal>() &&
|
|
|
|
"Symbol comparison must be a `DefinedSVal`");
|
2017-05-29 23:03:20 +08:00
|
|
|
|
2018-07-16 17:27:27 +08:00
|
|
|
return !State->assume(comparison.castAs<DefinedSVal>(), false);
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
[analyzer] Reimplement dependencies between checkers
Unfortunately, up until now, the fact that certain checkers depended on one
another was known, but how these actually unfolded was hidden deep within the
implementation. For example, many checkers (like RetainCount, Malloc or CString)
modelled a certain functionality, and exposed certain reportable bug types to
the user. For example, while MallocChecker models many many different types of
memory handling, the actual "unix.MallocChecker" checker the user was exposed to
was merely and option to this modeling part.
Other than this being an ugly mess, this issue made resolving the checker naming
issue almost impossible. (The checker naming issue being that if a checker
registered more than one checker within its registry function, both checker
object recieved the same name) Also, if the user explicitly disabled a checker
that was a dependency of another that _was_ explicitly enabled, it implicitly,
without "telling" the user, reenabled it.
Clearly, changing this to a well structured, declarative form, where the
handling of dependencies are done on a higher level is very much preferred.
This patch, among the detailed things later, makes checkers declare their
dependencies within the TableGen file Checkers.td, and exposes the same
functionality to plugins and statically linked non-generated checkers through
CheckerRegistry::addDependency. CheckerRegistry now resolves these dependencies,
makes sure that checkers are added to CheckerManager in the correct order,
and makes sure that if a dependency is disabled, so will be every checker that
depends on it.
In detail:
* Add a new field to the Checker class in CheckerBase.td called Dependencies,
which is a list of Checkers.
* Move unix checkers before cplusplus, as there is no forward declaration in
tblgen :/
* Add the following new checkers:
- StackAddrEscapeBase
- StackAddrEscapeBase
- CStringModeling
- DynamicMemoryModeling (base of the MallocChecker family)
- IteratorModeling (base of the IteratorChecker family)
- ValistBase
- SecuritySyntaxChecker (base of bcmp, bcopy, etc...)
- NSOrCFErrorDerefChecker (base of NSErrorChecker and CFErrorChecker)
- IvarInvalidationModeling (base of IvarInvalidation checker family)
- RetainCountBase (base of RetainCount and OSObjectRetainCount)
* Clear up and registry functions in MallocChecker, happily remove old FIXMEs.
* Add a new addDependency function to CheckerRegistry.
* Neatly format RUN lines in files I looked at while debugging.
Big thanks to Artem Degrachev for all the guidance through this project!
Differential Revision: https://reviews.llvm.org/D54438
llvm-svn: 352287
2019-01-27 04:06:54 +08:00
|
|
|
void ento::registerIteratorModeling(CheckerManager &mgr) {
|
|
|
|
mgr.registerChecker<IteratorChecker>();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ento::shouldRegisterIteratorModeling(const LangOptions &LO) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:03:20 +08:00
|
|
|
#define REGISTER_CHECKER(name) \
|
|
|
|
void ento::register##name(CheckerManager &Mgr) { \
|
2019-01-27 05:41:50 +08:00
|
|
|
auto *checker = Mgr.getChecker<IteratorChecker>(); \
|
2017-05-29 23:03:20 +08:00
|
|
|
checker->ChecksEnabled[IteratorChecker::CK_##name] = true; \
|
|
|
|
checker->CheckNames[IteratorChecker::CK_##name] = \
|
|
|
|
Mgr.getCurrentCheckName(); \
|
2019-01-26 22:23:08 +08:00
|
|
|
} \
|
|
|
|
\
|
|
|
|
bool ento::shouldRegister##name(const LangOptions &LO) { \
|
|
|
|
return true; \
|
2017-05-29 23:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_CHECKER(IteratorRangeChecker)
|
2018-09-10 17:03:22 +08:00
|
|
|
REGISTER_CHECKER(MismatchedIteratorChecker)
|
2018-08-28 16:41:15 +08:00
|
|
|
REGISTER_CHECKER(InvalidatedIteratorChecker)
|