Coverage Report

Created: 2023-09-30 09:22

/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
Line
Count
Source
1
//=== FixedAddressChecker.cpp - Fixed address usage checker ----*- C++ -*--===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
//
9
// This files defines FixedAddressChecker, a builtin checker that checks for
10
// assignment of a fixed address to a pointer.
11
// This check corresponds to CWE-587.
12
//
13
//===----------------------------------------------------------------------===//
14
15
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
16
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
17
#include "clang/StaticAnalyzer/Core/Checker.h"
18
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
19
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
20
21
using namespace clang;
22
using namespace ento;
23
24
namespace {
25
class FixedAddressChecker
26
  : public Checker< check::PreStmt<BinaryOperator> > {
27
  mutable std::unique_ptr<BugType> BT;
28
29
public:
30
  void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
31
};
32
}
33
34
void FixedAddressChecker::checkPreStmt(const BinaryOperator *B,
35
2.35k
                                       CheckerContext &C) const {
36
  // Using a fixed address is not portable because that address will probably
37
  // not be valid in all environments or platforms.
38
39
2.35k
  if (B->getOpcode() != BO_Assign)
40
1.55k
    return;
41
42
794
  QualType T = B->getType();
43
794
  if (!T->isPointerType())
44
527
    return;
45
46
267
  SVal RV = C.getSVal(B->getRHS());
47
48
267
  if (!RV.isConstant() || 
RV.isZeroConstant()23
)
49
265
    return;
50
51
2
  if (ExplodedNode *N = C.generateNonFatalErrorNode()) {
52
    // FIXME: improve grammar in the following strings:
53
2
    if (!BT)
54
2
      BT.reset(new BugType(this, "Use fixed address"));
55
2
    constexpr llvm::StringLiteral Msg =
56
2
        "Using a fixed address is not portable because that address will "
57
2
        "probably not be valid in all environments or platforms.";
58
2
    auto R = std::make_unique<PathSensitiveBugReport>(*BT, Msg, N);
59
2
    R->addRange(B->getRHS()->getSourceRange());
60
2
    C.emitReport(std::move(R));
61
2
  }
62
2
}
63
64
76
void ento::registerFixedAddressChecker(CheckerManager &mgr) {
65
76
  mgr.registerChecker<FixedAddressChecker>();
66
76
}
67
68
152
bool ento::shouldRegisterFixedAddressChecker(const CheckerManager &mgr) {
69
152
  return true;
70
152
}