BugReporterVisitors.cpp revision 6a15f39a6bfd7a30085c5fa8f67d0b64b74b132a
1// 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//===----------------------------------------------------------------------===//
14#include "clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h"
15#include "clang/AST/Expr.h"
16#include "clang/AST/ExprObjC.h"
17#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
18#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
19#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
20#include "clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h"
21#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
22#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
23#include "llvm/ADT/SmallString.h"
24#include "llvm/ADT/StringExtras.h"
25#include "llvm/Support/raw_ostream.h"
26
27using namespace clang;
28using namespace ento;
29
30using llvm::FoldingSetNodeID;
31
32//===----------------------------------------------------------------------===//
33// Utility functions.
34//===----------------------------------------------------------------------===//
35
36bool bugreporter::isDeclRefExprToReference(const Expr *E) {
37  if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
38    return DRE->getDecl()->getType()->isReferenceType();
39  }
40  return false;
41}
42
43const Expr *bugreporter::getDerefExpr(const Stmt *S) {
44  // Pattern match for a few useful cases (do something smarter later):
45  //   a[0], p->f, *p
46  const Expr *E = dyn_cast<Expr>(S);
47  if (!E)
48    return 0;
49  E = E->IgnoreParenCasts();
50
51  while (true) {
52    if (const BinaryOperator *B = dyn_cast<BinaryOperator>(E)) {
53      assert(B->isAssignmentOp());
54      E = B->getLHS()->IgnoreParenCasts();
55      continue;
56    }
57    else if (const UnaryOperator *U = dyn_cast<UnaryOperator>(E)) {
58      if (U->getOpcode() == UO_Deref)
59        return U->getSubExpr()->IgnoreParenCasts();
60    }
61    else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
62      if (ME->isArrow() || isDeclRefExprToReference(ME->getBase())) {
63        return ME->getBase()->IgnoreParenCasts();
64      }
65    }
66    else if (const ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) {
67      return IvarRef->getBase()->IgnoreParenCasts();
68    }
69    else if (const ArraySubscriptExpr *AE = dyn_cast<ArraySubscriptExpr>(E)) {
70      return AE->getBase();
71    }
72    break;
73  }
74
75  return NULL;
76}
77
78const Stmt *bugreporter::GetDenomExpr(const ExplodedNode *N) {
79  const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
80  if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(S))
81    return BE->getRHS();
82  return NULL;
83}
84
85const Stmt *bugreporter::GetRetValExpr(const ExplodedNode *N) {
86  const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
87  if (const ReturnStmt *RS = dyn_cast<ReturnStmt>(S))
88    return RS->getRetValue();
89  return NULL;
90}
91
92//===----------------------------------------------------------------------===//
93// Definitions for bug reporter visitors.
94//===----------------------------------------------------------------------===//
95
96PathDiagnosticPiece*
97BugReporterVisitor::getEndPath(BugReporterContext &BRC,
98                               const ExplodedNode *EndPathNode,
99                               BugReport &BR) {
100  return 0;
101}
102
103PathDiagnosticPiece*
104BugReporterVisitor::getDefaultEndPath(BugReporterContext &BRC,
105                                      const ExplodedNode *EndPathNode,
106                                      BugReport &BR) {
107  PathDiagnosticLocation L =
108    PathDiagnosticLocation::createEndOfPath(EndPathNode,BRC.getSourceManager());
109
110  BugReport::ranges_iterator Beg, End;
111  llvm::tie(Beg, End) = BR.getRanges();
112
113  // Only add the statement itself as a range if we didn't specify any
114  // special ranges for this report.
115  PathDiagnosticPiece *P = new PathDiagnosticEventPiece(L,
116      BR.getDescription(),
117      Beg == End);
118  for (; Beg != End; ++Beg)
119    P->addRange(*Beg);
120
121  return P;
122}
123
124
125namespace {
126/// Emits an extra note at the return statement of an interesting stack frame.
127///
128/// The returned value is marked as an interesting value, and if it's null,
129/// adds a visitor to track where it became null.
130///
131/// This visitor is intended to be used when another visitor discovers that an
132/// interesting value comes from an inlined function call.
133class ReturnVisitor : public BugReporterVisitorImpl<ReturnVisitor> {
134  const StackFrameContext *StackFrame;
135  enum {
136    Initial,
137    MaybeUnsuppress,
138    Satisfied
139  } Mode;
140  bool InitiallySuppressed;
141
142public:
143  ReturnVisitor(const StackFrameContext *Frame, bool Suppressed)
144    : StackFrame(Frame), Mode(Initial), InitiallySuppressed(Suppressed) {}
145
146  static void *getTag() {
147    static int Tag = 0;
148    return static_cast<void *>(&Tag);
149  }
150
151  virtual void Profile(llvm::FoldingSetNodeID &ID) const {
152    ID.AddPointer(ReturnVisitor::getTag());
153    ID.AddPointer(StackFrame);
154    ID.AddBoolean(InitiallySuppressed);
155  }
156
157  /// Adds a ReturnVisitor if the given statement represents a call that was
158  /// inlined.
159  ///
160  /// This will search back through the ExplodedGraph, starting from the given
161  /// node, looking for when the given statement was processed. If it turns out
162  /// the statement is a call that was inlined, we add the visitor to the
163  /// bug report, so it can print a note later.
164  static void addVisitorIfNecessary(const ExplodedNode *Node, const Stmt *S,
165                                    BugReport &BR) {
166    if (!CallEvent::isCallStmt(S))
167      return;
168
169    // First, find when we processed the statement.
170    do {
171      if (Optional<CallExitEnd> CEE = Node->getLocationAs<CallExitEnd>())
172        if (CEE->getCalleeContext()->getCallSite() == S)
173          break;
174      if (Optional<StmtPoint> SP = Node->getLocationAs<StmtPoint>())
175        if (SP->getStmt() == S)
176          break;
177
178      Node = Node->getFirstPred();
179    } while (Node);
180
181    // Next, step over any post-statement checks.
182    while (Node && Node->getLocation().getAs<PostStmt>())
183      Node = Node->getFirstPred();
184    if (!Node)
185      return;
186
187    // Finally, see if we inlined the call.
188    Optional<CallExitEnd> CEE = Node->getLocationAs<CallExitEnd>();
189    if (!CEE)
190      return;
191
192    const StackFrameContext *CalleeContext = CEE->getCalleeContext();
193    if (CalleeContext->getCallSite() != S)
194      return;
195
196    // Check the return value.
197    ProgramStateRef State = Node->getState();
198    SVal RetVal = State->getSVal(S, Node->getLocationContext());
199
200    // Handle cases where a reference is returned and then immediately used.
201    if (cast<Expr>(S)->isGLValue())
202      if (Optional<Loc> LValue = RetVal.getAs<Loc>())
203        RetVal = State->getSVal(*LValue);
204
205    // See if the return value is NULL. If so, suppress the report.
206    SubEngine *Eng = State->getStateManager().getOwningEngine();
207    assert(Eng && "Cannot file a bug report without an owning engine");
208    AnalyzerOptions &Options = Eng->getAnalysisManager().options;
209
210    bool InitiallySuppressed = false;
211    if (Options.shouldSuppressNullReturnPaths())
212      if (Optional<Loc> RetLoc = RetVal.getAs<Loc>())
213        InitiallySuppressed = !State->assume(*RetLoc, true);
214
215    BR.markInteresting(CalleeContext);
216    BR.addVisitor(new ReturnVisitor(CalleeContext, InitiallySuppressed));
217  }
218
219  /// Returns true if any counter-suppression heuristics are enabled for
220  /// ReturnVisitor.
221  static bool hasCounterSuppression(AnalyzerOptions &Options) {
222    return Options.shouldAvoidSuppressingNullArgumentPaths();
223  }
224
225  PathDiagnosticPiece *visitNodeInitial(const ExplodedNode *N,
226                                        const ExplodedNode *PrevN,
227                                        BugReporterContext &BRC,
228                                        BugReport &BR) {
229    // Only print a message at the interesting return statement.
230    if (N->getLocationContext() != StackFrame)
231      return 0;
232
233    Optional<StmtPoint> SP = N->getLocationAs<StmtPoint>();
234    if (!SP)
235      return 0;
236
237    const ReturnStmt *Ret = dyn_cast<ReturnStmt>(SP->getStmt());
238    if (!Ret)
239      return 0;
240
241    // Okay, we're at the right return statement, but do we have the return
242    // value available?
243    ProgramStateRef State = N->getState();
244    SVal V = State->getSVal(Ret, StackFrame);
245    if (V.isUnknownOrUndef())
246      return 0;
247
248    // Don't print any more notes after this one.
249    Mode = Satisfied;
250
251    const Expr *RetE = Ret->getRetValue();
252    assert(RetE && "Tracking a return value for a void function");
253
254    // Handle cases where a reference is returned and then immediately used.
255    Optional<Loc> LValue;
256    if (RetE->isGLValue()) {
257      if ((LValue = V.getAs<Loc>())) {
258        SVal RValue = State->getRawSVal(*LValue, RetE->getType());
259        if (RValue.getAs<DefinedSVal>())
260          V = RValue;
261      }
262    }
263
264    // Ignore aggregate rvalues.
265    if (V.getAs<nonloc::LazyCompoundVal>() ||
266        V.getAs<nonloc::CompoundVal>())
267      return 0;
268
269    RetE = RetE->IgnoreParenCasts();
270
271    // If we can't prove the return value is 0, just mark it interesting, and
272    // make sure to track it into any further inner functions.
273    if (State->assume(V.castAs<DefinedSVal>(), true)) {
274      BR.markInteresting(V);
275      ReturnVisitor::addVisitorIfNecessary(N, RetE, BR);
276      return 0;
277    }
278
279    // If we're returning 0, we should track where that 0 came from.
280    bugreporter::trackNullOrUndefValue(N, RetE, BR);
281
282    // Build an appropriate message based on the return value.
283    SmallString<64> Msg;
284    llvm::raw_svector_ostream Out(Msg);
285
286    if (V.getAs<Loc>()) {
287      // If we have counter-suppression enabled, make sure we keep visiting
288      // future nodes. We want to emit a path note as well, in case
289      // the report is resurrected as valid later on.
290      ExprEngine &Eng = BRC.getBugReporter().getEngine();
291      AnalyzerOptions &Options = Eng.getAnalysisManager().options;
292      if (InitiallySuppressed && hasCounterSuppression(Options))
293        Mode = MaybeUnsuppress;
294
295      if (RetE->getType()->isObjCObjectPointerType())
296        Out << "Returning nil";
297      else
298        Out << "Returning null pointer";
299    } else {
300      Out << "Returning zero";
301    }
302
303    if (LValue) {
304      if (const MemRegion *MR = LValue->getAsRegion()) {
305        if (MR->canPrintPretty()) {
306          Out << " (reference to '";
307          MR->printPretty(Out);
308          Out << "')";
309        }
310      }
311    } else {
312      // FIXME: We should have a more generalized location printing mechanism.
313      if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetE))
314        if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(DR->getDecl()))
315          Out << " (loaded from '" << *DD << "')";
316    }
317
318    PathDiagnosticLocation L(Ret, BRC.getSourceManager(), StackFrame);
319    return new PathDiagnosticEventPiece(L, Out.str());
320  }
321
322  PathDiagnosticPiece *visitNodeMaybeUnsuppress(const ExplodedNode *N,
323                                                const ExplodedNode *PrevN,
324                                                BugReporterContext &BRC,
325                                                BugReport &BR) {
326#ifndef NDEBUG
327    ExprEngine &Eng = BRC.getBugReporter().getEngine();
328    AnalyzerOptions &Options = Eng.getAnalysisManager().options;
329    assert(hasCounterSuppression(Options));
330#endif
331
332    // Are we at the entry node for this call?
333    Optional<CallEnter> CE = N->getLocationAs<CallEnter>();
334    if (!CE)
335      return 0;
336
337    if (CE->getCalleeContext() != StackFrame)
338      return 0;
339
340    Mode = Satisfied;
341
342    // Don't automatically suppress a report if one of the arguments is
343    // known to be a null pointer. Instead, start tracking /that/ null
344    // value back to its origin.
345    ProgramStateManager &StateMgr = BRC.getStateManager();
346    CallEventManager &CallMgr = StateMgr.getCallEventManager();
347
348    ProgramStateRef State = N->getState();
349    CallEventRef<> Call = CallMgr.getCaller(StackFrame, State);
350    for (unsigned I = 0, E = Call->getNumArgs(); I != E; ++I) {
351      Optional<Loc> ArgV = Call->getArgSVal(I).getAs<Loc>();
352      if (!ArgV)
353        continue;
354
355      const Expr *ArgE = Call->getArgExpr(I);
356      if (!ArgE)
357        continue;
358
359      // Is it possible for this argument to be non-null?
360      if (State->assume(*ArgV, true))
361        continue;
362
363      if (bugreporter::trackNullOrUndefValue(N, ArgE, BR, /*IsArg=*/true))
364        BR.removeInvalidation(ReturnVisitor::getTag(), StackFrame);
365
366      // If we /can't/ track the null pointer, we should err on the side of
367      // false negatives, and continue towards marking this report invalid.
368      // (We will still look at the other arguments, though.)
369    }
370
371    return 0;
372  }
373
374  PathDiagnosticPiece *VisitNode(const ExplodedNode *N,
375                                 const ExplodedNode *PrevN,
376                                 BugReporterContext &BRC,
377                                 BugReport &BR) {
378    switch (Mode) {
379    case Initial:
380      return visitNodeInitial(N, PrevN, BRC, BR);
381    case MaybeUnsuppress:
382      return visitNodeMaybeUnsuppress(N, PrevN, BRC, BR);
383    case Satisfied:
384      return 0;
385    }
386
387    llvm_unreachable("Invalid visit mode!");
388  }
389
390  PathDiagnosticPiece *getEndPath(BugReporterContext &BRC,
391                                  const ExplodedNode *N,
392                                  BugReport &BR) {
393    if (InitiallySuppressed)
394      BR.markInvalid(ReturnVisitor::getTag(), StackFrame);
395    return 0;
396  }
397};
398} // end anonymous namespace
399
400
401void FindLastStoreBRVisitor ::Profile(llvm::FoldingSetNodeID &ID) const {
402  static int tag = 0;
403  ID.AddPointer(&tag);
404  ID.AddPointer(R);
405  ID.Add(V);
406}
407
408PathDiagnosticPiece *FindLastStoreBRVisitor::VisitNode(const ExplodedNode *Succ,
409                                                       const ExplodedNode *Pred,
410                                                       BugReporterContext &BRC,
411                                                       BugReport &BR) {
412
413  if (Satisfied)
414    return NULL;
415
416  const ExplodedNode *StoreSite = 0;
417  const Expr *InitE = 0;
418  bool IsParam = false;
419
420  // First see if we reached the declaration of the region.
421  if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
422    if (Optional<PostStmt> P = Pred->getLocationAs<PostStmt>()) {
423      if (const DeclStmt *DS = P->getStmtAs<DeclStmt>()) {
424        if (DS->getSingleDecl() == VR->getDecl()) {
425          StoreSite = Pred;
426          InitE = VR->getDecl()->getInit();
427        }
428      }
429    }
430  }
431
432  // Otherwise, see if this is the store site:
433  // (1) Succ has this binding and Pred does not, i.e. this is
434  //     where the binding first occurred.
435  // (2) Succ has this binding and is a PostStore node for this region, i.e.
436  //     the same binding was re-assigned here.
437  if (!StoreSite) {
438    if (Succ->getState()->getSVal(R) != V)
439      return NULL;
440
441    if (Pred->getState()->getSVal(R) == V) {
442      Optional<PostStore> PS = Succ->getLocationAs<PostStore>();
443      if (!PS || PS->getLocationValue() != R)
444        return NULL;
445    }
446
447    StoreSite = Succ;
448
449    // If this is an assignment expression, we can track the value
450    // being assigned.
451    if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>())
452      if (const BinaryOperator *BO = P->getStmtAs<BinaryOperator>())
453        if (BO->isAssignmentOp())
454          InitE = BO->getRHS();
455
456    // If this is a call entry, the variable should be a parameter.
457    // FIXME: Handle CXXThisRegion as well. (This is not a priority because
458    // 'this' should never be NULL, but this visitor isn't just for NULL and
459    // UndefinedVal.)
460    if (Optional<CallEnter> CE = Succ->getLocationAs<CallEnter>()) {
461      if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
462        const ParmVarDecl *Param = cast<ParmVarDecl>(VR->getDecl());
463
464        ProgramStateManager &StateMgr = BRC.getStateManager();
465        CallEventManager &CallMgr = StateMgr.getCallEventManager();
466
467        CallEventRef<> Call = CallMgr.getCaller(CE->getCalleeContext(),
468                                                Succ->getState());
469        InitE = Call->getArgExpr(Param->getFunctionScopeIndex());
470        IsParam = true;
471      }
472    }
473
474    // If this is a CXXTempObjectRegion, the Expr responsible for its creation
475    // is wrapped inside of it.
476    if (const CXXTempObjectRegion *TmpR = dyn_cast<CXXTempObjectRegion>(R))
477      InitE = TmpR->getExpr();
478  }
479
480  if (!StoreSite)
481    return NULL;
482  Satisfied = true;
483
484  // If we have an expression that provided the value, try to track where it
485  // came from.
486  if (InitE) {
487    if (V.isUndef() || V.getAs<loc::ConcreteInt>()) {
488      if (!IsParam)
489        InitE = InitE->IgnoreParenCasts();
490      bugreporter::trackNullOrUndefValue(StoreSite, InitE, BR, IsParam);
491    } else {
492      ReturnVisitor::addVisitorIfNecessary(StoreSite, InitE->IgnoreParenCasts(),
493                                           BR);
494    }
495  }
496
497  if (!R->canPrintPretty())
498    return 0;
499
500  // Okay, we've found the binding. Emit an appropriate message.
501  SmallString<256> sbuf;
502  llvm::raw_svector_ostream os(sbuf);
503
504  if (Optional<PostStmt> PS = StoreSite->getLocationAs<PostStmt>()) {
505    const Stmt *S = PS->getStmt();
506    const char *action = 0;
507    const DeclStmt *DS = dyn_cast<DeclStmt>(S);
508    const VarRegion *VR = dyn_cast<VarRegion>(R);
509
510    if (DS) {
511      action = "initialized to ";
512    } else if (isa<BlockExpr>(S)) {
513      action = "captured by block as ";
514      if (VR) {
515        // See if we can get the BlockVarRegion.
516        ProgramStateRef State = StoreSite->getState();
517        SVal V = State->getSVal(S, PS->getLocationContext());
518        if (const BlockDataRegion *BDR =
519              dyn_cast_or_null<BlockDataRegion>(V.getAsRegion())) {
520          if (const VarRegion *OriginalR = BDR->getOriginalRegion(VR)) {
521            if (Optional<KnownSVal> KV =
522                State->getSVal(OriginalR).getAs<KnownSVal>())
523              BR.addVisitor(new FindLastStoreBRVisitor(*KV, OriginalR));
524          }
525        }
526      }
527    }
528
529    if (action) {
530      if (!R)
531        return 0;
532
533      os << '\'';
534      R->printPretty(os);
535      os << "' ";
536
537      if (V.getAs<loc::ConcreteInt>()) {
538        bool b = false;
539        if (R->isBoundable()) {
540          if (const TypedValueRegion *TR = dyn_cast<TypedValueRegion>(R)) {
541            if (TR->getValueType()->isObjCObjectPointerType()) {
542              os << action << "nil";
543              b = true;
544            }
545          }
546        }
547
548        if (!b)
549          os << action << "a null pointer value";
550      } else if (Optional<nonloc::ConcreteInt> CVal =
551                     V.getAs<nonloc::ConcreteInt>()) {
552        os << action << CVal->getValue();
553      }
554      else if (DS) {
555        if (V.isUndef()) {
556          if (isa<VarRegion>(R)) {
557            const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
558            if (VD->getInit())
559              os << "initialized to a garbage value";
560            else
561              os << "declared without an initial value";
562          }
563        }
564        else {
565          os << "initialized here";
566        }
567      }
568    }
569  } else if (StoreSite->getLocation().getAs<CallEnter>()) {
570    if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
571      const ParmVarDecl *Param = cast<ParmVarDecl>(VR->getDecl());
572
573      os << "Passing ";
574
575      if (V.getAs<loc::ConcreteInt>()) {
576        if (Param->getType()->isObjCObjectPointerType())
577          os << "nil object reference";
578        else
579          os << "null pointer value";
580      } else if (V.isUndef()) {
581        os << "uninitialized value";
582      } else if (Optional<nonloc::ConcreteInt> CI =
583                     V.getAs<nonloc::ConcreteInt>()) {
584        os << "the value " << CI->getValue();
585      } else {
586        os << "value";
587      }
588
589      // Printed parameter indexes are 1-based, not 0-based.
590      unsigned Idx = Param->getFunctionScopeIndex() + 1;
591      os << " via " << Idx << llvm::getOrdinalSuffix(Idx) << " parameter '";
592
593      R->printPretty(os);
594      os << '\'';
595    }
596  }
597
598  if (os.str().empty()) {
599    if (V.getAs<loc::ConcreteInt>()) {
600      bool b = false;
601      if (R->isBoundable()) {
602        if (const TypedValueRegion *TR = dyn_cast<TypedValueRegion>(R)) {
603          if (TR->getValueType()->isObjCObjectPointerType()) {
604            os << "nil object reference stored to ";
605            b = true;
606          }
607        }
608      }
609
610      if (!b)
611        os << "Null pointer value stored to ";
612    }
613    else if (V.isUndef()) {
614      os << "Uninitialized value stored to ";
615    } else if (Optional<nonloc::ConcreteInt> CV =
616                   V.getAs<nonloc::ConcreteInt>()) {
617      os << "The value " << CV->getValue() << " is assigned to ";
618    }
619    else
620      os << "Value assigned to ";
621
622    os << '\'';
623    R->printPretty(os);
624    os << '\'';
625  }
626
627  // Construct a new PathDiagnosticPiece.
628  ProgramPoint P = StoreSite->getLocation();
629  PathDiagnosticLocation L;
630  if (P.getAs<CallEnter>() && InitE)
631    L = PathDiagnosticLocation(InitE, BRC.getSourceManager(),
632                               P.getLocationContext());
633  else
634    L = PathDiagnosticLocation::create(P, BRC.getSourceManager());
635  if (!L.isValid())
636    return NULL;
637  return new PathDiagnosticEventPiece(L, os.str());
638}
639
640void TrackConstraintBRVisitor::Profile(llvm::FoldingSetNodeID &ID) const {
641  static int tag = 0;
642  ID.AddPointer(&tag);
643  ID.AddBoolean(Assumption);
644  ID.Add(Constraint);
645}
646
647/// Return the tag associated with this visitor.  This tag will be used
648/// to make all PathDiagnosticPieces created by this visitor.
649const char *TrackConstraintBRVisitor::getTag() {
650  return "TrackConstraintBRVisitor";
651}
652
653PathDiagnosticPiece *
654TrackConstraintBRVisitor::VisitNode(const ExplodedNode *N,
655                                    const ExplodedNode *PrevN,
656                                    BugReporterContext &BRC,
657                                    BugReport &BR) {
658  if (isSatisfied)
659    return NULL;
660
661  // Check if in the previous state it was feasible for this constraint
662  // to *not* be true.
663  if (PrevN->getState()->assume(Constraint, !Assumption)) {
664
665    isSatisfied = true;
666
667    // As a sanity check, make sure that the negation of the constraint
668    // was infeasible in the current state.  If it is feasible, we somehow
669    // missed the transition point.
670    if (N->getState()->assume(Constraint, !Assumption))
671      return NULL;
672
673    // We found the transition point for the constraint.  We now need to
674    // pretty-print the constraint. (work-in-progress)
675    std::string sbuf;
676    llvm::raw_string_ostream os(sbuf);
677
678    if (Constraint.getAs<Loc>()) {
679      os << "Assuming pointer value is ";
680      os << (Assumption ? "non-null" : "null");
681    }
682
683    if (os.str().empty())
684      return NULL;
685
686    // Construct a new PathDiagnosticPiece.
687    ProgramPoint P = N->getLocation();
688    PathDiagnosticLocation L =
689      PathDiagnosticLocation::create(P, BRC.getSourceManager());
690    if (!L.isValid())
691      return NULL;
692
693    PathDiagnosticEventPiece *X = new PathDiagnosticEventPiece(L, os.str());
694    X->setTag(getTag());
695    return X;
696  }
697
698  return NULL;
699}
700
701SuppressInlineDefensiveChecksVisitor::
702SuppressInlineDefensiveChecksVisitor(DefinedSVal Value, const ExplodedNode *N)
703  : V(Value), IsSatisfied(false), IsTrackingTurnedOn(false) {
704    assert(N->getState()->isNull(V).isConstrainedTrue() &&
705           "The visitor only tracks the cases where V is constrained to 0");
706}
707
708void SuppressInlineDefensiveChecksVisitor::Profile(FoldingSetNodeID &ID) const {
709  static int id = 0;
710  ID.AddPointer(&id);
711  ID.Add(V);
712}
713
714const char *SuppressInlineDefensiveChecksVisitor::getTag() {
715  return "IDCVisitor";
716}
717
718PathDiagnosticPiece *
719SuppressInlineDefensiveChecksVisitor::VisitNode(const ExplodedNode *Succ,
720                                                const ExplodedNode *Pred,
721                                                BugReporterContext &BRC,
722                                                BugReport &BR) {
723  if (IsSatisfied)
724    return 0;
725
726  // Start tracking after we see the first state in which the value is null.
727  if (!IsTrackingTurnedOn)
728    if (Succ->getState()->isNull(V).isConstrainedTrue())
729      IsTrackingTurnedOn = true;
730  if (!IsTrackingTurnedOn)
731    return 0;
732
733  AnalyzerOptions &Options =
734  BRC.getBugReporter().getEngine().getAnalysisManager().options;
735  if (!Options.shouldSuppressInlinedDefensiveChecks())
736    return 0;
737
738  // Check if in the previous state it was feasible for this value
739  // to *not* be null.
740  if (!Pred->getState()->isNull(V).isConstrainedTrue()) {
741    IsSatisfied = true;
742
743    assert(Succ->getState()->isNull(V).isConstrainedTrue());
744
745    // Check if this is inlined defensive checks.
746    const LocationContext *CurLC =Succ->getLocationContext();
747    const LocationContext *ReportLC = BR.getErrorNode()->getLocationContext();
748    if (CurLC != ReportLC && !CurLC->isParentOf(ReportLC))
749      BR.markInvalid("Suppress IDC", CurLC);
750  }
751  return 0;
752}
753
754static const MemRegion *getLocationRegionIfReference(const Expr *E,
755                                                     const ExplodedNode *N) {
756  if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E)) {
757    if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
758      if (!VD->getType()->isReferenceType())
759        return 0;
760      ProgramStateManager &StateMgr = N->getState()->getStateManager();
761      MemRegionManager &MRMgr = StateMgr.getRegionManager();
762      return MRMgr.getVarRegion(VD, N->getLocationContext());
763    }
764  }
765
766  // FIXME: This does not handle other kinds of null references,
767  // for example, references from FieldRegions:
768  //   struct Wrapper { int &ref; };
769  //   Wrapper w = { *(int *)0 };
770  //   w.ref = 1;
771
772  return 0;
773}
774
775bool bugreporter::trackNullOrUndefValue(const ExplodedNode *N,
776                                        const Stmt *S,
777                                        BugReport &report, bool IsArg) {
778  if (!S || !N)
779    return false;
780
781  if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(S))
782    S = EWC->getSubExpr();
783  if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(S))
784    S = OVE->getSourceExpr();
785
786  // Peel off the ternary operator.
787  if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(S)) {
788    ProgramStateRef State = N->getState();
789    SVal CondVal = State->getSVal(CO->getCond(), N->getLocationContext());
790    if (State->isNull(CondVal).isConstrainedTrue()) {
791      S = CO->getTrueExpr();
792    } else {
793      assert(State->isNull(CondVal).isConstrainedFalse());
794      S =  CO->getFalseExpr();
795    }
796  }
797
798  const Expr *Inner = 0;
799  if (const Expr *Ex = dyn_cast<Expr>(S)) {
800    Ex = Ex->IgnoreParenCasts();
801    if (ExplodedGraph::isInterestingLValueExpr(Ex) || CallEvent::isCallStmt(Ex))
802      Inner = Ex;
803  }
804
805  if (IsArg) {
806    assert(N->getLocation().getAs<CallEnter>() && "Tracking arg but not at call");
807  } else {
808    // Walk through nodes until we get one that matches the statement exactly.
809    // Alternately, if we hit a known lvalue for the statement, we know we've
810    // gone too far (though we can likely track the lvalue better anyway).
811    do {
812      const ProgramPoint &pp = N->getLocation();
813      if (Optional<PostStmt> ps = pp.getAs<PostStmt>()) {
814        if (ps->getStmt() == S || ps->getStmt() == Inner)
815          break;
816      } else if (Optional<CallExitEnd> CEE = pp.getAs<CallExitEnd>()) {
817        if (CEE->getCalleeContext()->getCallSite() == S ||
818            CEE->getCalleeContext()->getCallSite() == Inner)
819          break;
820      }
821      N = N->getFirstPred();
822    } while (N);
823
824    if (!N)
825      return false;
826  }
827
828  ProgramStateRef state = N->getState();
829
830  // See if the expression we're interested refers to a variable.
831  // If so, we can track both its contents and constraints on its value.
832  if (Inner && ExplodedGraph::isInterestingLValueExpr(Inner)) {
833    const MemRegion *R = 0;
834
835    // Find the ExplodedNode where the lvalue (the value of 'Ex')
836    // was computed.  We need this for getting the location value.
837    const ExplodedNode *LVNode = N;
838    while (LVNode) {
839      if (Optional<PostStmt> P = LVNode->getLocation().getAs<PostStmt>()) {
840        if (P->getStmt() == Inner)
841          break;
842      }
843      LVNode = LVNode->getFirstPred();
844    }
845    assert(LVNode && "Unable to find the lvalue node.");
846    ProgramStateRef LVState = LVNode->getState();
847    SVal LVal = LVState->getSVal(Inner, LVNode->getLocationContext());
848
849    if (LVState->isNull(LVal).isConstrainedTrue()) {
850      // In case of C++ references, we want to differentiate between a null
851      // reference and reference to null pointer.
852      // If the LVal is null, check if we are dealing with null reference.
853      // For those, we want to track the location of the reference.
854      if (const MemRegion *RR = getLocationRegionIfReference(Inner, N))
855        R = RR;
856    } else {
857      R = LVState->getSVal(Inner, LVNode->getLocationContext()).getAsRegion();
858
859      // If this is a C++ reference to a null pointer, we are tracking the
860      // pointer. In additon, we should find the store at which the reference
861      // got initialized.
862      if (const MemRegion *RR = getLocationRegionIfReference(Inner, N)) {
863        if (Optional<KnownSVal> KV = LVal.getAs<KnownSVal>())
864          report.addVisitor(new FindLastStoreBRVisitor(*KV, RR));
865      }
866    }
867
868    if (R) {
869      // Mark both the variable region and its contents as interesting.
870      SVal V = state->getRawSVal(loc::MemRegionVal(R));
871
872      // If the value matches the default for the variable region, that
873      // might mean that it's been cleared out of the state. Fall back to
874      // the full argument expression (with casts and such intact).
875      if (IsArg) {
876        bool UseArgValue = V.isUnknownOrUndef() || V.isZeroConstant();
877        if (!UseArgValue) {
878          const SymbolRegionValue *SRV =
879            dyn_cast_or_null<SymbolRegionValue>(V.getAsLocSymbol());
880          if (SRV)
881            UseArgValue = (SRV->getRegion() == R);
882        }
883        if (UseArgValue)
884          V = state->getSValAsScalarOrLoc(S, N->getLocationContext());
885      }
886
887      report.markInteresting(R);
888      report.markInteresting(V);
889      report.addVisitor(new UndefOrNullArgVisitor(R));
890
891      if (isa<SymbolicRegion>(R)) {
892        TrackConstraintBRVisitor *VI =
893          new TrackConstraintBRVisitor(loc::MemRegionVal(R), false);
894        report.addVisitor(VI);
895      }
896
897      // If the contents are symbolic, find out when they became null.
898      if (V.getAsLocSymbol()) {
899        BugReporterVisitor *ConstraintTracker =
900          new TrackConstraintBRVisitor(V.castAs<DefinedSVal>(), false);
901        report.addVisitor(ConstraintTracker);
902
903        // Add visitor, which will suppress inline defensive checks.
904        if (N->getState()->isNull(V).isConstrainedTrue()) {
905          BugReporterVisitor *IDCSuppressor =
906            new SuppressInlineDefensiveChecksVisitor(V.castAs<DefinedSVal>(),
907                                                     N);
908          report.addVisitor(IDCSuppressor);
909        }
910      }
911
912      if (Optional<KnownSVal> KV = V.getAs<KnownSVal>())
913        report.addVisitor(new FindLastStoreBRVisitor(*KV, R));
914      return true;
915    }
916  }
917
918  // If the expression is not an "lvalue expression", we can still
919  // track the constraints on its contents.
920  SVal V = state->getSValAsScalarOrLoc(S, N->getLocationContext());
921
922  // If the value came from an inlined function call, we should at least make
923  // sure that function isn't pruned in our output.
924  if (const Expr *E = dyn_cast<Expr>(S))
925    S = E->IgnoreParenCasts();
926  ReturnVisitor::addVisitorIfNecessary(N, S, report);
927
928  // Uncomment this to find cases where we aren't properly getting the
929  // base value that was dereferenced.
930  // assert(!V.isUnknownOrUndef());
931  // Is it a symbolic value?
932  if (Optional<loc::MemRegionVal> L = V.getAs<loc::MemRegionVal>()) {
933    // At this point we are dealing with the region's LValue.
934    // However, if the rvalue is a symbolic region, we should track it as well.
935    SVal RVal = state->getSVal(L->getRegion());
936    const MemRegion *RegionRVal = RVal.getAsRegion();
937    report.addVisitor(new UndefOrNullArgVisitor(L->getRegion()));
938
939    if (RegionRVal && isa<SymbolicRegion>(RegionRVal)) {
940      report.markInteresting(RegionRVal);
941      report.addVisitor(new TrackConstraintBRVisitor(
942        loc::MemRegionVal(RegionRVal), false));
943    }
944  }
945
946  return true;
947}
948
949BugReporterVisitor *
950FindLastStoreBRVisitor::createVisitorObject(const ExplodedNode *N,
951                                            const MemRegion *R) {
952  assert(R && "The memory region is null.");
953
954  ProgramStateRef state = N->getState();
955  if (Optional<KnownSVal> KV = state->getSVal(R).getAs<KnownSVal>())
956    return new FindLastStoreBRVisitor(*KV, R);
957  return 0;
958}
959
960PathDiagnosticPiece *NilReceiverBRVisitor::VisitNode(const ExplodedNode *N,
961                                                     const ExplodedNode *PrevN,
962                                                     BugReporterContext &BRC,
963                                                     BugReport &BR) {
964  Optional<PostStmt> P = N->getLocationAs<PostStmt>();
965  if (!P)
966    return 0;
967  const ObjCMessageExpr *ME = P->getStmtAs<ObjCMessageExpr>();
968  if (!ME)
969    return 0;
970  const Expr *Receiver = ME->getInstanceReceiver();
971  if (!Receiver)
972    return 0;
973  ProgramStateRef state = N->getState();
974  const SVal &V = state->getSVal(Receiver, N->getLocationContext());
975  Optional<DefinedOrUnknownSVal> DV = V.getAs<DefinedOrUnknownSVal>();
976  if (!DV)
977    return 0;
978  state = state->assume(*DV, true);
979  if (state)
980    return 0;
981
982  // The receiver was nil, and hence the method was skipped.
983  // Register a BugReporterVisitor to issue a message telling us how
984  // the receiver was null.
985  bugreporter::trackNullOrUndefValue(N, Receiver, BR);
986  // Issue a message saying that the method was skipped.
987  PathDiagnosticLocation L(Receiver, BRC.getSourceManager(),
988                                     N->getLocationContext());
989  return new PathDiagnosticEventPiece(L, "No method is called "
990      "because the receiver is nil");
991}
992
993// Registers every VarDecl inside a Stmt with a last store visitor.
994void FindLastStoreBRVisitor::registerStatementVarDecls(BugReport &BR,
995                                                       const Stmt *S) {
996  const ExplodedNode *N = BR.getErrorNode();
997  std::deque<const Stmt *> WorkList;
998  WorkList.push_back(S);
999
1000  while (!WorkList.empty()) {
1001    const Stmt *Head = WorkList.front();
1002    WorkList.pop_front();
1003
1004    ProgramStateRef state = N->getState();
1005    ProgramStateManager &StateMgr = state->getStateManager();
1006
1007    if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Head)) {
1008      if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
1009        const VarRegion *R =
1010        StateMgr.getRegionManager().getVarRegion(VD, N->getLocationContext());
1011
1012        // What did we load?
1013        SVal V = state->getSVal(S, N->getLocationContext());
1014
1015        if (V.getAs<loc::ConcreteInt>() || V.getAs<nonloc::ConcreteInt>()) {
1016          // Register a new visitor with the BugReport.
1017          BR.addVisitor(new FindLastStoreBRVisitor(V.castAs<KnownSVal>(), R));
1018        }
1019      }
1020    }
1021
1022    for (Stmt::const_child_iterator I = Head->child_begin();
1023        I != Head->child_end(); ++I)
1024      WorkList.push_back(*I);
1025  }
1026}
1027
1028//===----------------------------------------------------------------------===//
1029// Visitor that tries to report interesting diagnostics from conditions.
1030//===----------------------------------------------------------------------===//
1031
1032/// Return the tag associated with this visitor.  This tag will be used
1033/// to make all PathDiagnosticPieces created by this visitor.
1034const char *ConditionBRVisitor::getTag() {
1035  return "ConditionBRVisitor";
1036}
1037
1038PathDiagnosticPiece *ConditionBRVisitor::VisitNode(const ExplodedNode *N,
1039                                                   const ExplodedNode *Prev,
1040                                                   BugReporterContext &BRC,
1041                                                   BugReport &BR) {
1042  PathDiagnosticPiece *piece = VisitNodeImpl(N, Prev, BRC, BR);
1043  if (piece) {
1044    piece->setTag(getTag());
1045    if (PathDiagnosticEventPiece *ev=dyn_cast<PathDiagnosticEventPiece>(piece))
1046      ev->setPrunable(true, /* override */ false);
1047  }
1048  return piece;
1049}
1050
1051PathDiagnosticPiece *ConditionBRVisitor::VisitNodeImpl(const ExplodedNode *N,
1052                                                       const ExplodedNode *Prev,
1053                                                       BugReporterContext &BRC,
1054                                                       BugReport &BR) {
1055
1056  ProgramPoint progPoint = N->getLocation();
1057  ProgramStateRef CurrentState = N->getState();
1058  ProgramStateRef PrevState = Prev->getState();
1059
1060  // Compare the GDMs of the state, because that is where constraints
1061  // are managed.  Note that ensure that we only look at nodes that
1062  // were generated by the analyzer engine proper, not checkers.
1063  if (CurrentState->getGDM().getRoot() ==
1064      PrevState->getGDM().getRoot())
1065    return 0;
1066
1067  // If an assumption was made on a branch, it should be caught
1068  // here by looking at the state transition.
1069  if (Optional<BlockEdge> BE = progPoint.getAs<BlockEdge>()) {
1070    const CFGBlock *srcBlk = BE->getSrc();
1071    if (const Stmt *term = srcBlk->getTerminator())
1072      return VisitTerminator(term, N, srcBlk, BE->getDst(), BR, BRC);
1073    return 0;
1074  }
1075
1076  if (Optional<PostStmt> PS = progPoint.getAs<PostStmt>()) {
1077    // FIXME: Assuming that BugReporter is a GRBugReporter is a layering
1078    // violation.
1079    const std::pair<const ProgramPointTag *, const ProgramPointTag *> &tags =
1080      cast<GRBugReporter>(BRC.getBugReporter()).
1081        getEngine().geteagerlyAssumeBinOpBifurcationTags();
1082
1083    const ProgramPointTag *tag = PS->getTag();
1084    if (tag == tags.first)
1085      return VisitTrueTest(cast<Expr>(PS->getStmt()), true,
1086                           BRC, BR, N);
1087    if (tag == tags.second)
1088      return VisitTrueTest(cast<Expr>(PS->getStmt()), false,
1089                           BRC, BR, N);
1090
1091    return 0;
1092  }
1093
1094  return 0;
1095}
1096
1097PathDiagnosticPiece *
1098ConditionBRVisitor::VisitTerminator(const Stmt *Term,
1099                                    const ExplodedNode *N,
1100                                    const CFGBlock *srcBlk,
1101                                    const CFGBlock *dstBlk,
1102                                    BugReport &R,
1103                                    BugReporterContext &BRC) {
1104  const Expr *Cond = 0;
1105
1106  switch (Term->getStmtClass()) {
1107  default:
1108    return 0;
1109  case Stmt::IfStmtClass:
1110    Cond = cast<IfStmt>(Term)->getCond();
1111    break;
1112  case Stmt::ConditionalOperatorClass:
1113    Cond = cast<ConditionalOperator>(Term)->getCond();
1114    break;
1115  }
1116
1117  assert(Cond);
1118  assert(srcBlk->succ_size() == 2);
1119  const bool tookTrue = *(srcBlk->succ_begin()) == dstBlk;
1120  return VisitTrueTest(Cond, tookTrue, BRC, R, N);
1121}
1122
1123PathDiagnosticPiece *
1124ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
1125                                  bool tookTrue,
1126                                  BugReporterContext &BRC,
1127                                  BugReport &R,
1128                                  const ExplodedNode *N) {
1129
1130  const Expr *Ex = Cond;
1131
1132  while (true) {
1133    Ex = Ex->IgnoreParenCasts();
1134    switch (Ex->getStmtClass()) {
1135      default:
1136        return 0;
1137      case Stmt::BinaryOperatorClass:
1138        return VisitTrueTest(Cond, cast<BinaryOperator>(Ex), tookTrue, BRC,
1139                             R, N);
1140      case Stmt::DeclRefExprClass:
1141        return VisitTrueTest(Cond, cast<DeclRefExpr>(Ex), tookTrue, BRC,
1142                             R, N);
1143      case Stmt::UnaryOperatorClass: {
1144        const UnaryOperator *UO = cast<UnaryOperator>(Ex);
1145        if (UO->getOpcode() == UO_LNot) {
1146          tookTrue = !tookTrue;
1147          Ex = UO->getSubExpr();
1148          continue;
1149        }
1150        return 0;
1151      }
1152    }
1153  }
1154}
1155
1156bool ConditionBRVisitor::patternMatch(const Expr *Ex, raw_ostream &Out,
1157                                      BugReporterContext &BRC,
1158                                      BugReport &report,
1159                                      const ExplodedNode *N,
1160                                      Optional<bool> &prunable) {
1161  const Expr *OriginalExpr = Ex;
1162  Ex = Ex->IgnoreParenCasts();
1163
1164  if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
1165    const bool quotes = isa<VarDecl>(DR->getDecl());
1166    if (quotes) {
1167      Out << '\'';
1168      const LocationContext *LCtx = N->getLocationContext();
1169      const ProgramState *state = N->getState().getPtr();
1170      if (const MemRegion *R = state->getLValue(cast<VarDecl>(DR->getDecl()),
1171                                                LCtx).getAsRegion()) {
1172        if (report.isInteresting(R))
1173          prunable = false;
1174        else {
1175          const ProgramState *state = N->getState().getPtr();
1176          SVal V = state->getSVal(R);
1177          if (report.isInteresting(V))
1178            prunable = false;
1179        }
1180      }
1181    }
1182    Out << DR->getDecl()->getDeclName().getAsString();
1183    if (quotes)
1184      Out << '\'';
1185    return quotes;
1186  }
1187
1188  if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(Ex)) {
1189    QualType OriginalTy = OriginalExpr->getType();
1190    if (OriginalTy->isPointerType()) {
1191      if (IL->getValue() == 0) {
1192        Out << "null";
1193        return false;
1194      }
1195    }
1196    else if (OriginalTy->isObjCObjectPointerType()) {
1197      if (IL->getValue() == 0) {
1198        Out << "nil";
1199        return false;
1200      }
1201    }
1202
1203    Out << IL->getValue();
1204    return false;
1205  }
1206
1207  return false;
1208}
1209
1210PathDiagnosticPiece *
1211ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
1212                                  const BinaryOperator *BExpr,
1213                                  const bool tookTrue,
1214                                  BugReporterContext &BRC,
1215                                  BugReport &R,
1216                                  const ExplodedNode *N) {
1217
1218  bool shouldInvert = false;
1219  Optional<bool> shouldPrune;
1220
1221  SmallString<128> LhsString, RhsString;
1222  {
1223    llvm::raw_svector_ostream OutLHS(LhsString), OutRHS(RhsString);
1224    const bool isVarLHS = patternMatch(BExpr->getLHS(), OutLHS, BRC, R, N,
1225                                       shouldPrune);
1226    const bool isVarRHS = patternMatch(BExpr->getRHS(), OutRHS, BRC, R, N,
1227                                       shouldPrune);
1228
1229    shouldInvert = !isVarLHS && isVarRHS;
1230  }
1231
1232  BinaryOperator::Opcode Op = BExpr->getOpcode();
1233
1234  if (BinaryOperator::isAssignmentOp(Op)) {
1235    // For assignment operators, all that we care about is that the LHS
1236    // evaluates to "true" or "false".
1237    return VisitConditionVariable(LhsString, BExpr->getLHS(), tookTrue,
1238                                  BRC, R, N);
1239  }
1240
1241  // For non-assignment operations, we require that we can understand
1242  // both the LHS and RHS.
1243  if (LhsString.empty() || RhsString.empty())
1244    return 0;
1245
1246  // Should we invert the strings if the LHS is not a variable name?
1247  SmallString<256> buf;
1248  llvm::raw_svector_ostream Out(buf);
1249  Out << "Assuming " << (shouldInvert ? RhsString : LhsString) << " is ";
1250
1251  // Do we need to invert the opcode?
1252  if (shouldInvert)
1253    switch (Op) {
1254      default: break;
1255      case BO_LT: Op = BO_GT; break;
1256      case BO_GT: Op = BO_LT; break;
1257      case BO_LE: Op = BO_GE; break;
1258      case BO_GE: Op = BO_LE; break;
1259    }
1260
1261  if (!tookTrue)
1262    switch (Op) {
1263      case BO_EQ: Op = BO_NE; break;
1264      case BO_NE: Op = BO_EQ; break;
1265      case BO_LT: Op = BO_GE; break;
1266      case BO_GT: Op = BO_LE; break;
1267      case BO_LE: Op = BO_GT; break;
1268      case BO_GE: Op = BO_LT; break;
1269      default:
1270        return 0;
1271    }
1272
1273  switch (Op) {
1274    case BO_EQ:
1275      Out << "equal to ";
1276      break;
1277    case BO_NE:
1278      Out << "not equal to ";
1279      break;
1280    default:
1281      Out << BinaryOperator::getOpcodeStr(Op) << ' ';
1282      break;
1283  }
1284
1285  Out << (shouldInvert ? LhsString : RhsString);
1286  const LocationContext *LCtx = N->getLocationContext();
1287  PathDiagnosticLocation Loc(Cond, BRC.getSourceManager(), LCtx);
1288  PathDiagnosticEventPiece *event =
1289    new PathDiagnosticEventPiece(Loc, Out.str());
1290  if (shouldPrune.hasValue())
1291    event->setPrunable(shouldPrune.getValue());
1292  return event;
1293}
1294
1295PathDiagnosticPiece *
1296ConditionBRVisitor::VisitConditionVariable(StringRef LhsString,
1297                                           const Expr *CondVarExpr,
1298                                           const bool tookTrue,
1299                                           BugReporterContext &BRC,
1300                                           BugReport &report,
1301                                           const ExplodedNode *N) {
1302  // FIXME: If there's already a constraint tracker for this variable,
1303  // we shouldn't emit anything here (c.f. the double note in
1304  // test/Analysis/inlining/path-notes.c)
1305  SmallString<256> buf;
1306  llvm::raw_svector_ostream Out(buf);
1307  Out << "Assuming " << LhsString << " is ";
1308
1309  QualType Ty = CondVarExpr->getType();
1310
1311  if (Ty->isPointerType())
1312    Out << (tookTrue ? "not null" : "null");
1313  else if (Ty->isObjCObjectPointerType())
1314    Out << (tookTrue ? "not nil" : "nil");
1315  else if (Ty->isBooleanType())
1316    Out << (tookTrue ? "true" : "false");
1317  else if (Ty->isIntegerType())
1318    Out << (tookTrue ? "non-zero" : "zero");
1319  else
1320    return 0;
1321
1322  const LocationContext *LCtx = N->getLocationContext();
1323  PathDiagnosticLocation Loc(CondVarExpr, BRC.getSourceManager(), LCtx);
1324  PathDiagnosticEventPiece *event =
1325    new PathDiagnosticEventPiece(Loc, Out.str());
1326
1327  if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(CondVarExpr)) {
1328    if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
1329      const ProgramState *state = N->getState().getPtr();
1330      if (const MemRegion *R = state->getLValue(VD, LCtx).getAsRegion()) {
1331        if (report.isInteresting(R))
1332          event->setPrunable(false);
1333      }
1334    }
1335  }
1336
1337  return event;
1338}
1339
1340PathDiagnosticPiece *
1341ConditionBRVisitor::VisitTrueTest(const Expr *Cond,
1342                                  const DeclRefExpr *DR,
1343                                  const bool tookTrue,
1344                                  BugReporterContext &BRC,
1345                                  BugReport &report,
1346                                  const ExplodedNode *N) {
1347
1348  const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
1349  if (!VD)
1350    return 0;
1351
1352  SmallString<256> Buf;
1353  llvm::raw_svector_ostream Out(Buf);
1354
1355  Out << "Assuming '";
1356  VD->getDeclName().printName(Out);
1357  Out << "' is ";
1358
1359  QualType VDTy = VD->getType();
1360
1361  if (VDTy->isPointerType())
1362    Out << (tookTrue ? "non-null" : "null");
1363  else if (VDTy->isObjCObjectPointerType())
1364    Out << (tookTrue ? "non-nil" : "nil");
1365  else if (VDTy->isScalarType())
1366    Out << (tookTrue ? "not equal to 0" : "0");
1367  else
1368    return 0;
1369
1370  const LocationContext *LCtx = N->getLocationContext();
1371  PathDiagnosticLocation Loc(Cond, BRC.getSourceManager(), LCtx);
1372  PathDiagnosticEventPiece *event =
1373    new PathDiagnosticEventPiece(Loc, Out.str());
1374
1375  const ProgramState *state = N->getState().getPtr();
1376  if (const MemRegion *R = state->getLValue(VD, LCtx).getAsRegion()) {
1377    if (report.isInteresting(R))
1378      event->setPrunable(false);
1379    else {
1380      SVal V = state->getSVal(R);
1381      if (report.isInteresting(V))
1382        event->setPrunable(false);
1383    }
1384  }
1385  return event;
1386}
1387
1388PathDiagnosticPiece *
1389LikelyFalsePositiveSuppressionBRVisitor::getEndPath(BugReporterContext &BRC,
1390                                                    const ExplodedNode *N,
1391                                                    BugReport &BR) {
1392  const Stmt *S = BR.getStmt();
1393  if (!S)
1394    return 0;
1395
1396  // Here we suppress false positives coming from system macros. This list is
1397  // based on known issues.
1398
1399  // Skip reports within the sys/queue.h macros as we do not have the ability to
1400  // reason about data structure shapes.
1401  SourceManager &SM = BRC.getSourceManager();
1402  SourceLocation Loc = S->getLocStart();
1403  while (Loc.isMacroID()) {
1404    if (SM.isInSystemMacro(Loc) &&
1405       (SM.getFilename(SM.getSpellingLoc(Loc)).endswith("sys/queue.h"))) {
1406      BR.markInvalid(getTag(), 0);
1407      return 0;
1408    }
1409    Loc = SM.getSpellingLoc(Loc);
1410  }
1411
1412  return 0;
1413}
1414
1415PathDiagnosticPiece *
1416UndefOrNullArgVisitor::VisitNode(const ExplodedNode *N,
1417                                  const ExplodedNode *PrevN,
1418                                  BugReporterContext &BRC,
1419                                  BugReport &BR) {
1420
1421  ProgramStateRef State = N->getState();
1422  ProgramPoint ProgLoc = N->getLocation();
1423
1424  // We are only interested in visiting CallEnter nodes.
1425  Optional<CallEnter> CEnter = ProgLoc.getAs<CallEnter>();
1426  if (!CEnter)
1427    return 0;
1428
1429  // Check if one of the arguments is the region the visitor is tracking.
1430  CallEventManager &CEMgr = BRC.getStateManager().getCallEventManager();
1431  CallEventRef<> Call = CEMgr.getCaller(CEnter->getCalleeContext(), State);
1432  unsigned Idx = 0;
1433  for (CallEvent::param_iterator I = Call->param_begin(),
1434                                 E = Call->param_end(); I != E; ++I, ++Idx) {
1435    const MemRegion *ArgReg = Call->getArgSVal(Idx).getAsRegion();
1436
1437    // Are we tracking the argument or its subregion?
1438    if ( !ArgReg || (ArgReg != R && !R->isSubRegionOf(ArgReg->StripCasts())))
1439      continue;
1440
1441    // Check the function parameter type.
1442    const ParmVarDecl *ParamDecl = *I;
1443    assert(ParamDecl && "Formal parameter has no decl?");
1444    QualType T = ParamDecl->getType();
1445
1446    if (!(T->isAnyPointerType() || T->isReferenceType())) {
1447      // Function can only change the value passed in by address.
1448      continue;
1449    }
1450
1451    // If it is a const pointer value, the function does not intend to
1452    // change the value.
1453    if (T->getPointeeType().isConstQualified())
1454      continue;
1455
1456    // Mark the call site (LocationContext) as interesting if the value of the
1457    // argument is undefined or '0'/'NULL'.
1458    SVal BoundVal = State->getSVal(R);
1459    if (BoundVal.isUndef() || BoundVal.isZeroConstant()) {
1460      BR.markInteresting(CEnter->getCalleeContext());
1461      return 0;
1462    }
1463  }
1464  return 0;
1465}
1466