blob: f36ec2c687f5b3f3d1d3b8573583c1993a0915f1 [file] [log] [blame]
Jordy Rose93a9d822012-05-16 16:01:07 +00001//==- ExprInspectionChecker.cpp - Used for regression tests ------*- C++ -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "ClangSACheckers.h"
Jordy Rose93a9d822012-05-16 16:01:07 +000011#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000012#include "clang/StaticAnalyzer/Core/Checker.h"
Jordy Rose93a9d822012-05-16 16:01:07 +000013#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
Benjamin Kramer9852f582012-12-01 16:35:25 +000014#include "llvm/ADT/StringSwitch.h"
Jordy Rose93a9d822012-05-16 16:01:07 +000015
16using namespace clang;
17using namespace ento;
18
19namespace {
20class ExprInspectionChecker : public Checker< eval::Call > {
Stephen Hines651f13c2014-04-23 16:59:28 -070021 mutable std::unique_ptr<BugType> BT;
Jordan Rosee5399f12012-08-10 22:26:29 +000022
23 void analyzerEval(const CallExpr *CE, CheckerContext &C) const;
24 void analyzerCheckInlined(const CallExpr *CE, CheckerContext &C) const;
Jordan Rosed000b852013-10-03 16:57:03 +000025 void analyzerWarnIfReached(const CallExpr *CE, CheckerContext &C) const;
Jordan Roseac7cc2d2013-07-19 00:59:08 +000026 void analyzerCrash(const CallExpr *CE, CheckerContext &C) const;
Jordan Rosee5399f12012-08-10 22:26:29 +000027
28 typedef void (ExprInspectionChecker::*FnCheck)(const CallExpr *,
29 CheckerContext &C) const;
30
Jordy Rose93a9d822012-05-16 16:01:07 +000031public:
32 bool evalCall(const CallExpr *CE, CheckerContext &C) const;
33};
34}
35
36bool ExprInspectionChecker::evalCall(const CallExpr *CE,
Jordan Rosee5399f12012-08-10 22:26:29 +000037 CheckerContext &C) const {
Jordy Rose93a9d822012-05-16 16:01:07 +000038 // These checks should have no effect on the surrounding environment
Jordan Rosee5399f12012-08-10 22:26:29 +000039 // (globals should not be invalidated, etc), hence the use of evalCall.
40 FnCheck Handler = llvm::StringSwitch<FnCheck>(C.getCalleeName(CE))
41 .Case("clang_analyzer_eval", &ExprInspectionChecker::analyzerEval)
42 .Case("clang_analyzer_checkInlined",
43 &ExprInspectionChecker::analyzerCheckInlined)
Jordan Roseac7cc2d2013-07-19 00:59:08 +000044 .Case("clang_analyzer_crash", &ExprInspectionChecker::analyzerCrash)
Jordan Rosed000b852013-10-03 16:57:03 +000045 .Case("clang_analyzer_warnIfReached", &ExprInspectionChecker::analyzerWarnIfReached)
Stephen Hines6bcf27b2014-05-29 04:14:42 -070046 .Default(nullptr);
Jordan Rosee5399f12012-08-10 22:26:29 +000047
48 if (!Handler)
49 return false;
50
51 (this->*Handler)(CE, C);
52 return true;
53}
54
55static const char *getArgumentValueString(const CallExpr *CE,
56 CheckerContext &C) {
57 if (CE->getNumArgs() == 0)
58 return "Missing assertion argument";
59
60 ExplodedNode *N = C.getPredecessor();
61 const LocationContext *LC = N->getLocationContext();
62 ProgramStateRef State = N->getState();
63
64 const Expr *Assertion = CE->getArg(0);
65 SVal AssertionVal = State->getSVal(Assertion, LC);
66
67 if (AssertionVal.isUndef())
68 return "UNDEFINED";
69
70 ProgramStateRef StTrue, StFalse;
Stephen Hines651f13c2014-04-23 16:59:28 -070071 std::tie(StTrue, StFalse) =
David Blaikie5251abe2013-02-20 05:52:05 +000072 State->assume(AssertionVal.castAs<DefinedOrUnknownSVal>());
Jordan Rosee5399f12012-08-10 22:26:29 +000073
74 if (StTrue) {
75 if (StFalse)
76 return "UNKNOWN";
77 else
78 return "TRUE";
79 } else {
80 if (StFalse)
81 return "FALSE";
82 else
83 llvm_unreachable("Invalid constraint; neither true or false.");
84 }
85}
86
87void ExprInspectionChecker::analyzerEval(const CallExpr *CE,
88 CheckerContext &C) const {
Jordy Rose93a9d822012-05-16 16:01:07 +000089 ExplodedNode *N = C.getPredecessor();
90 const LocationContext *LC = N->getLocationContext();
91
Jordy Rose93a9d822012-05-16 16:01:07 +000092 // A specific instantiation of an inlined function may have more constrained
93 // values than can generally be assumed. Skip the check.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070094 if (LC->getCurrentStackFrame()->getParent() != nullptr)
Jordan Rosee5399f12012-08-10 22:26:29 +000095 return;
Jordy Rose93a9d822012-05-16 16:01:07 +000096
97 if (!BT)
Stephen Hines651f13c2014-04-23 16:59:28 -070098 BT.reset(new BugType(this, "Checking analyzer assumptions", "debug"));
Jordy Rose93a9d822012-05-16 16:01:07 +000099
Jordan Rosee5399f12012-08-10 22:26:29 +0000100 BugReport *R = new BugReport(*BT, getArgumentValueString(CE, C), N);
Jordan Rose785950e2012-11-02 01:53:40 +0000101 C.emitReport(R);
Jordan Rosee5399f12012-08-10 22:26:29 +0000102}
Jordy Rose93a9d822012-05-16 16:01:07 +0000103
Jordan Rosed000b852013-10-03 16:57:03 +0000104void ExprInspectionChecker::analyzerWarnIfReached(const CallExpr *CE,
105 CheckerContext &C) const {
106 ExplodedNode *N = C.getPredecessor();
107
108 if (!BT)
Stephen Hines651f13c2014-04-23 16:59:28 -0700109 BT.reset(new BugType(this, "Checking analyzer assumptions", "debug"));
Jordan Rosed000b852013-10-03 16:57:03 +0000110
111 BugReport *R = new BugReport(*BT, "REACHABLE", N);
112 C.emitReport(R);
113}
114
Jordan Rosee5399f12012-08-10 22:26:29 +0000115void ExprInspectionChecker::analyzerCheckInlined(const CallExpr *CE,
116 CheckerContext &C) const {
117 ExplodedNode *N = C.getPredecessor();
118 const LocationContext *LC = N->getLocationContext();
119
120 // An inlined function could conceivably also be analyzed as a top-level
121 // function. We ignore this case and only emit a message (TRUE or FALSE)
122 // when we are analyzing it as an inlined function. This means that
123 // clang_analyzer_checkInlined(true) should always print TRUE, but
124 // clang_analyzer_checkInlined(false) should never actually print anything.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700125 if (LC->getCurrentStackFrame()->getParent() == nullptr)
Jordan Rosee5399f12012-08-10 22:26:29 +0000126 return;
127
128 if (!BT)
Stephen Hines651f13c2014-04-23 16:59:28 -0700129 BT.reset(new BugType(this, "Checking analyzer assumptions", "debug"));
Jordan Rosee5399f12012-08-10 22:26:29 +0000130
131 BugReport *R = new BugReport(*BT, getArgumentValueString(CE, C), N);
Jordan Rose785950e2012-11-02 01:53:40 +0000132 C.emitReport(R);
Jordy Rose93a9d822012-05-16 16:01:07 +0000133}
134
Jordan Roseac7cc2d2013-07-19 00:59:08 +0000135void ExprInspectionChecker::analyzerCrash(const CallExpr *CE,
136 CheckerContext &C) const {
137 LLVM_BUILTIN_TRAP;
138}
139
Jordy Rose93a9d822012-05-16 16:01:07 +0000140void ento::registerExprInspectionChecker(CheckerManager &Mgr) {
141 Mgr.registerChecker<ExprInspectionChecker>();
142}
143