2008-03-27 15:25:52 +08:00
|
|
|
//== BasicObjCFoundationChecks.cpp - Simple Apple-Foundation checks -*- 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 BasicObjCFoundationChecks, a class that encapsulates
|
|
|
|
// a set of simple checks to run on Objective-C code using Apple's Foundation
|
|
|
|
// classes.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-03-28 01:17:22 +08:00
|
|
|
#include "BasicObjCFoundationChecks.h"
|
|
|
|
|
2011-02-16 09:40:52 +08:00
|
|
|
#include "ClangSACheckers.h"
|
2011-02-10 09:03:03 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerVisitor.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/GRState.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerVisitor.h"
|
2010-12-24 03:38:26 +08:00
|
|
|
#include "clang/StaticAnalyzer/Checkers/LocalCheckers.h"
|
2008-08-11 13:35:13 +08:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2008-03-27 15:25:52 +08:00
|
|
|
#include "clang/AST/Expr.h"
|
2008-05-30 05:12:08 +08:00
|
|
|
#include "clang/AST/ExprObjC.h"
|
2008-03-27 15:25:52 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
|
|
|
|
using namespace clang;
|
2010-12-23 15:20:52 +08:00
|
|
|
using namespace ento;
|
2008-04-04 01:57:38 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
namespace {
|
|
|
|
class APIMisuse : public BugType {
|
|
|
|
public:
|
|
|
|
APIMisuse(const char* name) : BugType(name, "API Misuse (Apple)") {}
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Utility functions.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-01-25 08:03:53 +08:00
|
|
|
static const ObjCInterfaceType* GetReceiverType(const ObjCMessage &msg) {
|
|
|
|
if (const ObjCInterfaceDecl *ID = msg.getReceiverInterface())
|
2011-01-25 08:03:45 +08:00
|
|
|
return ID->getTypeForDecl()->getAs<ObjCInterfaceType>();
|
2008-05-01 06:48:21 +08:00
|
|
|
return NULL;
|
2008-04-04 01:57:38 +08:00
|
|
|
}
|
|
|
|
|
2011-01-25 08:03:53 +08:00
|
|
|
static const char* GetReceiverNameType(const ObjCMessage &msg) {
|
|
|
|
if (const ObjCInterfaceType *ReceiverType = GetReceiverType(msg))
|
2009-10-19 04:26:12 +08:00
|
|
|
return ReceiverType->getDecl()->getIdentifier()->getNameStart();
|
|
|
|
return NULL;
|
2008-04-04 01:57:38 +08:00
|
|
|
}
|
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
static bool isNSString(llvm::StringRef ClassName) {
|
|
|
|
return ClassName == "NSString" || ClassName == "NSMutableString";
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
static inline bool isNil(SVal X) {
|
|
|
|
return isa<loc::ConcreteInt>(X);
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// NilArgChecker - Check for prohibited nil arguments to ObjC method calls.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2008-03-27 15:25:52 +08:00
|
|
|
|
2010-10-23 00:33:16 +08:00
|
|
|
namespace {
|
|
|
|
class NilArgChecker : public CheckerVisitor<NilArgChecker> {
|
|
|
|
APIMisuse *BT;
|
2011-01-25 08:03:53 +08:00
|
|
|
void WarnNilArg(CheckerContext &C, const ObjCMessage &msg, unsigned Arg);
|
2010-10-23 00:33:16 +08:00
|
|
|
public:
|
|
|
|
NilArgChecker() : BT(0) {}
|
|
|
|
static void *getTag() { static int x = 0; return &x; }
|
2011-01-25 08:03:53 +08:00
|
|
|
void preVisitObjCMessage(CheckerContext &C, ObjCMessage msg);
|
2010-10-23 00:33:16 +08:00
|
|
|
};
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
void NilArgChecker::WarnNilArg(CheckerContext &C,
|
2011-01-25 08:03:53 +08:00
|
|
|
const ObjCMessage &msg,
|
2010-10-21 07:38:56 +08:00
|
|
|
unsigned int Arg)
|
|
|
|
{
|
|
|
|
if (!BT)
|
|
|
|
BT = new APIMisuse("nil argument");
|
|
|
|
|
2010-12-21 05:19:09 +08:00
|
|
|
if (ExplodedNode *N = C.generateSink()) {
|
2010-10-21 07:38:56 +08:00
|
|
|
llvm::SmallString<128> sbuf;
|
|
|
|
llvm::raw_svector_ostream os(sbuf);
|
2011-01-25 08:03:53 +08:00
|
|
|
os << "Argument to '" << GetReceiverNameType(msg) << "' method '"
|
|
|
|
<< msg.getSelector().getAsString() << "' cannot be nil";
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-30 02:03:28 +08:00
|
|
|
RangedBugReport *R = new RangedBugReport(*BT, os.str(), N);
|
2011-01-25 08:03:53 +08:00
|
|
|
R->addRange(msg.getArgSourceRange(Arg));
|
2010-10-21 07:38:56 +08:00
|
|
|
C.EmitReport(R);
|
2008-04-04 01:57:38 +08:00
|
|
|
}
|
2008-03-28 01:17:22 +08:00
|
|
|
}
|
|
|
|
|
2011-01-25 08:03:53 +08:00
|
|
|
void NilArgChecker::preVisitObjCMessage(CheckerContext &C,
|
|
|
|
ObjCMessage msg)
|
2010-10-21 07:38:56 +08:00
|
|
|
{
|
2011-01-25 08:03:53 +08:00
|
|
|
const ObjCInterfaceType *ReceiverType = GetReceiverType(msg);
|
2008-03-27 15:25:52 +08:00
|
|
|
if (!ReceiverType)
|
2010-10-21 07:38:56 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (isNSString(ReceiverType->getDecl()->getIdentifier()->getName())) {
|
2011-01-25 08:03:53 +08:00
|
|
|
Selector S = msg.getSelector();
|
2010-10-21 07:38:56 +08:00
|
|
|
|
|
|
|
if (S.isUnarySelector())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// FIXME: This is going to be really slow doing these checks with
|
|
|
|
// lexical comparisons.
|
|
|
|
|
|
|
|
std::string NameStr = S.getAsString();
|
|
|
|
llvm::StringRef Name(NameStr);
|
|
|
|
assert(!Name.empty());
|
|
|
|
|
|
|
|
// FIXME: Checking for initWithFormat: will not work in most cases
|
|
|
|
// yet because [NSString alloc] returns id, not NSString*. We will
|
|
|
|
// need support for tracking expected-type information in the analyzer
|
|
|
|
// to find these errors.
|
|
|
|
if (Name == "caseInsensitiveCompare:" ||
|
|
|
|
Name == "compare:" ||
|
|
|
|
Name == "compare:options:" ||
|
|
|
|
Name == "compare:options:range:" ||
|
|
|
|
Name == "compare:options:range:locale:" ||
|
|
|
|
Name == "componentsSeparatedByCharactersInSet:" ||
|
|
|
|
Name == "initWithFormat:") {
|
2011-01-25 08:03:53 +08:00
|
|
|
if (isNil(msg.getArgSVal(0, C.getState())))
|
|
|
|
WarnNilArg(C, msg, 0);
|
2010-10-21 07:38:56 +08:00
|
|
|
}
|
2008-03-28 06:05:32 +08:00
|
|
|
}
|
2008-03-27 15:25:52 +08:00
|
|
|
}
|
2008-06-27 07:59:48 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Error reporting.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
2010-10-21 07:38:56 +08:00
|
|
|
class CFNumberCreateChecker : public CheckerVisitor<CFNumberCreateChecker> {
|
2009-02-05 07:49:09 +08:00
|
|
|
APIMisuse* BT;
|
2008-06-27 07:59:48 +08:00
|
|
|
IdentifierInfo* II;
|
|
|
|
public:
|
2010-10-21 07:38:56 +08:00
|
|
|
CFNumberCreateChecker() : BT(0), II(0) {}
|
|
|
|
~CFNumberCreateChecker() {}
|
|
|
|
static void *getTag() { static int x = 0; return &x; }
|
|
|
|
void PreVisitCallExpr(CheckerContext &C, const CallExpr *CE);
|
2008-06-27 07:59:48 +08:00
|
|
|
private:
|
2010-10-21 07:38:56 +08:00
|
|
|
void EmitError(const TypedRegion* R, const Expr* Ex,
|
2009-09-09 23:08:12 +08:00
|
|
|
uint64_t SourceSize, uint64_t TargetSize, uint64_t NumberKind);
|
2008-06-27 07:59:48 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
enum CFNumberType {
|
|
|
|
kCFNumberSInt8Type = 1,
|
|
|
|
kCFNumberSInt16Type = 2,
|
|
|
|
kCFNumberSInt32Type = 3,
|
|
|
|
kCFNumberSInt64Type = 4,
|
|
|
|
kCFNumberFloat32Type = 5,
|
|
|
|
kCFNumberFloat64Type = 6,
|
|
|
|
kCFNumberCharType = 7,
|
|
|
|
kCFNumberShortType = 8,
|
|
|
|
kCFNumberIntType = 9,
|
|
|
|
kCFNumberLongType = 10,
|
|
|
|
kCFNumberLongLongType = 11,
|
|
|
|
kCFNumberFloatType = 12,
|
|
|
|
kCFNumberDoubleType = 13,
|
|
|
|
kCFNumberCFIndexType = 14,
|
|
|
|
kCFNumberNSIntegerType = 15,
|
|
|
|
kCFNumberCGFloatType = 16
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
template<typename T>
|
|
|
|
class Optional {
|
|
|
|
bool IsKnown;
|
|
|
|
T Val;
|
|
|
|
public:
|
|
|
|
Optional() : IsKnown(false), Val(0) {}
|
|
|
|
Optional(const T& val) : IsKnown(true), Val(val) {}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
bool isKnown() const { return IsKnown; }
|
|
|
|
|
|
|
|
const T& getValue() const {
|
|
|
|
assert (isKnown());
|
|
|
|
return Val;
|
|
|
|
}
|
|
|
|
|
|
|
|
operator const T&() const {
|
|
|
|
return getValue();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static Optional<uint64_t> GetCFNumberSize(ASTContext& Ctx, uint64_t i) {
|
2009-12-24 01:49:57 +08:00
|
|
|
static const unsigned char FixedSize[] = { 8, 16, 32, 64, 32, 64 };
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
if (i < kCFNumberCharType)
|
|
|
|
return FixedSize[i-1];
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
QualType T;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
switch (i) {
|
|
|
|
case kCFNumberCharType: T = Ctx.CharTy; break;
|
|
|
|
case kCFNumberShortType: T = Ctx.ShortTy; break;
|
|
|
|
case kCFNumberIntType: T = Ctx.IntTy; break;
|
|
|
|
case kCFNumberLongType: T = Ctx.LongTy; break;
|
|
|
|
case kCFNumberLongLongType: T = Ctx.LongLongTy; break;
|
|
|
|
case kCFNumberFloatType: T = Ctx.FloatTy; break;
|
|
|
|
case kCFNumberDoubleType: T = Ctx.DoubleTy; break;
|
|
|
|
case kCFNumberCFIndexType:
|
|
|
|
case kCFNumberNSIntegerType:
|
|
|
|
case kCFNumberCGFloatType:
|
2009-09-09 23:08:12 +08:00
|
|
|
// FIXME: We need a way to map from names to Type*.
|
2008-06-27 07:59:48 +08:00
|
|
|
default:
|
|
|
|
return Optional<uint64_t>();
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
return Ctx.getTypeSize(T);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static const char* GetCFNumberTypeStr(uint64_t i) {
|
|
|
|
static const char* Names[] = {
|
|
|
|
"kCFNumberSInt8Type",
|
|
|
|
"kCFNumberSInt16Type",
|
|
|
|
"kCFNumberSInt32Type",
|
|
|
|
"kCFNumberSInt64Type",
|
|
|
|
"kCFNumberFloat32Type",
|
|
|
|
"kCFNumberFloat64Type",
|
|
|
|
"kCFNumberCharType",
|
|
|
|
"kCFNumberShortType",
|
|
|
|
"kCFNumberIntType",
|
|
|
|
"kCFNumberLongType",
|
|
|
|
"kCFNumberLongLongType",
|
|
|
|
"kCFNumberFloatType",
|
|
|
|
"kCFNumberDoubleType",
|
|
|
|
"kCFNumberCFIndexType",
|
|
|
|
"kCFNumberNSIntegerType",
|
|
|
|
"kCFNumberCGFloatType"
|
|
|
|
};
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
return i <= kCFNumberCGFloatType ? Names[i-1] : "Invalid CFNumberType";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
void CFNumberCreateChecker::PreVisitCallExpr(CheckerContext &C,
|
|
|
|
const CallExpr *CE)
|
|
|
|
{
|
2009-09-09 23:08:12 +08:00
|
|
|
const Expr* Callee = CE->getCallee();
|
2010-10-21 07:38:56 +08:00
|
|
|
const GRState *state = C.getState();
|
|
|
|
SVal CallV = state->getSVal(Callee);
|
2009-04-20 13:24:46 +08:00
|
|
|
const FunctionDecl* FD = CallV.getAsFunctionDecl();
|
2008-06-27 07:59:48 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
if (!FD)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ASTContext &Ctx = C.getASTContext();
|
|
|
|
if (!II)
|
|
|
|
II = &Ctx.Idents.get("CFNumberCreate");
|
|
|
|
|
|
|
|
if (FD->getIdentifier() != II || CE->getNumArgs() != 3)
|
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
// Get the value of the "theType" argument.
|
2010-10-21 07:38:56 +08:00
|
|
|
SVal TheTypeVal = state->getSVal(CE->getArg(1));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
// FIXME: We really should allow ranges of valid theType values, and
|
|
|
|
// bifurcate the state appropriately.
|
2008-10-17 13:57:07 +08:00
|
|
|
nonloc::ConcreteInt* V = dyn_cast<nonloc::ConcreteInt>(&TheTypeVal);
|
2008-06-27 07:59:48 +08:00
|
|
|
if (!V)
|
2010-10-21 07:38:56 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
uint64_t NumberKind = V->getValue().getLimitedValue();
|
|
|
|
Optional<uint64_t> TargetSize = GetCFNumberSize(Ctx, NumberKind);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
// FIXME: In some cases we can emit an error.
|
|
|
|
if (!TargetSize.isKnown())
|
2010-10-21 07:38:56 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
// Look at the value of the integer being passed by reference. Essentially
|
|
|
|
// we want to catch cases where the value passed in is not equal to the
|
|
|
|
// size of the type being created.
|
2010-10-21 07:38:56 +08:00
|
|
|
SVal TheValueExpr = state->getSVal(CE->getArg(2));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
// FIXME: Eventually we should handle arbitrary locations. We can do this
|
|
|
|
// by having an enhanced memory model that does low-level typing.
|
2008-10-17 13:57:07 +08:00
|
|
|
loc::MemRegionVal* LV = dyn_cast<loc::MemRegionVal>(&TheValueExpr);
|
2008-06-27 07:59:48 +08:00
|
|
|
if (!LV)
|
2010-10-21 07:38:56 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-10 10:17:20 +08:00
|
|
|
const TypedRegion* R = dyn_cast<TypedRegion>(LV->StripCasts());
|
2009-07-30 02:17:40 +08:00
|
|
|
if (!R)
|
2010-10-21 07:38:56 +08:00
|
|
|
return;
|
2009-07-30 02:17:40 +08:00
|
|
|
|
2010-08-11 14:10:55 +08:00
|
|
|
QualType T = Ctx.getCanonicalType(R->getValueType());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
// FIXME: If the pointee isn't an integer type, should we flag a warning?
|
|
|
|
// People can do weird stuff with pointers.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
if (!T->isIntegerType())
|
2010-10-21 07:38:56 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
uint64_t SourceSize = Ctx.getTypeSize(T);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-06-27 07:59:48 +08:00
|
|
|
// CHECK: is SourceSize == TargetSize
|
|
|
|
if (SourceSize == TargetSize)
|
2010-10-21 07:38:56 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
// Generate an error. Only generate a sink if 'SourceSize < TargetSize';
|
|
|
|
// otherwise generate a regular node.
|
|
|
|
//
|
2008-06-27 07:59:48 +08:00
|
|
|
// FIXME: We can actually create an abstract "CFNumber" object that has
|
|
|
|
// the bits initialized to the provided values.
|
2010-10-21 07:38:56 +08:00
|
|
|
//
|
2010-12-21 05:19:09 +08:00
|
|
|
if (ExplodedNode *N = SourceSize < TargetSize ? C.generateSink()
|
|
|
|
: C.generateNode()) {
|
2010-10-21 07:38:56 +08:00
|
|
|
llvm::SmallString<128> sbuf;
|
|
|
|
llvm::raw_svector_ostream os(sbuf);
|
|
|
|
|
|
|
|
os << (SourceSize == 8 ? "An " : "A ")
|
|
|
|
<< SourceSize << " bit integer is used to initialize a CFNumber "
|
|
|
|
"object that represents "
|
|
|
|
<< (TargetSize == 8 ? "an " : "a ")
|
|
|
|
<< TargetSize << " bit integer. ";
|
|
|
|
|
|
|
|
if (SourceSize < TargetSize)
|
|
|
|
os << (TargetSize - SourceSize)
|
|
|
|
<< " bits of the CFNumber value will be garbage." ;
|
|
|
|
else
|
|
|
|
os << (SourceSize - TargetSize)
|
|
|
|
<< " bits of the input integer will be lost.";
|
2008-06-27 07:59:48 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
if (!BT)
|
|
|
|
BT = new APIMisuse("Bad use of CFNumberCreate");
|
|
|
|
|
|
|
|
RangedBugReport *report = new RangedBugReport(*BT, os.str(), N);
|
|
|
|
report->addRange(CE->getArg(2)->getSourceRange());
|
|
|
|
C.EmitReport(report);
|
|
|
|
}
|
2008-06-27 07:59:48 +08:00
|
|
|
}
|
|
|
|
|
2009-07-14 08:43:42 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-07-06 10:34:42 +08:00
|
|
|
// CFRetain/CFRelease checking for null arguments.
|
2009-07-14 08:43:42 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
2010-07-06 10:34:42 +08:00
|
|
|
class CFRetainReleaseChecker : public CheckerVisitor<CFRetainReleaseChecker> {
|
2009-07-14 08:43:42 +08:00
|
|
|
APIMisuse *BT;
|
|
|
|
IdentifierInfo *Retain, *Release;
|
|
|
|
public:
|
2010-10-21 07:38:56 +08:00
|
|
|
CFRetainReleaseChecker(): BT(0), Retain(0), Release(0) {}
|
2010-07-06 10:34:42 +08:00
|
|
|
static void *getTag() { static int x = 0; return &x; }
|
|
|
|
void PreVisitCallExpr(CheckerContext& C, const CallExpr* CE);
|
2009-07-14 08:43:42 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
|
2010-07-06 10:34:42 +08:00
|
|
|
void CFRetainReleaseChecker::PreVisitCallExpr(CheckerContext& C,
|
|
|
|
const CallExpr* CE) {
|
2009-07-14 08:43:42 +08:00
|
|
|
// If the CallExpr doesn't have exactly 1 argument just give up checking.
|
|
|
|
if (CE->getNumArgs() != 1)
|
2010-07-06 10:34:42 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-07-06 10:34:42 +08:00
|
|
|
// Get the function declaration of the callee.
|
|
|
|
const GRState* state = C.getState();
|
2010-02-09 00:18:51 +08:00
|
|
|
SVal X = state->getSVal(CE->getCallee());
|
2009-07-14 08:43:42 +08:00
|
|
|
const FunctionDecl* FD = X.getAsFunctionDecl();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-14 08:43:42 +08:00
|
|
|
if (!FD)
|
2010-07-06 10:34:42 +08:00
|
|
|
return;
|
2010-10-21 07:38:56 +08:00
|
|
|
|
|
|
|
if (!BT) {
|
|
|
|
ASTContext &Ctx = C.getASTContext();
|
|
|
|
Retain = &Ctx.Idents.get("CFRetain");
|
|
|
|
Release = &Ctx.Idents.get("CFRelease");
|
|
|
|
BT = new APIMisuse("null passed to CFRetain/CFRelease");
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-07-06 10:34:42 +08:00
|
|
|
// Check if we called CFRetain/CFRelease.
|
2009-09-09 23:08:12 +08:00
|
|
|
const IdentifierInfo *FuncII = FD->getIdentifier();
|
2009-07-14 08:43:42 +08:00
|
|
|
if (!(FuncII == Retain || FuncII == Release))
|
2010-07-06 10:34:42 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
// FIXME: The rest of this just checks that the argument is non-null.
|
|
|
|
// It should probably be refactored and combined with AttrNonNullChecker.
|
|
|
|
|
|
|
|
// Get the argument's value.
|
|
|
|
const Expr *Arg = CE->getArg(0);
|
|
|
|
SVal ArgVal = state->getSVal(Arg);
|
|
|
|
DefinedSVal *DefArgVal = dyn_cast<DefinedSVal>(&ArgVal);
|
|
|
|
if (!DefArgVal)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Get a NULL value.
|
2010-12-02 15:49:45 +08:00
|
|
|
SValBuilder &svalBuilder = C.getSValBuilder();
|
|
|
|
DefinedSVal zero = cast<DefinedSVal>(svalBuilder.makeZeroVal(Arg->getType()));
|
2010-07-06 10:34:42 +08:00
|
|
|
|
|
|
|
// Make an expression asserting that they're equal.
|
2010-12-02 15:49:45 +08:00
|
|
|
DefinedOrUnknownSVal ArgIsNull = svalBuilder.evalEQ(state, zero, *DefArgVal);
|
2010-07-06 10:34:42 +08:00
|
|
|
|
|
|
|
// Are they equal?
|
|
|
|
const GRState *stateTrue, *stateFalse;
|
2010-12-02 06:16:56 +08:00
|
|
|
llvm::tie(stateTrue, stateFalse) = state->assume(ArgIsNull);
|
2010-07-06 10:34:42 +08:00
|
|
|
|
|
|
|
if (stateTrue && !stateFalse) {
|
2010-12-21 05:19:09 +08:00
|
|
|
ExplodedNode *N = C.generateSink(stateTrue);
|
2010-07-06 10:34:42 +08:00
|
|
|
if (!N)
|
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-14 08:43:42 +08:00
|
|
|
const char *description = (FuncII == Retain)
|
|
|
|
? "Null pointer argument in call to CFRetain"
|
|
|
|
: "Null pointer argument in call to CFRelease";
|
|
|
|
|
2010-07-06 10:34:42 +08:00
|
|
|
EnhancedBugReport *report = new EnhancedBugReport(*BT, description, N);
|
|
|
|
report->addRange(Arg->getSourceRange());
|
|
|
|
report->addVisitorCreator(bugreporter::registerTrackNullOrUndefValue, Arg);
|
|
|
|
C.EmitReport(report);
|
|
|
|
return;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-07-06 10:34:42 +08:00
|
|
|
// From here on, we know the argument is non-null.
|
|
|
|
C.addTransition(stateFalse);
|
2009-07-14 08:43:42 +08:00
|
|
|
}
|
|
|
|
|
2009-11-20 13:27:05 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Check for sending 'retain', 'release', or 'autorelease' directly to a Class.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
2010-10-21 07:38:56 +08:00
|
|
|
class ClassReleaseChecker : public CheckerVisitor<ClassReleaseChecker> {
|
2009-11-20 13:27:05 +08:00
|
|
|
Selector releaseS;
|
|
|
|
Selector retainS;
|
|
|
|
Selector autoreleaseS;
|
|
|
|
Selector drainS;
|
|
|
|
BugType *BT;
|
|
|
|
public:
|
2010-10-21 07:38:56 +08:00
|
|
|
ClassReleaseChecker()
|
|
|
|
: BT(0) {}
|
2009-11-20 13:27:05 +08:00
|
|
|
|
|
|
|
static void *getTag() { static int x = 0; return &x; }
|
|
|
|
|
2011-01-25 08:03:53 +08:00
|
|
|
void preVisitObjCMessage(CheckerContext &C, ObjCMessage msg);
|
2009-11-20 13:27:05 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-01-25 08:03:53 +08:00
|
|
|
void ClassReleaseChecker::preVisitObjCMessage(CheckerContext &C,
|
|
|
|
ObjCMessage msg) {
|
2010-10-21 07:38:56 +08:00
|
|
|
|
|
|
|
if (!BT) {
|
|
|
|
BT = new APIMisuse("message incorrectly sent to class instead of class "
|
|
|
|
"instance");
|
|
|
|
|
|
|
|
ASTContext &Ctx = C.getASTContext();
|
|
|
|
releaseS = GetNullarySelector("release", Ctx);
|
|
|
|
retainS = GetNullarySelector("retain", Ctx);
|
|
|
|
autoreleaseS = GetNullarySelector("autorelease", Ctx);
|
|
|
|
drainS = GetNullarySelector("drain", Ctx);
|
|
|
|
}
|
|
|
|
|
2011-01-25 08:03:53 +08:00
|
|
|
if (msg.isInstanceMessage())
|
2009-11-20 13:27:05 +08:00
|
|
|
return;
|
2011-01-25 08:03:53 +08:00
|
|
|
const ObjCInterfaceDecl *Class = msg.getReceiverInterface();
|
|
|
|
assert(Class);
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
llvm-svn: 101972
2010-04-21 08:45:42 +08:00
|
|
|
|
2011-01-25 08:03:53 +08:00
|
|
|
Selector S = msg.getSelector();
|
2009-11-20 18:03:00 +08:00
|
|
|
if (!(S == releaseS || S == retainS || S == autoreleaseS || S == drainS))
|
2009-11-20 13:27:05 +08:00
|
|
|
return;
|
|
|
|
|
2010-12-21 05:19:09 +08:00
|
|
|
if (ExplodedNode *N = C.generateNode()) {
|
2010-10-21 07:38:56 +08:00
|
|
|
llvm::SmallString<200> buf;
|
|
|
|
llvm::raw_svector_ostream os(buf);
|
2009-11-20 13:27:05 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
os << "The '" << S.getAsString() << "' message should be sent to instances "
|
|
|
|
"of class '" << Class->getName()
|
|
|
|
<< "' and not the class directly";
|
2009-11-20 13:27:05 +08:00
|
|
|
|
2010-10-21 07:38:56 +08:00
|
|
|
RangedBugReport *report = new RangedBugReport(*BT, os.str(), N);
|
2011-01-25 08:03:53 +08:00
|
|
|
report->addRange(msg.getSourceRange());
|
2010-10-21 07:38:56 +08:00
|
|
|
C.EmitReport(report);
|
|
|
|
}
|
2009-11-20 13:27:05 +08:00
|
|
|
}
|
|
|
|
|
2008-07-23 00:21:24 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Check registration.
|
2009-07-14 08:43:42 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2011-02-16 09:40:52 +08:00
|
|
|
|
|
|
|
void ento::registerNilArgChecker(ExprEngine& Eng) {
|
2010-10-21 07:38:56 +08:00
|
|
|
Eng.registerCheck(new NilArgChecker());
|
2011-02-16 09:40:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ento::registerCFNumberCreateChecker(ExprEngine& Eng) {
|
2010-10-21 07:38:56 +08:00
|
|
|
Eng.registerCheck(new CFNumberCreateChecker());
|
2011-02-16 09:40:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ento::registerCFRetainReleaseChecker(ExprEngine& Eng) {
|
2010-10-21 07:38:56 +08:00
|
|
|
Eng.registerCheck(new CFRetainReleaseChecker());
|
2011-02-16 09:40:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ento::registerClassReleaseChecker(ExprEngine& Eng) {
|
2010-10-21 07:38:56 +08:00
|
|
|
Eng.registerCheck(new ClassReleaseChecker());
|
2008-07-23 00:21:24 +08:00
|
|
|
}
|