2009-11-12 16:38:56 +08:00
|
|
|
//=== MallocChecker.cpp - A malloc/free checker -------------------*- C++ -*--//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines malloc/free checker, which checks for potential memory
|
|
|
|
// leaks, double free, and use-after-free problems.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-02-28 09:26:35 +08:00
|
|
|
#include "ClangSACheckers.h"
|
2012-02-18 06:35:31 +08:00
|
|
|
#include "InterCheckerAPI.h"
|
2011-03-01 09:16:21 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/Checker.h"
|
2011-02-28 09:26:35 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
2011-02-10 09:03:03 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
2012-02-15 05:55:24 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h"
|
2011-08-16 06:09:50 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
|
2011-02-10 09:03:03 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h"
|
2012-02-12 07:46:36 +08:00
|
|
|
#include "clang/Basic/SourceManager.h"
|
2009-11-12 16:38:56 +08:00
|
|
|
#include "llvm/ADT/ImmutableMap.h"
|
2012-02-04 21:45:25 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2012-02-04 20:31:12 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2012-02-22 11:14:20 +08:00
|
|
|
#include <climits>
|
|
|
|
|
2009-11-12 16:38:56 +08:00
|
|
|
using namespace clang;
|
2010-12-23 15:20:52 +08:00
|
|
|
using namespace ento;
|
2009-11-12 16:38:56 +08:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2009-12-11 08:55:44 +08:00
|
|
|
class RefState {
|
2010-08-07 05:12:55 +08:00
|
|
|
enum Kind { AllocateUnchecked, AllocateFailed, Released, Escaped,
|
|
|
|
Relinquished } K;
|
2009-11-17 15:54:15 +08:00
|
|
|
const Stmt *S;
|
|
|
|
|
2009-12-11 08:55:44 +08:00
|
|
|
public:
|
2009-11-17 15:54:15 +08:00
|
|
|
RefState(Kind k, const Stmt *s) : K(k), S(s) {}
|
|
|
|
|
2009-12-31 14:13:07 +08:00
|
|
|
bool isAllocated() const { return K == AllocateUnchecked; }
|
2009-11-17 15:54:15 +08:00
|
|
|
bool isReleased() const { return K == Released; }
|
2012-03-01 02:42:47 +08:00
|
|
|
|
2012-02-14 02:05:39 +08:00
|
|
|
const Stmt *getStmt() const { return S; }
|
2009-11-17 15:54:15 +08:00
|
|
|
|
|
|
|
bool operator==(const RefState &X) const {
|
|
|
|
return K == X.K && S == X.S;
|
|
|
|
}
|
|
|
|
|
2009-12-31 14:13:07 +08:00
|
|
|
static RefState getAllocateUnchecked(const Stmt *s) {
|
|
|
|
return RefState(AllocateUnchecked, s);
|
|
|
|
}
|
|
|
|
static RefState getAllocateFailed() {
|
|
|
|
return RefState(AllocateFailed, 0);
|
|
|
|
}
|
2009-11-17 15:54:15 +08:00
|
|
|
static RefState getReleased(const Stmt *s) { return RefState(Released, s); }
|
|
|
|
static RefState getEscaped(const Stmt *s) { return RefState(Escaped, s); }
|
2010-08-07 05:12:55 +08:00
|
|
|
static RefState getRelinquished(const Stmt *s) {
|
|
|
|
return RefState(Relinquished, s);
|
|
|
|
}
|
2009-11-17 15:54:15 +08:00
|
|
|
|
|
|
|
void Profile(llvm::FoldingSetNodeID &ID) const {
|
|
|
|
ID.AddInteger(K);
|
|
|
|
ID.AddPointer(S);
|
|
|
|
}
|
2009-11-12 16:38:56 +08:00
|
|
|
};
|
|
|
|
|
2012-02-15 08:11:25 +08:00
|
|
|
struct ReallocPair {
|
|
|
|
SymbolRef ReallocatedSym;
|
|
|
|
bool IsFreeOnFailure;
|
|
|
|
ReallocPair(SymbolRef S, bool F) : ReallocatedSym(S), IsFreeOnFailure(F) {}
|
|
|
|
void Profile(llvm::FoldingSetNodeID &ID) const {
|
|
|
|
ID.AddInteger(IsFreeOnFailure);
|
|
|
|
ID.AddPointer(ReallocatedSym);
|
|
|
|
}
|
|
|
|
bool operator==(const ReallocPair &X) const {
|
|
|
|
return ReallocatedSym == X.ReallocatedSym &&
|
|
|
|
IsFreeOnFailure == X.IsFreeOnFailure;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-02-09 04:13:28 +08:00
|
|
|
class MallocChecker : public Checker<check::DeadSymbols,
|
2012-01-05 07:48:37 +08:00
|
|
|
check::EndPath,
|
|
|
|
check::PreStmt<ReturnStmt>,
|
2012-02-15 05:55:24 +08:00
|
|
|
check::PreStmt<CallExpr>,
|
2012-02-09 04:13:28 +08:00
|
|
|
check::PostStmt<CallExpr>,
|
2012-01-05 07:48:37 +08:00
|
|
|
check::Location,
|
|
|
|
check::Bind,
|
2012-02-12 05:02:35 +08:00
|
|
|
eval::Assume,
|
|
|
|
check::RegionChanges>
|
2012-01-05 07:48:37 +08:00
|
|
|
{
|
2012-02-17 06:26:12 +08:00
|
|
|
mutable OwningPtr<BugType> BT_DoubleFree;
|
|
|
|
mutable OwningPtr<BugType> BT_Leak;
|
|
|
|
mutable OwningPtr<BugType> BT_UseFree;
|
|
|
|
mutable OwningPtr<BugType> BT_BadFree;
|
2012-02-15 08:11:22 +08:00
|
|
|
mutable IdentifierInfo *II_malloc, *II_free, *II_realloc, *II_calloc,
|
2012-02-22 11:14:20 +08:00
|
|
|
*II_valloc, *II_reallocf, *II_strndup, *II_strdup;
|
|
|
|
|
|
|
|
static const unsigned InvalidArgIndex = UINT_MAX;
|
2009-11-12 16:38:56 +08:00
|
|
|
|
|
|
|
public:
|
2012-02-15 08:11:22 +08:00
|
|
|
MallocChecker() : II_malloc(0), II_free(0), II_realloc(0), II_calloc(0),
|
2012-02-22 11:14:20 +08:00
|
|
|
II_valloc(0), II_reallocf(0), II_strndup(0), II_strdup(0) {}
|
2012-02-09 07:16:52 +08:00
|
|
|
|
|
|
|
/// In pessimistic mode, the checker assumes that it does not know which
|
|
|
|
/// functions might free the memory.
|
|
|
|
struct ChecksFilter {
|
|
|
|
DefaultBool CMallocPessimistic;
|
|
|
|
DefaultBool CMallocOptimistic;
|
|
|
|
};
|
|
|
|
|
|
|
|
ChecksFilter Filter;
|
|
|
|
|
2012-02-15 05:55:24 +08:00
|
|
|
void checkPreStmt(const CallExpr *S, CheckerContext &C) const;
|
2012-02-09 04:13:28 +08:00
|
|
|
void checkPostStmt(const CallExpr *CE, CheckerContext &C) const;
|
2011-02-28 09:26:35 +08:00
|
|
|
void checkDeadSymbols(SymbolReaper &SymReaper, CheckerContext &C) const;
|
2011-10-26 03:56:48 +08:00
|
|
|
void checkEndPath(CheckerContext &C) const;
|
2011-02-28 09:26:35 +08:00
|
|
|
void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef evalAssume(ProgramStateRef state, SVal Cond,
|
2011-02-28 09:26:35 +08:00
|
|
|
bool Assumption) const;
|
2011-10-06 08:43:15 +08:00
|
|
|
void checkLocation(SVal l, bool isLoad, const Stmt *S,
|
|
|
|
CheckerContext &C) const;
|
|
|
|
void checkBind(SVal location, SVal val, const Stmt*S,
|
|
|
|
CheckerContext &C) const;
|
2012-02-12 05:02:35 +08:00
|
|
|
ProgramStateRef
|
|
|
|
checkRegionChanges(ProgramStateRef state,
|
|
|
|
const StoreManager::InvalidatedSymbols *invalidated,
|
|
|
|
ArrayRef<const MemRegion *> ExplicitRegions,
|
2012-02-15 05:55:24 +08:00
|
|
|
ArrayRef<const MemRegion *> Regions,
|
|
|
|
const CallOrObjCMessage *Call) const;
|
2012-02-12 05:02:35 +08:00
|
|
|
bool wantsRegionChangeUpdate(ProgramStateRef state) const {
|
|
|
|
return true;
|
|
|
|
}
|
2009-12-31 14:13:07 +08:00
|
|
|
|
2009-11-13 15:25:27 +08:00
|
|
|
private:
|
2012-02-15 05:55:24 +08:00
|
|
|
void initIdentifierInfo(ASTContext &C) const;
|
|
|
|
|
|
|
|
/// Check if this is one of the functions which can allocate/reallocate memory
|
|
|
|
/// pointed to by one of its arguments.
|
|
|
|
bool isMemFunction(const FunctionDecl *FD, ASTContext &C) const;
|
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
static ProgramStateRef MallocMemReturnsAttr(CheckerContext &C,
|
|
|
|
const CallExpr *CE,
|
|
|
|
const OwnershipAttr* Att);
|
2012-01-27 05:29:00 +08:00
|
|
|
static ProgramStateRef MallocMemAux(CheckerContext &C, const CallExpr *CE,
|
2011-02-28 09:26:35 +08:00
|
|
|
const Expr *SizeEx, SVal Init,
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state) {
|
2012-01-07 06:09:28 +08:00
|
|
|
return MallocMemAux(C, CE,
|
|
|
|
state->getSVal(SizeEx, C.getLocationContext()),
|
|
|
|
Init, state);
|
2010-06-01 11:01:33 +08:00
|
|
|
}
|
2012-02-23 03:24:52 +08:00
|
|
|
|
2012-01-27 05:29:00 +08:00
|
|
|
static ProgramStateRef MallocMemAux(CheckerContext &C, const CallExpr *CE,
|
2011-02-28 09:26:35 +08:00
|
|
|
SVal SizeEx, SVal Init,
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state);
|
2010-06-01 11:01:33 +08:00
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
/// Update the RefState to reflect the new memory allocation.
|
|
|
|
static ProgramStateRef MallocUpdateRefState(CheckerContext &C,
|
|
|
|
const CallExpr *CE,
|
|
|
|
ProgramStateRef state);
|
|
|
|
|
|
|
|
ProgramStateRef FreeMemAttr(CheckerContext &C, const CallExpr *CE,
|
|
|
|
const OwnershipAttr* Att) const;
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef FreeMemAux(CheckerContext &C, const CallExpr *CE,
|
|
|
|
ProgramStateRef state, unsigned Num,
|
2012-01-05 07:48:37 +08:00
|
|
|
bool Hold) const;
|
2009-12-12 20:29:38 +08:00
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
ProgramStateRef ReallocMem(CheckerContext &C, const CallExpr *CE,
|
|
|
|
bool FreesMemOnFailure) const;
|
|
|
|
static ProgramStateRef CallocMem(CheckerContext &C, const CallExpr *CE);
|
2010-06-08 03:32:37 +08:00
|
|
|
|
2012-02-09 07:16:56 +08:00
|
|
|
bool checkEscape(SymbolRef Sym, const Stmt *S, CheckerContext &C) const;
|
|
|
|
bool checkUseAfterFree(SymbolRef Sym, CheckerContext &C,
|
|
|
|
const Stmt *S = 0) const;
|
|
|
|
|
2012-02-15 05:55:24 +08:00
|
|
|
/// Check if the function is not known to us. So, for example, we could
|
|
|
|
/// conservatively assume it can free/reallocate it's pointer arguments.
|
2012-02-25 07:56:53 +08:00
|
|
|
bool doesNotFreeMemory(const CallOrObjCMessage *Call,
|
|
|
|
ProgramStateRef State) const;
|
2012-02-15 05:55:24 +08:00
|
|
|
|
2011-08-13 07:37:29 +08:00
|
|
|
static bool SummarizeValue(raw_ostream &os, SVal V);
|
|
|
|
static bool SummarizeRegion(raw_ostream &os, const MemRegion *MR);
|
2011-02-28 09:26:35 +08:00
|
|
|
void ReportBadFree(CheckerContext &C, SVal ArgVal, SourceRange range) const;
|
2012-02-09 14:25:51 +08:00
|
|
|
|
2012-02-24 05:38:21 +08:00
|
|
|
/// Find the location of the allocation for Sym on the path leading to the
|
|
|
|
/// exploded node N.
|
|
|
|
const Stmt *getAllocationSite(const ExplodedNode *N, SymbolRef Sym,
|
|
|
|
CheckerContext &C) const;
|
|
|
|
|
2012-02-12 05:02:40 +08:00
|
|
|
void reportLeak(SymbolRef Sym, ExplodedNode *N, CheckerContext &C) const;
|
|
|
|
|
2012-02-09 14:25:51 +08:00
|
|
|
/// The bug visitor which allows us to print extra diagnostics along the
|
|
|
|
/// BugReport path. For example, showing the allocation site of the leaked
|
|
|
|
/// region.
|
|
|
|
class MallocBugVisitor : public BugReporterVisitor {
|
|
|
|
protected:
|
2012-02-17 06:26:07 +08:00
|
|
|
enum NotificationMode {
|
|
|
|
Normal,
|
|
|
|
Complete,
|
|
|
|
ReallocationFailed
|
|
|
|
};
|
|
|
|
|
2012-02-09 14:25:51 +08:00
|
|
|
// The allocated region symbol tracked by the main analysis.
|
|
|
|
SymbolRef Sym;
|
2012-02-17 06:26:07 +08:00
|
|
|
NotificationMode Mode;
|
2012-02-09 14:25:51 +08:00
|
|
|
|
|
|
|
public:
|
2012-02-17 06:26:07 +08:00
|
|
|
MallocBugVisitor(SymbolRef S) : Sym(S), Mode(Normal) {}
|
2012-02-09 14:25:51 +08:00
|
|
|
virtual ~MallocBugVisitor() {}
|
|
|
|
|
|
|
|
void Profile(llvm::FoldingSetNodeID &ID) const {
|
|
|
|
static int X = 0;
|
|
|
|
ID.AddPointer(&X);
|
|
|
|
ID.AddPointer(Sym);
|
|
|
|
}
|
|
|
|
|
2012-02-17 06:26:07 +08:00
|
|
|
inline bool isAllocated(const RefState *S, const RefState *SPrev,
|
|
|
|
const Stmt *Stmt) {
|
2012-02-09 14:25:51 +08:00
|
|
|
// Did not track -> allocated. Other state (released) -> allocated.
|
2012-02-17 06:26:07 +08:00
|
|
|
return (Stmt && isa<CallExpr>(Stmt) &&
|
|
|
|
(S && S->isAllocated()) && (!SPrev || !SPrev->isAllocated()));
|
2012-02-09 14:25:51 +08:00
|
|
|
}
|
|
|
|
|
2012-02-17 06:26:07 +08:00
|
|
|
inline bool isReleased(const RefState *S, const RefState *SPrev,
|
|
|
|
const Stmt *Stmt) {
|
2012-02-09 14:25:51 +08:00
|
|
|
// Did not track -> released. Other state (allocated) -> released.
|
2012-02-17 06:26:07 +08:00
|
|
|
return (Stmt && isa<CallExpr>(Stmt) &&
|
|
|
|
(S && S->isReleased()) && (!SPrev || !SPrev->isReleased()));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool isReallocFailedCheck(const RefState *S, const RefState *SPrev,
|
|
|
|
const Stmt *Stmt) {
|
|
|
|
// If the expression is not a call, and the state change is
|
|
|
|
// released -> allocated, it must be the realloc return value
|
|
|
|
// check. If we have to handle more cases here, it might be cleaner just
|
|
|
|
// to track this extra bit in the state itself.
|
|
|
|
return ((!Stmt || !isa<CallExpr>(Stmt)) &&
|
|
|
|
(S && S->isAllocated()) && (SPrev && !SPrev->isAllocated()));
|
2012-02-09 14:25:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
PathDiagnosticPiece *VisitNode(const ExplodedNode *N,
|
|
|
|
const ExplodedNode *PrevN,
|
|
|
|
BugReporterContext &BRC,
|
|
|
|
BugReport &BR);
|
|
|
|
};
|
2009-11-12 16:38:56 +08:00
|
|
|
};
|
2009-11-28 14:07:30 +08:00
|
|
|
} // end anonymous namespace
|
2009-11-12 16:38:56 +08:00
|
|
|
|
2009-12-31 14:13:07 +08:00
|
|
|
typedef llvm::ImmutableMap<SymbolRef, RefState> RegionStateTy;
|
2012-02-15 08:11:25 +08:00
|
|
|
typedef llvm::ImmutableMap<SymbolRef, ReallocPair > ReallocMap;
|
2012-02-14 02:05:39 +08:00
|
|
|
class RegionState {};
|
|
|
|
class ReallocPairs {};
|
2009-11-12 16:38:56 +08:00
|
|
|
namespace clang {
|
2010-12-23 15:20:52 +08:00
|
|
|
namespace ento {
|
2009-11-17 15:54:15 +08:00
|
|
|
template <>
|
2011-08-16 06:09:50 +08:00
|
|
|
struct ProgramStateTrait<RegionState>
|
|
|
|
: public ProgramStatePartialTrait<RegionStateTy> {
|
2011-02-28 09:26:35 +08:00
|
|
|
static void *GDMIndex() { static int x; return &x; }
|
2009-11-12 16:38:56 +08:00
|
|
|
};
|
2012-02-14 02:05:39 +08:00
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ProgramStateTrait<ReallocPairs>
|
2012-02-15 08:11:25 +08:00
|
|
|
: public ProgramStatePartialTrait<ReallocMap> {
|
2012-02-14 02:05:39 +08:00
|
|
|
static void *GDMIndex() { static int x; return &x; }
|
|
|
|
};
|
2009-11-12 16:38:56 +08:00
|
|
|
}
|
2010-12-23 02:53:20 +08:00
|
|
|
}
|
2009-11-12 16:38:56 +08:00
|
|
|
|
2012-02-12 05:02:35 +08:00
|
|
|
namespace {
|
|
|
|
class StopTrackingCallback : public SymbolVisitor {
|
|
|
|
ProgramStateRef state;
|
|
|
|
public:
|
|
|
|
StopTrackingCallback(ProgramStateRef st) : state(st) {}
|
|
|
|
ProgramStateRef getState() const { return state; }
|
|
|
|
|
|
|
|
bool VisitSymbol(SymbolRef sym) {
|
|
|
|
state = state->remove<RegionState>(sym);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2012-02-15 05:55:24 +08:00
|
|
|
void MallocChecker::initIdentifierInfo(ASTContext &Ctx) const {
|
2009-11-12 16:38:56 +08:00
|
|
|
if (!II_malloc)
|
|
|
|
II_malloc = &Ctx.Idents.get("malloc");
|
|
|
|
if (!II_free)
|
2009-11-13 15:48:11 +08:00
|
|
|
II_free = &Ctx.Idents.get("free");
|
2009-12-12 20:29:38 +08:00
|
|
|
if (!II_realloc)
|
|
|
|
II_realloc = &Ctx.Idents.get("realloc");
|
2012-02-15 08:11:25 +08:00
|
|
|
if (!II_reallocf)
|
|
|
|
II_reallocf = &Ctx.Idents.get("reallocf");
|
2010-06-01 11:01:33 +08:00
|
|
|
if (!II_calloc)
|
|
|
|
II_calloc = &Ctx.Idents.get("calloc");
|
2012-02-15 08:11:22 +08:00
|
|
|
if (!II_valloc)
|
|
|
|
II_valloc = &Ctx.Idents.get("valloc");
|
2012-02-22 11:14:20 +08:00
|
|
|
if (!II_strdup)
|
|
|
|
II_strdup = &Ctx.Idents.get("strdup");
|
|
|
|
if (!II_strndup)
|
|
|
|
II_strndup = &Ctx.Idents.get("strndup");
|
2012-02-09 04:13:28 +08:00
|
|
|
}
|
|
|
|
|
2012-02-15 05:55:24 +08:00
|
|
|
bool MallocChecker::isMemFunction(const FunctionDecl *FD, ASTContext &C) const {
|
2012-02-15 10:12:00 +08:00
|
|
|
if (!FD)
|
|
|
|
return false;
|
2012-02-15 05:55:24 +08:00
|
|
|
IdentifierInfo *FunI = FD->getIdentifier();
|
|
|
|
if (!FunI)
|
|
|
|
return false;
|
|
|
|
|
2012-02-15 10:12:00 +08:00
|
|
|
initIdentifierInfo(C);
|
|
|
|
|
2012-02-15 08:11:25 +08:00
|
|
|
if (FunI == II_malloc || FunI == II_free || FunI == II_realloc ||
|
2012-02-22 11:14:20 +08:00
|
|
|
FunI == II_reallocf || FunI == II_calloc || FunI == II_valloc ||
|
|
|
|
FunI == II_strdup || FunI == II_strndup)
|
2012-02-15 05:55:24 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
if (Filter.CMallocOptimistic && FD->hasAttrs() &&
|
|
|
|
FD->specific_attr_begin<OwnershipAttr>() !=
|
|
|
|
FD->specific_attr_end<OwnershipAttr>())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-09 04:13:28 +08:00
|
|
|
void MallocChecker::checkPostStmt(const CallExpr *CE, CheckerContext &C) const {
|
|
|
|
const FunctionDecl *FD = C.getCalleeDecl(CE);
|
|
|
|
if (!FD)
|
|
|
|
return;
|
2012-02-15 08:11:22 +08:00
|
|
|
|
2012-02-15 05:55:24 +08:00
|
|
|
initIdentifierInfo(C.getASTContext());
|
2012-02-15 08:11:22 +08:00
|
|
|
IdentifierInfo *FunI = FD->getIdentifier();
|
|
|
|
if (!FunI)
|
|
|
|
return;
|
2009-11-12 16:38:56 +08:00
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2012-02-15 08:11:22 +08:00
|
|
|
if (FunI == II_malloc || FunI == II_valloc) {
|
2012-02-23 03:24:52 +08:00
|
|
|
State = MallocMemAux(C, CE, CE->getArg(0), UndefinedVal(), State);
|
2012-02-15 08:11:22 +08:00
|
|
|
} else if (FunI == II_realloc) {
|
2012-02-23 03:24:52 +08:00
|
|
|
State = ReallocMem(C, CE, false);
|
2012-02-15 08:11:25 +08:00
|
|
|
} else if (FunI == II_reallocf) {
|
2012-02-23 03:24:52 +08:00
|
|
|
State = ReallocMem(C, CE, true);
|
2012-02-15 08:11:22 +08:00
|
|
|
} else if (FunI == II_calloc) {
|
2012-02-23 03:24:52 +08:00
|
|
|
State = CallocMem(C, CE);
|
2012-02-22 11:14:20 +08:00
|
|
|
} else if (FunI == II_free) {
|
2012-02-23 03:24:52 +08:00
|
|
|
State = FreeMemAux(C, CE, C.getState(), 0, false);
|
2012-02-22 11:14:20 +08:00
|
|
|
} else if (FunI == II_strdup) {
|
2012-02-23 03:24:52 +08:00
|
|
|
State = MallocUpdateRefState(C, CE, State);
|
2012-02-22 11:14:20 +08:00
|
|
|
} else if (FunI == II_strndup) {
|
2012-02-23 03:24:52 +08:00
|
|
|
State = MallocUpdateRefState(C, CE, State);
|
|
|
|
} else if (Filter.CMallocOptimistic) {
|
|
|
|
// Check all the attributes, if there are any.
|
|
|
|
// There can be multiple of these attributes.
|
|
|
|
if (FD->hasAttrs())
|
|
|
|
for (specific_attr_iterator<OwnershipAttr>
|
|
|
|
i = FD->specific_attr_begin<OwnershipAttr>(),
|
|
|
|
e = FD->specific_attr_end<OwnershipAttr>();
|
|
|
|
i != e; ++i) {
|
|
|
|
switch ((*i)->getOwnKind()) {
|
|
|
|
case OwnershipAttr::Returns:
|
|
|
|
State = MallocMemReturnsAttr(C, CE, *i);
|
|
|
|
break;
|
|
|
|
case OwnershipAttr::Takes:
|
|
|
|
case OwnershipAttr::Holds:
|
|
|
|
State = FreeMemAttr(C, CE, *i);
|
|
|
|
break;
|
|
|
|
}
|
2010-07-31 09:52:11 +08:00
|
|
|
}
|
|
|
|
}
|
2012-02-22 11:14:20 +08:00
|
|
|
C.addTransition(State);
|
2009-12-12 20:29:38 +08:00
|
|
|
}
|
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
ProgramStateRef MallocChecker::MallocMemReturnsAttr(CheckerContext &C,
|
|
|
|
const CallExpr *CE,
|
|
|
|
const OwnershipAttr* Att) {
|
2010-08-19 07:23:40 +08:00
|
|
|
if (Att->getModule() != "malloc")
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2010-07-31 09:52:11 +08:00
|
|
|
|
2010-08-19 07:23:40 +08:00
|
|
|
OwnershipAttr::args_iterator I = Att->args_begin(), E = Att->args_end();
|
2010-07-31 09:52:11 +08:00
|
|
|
if (I != E) {
|
2012-02-23 03:24:52 +08:00
|
|
|
return MallocMemAux(C, CE, CE->getArg(*I), UndefinedVal(), C.getState());
|
2010-07-31 09:52:11 +08:00
|
|
|
}
|
2012-02-23 03:24:52 +08:00
|
|
|
return MallocMemAux(C, CE, UnknownVal(), UndefinedVal(), C.getState());
|
2010-07-31 09:52:11 +08:00
|
|
|
}
|
|
|
|
|
2012-02-09 04:13:28 +08:00
|
|
|
ProgramStateRef MallocChecker::MallocMemAux(CheckerContext &C,
|
2009-12-12 20:29:38 +08:00
|
|
|
const CallExpr *CE,
|
2010-06-01 11:01:33 +08:00
|
|
|
SVal Size, SVal Init,
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state) {
|
2012-02-09 04:13:28 +08:00
|
|
|
// Get the return value.
|
|
|
|
SVal retVal = state->getSVal(CE, C.getLocationContext());
|
2009-12-11 11:09:01 +08:00
|
|
|
|
2012-02-15 08:11:22 +08:00
|
|
|
// We expect the malloc functions to return a pointer.
|
|
|
|
if (!isa<Loc>(retVal))
|
|
|
|
return 0;
|
|
|
|
|
2010-07-04 08:00:41 +08:00
|
|
|
// Fill the region with the initialization value.
|
2010-12-02 15:49:45 +08:00
|
|
|
state = state->bindDefault(retVal, Init);
|
2010-06-01 11:01:33 +08:00
|
|
|
|
2010-07-04 08:00:41 +08:00
|
|
|
// Set the region's extent equal to the Size parameter.
|
2012-02-10 09:11:00 +08:00
|
|
|
const SymbolicRegion *R =
|
|
|
|
dyn_cast_or_null<SymbolicRegion>(retVal.getAsRegion());
|
2012-02-22 11:14:20 +08:00
|
|
|
if (!R)
|
2012-02-10 09:11:00 +08:00
|
|
|
return 0;
|
2012-02-22 11:14:20 +08:00
|
|
|
if (isa<DefinedOrUnknownSVal>(Size)) {
|
2012-02-23 03:24:52 +08:00
|
|
|
SValBuilder &svalBuilder = C.getSValBuilder();
|
2012-02-22 11:14:20 +08:00
|
|
|
DefinedOrUnknownSVal Extent = R->getExtent(svalBuilder);
|
|
|
|
DefinedOrUnknownSVal DefinedSize = cast<DefinedOrUnknownSVal>(Size);
|
|
|
|
DefinedOrUnknownSVal extentMatchesSize =
|
|
|
|
svalBuilder.evalEQ(state, Extent, DefinedSize);
|
|
|
|
|
|
|
|
state = state->assume(extentMatchesSize, true);
|
|
|
|
assert(state);
|
|
|
|
}
|
2010-12-02 15:49:45 +08:00
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
return MallocUpdateRefState(C, CE, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramStateRef MallocChecker::MallocUpdateRefState(CheckerContext &C,
|
|
|
|
const CallExpr *CE,
|
|
|
|
ProgramStateRef state) {
|
|
|
|
// Get the return value.
|
|
|
|
SVal retVal = state->getSVal(CE, C.getLocationContext());
|
|
|
|
|
|
|
|
// We expect the malloc functions to return a pointer.
|
|
|
|
if (!isa<Loc>(retVal))
|
|
|
|
return 0;
|
|
|
|
|
2010-12-02 15:49:45 +08:00
|
|
|
SymbolRef Sym = retVal.getAsLocSymbol();
|
2009-11-12 16:38:56 +08:00
|
|
|
assert(Sym);
|
2010-12-02 15:49:45 +08:00
|
|
|
|
2009-11-12 16:38:56 +08:00
|
|
|
// Set the symbol's state to Allocated.
|
2009-12-31 14:13:07 +08:00
|
|
|
return state->set<RegionState>(Sym, RefState::getAllocateUnchecked(CE));
|
2009-12-12 20:29:38 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
ProgramStateRef MallocChecker::FreeMemAttr(CheckerContext &C,
|
|
|
|
const CallExpr *CE,
|
|
|
|
const OwnershipAttr* Att) const {
|
2010-08-19 07:23:40 +08:00
|
|
|
if (Att->getModule() != "malloc")
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2010-07-31 09:52:11 +08:00
|
|
|
|
2012-03-02 06:06:06 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
|
|
|
|
2010-08-19 07:23:40 +08:00
|
|
|
for (OwnershipAttr::args_iterator I = Att->args_begin(), E = Att->args_end();
|
|
|
|
I != E; ++I) {
|
2012-03-02 06:06:06 +08:00
|
|
|
ProgramStateRef StateI = FreeMemAux(C, CE, State, *I,
|
|
|
|
Att->getOwnKind() == OwnershipAttr::Holds);
|
|
|
|
if (StateI)
|
|
|
|
State = StateI;
|
2010-07-31 09:52:11 +08:00
|
|
|
}
|
2012-03-02 06:06:06 +08:00
|
|
|
return State;
|
2010-07-31 09:52:11 +08:00
|
|
|
}
|
|
|
|
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef MallocChecker::FreeMemAux(CheckerContext &C,
|
2012-02-10 09:11:00 +08:00
|
|
|
const CallExpr *CE,
|
|
|
|
ProgramStateRef state,
|
|
|
|
unsigned Num,
|
|
|
|
bool Hold) const {
|
2010-07-31 09:52:11 +08:00
|
|
|
const Expr *ArgExpr = CE->getArg(Num);
|
2012-01-07 06:09:28 +08:00
|
|
|
SVal ArgVal = state->getSVal(ArgExpr, C.getLocationContext());
|
2012-02-10 09:11:00 +08:00
|
|
|
if (!isa<DefinedOrUnknownSVal>(ArgVal))
|
|
|
|
return 0;
|
2010-07-31 09:52:11 +08:00
|
|
|
DefinedOrUnknownSVal location = cast<DefinedOrUnknownSVal>(ArgVal);
|
|
|
|
|
|
|
|
// Check for null dereferences.
|
|
|
|
if (!isa<Loc>(location))
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2010-07-31 09:52:11 +08:00
|
|
|
|
2012-02-14 08:26:13 +08:00
|
|
|
// The explicit NULL case, no operation is performed.
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef notNullState, nullState;
|
2010-12-02 06:16:56 +08:00
|
|
|
llvm::tie(notNullState, nullState) = state->assume(location);
|
2010-07-31 09:52:11 +08:00
|
|
|
if (nullState && !notNullState)
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2010-07-31 09:52:11 +08:00
|
|
|
|
2010-06-08 03:32:37 +08:00
|
|
|
// Unknown values could easily be okay
|
|
|
|
// Undefined values are handled elsewhere
|
|
|
|
if (ArgVal.isUnknownOrUndef())
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2010-02-14 14:49:48 +08:00
|
|
|
|
2010-06-08 03:32:37 +08:00
|
|
|
const MemRegion *R = ArgVal.getAsRegion();
|
|
|
|
|
|
|
|
// Nonlocs can't be freed, of course.
|
|
|
|
// Non-region locations (labels and fixed addresses) also shouldn't be freed.
|
|
|
|
if (!R) {
|
|
|
|
ReportBadFree(C, ArgVal, ArgExpr->getSourceRange());
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2010-06-08 03:32:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
R = R->StripCasts();
|
|
|
|
|
|
|
|
// Blocks might show up as heap data, but should not be free()d
|
|
|
|
if (isa<BlockDataRegion>(R)) {
|
|
|
|
ReportBadFree(C, ArgVal, ArgExpr->getSourceRange());
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2010-06-08 03:32:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const MemSpaceRegion *MS = R->getMemorySpace();
|
|
|
|
|
|
|
|
// Parameters, locals, statics, and globals shouldn't be freed.
|
|
|
|
if (!(isa<UnknownSpaceRegion>(MS) || isa<HeapSpaceRegion>(MS))) {
|
|
|
|
// FIXME: at the time this code was written, malloc() regions were
|
|
|
|
// represented by conjured symbols, which are all in UnknownSpaceRegion.
|
|
|
|
// This means that there isn't actually anything from HeapSpaceRegion
|
|
|
|
// that should be freed, even though we allow it here.
|
|
|
|
// Of course, free() can work on memory allocated outside the current
|
|
|
|
// function, so UnknownSpaceRegion is always a possibility.
|
|
|
|
// False negatives are better than false positives.
|
|
|
|
|
|
|
|
ReportBadFree(C, ArgVal, ArgExpr->getSourceRange());
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2010-06-08 03:32:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R);
|
2010-05-13 16:26:32 +08:00
|
|
|
// Various cases could lead to non-symbol values here.
|
2010-06-08 03:32:37 +08:00
|
|
|
// For now, ignore them.
|
|
|
|
if (!SR)
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2009-11-12 16:38:56 +08:00
|
|
|
|
2010-06-08 03:32:37 +08:00
|
|
|
SymbolRef Sym = SR->getSymbol();
|
2009-11-12 16:38:56 +08:00
|
|
|
const RefState *RS = state->get<RegionState>(Sym);
|
2010-01-18 11:27:34 +08:00
|
|
|
|
|
|
|
// If the symbol has not been tracked, return. This is possible when free() is
|
|
|
|
// called on a pointer that does not get its pointee directly from malloc().
|
|
|
|
// Full support of this requires inter-procedural analysis.
|
|
|
|
if (!RS)
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2009-11-12 16:38:56 +08:00
|
|
|
|
|
|
|
// Check double free.
|
2009-11-17 15:54:15 +08:00
|
|
|
if (RS->isReleased()) {
|
2010-12-21 05:19:09 +08:00
|
|
|
if (ExplodedNode *N = C.generateSink()) {
|
2009-11-12 16:38:56 +08:00
|
|
|
if (!BT_DoubleFree)
|
2011-02-28 09:26:35 +08:00
|
|
|
BT_DoubleFree.reset(
|
2012-02-17 06:26:12 +08:00
|
|
|
new BugType("Double free", "Memory Error"));
|
2009-11-12 16:38:56 +08:00
|
|
|
BugReport *R = new BugReport(*BT_DoubleFree,
|
2012-02-17 06:26:12 +08:00
|
|
|
"Attempt to free released memory", N);
|
2012-02-17 06:26:07 +08:00
|
|
|
R->addRange(ArgExpr->getSourceRange());
|
2012-02-09 14:25:51 +08:00
|
|
|
R->addVisitor(new MallocBugVisitor(Sym));
|
2009-11-12 16:38:56 +08:00
|
|
|
C.EmitReport(R);
|
|
|
|
}
|
2012-02-09 04:13:28 +08:00
|
|
|
return 0;
|
2009-11-12 16:38:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Normal free.
|
2010-07-31 09:52:11 +08:00
|
|
|
if (Hold)
|
2012-02-14 08:26:13 +08:00
|
|
|
return state->set<RegionState>(Sym, RefState::getRelinquished(CE));
|
|
|
|
return state->set<RegionState>(Sym, RefState::getReleased(CE));
|
2009-12-12 20:29:38 +08:00
|
|
|
}
|
|
|
|
|
2011-08-13 07:37:29 +08:00
|
|
|
bool MallocChecker::SummarizeValue(raw_ostream &os, SVal V) {
|
2010-06-08 03:32:37 +08:00
|
|
|
if (nonloc::ConcreteInt *IntVal = dyn_cast<nonloc::ConcreteInt>(&V))
|
|
|
|
os << "an integer (" << IntVal->getValue() << ")";
|
|
|
|
else if (loc::ConcreteInt *ConstAddr = dyn_cast<loc::ConcreteInt>(&V))
|
|
|
|
os << "a constant address (" << ConstAddr->getValue() << ")";
|
|
|
|
else if (loc::GotoLabel *Label = dyn_cast<loc::GotoLabel>(&V))
|
2011-02-17 13:38:27 +08:00
|
|
|
os << "the address of the label '" << Label->getLabel()->getName() << "'";
|
2010-06-08 03:32:37 +08:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-08-13 07:37:29 +08:00
|
|
|
bool MallocChecker::SummarizeRegion(raw_ostream &os,
|
2010-06-08 03:32:37 +08:00
|
|
|
const MemRegion *MR) {
|
|
|
|
switch (MR->getKind()) {
|
|
|
|
case MemRegion::FunctionTextRegionKind: {
|
|
|
|
const FunctionDecl *FD = cast<FunctionTextRegion>(MR)->getDecl();
|
|
|
|
if (FD)
|
2011-10-15 02:45:37 +08:00
|
|
|
os << "the address of the function '" << *FD << '\'';
|
2010-06-08 03:32:37 +08:00
|
|
|
else
|
|
|
|
os << "the address of a function";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case MemRegion::BlockTextRegionKind:
|
|
|
|
os << "block text";
|
|
|
|
return true;
|
|
|
|
case MemRegion::BlockDataRegionKind:
|
|
|
|
// FIXME: where the block came from?
|
|
|
|
os << "a block";
|
|
|
|
return true;
|
|
|
|
default: {
|
|
|
|
const MemSpaceRegion *MS = MR->getMemorySpace();
|
|
|
|
|
2012-01-05 07:54:01 +08:00
|
|
|
if (isa<StackLocalsSpaceRegion>(MS)) {
|
2010-06-08 03:32:37 +08:00
|
|
|
const VarRegion *VR = dyn_cast<VarRegion>(MR);
|
|
|
|
const VarDecl *VD;
|
|
|
|
if (VR)
|
|
|
|
VD = VR->getDecl();
|
|
|
|
else
|
|
|
|
VD = NULL;
|
|
|
|
|
|
|
|
if (VD)
|
|
|
|
os << "the address of the local variable '" << VD->getName() << "'";
|
|
|
|
else
|
|
|
|
os << "the address of a local stack variable";
|
|
|
|
return true;
|
|
|
|
}
|
2012-01-05 07:54:01 +08:00
|
|
|
|
|
|
|
if (isa<StackArgumentsSpaceRegion>(MS)) {
|
2010-06-08 03:32:37 +08:00
|
|
|
const VarRegion *VR = dyn_cast<VarRegion>(MR);
|
|
|
|
const VarDecl *VD;
|
|
|
|
if (VR)
|
|
|
|
VD = VR->getDecl();
|
|
|
|
else
|
|
|
|
VD = NULL;
|
|
|
|
|
|
|
|
if (VD)
|
|
|
|
os << "the address of the parameter '" << VD->getName() << "'";
|
|
|
|
else
|
|
|
|
os << "the address of a parameter";
|
|
|
|
return true;
|
|
|
|
}
|
2012-01-05 07:54:01 +08:00
|
|
|
|
|
|
|
if (isa<GlobalsSpaceRegion>(MS)) {
|
2010-06-08 03:32:37 +08:00
|
|
|
const VarRegion *VR = dyn_cast<VarRegion>(MR);
|
|
|
|
const VarDecl *VD;
|
|
|
|
if (VR)
|
|
|
|
VD = VR->getDecl();
|
|
|
|
else
|
|
|
|
VD = NULL;
|
|
|
|
|
|
|
|
if (VD) {
|
|
|
|
if (VD->isStaticLocal())
|
|
|
|
os << "the address of the static variable '" << VD->getName() << "'";
|
|
|
|
else
|
|
|
|
os << "the address of the global variable '" << VD->getName() << "'";
|
|
|
|
} else
|
|
|
|
os << "the address of a global variable";
|
|
|
|
return true;
|
|
|
|
}
|
2012-01-05 07:54:01 +08:00
|
|
|
|
|
|
|
return false;
|
2010-06-08 03:32:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MallocChecker::ReportBadFree(CheckerContext &C, SVal ArgVal,
|
2011-02-28 09:26:35 +08:00
|
|
|
SourceRange range) const {
|
2010-12-21 05:19:09 +08:00
|
|
|
if (ExplodedNode *N = C.generateSink()) {
|
2010-06-08 03:32:37 +08:00
|
|
|
if (!BT_BadFree)
|
2012-02-17 06:26:12 +08:00
|
|
|
BT_BadFree.reset(new BugType("Bad free", "Memory Error"));
|
2010-06-08 03:32:37 +08:00
|
|
|
|
2012-02-05 10:13:05 +08:00
|
|
|
SmallString<100> buf;
|
2010-06-08 03:32:37 +08:00
|
|
|
llvm::raw_svector_ostream os(buf);
|
|
|
|
|
|
|
|
const MemRegion *MR = ArgVal.getAsRegion();
|
|
|
|
if (MR) {
|
|
|
|
while (const ElementRegion *ER = dyn_cast<ElementRegion>(MR))
|
|
|
|
MR = ER->getSuperRegion();
|
|
|
|
|
|
|
|
// Special case for alloca()
|
|
|
|
if (isa<AllocaRegion>(MR))
|
|
|
|
os << "Argument to free() was allocated by alloca(), not malloc()";
|
|
|
|
else {
|
|
|
|
os << "Argument to free() is ";
|
|
|
|
if (SummarizeRegion(os, MR))
|
|
|
|
os << ", which is not memory allocated by malloc()";
|
|
|
|
else
|
|
|
|
os << "not memory allocated by malloc()";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
os << "Argument to free() is ";
|
|
|
|
if (SummarizeValue(os, ArgVal))
|
|
|
|
os << ", which is not memory allocated by malloc()";
|
|
|
|
else
|
|
|
|
os << "not memory allocated by malloc()";
|
|
|
|
}
|
|
|
|
|
2011-08-18 07:00:25 +08:00
|
|
|
BugReport *R = new BugReport(*BT_BadFree, os.str(), N);
|
2010-06-08 03:32:37 +08:00
|
|
|
R->addRange(range);
|
|
|
|
C.EmitReport(R);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
ProgramStateRef MallocChecker::ReallocMem(CheckerContext &C,
|
|
|
|
const CallExpr *CE,
|
|
|
|
bool FreesOnFail) const {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state = C.getState();
|
2010-12-02 15:49:45 +08:00
|
|
|
const Expr *arg0Expr = CE->getArg(0);
|
2012-01-07 06:09:28 +08:00
|
|
|
const LocationContext *LCtx = C.getLocationContext();
|
2012-02-10 09:11:00 +08:00
|
|
|
SVal Arg0Val = state->getSVal(arg0Expr, LCtx);
|
|
|
|
if (!isa<DefinedOrUnknownSVal>(Arg0Val))
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2012-02-10 09:11:00 +08:00
|
|
|
DefinedOrUnknownSVal arg0Val = cast<DefinedOrUnknownSVal>(Arg0Val);
|
2009-12-12 20:29:38 +08:00
|
|
|
|
2010-12-02 05:28:31 +08:00
|
|
|
SValBuilder &svalBuilder = C.getSValBuilder();
|
2009-12-12 20:29:38 +08:00
|
|
|
|
2010-12-02 15:49:45 +08:00
|
|
|
DefinedOrUnknownSVal PtrEQ =
|
|
|
|
svalBuilder.evalEQ(state, arg0Val, svalBuilder.makeNull());
|
2009-12-12 20:29:38 +08:00
|
|
|
|
2011-04-27 22:49:29 +08:00
|
|
|
// Get the size argument. If there is no size arg then give up.
|
|
|
|
const Expr *Arg1 = CE->getArg(1);
|
|
|
|
if (!Arg1)
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2011-04-27 22:49:29 +08:00
|
|
|
|
|
|
|
// Get the value of the size argument.
|
2012-02-10 09:11:00 +08:00
|
|
|
SVal Arg1ValG = state->getSVal(Arg1, LCtx);
|
|
|
|
if (!isa<DefinedOrUnknownSVal>(Arg1ValG))
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2012-02-10 09:11:00 +08:00
|
|
|
DefinedOrUnknownSVal Arg1Val = cast<DefinedOrUnknownSVal>(Arg1ValG);
|
2011-04-27 22:49:29 +08:00
|
|
|
|
|
|
|
// Compare the size argument to 0.
|
|
|
|
DefinedOrUnknownSVal SizeZero =
|
|
|
|
svalBuilder.evalEQ(state, Arg1Val,
|
|
|
|
svalBuilder.makeIntValWithPtrWidth(0, false));
|
|
|
|
|
2012-02-14 02:05:39 +08:00
|
|
|
ProgramStateRef StatePtrIsNull, StatePtrNotNull;
|
|
|
|
llvm::tie(StatePtrIsNull, StatePtrNotNull) = state->assume(PtrEQ);
|
|
|
|
ProgramStateRef StateSizeIsZero, StateSizeNotZero;
|
|
|
|
llvm::tie(StateSizeIsZero, StateSizeNotZero) = state->assume(SizeZero);
|
|
|
|
// We only assume exceptional states if they are definitely true; if the
|
|
|
|
// state is under-constrained, assume regular realloc behavior.
|
|
|
|
bool PrtIsNull = StatePtrIsNull && !StatePtrNotNull;
|
|
|
|
bool SizeIsZero = StateSizeIsZero && !StateSizeNotZero;
|
|
|
|
|
2011-04-27 22:49:29 +08:00
|
|
|
// If the ptr is NULL and the size is not 0, the call is equivalent to
|
|
|
|
// malloc(size).
|
2012-02-14 02:05:39 +08:00
|
|
|
if ( PrtIsNull && !SizeIsZero) {
|
2012-02-23 03:24:52 +08:00
|
|
|
ProgramStateRef stateMalloc = MallocMemAux(C, CE, CE->getArg(1),
|
2012-02-14 02:05:39 +08:00
|
|
|
UndefinedVal(), StatePtrIsNull);
|
2012-02-23 03:24:52 +08:00
|
|
|
return stateMalloc;
|
2009-12-12 20:29:38 +08:00
|
|
|
}
|
|
|
|
|
2012-02-14 02:05:39 +08:00
|
|
|
if (PrtIsNull && SizeIsZero)
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2011-04-27 22:49:29 +08:00
|
|
|
|
2012-02-14 04:57:07 +08:00
|
|
|
// Get the from and to pointer symbols as in toPtr = realloc(fromPtr, size).
|
2012-02-14 02:05:39 +08:00
|
|
|
assert(!PrtIsNull);
|
2012-02-14 04:57:07 +08:00
|
|
|
SymbolRef FromPtr = arg0Val.getAsSymbol();
|
|
|
|
SVal RetVal = state->getSVal(CE, LCtx);
|
|
|
|
SymbolRef ToPtr = RetVal.getAsSymbol();
|
|
|
|
if (!FromPtr || !ToPtr)
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2012-02-14 02:05:39 +08:00
|
|
|
|
|
|
|
// If the size is 0, free the memory.
|
|
|
|
if (SizeIsZero)
|
|
|
|
if (ProgramStateRef stateFree = FreeMemAux(C, CE, StateSizeIsZero,0,false)){
|
|
|
|
// The semantics of the return value are:
|
|
|
|
// If size was equal to 0, either NULL or a pointer suitable to be passed
|
|
|
|
// to free() is returned.
|
2012-02-15 08:11:25 +08:00
|
|
|
stateFree = stateFree->set<ReallocPairs>(ToPtr,
|
|
|
|
ReallocPair(FromPtr, FreesOnFail));
|
2012-02-14 08:26:13 +08:00
|
|
|
C.getSymbolManager().addSymbolDependency(ToPtr, FromPtr);
|
2012-02-23 03:24:52 +08:00
|
|
|
return stateFree;
|
2012-02-14 02:05:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Default behavior.
|
|
|
|
if (ProgramStateRef stateFree = FreeMemAux(C, CE, state, 0, false)) {
|
|
|
|
// FIXME: We should copy the content of the original buffer.
|
|
|
|
ProgramStateRef stateRealloc = MallocMemAux(C, CE, CE->getArg(1),
|
|
|
|
UnknownVal(), stateFree);
|
2012-02-14 04:57:07 +08:00
|
|
|
if (!stateRealloc)
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2012-02-15 08:11:25 +08:00
|
|
|
stateRealloc = stateRealloc->set<ReallocPairs>(ToPtr,
|
|
|
|
ReallocPair(FromPtr, FreesOnFail));
|
2012-02-14 08:26:13 +08:00
|
|
|
C.getSymbolManager().addSymbolDependency(ToPtr, FromPtr);
|
2012-02-23 03:24:52 +08:00
|
|
|
return stateRealloc;
|
2009-12-12 20:29:38 +08:00
|
|
|
}
|
2012-02-23 03:24:52 +08:00
|
|
|
return 0;
|
2009-11-12 16:38:56 +08:00
|
|
|
}
|
2009-11-13 15:25:27 +08:00
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
ProgramStateRef MallocChecker::CallocMem(CheckerContext &C, const CallExpr *CE){
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state = C.getState();
|
2010-12-02 05:28:31 +08:00
|
|
|
SValBuilder &svalBuilder = C.getSValBuilder();
|
2012-01-07 06:09:28 +08:00
|
|
|
const LocationContext *LCtx = C.getLocationContext();
|
|
|
|
SVal count = state->getSVal(CE->getArg(0), LCtx);
|
|
|
|
SVal elementSize = state->getSVal(CE->getArg(1), LCtx);
|
2010-12-02 15:49:45 +08:00
|
|
|
SVal TotalSize = svalBuilder.evalBinOp(state, BO_Mul, count, elementSize,
|
|
|
|
svalBuilder.getContext().getSizeType());
|
|
|
|
SVal zeroVal = svalBuilder.makeZeroVal(svalBuilder.getContext().CharTy);
|
2010-06-01 11:01:33 +08:00
|
|
|
|
2012-02-23 03:24:52 +08:00
|
|
|
return MallocMemAux(C, CE, TotalSize, zeroVal, state);
|
2010-06-01 11:01:33 +08:00
|
|
|
}
|
|
|
|
|
2012-02-24 05:38:21 +08:00
|
|
|
const Stmt *
|
|
|
|
MallocChecker::getAllocationSite(const ExplodedNode *N, SymbolRef Sym,
|
|
|
|
CheckerContext &C) const {
|
2012-02-28 07:40:55 +08:00
|
|
|
const LocationContext *LeakContext = N->getLocationContext();
|
2012-02-24 05:38:21 +08:00
|
|
|
// Walk the ExplodedGraph backwards and find the first node that referred to
|
|
|
|
// the tracked symbol.
|
|
|
|
const ExplodedNode *AllocNode = N;
|
|
|
|
|
|
|
|
while (N) {
|
|
|
|
if (!N->getState()->get<RegionState>(Sym))
|
|
|
|
break;
|
2012-02-28 07:40:55 +08:00
|
|
|
// Allocation node, is the last node in the current context in which the
|
|
|
|
// symbol was tracked.
|
|
|
|
if (N->getLocationContext() == LeakContext)
|
|
|
|
AllocNode = N;
|
2012-02-24 05:38:21 +08:00
|
|
|
N = N->pred_empty() ? NULL : *(N->pred_begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgramPoint P = AllocNode->getLocation();
|
2012-02-28 07:40:55 +08:00
|
|
|
if (!isa<StmtPoint>(P))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return cast<StmtPoint>(P).getStmt();
|
2012-02-24 05:38:21 +08:00
|
|
|
}
|
|
|
|
|
2012-02-12 05:02:40 +08:00
|
|
|
void MallocChecker::reportLeak(SymbolRef Sym, ExplodedNode *N,
|
|
|
|
CheckerContext &C) const {
|
|
|
|
assert(N);
|
|
|
|
if (!BT_Leak) {
|
2012-02-17 06:26:12 +08:00
|
|
|
BT_Leak.reset(new BugType("Memory leak", "Memory Error"));
|
2012-02-12 05:02:40 +08:00
|
|
|
// Leaks should not be reported if they are post-dominated by a sink:
|
|
|
|
// (1) Sinks are higher importance bugs.
|
|
|
|
// (2) NoReturnFunctionChecker uses sink nodes to represent paths ending
|
|
|
|
// with __noreturn functions such as assert() or exit(). We choose not
|
|
|
|
// to report leaks on such paths.
|
|
|
|
BT_Leak->setSuppressOnSink(true);
|
|
|
|
}
|
|
|
|
|
2012-02-24 05:38:21 +08:00
|
|
|
// Most bug reports are cached at the location where they occurred.
|
|
|
|
// With leaks, we want to unique them by the location where they were
|
|
|
|
// allocated, and only report a single path.
|
2012-02-28 07:40:55 +08:00
|
|
|
PathDiagnosticLocation LocUsedForUniqueing;
|
|
|
|
if (const Stmt *AllocStmt = getAllocationSite(N, Sym, C))
|
|
|
|
LocUsedForUniqueing = PathDiagnosticLocation::createBegin(AllocStmt,
|
|
|
|
C.getSourceManager(), N->getLocationContext());
|
2012-02-24 05:38:21 +08:00
|
|
|
|
2012-02-17 06:26:12 +08:00
|
|
|
BugReport *R = new BugReport(*BT_Leak,
|
2012-02-24 05:38:21 +08:00
|
|
|
"Memory is never released; potential memory leak", N, LocUsedForUniqueing);
|
2012-02-12 05:02:40 +08:00
|
|
|
R->addVisitor(new MallocBugVisitor(Sym));
|
|
|
|
C.EmitReport(R);
|
|
|
|
}
|
|
|
|
|
2011-02-28 09:26:35 +08:00
|
|
|
void MallocChecker::checkDeadSymbols(SymbolReaper &SymReaper,
|
|
|
|
CheckerContext &C) const
|
2010-12-02 15:49:45 +08:00
|
|
|
{
|
2010-08-15 16:19:57 +08:00
|
|
|
if (!SymReaper.hasDeadSymbols())
|
|
|
|
return;
|
|
|
|
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state = C.getState();
|
2010-08-15 16:19:57 +08:00
|
|
|
RegionStateTy RS = state->get<RegionState>();
|
2010-08-18 12:33:47 +08:00
|
|
|
RegionStateTy::Factory &F = state->get_context<RegionState>();
|
2010-08-15 16:19:57 +08:00
|
|
|
|
2011-07-29 07:07:51 +08:00
|
|
|
bool generateReport = false;
|
2012-02-09 14:48:19 +08:00
|
|
|
llvm::SmallVector<SymbolRef, 2> Errors;
|
2010-08-15 16:19:57 +08:00
|
|
|
for (RegionStateTy::iterator I = RS.begin(), E = RS.end(); I != E; ++I) {
|
|
|
|
if (SymReaper.isDead(I->first)) {
|
2012-02-09 14:48:19 +08:00
|
|
|
if (I->second.isAllocated()) {
|
2011-07-29 07:07:51 +08:00
|
|
|
generateReport = true;
|
2012-02-09 14:48:19 +08:00
|
|
|
Errors.push_back(I->first);
|
|
|
|
}
|
2010-08-18 12:33:47 +08:00
|
|
|
// Remove the dead symbol from the map.
|
2010-11-24 08:54:37 +08:00
|
|
|
RS = F.remove(RS, I->first);
|
2011-07-29 07:07:51 +08:00
|
|
|
|
2009-11-13 15:48:11 +08:00
|
|
|
}
|
|
|
|
}
|
2011-07-29 07:07:51 +08:00
|
|
|
|
2012-02-14 02:05:39 +08:00
|
|
|
// Cleanup the Realloc Pairs Map.
|
2012-02-15 08:11:25 +08:00
|
|
|
ReallocMap RP = state->get<ReallocPairs>();
|
|
|
|
for (ReallocMap::iterator I = RP.begin(), E = RP.end(); I != E; ++I) {
|
|
|
|
if (SymReaper.isDead(I->first) ||
|
|
|
|
SymReaper.isDead(I->second.ReallocatedSym)) {
|
2012-02-14 02:05:39 +08:00
|
|
|
state = state->remove<ReallocPairs>(I->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-24 05:38:21 +08:00
|
|
|
// Generate leak node.
|
|
|
|
static SimpleProgramPointTag Tag("MallocChecker : DeadSymbolsLeak");
|
|
|
|
ExplodedNode *N = C.addTransition(C.getState(), C.getPredecessor(), &Tag);
|
2011-07-29 07:07:51 +08:00
|
|
|
|
2012-02-24 05:38:21 +08:00
|
|
|
if (generateReport) {
|
2012-02-09 14:48:19 +08:00
|
|
|
for (llvm::SmallVector<SymbolRef, 2>::iterator
|
2012-02-12 05:02:40 +08:00
|
|
|
I = Errors.begin(), E = Errors.end(); I != E; ++I) {
|
|
|
|
reportLeak(*I, N, C);
|
2012-02-09 14:48:19 +08:00
|
|
|
}
|
2011-07-29 07:07:51 +08:00
|
|
|
}
|
2012-02-24 05:38:21 +08:00
|
|
|
C.addTransition(state->set<RegionState>(RS), N);
|
2009-11-13 15:25:27 +08:00
|
|
|
}
|
2009-11-17 15:54:15 +08:00
|
|
|
|
2012-02-12 05:02:40 +08:00
|
|
|
void MallocChecker::checkEndPath(CheckerContext &C) const {
|
|
|
|
ProgramStateRef state = C.getState();
|
2010-08-18 12:26:59 +08:00
|
|
|
RegionStateTy M = state->get<RegionState>();
|
2009-11-17 15:54:15 +08:00
|
|
|
|
2012-02-21 06:25:23 +08:00
|
|
|
// If inside inlined call, skip it.
|
|
|
|
if (C.getLocationContext()->getParent() != 0)
|
|
|
|
return;
|
|
|
|
|
2010-08-18 12:26:59 +08:00
|
|
|
for (RegionStateTy::iterator I = M.begin(), E = M.end(); I != E; ++I) {
|
2009-11-17 15:54:15 +08:00
|
|
|
RefState RS = I->second;
|
|
|
|
if (RS.isAllocated()) {
|
2012-02-12 05:02:40 +08:00
|
|
|
ExplodedNode *N = C.addTransition(state);
|
|
|
|
if (N)
|
|
|
|
reportLeak(I->first, N, C);
|
2009-11-17 15:54:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-17 16:58:18 +08:00
|
|
|
|
2012-02-09 07:16:56 +08:00
|
|
|
bool MallocChecker::checkEscape(SymbolRef Sym, const Stmt *S,
|
|
|
|
CheckerContext &C) const {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state = C.getState();
|
2009-11-17 16:58:18 +08:00
|
|
|
const RefState *RS = state->get<RegionState>(Sym);
|
|
|
|
if (!RS)
|
2012-02-09 07:16:56 +08:00
|
|
|
return false;
|
2009-11-17 16:58:18 +08:00
|
|
|
|
2012-02-09 07:16:56 +08:00
|
|
|
if (RS->isAllocated()) {
|
2009-11-17 16:58:18 +08:00
|
|
|
state = state->set<RegionState>(Sym, RefState::getEscaped(S));
|
2012-02-09 07:16:56 +08:00
|
|
|
C.addTransition(state);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-11-17 16:58:18 +08:00
|
|
|
|
2012-02-15 05:55:24 +08:00
|
|
|
void MallocChecker::checkPreStmt(const CallExpr *CE, CheckerContext &C) const {
|
|
|
|
if (isMemFunction(C.getCalleeDecl(CE), C.getASTContext()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Check use after free, when a freed pointer is passed to a call.
|
|
|
|
ProgramStateRef State = C.getState();
|
|
|
|
for (CallExpr::const_arg_iterator I = CE->arg_begin(),
|
|
|
|
E = CE->arg_end(); I != E; ++I) {
|
|
|
|
const Expr *A = *I;
|
|
|
|
if (A->getType().getTypePtr()->isAnyPointerType()) {
|
|
|
|
SymbolRef Sym = State->getSVal(A, C.getLocationContext()).getAsSymbol();
|
|
|
|
if (!Sym)
|
|
|
|
continue;
|
|
|
|
if (checkUseAfterFree(Sym, C, A))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-09 07:16:56 +08:00
|
|
|
void MallocChecker::checkPreStmt(const ReturnStmt *S, CheckerContext &C) const {
|
|
|
|
const Expr *E = S->getRetValue();
|
|
|
|
if (!E)
|
|
|
|
return;
|
2012-02-12 05:44:39 +08:00
|
|
|
|
|
|
|
// Check if we are returning a symbol.
|
2012-02-22 10:36:01 +08:00
|
|
|
SVal RetVal = C.getState()->getSVal(E, C.getLocationContext());
|
|
|
|
SymbolRef Sym = RetVal.getAsSymbol();
|
|
|
|
if (!Sym)
|
|
|
|
// If we are returning a field of the allocated struct or an array element,
|
|
|
|
// the callee could still free the memory.
|
|
|
|
// TODO: This logic should be a part of generic symbol escape callback.
|
|
|
|
if (const MemRegion *MR = RetVal.getAsRegion())
|
|
|
|
if (isa<FieldRegion>(MR) || isa<ElementRegion>(MR))
|
|
|
|
if (const SymbolicRegion *BMR =
|
|
|
|
dyn_cast<SymbolicRegion>(MR->getBaseRegion()))
|
|
|
|
Sym = BMR->getSymbol();
|
2012-02-09 07:16:56 +08:00
|
|
|
if (!Sym)
|
|
|
|
return;
|
|
|
|
|
2012-02-12 05:44:39 +08:00
|
|
|
// Check if we are returning freed memory.
|
2012-02-17 06:26:07 +08:00
|
|
|
if (checkUseAfterFree(Sym, C, E))
|
2012-02-12 07:46:36 +08:00
|
|
|
return;
|
2012-02-12 05:44:39 +08:00
|
|
|
|
2012-02-21 06:25:23 +08:00
|
|
|
// If this function body is not inlined, check if the symbol is escaping.
|
|
|
|
if (C.getLocationContext()->getParent() == 0)
|
|
|
|
checkEscape(Sym, E, C);
|
2009-11-17 16:58:18 +08:00
|
|
|
}
|
2009-12-31 14:13:07 +08:00
|
|
|
|
2012-02-09 07:16:56 +08:00
|
|
|
bool MallocChecker::checkUseAfterFree(SymbolRef Sym, CheckerContext &C,
|
|
|
|
const Stmt *S) const {
|
|
|
|
assert(Sym);
|
|
|
|
const RefState *RS = C.getState()->get<RegionState>(Sym);
|
|
|
|
if (RS && RS->isReleased()) {
|
2012-02-12 07:46:36 +08:00
|
|
|
if (ExplodedNode *N = C.generateSink()) {
|
2012-02-09 07:16:56 +08:00
|
|
|
if (!BT_UseFree)
|
2012-02-17 06:26:12 +08:00
|
|
|
BT_UseFree.reset(new BugType("Use-after-free", "Memory Error"));
|
2012-02-09 07:16:56 +08:00
|
|
|
|
2012-02-17 06:26:12 +08:00
|
|
|
BugReport *R = new BugReport(*BT_UseFree,
|
|
|
|
"Use of memory after it is freed",N);
|
2012-02-09 07:16:56 +08:00
|
|
|
if (S)
|
|
|
|
R->addRange(S->getSourceRange());
|
2012-02-09 14:25:51 +08:00
|
|
|
R->addVisitor(new MallocBugVisitor(Sym));
|
2012-02-09 07:16:56 +08:00
|
|
|
C.EmitReport(R);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-03-10 12:58:55 +08:00
|
|
|
// Check if the location is a freed symbolic region.
|
2011-10-06 08:43:15 +08:00
|
|
|
void MallocChecker::checkLocation(SVal l, bool isLoad, const Stmt *S,
|
|
|
|
CheckerContext &C) const {
|
2010-03-10 12:58:55 +08:00
|
|
|
SymbolRef Sym = l.getLocSymbolInBase();
|
2012-02-09 07:16:56 +08:00
|
|
|
if (Sym)
|
|
|
|
checkUseAfterFree(Sym, C);
|
2010-03-10 12:58:55 +08:00
|
|
|
}
|
2010-07-31 09:52:11 +08:00
|
|
|
|
2012-02-12 05:02:35 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Check various ways a symbol can be invalidated.
|
|
|
|
// TODO: This logic (the next 3 functions) is copied/similar to the
|
|
|
|
// RetainRelease checker. We might want to factor this out.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2010-07-31 09:52:11 +08:00
|
|
|
|
2012-02-12 05:02:35 +08:00
|
|
|
// Stop tracking symbols when a value escapes as a result of checkBind.
|
|
|
|
// A value escapes in three possible cases:
|
|
|
|
// (1) we are binding to something that is not a memory region.
|
|
|
|
// (2) we are binding to a memregion that does not have stack storage
|
|
|
|
// (3) we are binding to a memregion with stack storage that the store
|
|
|
|
// does not understand.
|
|
|
|
void MallocChecker::checkBind(SVal loc, SVal val, const Stmt *S,
|
|
|
|
CheckerContext &C) const {
|
|
|
|
// Are we storing to something that causes the value to "escape"?
|
|
|
|
bool escapes = true;
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state = C.getState();
|
2010-07-31 09:52:11 +08:00
|
|
|
|
2012-02-12 05:02:35 +08:00
|
|
|
if (loc::MemRegionVal *regionLoc = dyn_cast<loc::MemRegionVal>(&loc)) {
|
|
|
|
escapes = !regionLoc->getRegion()->hasStackStorage();
|
2010-07-31 09:52:11 +08:00
|
|
|
|
2012-02-12 05:02:35 +08:00
|
|
|
if (!escapes) {
|
|
|
|
// To test (3), generate a new state with the binding added. If it is
|
|
|
|
// the same state, then it escapes (since the store cannot represent
|
|
|
|
// the binding).
|
|
|
|
escapes = (state == (state->bindLoc(*regionLoc, val)));
|
2010-07-31 09:52:11 +08:00
|
|
|
}
|
2012-02-16 11:40:57 +08:00
|
|
|
if (!escapes) {
|
|
|
|
// Case 4: We do not currently model what happens when a symbol is
|
|
|
|
// assigned to a struct field, so be conservative here and let the symbol
|
|
|
|
// go. TODO: This could definitely be improved upon.
|
|
|
|
escapes = !isa<VarRegion>(regionLoc->getRegion());
|
|
|
|
}
|
2010-07-31 09:52:11 +08:00
|
|
|
}
|
2012-02-12 05:02:35 +08:00
|
|
|
|
|
|
|
// If our store can represent the binding and we aren't storing to something
|
|
|
|
// that doesn't have local storage then just return and have the simulation
|
|
|
|
// state continue as is.
|
|
|
|
if (!escapes)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Otherwise, find all symbols referenced by 'val' that we are tracking
|
|
|
|
// and stop tracking them.
|
|
|
|
state = state->scanReachableSymbols<StopTrackingCallback>(val).getState();
|
|
|
|
C.addTransition(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If a symbolic region is assumed to NULL (or another constant), stop tracking
|
|
|
|
// it - assuming that allocation failed on this path.
|
|
|
|
ProgramStateRef MallocChecker::evalAssume(ProgramStateRef state,
|
|
|
|
SVal Cond,
|
|
|
|
bool Assumption) const {
|
|
|
|
RegionStateTy RS = state->get<RegionState>();
|
|
|
|
for (RegionStateTy::iterator I = RS.begin(), E = RS.end(); I != E; ++I) {
|
|
|
|
// If the symbol is assumed to NULL or another constant, this will
|
|
|
|
// return an APSInt*.
|
|
|
|
if (state->getSymVal(I.getKey()))
|
|
|
|
state = state->remove<RegionState>(I.getKey());
|
|
|
|
}
|
|
|
|
|
2012-02-14 02:05:39 +08:00
|
|
|
// Realloc returns 0 when reallocation fails, which means that we should
|
|
|
|
// restore the state of the pointer being reallocated.
|
2012-02-15 08:11:25 +08:00
|
|
|
ReallocMap RP = state->get<ReallocPairs>();
|
|
|
|
for (ReallocMap::iterator I = RP.begin(), E = RP.end(); I != E; ++I) {
|
2012-02-14 02:05:39 +08:00
|
|
|
// If the symbol is assumed to NULL or another constant, this will
|
|
|
|
// return an APSInt*.
|
|
|
|
if (state->getSymVal(I.getKey())) {
|
2012-02-15 08:11:25 +08:00
|
|
|
SymbolRef ReallocSym = I.getData().ReallocatedSym;
|
|
|
|
const RefState *RS = state->get<RegionState>(ReallocSym);
|
2012-02-14 02:05:39 +08:00
|
|
|
if (RS) {
|
2012-02-15 08:11:25 +08:00
|
|
|
if (RS->isReleased() && ! I.getData().IsFreeOnFailure)
|
|
|
|
state = state->set<RegionState>(ReallocSym,
|
2012-02-14 02:05:39 +08:00
|
|
|
RefState::getAllocateUnchecked(RS->getStmt()));
|
|
|
|
}
|
|
|
|
state = state->remove<ReallocPairs>(I.getKey());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-12 05:02:35 +08:00
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2012-02-25 07:56:53 +08:00
|
|
|
// Check if the function is known to us. So, for example, we could
|
2012-02-15 05:55:24 +08:00
|
|
|
// conservatively assume it can free/reallocate it's pointer arguments.
|
|
|
|
// (We assume that the pointers cannot escape through calls to system
|
|
|
|
// functions not handled by this checker.)
|
2012-02-25 07:56:53 +08:00
|
|
|
bool MallocChecker::doesNotFreeMemory(const CallOrObjCMessage *Call,
|
|
|
|
ProgramStateRef State) const {
|
|
|
|
if (!Call)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// For now, assume that any C++ call can free memory.
|
|
|
|
// TODO: If we want to be more optimistic here, we'll need to make sure that
|
|
|
|
// regions escape to C++ containers. They seem to do that even now, but for
|
|
|
|
// mysterious reasons.
|
|
|
|
if (Call->isCXXCall())
|
|
|
|
return false;
|
2012-02-15 05:55:24 +08:00
|
|
|
|
2012-02-25 07:56:53 +08:00
|
|
|
const Decl *D = Call->getDecl();
|
|
|
|
if (!D)
|
2012-02-15 05:55:24 +08:00
|
|
|
return false;
|
2012-02-25 07:56:53 +08:00
|
|
|
|
|
|
|
ASTContext &ASTC = State->getStateManager().getContext();
|
|
|
|
|
|
|
|
// If it's one of the allocation functions we can reason about, we model
|
|
|
|
// it's behavior explicitly.
|
|
|
|
if (isa<FunctionDecl>(D) && isMemFunction(cast<FunctionDecl>(D), ASTC)) {
|
|
|
|
return true;
|
2012-02-15 05:55:24 +08:00
|
|
|
}
|
|
|
|
|
2012-02-25 07:56:53 +08:00
|
|
|
// If it's not a system call, assume it frees memory.
|
2012-02-15 05:55:24 +08:00
|
|
|
SourceManager &SM = ASTC.getSourceManager();
|
2012-02-25 07:56:53 +08:00
|
|
|
if (!SM.isInSystemHeader(D->getLocation()))
|
|
|
|
return false;
|
2012-02-23 09:05:27 +08:00
|
|
|
|
2012-02-28 09:54:22 +08:00
|
|
|
// Process C/ObjC functions.
|
2012-02-25 07:56:53 +08:00
|
|
|
if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) {
|
2012-02-23 09:05:27 +08:00
|
|
|
// White list the system functions whose arguments escape.
|
2012-02-25 07:56:53 +08:00
|
|
|
const IdentifierInfo *II = FD->getIdentifier();
|
2012-02-28 09:54:22 +08:00
|
|
|
if (!II)
|
|
|
|
return true;
|
|
|
|
StringRef FName = II->getName();
|
|
|
|
|
|
|
|
// White list thread local storage.
|
|
|
|
if (FName.equals("pthread_setspecific"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// White list the 'XXXNoCopy' ObjC Methods.
|
|
|
|
if (FName.endswith("NoCopy")) {
|
|
|
|
// Look for the deallocator argument. We know that the memory ownership
|
|
|
|
// is not transfered only if the deallocator argument is
|
|
|
|
// 'kCFAllocatorNull'.
|
|
|
|
for (unsigned i = 1; i < Call->getNumArgs(); ++i) {
|
|
|
|
const Expr *ArgE = Call->getArg(i)->IgnoreParenCasts();
|
|
|
|
if (const DeclRefExpr *DE = dyn_cast<DeclRefExpr>(ArgE)) {
|
|
|
|
StringRef DeallocatorName = DE->getFoundDecl()->getName();
|
|
|
|
if (DeallocatorName == "kCFAllocatorNull")
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2012-02-23 09:05:27 +08:00
|
|
|
}
|
|
|
|
|
2012-03-01 02:42:47 +08:00
|
|
|
// PR12101
|
|
|
|
// Many CoreFoundation and CoreGraphics might allow a tracked object
|
|
|
|
// to escape.
|
|
|
|
if (Call->isCFCGAllowingEscape(FName))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Associating streams with malloced buffers. The pointer can escape if
|
|
|
|
// 'closefn' is specified (and if that function does free memory).
|
|
|
|
// Currently, we do not inspect the 'closefn' function (PR12101).
|
|
|
|
if (FName == "funopen")
|
|
|
|
if (Call->getNumArgs() >= 4 && !Call->getArgSVal(4).isConstant(0))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Do not warn on pointers passed to 'setbuf' when used with std streams,
|
|
|
|
// these leaks might be intentional when setting the buffer for stdio.
|
|
|
|
// http://stackoverflow.com/questions/2671151/who-frees-setvbuf-buffer
|
|
|
|
if (FName == "setbuf" || FName =="setbuffer" ||
|
|
|
|
FName == "setlinebuf" || FName == "setvbuf") {
|
|
|
|
if (Call->getNumArgs() >= 1)
|
|
|
|
if (const DeclRefExpr *Arg =
|
|
|
|
dyn_cast<DeclRefExpr>(Call->getArg(0)->IgnoreParenCasts()))
|
|
|
|
if (const VarDecl *D = dyn_cast<VarDecl>(Arg->getDecl()))
|
|
|
|
if (D->getCanonicalDecl()->getName().find("std")
|
|
|
|
!= StringRef::npos)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// A bunch of other functions, which take ownership of a pointer (See retain
|
|
|
|
// release checker). Not all the parameters here are invalidated, but the
|
|
|
|
// Malloc checker cannot differentiate between them. The right way of doing
|
|
|
|
// this would be to implement a pointer escapes callback.
|
|
|
|
if (FName == "CVPixelBufferCreateWithBytes" ||
|
|
|
|
FName == "CGBitmapContextCreateWithData" ||
|
|
|
|
FName == "CVPixelBufferCreateWithPlanarBytes") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-23 09:05:27 +08:00
|
|
|
// Otherwise, assume that the function does not free memory.
|
2012-02-25 07:56:53 +08:00
|
|
|
// Most system calls, do not free the memory.
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Process ObjC functions.
|
|
|
|
} else if (const ObjCMethodDecl * ObjCD = dyn_cast<ObjCMethodDecl>(D)) {
|
|
|
|
Selector S = ObjCD->getSelector();
|
|
|
|
|
|
|
|
// White list the ObjC functions which do free memory.
|
|
|
|
// - Anything containing 'freeWhenDone' param set to 1.
|
|
|
|
// Ex: dataWithBytesNoCopy:length:freeWhenDone.
|
|
|
|
for (unsigned i = 1; i < S.getNumArgs(); ++i) {
|
|
|
|
if (S.getNameForSlot(i).equals("freeWhenDone")) {
|
|
|
|
if (Call->getArgSVal(i).isConstant(1))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, assume that the function does not free memory.
|
|
|
|
// Most system calls, do not free the memory.
|
|
|
|
return true;
|
2012-02-15 05:55:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, assume that the function can free memory.
|
2012-02-25 07:56:53 +08:00
|
|
|
return false;
|
|
|
|
|
2012-02-15 05:55:24 +08:00
|
|
|
}
|
|
|
|
|
2012-02-12 05:02:35 +08:00
|
|
|
// If the symbol we are tracking is invalidated, but not explicitly (ex: the &p
|
|
|
|
// escapes, when we are tracking p), do not track the symbol as we cannot reason
|
|
|
|
// about it anymore.
|
|
|
|
ProgramStateRef
|
2012-02-15 05:55:24 +08:00
|
|
|
MallocChecker::checkRegionChanges(ProgramStateRef State,
|
2012-02-12 05:02:35 +08:00
|
|
|
const StoreManager::InvalidatedSymbols *invalidated,
|
|
|
|
ArrayRef<const MemRegion *> ExplicitRegions,
|
2012-02-15 05:55:24 +08:00
|
|
|
ArrayRef<const MemRegion *> Regions,
|
|
|
|
const CallOrObjCMessage *Call) const {
|
2012-02-23 09:05:27 +08:00
|
|
|
if (!invalidated || invalidated->empty())
|
2012-02-15 05:55:24 +08:00
|
|
|
return State;
|
2012-02-12 05:02:35 +08:00
|
|
|
llvm::SmallPtrSet<SymbolRef, 8> WhitelistedSymbols;
|
2012-02-15 05:55:24 +08:00
|
|
|
|
|
|
|
// If it's a call which might free or reallocate memory, we assume that all
|
2012-02-25 07:56:53 +08:00
|
|
|
// regions (explicit and implicit) escaped.
|
|
|
|
|
|
|
|
// Otherwise, whitelist explicit pointers; we still can track them.
|
|
|
|
if (!Call || doesNotFreeMemory(Call, State)) {
|
2012-02-15 05:55:24 +08:00
|
|
|
for (ArrayRef<const MemRegion *>::iterator I = ExplicitRegions.begin(),
|
|
|
|
E = ExplicitRegions.end(); I != E; ++I) {
|
|
|
|
if (const SymbolicRegion *R = (*I)->StripCasts()->getAs<SymbolicRegion>())
|
|
|
|
WhitelistedSymbols.insert(R->getSymbol());
|
|
|
|
}
|
2012-02-12 05:02:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (StoreManager::InvalidatedSymbols::const_iterator I=invalidated->begin(),
|
|
|
|
E = invalidated->end(); I!=E; ++I) {
|
|
|
|
SymbolRef sym = *I;
|
|
|
|
if (WhitelistedSymbols.count(sym))
|
|
|
|
continue;
|
2012-02-15 05:55:24 +08:00
|
|
|
// The symbol escaped.
|
|
|
|
if (const RefState *RS = State->get<RegionState>(sym))
|
|
|
|
State = State->set<RegionState>(sym, RefState::getEscaped(RS->getStmt()));
|
2012-02-12 05:02:35 +08:00
|
|
|
}
|
2012-02-15 05:55:24 +08:00
|
|
|
return State;
|
2010-07-31 09:52:11 +08:00
|
|
|
}
|
2011-02-28 09:26:35 +08:00
|
|
|
|
2012-02-09 14:25:51 +08:00
|
|
|
PathDiagnosticPiece *
|
|
|
|
MallocChecker::MallocBugVisitor::VisitNode(const ExplodedNode *N,
|
|
|
|
const ExplodedNode *PrevN,
|
|
|
|
BugReporterContext &BRC,
|
|
|
|
BugReport &BR) {
|
|
|
|
const RefState *RS = N->getState()->get<RegionState>(Sym);
|
|
|
|
const RefState *RSPrev = PrevN->getState()->get<RegionState>(Sym);
|
|
|
|
if (!RS && !RSPrev)
|
|
|
|
return 0;
|
|
|
|
|
2012-02-17 06:26:07 +08:00
|
|
|
const Stmt *S = 0;
|
|
|
|
const char *Msg = 0;
|
|
|
|
|
|
|
|
// Retrieve the associated statement.
|
|
|
|
ProgramPoint ProgLoc = N->getLocation();
|
|
|
|
if (isa<StmtPoint>(ProgLoc))
|
|
|
|
S = cast<StmtPoint>(ProgLoc).getStmt();
|
|
|
|
// If an assumption was made on a branch, it should be caught
|
|
|
|
// here by looking at the state transition.
|
|
|
|
if (isa<BlockEdge>(ProgLoc)) {
|
|
|
|
const CFGBlock *srcBlk = cast<BlockEdge>(ProgLoc).getSrc();
|
|
|
|
S = srcBlk->getTerminator();
|
|
|
|
}
|
|
|
|
if (!S)
|
2012-02-09 14:25:51 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Find out if this is an interesting point and what is the kind.
|
2012-02-17 06:26:07 +08:00
|
|
|
if (Mode == Normal) {
|
|
|
|
if (isAllocated(RS, RSPrev, S))
|
|
|
|
Msg = "Memory is allocated";
|
|
|
|
else if (isReleased(RS, RSPrev, S))
|
|
|
|
Msg = "Memory is released";
|
|
|
|
else if (isReallocFailedCheck(RS, RSPrev, S)) {
|
|
|
|
Mode = ReallocationFailed;
|
|
|
|
Msg = "Reallocation failed";
|
|
|
|
}
|
|
|
|
|
|
|
|
// We are in a special mode if a reallocation failed later in the path.
|
|
|
|
} else if (Mode == ReallocationFailed) {
|
|
|
|
// Generate a special diagnostic for the first realloc we find.
|
|
|
|
if (!isAllocated(RS, RSPrev, S) && !isReleased(RS, RSPrev, S))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Check that the name of the function is realloc.
|
|
|
|
const CallExpr *CE = dyn_cast<CallExpr>(S);
|
|
|
|
if (!CE)
|
|
|
|
return 0;
|
|
|
|
const FunctionDecl *funDecl = CE->getDirectCallee();
|
|
|
|
if (!funDecl)
|
|
|
|
return 0;
|
|
|
|
StringRef FunName = funDecl->getName();
|
|
|
|
if (!(FunName.equals("realloc") || FunName.equals("reallocf")))
|
|
|
|
return 0;
|
|
|
|
Msg = "Attempt to reallocate memory";
|
|
|
|
Mode = Normal;
|
|
|
|
}
|
|
|
|
|
2012-02-09 14:25:51 +08:00
|
|
|
if (!Msg)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Generate the extra diagnostic.
|
2012-02-17 06:26:07 +08:00
|
|
|
PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
|
2012-02-09 14:25:51 +08:00
|
|
|
N->getLocationContext());
|
|
|
|
return new PathDiagnosticEventPiece(Pos, Msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-09 07:16:52 +08:00
|
|
|
#define REGISTER_CHECKER(name) \
|
|
|
|
void ento::register##name(CheckerManager &mgr) {\
|
2012-02-18 06:35:31 +08:00
|
|
|
registerCStringCheckerBasic(mgr); \
|
2012-02-09 07:16:52 +08:00
|
|
|
mgr.registerChecker<MallocChecker>()->Filter.C##name = true;\
|
2011-02-28 09:26:35 +08:00
|
|
|
}
|
2012-02-09 07:16:52 +08:00
|
|
|
|
|
|
|
REGISTER_CHECKER(MallocPessimistic)
|
|
|
|
REGISTER_CHECKER(MallocOptimistic)
|