RetainCountChecker.cpp revision 6bcf27bb9a4b5c3f79cb44c0e4654a6d7619ad89
1//==-- RetainCountChecker.cpp - Checks for leaks and other issues -*- 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 the methods for RetainCountChecker, which implements
11//  a reference count checker for Core Foundation and Cocoa on (Mac OS X).
12//
13//===----------------------------------------------------------------------===//
14
15#include "ClangSACheckers.h"
16#include "AllocationDiagnostics.h"
17#include "SelectorExtras.h"
18#include "clang/AST/Attr.h"
19#include "clang/AST/DeclCXX.h"
20#include "clang/AST/DeclObjC.h"
21#include "clang/AST/ParentMap.h"
22#include "clang/Analysis/DomainSpecific/CocoaConventions.h"
23#include "clang/Basic/LangOptions.h"
24#include "clang/Basic/SourceManager.h"
25#include "clang/StaticAnalyzer/Checkers/ObjCRetainCount.h"
26#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
27#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
28#include "clang/StaticAnalyzer/Core/Checker.h"
29#include "clang/StaticAnalyzer/Core/CheckerManager.h"
30#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
31#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
32#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
33#include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h"
34#include "llvm/ADT/DenseMap.h"
35#include "llvm/ADT/FoldingSet.h"
36#include "llvm/ADT/ImmutableList.h"
37#include "llvm/ADT/ImmutableMap.h"
38#include "llvm/ADT/STLExtras.h"
39#include "llvm/ADT/SmallString.h"
40#include "llvm/ADT/StringExtras.h"
41#include <cstdarg>
42
43using namespace clang;
44using namespace ento;
45using namespace objc_retain;
46using llvm::StrInStrNoCase;
47
48//===----------------------------------------------------------------------===//
49// Adapters for FoldingSet.
50//===----------------------------------------------------------------------===//
51
52namespace llvm {
53template <> struct FoldingSetTrait<ArgEffect> {
54static inline void Profile(const ArgEffect X, FoldingSetNodeID &ID) {
55  ID.AddInteger((unsigned) X);
56}
57};
58template <> struct FoldingSetTrait<RetEffect> {
59  static inline void Profile(const RetEffect &X, FoldingSetNodeID &ID) {
60    ID.AddInteger((unsigned) X.getKind());
61    ID.AddInteger((unsigned) X.getObjKind());
62}
63};
64} // end llvm namespace
65
66//===----------------------------------------------------------------------===//
67// Reference-counting logic (typestate + counts).
68//===----------------------------------------------------------------------===//
69
70/// ArgEffects summarizes the effects of a function/method call on all of
71/// its arguments.
72typedef llvm::ImmutableMap<unsigned,ArgEffect> ArgEffects;
73
74namespace {
75class RefVal {
76public:
77  enum Kind {
78    Owned = 0, // Owning reference.
79    NotOwned,  // Reference is not owned by still valid (not freed).
80    Released,  // Object has been released.
81    ReturnedOwned, // Returned object passes ownership to caller.
82    ReturnedNotOwned, // Return object does not pass ownership to caller.
83    ERROR_START,
84    ErrorDeallocNotOwned, // -dealloc called on non-owned object.
85    ErrorDeallocGC, // Calling -dealloc with GC enabled.
86    ErrorUseAfterRelease, // Object used after released.
87    ErrorReleaseNotOwned, // Release of an object that was not owned.
88    ERROR_LEAK_START,
89    ErrorLeak,  // A memory leak due to excessive reference counts.
90    ErrorLeakReturned, // A memory leak due to the returning method not having
91                       // the correct naming conventions.
92    ErrorGCLeakReturned,
93    ErrorOverAutorelease,
94    ErrorReturnedNotOwned
95  };
96
97private:
98  /// The number of outstanding retains.
99  unsigned Cnt;
100  /// The number of outstanding autoreleases.
101  unsigned ACnt;
102  /// The (static) type of the object at the time we started tracking it.
103  QualType T;
104
105  /// The current state of the object.
106  ///
107  /// See the RefVal::Kind enum for possible values.
108  unsigned RawKind : 5;
109
110  /// The kind of object being tracked (CF or ObjC), if known.
111  ///
112  /// See the RetEffect::ObjKind enum for possible values.
113  unsigned RawObjectKind : 2;
114
115  /// True if the current state and/or retain count may turn out to not be the
116  /// best possible approximation of the reference counting state.
117  ///
118  /// If true, the checker may decide to throw away ("override") this state
119  /// in favor of something else when it sees the object being used in new ways.
120  ///
121  /// This setting should not be propagated to state derived from this state.
122  /// Once we start deriving new states, it would be inconsistent to override
123  /// them.
124  unsigned IsOverridable : 1;
125
126  RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t,
127         bool Overridable = false)
128    : Cnt(cnt), ACnt(acnt), T(t), RawKind(static_cast<unsigned>(k)),
129      RawObjectKind(static_cast<unsigned>(o)), IsOverridable(Overridable) {
130    assert(getKind() == k && "not enough bits for the kind");
131    assert(getObjKind() == o && "not enough bits for the object kind");
132  }
133
134public:
135  Kind getKind() const { return static_cast<Kind>(RawKind); }
136
137  RetEffect::ObjKind getObjKind() const {
138    return static_cast<RetEffect::ObjKind>(RawObjectKind);
139  }
140
141  unsigned getCount() const { return Cnt; }
142  unsigned getAutoreleaseCount() const { return ACnt; }
143  unsigned getCombinedCounts() const { return Cnt + ACnt; }
144  void clearCounts() {
145    Cnt = 0;
146    ACnt = 0;
147    IsOverridable = false;
148  }
149  void setCount(unsigned i) {
150    Cnt = i;
151    IsOverridable = false;
152  }
153  void setAutoreleaseCount(unsigned i) {
154    ACnt = i;
155    IsOverridable = false;
156  }
157
158  QualType getType() const { return T; }
159
160  bool isOverridable() const { return IsOverridable; }
161
162  bool isOwned() const {
163    return getKind() == Owned;
164  }
165
166  bool isNotOwned() const {
167    return getKind() == NotOwned;
168  }
169
170  bool isReturnedOwned() const {
171    return getKind() == ReturnedOwned;
172  }
173
174  bool isReturnedNotOwned() const {
175    return getKind() == ReturnedNotOwned;
176  }
177
178  /// Create a state for an object whose lifetime is the responsibility of the
179  /// current function, at least partially.
180  ///
181  /// Most commonly, this is an owned object with a retain count of +1.
182  static RefVal makeOwned(RetEffect::ObjKind o, QualType t,
183                          unsigned Count = 1) {
184    return RefVal(Owned, o, Count, 0, t);
185  }
186
187  /// Create a state for an object whose lifetime is not the responsibility of
188  /// the current function.
189  ///
190  /// Most commonly, this is an unowned object with a retain count of +0.
191  static RefVal makeNotOwned(RetEffect::ObjKind o, QualType t,
192                             unsigned Count = 0) {
193    return RefVal(NotOwned, o, Count, 0, t);
194  }
195
196  /// Create an "overridable" state for an unowned object at +0.
197  ///
198  /// An overridable state is one that provides a good approximation of the
199  /// reference counting state now, but which may be discarded later if the
200  /// checker sees the object being used in new ways.
201  static RefVal makeOverridableNotOwned(RetEffect::ObjKind o, QualType t) {
202    return RefVal(NotOwned, o, 0, 0, t, /*Overridable=*/true);
203  }
204
205  RefVal operator-(size_t i) const {
206    return RefVal(getKind(), getObjKind(), getCount() - i,
207                  getAutoreleaseCount(), getType());
208  }
209
210  RefVal operator+(size_t i) const {
211    return RefVal(getKind(), getObjKind(), getCount() + i,
212                  getAutoreleaseCount(), getType());
213  }
214
215  RefVal operator^(Kind k) const {
216    return RefVal(k, getObjKind(), getCount(), getAutoreleaseCount(),
217                  getType());
218  }
219
220  RefVal autorelease() const {
221    return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount()+1,
222                  getType());
223  }
224
225  // Comparison, profiling, and pretty-printing.
226
227  bool hasSameState(const RefVal &X) const {
228    return getKind() == X.getKind() && Cnt == X.Cnt && ACnt == X.ACnt;
229  }
230
231  bool operator==(const RefVal& X) const {
232    return T == X.T && hasSameState(X) && getObjKind() == X.getObjKind() &&
233           IsOverridable == X.IsOverridable;
234  }
235
236  void Profile(llvm::FoldingSetNodeID& ID) const {
237    ID.Add(T);
238    ID.AddInteger(RawKind);
239    ID.AddInteger(Cnt);
240    ID.AddInteger(ACnt);
241    ID.AddInteger(RawObjectKind);
242    ID.AddBoolean(IsOverridable);
243  }
244
245  void print(raw_ostream &Out) const;
246};
247
248void RefVal::print(raw_ostream &Out) const {
249  if (!T.isNull())
250    Out << "Tracked " << T.getAsString() << '/';
251
252  if (isOverridable())
253    Out << "(overridable) ";
254
255  switch (getKind()) {
256    default: llvm_unreachable("Invalid RefVal kind");
257    case Owned: {
258      Out << "Owned";
259      unsigned cnt = getCount();
260      if (cnt) Out << " (+ " << cnt << ")";
261      break;
262    }
263
264    case NotOwned: {
265      Out << "NotOwned";
266      unsigned cnt = getCount();
267      if (cnt) Out << " (+ " << cnt << ")";
268      break;
269    }
270
271    case ReturnedOwned: {
272      Out << "ReturnedOwned";
273      unsigned cnt = getCount();
274      if (cnt) Out << " (+ " << cnt << ")";
275      break;
276    }
277
278    case ReturnedNotOwned: {
279      Out << "ReturnedNotOwned";
280      unsigned cnt = getCount();
281      if (cnt) Out << " (+ " << cnt << ")";
282      break;
283    }
284
285    case Released:
286      Out << "Released";
287      break;
288
289    case ErrorDeallocGC:
290      Out << "-dealloc (GC)";
291      break;
292
293    case ErrorDeallocNotOwned:
294      Out << "-dealloc (not-owned)";
295      break;
296
297    case ErrorLeak:
298      Out << "Leaked";
299      break;
300
301    case ErrorLeakReturned:
302      Out << "Leaked (Bad naming)";
303      break;
304
305    case ErrorGCLeakReturned:
306      Out << "Leaked (GC-ed at return)";
307      break;
308
309    case ErrorUseAfterRelease:
310      Out << "Use-After-Release [ERROR]";
311      break;
312
313    case ErrorReleaseNotOwned:
314      Out << "Release of Not-Owned [ERROR]";
315      break;
316
317    case RefVal::ErrorOverAutorelease:
318      Out << "Over-autoreleased";
319      break;
320
321    case RefVal::ErrorReturnedNotOwned:
322      Out << "Non-owned object returned instead of owned";
323      break;
324  }
325
326  if (ACnt) {
327    Out << " [ARC +" << ACnt << ']';
328  }
329}
330} //end anonymous namespace
331
332//===----------------------------------------------------------------------===//
333// RefBindings - State used to track object reference counts.
334//===----------------------------------------------------------------------===//
335
336REGISTER_MAP_WITH_PROGRAMSTATE(RefBindings, SymbolRef, RefVal)
337
338static inline const RefVal *getRefBinding(ProgramStateRef State,
339                                          SymbolRef Sym) {
340  return State->get<RefBindings>(Sym);
341}
342
343static inline ProgramStateRef setRefBinding(ProgramStateRef State,
344                                            SymbolRef Sym, RefVal Val) {
345  return State->set<RefBindings>(Sym, Val);
346}
347
348static ProgramStateRef removeRefBinding(ProgramStateRef State, SymbolRef Sym) {
349  return State->remove<RefBindings>(Sym);
350}
351
352//===----------------------------------------------------------------------===//
353// Function/Method behavior summaries.
354//===----------------------------------------------------------------------===//
355
356namespace {
357class RetainSummary {
358  /// Args - a map of (index, ArgEffect) pairs, where index
359  ///  specifies the argument (starting from 0).  This can be sparsely
360  ///  populated; arguments with no entry in Args use 'DefaultArgEffect'.
361  ArgEffects Args;
362
363  /// DefaultArgEffect - The default ArgEffect to apply to arguments that
364  ///  do not have an entry in Args.
365  ArgEffect DefaultArgEffect;
366
367  /// Receiver - If this summary applies to an Objective-C message expression,
368  ///  this is the effect applied to the state of the receiver.
369  ArgEffect Receiver;
370
371  /// Ret - The effect on the return value.  Used to indicate if the
372  ///  function/method call returns a new tracked symbol.
373  RetEffect Ret;
374
375public:
376  RetainSummary(ArgEffects A, RetEffect R, ArgEffect defaultEff,
377                ArgEffect ReceiverEff)
378    : Args(A), DefaultArgEffect(defaultEff), Receiver(ReceiverEff), Ret(R) {}
379
380  /// getArg - Return the argument effect on the argument specified by
381  ///  idx (starting from 0).
382  ArgEffect getArg(unsigned idx) const {
383    if (const ArgEffect *AE = Args.lookup(idx))
384      return *AE;
385
386    return DefaultArgEffect;
387  }
388
389  void addArg(ArgEffects::Factory &af, unsigned idx, ArgEffect e) {
390    Args = af.add(Args, idx, e);
391  }
392
393  /// setDefaultArgEffect - Set the default argument effect.
394  void setDefaultArgEffect(ArgEffect E) {
395    DefaultArgEffect = E;
396  }
397
398  /// getRetEffect - Returns the effect on the return value of the call.
399  RetEffect getRetEffect() const { return Ret; }
400
401  /// setRetEffect - Set the effect of the return value of the call.
402  void setRetEffect(RetEffect E) { Ret = E; }
403
404
405  /// Sets the effect on the receiver of the message.
406  void setReceiverEffect(ArgEffect e) { Receiver = e; }
407
408  /// getReceiverEffect - Returns the effect on the receiver of the call.
409  ///  This is only meaningful if the summary applies to an ObjCMessageExpr*.
410  ArgEffect getReceiverEffect() const { return Receiver; }
411
412  /// Test if two retain summaries are identical. Note that merely equivalent
413  /// summaries are not necessarily identical (for example, if an explicit
414  /// argument effect matches the default effect).
415  bool operator==(const RetainSummary &Other) const {
416    return Args == Other.Args && DefaultArgEffect == Other.DefaultArgEffect &&
417           Receiver == Other.Receiver && Ret == Other.Ret;
418  }
419
420  /// Profile this summary for inclusion in a FoldingSet.
421  void Profile(llvm::FoldingSetNodeID& ID) const {
422    ID.Add(Args);
423    ID.Add(DefaultArgEffect);
424    ID.Add(Receiver);
425    ID.Add(Ret);
426  }
427
428  /// A retain summary is simple if it has no ArgEffects other than the default.
429  bool isSimple() const {
430    return Args.isEmpty();
431  }
432
433private:
434  ArgEffects getArgEffects() const { return Args; }
435  ArgEffect getDefaultArgEffect() const { return DefaultArgEffect; }
436
437  friend class RetainSummaryManager;
438};
439} // end anonymous namespace
440
441//===----------------------------------------------------------------------===//
442// Data structures for constructing summaries.
443//===----------------------------------------------------------------------===//
444
445namespace {
446class ObjCSummaryKey {
447  IdentifierInfo* II;
448  Selector S;
449public:
450  ObjCSummaryKey(IdentifierInfo* ii, Selector s)
451    : II(ii), S(s) {}
452
453  ObjCSummaryKey(const ObjCInterfaceDecl *d, Selector s)
454    : II(d ? d->getIdentifier() : nullptr), S(s) {}
455
456  ObjCSummaryKey(Selector s)
457    : II(nullptr), S(s) {}
458
459  IdentifierInfo *getIdentifier() const { return II; }
460  Selector getSelector() const { return S; }
461};
462}
463
464namespace llvm {
465template <> struct DenseMapInfo<ObjCSummaryKey> {
466  static inline ObjCSummaryKey getEmptyKey() {
467    return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getEmptyKey(),
468                          DenseMapInfo<Selector>::getEmptyKey());
469  }
470
471  static inline ObjCSummaryKey getTombstoneKey() {
472    return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getTombstoneKey(),
473                          DenseMapInfo<Selector>::getTombstoneKey());
474  }
475
476  static unsigned getHashValue(const ObjCSummaryKey &V) {
477    typedef std::pair<IdentifierInfo*, Selector> PairTy;
478    return DenseMapInfo<PairTy>::getHashValue(PairTy(V.getIdentifier(),
479                                                     V.getSelector()));
480  }
481
482  static bool isEqual(const ObjCSummaryKey& LHS, const ObjCSummaryKey& RHS) {
483    return LHS.getIdentifier() == RHS.getIdentifier() &&
484           LHS.getSelector() == RHS.getSelector();
485  }
486
487};
488} // end llvm namespace
489
490namespace {
491class ObjCSummaryCache {
492  typedef llvm::DenseMap<ObjCSummaryKey, const RetainSummary *> MapTy;
493  MapTy M;
494public:
495  ObjCSummaryCache() {}
496
497  const RetainSummary * find(const ObjCInterfaceDecl *D, Selector S) {
498    // Do a lookup with the (D,S) pair.  If we find a match return
499    // the iterator.
500    ObjCSummaryKey K(D, S);
501    MapTy::iterator I = M.find(K);
502
503    if (I != M.end())
504      return I->second;
505    if (!D)
506      return nullptr;
507
508    // Walk the super chain.  If we find a hit with a parent, we'll end
509    // up returning that summary.  We actually allow that key (null,S), as
510    // we cache summaries for the null ObjCInterfaceDecl* to allow us to
511    // generate initial summaries without having to worry about NSObject
512    // being declared.
513    // FIXME: We may change this at some point.
514    for (ObjCInterfaceDecl *C=D->getSuperClass() ;; C=C->getSuperClass()) {
515      if ((I = M.find(ObjCSummaryKey(C, S))) != M.end())
516        break;
517
518      if (!C)
519        return nullptr;
520    }
521
522    // Cache the summary with original key to make the next lookup faster
523    // and return the iterator.
524    const RetainSummary *Summ = I->second;
525    M[K] = Summ;
526    return Summ;
527  }
528
529  const RetainSummary *find(IdentifierInfo* II, Selector S) {
530    // FIXME: Class method lookup.  Right now we dont' have a good way
531    // of going between IdentifierInfo* and the class hierarchy.
532    MapTy::iterator I = M.find(ObjCSummaryKey(II, S));
533
534    if (I == M.end())
535      I = M.find(ObjCSummaryKey(S));
536
537    return I == M.end() ? nullptr : I->second;
538  }
539
540  const RetainSummary *& operator[](ObjCSummaryKey K) {
541    return M[K];
542  }
543
544  const RetainSummary *& operator[](Selector S) {
545    return M[ ObjCSummaryKey(S) ];
546  }
547};
548} // end anonymous namespace
549
550//===----------------------------------------------------------------------===//
551// Data structures for managing collections of summaries.
552//===----------------------------------------------------------------------===//
553
554namespace {
555class RetainSummaryManager {
556
557  //==-----------------------------------------------------------------==//
558  //  Typedefs.
559  //==-----------------------------------------------------------------==//
560
561  typedef llvm::DenseMap<const FunctionDecl*, const RetainSummary *>
562          FuncSummariesTy;
563
564  typedef ObjCSummaryCache ObjCMethodSummariesTy;
565
566  typedef llvm::FoldingSetNodeWrapper<RetainSummary> CachedSummaryNode;
567
568  //==-----------------------------------------------------------------==//
569  //  Data.
570  //==-----------------------------------------------------------------==//
571
572  /// Ctx - The ASTContext object for the analyzed ASTs.
573  ASTContext &Ctx;
574
575  /// GCEnabled - Records whether or not the analyzed code runs in GC mode.
576  const bool GCEnabled;
577
578  /// Records whether or not the analyzed code runs in ARC mode.
579  const bool ARCEnabled;
580
581  /// FuncSummaries - A map from FunctionDecls to summaries.
582  FuncSummariesTy FuncSummaries;
583
584  /// ObjCClassMethodSummaries - A map from selectors (for instance methods)
585  ///  to summaries.
586  ObjCMethodSummariesTy ObjCClassMethodSummaries;
587
588  /// ObjCMethodSummaries - A map from selectors to summaries.
589  ObjCMethodSummariesTy ObjCMethodSummaries;
590
591  /// BPAlloc - A BumpPtrAllocator used for allocating summaries, ArgEffects,
592  ///  and all other data used by the checker.
593  llvm::BumpPtrAllocator BPAlloc;
594
595  /// AF - A factory for ArgEffects objects.
596  ArgEffects::Factory AF;
597
598  /// ScratchArgs - A holding buffer for construct ArgEffects.
599  ArgEffects ScratchArgs;
600
601  /// ObjCAllocRetE - Default return effect for methods returning Objective-C
602  ///  objects.
603  RetEffect ObjCAllocRetE;
604
605  /// ObjCInitRetE - Default return effect for init methods returning
606  ///   Objective-C objects.
607  RetEffect ObjCInitRetE;
608
609  /// SimpleSummaries - Used for uniquing summaries that don't have special
610  /// effects.
611  llvm::FoldingSet<CachedSummaryNode> SimpleSummaries;
612
613  //==-----------------------------------------------------------------==//
614  //  Methods.
615  //==-----------------------------------------------------------------==//
616
617  /// getArgEffects - Returns a persistent ArgEffects object based on the
618  ///  data in ScratchArgs.
619  ArgEffects getArgEffects();
620
621  enum UnaryFuncKind { cfretain, cfrelease, cfautorelease, cfmakecollectable };
622
623  const RetainSummary *getUnarySummary(const FunctionType* FT,
624                                       UnaryFuncKind func);
625
626  const RetainSummary *getCFSummaryCreateRule(const FunctionDecl *FD);
627  const RetainSummary *getCFSummaryGetRule(const FunctionDecl *FD);
628  const RetainSummary *getCFCreateGetRuleSummary(const FunctionDecl *FD);
629
630  const RetainSummary *getPersistentSummary(const RetainSummary &OldSumm);
631
632  const RetainSummary *getPersistentSummary(RetEffect RetEff,
633                                            ArgEffect ReceiverEff = DoNothing,
634                                            ArgEffect DefaultEff = MayEscape) {
635    RetainSummary Summ(getArgEffects(), RetEff, DefaultEff, ReceiverEff);
636    return getPersistentSummary(Summ);
637  }
638
639  const RetainSummary *getDoNothingSummary() {
640    return getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
641  }
642
643  const RetainSummary *getDefaultSummary() {
644    return getPersistentSummary(RetEffect::MakeNoRet(),
645                                DoNothing, MayEscape);
646  }
647
648  const RetainSummary *getPersistentStopSummary() {
649    return getPersistentSummary(RetEffect::MakeNoRet(),
650                                StopTracking, StopTracking);
651  }
652
653  void InitializeClassMethodSummaries();
654  void InitializeMethodSummaries();
655private:
656  void addNSObjectClsMethSummary(Selector S, const RetainSummary *Summ) {
657    ObjCClassMethodSummaries[S] = Summ;
658  }
659
660  void addNSObjectMethSummary(Selector S, const RetainSummary *Summ) {
661    ObjCMethodSummaries[S] = Summ;
662  }
663
664  void addClassMethSummary(const char* Cls, const char* name,
665                           const RetainSummary *Summ, bool isNullary = true) {
666    IdentifierInfo* ClsII = &Ctx.Idents.get(Cls);
667    Selector S = isNullary ? GetNullarySelector(name, Ctx)
668                           : GetUnarySelector(name, Ctx);
669    ObjCClassMethodSummaries[ObjCSummaryKey(ClsII, S)]  = Summ;
670  }
671
672  void addInstMethSummary(const char* Cls, const char* nullaryName,
673                          const RetainSummary *Summ) {
674    IdentifierInfo* ClsII = &Ctx.Idents.get(Cls);
675    Selector S = GetNullarySelector(nullaryName, Ctx);
676    ObjCMethodSummaries[ObjCSummaryKey(ClsII, S)]  = Summ;
677  }
678
679  void addMethodSummary(IdentifierInfo *ClsII, ObjCMethodSummariesTy &Summaries,
680                        const RetainSummary *Summ, va_list argp) {
681    Selector S = getKeywordSelector(Ctx, argp);
682    Summaries[ObjCSummaryKey(ClsII, S)] = Summ;
683  }
684
685  void addInstMethSummary(const char* Cls, const RetainSummary * Summ, ...) {
686    va_list argp;
687    va_start(argp, Summ);
688    addMethodSummary(&Ctx.Idents.get(Cls), ObjCMethodSummaries, Summ, argp);
689    va_end(argp);
690  }
691
692  void addClsMethSummary(const char* Cls, const RetainSummary * Summ, ...) {
693    va_list argp;
694    va_start(argp, Summ);
695    addMethodSummary(&Ctx.Idents.get(Cls),ObjCClassMethodSummaries, Summ, argp);
696    va_end(argp);
697  }
698
699  void addClsMethSummary(IdentifierInfo *II, const RetainSummary * Summ, ...) {
700    va_list argp;
701    va_start(argp, Summ);
702    addMethodSummary(II, ObjCClassMethodSummaries, Summ, argp);
703    va_end(argp);
704  }
705
706public:
707
708  RetainSummaryManager(ASTContext &ctx, bool gcenabled, bool usesARC)
709   : Ctx(ctx),
710     GCEnabled(gcenabled),
711     ARCEnabled(usesARC),
712     AF(BPAlloc), ScratchArgs(AF.getEmptyMap()),
713     ObjCAllocRetE(gcenabled
714                    ? RetEffect::MakeGCNotOwned()
715                    : (usesARC ? RetEffect::MakeNotOwned(RetEffect::ObjC)
716                               : RetEffect::MakeOwned(RetEffect::ObjC, true))),
717     ObjCInitRetE(gcenabled
718                    ? RetEffect::MakeGCNotOwned()
719                    : (usesARC ? RetEffect::MakeNotOwned(RetEffect::ObjC)
720                               : RetEffect::MakeOwnedWhenTrackedReceiver())) {
721    InitializeClassMethodSummaries();
722    InitializeMethodSummaries();
723  }
724
725  const RetainSummary *getSummary(const CallEvent &Call,
726                                  ProgramStateRef State = nullptr);
727
728  const RetainSummary *getFunctionSummary(const FunctionDecl *FD);
729
730  const RetainSummary *getMethodSummary(Selector S, const ObjCInterfaceDecl *ID,
731                                        const ObjCMethodDecl *MD,
732                                        QualType RetTy,
733                                        ObjCMethodSummariesTy &CachedSummaries);
734
735  const RetainSummary *getInstanceMethodSummary(const ObjCMethodCall &M,
736                                                ProgramStateRef State);
737
738  const RetainSummary *getClassMethodSummary(const ObjCMethodCall &M) {
739    assert(!M.isInstanceMessage());
740    const ObjCInterfaceDecl *Class = M.getReceiverInterface();
741
742    return getMethodSummary(M.getSelector(), Class, M.getDecl(),
743                            M.getResultType(), ObjCClassMethodSummaries);
744  }
745
746  /// getMethodSummary - This version of getMethodSummary is used to query
747  ///  the summary for the current method being analyzed.
748  const RetainSummary *getMethodSummary(const ObjCMethodDecl *MD) {
749    const ObjCInterfaceDecl *ID = MD->getClassInterface();
750    Selector S = MD->getSelector();
751    QualType ResultTy = MD->getReturnType();
752
753    ObjCMethodSummariesTy *CachedSummaries;
754    if (MD->isInstanceMethod())
755      CachedSummaries = &ObjCMethodSummaries;
756    else
757      CachedSummaries = &ObjCClassMethodSummaries;
758
759    return getMethodSummary(S, ID, MD, ResultTy, *CachedSummaries);
760  }
761
762  const RetainSummary *getStandardMethodSummary(const ObjCMethodDecl *MD,
763                                                Selector S, QualType RetTy);
764
765  /// Determine if there is a special return effect for this function or method.
766  Optional<RetEffect> getRetEffectFromAnnotations(QualType RetTy,
767                                                  const Decl *D);
768
769  void updateSummaryFromAnnotations(const RetainSummary *&Summ,
770                                    const ObjCMethodDecl *MD);
771
772  void updateSummaryFromAnnotations(const RetainSummary *&Summ,
773                                    const FunctionDecl *FD);
774
775  void updateSummaryForCall(const RetainSummary *&Summ,
776                            const CallEvent &Call);
777
778  bool isGCEnabled() const { return GCEnabled; }
779
780  bool isARCEnabled() const { return ARCEnabled; }
781
782  bool isARCorGCEnabled() const { return GCEnabled || ARCEnabled; }
783
784  RetEffect getObjAllocRetEffect() const { return ObjCAllocRetE; }
785
786  friend class RetainSummaryTemplate;
787};
788
789// Used to avoid allocating long-term (BPAlloc'd) memory for default retain
790// summaries. If a function or method looks like it has a default summary, but
791// it has annotations, the annotations are added to the stack-based template
792// and then copied into managed memory.
793class RetainSummaryTemplate {
794  RetainSummaryManager &Manager;
795  const RetainSummary *&RealSummary;
796  RetainSummary ScratchSummary;
797  bool Accessed;
798public:
799  RetainSummaryTemplate(const RetainSummary *&real, RetainSummaryManager &mgr)
800    : Manager(mgr), RealSummary(real), ScratchSummary(*real), Accessed(false) {}
801
802  ~RetainSummaryTemplate() {
803    if (Accessed)
804      RealSummary = Manager.getPersistentSummary(ScratchSummary);
805  }
806
807  RetainSummary &operator*() {
808    Accessed = true;
809    return ScratchSummary;
810  }
811
812  RetainSummary *operator->() {
813    Accessed = true;
814    return &ScratchSummary;
815  }
816};
817
818} // end anonymous namespace
819
820//===----------------------------------------------------------------------===//
821// Implementation of checker data structures.
822//===----------------------------------------------------------------------===//
823
824ArgEffects RetainSummaryManager::getArgEffects() {
825  ArgEffects AE = ScratchArgs;
826  ScratchArgs = AF.getEmptyMap();
827  return AE;
828}
829
830const RetainSummary *
831RetainSummaryManager::getPersistentSummary(const RetainSummary &OldSumm) {
832  // Unique "simple" summaries -- those without ArgEffects.
833  if (OldSumm.isSimple()) {
834    llvm::FoldingSetNodeID ID;
835    OldSumm.Profile(ID);
836
837    void *Pos;
838    CachedSummaryNode *N = SimpleSummaries.FindNodeOrInsertPos(ID, Pos);
839
840    if (!N) {
841      N = (CachedSummaryNode *) BPAlloc.Allocate<CachedSummaryNode>();
842      new (N) CachedSummaryNode(OldSumm);
843      SimpleSummaries.InsertNode(N, Pos);
844    }
845
846    return &N->getValue();
847  }
848
849  RetainSummary *Summ = (RetainSummary *) BPAlloc.Allocate<RetainSummary>();
850  new (Summ) RetainSummary(OldSumm);
851  return Summ;
852}
853
854//===----------------------------------------------------------------------===//
855// Summary creation for functions (largely uses of Core Foundation).
856//===----------------------------------------------------------------------===//
857
858static bool isRetain(const FunctionDecl *FD, StringRef FName) {
859  return FName.endswith("Retain");
860}
861
862static bool isRelease(const FunctionDecl *FD, StringRef FName) {
863  return FName.endswith("Release");
864}
865
866static bool isAutorelease(const FunctionDecl *FD, StringRef FName) {
867  return FName.endswith("Autorelease");
868}
869
870static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName) {
871  // FIXME: Remove FunctionDecl parameter.
872  // FIXME: Is it really okay if MakeCollectable isn't a suffix?
873  return FName.find("MakeCollectable") != StringRef::npos;
874}
875
876static ArgEffect getStopTrackingHardEquivalent(ArgEffect E) {
877  switch (E) {
878  case DoNothing:
879  case Autorelease:
880  case DecRefBridgedTransferred:
881  case IncRef:
882  case IncRefMsg:
883  case MakeCollectable:
884  case MayEscape:
885  case StopTracking:
886  case StopTrackingHard:
887    return StopTrackingHard;
888  case DecRef:
889  case DecRefAndStopTrackingHard:
890    return DecRefAndStopTrackingHard;
891  case DecRefMsg:
892  case DecRefMsgAndStopTrackingHard:
893    return DecRefMsgAndStopTrackingHard;
894  case Dealloc:
895    return Dealloc;
896  }
897
898  llvm_unreachable("Unknown ArgEffect kind");
899}
900
901void RetainSummaryManager::updateSummaryForCall(const RetainSummary *&S,
902                                                const CallEvent &Call) {
903  if (Call.hasNonZeroCallbackArg()) {
904    ArgEffect RecEffect =
905      getStopTrackingHardEquivalent(S->getReceiverEffect());
906    ArgEffect DefEffect =
907      getStopTrackingHardEquivalent(S->getDefaultArgEffect());
908
909    ArgEffects CustomArgEffects = S->getArgEffects();
910    for (ArgEffects::iterator I = CustomArgEffects.begin(),
911                              E = CustomArgEffects.end();
912         I != E; ++I) {
913      ArgEffect Translated = getStopTrackingHardEquivalent(I->second);
914      if (Translated != DefEffect)
915        ScratchArgs = AF.add(ScratchArgs, I->first, Translated);
916    }
917
918    RetEffect RE = RetEffect::MakeNoRetHard();
919
920    // Special cases where the callback argument CANNOT free the return value.
921    // This can generally only happen if we know that the callback will only be
922    // called when the return value is already being deallocated.
923    if (const SimpleFunctionCall *FC = dyn_cast<SimpleFunctionCall>(&Call)) {
924      if (IdentifierInfo *Name = FC->getDecl()->getIdentifier()) {
925        // When the CGBitmapContext is deallocated, the callback here will free
926        // the associated data buffer.
927        if (Name->isStr("CGBitmapContextCreateWithData"))
928          RE = S->getRetEffect();
929      }
930    }
931
932    S = getPersistentSummary(RE, RecEffect, DefEffect);
933  }
934
935  // Special case '[super init];' and '[self init];'
936  //
937  // Even though calling '[super init]' without assigning the result to self
938  // and checking if the parent returns 'nil' is a bad pattern, it is common.
939  // Additionally, our Self Init checker already warns about it. To avoid
940  // overwhelming the user with messages from both checkers, we model the case
941  // of '[super init]' in cases when it is not consumed by another expression
942  // as if the call preserves the value of 'self'; essentially, assuming it can
943  // never fail and return 'nil'.
944  // Note, we don't want to just stop tracking the value since we want the
945  // RetainCount checker to report leaks and use-after-free if SelfInit checker
946  // is turned off.
947  if (const ObjCMethodCall *MC = dyn_cast<ObjCMethodCall>(&Call)) {
948    if (MC->getMethodFamily() == OMF_init && MC->isReceiverSelfOrSuper()) {
949
950      // Check if the message is not consumed, we know it will not be used in
951      // an assignment, ex: "self = [super init]".
952      const Expr *ME = MC->getOriginExpr();
953      const LocationContext *LCtx = MC->getLocationContext();
954      ParentMap &PM = LCtx->getAnalysisDeclContext()->getParentMap();
955      if (!PM.isConsumedExpr(ME)) {
956        RetainSummaryTemplate ModifiableSummaryTemplate(S, *this);
957        ModifiableSummaryTemplate->setReceiverEffect(DoNothing);
958        ModifiableSummaryTemplate->setRetEffect(RetEffect::MakeNoRet());
959      }
960    }
961
962  }
963}
964
965const RetainSummary *
966RetainSummaryManager::getSummary(const CallEvent &Call,
967                                 ProgramStateRef State) {
968  const RetainSummary *Summ;
969  switch (Call.getKind()) {
970  case CE_Function:
971    Summ = getFunctionSummary(cast<SimpleFunctionCall>(Call).getDecl());
972    break;
973  case CE_CXXMember:
974  case CE_CXXMemberOperator:
975  case CE_Block:
976  case CE_CXXConstructor:
977  case CE_CXXDestructor:
978  case CE_CXXAllocator:
979    // FIXME: These calls are currently unsupported.
980    return getPersistentStopSummary();
981  case CE_ObjCMessage: {
982    const ObjCMethodCall &Msg = cast<ObjCMethodCall>(Call);
983    if (Msg.isInstanceMessage())
984      Summ = getInstanceMethodSummary(Msg, State);
985    else
986      Summ = getClassMethodSummary(Msg);
987    break;
988  }
989  }
990
991  updateSummaryForCall(Summ, Call);
992
993  assert(Summ && "Unknown call type?");
994  return Summ;
995}
996
997const RetainSummary *
998RetainSummaryManager::getFunctionSummary(const FunctionDecl *FD) {
999  // If we don't know what function we're calling, use our default summary.
1000  if (!FD)
1001    return getDefaultSummary();
1002
1003  // Look up a summary in our cache of FunctionDecls -> Summaries.
1004  FuncSummariesTy::iterator I = FuncSummaries.find(FD);
1005  if (I != FuncSummaries.end())
1006    return I->second;
1007
1008  // No summary?  Generate one.
1009  const RetainSummary *S = nullptr;
1010  bool AllowAnnotations = true;
1011
1012  do {
1013    // We generate "stop" summaries for implicitly defined functions.
1014    if (FD->isImplicit()) {
1015      S = getPersistentStopSummary();
1016      break;
1017    }
1018
1019    // [PR 3337] Use 'getAs<FunctionType>' to strip away any typedefs on the
1020    // function's type.
1021    const FunctionType* FT = FD->getType()->getAs<FunctionType>();
1022    const IdentifierInfo *II = FD->getIdentifier();
1023    if (!II)
1024      break;
1025
1026    StringRef FName = II->getName();
1027
1028    // Strip away preceding '_'.  Doing this here will effect all the checks
1029    // down below.
1030    FName = FName.substr(FName.find_first_not_of('_'));
1031
1032    // Inspect the result type.
1033    QualType RetTy = FT->getReturnType();
1034
1035    // FIXME: This should all be refactored into a chain of "summary lookup"
1036    //  filters.
1037    assert(ScratchArgs.isEmpty());
1038
1039    if (FName == "pthread_create" || FName == "pthread_setspecific") {
1040      // Part of: <rdar://problem/7299394> and <rdar://problem/11282706>.
1041      // This will be addressed better with IPA.
1042      S = getPersistentStopSummary();
1043    } else if (FName == "NSMakeCollectable") {
1044      // Handle: id NSMakeCollectable(CFTypeRef)
1045      S = (RetTy->isObjCIdType())
1046          ? getUnarySummary(FT, cfmakecollectable)
1047          : getPersistentStopSummary();
1048      // The headers on OS X 10.8 use cf_consumed/ns_returns_retained,
1049      // but we can fully model NSMakeCollectable ourselves.
1050      AllowAnnotations = false;
1051    } else if (FName == "CFPlugInInstanceCreate") {
1052      S = getPersistentSummary(RetEffect::MakeNoRet());
1053    } else if (FName == "IOBSDNameMatching" ||
1054               FName == "IOServiceMatching" ||
1055               FName == "IOServiceNameMatching" ||
1056               FName == "IORegistryEntrySearchCFProperty" ||
1057               FName == "IORegistryEntryIDMatching" ||
1058               FName == "IOOpenFirmwarePathMatching") {
1059      // Part of <rdar://problem/6961230>. (IOKit)
1060      // This should be addressed using a API table.
1061      S = getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true),
1062                               DoNothing, DoNothing);
1063    } else if (FName == "IOServiceGetMatchingService" ||
1064               FName == "IOServiceGetMatchingServices") {
1065      // FIXES: <rdar://problem/6326900>
1066      // This should be addressed using a API table.  This strcmp is also
1067      // a little gross, but there is no need to super optimize here.
1068      ScratchArgs = AF.add(ScratchArgs, 1, DecRef);
1069      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1070    } else if (FName == "IOServiceAddNotification" ||
1071               FName == "IOServiceAddMatchingNotification") {
1072      // Part of <rdar://problem/6961230>. (IOKit)
1073      // This should be addressed using a API table.
1074      ScratchArgs = AF.add(ScratchArgs, 2, DecRef);
1075      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1076    } else if (FName == "CVPixelBufferCreateWithBytes") {
1077      // FIXES: <rdar://problem/7283567>
1078      // Eventually this can be improved by recognizing that the pixel
1079      // buffer passed to CVPixelBufferCreateWithBytes is released via
1080      // a callback and doing full IPA to make sure this is done correctly.
1081      // FIXME: This function has an out parameter that returns an
1082      // allocated object.
1083      ScratchArgs = AF.add(ScratchArgs, 7, StopTracking);
1084      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1085    } else if (FName == "CGBitmapContextCreateWithData") {
1086      // FIXES: <rdar://problem/7358899>
1087      // Eventually this can be improved by recognizing that 'releaseInfo'
1088      // passed to CGBitmapContextCreateWithData is released via
1089      // a callback and doing full IPA to make sure this is done correctly.
1090      ScratchArgs = AF.add(ScratchArgs, 8, StopTracking);
1091      S = getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true),
1092                               DoNothing, DoNothing);
1093    } else if (FName == "CVPixelBufferCreateWithPlanarBytes") {
1094      // FIXES: <rdar://problem/7283567>
1095      // Eventually this can be improved by recognizing that the pixel
1096      // buffer passed to CVPixelBufferCreateWithPlanarBytes is released
1097      // via a callback and doing full IPA to make sure this is done
1098      // correctly.
1099      ScratchArgs = AF.add(ScratchArgs, 12, StopTracking);
1100      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1101    } else if (FName == "dispatch_set_context" ||
1102               FName == "xpc_connection_set_context") {
1103      // <rdar://problem/11059275> - The analyzer currently doesn't have
1104      // a good way to reason about the finalizer function for libdispatch.
1105      // If we pass a context object that is memory managed, stop tracking it.
1106      // <rdar://problem/13783514> - Same problem, but for XPC.
1107      // FIXME: this hack should possibly go away once we can handle
1108      // libdispatch and XPC finalizers.
1109      ScratchArgs = AF.add(ScratchArgs, 1, StopTracking);
1110      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1111    } else if (FName.startswith("NSLog")) {
1112      S = getDoNothingSummary();
1113    } else if (FName.startswith("NS") &&
1114                (FName.find("Insert") != StringRef::npos)) {
1115      // Whitelist NSXXInsertXX, for example NSMapInsertIfAbsent, since they can
1116      // be deallocated by NSMapRemove. (radar://11152419)
1117      ScratchArgs = AF.add(ScratchArgs, 1, StopTracking);
1118      ScratchArgs = AF.add(ScratchArgs, 2, StopTracking);
1119      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1120    }
1121
1122    // Did we get a summary?
1123    if (S)
1124      break;
1125
1126    if (RetTy->isPointerType()) {
1127      // For CoreFoundation ('CF') types.
1128      if (cocoa::isRefType(RetTy, "CF", FName)) {
1129        if (isRetain(FD, FName)) {
1130          S = getUnarySummary(FT, cfretain);
1131        } else if (isAutorelease(FD, FName)) {
1132          S = getUnarySummary(FT, cfautorelease);
1133          // The headers use cf_consumed, but we can fully model CFAutorelease
1134          // ourselves.
1135          AllowAnnotations = false;
1136        } else if (isMakeCollectable(FD, FName)) {
1137          S = getUnarySummary(FT, cfmakecollectable);
1138          AllowAnnotations = false;
1139        } else {
1140          S = getCFCreateGetRuleSummary(FD);
1141        }
1142
1143        break;
1144      }
1145
1146      // For CoreGraphics ('CG') types.
1147      if (cocoa::isRefType(RetTy, "CG", FName)) {
1148        if (isRetain(FD, FName))
1149          S = getUnarySummary(FT, cfretain);
1150        else
1151          S = getCFCreateGetRuleSummary(FD);
1152
1153        break;
1154      }
1155
1156      // For the Disk Arbitration API (DiskArbitration/DADisk.h)
1157      if (cocoa::isRefType(RetTy, "DADisk") ||
1158          cocoa::isRefType(RetTy, "DADissenter") ||
1159          cocoa::isRefType(RetTy, "DASessionRef")) {
1160        S = getCFCreateGetRuleSummary(FD);
1161        break;
1162      }
1163
1164      if (FD->hasAttr<CFAuditedTransferAttr>()) {
1165        S = getCFCreateGetRuleSummary(FD);
1166        break;
1167      }
1168
1169      break;
1170    }
1171
1172    // Check for release functions, the only kind of functions that we care
1173    // about that don't return a pointer type.
1174    if (FName[0] == 'C' && (FName[1] == 'F' || FName[1] == 'G')) {
1175      // Test for 'CGCF'.
1176      FName = FName.substr(FName.startswith("CGCF") ? 4 : 2);
1177
1178      if (isRelease(FD, FName))
1179        S = getUnarySummary(FT, cfrelease);
1180      else {
1181        assert (ScratchArgs.isEmpty());
1182        // Remaining CoreFoundation and CoreGraphics functions.
1183        // We use to assume that they all strictly followed the ownership idiom
1184        // and that ownership cannot be transferred.  While this is technically
1185        // correct, many methods allow a tracked object to escape.  For example:
1186        //
1187        //   CFMutableDictionaryRef x = CFDictionaryCreateMutable(...);
1188        //   CFDictionaryAddValue(y, key, x);
1189        //   CFRelease(x);
1190        //   ... it is okay to use 'x' since 'y' has a reference to it
1191        //
1192        // We handle this and similar cases with the follow heuristic.  If the
1193        // function name contains "InsertValue", "SetValue", "AddValue",
1194        // "AppendValue", or "SetAttribute", then we assume that arguments may
1195        // "escape."  This means that something else holds on to the object,
1196        // allowing it be used even after its local retain count drops to 0.
1197        ArgEffect E = (StrInStrNoCase(FName, "InsertValue") != StringRef::npos||
1198                       StrInStrNoCase(FName, "AddValue") != StringRef::npos ||
1199                       StrInStrNoCase(FName, "SetValue") != StringRef::npos ||
1200                       StrInStrNoCase(FName, "AppendValue") != StringRef::npos||
1201                       StrInStrNoCase(FName, "SetAttribute") != StringRef::npos)
1202                      ? MayEscape : DoNothing;
1203
1204        S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, E);
1205      }
1206    }
1207  }
1208  while (0);
1209
1210  // If we got all the way here without any luck, use a default summary.
1211  if (!S)
1212    S = getDefaultSummary();
1213
1214  // Annotations override defaults.
1215  if (AllowAnnotations)
1216    updateSummaryFromAnnotations(S, FD);
1217
1218  FuncSummaries[FD] = S;
1219  return S;
1220}
1221
1222const RetainSummary *
1223RetainSummaryManager::getCFCreateGetRuleSummary(const FunctionDecl *FD) {
1224  if (coreFoundation::followsCreateRule(FD))
1225    return getCFSummaryCreateRule(FD);
1226
1227  return getCFSummaryGetRule(FD);
1228}
1229
1230const RetainSummary *
1231RetainSummaryManager::getUnarySummary(const FunctionType* FT,
1232                                      UnaryFuncKind func) {
1233
1234  // Sanity check that this is *really* a unary function.  This can
1235  // happen if people do weird things.
1236  const FunctionProtoType* FTP = dyn_cast<FunctionProtoType>(FT);
1237  if (!FTP || FTP->getNumParams() != 1)
1238    return getPersistentStopSummary();
1239
1240  assert (ScratchArgs.isEmpty());
1241
1242  ArgEffect Effect;
1243  switch (func) {
1244  case cfretain: Effect = IncRef; break;
1245  case cfrelease: Effect = DecRef; break;
1246  case cfautorelease: Effect = Autorelease; break;
1247  case cfmakecollectable: Effect = MakeCollectable; break;
1248  }
1249
1250  ScratchArgs = AF.add(ScratchArgs, 0, Effect);
1251  return getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1252}
1253
1254const RetainSummary *
1255RetainSummaryManager::getCFSummaryCreateRule(const FunctionDecl *FD) {
1256  assert (ScratchArgs.isEmpty());
1257
1258  return getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true));
1259}
1260
1261const RetainSummary *
1262RetainSummaryManager::getCFSummaryGetRule(const FunctionDecl *FD) {
1263  assert (ScratchArgs.isEmpty());
1264  return getPersistentSummary(RetEffect::MakeNotOwned(RetEffect::CF),
1265                              DoNothing, DoNothing);
1266}
1267
1268//===----------------------------------------------------------------------===//
1269// Summary creation for Selectors.
1270//===----------------------------------------------------------------------===//
1271
1272Optional<RetEffect>
1273RetainSummaryManager::getRetEffectFromAnnotations(QualType RetTy,
1274                                                  const Decl *D) {
1275  if (cocoa::isCocoaObjectRef(RetTy)) {
1276    if (D->hasAttr<NSReturnsRetainedAttr>())
1277      return ObjCAllocRetE;
1278
1279    if (D->hasAttr<NSReturnsNotRetainedAttr>() ||
1280        D->hasAttr<NSReturnsAutoreleasedAttr>())
1281      return RetEffect::MakeNotOwned(RetEffect::ObjC);
1282
1283  } else if (!RetTy->isPointerType()) {
1284    return None;
1285  }
1286
1287  if (D->hasAttr<CFReturnsRetainedAttr>())
1288    return RetEffect::MakeOwned(RetEffect::CF, true);
1289
1290  if (D->hasAttr<CFReturnsNotRetainedAttr>())
1291    return RetEffect::MakeNotOwned(RetEffect::CF);
1292
1293  return None;
1294}
1295
1296void
1297RetainSummaryManager::updateSummaryFromAnnotations(const RetainSummary *&Summ,
1298                                                   const FunctionDecl *FD) {
1299  if (!FD)
1300    return;
1301
1302  assert(Summ && "Must have a summary to add annotations to.");
1303  RetainSummaryTemplate Template(Summ, *this);
1304
1305  // Effects on the parameters.
1306  unsigned parm_idx = 0;
1307  for (FunctionDecl::param_const_iterator pi = FD->param_begin(),
1308         pe = FD->param_end(); pi != pe; ++pi, ++parm_idx) {
1309    const ParmVarDecl *pd = *pi;
1310    if (pd->hasAttr<NSConsumedAttr>())
1311      Template->addArg(AF, parm_idx, DecRefMsg);
1312    else if (pd->hasAttr<CFConsumedAttr>())
1313      Template->addArg(AF, parm_idx, DecRef);
1314  }
1315
1316  QualType RetTy = FD->getReturnType();
1317  if (Optional<RetEffect> RetE = getRetEffectFromAnnotations(RetTy, FD))
1318    Template->setRetEffect(*RetE);
1319}
1320
1321void
1322RetainSummaryManager::updateSummaryFromAnnotations(const RetainSummary *&Summ,
1323                                                   const ObjCMethodDecl *MD) {
1324  if (!MD)
1325    return;
1326
1327  assert(Summ && "Must have a valid summary to add annotations to");
1328  RetainSummaryTemplate Template(Summ, *this);
1329
1330  // Effects on the receiver.
1331  if (MD->hasAttr<NSConsumesSelfAttr>())
1332    Template->setReceiverEffect(DecRefMsg);
1333
1334  // Effects on the parameters.
1335  unsigned parm_idx = 0;
1336  for (ObjCMethodDecl::param_const_iterator
1337         pi=MD->param_begin(), pe=MD->param_end();
1338       pi != pe; ++pi, ++parm_idx) {
1339    const ParmVarDecl *pd = *pi;
1340    if (pd->hasAttr<NSConsumedAttr>())
1341      Template->addArg(AF, parm_idx, DecRefMsg);
1342    else if (pd->hasAttr<CFConsumedAttr>()) {
1343      Template->addArg(AF, parm_idx, DecRef);
1344    }
1345  }
1346
1347  QualType RetTy = MD->getReturnType();
1348  if (Optional<RetEffect> RetE = getRetEffectFromAnnotations(RetTy, MD))
1349    Template->setRetEffect(*RetE);
1350}
1351
1352const RetainSummary *
1353RetainSummaryManager::getStandardMethodSummary(const ObjCMethodDecl *MD,
1354                                               Selector S, QualType RetTy) {
1355  // Any special effects?
1356  ArgEffect ReceiverEff = DoNothing;
1357  RetEffect ResultEff = RetEffect::MakeNoRet();
1358
1359  // Check the method family, and apply any default annotations.
1360  switch (MD ? MD->getMethodFamily() : S.getMethodFamily()) {
1361    case OMF_None:
1362    case OMF_performSelector:
1363      // Assume all Objective-C methods follow Cocoa Memory Management rules.
1364      // FIXME: Does the non-threaded performSelector family really belong here?
1365      // The selector could be, say, @selector(copy).
1366      if (cocoa::isCocoaObjectRef(RetTy))
1367        ResultEff = RetEffect::MakeNotOwned(RetEffect::ObjC);
1368      else if (coreFoundation::isCFObjectRef(RetTy)) {
1369        // ObjCMethodDecl currently doesn't consider CF objects as valid return
1370        // values for alloc, new, copy, or mutableCopy, so we have to
1371        // double-check with the selector. This is ugly, but there aren't that
1372        // many Objective-C methods that return CF objects, right?
1373        if (MD) {
1374          switch (S.getMethodFamily()) {
1375          case OMF_alloc:
1376          case OMF_new:
1377          case OMF_copy:
1378          case OMF_mutableCopy:
1379            ResultEff = RetEffect::MakeOwned(RetEffect::CF, true);
1380            break;
1381          default:
1382            ResultEff = RetEffect::MakeNotOwned(RetEffect::CF);
1383            break;
1384          }
1385        } else {
1386          ResultEff = RetEffect::MakeNotOwned(RetEffect::CF);
1387        }
1388      }
1389      break;
1390    case OMF_init:
1391      ResultEff = ObjCInitRetE;
1392      ReceiverEff = DecRefMsg;
1393      break;
1394    case OMF_alloc:
1395    case OMF_new:
1396    case OMF_copy:
1397    case OMF_mutableCopy:
1398      if (cocoa::isCocoaObjectRef(RetTy))
1399        ResultEff = ObjCAllocRetE;
1400      else if (coreFoundation::isCFObjectRef(RetTy))
1401        ResultEff = RetEffect::MakeOwned(RetEffect::CF, true);
1402      break;
1403    case OMF_autorelease:
1404      ReceiverEff = Autorelease;
1405      break;
1406    case OMF_retain:
1407      ReceiverEff = IncRefMsg;
1408      break;
1409    case OMF_release:
1410      ReceiverEff = DecRefMsg;
1411      break;
1412    case OMF_dealloc:
1413      ReceiverEff = Dealloc;
1414      break;
1415    case OMF_self:
1416      // -self is handled specially by the ExprEngine to propagate the receiver.
1417      break;
1418    case OMF_retainCount:
1419    case OMF_finalize:
1420      // These methods don't return objects.
1421      break;
1422  }
1423
1424  // If one of the arguments in the selector has the keyword 'delegate' we
1425  // should stop tracking the reference count for the receiver.  This is
1426  // because the reference count is quite possibly handled by a delegate
1427  // method.
1428  if (S.isKeywordSelector()) {
1429    for (unsigned i = 0, e = S.getNumArgs(); i != e; ++i) {
1430      StringRef Slot = S.getNameForSlot(i);
1431      if (Slot.substr(Slot.size() - 8).equals_lower("delegate")) {
1432        if (ResultEff == ObjCInitRetE)
1433          ResultEff = RetEffect::MakeNoRetHard();
1434        else
1435          ReceiverEff = StopTrackingHard;
1436      }
1437    }
1438  }
1439
1440  if (ScratchArgs.isEmpty() && ReceiverEff == DoNothing &&
1441      ResultEff.getKind() == RetEffect::NoRet)
1442    return getDefaultSummary();
1443
1444  return getPersistentSummary(ResultEff, ReceiverEff, MayEscape);
1445}
1446
1447const RetainSummary *
1448RetainSummaryManager::getInstanceMethodSummary(const ObjCMethodCall &Msg,
1449                                               ProgramStateRef State) {
1450  const ObjCInterfaceDecl *ReceiverClass = nullptr;
1451
1452  // We do better tracking of the type of the object than the core ExprEngine.
1453  // See if we have its type in our private state.
1454  // FIXME: Eventually replace the use of state->get<RefBindings> with
1455  // a generic API for reasoning about the Objective-C types of symbolic
1456  // objects.
1457  SVal ReceiverV = Msg.getReceiverSVal();
1458  if (SymbolRef Sym = ReceiverV.getAsLocSymbol())
1459    if (const RefVal *T = getRefBinding(State, Sym))
1460      if (const ObjCObjectPointerType *PT =
1461            T->getType()->getAs<ObjCObjectPointerType>())
1462        ReceiverClass = PT->getInterfaceDecl();
1463
1464  // If we don't know what kind of object this is, fall back to its static type.
1465  if (!ReceiverClass)
1466    ReceiverClass = Msg.getReceiverInterface();
1467
1468  // FIXME: The receiver could be a reference to a class, meaning that
1469  //  we should use the class method.
1470  // id x = [NSObject class];
1471  // [x performSelector:... withObject:... afterDelay:...];
1472  Selector S = Msg.getSelector();
1473  const ObjCMethodDecl *Method = Msg.getDecl();
1474  if (!Method && ReceiverClass)
1475    Method = ReceiverClass->getInstanceMethod(S);
1476
1477  return getMethodSummary(S, ReceiverClass, Method, Msg.getResultType(),
1478                          ObjCMethodSummaries);
1479}
1480
1481const RetainSummary *
1482RetainSummaryManager::getMethodSummary(Selector S, const ObjCInterfaceDecl *ID,
1483                                       const ObjCMethodDecl *MD, QualType RetTy,
1484                                       ObjCMethodSummariesTy &CachedSummaries) {
1485
1486  // Look up a summary in our summary cache.
1487  const RetainSummary *Summ = CachedSummaries.find(ID, S);
1488
1489  if (!Summ) {
1490    Summ = getStandardMethodSummary(MD, S, RetTy);
1491
1492    // Annotations override defaults.
1493    updateSummaryFromAnnotations(Summ, MD);
1494
1495    // Memoize the summary.
1496    CachedSummaries[ObjCSummaryKey(ID, S)] = Summ;
1497  }
1498
1499  return Summ;
1500}
1501
1502void RetainSummaryManager::InitializeClassMethodSummaries() {
1503  assert(ScratchArgs.isEmpty());
1504  // Create the [NSAssertionHandler currentHander] summary.
1505  addClassMethSummary("NSAssertionHandler", "currentHandler",
1506                getPersistentSummary(RetEffect::MakeNotOwned(RetEffect::ObjC)));
1507
1508  // Create the [NSAutoreleasePool addObject:] summary.
1509  ScratchArgs = AF.add(ScratchArgs, 0, Autorelease);
1510  addClassMethSummary("NSAutoreleasePool", "addObject",
1511                      getPersistentSummary(RetEffect::MakeNoRet(),
1512                                           DoNothing, Autorelease));
1513}
1514
1515void RetainSummaryManager::InitializeMethodSummaries() {
1516
1517  assert (ScratchArgs.isEmpty());
1518
1519  // Create the "init" selector.  It just acts as a pass-through for the
1520  // receiver.
1521  const RetainSummary *InitSumm = getPersistentSummary(ObjCInitRetE, DecRefMsg);
1522  addNSObjectMethSummary(GetNullarySelector("init", Ctx), InitSumm);
1523
1524  // awakeAfterUsingCoder: behaves basically like an 'init' method.  It
1525  // claims the receiver and returns a retained object.
1526  addNSObjectMethSummary(GetUnarySelector("awakeAfterUsingCoder", Ctx),
1527                         InitSumm);
1528
1529  // The next methods are allocators.
1530  const RetainSummary *AllocSumm = getPersistentSummary(ObjCAllocRetE);
1531  const RetainSummary *CFAllocSumm =
1532    getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true));
1533
1534  // Create the "retain" selector.
1535  RetEffect NoRet = RetEffect::MakeNoRet();
1536  const RetainSummary *Summ = getPersistentSummary(NoRet, IncRefMsg);
1537  addNSObjectMethSummary(GetNullarySelector("retain", Ctx), Summ);
1538
1539  // Create the "release" selector.
1540  Summ = getPersistentSummary(NoRet, DecRefMsg);
1541  addNSObjectMethSummary(GetNullarySelector("release", Ctx), Summ);
1542
1543  // Create the -dealloc summary.
1544  Summ = getPersistentSummary(NoRet, Dealloc);
1545  addNSObjectMethSummary(GetNullarySelector("dealloc", Ctx), Summ);
1546
1547  // Create the "autorelease" selector.
1548  Summ = getPersistentSummary(NoRet, Autorelease);
1549  addNSObjectMethSummary(GetNullarySelector("autorelease", Ctx), Summ);
1550
1551  // For NSWindow, allocated objects are (initially) self-owned.
1552  // FIXME: For now we opt for false negatives with NSWindow, as these objects
1553  //  self-own themselves.  However, they only do this once they are displayed.
1554  //  Thus, we need to track an NSWindow's display status.
1555  //  This is tracked in <rdar://problem/6062711>.
1556  //  See also http://llvm.org/bugs/show_bug.cgi?id=3714.
1557  const RetainSummary *NoTrackYet = getPersistentSummary(RetEffect::MakeNoRet(),
1558                                                   StopTracking,
1559                                                   StopTracking);
1560
1561  addClassMethSummary("NSWindow", "alloc", NoTrackYet);
1562
1563  // For NSPanel (which subclasses NSWindow), allocated objects are not
1564  //  self-owned.
1565  // FIXME: For now we don't track NSPanels. object for the same reason
1566  //   as for NSWindow objects.
1567  addClassMethSummary("NSPanel", "alloc", NoTrackYet);
1568
1569  // For NSNull, objects returned by +null are singletons that ignore
1570  // retain/release semantics.  Just don't track them.
1571  // <rdar://problem/12858915>
1572  addClassMethSummary("NSNull", "null", NoTrackYet);
1573
1574  // Don't track allocated autorelease pools, as it is okay to prematurely
1575  // exit a method.
1576  addClassMethSummary("NSAutoreleasePool", "alloc", NoTrackYet);
1577  addClassMethSummary("NSAutoreleasePool", "allocWithZone", NoTrackYet, false);
1578  addClassMethSummary("NSAutoreleasePool", "new", NoTrackYet);
1579
1580  // Create summaries QCRenderer/QCView -createSnapShotImageOfType:
1581  addInstMethSummary("QCRenderer", AllocSumm,
1582                     "createSnapshotImageOfType", NULL);
1583  addInstMethSummary("QCView", AllocSumm,
1584                     "createSnapshotImageOfType", NULL);
1585
1586  // Create summaries for CIContext, 'createCGImage' and
1587  // 'createCGLayerWithSize'.  These objects are CF objects, and are not
1588  // automatically garbage collected.
1589  addInstMethSummary("CIContext", CFAllocSumm,
1590                     "createCGImage", "fromRect", NULL);
1591  addInstMethSummary("CIContext", CFAllocSumm,
1592                     "createCGImage", "fromRect", "format", "colorSpace", NULL);
1593  addInstMethSummary("CIContext", CFAllocSumm, "createCGLayerWithSize",
1594           "info", NULL);
1595}
1596
1597//===----------------------------------------------------------------------===//
1598// Error reporting.
1599//===----------------------------------------------------------------------===//
1600namespace {
1601  typedef llvm::DenseMap<const ExplodedNode *, const RetainSummary *>
1602    SummaryLogTy;
1603
1604  //===-------------===//
1605  // Bug Descriptions. //
1606  //===-------------===//
1607
1608  class CFRefBug : public BugType {
1609  protected:
1610    CFRefBug(const CheckerBase *checker, StringRef name)
1611        : BugType(checker, name, categories::MemoryCoreFoundationObjectiveC) {}
1612
1613  public:
1614
1615    // FIXME: Eventually remove.
1616    virtual const char *getDescription() const = 0;
1617
1618    virtual bool isLeak() const { return false; }
1619  };
1620
1621  class UseAfterRelease : public CFRefBug {
1622  public:
1623    UseAfterRelease(const CheckerBase *checker)
1624        : CFRefBug(checker, "Use-after-release") {}
1625
1626    const char *getDescription() const override {
1627      return "Reference-counted object is used after it is released";
1628    }
1629  };
1630
1631  class BadRelease : public CFRefBug {
1632  public:
1633    BadRelease(const CheckerBase *checker) : CFRefBug(checker, "Bad release") {}
1634
1635    const char *getDescription() const override {
1636      return "Incorrect decrement of the reference count of an object that is "
1637             "not owned at this point by the caller";
1638    }
1639  };
1640
1641  class DeallocGC : public CFRefBug {
1642  public:
1643    DeallocGC(const CheckerBase *checker)
1644        : CFRefBug(checker, "-dealloc called while using garbage collection") {}
1645
1646    const char *getDescription() const override {
1647      return "-dealloc called while using garbage collection";
1648    }
1649  };
1650
1651  class DeallocNotOwned : public CFRefBug {
1652  public:
1653    DeallocNotOwned(const CheckerBase *checker)
1654        : CFRefBug(checker, "-dealloc sent to non-exclusively owned object") {}
1655
1656    const char *getDescription() const override {
1657      return "-dealloc sent to object that may be referenced elsewhere";
1658    }
1659  };
1660
1661  class OverAutorelease : public CFRefBug {
1662  public:
1663    OverAutorelease(const CheckerBase *checker)
1664        : CFRefBug(checker, "Object autoreleased too many times") {}
1665
1666    const char *getDescription() const override {
1667      return "Object autoreleased too many times";
1668    }
1669  };
1670
1671  class ReturnedNotOwnedForOwned : public CFRefBug {
1672  public:
1673    ReturnedNotOwnedForOwned(const CheckerBase *checker)
1674        : CFRefBug(checker, "Method should return an owned object") {}
1675
1676    const char *getDescription() const override {
1677      return "Object with a +0 retain count returned to caller where a +1 "
1678             "(owning) retain count is expected";
1679    }
1680  };
1681
1682  class Leak : public CFRefBug {
1683  public:
1684    Leak(const CheckerBase *checker, StringRef name) : CFRefBug(checker, name) {
1685      // Leaks should not be reported if they are post-dominated by a sink.
1686      setSuppressOnSink(true);
1687    }
1688
1689    const char *getDescription() const override { return ""; }
1690
1691    bool isLeak() const override { return true; }
1692  };
1693
1694  //===---------===//
1695  // Bug Reports.  //
1696  //===---------===//
1697
1698  class CFRefReportVisitor : public BugReporterVisitorImpl<CFRefReportVisitor> {
1699  protected:
1700    SymbolRef Sym;
1701    const SummaryLogTy &SummaryLog;
1702    bool GCEnabled;
1703
1704  public:
1705    CFRefReportVisitor(SymbolRef sym, bool gcEnabled, const SummaryLogTy &log)
1706       : Sym(sym), SummaryLog(log), GCEnabled(gcEnabled) {}
1707
1708    void Profile(llvm::FoldingSetNodeID &ID) const override {
1709      static int x = 0;
1710      ID.AddPointer(&x);
1711      ID.AddPointer(Sym);
1712    }
1713
1714    PathDiagnosticPiece *VisitNode(const ExplodedNode *N,
1715                                   const ExplodedNode *PrevN,
1716                                   BugReporterContext &BRC,
1717                                   BugReport &BR) override;
1718
1719    PathDiagnosticPiece *getEndPath(BugReporterContext &BRC,
1720                                    const ExplodedNode *N,
1721                                    BugReport &BR) override;
1722  };
1723
1724  class CFRefLeakReportVisitor : public CFRefReportVisitor {
1725  public:
1726    CFRefLeakReportVisitor(SymbolRef sym, bool GCEnabled,
1727                           const SummaryLogTy &log)
1728       : CFRefReportVisitor(sym, GCEnabled, log) {}
1729
1730    PathDiagnosticPiece *getEndPath(BugReporterContext &BRC,
1731                                    const ExplodedNode *N,
1732                                    BugReport &BR) override;
1733
1734    BugReporterVisitor *clone() const override {
1735      // The curiously-recurring template pattern only works for one level of
1736      // subclassing. Rather than make a new template base for
1737      // CFRefReportVisitor, we simply override clone() to do the right thing.
1738      // This could be trouble someday if BugReporterVisitorImpl is ever
1739      // used for something else besides a convenient implementation of clone().
1740      return new CFRefLeakReportVisitor(*this);
1741    }
1742  };
1743
1744  class CFRefReport : public BugReport {
1745    void addGCModeDescription(const LangOptions &LOpts, bool GCEnabled);
1746
1747  public:
1748    CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1749                const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
1750                bool registerVisitor = true)
1751      : BugReport(D, D.getDescription(), n) {
1752      if (registerVisitor)
1753        addVisitor(new CFRefReportVisitor(sym, GCEnabled, Log));
1754      addGCModeDescription(LOpts, GCEnabled);
1755    }
1756
1757    CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1758                const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
1759                StringRef endText)
1760      : BugReport(D, D.getDescription(), endText, n) {
1761      addVisitor(new CFRefReportVisitor(sym, GCEnabled, Log));
1762      addGCModeDescription(LOpts, GCEnabled);
1763    }
1764
1765    std::pair<ranges_iterator, ranges_iterator> getRanges() override {
1766      const CFRefBug& BugTy = static_cast<CFRefBug&>(getBugType());
1767      if (!BugTy.isLeak())
1768        return BugReport::getRanges();
1769      else
1770        return std::make_pair(ranges_iterator(), ranges_iterator());
1771    }
1772  };
1773
1774  class CFRefLeakReport : public CFRefReport {
1775    const MemRegion* AllocBinding;
1776  public:
1777    CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1778                    const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
1779                    CheckerContext &Ctx,
1780                    bool IncludeAllocationLine);
1781
1782    PathDiagnosticLocation getLocation(const SourceManager &SM) const override {
1783      assert(Location.isValid());
1784      return Location;
1785    }
1786  };
1787} // end anonymous namespace
1788
1789void CFRefReport::addGCModeDescription(const LangOptions &LOpts,
1790                                       bool GCEnabled) {
1791  const char *GCModeDescription = nullptr;
1792
1793  switch (LOpts.getGC()) {
1794  case LangOptions::GCOnly:
1795    assert(GCEnabled);
1796    GCModeDescription = "Code is compiled to only use garbage collection";
1797    break;
1798
1799  case LangOptions::NonGC:
1800    assert(!GCEnabled);
1801    GCModeDescription = "Code is compiled to use reference counts";
1802    break;
1803
1804  case LangOptions::HybridGC:
1805    if (GCEnabled) {
1806      GCModeDescription = "Code is compiled to use either garbage collection "
1807                          "(GC) or reference counts (non-GC).  The bug occurs "
1808                          "with GC enabled";
1809      break;
1810    } else {
1811      GCModeDescription = "Code is compiled to use either garbage collection "
1812                          "(GC) or reference counts (non-GC).  The bug occurs "
1813                          "in non-GC mode";
1814      break;
1815    }
1816  }
1817
1818  assert(GCModeDescription && "invalid/unknown GC mode");
1819  addExtraText(GCModeDescription);
1820}
1821
1822static bool isNumericLiteralExpression(const Expr *E) {
1823  // FIXME: This set of cases was copied from SemaExprObjC.
1824  return isa<IntegerLiteral>(E) ||
1825         isa<CharacterLiteral>(E) ||
1826         isa<FloatingLiteral>(E) ||
1827         isa<ObjCBoolLiteralExpr>(E) ||
1828         isa<CXXBoolLiteralExpr>(E);
1829}
1830
1831PathDiagnosticPiece *CFRefReportVisitor::VisitNode(const ExplodedNode *N,
1832                                                   const ExplodedNode *PrevN,
1833                                                   BugReporterContext &BRC,
1834                                                   BugReport &BR) {
1835  // FIXME: We will eventually need to handle non-statement-based events
1836  // (__attribute__((cleanup))).
1837  if (!N->getLocation().getAs<StmtPoint>())
1838    return nullptr;
1839
1840  // Check if the type state has changed.
1841  ProgramStateRef PrevSt = PrevN->getState();
1842  ProgramStateRef CurrSt = N->getState();
1843  const LocationContext *LCtx = N->getLocationContext();
1844
1845  const RefVal* CurrT = getRefBinding(CurrSt, Sym);
1846  if (!CurrT) return nullptr;
1847
1848  const RefVal &CurrV = *CurrT;
1849  const RefVal *PrevT = getRefBinding(PrevSt, Sym);
1850
1851  // Create a string buffer to constain all the useful things we want
1852  // to tell the user.
1853  std::string sbuf;
1854  llvm::raw_string_ostream os(sbuf);
1855
1856  // This is the allocation site since the previous node had no bindings
1857  // for this symbol.
1858  if (!PrevT) {
1859    const Stmt *S = N->getLocation().castAs<StmtPoint>().getStmt();
1860
1861    if (isa<ObjCArrayLiteral>(S)) {
1862      os << "NSArray literal is an object with a +0 retain count";
1863    }
1864    else if (isa<ObjCDictionaryLiteral>(S)) {
1865      os << "NSDictionary literal is an object with a +0 retain count";
1866    }
1867    else if (const ObjCBoxedExpr *BL = dyn_cast<ObjCBoxedExpr>(S)) {
1868      if (isNumericLiteralExpression(BL->getSubExpr()))
1869        os << "NSNumber literal is an object with a +0 retain count";
1870      else {
1871        const ObjCInterfaceDecl *BoxClass = nullptr;
1872        if (const ObjCMethodDecl *Method = BL->getBoxingMethod())
1873          BoxClass = Method->getClassInterface();
1874
1875        // We should always be able to find the boxing class interface,
1876        // but consider this future-proofing.
1877        if (BoxClass)
1878          os << *BoxClass << " b";
1879        else
1880          os << "B";
1881
1882        os << "oxed expression produces an object with a +0 retain count";
1883      }
1884    }
1885    else {
1886      if (const CallExpr *CE = dyn_cast<CallExpr>(S)) {
1887        // Get the name of the callee (if it is available).
1888        SVal X = CurrSt->getSValAsScalarOrLoc(CE->getCallee(), LCtx);
1889        if (const FunctionDecl *FD = X.getAsFunctionDecl())
1890          os << "Call to function '" << *FD << '\'';
1891        else
1892          os << "function call";
1893      }
1894      else {
1895        assert(isa<ObjCMessageExpr>(S));
1896        CallEventManager &Mgr = CurrSt->getStateManager().getCallEventManager();
1897        CallEventRef<ObjCMethodCall> Call
1898          = Mgr.getObjCMethodCall(cast<ObjCMessageExpr>(S), CurrSt, LCtx);
1899
1900        switch (Call->getMessageKind()) {
1901        case OCM_Message:
1902          os << "Method";
1903          break;
1904        case OCM_PropertyAccess:
1905          os << "Property";
1906          break;
1907        case OCM_Subscript:
1908          os << "Subscript";
1909          break;
1910        }
1911      }
1912
1913      if (CurrV.getObjKind() == RetEffect::CF) {
1914        os << " returns a Core Foundation object with a ";
1915      }
1916      else {
1917        assert (CurrV.getObjKind() == RetEffect::ObjC);
1918        os << " returns an Objective-C object with a ";
1919      }
1920
1921      if (CurrV.isOwned()) {
1922        os << "+1 retain count";
1923
1924        if (GCEnabled) {
1925          assert(CurrV.getObjKind() == RetEffect::CF);
1926          os << ".  "
1927          "Core Foundation objects are not automatically garbage collected.";
1928        }
1929      }
1930      else {
1931        assert (CurrV.isNotOwned());
1932        os << "+0 retain count";
1933      }
1934    }
1935
1936    PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
1937                                  N->getLocationContext());
1938    return new PathDiagnosticEventPiece(Pos, os.str());
1939  }
1940
1941  // Gather up the effects that were performed on the object at this
1942  // program point
1943  SmallVector<ArgEffect, 2> AEffects;
1944
1945  const ExplodedNode *OrigNode = BRC.getNodeResolver().getOriginalNode(N);
1946  if (const RetainSummary *Summ = SummaryLog.lookup(OrigNode)) {
1947    // We only have summaries attached to nodes after evaluating CallExpr and
1948    // ObjCMessageExprs.
1949    const Stmt *S = N->getLocation().castAs<StmtPoint>().getStmt();
1950
1951    if (const CallExpr *CE = dyn_cast<CallExpr>(S)) {
1952      // Iterate through the parameter expressions and see if the symbol
1953      // was ever passed as an argument.
1954      unsigned i = 0;
1955
1956      for (CallExpr::const_arg_iterator AI=CE->arg_begin(), AE=CE->arg_end();
1957           AI!=AE; ++AI, ++i) {
1958
1959        // Retrieve the value of the argument.  Is it the symbol
1960        // we are interested in?
1961        if (CurrSt->getSValAsScalarOrLoc(*AI, LCtx).getAsLocSymbol() != Sym)
1962          continue;
1963
1964        // We have an argument.  Get the effect!
1965        AEffects.push_back(Summ->getArg(i));
1966      }
1967    }
1968    else if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S)) {
1969      if (const Expr *receiver = ME->getInstanceReceiver())
1970        if (CurrSt->getSValAsScalarOrLoc(receiver, LCtx)
1971              .getAsLocSymbol() == Sym) {
1972          // The symbol we are tracking is the receiver.
1973          AEffects.push_back(Summ->getReceiverEffect());
1974        }
1975    }
1976  }
1977
1978  do {
1979    // Get the previous type state.
1980    RefVal PrevV = *PrevT;
1981
1982    // Specially handle -dealloc.
1983    if (!GCEnabled && std::find(AEffects.begin(), AEffects.end(), Dealloc) !=
1984                          AEffects.end()) {
1985      // Determine if the object's reference count was pushed to zero.
1986      assert(!PrevV.hasSameState(CurrV) && "The state should have changed.");
1987      // We may not have transitioned to 'release' if we hit an error.
1988      // This case is handled elsewhere.
1989      if (CurrV.getKind() == RefVal::Released) {
1990        assert(CurrV.getCombinedCounts() == 0);
1991        os << "Object released by directly sending the '-dealloc' message";
1992        break;
1993      }
1994    }
1995
1996    // Specially handle CFMakeCollectable and friends.
1997    if (std::find(AEffects.begin(), AEffects.end(), MakeCollectable) !=
1998        AEffects.end()) {
1999      // Get the name of the function.
2000      const Stmt *S = N->getLocation().castAs<StmtPoint>().getStmt();
2001      SVal X =
2002        CurrSt->getSValAsScalarOrLoc(cast<CallExpr>(S)->getCallee(), LCtx);
2003      const FunctionDecl *FD = X.getAsFunctionDecl();
2004
2005      if (GCEnabled) {
2006        // Determine if the object's reference count was pushed to zero.
2007        assert(!PrevV.hasSameState(CurrV) && "The state should have changed.");
2008
2009        os << "In GC mode a call to '" << *FD
2010        <<  "' decrements an object's retain count and registers the "
2011        "object with the garbage collector. ";
2012
2013        if (CurrV.getKind() == RefVal::Released) {
2014          assert(CurrV.getCount() == 0);
2015          os << "Since it now has a 0 retain count the object can be "
2016          "automatically collected by the garbage collector.";
2017        }
2018        else
2019          os << "An object must have a 0 retain count to be garbage collected. "
2020          "After this call its retain count is +" << CurrV.getCount()
2021          << '.';
2022      }
2023      else
2024        os << "When GC is not enabled a call to '" << *FD
2025        << "' has no effect on its argument.";
2026
2027      // Nothing more to say.
2028      break;
2029    }
2030
2031    // Determine if the typestate has changed.
2032    if (!PrevV.hasSameState(CurrV))
2033      switch (CurrV.getKind()) {
2034        case RefVal::Owned:
2035        case RefVal::NotOwned:
2036
2037          if (PrevV.getCount() == CurrV.getCount()) {
2038            // Did an autorelease message get sent?
2039            if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount())
2040              return nullptr;
2041
2042            assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount());
2043            os << "Object autoreleased";
2044            break;
2045          }
2046
2047          if (PrevV.getCount() > CurrV.getCount())
2048            os << "Reference count decremented.";
2049          else
2050            os << "Reference count incremented.";
2051
2052          if (unsigned Count = CurrV.getCount())
2053            os << " The object now has a +" << Count << " retain count.";
2054
2055          if (PrevV.getKind() == RefVal::Released) {
2056            assert(GCEnabled && CurrV.getCount() > 0);
2057            os << " The object is not eligible for garbage collection until "
2058                  "the retain count reaches 0 again.";
2059          }
2060
2061          break;
2062
2063        case RefVal::Released:
2064          os << "Object released.";
2065          break;
2066
2067        case RefVal::ReturnedOwned:
2068          // Autoreleases can be applied after marking a node ReturnedOwned.
2069          if (CurrV.getAutoreleaseCount())
2070            return nullptr;
2071
2072          os << "Object returned to caller as an owning reference (single "
2073                "retain count transferred to caller)";
2074          break;
2075
2076        case RefVal::ReturnedNotOwned:
2077          os << "Object returned to caller with a +0 retain count";
2078          break;
2079
2080        default:
2081          return nullptr;
2082      }
2083
2084    // Emit any remaining diagnostics for the argument effects (if any).
2085    for (SmallVectorImpl<ArgEffect>::iterator I=AEffects.begin(),
2086         E=AEffects.end(); I != E; ++I) {
2087
2088      // A bunch of things have alternate behavior under GC.
2089      if (GCEnabled)
2090        switch (*I) {
2091          default: break;
2092          case Autorelease:
2093            os << "In GC mode an 'autorelease' has no effect.";
2094            continue;
2095          case IncRefMsg:
2096            os << "In GC mode the 'retain' message has no effect.";
2097            continue;
2098          case DecRefMsg:
2099            os << "In GC mode the 'release' message has no effect.";
2100            continue;
2101        }
2102    }
2103  } while (0);
2104
2105  if (os.str().empty())
2106    return nullptr; // We have nothing to say!
2107
2108  const Stmt *S = N->getLocation().castAs<StmtPoint>().getStmt();
2109  PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
2110                                N->getLocationContext());
2111  PathDiagnosticPiece *P = new PathDiagnosticEventPiece(Pos, os.str());
2112
2113  // Add the range by scanning the children of the statement for any bindings
2114  // to Sym.
2115  for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
2116       I!=E; ++I)
2117    if (const Expr *Exp = dyn_cast_or_null<Expr>(*I))
2118      if (CurrSt->getSValAsScalarOrLoc(Exp, LCtx).getAsLocSymbol() == Sym) {
2119        P->addRange(Exp->getSourceRange());
2120        break;
2121      }
2122
2123  return P;
2124}
2125
2126// Find the first node in the current function context that referred to the
2127// tracked symbol and the memory location that value was stored to. Note, the
2128// value is only reported if the allocation occurred in the same function as
2129// the leak. The function can also return a location context, which should be
2130// treated as interesting.
2131struct AllocationInfo {
2132  const ExplodedNode* N;
2133  const MemRegion *R;
2134  const LocationContext *InterestingMethodContext;
2135  AllocationInfo(const ExplodedNode *InN,
2136                 const MemRegion *InR,
2137                 const LocationContext *InInterestingMethodContext) :
2138    N(InN), R(InR), InterestingMethodContext(InInterestingMethodContext) {}
2139};
2140
2141static AllocationInfo
2142GetAllocationSite(ProgramStateManager& StateMgr, const ExplodedNode *N,
2143                  SymbolRef Sym) {
2144  const ExplodedNode *AllocationNode = N;
2145  const ExplodedNode *AllocationNodeInCurrentContext = N;
2146  const MemRegion *FirstBinding = nullptr;
2147  const LocationContext *LeakContext = N->getLocationContext();
2148
2149  // The location context of the init method called on the leaked object, if
2150  // available.
2151  const LocationContext *InitMethodContext = nullptr;
2152
2153  while (N) {
2154    ProgramStateRef St = N->getState();
2155    const LocationContext *NContext = N->getLocationContext();
2156
2157    if (!getRefBinding(St, Sym))
2158      break;
2159
2160    StoreManager::FindUniqueBinding FB(Sym);
2161    StateMgr.iterBindings(St, FB);
2162
2163    if (FB) {
2164      const MemRegion *R = FB.getRegion();
2165      const VarRegion *VR = R->getBaseRegion()->getAs<VarRegion>();
2166      // Do not show local variables belonging to a function other than
2167      // where the error is reported.
2168      if (!VR || VR->getStackFrame() == LeakContext->getCurrentStackFrame())
2169        FirstBinding = R;
2170    }
2171
2172    // AllocationNode is the last node in which the symbol was tracked.
2173    AllocationNode = N;
2174
2175    // AllocationNodeInCurrentContext, is the last node in the current context
2176    // in which the symbol was tracked.
2177    if (NContext == LeakContext)
2178      AllocationNodeInCurrentContext = N;
2179
2180    // Find the last init that was called on the given symbol and store the
2181    // init method's location context.
2182    if (!InitMethodContext)
2183      if (Optional<CallEnter> CEP = N->getLocation().getAs<CallEnter>()) {
2184        const Stmt *CE = CEP->getCallExpr();
2185        if (const ObjCMessageExpr *ME = dyn_cast_or_null<ObjCMessageExpr>(CE)) {
2186          const Stmt *RecExpr = ME->getInstanceReceiver();
2187          if (RecExpr) {
2188            SVal RecV = St->getSVal(RecExpr, NContext);
2189            if (ME->getMethodFamily() == OMF_init && RecV.getAsSymbol() == Sym)
2190              InitMethodContext = CEP->getCalleeContext();
2191          }
2192        }
2193      }
2194
2195    N = N->pred_empty() ? nullptr : *(N->pred_begin());
2196  }
2197
2198  // If we are reporting a leak of the object that was allocated with alloc,
2199  // mark its init method as interesting.
2200  const LocationContext *InterestingMethodContext = nullptr;
2201  if (InitMethodContext) {
2202    const ProgramPoint AllocPP = AllocationNode->getLocation();
2203    if (Optional<StmtPoint> SP = AllocPP.getAs<StmtPoint>())
2204      if (const ObjCMessageExpr *ME = SP->getStmtAs<ObjCMessageExpr>())
2205        if (ME->getMethodFamily() == OMF_alloc)
2206          InterestingMethodContext = InitMethodContext;
2207  }
2208
2209  // If allocation happened in a function different from the leak node context,
2210  // do not report the binding.
2211  assert(N && "Could not find allocation node");
2212  if (N->getLocationContext() != LeakContext) {
2213    FirstBinding = nullptr;
2214  }
2215
2216  return AllocationInfo(AllocationNodeInCurrentContext,
2217                        FirstBinding,
2218                        InterestingMethodContext);
2219}
2220
2221PathDiagnosticPiece*
2222CFRefReportVisitor::getEndPath(BugReporterContext &BRC,
2223                               const ExplodedNode *EndN,
2224                               BugReport &BR) {
2225  BR.markInteresting(Sym);
2226  return BugReporterVisitor::getDefaultEndPath(BRC, EndN, BR);
2227}
2228
2229PathDiagnosticPiece*
2230CFRefLeakReportVisitor::getEndPath(BugReporterContext &BRC,
2231                                   const ExplodedNode *EndN,
2232                                   BugReport &BR) {
2233
2234  // Tell the BugReporterContext to report cases when the tracked symbol is
2235  // assigned to different variables, etc.
2236  BR.markInteresting(Sym);
2237
2238  // We are reporting a leak.  Walk up the graph to get to the first node where
2239  // the symbol appeared, and also get the first VarDecl that tracked object
2240  // is stored to.
2241  AllocationInfo AllocI =
2242    GetAllocationSite(BRC.getStateManager(), EndN, Sym);
2243
2244  const MemRegion* FirstBinding = AllocI.R;
2245  BR.markInteresting(AllocI.InterestingMethodContext);
2246
2247  SourceManager& SM = BRC.getSourceManager();
2248
2249  // Compute an actual location for the leak.  Sometimes a leak doesn't
2250  // occur at an actual statement (e.g., transition between blocks; end
2251  // of function) so we need to walk the graph and compute a real location.
2252  const ExplodedNode *LeakN = EndN;
2253  PathDiagnosticLocation L = PathDiagnosticLocation::createEndOfPath(LeakN, SM);
2254
2255  std::string sbuf;
2256  llvm::raw_string_ostream os(sbuf);
2257
2258  os << "Object leaked: ";
2259
2260  if (FirstBinding) {
2261    os << "object allocated and stored into '"
2262       << FirstBinding->getString() << '\'';
2263  }
2264  else
2265    os << "allocated object";
2266
2267  // Get the retain count.
2268  const RefVal* RV = getRefBinding(EndN->getState(), Sym);
2269  assert(RV);
2270
2271  if (RV->getKind() == RefVal::ErrorLeakReturned) {
2272    // FIXME: Per comments in rdar://6320065, "create" only applies to CF
2273    // objects.  Only "copy", "alloc", "retain" and "new" transfer ownership
2274    // to the caller for NS objects.
2275    const Decl *D = &EndN->getCodeDecl();
2276
2277    os << (isa<ObjCMethodDecl>(D) ? " is returned from a method "
2278                                  : " is returned from a function ");
2279
2280    if (D->hasAttr<CFReturnsNotRetainedAttr>())
2281      os << "that is annotated as CF_RETURNS_NOT_RETAINED";
2282    else if (D->hasAttr<NSReturnsNotRetainedAttr>())
2283      os << "that is annotated as NS_RETURNS_NOT_RETAINED";
2284    else {
2285      if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
2286        os << "whose name ('" << MD->getSelector().getAsString()
2287           << "') does not start with 'copy', 'mutableCopy', 'alloc' or 'new'."
2288              "  This violates the naming convention rules"
2289              " given in the Memory Management Guide for Cocoa";
2290      }
2291      else {
2292        const FunctionDecl *FD = cast<FunctionDecl>(D);
2293        os << "whose name ('" << *FD
2294           << "') does not contain 'Copy' or 'Create'.  This violates the naming"
2295              " convention rules given in the Memory Management Guide for Core"
2296              " Foundation";
2297      }
2298    }
2299  }
2300  else if (RV->getKind() == RefVal::ErrorGCLeakReturned) {
2301    const ObjCMethodDecl &MD = cast<ObjCMethodDecl>(EndN->getCodeDecl());
2302    os << " and returned from method '" << MD.getSelector().getAsString()
2303       << "' is potentially leaked when using garbage collection.  Callers "
2304          "of this method do not expect a returned object with a +1 retain "
2305          "count since they expect the object to be managed by the garbage "
2306          "collector";
2307  }
2308  else
2309    os << " is not referenced later in this execution path and has a retain "
2310          "count of +" << RV->getCount();
2311
2312  return new PathDiagnosticEventPiece(L, os.str());
2313}
2314
2315CFRefLeakReport::CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts,
2316                                 bool GCEnabled, const SummaryLogTy &Log,
2317                                 ExplodedNode *n, SymbolRef sym,
2318                                 CheckerContext &Ctx,
2319                                 bool IncludeAllocationLine)
2320  : CFRefReport(D, LOpts, GCEnabled, Log, n, sym, false) {
2321
2322  // Most bug reports are cached at the location where they occurred.
2323  // With leaks, we want to unique them by the location where they were
2324  // allocated, and only report a single path.  To do this, we need to find
2325  // the allocation site of a piece of tracked memory, which we do via a
2326  // call to GetAllocationSite.  This will walk the ExplodedGraph backwards.
2327  // Note that this is *not* the trimmed graph; we are guaranteed, however,
2328  // that all ancestor nodes that represent the allocation site have the
2329  // same SourceLocation.
2330  const ExplodedNode *AllocNode = nullptr;
2331
2332  const SourceManager& SMgr = Ctx.getSourceManager();
2333
2334  AllocationInfo AllocI =
2335    GetAllocationSite(Ctx.getStateManager(), getErrorNode(), sym);
2336
2337  AllocNode = AllocI.N;
2338  AllocBinding = AllocI.R;
2339  markInteresting(AllocI.InterestingMethodContext);
2340
2341  // Get the SourceLocation for the allocation site.
2342  // FIXME: This will crash the analyzer if an allocation comes from an
2343  // implicit call. (Currently there are no such allocations in Cocoa, though.)
2344  const Stmt *AllocStmt;
2345  ProgramPoint P = AllocNode->getLocation();
2346  if (Optional<CallExitEnd> Exit = P.getAs<CallExitEnd>())
2347    AllocStmt = Exit->getCalleeContext()->getCallSite();
2348  else
2349    AllocStmt = P.castAs<PostStmt>().getStmt();
2350  assert(AllocStmt && "All allocations must come from explicit calls");
2351
2352  PathDiagnosticLocation AllocLocation =
2353    PathDiagnosticLocation::createBegin(AllocStmt, SMgr,
2354                                        AllocNode->getLocationContext());
2355  Location = AllocLocation;
2356
2357  // Set uniqieing info, which will be used for unique the bug reports. The
2358  // leaks should be uniqued on the allocation site.
2359  UniqueingLocation = AllocLocation;
2360  UniqueingDecl = AllocNode->getLocationContext()->getDecl();
2361
2362  // Fill in the description of the bug.
2363  Description.clear();
2364  llvm::raw_string_ostream os(Description);
2365  os << "Potential leak ";
2366  if (GCEnabled)
2367    os << "(when using garbage collection) ";
2368  os << "of an object";
2369
2370  if (AllocBinding) {
2371    os << " stored into '" << AllocBinding->getString() << '\'';
2372    if (IncludeAllocationLine) {
2373      FullSourceLoc SL(AllocStmt->getLocStart(), Ctx.getSourceManager());
2374      os << " (allocated on line " << SL.getSpellingLineNumber() << ")";
2375    }
2376  }
2377
2378  addVisitor(new CFRefLeakReportVisitor(sym, GCEnabled, Log));
2379}
2380
2381//===----------------------------------------------------------------------===//
2382// Main checker logic.
2383//===----------------------------------------------------------------------===//
2384
2385namespace {
2386class RetainCountChecker
2387  : public Checker< check::Bind,
2388                    check::DeadSymbols,
2389                    check::EndAnalysis,
2390                    check::EndFunction,
2391                    check::PostStmt<BlockExpr>,
2392                    check::PostStmt<CastExpr>,
2393                    check::PostStmt<ObjCArrayLiteral>,
2394                    check::PostStmt<ObjCDictionaryLiteral>,
2395                    check::PostStmt<ObjCBoxedExpr>,
2396                    check::PostStmt<ObjCIvarRefExpr>,
2397                    check::PostCall,
2398                    check::PreStmt<ReturnStmt>,
2399                    check::RegionChanges,
2400                    eval::Assume,
2401                    eval::Call > {
2402  mutable std::unique_ptr<CFRefBug> useAfterRelease, releaseNotOwned;
2403  mutable std::unique_ptr<CFRefBug> deallocGC, deallocNotOwned;
2404  mutable std::unique_ptr<CFRefBug> overAutorelease, returnNotOwnedForOwned;
2405  mutable std::unique_ptr<CFRefBug> leakWithinFunction, leakAtReturn;
2406  mutable std::unique_ptr<CFRefBug> leakWithinFunctionGC, leakAtReturnGC;
2407
2408  typedef llvm::DenseMap<SymbolRef, const CheckerProgramPointTag *> SymbolTagMap;
2409
2410  // This map is only used to ensure proper deletion of any allocated tags.
2411  mutable SymbolTagMap DeadSymbolTags;
2412
2413  mutable std::unique_ptr<RetainSummaryManager> Summaries;
2414  mutable std::unique_ptr<RetainSummaryManager> SummariesGC;
2415  mutable SummaryLogTy SummaryLog;
2416  mutable bool ShouldResetSummaryLog;
2417
2418  /// Optional setting to indicate if leak reports should include
2419  /// the allocation line.
2420  mutable bool IncludeAllocationLine;
2421
2422public:
2423  RetainCountChecker(AnalyzerOptions &AO)
2424    : ShouldResetSummaryLog(false),
2425      IncludeAllocationLine(shouldIncludeAllocationSiteInLeakDiagnostics(AO)) {}
2426
2427  virtual ~RetainCountChecker() {
2428    DeleteContainerSeconds(DeadSymbolTags);
2429  }
2430
2431  void checkEndAnalysis(ExplodedGraph &G, BugReporter &BR,
2432                        ExprEngine &Eng) const {
2433    // FIXME: This is a hack to make sure the summary log gets cleared between
2434    // analyses of different code bodies.
2435    //
2436    // Why is this necessary? Because a checker's lifetime is tied to a
2437    // translation unit, but an ExplodedGraph's lifetime is just a code body.
2438    // Once in a blue moon, a new ExplodedNode will have the same address as an
2439    // old one with an associated summary, and the bug report visitor gets very
2440    // confused. (To make things worse, the summary lifetime is currently also
2441    // tied to a code body, so we get a crash instead of incorrect results.)
2442    //
2443    // Why is this a bad solution? Because if the lifetime of the ExplodedGraph
2444    // changes, things will start going wrong again. Really the lifetime of this
2445    // log needs to be tied to either the specific nodes in it or the entire
2446    // ExplodedGraph, not to a specific part of the code being analyzed.
2447    //
2448    // (Also, having stateful local data means that the same checker can't be
2449    // used from multiple threads, but a lot of checkers have incorrect
2450    // assumptions about that anyway. So that wasn't a priority at the time of
2451    // this fix.)
2452    //
2453    // This happens at the end of analysis, but bug reports are emitted /after/
2454    // this point. So we can't just clear the summary log now. Instead, we mark
2455    // that the next time we access the summary log, it should be cleared.
2456
2457    // If we never reset the summary log during /this/ code body analysis,
2458    // there were no new summaries. There might still have been summaries from
2459    // the /last/ analysis, so clear them out to make sure the bug report
2460    // visitors don't get confused.
2461    if (ShouldResetSummaryLog)
2462      SummaryLog.clear();
2463
2464    ShouldResetSummaryLog = !SummaryLog.empty();
2465  }
2466
2467  CFRefBug *getLeakWithinFunctionBug(const LangOptions &LOpts,
2468                                     bool GCEnabled) const {
2469    if (GCEnabled) {
2470      if (!leakWithinFunctionGC)
2471        leakWithinFunctionGC.reset(new Leak(this, "Leak of object when using "
2472                                                  "garbage collection"));
2473      return leakWithinFunctionGC.get();
2474    } else {
2475      if (!leakWithinFunction) {
2476        if (LOpts.getGC() == LangOptions::HybridGC) {
2477          leakWithinFunction.reset(new Leak(this,
2478                                            "Leak of object when not using "
2479                                            "garbage collection (GC) in "
2480                                            "dual GC/non-GC code"));
2481        } else {
2482          leakWithinFunction.reset(new Leak(this, "Leak"));
2483        }
2484      }
2485      return leakWithinFunction.get();
2486    }
2487  }
2488
2489  CFRefBug *getLeakAtReturnBug(const LangOptions &LOpts, bool GCEnabled) const {
2490    if (GCEnabled) {
2491      if (!leakAtReturnGC)
2492        leakAtReturnGC.reset(new Leak(this,
2493                                      "Leak of returned object when using "
2494                                      "garbage collection"));
2495      return leakAtReturnGC.get();
2496    } else {
2497      if (!leakAtReturn) {
2498        if (LOpts.getGC() == LangOptions::HybridGC) {
2499          leakAtReturn.reset(new Leak(this,
2500                                      "Leak of returned object when not using "
2501                                      "garbage collection (GC) in dual "
2502                                      "GC/non-GC code"));
2503        } else {
2504          leakAtReturn.reset(new Leak(this, "Leak of returned object"));
2505        }
2506      }
2507      return leakAtReturn.get();
2508    }
2509  }
2510
2511  RetainSummaryManager &getSummaryManager(ASTContext &Ctx,
2512                                          bool GCEnabled) const {
2513    // FIXME: We don't support ARC being turned on and off during one analysis.
2514    // (nor, for that matter, do we support changing ASTContexts)
2515    bool ARCEnabled = (bool)Ctx.getLangOpts().ObjCAutoRefCount;
2516    if (GCEnabled) {
2517      if (!SummariesGC)
2518        SummariesGC.reset(new RetainSummaryManager(Ctx, true, ARCEnabled));
2519      else
2520        assert(SummariesGC->isARCEnabled() == ARCEnabled);
2521      return *SummariesGC;
2522    } else {
2523      if (!Summaries)
2524        Summaries.reset(new RetainSummaryManager(Ctx, false, ARCEnabled));
2525      else
2526        assert(Summaries->isARCEnabled() == ARCEnabled);
2527      return *Summaries;
2528    }
2529  }
2530
2531  RetainSummaryManager &getSummaryManager(CheckerContext &C) const {
2532    return getSummaryManager(C.getASTContext(), C.isObjCGCEnabled());
2533  }
2534
2535  void printState(raw_ostream &Out, ProgramStateRef State,
2536                  const char *NL, const char *Sep) const override;
2537
2538  void checkBind(SVal loc, SVal val, const Stmt *S, CheckerContext &C) const;
2539  void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
2540  void checkPostStmt(const CastExpr *CE, CheckerContext &C) const;
2541
2542  void checkPostStmt(const ObjCArrayLiteral *AL, CheckerContext &C) const;
2543  void checkPostStmt(const ObjCDictionaryLiteral *DL, CheckerContext &C) const;
2544  void checkPostStmt(const ObjCBoxedExpr *BE, CheckerContext &C) const;
2545
2546  void checkPostStmt(const ObjCIvarRefExpr *IRE, CheckerContext &C) const;
2547
2548  void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
2549
2550  void checkSummary(const RetainSummary &Summ, const CallEvent &Call,
2551                    CheckerContext &C) const;
2552
2553  void processSummaryOfInlined(const RetainSummary &Summ,
2554                               const CallEvent &Call,
2555                               CheckerContext &C) const;
2556
2557  bool evalCall(const CallExpr *CE, CheckerContext &C) const;
2558
2559  ProgramStateRef evalAssume(ProgramStateRef state, SVal Cond,
2560                                 bool Assumption) const;
2561
2562  ProgramStateRef
2563  checkRegionChanges(ProgramStateRef state,
2564                     const InvalidatedSymbols *invalidated,
2565                     ArrayRef<const MemRegion *> ExplicitRegions,
2566                     ArrayRef<const MemRegion *> Regions,
2567                     const CallEvent *Call) const;
2568
2569  bool wantsRegionChangeUpdate(ProgramStateRef state) const {
2570    return true;
2571  }
2572
2573  void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
2574  void checkReturnWithRetEffect(const ReturnStmt *S, CheckerContext &C,
2575                                ExplodedNode *Pred, RetEffect RE, RefVal X,
2576                                SymbolRef Sym, ProgramStateRef state) const;
2577
2578  void checkDeadSymbols(SymbolReaper &SymReaper, CheckerContext &C) const;
2579  void checkEndFunction(CheckerContext &C) const;
2580
2581  ProgramStateRef updateSymbol(ProgramStateRef state, SymbolRef sym,
2582                               RefVal V, ArgEffect E, RefVal::Kind &hasErr,
2583                               CheckerContext &C) const;
2584
2585  void processNonLeakError(ProgramStateRef St, SourceRange ErrorRange,
2586                           RefVal::Kind ErrorKind, SymbolRef Sym,
2587                           CheckerContext &C) const;
2588
2589  void processObjCLiterals(CheckerContext &C, const Expr *Ex) const;
2590
2591  const ProgramPointTag *getDeadSymbolTag(SymbolRef sym) const;
2592
2593  ProgramStateRef handleSymbolDeath(ProgramStateRef state,
2594                                    SymbolRef sid, RefVal V,
2595                                    SmallVectorImpl<SymbolRef> &Leaked) const;
2596
2597  ProgramStateRef
2598  handleAutoreleaseCounts(ProgramStateRef state, ExplodedNode *Pred,
2599                          const ProgramPointTag *Tag, CheckerContext &Ctx,
2600                          SymbolRef Sym, RefVal V) const;
2601
2602  ExplodedNode *processLeaks(ProgramStateRef state,
2603                             SmallVectorImpl<SymbolRef> &Leaked,
2604                             CheckerContext &Ctx,
2605                             ExplodedNode *Pred = nullptr) const;
2606};
2607} // end anonymous namespace
2608
2609namespace {
2610class StopTrackingCallback : public SymbolVisitor {
2611  ProgramStateRef state;
2612public:
2613  StopTrackingCallback(ProgramStateRef st) : state(st) {}
2614  ProgramStateRef getState() const { return state; }
2615
2616  bool VisitSymbol(SymbolRef sym) override {
2617    state = state->remove<RefBindings>(sym);
2618    return true;
2619  }
2620};
2621} // end anonymous namespace
2622
2623//===----------------------------------------------------------------------===//
2624// Handle statements that may have an effect on refcounts.
2625//===----------------------------------------------------------------------===//
2626
2627void RetainCountChecker::checkPostStmt(const BlockExpr *BE,
2628                                       CheckerContext &C) const {
2629
2630  // Scan the BlockDecRefExprs for any object the retain count checker
2631  // may be tracking.
2632  if (!BE->getBlockDecl()->hasCaptures())
2633    return;
2634
2635  ProgramStateRef state = C.getState();
2636  const BlockDataRegion *R =
2637    cast<BlockDataRegion>(state->getSVal(BE,
2638                                         C.getLocationContext()).getAsRegion());
2639
2640  BlockDataRegion::referenced_vars_iterator I = R->referenced_vars_begin(),
2641                                            E = R->referenced_vars_end();
2642
2643  if (I == E)
2644    return;
2645
2646  // FIXME: For now we invalidate the tracking of all symbols passed to blocks
2647  // via captured variables, even though captured variables result in a copy
2648  // and in implicit increment/decrement of a retain count.
2649  SmallVector<const MemRegion*, 10> Regions;
2650  const LocationContext *LC = C.getLocationContext();
2651  MemRegionManager &MemMgr = C.getSValBuilder().getRegionManager();
2652
2653  for ( ; I != E; ++I) {
2654    const VarRegion *VR = I.getCapturedRegion();
2655    if (VR->getSuperRegion() == R) {
2656      VR = MemMgr.getVarRegion(VR->getDecl(), LC);
2657    }
2658    Regions.push_back(VR);
2659  }
2660
2661  state =
2662    state->scanReachableSymbols<StopTrackingCallback>(Regions.data(),
2663                                    Regions.data() + Regions.size()).getState();
2664  C.addTransition(state);
2665}
2666
2667void RetainCountChecker::checkPostStmt(const CastExpr *CE,
2668                                       CheckerContext &C) const {
2669  const ObjCBridgedCastExpr *BE = dyn_cast<ObjCBridgedCastExpr>(CE);
2670  if (!BE)
2671    return;
2672
2673  ArgEffect AE = IncRef;
2674
2675  switch (BE->getBridgeKind()) {
2676    case clang::OBC_Bridge:
2677      // Do nothing.
2678      return;
2679    case clang::OBC_BridgeRetained:
2680      AE = IncRef;
2681      break;
2682    case clang::OBC_BridgeTransfer:
2683      AE = DecRefBridgedTransferred;
2684      break;
2685  }
2686
2687  ProgramStateRef state = C.getState();
2688  SymbolRef Sym = state->getSVal(CE, C.getLocationContext()).getAsLocSymbol();
2689  if (!Sym)
2690    return;
2691  const RefVal* T = getRefBinding(state, Sym);
2692  if (!T)
2693    return;
2694
2695  RefVal::Kind hasErr = (RefVal::Kind) 0;
2696  state = updateSymbol(state, Sym, *T, AE, hasErr, C);
2697
2698  if (hasErr) {
2699    // FIXME: If we get an error during a bridge cast, should we report it?
2700    // Should we assert that there is no error?
2701    return;
2702  }
2703
2704  C.addTransition(state);
2705}
2706
2707void RetainCountChecker::processObjCLiterals(CheckerContext &C,
2708                                             const Expr *Ex) const {
2709  ProgramStateRef state = C.getState();
2710  const ExplodedNode *pred = C.getPredecessor();
2711  for (Stmt::const_child_iterator it = Ex->child_begin(), et = Ex->child_end() ;
2712       it != et ; ++it) {
2713    const Stmt *child = *it;
2714    SVal V = state->getSVal(child, pred->getLocationContext());
2715    if (SymbolRef sym = V.getAsSymbol())
2716      if (const RefVal* T = getRefBinding(state, sym)) {
2717        RefVal::Kind hasErr = (RefVal::Kind) 0;
2718        state = updateSymbol(state, sym, *T, MayEscape, hasErr, C);
2719        if (hasErr) {
2720          processNonLeakError(state, child->getSourceRange(), hasErr, sym, C);
2721          return;
2722        }
2723      }
2724  }
2725
2726  // Return the object as autoreleased.
2727  //  RetEffect RE = RetEffect::MakeNotOwned(RetEffect::ObjC);
2728  if (SymbolRef sym =
2729        state->getSVal(Ex, pred->getLocationContext()).getAsSymbol()) {
2730    QualType ResultTy = Ex->getType();
2731    state = setRefBinding(state, sym,
2732                          RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
2733  }
2734
2735  C.addTransition(state);
2736}
2737
2738void RetainCountChecker::checkPostStmt(const ObjCArrayLiteral *AL,
2739                                       CheckerContext &C) const {
2740  // Apply the 'MayEscape' to all values.
2741  processObjCLiterals(C, AL);
2742}
2743
2744void RetainCountChecker::checkPostStmt(const ObjCDictionaryLiteral *DL,
2745                                       CheckerContext &C) const {
2746  // Apply the 'MayEscape' to all keys and values.
2747  processObjCLiterals(C, DL);
2748}
2749
2750void RetainCountChecker::checkPostStmt(const ObjCBoxedExpr *Ex,
2751                                       CheckerContext &C) const {
2752  const ExplodedNode *Pred = C.getPredecessor();
2753  const LocationContext *LCtx = Pred->getLocationContext();
2754  ProgramStateRef State = Pred->getState();
2755
2756  if (SymbolRef Sym = State->getSVal(Ex, LCtx).getAsSymbol()) {
2757    QualType ResultTy = Ex->getType();
2758    State = setRefBinding(State, Sym,
2759                          RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
2760  }
2761
2762  C.addTransition(State);
2763}
2764
2765void RetainCountChecker::checkPostStmt(const ObjCIvarRefExpr *IRE,
2766                                       CheckerContext &C) const {
2767  ProgramStateRef State = C.getState();
2768  // If an instance variable was previously accessed through a property,
2769  // it may have a synthesized refcount of +0. Override right now that we're
2770  // doing direct access.
2771  if (Optional<Loc> IVarLoc = C.getSVal(IRE).getAs<Loc>())
2772    if (SymbolRef Sym = State->getSVal(*IVarLoc).getAsSymbol())
2773      if (const RefVal *RV = getRefBinding(State, Sym))
2774        if (RV->isOverridable())
2775          State = removeRefBinding(State, Sym);
2776  C.addTransition(State);
2777}
2778
2779void RetainCountChecker::checkPostCall(const CallEvent &Call,
2780                                       CheckerContext &C) const {
2781  RetainSummaryManager &Summaries = getSummaryManager(C);
2782  const RetainSummary *Summ = Summaries.getSummary(Call, C.getState());
2783
2784  if (C.wasInlined) {
2785    processSummaryOfInlined(*Summ, Call, C);
2786    return;
2787  }
2788  checkSummary(*Summ, Call, C);
2789}
2790
2791/// GetReturnType - Used to get the return type of a message expression or
2792///  function call with the intention of affixing that type to a tracked symbol.
2793///  While the return type can be queried directly from RetEx, when
2794///  invoking class methods we augment to the return type to be that of
2795///  a pointer to the class (as opposed it just being id).
2796// FIXME: We may be able to do this with related result types instead.
2797// This function is probably overestimating.
2798static QualType GetReturnType(const Expr *RetE, ASTContext &Ctx) {
2799  QualType RetTy = RetE->getType();
2800  // If RetE is not a message expression just return its type.
2801  // If RetE is a message expression, return its types if it is something
2802  /// more specific than id.
2803  if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(RetE))
2804    if (const ObjCObjectPointerType *PT = RetTy->getAs<ObjCObjectPointerType>())
2805      if (PT->isObjCQualifiedIdType() || PT->isObjCIdType() ||
2806          PT->isObjCClassType()) {
2807        // At this point we know the return type of the message expression is
2808        // id, id<...>, or Class. If we have an ObjCInterfaceDecl, we know this
2809        // is a call to a class method whose type we can resolve.  In such
2810        // cases, promote the return type to XXX* (where XXX is the class).
2811        const ObjCInterfaceDecl *D = ME->getReceiverInterface();
2812        return !D ? RetTy :
2813                    Ctx.getObjCObjectPointerType(Ctx.getObjCInterfaceType(D));
2814      }
2815
2816  return RetTy;
2817}
2818
2819static bool wasSynthesizedProperty(const ObjCMethodCall *Call,
2820                                   ExplodedNode *N) {
2821  if (!Call || !Call->getDecl()->isPropertyAccessor())
2822    return false;
2823
2824  CallExitEnd PP = N->getLocation().castAs<CallExitEnd>();
2825  const StackFrameContext *Frame = PP.getCalleeContext();
2826  return Frame->getAnalysisDeclContext()->isBodyAutosynthesized();
2827}
2828
2829// We don't always get the exact modeling of the function with regards to the
2830// retain count checker even when the function is inlined. For example, we need
2831// to stop tracking the symbols which were marked with StopTrackingHard.
2832void RetainCountChecker::processSummaryOfInlined(const RetainSummary &Summ,
2833                                                 const CallEvent &CallOrMsg,
2834                                                 CheckerContext &C) const {
2835  ProgramStateRef state = C.getState();
2836
2837  // Evaluate the effect of the arguments.
2838  for (unsigned idx = 0, e = CallOrMsg.getNumArgs(); idx != e; ++idx) {
2839    if (Summ.getArg(idx) == StopTrackingHard) {
2840      SVal V = CallOrMsg.getArgSVal(idx);
2841      if (SymbolRef Sym = V.getAsLocSymbol()) {
2842        state = removeRefBinding(state, Sym);
2843      }
2844    }
2845  }
2846
2847  // Evaluate the effect on the message receiver.
2848  const ObjCMethodCall *MsgInvocation = dyn_cast<ObjCMethodCall>(&CallOrMsg);
2849  if (MsgInvocation) {
2850    if (SymbolRef Sym = MsgInvocation->getReceiverSVal().getAsLocSymbol()) {
2851      if (Summ.getReceiverEffect() == StopTrackingHard) {
2852        state = removeRefBinding(state, Sym);
2853      }
2854    }
2855  }
2856
2857  // Consult the summary for the return value.
2858  RetEffect RE = Summ.getRetEffect();
2859  if (RE.getKind() == RetEffect::NoRetHard) {
2860    SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol();
2861    if (Sym)
2862      state = removeRefBinding(state, Sym);
2863  } else if (RE.getKind() == RetEffect::NotOwnedSymbol) {
2864    if (wasSynthesizedProperty(MsgInvocation, C.getPredecessor())) {
2865      // Believe the summary if we synthesized the body of a property getter
2866      // and the return value is currently untracked. If the corresponding
2867      // instance variable is later accessed directly, however, we're going to
2868      // want to override this state, so that the owning object can perform
2869      // reference counting operations on its own ivars.
2870      SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol();
2871      if (Sym && !getRefBinding(state, Sym))
2872        state = setRefBinding(state, Sym,
2873                              RefVal::makeOverridableNotOwned(RE.getObjKind(),
2874                                                              Sym->getType()));
2875    }
2876  }
2877
2878  C.addTransition(state);
2879}
2880
2881void RetainCountChecker::checkSummary(const RetainSummary &Summ,
2882                                      const CallEvent &CallOrMsg,
2883                                      CheckerContext &C) const {
2884  ProgramStateRef state = C.getState();
2885
2886  // Evaluate the effect of the arguments.
2887  RefVal::Kind hasErr = (RefVal::Kind) 0;
2888  SourceRange ErrorRange;
2889  SymbolRef ErrorSym = nullptr;
2890
2891  for (unsigned idx = 0, e = CallOrMsg.getNumArgs(); idx != e; ++idx) {
2892    SVal V = CallOrMsg.getArgSVal(idx);
2893
2894    if (SymbolRef Sym = V.getAsLocSymbol()) {
2895      if (const RefVal *T = getRefBinding(state, Sym)) {
2896        state = updateSymbol(state, Sym, *T, Summ.getArg(idx), hasErr, C);
2897        if (hasErr) {
2898          ErrorRange = CallOrMsg.getArgSourceRange(idx);
2899          ErrorSym = Sym;
2900          break;
2901        }
2902      }
2903    }
2904  }
2905
2906  // Evaluate the effect on the message receiver.
2907  bool ReceiverIsTracked = false;
2908  if (!hasErr) {
2909    const ObjCMethodCall *MsgInvocation = dyn_cast<ObjCMethodCall>(&CallOrMsg);
2910    if (MsgInvocation) {
2911      if (SymbolRef Sym = MsgInvocation->getReceiverSVal().getAsLocSymbol()) {
2912        if (const RefVal *T = getRefBinding(state, Sym)) {
2913          ReceiverIsTracked = true;
2914          state = updateSymbol(state, Sym, *T, Summ.getReceiverEffect(),
2915                                 hasErr, C);
2916          if (hasErr) {
2917            ErrorRange = MsgInvocation->getOriginExpr()->getReceiverRange();
2918            ErrorSym = Sym;
2919          }
2920        }
2921      }
2922    }
2923  }
2924
2925  // Process any errors.
2926  if (hasErr) {
2927    processNonLeakError(state, ErrorRange, hasErr, ErrorSym, C);
2928    return;
2929  }
2930
2931  // Consult the summary for the return value.
2932  RetEffect RE = Summ.getRetEffect();
2933
2934  if (RE.getKind() == RetEffect::OwnedWhenTrackedReceiver) {
2935    if (ReceiverIsTracked)
2936      RE = getSummaryManager(C).getObjAllocRetEffect();
2937    else
2938      RE = RetEffect::MakeNoRet();
2939  }
2940
2941  switch (RE.getKind()) {
2942    default:
2943      llvm_unreachable("Unhandled RetEffect.");
2944
2945    case RetEffect::NoRet:
2946    case RetEffect::NoRetHard:
2947      // No work necessary.
2948      break;
2949
2950    case RetEffect::OwnedAllocatedSymbol:
2951    case RetEffect::OwnedSymbol: {
2952      SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol();
2953      if (!Sym)
2954        break;
2955
2956      // Use the result type from the CallEvent as it automatically adjusts
2957      // for methods/functions that return references.
2958      QualType ResultTy = CallOrMsg.getResultType();
2959      state = setRefBinding(state, Sym, RefVal::makeOwned(RE.getObjKind(),
2960                                                          ResultTy));
2961
2962      // FIXME: Add a flag to the checker where allocations are assumed to
2963      // *not* fail.
2964      break;
2965    }
2966
2967    case RetEffect::GCNotOwnedSymbol:
2968    case RetEffect::NotOwnedSymbol: {
2969      const Expr *Ex = CallOrMsg.getOriginExpr();
2970      SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol();
2971      if (!Sym)
2972        break;
2973      assert(Ex);
2974      // Use GetReturnType in order to give [NSFoo alloc] the type NSFoo *.
2975      QualType ResultTy = GetReturnType(Ex, C.getASTContext());
2976      state = setRefBinding(state, Sym, RefVal::makeNotOwned(RE.getObjKind(),
2977                                                             ResultTy));
2978      break;
2979    }
2980  }
2981
2982  // This check is actually necessary; otherwise the statement builder thinks
2983  // we've hit a previously-found path.
2984  // Normally addTransition takes care of this, but we want the node pointer.
2985  ExplodedNode *NewNode;
2986  if (state == C.getState()) {
2987    NewNode = C.getPredecessor();
2988  } else {
2989    NewNode = C.addTransition(state);
2990  }
2991
2992  // Annotate the node with summary we used.
2993  if (NewNode) {
2994    // FIXME: This is ugly. See checkEndAnalysis for why it's necessary.
2995    if (ShouldResetSummaryLog) {
2996      SummaryLog.clear();
2997      ShouldResetSummaryLog = false;
2998    }
2999    SummaryLog[NewNode] = &Summ;
3000  }
3001}
3002
3003
3004ProgramStateRef
3005RetainCountChecker::updateSymbol(ProgramStateRef state, SymbolRef sym,
3006                                 RefVal V, ArgEffect E, RefVal::Kind &hasErr,
3007                                 CheckerContext &C) const {
3008  // In GC mode [... release] and [... retain] do nothing.
3009  // In ARC mode they shouldn't exist at all, but we just ignore them.
3010  bool IgnoreRetainMsg = C.isObjCGCEnabled();
3011  if (!IgnoreRetainMsg)
3012    IgnoreRetainMsg = (bool)C.getASTContext().getLangOpts().ObjCAutoRefCount;
3013
3014  switch (E) {
3015  default:
3016    break;
3017  case IncRefMsg:
3018    E = IgnoreRetainMsg ? DoNothing : IncRef;
3019    break;
3020  case DecRefMsg:
3021    E = IgnoreRetainMsg ? DoNothing : DecRef;
3022    break;
3023  case DecRefMsgAndStopTrackingHard:
3024    E = IgnoreRetainMsg ? StopTracking : DecRefAndStopTrackingHard;
3025    break;
3026  case MakeCollectable:
3027    E = C.isObjCGCEnabled() ? DecRef : DoNothing;
3028    break;
3029  }
3030
3031  // Handle all use-after-releases.
3032  if (!C.isObjCGCEnabled() && V.getKind() == RefVal::Released) {
3033    V = V ^ RefVal::ErrorUseAfterRelease;
3034    hasErr = V.getKind();
3035    return setRefBinding(state, sym, V);
3036  }
3037
3038  switch (E) {
3039    case DecRefMsg:
3040    case IncRefMsg:
3041    case MakeCollectable:
3042    case DecRefMsgAndStopTrackingHard:
3043      llvm_unreachable("DecRefMsg/IncRefMsg/MakeCollectable already converted");
3044
3045    case Dealloc:
3046      // Any use of -dealloc in GC is *bad*.
3047      if (C.isObjCGCEnabled()) {
3048        V = V ^ RefVal::ErrorDeallocGC;
3049        hasErr = V.getKind();
3050        break;
3051      }
3052
3053      switch (V.getKind()) {
3054        default:
3055          llvm_unreachable("Invalid RefVal state for an explicit dealloc.");
3056        case RefVal::Owned:
3057          // The object immediately transitions to the released state.
3058          V = V ^ RefVal::Released;
3059          V.clearCounts();
3060          return setRefBinding(state, sym, V);
3061        case RefVal::NotOwned:
3062          V = V ^ RefVal::ErrorDeallocNotOwned;
3063          hasErr = V.getKind();
3064          break;
3065      }
3066      break;
3067
3068    case MayEscape:
3069      if (V.getKind() == RefVal::Owned) {
3070        V = V ^ RefVal::NotOwned;
3071        break;
3072      }
3073
3074      // Fall-through.
3075
3076    case DoNothing:
3077      return state;
3078
3079    case Autorelease:
3080      if (C.isObjCGCEnabled())
3081        return state;
3082      // Update the autorelease counts.
3083      V = V.autorelease();
3084      break;
3085
3086    case StopTracking:
3087    case StopTrackingHard:
3088      return removeRefBinding(state, sym);
3089
3090    case IncRef:
3091      switch (V.getKind()) {
3092        default:
3093          llvm_unreachable("Invalid RefVal state for a retain.");
3094        case RefVal::Owned:
3095        case RefVal::NotOwned:
3096          V = V + 1;
3097          break;
3098        case RefVal::Released:
3099          // Non-GC cases are handled above.
3100          assert(C.isObjCGCEnabled());
3101          V = (V ^ RefVal::Owned) + 1;
3102          break;
3103      }
3104      break;
3105
3106    case DecRef:
3107    case DecRefBridgedTransferred:
3108    case DecRefAndStopTrackingHard:
3109      switch (V.getKind()) {
3110        default:
3111          // case 'RefVal::Released' handled above.
3112          llvm_unreachable("Invalid RefVal state for a release.");
3113
3114        case RefVal::Owned:
3115          assert(V.getCount() > 0);
3116          if (V.getCount() == 1)
3117            V = V ^ (E == DecRefBridgedTransferred ? RefVal::NotOwned
3118                                                   : RefVal::Released);
3119          else if (E == DecRefAndStopTrackingHard)
3120            return removeRefBinding(state, sym);
3121
3122          V = V - 1;
3123          break;
3124
3125        case RefVal::NotOwned:
3126          if (V.getCount() > 0) {
3127            if (E == DecRefAndStopTrackingHard)
3128              return removeRefBinding(state, sym);
3129            V = V - 1;
3130          } else {
3131            V = V ^ RefVal::ErrorReleaseNotOwned;
3132            hasErr = V.getKind();
3133          }
3134          break;
3135
3136        case RefVal::Released:
3137          // Non-GC cases are handled above.
3138          assert(C.isObjCGCEnabled());
3139          V = V ^ RefVal::ErrorUseAfterRelease;
3140          hasErr = V.getKind();
3141          break;
3142      }
3143      break;
3144  }
3145  return setRefBinding(state, sym, V);
3146}
3147
3148void RetainCountChecker::processNonLeakError(ProgramStateRef St,
3149                                             SourceRange ErrorRange,
3150                                             RefVal::Kind ErrorKind,
3151                                             SymbolRef Sym,
3152                                             CheckerContext &C) const {
3153  ExplodedNode *N = C.generateSink(St);
3154  if (!N)
3155    return;
3156
3157  CFRefBug *BT;
3158  switch (ErrorKind) {
3159    default:
3160      llvm_unreachable("Unhandled error.");
3161    case RefVal::ErrorUseAfterRelease:
3162      if (!useAfterRelease)
3163        useAfterRelease.reset(new UseAfterRelease(this));
3164      BT = &*useAfterRelease;
3165      break;
3166    case RefVal::ErrorReleaseNotOwned:
3167      if (!releaseNotOwned)
3168        releaseNotOwned.reset(new BadRelease(this));
3169      BT = &*releaseNotOwned;
3170      break;
3171    case RefVal::ErrorDeallocGC:
3172      if (!deallocGC)
3173        deallocGC.reset(new DeallocGC(this));
3174      BT = &*deallocGC;
3175      break;
3176    case RefVal::ErrorDeallocNotOwned:
3177      if (!deallocNotOwned)
3178        deallocNotOwned.reset(new DeallocNotOwned(this));
3179      BT = &*deallocNotOwned;
3180      break;
3181  }
3182
3183  assert(BT);
3184  CFRefReport *report = new CFRefReport(*BT, C.getASTContext().getLangOpts(),
3185                                        C.isObjCGCEnabled(), SummaryLog,
3186                                        N, Sym);
3187  report->addRange(ErrorRange);
3188  C.emitReport(report);
3189}
3190
3191//===----------------------------------------------------------------------===//
3192// Handle the return values of retain-count-related functions.
3193//===----------------------------------------------------------------------===//
3194
3195bool RetainCountChecker::evalCall(const CallExpr *CE, CheckerContext &C) const {
3196  // Get the callee. We're only interested in simple C functions.
3197  ProgramStateRef state = C.getState();
3198  const FunctionDecl *FD = C.getCalleeDecl(CE);
3199  if (!FD)
3200    return false;
3201
3202  IdentifierInfo *II = FD->getIdentifier();
3203  if (!II)
3204    return false;
3205
3206  // For now, we're only handling the functions that return aliases of their
3207  // arguments: CFRetain and CFMakeCollectable (and their families).
3208  // Eventually we should add other functions we can model entirely,
3209  // such as CFRelease, which don't invalidate their arguments or globals.
3210  if (CE->getNumArgs() != 1)
3211    return false;
3212
3213  // Get the name of the function.
3214  StringRef FName = II->getName();
3215  FName = FName.substr(FName.find_first_not_of('_'));
3216
3217  // See if it's one of the specific functions we know how to eval.
3218  bool canEval = false;
3219
3220  QualType ResultTy = CE->getCallReturnType();
3221  if (ResultTy->isObjCIdType()) {
3222    // Handle: id NSMakeCollectable(CFTypeRef)
3223    canEval = II->isStr("NSMakeCollectable");
3224  } else if (ResultTy->isPointerType()) {
3225    // Handle: (CF|CG)Retain
3226    //         CFAutorelease
3227    //         CFMakeCollectable
3228    // It's okay to be a little sloppy here (CGMakeCollectable doesn't exist).
3229    if (cocoa::isRefType(ResultTy, "CF", FName) ||
3230        cocoa::isRefType(ResultTy, "CG", FName)) {
3231      canEval = isRetain(FD, FName) || isAutorelease(FD, FName) ||
3232                isMakeCollectable(FD, FName);
3233    }
3234  }
3235
3236  if (!canEval)
3237    return false;
3238
3239  // Bind the return value.
3240  const LocationContext *LCtx = C.getLocationContext();
3241  SVal RetVal = state->getSVal(CE->getArg(0), LCtx);
3242  if (RetVal.isUnknown()) {
3243    // If the receiver is unknown, conjure a return value.
3244    SValBuilder &SVB = C.getSValBuilder();
3245    RetVal = SVB.conjureSymbolVal(nullptr, CE, LCtx, ResultTy, C.blockCount());
3246  }
3247  state = state->BindExpr(CE, LCtx, RetVal, false);
3248
3249  // FIXME: This should not be necessary, but otherwise the argument seems to be
3250  // considered alive during the next statement.
3251  if (const MemRegion *ArgRegion = RetVal.getAsRegion()) {
3252    // Save the refcount status of the argument.
3253    SymbolRef Sym = RetVal.getAsLocSymbol();
3254    const RefVal *Binding = nullptr;
3255    if (Sym)
3256      Binding = getRefBinding(state, Sym);
3257
3258    // Invalidate the argument region.
3259    state = state->invalidateRegions(ArgRegion, CE, C.blockCount(), LCtx,
3260                                     /*CausesPointerEscape*/ false);
3261
3262    // Restore the refcount status of the argument.
3263    if (Binding)
3264      state = setRefBinding(state, Sym, *Binding);
3265  }
3266
3267  C.addTransition(state);
3268  return true;
3269}
3270
3271//===----------------------------------------------------------------------===//
3272// Handle return statements.
3273//===----------------------------------------------------------------------===//
3274
3275void RetainCountChecker::checkPreStmt(const ReturnStmt *S,
3276                                      CheckerContext &C) const {
3277
3278  // Only adjust the reference count if this is the top-level call frame,
3279  // and not the result of inlining.  In the future, we should do
3280  // better checking even for inlined calls, and see if they match
3281  // with their expected semantics (e.g., the method should return a retained
3282  // object, etc.).
3283  if (!C.inTopFrame())
3284    return;
3285
3286  const Expr *RetE = S->getRetValue();
3287  if (!RetE)
3288    return;
3289
3290  ProgramStateRef state = C.getState();
3291  SymbolRef Sym =
3292    state->getSValAsScalarOrLoc(RetE, C.getLocationContext()).getAsLocSymbol();
3293  if (!Sym)
3294    return;
3295
3296  // Get the reference count binding (if any).
3297  const RefVal *T = getRefBinding(state, Sym);
3298  if (!T)
3299    return;
3300
3301  // Change the reference count.
3302  RefVal X = *T;
3303
3304  switch (X.getKind()) {
3305    case RefVal::Owned: {
3306      unsigned cnt = X.getCount();
3307      assert(cnt > 0);
3308      X.setCount(cnt - 1);
3309      X = X ^ RefVal::ReturnedOwned;
3310      break;
3311    }
3312
3313    case RefVal::NotOwned: {
3314      unsigned cnt = X.getCount();
3315      if (cnt) {
3316        X.setCount(cnt - 1);
3317        X = X ^ RefVal::ReturnedOwned;
3318      }
3319      else {
3320        X = X ^ RefVal::ReturnedNotOwned;
3321      }
3322      break;
3323    }
3324
3325    default:
3326      return;
3327  }
3328
3329  // Update the binding.
3330  state = setRefBinding(state, Sym, X);
3331  ExplodedNode *Pred = C.addTransition(state);
3332
3333  // At this point we have updated the state properly.
3334  // Everything after this is merely checking to see if the return value has
3335  // been over- or under-retained.
3336
3337  // Did we cache out?
3338  if (!Pred)
3339    return;
3340
3341  // Update the autorelease counts.
3342  static CheckerProgramPointTag AutoreleaseTag(this, "Autorelease");
3343  state = handleAutoreleaseCounts(state, Pred, &AutoreleaseTag, C, Sym, X);
3344
3345  // Did we cache out?
3346  if (!state)
3347    return;
3348
3349  // Get the updated binding.
3350  T = getRefBinding(state, Sym);
3351  assert(T);
3352  X = *T;
3353
3354  // Consult the summary of the enclosing method.
3355  RetainSummaryManager &Summaries = getSummaryManager(C);
3356  const Decl *CD = &Pred->getCodeDecl();
3357  RetEffect RE = RetEffect::MakeNoRet();
3358
3359  // FIXME: What is the convention for blocks? Is there one?
3360  if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CD)) {
3361    const RetainSummary *Summ = Summaries.getMethodSummary(MD);
3362    RE = Summ->getRetEffect();
3363  } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CD)) {
3364    if (!isa<CXXMethodDecl>(FD)) {
3365      const RetainSummary *Summ = Summaries.getFunctionSummary(FD);
3366      RE = Summ->getRetEffect();
3367    }
3368  }
3369
3370  checkReturnWithRetEffect(S, C, Pred, RE, X, Sym, state);
3371}
3372
3373void RetainCountChecker::checkReturnWithRetEffect(const ReturnStmt *S,
3374                                                  CheckerContext &C,
3375                                                  ExplodedNode *Pred,
3376                                                  RetEffect RE, RefVal X,
3377                                                  SymbolRef Sym,
3378                                              ProgramStateRef state) const {
3379  // Any leaks or other errors?
3380  if (X.isReturnedOwned() && X.getCount() == 0) {
3381    if (RE.getKind() != RetEffect::NoRet) {
3382      bool hasError = false;
3383      if (C.isObjCGCEnabled() && RE.getObjKind() == RetEffect::ObjC) {
3384        // Things are more complicated with garbage collection.  If the
3385        // returned object is suppose to be an Objective-C object, we have
3386        // a leak (as the caller expects a GC'ed object) because no
3387        // method should return ownership unless it returns a CF object.
3388        hasError = true;
3389        X = X ^ RefVal::ErrorGCLeakReturned;
3390      }
3391      else if (!RE.isOwned()) {
3392        // Either we are using GC and the returned object is a CF type
3393        // or we aren't using GC.  In either case, we expect that the
3394        // enclosing method is expected to return ownership.
3395        hasError = true;
3396        X = X ^ RefVal::ErrorLeakReturned;
3397      }
3398
3399      if (hasError) {
3400        // Generate an error node.
3401        state = setRefBinding(state, Sym, X);
3402
3403        static CheckerProgramPointTag ReturnOwnLeakTag(this, "ReturnsOwnLeak");
3404        ExplodedNode *N = C.addTransition(state, Pred, &ReturnOwnLeakTag);
3405        if (N) {
3406          const LangOptions &LOpts = C.getASTContext().getLangOpts();
3407          bool GCEnabled = C.isObjCGCEnabled();
3408          CFRefReport *report =
3409            new CFRefLeakReport(*getLeakAtReturnBug(LOpts, GCEnabled),
3410                                LOpts, GCEnabled, SummaryLog,
3411                                N, Sym, C, IncludeAllocationLine);
3412
3413          C.emitReport(report);
3414        }
3415      }
3416    }
3417  } else if (X.isReturnedNotOwned()) {
3418    if (RE.isOwned()) {
3419      // Trying to return a not owned object to a caller expecting an
3420      // owned object.
3421      state = setRefBinding(state, Sym, X ^ RefVal::ErrorReturnedNotOwned);
3422
3423      static CheckerProgramPointTag ReturnNotOwnedTag(this,
3424                                                      "ReturnNotOwnedForOwned");
3425      ExplodedNode *N = C.addTransition(state, Pred, &ReturnNotOwnedTag);
3426      if (N) {
3427        if (!returnNotOwnedForOwned)
3428          returnNotOwnedForOwned.reset(new ReturnedNotOwnedForOwned(this));
3429
3430        CFRefReport *report =
3431            new CFRefReport(*returnNotOwnedForOwned,
3432                            C.getASTContext().getLangOpts(),
3433                            C.isObjCGCEnabled(), SummaryLog, N, Sym);
3434        C.emitReport(report);
3435      }
3436    }
3437  }
3438}
3439
3440//===----------------------------------------------------------------------===//
3441// Check various ways a symbol can be invalidated.
3442//===----------------------------------------------------------------------===//
3443
3444void RetainCountChecker::checkBind(SVal loc, SVal val, const Stmt *S,
3445                                   CheckerContext &C) const {
3446  // Are we storing to something that causes the value to "escape"?
3447  bool escapes = true;
3448
3449  // A value escapes in three possible cases (this may change):
3450  //
3451  // (1) we are binding to something that is not a memory region.
3452  // (2) we are binding to a memregion that does not have stack storage
3453  // (3) we are binding to a memregion with stack storage that the store
3454  //     does not understand.
3455  ProgramStateRef state = C.getState();
3456
3457  if (Optional<loc::MemRegionVal> regionLoc = loc.getAs<loc::MemRegionVal>()) {
3458    escapes = !regionLoc->getRegion()->hasStackStorage();
3459
3460    if (!escapes) {
3461      // To test (3), generate a new state with the binding added.  If it is
3462      // the same state, then it escapes (since the store cannot represent
3463      // the binding).
3464      // Do this only if we know that the store is not supposed to generate the
3465      // same state.
3466      SVal StoredVal = state->getSVal(regionLoc->getRegion());
3467      if (StoredVal != val)
3468        escapes = (state == (state->bindLoc(*regionLoc, val)));
3469    }
3470    if (!escapes) {
3471      // Case 4: We do not currently model what happens when a symbol is
3472      // assigned to a struct field, so be conservative here and let the symbol
3473      // go. TODO: This could definitely be improved upon.
3474      escapes = !isa<VarRegion>(regionLoc->getRegion());
3475    }
3476  }
3477
3478  // If we are storing the value into an auto function scope variable annotated
3479  // with (__attribute__((cleanup))), stop tracking the value to avoid leak
3480  // false positives.
3481  if (const VarRegion *LVR = dyn_cast_or_null<VarRegion>(loc.getAsRegion())) {
3482    const VarDecl *VD = LVR->getDecl();
3483    if (VD->hasAttr<CleanupAttr>()) {
3484      escapes = true;
3485    }
3486  }
3487
3488  // If our store can represent the binding and we aren't storing to something
3489  // that doesn't have local storage then just return and have the simulation
3490  // state continue as is.
3491  if (!escapes)
3492      return;
3493
3494  // Otherwise, find all symbols referenced by 'val' that we are tracking
3495  // and stop tracking them.
3496  state = state->scanReachableSymbols<StopTrackingCallback>(val).getState();
3497  C.addTransition(state);
3498}
3499
3500ProgramStateRef RetainCountChecker::evalAssume(ProgramStateRef state,
3501                                                   SVal Cond,
3502                                                   bool Assumption) const {
3503
3504  // FIXME: We may add to the interface of evalAssume the list of symbols
3505  //  whose assumptions have changed.  For now we just iterate through the
3506  //  bindings and check if any of the tracked symbols are NULL.  This isn't
3507  //  too bad since the number of symbols we will track in practice are
3508  //  probably small and evalAssume is only called at branches and a few
3509  //  other places.
3510  RefBindingsTy B = state->get<RefBindings>();
3511
3512  if (B.isEmpty())
3513    return state;
3514
3515  bool changed = false;
3516  RefBindingsTy::Factory &RefBFactory = state->get_context<RefBindings>();
3517
3518  for (RefBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
3519    // Check if the symbol is null stop tracking the symbol.
3520    ConstraintManager &CMgr = state->getConstraintManager();
3521    ConditionTruthVal AllocFailed = CMgr.isNull(state, I.getKey());
3522    if (AllocFailed.isConstrainedTrue()) {
3523      changed = true;
3524      B = RefBFactory.remove(B, I.getKey());
3525    }
3526  }
3527
3528  if (changed)
3529    state = state->set<RefBindings>(B);
3530
3531  return state;
3532}
3533
3534ProgramStateRef
3535RetainCountChecker::checkRegionChanges(ProgramStateRef state,
3536                                    const InvalidatedSymbols *invalidated,
3537                                    ArrayRef<const MemRegion *> ExplicitRegions,
3538                                    ArrayRef<const MemRegion *> Regions,
3539                                    const CallEvent *Call) const {
3540  if (!invalidated)
3541    return state;
3542
3543  llvm::SmallPtrSet<SymbolRef, 8> WhitelistedSymbols;
3544  for (ArrayRef<const MemRegion *>::iterator I = ExplicitRegions.begin(),
3545       E = ExplicitRegions.end(); I != E; ++I) {
3546    if (const SymbolicRegion *SR = (*I)->StripCasts()->getAs<SymbolicRegion>())
3547      WhitelistedSymbols.insert(SR->getSymbol());
3548  }
3549
3550  for (InvalidatedSymbols::const_iterator I=invalidated->begin(),
3551       E = invalidated->end(); I!=E; ++I) {
3552    SymbolRef sym = *I;
3553    if (WhitelistedSymbols.count(sym))
3554      continue;
3555    // Remove any existing reference-count binding.
3556    state = removeRefBinding(state, sym);
3557  }
3558  return state;
3559}
3560
3561//===----------------------------------------------------------------------===//
3562// Handle dead symbols and end-of-path.
3563//===----------------------------------------------------------------------===//
3564
3565ProgramStateRef
3566RetainCountChecker::handleAutoreleaseCounts(ProgramStateRef state,
3567                                            ExplodedNode *Pred,
3568                                            const ProgramPointTag *Tag,
3569                                            CheckerContext &Ctx,
3570                                            SymbolRef Sym, RefVal V) const {
3571  unsigned ACnt = V.getAutoreleaseCount();
3572
3573  // No autorelease counts?  Nothing to be done.
3574  if (!ACnt)
3575    return state;
3576
3577  assert(!Ctx.isObjCGCEnabled() && "Autorelease counts in GC mode?");
3578  unsigned Cnt = V.getCount();
3579
3580  // FIXME: Handle sending 'autorelease' to already released object.
3581
3582  if (V.getKind() == RefVal::ReturnedOwned)
3583    ++Cnt;
3584
3585  if (ACnt <= Cnt) {
3586    if (ACnt == Cnt) {
3587      V.clearCounts();
3588      if (V.getKind() == RefVal::ReturnedOwned)
3589        V = V ^ RefVal::ReturnedNotOwned;
3590      else
3591        V = V ^ RefVal::NotOwned;
3592    } else {
3593      V.setCount(V.getCount() - ACnt);
3594      V.setAutoreleaseCount(0);
3595    }
3596    return setRefBinding(state, Sym, V);
3597  }
3598
3599  // Woah!  More autorelease counts then retain counts left.
3600  // Emit hard error.
3601  V = V ^ RefVal::ErrorOverAutorelease;
3602  state = setRefBinding(state, Sym, V);
3603
3604  ExplodedNode *N = Ctx.generateSink(state, Pred, Tag);
3605  if (N) {
3606    SmallString<128> sbuf;
3607    llvm::raw_svector_ostream os(sbuf);
3608    os << "Object was autoreleased ";
3609    if (V.getAutoreleaseCount() > 1)
3610      os << V.getAutoreleaseCount() << " times but the object ";
3611    else
3612      os << "but ";
3613    os << "has a +" << V.getCount() << " retain count";
3614
3615    if (!overAutorelease)
3616      overAutorelease.reset(new OverAutorelease(this));
3617
3618    const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
3619    CFRefReport *report =
3620      new CFRefReport(*overAutorelease, LOpts, /* GCEnabled = */ false,
3621                      SummaryLog, N, Sym, os.str());
3622    Ctx.emitReport(report);
3623  }
3624
3625  return nullptr;
3626}
3627
3628ProgramStateRef
3629RetainCountChecker::handleSymbolDeath(ProgramStateRef state,
3630                                      SymbolRef sid, RefVal V,
3631                                    SmallVectorImpl<SymbolRef> &Leaked) const {
3632  bool hasLeak = false;
3633  if (V.isOwned())
3634    hasLeak = true;
3635  else if (V.isNotOwned() || V.isReturnedOwned())
3636    hasLeak = (V.getCount() > 0);
3637
3638  if (!hasLeak)
3639    return removeRefBinding(state, sid);
3640
3641  Leaked.push_back(sid);
3642  return setRefBinding(state, sid, V ^ RefVal::ErrorLeak);
3643}
3644
3645ExplodedNode *
3646RetainCountChecker::processLeaks(ProgramStateRef state,
3647                                 SmallVectorImpl<SymbolRef> &Leaked,
3648                                 CheckerContext &Ctx,
3649                                 ExplodedNode *Pred) const {
3650  // Generate an intermediate node representing the leak point.
3651  ExplodedNode *N = Ctx.addTransition(state, Pred);
3652
3653  if (N) {
3654    for (SmallVectorImpl<SymbolRef>::iterator
3655         I = Leaked.begin(), E = Leaked.end(); I != E; ++I) {
3656
3657      const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
3658      bool GCEnabled = Ctx.isObjCGCEnabled();
3659      CFRefBug *BT = Pred ? getLeakWithinFunctionBug(LOpts, GCEnabled)
3660                          : getLeakAtReturnBug(LOpts, GCEnabled);
3661      assert(BT && "BugType not initialized.");
3662
3663      CFRefLeakReport *report = new CFRefLeakReport(*BT, LOpts, GCEnabled,
3664                                                    SummaryLog, N, *I, Ctx,
3665                                                    IncludeAllocationLine);
3666      Ctx.emitReport(report);
3667    }
3668  }
3669
3670  return N;
3671}
3672
3673void RetainCountChecker::checkEndFunction(CheckerContext &Ctx) const {
3674  ProgramStateRef state = Ctx.getState();
3675  RefBindingsTy B = state->get<RefBindings>();
3676  ExplodedNode *Pred = Ctx.getPredecessor();
3677
3678  // Don't process anything within synthesized bodies.
3679  const LocationContext *LCtx = Pred->getLocationContext();
3680  if (LCtx->getAnalysisDeclContext()->isBodyAutosynthesized()) {
3681    assert(LCtx->getParent());
3682    return;
3683  }
3684
3685  for (RefBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
3686    state = handleAutoreleaseCounts(state, Pred, /*Tag=*/nullptr, Ctx,
3687                                    I->first, I->second);
3688    if (!state)
3689      return;
3690  }
3691
3692  // If the current LocationContext has a parent, don't check for leaks.
3693  // We will do that later.
3694  // FIXME: we should instead check for imbalances of the retain/releases,
3695  // and suggest annotations.
3696  if (LCtx->getParent())
3697    return;
3698
3699  B = state->get<RefBindings>();
3700  SmallVector<SymbolRef, 10> Leaked;
3701
3702  for (RefBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I)
3703    state = handleSymbolDeath(state, I->first, I->second, Leaked);
3704
3705  processLeaks(state, Leaked, Ctx, Pred);
3706}
3707
3708const ProgramPointTag *
3709RetainCountChecker::getDeadSymbolTag(SymbolRef sym) const {
3710  const CheckerProgramPointTag *&tag = DeadSymbolTags[sym];
3711  if (!tag) {
3712    SmallString<64> buf;
3713    llvm::raw_svector_ostream out(buf);
3714    out << "Dead Symbol : ";
3715    sym->dumpToStream(out);
3716    tag = new CheckerProgramPointTag(this, out.str());
3717  }
3718  return tag;
3719}
3720
3721void RetainCountChecker::checkDeadSymbols(SymbolReaper &SymReaper,
3722                                          CheckerContext &C) const {
3723  ExplodedNode *Pred = C.getPredecessor();
3724
3725  ProgramStateRef state = C.getState();
3726  RefBindingsTy B = state->get<RefBindings>();
3727  SmallVector<SymbolRef, 10> Leaked;
3728
3729  // Update counts from autorelease pools
3730  for (SymbolReaper::dead_iterator I = SymReaper.dead_begin(),
3731       E = SymReaper.dead_end(); I != E; ++I) {
3732    SymbolRef Sym = *I;
3733    if (const RefVal *T = B.lookup(Sym)){
3734      // Use the symbol as the tag.
3735      // FIXME: This might not be as unique as we would like.
3736      const ProgramPointTag *Tag = getDeadSymbolTag(Sym);
3737      state = handleAutoreleaseCounts(state, Pred, Tag, C, Sym, *T);
3738      if (!state)
3739        return;
3740
3741      // Fetch the new reference count from the state, and use it to handle
3742      // this symbol.
3743      state = handleSymbolDeath(state, *I, *getRefBinding(state, Sym), Leaked);
3744    }
3745  }
3746
3747  if (Leaked.empty()) {
3748    C.addTransition(state);
3749    return;
3750  }
3751
3752  Pred = processLeaks(state, Leaked, C, Pred);
3753
3754  // Did we cache out?
3755  if (!Pred)
3756    return;
3757
3758  // Now generate a new node that nukes the old bindings.
3759  // The only bindings left at this point are the leaked symbols.
3760  RefBindingsTy::Factory &F = state->get_context<RefBindings>();
3761  B = state->get<RefBindings>();
3762
3763  for (SmallVectorImpl<SymbolRef>::iterator I = Leaked.begin(),
3764                                            E = Leaked.end();
3765       I != E; ++I)
3766    B = F.remove(B, *I);
3767
3768  state = state->set<RefBindings>(B);
3769  C.addTransition(state, Pred);
3770}
3771
3772void RetainCountChecker::printState(raw_ostream &Out, ProgramStateRef State,
3773                                    const char *NL, const char *Sep) const {
3774
3775  RefBindingsTy B = State->get<RefBindings>();
3776
3777  if (B.isEmpty())
3778    return;
3779
3780  Out << Sep << NL;
3781
3782  for (RefBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
3783    Out << I->first << " : ";
3784    I->second.print(Out);
3785    Out << NL;
3786  }
3787}
3788
3789//===----------------------------------------------------------------------===//
3790// Checker registration.
3791//===----------------------------------------------------------------------===//
3792
3793void ento::registerRetainCountChecker(CheckerManager &Mgr) {
3794  Mgr.registerChecker<RetainCountChecker>(Mgr.getAnalyzerOptions());
3795}
3796
3797//===----------------------------------------------------------------------===//
3798// Implementation of the CallEffects API.
3799//===----------------------------------------------------------------------===//
3800
3801namespace clang { namespace ento { namespace objc_retain {
3802
3803// This is a bit gross, but it allows us to populate CallEffects without
3804// creating a bunch of accessors.  This kind is very localized, so the
3805// damage of this macro is limited.
3806#define createCallEffect(D, KIND)\
3807  ASTContext &Ctx = D->getASTContext();\
3808  LangOptions L = Ctx.getLangOpts();\
3809  RetainSummaryManager M(Ctx, L.GCOnly, L.ObjCAutoRefCount);\
3810  const RetainSummary *S = M.get ## KIND ## Summary(D);\
3811  CallEffects CE(S->getRetEffect());\
3812  CE.Receiver = S->getReceiverEffect();\
3813  unsigned N = D->param_size();\
3814  for (unsigned i = 0; i < N; ++i) {\
3815    CE.Args.push_back(S->getArg(i));\
3816  }
3817
3818CallEffects CallEffects::getEffect(const ObjCMethodDecl *MD) {
3819  createCallEffect(MD, Method);
3820  return CE;
3821}
3822
3823CallEffects CallEffects::getEffect(const FunctionDecl *FD) {
3824  createCallEffect(FD, Function);
3825  return CE;
3826}
3827
3828#undef createCallEffect
3829
3830}}}
3831