blob: ac41f67d43455f1710d0086720bca819155e0f22 [file] [log] [blame]
Anna Zaks083fcb22011-08-04 17:28:06 +00001//==--- MacOSKeychainAPIChecker.cpp ------------------------------*- C++ -*-==//
Anna Zaksf57be282011-08-01 22:40:01 +00002//
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// This checker flags misuses of KeyChainAPI. In particular, the password data
10// allocated/returned by SecKeychainItemCopyContent,
11// SecKeychainFindGenericPassword, SecKeychainFindInternetPassword functions has
12// to be freed using a call to SecKeychainItemFreeContent.
13//===----------------------------------------------------------------------===//
14
15#include "ClangSACheckers.h"
16#include "clang/StaticAnalyzer/Core/Checker.h"
17#include "clang/StaticAnalyzer/Core/CheckerManager.h"
Anna Zaks03826aa2011-08-04 00:26:57 +000018#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
Anna Zaksf57be282011-08-01 22:40:01 +000019#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
Ted Kremenek18c66fd2011-08-15 22:09:50 +000020#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
21#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000022#include "llvm/ADT/SmallString.h"
Anna Zaksf57be282011-08-01 22:40:01 +000023
24using namespace clang;
25using namespace ento;
26
27namespace {
28class MacOSKeychainAPIChecker : public Checker<check::PreStmt<CallExpr>,
29 check::PreStmt<ReturnStmt>,
30 check::PostStmt<CallExpr>,
Anna Zaks703ffb12011-08-12 21:56:43 +000031 check::EndPath,
32 check::DeadSymbols> {
Dylan Noblesmith6f42b622012-02-05 02:12:40 +000033 mutable OwningPtr<BugType> BT;
Anna Zaks03826aa2011-08-04 00:26:57 +000034
Anna Zaksf57be282011-08-01 22:40:01 +000035public:
Anna Zaks864d2522011-08-12 21:14:26 +000036 /// AllocationState is a part of the checker specific state together with the
37 /// MemRegion corresponding to the allocated data.
38 struct AllocationState {
Anna Zaks864d2522011-08-12 21:14:26 +000039 /// The index of the allocator function.
40 unsigned int AllocatorIdx;
Anna Zakseacd2b42011-08-25 00:59:06 +000041 SymbolRef Region;
Anna Zaks864d2522011-08-12 21:14:26 +000042
43 AllocationState(const Expr *E, unsigned int Idx, SymbolRef R) :
Anna Zaks864d2522011-08-12 21:14:26 +000044 AllocatorIdx(Idx),
Anna Zakseacd2b42011-08-25 00:59:06 +000045 Region(R) {}
Anna Zaks864d2522011-08-12 21:14:26 +000046
47 bool operator==(const AllocationState &X) const {
Anna Zakseacd2b42011-08-25 00:59:06 +000048 return (AllocatorIdx == X.AllocatorIdx &&
49 Region == X.Region);
Anna Zaks864d2522011-08-12 21:14:26 +000050 }
Anna Zakseacd2b42011-08-25 00:59:06 +000051
Anna Zaks864d2522011-08-12 21:14:26 +000052 void Profile(llvm::FoldingSetNodeID &ID) const {
Anna Zaks864d2522011-08-12 21:14:26 +000053 ID.AddInteger(AllocatorIdx);
Anna Zakseacd2b42011-08-25 00:59:06 +000054 ID.AddPointer(Region);
Anna Zaks864d2522011-08-12 21:14:26 +000055 }
56 };
57
Anna Zaksf57be282011-08-01 22:40:01 +000058 void checkPreStmt(const CallExpr *S, CheckerContext &C) const;
59 void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
60 void checkPostStmt(const CallExpr *S, CheckerContext &C) const;
Anna Zaks703ffb12011-08-12 21:56:43 +000061 void checkDeadSymbols(SymbolReaper &SR, CheckerContext &C) const;
Anna Zaksd708bac2012-02-23 22:53:29 +000062 void checkEndPath(CheckerContext &C) const;
Anna Zaksf57be282011-08-01 22:40:01 +000063
64private:
Anna Zaks5eb7d822011-08-24 21:58:55 +000065 typedef std::pair<SymbolRef, const AllocationState*> AllocationPair;
Anna Zaks98401112011-08-24 20:52:46 +000066 typedef llvm::SmallVector<AllocationPair, 2> AllocationPairVec;
67
68 enum APIKind {
Anna Zaks6cf0ed02011-08-24 00:06:27 +000069 /// Denotes functions tracked by this checker.
70 ValidAPI = 0,
71 /// The functions commonly/mistakenly used in place of the given API.
72 ErrorAPI = 1,
73 /// The functions which may allocate the data. These are tracked to reduce
74 /// the false alarm rate.
75 PossibleAPI = 2
76 };
Anna Zaks083fcb22011-08-04 17:28:06 +000077 /// Stores the information about the allocator and deallocator functions -
78 /// these are the functions the checker is tracking.
79 struct ADFunctionInfo {
80 const char* Name;
81 unsigned int Param;
82 unsigned int DeallocatorIdx;
Anna Zaks6cf0ed02011-08-24 00:06:27 +000083 APIKind Kind;
Anna Zaks083fcb22011-08-04 17:28:06 +000084 };
85 static const unsigned InvalidIdx = 100000;
Anna Zaks6cf0ed02011-08-24 00:06:27 +000086 static const unsigned FunctionsToTrackSize = 8;
Anna Zaks083fcb22011-08-04 17:28:06 +000087 static const ADFunctionInfo FunctionsToTrack[FunctionsToTrackSize];
Anna Zaks5a58c6d2011-08-05 23:52:45 +000088 /// The value, which represents no error return value for allocator functions.
89 static const unsigned NoErr = 0;
Anna Zaksf57be282011-08-01 22:40:01 +000090
Anna Zaks083fcb22011-08-04 17:28:06 +000091 /// Given the function name, returns the index of the allocator/deallocator
92 /// function.
Anna Zaks98401112011-08-24 20:52:46 +000093 static unsigned getTrackedFunctionIndex(StringRef Name, bool IsAllocator);
Anna Zaks03826aa2011-08-04 00:26:57 +000094
95 inline void initBugType() const {
96 if (!BT)
97 BT.reset(new BugType("Improper use of SecKeychain API", "Mac OS API"));
98 }
Anna Zaks703ffb12011-08-12 21:56:43 +000099
Anna Zaks6b7aad92011-08-25 00:32:42 +0000100 void generateDeallocatorMismatchReport(const AllocationPair &AP,
Anna Zaksdd6060e2011-08-23 23:47:36 +0000101 const Expr *ArgExpr,
Anna Zaks6b7aad92011-08-25 00:32:42 +0000102 CheckerContext &C) const;
Anna Zaksdd6060e2011-08-23 23:47:36 +0000103
Anna Zaksd708bac2012-02-23 22:53:29 +0000104 /// Find the allocation site for Sym on the path leading to the node N.
105 const Stmt *getAllocationSite(const ExplodedNode *N, SymbolRef Sym,
106 CheckerContext &C) const;
107
Anna Zaks98401112011-08-24 20:52:46 +0000108 BugReport *generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
Anna Zaksd708bac2012-02-23 22:53:29 +0000109 ExplodedNode *N,
110 CheckerContext &C) const;
Anna Zaks703ffb12011-08-12 21:56:43 +0000111
112 /// Check if RetSym evaluates to an error value in the current state.
113 bool definitelyReturnedError(SymbolRef RetSym,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000114 ProgramStateRef State,
Anna Zaks703ffb12011-08-12 21:56:43 +0000115 SValBuilder &Builder,
116 bool noError = false) const;
117
118 /// Check if RetSym evaluates to a NoErr value in the current state.
119 bool definitelyDidnotReturnError(SymbolRef RetSym,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000120 ProgramStateRef State,
Anna Zaks703ffb12011-08-12 21:56:43 +0000121 SValBuilder &Builder) const {
122 return definitelyReturnedError(RetSym, State, Builder, true);
123 }
Ted Kremenek76aadc32012-03-09 01:13:14 +0000124
125 /// Mark an AllocationPair interesting for diagnostic reporting.
126 void markInteresting(BugReport *R, const AllocationPair &AP) const {
127 R->markInteresting(AP.first);
128 R->markInteresting(AP.second->Region);
129 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000130
Anna Zaks98401112011-08-24 20:52:46 +0000131 /// The bug visitor which allows us to print extra diagnostics along the
132 /// BugReport path. For example, showing the allocation site of the leaked
133 /// region.
Jordy Rose01153492012-03-24 02:45:35 +0000134 class SecKeychainBugVisitor
135 : public BugReporterVisitorImpl<SecKeychainBugVisitor> {
Anna Zaks98401112011-08-24 20:52:46 +0000136 protected:
137 // The allocated region symbol tracked by the main analysis.
138 SymbolRef Sym;
139
140 public:
141 SecKeychainBugVisitor(SymbolRef S) : Sym(S) {}
142 virtual ~SecKeychainBugVisitor() {}
143
144 void Profile(llvm::FoldingSetNodeID &ID) const {
145 static int X = 0;
146 ID.AddPointer(&X);
147 ID.AddPointer(Sym);
148 }
149
150 PathDiagnosticPiece *VisitNode(const ExplodedNode *N,
151 const ExplodedNode *PrevN,
152 BugReporterContext &BRC,
153 BugReport &BR);
154 };
Anna Zaksf57be282011-08-01 22:40:01 +0000155};
156}
157
Anna Zaks7d458b02011-08-15 23:23:15 +0000158/// ProgramState traits to store the currently allocated (and not yet freed)
159/// symbols. This is a map from the allocated content symbol to the
160/// corresponding AllocationState.
Anna Zaks864d2522011-08-12 21:14:26 +0000161typedef llvm::ImmutableMap<SymbolRef,
162 MacOSKeychainAPIChecker::AllocationState> AllocatedSetTy;
Anna Zaksf57be282011-08-01 22:40:01 +0000163
164namespace { struct AllocatedData {}; }
165namespace clang { namespace ento {
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000166template<> struct ProgramStateTrait<AllocatedData>
167 : public ProgramStatePartialTrait<AllocatedSetTy > {
Anna Zaksf57be282011-08-01 22:40:01 +0000168 static void *GDMIndex() { static int index = 0; return &index; }
169};
170}}
171
Anna Zaks03826aa2011-08-04 00:26:57 +0000172static bool isEnclosingFunctionParam(const Expr *E) {
173 E = E->IgnoreParenCasts();
174 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
175 const ValueDecl *VD = DRE->getDecl();
176 if (isa<ImplicitParamDecl>(VD) || isa<ParmVarDecl>(VD))
177 return true;
178 }
179 return false;
180}
181
Anna Zaks083fcb22011-08-04 17:28:06 +0000182const MacOSKeychainAPIChecker::ADFunctionInfo
183 MacOSKeychainAPIChecker::FunctionsToTrack[FunctionsToTrackSize] = {
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000184 {"SecKeychainItemCopyContent", 4, 3, ValidAPI}, // 0
185 {"SecKeychainFindGenericPassword", 6, 3, ValidAPI}, // 1
186 {"SecKeychainFindInternetPassword", 13, 3, ValidAPI}, // 2
187 {"SecKeychainItemFreeContent", 1, InvalidIdx, ValidAPI}, // 3
188 {"SecKeychainItemCopyAttributesAndData", 5, 5, ValidAPI}, // 4
189 {"SecKeychainItemFreeAttributesAndData", 1, InvalidIdx, ValidAPI}, // 5
190 {"free", 0, InvalidIdx, ErrorAPI}, // 6
191 {"CFStringCreateWithBytesNoCopy", 1, InvalidIdx, PossibleAPI}, // 7
Anna Zaks083fcb22011-08-04 17:28:06 +0000192};
193
194unsigned MacOSKeychainAPIChecker::getTrackedFunctionIndex(StringRef Name,
Anna Zaks98401112011-08-24 20:52:46 +0000195 bool IsAllocator) {
Anna Zaks083fcb22011-08-04 17:28:06 +0000196 for (unsigned I = 0; I < FunctionsToTrackSize; ++I) {
197 ADFunctionInfo FI = FunctionsToTrack[I];
198 if (FI.Name != Name)
199 continue;
200 // Make sure the function is of the right type (allocator vs deallocator).
201 if (IsAllocator && (FI.DeallocatorIdx == InvalidIdx))
202 return InvalidIdx;
203 if (!IsAllocator && (FI.DeallocatorIdx != InvalidIdx))
204 return InvalidIdx;
205
206 return I;
207 }
208 // The function is not tracked.
209 return InvalidIdx;
210}
211
Anna Zaks864d2522011-08-12 21:14:26 +0000212static bool isBadDeallocationArgument(const MemRegion *Arg) {
Jordy Rose3e678142012-03-11 00:08:24 +0000213 if (!Arg)
214 return false;
Anna Zaks864d2522011-08-12 21:14:26 +0000215 if (isa<AllocaRegion>(Arg) ||
216 isa<BlockDataRegion>(Arg) ||
217 isa<TypedRegion>(Arg)) {
218 return true;
219 }
220 return false;
221}
Jordy Rose3e678142012-03-11 00:08:24 +0000222
Anna Zaksca0b57e2011-08-05 00:37:00 +0000223/// Given the address expression, retrieve the value it's pointing to. Assume
Anna Zaks864d2522011-08-12 21:14:26 +0000224/// that value is itself an address, and return the corresponding symbol.
225static SymbolRef getAsPointeeSymbol(const Expr *Expr,
226 CheckerContext &C) {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000227 ProgramStateRef State = C.getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +0000228 SVal ArgV = State->getSVal(Expr, C.getLocationContext());
Anna Zaks5a58c6d2011-08-05 23:52:45 +0000229
Anna Zaksca0b57e2011-08-05 00:37:00 +0000230 if (const loc::MemRegionVal *X = dyn_cast<loc::MemRegionVal>(&ArgV)) {
231 StoreManager& SM = C.getStoreManager();
Jordy Rose3e678142012-03-11 00:08:24 +0000232 SymbolRef sym = SM.getBinding(State->getStore(), *X).getAsLocSymbol();
233 if (sym)
234 return sym;
Anna Zaksca0b57e2011-08-05 00:37:00 +0000235 }
236 return 0;
237}
238
Anna Zaks703ffb12011-08-12 21:56:43 +0000239// When checking for error code, we need to consider the following cases:
240// 1) noErr / [0]
241// 2) someErr / [1, inf]
242// 3) unknown
243// If noError, returns true iff (1).
244// If !noError, returns true iff (2).
245bool MacOSKeychainAPIChecker::definitelyReturnedError(SymbolRef RetSym,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000246 ProgramStateRef State,
Anna Zaks703ffb12011-08-12 21:56:43 +0000247 SValBuilder &Builder,
248 bool noError) const {
249 DefinedOrUnknownSVal NoErrVal = Builder.makeIntVal(NoErr,
250 Builder.getSymbolManager().getType(RetSym));
251 DefinedOrUnknownSVal NoErr = Builder.evalEQ(State, NoErrVal,
252 nonloc::SymbolVal(RetSym));
Ted Kremenek8bef8232012-01-26 21:29:00 +0000253 ProgramStateRef ErrState = State->assume(NoErr, noError);
Anna Zaks703ffb12011-08-12 21:56:43 +0000254 if (ErrState == State) {
255 return true;
256 }
257
258 return false;
259}
260
Anna Zaksdd6060e2011-08-23 23:47:36 +0000261// Report deallocator mismatch. Remove the region from tracking - reporting a
262// missing free error after this one is redundant.
263void MacOSKeychainAPIChecker::
Anna Zaks6b7aad92011-08-25 00:32:42 +0000264 generateDeallocatorMismatchReport(const AllocationPair &AP,
Anna Zaksdd6060e2011-08-23 23:47:36 +0000265 const Expr *ArgExpr,
Anna Zaks6b7aad92011-08-25 00:32:42 +0000266 CheckerContext &C) const {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000267 ProgramStateRef State = C.getState();
Anna Zaks6b7aad92011-08-25 00:32:42 +0000268 State = State->remove<AllocatedData>(AP.first);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000269 ExplodedNode *N = C.addTransition(State);
Anna Zaksdd6060e2011-08-23 23:47:36 +0000270
271 if (!N)
272 return;
273 initBugType();
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000274 SmallString<80> sbuf;
Anna Zaksdd6060e2011-08-23 23:47:36 +0000275 llvm::raw_svector_ostream os(sbuf);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000276 unsigned int PDeallocIdx =
277 FunctionsToTrack[AP.second->AllocatorIdx].DeallocatorIdx;
Anna Zaksdd6060e2011-08-23 23:47:36 +0000278
279 os << "Deallocator doesn't match the allocator: '"
280 << FunctionsToTrack[PDeallocIdx].Name << "' should be used.";
281 BugReport *Report = new BugReport(*BT, os.str(), N);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000282 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
Anna Zaksdd6060e2011-08-23 23:47:36 +0000283 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000284 markInteresting(Report, AP);
Anna Zaksdd6060e2011-08-23 23:47:36 +0000285 C.EmitReport(Report);
286}
287
Anna Zaksf57be282011-08-01 22:40:01 +0000288void MacOSKeychainAPIChecker::checkPreStmt(const CallExpr *CE,
289 CheckerContext &C) const {
Anna Zaksca0b57e2011-08-05 00:37:00 +0000290 unsigned idx = InvalidIdx;
Ted Kremenek8bef8232012-01-26 21:29:00 +0000291 ProgramStateRef State = C.getState();
Anna Zaksf57be282011-08-01 22:40:01 +0000292
Anna Zaksb805c8f2011-12-01 05:57:37 +0000293 StringRef funName = C.getCalleeName(CE);
294 if (funName.empty())
Anna Zaksf57be282011-08-01 22:40:01 +0000295 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000296
Anna Zaksca0b57e2011-08-05 00:37:00 +0000297 // If it is a call to an allocator function, it could be a double allocation.
298 idx = getTrackedFunctionIndex(funName, true);
299 if (idx != InvalidIdx) {
300 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks864d2522011-08-12 21:14:26 +0000301 if (SymbolRef V = getAsPointeeSymbol(ArgExpr, C))
Anna Zaksca0b57e2011-08-05 00:37:00 +0000302 if (const AllocationState *AS = State->get<AllocatedData>(V)) {
Anna Zakseacd2b42011-08-25 00:59:06 +0000303 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder())) {
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000304 // Remove the value from the state. The new symbol will be added for
305 // tracking when the second allocator is processed in checkPostStmt().
306 State = State->remove<AllocatedData>(V);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000307 ExplodedNode *N = C.addTransition(State);
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000308 if (!N)
309 return;
310 initBugType();
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000311 SmallString<128> sbuf;
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000312 llvm::raw_svector_ostream os(sbuf);
313 unsigned int DIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
314 os << "Allocated data should be released before another call to "
315 << "the allocator: missing a call to '"
316 << FunctionsToTrack[DIdx].Name
317 << "'.";
Anna Zakse172e8b2011-08-17 23:00:25 +0000318 BugReport *Report = new BugReport(*BT, os.str(), N);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000319 Report->addVisitor(new SecKeychainBugVisitor(V));
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000320 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000321 Report->markInteresting(AS->Region);
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000322 C.EmitReport(Report);
323 }
Anna Zaksca0b57e2011-08-05 00:37:00 +0000324 }
325 return;
326 }
327
328 // Is it a call to one of deallocator functions?
329 idx = getTrackedFunctionIndex(funName, false);
Anna Zaks083fcb22011-08-04 17:28:06 +0000330 if (idx == InvalidIdx)
Anna Zaks08551b52011-08-04 00:31:38 +0000331 return;
332
Anna Zaks864d2522011-08-12 21:14:26 +0000333 // Check the argument to the deallocator.
Anna Zaks083fcb22011-08-04 17:28:06 +0000334 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Ted Kremenek5eca4822012-01-06 22:09:28 +0000335 SVal ArgSVal = State->getSVal(ArgExpr, C.getLocationContext());
Anna Zaks864d2522011-08-12 21:14:26 +0000336
337 // Undef is reported by another checker.
338 if (ArgSVal.isUndef())
339 return;
340
Jordy Rose3e678142012-03-11 00:08:24 +0000341 SymbolRef ArgSM = ArgSVal.getAsLocSymbol();
Anna Zaks864d2522011-08-12 21:14:26 +0000342
Anna Zaks864d2522011-08-12 21:14:26 +0000343 // If the argument is coming from the heap, globals, or unknown, do not
344 // report it.
Jordy Rose3e678142012-03-11 00:08:24 +0000345 bool RegionArgIsBad = false;
346 if (!ArgSM) {
347 if (!isBadDeallocationArgument(ArgSVal.getAsRegion()))
348 return;
349 RegionArgIsBad = true;
350 }
Anna Zaks08551b52011-08-04 00:31:38 +0000351
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000352 // Is the argument to the call being tracked?
353 const AllocationState *AS = State->get<AllocatedData>(ArgSM);
354 if (!AS && FunctionsToTrack[idx].Kind != ValidAPI) {
355 return;
356 }
Anna Zaks67f7fa42011-08-15 18:42:00 +0000357 // If trying to free data which has not been allocated yet, report as a bug.
Anna Zaks7d458b02011-08-15 23:23:15 +0000358 // TODO: We might want a more precise diagnostic for double free
359 // (that would involve tracking all the freed symbols in the checker state).
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000360 if (!AS || RegionArgIsBad) {
Anna Zaks08551b52011-08-04 00:31:38 +0000361 // It is possible that this is a false positive - the argument might
362 // have entered as an enclosing function parameter.
363 if (isEnclosingFunctionParam(ArgExpr))
Anna Zaksf57be282011-08-01 22:40:01 +0000364 return;
Anna Zaks03826aa2011-08-04 00:26:57 +0000365
Anna Zaks0bd6b112011-10-26 21:06:34 +0000366 ExplodedNode *N = C.addTransition(State);
Anna Zaks08551b52011-08-04 00:31:38 +0000367 if (!N)
368 return;
369 initBugType();
Anna Zakse172e8b2011-08-17 23:00:25 +0000370 BugReport *Report = new BugReport(*BT,
Anna Zaks08551b52011-08-04 00:31:38 +0000371 "Trying to free data which has not been allocated.", N);
372 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000373 if (AS)
374 Report->markInteresting(AS->Region);
Anna Zaks08551b52011-08-04 00:31:38 +0000375 C.EmitReport(Report);
Anna Zaks083fcb22011-08-04 17:28:06 +0000376 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000377 }
Anna Zaks08551b52011-08-04 00:31:38 +0000378
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000379 // Process functions which might deallocate.
380 if (FunctionsToTrack[idx].Kind == PossibleAPI) {
381
382 if (funName == "CFStringCreateWithBytesNoCopy") {
383 const Expr *DeallocatorExpr = CE->getArg(5)->IgnoreParenCasts();
384 // NULL ~ default deallocator, so warn.
385 if (DeallocatorExpr->isNullPointerConstant(C.getASTContext(),
386 Expr::NPC_ValueDependentIsNotNull)) {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000387 const AllocationPair AP = std::make_pair(ArgSM, AS);
388 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000389 return;
390 }
391 // One of the default allocators, so warn.
392 if (const DeclRefExpr *DE = dyn_cast<DeclRefExpr>(DeallocatorExpr)) {
393 StringRef DeallocatorName = DE->getFoundDecl()->getName();
394 if (DeallocatorName == "kCFAllocatorDefault" ||
395 DeallocatorName == "kCFAllocatorSystemDefault" ||
396 DeallocatorName == "kCFAllocatorMalloc") {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000397 const AllocationPair AP = std::make_pair(ArgSM, AS);
398 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000399 return;
400 }
401 // If kCFAllocatorNull, which does not deallocate, we still have to
402 // find the deallocator. Otherwise, assume that the user had written a
403 // custom deallocator which does the right thing.
404 if (DE->getFoundDecl()->getName() != "kCFAllocatorNull") {
405 State = State->remove<AllocatedData>(ArgSM);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000406 C.addTransition(State);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000407 return;
408 }
409 }
410 }
411 return;
412 }
413
Anna Zaks7d458b02011-08-15 23:23:15 +0000414 // The call is deallocating a value we previously allocated, so remove it
415 // from the next state.
416 State = State->remove<AllocatedData>(ArgSM);
417
Anna Zaksdd6060e2011-08-23 23:47:36 +0000418 // Check if the proper deallocator is used.
Anna Zaks76cbb752011-08-04 21:53:01 +0000419 unsigned int PDeallocIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000420 if (PDeallocIdx != idx || (FunctionsToTrack[idx].Kind == ErrorAPI)) {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000421 const AllocationPair AP = std::make_pair(ArgSM, AS);
422 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks76cbb752011-08-04 21:53:01 +0000423 return;
424 }
425
Anna Zaksee5a21f2011-12-01 16:41:58 +0000426 // If the buffer can be null and the return status can be an error,
427 // report a bad call to free.
428 if (State->assume(cast<DefinedSVal>(ArgSVal), false) &&
429 !definitelyDidnotReturnError(AS->Region, State, C.getSValBuilder())) {
Anna Zaks0bd6b112011-10-26 21:06:34 +0000430 ExplodedNode *N = C.addTransition(State);
Anna Zaks703ffb12011-08-12 21:56:43 +0000431 if (!N)
432 return;
433 initBugType();
Anna Zakse172e8b2011-08-17 23:00:25 +0000434 BugReport *Report = new BugReport(*BT,
Anna Zaksee5a21f2011-12-01 16:41:58 +0000435 "Only call free if a valid (non-NULL) buffer was returned.", N);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000436 Report->addVisitor(new SecKeychainBugVisitor(ArgSM));
Anna Zaks703ffb12011-08-12 21:56:43 +0000437 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000438 Report->markInteresting(AS->Region);
Anna Zaks703ffb12011-08-12 21:56:43 +0000439 C.EmitReport(Report);
440 return;
441 }
442
Anna Zaks0bd6b112011-10-26 21:06:34 +0000443 C.addTransition(State);
Anna Zaksf57be282011-08-01 22:40:01 +0000444}
445
446void MacOSKeychainAPIChecker::checkPostStmt(const CallExpr *CE,
447 CheckerContext &C) const {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000448 ProgramStateRef State = C.getState();
Anna Zaks0e12ebf2011-11-16 19:57:55 +0000449 StringRef funName = C.getCalleeName(CE);
Anna Zaksf57be282011-08-01 22:40:01 +0000450
451 // If a value has been allocated, add it to the set for tracking.
Anna Zaks083fcb22011-08-04 17:28:06 +0000452 unsigned idx = getTrackedFunctionIndex(funName, true);
453 if (idx == InvalidIdx)
Anna Zaks08551b52011-08-04 00:31:38 +0000454 return;
Anna Zaks03826aa2011-08-04 00:26:57 +0000455
Anna Zaks083fcb22011-08-04 17:28:06 +0000456 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks79c9c752011-08-12 22:47:22 +0000457 // If the argument entered as an enclosing function parameter, skip it to
458 // avoid false positives.
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000459 if (isEnclosingFunctionParam(ArgExpr) &&
460 C.getLocationContext()->getParent() == 0)
Anna Zaks79c9c752011-08-12 22:47:22 +0000461 return;
462
Anna Zaks864d2522011-08-12 21:14:26 +0000463 if (SymbolRef V = getAsPointeeSymbol(ArgExpr, C)) {
464 // If the argument points to something that's not a symbolic region, it
465 // can be:
Anna Zaks08551b52011-08-04 00:31:38 +0000466 // - unknown (cannot reason about it)
467 // - undefined (already reported by other checker)
Anna Zaks083fcb22011-08-04 17:28:06 +0000468 // - constant (null - should not be tracked,
469 // other constant will generate a compiler warning)
Anna Zaks08551b52011-08-04 00:31:38 +0000470 // - goto (should be reported by other checker)
Anna Zaks703ffb12011-08-12 21:56:43 +0000471
472 // The call return value symbol should stay alive for as long as the
473 // allocated value symbol, since our diagnostics depend on the value
474 // returned by the call. Ex: Data should only be freed if noErr was
475 // returned during allocation.)
Ted Kremenek5eca4822012-01-06 22:09:28 +0000476 SymbolRef RetStatusSymbol =
477 State->getSVal(CE, C.getLocationContext()).getAsSymbol();
Anna Zaks703ffb12011-08-12 21:56:43 +0000478 C.getSymbolManager().addSymbolDependency(V, RetStatusSymbol);
479
480 // Track the allocated value in the checker state.
481 State = State->set<AllocatedData>(V, AllocationState(ArgExpr, idx,
Anna Zaks864d2522011-08-12 21:14:26 +0000482 RetStatusSymbol));
Anna Zaks703ffb12011-08-12 21:56:43 +0000483 assert(State);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000484 C.addTransition(State);
Anna Zaksf57be282011-08-01 22:40:01 +0000485 }
486}
487
488void MacOSKeychainAPIChecker::checkPreStmt(const ReturnStmt *S,
489 CheckerContext &C) const {
490 const Expr *retExpr = S->getRetValue();
491 if (!retExpr)
492 return;
493
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000494 // If inside inlined call, skip it.
Jordy Rose3e678142012-03-11 00:08:24 +0000495 const LocationContext *LC = C.getLocationContext();
496 if (LC->getParent() != 0)
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000497 return;
498
Anna Zaksf57be282011-08-01 22:40:01 +0000499 // Check if the value is escaping through the return.
Ted Kremenek8bef8232012-01-26 21:29:00 +0000500 ProgramStateRef state = C.getState();
Jordy Rose3e678142012-03-11 00:08:24 +0000501 SymbolRef sym = state->getSVal(retExpr, LC).getAsLocSymbol();
502 if (!sym)
Anna Zaksf57be282011-08-01 22:40:01 +0000503 return;
Jordy Rose3e678142012-03-11 00:08:24 +0000504 state = state->remove<AllocatedData>(sym);
Anna Zaksf57be282011-08-01 22:40:01 +0000505
Anna Zaks03826aa2011-08-04 00:26:57 +0000506 // Proceed from the new state.
Anna Zaks0bd6b112011-10-26 21:06:34 +0000507 C.addTransition(state);
Anna Zaksf57be282011-08-01 22:40:01 +0000508}
509
Anna Zaks721aa372012-02-28 03:07:06 +0000510// TODO: This logic is the same as in Malloc checker.
Anna Zaksd708bac2012-02-23 22:53:29 +0000511const Stmt *
512MacOSKeychainAPIChecker::getAllocationSite(const ExplodedNode *N,
513 SymbolRef Sym,
514 CheckerContext &C) const {
Anna Zaks721aa372012-02-28 03:07:06 +0000515 const LocationContext *LeakContext = N->getLocationContext();
Anna Zaksd708bac2012-02-23 22:53:29 +0000516 // Walk the ExplodedGraph backwards and find the first node that referred to
517 // the tracked symbol.
518 const ExplodedNode *AllocNode = N;
519
520 while (N) {
521 if (!N->getState()->get<AllocatedData>(Sym))
522 break;
Anna Zaks721aa372012-02-28 03:07:06 +0000523 // Allocation node, is the last node in the current context in which the
524 // symbol was tracked.
525 if (N->getLocationContext() == LeakContext)
526 AllocNode = N;
Anna Zaksd708bac2012-02-23 22:53:29 +0000527 N = N->pred_empty() ? NULL : *(N->pred_begin());
528 }
529
530 ProgramPoint P = AllocNode->getLocation();
Jordan Rose852aa0d2012-07-10 22:07:52 +0000531 if (CallExitEnd *Exit = dyn_cast<CallExitEnd>(&P))
532 return Exit->getCalleeContext()->getCallSite();
533 if (clang::PostStmt *PS = dyn_cast<clang::PostStmt>(&P))
534 return PS->getStmt();
535 return 0;
Anna Zaksd708bac2012-02-23 22:53:29 +0000536}
537
Anna Zakse172e8b2011-08-17 23:00:25 +0000538BugReport *MacOSKeychainAPIChecker::
Anna Zaks98401112011-08-24 20:52:46 +0000539 generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
Anna Zaksd708bac2012-02-23 22:53:29 +0000540 ExplodedNode *N,
541 CheckerContext &C) const {
Anna Zaks5eb7d822011-08-24 21:58:55 +0000542 const ADFunctionInfo &FI = FunctionsToTrack[AP.second->AllocatorIdx];
Anna Zaks703ffb12011-08-12 21:56:43 +0000543 initBugType();
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000544 SmallString<70> sbuf;
Anna Zaks67f7fa42011-08-15 18:42:00 +0000545 llvm::raw_svector_ostream os(sbuf);
Anna Zaks703ffb12011-08-12 21:56:43 +0000546 os << "Allocated data is not released: missing a call to '"
547 << FunctionsToTrack[FI.DeallocatorIdx].Name << "'.";
Anna Zaksd708bac2012-02-23 22:53:29 +0000548
549 // Most bug reports are cached at the location where they occurred.
550 // With leaks, we want to unique them by the location where they were
551 // allocated, and only report a single path.
Anna Zaks721aa372012-02-28 03:07:06 +0000552 PathDiagnosticLocation LocUsedForUniqueing;
553 if (const Stmt *AllocStmt = getAllocationSite(N, AP.first, C))
554 LocUsedForUniqueing = PathDiagnosticLocation::createBegin(AllocStmt,
555 C.getSourceManager(), N->getLocationContext());
Anna Zaksd708bac2012-02-23 22:53:29 +0000556
557 BugReport *Report = new BugReport(*BT, os.str(), N, LocUsedForUniqueing);
Anna Zaks98401112011-08-24 20:52:46 +0000558 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
Ted Kremenek76aadc32012-03-09 01:13:14 +0000559 markInteresting(Report, AP);
Anna Zaks703ffb12011-08-12 21:56:43 +0000560 return Report;
561}
562
563void MacOSKeychainAPIChecker::checkDeadSymbols(SymbolReaper &SR,
564 CheckerContext &C) const {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000565 ProgramStateRef State = C.getState();
Anna Zaks703ffb12011-08-12 21:56:43 +0000566 AllocatedSetTy ASet = State->get<AllocatedData>();
567 if (ASet.isEmpty())
568 return;
569
570 bool Changed = false;
Anna Zaks98401112011-08-24 20:52:46 +0000571 AllocationPairVec Errors;
Anna Zaks703ffb12011-08-12 21:56:43 +0000572 for (AllocatedSetTy::iterator I = ASet.begin(), E = ASet.end(); I != E; ++I) {
573 if (SR.isLive(I->first))
574 continue;
575
576 Changed = true;
577 State = State->remove<AllocatedData>(I->first);
578 // If the allocated symbol is null or if the allocation call might have
579 // returned an error, do not report.
580 if (State->getSymVal(I->first) ||
Anna Zakseacd2b42011-08-25 00:59:06 +0000581 definitelyReturnedError(I->second.Region, State, C.getSValBuilder()))
Anna Zaks703ffb12011-08-12 21:56:43 +0000582 continue;
Anna Zaks5eb7d822011-08-24 21:58:55 +0000583 Errors.push_back(std::make_pair(I->first, &I->second));
Anna Zaks703ffb12011-08-12 21:56:43 +0000584 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000585 if (!Changed) {
586 // Generate the new, cleaned up state.
587 C.addTransition(State);
Anna Zaks703ffb12011-08-12 21:56:43 +0000588 return;
Anna Zaksd708bac2012-02-23 22:53:29 +0000589 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000590
Anna Zaksd708bac2012-02-23 22:53:29 +0000591 static SimpleProgramPointTag Tag("MacOSKeychainAPIChecker : DeadSymbolsLeak");
592 ExplodedNode *N = C.addTransition(C.getState(), C.getPredecessor(), &Tag);
Anna Zaks703ffb12011-08-12 21:56:43 +0000593
594 // Generate the error reports.
Anna Zaks98401112011-08-24 20:52:46 +0000595 for (AllocationPairVec::iterator I = Errors.begin(), E = Errors.end();
596 I != E; ++I) {
Anna Zaksd708bac2012-02-23 22:53:29 +0000597 C.EmitReport(generateAllocatedDataNotReleasedReport(*I, N, C));
Anna Zaks703ffb12011-08-12 21:56:43 +0000598 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000599
600 // Generate the new, cleaned up state.
601 C.addTransition(State, N);
Anna Zaks703ffb12011-08-12 21:56:43 +0000602}
603
604// TODO: Remove this after we ensure that checkDeadSymbols are always called.
Anna Zaksd708bac2012-02-23 22:53:29 +0000605void MacOSKeychainAPIChecker::checkEndPath(CheckerContext &C) const {
606 ProgramStateRef state = C.getState();
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000607
608 // If inside inlined call, skip it.
Anna Zaksd708bac2012-02-23 22:53:29 +0000609 if (C.getLocationContext()->getParent() != 0)
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000610 return;
611
Anna Zaksf57be282011-08-01 22:40:01 +0000612 AllocatedSetTy AS = state->get<AllocatedData>();
Anna Zaks703ffb12011-08-12 21:56:43 +0000613 if (AS.isEmpty())
Anna Zaks03826aa2011-08-04 00:26:57 +0000614 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000615
616 // Anything which has been allocated but not freed (nor escaped) will be
617 // found here, so report it.
Anna Zaks703ffb12011-08-12 21:56:43 +0000618 bool Changed = false;
Anna Zaks98401112011-08-24 20:52:46 +0000619 AllocationPairVec Errors;
Anna Zaks03826aa2011-08-04 00:26:57 +0000620 for (AllocatedSetTy::iterator I = AS.begin(), E = AS.end(); I != E; ++I ) {
Anna Zaks703ffb12011-08-12 21:56:43 +0000621 Changed = true;
622 state = state->remove<AllocatedData>(I->first);
623 // If the allocated symbol is null or if error code was returned at
624 // allocation, do not report.
625 if (state->getSymVal(I.getKey()) ||
Anna Zakseacd2b42011-08-25 00:59:06 +0000626 definitelyReturnedError(I->second.Region, state,
Anna Zaksd708bac2012-02-23 22:53:29 +0000627 C.getSValBuilder())) {
Anna Zaks703ffb12011-08-12 21:56:43 +0000628 continue;
629 }
Anna Zaks5eb7d822011-08-24 21:58:55 +0000630 Errors.push_back(std::make_pair(I->first, &I->second));
Anna Zaksf57be282011-08-01 22:40:01 +0000631 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000632
633 // If no change, do not generate a new state.
Anna Zaksd708bac2012-02-23 22:53:29 +0000634 if (!Changed) {
635 C.addTransition(state);
Anna Zaks703ffb12011-08-12 21:56:43 +0000636 return;
Anna Zaksd708bac2012-02-23 22:53:29 +0000637 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000638
Anna Zaksd708bac2012-02-23 22:53:29 +0000639 static SimpleProgramPointTag Tag("MacOSKeychainAPIChecker : EndPathLeak");
640 ExplodedNode *N = C.addTransition(C.getState(), C.getPredecessor(), &Tag);
Anna Zaks703ffb12011-08-12 21:56:43 +0000641
642 // Generate the error reports.
Anna Zaks98401112011-08-24 20:52:46 +0000643 for (AllocationPairVec::iterator I = Errors.begin(), E = Errors.end();
644 I != E; ++I) {
Anna Zaksd708bac2012-02-23 22:53:29 +0000645 C.EmitReport(generateAllocatedDataNotReleasedReport(*I, N, C));
Anna Zaks703ffb12011-08-12 21:56:43 +0000646 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000647
648 C.addTransition(state, N);
Anna Zaks98401112011-08-24 20:52:46 +0000649}
Anna Zaks703ffb12011-08-12 21:56:43 +0000650
Anna Zaks98401112011-08-24 20:52:46 +0000651
652PathDiagnosticPiece *MacOSKeychainAPIChecker::SecKeychainBugVisitor::VisitNode(
653 const ExplodedNode *N,
654 const ExplodedNode *PrevN,
655 BugReporterContext &BRC,
656 BugReport &BR) {
657 const AllocationState *AS = N->getState()->get<AllocatedData>(Sym);
658 if (!AS)
659 return 0;
660 const AllocationState *ASPrev = PrevN->getState()->get<AllocatedData>(Sym);
661 if (ASPrev)
662 return 0;
663
664 // (!ASPrev && AS) ~ We started tracking symbol in node N, it must be the
665 // allocation site.
666 const CallExpr *CE = cast<CallExpr>(cast<StmtPoint>(N->getLocation())
667 .getStmt());
668 const FunctionDecl *funDecl = CE->getDirectCallee();
669 assert(funDecl && "We do not support indirect function calls as of now.");
670 StringRef funName = funDecl->getName();
671
672 // Get the expression of the corresponding argument.
673 unsigned Idx = getTrackedFunctionIndex(funName, true);
674 assert(Idx != InvalidIdx && "This should be a call to an allocator.");
675 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[Idx].Param);
Anna Zaks220ac8c2011-09-15 01:08:34 +0000676 PathDiagnosticLocation Pos(ArgExpr, BRC.getSourceManager(),
677 N->getLocationContext());
Anna Zaks98401112011-08-24 20:52:46 +0000678 return new PathDiagnosticEventPiece(Pos, "Data is allocated here.");
Anna Zaksf57be282011-08-01 22:40:01 +0000679}
680
681void ento::registerMacOSKeychainAPIChecker(CheckerManager &mgr) {
682 mgr.registerChecker<MacOSKeychainAPIChecker>();
683}