blob: 6c33084c2db7be85e155967ea4bc161a1ae7f239 [file] [log] [blame]
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +00001//== ObjCSelfInitChecker.cpp - Checker for 'self' initialization -*- 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 defines ObjCSelfInitChecker, a builtin check that checks for uses of
11// 'self' before proper initialization.
12//
13//===----------------------------------------------------------------------===//
14
15// This checks initialization methods to verify that they assign 'self' to the
16// result of an initialization call (e.g. [super init], or [self initWith..])
17// before using 'self' or any instance variable.
18//
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000019// To perform the required checking, values are tagged with flags that indicate
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000020// 1) if the object is the one pointed to by 'self', and 2) if the object
21// is the result of an initializer (e.g. [super init]).
22//
23// Uses of an object that is true for 1) but not 2) trigger a diagnostic.
24// The uses that are currently checked are:
25// - Using instance variables.
26// - Returning the object.
27//
28// Note that we don't check for an invalid 'self' that is the receiver of an
29// obj-c message expression to cut down false positives where logging functions
30// get information from self (like its class) or doing "invalidation" on self
31// when the initialization fails.
32//
33// Because the object that 'self' points to gets invalidated when a call
34// receives a reference to 'self', the checker keeps track and passes the flags
35// for 1) and 2) to the new object that 'self' points to after the call.
36//
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000037//===----------------------------------------------------------------------===//
38
Argyrios Kyrtzidis027a6ab2011-02-15 07:42:33 +000039#include "ClangSACheckers.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000040#include "clang/AST/ParentMap.h"
41#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000042#include "clang/StaticAnalyzer/Core/Checker.h"
Argyrios Kyrtzidis695fb502011-02-17 21:39:17 +000043#include "clang/StaticAnalyzer/Core/CheckerManager.h"
Jordan Rosef540c542012-07-26 21:39:41 +000044#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +000045#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
Ted Kremenek18c66fd2011-08-15 22:09:50 +000046#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
Benjamin Kramer9d5a78d2012-12-01 17:54:07 +000047#include "llvm/Support/raw_ostream.h"
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000048
49using namespace clang;
50using namespace ento;
51
52static bool shouldRunOnFunctionOrMethod(const NamedDecl *ND);
53static bool isInitializationMethod(const ObjCMethodDecl *MD);
Jordan Rosede507ea2012-07-02 19:28:04 +000054static bool isInitMessage(const ObjCMethodCall &Msg);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000055static bool isSelfVar(SVal location, CheckerContext &C);
56
57namespace {
Jordan Rosefe6a0112012-07-02 19:28:21 +000058class ObjCSelfInitChecker : public Checker< check::PostObjCMessage,
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +000059 check::PostStmt<ObjCIvarRefExpr>,
60 check::PreStmt<ReturnStmt>,
Jordan Rosefe6a0112012-07-02 19:28:21 +000061 check::PreCall,
62 check::PostCall,
Anna Zaks6a2a1862012-05-08 21:19:21 +000063 check::Location,
64 check::Bind > {
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000065public:
Jordan Rosede507ea2012-07-02 19:28:04 +000066 void checkPostObjCMessage(const ObjCMethodCall &Msg, CheckerContext &C) const;
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +000067 void checkPostStmt(const ObjCIvarRefExpr *E, CheckerContext &C) const;
68 void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
Anna Zaks390909c2011-10-06 00:43:15 +000069 void checkLocation(SVal location, bool isLoad, const Stmt *S,
70 CheckerContext &C) const;
Anna Zaks6a2a1862012-05-08 21:19:21 +000071 void checkBind(SVal loc, SVal val, const Stmt *S, CheckerContext &C) const;
Anna Zaksf420fe32012-03-05 18:58:25 +000072
Jordan Rosefe6a0112012-07-02 19:28:21 +000073 void checkPreCall(const CallEvent &CE, CheckerContext &C) const;
74 void checkPostCall(const CallEvent &CE, CheckerContext &C) const;
Anna Zaksf420fe32012-03-05 18:58:25 +000075
Jordan Rosea435e692012-09-08 01:47:11 +000076 void printState(raw_ostream &Out, ProgramStateRef State,
Stephen Hines651f13c2014-04-23 16:59:28 -070077 const char *NL, const char *Sep) const override;
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000078};
79} // end anonymous namespace
80
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000081namespace {
82
83class InitSelfBug : public BugType {
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000084public:
Stephen Hines651f13c2014-04-23 16:59:28 -070085 InitSelfBug(const CheckerBase *Checker)
86 : BugType(Checker, "Missing \"self = [(super or self) init...]\"",
87 categories::CoreFoundationObjectiveC) {}
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +000088};
89
90} // end anonymous namespace
91
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +000092namespace {
93enum SelfFlagEnum {
94 /// \brief No flag set.
95 SelfFlag_None = 0x0,
96 /// \brief Value came from 'self'.
97 SelfFlag_Self = 0x1,
98 /// \brief Value came from the result of an initializer (e.g. [super init]).
99 SelfFlag_InitRes = 0x2
100};
101}
102
Jordan Rose466224f2012-11-02 01:54:42 +0000103REGISTER_MAP_WITH_PROGRAMSTATE(SelfFlag, SymbolRef, unsigned)
104REGISTER_TRAIT_WITH_PROGRAMSTATE(CalledInit, bool)
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000105
Jordan Rose466224f2012-11-02 01:54:42 +0000106/// \brief A call receiving a reference to 'self' invalidates the object that
107/// 'self' contains. This keeps the "self flags" assigned to the 'self'
108/// object before the call so we can assign them to the new object that 'self'
109/// points to after the call.
110REGISTER_TRAIT_WITH_PROGRAMSTATE(PreCallSelfFlags, unsigned)
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000111
Ted Kremenek8bef8232012-01-26 21:29:00 +0000112static SelfFlagEnum getSelfFlags(SVal val, ProgramStateRef state) {
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000113 if (SymbolRef sym = val.getAsSymbol())
114 if (const unsigned *attachedFlags = state->get<SelfFlag>(sym))
115 return (SelfFlagEnum)*attachedFlags;
116 return SelfFlag_None;
117}
118
119static SelfFlagEnum getSelfFlags(SVal val, CheckerContext &C) {
120 return getSelfFlags(val, C.getState());
121}
122
Ted Kremenek8bef8232012-01-26 21:29:00 +0000123static void addSelfFlag(ProgramStateRef state, SVal val,
Ted Kremenekb715a7c2011-02-12 03:03:54 +0000124 SelfFlagEnum flag, CheckerContext &C) {
Argyrios Kyrtzidis0ca10402011-02-05 05:54:53 +0000125 // We tag the symbol that the SVal wraps.
Anna Zaks18126522012-12-13 00:42:19 +0000126 if (SymbolRef sym = val.getAsSymbol()) {
Jordan Rose82f2ad42012-09-08 01:47:28 +0000127 state = state->set<SelfFlag>(sym, getSelfFlags(val, state) | flag);
Anna Zaks18126522012-12-13 00:42:19 +0000128 C.addTransition(state);
129 }
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000130}
131
132static bool hasSelfFlag(SVal val, SelfFlagEnum flag, CheckerContext &C) {
133 return getSelfFlags(val, C) & flag;
134}
135
136/// \brief Returns true of the value of the expression is the object that 'self'
137/// points to and is an object that did not come from the result of calling
138/// an initializer.
139static bool isInvalidSelf(const Expr *E, CheckerContext &C) {
Ted Kremenek5eca4822012-01-06 22:09:28 +0000140 SVal exprVal = C.getState()->getSVal(E, C.getLocationContext());
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000141 if (!hasSelfFlag(exprVal, SelfFlag_Self, C))
142 return false; // value did not come from 'self'.
143 if (hasSelfFlag(exprVal, SelfFlag_InitRes, C))
144 return false; // 'self' is properly initialized.
145
146 return true;
147}
148
149static void checkForInvalidSelf(const Expr *E, CheckerContext &C,
Stephen Hines651f13c2014-04-23 16:59:28 -0700150 const char *errorStr,
151 const CheckerBase *Checker) {
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000152 if (!E)
153 return;
Ted Kremenekb715a7c2011-02-12 03:03:54 +0000154
155 if (!C.getState()->get<CalledInit>())
156 return;
157
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000158 if (!isInvalidSelf(E, C))
159 return;
Ted Kremenekb715a7c2011-02-12 03:03:54 +0000160
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000161 // Generate an error node.
162 ExplodedNode *N = C.generateSink();
163 if (!N)
164 return;
165
Stephen Hines651f13c2014-04-23 16:59:28 -0700166 BugReport *report = new BugReport(*new InitSelfBug(Checker), errorStr, N);
Jordan Rose785950e2012-11-02 01:53:40 +0000167 C.emitReport(report);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000168}
169
Jordan Rosede507ea2012-07-02 19:28:04 +0000170void ObjCSelfInitChecker::checkPostObjCMessage(const ObjCMethodCall &Msg,
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000171 CheckerContext &C) const {
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000172 // When encountering a message that does initialization (init rule),
173 // tag the return value so that we know later on that if self has this value
174 // then it is properly initialized.
175
176 // FIXME: A callback should disable checkers at the start of functions.
177 if (!shouldRunOnFunctionOrMethod(dyn_cast<NamedDecl>(
Anna Zaks1efcc422012-02-04 02:31:37 +0000178 C.getCurrentAnalysisDeclContext()->getDecl())))
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000179 return;
180
Jordan Rosede507ea2012-07-02 19:28:04 +0000181 if (isInitMessage(Msg)) {
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000182 // Tag the return value as the result of an initializer.
Ted Kremenek8bef8232012-01-26 21:29:00 +0000183 ProgramStateRef state = C.getState();
Ted Kremenekb715a7c2011-02-12 03:03:54 +0000184
185 // FIXME this really should be context sensitive, where we record
186 // the current stack frame (for IPA). Also, we need to clean this
187 // value out when we return from this method.
188 state = state->set<CalledInit>(true);
189
Jordan Rosede507ea2012-07-02 19:28:04 +0000190 SVal V = state->getSVal(Msg.getOriginExpr(), C.getLocationContext());
Ted Kremenekb715a7c2011-02-12 03:03:54 +0000191 addSelfFlag(state, V, SelfFlag_InitRes, C);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000192 return;
193 }
194
195 // We don't check for an invalid 'self' in an obj-c message expression to cut
196 // down false positives where logging functions get information from self
197 // (like its class) or doing "invalidation" on self when the initialization
198 // fails.
199}
200
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000201void ObjCSelfInitChecker::checkPostStmt(const ObjCIvarRefExpr *E,
202 CheckerContext &C) const {
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000203 // FIXME: A callback should disable checkers at the start of functions.
204 if (!shouldRunOnFunctionOrMethod(dyn_cast<NamedDecl>(
Anna Zaks1efcc422012-02-04 02:31:37 +0000205 C.getCurrentAnalysisDeclContext()->getDecl())))
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000206 return;
207
Stephen Hines651f13c2014-04-23 16:59:28 -0700208 checkForInvalidSelf(
209 E->getBase(), C,
210 "Instance variable used while 'self' is not set to the result of "
211 "'[(super or self) init...]'",
212 this);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000213}
214
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000215void ObjCSelfInitChecker::checkPreStmt(const ReturnStmt *S,
216 CheckerContext &C) const {
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000217 // FIXME: A callback should disable checkers at the start of functions.
218 if (!shouldRunOnFunctionOrMethod(dyn_cast<NamedDecl>(
Anna Zaks1efcc422012-02-04 02:31:37 +0000219 C.getCurrentAnalysisDeclContext()->getDecl())))
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000220 return;
221
222 checkForInvalidSelf(S->getRetValue(), C,
Stephen Hines651f13c2014-04-23 16:59:28 -0700223 "Returning 'self' while it is not set to the result of "
224 "'[(super or self) init...]'",
225 this);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000226}
227
Jordan Rosefe6a0112012-07-02 19:28:21 +0000228// When a call receives a reference to 'self', [Pre/Post]Call pass
229// the SelfFlags from the object 'self' points to before the call to the new
Argyrios Kyrtzidis0ca10402011-02-05 05:54:53 +0000230// object after the call. This is to avoid invalidation of 'self' by logging
231// functions.
232// Another common pattern in classes with multiple initializers is to put the
233// subclass's common initialization bits into a static function that receives
234// the value of 'self', e.g:
235// @code
236// if (!(self = [super init]))
237// return nil;
238// if (!(self = _commonInit(self)))
239// return nil;
240// @endcode
241// Until we can use inter-procedural analysis, in such a call, transfer the
242// SelfFlags to the result of the call.
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000243
Jordan Rosefe6a0112012-07-02 19:28:21 +0000244void ObjCSelfInitChecker::checkPreCall(const CallEvent &CE,
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000245 CheckerContext &C) const {
Jordan Rosefe6a0112012-07-02 19:28:21 +0000246 // FIXME: A callback should disable checkers at the start of functions.
247 if (!shouldRunOnFunctionOrMethod(dyn_cast<NamedDecl>(
248 C.getCurrentAnalysisDeclContext()->getDecl())))
249 return;
Jordan Rose55037cd2012-07-02 19:27:46 +0000250
Ted Kremenek8bef8232012-01-26 21:29:00 +0000251 ProgramStateRef state = C.getState();
Anna Zaksf420fe32012-03-05 18:58:25 +0000252 unsigned NumArgs = CE.getNumArgs();
Anna Zaks9a70cdd2012-04-16 21:51:09 +0000253 // If we passed 'self' as and argument to the call, record it in the state
254 // to be propagated after the call.
255 // Note, we could have just given up, but try to be more optimistic here and
256 // assume that the functions are going to continue initialization or will not
257 // modify self.
Anna Zaksf420fe32012-03-05 18:58:25 +0000258 for (unsigned i = 0; i < NumArgs; ++i) {
259 SVal argV = CE.getArgSVal(i);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000260 if (isSelfVar(argV, C)) {
David Blaikie5251abe2013-02-20 05:52:05 +0000261 unsigned selfFlags = getSelfFlags(state->getSVal(argV.castAs<Loc>()), C);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000262 C.addTransition(state->set<PreCallSelfFlags>(selfFlags));
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000263 return;
Argyrios Kyrtzidis0ca10402011-02-05 05:54:53 +0000264 } else if (hasSelfFlag(argV, SelfFlag_Self, C)) {
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000265 unsigned selfFlags = getSelfFlags(argV, C);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000266 C.addTransition(state->set<PreCallSelfFlags>(selfFlags));
Argyrios Kyrtzidis0ca10402011-02-05 05:54:53 +0000267 return;
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000268 }
269 }
270}
271
Jordan Rosefe6a0112012-07-02 19:28:21 +0000272void ObjCSelfInitChecker::checkPostCall(const CallEvent &CE,
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000273 CheckerContext &C) const {
Jordan Rosefe6a0112012-07-02 19:28:21 +0000274 // FIXME: A callback should disable checkers at the start of functions.
275 if (!shouldRunOnFunctionOrMethod(dyn_cast<NamedDecl>(
276 C.getCurrentAnalysisDeclContext()->getDecl())))
277 return;
278
Ted Kremenek8bef8232012-01-26 21:29:00 +0000279 ProgramStateRef state = C.getState();
Jordan Rosefe6a0112012-07-02 19:28:21 +0000280 SelfFlagEnum prevFlags = (SelfFlagEnum)state->get<PreCallSelfFlags>();
281 if (!prevFlags)
282 return;
283 state = state->remove<PreCallSelfFlags>();
284
Anna Zaksf420fe32012-03-05 18:58:25 +0000285 unsigned NumArgs = CE.getNumArgs();
286 for (unsigned i = 0; i < NumArgs; ++i) {
287 SVal argV = CE.getArgSVal(i);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000288 if (isSelfVar(argV, C)) {
Anna Zaks9a70cdd2012-04-16 21:51:09 +0000289 // If the address of 'self' is being passed to the call, assume that the
290 // 'self' after the call will have the same flags.
291 // EX: log(&self)
David Blaikie5251abe2013-02-20 05:52:05 +0000292 addSelfFlag(state, state->getSVal(argV.castAs<Loc>()), prevFlags, C);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000293 return;
Argyrios Kyrtzidis0ca10402011-02-05 05:54:53 +0000294 } else if (hasSelfFlag(argV, SelfFlag_Self, C)) {
Anna Zaks9a70cdd2012-04-16 21:51:09 +0000295 // If 'self' is passed to the call by value, assume that the function
296 // returns 'self'. So assign the flags, which were set on 'self' to the
297 // return value.
298 // EX: self = performMoreInitialization(self)
Jordan Rose2f3017f2012-11-02 23:49:29 +0000299 addSelfFlag(state, CE.getReturnValue(), prevFlags, C);
Argyrios Kyrtzidis0ca10402011-02-05 05:54:53 +0000300 return;
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000301 }
302 }
Jordan Rose2f3017f2012-11-02 23:49:29 +0000303
304 C.addTransition(state);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000305}
306
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000307void ObjCSelfInitChecker::checkLocation(SVal location, bool isLoad,
Anna Zaks390909c2011-10-06 00:43:15 +0000308 const Stmt *S,
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000309 CheckerContext &C) const {
Anna Zaks18126522012-12-13 00:42:19 +0000310 if (!shouldRunOnFunctionOrMethod(dyn_cast<NamedDecl>(
311 C.getCurrentAnalysisDeclContext()->getDecl())))
312 return;
313
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000314 // Tag the result of a load from 'self' so that we can easily know that the
315 // value is the object that 'self' points to.
Ted Kremenek8bef8232012-01-26 21:29:00 +0000316 ProgramStateRef state = C.getState();
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000317 if (isSelfVar(location, C))
David Blaikie5251abe2013-02-20 05:52:05 +0000318 addSelfFlag(state, state->getSVal(location.castAs<Loc>()), SelfFlag_Self,
319 C);
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000320}
321
Anna Zaks6a2a1862012-05-08 21:19:21 +0000322
323void ObjCSelfInitChecker::checkBind(SVal loc, SVal val, const Stmt *S,
324 CheckerContext &C) const {
325 // Allow assignment of anything to self. Self is a local variable in the
326 // initializer, so it is legal to assign anything to it, like results of
327 // static functions/method calls. After self is assigned something we cannot
328 // reason about, stop enforcing the rules.
329 // (Only continue checking if the assigned value should be treated as self.)
330 if ((isSelfVar(loc, C)) &&
331 !hasSelfFlag(val, SelfFlag_InitRes, C) &&
332 !hasSelfFlag(val, SelfFlag_Self, C) &&
333 !isSelfVar(val, C)) {
334
335 // Stop tracking the checker-specific state in the state.
336 ProgramStateRef State = C.getState();
337 State = State->remove<CalledInit>();
338 if (SymbolRef sym = loc.getAsSymbol())
339 State = State->remove<SelfFlag>(sym);
340 C.addTransition(State);
341 }
342}
343
Jordan Rosea435e692012-09-08 01:47:11 +0000344void ObjCSelfInitChecker::printState(raw_ostream &Out, ProgramStateRef State,
345 const char *NL, const char *Sep) const {
Jordan Rose466224f2012-11-02 01:54:42 +0000346 SelfFlagTy FlagMap = State->get<SelfFlag>();
Jordan Rosea435e692012-09-08 01:47:11 +0000347 bool DidCallInit = State->get<CalledInit>();
348 SelfFlagEnum PreCallFlags = (SelfFlagEnum)State->get<PreCallSelfFlags>();
349
350 if (FlagMap.isEmpty() && !DidCallInit && !PreCallFlags)
351 return;
352
Stephen Hines651f13c2014-04-23 16:59:28 -0700353 Out << Sep << NL << *this << " :" << NL;
Jordan Rosea435e692012-09-08 01:47:11 +0000354
355 if (DidCallInit)
356 Out << " An init method has been called." << NL;
357
358 if (PreCallFlags != SelfFlag_None) {
359 if (PreCallFlags & SelfFlag_Self) {
360 Out << " An argument of the current call came from the 'self' variable."
361 << NL;
362 }
363 if (PreCallFlags & SelfFlag_InitRes) {
364 Out << " An argument of the current call came from an init method."
365 << NL;
366 }
367 }
368
369 Out << NL;
Jordan Rose466224f2012-11-02 01:54:42 +0000370 for (SelfFlagTy::iterator I = FlagMap.begin(), E = FlagMap.end();
371 I != E; ++I) {
Jordan Rosea435e692012-09-08 01:47:11 +0000372 Out << I->first << " : ";
373
374 if (I->second == SelfFlag_None)
375 Out << "none";
376
377 if (I->second & SelfFlag_Self)
378 Out << "self variable";
379
380 if (I->second & SelfFlag_InitRes) {
381 if (I->second != SelfFlag_InitRes)
382 Out << " | ";
383 Out << "result of init method";
384 }
385
386 Out << NL;
387 }
388}
389
390
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000391// FIXME: A callback should disable checkers at the start of functions.
392static bool shouldRunOnFunctionOrMethod(const NamedDecl *ND) {
393 if (!ND)
394 return false;
395
396 const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND);
397 if (!MD)
398 return false;
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000399 if (!isInitializationMethod(MD))
400 return false;
401
Argyrios Kyrtzidiseaf969b2011-01-25 23:54:44 +0000402 // self = [super init] applies only to NSObject subclasses.
403 // For instance, NSProxy doesn't implement -init.
Ted Kremenek9c378f72011-08-12 23:37:29 +0000404 ASTContext &Ctx = MD->getASTContext();
Argyrios Kyrtzidiseaf969b2011-01-25 23:54:44 +0000405 IdentifierInfo* NSObjectII = &Ctx.Idents.get("NSObject");
Ted Kremenek9c378f72011-08-12 23:37:29 +0000406 ObjCInterfaceDecl *ID = MD->getClassInterface()->getSuperClass();
Argyrios Kyrtzidiseaf969b2011-01-25 23:54:44 +0000407 for ( ; ID ; ID = ID->getSuperClass()) {
408 IdentifierInfo *II = ID->getIdentifier();
409
410 if (II == NSObjectII)
411 break;
412 }
413 if (!ID)
414 return false;
415
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000416 return true;
417}
418
419/// \brief Returns true if the location is 'self'.
420static bool isSelfVar(SVal location, CheckerContext &C) {
Ted Kremenek1d26f482011-10-24 01:32:45 +0000421 AnalysisDeclContext *analCtx = C.getCurrentAnalysisDeclContext();
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000422 if (!analCtx->getSelfDecl())
423 return false;
David Blaikie5251abe2013-02-20 05:52:05 +0000424 if (!location.getAs<loc::MemRegionVal>())
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000425 return false;
426
David Blaikie5251abe2013-02-20 05:52:05 +0000427 loc::MemRegionVal MRV = location.castAs<loc::MemRegionVal>();
Anna Zaks9a70cdd2012-04-16 21:51:09 +0000428 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts()))
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000429 return (DR->getDecl() == analCtx->getSelfDecl());
430
431 return false;
432}
433
434static bool isInitializationMethod(const ObjCMethodDecl *MD) {
John McCall85f3d762011-03-02 01:50:55 +0000435 return MD->getMethodFamily() == OMF_init;
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000436}
437
Jordan Rosede507ea2012-07-02 19:28:04 +0000438static bool isInitMessage(const ObjCMethodCall &Call) {
439 return Call.getMethodFamily() == OMF_init;
Argyrios Kyrtzidisd7a31ba2011-01-11 19:45:25 +0000440}
Argyrios Kyrtzidis769ce3e2011-02-22 17:30:38 +0000441
442//===----------------------------------------------------------------------===//
443// Registration.
444//===----------------------------------------------------------------------===//
445
446void ento::registerObjCSelfInitChecker(CheckerManager &mgr) {
447 mgr.registerChecker<ObjCSelfInitChecker>();
448}