blob: 1abd8baef624f230d78616ce6dd61b4a9921bf36 [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"
Ted Kremenek53500662009-07-22 17:55:28 +000023
24using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000025using namespace ento;
Ted Kremenek53500662009-07-22 17:55:28 +000026
27//===----------------------------------------------------------------------===//
28// Utility functions.
29//===----------------------------------------------------------------------===//
30
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000031const Stmt *bugreporter::GetDerefExpr(const ExplodedNode *N) {
Ted Kremenek53500662009-07-22 17:55:28 +000032 // Pattern match for a few useful cases (do something smarter later):
33 // a[0], p->f, *p
34 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
Mike Stump1eb44332009-09-09 15:08:12 +000035
Ted Kremenek53500662009-07-22 17:55:28 +000036 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(S)) {
John McCall2de56d12010-08-25 11:45:40 +000037 if (U->getOpcode() == UO_Deref)
Ted Kremenek53500662009-07-22 17:55:28 +000038 return U->getSubExpr()->IgnoreParenCasts();
39 }
40 else if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
41 return ME->getBase()->IgnoreParenCasts();
42 }
43 else if (const ArraySubscriptExpr *AE = dyn_cast<ArraySubscriptExpr>(S)) {
Ted Kremenek53500662009-07-22 17:55:28 +000044 return AE->getBase();
45 }
Mike Stump1eb44332009-09-09 15:08:12 +000046
47 return NULL;
Ted Kremenek53500662009-07-22 17:55:28 +000048}
49
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000050const Stmt *bugreporter::GetDenomExpr(const ExplodedNode *N) {
Zhongxing Xu6403b572009-09-02 13:26:26 +000051 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
Ted Kremenek53500662009-07-22 17:55:28 +000052 if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(S))
53 return BE->getRHS();
54 return NULL;
55}
56
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000057const Stmt *bugreporter::GetCalleeExpr(const ExplodedNode *N) {
Zhongxing Xud99f3612009-09-02 08:10:35 +000058 // Callee is checked as a PreVisit to the CallExpr.
59 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
Ted Kremenek53500662009-07-22 17:55:28 +000060 if (const CallExpr *CE = dyn_cast<CallExpr>(S))
61 return CE->getCallee();
62 return NULL;
63}
64
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000065const Stmt *bugreporter::GetRetValExpr(const ExplodedNode *N) {
Ted Kremenek53500662009-07-22 17:55:28 +000066 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
67 if (const ReturnStmt *RS = dyn_cast<ReturnStmt>(S))
68 return RS->getRetValue();
69 return NULL;
70}
71
72//===----------------------------------------------------------------------===//
73// Definitions for bug reporter visitors.
74//===----------------------------------------------------------------------===//
Anna Zaks23f395e2011-08-20 01:27:22 +000075
76PathDiagnosticPiece*
77BugReporterVisitor::getEndPath(BugReporterContext &BRC,
78 const ExplodedNode *EndPathNode,
79 BugReport &BR) {
80 return 0;
81}
82
83PathDiagnosticPiece*
84BugReporterVisitor::getDefaultEndPath(BugReporterContext &BRC,
85 const ExplodedNode *EndPathNode,
86 BugReport &BR) {
87 const ProgramPoint &PP = EndPathNode->getLocation();
88 PathDiagnosticLocation L;
89
90 if (const BlockEntrance *BE = dyn_cast<BlockEntrance>(&PP)) {
91 const CFGBlock *block = BE->getBlock();
92 if (block->getBlockID() == 0) {
Anna Zaks0cd59482011-09-16 19:18:30 +000093 L = PathDiagnosticLocation::createDeclEnd(PP.getLocationContext(),
94 BRC.getSourceManager());
Anna Zaks23f395e2011-08-20 01:27:22 +000095 }
96 }
97
98 if (!L.isValid()) {
99 const Stmt *S = BR.getStmt();
100
101 if (!S)
102 return NULL;
103
Anna Zaks220ac8c2011-09-15 01:08:34 +0000104 L = PathDiagnosticLocation(S, BRC.getSourceManager(),
105 PP.getLocationContext());
Anna Zaks23f395e2011-08-20 01:27:22 +0000106 }
107
108 BugReport::ranges_iterator Beg, End;
109 llvm::tie(Beg, End) = BR.getRanges();
110
111 // Only add the statement itself as a range if we didn't specify any
112 // special ranges for this report.
113 PathDiagnosticPiece *P = new PathDiagnosticEventPiece(L,
114 BR.getDescription(),
115 Beg == End);
116 for (; Beg != End; ++Beg)
117 P->addRange(*Beg);
118
119 return P;
120}
121
122
Anna Zaks50bbc162011-08-19 22:33:38 +0000123void FindLastStoreBRVisitor ::Profile(llvm::FoldingSetNodeID &ID) const {
124 static int tag = 0;
125 ID.AddPointer(&tag);
126 ID.AddPointer(R);
127 ID.Add(V);
128}
Ted Kremenek53500662009-07-22 17:55:28 +0000129
Anna Zaks50bbc162011-08-19 22:33:38 +0000130PathDiagnosticPiece *FindLastStoreBRVisitor::VisitNode(const ExplodedNode *N,
131 const ExplodedNode *PrevN,
132 BugReporterContext &BRC,
133 BugReport &BR) {
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Anna Zaks50bbc162011-08-19 22:33:38 +0000135 if (satisfied)
136 return NULL;
137
138 if (!StoreSite) {
139 const ExplodedNode *Node = N, *Last = NULL;
140
141 for ( ; Node ; Last = Node, Node = Node->getFirstPred()) {
142
143 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
144 if (const PostStmt *P = Node->getLocationAs<PostStmt>())
145 if (const DeclStmt *DS = P->getStmtAs<DeclStmt>())
146 if (DS->getSingleDecl() == VR->getDecl()) {
147 Last = Node;
148 break;
149 }
150 }
151
152 if (Node->getState()->getSVal(R) != V)
153 break;
154 }
155
156 if (!Node || !Last) {
157 satisfied = true;
158 return NULL;
159 }
160
161 StoreSite = Last;
Ted Kremenek1b431022010-03-20 18:01:57 +0000162 }
163
Anna Zaks50bbc162011-08-19 22:33:38 +0000164 if (StoreSite != N)
165 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000166
Anna Zaks50bbc162011-08-19 22:33:38 +0000167 satisfied = true;
168 llvm::SmallString<256> sbuf;
169 llvm::raw_svector_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000170
Anna Zaks50bbc162011-08-19 22:33:38 +0000171 if (const PostStmt *PS = N->getLocationAs<PostStmt>()) {
172 if (const DeclStmt *DS = PS->getStmtAs<DeclStmt>()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000173
Anna Zaks50bbc162011-08-19 22:33:38 +0000174 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000175 os << "Variable '" << *VR->getDecl() << "' ";
Ted Kremenek53500662009-07-22 17:55:28 +0000176 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000177 else
Ted Kremenek53500662009-07-22 17:55:28 +0000178 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Ted Kremenek53500662009-07-22 17:55:28 +0000180 if (isa<loc::ConcreteInt>(V)) {
181 bool b = false;
Ted Kremenek53500662009-07-22 17:55:28 +0000182 if (R->isBoundable()) {
Ted Kremenek96979342011-08-12 20:02:48 +0000183 if (const TypedValueRegion *TR = dyn_cast<TypedValueRegion>(R)) {
Zhongxing Xu018220c2010-08-11 06:10:55 +0000184 if (TR->getValueType()->isObjCObjectPointerType()) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000185 os << "initialized to nil";
Ted Kremenek53500662009-07-22 17:55:28 +0000186 b = true;
187 }
188 }
189 }
Mike Stump1eb44332009-09-09 15:08:12 +0000190
Ted Kremenek53500662009-07-22 17:55:28 +0000191 if (!b)
Anna Zaks50bbc162011-08-19 22:33:38 +0000192 os << "initialized to a null pointer value";
Ted Kremenek53500662009-07-22 17:55:28 +0000193 }
Ted Kremenek592362b2009-08-18 01:05:30 +0000194 else if (isa<nonloc::ConcreteInt>(V)) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000195 os << "initialized to " << cast<nonloc::ConcreteInt>(V).getValue();
Ted Kremenek592362b2009-08-18 01:05:30 +0000196 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000197 else if (V.isUndef()) {
198 if (isa<VarRegion>(R)) {
199 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
200 if (VD->getInit())
201 os << "initialized to a garbage value";
202 else
203 os << "declared without an initial value";
204 }
Ted Kremenek53500662009-07-22 17:55:28 +0000205 }
Ted Kremenek53500662009-07-22 17:55:28 +0000206 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000207 }
208
209 if (os.str().empty()) {
210 if (isa<loc::ConcreteInt>(V)) {
211 bool b = false;
212 if (R->isBoundable()) {
213 if (const TypedValueRegion *TR = dyn_cast<TypedValueRegion>(R)) {
214 if (TR->getValueType()->isObjCObjectPointerType()) {
215 os << "nil object reference stored to ";
216 b = true;
217 }
218 }
219 }
220
221 if (!b)
222 os << "Null pointer value stored to ";
223 }
224 else if (V.isUndef()) {
225 os << "Uninitialized value stored to ";
226 }
227 else if (isa<nonloc::ConcreteInt>(V)) {
228 os << "The value " << cast<nonloc::ConcreteInt>(V).getValue()
229 << " is assigned to ";
230 }
231 else
232 return NULL;
233
234 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000235 os << '\'' << *VR->getDecl() << '\'';
Anna Zaks50bbc162011-08-19 22:33:38 +0000236 }
237 else
238 return NULL;
239 }
240
Anna Zaks50bbc162011-08-19 22:33:38 +0000241 // Construct a new PathDiagnosticPiece.
Anna Zaks4fdf97b2011-09-15 18:56:07 +0000242 ProgramPoint P = N->getLocation();
Anna Zaks1531bb02011-09-20 01:38:47 +0000243 PathDiagnosticLocation L =
244 PathDiagnosticLocation::create(P, BRC.getSourceManager());
Anna Zaks4fdf97b2011-09-15 18:56:07 +0000245 if (!L.isValid())
246 return NULL;
Anna Zaks50bbc162011-08-19 22:33:38 +0000247 return new PathDiagnosticEventPiece(L, os.str());
248}
249
250void TrackConstraintBRVisitor::Profile(llvm::FoldingSetNodeID &ID) const {
251 static int tag = 0;
252 ID.AddPointer(&tag);
253 ID.AddBoolean(Assumption);
254 ID.Add(Constraint);
255}
256
257PathDiagnosticPiece *
258TrackConstraintBRVisitor::VisitNode(const ExplodedNode *N,
259 const ExplodedNode *PrevN,
260 BugReporterContext &BRC,
261 BugReport &BR) {
262 if (isSatisfied)
263 return NULL;
264
265 // Check if in the previous state it was feasible for this constraint
266 // to *not* be true.
267 if (PrevN->getState()->assume(Constraint, !Assumption)) {
268
269 isSatisfied = true;
270
271 // As a sanity check, make sure that the negation of the constraint
272 // was infeasible in the current state. If it is feasible, we somehow
273 // missed the transition point.
274 if (N->getState()->assume(Constraint, !Assumption))
275 return NULL;
276
277 // We found the transition point for the constraint. We now need to
278 // pretty-print the constraint. (work-in-progress)
279 std::string sbuf;
280 llvm::raw_string_ostream os(sbuf);
281
282 if (isa<Loc>(Constraint)) {
283 os << "Assuming pointer value is ";
284 os << (Assumption ? "non-null" : "null");
285 }
286
287 if (os.str().empty())
288 return NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Ted Kremenek53500662009-07-22 17:55:28 +0000290 // Construct a new PathDiagnosticPiece.
Anna Zaks4fdf97b2011-09-15 18:56:07 +0000291 ProgramPoint P = N->getLocation();
Anna Zaks1531bb02011-09-20 01:38:47 +0000292 PathDiagnosticLocation L =
293 PathDiagnosticLocation::create(P, BRC.getSourceManager());
Anna Zaks4fdf97b2011-09-15 18:56:07 +0000294 if (!L.isValid())
295 return NULL;
Ted Kremenek53500662009-07-22 17:55:28 +0000296 return new PathDiagnosticEventPiece(L, os.str());
297 }
Ted Kremenek53500662009-07-22 17:55:28 +0000298
Anna Zaks50bbc162011-08-19 22:33:38 +0000299 return NULL;
Ted Kremenek53500662009-07-22 17:55:28 +0000300}
301
Anna Zaks50bbc162011-08-19 22:33:38 +0000302BugReporterVisitor *
303bugreporter::getTrackNullOrUndefValueVisitor(const ExplodedNode *N,
304 const Stmt *S) {
305 if (!S || !N)
306 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000307
Anna Zaks8e6431a2011-08-18 22:37:56 +0000308 ProgramStateManager &StateMgr = N->getState()->getStateManager();
309
Ted Kremenek88299892011-07-28 23:07:59 +0000310 // Walk through nodes until we get one that matches the statement
311 // exactly.
312 while (N) {
313 const ProgramPoint &pp = N->getLocation();
314 if (const PostStmt *ps = dyn_cast<PostStmt>(&pp)) {
315 if (ps->getStmt() == S)
316 break;
317 }
Anna Zaksb459cf32011-10-01 06:35:19 +0000318 N = N->getFirstPred();
Ted Kremenek88299892011-07-28 23:07:59 +0000319 }
320
321 if (!N)
Anna Zaks50bbc162011-08-19 22:33:38 +0000322 return 0;
Ted Kremenek88299892011-07-28 23:07:59 +0000323
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000324 const ProgramState *state = N->getState();
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Ted Kremenek892697d2010-12-16 07:46:53 +0000326 // Walk through lvalue-to-rvalue conversions.
Mike Stump1eb44332009-09-09 15:08:12 +0000327 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S)) {
328 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
Ted Kremenek53500662009-07-22 17:55:28 +0000329 const VarRegion *R =
Ted Kremenek892697d2010-12-16 07:46:53 +0000330 StateMgr.getRegionManager().getVarRegion(VD, N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000331
Ted Kremenek53500662009-07-22 17:55:28 +0000332 // What did we load?
Ted Kremenek892697d2010-12-16 07:46:53 +0000333 SVal V = state->getSVal(loc::MemRegionVal(R));
Mike Stump1eb44332009-09-09 15:08:12 +0000334
335 if (isa<loc::ConcreteInt>(V) || isa<nonloc::ConcreteInt>(V)
Ted Kremenek53500662009-07-22 17:55:28 +0000336 || V.isUndef()) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000337 return new FindLastStoreBRVisitor(V, R);
Ted Kremenek53500662009-07-22 17:55:28 +0000338 }
339 }
340 }
Mike Stump1eb44332009-09-09 15:08:12 +0000341
Ted Kremenek13976632010-02-08 16:18:51 +0000342 SVal V = state->getSValAsScalarOrLoc(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000343
Ted Kremenek53500662009-07-22 17:55:28 +0000344 // Uncomment this to find cases where we aren't properly getting the
345 // base value that was dereferenced.
346 // assert(!V.isUnknownOrUndef());
Mike Stump1eb44332009-09-09 15:08:12 +0000347
Ted Kremenek53500662009-07-22 17:55:28 +0000348 // Is it a symbolic value?
349 if (loc::MemRegionVal *L = dyn_cast<loc::MemRegionVal>(&V)) {
350 const SubRegion *R = cast<SubRegion>(L->getRegion());
351 while (R && !isa<SymbolicRegion>(R)) {
352 R = dyn_cast<SubRegion>(R->getSuperRegion());
353 }
Mike Stump1eb44332009-09-09 15:08:12 +0000354
Ted Kremenek53500662009-07-22 17:55:28 +0000355 if (R) {
356 assert(isa<SymbolicRegion>(R));
Anna Zaks50bbc162011-08-19 22:33:38 +0000357 return new TrackConstraintBRVisitor(loc::MemRegionVal(R), false);
Ted Kremenek53500662009-07-22 17:55:28 +0000358 }
359 }
Anna Zaks50bbc162011-08-19 22:33:38 +0000360
361 return 0;
Ted Kremenek53500662009-07-22 17:55:28 +0000362}
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000363
Anna Zaks50bbc162011-08-19 22:33:38 +0000364BugReporterVisitor *
365FindLastStoreBRVisitor::createVisitorObject(const ExplodedNode *N,
366 const MemRegion *R) {
367 assert(R && "The memory region is null.");
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000368
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000369 const ProgramState *state = N->getState();
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000370 SVal V = state->getSVal(R);
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000371 if (V.isUnknown())
Anna Zaks50bbc162011-08-19 22:33:38 +0000372 return 0;
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000373
Anna Zaks50bbc162011-08-19 22:33:38 +0000374 return new FindLastStoreBRVisitor(V, R);
Ted Kremenek94fd0b82010-02-16 08:33:59 +0000375}
Ted Kremenekff7f7362010-03-20 18:02:01 +0000376
377
Anna Zaks50bbc162011-08-19 22:33:38 +0000378PathDiagnosticPiece *NilReceiverBRVisitor::VisitNode(const ExplodedNode *N,
379 const ExplodedNode *PrevN,
380 BugReporterContext &BRC,
381 BugReport &BR) {
382 const PostStmt *P = N->getLocationAs<PostStmt>();
383 if (!P)
384 return 0;
385 const ObjCMessageExpr *ME = P->getStmtAs<ObjCMessageExpr>();
386 if (!ME)
387 return 0;
388 const Expr *Receiver = ME->getInstanceReceiver();
389 if (!Receiver)
390 return 0;
391 const ProgramState *state = N->getState();
392 const SVal &V = state->getSVal(Receiver);
393 const DefinedOrUnknownSVal *DV = dyn_cast<DefinedOrUnknownSVal>(&V);
394 if (!DV)
395 return 0;
396 state = state->assume(*DV, true);
397 if (state)
398 return 0;
Ted Kremenekff7f7362010-03-20 18:02:01 +0000399
Anna Zaks50bbc162011-08-19 22:33:38 +0000400 // The receiver was nil, and hence the method was skipped.
401 // Register a BugReporterVisitor to issue a message telling us how
402 // the receiver was null.
403 BR.addVisitor(bugreporter::getTrackNullOrUndefValueVisitor(N, Receiver));
404 // Issue a message saying that the method was skipped.
Anna Zaks220ac8c2011-09-15 01:08:34 +0000405 PathDiagnosticLocation L(Receiver, BRC.getSourceManager(),
406 N->getLocationContext());
Anna Zaks50bbc162011-08-19 22:33:38 +0000407 return new PathDiagnosticEventPiece(L, "No method actually called "
408 "because the receiver is nil");
Ted Kremenekff7f7362010-03-20 18:02:01 +0000409}
Tom Care2bbbe502010-09-02 23:30:22 +0000410
Anna Zaks8e6431a2011-08-18 22:37:56 +0000411// Registers every VarDecl inside a Stmt with a last store visitor.
Anna Zaks50bbc162011-08-19 22:33:38 +0000412void FindLastStoreBRVisitor::registerStatementVarDecls(BugReport &BR,
413 const Stmt *S) {
Anna Zaks8e6431a2011-08-18 22:37:56 +0000414 const ExplodedNode *N = BR.getErrorNode();
Tom Care2bbbe502010-09-02 23:30:22 +0000415 std::deque<const Stmt *> WorkList;
Tom Care2bbbe502010-09-02 23:30:22 +0000416 WorkList.push_back(S);
417
418 while (!WorkList.empty()) {
419 const Stmt *Head = WorkList.front();
420 WorkList.pop_front();
421
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000422 const ProgramState *state = N->getState();
Anna Zaks8e6431a2011-08-18 22:37:56 +0000423 ProgramStateManager &StateMgr = state->getStateManager();
Tom Care2bbbe502010-09-02 23:30:22 +0000424
425 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Head)) {
426 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
427 const VarRegion *R =
428 StateMgr.getRegionManager().getVarRegion(VD, N->getLocationContext());
429
430 // What did we load?
431 SVal V = state->getSVal(S);
432
433 if (isa<loc::ConcreteInt>(V) || isa<nonloc::ConcreteInt>(V)) {
Anna Zaks50bbc162011-08-19 22:33:38 +0000434 // Register a new visitor with the BugReport.
435 BR.addVisitor(new FindLastStoreBRVisitor(V, R));
Tom Care2bbbe502010-09-02 23:30:22 +0000436 }
437 }
438 }
439
440 for (Stmt::const_child_iterator I = Head->child_begin();
441 I != Head->child_end(); ++I)
442 WorkList.push_back(*I);
443 }
444}
Ted Kremenek993124e2011-08-06 06:54:45 +0000445
446//===----------------------------------------------------------------------===//
447// Visitor that tries to report interesting diagnostics from conditions.
448//===----------------------------------------------------------------------===//
Anna Zaks50bbc162011-08-19 22:33:38 +0000449PathDiagnosticPiece *ConditionBRVisitor::VisitNode(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
456 const ProgramState *CurrentState = N->getState();
457 const ProgramState *PrevState = Prev->getState();
458
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())
Anna Zaks220ac8c2011-09-15 01:08:34 +0000471 return VisitTerminator(term, N, srcBlk, BE->getDst(), 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,
485 BRC, N->getLocationContext());
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,
488 BRC, N->getLocationContext());
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,
501 BugReporterContext &BRC) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000502 const Expr *Cond = 0;
503
504 switch (Term->getStmtClass()) {
505 default:
506 return 0;
507 case Stmt::IfStmtClass:
508 Cond = cast<IfStmt>(Term)->getCond();
509 break;
510 case Stmt::ConditionalOperatorClass:
511 Cond = cast<ConditionalOperator>(Term)->getCond();
512 break;
513 }
514
515 assert(Cond);
516 assert(srcBlk->succ_size() == 2);
517 const bool tookTrue = *(srcBlk->succ_begin()) == dstBlk;
518 return VisitTrueTest(Cond->IgnoreParenNoopCasts(BRC.getASTContext()),
Anna Zaks220ac8c2011-09-15 01:08:34 +0000519 tookTrue, BRC, N->getLocationContext());
Ted Kremenek993124e2011-08-06 06:54:45 +0000520}
521
522PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000523ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
524 bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000525 BugReporterContext &BRC,
526 const LocationContext *LC) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000527
528 const Expr *Ex = Cond;
529
Ted Kremenek681bc112011-08-16 01:53:41 +0000530 while (true) {
531 Ex = Ex->IgnoreParens();
Ted Kremenek993124e2011-08-06 06:54:45 +0000532 switch (Ex->getStmtClass()) {
533 default:
534 return 0;
Ted Kremenek681bc112011-08-16 01:53:41 +0000535 case Stmt::BinaryOperatorClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000536 return VisitTrueTest(Cond, cast<BinaryOperator>(Ex), tookTrue, BRC, LC);
Ted Kremenek993124e2011-08-06 06:54:45 +0000537 case Stmt::DeclRefExprClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000538 return VisitTrueTest(Cond, cast<DeclRefExpr>(Ex), tookTrue, BRC, LC);
Ted Kremenek993124e2011-08-06 06:54:45 +0000539 case Stmt::UnaryOperatorClass: {
540 const UnaryOperator *UO = cast<UnaryOperator>(Ex);
541 if (UO->getOpcode() == UO_LNot) {
542 tookTrue = !tookTrue;
543 Ex = UO->getSubExpr()->IgnoreParenNoopCasts(BRC.getASTContext());
544 continue;
545 }
546 return 0;
547 }
548 }
Ted Kremenek681bc112011-08-16 01:53:41 +0000549 }
550}
551
Anna Zaks50bbc162011-08-19 22:33:38 +0000552bool ConditionBRVisitor::patternMatch(const Expr *Ex, llvm::raw_ostream &Out,
553 BugReporterContext &BRC) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000554 const Expr *OriginalExpr = Ex;
555 Ex = Ex->IgnoreParenCasts();
556
557 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000558 const bool quotes = isa<VarDecl>(DR->getDecl());
559 if (quotes)
560 Out << '\'';
561 Out << DR->getDecl()->getDeclName().getAsString();
562 if (quotes)
563 Out << '\'';
564 return quotes;
Ted Kremenek681bc112011-08-16 01:53:41 +0000565 }
566
567 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(Ex)) {
568 QualType OriginalTy = OriginalExpr->getType();
569 if (OriginalTy->isPointerType()) {
570 if (IL->getValue() == 0) {
571 Out << "null";
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000572 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000573 }
574 }
575 else if (OriginalTy->isObjCObjectPointerType()) {
576 if (IL->getValue() == 0) {
577 Out << "nil";
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000578 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000579 }
580 }
581
582 Out << IL->getValue();
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000583 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000584 }
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000585
586 return false;
Ted Kremenek681bc112011-08-16 01:53:41 +0000587}
588
589PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000590ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
591 const BinaryOperator *BExpr,
592 const bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000593 BugReporterContext &BRC,
594 const LocationContext *LC) {
Ted Kremenek681bc112011-08-16 01:53:41 +0000595
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000596 bool shouldInvert = false;
597
Ted Kremenek681bc112011-08-16 01:53:41 +0000598 llvm::SmallString<128> LhsString, RhsString;
599 {
600 llvm::raw_svector_ostream OutLHS(LhsString), OutRHS(RhsString);
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000601 const bool isVarLHS = patternMatch(BExpr->getLHS(), OutLHS, BRC);
602 const bool isVarRHS = patternMatch(BExpr->getRHS(), OutRHS, BRC);
603
604 shouldInvert = !isVarLHS && isVarRHS;
Ted Kremenek681bc112011-08-16 01:53:41 +0000605 }
606
607 if (LhsString.empty() || RhsString.empty())
608 return 0;
609
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000610 // Should we invert the strings if the LHS is not a variable name?
611
Ted Kremenek681bc112011-08-16 01:53:41 +0000612 llvm::SmallString<256> buf;
613 llvm::raw_svector_ostream Out(buf);
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000614 Out << "Assuming " << (shouldInvert ? RhsString : LhsString) << " is ";
Ted Kremenek681bc112011-08-16 01:53:41 +0000615
616 // Do we need to invert the opcode?
617 BinaryOperator::Opcode Op = BExpr->getOpcode();
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000618
619 if (shouldInvert)
620 switch (Op) {
621 default: break;
622 case BO_LT: Op = BO_GT; break;
623 case BO_GT: Op = BO_LT; break;
624 case BO_LE: Op = BO_GE; break;
625 case BO_GE: Op = BO_LE; break;
626 }
627
Ted Kremenek681bc112011-08-16 01:53:41 +0000628 if (!tookTrue)
629 switch (Op) {
630 case BO_EQ: Op = BO_NE; break;
631 case BO_NE: Op = BO_EQ; break;
632 case BO_LT: Op = BO_GE; break;
633 case BO_GT: Op = BO_LE; break;
634 case BO_LE: Op = BO_GT; break;
Ted Kremenek4ee7c9c2011-08-16 03:44:38 +0000635 case BO_GE: Op = BO_LT; break;
Ted Kremenek681bc112011-08-16 01:53:41 +0000636 default:
637 return 0;
638 }
639
640 switch (BExpr->getOpcode()) {
641 case BO_EQ:
642 Out << "equal to ";
643 break;
644 case BO_NE:
645 Out << "not equal to ";
646 break;
647 default:
648 Out << BinaryOperator::getOpcodeStr(Op) << ' ';
649 break;
650 }
651
Ted Kremenek3b9e8e42011-08-16 10:57:37 +0000652 Out << (shouldInvert ? LhsString : RhsString);
Ted Kremenek681bc112011-08-16 01:53:41 +0000653
Anna Zaks220ac8c2011-09-15 01:08:34 +0000654 PathDiagnosticLocation Loc(Cond, BRC.getSourceManager(), LC);
Ted Kremenek681bc112011-08-16 01:53:41 +0000655 return new PathDiagnosticEventPiece(Loc, Out.str());
Ted Kremenek993124e2011-08-06 06:54:45 +0000656}
657
658PathDiagnosticPiece *
Anna Zaks50bbc162011-08-19 22:33:38 +0000659ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
660 const DeclRefExpr *DR,
661 const bool tookTrue,
Anna Zaks220ac8c2011-09-15 01:08:34 +0000662 BugReporterContext &BRC,
663 const LocationContext *LC) {
Ted Kremenek993124e2011-08-06 06:54:45 +0000664
665 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
666 if (!VD)
667 return 0;
668
669 llvm::SmallString<256> Buf;
670 llvm::raw_svector_ostream Out(Buf);
671
672 Out << "Assuming '";
673 VD->getDeclName().printName(Out);
674 Out << "' is ";
675
676 QualType VDTy = VD->getType();
677
678 if (VDTy->isPointerType())
679 Out << (tookTrue ? "non-null" : "null");
680 else if (VDTy->isObjCObjectPointerType())
681 Out << (tookTrue ? "non-nil" : "nil");
682 else if (VDTy->isScalarType())
683 Out << (tookTrue ? "not equal to 0" : "0");
684 else
685 return 0;
686
Anna Zaks220ac8c2011-09-15 01:08:34 +0000687 PathDiagnosticLocation Loc(Cond, BRC.getSourceManager(), LC);
Ted Kremenek993124e2011-08-06 06:54:45 +0000688 return new PathDiagnosticEventPiece(Loc, Out.str());
689}