Coverage Report

Created: 2023-09-30 09:22

/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
Line
Count
Source (jump to first uncovered line)
1
//== ArrayBoundChecker.cpp ------------------------------*- 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 file defines ArrayBoundChecker, which is a path-sensitive check
10
// which looks for an out-of-bound array element access.
11
//
12
//===----------------------------------------------------------------------===//
13
14
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
15
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
16
#include "clang/StaticAnalyzer/Core/Checker.h"
17
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
18
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
19
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicExtent.h"
20
#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
21
22
using namespace clang;
23
using namespace ento;
24
25
namespace {
26
class ArrayBoundChecker :
27
    public Checker<check::Location> {
28
  mutable std::unique_ptr<BugType> BT;
29
30
public:
31
  void checkLocation(SVal l, bool isLoad, const Stmt* S,
32
                     CheckerContext &C) const;
33
};
34
}
35
36
void ArrayBoundChecker::checkLocation(SVal l, bool isLoad, const Stmt* LoadS,
37
3.48k
                                      CheckerContext &C) const {
38
  // Check for out of bound array element access.
39
3.48k
  const MemRegion *R = l.getAsRegion();
40
3.48k
  if (!R)
41
20
    return;
42
43
3.46k
  const ElementRegion *ER = dyn_cast<ElementRegion>(R);
44
3.46k
  if (!ER)
45
2.94k
    return;
46
47
  // Get the index of the accessed element.
48
513
  DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();
49
50
  // Zero index is always in bound, this also passes ElementRegions created for
51
  // pointer casts.
52
513
  if (Idx.isZeroConstant())
53
103
    return;
54
55
410
  ProgramStateRef state = C.getState();
56
57
  // Get the size of the array.
58
410
  DefinedOrUnknownSVal ElementCount = getDynamicElementCount(
59
410
      state, ER->getSuperRegion(), C.getSValBuilder(), ER->getValueType());
60
61
410
  ProgramStateRef StInBound, StOutBound;
62
410
  std::tie(StInBound, StOutBound) = state->assumeInBoundDual(Idx, ElementCount);
63
410
  if (StOutBound && 
!StInBound83
) {
64
16
    ExplodedNode *N = C.generateErrorNode(StOutBound);
65
16
    if (!N)
66
0
      return;
67
68
16
    if (!BT)
69
4
      BT.reset(new BugType(this, "Out-of-bound array access"));
70
71
    // FIXME: It would be nice to eventually make this diagnostic more clear,
72
    // e.g., by referencing the original declaration or by saying *why* this
73
    // reference is outside the range.
74
75
    // Generate a report for this bug.
76
16
    auto report = std::make_unique<PathSensitiveBugReport>(
77
16
        *BT, "Access out-of-bound array element (buffer overflow)", N);
78
79
16
    report->addRange(LoadS->getSourceRange());
80
16
    C.emitReport(std::move(report));
81
16
    return;
82
16
  }
83
84
  // Array bound check succeeded.  From this point forward the array bound
85
  // should always succeed.
86
394
  C.addTransition(StInBound);
87
394
}
88
89
6
void ento::registerArrayBoundChecker(CheckerManager &mgr) {
90
6
  mgr.registerChecker<ArrayBoundChecker>();
91
6
}
92
93
12
bool ento::shouldRegisterArrayBoundChecker(const CheckerManager &mgr) {
94
12
  return true;
95
12
}