clang 23.0.0git
MIGChecker.cpp
Go to the documentation of this file.
1//== MIGChecker.cpp - MIG calling convention 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 file defines MIGChecker, a Mach Interface Generator calling convention
10// checker. Namely, in MIG callback implementation the following rules apply:
11// - When a server routine returns an error code that represents success, it
12// must take ownership of resources passed to it (and eventually release
13// them).
14// - Additionally, when returning success, all out-parameters must be
15// initialized.
16// - When it returns any other error code, it must not take ownership,
17// because the message and its out-of-line parameters will be destroyed
18// by the client that called the function.
19// For now we only check the last rule, as its violations lead to dangerous
20// use-after-free exploits.
21//
22//===----------------------------------------------------------------------===//
23
24#include "clang/AST/Attr.h"
33#include <optional>
34
35using namespace clang;
36using namespace ento;
37
38namespace {
39class MIGChecker : public Checker<check::PostCall, check::PreStmt<ReturnStmt>,
40 check::EndFunction> {
41 BugType BT{this, "Use-after-free (MIG calling convention violation)",
43
44 // The checker knows that an out-of-line object is deallocated if it is
45 // passed as an argument to one of these functions. If this object is
46 // additionally an argument of a MIG routine, the checker keeps track of that
47 // information and issues a warning when an error is returned from the
48 // respective routine.
49 CallDescriptionMap<unsigned> Deallocators = {
50#define CALL(required_args, deallocated_arg, ...) \
51 {{CDM::SimpleFunc, {__VA_ARGS__}, required_args}, deallocated_arg}
52 // E.g., if the checker sees a C function 'vm_deallocate' that has
53 // exactly 3 parameters, it knows that argument #1 (starting from 0, i.e.
54 // the second argument) is going to be consumed in the sense of the MIG
55 // consume-on-success convention.
56 CALL(3, 1, "vm_deallocate"),
57 CALL(3, 1, "mach_vm_deallocate"),
58 CALL(2, 0, "mig_deallocate"),
59 CALL(2, 1, "mach_port_deallocate"),
60 CALL(1, 0, "device_deallocate"),
61 CALL(1, 0, "iokit_remove_connect_reference"),
62 CALL(1, 0, "iokit_remove_reference"),
63 CALL(1, 0, "iokit_release_port"),
64 CALL(1, 0, "ipc_port_release"),
65 CALL(1, 0, "ipc_port_release_sonce"),
66 CALL(1, 0, "ipc_voucher_attr_control_release"),
67 CALL(1, 0, "ipc_voucher_release"),
68 CALL(1, 0, "lock_set_dereference"),
69 CALL(1, 0, "memory_object_control_deallocate"),
70 CALL(1, 0, "pset_deallocate"),
71 CALL(1, 0, "semaphore_dereference"),
72 CALL(1, 0, "space_deallocate"),
73 CALL(1, 0, "space_inspect_deallocate"),
74 CALL(1, 0, "task_deallocate"),
75 CALL(1, 0, "task_inspect_deallocate"),
76 CALL(1, 0, "task_name_deallocate"),
77 CALL(1, 0, "thread_deallocate"),
78 CALL(1, 0, "thread_inspect_deallocate"),
79 CALL(1, 0, "upl_deallocate"),
80 CALL(1, 0, "vm_map_deallocate"),
81#undef CALL
82#define CALL(required_args, deallocated_arg, ...) \
83 {{CDM::CXXMethod, {__VA_ARGS__}, required_args}, deallocated_arg}
84 // E.g., if the checker sees a method 'releaseAsyncReference64()' that is
85 // defined on class 'IOUserClient' that takes exactly 1 argument, it knows
86 // that the argument is going to be consumed in the sense of the MIG
87 // consume-on-success convention.
88 CALL(1, 0, "IOUserClient", "releaseAsyncReference64"),
89 CALL(1, 0, "IOUserClient", "releaseNotificationPort"),
90#undef CALL
91 };
92
93 CallDescription OsRefRetain{CDM::SimpleFunc, {"os_ref_retain"}, 1};
94
95 void checkReturnAux(const ReturnStmt *RS, CheckerContext &C) const;
96
97public:
98 void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
99
100 // HACK: We're making two attempts to find the bug: checkEndFunction
101 // should normally be enough but it fails when the return value is a literal
102 // that never gets put into the Environment and ends of function with multiple
103 // returns get agglutinated across returns, preventing us from obtaining
104 // the return value. The problem is similar to https://reviews.llvm.org/D25326
105 // but now we step into it in the top-level function.
106 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const {
107 checkReturnAux(RS, C);
108 }
109 void checkEndFunction(const ReturnStmt *RS, CheckerContext &C) const {
110 checkReturnAux(RS, C);
111 }
112
113};
114} // end anonymous namespace
115
116// A flag that says that the programmer has called a MIG destructor
117// for at least one parameter.
118REGISTER_TRAIT_WITH_PROGRAMSTATE(ReleasedParameter, bool)
119// A set of parameters for which the check is suppressed because
120// reference counting is being performed.
121REGISTER_SET_WITH_PROGRAMSTATE(RefCountedParameters, const ParmVarDecl *)
122
124 bool IncludeBaseRegions = false) {
125 // TODO: We should most likely always include base regions here.
126 SymbolRef Sym = V.getAsSymbol(IncludeBaseRegions);
127 if (!Sym)
128 return nullptr;
129
130 // If we optimistically assume that the MIG routine never re-uses the storage
131 // that was passed to it as arguments when it invalidates it (but at most when
132 // it assigns to parameter variables directly), this procedure correctly
133 // determines if the value was loaded from the transitive closure of MIG
134 // routine arguments in the heap.
135 while (const MemRegion *MR = Sym->getOriginRegion()) {
136 const auto *VR = dyn_cast<VarRegion>(MR);
137 if (VR && VR->hasMemorySpace<StackArgumentsSpaceRegion>(C.getState()) &&
138 VR->getStackFrame()->inTopFrame())
139 return cast<ParmVarDecl>(VR->getDecl());
140
141 const SymbolicRegion *SR = MR->getSymbolicBase();
142 if (!SR)
143 return nullptr;
144
145 Sym = SR->getSymbol();
146 }
147
148 return nullptr;
149}
150
152 const StackFrame *SF = C.getStackFrame();
153 assert(SF && "Unknown stack frame");
154
155 // Find the top frame.
156 while (SF->getParent()) {
157 SF = SF->getParent();
158 }
159
160 const Decl *D = SF->getDecl();
161
162 if (std::optional<AnyCall> AC = AnyCall::forDecl(D)) {
163 // Even though there's a Sema warning when the return type of an annotated
164 // function is not a kern_return_t, this warning isn't an error, so we need
165 // an extra check here.
166 // FIXME: AnyCall doesn't support blocks yet, so they remain unchecked
167 // for now.
168 if (!AC->getReturnType(C.getASTContext())
169 .getCanonicalType()->isSignedIntegerType())
170 return false;
171 }
172
173 if (D->hasAttr<MIGServerRoutineAttr>())
174 return true;
175
176 // See if there's an annotated method in the superclass.
177 if (const auto *MD = dyn_cast<CXXMethodDecl>(D))
178 for (const auto *OMD: MD->overridden_methods())
179 if (OMD->hasAttr<MIGServerRoutineAttr>())
180 return true;
181
182 return false;
183}
184
185void MIGChecker::checkPostCall(const CallEvent &Call, CheckerContext &C) const {
186 if (OsRefRetain.matches(Call)) {
187 // If the code is doing reference counting over the parameter,
188 // it opens up an opportunity for safely calling a destructor function.
189 // TODO: We should still check for over-releases.
190 if (const ParmVarDecl *PVD =
191 getOriginParam(Call.getArgSVal(0), C, /*IncludeBaseRegions=*/true)) {
192 // We never need to clean up the program state because these are
193 // top-level parameters anyway, so they're always live.
194 C.addTransition(C.getState()->add<RefCountedParameters>(PVD));
195 }
196 return;
197 }
198
199 if (!isInMIGCall(C))
200 return;
201
202 const unsigned *ArgIdxPtr = Deallocators.lookup(Call);
203 if (!ArgIdxPtr)
204 return;
205
206 ProgramStateRef State = C.getState();
207 unsigned ArgIdx = *ArgIdxPtr;
208 SVal Arg = Call.getArgSVal(ArgIdx);
209 const ParmVarDecl *PVD = getOriginParam(Arg, C);
210 if (!PVD || State->contains<RefCountedParameters>(PVD))
211 return;
212
213 const NoteTag *T =
214 C.getNoteTag([this, PVD](PathSensitiveBugReport &BR) -> std::string {
215 if (&BR.getBugType() != &BT)
216 return "";
217 SmallString<64> Str;
218 llvm::raw_svector_ostream OS(Str);
219 OS << "Value passed through parameter '" << PVD->getName()
220 << "\' is deallocated";
221 return std::string(OS.str());
222 });
223 C.addTransition(State->set<ReleasedParameter>(true), T);
224}
225
226// Returns true if V can potentially represent a "successful" kern_return_t.
228 ProgramStateRef State = C.getState();
229
230 // Can V represent KERN_SUCCESS?
231 if (!State->isNull(V).isConstrainedFalse())
232 return true;
233
234 SValBuilder &SVB = C.getSValBuilder();
235 ASTContext &ACtx = C.getASTContext();
236
237 // Can V represent MIG_NO_REPLY?
238 static const int MigNoReply = -305;
239 V = SVB.evalEQ(C.getState(), V, SVB.makeIntVal(MigNoReply, ACtx.IntTy));
240 if (!State->isNull(V).isConstrainedTrue())
241 return true;
242
243 // If none of the above, it's definitely an error.
244 return false;
245}
246
247void MIGChecker::checkReturnAux(const ReturnStmt *RS, CheckerContext &C) const {
248 // It is very unlikely that a MIG callback will be called from anywhere
249 // within the project under analysis and the caller isn't itself a routine
250 // that follows the MIG calling convention. Therefore we're safe to believe
251 // that it's always the top frame that is of interest. There's a slight chance
252 // that the user would want to enforce the MIG calling convention upon
253 // a random routine in the middle of nowhere, but given that the convention is
254 // fairly weird and hard to follow in the first place, there's relatively
255 // little motivation to spread it this way.
256 if (!C.inTopFrame())
257 return;
258
259 if (!isInMIGCall(C))
260 return;
261
262 // We know that the function is non-void, but what if the return statement
263 // is not there in the code? It's not a compile error, we should not crash.
264 if (!RS)
265 return;
266
267 ProgramStateRef State = C.getState();
268 if (!State->get<ReleasedParameter>())
269 return;
270
271 SVal V = RS->getRetValue() ? C.getSVal(RS->getRetValue()) : UndefinedVal();
272 if (mayBeSuccess(V, C))
273 return;
274
275 ExplodedNode *N = C.generateErrorNode();
276 if (!N)
277 return;
278
279 auto R = std::make_unique<PathSensitiveBugReport>(
280 BT,
281 "MIG callback fails with error after deallocating argument value. "
282 "This is a use-after-free vulnerability because the caller will try to "
283 "deallocate it again",
284 N);
285
286 R->addRange(RS->getSourceRange());
288 N, RS->getRetValue(), *R,
289 {bugreporter::TrackingKind::Thorough, /*EnableNullFPSuppression=*/false});
290 C.emitReport(std::move(R));
291}
292
293void ento::registerMIGChecker(CheckerManager &Mgr) {
294 Mgr.registerChecker<MIGChecker>();
295}
296
297bool ento::shouldRegisterMIGChecker(const CheckerManager &mgr) {
298 return true;
299}
#define V(N, I)
#define CALL(required_args, deallocated_arg,...)
static bool mayBeSuccess(SVal V, CheckerContext &C)
static bool isInMIGCall(CheckerContext &C)
static const ParmVarDecl * getOriginParam(SVal V, CheckerContext &C, bool IncludeBaseRegions=false)
#define REGISTER_SET_WITH_PROGRAMSTATE(Name, Elem)
Declares an immutable set of type NameTy, suitable for placement into the ProgramState.
#define REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, Type)
Declares a program state trait for type Type called Name, and introduce a type named NameTy.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition ASTContext.h:229
CanQualType IntTy
static std::optional< AnyCall > forDecl(const Decl *D)
If D is a callable (Objective-C method or a function), return a constructed AnyCall object.
Definition AnyCall.h:134
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
bool hasAttr() const
Definition DeclBase.h:585
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
Definition Decl.h:301
Represents a parameter to a function.
Definition Decl.h:1808
Expr * getRetValue()
Definition Stmt.h:3197
It represents a stack frame of the call stack.
const Decl * getDecl() const
const StackFrame * getParent() const
It might return null.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
Definition Stmt.cpp:343
const BugType & getBugType() const
bool matches(const CallEvent &Call) const
Returns true if the CallEvent is a call to a function that matches the CallDescription.
Represents an abstract call to a function or method along a particular path.
Definition CallEvent.h:152
CHECKER * registerChecker(AT &&...Args)
Register a single-part checker (derived from Checker): construct its singleton instance,...
Simple checker classes that implement one frontend (i.e.
Definition Checker.h:550
MemRegion - The root abstract class for all memory regions.
Definition MemRegion.h:97
nonloc::ConcreteInt makeIntVal(const IntegerLiteral *integer)
SVal evalEQ(ProgramStateRef state, SVal lhs, SVal rhs)
SVal - This represents a symbolic expression, which can be either an L-value or an R-value.
Definition SVals.h:56
virtual const MemRegion * getOriginRegion() const
Find the region from which this symbol originates.
Definition SymExpr.h:124
bool trackExpressionValue(const ExplodedNode *N, const Expr *E, PathSensitiveBugReport &R, TrackingOptions Opts={})
Attempts to add visitors to track expression value back to its point of origin.
IntrusiveRefCntPtr< const ProgramState > ProgramStateRef
const SymExpr * SymbolRef
Definition SymExpr.h:133
@ OS
Indicates that the tracking object is a descendant of a referenced-counted OSObject,...
The JSON file list parser is used to communicate input to InstallAPI.
#define false
Definition stdbool.h:26