clang 24.0.0git
LifetimeSafety.h
Go to the documentation of this file.
1//===- LifetimeSafety.h - C++ Lifetime Safety Analysis -*----------- 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 the main entry point and orchestrator for the C++ Lifetime
10// Safety Analysis. It coordinates the entire analysis pipeline: fact
11// generation, loan propagation, live origins analysis, and enforcement of
12// lifetime safety policy.
13//
14// The analysis is based on the concepts of "origins" and "loans" to track
15// pointer lifetimes and detect issues like use-after-free and dangling
16// pointers. See the RFC for more details:
17// https://discourse.llvm.org/t/rfc-intra-procedural-lifetime-analysis-in-clang/86291
18//
19//===----------------------------------------------------------------------===//
20#ifndef LLVM_CLANG_ANALYSIS_ANALYSES_LIFETIMESAFETY_H
21#define LLVM_CLANG_ANALYSIS_ANALYSES_LIFETIMESAFETY_H
22
23#include "clang/AST/Decl.h"
31#include "llvm/ADT/PointerUnion.h"
32#include <cstddef>
33#include <memory>
34
35namespace clang::lifetimes {
36
38 /// Maximum number of CFG blocks to analyze. Functions with larger CFGs will
39 /// be skipped.
41
42 /// Whether to suggest lifetime annotations.
44};
45
46/// Enum to track functions visible across or within TU.
47enum class WarningScope {
48 CrossTU, // For warnings on declarations visible across Translation Units.
49 IntraTU // For warnings on functions local to a Translation Unit.
50};
51
52/// Abstract interface for operations requiring Sema access.
53///
54/// This class exists to break a circular dependency: the LifetimeSafety
55/// analysis target cannot directly depend on clangSema (which would create the
56/// cycle: clangSema -> clangAnalysis -> clangAnalysisLifetimeSafety ->
57/// clangSema).
58///
59/// Instead, this interface is implemented in AnalysisBasedWarnings.cpp (part of
60/// clangSema), allowing the analysis to report diagnostics and modify the AST
61/// through Sema without introducing a circular dependency.
63public:
65 virtual ~LifetimeSafetySemaHelper() = default;
66
67 virtual void reportUseAfterScope(const Expr *IssueExpr, const Expr *UseExpr,
68 const Expr *MovedExpr,
69 SourceLocation FreeLoc,
71
72 virtual void reportUseAfterReturn(const Expr *IssueExpr,
73 const Expr *ReturnExpr,
74 const Expr *MovedExpr) {}
75
76 virtual void reportDanglingField(const Expr *IssueExpr,
77 const FieldDecl *Field,
78 const Expr *MovedExpr,
79 bool IsCapturedByLambda,
80 SourceLocation ExpiryLoc) {}
81
82 virtual void reportDanglingGlobal(const Expr *IssueExpr,
83 const VarDecl *DanglingGlobal,
84 const Expr *MovedExpr,
85 SourceLocation ExpiryLoc) {}
86
87 // Reports when a reference/iterator is used after the container operation
88 // that invalidated it.
89 virtual void
90 reportUseAfterInvalidation(const Expr *IssueExpr, const Expr *UseExpr,
91 const Expr *InvalidationExpr,
93 virtual void
94 reportUseAfterInvalidation(const ParmVarDecl *PVD, const Expr *UseExpr,
95 const Expr *InvalidationExpr,
97 virtual void reportInvalidatedField(const Expr *IssueExpr,
98 const FieldDecl *Field,
99 const Expr *InvalidationExpr) {}
100 virtual void reportInvalidatedField(const ParmVarDecl *PVD,
101 const FieldDecl *Field,
102 const Expr *InvalidationExpr) {}
103 virtual void reportInvalidatedGlobal(const Expr *IssueExpr,
104 const VarDecl *Global,
105 const Expr *InvalidationExpr) {}
106 virtual void reportInvalidatedGlobal(const ParmVarDecl *PVD,
107 const VarDecl *Global,
108 const Expr *InvalidationExpr) {}
109
111 llvm::PointerUnion<const Expr *, const FieldDecl *, const VarDecl *>;
112
113 // Suggests lifetime bound annotations for function parameters.
115 const ParmVarDecl *ParmToAnnotate,
117
118 // Reports misuse of [[clang::noescape]] when parameter escapes through return
119 virtual void reportNoescapeViolation(const ParmVarDecl *ParmWithNoescape,
120 const Expr *EscapeExpr) {}
121 // Reports misuse of [[clang::noescape]] when parameter escapes through field
122 virtual void reportNoescapeViolation(const ParmVarDecl *ParmWithNoescape,
123 const FieldDecl *EscapeField) {}
124 // Reports misuse of [[clang::noescape]] when parameter escapes through
125 // assignment to a global variable
126 virtual void reportNoescapeViolation(const ParmVarDecl *ParmWithNoescape,
127 const VarDecl *EscapeGlobal) {}
128
129 // Reports misuse of [[clang::lifetimebound]] when parameter doesn't escape
130 // through return.
131 virtual void
132 reportLifetimeboundViolation(const ParmVarDecl *ParmWithLifetimebound) {}
133
134 // Reports misuse of [[clang::lifetimebound]] when implicit this parameter
135 // doesn't escape through return.
136 virtual void
137 reportLifetimeboundViolation(const CXXMethodDecl *MDWithLifetimebound) {}
138
139 // Reports a member function definition that has [[clang::lifetimebound]] on
140 // the implicit this parameter when the canonical declaration does not.
142 const CXXMethodDecl *FDef,
143 const CXXMethodDecl *FDecl) {}
144
145 // Reports a function definition parameter that has [[clang::lifetimebound]]
146 // when the corresponding parameter in the canonical declaration.
148 const ParmVarDecl *PVDDef,
149 const ParmVarDecl *PVDDecl) {}
150
152
153 // Suggests lifetime bound annotations for implicit this.
155 const CXXMethodDecl *MD,
156 const Expr *EscapeExpr) {}
157
158 // Adds inferred lifetime bound attribute for implicit this to its
159 // TypeSourceInfo.
161};
162
163/// The main entry point for the analysis.
165 LifetimeSafetySemaHelper *SemaHelper,
166 const LifetimeSafetyOpts &Opts,
167 LifetimeSafetyStats &Stats, bool CollectStats);
168
169namespace internal {
170
171void collectLifetimeStats(AnalysisDeclContext &AC, OriginManager &OM,
172 LifetimeSafetyStats &Stats);
173
174/// An object to hold the factories for immutable collections, ensuring
175/// that all created states share the same underlying memory management.
177 OriginLoanMap::Factory OriginMapFactory;
178 LoanSet::Factory LoanSetFactory;
179 MovedLoansMap::Factory MovedLoansMapFactory;
180 LivenessMap::Factory LivenessMapFactory;
181};
182
183/// Running the lifetime safety analysis and querying its results. It
184/// encapsulates the various dataflow analyses.
186public:
188 LifetimeSafetySemaHelper *SemaHelper,
189 const LifetimeSafetyOpts &LSOpts);
190
191 void run();
192
193 /// \note These are provided only for testing purposes.
195 return *LoanPropagation;
196 }
197 LiveOriginsAnalysis &getLiveOrigins() const { return *LiveOrigins; }
198 FactManager &getFactManager() { return *FactMgr; }
199
200private:
202 LifetimeSafetySemaHelper *SemaHelper;
203 const LifetimeSafetyOpts LSOpts;
204 LifetimeFactory Factory;
205 std::unique_ptr<FactManager> FactMgr;
206 std::unique_ptr<LiveOriginsAnalysis> LiveOrigins;
207 std::unique_ptr<LoanPropagationAnalysis> LoanPropagation;
208 std::unique_ptr<MovedLoansAnalysis> MovedLoans;
209};
210} // namespace internal
211} // namespace clang::lifetimes
212
213#endif // LLVM_CLANG_ANALYSIS_ANALYSES_LIFETIMESAFETY_H
This file defines AnalysisDeclContext, a class that manages the analysis context data for context sen...
AnalysisDeclContext contains the context data for the function, method or block under analysis.
Represents a static or instance method of a struct/union/class.
Definition DeclCXX.h:2145
This represents one expression.
Definition Expr.h:112
Represents a member of a struct/union/class.
Definition Decl.h:3204
Represents a parameter to a function.
Definition Decl.h:1819
Scope - A scope is a transient data structure that is used while parsing the program.
Definition Scope.h:41
Encodes a location in the source.
Represents a variable declaration or definition.
Definition Decl.h:932
Abstract interface for operations requiring Sema access.
virtual void reportInapplicableLifetimebound(const ParmVarDecl *PVD)
virtual void reportUseAfterInvalidation(const Expr *IssueExpr, const Expr *UseExpr, const Expr *InvalidationExpr, llvm::ArrayRef< const Expr * > ExprChain)
llvm::PointerUnion< const Expr *, const FieldDecl *, const VarDecl * > EscapingTarget
virtual void reportUseAfterInvalidation(const ParmVarDecl *PVD, const Expr *UseExpr, const Expr *InvalidationExpr, llvm::ArrayRef< const Expr * > ExprChain)
virtual void suggestLifetimeboundToParmVar(WarningScope Scope, const ParmVarDecl *ParmToAnnotate, EscapingTarget Target)
virtual void reportDanglingGlobal(const Expr *IssueExpr, const VarDecl *DanglingGlobal, const Expr *MovedExpr, SourceLocation ExpiryLoc)
virtual void reportInvalidatedField(const ParmVarDecl *PVD, const FieldDecl *Field, const Expr *InvalidationExpr)
virtual void reportMisplacedLifetimebound(WarningScope Scope, const ParmVarDecl *PVDDef, const ParmVarDecl *PVDDecl)
virtual void reportDanglingField(const Expr *IssueExpr, const FieldDecl *Field, const Expr *MovedExpr, bool IsCapturedByLambda, SourceLocation ExpiryLoc)
virtual void reportNoescapeViolation(const ParmVarDecl *ParmWithNoescape, const VarDecl *EscapeGlobal)
virtual void reportNoescapeViolation(const ParmVarDecl *ParmWithNoescape, const FieldDecl *EscapeField)
virtual void reportLifetimeboundViolation(const ParmVarDecl *ParmWithLifetimebound)
virtual void reportUseAfterScope(const Expr *IssueExpr, const Expr *UseExpr, const Expr *MovedExpr, SourceLocation FreeLoc, llvm::ArrayRef< const Expr * > ExprChain)
virtual void addLifetimeBoundToImplicitThis(const CXXMethodDecl *MD)
virtual void reportNoescapeViolation(const ParmVarDecl *ParmWithNoescape, const Expr *EscapeExpr)
virtual void reportMisplacedLifetimebound(WarningScope Scope, const CXXMethodDecl *FDef, const CXXMethodDecl *FDecl)
virtual void suggestLifetimeboundToImplicitThis(WarningScope Scope, const CXXMethodDecl *MD, const Expr *EscapeExpr)
virtual void reportLifetimeboundViolation(const CXXMethodDecl *MDWithLifetimebound)
virtual void reportUseAfterReturn(const Expr *IssueExpr, const Expr *ReturnExpr, const Expr *MovedExpr)
virtual void reportInvalidatedGlobal(const ParmVarDecl *PVD, const VarDecl *Global, const Expr *InvalidationExpr)
virtual void reportInvalidatedGlobal(const Expr *IssueExpr, const VarDecl *Global, const Expr *InvalidationExpr)
virtual void reportInvalidatedField(const Expr *IssueExpr, const FieldDecl *Field, const Expr *InvalidationExpr)
LifetimeSafetyAnalysis(AnalysisDeclContext &AC, LifetimeSafetySemaHelper *SemaHelper, const LifetimeSafetyOpts &LSOpts)
LoanPropagationAnalysis & getLoanPropagation() const
void collectLifetimeStats(AnalysisDeclContext &AC, OriginManager &OM, LifetimeSafetyStats &Stats)
void runLifetimeSafetyAnalysis(AnalysisDeclContext &AC, LifetimeSafetySemaHelper *SemaHelper, const LifetimeSafetyOpts &Opts, LifetimeSafetyStats &Stats, bool CollectStats)
The main entry point for the analysis.
WarningScope
Enum to track functions visible across or within TU.
bool SuggestAnnotations
Whether to suggest lifetime annotations.
size_t MaxCFGBlocks
Maximum number of CFG blocks to analyze.
An object to hold the factories for immutable collections, ensuring that all created states share the...