clang 19.0.0git
FixedAddressChecker.cpp
Go to the documentation of this file.
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
20
21using namespace clang;
22using namespace ento;
23
24namespace {
25class FixedAddressChecker
26 : public Checker< check::PreStmt<BinaryOperator> > {
27 const BugType BT{this, "Use fixed address"};
28
29public:
30 void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
31};
32}
33
34void FixedAddressChecker::checkPreStmt(const BinaryOperator *B,
35 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 if (B->getOpcode() != BO_Assign)
40 return;
41
42 QualType T = B->getType();
43 if (!T->isPointerType())
44 return;
45
46 SVal RV = C.getSVal(B->getRHS());
47
48 if (!RV.isConstant() || RV.isZeroConstant())
49 return;
50
51 if (ExplodedNode *N = C.generateNonFatalErrorNode()) {
52 // FIXME: improve grammar in the following strings:
53 constexpr llvm::StringLiteral Msg =
54 "Using a fixed address is not portable because that address will "
55 "probably not be valid in all environments or platforms.";
56 auto R = std::make_unique<PathSensitiveBugReport>(BT, Msg, N);
57 R->addRange(B->getRHS()->getSourceRange());
58 C.emitReport(std::move(R));
59 }
60}
61
62void ento::registerFixedAddressChecker(CheckerManager &mgr) {
63 mgr.registerChecker<FixedAddressChecker>();
64}
65
66bool ento::shouldRegisterFixedAddressChecker(const CheckerManager &mgr) {
67 return true;
68}
A builtin binary operation expression such as "x + y" or "x <= y".
Definition: Expr.h:3840
Expr * getRHS() const
Definition: Expr.h:3891
Opcode getOpcode() const
Definition: Expr.h:3884
QualType getType() const
Definition: Expr.h:142
A (possibly-)qualified type.
Definition: Type.h:738
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
Definition: Stmt.cpp:326
bool isPointerType() const
Definition: Type.h:7402
CHECKER * registerChecker(AT &&... Args)
Used to register checkers.
SVal - This represents a symbolic expression, which can be either an L-value or an R-value.
Definition: SVals.h:55
bool isZeroConstant() const
Definition: SVals.cpp:258
bool isConstant() const
Definition: SVals.cpp:246
The JSON file list parser is used to communicate input to InstallAPI.
const FunctionProtoType * T