blob: 65324868518e0ed0feaf1904ea1c18eaf5017b33 [file] [log] [blame]
Ted Kremenek53500662009-07-22 17:55:28 +00001// BugReporterVisitors.cpp - Helpers for reporting bugs -----------*- 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// This file defines a set of BugReporter "visitors" which can be used to
11// enhance the diagnostics reported for a bug.
12//
13//===----------------------------------------------------------------------===//
Anna Zaks50bbc162011-08-19 22:33:38 +000014#include "clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h"
Ted Kremenek53500662009-07-22 17:55:28 +000015
16#include "clang/AST/Expr.h"
17#include "clang/AST/ExprObjC.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000018#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
19#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
20#include "clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h"
Ted Kremenek18c66fd2011-08-15 22:09:50 +000021#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
Ted Kremenek681bc112011-08-16 01:53:41 +000022#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000023#include "llvm/ADT/SmallString.h"
Ted Kremenek53500662009-07-22 17:55:28 +000024
25using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000026using namespace ento;
Ted Kremenek53500662009-07-22 17:55:28 +000027
28//===----------------------------------------------------------------------===//
29// Utility functions.
30//===----------------------------------------------------------------------===//
31
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000032const Stmt *bugreporter::GetDerefExpr(const ExplodedNode *N) {
Ted Kremenek53500662009-07-22 17:55:28 +000033 // Pattern match for a few useful cases (do something smarter later):
34 // a[0], p->f, *p
35 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
Mike Stump1eb44332009-09-09 15:08:12 +000036
Ted Kremenek53500662009-07-22 17:55:28 +000037 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(S)) {
John McCall2de56d12010-08-25 11:45:40 +000038 if (U->getOpcode() == UO_Deref)
Ted Kremenek53500662009-07-22 17:55:28 +000039 return U->getSubExpr()->IgnoreParenCasts();
40 }
41 else if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
42 return ME->getBase()->IgnoreParenCasts();
43 }
44 else if (const ArraySubscriptExpr *AE = dyn_cast<ArraySubscriptExpr>(S)) {
Ted Kremenek53500662009-07-22 17:55:28 +000045 return AE->getBase();
46 }
Mike Stump1eb44332009-09-09 15:08:12 +000047
48 return NULL;
Ted Kremenek53500662009-07-22 17:55:28 +000049}
50
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000051const Stmt *bugreporter::GetDenomExpr(const ExplodedNode *N) {
Zhongxing Xu6403b572009-09-02 13:26:26 +000052 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
Ted Kremenek53500662009-07-22 17:55:28 +000053 if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(S))
54 return BE->getRHS();
55 return NULL;
56}
57
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000058const Stmt *bugreporter::GetCalleeExpr(const ExplodedNode *N) {
Zhongxing Xud99f3612009-09-02 08:10:35 +000059 // Callee is checked as a PreVisit to the CallExpr.
60 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
Ted Kremenek53500662009-07-22 17:55:28 +000061 if (const CallExpr *CE = dyn_cast<CallExpr>(S))
62 return CE->getCallee();
63 return NULL;
64}
65
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000066const Stmt *bugreporter::GetRetValExpr(const ExplodedNode *N) {
Ted Kremenek53500662009-07-22 17:55:28 +000067 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
68 if (const ReturnStmt *RS = dyn_cast<ReturnStmt>(S))
69 return RS->getRetValue();
70 return NULL;
71}
72
73//===----------------------------------------------------------------------===//
74// Definitions for bug reporter visitors.
75//===----------------------------------------------------------------------===//
Anna Zaks23f395e2011-08-20 01:27:22 +000076
77PathDiagnosticPiece*
78BugReporterVisitor::getEndPath(BugReporterContext &BRC,
79 const ExplodedNode *EndPathNode,
80 BugReport &BR) {
81 return 0;
82}
83
84PathDiagnosticPiece*
85BugReporterVisitor::getDefaultEndPath(BugReporterContext &BRC,
86 const ExplodedNode *EndPathNode,
87 BugReport &BR) {
Anna Zaks5a0917d2012-02-16 03:41:01 +000088 PathDiagnosticLocation L =
89 PathDiagnosticLocation::createEndOfPath(EndPathNode,BRC.getSourceManager());
Anna Zaks23f395e2011-08-20 01:27:22 +000090
91 BugReport::ranges_iterator Beg, End;
92 llvm::tie(Beg, End) = BR.getRanges();
93
94 // Only add the statement itself as a range if we didn't specify any
95 // special ranges for this report.
96 PathDiagnosticPiece *P = new PathDiagnosticEventPiece(L,
97 BR.getDescription(),
98 Beg == End);
99 for (; Beg != End; ++Beg)
100 P->addRange(*Beg);
101
102 return P;
103}
104
105
Anna Zaks50bbc162011-08-19 22:33:38 +0000106void FindLastStoreBRVisitor ::Profile(llvm::FoldingSetNodeID &ID) const {
107 static int tag = 0;
108 ID.AddPointer(&tag);
109 ID.AddPointer(R);
110 ID.Add(V);
111}
Ted Kremenek53500662009-07-22 17:55:28 +0000112
Anna Zaks50bbc162011-08-19 22:33:38 +0000113PathDiagnosticPiece *FindLastStoreBRVisitor::VisitNode(const ExplodedNode *N,
114 const ExplodedNode *PrevN,
115 BugReporterContext &BRC,
116 BugReport &BR) {
Mike Stump1eb44332009-09-09 15:08:12 +0000117
Anna Zaks50bbc162011-08-19 22:33:38 +0000118 if (satisfied)
119 return NULL;
120
121 if (!StoreSite) {
122 const ExplodedNode *Node = N, *Last = NULL;
123
Ted Kremenekd2e70902012-01-25 22:18:04 +0000124 for ( ; Node ; Node = Node->getFirstPred()) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000125
126 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
127 if (const PostStmt *P = Node->getLocationAs<PostStmt>())
128 if (const DeclStmt *DS = P->getStmtAs<DeclStmt>())
129 if (DS->getSingleDecl() == VR->getDecl()) {
Ted Kremenekd2e70902012-01-25 22:18:04 +0000130 // Record the last seen initialization point.
Anna Zaks50bbc162011-08-19 22:33:38 +0000131 Last = Node;
132 break;
133 }
134 }
135
Ted Kremenekd2e70902012-01-25 22:18:04 +0000136 // Does the region still bind to value V? If not, we are done
137 // looking for store sites.
Anna Zaks50bbc162011-08-19 22:33:38 +0000138 if (Node->getState()->getSVal(R) != V)
139 break;
140 }
141
142 if (!Node || !Last) {
143 satisfied = true;
144 return NULL;
145 }
146
147 StoreSite = Last;
Ted Kremenek1b431022010-03-20 18:01:57 +0000148 }
149
Anna Zaks50bbc162011-08-19 22:33:38 +0000150 if (StoreSite != N)
151 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000152
Anna Zaks50bbc162011-08-19 22:33:38 +0000153 satisfied = true;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000154 SmallString<256> sbuf;
Anna Zaks50bbc162011-08-19 22:33:38 +0000155 llvm::raw_svector_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000156
Anna Zaks50bbc162011-08-19 22:33:38 +0000157 if (const PostStmt *PS = N->getLocationAs<PostStmt>()) {
158 if (const DeclStmt *DS = PS->getStmtAs<DeclStmt>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000159
Anna Zaks50bbc162011-08-19 22:33:38 +0000160 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000161 os << "Variable '" << *VR->getDecl() << "' ";
Ted Kremenek53500662009-07-22 17:55:28 +0000162 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000163 else
Ted Kremenek53500662009-07-22 17:55:28 +0000164 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000165
Ted Kremenek53500662009-07-22 17:55:28 +0000166 if (isa<loc::ConcreteInt>(V)) {
167 bool b = false;
Ted Kremenek53500662009-07-22 17:55:28 +0000168 if (R->isBoundable()) {
Ted Kremenek96979342011-08-12 20:02:48 +0000169 if (const TypedValueRegion *TR = dyn_cast<TypedValueRegion>(R)) {
Zhongxing Xu018220c2010-08-11 06:10:55 +0000170 if (TR->getValueType()->isObjCObjectPointerType()) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000171 os << "initialized to nil";
Ted Kremenek53500662009-07-22 17:55:28 +0000172 b = true;
173 }
174 }
175 }
Mike Stump1eb44332009-09-09 15:08:12 +0000176
Ted Kremenek53500662009-07-22 17:55:28 +0000177 if (!b)
Anna Zaks50bbc162011-08-19 22:33:38 +0000178 os << "initialized to a null pointer value";
Ted Kremenek53500662009-07-22 17:55:28 +0000179 }
Ted Kremenek592362b2009-08-18 01:05:30 +0000180 else if (isa<nonloc::ConcreteInt>(V)) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000181 os << "initialized to " << cast<nonloc::ConcreteInt>(V).getValue();
Ted Kremenek592362b2009-08-18 01:05:30 +0000182 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000183 else if (V.isUndef()) {
184 if (isa<VarRegion>(R)) {
185 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
186 if (VD->getInit())
187 os << "initialized to a garbage value";
188 else
189 os << "declared without an initial value";
190 }
Ted Kremenek53500662009-07-22 17:55:28 +0000191 }
Ted Kremenek53500662009-07-22 17:55:28 +0000192 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000193 }
194
195 if (os.str().empty()) {
196 if (isa<loc::ConcreteInt>(V)) {
197 bool b = false;
198 if (R->isBoundable()) {
199 if (const TypedValueRegion *TR = dyn_cast<TypedValueRegion>(R)) {
200 if (TR->getValueType()->isObjCObjectPointerType()) {
201 os << "nil object reference stored to ";
202 b = true;
203 }
204 }
205 }
206
207 if (!b)
208 os << "Null pointer value stored to ";
209 }
210 else if (V.isUndef()) {
211 os << "Uninitialized value stored to ";
212 }
213 else if (isa<nonloc::ConcreteInt>(V)) {
214 os << "The value " << cast<nonloc::ConcreteInt>(V).getValue()
215 << " is assigned to ";
216 }
217 else
218 return NULL;
219
220 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000221 os << '\'' << *VR->getDecl() << '\'';
Anna Zaks50bbc162011-08-19 22:33:38 +0000222 }
223 else
224 return NULL;
225 }
226
Anna Zaks50bbc162011-08-19 22:33:38 +0000227 // Construct a new PathDiagnosticPiece.
Anna Zaks4fdf97b2011-09-15 18:56:07 +0000228 ProgramPoint P = N->getLocation();
Anna Zaks1531bb02011-09-20 01:38:47 +0000229 PathDiagnosticLocation L =
230 PathDiagnosticLocation::create(P, BRC.getSourceManager());
Anna Zaks4fdf97b2011-09-15 18:56:07 +0000231 if (!L.isValid())
232 return NULL;
Anna Zaks50bbc162011-08-19 22:33:38 +0000233 return new PathDiagnosticEventPiece(L, os.str());
234}
235
236void TrackConstraintBRVisitor::Profile(llvm::FoldingSetNodeID &ID) const {
237 static int tag = 0;
238 ID.AddPointer(&tag);
239 ID.AddBoolean(Assumption);
240 ID.Add(Constraint);
241}
242
243PathDiagnosticPiece *
244TrackConstraintBRVisitor::VisitNode(const ExplodedNode *N,
245 const ExplodedNode *PrevN,
246 BugReporterContext &BRC,
247 BugReport &BR) {
248 if (isSatisfied)
249 return NULL;
250
251 // Check if in the previous state it was feasible for this constraint
252 // to *not* be true.
253 if (PrevN->getState()->assume(Constraint, !Assumption)) {
254
255 isSatisfied = true;
256
257 // As a sanity check, make sure that the negation of the constraint
258 // was infeasible in the current state. If it is feasible, we somehow
259 // missed the transition point.
260 if (N->getState()->assume(Constraint, !Assumption))
261 return NULL;
262
263 // We found the transition point for the constraint. We now need to
264 // pretty-print the constraint. (work-in-progress)
265 std::string sbuf;
266 llvm::raw_string_ostream os(sbuf);
267
268 if (isa<Loc>(Constraint)) {
269 os << "Assuming pointer value is ";
270 os << (Assumption ? "non-null" : "null");
271 }
272
273 if (os.str().empty())
274 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Ted Kremenek53500662009-07-22 17:55:28 +0000276 // Construct a new PathDiagnosticPiece.
Anna Zaks4fdf97b2011-09-15 18:56:07 +0000277 ProgramPoint P = N->getLocation();
Anna Zaks1531bb02011-09-20 01:38:47 +0000278 PathDiagnosticLocation L =
279 PathDiagnosticLocation::create(P, BRC.getSourceManager());
Anna Zaks4fdf97b2011-09-15 18:56:07 +0000280 if (!L.isValid())
281 return NULL;
Ted Kremenek53500662009-07-22 17:55:28 +0000282 return new PathDiagnosticEventPiece(L, os.str());
283 }
Ted Kremenek53500662009-07-22 17:55:28 +0000284
Anna Zaks50bbc162011-08-19 22:33:38 +0000285 return NULL;
Ted Kremenek53500662009-07-22 17:55:28 +0000286}
287
Anna Zaks50bbc162011-08-19 22:33:38 +0000288BugReporterVisitor *
289bugreporter::getTrackNullOrUndefValueVisitor(const ExplodedNode *N,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000290 const Stmt *S,
291 BugReport *report) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000292 if (!S || !N)
293 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000294
Anna Zaks8e6431a2011-08-18 22:37:56 +0000295 ProgramStateManager &StateMgr = N->getState()->getStateManager();
296
Ted Kremenek88299892011-07-28 23:07:59 +0000297 // Walk through nodes until we get one that matches the statement
298 // exactly.
299 while (N) {
300 const ProgramPoint &pp = N->getLocation();
301 if (const PostStmt *ps = dyn_cast<PostStmt>(&pp)) {
302 if (ps->getStmt() == S)
303 break;
304 }
Anna Zaksb459cf32011-10-01 06:35:19 +0000305 N = N->getFirstPred();
Ted Kremenek88299892011-07-28 23:07:59 +0000306 }
307
308 if (!N)
Anna Zaks50bbc162011-08-19 22:33:38 +0000309 return 0;
Ted Kremenek88299892011-07-28 23:07:59 +0000310
Ted Kremenek8bef8232012-01-26 21:29:00 +0000311 ProgramStateRef state = N->getState();
Mike Stump1eb44332009-09-09 15:08:12 +0000312
Ted Kremenek76aadc32012-03-09 01:13:14 +0000313 // Walk through lvalue-to-rvalue conversions.
314 const Expr *Ex = dyn_cast<Expr>(S);
315 if (Ex) {
316 Ex = Ex->IgnoreParenLValueCasts();
317 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
318 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
319 const VarRegion *R =
320 StateMgr.getRegionManager().getVarRegion(VD, N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Ted Kremenek76aadc32012-03-09 01:13:14 +0000322 // What did we load?
323 SVal V = state->getSVal(loc::MemRegionVal(R));
324 report->markInteresting(R);
325 report->markInteresting(V);
Anna Zaks50bbc162011-08-19 22:33:38 +0000326 return new FindLastStoreBRVisitor(V, R);
Ted Kremenek53500662009-07-22 17:55:28 +0000327 }
328 }
329 }
Mike Stump1eb44332009-09-09 15:08:12 +0000330
Ted Kremenek5eca4822012-01-06 22:09:28 +0000331 SVal V = state->getSValAsScalarOrLoc(S, N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000332
Ted Kremenek53500662009-07-22 17:55:28 +0000333 // Uncomment this to find cases where we aren't properly getting the
334 // base value that was dereferenced.
335 // assert(!V.isUnknownOrUndef());
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Ted Kremenek53500662009-07-22 17:55:28 +0000337 // Is it a symbolic value?
338 if (loc::MemRegionVal *L = dyn_cast<loc::MemRegionVal>(&V)) {
339 const SubRegion *R = cast<SubRegion>(L->getRegion());
340 while (R && !isa<SymbolicRegion>(R)) {
341 R = dyn_cast<SubRegion>(R->getSuperRegion());
342 }
Mike Stump1eb44332009-09-09 15:08:12 +0000343
Ted Kremenek53500662009-07-22 17:55:28 +0000344 if (R) {
Ted Kremenek76aadc32012-03-09 01:13:14 +0000345 report->markInteresting(R);
Anna Zaks50bbc162011-08-19 22:33:38 +0000346 return new TrackConstraintBRVisitor(loc::MemRegionVal(R), false);
Ted Kremenek53500662009-07-22 17:55:28 +0000347 }
348 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000349
350 return 0;
Ted Kremenek53500662009-07-22 17:55:28 +0000351}
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000352
Anna Zaks50bbc162011-08-19 22:33:38 +0000353BugReporterVisitor *
354FindLastStoreBRVisitor::createVisitorObject(const ExplodedNode *N,
355 const MemRegion *R) {
356 assert(R && "The memory region is null.");
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000357
Ted Kremenek8bef8232012-01-26 21:29:00 +0000358 ProgramStateRef state = N->getState();
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000359 SVal V = state->getSVal(R);
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000360 if (V.isUnknown())
Anna Zaks50bbc162011-08-19 22:33:38 +0000361 return 0;
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000362
Anna Zaks50bbc162011-08-19 22:33:38 +0000363 return new FindLastStoreBRVisitor(V, R);
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000364}
Ted Kremenekff7f7362010-03-20 18:02:01 +0000365
366
Anna Zaks50bbc162011-08-19 22:33:38 +0000367PathDiagnosticPiece *NilReceiverBRVisitor::VisitNode(const ExplodedNode *N,
368 const ExplodedNode *PrevN,
369 BugReporterContext &BRC,
370 BugReport &BR) {
371 const PostStmt *P = N->getLocationAs<PostStmt>();
372 if (!P)
373 return 0;
374 const ObjCMessageExpr *ME = P->getStmtAs<ObjCMessageExpr>();
375 if (!ME)
376 return 0;
377 const Expr *Receiver = ME->getInstanceReceiver();
378 if (!Receiver)
379 return 0;
Ted Kremenek8bef8232012-01-26 21:29:00 +0000380 ProgramStateRef state = N->getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +0000381 const SVal &V = state->getSVal(Receiver, N->getLocationContext());
Anna Zaks50bbc162011-08-19 22:33:38 +0000382 const DefinedOrUnknownSVal *DV = dyn_cast<DefinedOrUnknownSVal>(&V);
383 if (!DV)
384 return 0;
385 state = state->assume(*DV, true);
386 if (state)
387 return 0;
Ted Kremenekff7f7362010-03-20 18:02:01 +0000388
Anna Zaks50bbc162011-08-19 22:33:38 +0000389 // The receiver was nil, and hence the method was skipped.
390 // Register a BugReporterVisitor to issue a message telling us how
391 // the receiver was null.
Ted Kremenek76aadc32012-03-09 01:13:14 +0000392 BR.addVisitor(bugreporter::getTrackNullOrUndefValueVisitor(N, Receiver, &BR));
Anna Zaks50bbc162011-08-19 22:33:38 +0000393 // Issue a message saying that the method was skipped.
Anna Zaks220ac8c2011-09-15 01:08:34 +0000394 PathDiagnosticLocation L(Receiver, BRC.getSourceManager(),
395 N->getLocationContext());
Anna Zaks907344e2012-04-05 02:10:19 +0000396 return new PathDiagnosticEventPiece(L, "No method is called "
Anna Zaks50bbc162011-08-19 22:33:38 +0000397 "because the receiver is nil");
Ted Kremenekff7f7362010-03-20 18:02:01 +0000398}
Tom Care2bbbe502010-09-02 23:30:22 +0000399
Anna Zaks8e6431a2011-08-18 22:37:56 +0000400// Registers every VarDecl inside a Stmt with a last store visitor.
Anna Zaks50bbc162011-08-19 22:33:38 +0000401void FindLastStoreBRVisitor::registerStatementVarDecls(BugReport &BR,
402 const Stmt *S) {
Anna Zaks8e6431a2011-08-18 22:37:56 +0000403 const ExplodedNode *N = BR.getErrorNode();
Tom Care2bbbe502010-09-02 23:30:22 +0000404 std::deque<const Stmt *> WorkList;
Tom Care2bbbe502010-09-02 23:30:22 +0000405 WorkList.push_back(S);
406
407 while (!WorkList.empty()) {
408 const Stmt *Head = WorkList.front();
409 WorkList.pop_front();
410
Ted Kremenek8bef8232012-01-26 21:29:00 +0000411 ProgramStateRef state = N->getState();
Anna Zaks8e6431a2011-08-18 22:37:56 +0000412 ProgramStateManager &StateMgr = state->getStateManager();
Tom Care2bbbe502010-09-02 23:30:22 +0000413
414 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Head)) {
415 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
416 const VarRegion *R =
417 StateMgr.getRegionManager().getVarRegion(VD, N->getLocationContext());
418
419 // What did we load?
Ted Kremenek5eca4822012-01-06 22:09:28 +0000420 SVal V = state->getSVal(S, N->getLocationContext());
Tom Care2bbbe502010-09-02 23:30:22 +0000421
422 if (isa<loc::ConcreteInt>(V) || isa<nonloc::ConcreteInt>(V)) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000423 // Register a new visitor with the BugReport.
424 BR.addVisitor(new FindLastStoreBRVisitor(V, R));
Tom Care2bbbe502010-09-02 23:30:22 +0000425 }
426 }
427 }
428
429 for (Stmt::const_child_iterator I = Head->child_begin();
430 I != Head->child_end(); ++I)
431 WorkList.push_back(*I);
432 }
433}
Ted Kremenek993124e2011-08-06 06:54:45 +0000434
435//===----------------------------------------------------------------------===//
436// Visitor that tries to report interesting diagnostics from conditions.
437//===----------------------------------------------------------------------===//
Anna Zaks50bbc162011-08-19 22:33:38 +0000438PathDiagnosticPiece *ConditionBRVisitor::VisitNode(const ExplodedNode *N,
439 const ExplodedNode *Prev,
440 BugReporterContext &BRC,
441 BugReport &BR) {
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000442 PathDiagnosticPiece *piece = VisitNodeImpl(N, Prev, BRC, BR);
443 if (PathDiagnosticEventPiece *ev =
444 dyn_cast_or_null<PathDiagnosticEventPiece>(piece))
Ted Kremenek76aadc32012-03-09 01:13:14 +0000445 ev->setPrunable(true, /* override */ false);
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000446 return piece;
447}
448
449PathDiagnosticPiece *ConditionBRVisitor::VisitNodeImpl(const ExplodedNode *N,
450 const ExplodedNode *Prev,
451 BugReporterContext &BRC,
452 BugReport &BR) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000453
454 const ProgramPoint &progPoint = N->getLocation();
Ted Kremenek681bc112011-08-16 01:53:41 +0000455
Ted Kremenek8bef8232012-01-26 21:29:00 +0000456 ProgramStateRef CurrentState = N->getState();
457 ProgramStateRef PrevState = Prev->getState();
Ted Kremenek681bc112011-08-16 01:53:41 +0000458
459 // Compare the GDMs of the state, because that is where constraints
460 // are managed. Note that ensure that we only look at nodes that
461 // were generated by the analyzer engine proper, not checkers.
462 if (CurrentState->getGDM().getRoot() ==
463 PrevState->getGDM().getRoot())
464 return 0;
Ted Kremenek993124e2011-08-06 06:54:45 +0000465
466 // If an assumption was made on a branch, it should be caught
467 // here by looking at the state transition.
468 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&progPoint)) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000469 const CFGBlock *srcBlk = BE->getSrc();
470 if (const Stmt *term = srcBlk->getTerminator())
Ted Kremenek76aadc32012-03-09 01:13:14 +0000471 return VisitTerminator(term, N, srcBlk, BE->getDst(), BR, BRC);
Ted Kremenek681bc112011-08-16 01:53:41 +0000472 return 0;
473 }
474
475 if (const PostStmt *PS = dyn_cast<PostStmt>(&progPoint)) {
476 // FIXME: Assuming that BugReporter is a GRBugReporter is a layering
477 // violation.
478 const std::pair<const ProgramPointTag *, const ProgramPointTag *> &tags =
479 cast<GRBugReporter>(BRC.getBugReporter()).
480 getEngine().getEagerlyAssumeTags();
481
482 const ProgramPointTag *tag = PS->getTag();
483 if (tag == tags.first)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000484 return VisitTrueTest(cast<Expr>(PS->getStmt()), true,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000485 BRC, BR, N);
Ted Kremenek681bc112011-08-16 01:53:41 +0000486 if (tag == tags.second)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000487 return VisitTrueTest(cast<Expr>(PS->getStmt()), false,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000488 BRC, BR, N);
Ted Kremenek681bc112011-08-16 01:53:41 +0000489
Ted Kremenek993124e2011-08-06 06:54:45 +0000490 return 0;
491 }
492
493 return 0;
494}
495
496PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000497ConditionBRVisitor::VisitTerminator(const Stmt *Term,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000498 const ExplodedNode *N,
Anna Zaks50bbc162011-08-19 22:33:38 +0000499 const CFGBlock *srcBlk,
500 const CFGBlock *dstBlk,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000501 BugReport &R,
Anna Zaks50bbc162011-08-19 22:33:38 +0000502 BugReporterContext &BRC) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000503 const Expr *Cond = 0;
504
505 switch (Term->getStmtClass()) {
506 default:
507 return 0;
508 case Stmt::IfStmtClass:
509 Cond = cast<IfStmt>(Term)->getCond();
510 break;
511 case Stmt::ConditionalOperatorClass:
512 Cond = cast<ConditionalOperator>(Term)->getCond();
513 break;
514 }
515
516 assert(Cond);
517 assert(srcBlk->succ_size() == 2);
518 const bool tookTrue = *(srcBlk->succ_begin()) == dstBlk;
519 return VisitTrueTest(Cond->IgnoreParenNoopCasts(BRC.getASTContext()),
Ted Kremenek76aadc32012-03-09 01:13:14 +0000520 tookTrue, BRC, R, N);
Ted Kremenek993124e2011-08-06 06:54:45 +0000521}
522
523PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000524ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
525 bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000526 BugReporterContext &BRC,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000527 BugReport &R,
528 const ExplodedNode *N) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000529
530 const Expr *Ex = Cond;
531
Ted Kremenek681bc112011-08-16 01:53:41 +0000532 while (true) {
533 Ex = Ex->IgnoreParens();
Ted Kremenek993124e2011-08-06 06:54:45 +0000534 switch (Ex->getStmtClass()) {
535 default:
536 return 0;
Ted Kremenek681bc112011-08-16 01:53:41 +0000537 case Stmt::BinaryOperatorClass:
Ted Kremenek76aadc32012-03-09 01:13:14 +0000538 return VisitTrueTest(Cond, cast<BinaryOperator>(Ex), tookTrue, BRC,
539 R, N);
Ted Kremenek993124e2011-08-06 06:54:45 +0000540 case Stmt::DeclRefExprClass:
Ted Kremenek76aadc32012-03-09 01:13:14 +0000541 return VisitTrueTest(Cond, cast<DeclRefExpr>(Ex), tookTrue, BRC,
542 R, N);
Ted Kremenek993124e2011-08-06 06:54:45 +0000543 case Stmt::UnaryOperatorClass: {
544 const UnaryOperator *UO = cast<UnaryOperator>(Ex);
545 if (UO->getOpcode() == UO_LNot) {
546 tookTrue = !tookTrue;
547 Ex = UO->getSubExpr()->IgnoreParenNoopCasts(BRC.getASTContext());
548 continue;
549 }
550 return 0;
551 }
552 }
Ted Kremenek681bc112011-08-16 01:53:41 +0000553 }
554}
555
Anna Zaks50bbc162011-08-19 22:33:38 +0000556bool ConditionBRVisitor::patternMatch(const Expr *Ex, llvm::raw_ostream &Out,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000557 BugReporterContext &BRC,
558 BugReport &report,
559 const ExplodedNode *N,
560 llvm::Optional<bool> &prunable) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000561 const Expr *OriginalExpr = Ex;
562 Ex = Ex->IgnoreParenCasts();
563
564 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000565 const bool quotes = isa<VarDecl>(DR->getDecl());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000566 if (quotes) {
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000567 Out << '\'';
Ted Kremenek76aadc32012-03-09 01:13:14 +0000568 const LocationContext *LCtx = N->getLocationContext();
569 const ProgramState *state = N->getState().getPtr();
570 if (const MemRegion *R = state->getLValue(cast<VarDecl>(DR->getDecl()),
571 LCtx).getAsRegion()) {
572 if (report.isInteresting(R))
573 prunable = false;
574 else {
575 const ProgramState *state = N->getState().getPtr();
576 SVal V = state->getSVal(R);
577 if (report.isInteresting(V))
578 prunable = false;
579 }
580 }
581 }
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000582 Out << DR->getDecl()->getDeclName().getAsString();
583 if (quotes)
584 Out << '\'';
585 return quotes;
Ted Kremenek681bc112011-08-16 01:53:41 +0000586 }
587
588 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(Ex)) {
589 QualType OriginalTy = OriginalExpr->getType();
590 if (OriginalTy->isPointerType()) {
591 if (IL->getValue() == 0) {
592 Out << "null";
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000593 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000594 }
595 }
596 else if (OriginalTy->isObjCObjectPointerType()) {
597 if (IL->getValue() == 0) {
598 Out << "nil";
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000599 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000600 }
601 }
602
603 Out << IL->getValue();
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000604 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000605 }
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000606
607 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000608}
609
610PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000611ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
612 const BinaryOperator *BExpr,
613 const bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000614 BugReporterContext &BRC,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000615 BugReport &R,
616 const ExplodedNode *N) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000617
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000618 bool shouldInvert = false;
Ted Kremenek76aadc32012-03-09 01:13:14 +0000619 llvm::Optional<bool> shouldPrune;
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000620
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000621 SmallString<128> LhsString, RhsString;
Ted Kremenek681bc112011-08-16 01:53:41 +0000622 {
Ted Kremenek76aadc32012-03-09 01:13:14 +0000623 llvm::raw_svector_ostream OutLHS(LhsString), OutRHS(RhsString);
624 const bool isVarLHS = patternMatch(BExpr->getLHS(), OutLHS, BRC, R, N,
625 shouldPrune);
626 const bool isVarRHS = patternMatch(BExpr->getRHS(), OutRHS, BRC, R, N,
627 shouldPrune);
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000628
629 shouldInvert = !isVarLHS && isVarRHS;
Ted Kremenek681bc112011-08-16 01:53:41 +0000630 }
631
Ted Kremenekd1247c52012-01-04 08:18:09 +0000632 BinaryOperator::Opcode Op = BExpr->getOpcode();
633
634 if (BinaryOperator::isAssignmentOp(Op)) {
635 // For assignment operators, all that we care about is that the LHS
636 // evaluates to "true" or "false".
637 return VisitConditionVariable(LhsString, BExpr->getLHS(), tookTrue,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000638 BRC, R, N);
Ted Kremenekd1247c52012-01-04 08:18:09 +0000639 }
640
641 // For non-assignment operations, we require that we can understand
642 // both the LHS and RHS.
Ted Kremenek681bc112011-08-16 01:53:41 +0000643 if (LhsString.empty() || RhsString.empty())
644 return 0;
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000645
Ted Kremenekd1247c52012-01-04 08:18:09 +0000646 // Should we invert the strings if the LHS is not a variable name?
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000647 SmallString<256> buf;
Ted Kremenek681bc112011-08-16 01:53:41 +0000648 llvm::raw_svector_ostream Out(buf);
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000649 Out << "Assuming " << (shouldInvert ? RhsString : LhsString) << " is ";
Ted Kremenek681bc112011-08-16 01:53:41 +0000650
651 // Do we need to invert the opcode?
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000652 if (shouldInvert)
653 switch (Op) {
654 default: break;
655 case BO_LT: Op = BO_GT; break;
656 case BO_GT: Op = BO_LT; break;
657 case BO_LE: Op = BO_GE; break;
658 case BO_GE: Op = BO_LE; break;
659 }
660
Ted Kremenek681bc112011-08-16 01:53:41 +0000661 if (!tookTrue)
662 switch (Op) {
663 case BO_EQ: Op = BO_NE; break;
664 case BO_NE: Op = BO_EQ; break;
665 case BO_LT: Op = BO_GE; break;
666 case BO_GT: Op = BO_LE; break;
667 case BO_LE: Op = BO_GT; break;
Ted Kremenek4ee7c9c2011-08-16 03:44:38 +0000668 case BO_GE: Op = BO_LT; break;
Ted Kremenek681bc112011-08-16 01:53:41 +0000669 default:
670 return 0;
671 }
672
Ted Kremenek6ae32572011-12-20 22:00:25 +0000673 switch (Op) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000674 case BO_EQ:
675 Out << "equal to ";
676 break;
677 case BO_NE:
678 Out << "not equal to ";
679 break;
680 default:
681 Out << BinaryOperator::getOpcodeStr(Op) << ' ';
682 break;
683 }
684
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000685 Out << (shouldInvert ? LhsString : RhsString);
Ted Kremenek76aadc32012-03-09 01:13:14 +0000686 const LocationContext *LCtx = N->getLocationContext();
687 PathDiagnosticLocation Loc(Cond, BRC.getSourceManager(), LCtx);
688 PathDiagnosticEventPiece *event =
689 new PathDiagnosticEventPiece(Loc, Out.str());
690 if (shouldPrune.hasValue())
691 event->setPrunable(shouldPrune.getValue());
692 return event;
Ted Kremenek993124e2011-08-06 06:54:45 +0000693}
Ted Kremenekd1247c52012-01-04 08:18:09 +0000694
695PathDiagnosticPiece *
696ConditionBRVisitor::VisitConditionVariable(StringRef LhsString,
697 const Expr *CondVarExpr,
698 const bool tookTrue,
699 BugReporterContext &BRC,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000700 BugReport &report,
701 const ExplodedNode *N) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000702 SmallString<256> buf;
Ted Kremenekd1247c52012-01-04 08:18:09 +0000703 llvm::raw_svector_ostream Out(buf);
704 Out << "Assuming " << LhsString << " is ";
705
706 QualType Ty = CondVarExpr->getType();
707
708 if (Ty->isPointerType())
709 Out << (tookTrue ? "not null" : "null");
710 else if (Ty->isObjCObjectPointerType())
711 Out << (tookTrue ? "not nil" : "nil");
712 else if (Ty->isBooleanType())
713 Out << (tookTrue ? "true" : "false");
714 else if (Ty->isIntegerType())
715 Out << (tookTrue ? "non-zero" : "zero");
716 else
717 return 0;
718
Ted Kremenek76aadc32012-03-09 01:13:14 +0000719 const LocationContext *LCtx = N->getLocationContext();
720 PathDiagnosticLocation Loc(CondVarExpr, BRC.getSourceManager(), LCtx);
721 PathDiagnosticEventPiece *event =
722 new PathDiagnosticEventPiece(Loc, Out.str());
723
724 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(CondVarExpr)) {
725 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
726 const ProgramState *state = N->getState().getPtr();
727 if (const MemRegion *R = state->getLValue(VD, LCtx).getAsRegion()) {
728 if (report.isInteresting(R))
729 event->setPrunable(false);
730 }
731 }
732 }
733
734 return event;
Ted Kremenekd1247c52012-01-04 08:18:09 +0000735}
Ted Kremenek993124e2011-08-06 06:54:45 +0000736
737PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000738ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
739 const DeclRefExpr *DR,
740 const bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000741 BugReporterContext &BRC,
Ted Kremenek76aadc32012-03-09 01:13:14 +0000742 BugReport &report,
743 const ExplodedNode *N) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000744
745 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
746 if (!VD)
747 return 0;
748
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000749 SmallString<256> Buf;
Ted Kremenek993124e2011-08-06 06:54:45 +0000750 llvm::raw_svector_ostream Out(Buf);
751
752 Out << "Assuming '";
753 VD->getDeclName().printName(Out);
754 Out << "' is ";
755
756 QualType VDTy = VD->getType();
757
758 if (VDTy->isPointerType())
759 Out << (tookTrue ? "non-null" : "null");
760 else if (VDTy->isObjCObjectPointerType())
761 Out << (tookTrue ? "non-nil" : "nil");
762 else if (VDTy->isScalarType())
763 Out << (tookTrue ? "not equal to 0" : "0");
764 else
765 return 0;
766
Ted Kremenek76aadc32012-03-09 01:13:14 +0000767 const LocationContext *LCtx = N->getLocationContext();
768 PathDiagnosticLocation Loc(Cond, BRC.getSourceManager(), LCtx);
769 PathDiagnosticEventPiece *event =
770 new PathDiagnosticEventPiece(Loc, Out.str());
771
772 const ProgramState *state = N->getState().getPtr();
773 if (const MemRegion *R = state->getLValue(VD, LCtx).getAsRegion()) {
774 if (report.isInteresting(R))
775 event->setPrunable(false);
776 else {
777 SVal V = state->getSVal(R);
778 if (report.isInteresting(V))
779 event->setPrunable(false);
780 }
781 }
782 return event;
Ted Kremenek993124e2011-08-06 06:54:45 +0000783}
Ted Kremenek0cf3d472012-02-07 00:24:33 +0000784