blob: 969f2ddeb4ca6e3c44e17815c4c9a5ea29b5fa4d [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
Jordan Rose5ef6e942012-07-10 23:13:01 +0000293 const FunctionDecl *FD = C.getCalleeDecl(CE);
294 if (!FD || FD->getKind() != Decl::Function)
295 return;
296
297 StringRef funName = C.getCalleeName(FD);
Anna Zaksb805c8f2011-12-01 05:57:37 +0000298 if (funName.empty())
Anna Zaksf57be282011-08-01 22:40:01 +0000299 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000300
Anna Zaksca0b57e2011-08-05 00:37:00 +0000301 // If it is a call to an allocator function, it could be a double allocation.
302 idx = getTrackedFunctionIndex(funName, true);
303 if (idx != InvalidIdx) {
304 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks864d2522011-08-12 21:14:26 +0000305 if (SymbolRef V = getAsPointeeSymbol(ArgExpr, C))
Anna Zaksca0b57e2011-08-05 00:37:00 +0000306 if (const AllocationState *AS = State->get<AllocatedData>(V)) {
Anna Zakseacd2b42011-08-25 00:59:06 +0000307 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder())) {
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000308 // Remove the value from the state. The new symbol will be added for
309 // tracking when the second allocator is processed in checkPostStmt().
310 State = State->remove<AllocatedData>(V);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000311 ExplodedNode *N = C.addTransition(State);
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000312 if (!N)
313 return;
314 initBugType();
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000315 SmallString<128> sbuf;
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000316 llvm::raw_svector_ostream os(sbuf);
317 unsigned int DIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
318 os << "Allocated data should be released before another call to "
319 << "the allocator: missing a call to '"
320 << FunctionsToTrack[DIdx].Name
321 << "'.";
Anna Zakse172e8b2011-08-17 23:00:25 +0000322 BugReport *Report = new BugReport(*BT, os.str(), N);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000323 Report->addVisitor(new SecKeychainBugVisitor(V));
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000324 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000325 Report->markInteresting(AS->Region);
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000326 C.EmitReport(Report);
327 }
Anna Zaksca0b57e2011-08-05 00:37:00 +0000328 }
329 return;
330 }
331
332 // Is it a call to one of deallocator functions?
333 idx = getTrackedFunctionIndex(funName, false);
Anna Zaks083fcb22011-08-04 17:28:06 +0000334 if (idx == InvalidIdx)
Anna Zaks08551b52011-08-04 00:31:38 +0000335 return;
336
Anna Zaks864d2522011-08-12 21:14:26 +0000337 // Check the argument to the deallocator.
Anna Zaks083fcb22011-08-04 17:28:06 +0000338 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Ted Kremenek5eca4822012-01-06 22:09:28 +0000339 SVal ArgSVal = State->getSVal(ArgExpr, C.getLocationContext());
Anna Zaks864d2522011-08-12 21:14:26 +0000340
341 // Undef is reported by another checker.
342 if (ArgSVal.isUndef())
343 return;
344
Jordy Rose3e678142012-03-11 00:08:24 +0000345 SymbolRef ArgSM = ArgSVal.getAsLocSymbol();
Anna Zaks864d2522011-08-12 21:14:26 +0000346
Anna Zaks864d2522011-08-12 21:14:26 +0000347 // If the argument is coming from the heap, globals, or unknown, do not
348 // report it.
Jordy Rose3e678142012-03-11 00:08:24 +0000349 bool RegionArgIsBad = false;
350 if (!ArgSM) {
351 if (!isBadDeallocationArgument(ArgSVal.getAsRegion()))
352 return;
353 RegionArgIsBad = true;
354 }
Anna Zaks08551b52011-08-04 00:31:38 +0000355
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000356 // Is the argument to the call being tracked?
357 const AllocationState *AS = State->get<AllocatedData>(ArgSM);
358 if (!AS && FunctionsToTrack[idx].Kind != ValidAPI) {
359 return;
360 }
Anna Zaks67f7fa42011-08-15 18:42:00 +0000361 // If trying to free data which has not been allocated yet, report as a bug.
Anna Zaks7d458b02011-08-15 23:23:15 +0000362 // TODO: We might want a more precise diagnostic for double free
363 // (that would involve tracking all the freed symbols in the checker state).
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000364 if (!AS || RegionArgIsBad) {
Anna Zaks08551b52011-08-04 00:31:38 +0000365 // It is possible that this is a false positive - the argument might
366 // have entered as an enclosing function parameter.
367 if (isEnclosingFunctionParam(ArgExpr))
Anna Zaksf57be282011-08-01 22:40:01 +0000368 return;
Anna Zaks03826aa2011-08-04 00:26:57 +0000369
Anna Zaks0bd6b112011-10-26 21:06:34 +0000370 ExplodedNode *N = C.addTransition(State);
Anna Zaks08551b52011-08-04 00:31:38 +0000371 if (!N)
372 return;
373 initBugType();
Anna Zakse172e8b2011-08-17 23:00:25 +0000374 BugReport *Report = new BugReport(*BT,
Anna Zaks08551b52011-08-04 00:31:38 +0000375 "Trying to free data which has not been allocated.", N);
376 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000377 if (AS)
378 Report->markInteresting(AS->Region);
Anna Zaks08551b52011-08-04 00:31:38 +0000379 C.EmitReport(Report);
Anna Zaks083fcb22011-08-04 17:28:06 +0000380 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000381 }
Anna Zaks08551b52011-08-04 00:31:38 +0000382
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000383 // Process functions which might deallocate.
384 if (FunctionsToTrack[idx].Kind == PossibleAPI) {
385
386 if (funName == "CFStringCreateWithBytesNoCopy") {
387 const Expr *DeallocatorExpr = CE->getArg(5)->IgnoreParenCasts();
388 // NULL ~ default deallocator, so warn.
389 if (DeallocatorExpr->isNullPointerConstant(C.getASTContext(),
390 Expr::NPC_ValueDependentIsNotNull)) {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000391 const AllocationPair AP = std::make_pair(ArgSM, AS);
392 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000393 return;
394 }
395 // One of the default allocators, so warn.
396 if (const DeclRefExpr *DE = dyn_cast<DeclRefExpr>(DeallocatorExpr)) {
397 StringRef DeallocatorName = DE->getFoundDecl()->getName();
398 if (DeallocatorName == "kCFAllocatorDefault" ||
399 DeallocatorName == "kCFAllocatorSystemDefault" ||
400 DeallocatorName == "kCFAllocatorMalloc") {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000401 const AllocationPair AP = std::make_pair(ArgSM, AS);
402 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000403 return;
404 }
405 // If kCFAllocatorNull, which does not deallocate, we still have to
406 // find the deallocator. Otherwise, assume that the user had written a
407 // custom deallocator which does the right thing.
408 if (DE->getFoundDecl()->getName() != "kCFAllocatorNull") {
409 State = State->remove<AllocatedData>(ArgSM);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000410 C.addTransition(State);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000411 return;
412 }
413 }
414 }
415 return;
416 }
417
Anna Zaks7d458b02011-08-15 23:23:15 +0000418 // The call is deallocating a value we previously allocated, so remove it
419 // from the next state.
420 State = State->remove<AllocatedData>(ArgSM);
421
Anna Zaksdd6060e2011-08-23 23:47:36 +0000422 // Check if the proper deallocator is used.
Anna Zaks76cbb752011-08-04 21:53:01 +0000423 unsigned int PDeallocIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000424 if (PDeallocIdx != idx || (FunctionsToTrack[idx].Kind == ErrorAPI)) {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000425 const AllocationPair AP = std::make_pair(ArgSM, AS);
426 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks76cbb752011-08-04 21:53:01 +0000427 return;
428 }
429
Anna Zaksee5a21f2011-12-01 16:41:58 +0000430 // If the buffer can be null and the return status can be an error,
431 // report a bad call to free.
432 if (State->assume(cast<DefinedSVal>(ArgSVal), false) &&
433 !definitelyDidnotReturnError(AS->Region, State, C.getSValBuilder())) {
Anna Zaks0bd6b112011-10-26 21:06:34 +0000434 ExplodedNode *N = C.addTransition(State);
Anna Zaks703ffb12011-08-12 21:56:43 +0000435 if (!N)
436 return;
437 initBugType();
Anna Zakse172e8b2011-08-17 23:00:25 +0000438 BugReport *Report = new BugReport(*BT,
Anna Zaksee5a21f2011-12-01 16:41:58 +0000439 "Only call free if a valid (non-NULL) buffer was returned.", N);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000440 Report->addVisitor(new SecKeychainBugVisitor(ArgSM));
Anna Zaks703ffb12011-08-12 21:56:43 +0000441 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000442 Report->markInteresting(AS->Region);
Anna Zaks703ffb12011-08-12 21:56:43 +0000443 C.EmitReport(Report);
444 return;
445 }
446
Anna Zaks0bd6b112011-10-26 21:06:34 +0000447 C.addTransition(State);
Anna Zaksf57be282011-08-01 22:40:01 +0000448}
449
450void MacOSKeychainAPIChecker::checkPostStmt(const CallExpr *CE,
451 CheckerContext &C) const {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000452 ProgramStateRef State = C.getState();
Jordan Rose5ef6e942012-07-10 23:13:01 +0000453 const FunctionDecl *FD = C.getCalleeDecl(CE);
454 if (!FD || FD->getKind() != Decl::Function)
455 return;
456
457 StringRef funName = C.getCalleeName(FD);
Anna Zaksf57be282011-08-01 22:40:01 +0000458
459 // If a value has been allocated, add it to the set for tracking.
Anna Zaks083fcb22011-08-04 17:28:06 +0000460 unsigned idx = getTrackedFunctionIndex(funName, true);
461 if (idx == InvalidIdx)
Anna Zaks08551b52011-08-04 00:31:38 +0000462 return;
Anna Zaks03826aa2011-08-04 00:26:57 +0000463
Anna Zaks083fcb22011-08-04 17:28:06 +0000464 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks79c9c752011-08-12 22:47:22 +0000465 // If the argument entered as an enclosing function parameter, skip it to
466 // avoid false positives.
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000467 if (isEnclosingFunctionParam(ArgExpr) &&
468 C.getLocationContext()->getParent() == 0)
Anna Zaks79c9c752011-08-12 22:47:22 +0000469 return;
470
Anna Zaks864d2522011-08-12 21:14:26 +0000471 if (SymbolRef V = getAsPointeeSymbol(ArgExpr, C)) {
472 // If the argument points to something that's not a symbolic region, it
473 // can be:
Anna Zaks08551b52011-08-04 00:31:38 +0000474 // - unknown (cannot reason about it)
475 // - undefined (already reported by other checker)
Anna Zaks083fcb22011-08-04 17:28:06 +0000476 // - constant (null - should not be tracked,
477 // other constant will generate a compiler warning)
Anna Zaks08551b52011-08-04 00:31:38 +0000478 // - goto (should be reported by other checker)
Anna Zaks703ffb12011-08-12 21:56:43 +0000479
480 // The call return value symbol should stay alive for as long as the
481 // allocated value symbol, since our diagnostics depend on the value
482 // returned by the call. Ex: Data should only be freed if noErr was
483 // returned during allocation.)
Ted Kremenek5eca4822012-01-06 22:09:28 +0000484 SymbolRef RetStatusSymbol =
485 State->getSVal(CE, C.getLocationContext()).getAsSymbol();
Anna Zaks703ffb12011-08-12 21:56:43 +0000486 C.getSymbolManager().addSymbolDependency(V, RetStatusSymbol);
487
488 // Track the allocated value in the checker state.
489 State = State->set<AllocatedData>(V, AllocationState(ArgExpr, idx,
Anna Zaks864d2522011-08-12 21:14:26 +0000490 RetStatusSymbol));
Anna Zaks703ffb12011-08-12 21:56:43 +0000491 assert(State);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000492 C.addTransition(State);
Anna Zaksf57be282011-08-01 22:40:01 +0000493 }
494}
495
496void MacOSKeychainAPIChecker::checkPreStmt(const ReturnStmt *S,
497 CheckerContext &C) const {
498 const Expr *retExpr = S->getRetValue();
499 if (!retExpr)
500 return;
501
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000502 // If inside inlined call, skip it.
Jordy Rose3e678142012-03-11 00:08:24 +0000503 const LocationContext *LC = C.getLocationContext();
504 if (LC->getParent() != 0)
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000505 return;
506
Anna Zaksf57be282011-08-01 22:40:01 +0000507 // Check if the value is escaping through the return.
Ted Kremenek8bef8232012-01-26 21:29:00 +0000508 ProgramStateRef state = C.getState();
Jordy Rose3e678142012-03-11 00:08:24 +0000509 SymbolRef sym = state->getSVal(retExpr, LC).getAsLocSymbol();
510 if (!sym)
Anna Zaksf57be282011-08-01 22:40:01 +0000511 return;
Jordy Rose3e678142012-03-11 00:08:24 +0000512 state = state->remove<AllocatedData>(sym);
Anna Zaksf57be282011-08-01 22:40:01 +0000513
Anna Zaks03826aa2011-08-04 00:26:57 +0000514 // Proceed from the new state.
Anna Zaks0bd6b112011-10-26 21:06:34 +0000515 C.addTransition(state);
Anna Zaksf57be282011-08-01 22:40:01 +0000516}
517
Anna Zaks721aa372012-02-28 03:07:06 +0000518// TODO: This logic is the same as in Malloc checker.
Anna Zaksd708bac2012-02-23 22:53:29 +0000519const Stmt *
520MacOSKeychainAPIChecker::getAllocationSite(const ExplodedNode *N,
521 SymbolRef Sym,
522 CheckerContext &C) const {
Anna Zaks721aa372012-02-28 03:07:06 +0000523 const LocationContext *LeakContext = N->getLocationContext();
Anna Zaksd708bac2012-02-23 22:53:29 +0000524 // Walk the ExplodedGraph backwards and find the first node that referred to
525 // the tracked symbol.
526 const ExplodedNode *AllocNode = N;
527
528 while (N) {
529 if (!N->getState()->get<AllocatedData>(Sym))
530 break;
Anna Zaks721aa372012-02-28 03:07:06 +0000531 // Allocation node, is the last node in the current context in which the
532 // symbol was tracked.
533 if (N->getLocationContext() == LeakContext)
534 AllocNode = N;
Anna Zaksd708bac2012-02-23 22:53:29 +0000535 N = N->pred_empty() ? NULL : *(N->pred_begin());
536 }
537
538 ProgramPoint P = AllocNode->getLocation();
Jordan Rose852aa0d2012-07-10 22:07:52 +0000539 if (CallExitEnd *Exit = dyn_cast<CallExitEnd>(&P))
540 return Exit->getCalleeContext()->getCallSite();
541 if (clang::PostStmt *PS = dyn_cast<clang::PostStmt>(&P))
542 return PS->getStmt();
543 return 0;
Anna Zaksd708bac2012-02-23 22:53:29 +0000544}
545
Anna Zakse172e8b2011-08-17 23:00:25 +0000546BugReport *MacOSKeychainAPIChecker::
Anna Zaks98401112011-08-24 20:52:46 +0000547 generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
Anna Zaksd708bac2012-02-23 22:53:29 +0000548 ExplodedNode *N,
549 CheckerContext &C) const {
Anna Zaks5eb7d822011-08-24 21:58:55 +0000550 const ADFunctionInfo &FI = FunctionsToTrack[AP.second->AllocatorIdx];
Anna Zaks703ffb12011-08-12 21:56:43 +0000551 initBugType();
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000552 SmallString<70> sbuf;
Anna Zaks67f7fa42011-08-15 18:42:00 +0000553 llvm::raw_svector_ostream os(sbuf);
Anna Zaks703ffb12011-08-12 21:56:43 +0000554 os << "Allocated data is not released: missing a call to '"
555 << FunctionsToTrack[FI.DeallocatorIdx].Name << "'.";
Anna Zaksd708bac2012-02-23 22:53:29 +0000556
557 // Most bug reports are cached at the location where they occurred.
558 // With leaks, we want to unique them by the location where they were
559 // allocated, and only report a single path.
Anna Zaks721aa372012-02-28 03:07:06 +0000560 PathDiagnosticLocation LocUsedForUniqueing;
561 if (const Stmt *AllocStmt = getAllocationSite(N, AP.first, C))
562 LocUsedForUniqueing = PathDiagnosticLocation::createBegin(AllocStmt,
563 C.getSourceManager(), N->getLocationContext());
Anna Zaksd708bac2012-02-23 22:53:29 +0000564
565 BugReport *Report = new BugReport(*BT, os.str(), N, LocUsedForUniqueing);
Anna Zaks98401112011-08-24 20:52:46 +0000566 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
Ted Kremenek76aadc32012-03-09 01:13:14 +0000567 markInteresting(Report, AP);
Anna Zaks703ffb12011-08-12 21:56:43 +0000568 return Report;
569}
570
571void MacOSKeychainAPIChecker::checkDeadSymbols(SymbolReaper &SR,
572 CheckerContext &C) const {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000573 ProgramStateRef State = C.getState();
Anna Zaks703ffb12011-08-12 21:56:43 +0000574 AllocatedSetTy ASet = State->get<AllocatedData>();
575 if (ASet.isEmpty())
576 return;
577
578 bool Changed = false;
Anna Zaks98401112011-08-24 20:52:46 +0000579 AllocationPairVec Errors;
Anna Zaks703ffb12011-08-12 21:56:43 +0000580 for (AllocatedSetTy::iterator I = ASet.begin(), E = ASet.end(); I != E; ++I) {
581 if (SR.isLive(I->first))
582 continue;
583
584 Changed = true;
585 State = State->remove<AllocatedData>(I->first);
586 // If the allocated symbol is null or if the allocation call might have
587 // returned an error, do not report.
588 if (State->getSymVal(I->first) ||
Anna Zakseacd2b42011-08-25 00:59:06 +0000589 definitelyReturnedError(I->second.Region, State, C.getSValBuilder()))
Anna Zaks703ffb12011-08-12 21:56:43 +0000590 continue;
Anna Zaks5eb7d822011-08-24 21:58:55 +0000591 Errors.push_back(std::make_pair(I->first, &I->second));
Anna Zaks703ffb12011-08-12 21:56:43 +0000592 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000593 if (!Changed) {
594 // Generate the new, cleaned up state.
595 C.addTransition(State);
Anna Zaks703ffb12011-08-12 21:56:43 +0000596 return;
Anna Zaksd708bac2012-02-23 22:53:29 +0000597 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000598
Anna Zaksd708bac2012-02-23 22:53:29 +0000599 static SimpleProgramPointTag Tag("MacOSKeychainAPIChecker : DeadSymbolsLeak");
600 ExplodedNode *N = C.addTransition(C.getState(), C.getPredecessor(), &Tag);
Anna Zaks703ffb12011-08-12 21:56:43 +0000601
602 // Generate the error reports.
Anna Zaks98401112011-08-24 20:52:46 +0000603 for (AllocationPairVec::iterator I = Errors.begin(), E = Errors.end();
604 I != E; ++I) {
Anna Zaksd708bac2012-02-23 22:53:29 +0000605 C.EmitReport(generateAllocatedDataNotReleasedReport(*I, N, C));
Anna Zaks703ffb12011-08-12 21:56:43 +0000606 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000607
608 // Generate the new, cleaned up state.
609 C.addTransition(State, N);
Anna Zaks703ffb12011-08-12 21:56:43 +0000610}
611
612// TODO: Remove this after we ensure that checkDeadSymbols are always called.
Anna Zaksd708bac2012-02-23 22:53:29 +0000613void MacOSKeychainAPIChecker::checkEndPath(CheckerContext &C) const {
614 ProgramStateRef state = C.getState();
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000615
616 // If inside inlined call, skip it.
Anna Zaksd708bac2012-02-23 22:53:29 +0000617 if (C.getLocationContext()->getParent() != 0)
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000618 return;
619
Anna Zaksf57be282011-08-01 22:40:01 +0000620 AllocatedSetTy AS = state->get<AllocatedData>();
Anna Zaks703ffb12011-08-12 21:56:43 +0000621 if (AS.isEmpty())
Anna Zaks03826aa2011-08-04 00:26:57 +0000622 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000623
624 // Anything which has been allocated but not freed (nor escaped) will be
625 // found here, so report it.
Anna Zaks703ffb12011-08-12 21:56:43 +0000626 bool Changed = false;
Anna Zaks98401112011-08-24 20:52:46 +0000627 AllocationPairVec Errors;
Anna Zaks03826aa2011-08-04 00:26:57 +0000628 for (AllocatedSetTy::iterator I = AS.begin(), E = AS.end(); I != E; ++I ) {
Anna Zaks703ffb12011-08-12 21:56:43 +0000629 Changed = true;
630 state = state->remove<AllocatedData>(I->first);
631 // If the allocated symbol is null or if error code was returned at
632 // allocation, do not report.
633 if (state->getSymVal(I.getKey()) ||
Anna Zakseacd2b42011-08-25 00:59:06 +0000634 definitelyReturnedError(I->second.Region, state,
Anna Zaksd708bac2012-02-23 22:53:29 +0000635 C.getSValBuilder())) {
Anna Zaks703ffb12011-08-12 21:56:43 +0000636 continue;
637 }
Anna Zaks5eb7d822011-08-24 21:58:55 +0000638 Errors.push_back(std::make_pair(I->first, &I->second));
Anna Zaksf57be282011-08-01 22:40:01 +0000639 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000640
641 // If no change, do not generate a new state.
Anna Zaksd708bac2012-02-23 22:53:29 +0000642 if (!Changed) {
643 C.addTransition(state);
Anna Zaks703ffb12011-08-12 21:56:43 +0000644 return;
Anna Zaksd708bac2012-02-23 22:53:29 +0000645 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000646
Anna Zaksd708bac2012-02-23 22:53:29 +0000647 static SimpleProgramPointTag Tag("MacOSKeychainAPIChecker : EndPathLeak");
648 ExplodedNode *N = C.addTransition(C.getState(), C.getPredecessor(), &Tag);
Anna Zaks703ffb12011-08-12 21:56:43 +0000649
650 // Generate the error reports.
Anna Zaks98401112011-08-24 20:52:46 +0000651 for (AllocationPairVec::iterator I = Errors.begin(), E = Errors.end();
652 I != E; ++I) {
Anna Zaksd708bac2012-02-23 22:53:29 +0000653 C.EmitReport(generateAllocatedDataNotReleasedReport(*I, N, C));
Anna Zaks703ffb12011-08-12 21:56:43 +0000654 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000655
656 C.addTransition(state, N);
Anna Zaks98401112011-08-24 20:52:46 +0000657}
Anna Zaks703ffb12011-08-12 21:56:43 +0000658
Anna Zaks98401112011-08-24 20:52:46 +0000659
660PathDiagnosticPiece *MacOSKeychainAPIChecker::SecKeychainBugVisitor::VisitNode(
661 const ExplodedNode *N,
662 const ExplodedNode *PrevN,
663 BugReporterContext &BRC,
664 BugReport &BR) {
665 const AllocationState *AS = N->getState()->get<AllocatedData>(Sym);
666 if (!AS)
667 return 0;
668 const AllocationState *ASPrev = PrevN->getState()->get<AllocatedData>(Sym);
669 if (ASPrev)
670 return 0;
671
672 // (!ASPrev && AS) ~ We started tracking symbol in node N, it must be the
673 // allocation site.
674 const CallExpr *CE = cast<CallExpr>(cast<StmtPoint>(N->getLocation())
675 .getStmt());
676 const FunctionDecl *funDecl = CE->getDirectCallee();
677 assert(funDecl && "We do not support indirect function calls as of now.");
678 StringRef funName = funDecl->getName();
679
680 // Get the expression of the corresponding argument.
681 unsigned Idx = getTrackedFunctionIndex(funName, true);
682 assert(Idx != InvalidIdx && "This should be a call to an allocator.");
683 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[Idx].Param);
Anna Zaks220ac8c2011-09-15 01:08:34 +0000684 PathDiagnosticLocation Pos(ArgExpr, BRC.getSourceManager(),
685 N->getLocationContext());
Anna Zaks98401112011-08-24 20:52:46 +0000686 return new PathDiagnosticEventPiece(Pos, "Data is allocated here.");
Anna Zaksf57be282011-08-01 22:40:01 +0000687}
688
689void ento::registerMacOSKeychainAPIChecker(CheckerManager &mgr) {
690 mgr.registerChecker<MacOSKeychainAPIChecker>();
691}