2009-11-04 12:24:16 +08:00
|
|
|
//===--- UndefinedAssignmentChecker.h ---------------------------*- C++ -*--==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-02-28 09:27:37 +08:00
|
|
|
// This defines UndefinedAssignmentChecker, a builtin check in ExprEngine that
|
2009-11-04 12:24:16 +08:00
|
|
|
// checks for assigning undefined values.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-02-28 09:27:37 +08:00
|
|
|
#include "ClangSACheckers.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
2011-03-01 09:16:21 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/Checker.h"
|
2011-02-28 09:27:37 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
2009-11-04 12:24:16 +08:00
|
|
|
|
|
|
|
using namespace clang;
|
2010-12-23 15:20:52 +08:00
|
|
|
using namespace ento;
|
2009-11-04 12:24:16 +08:00
|
|
|
|
2009-11-22 20:29:52 +08:00
|
|
|
namespace {
|
2009-11-28 14:07:30 +08:00
|
|
|
class UndefinedAssignmentChecker
|
2011-03-01 09:16:21 +08:00
|
|
|
: public Checker<check::Bind> {
|
2014-03-08 04:03:18 +08:00
|
|
|
mutable std::unique_ptr<BugType> BT;
|
2011-02-28 09:27:37 +08:00
|
|
|
|
2009-11-22 20:29:52 +08:00
|
|
|
public:
|
2011-10-06 08:43:15 +08:00
|
|
|
void checkBind(SVal location, SVal val, const Stmt *S,
|
|
|
|
CheckerContext &C) const;
|
2009-11-22 20:29:52 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-02-28 09:27:37 +08:00
|
|
|
void UndefinedAssignmentChecker::checkBind(SVal location, SVal val,
|
2011-10-06 08:43:15 +08:00
|
|
|
const Stmt *StoreE,
|
2011-02-28 09:27:37 +08:00
|
|
|
CheckerContext &C) const {
|
2009-11-04 12:24:16 +08:00
|
|
|
if (!val.isUndef())
|
|
|
|
return;
|
|
|
|
|
2013-06-19 07:16:15 +08:00
|
|
|
// Do not report assignments of uninitialized values inside swap functions.
|
|
|
|
// This should allow to swap partially uninitialized structs
|
|
|
|
// (radar://14129997)
|
|
|
|
if (const FunctionDecl *EnclosingFunctionDecl =
|
|
|
|
dyn_cast<FunctionDecl>(C.getStackFrame()->getDecl()))
|
|
|
|
if (C.getCalleeName(EnclosingFunctionDecl) == "swap")
|
|
|
|
return;
|
|
|
|
|
2015-09-17 06:03:05 +08:00
|
|
|
ExplodedNode *N = C.generateErrorNode();
|
2009-11-04 12:24:16 +08:00
|
|
|
|
|
|
|
if (!N)
|
|
|
|
return;
|
|
|
|
|
2010-03-23 06:16:26 +08:00
|
|
|
const char *str = "Assigned value is garbage or undefined";
|
|
|
|
|
2009-11-04 12:24:16 +08:00
|
|
|
if (!BT)
|
2014-02-12 05:49:21 +08:00
|
|
|
BT.reset(new BuiltinBug(this, str));
|
2009-11-04 12:24:16 +08:00
|
|
|
|
|
|
|
// Generate a report for this bug.
|
2014-05-27 10:45:47 +08:00
|
|
|
const Expr *ex = nullptr;
|
2009-11-04 12:24:16 +08:00
|
|
|
|
2010-09-02 08:56:20 +08:00
|
|
|
while (StoreE) {
|
|
|
|
if (const BinaryOperator *B = dyn_cast<BinaryOperator>(StoreE)) {
|
2010-03-23 06:16:26 +08:00
|
|
|
if (B->isCompoundAssignmentOp()) {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef state = C.getState();
|
2012-01-07 06:09:28 +08:00
|
|
|
if (state->getSVal(B->getLHS(), C.getLocationContext()).isUndef()) {
|
2010-03-23 06:16:26 +08:00
|
|
|
str = "The left expression of the compound assignment is an "
|
|
|
|
"uninitialized value. The computed value will also be garbage";
|
|
|
|
ex = B->getLHS();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-11-05 08:42:23 +08:00
|
|
|
|
|
|
|
ex = B->getRHS();
|
2010-03-23 06:16:26 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-09-02 08:56:20 +08:00
|
|
|
if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) {
|
2011-08-13 07:37:29 +08:00
|
|
|
const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
|
2009-11-05 08:42:23 +08:00
|
|
|
ex = VD->getInit();
|
|
|
|
}
|
2010-03-23 06:16:26 +08:00
|
|
|
|
|
|
|
break;
|
2009-11-04 12:24:16 +08:00
|
|
|
}
|
|
|
|
|
2015-06-23 21:15:32 +08:00
|
|
|
auto R = llvm::make_unique<BugReport>(*BT, str, N);
|
2010-03-23 06:16:26 +08:00
|
|
|
if (ex) {
|
|
|
|
R->addRange(ex->getSourceRange());
|
2012-08-28 08:50:51 +08:00
|
|
|
bugreporter::trackNullOrUndefValue(N, ex, *R);
|
2010-03-23 06:16:26 +08:00
|
|
|
}
|
2015-06-23 21:15:32 +08:00
|
|
|
C.emitReport(std::move(R));
|
2010-03-23 06:16:26 +08:00
|
|
|
}
|
2009-11-04 12:24:16 +08:00
|
|
|
|
2011-02-28 09:27:37 +08:00
|
|
|
void ento::registerUndefinedAssignmentChecker(CheckerManager &mgr) {
|
|
|
|
mgr.registerChecker<UndefinedAssignmentChecker>();
|
|
|
|
}
|