blob: 1d29d5ff0a4cbcd3afa6d3e32a52ceff3823d54b [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,
290 const Stmt *S) {
291 if (!S || !N)
292 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Anna Zaks8e6431a2011-08-18 22:37:56 +0000294 ProgramStateManager &StateMgr = N->getState()->getStateManager();
295
Ted Kremenek88299892011-07-28 23:07:59 +0000296 // Walk through nodes until we get one that matches the statement
297 // exactly.
298 while (N) {
299 const ProgramPoint &pp = N->getLocation();
300 if (const PostStmt *ps = dyn_cast<PostStmt>(&pp)) {
301 if (ps->getStmt() == S)
302 break;
303 }
Anna Zaksb459cf32011-10-01 06:35:19 +0000304 N = N->getFirstPred();
Ted Kremenek88299892011-07-28 23:07:59 +0000305 }
306
307 if (!N)
Anna Zaks50bbc162011-08-19 22:33:38 +0000308 return 0;
Ted Kremenek88299892011-07-28 23:07:59 +0000309
Ted Kremenek8bef8232012-01-26 21:29:00 +0000310 ProgramStateRef state = N->getState();
Mike Stump1eb44332009-09-09 15:08:12 +0000311
Ted Kremenek892697d2010-12-16 07:46:53 +0000312 // Walk through lvalue-to-rvalue conversions.
Mike Stump1eb44332009-09-09 15:08:12 +0000313 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S)) {
314 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
Ted Kremenek53500662009-07-22 17:55:28 +0000315 const VarRegion *R =
Ted Kremenek892697d2010-12-16 07:46:53 +0000316 StateMgr.getRegionManager().getVarRegion(VD, N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000317
Ted Kremenek53500662009-07-22 17:55:28 +0000318 // What did we load?
Ted Kremenek892697d2010-12-16 07:46:53 +0000319 SVal V = state->getSVal(loc::MemRegionVal(R));
Mike Stump1eb44332009-09-09 15:08:12 +0000320
321 if (isa<loc::ConcreteInt>(V) || isa<nonloc::ConcreteInt>(V)
Ted Kremenek53500662009-07-22 17:55:28 +0000322 || V.isUndef()) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000323 return new FindLastStoreBRVisitor(V, R);
Ted Kremenek53500662009-07-22 17:55:28 +0000324 }
325 }
326 }
Mike Stump1eb44332009-09-09 15:08:12 +0000327
Ted Kremenek5eca4822012-01-06 22:09:28 +0000328 SVal V = state->getSValAsScalarOrLoc(S, N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000329
Ted Kremenek53500662009-07-22 17:55:28 +0000330 // Uncomment this to find cases where we aren't properly getting the
331 // base value that was dereferenced.
332 // assert(!V.isUnknownOrUndef());
Mike Stump1eb44332009-09-09 15:08:12 +0000333
Ted Kremenek53500662009-07-22 17:55:28 +0000334 // Is it a symbolic value?
335 if (loc::MemRegionVal *L = dyn_cast<loc::MemRegionVal>(&V)) {
336 const SubRegion *R = cast<SubRegion>(L->getRegion());
337 while (R && !isa<SymbolicRegion>(R)) {
338 R = dyn_cast<SubRegion>(R->getSuperRegion());
339 }
Mike Stump1eb44332009-09-09 15:08:12 +0000340
Ted Kremenek53500662009-07-22 17:55:28 +0000341 if (R) {
342 assert(isa<SymbolicRegion>(R));
Anna Zaks50bbc162011-08-19 22:33:38 +0000343 return new TrackConstraintBRVisitor(loc::MemRegionVal(R), false);
Ted Kremenek53500662009-07-22 17:55:28 +0000344 }
345 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000346
347 return 0;
Ted Kremenek53500662009-07-22 17:55:28 +0000348}
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000349
Anna Zaks50bbc162011-08-19 22:33:38 +0000350BugReporterVisitor *
351FindLastStoreBRVisitor::createVisitorObject(const ExplodedNode *N,
352 const MemRegion *R) {
353 assert(R && "The memory region is null.");
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000354
Ted Kremenek8bef8232012-01-26 21:29:00 +0000355 ProgramStateRef state = N->getState();
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000356 SVal V = state->getSVal(R);
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000357 if (V.isUnknown())
Anna Zaks50bbc162011-08-19 22:33:38 +0000358 return 0;
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000359
Anna Zaks50bbc162011-08-19 22:33:38 +0000360 return new FindLastStoreBRVisitor(V, R);
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000361}
Ted Kremenekff7f7362010-03-20 18:02:01 +0000362
363
Anna Zaks50bbc162011-08-19 22:33:38 +0000364PathDiagnosticPiece *NilReceiverBRVisitor::VisitNode(const ExplodedNode *N,
365 const ExplodedNode *PrevN,
366 BugReporterContext &BRC,
367 BugReport &BR) {
368 const PostStmt *P = N->getLocationAs<PostStmt>();
369 if (!P)
370 return 0;
371 const ObjCMessageExpr *ME = P->getStmtAs<ObjCMessageExpr>();
372 if (!ME)
373 return 0;
374 const Expr *Receiver = ME->getInstanceReceiver();
375 if (!Receiver)
376 return 0;
Ted Kremenek8bef8232012-01-26 21:29:00 +0000377 ProgramStateRef state = N->getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +0000378 const SVal &V = state->getSVal(Receiver, N->getLocationContext());
Anna Zaks50bbc162011-08-19 22:33:38 +0000379 const DefinedOrUnknownSVal *DV = dyn_cast<DefinedOrUnknownSVal>(&V);
380 if (!DV)
381 return 0;
382 state = state->assume(*DV, true);
383 if (state)
384 return 0;
Ted Kremenekff7f7362010-03-20 18:02:01 +0000385
Anna Zaks50bbc162011-08-19 22:33:38 +0000386 // The receiver was nil, and hence the method was skipped.
387 // Register a BugReporterVisitor to issue a message telling us how
388 // the receiver was null.
389 BR.addVisitor(bugreporter::getTrackNullOrUndefValueVisitor(N, Receiver));
390 // Issue a message saying that the method was skipped.
Anna Zaks220ac8c2011-09-15 01:08:34 +0000391 PathDiagnosticLocation L(Receiver, BRC.getSourceManager(),
392 N->getLocationContext());
Anna Zaks50bbc162011-08-19 22:33:38 +0000393 return new PathDiagnosticEventPiece(L, "No method actually called "
394 "because the receiver is nil");
Ted Kremenekff7f7362010-03-20 18:02:01 +0000395}
Tom Care2bbbe502010-09-02 23:30:22 +0000396
Anna Zaks8e6431a2011-08-18 22:37:56 +0000397// Registers every VarDecl inside a Stmt with a last store visitor.
Anna Zaks50bbc162011-08-19 22:33:38 +0000398void FindLastStoreBRVisitor::registerStatementVarDecls(BugReport &BR,
399 const Stmt *S) {
Anna Zaks8e6431a2011-08-18 22:37:56 +0000400 const ExplodedNode *N = BR.getErrorNode();
Tom Care2bbbe502010-09-02 23:30:22 +0000401 std::deque<const Stmt *> WorkList;
Tom Care2bbbe502010-09-02 23:30:22 +0000402 WorkList.push_back(S);
403
404 while (!WorkList.empty()) {
405 const Stmt *Head = WorkList.front();
406 WorkList.pop_front();
407
Ted Kremenek8bef8232012-01-26 21:29:00 +0000408 ProgramStateRef state = N->getState();
Anna Zaks8e6431a2011-08-18 22:37:56 +0000409 ProgramStateManager &StateMgr = state->getStateManager();
Tom Care2bbbe502010-09-02 23:30:22 +0000410
411 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Head)) {
412 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
413 const VarRegion *R =
414 StateMgr.getRegionManager().getVarRegion(VD, N->getLocationContext());
415
416 // What did we load?
Ted Kremenek5eca4822012-01-06 22:09:28 +0000417 SVal V = state->getSVal(S, N->getLocationContext());
Tom Care2bbbe502010-09-02 23:30:22 +0000418
419 if (isa<loc::ConcreteInt>(V) || isa<nonloc::ConcreteInt>(V)) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000420 // Register a new visitor with the BugReport.
421 BR.addVisitor(new FindLastStoreBRVisitor(V, R));
Tom Care2bbbe502010-09-02 23:30:22 +0000422 }
423 }
424 }
425
426 for (Stmt::const_child_iterator I = Head->child_begin();
427 I != Head->child_end(); ++I)
428 WorkList.push_back(*I);
429 }
430}
Ted Kremenek993124e2011-08-06 06:54:45 +0000431
432//===----------------------------------------------------------------------===//
433// Visitor that tries to report interesting diagnostics from conditions.
434//===----------------------------------------------------------------------===//
Anna Zaks50bbc162011-08-19 22:33:38 +0000435PathDiagnosticPiece *ConditionBRVisitor::VisitNode(const ExplodedNode *N,
436 const ExplodedNode *Prev,
437 BugReporterContext &BRC,
438 BugReport &BR) {
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000439 PathDiagnosticPiece *piece = VisitNodeImpl(N, Prev, BRC, BR);
440 if (PathDiagnosticEventPiece *ev =
441 dyn_cast_or_null<PathDiagnosticEventPiece>(piece))
442 ev->setPrunable(true);
443 return piece;
444}
445
446PathDiagnosticPiece *ConditionBRVisitor::VisitNodeImpl(const ExplodedNode *N,
447 const ExplodedNode *Prev,
448 BugReporterContext &BRC,
449 BugReport &BR) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000450
451 const ProgramPoint &progPoint = N->getLocation();
Ted Kremenek681bc112011-08-16 01:53:41 +0000452
Ted Kremenek8bef8232012-01-26 21:29:00 +0000453 ProgramStateRef CurrentState = N->getState();
454 ProgramStateRef PrevState = Prev->getState();
Ted Kremenek681bc112011-08-16 01:53:41 +0000455
456 // Compare the GDMs of the state, because that is where constraints
457 // are managed. Note that ensure that we only look at nodes that
458 // were generated by the analyzer engine proper, not checkers.
459 if (CurrentState->getGDM().getRoot() ==
460 PrevState->getGDM().getRoot())
461 return 0;
Ted Kremenek993124e2011-08-06 06:54:45 +0000462
463 // If an assumption was made on a branch, it should be caught
464 // here by looking at the state transition.
465 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&progPoint)) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000466 const CFGBlock *srcBlk = BE->getSrc();
467 if (const Stmt *term = srcBlk->getTerminator())
Anna Zaks220ac8c2011-09-15 01:08:34 +0000468 return VisitTerminator(term, N, srcBlk, BE->getDst(), BRC);
Ted Kremenek681bc112011-08-16 01:53:41 +0000469 return 0;
470 }
471
472 if (const PostStmt *PS = dyn_cast<PostStmt>(&progPoint)) {
473 // FIXME: Assuming that BugReporter is a GRBugReporter is a layering
474 // violation.
475 const std::pair<const ProgramPointTag *, const ProgramPointTag *> &tags =
476 cast<GRBugReporter>(BRC.getBugReporter()).
477 getEngine().getEagerlyAssumeTags();
478
479 const ProgramPointTag *tag = PS->getTag();
480 if (tag == tags.first)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000481 return VisitTrueTest(cast<Expr>(PS->getStmt()), true,
482 BRC, N->getLocationContext());
Ted Kremenek681bc112011-08-16 01:53:41 +0000483 if (tag == tags.second)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000484 return VisitTrueTest(cast<Expr>(PS->getStmt()), false,
485 BRC, N->getLocationContext());
Ted Kremenek681bc112011-08-16 01:53:41 +0000486
Ted Kremenek993124e2011-08-06 06:54:45 +0000487 return 0;
488 }
489
490 return 0;
491}
492
493PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000494ConditionBRVisitor::VisitTerminator(const Stmt *Term,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000495 const ExplodedNode *N,
Anna Zaks50bbc162011-08-19 22:33:38 +0000496 const CFGBlock *srcBlk,
497 const CFGBlock *dstBlk,
498 BugReporterContext &BRC) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000499 const Expr *Cond = 0;
500
501 switch (Term->getStmtClass()) {
502 default:
503 return 0;
504 case Stmt::IfStmtClass:
505 Cond = cast<IfStmt>(Term)->getCond();
506 break;
507 case Stmt::ConditionalOperatorClass:
508 Cond = cast<ConditionalOperator>(Term)->getCond();
509 break;
510 }
511
512 assert(Cond);
513 assert(srcBlk->succ_size() == 2);
514 const bool tookTrue = *(srcBlk->succ_begin()) == dstBlk;
515 return VisitTrueTest(Cond->IgnoreParenNoopCasts(BRC.getASTContext()),
Anna Zaks220ac8c2011-09-15 01:08:34 +0000516 tookTrue, BRC, N->getLocationContext());
Ted Kremenek993124e2011-08-06 06:54:45 +0000517}
518
519PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000520ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
521 bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000522 BugReporterContext &BRC,
523 const LocationContext *LC) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000524
525 const Expr *Ex = Cond;
526
Ted Kremenek681bc112011-08-16 01:53:41 +0000527 while (true) {
528 Ex = Ex->IgnoreParens();
Ted Kremenek993124e2011-08-06 06:54:45 +0000529 switch (Ex->getStmtClass()) {
530 default:
531 return 0;
Ted Kremenek681bc112011-08-16 01:53:41 +0000532 case Stmt::BinaryOperatorClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000533 return VisitTrueTest(Cond, cast<BinaryOperator>(Ex), tookTrue, BRC, LC);
Ted Kremenek993124e2011-08-06 06:54:45 +0000534 case Stmt::DeclRefExprClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000535 return VisitTrueTest(Cond, cast<DeclRefExpr>(Ex), tookTrue, BRC, LC);
Ted Kremenek993124e2011-08-06 06:54:45 +0000536 case Stmt::UnaryOperatorClass: {
537 const UnaryOperator *UO = cast<UnaryOperator>(Ex);
538 if (UO->getOpcode() == UO_LNot) {
539 tookTrue = !tookTrue;
540 Ex = UO->getSubExpr()->IgnoreParenNoopCasts(BRC.getASTContext());
541 continue;
542 }
543 return 0;
544 }
545 }
Ted Kremenek681bc112011-08-16 01:53:41 +0000546 }
547}
548
Anna Zaks50bbc162011-08-19 22:33:38 +0000549bool ConditionBRVisitor::patternMatch(const Expr *Ex, llvm::raw_ostream &Out,
550 BugReporterContext &BRC) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000551 const Expr *OriginalExpr = Ex;
552 Ex = Ex->IgnoreParenCasts();
553
554 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000555 const bool quotes = isa<VarDecl>(DR->getDecl());
556 if (quotes)
557 Out << '\'';
558 Out << DR->getDecl()->getDeclName().getAsString();
559 if (quotes)
560 Out << '\'';
561 return quotes;
Ted Kremenek681bc112011-08-16 01:53:41 +0000562 }
563
564 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(Ex)) {
565 QualType OriginalTy = OriginalExpr->getType();
566 if (OriginalTy->isPointerType()) {
567 if (IL->getValue() == 0) {
568 Out << "null";
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000569 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000570 }
571 }
572 else if (OriginalTy->isObjCObjectPointerType()) {
573 if (IL->getValue() == 0) {
574 Out << "nil";
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000575 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000576 }
577 }
578
579 Out << IL->getValue();
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000580 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000581 }
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000582
583 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000584}
585
586PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000587ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
588 const BinaryOperator *BExpr,
589 const bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000590 BugReporterContext &BRC,
591 const LocationContext *LC) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000592
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000593 bool shouldInvert = false;
594
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000595 SmallString<128> LhsString, RhsString;
Ted Kremenek681bc112011-08-16 01:53:41 +0000596 {
597 llvm::raw_svector_ostream OutLHS(LhsString), OutRHS(RhsString);
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000598 const bool isVarLHS = patternMatch(BExpr->getLHS(), OutLHS, BRC);
599 const bool isVarRHS = patternMatch(BExpr->getRHS(), OutRHS, BRC);
600
601 shouldInvert = !isVarLHS && isVarRHS;
Ted Kremenek681bc112011-08-16 01:53:41 +0000602 }
603
Ted Kremenekd1247c52012-01-04 08:18:09 +0000604 BinaryOperator::Opcode Op = BExpr->getOpcode();
605
606 if (BinaryOperator::isAssignmentOp(Op)) {
607 // For assignment operators, all that we care about is that the LHS
608 // evaluates to "true" or "false".
609 return VisitConditionVariable(LhsString, BExpr->getLHS(), tookTrue,
610 BRC, LC);
611 }
612
613 // For non-assignment operations, we require that we can understand
614 // both the LHS and RHS.
Ted Kremenek681bc112011-08-16 01:53:41 +0000615 if (LhsString.empty() || RhsString.empty())
616 return 0;
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000617
Ted Kremenekd1247c52012-01-04 08:18:09 +0000618 // Should we invert the strings if the LHS is not a variable name?
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000619 SmallString<256> buf;
Ted Kremenek681bc112011-08-16 01:53:41 +0000620 llvm::raw_svector_ostream Out(buf);
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000621 Out << "Assuming " << (shouldInvert ? RhsString : LhsString) << " is ";
Ted Kremenek681bc112011-08-16 01:53:41 +0000622
623 // Do we need to invert the opcode?
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000624 if (shouldInvert)
625 switch (Op) {
626 default: break;
627 case BO_LT: Op = BO_GT; break;
628 case BO_GT: Op = BO_LT; break;
629 case BO_LE: Op = BO_GE; break;
630 case BO_GE: Op = BO_LE; break;
631 }
632
Ted Kremenek681bc112011-08-16 01:53:41 +0000633 if (!tookTrue)
634 switch (Op) {
635 case BO_EQ: Op = BO_NE; break;
636 case BO_NE: Op = BO_EQ; break;
637 case BO_LT: Op = BO_GE; break;
638 case BO_GT: Op = BO_LE; break;
639 case BO_LE: Op = BO_GT; break;
Ted Kremenek4ee7c9c2011-08-16 03:44:38 +0000640 case BO_GE: Op = BO_LT; break;
Ted Kremenek681bc112011-08-16 01:53:41 +0000641 default:
642 return 0;
643 }
644
Ted Kremenek6ae32572011-12-20 22:00:25 +0000645 switch (Op) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000646 case BO_EQ:
647 Out << "equal to ";
648 break;
649 case BO_NE:
650 Out << "not equal to ";
651 break;
652 default:
653 Out << BinaryOperator::getOpcodeStr(Op) << ' ';
654 break;
655 }
656
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000657 Out << (shouldInvert ? LhsString : RhsString);
Ted Kremenek681bc112011-08-16 01:53:41 +0000658
Anna Zaks220ac8c2011-09-15 01:08:34 +0000659 PathDiagnosticLocation Loc(Cond, BRC.getSourceManager(), LC);
Ted Kremenek681bc112011-08-16 01:53:41 +0000660 return new PathDiagnosticEventPiece(Loc, Out.str());
Ted Kremenek993124e2011-08-06 06:54:45 +0000661}
Ted Kremenekd1247c52012-01-04 08:18:09 +0000662
663PathDiagnosticPiece *
664ConditionBRVisitor::VisitConditionVariable(StringRef LhsString,
665 const Expr *CondVarExpr,
666 const bool tookTrue,
667 BugReporterContext &BRC,
668 const LocationContext *LC) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000669 SmallString<256> buf;
Ted Kremenekd1247c52012-01-04 08:18:09 +0000670 llvm::raw_svector_ostream Out(buf);
671 Out << "Assuming " << LhsString << " is ";
672
673 QualType Ty = CondVarExpr->getType();
674
675 if (Ty->isPointerType())
676 Out << (tookTrue ? "not null" : "null");
677 else if (Ty->isObjCObjectPointerType())
678 Out << (tookTrue ? "not nil" : "nil");
679 else if (Ty->isBooleanType())
680 Out << (tookTrue ? "true" : "false");
681 else if (Ty->isIntegerType())
682 Out << (tookTrue ? "non-zero" : "zero");
683 else
684 return 0;
685
686 PathDiagnosticLocation Loc(CondVarExpr, BRC.getSourceManager(), LC);
687 return new PathDiagnosticEventPiece(Loc, Out.str());
688}
Ted Kremenek993124e2011-08-06 06:54:45 +0000689
690PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000691ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
692 const DeclRefExpr *DR,
693 const bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000694 BugReporterContext &BRC,
695 const LocationContext *LC) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000696
697 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
698 if (!VD)
699 return 0;
700
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000701 SmallString<256> Buf;
Ted Kremenek993124e2011-08-06 06:54:45 +0000702 llvm::raw_svector_ostream Out(Buf);
703
704 Out << "Assuming '";
705 VD->getDeclName().printName(Out);
706 Out << "' is ";
707
708 QualType VDTy = VD->getType();
709
710 if (VDTy->isPointerType())
711 Out << (tookTrue ? "non-null" : "null");
712 else if (VDTy->isObjCObjectPointerType())
713 Out << (tookTrue ? "non-nil" : "nil");
714 else if (VDTy->isScalarType())
715 Out << (tookTrue ? "not equal to 0" : "0");
716 else
717 return 0;
718
Anna Zaks220ac8c2011-09-15 01:08:34 +0000719 PathDiagnosticLocation Loc(Cond, BRC.getSourceManager(), LC);
Ted Kremenek993124e2011-08-06 06:54:45 +0000720 return new PathDiagnosticEventPiece(Loc, Out.str());
721}
Ted Kremenek0cf3d472012-02-07 00:24:33 +0000722