blob: a6611e050dc9b48ed2cff092941e1fbc31e1dbd2 [file] [log] [blame]
Ted Kremenek294fd0a2011-08-20 06:00:03 +00001//=-- ExprEngineObjC.cpp - ExprEngine support for Objective-C ---*- 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 ExprEngine's support for Objective-C expressions.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramerc35fb7d2012-01-28 12:06:22 +000014#include "clang/AST/StmtObjC.h"
Ted Kremenek294fd0a2011-08-20 06:00:03 +000015#include "clang/StaticAnalyzer/Core/CheckerManager.h"
Jordan Rosef540c542012-07-26 21:39:41 +000016#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
Ted Kremenek294fd0a2011-08-20 06:00:03 +000017#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
Ted Kremenek294fd0a2011-08-20 06:00:03 +000018
19using namespace clang;
20using namespace ento;
21
22void ExprEngine::VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *Ex,
23 ExplodedNode *Pred,
24 ExplodedNodeSet &Dst) {
Ted Kremenek8bef8232012-01-26 21:29:00 +000025 ProgramStateRef state = Pred->getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +000026 const LocationContext *LCtx = Pred->getLocationContext();
27 SVal baseVal = state->getSVal(Ex->getBase(), LCtx);
Ted Kremenek294fd0a2011-08-20 06:00:03 +000028 SVal location = state->getLValue(Ex->getDecl(), baseVal);
29
30 ExplodedNodeSet dstIvar;
Jordan Rosee606e3d2012-10-01 19:07:22 +000031 StmtNodeBuilder Bldr(Pred, dstIvar, *currBldrCtx);
32 Bldr.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, location));
Ted Kremenek294fd0a2011-08-20 06:00:03 +000033
34 // Perform the post-condition check of the ObjCIvarRefExpr and store
35 // the created nodes in 'Dst'.
36 getCheckerManager().runCheckersForPostStmt(Dst, dstIvar, Ex, *this);
37}
38
39void ExprEngine::VisitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt *S,
40 ExplodedNode *Pred,
41 ExplodedNodeSet &Dst) {
42 getCheckerManager().runCheckersForPreStmt(Dst, Pred, S, *this);
43}
44
45void ExprEngine::VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S,
46 ExplodedNode *Pred,
47 ExplodedNodeSet &Dst) {
48
49 // ObjCForCollectionStmts are processed in two places. This method
50 // handles the case where an ObjCForCollectionStmt* occurs as one of the
51 // statements within a basic block. This transfer function does two things:
52 //
53 // (1) binds the next container value to 'element'. This creates a new
54 // node in the ExplodedGraph.
55 //
56 // (2) binds the value 0/1 to the ObjCForCollectionStmt* itself, indicating
57 // whether or not the container has any more elements. This value
58 // will be tested in ProcessBranch. We need to explicitly bind
59 // this value because a container can contain nil elements.
60 //
61 // FIXME: Eventually this logic should actually do dispatches to
62 // 'countByEnumeratingWithState:objects:count:' (NSFastEnumeration).
63 // This will require simulating a temporary NSFastEnumerationState, either
64 // through an SVal or through the use of MemRegions. This value can
65 // be affixed to the ObjCForCollectionStmt* instead of 0/1; when the loop
66 // terminates we reclaim the temporary (it goes out of scope) and we
67 // we can test if the SVal is 0 or if the MemRegion is null (depending
68 // on what approach we take).
69 //
70 // For now: simulate (1) by assigning either a symbol or nil if the
71 // container is empty. Thus this transfer function will by default
72 // result in state splitting.
Anna Zaksebae6d02011-10-24 18:26:19 +000073
Ted Kremenek294fd0a2011-08-20 06:00:03 +000074 const Stmt *elem = S->getElement();
Ted Kremenek8bef8232012-01-26 21:29:00 +000075 ProgramStateRef state = Pred->getState();
Ted Kremenek294fd0a2011-08-20 06:00:03 +000076 SVal elementV;
77
78 if (const DeclStmt *DS = dyn_cast<DeclStmt>(elem)) {
79 const VarDecl *elemD = cast<VarDecl>(DS->getSingleDecl());
Stephen Hines6bcf27b2014-05-29 04:14:42 -070080 assert(elemD->getInit() == nullptr);
Ted Kremenek294fd0a2011-08-20 06:00:03 +000081 elementV = state->getLValue(elemD, Pred->getLocationContext());
82 }
83 else {
Ted Kremenek5eca4822012-01-06 22:09:28 +000084 elementV = state->getSVal(elem, Pred->getLocationContext());
Ted Kremenek294fd0a2011-08-20 06:00:03 +000085 }
86
87 ExplodedNodeSet dstLocation;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070088 evalLocation(dstLocation, S, elem, Pred, state, elementV, nullptr, false);
Jordan Rose1895a0a2012-06-11 16:40:41 +000089
90 ExplodedNodeSet Tmp;
Ted Kremenek66c486f2012-08-22 06:26:15 +000091 StmtNodeBuilder Bldr(Pred, Tmp, *currBldrCtx);
Jordan Rose1895a0a2012-06-11 16:40:41 +000092
Ted Kremenek294fd0a2011-08-20 06:00:03 +000093 for (ExplodedNodeSet::iterator NI = dstLocation.begin(),
94 NE = dstLocation.end(); NI!=NE; ++NI) {
95 Pred = *NI;
Ted Kremenek8bef8232012-01-26 21:29:00 +000096 ProgramStateRef state = Pred->getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +000097 const LocationContext *LCtx = Pred->getLocationContext();
Ted Kremenek294fd0a2011-08-20 06:00:03 +000098
99 // Handle the case where the container still has elements.
100 SVal TrueV = svalBuilder.makeTruthVal(1);
Ted Kremenek8bef8232012-01-26 21:29:00 +0000101 ProgramStateRef hasElems = state->BindExpr(S, LCtx, TrueV);
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000102
103 // Handle the case where the container has no elements.
104 SVal FalseV = svalBuilder.makeTruthVal(0);
Ted Kremenek8bef8232012-01-26 21:29:00 +0000105 ProgramStateRef noElems = state->BindExpr(S, LCtx, FalseV);
David Blaikie5251abe2013-02-20 05:52:05 +0000106
David Blaikiedc84cd52013-02-20 22:23:23 +0000107 if (Optional<loc::MemRegionVal> MV = elementV.getAs<loc::MemRegionVal>())
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000108 if (const TypedValueRegion *R =
109 dyn_cast<TypedValueRegion>(MV->getRegion())) {
110 // FIXME: The proper thing to do is to really iterate over the
111 // container. We will do this with dispatch logic to the store.
112 // For now, just 'conjure' up a symbolic value.
113 QualType T = R->getValueType();
114 assert(Loc::isLocType(T));
Ted Kremenek66c486f2012-08-22 06:26:15 +0000115 SymbolRef Sym = SymMgr.conjureSymbol(elem, LCtx, T,
116 currBldrCtx->blockCount());
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000117 SVal V = svalBuilder.makeLoc(Sym);
118 hasElems = hasElems->bindLoc(elementV, V);
119
120 // Bind the location to 'nil' on the false branch.
121 SVal nilV = svalBuilder.makeIntVal(0, T);
122 noElems = noElems->bindLoc(elementV, nilV);
123 }
124
125 // Create the new nodes.
Anna Zaksebae6d02011-10-24 18:26:19 +0000126 Bldr.generateNode(S, Pred, hasElems);
127 Bldr.generateNode(S, Pred, noElems);
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000128 }
Jordan Rose1895a0a2012-06-11 16:40:41 +0000129
130 // Finally, run any custom checkers.
131 // FIXME: Eventually all pre- and post-checks should live in VisitStmt.
132 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this);
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000133}
134
Jordan Rosed563d3f2012-07-30 20:22:09 +0000135void ExprEngine::VisitObjCMessage(const ObjCMessageExpr *ME,
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000136 ExplodedNode *Pred,
137 ExplodedNodeSet &Dst) {
Jordan Rosed563d3f2012-07-30 20:22:09 +0000138 CallEventManager &CEMgr = getStateManager().getCallEventManager();
139 CallEventRef<ObjCMethodCall> Msg =
140 CEMgr.getObjCMethodCall(ME, Pred->getState(), Pred->getLocationContext());
141
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000142 // Handle the previsits checks.
143 ExplodedNodeSet dstPrevisit;
Jordan Rose96479da2012-07-02 19:28:16 +0000144 getCheckerManager().runCheckersForPreObjCMessage(dstPrevisit, Pred,
Jordan Rosed563d3f2012-07-30 20:22:09 +0000145 *Msg, *this);
Jordan Rose96479da2012-07-02 19:28:16 +0000146 ExplodedNodeSet dstGenericPrevisit;
147 getCheckerManager().runCheckersForPreCall(dstGenericPrevisit, dstPrevisit,
Jordan Rosed563d3f2012-07-30 20:22:09 +0000148 *Msg, *this);
Jordan Rose96479da2012-07-02 19:28:16 +0000149
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000150 // Proceed with evaluate the message expression.
151 ExplodedNodeSet dstEval;
Ted Kremenek66c486f2012-08-22 06:26:15 +0000152 StmtNodeBuilder Bldr(dstGenericPrevisit, dstEval, *currBldrCtx);
Anna Zaksebae6d02011-10-24 18:26:19 +0000153
Jordan Rose96479da2012-07-02 19:28:16 +0000154 for (ExplodedNodeSet::iterator DI = dstGenericPrevisit.begin(),
155 DE = dstGenericPrevisit.end(); DI != DE; ++DI) {
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000156 ExplodedNode *Pred = *DI;
Jordan Rosed563d3f2012-07-30 20:22:09 +0000157 ProgramStateRef State = Pred->getState();
158 CallEventRef<ObjCMethodCall> UpdatedMsg = Msg.cloneWithState(State);
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000159
Jordan Rosed563d3f2012-07-30 20:22:09 +0000160 if (UpdatedMsg->isInstanceMessage()) {
161 SVal recVal = UpdatedMsg->getReceiverSVal();
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000162 if (!recVal.isUndef()) {
163 // Bifurcate the state into nil and non-nil ones.
David Blaikie5251abe2013-02-20 05:52:05 +0000164 DefinedOrUnknownSVal receiverVal =
165 recVal.castAs<DefinedOrUnknownSVal>();
166
Ted Kremenek8bef8232012-01-26 21:29:00 +0000167 ProgramStateRef notNilState, nilState;
Stephen Hines651f13c2014-04-23 16:59:28 -0700168 std::tie(notNilState, nilState) = State->assume(receiverVal);
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000169
170 // There are three cases: can be nil or non-nil, must be nil, must be
171 // non-nil. We ignore must be nil, and merge the rest two into non-nil.
Jordan Rosecde8cdb2012-07-02 19:27:56 +0000172 // FIXME: This ignores many potential bugs (<rdar://problem/11733396>).
173 // Revisit once we have lazier constraints.
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000174 if (nilState && !notNilState) {
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000175 continue;
176 }
177
178 // Check if the "raise" message was sent.
179 assert(notNilState);
Ted Kremenek4ef19202012-09-13 00:21:31 +0000180 if (ObjCNoRet.isImplicitNoReturn(ME)) {
Anna Zakse81ce252012-07-19 23:38:13 +0000181 // If we raise an exception, for now treat it as a sink.
182 // Eventually we will want to handle exceptions properly.
Jordan Rose94287232012-12-06 18:58:26 +0000183 Bldr.generateSink(ME, Pred, State);
Anna Zakse81ce252012-07-19 23:38:13 +0000184 continue;
185 }
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000186
Anna Zakse81ce252012-07-19 23:38:13 +0000187 // Generate a transition to non-Nil state.
Jordan Rose82f2ad42012-09-08 01:47:28 +0000188 if (notNilState != State) {
Jordan Rose94287232012-12-06 18:58:26 +0000189 Pred = Bldr.generateNode(ME, Pred, notNilState);
Jordan Rose82f2ad42012-09-08 01:47:28 +0000190 assert(Pred && "Should have cached out already!");
191 }
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000192 }
Jordan Rosecde8cdb2012-07-02 19:27:56 +0000193 } else {
Ted Kremenek4ef19202012-09-13 00:21:31 +0000194 // Check for special class methods that are known to not return
195 // and that we should treat as a sink.
196 if (ObjCNoRet.isImplicitNoReturn(ME)) {
197 // If we raise an exception, for now treat it as a sink.
198 // Eventually we will want to handle exceptions properly.
Jordan Rose94287232012-12-06 18:58:26 +0000199 Bldr.generateSink(ME, Pred, Pred->getState());
Ted Kremenek4ef19202012-09-13 00:21:31 +0000200 continue;
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000201 }
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000202 }
Anna Zaks9dc51672012-07-26 00:27:51 +0000203
Jordan Rose82f2ad42012-09-08 01:47:28 +0000204 defaultEvalCall(Bldr, Pred, *UpdatedMsg);
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000205 }
206
Jordan Rose96479da2012-07-02 19:28:16 +0000207 ExplodedNodeSet dstPostvisit;
Jordan Rosed563d3f2012-07-30 20:22:09 +0000208 getCheckerManager().runCheckersForPostCall(dstPostvisit, dstEval,
209 *Msg, *this);
Jordan Rose96479da2012-07-02 19:28:16 +0000210
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000211 // Finally, perform the post-condition check of the ObjCMessageExpr and store
212 // the created nodes in 'Dst'.
Jordan Rose96479da2012-07-02 19:28:16 +0000213 getCheckerManager().runCheckersForPostObjCMessage(Dst, dstPostvisit,
Jordan Rosed563d3f2012-07-30 20:22:09 +0000214 *Msg, *this);
Ted Kremenek294fd0a2011-08-20 06:00:03 +0000215}