blob: 69b19a785938141ac690b14ceea07a1d4e8ce098 [file] [log] [blame]
Devin Coughlineb6673c2016-02-22 17:56:24 +00001//===- ObjCSuperDeallocChecker.cpp - Check correct use of [super dealloc] -===//
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 defines ObjCSuperDeallocChecker, a builtin check that warns when
Devin Coughlin591991c2016-02-25 23:36:52 +000011// self is used after a call to [super dealloc] in MRR mode.
Devin Coughlineb6673c2016-02-22 17:56:24 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "ClangSACheckers.h"
16#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
17#include "clang/StaticAnalyzer/Core/Checker.h"
18#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
19#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
20#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
21#include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h"
22
23using namespace clang;
24using namespace ento;
25
26namespace {
27class ObjCSuperDeallocChecker
Devin Coughlin591991c2016-02-25 23:36:52 +000028 : public Checker<check::PostObjCMessage, check::PreObjCMessage,
29 check::PreCall, check::Location> {
Devin Coughlineb6673c2016-02-22 17:56:24 +000030
31 mutable IdentifierInfo *IIdealloc, *IINSObject;
32 mutable Selector SELdealloc;
33
34 std::unique_ptr<BugType> DoubleSuperDeallocBugType;
35
36 void initIdentifierInfoAndSelectors(ASTContext &Ctx) const;
37
38 bool isSuperDeallocMessage(const ObjCMethodCall &M) const;
39
40public:
41 ObjCSuperDeallocChecker();
42 void checkPostObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const;
43 void checkPreObjCMessage(const ObjCMethodCall &M, CheckerContext &C) const;
Devin Coughlin591991c2016-02-25 23:36:52 +000044
45 void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
46
47 void checkLocation(SVal l, bool isLoad, const Stmt *S,
48 CheckerContext &C) const;
49
50private:
51
52 void diagnoseCallArguments(const CallEvent &CE, CheckerContext &C) const;
53
54 void reportUseAfterDealloc(SymbolRef Sym, StringRef Desc, const Stmt *S,
55 CheckerContext &C) const;
Devin Coughlineb6673c2016-02-22 17:56:24 +000056};
57
58} // End anonymous namespace.
59
60// Remember whether [super dealloc] has previously been called on the
Devin Coughlin591991c2016-02-25 23:36:52 +000061// SymbolRef for the receiver.
Devin Coughlineb6673c2016-02-22 17:56:24 +000062REGISTER_SET_WITH_PROGRAMSTATE(CalledSuperDealloc, SymbolRef)
63
Benjamin Kramer6c3856d2016-03-04 14:18:52 +000064namespace {
Devin Coughlineb6673c2016-02-22 17:56:24 +000065class SuperDeallocBRVisitor final
66 : public BugReporterVisitorImpl<SuperDeallocBRVisitor> {
67
68 SymbolRef ReceiverSymbol;
69 bool Satisfied;
70
71public:
72 SuperDeallocBRVisitor(SymbolRef ReceiverSymbol)
73 : ReceiverSymbol(ReceiverSymbol),
74 Satisfied(false) {}
75
David Blaikie0a0c2752017-01-05 17:26:53 +000076 std::shared_ptr<PathDiagnosticPiece> VisitNode(const ExplodedNode *Succ,
77 const ExplodedNode *Pred,
78 BugReporterContext &BRC,
79 BugReport &BR) override;
Devin Coughlineb6673c2016-02-22 17:56:24 +000080
81 void Profile(llvm::FoldingSetNodeID &ID) const override {
82 ID.Add(ReceiverSymbol);
83 }
84};
Benjamin Kramer6c3856d2016-03-04 14:18:52 +000085} // End anonymous namespace.
Devin Coughlineb6673c2016-02-22 17:56:24 +000086
87void ObjCSuperDeallocChecker::checkPreObjCMessage(const ObjCMethodCall &M,
88 CheckerContext &C) const {
Devin Coughlineb6673c2016-02-22 17:56:24 +000089
90 ProgramStateRef State = C.getState();
91 SymbolRef ReceiverSymbol = M.getReceiverSVal().getAsSymbol();
Devin Coughlin591991c2016-02-25 23:36:52 +000092 if (!ReceiverSymbol) {
93 diagnoseCallArguments(M, C);
94 return;
95 }
Devin Coughlineb6673c2016-02-22 17:56:24 +000096
97 bool AlreadyCalled = State->contains<CalledSuperDealloc>(ReceiverSymbol);
Devin Coughlineb6673c2016-02-22 17:56:24 +000098 if (!AlreadyCalled)
99 return;
100
Devin Coughlin591991c2016-02-25 23:36:52 +0000101 StringRef Desc;
Devin Coughlineb6673c2016-02-22 17:56:24 +0000102
Devin Coughlin591991c2016-02-25 23:36:52 +0000103 if (isSuperDeallocMessage(M)) {
104 Desc = "[super dealloc] should not be called multiple times";
105 } else {
106 Desc = StringRef();
107 }
108
109 reportUseAfterDealloc(ReceiverSymbol, Desc, M.getOriginExpr(), C);
Devin Coughlineb6673c2016-02-22 17:56:24 +0000110}
111
Devin Coughlin591991c2016-02-25 23:36:52 +0000112void ObjCSuperDeallocChecker::checkPreCall(const CallEvent &Call,
113 CheckerContext &C) const {
114 diagnoseCallArguments(Call, C);
115}
116
Devin Coughlineb6673c2016-02-22 17:56:24 +0000117void ObjCSuperDeallocChecker::checkPostObjCMessage(const ObjCMethodCall &M,
118 CheckerContext &C) const {
119 // Check for [super dealloc] method call.
120 if (!isSuperDeallocMessage(M))
121 return;
122
123 ProgramStateRef State = C.getState();
124 SymbolRef ReceiverSymbol = M.getSelfSVal().getAsSymbol();
125 assert(ReceiverSymbol && "No receiver symbol at call to [super dealloc]?");
126
127 // We add this transition in checkPostObjCMessage to avoid warning when
128 // we inline a call to [super dealloc] where the inlined call itself
129 // calls [super dealloc].
130 State = State->add<CalledSuperDealloc>(ReceiverSymbol);
131 C.addTransition(State);
132}
133
Devin Coughlin591991c2016-02-25 23:36:52 +0000134void ObjCSuperDeallocChecker::checkLocation(SVal L, bool IsLoad, const Stmt *S,
135 CheckerContext &C) const {
136 SymbolRef BaseSym = L.getLocSymbolInBase();
137 if (!BaseSym)
138 return;
139
140 ProgramStateRef State = C.getState();
141
142 if (!State->contains<CalledSuperDealloc>(BaseSym))
143 return;
144
145 const MemRegion *R = L.getAsRegion();
146 if (!R)
147 return;
148
149 // Climb the super regions to find the base symbol while recording
150 // the second-to-last region for error reporting.
151 const MemRegion *PriorSubRegion = nullptr;
152 while (const SubRegion *SR = dyn_cast<SubRegion>(R)) {
153 if (const SymbolicRegion *SymR = dyn_cast<SymbolicRegion>(SR)) {
154 BaseSym = SymR->getSymbol();
155 break;
156 } else {
157 R = SR->getSuperRegion();
158 PriorSubRegion = SR;
159 }
160 }
161
162 StringRef Desc = StringRef();
163 auto *IvarRegion = dyn_cast_or_null<ObjCIvarRegion>(PriorSubRegion);
164
Devin Coughlinea5415f2016-02-26 00:23:41 +0000165 std::string Buf;
166 llvm::raw_string_ostream OS(Buf);
Devin Coughlin591991c2016-02-25 23:36:52 +0000167 if (IvarRegion) {
Devin Coughlindce8d8b2016-03-02 21:22:48 +0000168 OS << "Use of instance variable '" << *IvarRegion->getDecl() <<
Devin Coughlin896dffe2016-02-26 00:47:42 +0000169 "' after 'self' has been deallocated";
Devin Coughlin591991c2016-02-25 23:36:52 +0000170 Desc = OS.str();
171 }
172
173 reportUseAfterDealloc(BaseSym, Desc, S, C);
174}
175
Devin Coughlinec6f61c2016-02-26 03:41:31 +0000176/// Report a use-after-dealloc on Sym. If not empty,
177/// Desc will be used to describe the error; otherwise,
Devin Coughlin591991c2016-02-25 23:36:52 +0000178/// a default warning will be used.
179void ObjCSuperDeallocChecker::reportUseAfterDealloc(SymbolRef Sym,
180 StringRef Desc,
181 const Stmt *S,
182 CheckerContext &C) const {
183 // We have a use of self after free.
184 // This likely causes a crash, so stop exploring the
185 // path by generating a sink.
186 ExplodedNode *ErrNode = C.generateErrorNode();
187 // If we've already reached this node on another path, return.
188 if (!ErrNode)
189 return;
190
191 if (Desc.empty())
Devin Coughlin05c03842016-11-01 22:16:39 +0000192 Desc = "Use of 'self' after it has been deallocated";
Devin Coughlin591991c2016-02-25 23:36:52 +0000193
194 // Generate the report.
195 std::unique_ptr<BugReport> BR(
196 new BugReport(*DoubleSuperDeallocBugType, Desc, ErrNode));
197 BR->addRange(S->getSourceRange());
198 BR->addVisitor(llvm::make_unique<SuperDeallocBRVisitor>(Sym));
199 C.emitReport(std::move(BR));
200}
201
Devin Coughlinec6f61c2016-02-26 03:41:31 +0000202/// Diagnose if any of the arguments to CE have already been
Devin Coughlin591991c2016-02-25 23:36:52 +0000203/// dealloc'd.
204void ObjCSuperDeallocChecker::diagnoseCallArguments(const CallEvent &CE,
205 CheckerContext &C) const {
206 ProgramStateRef State = C.getState();
207 unsigned ArgCount = CE.getNumArgs();
208 for (unsigned I = 0; I < ArgCount; I++) {
209 SymbolRef Sym = CE.getArgSVal(I).getAsSymbol();
210 if (!Sym)
211 continue;
212
213 if (State->contains<CalledSuperDealloc>(Sym)) {
214 reportUseAfterDealloc(Sym, StringRef(), CE.getArgExpr(I), C);
215 return;
216 }
217 }
218}
219
Devin Coughlineb6673c2016-02-22 17:56:24 +0000220ObjCSuperDeallocChecker::ObjCSuperDeallocChecker()
221 : IIdealloc(nullptr), IINSObject(nullptr) {
222
223 DoubleSuperDeallocBugType.reset(
224 new BugType(this, "[super dealloc] should not be called more than once",
225 categories::CoreFoundationObjectiveC));
226}
227
228void
229ObjCSuperDeallocChecker::initIdentifierInfoAndSelectors(ASTContext &Ctx) const {
230 if (IIdealloc)
231 return;
232
233 IIdealloc = &Ctx.Idents.get("dealloc");
234 IINSObject = &Ctx.Idents.get("NSObject");
235
236 SELdealloc = Ctx.Selectors.getSelector(0, &IIdealloc);
237}
238
239bool
240ObjCSuperDeallocChecker::isSuperDeallocMessage(const ObjCMethodCall &M) const {
241 if (M.getOriginExpr()->getReceiverKind() != ObjCMessageExpr::SuperInstance)
242 return false;
243
244 ASTContext &Ctx = M.getState()->getStateManager().getContext();
245 initIdentifierInfoAndSelectors(Ctx);
246
247 return M.getSelector() == SELdealloc;
248}
249
David Blaikie0a0c2752017-01-05 17:26:53 +0000250std::shared_ptr<PathDiagnosticPiece>
251SuperDeallocBRVisitor::VisitNode(const ExplodedNode *Succ,
252 const ExplodedNode *Pred,
253 BugReporterContext &BRC, BugReport &BR) {
Devin Coughlineb6673c2016-02-22 17:56:24 +0000254 if (Satisfied)
255 return nullptr;
256
257 ProgramStateRef State = Succ->getState();
258
259 bool CalledNow =
260 Succ->getState()->contains<CalledSuperDealloc>(ReceiverSymbol);
261 bool CalledBefore =
262 Pred->getState()->contains<CalledSuperDealloc>(ReceiverSymbol);
263
264 // Is Succ the node on which the analyzer noted that [super dealloc] was
265 // called on ReceiverSymbol?
266 if (CalledNow && !CalledBefore) {
267 Satisfied = true;
268
269 ProgramPoint P = Succ->getLocation();
270 PathDiagnosticLocation L =
271 PathDiagnosticLocation::create(P, BRC.getSourceManager());
272
273 if (!L.isValid() || !L.asLocation().isValid())
274 return nullptr;
275
David Blaikie0a0c2752017-01-05 17:26:53 +0000276 return std::make_shared<PathDiagnosticEventPiece>(
Devin Coughlineb6673c2016-02-22 17:56:24 +0000277 L, "[super dealloc] called here");
278 }
279
280 return nullptr;
281}
282
283//===----------------------------------------------------------------------===//
284// Checker Registration.
285//===----------------------------------------------------------------------===//
286
287void ento::registerObjCSuperDeallocChecker(CheckerManager &Mgr) {
288 const LangOptions &LangOpts = Mgr.getLangOpts();
289 if (LangOpts.getGC() == LangOptions::GCOnly || LangOpts.ObjCAutoRefCount)
290 return;
291 Mgr.registerChecker<ObjCSuperDeallocChecker>();
292}