return std::make_shared<PathDiagnosticEventPiece>(L, "Taint originated here");
}
-static bool areConstraintsUnfeasible(BugReporterContext &BRC,
- const ConstraintRangeTy &Cs) {
- // Create a refutation manager
- std::unique_ptr<ConstraintManager> RefutationMgr = CreateZ3ConstraintManager(
- BRC.getStateManager(), BRC.getStateManager().getOwningEngine());
-
- SMTConstraintManager *SMTRefutationMgr =
- static_cast<SMTConstraintManager *>(RefutationMgr.get());
-
- // Add constraints to the solver
- SMTRefutationMgr->addRangeConstraints(Cs);
-
- // And check for satisfiability
- return SMTRefutationMgr->isModelFeasible().isConstrainedFalse();
-}
-
-static void addNewConstraints(ConstraintRangeTy &Cs,
- const ConstraintRangeTy &NewCs,
- ConstraintRangeTy::Factory &CF) {
- // Add constraints if we don't have them yet
- for (auto const &C : NewCs) {
- const SymbolRef &Sym = C.first;
- if (!Cs.contains(Sym)) {
- Cs = CF.add(Cs, Sym, C.second);
- }
- }
-}
-
FalsePositiveRefutationBRVisitor::FalsePositiveRefutationBRVisitor()
: Constraints(ConstraintRangeTy::Factory().getEmptyMap()) {}
// Collect new constraints
VisitNode(EndPathNode, nullptr, BRC, BR);
- // Create a new refutation manager and check feasibility
- if (areConstraintsUnfeasible(BRC, Constraints))
+ // Create a refutation manager
+ std::unique_ptr<SMTSolver> RefutationSolver = CreateZ3Solver();
+ ASTContext &Ctx = BRC.getASTContext();
+
+ // Add constraints to the solver
+ for (const auto &I : Constraints) {
+ SymbolRef Sym = I.first;
+
+ SMTExprRef Constraints = RefutationSolver->fromBoolean(false);
+ for (const auto &Range : I.second) {
+ Constraints = RefutationSolver->mkOr(
+ Constraints,
+ RefutationSolver->getRangeExpr(Ctx, Sym, Range.From(), Range.To(),
+ /*InRange=*/true));
+ }
+ RefutationSolver->addConstraint(Constraints);
+ }
+
+ // And check for satisfiability
+ if (RefutationSolver->check().isConstrainedFalse())
BR.markInvalid("Infeasible constraints", EndPathNode->getLocationContext());
}
BugReporterContext &BRC,
BugReport &BR) {
// Collect new constraints
- addNewConstraints(Constraints, N->getState()->get<ConstraintRange>(),
- N->getState()->get_context<ConstraintRange>());
+ const ConstraintRangeTy &NewCs = N->getState()->get<ConstraintRange>();
+ ConstraintRangeTy::Factory &CF =
+ N->getState()->get_context<ConstraintRange>();
+
+ // Add constraints if we don't have them yet
+ for (auto const &C : NewCs) {
+ const SymbolRef &Sym = C.first;
+ if (!Constraints.contains(Sym)) {
+ Constraints = CF.add(Constraints, Sym, C.second);
+ }
+ }
return nullptr;
}
using namespace clang;
using namespace ento;
-void SMTConstraintManager::addRangeConstraints(ConstraintRangeTy CR) {
- ASTContext &Ctx = getBasicVals().getContext();
- Solver->reset();
-
- for (const auto &I : CR) {
- SymbolRef Sym = I.first;
-
- SMTExprRef Constraints = Solver->fromBoolean(false);
- for (const auto &Range : I.second) {
- SMTExprRef SymRange = Solver->getRangeExpr(Ctx, Sym, Range.From(),
- Range.To(), /*InRange=*/true);
-
- // FIXME: the last argument (isSigned) is not used when generating the
- // or expression, as both arguments are booleans
- Constraints =
- Solver->fromBinOp(Constraints, BO_LOr, SymRange, /*IsSigned=*/true);
- }
- Solver->addConstraint(Constraints);
- }
-}
-
-clang::ento::ConditionTruthVal SMTConstraintManager::isModelFeasible() {
- return Solver->check();
-}
-
ProgramStateRef SMTConstraintManager::assumeSym(ProgramStateRef State,
SymbolRef Sym,
bool Assumption) {
}; // end class Z3Solver
class Z3ConstraintManager : public SMTConstraintManager {
- SMTSolverRef Solver = std::make_shared<Z3Solver>();
+ SMTSolverRef Solver = CreateZ3Solver();
public:
Z3ConstraintManager(SubEngine *SE, SValBuilder &SB)
#endif
+std::unique_ptr<SMTSolver> clang::ento::CreateZ3Solver() {
+#if CLANG_ANALYZER_WITH_Z3
+ return llvm::make_unique<Z3Solver>();
+#else
+ llvm::report_fatal_error("Clang was not compiled with Z3 support, rebuild "
+ "with -DCLANG_ANALYZER_BUILD_Z3=ON",
+ false);
+ return nullptr;
+#endif
+}
+
std::unique_ptr<ConstraintManager>
ento::CreateZ3ConstraintManager(ProgramStateManager &StMgr, SubEngine *Eng) {
#if CLANG_ANALYZER_WITH_Z3