blob: 76f20b6e2e5102c37f43ce1c09bc43c9a699d676 [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.
Jordan Rose166d5022012-11-02 01:54:06 +0000161REGISTER_MAP_WITH_PROGRAMSTATE(AllocatedData,
162 SymbolRef,
163 MacOSKeychainAPIChecker::AllocationState)
Anna Zaksf57be282011-08-01 22:40:01 +0000164
Anna Zaks03826aa2011-08-04 00:26:57 +0000165static bool isEnclosingFunctionParam(const Expr *E) {
166 E = E->IgnoreParenCasts();
167 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
168 const ValueDecl *VD = DRE->getDecl();
169 if (isa<ImplicitParamDecl>(VD) || isa<ParmVarDecl>(VD))
170 return true;
171 }
172 return false;
173}
174
Anna Zaks083fcb22011-08-04 17:28:06 +0000175const MacOSKeychainAPIChecker::ADFunctionInfo
176 MacOSKeychainAPIChecker::FunctionsToTrack[FunctionsToTrackSize] = {
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000177 {"SecKeychainItemCopyContent", 4, 3, ValidAPI}, // 0
178 {"SecKeychainFindGenericPassword", 6, 3, ValidAPI}, // 1
179 {"SecKeychainFindInternetPassword", 13, 3, ValidAPI}, // 2
180 {"SecKeychainItemFreeContent", 1, InvalidIdx, ValidAPI}, // 3
181 {"SecKeychainItemCopyAttributesAndData", 5, 5, ValidAPI}, // 4
182 {"SecKeychainItemFreeAttributesAndData", 1, InvalidIdx, ValidAPI}, // 5
183 {"free", 0, InvalidIdx, ErrorAPI}, // 6
184 {"CFStringCreateWithBytesNoCopy", 1, InvalidIdx, PossibleAPI}, // 7
Anna Zaks083fcb22011-08-04 17:28:06 +0000185};
186
187unsigned MacOSKeychainAPIChecker::getTrackedFunctionIndex(StringRef Name,
Anna Zaks98401112011-08-24 20:52:46 +0000188 bool IsAllocator) {
Anna Zaks083fcb22011-08-04 17:28:06 +0000189 for (unsigned I = 0; I < FunctionsToTrackSize; ++I) {
190 ADFunctionInfo FI = FunctionsToTrack[I];
191 if (FI.Name != Name)
192 continue;
193 // Make sure the function is of the right type (allocator vs deallocator).
194 if (IsAllocator && (FI.DeallocatorIdx == InvalidIdx))
195 return InvalidIdx;
196 if (!IsAllocator && (FI.DeallocatorIdx != InvalidIdx))
197 return InvalidIdx;
198
199 return I;
200 }
201 // The function is not tracked.
202 return InvalidIdx;
203}
204
Anna Zaks864d2522011-08-12 21:14:26 +0000205static bool isBadDeallocationArgument(const MemRegion *Arg) {
Jordy Rose3e678142012-03-11 00:08:24 +0000206 if (!Arg)
207 return false;
Anna Zaks864d2522011-08-12 21:14:26 +0000208 if (isa<AllocaRegion>(Arg) ||
209 isa<BlockDataRegion>(Arg) ||
210 isa<TypedRegion>(Arg)) {
211 return true;
212 }
213 return false;
214}
Jordy Rose3e678142012-03-11 00:08:24 +0000215
Anna Zaksca0b57e2011-08-05 00:37:00 +0000216/// Given the address expression, retrieve the value it's pointing to. Assume
Anna Zaks864d2522011-08-12 21:14:26 +0000217/// that value is itself an address, and return the corresponding symbol.
218static SymbolRef getAsPointeeSymbol(const Expr *Expr,
219 CheckerContext &C) {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000220 ProgramStateRef State = C.getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +0000221 SVal ArgV = State->getSVal(Expr, C.getLocationContext());
Anna Zaks5a58c6d2011-08-05 23:52:45 +0000222
Anna Zaksca0b57e2011-08-05 00:37:00 +0000223 if (const loc::MemRegionVal *X = dyn_cast<loc::MemRegionVal>(&ArgV)) {
224 StoreManager& SM = C.getStoreManager();
Jordy Rose3e678142012-03-11 00:08:24 +0000225 SymbolRef sym = SM.getBinding(State->getStore(), *X).getAsLocSymbol();
226 if (sym)
227 return sym;
Anna Zaksca0b57e2011-08-05 00:37:00 +0000228 }
229 return 0;
230}
231
Anna Zaks703ffb12011-08-12 21:56:43 +0000232// When checking for error code, we need to consider the following cases:
233// 1) noErr / [0]
234// 2) someErr / [1, inf]
235// 3) unknown
Sylvestre Ledruf3477c12012-09-27 10:16:10 +0000236// If noError, returns true iff (1).
237// If !noError, returns true iff (2).
Anna Zaks703ffb12011-08-12 21:56:43 +0000238bool MacOSKeychainAPIChecker::definitelyReturnedError(SymbolRef RetSym,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000239 ProgramStateRef State,
Anna Zaks703ffb12011-08-12 21:56:43 +0000240 SValBuilder &Builder,
241 bool noError) const {
242 DefinedOrUnknownSVal NoErrVal = Builder.makeIntVal(NoErr,
243 Builder.getSymbolManager().getType(RetSym));
244 DefinedOrUnknownSVal NoErr = Builder.evalEQ(State, NoErrVal,
245 nonloc::SymbolVal(RetSym));
Ted Kremenek8bef8232012-01-26 21:29:00 +0000246 ProgramStateRef ErrState = State->assume(NoErr, noError);
Anna Zaks703ffb12011-08-12 21:56:43 +0000247 if (ErrState == State) {
248 return true;
249 }
250
251 return false;
252}
253
Anna Zaksdd6060e2011-08-23 23:47:36 +0000254// Report deallocator mismatch. Remove the region from tracking - reporting a
255// missing free error after this one is redundant.
256void MacOSKeychainAPIChecker::
Anna Zaks6b7aad92011-08-25 00:32:42 +0000257 generateDeallocatorMismatchReport(const AllocationPair &AP,
Anna Zaksdd6060e2011-08-23 23:47:36 +0000258 const Expr *ArgExpr,
Anna Zaks6b7aad92011-08-25 00:32:42 +0000259 CheckerContext &C) const {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000260 ProgramStateRef State = C.getState();
Anna Zaks6b7aad92011-08-25 00:32:42 +0000261 State = State->remove<AllocatedData>(AP.first);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000262 ExplodedNode *N = C.addTransition(State);
Anna Zaksdd6060e2011-08-23 23:47:36 +0000263
264 if (!N)
265 return;
266 initBugType();
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000267 SmallString<80> sbuf;
Anna Zaksdd6060e2011-08-23 23:47:36 +0000268 llvm::raw_svector_ostream os(sbuf);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000269 unsigned int PDeallocIdx =
270 FunctionsToTrack[AP.second->AllocatorIdx].DeallocatorIdx;
Anna Zaksdd6060e2011-08-23 23:47:36 +0000271
272 os << "Deallocator doesn't match the allocator: '"
273 << FunctionsToTrack[PDeallocIdx].Name << "' should be used.";
274 BugReport *Report = new BugReport(*BT, os.str(), N);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000275 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
Anna Zaksdd6060e2011-08-23 23:47:36 +0000276 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000277 markInteresting(Report, AP);
Jordan Rose785950e2012-11-02 01:53:40 +0000278 C.emitReport(Report);
Anna Zaksdd6060e2011-08-23 23:47:36 +0000279}
280
Anna Zaksf57be282011-08-01 22:40:01 +0000281void MacOSKeychainAPIChecker::checkPreStmt(const CallExpr *CE,
282 CheckerContext &C) const {
Anna Zaksca0b57e2011-08-05 00:37:00 +0000283 unsigned idx = InvalidIdx;
Ted Kremenek8bef8232012-01-26 21:29:00 +0000284 ProgramStateRef State = C.getState();
Anna Zaksf57be282011-08-01 22:40:01 +0000285
Jordan Rose5ef6e942012-07-10 23:13:01 +0000286 const FunctionDecl *FD = C.getCalleeDecl(CE);
287 if (!FD || FD->getKind() != Decl::Function)
288 return;
289
290 StringRef funName = C.getCalleeName(FD);
Anna Zaksb805c8f2011-12-01 05:57:37 +0000291 if (funName.empty())
Anna Zaksf57be282011-08-01 22:40:01 +0000292 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000293
Anna Zaksca0b57e2011-08-05 00:37:00 +0000294 // If it is a call to an allocator function, it could be a double allocation.
295 idx = getTrackedFunctionIndex(funName, true);
296 if (idx != InvalidIdx) {
297 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks864d2522011-08-12 21:14:26 +0000298 if (SymbolRef V = getAsPointeeSymbol(ArgExpr, C))
Anna Zaksca0b57e2011-08-05 00:37:00 +0000299 if (const AllocationState *AS = State->get<AllocatedData>(V)) {
Anna Zakseacd2b42011-08-25 00:59:06 +0000300 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder())) {
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000301 // Remove the value from the state. The new symbol will be added for
302 // tracking when the second allocator is processed in checkPostStmt().
303 State = State->remove<AllocatedData>(V);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000304 ExplodedNode *N = C.addTransition(State);
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000305 if (!N)
306 return;
307 initBugType();
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000308 SmallString<128> sbuf;
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000309 llvm::raw_svector_ostream os(sbuf);
310 unsigned int DIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
311 os << "Allocated data should be released before another call to "
312 << "the allocator: missing a call to '"
313 << FunctionsToTrack[DIdx].Name
314 << "'.";
Anna Zakse172e8b2011-08-17 23:00:25 +0000315 BugReport *Report = new BugReport(*BT, os.str(), N);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000316 Report->addVisitor(new SecKeychainBugVisitor(V));
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000317 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000318 Report->markInteresting(AS->Region);
Jordan Rose785950e2012-11-02 01:53:40 +0000319 C.emitReport(Report);
Anna Zaksf0c7fe52011-08-16 16:30:24 +0000320 }
Anna Zaksca0b57e2011-08-05 00:37:00 +0000321 }
322 return;
323 }
324
325 // Is it a call to one of deallocator functions?
326 idx = getTrackedFunctionIndex(funName, false);
Anna Zaks083fcb22011-08-04 17:28:06 +0000327 if (idx == InvalidIdx)
Anna Zaks08551b52011-08-04 00:31:38 +0000328 return;
329
Anna Zaks864d2522011-08-12 21:14:26 +0000330 // Check the argument to the deallocator.
Anna Zaks083fcb22011-08-04 17:28:06 +0000331 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Ted Kremenek5eca4822012-01-06 22:09:28 +0000332 SVal ArgSVal = State->getSVal(ArgExpr, C.getLocationContext());
Anna Zaks864d2522011-08-12 21:14:26 +0000333
334 // Undef is reported by another checker.
335 if (ArgSVal.isUndef())
336 return;
337
Jordy Rose3e678142012-03-11 00:08:24 +0000338 SymbolRef ArgSM = ArgSVal.getAsLocSymbol();
Anna Zaks864d2522011-08-12 21:14:26 +0000339
Anna Zaks864d2522011-08-12 21:14:26 +0000340 // If the argument is coming from the heap, globals, or unknown, do not
341 // report it.
Jordy Rose3e678142012-03-11 00:08:24 +0000342 bool RegionArgIsBad = false;
343 if (!ArgSM) {
344 if (!isBadDeallocationArgument(ArgSVal.getAsRegion()))
345 return;
346 RegionArgIsBad = true;
347 }
Anna Zaks08551b52011-08-04 00:31:38 +0000348
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000349 // Is the argument to the call being tracked?
350 const AllocationState *AS = State->get<AllocatedData>(ArgSM);
351 if (!AS && FunctionsToTrack[idx].Kind != ValidAPI) {
352 return;
353 }
Anna Zaks67f7fa42011-08-15 18:42:00 +0000354 // If trying to free data which has not been allocated yet, report as a bug.
Anna Zaks7d458b02011-08-15 23:23:15 +0000355 // TODO: We might want a more precise diagnostic for double free
356 // (that would involve tracking all the freed symbols in the checker state).
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000357 if (!AS || RegionArgIsBad) {
Anna Zaks08551b52011-08-04 00:31:38 +0000358 // It is possible that this is a false positive - the argument might
359 // have entered as an enclosing function parameter.
360 if (isEnclosingFunctionParam(ArgExpr))
Anna Zaksf57be282011-08-01 22:40:01 +0000361 return;
Anna Zaks03826aa2011-08-04 00:26:57 +0000362
Anna Zaks0bd6b112011-10-26 21:06:34 +0000363 ExplodedNode *N = C.addTransition(State);
Anna Zaks08551b52011-08-04 00:31:38 +0000364 if (!N)
365 return;
366 initBugType();
Anna Zakse172e8b2011-08-17 23:00:25 +0000367 BugReport *Report = new BugReport(*BT,
Anna Zaks08551b52011-08-04 00:31:38 +0000368 "Trying to free data which has not been allocated.", N);
369 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000370 if (AS)
371 Report->markInteresting(AS->Region);
Jordan Rose785950e2012-11-02 01:53:40 +0000372 C.emitReport(Report);
Anna Zaks083fcb22011-08-04 17:28:06 +0000373 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000374 }
Anna Zaks08551b52011-08-04 00:31:38 +0000375
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000376 // Process functions which might deallocate.
377 if (FunctionsToTrack[idx].Kind == PossibleAPI) {
378
379 if (funName == "CFStringCreateWithBytesNoCopy") {
380 const Expr *DeallocatorExpr = CE->getArg(5)->IgnoreParenCasts();
381 // NULL ~ default deallocator, so warn.
382 if (DeallocatorExpr->isNullPointerConstant(C.getASTContext(),
383 Expr::NPC_ValueDependentIsNotNull)) {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000384 const AllocationPair AP = std::make_pair(ArgSM, AS);
385 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000386 return;
387 }
388 // One of the default allocators, so warn.
389 if (const DeclRefExpr *DE = dyn_cast<DeclRefExpr>(DeallocatorExpr)) {
390 StringRef DeallocatorName = DE->getFoundDecl()->getName();
391 if (DeallocatorName == "kCFAllocatorDefault" ||
392 DeallocatorName == "kCFAllocatorSystemDefault" ||
393 DeallocatorName == "kCFAllocatorMalloc") {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000394 const AllocationPair AP = std::make_pair(ArgSM, AS);
395 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000396 return;
397 }
398 // If kCFAllocatorNull, which does not deallocate, we still have to
399 // find the deallocator. Otherwise, assume that the user had written a
400 // custom deallocator which does the right thing.
401 if (DE->getFoundDecl()->getName() != "kCFAllocatorNull") {
402 State = State->remove<AllocatedData>(ArgSM);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000403 C.addTransition(State);
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000404 return;
405 }
406 }
407 }
408 return;
409 }
410
Anna Zaks7d458b02011-08-15 23:23:15 +0000411 // The call is deallocating a value we previously allocated, so remove it
412 // from the next state.
413 State = State->remove<AllocatedData>(ArgSM);
414
Anna Zaksdd6060e2011-08-23 23:47:36 +0000415 // Check if the proper deallocator is used.
Anna Zaks76cbb752011-08-04 21:53:01 +0000416 unsigned int PDeallocIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
Anna Zaks6cf0ed02011-08-24 00:06:27 +0000417 if (PDeallocIdx != idx || (FunctionsToTrack[idx].Kind == ErrorAPI)) {
Anna Zaks6b7aad92011-08-25 00:32:42 +0000418 const AllocationPair AP = std::make_pair(ArgSM, AS);
419 generateDeallocatorMismatchReport(AP, ArgExpr, C);
Anna Zaks76cbb752011-08-04 21:53:01 +0000420 return;
421 }
422
Anna Zaksee5a21f2011-12-01 16:41:58 +0000423 // If the buffer can be null and the return status can be an error,
424 // report a bad call to free.
425 if (State->assume(cast<DefinedSVal>(ArgSVal), false) &&
426 !definitelyDidnotReturnError(AS->Region, State, C.getSValBuilder())) {
Anna Zaks0bd6b112011-10-26 21:06:34 +0000427 ExplodedNode *N = C.addTransition(State);
Anna Zaks703ffb12011-08-12 21:56:43 +0000428 if (!N)
429 return;
430 initBugType();
Anna Zakse172e8b2011-08-17 23:00:25 +0000431 BugReport *Report = new BugReport(*BT,
Anna Zaksee5a21f2011-12-01 16:41:58 +0000432 "Only call free if a valid (non-NULL) buffer was returned.", N);
Anna Zaks6b7aad92011-08-25 00:32:42 +0000433 Report->addVisitor(new SecKeychainBugVisitor(ArgSM));
Anna Zaks703ffb12011-08-12 21:56:43 +0000434 Report->addRange(ArgExpr->getSourceRange());
Ted Kremenek76aadc32012-03-09 01:13:14 +0000435 Report->markInteresting(AS->Region);
Jordan Rose785950e2012-11-02 01:53:40 +0000436 C.emitReport(Report);
Anna Zaks703ffb12011-08-12 21:56:43 +0000437 return;
438 }
439
Anna Zaks0bd6b112011-10-26 21:06:34 +0000440 C.addTransition(State);
Anna Zaksf57be282011-08-01 22:40:01 +0000441}
442
443void MacOSKeychainAPIChecker::checkPostStmt(const CallExpr *CE,
444 CheckerContext &C) const {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000445 ProgramStateRef State = C.getState();
Jordan Rose5ef6e942012-07-10 23:13:01 +0000446 const FunctionDecl *FD = C.getCalleeDecl(CE);
447 if (!FD || FD->getKind() != Decl::Function)
448 return;
449
450 StringRef funName = C.getCalleeName(FD);
Anna Zaksf57be282011-08-01 22:40:01 +0000451
452 // If a value has been allocated, add it to the set for tracking.
Anna Zaks083fcb22011-08-04 17:28:06 +0000453 unsigned idx = getTrackedFunctionIndex(funName, true);
454 if (idx == InvalidIdx)
Anna Zaks08551b52011-08-04 00:31:38 +0000455 return;
Anna Zaks03826aa2011-08-04 00:26:57 +0000456
Anna Zaks083fcb22011-08-04 17:28:06 +0000457 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
Anna Zaks79c9c752011-08-12 22:47:22 +0000458 // If the argument entered as an enclosing function parameter, skip it to
459 // avoid false positives.
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000460 if (isEnclosingFunctionParam(ArgExpr) &&
461 C.getLocationContext()->getParent() == 0)
Anna Zaks79c9c752011-08-12 22:47:22 +0000462 return;
463
Anna Zaks864d2522011-08-12 21:14:26 +0000464 if (SymbolRef V = getAsPointeeSymbol(ArgExpr, C)) {
465 // If the argument points to something that's not a symbolic region, it
466 // can be:
Anna Zaks08551b52011-08-04 00:31:38 +0000467 // - unknown (cannot reason about it)
468 // - undefined (already reported by other checker)
Anna Zaks083fcb22011-08-04 17:28:06 +0000469 // - constant (null - should not be tracked,
470 // other constant will generate a compiler warning)
Anna Zaks08551b52011-08-04 00:31:38 +0000471 // - goto (should be reported by other checker)
Anna Zaks703ffb12011-08-12 21:56:43 +0000472
473 // The call return value symbol should stay alive for as long as the
474 // allocated value symbol, since our diagnostics depend on the value
475 // returned by the call. Ex: Data should only be freed if noErr was
476 // returned during allocation.)
Ted Kremenek5eca4822012-01-06 22:09:28 +0000477 SymbolRef RetStatusSymbol =
478 State->getSVal(CE, C.getLocationContext()).getAsSymbol();
Anna Zaks703ffb12011-08-12 21:56:43 +0000479 C.getSymbolManager().addSymbolDependency(V, RetStatusSymbol);
480
481 // Track the allocated value in the checker state.
482 State = State->set<AllocatedData>(V, AllocationState(ArgExpr, idx,
Anna Zaks864d2522011-08-12 21:14:26 +0000483 RetStatusSymbol));
Anna Zaks703ffb12011-08-12 21:56:43 +0000484 assert(State);
Anna Zaks0bd6b112011-10-26 21:06:34 +0000485 C.addTransition(State);
Anna Zaksf57be282011-08-01 22:40:01 +0000486 }
487}
488
489void MacOSKeychainAPIChecker::checkPreStmt(const ReturnStmt *S,
490 CheckerContext &C) const {
491 const Expr *retExpr = S->getRetValue();
492 if (!retExpr)
493 return;
494
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000495 // If inside inlined call, skip it.
Jordy Rose3e678142012-03-11 00:08:24 +0000496 const LocationContext *LC = C.getLocationContext();
497 if (LC->getParent() != 0)
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000498 return;
499
Anna Zaksf57be282011-08-01 22:40:01 +0000500 // Check if the value is escaping through the return.
Ted Kremenek8bef8232012-01-26 21:29:00 +0000501 ProgramStateRef state = C.getState();
Jordy Rose3e678142012-03-11 00:08:24 +0000502 SymbolRef sym = state->getSVal(retExpr, LC).getAsLocSymbol();
503 if (!sym)
Anna Zaksf57be282011-08-01 22:40:01 +0000504 return;
Jordy Rose3e678142012-03-11 00:08:24 +0000505 state = state->remove<AllocatedData>(sym);
Anna Zaksf57be282011-08-01 22:40:01 +0000506
Anna Zaks03826aa2011-08-04 00:26:57 +0000507 // Proceed from the new state.
Anna Zaks0bd6b112011-10-26 21:06:34 +0000508 C.addTransition(state);
Anna Zaksf57be282011-08-01 22:40:01 +0000509}
510
Anna Zaks721aa372012-02-28 03:07:06 +0000511// TODO: This logic is the same as in Malloc checker.
Anna Zaksd708bac2012-02-23 22:53:29 +0000512const Stmt *
513MacOSKeychainAPIChecker::getAllocationSite(const ExplodedNode *N,
514 SymbolRef Sym,
515 CheckerContext &C) const {
Anna Zaks721aa372012-02-28 03:07:06 +0000516 const LocationContext *LeakContext = N->getLocationContext();
Anna Zaksd708bac2012-02-23 22:53:29 +0000517 // Walk the ExplodedGraph backwards and find the first node that referred to
518 // the tracked symbol.
519 const ExplodedNode *AllocNode = N;
520
521 while (N) {
522 if (!N->getState()->get<AllocatedData>(Sym))
523 break;
Anna Zaks721aa372012-02-28 03:07:06 +0000524 // Allocation node, is the last node in the current context in which the
525 // symbol was tracked.
526 if (N->getLocationContext() == LeakContext)
527 AllocNode = N;
Anna Zaksd708bac2012-02-23 22:53:29 +0000528 N = N->pred_empty() ? NULL : *(N->pred_begin());
529 }
530
531 ProgramPoint P = AllocNode->getLocation();
Jordan Rose852aa0d2012-07-10 22:07:52 +0000532 if (CallExitEnd *Exit = dyn_cast<CallExitEnd>(&P))
533 return Exit->getCalleeContext()->getCallSite();
534 if (clang::PostStmt *PS = dyn_cast<clang::PostStmt>(&P))
535 return PS->getStmt();
536 return 0;
Anna Zaksd708bac2012-02-23 22:53:29 +0000537}
538
Anna Zakse172e8b2011-08-17 23:00:25 +0000539BugReport *MacOSKeychainAPIChecker::
Anna Zaks98401112011-08-24 20:52:46 +0000540 generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
Anna Zaksd708bac2012-02-23 22:53:29 +0000541 ExplodedNode *N,
542 CheckerContext &C) const {
Anna Zaks5eb7d822011-08-24 21:58:55 +0000543 const ADFunctionInfo &FI = FunctionsToTrack[AP.second->AllocatorIdx];
Anna Zaks703ffb12011-08-12 21:56:43 +0000544 initBugType();
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000545 SmallString<70> sbuf;
Anna Zaks67f7fa42011-08-15 18:42:00 +0000546 llvm::raw_svector_ostream os(sbuf);
Anna Zaks703ffb12011-08-12 21:56:43 +0000547 os << "Allocated data is not released: missing a call to '"
548 << FunctionsToTrack[FI.DeallocatorIdx].Name << "'.";
Anna Zaksd708bac2012-02-23 22:53:29 +0000549
550 // Most bug reports are cached at the location where they occurred.
551 // With leaks, we want to unique them by the location where they were
552 // allocated, and only report a single path.
Anna Zaks721aa372012-02-28 03:07:06 +0000553 PathDiagnosticLocation LocUsedForUniqueing;
554 if (const Stmt *AllocStmt = getAllocationSite(N, AP.first, C))
555 LocUsedForUniqueing = PathDiagnosticLocation::createBegin(AllocStmt,
556 C.getSourceManager(), N->getLocationContext());
Anna Zaksd708bac2012-02-23 22:53:29 +0000557
558 BugReport *Report = new BugReport(*BT, os.str(), N, LocUsedForUniqueing);
Anna Zaks98401112011-08-24 20:52:46 +0000559 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
Ted Kremenek76aadc32012-03-09 01:13:14 +0000560 markInteresting(Report, AP);
Anna Zaks703ffb12011-08-12 21:56:43 +0000561 return Report;
562}
563
564void MacOSKeychainAPIChecker::checkDeadSymbols(SymbolReaper &SR,
565 CheckerContext &C) const {
Ted Kremenek8bef8232012-01-26 21:29:00 +0000566 ProgramStateRef State = C.getState();
Jordan Rose166d5022012-11-02 01:54:06 +0000567 AllocatedDataTy ASet = State->get<AllocatedData>();
Anna Zaks703ffb12011-08-12 21:56:43 +0000568 if (ASet.isEmpty())
569 return;
570
571 bool Changed = false;
Anna Zaks98401112011-08-24 20:52:46 +0000572 AllocationPairVec Errors;
Jordan Rose166d5022012-11-02 01:54:06 +0000573 for (AllocatedDataTy::iterator I = ASet.begin(), E = ASet.end(); I != E; ++I) {
Anna Zaks703ffb12011-08-12 21:56:43 +0000574 if (SR.isLive(I->first))
575 continue;
576
577 Changed = true;
578 State = State->remove<AllocatedData>(I->first);
579 // If the allocated symbol is null or if the allocation call might have
580 // returned an error, do not report.
Jordan Roseec8d4202012-11-01 00:18:27 +0000581 ConstraintManager &CMgr = State->getConstraintManager();
582 ConditionTruthVal AllocFailed = CMgr.isNull(State, I.getKey());
583 if (AllocFailed.isConstrainedTrue() ||
Anna Zakseacd2b42011-08-25 00:59:06 +0000584 definitelyReturnedError(I->second.Region, State, C.getSValBuilder()))
Anna Zaks703ffb12011-08-12 21:56:43 +0000585 continue;
Anna Zaks5eb7d822011-08-24 21:58:55 +0000586 Errors.push_back(std::make_pair(I->first, &I->second));
Anna Zaks703ffb12011-08-12 21:56:43 +0000587 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000588 if (!Changed) {
589 // Generate the new, cleaned up state.
590 C.addTransition(State);
Anna Zaks703ffb12011-08-12 21:56:43 +0000591 return;
Anna Zaksd708bac2012-02-23 22:53:29 +0000592 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000593
Anna Zaksd708bac2012-02-23 22:53:29 +0000594 static SimpleProgramPointTag Tag("MacOSKeychainAPIChecker : DeadSymbolsLeak");
595 ExplodedNode *N = C.addTransition(C.getState(), C.getPredecessor(), &Tag);
Anna Zaks703ffb12011-08-12 21:56:43 +0000596
597 // Generate the error reports.
Anna Zaks98401112011-08-24 20:52:46 +0000598 for (AllocationPairVec::iterator I = Errors.begin(), E = Errors.end();
599 I != E; ++I) {
Jordan Rose785950e2012-11-02 01:53:40 +0000600 C.emitReport(generateAllocatedDataNotReleasedReport(*I, N, C));
Anna Zaks703ffb12011-08-12 21:56:43 +0000601 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000602
603 // Generate the new, cleaned up state.
604 C.addTransition(State, N);
Anna Zaks703ffb12011-08-12 21:56:43 +0000605}
606
607// TODO: Remove this after we ensure that checkDeadSymbols are always called.
Anna Zaksd708bac2012-02-23 22:53:29 +0000608void MacOSKeychainAPIChecker::checkEndPath(CheckerContext &C) const {
609 ProgramStateRef state = C.getState();
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000610
611 // If inside inlined call, skip it.
Anna Zaksd708bac2012-02-23 22:53:29 +0000612 if (C.getLocationContext()->getParent() != 0)
Anna Zaks9c1e1bd2012-02-21 00:00:44 +0000613 return;
614
Jordan Rose166d5022012-11-02 01:54:06 +0000615 AllocatedDataTy AS = state->get<AllocatedData>();
Anna Zaks703ffb12011-08-12 21:56:43 +0000616 if (AS.isEmpty())
Anna Zaks03826aa2011-08-04 00:26:57 +0000617 return;
Anna Zaksf57be282011-08-01 22:40:01 +0000618
619 // Anything which has been allocated but not freed (nor escaped) will be
620 // found here, so report it.
Anna Zaks703ffb12011-08-12 21:56:43 +0000621 bool Changed = false;
Anna Zaks98401112011-08-24 20:52:46 +0000622 AllocationPairVec Errors;
Jordan Rose166d5022012-11-02 01:54:06 +0000623 for (AllocatedDataTy::iterator I = AS.begin(), E = AS.end(); I != E; ++I ) {
Anna Zaks703ffb12011-08-12 21:56:43 +0000624 Changed = true;
625 state = state->remove<AllocatedData>(I->first);
626 // If the allocated symbol is null or if error code was returned at
627 // allocation, do not report.
Jordan Roseec8d4202012-11-01 00:18:27 +0000628 ConstraintManager &CMgr = state->getConstraintManager();
629 ConditionTruthVal AllocFailed = CMgr.isNull(state, I.getKey());
630 if (AllocFailed.isConstrainedTrue() ||
Anna Zakseacd2b42011-08-25 00:59:06 +0000631 definitelyReturnedError(I->second.Region, state,
Anna Zaksd708bac2012-02-23 22:53:29 +0000632 C.getSValBuilder())) {
Anna Zaks703ffb12011-08-12 21:56:43 +0000633 continue;
634 }
Anna Zaks5eb7d822011-08-24 21:58:55 +0000635 Errors.push_back(std::make_pair(I->first, &I->second));
Anna Zaksf57be282011-08-01 22:40:01 +0000636 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000637
638 // If no change, do not generate a new state.
Anna Zaksd708bac2012-02-23 22:53:29 +0000639 if (!Changed) {
640 C.addTransition(state);
Anna Zaks703ffb12011-08-12 21:56:43 +0000641 return;
Anna Zaksd708bac2012-02-23 22:53:29 +0000642 }
Anna Zaks703ffb12011-08-12 21:56:43 +0000643
Anna Zaksd708bac2012-02-23 22:53:29 +0000644 static SimpleProgramPointTag Tag("MacOSKeychainAPIChecker : EndPathLeak");
645 ExplodedNode *N = C.addTransition(C.getState(), C.getPredecessor(), &Tag);
Anna Zaks703ffb12011-08-12 21:56:43 +0000646
647 // Generate the error reports.
Anna Zaks98401112011-08-24 20:52:46 +0000648 for (AllocationPairVec::iterator I = Errors.begin(), E = Errors.end();
649 I != E; ++I) {
Jordan Rose785950e2012-11-02 01:53:40 +0000650 C.emitReport(generateAllocatedDataNotReleasedReport(*I, N, C));
Anna Zaks703ffb12011-08-12 21:56:43 +0000651 }
Anna Zaksd708bac2012-02-23 22:53:29 +0000652
653 C.addTransition(state, N);
Anna Zaks98401112011-08-24 20:52:46 +0000654}
Anna Zaks703ffb12011-08-12 21:56:43 +0000655
Anna Zaks98401112011-08-24 20:52:46 +0000656
657PathDiagnosticPiece *MacOSKeychainAPIChecker::SecKeychainBugVisitor::VisitNode(
658 const ExplodedNode *N,
659 const ExplodedNode *PrevN,
660 BugReporterContext &BRC,
661 BugReport &BR) {
662 const AllocationState *AS = N->getState()->get<AllocatedData>(Sym);
663 if (!AS)
664 return 0;
665 const AllocationState *ASPrev = PrevN->getState()->get<AllocatedData>(Sym);
666 if (ASPrev)
667 return 0;
668
669 // (!ASPrev && AS) ~ We started tracking symbol in node N, it must be the
670 // allocation site.
671 const CallExpr *CE = cast<CallExpr>(cast<StmtPoint>(N->getLocation())
672 .getStmt());
673 const FunctionDecl *funDecl = CE->getDirectCallee();
674 assert(funDecl && "We do not support indirect function calls as of now.");
675 StringRef funName = funDecl->getName();
676
677 // Get the expression of the corresponding argument.
678 unsigned Idx = getTrackedFunctionIndex(funName, true);
679 assert(Idx != InvalidIdx && "This should be a call to an allocator.");
680 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[Idx].Param);
Anna Zaks220ac8c2011-09-15 01:08:34 +0000681 PathDiagnosticLocation Pos(ArgExpr, BRC.getSourceManager(),
682 N->getLocationContext());
Anna Zaks98401112011-08-24 20:52:46 +0000683 return new PathDiagnosticEventPiece(Pos, "Data is allocated here.");
Anna Zaksf57be282011-08-01 22:40:01 +0000684}
685
686void ento::registerMacOSKeychainAPIChecker(CheckerManager &mgr) {
687 mgr.registerChecker<MacOSKeychainAPIChecker>();
688}