Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| 21 | #include <inttypes.h> |
Steven Moreland | 4ec3c43 | 2021-05-20 00:32:47 +0000 | [diff] [blame] | 22 | #include <poll.h> |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 23 | #include <unistd.h> |
| 24 | |
| 25 | #include <string_view> |
| 26 | |
Steven Moreland | 4ec3c43 | 2021-05-20 00:32:47 +0000 | [diff] [blame] | 27 | #include <android-base/macros.h> |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 28 | #include <binder/Parcel.h> |
Steven Moreland | ee78e76 | 2021-05-05 21:12:51 +0000 | [diff] [blame] | 29 | #include <binder/RpcServer.h> |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 30 | #include <binder/Stability.h> |
| 31 | #include <utils/String8.h> |
| 32 | |
| 33 | #include "RpcSocketAddress.h" |
| 34 | #include "RpcState.h" |
| 35 | #include "RpcWireFormat.h" |
| 36 | |
| 37 | #ifdef __GLIBC__ |
| 38 | extern "C" pid_t gettid(); |
| 39 | #endif |
| 40 | |
| 41 | namespace android { |
| 42 | |
| 43 | using base::unique_fd; |
| 44 | |
| 45 | RpcSession::RpcSession() { |
| 46 | LOG_RPC_DETAIL("RpcSession created %p", this); |
| 47 | |
| 48 | mState = std::make_unique<RpcState>(); |
| 49 | } |
| 50 | RpcSession::~RpcSession() { |
| 51 | LOG_RPC_DETAIL("RpcSession destroyed %p", this); |
| 52 | |
| 53 | std::lock_guard<std::mutex> _l(mMutex); |
Steven Moreland | bb543a8 | 2021-05-11 02:31:50 +0000 | [diff] [blame] | 54 | LOG_ALWAYS_FATAL_IF(mServerConnections.size() != 0, |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 55 | "Should not be able to destroy a session with servers in use."); |
| 56 | } |
| 57 | |
| 58 | sp<RpcSession> RpcSession::make() { |
| 59 | return sp<RpcSession>::make(); |
| 60 | } |
| 61 | |
Steven Moreland | 103424e | 2021-06-02 18:16:19 +0000 | [diff] [blame] | 62 | void RpcSession::setMaxThreads(size_t threads) { |
| 63 | std::lock_guard<std::mutex> _l(mMutex); |
| 64 | LOG_ALWAYS_FATAL_IF(!mClientConnections.empty() || !mServerConnections.empty(), |
| 65 | "Must set max threads before setting up connections, but has %zu client(s) " |
| 66 | "and %zu server(s)", |
| 67 | mClientConnections.size(), mServerConnections.size()); |
| 68 | mMaxThreads = threads; |
| 69 | } |
| 70 | |
| 71 | size_t RpcSession::getMaxThreads() { |
| 72 | std::lock_guard<std::mutex> _l(mMutex); |
| 73 | return mMaxThreads; |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 76 | bool RpcSession::setupUnixDomainClient(const char* path) { |
| 77 | return setupSocketClient(UnixSocketAddress(path)); |
| 78 | } |
| 79 | |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 80 | bool RpcSession::setupVsockClient(unsigned int cid, unsigned int port) { |
| 81 | return setupSocketClient(VsockSocketAddress(cid, port)); |
| 82 | } |
| 83 | |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 84 | bool RpcSession::setupInetClient(const char* addr, unsigned int port) { |
| 85 | auto aiStart = InetSocketAddress::getAddrInfo(addr, port); |
| 86 | if (aiStart == nullptr) return false; |
| 87 | for (auto ai = aiStart.get(); ai != nullptr; ai = ai->ai_next) { |
| 88 | InetSocketAddress socketAddress(ai->ai_addr, ai->ai_addrlen, addr, port); |
| 89 | if (setupSocketClient(socketAddress)) return true; |
| 90 | } |
| 91 | ALOGE("None of the socket address resolved for %s:%u can be added as inet client.", addr, port); |
| 92 | return false; |
| 93 | } |
| 94 | |
| 95 | bool RpcSession::addNullDebuggingClient() { |
| 96 | unique_fd serverFd(TEMP_FAILURE_RETRY(open("/dev/null", O_WRONLY | O_CLOEXEC))); |
| 97 | |
| 98 | if (serverFd == -1) { |
| 99 | ALOGE("Could not connect to /dev/null: %s", strerror(errno)); |
| 100 | return false; |
| 101 | } |
| 102 | |
Steven Moreland | b0dd118 | 2021-05-25 01:56:46 +0000 | [diff] [blame] | 103 | return addClientConnection(std::move(serverFd)); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | sp<IBinder> RpcSession::getRootObject() { |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 107 | ExclusiveConnection connection; |
| 108 | status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this), |
| 109 | ConnectionUse::CLIENT, &connection); |
| 110 | if (status != OK) return nullptr; |
Steven Moreland | 5ae6256 | 2021-06-10 03:21:42 +0000 | [diff] [blame] | 111 | return state()->getRootObject(connection.get(), sp<RpcSession>::fromExisting(this)); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 112 | } |
| 113 | |
Steven Moreland | 1be9135 | 2021-05-11 22:12:15 +0000 | [diff] [blame] | 114 | status_t RpcSession::getRemoteMaxThreads(size_t* maxThreads) { |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 115 | ExclusiveConnection connection; |
| 116 | status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this), |
| 117 | ConnectionUse::CLIENT, &connection); |
| 118 | if (status != OK) return status; |
Steven Moreland | 5ae6256 | 2021-06-10 03:21:42 +0000 | [diff] [blame] | 119 | return state()->getMaxThreads(connection.get(), sp<RpcSession>::fromExisting(this), maxThreads); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Steven Moreland | c9d7b53 | 2021-06-04 20:57:41 +0000 | [diff] [blame] | 122 | bool RpcSession::shutdownAndWait(bool wait) { |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 123 | std::unique_lock<std::mutex> _l(mMutex); |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 124 | LOG_ALWAYS_FATAL_IF(mShutdownTrigger == nullptr, "Shutdown trigger not installed"); |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 125 | |
| 126 | mShutdownTrigger->trigger(); |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 127 | |
Steven Moreland | c9d7b53 | 2021-06-04 20:57:41 +0000 | [diff] [blame] | 128 | if (wait) { |
| 129 | LOG_ALWAYS_FATAL_IF(mShutdownListener == nullptr, "Shutdown listener not installed"); |
| 130 | mShutdownListener->waitForShutdown(_l); |
| 131 | LOG_ALWAYS_FATAL_IF(!mThreads.empty(), "Shutdown failed"); |
| 132 | } |
| 133 | |
| 134 | _l.unlock(); |
| 135 | mState->clear(); |
| 136 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 137 | return true; |
| 138 | } |
| 139 | |
Steven Moreland | f517427 | 2021-05-25 00:39:28 +0000 | [diff] [blame] | 140 | status_t RpcSession::transact(const sp<IBinder>& binder, uint32_t code, const Parcel& data, |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 141 | Parcel* reply, uint32_t flags) { |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 142 | ExclusiveConnection connection; |
| 143 | status_t status = |
| 144 | ExclusiveConnection::find(sp<RpcSession>::fromExisting(this), |
| 145 | (flags & IBinder::FLAG_ONEWAY) ? ConnectionUse::CLIENT_ASYNC |
| 146 | : ConnectionUse::CLIENT, |
| 147 | &connection); |
| 148 | if (status != OK) return status; |
Steven Moreland | 5ae6256 | 2021-06-10 03:21:42 +0000 | [diff] [blame] | 149 | return state()->transact(connection.get(), binder, code, data, |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 150 | sp<RpcSession>::fromExisting(this), reply, flags); |
| 151 | } |
| 152 | |
| 153 | status_t RpcSession::sendDecStrong(const RpcAddress& address) { |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 154 | ExclusiveConnection connection; |
| 155 | status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this), |
| 156 | ConnectionUse::CLIENT_REFCOUNT, &connection); |
| 157 | if (status != OK) return status; |
Steven Moreland | 5ae6256 | 2021-06-10 03:21:42 +0000 | [diff] [blame] | 158 | return state()->sendDecStrong(connection.get(), sp<RpcSession>::fromExisting(this), address); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 159 | } |
| 160 | |
Steven Moreland | e47511f | 2021-05-20 00:07:41 +0000 | [diff] [blame] | 161 | std::unique_ptr<RpcSession::FdTrigger> RpcSession::FdTrigger::make() { |
| 162 | auto ret = std::make_unique<RpcSession::FdTrigger>(); |
Steven Moreland | a8b4429 | 2021-06-08 01:27:53 +0000 | [diff] [blame] | 163 | if (!android::base::Pipe(&ret->mRead, &ret->mWrite)) { |
| 164 | ALOGE("Could not create pipe %s", strerror(errno)); |
| 165 | return nullptr; |
| 166 | } |
Steven Moreland | e47511f | 2021-05-20 00:07:41 +0000 | [diff] [blame] | 167 | return ret; |
| 168 | } |
| 169 | |
| 170 | void RpcSession::FdTrigger::trigger() { |
| 171 | mWrite.reset(); |
| 172 | } |
| 173 | |
Steven Moreland | a8b4429 | 2021-06-08 01:27:53 +0000 | [diff] [blame] | 174 | bool RpcSession::FdTrigger::isTriggered() { |
| 175 | return mWrite == -1; |
| 176 | } |
| 177 | |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 178 | status_t RpcSession::FdTrigger::triggerablePollRead(base::borrowed_fd fd) { |
Steven Moreland | 4ec3c43 | 2021-05-20 00:32:47 +0000 | [diff] [blame] | 179 | while (true) { |
Steven Moreland | dfe3be9 | 2021-05-22 00:24:29 +0000 | [diff] [blame] | 180 | pollfd pfd[]{{.fd = fd.get(), .events = POLLIN | POLLHUP, .revents = 0}, |
Steven Moreland | 4ec3c43 | 2021-05-20 00:32:47 +0000 | [diff] [blame] | 181 | {.fd = mRead.get(), .events = POLLHUP, .revents = 0}}; |
| 182 | int ret = TEMP_FAILURE_RETRY(poll(pfd, arraysize(pfd), -1)); |
| 183 | if (ret < 0) { |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 184 | return -errno; |
Steven Moreland | 4ec3c43 | 2021-05-20 00:32:47 +0000 | [diff] [blame] | 185 | } |
| 186 | if (ret == 0) { |
| 187 | continue; |
| 188 | } |
| 189 | if (pfd[1].revents & POLLHUP) { |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 190 | return -ECANCELED; |
Steven Moreland | 4ec3c43 | 2021-05-20 00:32:47 +0000 | [diff] [blame] | 191 | } |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 192 | return pfd[0].revents & POLLIN ? OK : DEAD_OBJECT; |
Steven Moreland | 4ec3c43 | 2021-05-20 00:32:47 +0000 | [diff] [blame] | 193 | } |
| 194 | } |
| 195 | |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 196 | status_t RpcSession::FdTrigger::interruptableReadFully(base::borrowed_fd fd, void* data, |
| 197 | size_t size) { |
Steven Moreland | 9d11b92 | 2021-05-20 01:22:58 +0000 | [diff] [blame] | 198 | uint8_t* buffer = reinterpret_cast<uint8_t*>(data); |
| 199 | uint8_t* end = buffer + size; |
| 200 | |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 201 | status_t status; |
| 202 | while ((status = triggerablePollRead(fd)) == OK) { |
Steven Moreland | 9d11b92 | 2021-05-20 01:22:58 +0000 | [diff] [blame] | 203 | ssize_t readSize = TEMP_FAILURE_RETRY(recv(fd.get(), buffer, end - buffer, MSG_NOSIGNAL)); |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 204 | if (readSize == 0) return DEAD_OBJECT; // EOF |
Steven Moreland | dfe3be9 | 2021-05-22 00:24:29 +0000 | [diff] [blame] | 205 | |
Steven Moreland | 9d11b92 | 2021-05-20 01:22:58 +0000 | [diff] [blame] | 206 | if (readSize < 0) { |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 207 | return -errno; |
Steven Moreland | 9d11b92 | 2021-05-20 01:22:58 +0000 | [diff] [blame] | 208 | } |
| 209 | buffer += readSize; |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 210 | if (buffer == end) return OK; |
Steven Moreland | 9d11b92 | 2021-05-20 01:22:58 +0000 | [diff] [blame] | 211 | } |
Steven Moreland | 2b4f380 | 2021-05-22 01:46:27 +0000 | [diff] [blame] | 212 | return status; |
Steven Moreland | 9d11b92 | 2021-05-20 01:22:58 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 215 | status_t RpcSession::readId() { |
| 216 | { |
| 217 | std::lock_guard<std::mutex> _l(mMutex); |
| 218 | LOG_ALWAYS_FATAL_IF(mForServer != nullptr, "Can only update ID for client."); |
| 219 | } |
| 220 | |
| 221 | int32_t id; |
| 222 | |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 223 | ExclusiveConnection connection; |
| 224 | status_t status = ExclusiveConnection::find(sp<RpcSession>::fromExisting(this), |
| 225 | ConnectionUse::CLIENT, &connection); |
| 226 | if (status != OK) return status; |
| 227 | |
Steven Moreland | 5ae6256 | 2021-06-10 03:21:42 +0000 | [diff] [blame] | 228 | status = state()->getSessionId(connection.get(), sp<RpcSession>::fromExisting(this), &id); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 229 | if (status != OK) return status; |
| 230 | |
| 231 | LOG_RPC_DETAIL("RpcSession %p has id %d", this, id); |
| 232 | mId = id; |
| 233 | return OK; |
| 234 | } |
| 235 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 236 | void RpcSession::WaitForShutdownListener::onSessionLockedAllServerThreadsEnded( |
| 237 | const sp<RpcSession>& session) { |
| 238 | (void)session; |
| 239 | mShutdown = true; |
| 240 | } |
| 241 | |
| 242 | void RpcSession::WaitForShutdownListener::onSessionServerThreadEnded() { |
| 243 | mCv.notify_all(); |
| 244 | } |
| 245 | |
| 246 | void RpcSession::WaitForShutdownListener::waitForShutdown(std::unique_lock<std::mutex>& lock) { |
| 247 | while (!mShutdown) { |
| 248 | if (std::cv_status::timeout == mCv.wait_for(lock, std::chrono::seconds(1))) { |
| 249 | ALOGE("Waiting for RpcSession to shut down (1s w/o progress)."); |
| 250 | } |
| 251 | } |
| 252 | } |
| 253 | |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 254 | void RpcSession::preJoinThreadOwnership(std::thread thread) { |
Steven Moreland | a63ff93 | 2021-05-12 00:03:15 +0000 | [diff] [blame] | 255 | LOG_ALWAYS_FATAL_IF(thread.get_id() != std::this_thread::get_id(), "Must own this thread"); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 256 | |
Steven Moreland | a63ff93 | 2021-05-12 00:03:15 +0000 | [diff] [blame] | 257 | { |
| 258 | std::lock_guard<std::mutex> _l(mMutex); |
| 259 | mThreads[thread.get_id()] = std::move(thread); |
| 260 | } |
Steven Moreland | 5802c2b | 2021-05-12 20:13:04 +0000 | [diff] [blame] | 261 | } |
Steven Moreland | a63ff93 | 2021-05-12 00:03:15 +0000 | [diff] [blame] | 262 | |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 263 | RpcSession::PreJoinSetupResult RpcSession::preJoinSetup(base::unique_fd fd) { |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 264 | // must be registered to allow arbitrary client code executing commands to |
| 265 | // be able to do nested calls (we can't only read from it) |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 266 | sp<RpcConnection> connection = assignServerToThisThread(std::move(fd)); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 267 | |
Steven Moreland | 5ae6256 | 2021-06-10 03:21:42 +0000 | [diff] [blame] | 268 | status_t status = mState->readConnectionInit(connection, sp<RpcSession>::fromExisting(this)); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 269 | |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 270 | return PreJoinSetupResult{ |
| 271 | .connection = std::move(connection), |
| 272 | .status = status, |
| 273 | }; |
| 274 | } |
| 275 | |
| 276 | void RpcSession::join(sp<RpcSession>&& session, PreJoinSetupResult&& setupResult) { |
| 277 | sp<RpcConnection>& connection = setupResult.connection; |
| 278 | |
| 279 | if (setupResult.status == OK) { |
| 280 | while (true) { |
Steven Moreland | 5ae6256 | 2021-06-10 03:21:42 +0000 | [diff] [blame] | 281 | status_t status = session->state()->getAndExecuteCommand(connection, session, |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 282 | RpcState::CommandType::ANY); |
| 283 | if (status != OK) { |
| 284 | LOG_RPC_DETAIL("Binder connection thread closing w/ status %s", |
| 285 | statusToString(status).c_str()); |
| 286 | break; |
| 287 | } |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 288 | } |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 289 | } else { |
| 290 | ALOGE("Connection failed to init, closing with status %s", |
| 291 | statusToString(setupResult.status).c_str()); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 294 | LOG_ALWAYS_FATAL_IF(!session->removeServerConnection(connection), |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 295 | "bad state: connection object guaranteed to be in list"); |
Steven Moreland | a63ff93 | 2021-05-12 00:03:15 +0000 | [diff] [blame] | 296 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 297 | sp<RpcSession::EventListener> listener; |
Steven Moreland | a63ff93 | 2021-05-12 00:03:15 +0000 | [diff] [blame] | 298 | { |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 299 | std::lock_guard<std::mutex> _l(session->mMutex); |
| 300 | auto it = session->mThreads.find(std::this_thread::get_id()); |
| 301 | LOG_ALWAYS_FATAL_IF(it == session->mThreads.end()); |
Steven Moreland | a63ff93 | 2021-05-12 00:03:15 +0000 | [diff] [blame] | 302 | it->second.detach(); |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 303 | session->mThreads.erase(it); |
Steven Moreland | ee3f466 | 2021-05-22 01:07:33 +0000 | [diff] [blame] | 304 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 305 | listener = session->mEventListener.promote(); |
Steven Moreland | ee3f466 | 2021-05-22 01:07:33 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 308 | session = nullptr; |
| 309 | |
| 310 | if (listener != nullptr) { |
| 311 | listener->onSessionServerThreadEnded(); |
Steven Moreland | ee78e76 | 2021-05-05 21:12:51 +0000 | [diff] [blame] | 312 | } |
| 313 | } |
| 314 | |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 315 | wp<RpcServer> RpcSession::server() { |
| 316 | return mForServer; |
| 317 | } |
| 318 | |
| 319 | bool RpcSession::setupSocketClient(const RpcSocketAddress& addr) { |
| 320 | { |
| 321 | std::lock_guard<std::mutex> _l(mMutex); |
Steven Moreland | bb543a8 | 2021-05-11 02:31:50 +0000 | [diff] [blame] | 322 | LOG_ALWAYS_FATAL_IF(mClientConnections.size() != 0, |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 323 | "Must only setup session once, but already has %zu clients", |
Steven Moreland | bb543a8 | 2021-05-11 02:31:50 +0000 | [diff] [blame] | 324 | mClientConnections.size()); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 327 | if (!setupOneSocketConnection(addr, RPC_SESSION_ID_NEW, false /*reverse*/)) return false; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 328 | |
Steven Moreland | a5036f0 | 2021-06-08 02:26:57 +0000 | [diff] [blame] | 329 | // TODO(b/189955605): we should add additional sessions dynamically |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 330 | // instead of all at once. |
| 331 | // TODO(b/186470974): first risk of blocking |
| 332 | size_t numThreadsAvailable; |
Steven Moreland | 1be9135 | 2021-05-11 22:12:15 +0000 | [diff] [blame] | 333 | if (status_t status = getRemoteMaxThreads(&numThreadsAvailable); status != OK) { |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 334 | ALOGE("Could not get max threads after initial session to %s: %s", addr.toString().c_str(), |
| 335 | statusToString(status).c_str()); |
| 336 | return false; |
| 337 | } |
| 338 | |
| 339 | if (status_t status = readId(); status != OK) { |
| 340 | ALOGE("Could not get session id after initial session to %s; %s", addr.toString().c_str(), |
| 341 | statusToString(status).c_str()); |
| 342 | return false; |
| 343 | } |
| 344 | |
| 345 | // we've already setup one client |
| 346 | for (size_t i = 0; i + 1 < numThreadsAvailable; i++) { |
Steven Moreland | a5036f0 | 2021-06-08 02:26:57 +0000 | [diff] [blame] | 347 | // TODO(b/189955605): shutdown existing connections? |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 348 | if (!setupOneSocketConnection(addr, mId.value(), false /*reverse*/)) return false; |
| 349 | } |
| 350 | |
Steven Moreland | a5036f0 | 2021-06-08 02:26:57 +0000 | [diff] [blame] | 351 | // TODO(b/189955605): we should add additional sessions dynamically |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 352 | // instead of all at once - the other side should be responsible for setting |
| 353 | // up additional connections. We need to create at least one (unless 0 are |
| 354 | // requested to be set) in order to allow the other side to reliably make |
| 355 | // any requests at all. |
| 356 | |
Steven Moreland | 103424e | 2021-06-02 18:16:19 +0000 | [diff] [blame] | 357 | for (size_t i = 0; i < mMaxThreads; i++) { |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 358 | if (!setupOneSocketConnection(addr, mId.value(), true /*reverse*/)) return false; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | return true; |
| 362 | } |
| 363 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 364 | bool RpcSession::setupOneSocketConnection(const RpcSocketAddress& addr, int32_t id, bool reverse) { |
Steven Moreland | 76d2c1f | 2021-05-05 20:28:58 +0000 | [diff] [blame] | 365 | for (size_t tries = 0; tries < 5; tries++) { |
| 366 | if (tries > 0) usleep(10000); |
| 367 | |
| 368 | unique_fd serverFd( |
| 369 | TEMP_FAILURE_RETRY(socket(addr.addr()->sa_family, SOCK_STREAM | SOCK_CLOEXEC, 0))); |
| 370 | if (serverFd == -1) { |
| 371 | int savedErrno = errno; |
| 372 | ALOGE("Could not create socket at %s: %s", addr.toString().c_str(), |
| 373 | strerror(savedErrno)); |
| 374 | return false; |
| 375 | } |
| 376 | |
| 377 | if (0 != TEMP_FAILURE_RETRY(connect(serverFd.get(), addr.addr(), addr.addrSize()))) { |
| 378 | if (errno == ECONNRESET) { |
| 379 | ALOGW("Connection reset on %s", addr.toString().c_str()); |
| 380 | continue; |
| 381 | } |
| 382 | int savedErrno = errno; |
| 383 | ALOGE("Could not connect socket at %s: %s", addr.toString().c_str(), |
| 384 | strerror(savedErrno)); |
| 385 | return false; |
| 386 | } |
| 387 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 388 | RpcConnectionHeader header{ |
| 389 | .sessionId = id, |
| 390 | }; |
| 391 | if (reverse) header.options |= RPC_CONNECTION_OPTION_REVERSE; |
| 392 | |
| 393 | if (sizeof(header) != TEMP_FAILURE_RETRY(write(serverFd.get(), &header, sizeof(header)))) { |
Steven Moreland | 76d2c1f | 2021-05-05 20:28:58 +0000 | [diff] [blame] | 394 | int savedErrno = errno; |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 395 | ALOGE("Could not write connection header to socket at %s: %s", addr.toString().c_str(), |
Steven Moreland | 76d2c1f | 2021-05-05 20:28:58 +0000 | [diff] [blame] | 396 | strerror(savedErrno)); |
| 397 | return false; |
| 398 | } |
| 399 | |
| 400 | LOG_RPC_DETAIL("Socket at %s client with fd %d", addr.toString().c_str(), serverFd.get()); |
| 401 | |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 402 | if (reverse) { |
| 403 | std::mutex mutex; |
| 404 | std::condition_variable joinCv; |
| 405 | std::unique_lock<std::mutex> lock(mutex); |
| 406 | std::thread thread; |
| 407 | sp<RpcSession> thiz = sp<RpcSession>::fromExisting(this); |
| 408 | bool ownershipTransferred = false; |
| 409 | thread = std::thread([&]() { |
| 410 | std::unique_lock<std::mutex> threadLock(mutex); |
| 411 | unique_fd fd = std::move(serverFd); |
| 412 | // NOLINTNEXTLINE(performance-unnecessary-copy-initialization) |
| 413 | sp<RpcSession> session = thiz; |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 414 | session->preJoinThreadOwnership(std::move(thread)); |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 415 | |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 416 | // only continue once we have a response or the connection fails |
| 417 | auto setupResult = session->preJoinSetup(std::move(fd)); |
| 418 | |
| 419 | ownershipTransferred = true; |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 420 | threadLock.unlock(); |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 421 | joinCv.notify_one(); |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 422 | // do not use & vars below |
| 423 | |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 424 | RpcSession::join(std::move(session), std::move(setupResult)); |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 425 | }); |
| 426 | joinCv.wait(lock, [&] { return ownershipTransferred; }); |
| 427 | LOG_ALWAYS_FATAL_IF(!ownershipTransferred); |
| 428 | return true; |
| 429 | } else { |
| 430 | return addClientConnection(std::move(serverFd)); |
| 431 | } |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Steven Moreland | 76d2c1f | 2021-05-05 20:28:58 +0000 | [diff] [blame] | 434 | ALOGE("Ran out of retries to connect to %s", addr.toString().c_str()); |
| 435 | return false; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 436 | } |
| 437 | |
Steven Moreland | b0dd118 | 2021-05-25 01:56:46 +0000 | [diff] [blame] | 438 | bool RpcSession::addClientConnection(unique_fd fd) { |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 439 | sp<RpcConnection> connection = sp<RpcConnection>::make(); |
| 440 | { |
| 441 | std::lock_guard<std::mutex> _l(mMutex); |
Steven Moreland | ee3f466 | 2021-05-22 01:07:33 +0000 | [diff] [blame] | 442 | |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 443 | // first client connection added, but setForServer not called, so |
| 444 | // initializaing for a client. |
| 445 | if (mShutdownTrigger == nullptr) { |
| 446 | mShutdownTrigger = FdTrigger::make(); |
| 447 | mEventListener = mShutdownListener = sp<WaitForShutdownListener>::make(); |
| 448 | if (mShutdownTrigger == nullptr) return false; |
| 449 | } |
| 450 | |
| 451 | connection->fd = std::move(fd); |
| 452 | connection->exclusiveTid = gettid(); |
| 453 | mClientConnections.push_back(connection); |
Steven Moreland | ee3f466 | 2021-05-22 01:07:33 +0000 | [diff] [blame] | 454 | } |
| 455 | |
Steven Moreland | 5ae6256 | 2021-06-10 03:21:42 +0000 | [diff] [blame] | 456 | status_t status = mState->sendConnectionInit(connection, sp<RpcSession>::fromExisting(this)); |
Steven Moreland | c88b7fc | 2021-06-10 00:40:39 +0000 | [diff] [blame] | 457 | |
| 458 | { |
| 459 | std::lock_guard<std::mutex> _l(mMutex); |
| 460 | connection->exclusiveTid = std::nullopt; |
| 461 | } |
| 462 | |
| 463 | return status == OK; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 464 | } |
| 465 | |
Steven Moreland | a8b4429 | 2021-06-08 01:27:53 +0000 | [diff] [blame] | 466 | bool RpcSession::setForServer(const wp<RpcServer>& server, const wp<EventListener>& eventListener, |
| 467 | int32_t sessionId) { |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 468 | LOG_ALWAYS_FATAL_IF(mForServer != nullptr); |
| 469 | LOG_ALWAYS_FATAL_IF(server == nullptr); |
| 470 | LOG_ALWAYS_FATAL_IF(mEventListener != nullptr); |
| 471 | LOG_ALWAYS_FATAL_IF(eventListener == nullptr); |
Steven Moreland | ee3f466 | 2021-05-22 01:07:33 +0000 | [diff] [blame] | 472 | LOG_ALWAYS_FATAL_IF(mShutdownTrigger != nullptr); |
Steven Moreland | a8b4429 | 2021-06-08 01:27:53 +0000 | [diff] [blame] | 473 | |
| 474 | mShutdownTrigger = FdTrigger::make(); |
| 475 | if (mShutdownTrigger == nullptr) return false; |
Steven Moreland | ee3f466 | 2021-05-22 01:07:33 +0000 | [diff] [blame] | 476 | |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 477 | mId = sessionId; |
| 478 | mForServer = server; |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 479 | mEventListener = eventListener; |
Steven Moreland | a8b4429 | 2021-06-08 01:27:53 +0000 | [diff] [blame] | 480 | return true; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | sp<RpcSession::RpcConnection> RpcSession::assignServerToThisThread(unique_fd fd) { |
| 484 | std::lock_guard<std::mutex> _l(mMutex); |
| 485 | sp<RpcConnection> session = sp<RpcConnection>::make(); |
| 486 | session->fd = std::move(fd); |
| 487 | session->exclusiveTid = gettid(); |
Steven Moreland | bb543a8 | 2021-05-11 02:31:50 +0000 | [diff] [blame] | 488 | mServerConnections.push_back(session); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 489 | |
| 490 | return session; |
| 491 | } |
| 492 | |
| 493 | bool RpcSession::removeServerConnection(const sp<RpcConnection>& connection) { |
| 494 | std::lock_guard<std::mutex> _l(mMutex); |
Steven Moreland | bb543a8 | 2021-05-11 02:31:50 +0000 | [diff] [blame] | 495 | if (auto it = std::find(mServerConnections.begin(), mServerConnections.end(), connection); |
| 496 | it != mServerConnections.end()) { |
| 497 | mServerConnections.erase(it); |
| 498 | if (mServerConnections.size() == 0) { |
Steven Moreland | 659416d | 2021-05-11 00:47:50 +0000 | [diff] [blame] | 499 | sp<EventListener> listener = mEventListener.promote(); |
| 500 | if (listener) { |
| 501 | listener->onSessionLockedAllServerThreadsEnded(sp<RpcSession>::fromExisting(this)); |
Steven Moreland | a86e8fe | 2021-05-26 22:52:35 +0000 | [diff] [blame] | 502 | } |
Steven Moreland | ee78e76 | 2021-05-05 21:12:51 +0000 | [diff] [blame] | 503 | } |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 504 | return true; |
| 505 | } |
| 506 | return false; |
| 507 | } |
| 508 | |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 509 | status_t RpcSession::ExclusiveConnection::find(const sp<RpcSession>& session, ConnectionUse use, |
| 510 | ExclusiveConnection* connection) { |
| 511 | connection->mSession = session; |
| 512 | connection->mConnection = nullptr; |
| 513 | connection->mReentrant = false; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 514 | |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 515 | pid_t tid = gettid(); |
| 516 | std::unique_lock<std::mutex> _l(session->mMutex); |
| 517 | |
| 518 | session->mWaitingThreads++; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 519 | while (true) { |
| 520 | sp<RpcConnection> exclusive; |
| 521 | sp<RpcConnection> available; |
| 522 | |
| 523 | // CHECK FOR DEDICATED CLIENT SOCKET |
| 524 | // |
Steven Moreland | 85e067b | 2021-05-26 17:43:53 +0000 | [diff] [blame] | 525 | // A server/looper should always use a dedicated connection if available |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 526 | findConnection(tid, &exclusive, &available, session->mClientConnections, |
| 527 | session->mClientConnectionsOffset); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 528 | |
| 529 | // WARNING: this assumes a server cannot request its client to send |
Steven Moreland | bb543a8 | 2021-05-11 02:31:50 +0000 | [diff] [blame] | 530 | // a transaction, as mServerConnections is excluded below. |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 531 | // |
| 532 | // Imagine we have more than one thread in play, and a single thread |
| 533 | // sends a synchronous, then an asynchronous command. Imagine the |
| 534 | // asynchronous command is sent on the first client connection. Then, if |
| 535 | // we naively send a synchronous command to that same connection, the |
| 536 | // thread on the far side might be busy processing the asynchronous |
| 537 | // command. So, we move to considering the second available thread |
| 538 | // for subsequent calls. |
| 539 | if (use == ConnectionUse::CLIENT_ASYNC && (exclusive != nullptr || available != nullptr)) { |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 540 | session->mClientConnectionsOffset = |
| 541 | (session->mClientConnectionsOffset + 1) % session->mClientConnections.size(); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 542 | } |
| 543 | |
Steven Moreland | c7d4013 | 2021-06-10 03:42:11 +0000 | [diff] [blame^] | 544 | // USE SERVING SOCKET (e.g. nested transaction) |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 545 | if (use != ConnectionUse::CLIENT_ASYNC) { |
Steven Moreland | c7d4013 | 2021-06-10 03:42:11 +0000 | [diff] [blame^] | 546 | sp<RpcConnection> exclusiveServer; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 547 | // server connections are always assigned to a thread |
Steven Moreland | c7d4013 | 2021-06-10 03:42:11 +0000 | [diff] [blame^] | 548 | findConnection(tid, &exclusiveServer, nullptr /*available*/, |
| 549 | session->mServerConnections, 0 /* index hint */); |
| 550 | |
| 551 | // asynchronous calls cannot be nested, we currently allow ref count |
| 552 | // calls to be nested (so that you can use this without having extra |
| 553 | // threads). Note 'drainCommands' is used so that these ref counts can't |
| 554 | // build up. |
| 555 | if (exclusiveServer != nullptr) { |
| 556 | if (exclusiveServer->allowNested) { |
| 557 | // guaranteed to be processed as nested command |
| 558 | exclusive = exclusiveServer; |
| 559 | } else if (use == ConnectionUse::CLIENT_REFCOUNT && available == nullptr) { |
| 560 | // prefer available socket, but if we don't have one, don't |
| 561 | // wait for one |
| 562 | exclusive = exclusiveServer; |
| 563 | } |
| 564 | } |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 565 | } |
| 566 | |
Steven Moreland | 85e067b | 2021-05-26 17:43:53 +0000 | [diff] [blame] | 567 | // if our thread is already using a connection, prioritize using that |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 568 | if (exclusive != nullptr) { |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 569 | connection->mConnection = exclusive; |
| 570 | connection->mReentrant = true; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 571 | break; |
| 572 | } else if (available != nullptr) { |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 573 | connection->mConnection = available; |
| 574 | connection->mConnection->exclusiveTid = tid; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 575 | break; |
| 576 | } |
| 577 | |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 578 | if (session->mClientConnections.size() == 0) { |
| 579 | ALOGE("Session has no client connections. This is required for an RPC server to make " |
| 580 | "any non-nested (e.g. oneway or on another thread) calls. Use: %d. Server " |
| 581 | "connections: %zu", |
| 582 | static_cast<int>(use), session->mServerConnections.size()); |
| 583 | return WOULD_BLOCK; |
| 584 | } |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 585 | |
Steven Moreland | 85e067b | 2021-05-26 17:43:53 +0000 | [diff] [blame] | 586 | LOG_RPC_DETAIL("No available connections (have %zu clients and %zu servers). Waiting...", |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 587 | session->mClientConnections.size(), session->mServerConnections.size()); |
| 588 | session->mAvailableConnectionCv.wait(_l); |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 589 | } |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 590 | session->mWaitingThreads--; |
| 591 | |
| 592 | return OK; |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | void RpcSession::ExclusiveConnection::findConnection(pid_t tid, sp<RpcConnection>* exclusive, |
| 596 | sp<RpcConnection>* available, |
| 597 | std::vector<sp<RpcConnection>>& sockets, |
| 598 | size_t socketsIndexHint) { |
| 599 | LOG_ALWAYS_FATAL_IF(sockets.size() > 0 && socketsIndexHint >= sockets.size(), |
| 600 | "Bad index %zu >= %zu", socketsIndexHint, sockets.size()); |
| 601 | |
| 602 | if (*exclusive != nullptr) return; // consistent with break below |
| 603 | |
| 604 | for (size_t i = 0; i < sockets.size(); i++) { |
| 605 | sp<RpcConnection>& socket = sockets[(i + socketsIndexHint) % sockets.size()]; |
| 606 | |
Steven Moreland | 85e067b | 2021-05-26 17:43:53 +0000 | [diff] [blame] | 607 | // take first available connection (intuition = caching) |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 608 | if (available && *available == nullptr && socket->exclusiveTid == std::nullopt) { |
| 609 | *available = socket; |
| 610 | continue; |
| 611 | } |
| 612 | |
Steven Moreland | 85e067b | 2021-05-26 17:43:53 +0000 | [diff] [blame] | 613 | // though, prefer to take connection which is already inuse by this thread |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 614 | // (nested transactions) |
| 615 | if (exclusive && socket->exclusiveTid == tid) { |
| 616 | *exclusive = socket; |
| 617 | break; // consistent with return above |
| 618 | } |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | RpcSession::ExclusiveConnection::~ExclusiveConnection() { |
Steven Moreland | 85e067b | 2021-05-26 17:43:53 +0000 | [diff] [blame] | 623 | // reentrant use of a connection means something less deep in the call stack |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 624 | // is using this fd, and it retains the right to it. So, we don't give up |
| 625 | // exclusive ownership, and no thread is freed. |
Steven Moreland | 195edb8 | 2021-06-08 02:44:39 +0000 | [diff] [blame] | 626 | if (!mReentrant && mConnection != nullptr) { |
Steven Moreland | bdb53ab | 2021-05-05 17:57:41 +0000 | [diff] [blame] | 627 | std::unique_lock<std::mutex> _l(mSession->mMutex); |
| 628 | mConnection->exclusiveTid = std::nullopt; |
| 629 | if (mSession->mWaitingThreads > 0) { |
| 630 | _l.unlock(); |
| 631 | mSession->mAvailableConnectionCv.notify_one(); |
| 632 | } |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | } // namespace android |