blob: a5a2bb1017baae8403315eb878514696a74e1038 [file] [log] [blame]
Steven Morelandbdb53ab2021-05-05 17:57:41 +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
17#define LOG_TAG "RpcSession"
18
19#include <binder/RpcSession.h>
20
Yifan Hong194acf22021-06-29 18:44:56 -070021#include <dlfcn.h>
Steven Morelandbdb53ab2021-05-05 17:57:41 +000022#include <inttypes.h>
Steven Moreland4ec3c432021-05-20 00:32:47 +000023#include <poll.h>
Yifan Hong194acf22021-06-29 18:44:56 -070024#include <pthread.h>
Steven Morelandbdb53ab2021-05-05 17:57:41 +000025#include <unistd.h>
26
27#include <string_view>
28
Steven Moreland826367f2021-09-10 14:05:31 -070029#include <android-base/hex.h>
Steven Moreland4ec3c432021-05-20 00:32:47 +000030#include <android-base/macros.h>
Steven Moreland27a8bc72021-09-29 16:07:41 -070031#include <android-base/scopeguard.h>
Steven Moreland4f622fe2021-09-13 17:38:09 -070032#include <binder/BpBinder.h>
Steven Morelandbdb53ab2021-05-05 17:57:41 +000033#include <binder/Parcel.h>
Steven Morelandee78e762021-05-05 21:12:51 +000034#include <binder/RpcServer.h>
Yifan Hong702115c2021-06-24 15:39:18 -070035#include <binder/RpcTransportRaw.h>
Steven Morelandbdb53ab2021-05-05 17:57:41 +000036#include <binder/Stability.h>
37#include <utils/String8.h>
38
Yifan Hong8c950422021-08-05 17:13:55 -070039#include "FdTrigger.h"
Steven Morelandbdb53ab2021-05-05 17:57:41 +000040#include "RpcSocketAddress.h"
41#include "RpcState.h"
42#include "RpcWireFormat.h"
Yifan Hongb675ffe2021-08-05 16:37:17 -070043#include "Utils.h"
Steven Morelandbdb53ab2021-05-05 17:57:41 +000044
45#ifdef __GLIBC__
46extern "C" pid_t gettid();
47#endif
48
Yifan Hongd258e682021-11-01 18:34:42 -070049#ifndef __ANDROID_RECOVERY__
50#include <android_runtime/vm.h>
51#include <jni.h>
52#endif
53
Steven Morelandbdb53ab2021-05-05 17:57:41 +000054namespace android {
55
56using base::unique_fd;
57
Yifan Hongecf937d2021-08-11 17:29:28 -070058RpcSession::RpcSession(std::unique_ptr<RpcTransportCtx> ctx) : mCtx(std::move(ctx)) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +000059 LOG_RPC_DETAIL("RpcSession created %p", this);
60
Steven Moreland27a8bc72021-09-29 16:07:41 -070061 mRpcBinderState = std::make_unique<RpcState>();
Steven Morelandbdb53ab2021-05-05 17:57:41 +000062}
63RpcSession::~RpcSession() {
64 LOG_RPC_DETAIL("RpcSession destroyed %p", this);
65
66 std::lock_guard<std::mutex> _l(mMutex);
Steven Morelanda59937e2021-10-04 17:42:30 -070067 LOG_ALWAYS_FATAL_IF(mConnections.mIncoming.size() != 0,
Steven Morelandbdb53ab2021-05-05 17:57:41 +000068 "Should not be able to destroy a session with servers in use.");
69}
70
Yifan Hongecf937d2021-08-11 17:29:28 -070071sp<RpcSession> RpcSession::make() {
Yifan Hong702115c2021-06-24 15:39:18 -070072 // Default is without TLS.
Yifan Hongfdd9f692021-09-09 15:12:52 -070073 return make(RpcTransportCtxFactoryRaw::make());
Yifan Hongecf937d2021-08-11 17:29:28 -070074}
75
Yifan Hongfdd9f692021-09-09 15:12:52 -070076sp<RpcSession> RpcSession::make(std::unique_ptr<RpcTransportCtxFactory> rpcTransportCtxFactory) {
Yifan Hongecf937d2021-08-11 17:29:28 -070077 auto ctx = rpcTransportCtxFactory->newClientCtx();
78 if (ctx == nullptr) return nullptr;
Yifan Hongecf937d2021-08-11 17:29:28 -070079 return sp<RpcSession>::make(std::move(ctx));
Steven Morelandbdb53ab2021-05-05 17:57:41 +000080}
81
Yifan Hong10423062021-10-08 16:26:32 -070082void RpcSession::setMaxIncomingThreads(size_t threads) {
Steven Moreland103424e2021-06-02 18:16:19 +000083 std::lock_guard<std::mutex> _l(mMutex);
Steven Morelanda59937e2021-10-04 17:42:30 -070084 LOG_ALWAYS_FATAL_IF(!mConnections.mOutgoing.empty() || !mConnections.mIncoming.empty(),
Yifan Hong10423062021-10-08 16:26:32 -070085 "Must set max incoming threads before setting up connections, but has %zu "
86 "client(s) and %zu server(s)",
Steven Morelanda59937e2021-10-04 17:42:30 -070087 mConnections.mOutgoing.size(), mConnections.mIncoming.size());
Yifan Hong10423062021-10-08 16:26:32 -070088 mMaxIncomingThreads = threads;
Steven Moreland103424e2021-06-02 18:16:19 +000089}
90
Yifan Hong10423062021-10-08 16:26:32 -070091size_t RpcSession::getMaxIncomingThreads() {
Steven Moreland103424e2021-06-02 18:16:19 +000092 std::lock_guard<std::mutex> _l(mMutex);
Yifan Hong10423062021-10-08 16:26:32 -070093 return mMaxIncomingThreads;
Steven Moreland659416d2021-05-11 00:47:50 +000094}
95
Yifan Hong1f44f982021-10-08 17:16:47 -070096void RpcSession::setMaxOutgoingThreads(size_t threads) {
97 std::lock_guard<std::mutex> _l(mMutex);
98 LOG_ALWAYS_FATAL_IF(!mConnections.mOutgoing.empty() || !mConnections.mIncoming.empty(),
99 "Must set max outgoing threads before setting up connections, but has %zu "
100 "client(s) and %zu server(s)",
101 mConnections.mOutgoing.size(), mConnections.mIncoming.size());
102 mMaxOutgoingThreads = threads;
103}
104
105size_t RpcSession::getMaxOutgoingThreads() {
106 std::lock_guard<std::mutex> _l(mMutex);
107 return mMaxOutgoingThreads;
108}
109
Steven Morelandbf57bce2021-07-26 15:26:12 -0700110bool RpcSession::setProtocolVersion(uint32_t version) {
111 if (version >= RPC_WIRE_PROTOCOL_VERSION_NEXT &&
112 version != RPC_WIRE_PROTOCOL_VERSION_EXPERIMENTAL) {
113 ALOGE("Cannot start RPC session with version %u which is unknown (current protocol version "
114 "is %u).",
115 version, RPC_WIRE_PROTOCOL_VERSION);
116 return false;
117 }
118
119 std::lock_guard<std::mutex> _l(mMutex);
Steven Moreland40b736e2021-07-30 14:37:10 -0700120 if (mProtocolVersion && version > *mProtocolVersion) {
121 ALOGE("Cannot upgrade explicitly capped protocol version %u to newer version %u",
122 *mProtocolVersion, version);
123 return false;
124 }
125
Steven Morelandbf57bce2021-07-26 15:26:12 -0700126 mProtocolVersion = version;
127 return true;
128}
129
130std::optional<uint32_t> RpcSession::getProtocolVersion() {
131 std::lock_guard<std::mutex> _l(mMutex);
132 return mProtocolVersion;
133}
134
Steven Moreland2372f9d2021-08-05 15:42:01 -0700135status_t RpcSession::setupUnixDomainClient(const char* path) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000136 return setupSocketClient(UnixSocketAddress(path));
137}
138
Steven Moreland2372f9d2021-08-05 15:42:01 -0700139status_t RpcSession::setupVsockClient(unsigned int cid, unsigned int port) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000140 return setupSocketClient(VsockSocketAddress(cid, port));
141}
142
Steven Moreland2372f9d2021-08-05 15:42:01 -0700143status_t RpcSession::setupInetClient(const char* addr, unsigned int port) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000144 auto aiStart = InetSocketAddress::getAddrInfo(addr, port);
Steven Moreland2372f9d2021-08-05 15:42:01 -0700145 if (aiStart == nullptr) return UNKNOWN_ERROR;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000146 for (auto ai = aiStart.get(); ai != nullptr; ai = ai->ai_next) {
147 InetSocketAddress socketAddress(ai->ai_addr, ai->ai_addrlen, addr, port);
Steven Moreland2372f9d2021-08-05 15:42:01 -0700148 if (status_t status = setupSocketClient(socketAddress); status == OK) return OK;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000149 }
150 ALOGE("None of the socket address resolved for %s:%u can be added as inet client.", addr, port);
Steven Moreland2372f9d2021-08-05 15:42:01 -0700151 return NAME_NOT_FOUND;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000152}
153
Steven Moreland2372f9d2021-08-05 15:42:01 -0700154status_t RpcSession::setupPreconnectedClient(unique_fd fd, std::function<unique_fd()>&& request) {
Steven Moreland826367f2021-09-10 14:05:31 -0700155 return setupClient([&](const std::vector<uint8_t>& sessionId, bool incoming) -> status_t {
Steven Moreland4198a122021-08-03 17:37:58 -0700156 // std::move'd from fd becomes -1 (!ok())
157 if (!fd.ok()) {
158 fd = request();
Steven Moreland2372f9d2021-08-05 15:42:01 -0700159 if (!fd.ok()) return BAD_VALUE;
Steven Moreland4198a122021-08-03 17:37:58 -0700160 }
Yifan Hongb675ffe2021-08-05 16:37:17 -0700161 if (auto res = setNonBlocking(fd); !res.ok()) {
162 ALOGE("setupPreconnectedClient: %s", res.error().message().c_str());
163 return res.error().code() == 0 ? UNKNOWN_ERROR : -res.error().code();
164 }
Steven Moreland4198a122021-08-03 17:37:58 -0700165 return initAndAddConnection(std::move(fd), sessionId, incoming);
166 });
167}
168
Steven Moreland2372f9d2021-08-05 15:42:01 -0700169status_t RpcSession::addNullDebuggingClient() {
Yifan Hong702115c2021-06-24 15:39:18 -0700170 // Note: only works on raw sockets.
Yifan Hong832521e2021-08-05 14:55:40 -0700171 if (auto status = initShutdownTrigger(); status != OK) return status;
172
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000173 unique_fd serverFd(TEMP_FAILURE_RETRY(open("/dev/null", O_WRONLY | O_CLOEXEC)));
174
175 if (serverFd == -1) {
Steven Moreland2372f9d2021-08-05 15:42:01 -0700176 int savedErrno = errno;
177 ALOGE("Could not connect to /dev/null: %s", strerror(savedErrno));
178 return -savedErrno;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000179 }
180
Yifan Hongecf937d2021-08-11 17:29:28 -0700181 auto server = mCtx->newTransport(std::move(serverFd), mShutdownTrigger.get());
Yifan Hong702115c2021-06-24 15:39:18 -0700182 if (server == nullptr) {
183 ALOGE("Unable to set up RpcTransport");
Steven Moreland2372f9d2021-08-05 15:42:01 -0700184 return UNKNOWN_ERROR;
Yifan Hong702115c2021-06-24 15:39:18 -0700185 }
186 return addOutgoingConnection(std::move(server), false);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000187}
188
189sp<IBinder> RpcSession::getRootObject() {
Steven Moreland195edb82021-06-08 02:44:39 +0000190 ExclusiveConnection connection;
191 status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this),
192 ConnectionUse::CLIENT, &connection);
193 if (status != OK) return nullptr;
Steven Moreland5ae62562021-06-10 03:21:42 +0000194 return state()->getRootObject(connection.get(), sp<RpcSession>::fromExisting(this));
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000195}
196
Steven Moreland1be91352021-05-11 22:12:15 +0000197status_t RpcSession::getRemoteMaxThreads(size_t* maxThreads) {
Steven Moreland195edb82021-06-08 02:44:39 +0000198 ExclusiveConnection connection;
199 status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this),
200 ConnectionUse::CLIENT, &connection);
201 if (status != OK) return status;
Steven Moreland5ae62562021-06-10 03:21:42 +0000202 return state()->getMaxThreads(connection.get(), sp<RpcSession>::fromExisting(this), maxThreads);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000203}
204
Steven Morelandc9d7b532021-06-04 20:57:41 +0000205bool RpcSession::shutdownAndWait(bool wait) {
Steven Moreland659416d2021-05-11 00:47:50 +0000206 std::unique_lock<std::mutex> _l(mMutex);
Steven Moreland659416d2021-05-11 00:47:50 +0000207 LOG_ALWAYS_FATAL_IF(mShutdownTrigger == nullptr, "Shutdown trigger not installed");
Steven Moreland659416d2021-05-11 00:47:50 +0000208
209 mShutdownTrigger->trigger();
Steven Moreland659416d2021-05-11 00:47:50 +0000210
Steven Morelandc9d7b532021-06-04 20:57:41 +0000211 if (wait) {
212 LOG_ALWAYS_FATAL_IF(mShutdownListener == nullptr, "Shutdown listener not installed");
Steven Moreland791e4662021-09-13 15:22:58 -0700213 mShutdownListener->waitForShutdown(_l, sp<RpcSession>::fromExisting(this));
Steven Morelanddd67b942021-07-23 17:15:41 -0700214
Steven Morelanda59937e2021-10-04 17:42:30 -0700215 LOG_ALWAYS_FATAL_IF(!mConnections.mThreads.empty(), "Shutdown failed");
Steven Morelandc9d7b532021-06-04 20:57:41 +0000216 }
217
218 _l.unlock();
Steven Moreland27a8bc72021-09-29 16:07:41 -0700219 mRpcBinderState->clear();
Steven Morelandc9d7b532021-06-04 20:57:41 +0000220
Steven Moreland659416d2021-05-11 00:47:50 +0000221 return true;
222}
223
Steven Morelandf5174272021-05-25 00:39:28 +0000224status_t RpcSession::transact(const sp<IBinder>& binder, uint32_t code, const Parcel& data,
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000225 Parcel* reply, uint32_t flags) {
Steven Moreland195edb82021-06-08 02:44:39 +0000226 ExclusiveConnection connection;
227 status_t status =
228 ExclusiveConnection::find(sp<RpcSession>::fromExisting(this),
229 (flags & IBinder::FLAG_ONEWAY) ? ConnectionUse::CLIENT_ASYNC
230 : ConnectionUse::CLIENT,
231 &connection);
232 if (status != OK) return status;
Steven Moreland5ae62562021-06-10 03:21:42 +0000233 return state()->transact(connection.get(), binder, code, data,
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000234 sp<RpcSession>::fromExisting(this), reply, flags);
235}
236
Steven Moreland4f622fe2021-09-13 17:38:09 -0700237status_t RpcSession::sendDecStrong(const BpBinder* binder) {
Steven Morelandfd1e8a02021-07-21 23:30:29 +0000238 // target is 0 because this is used to free BpBinder objects
239 return sendDecStrongToTarget(binder->getPrivateAccessor().rpcAddress(), 0 /*target*/);
Steven Moreland4f622fe2021-09-13 17:38:09 -0700240}
241
Steven Morelandfd1e8a02021-07-21 23:30:29 +0000242status_t RpcSession::sendDecStrongToTarget(uint64_t address, size_t target) {
Steven Moreland195edb82021-06-08 02:44:39 +0000243 ExclusiveConnection connection;
244 status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this),
245 ConnectionUse::CLIENT_REFCOUNT, &connection);
246 if (status != OK) return status;
Steven Morelandfd1e8a02021-07-21 23:30:29 +0000247 return state()->sendDecStrongToTarget(connection.get(), sp<RpcSession>::fromExisting(this),
248 address, target);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000249}
250
251status_t RpcSession::readId() {
252 {
253 std::lock_guard<std::mutex> _l(mMutex);
254 LOG_ALWAYS_FATAL_IF(mForServer != nullptr, "Can only update ID for client.");
255 }
256
Steven Moreland195edb82021-06-08 02:44:39 +0000257 ExclusiveConnection connection;
258 status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this),
259 ConnectionUse::CLIENT, &connection);
260 if (status != OK) return status;
261
Steven Moreland826367f2021-09-10 14:05:31 -0700262 status = state()->getSessionId(connection.get(), sp<RpcSession>::fromExisting(this), &mId);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000263 if (status != OK) return status;
264
Steven Moreland826367f2021-09-10 14:05:31 -0700265 LOG_RPC_DETAIL("RpcSession %p has id %s", this,
266 base::HexString(mId.data(), mId.size()).c_str());
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000267 return OK;
268}
269
Steven Morelanddd67b942021-07-23 17:15:41 -0700270void RpcSession::WaitForShutdownListener::onSessionAllIncomingThreadsEnded(
Steven Moreland659416d2021-05-11 00:47:50 +0000271 const sp<RpcSession>& session) {
272 (void)session;
Steven Moreland659416d2021-05-11 00:47:50 +0000273}
274
Steven Moreland19fc9f72021-06-10 03:57:30 +0000275void RpcSession::WaitForShutdownListener::onSessionIncomingThreadEnded() {
Steven Moreland659416d2021-05-11 00:47:50 +0000276 mCv.notify_all();
277}
278
Steven Moreland791e4662021-09-13 15:22:58 -0700279void RpcSession::WaitForShutdownListener::waitForShutdown(std::unique_lock<std::mutex>& lock,
280 const sp<RpcSession>& session) {
Steven Morelanda59937e2021-10-04 17:42:30 -0700281 while (session->mConnections.mIncoming.size() > 0) {
Steven Moreland659416d2021-05-11 00:47:50 +0000282 if (std::cv_status::timeout == mCv.wait_for(lock, std::chrono::seconds(1))) {
Steven Moreland791e4662021-09-13 15:22:58 -0700283 ALOGE("Waiting for RpcSession to shut down (1s w/o progress): %zu incoming connections "
284 "still.",
Steven Morelanda59937e2021-10-04 17:42:30 -0700285 session->mConnections.mIncoming.size());
Steven Moreland659416d2021-05-11 00:47:50 +0000286 }
287 }
288}
289
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000290void RpcSession::preJoinThreadOwnership(std::thread thread) {
Steven Morelanda63ff932021-05-12 00:03:15 +0000291 LOG_ALWAYS_FATAL_IF(thread.get_id() != std::this_thread::get_id(), "Must own this thread");
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000292
Steven Morelanda63ff932021-05-12 00:03:15 +0000293 {
294 std::lock_guard<std::mutex> _l(mMutex);
Steven Morelanda59937e2021-10-04 17:42:30 -0700295 mConnections.mThreads[thread.get_id()] = std::move(thread);
Steven Morelanda63ff932021-05-12 00:03:15 +0000296 }
Steven Moreland5802c2b2021-05-12 20:13:04 +0000297}
Steven Morelanda63ff932021-05-12 00:03:15 +0000298
Yifan Hong702115c2021-06-24 15:39:18 -0700299RpcSession::PreJoinSetupResult RpcSession::preJoinSetup(
300 std::unique_ptr<RpcTransport> rpcTransport) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000301 // must be registered to allow arbitrary client code executing commands to
302 // be able to do nested calls (we can't only read from it)
Yifan Hong702115c2021-06-24 15:39:18 -0700303 sp<RpcConnection> connection = assignIncomingConnectionToThisThread(std::move(rpcTransport));
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000304
Steven Morelanddd67b942021-07-23 17:15:41 -0700305 status_t status;
306
307 if (connection == nullptr) {
308 status = DEAD_OBJECT;
309 } else {
Steven Moreland27a8bc72021-09-29 16:07:41 -0700310 status =
311 mRpcBinderState->readConnectionInit(connection, sp<RpcSession>::fromExisting(this));
Steven Morelanddd67b942021-07-23 17:15:41 -0700312 }
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000313
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000314 return PreJoinSetupResult{
315 .connection = std::move(connection),
316 .status = status,
317 };
318}
319
Yifan Hong194acf22021-06-29 18:44:56 -0700320namespace {
Yifan Hongd258e682021-11-01 18:34:42 -0700321#ifdef __ANDROID_RECOVERY__
322class JavaThreadAttacher {};
323#else
Yifan Hong194acf22021-06-29 18:44:56 -0700324// RAII object for attaching / detaching current thread to JVM if Android Runtime exists. If
325// Android Runtime doesn't exist, no-op.
326class JavaThreadAttacher {
327public:
328 JavaThreadAttacher() {
329 // Use dlsym to find androidJavaAttachThread because libandroid_runtime is loaded after
330 // libbinder.
331 auto vm = getJavaVM();
332 if (vm == nullptr) return;
333
334 char threadName[16];
335 if (0 != pthread_getname_np(pthread_self(), threadName, sizeof(threadName))) {
336 constexpr const char* defaultThreadName = "UnknownRpcSessionThread";
337 memcpy(threadName, defaultThreadName,
338 std::min<size_t>(sizeof(threadName), strlen(defaultThreadName) + 1));
339 }
340 LOG_RPC_DETAIL("Attaching current thread %s to JVM", threadName);
341 JavaVMAttachArgs args;
342 args.version = JNI_VERSION_1_2;
343 args.name = threadName;
344 args.group = nullptr;
345 JNIEnv* env;
346
347 LOG_ALWAYS_FATAL_IF(vm->AttachCurrentThread(&env, &args) != JNI_OK,
348 "Cannot attach thread %s to JVM", threadName);
349 mAttached = true;
350 }
351 ~JavaThreadAttacher() {
352 if (!mAttached) return;
353 auto vm = getJavaVM();
354 LOG_ALWAYS_FATAL_IF(vm == nullptr,
355 "Unable to detach thread. No JavaVM, but it was present before!");
356
357 LOG_RPC_DETAIL("Detaching current thread from JVM");
358 if (vm->DetachCurrentThread() != JNI_OK) {
359 mAttached = false;
360 } else {
361 ALOGW("Unable to detach current thread from JVM");
362 }
363 }
364
365private:
366 DISALLOW_COPY_AND_ASSIGN(JavaThreadAttacher);
367 bool mAttached = false;
368
369 static JavaVM* getJavaVM() {
370 static auto fn = reinterpret_cast<decltype(&AndroidRuntimeGetJavaVM)>(
371 dlsym(RTLD_DEFAULT, "AndroidRuntimeGetJavaVM"));
372 if (fn == nullptr) return nullptr;
373 return fn();
374 }
375};
Yifan Hongd258e682021-11-01 18:34:42 -0700376#endif
Yifan Hong194acf22021-06-29 18:44:56 -0700377} // namespace
378
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000379void RpcSession::join(sp<RpcSession>&& session, PreJoinSetupResult&& setupResult) {
380 sp<RpcConnection>& connection = setupResult.connection;
381
382 if (setupResult.status == OK) {
Steven Morelanddd67b942021-07-23 17:15:41 -0700383 LOG_ALWAYS_FATAL_IF(!connection, "must have connection if setup succeeded");
Yifan Hongd258e682021-11-01 18:34:42 -0700384 [[maybe_unused]] JavaThreadAttacher javaThreadAttacher;
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000385 while (true) {
Steven Moreland5ae62562021-06-10 03:21:42 +0000386 status_t status = session->state()->getAndExecuteCommand(connection, session,
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000387 RpcState::CommandType::ANY);
388 if (status != OK) {
389 LOG_RPC_DETAIL("Binder connection thread closing w/ status %s",
390 statusToString(status).c_str());
391 break;
392 }
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000393 }
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000394 } else {
395 ALOGE("Connection failed to init, closing with status %s",
396 statusToString(setupResult.status).c_str());
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000397 }
398
Steven Moreland659416d2021-05-11 00:47:50 +0000399 sp<RpcSession::EventListener> listener;
Steven Morelanda63ff932021-05-12 00:03:15 +0000400 {
Steven Moreland659416d2021-05-11 00:47:50 +0000401 std::lock_guard<std::mutex> _l(session->mMutex);
Steven Morelanda59937e2021-10-04 17:42:30 -0700402 auto it = session->mConnections.mThreads.find(std::this_thread::get_id());
403 LOG_ALWAYS_FATAL_IF(it == session->mConnections.mThreads.end());
Steven Morelanda63ff932021-05-12 00:03:15 +0000404 it->second.detach();
Steven Morelanda59937e2021-10-04 17:42:30 -0700405 session->mConnections.mThreads.erase(it);
Steven Morelandee3f4662021-05-22 01:07:33 +0000406
Steven Moreland659416d2021-05-11 00:47:50 +0000407 listener = session->mEventListener.promote();
Steven Morelandee3f4662021-05-22 01:07:33 +0000408 }
409
Steven Morelanddd67b942021-07-23 17:15:41 -0700410 // done after all cleanup, since session shutdown progresses via callbacks here
411 if (connection != nullptr) {
412 LOG_ALWAYS_FATAL_IF(!session->removeIncomingConnection(connection),
413 "bad state: connection object guaranteed to be in list");
414 }
415
Steven Moreland659416d2021-05-11 00:47:50 +0000416 session = nullptr;
417
418 if (listener != nullptr) {
Steven Moreland19fc9f72021-06-10 03:57:30 +0000419 listener->onSessionIncomingThreadEnded();
Steven Morelandee78e762021-05-05 21:12:51 +0000420 }
421}
422
Steven Moreland7b8bc4c2021-06-10 22:50:27 +0000423sp<RpcServer> RpcSession::server() {
424 RpcServer* unsafeServer = mForServer.unsafe_get();
425 sp<RpcServer> server = mForServer.promote();
426
427 LOG_ALWAYS_FATAL_IF((unsafeServer == nullptr) != (server == nullptr),
428 "wp<> is to avoid strong cycle only");
429 return server;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000430}
431
Steven Moreland826367f2021-09-10 14:05:31 -0700432status_t RpcSession::setupClient(const std::function<status_t(const std::vector<uint8_t>& sessionId,
433 bool incoming)>& connectAndInit) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000434 {
435 std::lock_guard<std::mutex> _l(mMutex);
Steven Morelanda59937e2021-10-04 17:42:30 -0700436 LOG_ALWAYS_FATAL_IF(mConnections.mOutgoing.size() != 0,
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000437 "Must only setup session once, but already has %zu clients",
Steven Morelanda59937e2021-10-04 17:42:30 -0700438 mConnections.mOutgoing.size());
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000439 }
Steven Moreland27a8bc72021-09-29 16:07:41 -0700440
Yifan Hong832521e2021-08-05 14:55:40 -0700441 if (auto status = initShutdownTrigger(); status != OK) return status;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000442
Steven Moreland27a8bc72021-09-29 16:07:41 -0700443 auto oldProtocolVersion = mProtocolVersion;
444 auto cleanup = base::ScopeGuard([&] {
445 // if any threads are started, shut them down
446 (void)shutdownAndWait(true);
447
448 mShutdownListener = nullptr;
449 mEventListener.clear();
450
451 mId.clear();
452
453 mShutdownTrigger = nullptr;
454 mRpcBinderState = std::make_unique<RpcState>();
455
456 // protocol version may have been downgraded - if we reuse this object
457 // to connect to another server, force that server to request a
458 // downgrade again
459 mProtocolVersion = oldProtocolVersion;
460
Steven Morelanda59937e2021-10-04 17:42:30 -0700461 mConnections = {};
Steven Moreland27a8bc72021-09-29 16:07:41 -0700462 });
463
Steven Moreland826367f2021-09-10 14:05:31 -0700464 if (status_t status = connectAndInit({}, false /*incoming*/); status != OK) return status;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000465
Steven Morelandbf57bce2021-07-26 15:26:12 -0700466 {
467 ExclusiveConnection connection;
Steven Moreland2372f9d2021-08-05 15:42:01 -0700468 if (status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this),
469 ConnectionUse::CLIENT, &connection);
470 status != OK)
471 return status;
Steven Morelandbf57bce2021-07-26 15:26:12 -0700472
473 uint32_t version;
Steven Moreland2372f9d2021-08-05 15:42:01 -0700474 if (status_t status =
475 state()->readNewSessionResponse(connection.get(),
476 sp<RpcSession>::fromExisting(this), &version);
477 status != OK)
478 return status;
479 if (!setProtocolVersion(version)) return BAD_VALUE;
Steven Morelandbf57bce2021-07-26 15:26:12 -0700480 }
481
Steven Morelanda5036f02021-06-08 02:26:57 +0000482 // TODO(b/189955605): we should add additional sessions dynamically
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000483 // instead of all at once.
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000484 size_t numThreadsAvailable;
Steven Moreland1be91352021-05-11 22:12:15 +0000485 if (status_t status = getRemoteMaxThreads(&numThreadsAvailable); status != OK) {
Steven Moreland4198a122021-08-03 17:37:58 -0700486 ALOGE("Could not get max threads after initial session setup: %s",
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000487 statusToString(status).c_str());
Steven Moreland2372f9d2021-08-05 15:42:01 -0700488 return status;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000489 }
490
491 if (status_t status = readId(); status != OK) {
Steven Moreland4198a122021-08-03 17:37:58 -0700492 ALOGE("Could not get session id after initial session setup: %s",
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000493 statusToString(status).c_str());
Steven Moreland2372f9d2021-08-05 15:42:01 -0700494 return status;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000495 }
496
Yifan Hong1f44f982021-10-08 17:16:47 -0700497 size_t outgoingThreads = std::min(numThreadsAvailable, mMaxOutgoingThreads);
498 ALOGI_IF(outgoingThreads != numThreadsAvailable,
499 "Server hints client to start %zu outgoing threads, but client will only start %zu "
500 "because it is preconfigured to start at most %zu outgoing threads.",
501 numThreadsAvailable, outgoingThreads, mMaxOutgoingThreads);
502
Steven Morelanda5036f02021-06-08 02:26:57 +0000503 // TODO(b/189955605): we should add additional sessions dynamically
Steven Moreland659416d2021-05-11 00:47:50 +0000504 // instead of all at once - the other side should be responsible for setting
505 // up additional connections. We need to create at least one (unless 0 are
506 // requested to be set) in order to allow the other side to reliably make
507 // any requests at all.
508
Steven Moreland4198a122021-08-03 17:37:58 -0700509 // we've already setup one client
Yifan Hong1f44f982021-10-08 17:16:47 -0700510 LOG_RPC_DETAIL("RpcSession::setupClient() instantiating %zu outgoing (server max: %zu) and %zu "
511 "incoming threads",
512 outgoingThreads, numThreadsAvailable, mMaxIncomingThreads);
513 for (size_t i = 0; i + 1 < outgoingThreads; i++) {
Steven Moreland826367f2021-09-10 14:05:31 -0700514 if (status_t status = connectAndInit(mId, false /*incoming*/); status != OK) return status;
Steven Moreland4198a122021-08-03 17:37:58 -0700515 }
516
Yifan Hong10423062021-10-08 16:26:32 -0700517 for (size_t i = 0; i < mMaxIncomingThreads; i++) {
Steven Moreland826367f2021-09-10 14:05:31 -0700518 if (status_t status = connectAndInit(mId, true /*incoming*/); status != OK) return status;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000519 }
520
Steven Moreland27a8bc72021-09-29 16:07:41 -0700521 cleanup.Disable();
522
Steven Moreland2372f9d2021-08-05 15:42:01 -0700523 return OK;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000524}
525
Steven Moreland2372f9d2021-08-05 15:42:01 -0700526status_t RpcSession::setupSocketClient(const RpcSocketAddress& addr) {
Steven Moreland826367f2021-09-10 14:05:31 -0700527 return setupClient([&](const std::vector<uint8_t>& sessionId, bool incoming) {
Steven Moreland4198a122021-08-03 17:37:58 -0700528 return setupOneSocketConnection(addr, sessionId, incoming);
529 });
530}
531
Steven Moreland2372f9d2021-08-05 15:42:01 -0700532status_t RpcSession::setupOneSocketConnection(const RpcSocketAddress& addr,
Steven Moreland826367f2021-09-10 14:05:31 -0700533 const std::vector<uint8_t>& sessionId,
534 bool incoming) {
Steven Moreland76d2c1f2021-05-05 20:28:58 +0000535 for (size_t tries = 0; tries < 5; tries++) {
536 if (tries > 0) usleep(10000);
537
Yifan Hongb675ffe2021-08-05 16:37:17 -0700538 unique_fd serverFd(TEMP_FAILURE_RETRY(
539 socket(addr.addr()->sa_family, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0)));
Steven Moreland76d2c1f2021-05-05 20:28:58 +0000540 if (serverFd == -1) {
541 int savedErrno = errno;
542 ALOGE("Could not create socket at %s: %s", addr.toString().c_str(),
543 strerror(savedErrno));
Steven Moreland2372f9d2021-08-05 15:42:01 -0700544 return -savedErrno;
Steven Moreland76d2c1f2021-05-05 20:28:58 +0000545 }
546
547 if (0 != TEMP_FAILURE_RETRY(connect(serverFd.get(), addr.addr(), addr.addrSize()))) {
Yifan Hong95d15e52021-08-25 17:15:15 -0700548 int connErrno = errno;
549 if (connErrno == EAGAIN || connErrno == EINPROGRESS) {
550 // For non-blocking sockets, connect() may return EAGAIN (for unix domain socket) or
551 // EINPROGRESS (for others). Call poll() and getsockopt() to get the error.
552 status_t pollStatus = mShutdownTrigger->triggerablePoll(serverFd, POLLOUT);
553 if (pollStatus != OK) {
554 ALOGE("Could not POLLOUT after connect() on non-blocking socket: %s",
555 statusToString(pollStatus).c_str());
556 return pollStatus;
557 }
558 // Set connErrno to the errno that connect() would have set if the fd were blocking.
559 socklen_t connErrnoLen = sizeof(connErrno);
560 int ret =
561 getsockopt(serverFd.get(), SOL_SOCKET, SO_ERROR, &connErrno, &connErrnoLen);
562 if (ret == -1) {
563 int savedErrno = errno;
564 ALOGE("Could not getsockopt() after connect() on non-blocking socket: %s. "
565 "(Original error from connect() is: %s)",
566 strerror(savedErrno), strerror(connErrno));
567 return -savedErrno;
568 }
569 // Retrieved the real connErrno as if connect() was called with a blocking socket
570 // fd. Continue checking connErrno.
571 }
572 if (connErrno == ECONNRESET) {
Steven Moreland76d2c1f2021-05-05 20:28:58 +0000573 ALOGW("Connection reset on %s", addr.toString().c_str());
574 continue;
575 }
Yifan Hong95d15e52021-08-25 17:15:15 -0700576 // connErrno could be zero if getsockopt determines so. Hence zero-check again.
577 if (connErrno != 0) {
Yifan Hongd9f8cef2021-08-05 15:17:31 -0700578 ALOGE("Could not connect socket at %s: %s", addr.toString().c_str(),
Yifan Hong95d15e52021-08-25 17:15:15 -0700579 strerror(connErrno));
580 return -connErrno;
Yifan Hongd9f8cef2021-08-05 15:17:31 -0700581 }
Steven Moreland76d2c1f2021-05-05 20:28:58 +0000582 }
Yifan Hong702115c2021-06-24 15:39:18 -0700583 LOG_RPC_DETAIL("Socket at %s client with fd %d", addr.toString().c_str(), serverFd.get());
584
Steven Moreland4198a122021-08-03 17:37:58 -0700585 return initAndAddConnection(std::move(serverFd), sessionId, incoming);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000586 }
587
Steven Moreland76d2c1f2021-05-05 20:28:58 +0000588 ALOGE("Ran out of retries to connect to %s", addr.toString().c_str());
Steven Moreland2372f9d2021-08-05 15:42:01 -0700589 return UNKNOWN_ERROR;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000590}
591
Steven Moreland826367f2021-09-10 14:05:31 -0700592status_t RpcSession::initAndAddConnection(unique_fd fd, const std::vector<uint8_t>& sessionId,
Steven Moreland2372f9d2021-08-05 15:42:01 -0700593 bool incoming) {
Yifan Hong8c950422021-08-05 17:13:55 -0700594 LOG_ALWAYS_FATAL_IF(mShutdownTrigger == nullptr);
Yifan Hongecf937d2021-08-11 17:29:28 -0700595 auto server = mCtx->newTransport(std::move(fd), mShutdownTrigger.get());
Steven Moreland4198a122021-08-03 17:37:58 -0700596 if (server == nullptr) {
Yifan Hongecf937d2021-08-11 17:29:28 -0700597 ALOGE("%s: Unable to set up RpcTransport", __PRETTY_FUNCTION__);
Steven Moreland2372f9d2021-08-05 15:42:01 -0700598 return UNKNOWN_ERROR;
Steven Moreland4198a122021-08-03 17:37:58 -0700599 }
600
601 LOG_RPC_DETAIL("Socket at client with RpcTransport %p", server.get());
602
Steven Moreland826367f2021-09-10 14:05:31 -0700603 if (sessionId.size() > std::numeric_limits<uint16_t>::max()) {
604 ALOGE("Session ID too big %zu", sessionId.size());
605 return BAD_VALUE;
606 }
607
Steven Moreland4198a122021-08-03 17:37:58 -0700608 RpcConnectionHeader header{
609 .version = mProtocolVersion.value_or(RPC_WIRE_PROTOCOL_VERSION),
610 .options = 0,
Steven Moreland826367f2021-09-10 14:05:31 -0700611 .sessionIdSize = static_cast<uint16_t>(sessionId.size()),
Steven Moreland4198a122021-08-03 17:37:58 -0700612 };
Steven Moreland4198a122021-08-03 17:37:58 -0700613
Steven Moreland826367f2021-09-10 14:05:31 -0700614 if (incoming) {
615 header.options |= RPC_CONNECTION_OPTION_INCOMING;
616 }
Steven Moreland4198a122021-08-03 17:37:58 -0700617
Yifan Hong8c950422021-08-05 17:13:55 -0700618 auto sendHeaderStatus =
Steven Moreland43921d52021-09-27 17:15:56 -0700619 server->interruptableWriteFully(mShutdownTrigger.get(), &header, sizeof(header), {});
Yifan Hong8c950422021-08-05 17:13:55 -0700620 if (sendHeaderStatus != OK) {
Steven Moreland4198a122021-08-03 17:37:58 -0700621 ALOGE("Could not write connection header to socket: %s",
Yifan Hong8c950422021-08-05 17:13:55 -0700622 statusToString(sendHeaderStatus).c_str());
623 return sendHeaderStatus;
Steven Moreland4198a122021-08-03 17:37:58 -0700624 }
625
Steven Moreland826367f2021-09-10 14:05:31 -0700626 if (sessionId.size() > 0) {
627 auto sendSessionIdStatus =
628 server->interruptableWriteFully(mShutdownTrigger.get(), sessionId.data(),
Steven Moreland43921d52021-09-27 17:15:56 -0700629 sessionId.size(), {});
Steven Moreland826367f2021-09-10 14:05:31 -0700630 if (sendSessionIdStatus != OK) {
631 ALOGE("Could not write session ID ('%s') to socket: %s",
632 base::HexString(sessionId.data(), sessionId.size()).c_str(),
633 statusToString(sendSessionIdStatus).c_str());
634 return sendSessionIdStatus;
635 }
636 }
637
Steven Moreland4198a122021-08-03 17:37:58 -0700638 LOG_RPC_DETAIL("Socket at client: header sent");
639
640 if (incoming) {
641 return addIncomingConnection(std::move(server));
642 } else {
643 return addOutgoingConnection(std::move(server), true /*init*/);
644 }
645}
646
Steven Moreland2372f9d2021-08-05 15:42:01 -0700647status_t RpcSession::addIncomingConnection(std::unique_ptr<RpcTransport> rpcTransport) {
Steven Morelandfba6f772021-07-15 22:45:09 +0000648 std::mutex mutex;
649 std::condition_variable joinCv;
650 std::unique_lock<std::mutex> lock(mutex);
651 std::thread thread;
652 sp<RpcSession> thiz = sp<RpcSession>::fromExisting(this);
653 bool ownershipTransferred = false;
654 thread = std::thread([&]() {
655 std::unique_lock<std::mutex> threadLock(mutex);
Yifan Hong702115c2021-06-24 15:39:18 -0700656 std::unique_ptr<RpcTransport> movedRpcTransport = std::move(rpcTransport);
Steven Morelandfba6f772021-07-15 22:45:09 +0000657 // NOLINTNEXTLINE(performance-unnecessary-copy-initialization)
658 sp<RpcSession> session = thiz;
659 session->preJoinThreadOwnership(std::move(thread));
660
661 // only continue once we have a response or the connection fails
Yifan Hong702115c2021-06-24 15:39:18 -0700662 auto setupResult = session->preJoinSetup(std::move(movedRpcTransport));
Steven Morelandfba6f772021-07-15 22:45:09 +0000663
664 ownershipTransferred = true;
665 threadLock.unlock();
666 joinCv.notify_one();
667 // do not use & vars below
668
669 RpcSession::join(std::move(session), std::move(setupResult));
670 });
671 joinCv.wait(lock, [&] { return ownershipTransferred; });
672 LOG_ALWAYS_FATAL_IF(!ownershipTransferred);
Steven Moreland2372f9d2021-08-05 15:42:01 -0700673 return OK;
Steven Morelandfba6f772021-07-15 22:45:09 +0000674}
675
Yifan Hong832521e2021-08-05 14:55:40 -0700676status_t RpcSession::initShutdownTrigger() {
677 // first client connection added, but setForServer not called, so
678 // initializaing for a client.
679 if (mShutdownTrigger == nullptr) {
680 mShutdownTrigger = FdTrigger::make();
681 mEventListener = mShutdownListener = sp<WaitForShutdownListener>::make();
682 if (mShutdownTrigger == nullptr) return INVALID_OPERATION;
683 }
684 return OK;
685}
686
Steven Moreland2372f9d2021-08-05 15:42:01 -0700687status_t RpcSession::addOutgoingConnection(std::unique_ptr<RpcTransport> rpcTransport, bool init) {
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000688 sp<RpcConnection> connection = sp<RpcConnection>::make();
689 {
690 std::lock_guard<std::mutex> _l(mMutex);
Yifan Hong702115c2021-06-24 15:39:18 -0700691 connection->rpcTransport = std::move(rpcTransport);
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000692 connection->exclusiveTid = gettid();
Steven Morelanda59937e2021-10-04 17:42:30 -0700693 mConnections.mOutgoing.push_back(connection);
Steven Morelandee3f4662021-05-22 01:07:33 +0000694 }
695
Steven Morelandb86e26b2021-06-12 00:35:58 +0000696 status_t status = OK;
697 if (init) {
Steven Morelandfc027e02021-10-25 15:31:31 -0700698 status =
699 mRpcBinderState->sendConnectionInit(connection, sp<RpcSession>::fromExisting(this));
Steven Morelandb86e26b2021-06-12 00:35:58 +0000700 }
Steven Morelandc88b7fc2021-06-10 00:40:39 +0000701
702 {
703 std::lock_guard<std::mutex> _l(mMutex);
704 connection->exclusiveTid = std::nullopt;
705 }
706
Steven Moreland2372f9d2021-08-05 15:42:01 -0700707 return status;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000708}
709
Steven Morelanda8b44292021-06-08 01:27:53 +0000710bool RpcSession::setForServer(const wp<RpcServer>& server, const wp<EventListener>& eventListener,
Steven Moreland51c44a92021-10-14 16:50:35 -0700711 const std::vector<uint8_t>& sessionId,
712 const sp<IBinder>& sessionSpecificRoot) {
Steven Moreland659416d2021-05-11 00:47:50 +0000713 LOG_ALWAYS_FATAL_IF(mForServer != nullptr);
714 LOG_ALWAYS_FATAL_IF(server == nullptr);
715 LOG_ALWAYS_FATAL_IF(mEventListener != nullptr);
716 LOG_ALWAYS_FATAL_IF(eventListener == nullptr);
Steven Morelandee3f4662021-05-22 01:07:33 +0000717 LOG_ALWAYS_FATAL_IF(mShutdownTrigger != nullptr);
Steven Morelanda8b44292021-06-08 01:27:53 +0000718
719 mShutdownTrigger = FdTrigger::make();
720 if (mShutdownTrigger == nullptr) return false;
Steven Morelandee3f4662021-05-22 01:07:33 +0000721
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000722 mId = sessionId;
723 mForServer = server;
Steven Moreland659416d2021-05-11 00:47:50 +0000724 mEventListener = eventListener;
Steven Moreland51c44a92021-10-14 16:50:35 -0700725 mSessionSpecificRootObject = sessionSpecificRoot;
Steven Morelanda8b44292021-06-08 01:27:53 +0000726 return true;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000727}
728
Yifan Hong702115c2021-06-24 15:39:18 -0700729sp<RpcSession::RpcConnection> RpcSession::assignIncomingConnectionToThisThread(
730 std::unique_ptr<RpcTransport> rpcTransport) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000731 std::lock_guard<std::mutex> _l(mMutex);
Steven Morelanddd67b942021-07-23 17:15:41 -0700732
Yifan Hong10423062021-10-08 16:26:32 -0700733 if (mConnections.mIncoming.size() >= mMaxIncomingThreads) {
Steven Moreland132d5bf2021-08-03 16:13:24 -0700734 ALOGE("Cannot add thread to session with %zu threads (max is set to %zu)",
Yifan Hong10423062021-10-08 16:26:32 -0700735 mConnections.mIncoming.size(), mMaxIncomingThreads);
Steven Moreland132d5bf2021-08-03 16:13:24 -0700736 return nullptr;
737 }
738
Steven Morelanddd67b942021-07-23 17:15:41 -0700739 // Don't accept any more connections, some have shutdown. Usually this
740 // happens when new connections are still being established as part of a
741 // very short-lived session which shuts down after it already started
742 // accepting new connections.
Steven Morelanda59937e2021-10-04 17:42:30 -0700743 if (mConnections.mIncoming.size() < mConnections.mMaxIncoming) {
Steven Morelanddd67b942021-07-23 17:15:41 -0700744 return nullptr;
745 }
746
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000747 sp<RpcConnection> session = sp<RpcConnection>::make();
Yifan Hong702115c2021-06-24 15:39:18 -0700748 session->rpcTransport = std::move(rpcTransport);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000749 session->exclusiveTid = gettid();
Steven Morelanddd67b942021-07-23 17:15:41 -0700750
Steven Morelanda59937e2021-10-04 17:42:30 -0700751 mConnections.mIncoming.push_back(session);
752 mConnections.mMaxIncoming = mConnections.mIncoming.size();
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000753
754 return session;
755}
756
Steven Moreland19fc9f72021-06-10 03:57:30 +0000757bool RpcSession::removeIncomingConnection(const sp<RpcConnection>& connection) {
Steven Morelanddd67b942021-07-23 17:15:41 -0700758 std::unique_lock<std::mutex> _l(mMutex);
Steven Morelanda59937e2021-10-04 17:42:30 -0700759 if (auto it =
760 std::find(mConnections.mIncoming.begin(), mConnections.mIncoming.end(), connection);
761 it != mConnections.mIncoming.end()) {
762 mConnections.mIncoming.erase(it);
763 if (mConnections.mIncoming.size() == 0) {
Steven Moreland659416d2021-05-11 00:47:50 +0000764 sp<EventListener> listener = mEventListener.promote();
765 if (listener) {
Steven Morelanddd67b942021-07-23 17:15:41 -0700766 _l.unlock();
767 listener->onSessionAllIncomingThreadsEnded(sp<RpcSession>::fromExisting(this));
Steven Morelanda86e8fe2021-05-26 22:52:35 +0000768 }
Steven Morelandee78e762021-05-05 21:12:51 +0000769 }
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000770 return true;
771 }
772 return false;
773}
774
Yifan Hong9734cfc2021-09-13 16:14:09 -0700775std::vector<uint8_t> RpcSession::getCertificate(RpcCertificateFormat format) {
Yifan Hongecf937d2021-08-11 17:29:28 -0700776 return mCtx->getCertificate(format);
777}
778
Steven Moreland195edb82021-06-08 02:44:39 +0000779status_t RpcSession::ExclusiveConnection::find(const sp<RpcSession>& session, ConnectionUse use,
780 ExclusiveConnection* connection) {
781 connection->mSession = session;
782 connection->mConnection = nullptr;
783 connection->mReentrant = false;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000784
Steven Moreland195edb82021-06-08 02:44:39 +0000785 pid_t tid = gettid();
786 std::unique_lock<std::mutex> _l(session->mMutex);
787
Steven Morelanda59937e2021-10-04 17:42:30 -0700788 session->mConnections.mWaitingThreads++;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000789 while (true) {
790 sp<RpcConnection> exclusive;
791 sp<RpcConnection> available;
792
793 // CHECK FOR DEDICATED CLIENT SOCKET
794 //
Steven Moreland85e067b2021-05-26 17:43:53 +0000795 // A server/looper should always use a dedicated connection if available
Steven Morelanda59937e2021-10-04 17:42:30 -0700796 findConnection(tid, &exclusive, &available, session->mConnections.mOutgoing,
797 session->mConnections.mOutgoingOffset);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000798
799 // WARNING: this assumes a server cannot request its client to send
Steven Morelanda59937e2021-10-04 17:42:30 -0700800 // a transaction, as mIncoming is excluded below.
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000801 //
802 // Imagine we have more than one thread in play, and a single thread
803 // sends a synchronous, then an asynchronous command. Imagine the
804 // asynchronous command is sent on the first client connection. Then, if
805 // we naively send a synchronous command to that same connection, the
806 // thread on the far side might be busy processing the asynchronous
807 // command. So, we move to considering the second available thread
808 // for subsequent calls.
809 if (use == ConnectionUse::CLIENT_ASYNC && (exclusive != nullptr || available != nullptr)) {
Steven Morelanda59937e2021-10-04 17:42:30 -0700810 session->mConnections.mOutgoingOffset = (session->mConnections.mOutgoingOffset + 1) %
811 session->mConnections.mOutgoing.size();
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000812 }
813
Steven Morelandc7d40132021-06-10 03:42:11 +0000814 // USE SERVING SOCKET (e.g. nested transaction)
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000815 if (use != ConnectionUse::CLIENT_ASYNC) {
Steven Moreland19fc9f72021-06-10 03:57:30 +0000816 sp<RpcConnection> exclusiveIncoming;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000817 // server connections are always assigned to a thread
Steven Moreland19fc9f72021-06-10 03:57:30 +0000818 findConnection(tid, &exclusiveIncoming, nullptr /*available*/,
Steven Morelanda59937e2021-10-04 17:42:30 -0700819 session->mConnections.mIncoming, 0 /* index hint */);
Steven Morelandc7d40132021-06-10 03:42:11 +0000820
821 // asynchronous calls cannot be nested, we currently allow ref count
822 // calls to be nested (so that you can use this without having extra
823 // threads). Note 'drainCommands' is used so that these ref counts can't
824 // build up.
Steven Moreland19fc9f72021-06-10 03:57:30 +0000825 if (exclusiveIncoming != nullptr) {
826 if (exclusiveIncoming->allowNested) {
Steven Morelandc7d40132021-06-10 03:42:11 +0000827 // guaranteed to be processed as nested command
Steven Moreland19fc9f72021-06-10 03:57:30 +0000828 exclusive = exclusiveIncoming;
Steven Morelandc7d40132021-06-10 03:42:11 +0000829 } else if (use == ConnectionUse::CLIENT_REFCOUNT && available == nullptr) {
830 // prefer available socket, but if we don't have one, don't
831 // wait for one
Steven Moreland19fc9f72021-06-10 03:57:30 +0000832 exclusive = exclusiveIncoming;
Steven Morelandc7d40132021-06-10 03:42:11 +0000833 }
834 }
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000835 }
836
Steven Moreland85e067b2021-05-26 17:43:53 +0000837 // if our thread is already using a connection, prioritize using that
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000838 if (exclusive != nullptr) {
Steven Moreland195edb82021-06-08 02:44:39 +0000839 connection->mConnection = exclusive;
840 connection->mReentrant = true;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000841 break;
842 } else if (available != nullptr) {
Steven Moreland195edb82021-06-08 02:44:39 +0000843 connection->mConnection = available;
844 connection->mConnection->exclusiveTid = tid;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000845 break;
846 }
847
Steven Morelanda59937e2021-10-04 17:42:30 -0700848 if (session->mConnections.mOutgoing.size() == 0) {
Steven Moreland195edb82021-06-08 02:44:39 +0000849 ALOGE("Session has no client connections. This is required for an RPC server to make "
850 "any non-nested (e.g. oneway or on another thread) calls. Use: %d. Server "
851 "connections: %zu",
Steven Morelanda59937e2021-10-04 17:42:30 -0700852 static_cast<int>(use), session->mConnections.mIncoming.size());
Steven Moreland195edb82021-06-08 02:44:39 +0000853 return WOULD_BLOCK;
854 }
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000855
Steven Moreland85e067b2021-05-26 17:43:53 +0000856 LOG_RPC_DETAIL("No available connections (have %zu clients and %zu servers). Waiting...",
Steven Morelanda59937e2021-10-04 17:42:30 -0700857 session->mConnections.mOutgoing.size(),
858 session->mConnections.mIncoming.size());
Steven Moreland195edb82021-06-08 02:44:39 +0000859 session->mAvailableConnectionCv.wait(_l);
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000860 }
Steven Morelanda59937e2021-10-04 17:42:30 -0700861 session->mConnections.mWaitingThreads--;
Steven Moreland195edb82021-06-08 02:44:39 +0000862
863 return OK;
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000864}
865
866void RpcSession::ExclusiveConnection::findConnection(pid_t tid, sp<RpcConnection>* exclusive,
867 sp<RpcConnection>* available,
868 std::vector<sp<RpcConnection>>& sockets,
869 size_t socketsIndexHint) {
870 LOG_ALWAYS_FATAL_IF(sockets.size() > 0 && socketsIndexHint >= sockets.size(),
871 "Bad index %zu >= %zu", socketsIndexHint, sockets.size());
872
873 if (*exclusive != nullptr) return; // consistent with break below
874
875 for (size_t i = 0; i < sockets.size(); i++) {
876 sp<RpcConnection>& socket = sockets[(i + socketsIndexHint) % sockets.size()];
877
Steven Moreland85e067b2021-05-26 17:43:53 +0000878 // take first available connection (intuition = caching)
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000879 if (available && *available == nullptr && socket->exclusiveTid == std::nullopt) {
880 *available = socket;
881 continue;
882 }
883
Steven Moreland85e067b2021-05-26 17:43:53 +0000884 // though, prefer to take connection which is already inuse by this thread
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000885 // (nested transactions)
886 if (exclusive && socket->exclusiveTid == tid) {
887 *exclusive = socket;
888 break; // consistent with return above
889 }
890 }
891}
892
893RpcSession::ExclusiveConnection::~ExclusiveConnection() {
Steven Moreland85e067b2021-05-26 17:43:53 +0000894 // reentrant use of a connection means something less deep in the call stack
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000895 // is using this fd, and it retains the right to it. So, we don't give up
896 // exclusive ownership, and no thread is freed.
Steven Moreland195edb82021-06-08 02:44:39 +0000897 if (!mReentrant && mConnection != nullptr) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000898 std::unique_lock<std::mutex> _l(mSession->mMutex);
899 mConnection->exclusiveTid = std::nullopt;
Steven Morelanda59937e2021-10-04 17:42:30 -0700900 if (mSession->mConnections.mWaitingThreads > 0) {
Steven Morelandbdb53ab2021-05-05 17:57:41 +0000901 _l.unlock();
902 mSession->mAvailableConnectionCv.notify_one();
903 }
904 }
905}
906
907} // namespace android