blob: 497202b9a5d7e4932619116720e64218edca0c8d [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"
20#include "clang/StaticAnalyzer/Core/PathSensitive/GRState.h"
21#include "clang/StaticAnalyzer/Core/PathSensitive/GRStateTrait.h"
22
23using namespace clang;
24using namespace ento;
25
26namespace {
27class MacOSKeychainAPIChecker : public Checker<check::PreStmt<CallExpr>,
28 check::PreStmt<ReturnStmt>,
29 check::PostStmt<CallExpr>,
Anna Zaks703ffb12011-08-12 21:56:43 +000030 check::EndPath,
31 check::DeadSymbols> {
Anna Zaks03826aa2011-08-04 00:26:57 +000032 mutable llvm::OwningPtr<BugType> BT;
33
Anna Zaksf57be282011-08-01 22:40:01 +000034public:
Anna Zaks864d2522011-08-12 21:14:26 +000035 /// AllocationState is a part of the checker specific state together with the
36 /// MemRegion corresponding to the allocated data.
37 struct AllocationState {
38 const Expr *Address;
39 /// The index of the allocator function.
40 unsigned int AllocatorIdx;
41 SymbolRef RetValue;
42
43 AllocationState(const Expr *E, unsigned int Idx, SymbolRef R) :
44 Address(E),
45 AllocatorIdx(Idx),
46 RetValue(R) {}
47
48 bool operator==(const AllocationState &X) const {
49 return Address == X.Address;
50 }
51 void Profile(llvm::FoldingSetNodeID &ID) const {
52 ID.AddPointer(Address);
53 ID.AddInteger(AllocatorIdx);
54 }
55 };
56
Anna Zaksf57be282011-08-01 22:40:01 +000057 void checkPreStmt(const CallExpr *S, CheckerContext &C) const;
58 void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
59 void checkPostStmt(const CallExpr *S, CheckerContext &C) const;
60
Anna Zaks703ffb12011-08-12 21:56:43 +000061 void checkDeadSymbols(SymbolReaper &SR, CheckerContext &C) const;
Anna Zaksf57be282011-08-01 22:40:01 +000062 void checkEndPath(EndOfFunctionNodeBuilder &B, ExprEngine &Eng) const;
63
64private:
Anna Zaks083fcb22011-08-04 17:28:06 +000065 /// Stores the information about the allocator and deallocator functions -
66 /// these are the functions the checker is tracking.
67 struct ADFunctionInfo {
68 const char* Name;
69 unsigned int Param;
70 unsigned int DeallocatorIdx;
71 };
72 static const unsigned InvalidIdx = 100000;
Anna Zaks76cbb752011-08-04 21:53:01 +000073 static const unsigned FunctionsToTrackSize = 6;
Anna Zaks083fcb22011-08-04 17:28:06 +000074 static const ADFunctionInfo FunctionsToTrack[FunctionsToTrackSize];
Anna Zaks5a58c6d2011-08-05 23:52:45 +000075 /// The value, which represents no error return value for allocator functions.
76 static const unsigned NoErr = 0;
Anna Zaksf57be282011-08-01 22:40:01 +000077
Anna Zaks083fcb22011-08-04 17:28:06 +000078 /// Given the function name, returns the index of the allocator/deallocator
79 /// function.
80 unsigned getTrackedFunctionIndex(StringRef Name, bool IsAllocator) const;
Anna Zaks03826aa2011-08-04 00:26:57 +000081
82 inline void initBugType() const {
83 if (!BT)
84 BT.reset(new BugType("Improper use of SecKeychain API", "Mac OS API"));
85 }
Anna Zaks703ffb12011-08-12 21:56:43 +000086
87 RangedBugReport *generateAllocatedDataNotReleasedReport(
88 const AllocationState &AS,
89 ExplodedNode *N) const;
90
91 /// Check if RetSym evaluates to an error value in the current state.
92 bool definitelyReturnedError(SymbolRef RetSym,
93 const GRState *State,
94 SValBuilder &Builder,
95 bool noError = false) const;
96
97 /// Check if RetSym evaluates to a NoErr value in the current state.
98 bool definitelyDidnotReturnError(SymbolRef RetSym,
99 const GRState *State,
100 SValBuilder &Builder) const {
101 return definitelyReturnedError(RetSym, State, Builder, true);
102 }
103
Anna Zaksf57be282011-08-01 22:40:01 +0000104};
105}
106
Anna Zaks083fcb22011-08-04 17:28:06 +0000107/// GRState traits to store the currently allocated (and not yet freed) symbols.
Anna Zaks864d2522011-08-12 21:14:26 +0000108/// This is a map from the allocated content symbol to the corresponding
109/// AllocationState.
110typedef llvm::ImmutableMap<SymbolRef,
111 MacOSKeychainAPIChecker::AllocationState> AllocatedSetTy;
Anna Zaksf57be282011-08-01 22:40:01 +0000112
113namespace { struct AllocatedData {}; }
114namespace clang { namespace ento {
115template<> struct GRStateTrait<AllocatedData>
116 : public GRStatePartialTrait<AllocatedSetTy > {
117 static void *GDMIndex() { static int index = 0; return &index; }
118};
119}}
120
Anna Zaks03826aa2011-08-04 00:26:57 +0000121static bool isEnclosingFunctionParam(const Expr *E) {
122 E = E->IgnoreParenCasts();
123 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
124 const ValueDecl *VD = DRE->getDecl();
125 if (isa<ImplicitParamDecl>(VD) || isa<ParmVarDecl>(VD))
126 return true;
127 }
128 return false;
129}
130
Anna Zaks083fcb22011-08-04 17:28:06 +0000131const MacOSKeychainAPIChecker::ADFunctionInfo
132 MacOSKeychainAPIChecker::FunctionsToTrack[FunctionsToTrackSize] = {
133 {"SecKeychainItemCopyContent", 4, 3}, // 0
134 {"SecKeychainFindGenericPassword", 6, 3}, // 1
135 {"SecKeychainFindInternetPassword", 13, 3}, // 2
136 {"SecKeychainItemFreeContent", 1, InvalidIdx}, // 3
Anna Zaks76cbb752011-08-04 21:53:01 +0000137 {"SecKeychainItemCopyAttributesAndData", 5, 5}, // 4
138 {"SecKeychainItemFreeAttributesAndData", 1, InvalidIdx}, // 5
Anna Zaks083fcb22011-08-04 17:28:06 +0000139};
140
141unsigned MacOSKeychainAPIChecker::getTrackedFunctionIndex(StringRef Name,
142 bool IsAllocator) const {
143 for (unsigned I = 0; I < FunctionsToTrackSize; ++I) {
144 ADFunctionInfo FI = FunctionsToTrack[I];
145 if (FI.Name != Name)
146 continue;
147 // Make sure the function is of the right type (allocator vs deallocator).
148 if (IsAllocator && (FI.DeallocatorIdx == InvalidIdx))
149 return InvalidIdx;
150 if (!IsAllocator && (FI.DeallocatorIdx != InvalidIdx))
151 return InvalidIdx;
152
153 return I;
154 }
155 // The function is not tracked.
156 return InvalidIdx;
157}
158
Anna Zaks864d2522011-08-12 21:14:26 +0000159static SymbolRef getSymbolForRegion(CheckerContext &C,
160 const MemRegion *R) {
161 if (!isa<SymbolicRegion>(R))
162 return 0;
163 return cast<SymbolicRegion>(R)->getSymbol();
Anna Zaks5a58c6d2011-08-05 23:52:45 +0000164}
165
Anna Zaks864d2522011-08-12 21:14:26 +0000166static bool isBadDeallocationArgument(const MemRegion *Arg) {
167 if (isa<AllocaRegion>(Arg) ||
168 isa<BlockDataRegion>(Arg) ||
169 isa<TypedRegion>(Arg)) {
170 return true;
171 }
172 return false;
173}
Anna Zaksca0b57e2011-08-05 00:37:00 +0000174/// Given the address expression, retrieve the value it's pointing to. Assume
Anna Zaks864d2522011-08-12 21:14:26 +0000175/// that value is itself an address, and return the corresponding symbol.
176static SymbolRef getAsPointeeSymbol(const Expr *Expr,
177 CheckerContext &C) {
Anna Zaksca0b57e2011-08-05 00:37:00 +0000178 const GRState *State = C.getState();
179 SVal ArgV = State->getSVal(Expr);
Anna Zaks5a58c6d2011-08-05 23:52:45 +0000180
Anna Zaksca0b57e2011-08-05 00:37:00 +0000181 if (const loc::MemRegionVal *X = dyn_cast<loc::MemRegionVal>(&ArgV)) {
182 StoreManager& SM = C.getStoreManager();
183 const MemRegion *V = SM.Retrieve(State->getStore(), *X).getAsRegion();
Anna Zaks5a58c6d2011-08-05 23:52:45 +0000184 if (V)
Anna Zaks864d2522011-08-12 21:14:26 +0000185 return getSymbolForRegion(C, V);
Anna Zaksca0b57e2011-08-05 00:37:00 +0000186 }
187 return 0;
188}
189
Anna Zaks703ffb12011-08-12 21:56:43 +0000190// When checking for error code, we need to consider the following cases:
191// 1) noErr / [0]
192// 2) someErr / [1, inf]
193// 3) unknown
194// If noError, returns true iff (1).
195// If !noError, returns true iff (2).
196bool MacOSKeychainAPIChecker::definitelyReturnedError(SymbolRef RetSym,
197 const GRState *State,
198 SValBuilder &Builder,
199 bool noError) const {
200 DefinedOrUnknownSVal NoErrVal = Builder.makeIntVal(NoErr,
201 Builder.getSymbolManager().getType(RetSym));
202 DefinedOrUnknownSVal NoErr = Builder.evalEQ(State, NoErrVal,
203 nonloc::SymbolVal(RetSym));
204 const GRState *ErrState = State->assume(NoErr, noError);
205 if (ErrState == State) {
206 return true;
207 }
208
209 return false;
210}
211
Anna Zaksf57be282011-08-01 22:40:01 +0000212void MacOSKeychainAPIChecker::checkPreStmt(const CallExpr *CE,
213 CheckerContext &C) const {
214 const GRState *State = C.getState();
215 const Expr *Callee = CE->getCallee();
216 SVal L = State->getSVal(Callee);
Anna Zaksca0b57e2011-08-05 00:37:00 +0000217 unsigned idx = InvalidIdx;
Anna Zaksf57be282011-08-01 22:40:01 +0000218
219 const FunctionDecl *funDecl = L.getAsFunctionDecl();
220 if (!funDecl)
221 return;
222 IdentifierInfo *funI = funDecl->getIdentifier();
223 if (!funI)
224 return;
225 StringRef funName = funI->getName();
226
Anna Zaksca0b57e2011-08-05 00:37:00 +0000227 // If it is a call to an allocator function, it could be a double allocation.
228 idx = getTrackedFunctionIndex(funName, true);
229 if (idx != InvalidIdx) {
230 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks864d2522011-08-12 21:14:26 +0000231 if (SymbolRef V = getAsPointeeSymbol(ArgExpr, C))
Anna Zaksca0b57e2011-08-05 00:37:00 +0000232 if (const AllocationState *AS = State->get<AllocatedData>(V)) {
233 ExplodedNode *N = C.generateSink(State);
234 if (!N)
235 return;
236 initBugType();
Anna Zaks67f7fa42011-08-15 18:42:00 +0000237 llvm::SmallString<128> sbuf;
238 llvm::raw_svector_ostream os(sbuf);
Anna Zaksca0b57e2011-08-05 00:37:00 +0000239 unsigned int DIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
240 os << "Allocated data should be released before another call to "
241 << "the allocator: missing a call to '"
242 << FunctionsToTrack[DIdx].Name
243 << "'.";
244 RangedBugReport *Report = new RangedBugReport(*BT, os.str(), N);
245 Report->addRange(ArgExpr->getSourceRange());
246 C.EmitReport(Report);
247 }
248 return;
249 }
250
251 // Is it a call to one of deallocator functions?
252 idx = getTrackedFunctionIndex(funName, false);
Anna Zaks083fcb22011-08-04 17:28:06 +0000253 if (idx == InvalidIdx)
Anna Zaks08551b52011-08-04 00:31:38 +0000254 return;
255
Anna Zaks864d2522011-08-12 21:14:26 +0000256 // Check the argument to the deallocator.
Anna Zaks083fcb22011-08-04 17:28:06 +0000257 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks864d2522011-08-12 21:14:26 +0000258 SVal ArgSVal = State->getSVal(ArgExpr);
259
260 // Undef is reported by another checker.
261 if (ArgSVal.isUndef())
262 return;
263
264 const MemRegion *Arg = ArgSVal.getAsRegion();
Anna Zaks08551b52011-08-04 00:31:38 +0000265 if (!Arg)
266 return;
Anna Zaks864d2522011-08-12 21:14:26 +0000267
268 SymbolRef ArgSM = getSymbolForRegion(C, Arg);
269 bool RegionArgIsBad = ArgSM ? false : isBadDeallocationArgument(Arg);
270 // If the argument is coming from the heap, globals, or unknown, do not
271 // report it.
272 if (!ArgSM && !RegionArgIsBad)
273 return;
Anna Zaks08551b52011-08-04 00:31:38 +0000274
Anna Zaks67f7fa42011-08-15 18:42:00 +0000275 // If trying to free data which has not been allocated yet, report as a bug.
Anna Zaks5a58c6d2011-08-05 23:52:45 +0000276 const AllocationState *AS = State->get<AllocatedData>(ArgSM);
Anna Zaks864d2522011-08-12 21:14:26 +0000277 if (!AS || RegionArgIsBad) {
Anna Zaks08551b52011-08-04 00:31:38 +0000278 // It is possible that this is a false positive - the argument might
279 // have entered as an enclosing function parameter.
280 if (isEnclosingFunctionParam(ArgExpr))
Anna Zaksf57be282011-08-01 22:40:01 +0000281 return;
Anna Zaks03826aa2011-08-04 00:26:57 +0000282
Anna Zaks08551b52011-08-04 00:31:38 +0000283 ExplodedNode *N = C.generateNode(State);
284 if (!N)
285 return;
286 initBugType();
287 RangedBugReport *Report = new RangedBugReport(*BT,
288 "Trying to free data which has not been allocated.", N);
289 Report->addRange(ArgExpr->getSourceRange());
290 C.EmitReport(Report);
Anna Zaks083fcb22011-08-04 17:28:06 +0000291 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000292 }
Anna Zaks08551b52011-08-04 00:31:38 +0000293
Anna Zaks76cbb752011-08-04 21:53:01 +0000294 // Check if the proper deallocator is used.
295 unsigned int PDeallocIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
296 if (PDeallocIdx != idx) {
297 ExplodedNode *N = C.generateSink(State);
298 if (!N)
299 return;
300 initBugType();
301
Anna Zaks67f7fa42011-08-15 18:42:00 +0000302 llvm::SmallString<80> sbuf;
303 llvm::raw_svector_ostream os(sbuf);
Anna Zaks76cbb752011-08-04 21:53:01 +0000304 os << "Allocator doesn't match the deallocator: '"
305 << FunctionsToTrack[PDeallocIdx].Name << "' should be used.";
306 RangedBugReport *Report = new RangedBugReport(*BT, os.str(), N);
307 Report->addRange(ArgExpr->getSourceRange());
308 C.EmitReport(Report);
309 return;
310 }
311
Anna Zaks864d2522011-08-12 21:14:26 +0000312 // The call is deallocating a value we previously allocated, so remove it
313 // from the next state.
Anna Zaks5a58c6d2011-08-05 23:52:45 +0000314 State = State->remove<AllocatedData>(ArgSM);
Anna Zaks703ffb12011-08-12 21:56:43 +0000315
316 // If the return status is undefined or is error, report a bad call to free.
317 if (!definitelyDidnotReturnError(AS->RetValue, State, C.getSValBuilder())) {
318 ExplodedNode *N = C.generateNode(State);
319 if (!N)
320 return;
321 initBugType();
322 RangedBugReport *Report = new RangedBugReport(*BT,
323 "Call to free data when error was returned during allocation.", N);
324 Report->addRange(ArgExpr->getSourceRange());
325 C.EmitReport(Report);
326 return;
327 }
328
Anna Zaks08551b52011-08-04 00:31:38 +0000329 C.addTransition(State);
Anna Zaksf57be282011-08-01 22:40:01 +0000330}
331
332void MacOSKeychainAPIChecker::checkPostStmt(const CallExpr *CE,
333 CheckerContext &C) const {
334 const GRState *State = C.getState();
335 const Expr *Callee = CE->getCallee();
336 SVal L = State->getSVal(Callee);
Anna Zaksf57be282011-08-01 22:40:01 +0000337
338 const FunctionDecl *funDecl = L.getAsFunctionDecl();
339 if (!funDecl)
340 return;
341 IdentifierInfo *funI = funDecl->getIdentifier();
342 if (!funI)
343 return;
344 StringRef funName = funI->getName();
345
346 // If a value has been allocated, add it to the set for tracking.
Anna Zaks083fcb22011-08-04 17:28:06 +0000347 unsigned idx = getTrackedFunctionIndex(funName, true);
348 if (idx == InvalidIdx)
Anna Zaks08551b52011-08-04 00:31:38 +0000349 return;
Anna Zaks03826aa2011-08-04 00:26:57 +0000350
Anna Zaks083fcb22011-08-04 17:28:06 +0000351 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks79c9c752011-08-12 22:47:22 +0000352 // If the argument entered as an enclosing function parameter, skip it to
353 // avoid false positives.
354 if (isEnclosingFunctionParam(ArgExpr))
355 return;
356
Anna Zaks864d2522011-08-12 21:14:26 +0000357 if (SymbolRef V = getAsPointeeSymbol(ArgExpr, C)) {
358 // If the argument points to something that's not a symbolic region, it
359 // can be:
Anna Zaks08551b52011-08-04 00:31:38 +0000360 // - unknown (cannot reason about it)
361 // - undefined (already reported by other checker)
Anna Zaks083fcb22011-08-04 17:28:06 +0000362 // - constant (null - should not be tracked,
363 // other constant will generate a compiler warning)
Anna Zaks08551b52011-08-04 00:31:38 +0000364 // - goto (should be reported by other checker)
Anna Zaks703ffb12011-08-12 21:56:43 +0000365
366 // The call return value symbol should stay alive for as long as the
367 // allocated value symbol, since our diagnostics depend on the value
368 // returned by the call. Ex: Data should only be freed if noErr was
369 // returned during allocation.)
Anna Zaks864d2522011-08-12 21:14:26 +0000370 SymbolRef RetStatusSymbol = State->getSVal(CE).getAsSymbol();
Anna Zaks703ffb12011-08-12 21:56:43 +0000371 C.getSymbolManager().addSymbolDependency(V, RetStatusSymbol);
372
373 // Track the allocated value in the checker state.
374 State = State->set<AllocatedData>(V, AllocationState(ArgExpr, idx,
Anna Zaks864d2522011-08-12 21:14:26 +0000375 RetStatusSymbol));
Anna Zaks703ffb12011-08-12 21:56:43 +0000376 assert(State);
377 C.addTransition(State);
Anna Zaksf57be282011-08-01 22:40:01 +0000378 }
379}
380
381void MacOSKeychainAPIChecker::checkPreStmt(const ReturnStmt *S,
382 CheckerContext &C) const {
383 const Expr *retExpr = S->getRetValue();
384 if (!retExpr)
385 return;
386
387 // Check if the value is escaping through the return.
388 const GRState *state = C.getState();
Anna Zaks03826aa2011-08-04 00:26:57 +0000389 const MemRegion *V = state->getSVal(retExpr).getAsRegion();
Anna Zaksf57be282011-08-01 22:40:01 +0000390 if (!V)
391 return;
Anna Zaks864d2522011-08-12 21:14:26 +0000392 state = state->remove<AllocatedData>(getSymbolForRegion(C, V));
Anna Zaksf57be282011-08-01 22:40:01 +0000393
Anna Zaks03826aa2011-08-04 00:26:57 +0000394 // Proceed from the new state.
395 C.addTransition(state);
Anna Zaksf57be282011-08-01 22:40:01 +0000396}
397
Anna Zaks703ffb12011-08-12 21:56:43 +0000398// TODO: The report has to mention the expression which contains the
399// allocated content as well as the point at which it has been allocated.
400RangedBugReport *MacOSKeychainAPIChecker::
401 generateAllocatedDataNotReleasedReport(const AllocationState &AS,
402 ExplodedNode *N) const {
403 const ADFunctionInfo &FI = FunctionsToTrack[AS.AllocatorIdx];
404 initBugType();
Anna Zaks67f7fa42011-08-15 18:42:00 +0000405 llvm::SmallString<70> sbuf;
406 llvm::raw_svector_ostream os(sbuf);
Anna Zaks703ffb12011-08-12 21:56:43 +0000407 os << "Allocated data is not released: missing a call to '"
408 << FunctionsToTrack[FI.DeallocatorIdx].Name << "'.";
409 RangedBugReport *Report = new RangedBugReport(*BT, os.str(), N);
410 Report->addRange(AS.Address->getSourceRange());
411 return Report;
412}
413
414void MacOSKeychainAPIChecker::checkDeadSymbols(SymbolReaper &SR,
415 CheckerContext &C) const {
416 const GRState *State = C.getState();
417 AllocatedSetTy ASet = State->get<AllocatedData>();
418 if (ASet.isEmpty())
419 return;
420
421 bool Changed = false;
422 llvm::SmallVector<const AllocationState*, 1> Errors;
423 for (AllocatedSetTy::iterator I = ASet.begin(), E = ASet.end(); I != E; ++I) {
424 if (SR.isLive(I->first))
425 continue;
426
427 Changed = true;
428 State = State->remove<AllocatedData>(I->first);
429 // If the allocated symbol is null or if the allocation call might have
430 // returned an error, do not report.
431 if (State->getSymVal(I->first) ||
432 definitelyReturnedError(I->second.RetValue, State, C.getSValBuilder()))
433 continue;
434 Errors.push_back(&I->second);
435 }
436 if (!Changed)
437 return;
438
439 // Generate the new, cleaned up state.
440 ExplodedNode *N = C.generateNode(State);
441 if (!N)
442 return;
443
444 // Generate the error reports.
445 for (llvm::SmallVector<const AllocationState*, 3>::iterator
446 I = Errors.begin(), E = Errors.end(); I != E; ++I) {
447 C.EmitReport(generateAllocatedDataNotReleasedReport(**I, N));
448 }
449}
450
451// TODO: Remove this after we ensure that checkDeadSymbols are always called.
Anna Zaksf57be282011-08-01 22:40:01 +0000452void MacOSKeychainAPIChecker::checkEndPath(EndOfFunctionNodeBuilder &B,
Anna Zaks03826aa2011-08-04 00:26:57 +0000453 ExprEngine &Eng) const {
Anna Zaksf57be282011-08-01 22:40:01 +0000454 const GRState *state = B.getState();
455 AllocatedSetTy AS = state->get<AllocatedData>();
Anna Zaks703ffb12011-08-12 21:56:43 +0000456 if (AS.isEmpty())
Anna Zaks03826aa2011-08-04 00:26:57 +0000457 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000458
459 // Anything which has been allocated but not freed (nor escaped) will be
460 // found here, so report it.
Anna Zaks703ffb12011-08-12 21:56:43 +0000461 bool Changed = false;
462 llvm::SmallVector<const AllocationState*, 1> Errors;
Anna Zaks03826aa2011-08-04 00:26:57 +0000463 for (AllocatedSetTy::iterator I = AS.begin(), E = AS.end(); I != E; ++I ) {
Anna Zaks703ffb12011-08-12 21:56:43 +0000464 Changed = true;
465 state = state->remove<AllocatedData>(I->first);
466 // If the allocated symbol is null or if error code was returned at
467 // allocation, do not report.
468 if (state->getSymVal(I.getKey()) ||
469 definitelyReturnedError(I->second.RetValue, state,
470 Eng.getSValBuilder())) {
471 continue;
472 }
473 Errors.push_back(&I->second);
Anna Zaksf57be282011-08-01 22:40:01 +0000474 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000475
476 // If no change, do not generate a new state.
477 if (!Changed)
478 return;
479
480 ExplodedNode *N = B.generateNode(state);
481 if (!N)
482 return;
483
484 // Generate the error reports.
485 for (llvm::SmallVector<const AllocationState*, 3>::iterator
486 I = Errors.begin(), E = Errors.end(); I != E; ++I) {
487 Eng.getBugReporter().EmitReport(
488 generateAllocatedDataNotReleasedReport(**I, N));
489 }
490
Anna Zaksf57be282011-08-01 22:40:01 +0000491}
492
493void ento::registerMacOSKeychainAPIChecker(CheckerManager &mgr) {
494 mgr.registerChecker<MacOSKeychainAPIChecker>();
495}