blob: dc90b67e20face2cc65fd67737bf0952f01b3853 [file] [log] [blame]
Anna Zaks88a83e32012-09-27 19:45:15 +00001//=- DirectIvarAssignment.cpp - Check rules on ObjC properties -*- 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// Check that Objective C properties follow the following rules:
11// - The property should be set with the setter, not though a direct
12// assignment.
13//
14//===----------------------------------------------------------------------===//
15
16#include "ClangSACheckers.h"
17#include "clang/StaticAnalyzer/Core/Checker.h"
18#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
19#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
20#include "clang/AST/DeclObjC.h"
21#include "clang/AST/StmtVisitor.h"
22#include "llvm/ADT/DenseMap.h"
23
24using namespace clang;
25using namespace ento;
26
27namespace {
28
29class DirectIvarAssignment :
30 public Checker<check::ASTDecl<ObjCImplementationDecl> > {
31
32 typedef llvm::DenseMap<const ObjCIvarDecl*,
33 const ObjCPropertyDecl*> IvarToPropertyMapTy;
34
35 /// A helper class, which walks the AST and locates all assignments to ivars
36 /// in the given function.
37 class MethodCrawler : public ConstStmtVisitor<MethodCrawler> {
38 const IvarToPropertyMapTy &IvarToPropMap;
39 const ObjCMethodDecl *MD;
40 const ObjCInterfaceDecl *InterfD;
41 BugReporter &BR;
42 LocationOrAnalysisDeclContext DCtx;
43
44 public:
45 MethodCrawler(const IvarToPropertyMapTy &InMap, const ObjCMethodDecl *InMD,
46 const ObjCInterfaceDecl *InID,
47 BugReporter &InBR, AnalysisDeclContext *InDCtx)
48 : IvarToPropMap(InMap), MD(InMD), InterfD(InID), BR(InBR), DCtx(InDCtx) {}
49
50 void VisitStmt(const Stmt *S) { VisitChildren(S); }
51
52 void VisitBinaryOperator(const BinaryOperator *BO);
53
54 void VisitChildren(const Stmt *S) {
55 for (Stmt::const_child_range I = S->children(); I; ++I)
56 if (*I)
57 this->Visit(*I);
58 }
59 };
60
61public:
62 void checkASTDecl(const ObjCImplementationDecl *D, AnalysisManager& Mgr,
63 BugReporter &BR) const;
64};
65
66static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD,
Anna Zaksbf247922012-09-27 21:57:17 +000067 const ObjCInterfaceDecl *InterD,
68 ASTContext &Ctx) {
Anna Zaks88a83e32012-09-27 19:45:15 +000069 // Check for synthesized ivars.
70 ObjCIvarDecl *ID = PD->getPropertyIvarDecl();
71 if (ID)
72 return ID;
73
Anna Zaksbf247922012-09-27 21:57:17 +000074 ObjCInterfaceDecl *NonConstInterD = const_cast<ObjCInterfaceDecl*>(InterD);
75
Anna Zaks88a83e32012-09-27 19:45:15 +000076 // Check for existing "_PropName".
Anna Zaksbf247922012-09-27 21:57:17 +000077 ID = NonConstInterD->lookupInstanceVariable(PD->getDefaultSynthIvarName(Ctx));
Anna Zaks88a83e32012-09-27 19:45:15 +000078 if (ID)
79 return ID;
80
81 // Check for existing "PropName".
82 IdentifierInfo *PropIdent = PD->getIdentifier();
Anna Zaksbf247922012-09-27 21:57:17 +000083 ID = NonConstInterD->lookupInstanceVariable(PropIdent);
Anna Zaks88a83e32012-09-27 19:45:15 +000084
85 return ID;
86}
87
88void DirectIvarAssignment::checkASTDecl(const ObjCImplementationDecl *D,
89 AnalysisManager& Mgr,
90 BugReporter &BR) const {
91 const ObjCInterfaceDecl *InterD = D->getClassInterface();
92
93
94 IvarToPropertyMapTy IvarToPropMap;
95
96 // Find all properties for this class.
97 for (ObjCInterfaceDecl::prop_iterator I = InterD->prop_begin(),
98 E = InterD->prop_end(); I != E; ++I) {
99 ObjCPropertyDecl *PD = *I;
100
101 // Find the corresponding IVar.
Anna Zaksbf247922012-09-27 21:57:17 +0000102 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD,
103 Mgr.getASTContext());
Anna Zaks88a83e32012-09-27 19:45:15 +0000104
105 if (!ID)
106 continue;
107
108 // Store the IVar to property mapping.
109 IvarToPropMap[ID] = PD;
110 }
111
112 if (IvarToPropMap.empty())
113 return;
114
115 for (ObjCImplementationDecl::instmeth_iterator I = D->instmeth_begin(),
116 E = D->instmeth_end(); I != E; ++I) {
117
118 ObjCMethodDecl *M = *I;
119 AnalysisDeclContext *DCtx = Mgr.getAnalysisDeclContext(M);
120
Anna Zaksbf247922012-09-27 21:57:17 +0000121 // Skip the init, dealloc functions and any functions that might be doing
122 // initialization based on their name.
Anna Zaks88a83e32012-09-27 19:45:15 +0000123 if (M->getMethodFamily() == OMF_init ||
124 M->getMethodFamily() == OMF_dealloc ||
Anna Zaks625ce082012-10-15 22:48:14 +0000125 M->getMethodFamily() == OMF_copy ||
126 M->getMethodFamily() == OMF_mutableCopy ||
Anna Zaksbf247922012-09-27 21:57:17 +0000127 M->getSelector().getNameForSlot(0).find("init") != StringRef::npos ||
128 M->getSelector().getNameForSlot(0).find("Init") != StringRef::npos)
Anna Zaks88a83e32012-09-27 19:45:15 +0000129 continue;
130
131 const Stmt *Body = M->getBody();
Anna Zaksbf247922012-09-27 21:57:17 +0000132 assert(Body);
Anna Zaks88a83e32012-09-27 19:45:15 +0000133
134 MethodCrawler MC(IvarToPropMap, M->getCanonicalDecl(), InterD, BR, DCtx);
135 MC.VisitStmt(Body);
136 }
137}
138
139void DirectIvarAssignment::MethodCrawler::VisitBinaryOperator(
140 const BinaryOperator *BO) {
141 if (!BO->isAssignmentOp())
142 return;
143
Anna Zaksbf247922012-09-27 21:57:17 +0000144 const ObjCIvarRefExpr *IvarRef =
145 dyn_cast<ObjCIvarRefExpr>(BO->getLHS()->IgnoreParenCasts());
Anna Zaks88a83e32012-09-27 19:45:15 +0000146
147 if (!IvarRef)
148 return;
149
150 if (const ObjCIvarDecl *D = IvarRef->getDecl()) {
151 IvarToPropertyMapTy::const_iterator I = IvarToPropMap.find(D);
152 if (I != IvarToPropMap.end()) {
153 const ObjCPropertyDecl *PD = I->second;
154
155 ObjCMethodDecl *GetterMethod =
156 InterfD->getInstanceMethod(PD->getGetterName());
157 ObjCMethodDecl *SetterMethod =
158 InterfD->getInstanceMethod(PD->getSetterName());
159
160 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD)
161 return;
162
163 if (GetterMethod && GetterMethod->getCanonicalDecl() == MD)
164 return;
165
Anna Zaks88a83e32012-09-27 19:45:15 +0000166 BR.EmitBasicReport(MD,
167 "Property access",
168 categories::CoreFoundationObjectiveC,
169 "Direct assignment to an instance variable backing a property; "
Anna Zaksbf247922012-09-27 21:57:17 +0000170 "use the setter instead", PathDiagnosticLocation(IvarRef,
171 BR.getSourceManager(),
172 DCtx));
Anna Zaks88a83e32012-09-27 19:45:15 +0000173 }
174 }
175}
176}
177
178void ento::registerDirectIvarAssignment(CheckerManager &mgr) {
179 mgr.registerChecker<DirectIvarAssignment>();
180}