2011-11-17 03:58:13 +08:00
|
|
|
//== GenericTaintChecker.cpp ----------------------------------- -*- C++ -*--=//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2011-11-17 03:58:13 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This checker defines the attack surface for generic taint propagation.
|
|
|
|
//
|
|
|
|
// The taint information produced by it might be useful to other checkers. For
|
|
|
|
// example, checkers should report errors which involve tainted data more
|
|
|
|
// aggressively, even if the involved symbols are under constrained.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
[analyzer][NFC] Move CheckerRegistry from the Core directory to Frontend
ClangCheckerRegistry is a very non-obvious, poorly documented, weird concept.
It derives from CheckerRegistry, and is placed in lib/StaticAnalyzer/Frontend,
whereas it's base is located in lib/StaticAnalyzer/Core. It was, from what I can
imagine, used to circumvent the problem that the registry functions of the
checkers are located in the clangStaticAnalyzerCheckers library, but that
library depends on clangStaticAnalyzerCore. However, clangStaticAnalyzerFrontend
depends on both of those libraries.
One can make the observation however, that CheckerRegistry has no place in Core,
it isn't used there at all! The only place where it is used is Frontend, which
is where it ultimately belongs.
This move implies that since
include/clang/StaticAnalyzer/Checkers/ClangCheckers.h only contained a single function:
class CheckerRegistry;
void registerBuiltinCheckers(CheckerRegistry ®istry);
it had to re purposed, as CheckerRegistry is no longer available to
clangStaticAnalyzerCheckers. It was renamed to BuiltinCheckerRegistration.h,
which actually describes it a lot better -- it does not contain the registration
functions for checkers, but only those generated by the tblgen files.
Differential Revision: https://reviews.llvm.org/D54436
llvm-svn: 349275
2018-12-16 00:23:51 +08:00
|
|
|
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/AST/Attr.h"
|
|
|
|
#include "clang/Basic/Builtins.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
|
2011-11-17 03:58:13 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/Checker.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
|
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
|
2011-12-17 08:26:34 +08:00
|
|
|
#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
|
2012-01-12 10:22:34 +08:00
|
|
|
#include <climits>
|
2011-11-17 03:58:13 +08:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
using namespace ento;
|
|
|
|
|
|
|
|
namespace {
|
2018-12-20 07:35:08 +08:00
|
|
|
class GenericTaintChecker
|
|
|
|
: public Checker<check::PostStmt<CallExpr>, check::PreStmt<CallExpr>> {
|
2011-12-17 08:26:34 +08:00
|
|
|
public:
|
2018-12-20 07:35:08 +08:00
|
|
|
static void *getTag() {
|
|
|
|
static int Tag;
|
|
|
|
return &Tag;
|
|
|
|
}
|
2012-01-14 10:48:40 +08:00
|
|
|
|
|
|
|
void checkPostStmt(const CallExpr *CE, CheckerContext &C) const;
|
|
|
|
|
|
|
|
void checkPreStmt(const CallExpr *CE, CheckerContext &C) const;
|
2011-11-17 03:58:13 +08:00
|
|
|
|
2011-12-17 08:26:34 +08:00
|
|
|
private:
|
2012-01-25 03:32:25 +08:00
|
|
|
static const unsigned InvalidArgIndex = UINT_MAX;
|
|
|
|
/// Denotes the return vale.
|
|
|
|
static const unsigned ReturnValueIndex = UINT_MAX - 1;
|
2012-01-14 10:48:40 +08:00
|
|
|
|
2014-03-08 04:03:18 +08:00
|
|
|
mutable std::unique_ptr<BugType> BT;
|
2012-01-18 10:45:07 +08:00
|
|
|
inline void initBugType() const {
|
|
|
|
if (!BT)
|
2014-02-12 05:49:21 +08:00
|
|
|
BT.reset(new BugType(this, "Use of Untrusted Data", "Untrusted Data"));
|
2012-01-18 10:45:07 +08:00
|
|
|
}
|
2011-11-18 10:26:36 +08:00
|
|
|
|
2018-05-09 09:00:01 +08:00
|
|
|
/// Catch taint related bugs. Check if tainted data is passed to a
|
2012-01-12 10:22:34 +08:00
|
|
|
/// system call etc.
|
2012-01-07 10:33:10 +08:00
|
|
|
bool checkPre(const CallExpr *CE, CheckerContext &C) const;
|
|
|
|
|
2018-05-09 09:00:01 +08:00
|
|
|
/// Add taint sources on a pre-visit.
|
2012-01-12 10:22:34 +08:00
|
|
|
void addSourcesPre(const CallExpr *CE, CheckerContext &C) const;
|
|
|
|
|
2018-05-09 09:00:01 +08:00
|
|
|
/// Propagate taint generated at pre-visit.
|
2012-01-12 10:22:34 +08:00
|
|
|
bool propagateFromPre(const CallExpr *CE, CheckerContext &C) const;
|
|
|
|
|
2018-05-09 09:00:01 +08:00
|
|
|
/// Add taint sources on a post visit.
|
2012-01-12 10:22:34 +08:00
|
|
|
void addSourcesPost(const CallExpr *CE, CheckerContext &C) const;
|
|
|
|
|
2012-01-25 03:32:25 +08:00
|
|
|
/// Check if the region the expression evaluates to is the standard input,
|
|
|
|
/// and thus, is tainted.
|
|
|
|
static bool isStdin(const Expr *E, CheckerContext &C);
|
|
|
|
|
2018-05-09 09:00:01 +08:00
|
|
|
/// Given a pointer argument, return the value it points to.
|
2017-05-29 23:42:56 +08:00
|
|
|
static Optional<SVal> getPointedToSVal(CheckerContext &C, const Expr *Arg);
|
2011-11-17 03:58:13 +08:00
|
|
|
|
2011-12-17 08:26:34 +08:00
|
|
|
/// Functions defining the attack surface.
|
2018-12-20 07:35:08 +08:00
|
|
|
typedef ProgramStateRef (GenericTaintChecker::*FnCheck)(
|
|
|
|
const CallExpr *, CheckerContext &C) const;
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef postScanf(const CallExpr *CE, CheckerContext &C) const;
|
|
|
|
ProgramStateRef postSocket(const CallExpr *CE, CheckerContext &C) const;
|
|
|
|
ProgramStateRef postRetTaint(const CallExpr *CE, CheckerContext &C) const;
|
2011-12-17 08:26:34 +08:00
|
|
|
|
|
|
|
/// Taint the scanned input if the file is tainted.
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef preFscanf(const CallExpr *CE, CheckerContext &C) const;
|
2011-11-17 03:58:13 +08:00
|
|
|
|
2012-01-07 10:33:10 +08:00
|
|
|
/// Check for CWE-134: Uncontrolled Format String.
|
2012-01-14 10:48:40 +08:00
|
|
|
static const char MsgUncontrolledFormatString[];
|
2012-01-07 10:33:10 +08:00
|
|
|
bool checkUncontrolledFormatString(const CallExpr *CE,
|
|
|
|
CheckerContext &C) const;
|
|
|
|
|
2012-01-14 10:48:40 +08:00
|
|
|
/// Check for:
|
|
|
|
/// CERT/STR02-C. "Sanitize data passed to complex subsystems"
|
|
|
|
/// CWE-78, "Failure to Sanitize Data into an OS Command"
|
|
|
|
static const char MsgSanitizeSystemArgs[];
|
|
|
|
bool checkSystemCall(const CallExpr *CE, StringRef Name,
|
|
|
|
CheckerContext &C) const;
|
2011-12-17 08:26:34 +08:00
|
|
|
|
2012-01-18 10:45:11 +08:00
|
|
|
/// Check if tainted data is used as a buffer size ins strn.. functions,
|
|
|
|
/// and allocators.
|
|
|
|
static const char MsgTaintedBufferSize[];
|
|
|
|
bool checkTaintedBufferSize(const CallExpr *CE, const FunctionDecl *FDecl,
|
|
|
|
CheckerContext &C) const;
|
|
|
|
|
2012-01-14 10:48:40 +08:00
|
|
|
/// Generate a report if the expression is tainted or points to tainted data.
|
|
|
|
bool generateReportIfTainted(const Expr *E, const char Msg[],
|
|
|
|
CheckerContext &C) const;
|
2015-09-08 11:50:52 +08:00
|
|
|
|
2013-01-13 03:30:44 +08:00
|
|
|
typedef SmallVector<unsigned, 2> ArgVector;
|
2012-01-17 08:37:02 +08:00
|
|
|
|
2018-05-09 09:00:01 +08:00
|
|
|
/// A struct used to specify taint propagation rules for a function.
|
2012-01-17 08:37:02 +08:00
|
|
|
///
|
|
|
|
/// If any of the possible taint source arguments is tainted, all of the
|
|
|
|
/// destination arguments should also be tainted. Use InvalidArgIndex in the
|
|
|
|
/// src list to specify that all of the arguments can introduce taint. Use
|
|
|
|
/// InvalidArgIndex in the dst arguments to signify that all the non-const
|
|
|
|
/// pointer and reference arguments might be tainted on return. If
|
|
|
|
/// ReturnValueIndex is added to the dst list, the return value will be
|
|
|
|
/// tainted.
|
|
|
|
struct TaintPropagationRule {
|
|
|
|
/// List of arguments which can be taint sources and should be checked.
|
|
|
|
ArgVector SrcArgs;
|
|
|
|
/// List of arguments which should be tainted on function return.
|
|
|
|
ArgVector DstArgs;
|
2012-01-18 10:45:07 +08:00
|
|
|
// TODO: Check if using other data structures would be more optimal.
|
2012-01-17 08:37:02 +08:00
|
|
|
|
|
|
|
TaintPropagationRule() {}
|
|
|
|
|
2018-12-20 07:35:08 +08:00
|
|
|
TaintPropagationRule(unsigned SArg, unsigned DArg, bool TaintRet = false) {
|
2012-01-17 08:37:02 +08:00
|
|
|
SrcArgs.push_back(SArg);
|
|
|
|
DstArgs.push_back(DArg);
|
2012-01-18 10:45:07 +08:00
|
|
|
if (TaintRet)
|
|
|
|
DstArgs.push_back(ReturnValueIndex);
|
|
|
|
}
|
|
|
|
|
2018-12-20 07:35:08 +08:00
|
|
|
TaintPropagationRule(unsigned SArg1, unsigned SArg2, unsigned DArg,
|
|
|
|
bool TaintRet = false) {
|
2012-01-18 10:45:07 +08:00
|
|
|
SrcArgs.push_back(SArg1);
|
|
|
|
SrcArgs.push_back(SArg2);
|
|
|
|
DstArgs.push_back(DArg);
|
|
|
|
if (TaintRet)
|
|
|
|
DstArgs.push_back(ReturnValueIndex);
|
2012-01-17 08:37:02 +08:00
|
|
|
}
|
2011-12-17 08:26:34 +08:00
|
|
|
|
2012-01-18 10:45:07 +08:00
|
|
|
/// Get the propagation rule for a given function.
|
|
|
|
static TaintPropagationRule
|
2018-12-20 07:35:08 +08:00
|
|
|
getTaintPropagationRule(const FunctionDecl *FDecl, StringRef Name,
|
|
|
|
CheckerContext &C);
|
2012-01-18 10:45:07 +08:00
|
|
|
|
2012-01-17 08:37:02 +08:00
|
|
|
inline void addSrcArg(unsigned A) { SrcArgs.push_back(A); }
|
2018-12-20 07:35:08 +08:00
|
|
|
inline void addDstArg(unsigned A) { DstArgs.push_back(A); }
|
2012-01-17 08:37:02 +08:00
|
|
|
|
2012-01-18 10:45:07 +08:00
|
|
|
inline bool isNull() const { return SrcArgs.empty(); }
|
|
|
|
|
|
|
|
inline bool isDestinationArgument(unsigned ArgNum) const {
|
2018-12-20 07:35:08 +08:00
|
|
|
return (std::find(DstArgs.begin(), DstArgs.end(), ArgNum) !=
|
|
|
|
DstArgs.end());
|
2012-01-18 10:45:07 +08:00
|
|
|
}
|
2012-01-17 08:37:02 +08:00
|
|
|
|
2012-01-25 03:32:25 +08:00
|
|
|
static inline bool isTaintedOrPointsToTainted(const Expr *E,
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State,
|
2012-01-25 03:32:25 +08:00
|
|
|
CheckerContext &C) {
|
2017-05-29 23:42:56 +08:00
|
|
|
if (State->isTainted(E, C.getLocationContext()) || isStdin(E, C))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!E->getType().getTypePtr()->isPointerType())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Optional<SVal> V = getPointedToSVal(C, E);
|
|
|
|
return (V && State->isTainted(*V));
|
2012-01-25 03:32:25 +08:00
|
|
|
}
|
|
|
|
|
2018-05-09 09:00:01 +08:00
|
|
|
/// Pre-process a function which propagates taint according to the
|
2012-01-18 10:45:13 +08:00
|
|
|
/// taint rule.
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef process(const CallExpr *CE, CheckerContext &C) const;
|
2012-01-18 10:45:13 +08:00
|
|
|
};
|
2011-11-17 03:58:13 +08:00
|
|
|
};
|
2012-01-18 10:45:07 +08:00
|
|
|
|
|
|
|
const unsigned GenericTaintChecker::ReturnValueIndex;
|
|
|
|
const unsigned GenericTaintChecker::InvalidArgIndex;
|
|
|
|
|
2012-01-14 10:48:40 +08:00
|
|
|
const char GenericTaintChecker::MsgUncontrolledFormatString[] =
|
2018-12-20 07:35:08 +08:00
|
|
|
"Untrusted data is used as a format string "
|
|
|
|
"(CWE-134: Uncontrolled Format String)";
|
2012-01-14 10:48:40 +08:00
|
|
|
|
|
|
|
const char GenericTaintChecker::MsgSanitizeSystemArgs[] =
|
2018-12-20 07:35:08 +08:00
|
|
|
"Untrusted data is passed to a system call "
|
|
|
|
"(CERT/STR02-C. Sanitize data passed to complex subsystems)";
|
2012-01-18 10:45:11 +08:00
|
|
|
|
|
|
|
const char GenericTaintChecker::MsgTaintedBufferSize[] =
|
2018-12-20 07:35:08 +08:00
|
|
|
"Untrusted data is used to specify the buffer size "
|
|
|
|
"(CERT/STR31-C. Guarantee that storage for strings has sufficient space "
|
|
|
|
"for "
|
|
|
|
"character data and the null terminator)";
|
2012-01-18 10:45:11 +08:00
|
|
|
|
|
|
|
} // end of anonymous namespace
|
2011-11-17 03:58:13 +08:00
|
|
|
|
2012-01-12 10:22:34 +08:00
|
|
|
/// A set which is used to pass information from call pre-visit instruction
|
|
|
|
/// to the call post-visit. The values are unsigned integers, which are either
|
|
|
|
/// ReturnValueIndex, or indexes of the pointer/reference argument, which
|
|
|
|
/// points to data, which should be tainted on return.
|
2012-11-02 09:54:06 +08:00
|
|
|
REGISTER_SET_WITH_PROGRAMSTATE(TaintArgsOnPostVisit, unsigned)
|
2011-12-17 08:26:34 +08:00
|
|
|
|
2012-01-18 10:45:07 +08:00
|
|
|
GenericTaintChecker::TaintPropagationRule
|
|
|
|
GenericTaintChecker::TaintPropagationRule::getTaintPropagationRule(
|
2018-12-20 07:35:08 +08:00
|
|
|
const FunctionDecl *FDecl, StringRef Name, CheckerContext &C) {
|
2015-06-03 17:10:58 +08:00
|
|
|
// TODO: Currently, we might lose precision here: we always mark a return
|
2012-01-25 03:32:25 +08:00
|
|
|
// value as tainted even if it's just a pointer, pointing to tainted data.
|
|
|
|
|
2012-01-18 10:45:07 +08:00
|
|
|
// Check for exact name match for functions without builtin substitutes.
|
2018-12-20 07:35:08 +08:00
|
|
|
TaintPropagationRule Rule =
|
|
|
|
llvm::StringSwitch<TaintPropagationRule>(Name)
|
|
|
|
.Case("atoi", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("atol", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("atoll", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("getc", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("fgetc", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("getc_unlocked", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("getw", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("toupper", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("tolower", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("strchr", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("strrchr", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Case("read", TaintPropagationRule(0, 2, 1, true))
|
|
|
|
.Case("pread", TaintPropagationRule(InvalidArgIndex, 1, true))
|
|
|
|
.Case("gets", TaintPropagationRule(InvalidArgIndex, 0, true))
|
|
|
|
.Case("fgets", TaintPropagationRule(2, 0, true))
|
|
|
|
.Case("getline", TaintPropagationRule(2, 0))
|
|
|
|
.Case("getdelim", TaintPropagationRule(3, 0))
|
|
|
|
.Case("fgetln", TaintPropagationRule(0, ReturnValueIndex))
|
|
|
|
.Default(TaintPropagationRule());
|
2012-01-18 10:45:07 +08:00
|
|
|
|
|
|
|
if (!Rule.isNull())
|
|
|
|
return Rule;
|
|
|
|
|
|
|
|
// Check if it's one of the memory setting/copying functions.
|
|
|
|
// This check is specialized but faster then calling isCLibraryFunction.
|
|
|
|
unsigned BId = 0;
|
2018-12-20 07:35:08 +08:00
|
|
|
if ((BId = FDecl->getMemoryFunctionKind()))
|
|
|
|
switch (BId) {
|
2012-01-18 10:45:07 +08:00
|
|
|
case Builtin::BImemcpy:
|
|
|
|
case Builtin::BImemmove:
|
|
|
|
case Builtin::BIstrncpy:
|
|
|
|
case Builtin::BIstrncat:
|
|
|
|
return TaintPropagationRule(1, 2, 0, true);
|
|
|
|
case Builtin::BIstrlcpy:
|
|
|
|
case Builtin::BIstrlcat:
|
|
|
|
return TaintPropagationRule(1, 2, 0, false);
|
|
|
|
case Builtin::BIstrndup:
|
|
|
|
return TaintPropagationRule(0, 1, ReturnValueIndex);
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Process all other functions which could be defined as builtins.
|
|
|
|
if (Rule.isNull()) {
|
|
|
|
if (C.isCLibraryFunction(FDecl, "snprintf") ||
|
|
|
|
C.isCLibraryFunction(FDecl, "sprintf"))
|
|
|
|
return TaintPropagationRule(InvalidArgIndex, 0, true);
|
|
|
|
else if (C.isCLibraryFunction(FDecl, "strcpy") ||
|
|
|
|
C.isCLibraryFunction(FDecl, "stpcpy") ||
|
|
|
|
C.isCLibraryFunction(FDecl, "strcat"))
|
|
|
|
return TaintPropagationRule(1, 0, true);
|
|
|
|
else if (C.isCLibraryFunction(FDecl, "bcopy"))
|
|
|
|
return TaintPropagationRule(0, 2, 1, false);
|
|
|
|
else if (C.isCLibraryFunction(FDecl, "strdup") ||
|
|
|
|
C.isCLibraryFunction(FDecl, "strdupa"))
|
|
|
|
return TaintPropagationRule(0, ReturnValueIndex);
|
2012-01-18 10:45:11 +08:00
|
|
|
else if (C.isCLibraryFunction(FDecl, "wcsdup"))
|
|
|
|
return TaintPropagationRule(0, ReturnValueIndex);
|
2012-01-18 10:45:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Skipping the following functions, since they might be used for cleansing
|
|
|
|
// or smart memory copy:
|
2012-06-02 18:20:41 +08:00
|
|
|
// - memccpy - copying until hitting a special character.
|
2012-01-18 10:45:07 +08:00
|
|
|
|
|
|
|
return TaintPropagationRule();
|
2011-11-18 10:26:36 +08:00
|
|
|
}
|
|
|
|
|
2011-12-17 08:26:34 +08:00
|
|
|
void GenericTaintChecker::checkPreStmt(const CallExpr *CE,
|
|
|
|
CheckerContext &C) const {
|
2012-01-07 10:33:10 +08:00
|
|
|
// Check for errors first.
|
|
|
|
if (checkPre(CE, C))
|
|
|
|
return;
|
2011-11-17 03:58:13 +08:00
|
|
|
|
2012-01-07 10:33:10 +08:00
|
|
|
// Add taint second.
|
2012-01-12 10:22:34 +08:00
|
|
|
addSourcesPre(CE, C);
|
2012-01-07 10:33:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GenericTaintChecker::checkPostStmt(const CallExpr *CE,
|
|
|
|
CheckerContext &C) const {
|
2012-01-12 10:22:34 +08:00
|
|
|
if (propagateFromPre(CE, C))
|
|
|
|
return;
|
|
|
|
addSourcesPost(CE, C);
|
2012-01-07 10:33:10 +08:00
|
|
|
}
|
|
|
|
|
2012-01-12 10:22:34 +08:00
|
|
|
void GenericTaintChecker::addSourcesPre(const CallExpr *CE,
|
|
|
|
CheckerContext &C) const {
|
2014-05-27 10:45:47 +08:00
|
|
|
ProgramStateRef State = nullptr;
|
2012-01-18 10:45:07 +08:00
|
|
|
const FunctionDecl *FDecl = C.getCalleeDecl(CE);
|
2012-07-11 07:13:01 +08:00
|
|
|
if (!FDecl || FDecl->getKind() != Decl::Function)
|
|
|
|
return;
|
|
|
|
|
2012-01-18 10:45:07 +08:00
|
|
|
StringRef Name = C.getCalleeName(FDecl);
|
2012-01-12 10:22:34 +08:00
|
|
|
if (Name.empty())
|
|
|
|
return;
|
2012-01-17 08:37:02 +08:00
|
|
|
|
2012-01-18 10:45:07 +08:00
|
|
|
// First, try generating a propagation rule for this function.
|
|
|
|
TaintPropagationRule Rule =
|
2018-12-20 07:35:08 +08:00
|
|
|
TaintPropagationRule::getTaintPropagationRule(FDecl, Name, C);
|
2012-01-17 08:37:02 +08:00
|
|
|
if (!Rule.isNull()) {
|
2012-01-18 10:45:13 +08:00
|
|
|
State = Rule.process(CE, C);
|
2012-01-17 08:37:02 +08:00
|
|
|
if (!State)
|
|
|
|
return;
|
|
|
|
C.addTransition(State);
|
2012-01-18 10:45:07 +08:00
|
|
|
return;
|
2012-01-17 08:37:02 +08:00
|
|
|
}
|
|
|
|
|
2012-01-18 10:45:07 +08:00
|
|
|
// Otherwise, check if we have custom pre-processing implemented.
|
2011-12-17 08:26:34 +08:00
|
|
|
FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name)
|
2018-12-20 07:35:08 +08:00
|
|
|
.Case("fscanf", &GenericTaintChecker::preFscanf)
|
|
|
|
.Default(nullptr);
|
2011-12-17 08:26:34 +08:00
|
|
|
// Check and evaluate the call.
|
|
|
|
if (evalFunction)
|
|
|
|
State = (this->*evalFunction)(CE, C);
|
|
|
|
if (!State)
|
|
|
|
return;
|
|
|
|
C.addTransition(State);
|
|
|
|
}
|
|
|
|
|
2012-01-12 10:22:34 +08:00
|
|
|
bool GenericTaintChecker::propagateFromPre(const CallExpr *CE,
|
|
|
|
CheckerContext &C) const {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2012-01-12 10:22:34 +08:00
|
|
|
|
|
|
|
// Depending on what was tainted at pre-visit, we determined a set of
|
|
|
|
// arguments which should be tainted after the function returns. These are
|
|
|
|
// stored in the state as TaintArgsOnPostVisit set.
|
2012-11-02 09:54:06 +08:00
|
|
|
TaintArgsOnPostVisitTy TaintArgs = State->get<TaintArgsOnPostVisit>();
|
2012-01-25 03:32:25 +08:00
|
|
|
if (TaintArgs.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
2018-12-20 07:35:08 +08:00
|
|
|
for (llvm::ImmutableSet<unsigned>::iterator I = TaintArgs.begin(),
|
|
|
|
E = TaintArgs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
unsigned ArgNum = *I;
|
2012-01-12 10:22:34 +08:00
|
|
|
|
|
|
|
// Special handling for the tainted return value.
|
|
|
|
if (ArgNum == ReturnValueIndex) {
|
|
|
|
State = State->addTaint(CE, C.getLocationContext());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The arguments are pointer arguments. The data they are pointing at is
|
|
|
|
// tainted after the call.
|
2012-04-11 07:41:11 +08:00
|
|
|
if (CE->getNumArgs() < (ArgNum + 1))
|
|
|
|
return false;
|
2018-12-20 07:35:08 +08:00
|
|
|
const Expr *Arg = CE->getArg(ArgNum);
|
2017-05-29 23:42:56 +08:00
|
|
|
Optional<SVal> V = getPointedToSVal(C, Arg);
|
|
|
|
if (V)
|
|
|
|
State = State->addTaint(*V);
|
2012-01-12 10:22:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clear up the taint info from the state.
|
|
|
|
State = State->remove<TaintArgsOnPostVisit>();
|
|
|
|
|
|
|
|
if (State != C.getState()) {
|
|
|
|
C.addTransition(State);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GenericTaintChecker::addSourcesPost(const CallExpr *CE,
|
|
|
|
CheckerContext &C) const {
|
2011-11-17 03:58:13 +08:00
|
|
|
// Define the attack surface.
|
|
|
|
// Set the evaluation function by switching on the callee name.
|
2012-07-11 07:13:01 +08:00
|
|
|
const FunctionDecl *FDecl = C.getCalleeDecl(CE);
|
|
|
|
if (!FDecl || FDecl->getKind() != Decl::Function)
|
|
|
|
return;
|
|
|
|
|
|
|
|
StringRef Name = C.getCalleeName(FDecl);
|
2012-01-12 10:22:34 +08:00
|
|
|
if (Name.empty())
|
|
|
|
return;
|
2018-12-20 07:35:08 +08:00
|
|
|
FnCheck evalFunction =
|
|
|
|
llvm::StringSwitch<FnCheck>(Name)
|
|
|
|
.Case("scanf", &GenericTaintChecker::postScanf)
|
|
|
|
// TODO: Add support for vfscanf & family.
|
|
|
|
.Case("getchar", &GenericTaintChecker::postRetTaint)
|
|
|
|
.Case("getchar_unlocked", &GenericTaintChecker::postRetTaint)
|
|
|
|
.Case("getenv", &GenericTaintChecker::postRetTaint)
|
|
|
|
.Case("fopen", &GenericTaintChecker::postRetTaint)
|
|
|
|
.Case("fdopen", &GenericTaintChecker::postRetTaint)
|
|
|
|
.Case("freopen", &GenericTaintChecker::postRetTaint)
|
|
|
|
.Case("getch", &GenericTaintChecker::postRetTaint)
|
|
|
|
.Case("wgetch", &GenericTaintChecker::postRetTaint)
|
|
|
|
.Case("socket", &GenericTaintChecker::postSocket)
|
|
|
|
.Default(nullptr);
|
2011-11-17 03:58:13 +08:00
|
|
|
|
|
|
|
// If the callee isn't defined, it is not of security concern.
|
|
|
|
// Check and evaluate the call.
|
2014-05-27 10:45:47 +08:00
|
|
|
ProgramStateRef State = nullptr;
|
2011-11-17 03:58:13 +08:00
|
|
|
if (evalFunction)
|
2011-12-17 08:26:34 +08:00
|
|
|
State = (this->*evalFunction)(CE, C);
|
|
|
|
if (!State)
|
|
|
|
return;
|
2011-11-17 03:58:13 +08:00
|
|
|
|
2011-12-17 08:26:34 +08:00
|
|
|
C.addTransition(State);
|
2011-11-17 03:58:13 +08:00
|
|
|
}
|
2011-11-18 10:26:36 +08:00
|
|
|
|
2018-12-20 07:35:08 +08:00
|
|
|
bool GenericTaintChecker::checkPre(const CallExpr *CE,
|
|
|
|
CheckerContext &C) const {
|
2012-01-07 10:33:10 +08:00
|
|
|
|
|
|
|
if (checkUncontrolledFormatString(CE, C))
|
|
|
|
return true;
|
|
|
|
|
2012-01-18 10:45:11 +08:00
|
|
|
const FunctionDecl *FDecl = C.getCalleeDecl(CE);
|
2012-07-11 07:13:01 +08:00
|
|
|
if (!FDecl || FDecl->getKind() != Decl::Function)
|
|
|
|
return false;
|
|
|
|
|
2012-01-18 10:45:11 +08:00
|
|
|
StringRef Name = C.getCalleeName(FDecl);
|
2012-01-14 10:48:40 +08:00
|
|
|
if (Name.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (checkSystemCall(CE, Name, C))
|
|
|
|
return true;
|
|
|
|
|
2012-01-18 10:45:11 +08:00
|
|
|
if (checkTaintedBufferSize(CE, FDecl, C))
|
|
|
|
return true;
|
|
|
|
|
2012-01-07 10:33:10 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-29 23:42:56 +08:00
|
|
|
Optional<SVal> GenericTaintChecker::getPointedToSVal(CheckerContext &C,
|
2017-12-12 10:27:55 +08:00
|
|
|
const Expr *Arg) {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2018-01-18 04:27:29 +08:00
|
|
|
SVal AddrVal = C.getSVal(Arg->IgnoreParens());
|
2011-12-17 02:28:50 +08:00
|
|
|
if (AddrVal.isUnknownOrUndef())
|
2017-05-29 23:42:56 +08:00
|
|
|
return None;
|
2011-12-12 02:43:40 +08:00
|
|
|
|
2013-02-21 06:23:23 +08:00
|
|
|
Optional<Loc> AddrLoc = AddrVal.getAs<Loc>();
|
2012-01-18 10:45:13 +08:00
|
|
|
if (!AddrLoc)
|
2017-05-29 23:42:56 +08:00
|
|
|
return None;
|
2011-11-18 10:26:36 +08:00
|
|
|
|
2017-12-12 10:27:55 +08:00
|
|
|
QualType ArgTy = Arg->getType().getCanonicalType();
|
|
|
|
if (!ArgTy->isPointerType())
|
|
|
|
return None;
|
|
|
|
|
|
|
|
QualType ValTy = ArgTy->getPointeeType();
|
|
|
|
|
|
|
|
// Do not dereference void pointers. Treat them as byte pointers instead.
|
|
|
|
// FIXME: we might want to consider more than just the first byte.
|
|
|
|
if (ValTy->isVoidType())
|
|
|
|
ValTy = C.getASTContext().CharTy;
|
|
|
|
|
|
|
|
return State->getSVal(*AddrLoc, ValTy);
|
2011-11-17 03:58:13 +08:00
|
|
|
}
|
|
|
|
|
2015-09-08 11:50:52 +08:00
|
|
|
ProgramStateRef
|
2012-01-18 10:45:13 +08:00
|
|
|
GenericTaintChecker::TaintPropagationRule::process(const CallExpr *CE,
|
|
|
|
CheckerContext &C) const {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2012-01-17 08:37:02 +08:00
|
|
|
|
|
|
|
// Check for taint in arguments.
|
|
|
|
bool IsTainted = false;
|
2018-12-20 07:35:08 +08:00
|
|
|
for (ArgVector::const_iterator I = SrcArgs.begin(), E = SrcArgs.end(); I != E;
|
|
|
|
++I) {
|
2012-01-17 08:37:02 +08:00
|
|
|
unsigned ArgNum = *I;
|
|
|
|
|
|
|
|
if (ArgNum == InvalidArgIndex) {
|
2012-01-18 10:45:07 +08:00
|
|
|
// Check if any of the arguments is tainted, but skip the
|
|
|
|
// destination arguments.
|
|
|
|
for (unsigned int i = 0; i < CE->getNumArgs(); ++i) {
|
2012-01-18 10:45:13 +08:00
|
|
|
if (isDestinationArgument(i))
|
2012-01-18 10:45:07 +08:00
|
|
|
continue;
|
2012-01-25 03:32:25 +08:00
|
|
|
if ((IsTainted = isTaintedOrPointsToTainted(CE->getArg(i), State, C)))
|
2012-01-17 08:37:02 +08:00
|
|
|
break;
|
2012-01-18 10:45:07 +08:00
|
|
|
}
|
2012-01-17 08:37:02 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-04-11 07:41:11 +08:00
|
|
|
if (CE->getNumArgs() < (ArgNum + 1))
|
|
|
|
return State;
|
2012-01-25 03:32:25 +08:00
|
|
|
if ((IsTainted = isTaintedOrPointsToTainted(CE->getArg(ArgNum), State, C)))
|
2012-01-17 08:37:02 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!IsTainted)
|
|
|
|
return State;
|
|
|
|
|
|
|
|
// Mark the arguments which should be tainted after the function returns.
|
2018-12-20 07:35:08 +08:00
|
|
|
for (ArgVector::const_iterator I = DstArgs.begin(), E = DstArgs.end(); I != E;
|
|
|
|
++I) {
|
2012-01-17 08:37:02 +08:00
|
|
|
unsigned ArgNum = *I;
|
|
|
|
|
|
|
|
// Should we mark all arguments as tainted?
|
|
|
|
if (ArgNum == InvalidArgIndex) {
|
|
|
|
// For all pointer and references that were passed in:
|
|
|
|
// If they are not pointing to const data, mark data as tainted.
|
|
|
|
// TODO: So far we are just going one level down; ideally we'd need to
|
|
|
|
// recurse here.
|
|
|
|
for (unsigned int i = 0; i < CE->getNumArgs(); ++i) {
|
|
|
|
const Expr *Arg = CE->getArg(i);
|
|
|
|
// Process pointer argument.
|
|
|
|
const Type *ArgTy = Arg->getType().getTypePtr();
|
|
|
|
QualType PType = ArgTy->getPointeeType();
|
2018-12-20 07:35:08 +08:00
|
|
|
if ((!PType.isNull() && !PType.isConstQualified()) ||
|
|
|
|
(ArgTy->isReferenceType() && !Arg->getType().isConstQualified()))
|
2012-01-17 08:37:02 +08:00
|
|
|
State = State->add<TaintArgsOnPostVisit>(i);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should mark the return value?
|
|
|
|
if (ArgNum == ReturnValueIndex) {
|
|
|
|
State = State->add<TaintArgsOnPostVisit>(ReturnValueIndex);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark the given argument.
|
|
|
|
assert(ArgNum < CE->getNumArgs());
|
|
|
|
State = State->add<TaintArgsOnPostVisit>(ArgNum);
|
|
|
|
}
|
|
|
|
|
|
|
|
return State;
|
|
|
|
}
|
|
|
|
|
2012-01-12 10:22:34 +08:00
|
|
|
// If argument 0 (file descriptor) is tainted, all arguments except for arg 0
|
|
|
|
// and arg 1 should get taint.
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef GenericTaintChecker::preFscanf(const CallExpr *CE,
|
2018-12-20 07:35:08 +08:00
|
|
|
CheckerContext &C) const {
|
2011-12-17 08:26:34 +08:00
|
|
|
assert(CE->getNumArgs() >= 2);
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2011-12-17 08:26:34 +08:00
|
|
|
|
|
|
|
// Check is the file descriptor is tainted.
|
2012-01-07 06:09:28 +08:00
|
|
|
if (State->isTainted(CE->getArg(0), C.getLocationContext()) ||
|
2012-01-12 10:22:34 +08:00
|
|
|
isStdin(CE->getArg(0), C)) {
|
|
|
|
// All arguments except for the first two should get taint.
|
|
|
|
for (unsigned int i = 2; i < CE->getNumArgs(); ++i)
|
2018-12-20 07:35:08 +08:00
|
|
|
State = State->add<TaintArgsOnPostVisit>(i);
|
2012-01-12 10:22:34 +08:00
|
|
|
return State;
|
|
|
|
}
|
|
|
|
|
2014-05-27 10:45:47 +08:00
|
|
|
return nullptr;
|
2011-12-17 08:26:34 +08:00
|
|
|
}
|
|
|
|
|
2012-01-20 08:11:19 +08:00
|
|
|
// If argument 0(protocol domain) is network, the return value should get taint.
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef GenericTaintChecker::postSocket(const CallExpr *CE,
|
2012-04-11 07:41:11 +08:00
|
|
|
CheckerContext &C) const {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2012-04-11 07:41:11 +08:00
|
|
|
if (CE->getNumArgs() < 3)
|
|
|
|
return State;
|
2012-01-20 08:11:19 +08:00
|
|
|
|
|
|
|
SourceLocation DomLoc = CE->getArg(0)->getExprLoc();
|
|
|
|
StringRef DomName = C.getMacroNameOrSpelling(DomLoc);
|
|
|
|
// White list the internal communication protocols.
|
|
|
|
if (DomName.equals("AF_SYSTEM") || DomName.equals("AF_LOCAL") ||
|
|
|
|
DomName.equals("AF_UNIX") || DomName.equals("AF_RESERVED_36"))
|
|
|
|
return State;
|
|
|
|
State = State->addTaint(CE, C.getLocationContext());
|
|
|
|
return State;
|
|
|
|
}
|
|
|
|
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef GenericTaintChecker::postScanf(const CallExpr *CE,
|
2018-12-20 07:35:08 +08:00
|
|
|
CheckerContext &C) const {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2012-04-11 07:41:11 +08:00
|
|
|
if (CE->getNumArgs() < 2)
|
|
|
|
return State;
|
|
|
|
|
2011-11-17 03:58:13 +08:00
|
|
|
// All arguments except for the very first one should get taint.
|
|
|
|
for (unsigned int i = 1; i < CE->getNumArgs(); ++i) {
|
|
|
|
// The arguments are pointer arguments. The data they are pointing at is
|
|
|
|
// tainted after the call.
|
2018-12-20 07:35:08 +08:00
|
|
|
const Expr *Arg = CE->getArg(i);
|
2017-05-29 23:42:56 +08:00
|
|
|
Optional<SVal> V = getPointedToSVal(C, Arg);
|
|
|
|
if (V)
|
|
|
|
State = State->addTaint(*V);
|
2011-12-14 08:56:02 +08:00
|
|
|
}
|
2011-12-17 08:26:34 +08:00
|
|
|
return State;
|
2011-11-17 03:58:13 +08:00
|
|
|
}
|
|
|
|
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef GenericTaintChecker::postRetTaint(const CallExpr *CE,
|
2012-04-11 07:41:11 +08:00
|
|
|
CheckerContext &C) const {
|
2012-01-07 06:09:28 +08:00
|
|
|
return C.getState()->addTaint(CE, C.getLocationContext());
|
2011-11-17 03:58:13 +08:00
|
|
|
}
|
|
|
|
|
2012-01-25 03:32:25 +08:00
|
|
|
bool GenericTaintChecker::isStdin(const Expr *E, CheckerContext &C) {
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2018-01-18 04:27:29 +08:00
|
|
|
SVal Val = C.getSVal(E);
|
2011-12-14 08:56:18 +08:00
|
|
|
|
2011-12-17 02:28:50 +08:00
|
|
|
// stdin is a pointer, so it would be a region.
|
|
|
|
const MemRegion *MemReg = Val.getAsRegion();
|
|
|
|
|
|
|
|
// The region should be symbolic, we do not know it's value.
|
|
|
|
const SymbolicRegion *SymReg = dyn_cast_or_null<SymbolicRegion>(MemReg);
|
|
|
|
if (!SymReg)
|
2011-12-14 08:56:18 +08:00
|
|
|
return false;
|
|
|
|
|
2011-12-17 02:28:50 +08:00
|
|
|
// Get it's symbol and find the declaration region it's pointing to.
|
2018-12-20 07:35:08 +08:00
|
|
|
const SymbolRegionValue *Sm =
|
|
|
|
dyn_cast<SymbolRegionValue>(SymReg->getSymbol());
|
2011-12-17 02:28:50 +08:00
|
|
|
if (!Sm)
|
|
|
|
return false;
|
|
|
|
const DeclRegion *DeclReg = dyn_cast_or_null<DeclRegion>(Sm->getRegion());
|
|
|
|
if (!DeclReg)
|
|
|
|
return false;
|
2011-12-14 08:56:18 +08:00
|
|
|
|
2011-12-17 02:28:50 +08:00
|
|
|
// This region corresponds to a declaration, find out if it's a global/extern
|
|
|
|
// variable named stdin with the proper type.
|
|
|
|
if (const VarDecl *D = dyn_cast_or_null<VarDecl>(DeclReg->getDecl())) {
|
|
|
|
D = D->getCanonicalDecl();
|
|
|
|
if ((D->getName().find("stdin") != StringRef::npos) && D->isExternC())
|
2018-12-20 07:35:08 +08:00
|
|
|
if (const PointerType *PtrTy =
|
2011-12-17 02:28:50 +08:00
|
|
|
dyn_cast<PointerType>(D->getType().getTypePtr()))
|
2018-12-20 07:35:08 +08:00
|
|
|
if (PtrTy->getPointeeType().getCanonicalType() ==
|
|
|
|
C.getASTContext().getFILEType().getCanonicalType())
|
|
|
|
return true;
|
2011-12-17 02:28:50 +08:00
|
|
|
}
|
2011-12-14 08:56:18 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-01-07 10:33:10 +08:00
|
|
|
static bool getPrintfFormatArgumentNum(const CallExpr *CE,
|
|
|
|
const CheckerContext &C,
|
|
|
|
unsigned int &ArgNum) {
|
|
|
|
// Find if the function contains a format string argument.
|
|
|
|
// Handles: fprintf, printf, sprintf, snprintf, vfprintf, vprintf, vsprintf,
|
|
|
|
// vsnprintf, syslog, custom annotated functions.
|
|
|
|
const FunctionDecl *FDecl = C.getCalleeDecl(CE);
|
|
|
|
if (!FDecl)
|
|
|
|
return false;
|
2014-03-11 01:08:28 +08:00
|
|
|
for (const auto *Format : FDecl->specific_attrs<FormatAttr>()) {
|
2012-01-07 10:33:10 +08:00
|
|
|
ArgNum = Format->getFormatIdx() - 1;
|
2018-12-20 07:35:08 +08:00
|
|
|
if ((Format->getType()->getName() == "printf") && CE->getNumArgs() > ArgNum)
|
2012-01-07 10:33:10 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Or if a function is named setproctitle (this is a heuristic).
|
|
|
|
if (C.getCalleeName(CE).find("setproctitle") != StringRef::npos) {
|
|
|
|
ArgNum = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-01-14 10:48:40 +08:00
|
|
|
bool GenericTaintChecker::generateReportIfTainted(const Expr *E,
|
|
|
|
const char Msg[],
|
|
|
|
CheckerContext &C) const {
|
|
|
|
assert(E);
|
|
|
|
|
|
|
|
// Check for taint.
|
2012-01-27 05:29:00 +08:00
|
|
|
ProgramStateRef State = C.getState();
|
2017-05-29 23:42:56 +08:00
|
|
|
Optional<SVal> PointedToSVal = getPointedToSVal(C, E);
|
2017-03-09 08:01:07 +08:00
|
|
|
SVal TaintedSVal;
|
2017-05-29 23:42:56 +08:00
|
|
|
if (PointedToSVal && State->isTainted(*PointedToSVal))
|
|
|
|
TaintedSVal = *PointedToSVal;
|
2017-03-09 08:01:07 +08:00
|
|
|
else if (State->isTainted(E, C.getLocationContext()))
|
|
|
|
TaintedSVal = C.getSVal(E);
|
|
|
|
else
|
2012-01-14 10:48:40 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Generate diagnostic.
|
2015-09-17 06:03:05 +08:00
|
|
|
if (ExplodedNode *N = C.generateNonFatalErrorNode()) {
|
2012-01-14 10:48:40 +08:00
|
|
|
initBugType();
|
2015-06-23 21:15:32 +08:00
|
|
|
auto report = llvm::make_unique<BugReport>(*BT, Msg, N);
|
2012-01-14 10:48:40 +08:00
|
|
|
report->addRange(E->getSourceRange());
|
2017-03-09 08:01:07 +08:00
|
|
|
report->addVisitor(llvm::make_unique<TaintBugVisitor>(TaintedSVal));
|
2015-06-23 21:15:32 +08:00
|
|
|
C.emitReport(std::move(report));
|
2012-01-14 10:48:40 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-20 07:35:08 +08:00
|
|
|
bool GenericTaintChecker::checkUncontrolledFormatString(
|
|
|
|
const CallExpr *CE, CheckerContext &C) const {
|
2012-01-07 10:33:10 +08:00
|
|
|
// Check if the function contains a format string argument.
|
|
|
|
unsigned int ArgNum = 0;
|
|
|
|
if (!getPrintfFormatArgumentNum(CE, C, ArgNum))
|
|
|
|
return false;
|
|
|
|
|
2018-12-20 07:35:08 +08:00
|
|
|
// If either the format string content or the pointer itself are tainted,
|
|
|
|
// warn.
|
2015-12-28 21:06:58 +08:00
|
|
|
return generateReportIfTainted(CE->getArg(ArgNum),
|
|
|
|
MsgUncontrolledFormatString, C);
|
2012-01-14 10:48:40 +08:00
|
|
|
}
|
|
|
|
|
2018-12-20 07:35:08 +08:00
|
|
|
bool GenericTaintChecker::checkSystemCall(const CallExpr *CE, StringRef Name,
|
2012-01-14 10:48:40 +08:00
|
|
|
CheckerContext &C) const {
|
2015-09-08 11:50:52 +08:00
|
|
|
// TODO: It might make sense to run this check on demand. In some cases,
|
|
|
|
// we should check if the environment has been cleansed here. We also might
|
2012-01-25 03:32:25 +08:00
|
|
|
// need to know if the user was reset before these calls(seteuid).
|
2012-01-14 10:48:40 +08:00
|
|
|
unsigned ArgNum = llvm::StringSwitch<unsigned>(Name)
|
2018-12-20 07:35:08 +08:00
|
|
|
.Case("system", 0)
|
|
|
|
.Case("popen", 0)
|
|
|
|
.Case("execl", 0)
|
|
|
|
.Case("execle", 0)
|
|
|
|
.Case("execlp", 0)
|
|
|
|
.Case("execv", 0)
|
|
|
|
.Case("execvp", 0)
|
|
|
|
.Case("execvP", 0)
|
|
|
|
.Case("execve", 0)
|
|
|
|
.Case("dlopen", 0)
|
|
|
|
.Default(UINT_MAX);
|
2012-01-14 10:48:40 +08:00
|
|
|
|
2012-04-11 07:41:11 +08:00
|
|
|
if (ArgNum == UINT_MAX || CE->getNumArgs() < (ArgNum + 1))
|
2012-01-14 10:48:40 +08:00
|
|
|
return false;
|
|
|
|
|
2015-12-28 21:06:58 +08:00
|
|
|
return generateReportIfTainted(CE->getArg(ArgNum), MsgSanitizeSystemArgs, C);
|
2012-01-07 10:33:10 +08:00
|
|
|
}
|
|
|
|
|
2012-01-18 10:45:11 +08:00
|
|
|
// TODO: Should this check be a part of the CString checker?
|
|
|
|
// If yes, should taint be a global setting?
|
|
|
|
bool GenericTaintChecker::checkTaintedBufferSize(const CallExpr *CE,
|
|
|
|
const FunctionDecl *FDecl,
|
|
|
|
CheckerContext &C) const {
|
|
|
|
// If the function has a buffer size argument, set ArgNum.
|
|
|
|
unsigned ArgNum = InvalidArgIndex;
|
|
|
|
unsigned BId = 0;
|
2018-12-20 07:35:08 +08:00
|
|
|
if ((BId = FDecl->getMemoryFunctionKind()))
|
|
|
|
switch (BId) {
|
2012-01-18 10:45:11 +08:00
|
|
|
case Builtin::BImemcpy:
|
|
|
|
case Builtin::BImemmove:
|
|
|
|
case Builtin::BIstrncpy:
|
|
|
|
ArgNum = 2;
|
|
|
|
break;
|
|
|
|
case Builtin::BIstrndup:
|
|
|
|
ArgNum = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (ArgNum == InvalidArgIndex) {
|
|
|
|
if (C.isCLibraryFunction(FDecl, "malloc") ||
|
|
|
|
C.isCLibraryFunction(FDecl, "calloc") ||
|
|
|
|
C.isCLibraryFunction(FDecl, "alloca"))
|
|
|
|
ArgNum = 0;
|
|
|
|
else if (C.isCLibraryFunction(FDecl, "memccpy"))
|
|
|
|
ArgNum = 3;
|
|
|
|
else if (C.isCLibraryFunction(FDecl, "realloc"))
|
|
|
|
ArgNum = 1;
|
|
|
|
else if (C.isCLibraryFunction(FDecl, "bcopy"))
|
|
|
|
ArgNum = 2;
|
|
|
|
}
|
|
|
|
|
2015-12-28 21:06:58 +08:00
|
|
|
return ArgNum != InvalidArgIndex && CE->getNumArgs() > ArgNum &&
|
|
|
|
generateReportIfTainted(CE->getArg(ArgNum), MsgTaintedBufferSize, C);
|
2012-01-18 10:45:11 +08:00
|
|
|
}
|
|
|
|
|
2011-11-17 03:58:13 +08:00
|
|
|
void ento::registerGenericTaintChecker(CheckerManager &mgr) {
|
|
|
|
mgr.registerChecker<GenericTaintChecker>();
|
|
|
|
}
|
2019-01-26 22:23:08 +08:00
|
|
|
|
|
|
|
bool ento::shouldRegisterGenericTaintChecker(const LangOptions &LO) {
|
|
|
|
return true;
|
|
|
|
}
|