opnsense-src/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp

79 lines
2.3 KiB
C++
Raw Normal View History

2009-11-18 09:59:57 -05:00
//== ReturnUndefChecker.cpp -------------------------------------*- 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 ReturnUndefChecker, which is a path-sensitive
// check which looks for undefined or garbage values being returned to the
// caller.
//
//===----------------------------------------------------------------------===//
#include "ClangSACheckers.h"
#include "clang/StaticAnalyzer/Core/Checker.h"
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
2009-11-18 09:59:57 -05:00
using namespace clang;
using namespace ento;
2009-11-18 09:59:57 -05:00
namespace {
2009-12-01 06:08:04 -05:00
class ReturnUndefChecker :
public Checker< check::PreStmt<ReturnStmt> > {
mutable OwningPtr<BuiltinBug> BT;
2009-11-18 09:59:57 -05:00
public:
void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
2009-11-18 09:59:57 -05:00
};
}
void ReturnUndefChecker::checkPreStmt(const ReturnStmt *RS,
CheckerContext &C) const {
2009-11-18 09:59:57 -05:00
const Expr *RetE = RS->getRetValue();
if (!RetE)
return;
if (!C.getState()->getSVal(RetE, C.getLocationContext()).isUndef())
2009-11-18 09:59:57 -05:00
return;
// "return;" is modeled to evaluate to an UndefinedValue. Allow UndefinedValue
// to be returned in functions returning void to support the following pattern:
// void foo() {
// return;
// }
// void test() {
// return foo();
// }
const StackFrameContext *SFC = C.getStackFrame();
QualType RT = CallEvent::getDeclaredResultType(SFC->getDecl());
if (!RT.isNull() && RT->isSpecificBuiltinType(BuiltinType::Void))
return;
ExplodedNode *N = C.generateSink();
2009-11-18 09:59:57 -05:00
if (!N)
return;
if (!BT)
BT.reset(new BuiltinBug("Garbage return value",
"Undefined or garbage value returned to caller"));
2009-11-18 09:59:57 -05:00
BugReport *report =
new BugReport(*BT, BT->getDescription(), N);
2009-11-18 09:59:57 -05:00
report->addRange(RetE->getSourceRange());
bugreporter::trackNullOrUndefValue(N, RetE, *report);
2009-11-18 09:59:57 -05:00
C.emitReport(report);
2009-11-18 09:59:57 -05:00
}
void ento::registerReturnUndefChecker(CheckerManager &mgr) {
mgr.registerChecker<ReturnUndefChecker>();
}