blob: 54a8f594e2e003b6916434d36eb0e83197068a50 [file] [log] [blame]
Steven Moreland5553ac42020-11-11 02:14:45 +00001/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#pragma once
17
18#include <android-base/unique_fd.h>
19#include <binder/IBinder.h>
20#include <binder/Parcel.h>
Steven Morelandbdb53ab2021-05-05 17:57:41 +000021#include <binder/RpcSession.h>
Steven Moreland5553ac42020-11-11 02:14:45 +000022
23#include <map>
Steven Morelande8393342021-05-05 23:27:53 +000024#include <optional>
Steven Moreland5553ac42020-11-11 02:14:45 +000025#include <queue>
26
27namespace android {
28
29struct RpcWireHeader;
30
31/**
32 * Log a lot more information about RPC calls, when debugging issues. Usually,
33 * you would want to enable this in only one process. If repeated issues require
34 * a specific subset of logs to debug, this could be broken up like
35 * IPCThreadState's.
36 */
37#define SHOULD_LOG_RPC_DETAIL false
38
39#if SHOULD_LOG_RPC_DETAIL
40#define LOG_RPC_DETAIL(...) ALOGI(__VA_ARGS__)
41#else
42#define LOG_RPC_DETAIL(...) ALOGV(__VA_ARGS__) // for type checking
43#endif
44
Steven Morelandb8176792021-06-22 20:29:21 +000045#define RPC_FLAKE_PRONE false
46
47#ifdef RPC_FLAKE_PRONE
48void rpcMaybeWaitToFlake();
49#define MAYBE_WAIT_IN_FLAKE_MODE rpcMaybeWaitToFlake()
50#else
51#define MAYBE_WAIT_IN_FLAKE_MODE do {} while (false)
52#endif
53
Steven Moreland5553ac42020-11-11 02:14:45 +000054/**
55 * Abstracts away management of ref counts and the wire format from
Steven Morelandbdb53ab2021-05-05 17:57:41 +000056 * RpcSession
Steven Moreland5553ac42020-11-11 02:14:45 +000057 */
58class RpcState {
59public:
60 RpcState();
61 ~RpcState();
62
Steven Morelandc88b7fc2021-06-10 00:40:39 +000063 status_t sendConnectionInit(const base::unique_fd& fd, const sp<RpcSession>& session);
64 status_t readConnectionInit(const base::unique_fd& fd, const sp<RpcSession>& session);
65
Steven Moreland7c5e6c22021-05-01 02:55:20 +000066 // TODO(b/182940634): combine some special transactions into one "getServerInfo" call?
Steven Morelandbdb53ab2021-05-05 17:57:41 +000067 sp<IBinder> getRootObject(const base::unique_fd& fd, const sp<RpcSession>& session);
68 status_t getMaxThreads(const base::unique_fd& fd, const sp<RpcSession>& session,
Steven Morelandf137de92021-04-24 01:54:26 +000069 size_t* maxThreadsOut);
Steven Morelandbdb53ab2021-05-05 17:57:41 +000070 status_t getSessionId(const base::unique_fd& fd, const sp<RpcSession>& session,
71 int32_t* sessionIdOut);
Steven Moreland5553ac42020-11-11 02:14:45 +000072
Steven Morelandf5174272021-05-25 00:39:28 +000073 [[nodiscard]] status_t transact(const base::unique_fd& fd, const sp<IBinder>& address,
Steven Moreland5553ac42020-11-11 02:14:45 +000074 uint32_t code, const Parcel& data,
Steven Morelandbdb53ab2021-05-05 17:57:41 +000075 const sp<RpcSession>& session, Parcel* reply, uint32_t flags);
Steven Morelandf5174272021-05-25 00:39:28 +000076 [[nodiscard]] status_t transactAddress(const base::unique_fd& fd, const RpcAddress& address,
77 uint32_t code, const Parcel& data,
78 const sp<RpcSession>& session, Parcel* reply,
79 uint32_t flags);
Steven Morelandc9d7b532021-06-04 20:57:41 +000080 [[nodiscard]] status_t sendDecStrong(const base::unique_fd& fd, const sp<RpcSession>& session,
81 const RpcAddress& address);
Steven Moreland52eee942021-06-03 00:59:28 +000082
83 enum class CommandType {
84 ANY,
85 CONTROL_ONLY,
86 };
Steven Moreland5553ac42020-11-11 02:14:45 +000087 [[nodiscard]] status_t getAndExecuteCommand(const base::unique_fd& fd,
Steven Moreland52eee942021-06-03 00:59:28 +000088 const sp<RpcSession>& session, CommandType type);
89 [[nodiscard]] status_t drainCommands(const base::unique_fd& fd, const sp<RpcSession>& session,
90 CommandType type);
Steven Moreland5553ac42020-11-11 02:14:45 +000091
92 /**
93 * Called by Parcel for outgoing binders. This implies one refcount of
94 * ownership to the outgoing binder.
95 */
Steven Morelandbdb53ab2021-05-05 17:57:41 +000096 [[nodiscard]] status_t onBinderLeaving(const sp<RpcSession>& session, const sp<IBinder>& binder,
97 RpcAddress* outAddress);
Steven Moreland5553ac42020-11-11 02:14:45 +000098
99 /**
100 * Called by Parcel for incoming binders. This either returns the refcount
101 * to the process, if this process already has one, or it takes ownership of
102 * that refcount
103 */
Steven Moreland7227c8a2021-06-02 00:24:32 +0000104 [[nodiscard]] status_t onBinderEntering(const sp<RpcSession>& session,
105 const RpcAddress& address, sp<IBinder>* out);
Steven Moreland5553ac42020-11-11 02:14:45 +0000106
107 size_t countBinders();
108 void dump();
109
Steven Moreland5553ac42020-11-11 02:14:45 +0000110 /**
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000111 * Called when reading or writing data to a session fails to clean up
112 * data associated with the session in order to cleanup binders.
Steven Moreland5553ac42020-11-11 02:14:45 +0000113 * Specifically, we have a strong dependency cycle, since BpBinder is
114 * OBJECT_LIFETIME_WEAK (so that onAttemptIncStrong may return true).
115 *
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000116 * BpBinder -> RpcSession -> RpcState
Steven Moreland5553ac42020-11-11 02:14:45 +0000117 * ^-----------------------------/
118 *
119 * In the success case, eventually all refcounts should be propagated over
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000120 * the session, though this could also be called to eagerly cleanup
121 * the session.
Steven Moreland5553ac42020-11-11 02:14:45 +0000122 *
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000123 * WARNING: RpcState is responsible for calling this when the session is
Steven Moreland5553ac42020-11-11 02:14:45 +0000124 * no longer recoverable.
125 */
Steven Morelandc9d7b532021-06-04 20:57:41 +0000126 void clear();
Steven Moreland5553ac42020-11-11 02:14:45 +0000127
Steven Moreland659416d2021-05-11 00:47:50 +0000128private:
Steven Moreland583a14a2021-06-04 02:04:58 +0000129 void dumpLocked();
Steven Moreland583a14a2021-06-04 02:04:58 +0000130
Steven Morelanddbe71832021-05-12 23:31:00 +0000131 // Alternative to std::vector<uint8_t> that doesn't abort on allocation failure and caps
132 // large allocations to avoid being requested from allocating too much data.
133 struct CommandData {
134 explicit CommandData(size_t size);
Steven Morelande8393342021-05-05 23:27:53 +0000135 bool valid() { return mSize == 0 || mData != nullptr; }
136 size_t size() { return mSize; }
137 uint8_t* data() { return mData.get(); }
138 uint8_t* release() { return mData.release(); }
139
140 private:
141 std::unique_ptr<uint8_t[]> mData;
142 size_t mSize;
143 };
144
Steven Morelandc9d7b532021-06-04 20:57:41 +0000145 [[nodiscard]] status_t rpcSend(const base::unique_fd& fd, const sp<RpcSession>& session,
146 const char* what, const void* data, size_t size);
Steven Moreland1e4c2b82021-05-25 01:51:31 +0000147 [[nodiscard]] status_t rpcRec(const base::unique_fd& fd, const sp<RpcSession>& session,
148 const char* what, void* data, size_t size);
Steven Moreland5553ac42020-11-11 02:14:45 +0000149
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000150 [[nodiscard]] status_t waitForReply(const base::unique_fd& fd, const sp<RpcSession>& session,
151 Parcel* reply);
Steven Moreland5553ac42020-11-11 02:14:45 +0000152 [[nodiscard]] status_t processServerCommand(const base::unique_fd& fd,
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000153 const sp<RpcSession>& session,
Steven Moreland52eee942021-06-03 00:59:28 +0000154 const RpcWireHeader& command, CommandType type);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000155 [[nodiscard]] status_t processTransact(const base::unique_fd& fd, const sp<RpcSession>& session,
Steven Moreland5553ac42020-11-11 02:14:45 +0000156 const RpcWireHeader& command);
157 [[nodiscard]] status_t processTransactInternal(const base::unique_fd& fd,
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000158 const sp<RpcSession>& session,
Steven Morelandada72bd2021-06-09 23:29:13 +0000159 CommandData transactionData);
Steven Moreland5553ac42020-11-11 02:14:45 +0000160 [[nodiscard]] status_t processDecStrong(const base::unique_fd& fd,
Steven Morelandee3f4662021-05-22 01:07:33 +0000161 const sp<RpcSession>& session,
Steven Moreland5553ac42020-11-11 02:14:45 +0000162 const RpcWireHeader& command);
163
164 struct BinderNode {
165 // Two cases:
166 // A - local binder we are serving
167 // B - remote binder, we are sending transactions to
168 wp<IBinder> binder;
169
170 // if timesSent > 0, this will be equal to binder.promote()
171 sp<IBinder> sentRef;
172
173 // Number of times we've sent this binder out of process, which
174 // translates to an implicit strong count. A client must send RPC binder
175 // socket's dec ref for each time it is sent out of process in order to
176 // deallocate it. Note, a proxy binder we are holding onto might be
177 // sent (this is important when the only remaining refcount of this
178 // binder is the one associated with a transaction sending it back to
179 // its server)
180 size_t timesSent = 0;
181
182 // Number of times we've received this binder, each time corresponds to
183 // a reference we hold over the wire (not a local incStrong/decStrong)
184 size_t timesRecd = 0;
185
186 // transaction ID, for async transactions
187 uint64_t asyncNumber = 0;
188
189 //
190 // CASE A - local binder we are serving
191 //
192
193 // async transaction queue, _only_ for local binder
194 struct AsyncTodo {
Steven Morelandf5174272021-05-25 00:39:28 +0000195 sp<IBinder> ref;
Steven Morelanddbe71832021-05-12 23:31:00 +0000196 CommandData data;
Steven Moreland5553ac42020-11-11 02:14:45 +0000197 uint64_t asyncNumber = 0;
198
199 bool operator<(const AsyncTodo& o) const {
200 return asyncNumber > /* !!! */ o.asyncNumber;
201 }
202 };
203 std::priority_queue<AsyncTodo> asyncTodo;
204
205 //
206 // CASE B - remote binder, we are sending transactions to
207 //
208
209 // (no additional data specific to remote binders)
210 };
211
Steven Moreland31bde7a2021-06-04 00:57:36 +0000212 // checks if there is any reference left to a node and erases it. If erase
213 // happens, and there is a strong reference to the binder kept by
214 // binderNode, this returns that strong reference, so that it can be
215 // dropped after any locks are removed.
216 sp<IBinder> tryEraseNode(std::map<RpcAddress, BinderNode>::iterator& it);
Steven Moreland583a14a2021-06-04 02:04:58 +0000217 // true - success
Steven Morelandc9d7b532021-06-04 20:57:41 +0000218 // false - session shutdown, halt
219 [[nodiscard]] bool nodeProgressAsyncNumber(BinderNode* node);
Steven Moreland31bde7a2021-06-04 00:57:36 +0000220
Steven Moreland5553ac42020-11-11 02:14:45 +0000221 std::mutex mNodeMutex;
222 bool mTerminated = false;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000223 // binders known by both sides of a session
Steven Moreland5553ac42020-11-11 02:14:45 +0000224 std::map<RpcAddress, BinderNode> mNodeForAddress;
225};
226
227} // namespace android