| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2005 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 |  | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 17 | #include <binder/Binder.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 18 |  | 
| Bailey Forrest | 6913c46 | 2015-08-18 17:15:10 -0700 | [diff] [blame] | 19 | #include <atomic> | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 20 | #include <set> | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 21 |  | 
| Jiyong Park | 5970d0a | 2022-03-08 16:56:13 +0900 | [diff] [blame] | 22 | #include <android-base/logging.h> | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 23 | #include <android-base/unique_fd.h> | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 24 | #include <binder/BpBinder.h> | 
|  | 25 | #include <binder/IInterface.h> | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 26 | #include <binder/IPCThreadState.h> | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 27 | #include <binder/IResultReceiver.h> | 
| Dianne Hackborn | 1941a40 | 2016-08-29 12:30:43 -0700 | [diff] [blame] | 28 | #include <binder/IShellCallback.h> | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 29 | #include <binder/Parcel.h> | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 30 | #include <binder/RpcServer.h> | 
|  | 31 | #include <private/android_filesystem_config.h> | 
|  | 32 | #include <utils/misc.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 33 |  | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 34 | #include <inttypes.h> | 
| Steven Moreland | bf1915b | 2020-07-16 22:43:02 +0000 | [diff] [blame] | 35 | #include <linux/sched.h> | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 36 | #include <stdio.h> | 
|  | 37 |  | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 38 | #include "RpcState.h" | 
|  | 39 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 40 | namespace android { | 
|  | 41 |  | 
| Steven Moreland | 90c1f9a | 2021-05-03 18:27:24 +0000 | [diff] [blame] | 42 | // Service implementations inherit from BBinder and IBinder, and this is frozen | 
|  | 43 | // in prebuilts. | 
|  | 44 | #ifdef __LP64__ | 
|  | 45 | static_assert(sizeof(IBinder) == 24); | 
|  | 46 | static_assert(sizeof(BBinder) == 40); | 
|  | 47 | #else | 
|  | 48 | static_assert(sizeof(IBinder) == 12); | 
|  | 49 | static_assert(sizeof(BBinder) == 20); | 
|  | 50 | #endif | 
|  | 51 |  | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 52 | #ifdef BINDER_RPC_DEV_SERVERS | 
|  | 53 | constexpr const bool kEnableRpcDevServers = true; | 
|  | 54 | #else | 
|  | 55 | constexpr const bool kEnableRpcDevServers = false; | 
|  | 56 | #endif | 
|  | 57 |  | 
| Martijn Coenen | 1cad19c | 2021-10-04 09:19:01 +0200 | [diff] [blame] | 58 | // Log any reply transactions for which the data exceeds this size | 
|  | 59 | #define LOG_REPLIES_OVER_SIZE (300 * 1024) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 60 | // --------------------------------------------------------------------------- | 
|  | 61 |  | 
| Mathias Agopian | 83c0446 | 2009-05-22 19:00:22 -0700 | [diff] [blame] | 62 | IBinder::IBinder() | 
|  | 63 | : RefBase() | 
|  | 64 | { | 
|  | 65 | } | 
|  | 66 |  | 
|  | 67 | IBinder::~IBinder() | 
|  | 68 | { | 
|  | 69 | } | 
|  | 70 |  | 
|  | 71 | // --------------------------------------------------------------------------- | 
|  | 72 |  | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 73 | sp<IInterface>  IBinder::queryLocalInterface(const String16& /*descriptor*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 74 | { | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 75 | return nullptr; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 76 | } | 
|  | 77 |  | 
|  | 78 | BBinder* IBinder::localBinder() | 
|  | 79 | { | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 80 | return nullptr; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 81 | } | 
|  | 82 |  | 
|  | 83 | BpBinder* IBinder::remoteBinder() | 
|  | 84 | { | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 85 | return nullptr; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 86 | } | 
|  | 87 |  | 
|  | 88 | bool IBinder::checkSubclass(const void* /*subclassID*/) const | 
|  | 89 | { | 
|  | 90 | return false; | 
|  | 91 | } | 
|  | 92 |  | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 93 |  | 
| Dianne Hackborn | f2bf93b | 2015-10-14 15:13:02 -0700 | [diff] [blame] | 94 | status_t IBinder::shellCommand(const sp<IBinder>& target, int in, int out, int err, | 
| Dianne Hackborn | 1941a40 | 2016-08-29 12:30:43 -0700 | [diff] [blame] | 95 | Vector<String16>& args, const sp<IShellCallback>& callback, | 
|  | 96 | const sp<IResultReceiver>& resultReceiver) | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 97 | { | 
| Dianne Hackborn | f2bf93b | 2015-10-14 15:13:02 -0700 | [diff] [blame] | 98 | Parcel send; | 
|  | 99 | Parcel reply; | 
|  | 100 | send.writeFileDescriptor(in); | 
|  | 101 | send.writeFileDescriptor(out); | 
|  | 102 | send.writeFileDescriptor(err); | 
|  | 103 | const size_t numArgs = args.size(); | 
|  | 104 | send.writeInt32(numArgs); | 
|  | 105 | for (size_t i = 0; i < numArgs; i++) { | 
|  | 106 | send.writeString16(args[i]); | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 107 | } | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 108 | send.writeStrongBinder(callback != nullptr ? IInterface::asBinder(callback) : nullptr); | 
|  | 109 | send.writeStrongBinder(resultReceiver != nullptr ? IInterface::asBinder(resultReceiver) : nullptr); | 
| Dianne Hackborn | f2bf93b | 2015-10-14 15:13:02 -0700 | [diff] [blame] | 110 | return target->transact(SHELL_COMMAND_TRANSACTION, send, &reply); | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 111 | } | 
|  | 112 |  | 
| Steven Moreland | b8ad08d | 2019-08-09 14:42:56 -0700 | [diff] [blame] | 113 | status_t IBinder::getExtension(sp<IBinder>* out) { | 
|  | 114 | BBinder* local = this->localBinder(); | 
|  | 115 | if (local != nullptr) { | 
|  | 116 | *out = local->getExtension(); | 
|  | 117 | return OK; | 
|  | 118 | } | 
|  | 119 |  | 
|  | 120 | BpBinder* proxy = this->remoteBinder(); | 
|  | 121 | LOG_ALWAYS_FATAL_IF(proxy == nullptr); | 
|  | 122 |  | 
|  | 123 | Parcel data; | 
|  | 124 | Parcel reply; | 
|  | 125 | status_t status = transact(EXTENSION_TRANSACTION, data, &reply); | 
|  | 126 | if (status != OK) return status; | 
|  | 127 |  | 
|  | 128 | return reply.readNullableStrongBinder(out); | 
|  | 129 | } | 
|  | 130 |  | 
| Steven Moreland | 86080b8 | 2019-09-23 15:41:18 -0700 | [diff] [blame] | 131 | status_t IBinder::getDebugPid(pid_t* out) { | 
|  | 132 | BBinder* local = this->localBinder(); | 
|  | 133 | if (local != nullptr) { | 
|  | 134 | *out = local->getDebugPid(); | 
|  | 135 | return OK; | 
|  | 136 | } | 
|  | 137 |  | 
|  | 138 | BpBinder* proxy = this->remoteBinder(); | 
|  | 139 | LOG_ALWAYS_FATAL_IF(proxy == nullptr); | 
|  | 140 |  | 
|  | 141 | Parcel data; | 
|  | 142 | Parcel reply; | 
|  | 143 | status_t status = transact(DEBUG_PID_TRANSACTION, data, &reply); | 
|  | 144 | if (status != OK) return status; | 
|  | 145 |  | 
|  | 146 | int32_t pid; | 
|  | 147 | status = reply.readInt32(&pid); | 
|  | 148 | if (status != OK) return status; | 
|  | 149 |  | 
|  | 150 | if (pid < 0 || pid > std::numeric_limits<pid_t>::max()) { | 
|  | 151 | return BAD_VALUE; | 
|  | 152 | } | 
|  | 153 | *out = pid; | 
|  | 154 | return OK; | 
|  | 155 | } | 
|  | 156 |  | 
| Yifan Hong | 02530ec | 2021-06-10 13:38:38 -0700 | [diff] [blame] | 157 | status_t IBinder::setRpcClientDebug(android::base::unique_fd socketFd, | 
|  | 158 | const sp<IBinder>& keepAliveBinder) { | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 159 | if constexpr (!kEnableRpcDevServers) { | 
|  | 160 | ALOGW("setRpcClientDebug disallowed because RPC is not enabled"); | 
|  | 161 | return INVALID_OPERATION; | 
|  | 162 | } | 
|  | 163 |  | 
|  | 164 | BBinder* local = this->localBinder(); | 
|  | 165 | if (local != nullptr) { | 
| Yifan Hong | 02530ec | 2021-06-10 13:38:38 -0700 | [diff] [blame] | 166 | return local->BBinder::setRpcClientDebug(std::move(socketFd), keepAliveBinder); | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 167 | } | 
|  | 168 |  | 
|  | 169 | BpBinder* proxy = this->remoteBinder(); | 
|  | 170 | LOG_ALWAYS_FATAL_IF(proxy == nullptr, "binder object must be either local or remote"); | 
|  | 171 |  | 
|  | 172 | Parcel data; | 
|  | 173 | Parcel reply; | 
|  | 174 | status_t status; | 
|  | 175 | if (status = data.writeBool(socketFd.ok()); status != OK) return status; | 
|  | 176 | if (socketFd.ok()) { | 
|  | 177 | // writeUniqueFileDescriptor currently makes an unnecessary dup(). | 
|  | 178 | status = data.writeFileDescriptor(socketFd.release(), true /* own */); | 
|  | 179 | if (status != OK) return status; | 
|  | 180 | } | 
| Yifan Hong | 02530ec | 2021-06-10 13:38:38 -0700 | [diff] [blame] | 181 | if (status = data.writeStrongBinder(keepAliveBinder); status != OK) return status; | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 182 | return transact(SET_RPC_CLIENT_TRANSACTION, data, &reply); | 
|  | 183 | } | 
|  | 184 |  | 
| Steven Moreland | 9e759e8 | 2021-06-25 21:30:23 +0000 | [diff] [blame] | 185 | void IBinder::withLock(const std::function<void()>& doWithLock) { | 
|  | 186 | BBinder* local = localBinder(); | 
|  | 187 | if (local) { | 
|  | 188 | local->withLock(doWithLock); | 
|  | 189 | return; | 
|  | 190 | } | 
|  | 191 | BpBinder* proxy = this->remoteBinder(); | 
|  | 192 | LOG_ALWAYS_FATAL_IF(proxy == nullptr, "binder object must be either local or remote"); | 
|  | 193 | proxy->withLock(doWithLock); | 
|  | 194 | } | 
|  | 195 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 196 | // --------------------------------------------------------------------------- | 
|  | 197 |  | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 198 | class BBinder::RpcServerLink : public IBinder::DeathRecipient { | 
|  | 199 | public: | 
|  | 200 | // On binder died, calls RpcServer::shutdown on @a rpcServer, and removes itself from @a binder. | 
|  | 201 | RpcServerLink(const sp<RpcServer>& rpcServer, const sp<IBinder>& keepAliveBinder, | 
|  | 202 | const wp<BBinder>& binder) | 
|  | 203 | : mRpcServer(rpcServer), mKeepAliveBinder(keepAliveBinder), mBinder(binder) {} | 
|  | 204 | void binderDied(const wp<IBinder>&) override { | 
|  | 205 | LOG_RPC_DETAIL("RpcServerLink: binder died, shutting down RpcServer"); | 
|  | 206 | if (mRpcServer == nullptr) { | 
|  | 207 | ALOGW("RpcServerLink: Unable to shut down RpcServer because it does not exist."); | 
|  | 208 | } else { | 
|  | 209 | ALOGW_IF(!mRpcServer->shutdown(), | 
|  | 210 | "RpcServerLink: RpcServer did not shut down properly. Not started?"); | 
|  | 211 | } | 
|  | 212 | mRpcServer.clear(); | 
|  | 213 |  | 
|  | 214 | auto promoted = mBinder.promote(); | 
|  | 215 | if (promoted == nullptr) { | 
|  | 216 | ALOGW("RpcServerLink: Unable to remove link from parent binder object because parent " | 
|  | 217 | "binder object is gone."); | 
|  | 218 | } else { | 
|  | 219 | promoted->removeRpcServerLink(sp<RpcServerLink>::fromExisting(this)); | 
|  | 220 | } | 
|  | 221 | mBinder.clear(); | 
|  | 222 | } | 
|  | 223 |  | 
|  | 224 | private: | 
|  | 225 | sp<RpcServer> mRpcServer; | 
|  | 226 | sp<IBinder> mKeepAliveBinder; // hold to avoid automatically unlinking | 
|  | 227 | wp<BBinder> mBinder; | 
|  | 228 | }; | 
|  | 229 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 230 | class BBinder::Extras | 
|  | 231 | { | 
|  | 232 | public: | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 233 | // unlocked objects | 
|  | 234 | bool mRequestingSid = false; | 
| Steven Moreland | cf03cf1 | 2020-12-04 02:58:40 +0000 | [diff] [blame] | 235 | bool mInheritRt = false; | 
| Steven Moreland | b8ad08d | 2019-08-09 14:42:56 -0700 | [diff] [blame] | 236 | sp<IBinder> mExtension; | 
| Steven Moreland | bf1915b | 2020-07-16 22:43:02 +0000 | [diff] [blame] | 237 | int mPolicy = SCHED_NORMAL; | 
|  | 238 | int mPriority = 0; | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 239 |  | 
|  | 240 | // for below objects | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 241 | Mutex mLock; | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 242 | std::set<sp<RpcServerLink>> mRpcServerLinks; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 243 | BpBinder::ObjectManager mObjects; | 
|  | 244 | }; | 
|  | 245 |  | 
|  | 246 | // --------------------------------------------------------------------------- | 
|  | 247 |  | 
| Kalesh Singh | d67c8e8 | 2020-12-29 15:46:25 -0500 | [diff] [blame] | 248 | BBinder::BBinder() : mExtras(nullptr), mStability(0), mParceled(false) {} | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 249 |  | 
|  | 250 | bool BBinder::isBinderAlive() const | 
|  | 251 | { | 
|  | 252 | return true; | 
|  | 253 | } | 
|  | 254 |  | 
|  | 255 | status_t BBinder::pingBinder() | 
|  | 256 | { | 
|  | 257 | return NO_ERROR; | 
|  | 258 | } | 
|  | 259 |  | 
| Mathias Agopian | 83c0446 | 2009-05-22 19:00:22 -0700 | [diff] [blame] | 260 | const String16& BBinder::getInterfaceDescriptor() const | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 261 | { | 
| Dan Egnor | 386a332 | 2010-05-06 00:55:09 -0700 | [diff] [blame] | 262 | // This is a local static rather than a global static, | 
|  | 263 | // to avoid static initializer ordering issues. | 
|  | 264 | static String16 sEmptyDescriptor; | 
| Steve Block | 32397c1 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 265 | ALOGW("reached BBinder::getInterfaceDescriptor (this=%p)", this); | 
| Mathias Agopian | 83c0446 | 2009-05-22 19:00:22 -0700 | [diff] [blame] | 266 | return sEmptyDescriptor; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 267 | } | 
|  | 268 |  | 
| Jiyong Park | b86c866 | 2018-10-29 23:01:57 +0900 | [diff] [blame] | 269 | // NOLINTNEXTLINE(google-default-arguments) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 270 | status_t BBinder::transact( | 
|  | 271 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) | 
|  | 272 | { | 
|  | 273 | data.setDataPosition(0); | 
|  | 274 |  | 
| Steven Moreland | f183fdd | 2020-10-27 00:12:12 +0000 | [diff] [blame] | 275 | if (reply != nullptr && (flags & FLAG_CLEAR_BUF)) { | 
|  | 276 | reply->markSensitive(); | 
|  | 277 | } | 
|  | 278 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 279 | status_t err = NO_ERROR; | 
|  | 280 | switch (code) { | 
|  | 281 | case PING_TRANSACTION: | 
| Steven Moreland | 6e69d65 | 2019-07-10 14:17:55 -0700 | [diff] [blame] | 282 | err = pingBinder(); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 283 | break; | 
| Steven Moreland | b8ad08d | 2019-08-09 14:42:56 -0700 | [diff] [blame] | 284 | case EXTENSION_TRANSACTION: | 
| Jiyong Park | 5970d0a | 2022-03-08 16:56:13 +0900 | [diff] [blame] | 285 | CHECK(reply != nullptr); | 
| Steven Moreland | b8ad08d | 2019-08-09 14:42:56 -0700 | [diff] [blame] | 286 | err = reply->writeStrongBinder(getExtension()); | 
|  | 287 | break; | 
| Steven Moreland | 86080b8 | 2019-09-23 15:41:18 -0700 | [diff] [blame] | 288 | case DEBUG_PID_TRANSACTION: | 
| Jiyong Park | 5970d0a | 2022-03-08 16:56:13 +0900 | [diff] [blame] | 289 | CHECK(reply != nullptr); | 
| Steven Moreland | 86080b8 | 2019-09-23 15:41:18 -0700 | [diff] [blame] | 290 | err = reply->writeInt32(getDebugPid()); | 
|  | 291 | break; | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 292 | case SET_RPC_CLIENT_TRANSACTION: { | 
|  | 293 | err = setRpcClientDebug(data); | 
|  | 294 | break; | 
|  | 295 | } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 296 | default: | 
|  | 297 | err = onTransact(code, data, reply, flags); | 
|  | 298 | break; | 
|  | 299 | } | 
|  | 300 |  | 
| Steven Moreland | a86a356 | 2019-08-01 23:28:34 +0000 | [diff] [blame] | 301 | // In case this is being transacted on in the same process. | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 302 | if (reply != nullptr) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 303 | reply->setDataPosition(0); | 
| Martijn Coenen | 1cad19c | 2021-10-04 09:19:01 +0200 | [diff] [blame] | 304 | if (reply->dataSize() > LOG_REPLIES_OVER_SIZE) { | 
|  | 305 | ALOGW("Large reply transaction of %zu bytes, interface descriptor %s, code %d", | 
|  | 306 | reply->dataSize(), String8(getInterfaceDescriptor()).c_str(), code); | 
|  | 307 | } | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 308 | } | 
|  | 309 |  | 
|  | 310 | return err; | 
|  | 311 | } | 
|  | 312 |  | 
| Jiyong Park | b86c866 | 2018-10-29 23:01:57 +0900 | [diff] [blame] | 313 | // NOLINTNEXTLINE(google-default-arguments) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 314 | status_t BBinder::linkToDeath( | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 315 | const sp<DeathRecipient>& /*recipient*/, void* /*cookie*/, | 
|  | 316 | uint32_t /*flags*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 317 | { | 
|  | 318 | return INVALID_OPERATION; | 
|  | 319 | } | 
|  | 320 |  | 
| Jiyong Park | b86c866 | 2018-10-29 23:01:57 +0900 | [diff] [blame] | 321 | // NOLINTNEXTLINE(google-default-arguments) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 322 | status_t BBinder::unlinkToDeath( | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 323 | const wp<DeathRecipient>& /*recipient*/, void* /*cookie*/, | 
|  | 324 | uint32_t /*flags*/, wp<DeathRecipient>* /*outRecipient*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 325 | { | 
|  | 326 | return INVALID_OPERATION; | 
|  | 327 | } | 
|  | 328 |  | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 329 | status_t BBinder::dump(int /*fd*/, const Vector<String16>& /*args*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 330 | { | 
|  | 331 | return NO_ERROR; | 
|  | 332 | } | 
|  | 333 |  | 
| Steven Moreland | 63a2d51 | 2021-06-25 01:10:15 +0000 | [diff] [blame] | 334 | void* BBinder::attachObject(const void* objectID, void* object, void* cleanupCookie, | 
|  | 335 | object_cleanup_func func) { | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 336 | Extras* e = getOrCreateExtras(); | 
| Steven Moreland | 5ce7ca5 | 2021-06-25 21:59:50 +0000 | [diff] [blame] | 337 | LOG_ALWAYS_FATAL_IF(!e, "no memory"); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 338 |  | 
|  | 339 | AutoMutex _l(e->mLock); | 
| Steven Moreland | 63a2d51 | 2021-06-25 01:10:15 +0000 | [diff] [blame] | 340 | return e->mObjects.attach(objectID, object, cleanupCookie, func); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 341 | } | 
|  | 342 |  | 
|  | 343 | void* BBinder::findObject(const void* objectID) const | 
|  | 344 | { | 
| Bailey Forrest | 6913c46 | 2015-08-18 17:15:10 -0700 | [diff] [blame] | 345 | Extras* e = mExtras.load(std::memory_order_acquire); | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 346 | if (!e) return nullptr; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 347 |  | 
|  | 348 | AutoMutex _l(e->mLock); | 
|  | 349 | return e->mObjects.find(objectID); | 
|  | 350 | } | 
|  | 351 |  | 
| Steven Moreland | 63a2d51 | 2021-06-25 01:10:15 +0000 | [diff] [blame] | 352 | void* BBinder::detachObject(const void* objectID) { | 
| Bailey Forrest | 6913c46 | 2015-08-18 17:15:10 -0700 | [diff] [blame] | 353 | Extras* e = mExtras.load(std::memory_order_acquire); | 
| Steven Moreland | 63a2d51 | 2021-06-25 01:10:15 +0000 | [diff] [blame] | 354 | if (!e) return nullptr; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 355 |  | 
|  | 356 | AutoMutex _l(e->mLock); | 
| Steven Moreland | 63a2d51 | 2021-06-25 01:10:15 +0000 | [diff] [blame] | 357 | return e->mObjects.detach(objectID); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 358 | } | 
|  | 359 |  | 
| Steven Moreland | 9e759e8 | 2021-06-25 21:30:23 +0000 | [diff] [blame] | 360 | void BBinder::withLock(const std::function<void()>& doWithLock) { | 
|  | 361 | Extras* e = getOrCreateExtras(); | 
|  | 362 | LOG_ALWAYS_FATAL_IF(!e, "no memory"); | 
|  | 363 |  | 
|  | 364 | AutoMutex _l(e->mLock); | 
|  | 365 | doWithLock(); | 
|  | 366 | } | 
|  | 367 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 368 | BBinder* BBinder::localBinder() | 
|  | 369 | { | 
|  | 370 | return this; | 
|  | 371 | } | 
|  | 372 |  | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 373 | bool BBinder::isRequestingSid() | 
|  | 374 | { | 
|  | 375 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 376 |  | 
|  | 377 | return e && e->mRequestingSid; | 
|  | 378 | } | 
|  | 379 |  | 
|  | 380 | void BBinder::setRequestingSid(bool requestingSid) | 
|  | 381 | { | 
| Steven Moreland | d37e6dd | 2021-06-16 22:07:51 +0000 | [diff] [blame] | 382 | LOG_ALWAYS_FATAL_IF(mParceled, | 
|  | 383 | "setRequestingSid() should not be called after a binder object " | 
|  | 384 | "is parceled/sent to another process"); | 
| Kalesh Singh | d67c8e8 | 2020-12-29 15:46:25 -0500 | [diff] [blame] | 385 |  | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 386 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 387 |  | 
|  | 388 | if (!e) { | 
|  | 389 | // default is false. Most things don't need sids, so avoiding allocations when possible. | 
|  | 390 | if (!requestingSid) { | 
|  | 391 | return; | 
|  | 392 | } | 
|  | 393 |  | 
|  | 394 | e = getOrCreateExtras(); | 
|  | 395 | if (!e) return; // out of memory | 
|  | 396 | } | 
|  | 397 |  | 
| Steven Moreland | 3668be6 | 2019-02-08 17:56:55 -0800 | [diff] [blame] | 398 | e->mRequestingSid = requestingSid; | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 399 | } | 
|  | 400 |  | 
| Steven Moreland | b8ad08d | 2019-08-09 14:42:56 -0700 | [diff] [blame] | 401 | sp<IBinder> BBinder::getExtension() { | 
|  | 402 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 403 | if (e == nullptr) return nullptr; | 
|  | 404 | return e->mExtension; | 
|  | 405 | } | 
|  | 406 |  | 
| Steven Moreland | bf1915b | 2020-07-16 22:43:02 +0000 | [diff] [blame] | 407 | void BBinder::setMinSchedulerPolicy(int policy, int priority) { | 
| Steven Moreland | d37e6dd | 2021-06-16 22:07:51 +0000 | [diff] [blame] | 408 | LOG_ALWAYS_FATAL_IF(mParceled, | 
|  | 409 | "setMinSchedulerPolicy() should not be called after a binder object " | 
|  | 410 | "is parceled/sent to another process"); | 
| Kalesh Singh | d67c8e8 | 2020-12-29 15:46:25 -0500 | [diff] [blame] | 411 |  | 
| Steven Moreland | bf1915b | 2020-07-16 22:43:02 +0000 | [diff] [blame] | 412 | switch (policy) { | 
|  | 413 | case SCHED_NORMAL: | 
|  | 414 | LOG_ALWAYS_FATAL_IF(priority < -20 || priority > 19, "Invalid priority for SCHED_NORMAL: %d", priority); | 
|  | 415 | break; | 
|  | 416 | case SCHED_RR: | 
|  | 417 | case SCHED_FIFO: | 
|  | 418 | LOG_ALWAYS_FATAL_IF(priority < 1 || priority > 99, "Invalid priority for sched %d: %d", policy, priority); | 
|  | 419 | break; | 
|  | 420 | default: | 
|  | 421 | LOG_ALWAYS_FATAL("Unrecognized scheduling policy: %d", policy); | 
|  | 422 | } | 
|  | 423 |  | 
|  | 424 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 425 |  | 
|  | 426 | if (e == nullptr) { | 
|  | 427 | // Avoid allocations if called with default. | 
|  | 428 | if (policy == SCHED_NORMAL && priority == 0) { | 
|  | 429 | return; | 
|  | 430 | } | 
|  | 431 |  | 
|  | 432 | e = getOrCreateExtras(); | 
|  | 433 | if (!e) return; // out of memory | 
|  | 434 | } | 
|  | 435 |  | 
|  | 436 | e->mPolicy = policy; | 
|  | 437 | e->mPriority = priority; | 
|  | 438 | } | 
|  | 439 |  | 
|  | 440 | int BBinder::getMinSchedulerPolicy() { | 
|  | 441 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 442 | if (e == nullptr) return SCHED_NORMAL; | 
|  | 443 | return e->mPolicy; | 
|  | 444 | } | 
|  | 445 |  | 
|  | 446 | int BBinder::getMinSchedulerPriority() { | 
|  | 447 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 448 | if (e == nullptr) return 0; | 
|  | 449 | return e->mPriority; | 
|  | 450 | } | 
|  | 451 |  | 
| Steven Moreland | cf03cf1 | 2020-12-04 02:58:40 +0000 | [diff] [blame] | 452 | bool BBinder::isInheritRt() { | 
|  | 453 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 454 |  | 
|  | 455 | return e && e->mInheritRt; | 
|  | 456 | } | 
|  | 457 |  | 
|  | 458 | void BBinder::setInheritRt(bool inheritRt) { | 
| Steven Moreland | d37e6dd | 2021-06-16 22:07:51 +0000 | [diff] [blame] | 459 | LOG_ALWAYS_FATAL_IF(mParceled, | 
|  | 460 | "setInheritRt() should not be called after a binder object " | 
|  | 461 | "is parceled/sent to another process"); | 
| Kalesh Singh | d67c8e8 | 2020-12-29 15:46:25 -0500 | [diff] [blame] | 462 |  | 
| Steven Moreland | cf03cf1 | 2020-12-04 02:58:40 +0000 | [diff] [blame] | 463 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 464 |  | 
|  | 465 | if (!e) { | 
|  | 466 | if (!inheritRt) { | 
|  | 467 | return; | 
|  | 468 | } | 
|  | 469 |  | 
|  | 470 | e = getOrCreateExtras(); | 
|  | 471 | if (!e) return; // out of memory | 
|  | 472 | } | 
|  | 473 |  | 
|  | 474 | e->mInheritRt = inheritRt; | 
|  | 475 | } | 
|  | 476 |  | 
| Steven Moreland | 86080b8 | 2019-09-23 15:41:18 -0700 | [diff] [blame] | 477 | pid_t BBinder::getDebugPid() { | 
|  | 478 | return getpid(); | 
|  | 479 | } | 
|  | 480 |  | 
| Steven Moreland | b8ad08d | 2019-08-09 14:42:56 -0700 | [diff] [blame] | 481 | void BBinder::setExtension(const sp<IBinder>& extension) { | 
| Steven Moreland | d37e6dd | 2021-06-16 22:07:51 +0000 | [diff] [blame] | 482 | LOG_ALWAYS_FATAL_IF(mParceled, | 
|  | 483 | "setExtension() should not be called after a binder object " | 
|  | 484 | "is parceled/sent to another process"); | 
| Kalesh Singh | d67c8e8 | 2020-12-29 15:46:25 -0500 | [diff] [blame] | 485 |  | 
| Steven Moreland | b8ad08d | 2019-08-09 14:42:56 -0700 | [diff] [blame] | 486 | Extras* e = getOrCreateExtras(); | 
|  | 487 | e->mExtension = extension; | 
|  | 488 | } | 
|  | 489 |  | 
| Kalesh Singh | d67c8e8 | 2020-12-29 15:46:25 -0500 | [diff] [blame] | 490 | bool BBinder::wasParceled() { | 
|  | 491 | return mParceled; | 
|  | 492 | } | 
|  | 493 |  | 
|  | 494 | void BBinder::setParceled() { | 
|  | 495 | mParceled = true; | 
|  | 496 | } | 
|  | 497 |  | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 498 | status_t BBinder::setRpcClientDebug(const Parcel& data) { | 
|  | 499 | if constexpr (!kEnableRpcDevServers) { | 
|  | 500 | ALOGW("%s: disallowed because RPC is not enabled", __PRETTY_FUNCTION__); | 
|  | 501 | return INVALID_OPERATION; | 
|  | 502 | } | 
|  | 503 | uid_t uid = IPCThreadState::self()->getCallingUid(); | 
|  | 504 | if (uid != AID_ROOT) { | 
|  | 505 | ALOGE("%s: not allowed because client %" PRIu32 " is not root", __PRETTY_FUNCTION__, uid); | 
|  | 506 | return PERMISSION_DENIED; | 
|  | 507 | } | 
|  | 508 | status_t status; | 
|  | 509 | bool hasSocketFd; | 
|  | 510 | android::base::unique_fd clientFd; | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 511 |  | 
|  | 512 | if (status = data.readBool(&hasSocketFd); status != OK) return status; | 
|  | 513 | if (hasSocketFd) { | 
|  | 514 | if (status = data.readUniqueFileDescriptor(&clientFd); status != OK) return status; | 
|  | 515 | } | 
| Yifan Hong | 02530ec | 2021-06-10 13:38:38 -0700 | [diff] [blame] | 516 | sp<IBinder> keepAliveBinder; | 
|  | 517 | if (status = data.readNullableStrongBinder(&keepAliveBinder); status != OK) return status; | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 518 |  | 
| Yifan Hong | 02530ec | 2021-06-10 13:38:38 -0700 | [diff] [blame] | 519 | return setRpcClientDebug(std::move(clientFd), keepAliveBinder); | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 520 | } | 
|  | 521 |  | 
| Yifan Hong | 02530ec | 2021-06-10 13:38:38 -0700 | [diff] [blame] | 522 | status_t BBinder::setRpcClientDebug(android::base::unique_fd socketFd, | 
|  | 523 | const sp<IBinder>& keepAliveBinder) { | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 524 | if constexpr (!kEnableRpcDevServers) { | 
|  | 525 | ALOGW("%s: disallowed because RPC is not enabled", __PRETTY_FUNCTION__); | 
|  | 526 | return INVALID_OPERATION; | 
|  | 527 | } | 
|  | 528 |  | 
|  | 529 | const int socketFdForPrint = socketFd.get(); | 
| Yifan Hong | 3482323 | 2021-06-07 17:23:00 -0700 | [diff] [blame] | 530 | LOG_RPC_DETAIL("%s(fd=%d)", __PRETTY_FUNCTION__, socketFdForPrint); | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 531 |  | 
|  | 532 | if (!socketFd.ok()) { | 
|  | 533 | ALOGE("%s: No socket FD provided.", __PRETTY_FUNCTION__); | 
|  | 534 | return BAD_VALUE; | 
|  | 535 | } | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 536 |  | 
| Yifan Hong | 02530ec | 2021-06-10 13:38:38 -0700 | [diff] [blame] | 537 | if (keepAliveBinder == nullptr) { | 
|  | 538 | ALOGE("%s: No keepAliveBinder provided.", __PRETTY_FUNCTION__); | 
|  | 539 | return UNEXPECTED_NULL; | 
|  | 540 | } | 
|  | 541 |  | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 542 | size_t binderThreadPoolMaxCount = ProcessState::self()->getThreadPoolMaxThreadCount(); | 
|  | 543 | if (binderThreadPoolMaxCount <= 1) { | 
|  | 544 | ALOGE("%s: ProcessState thread pool max count is %zu. RPC is disabled for this service " | 
|  | 545 | "because RPC requires the service to support multithreading.", | 
|  | 546 | __PRETTY_FUNCTION__, binderThreadPoolMaxCount); | 
|  | 547 | return INVALID_OPERATION; | 
|  | 548 | } | 
|  | 549 |  | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 550 | // Weak ref to avoid circular dependency: | 
|  | 551 | // BBinder -> RpcServerLink ----> RpcServer -X-> BBinder | 
|  | 552 | //                          `-X-> BBinder | 
|  | 553 | auto weakThis = wp<BBinder>::fromExisting(this); | 
|  | 554 |  | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 555 | Extras* e = getOrCreateExtras(); | 
|  | 556 | AutoMutex _l(e->mLock); | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 557 | auto rpcServer = RpcServer::make(); | 
|  | 558 | LOG_ALWAYS_FATAL_IF(rpcServer == nullptr, "RpcServer::make returns null"); | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 559 | auto link = sp<RpcServerLink>::make(rpcServer, keepAliveBinder, weakThis); | 
|  | 560 | if (auto status = keepAliveBinder->linkToDeath(link, nullptr, 0); status != OK) { | 
|  | 561 | ALOGE("%s: keepAliveBinder->linkToDeath returns %s", __PRETTY_FUNCTION__, | 
|  | 562 | statusToString(status).c_str()); | 
|  | 563 | return status; | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 564 | } | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 565 | rpcServer->setRootObjectWeak(weakThis); | 
| Steven Moreland | 2372f9d | 2021-08-05 15:42:01 -0700 | [diff] [blame] | 566 | if (auto status = rpcServer->setupExternalServer(std::move(socketFd)); status != OK) { | 
|  | 567 | return status; | 
|  | 568 | } | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 569 | rpcServer->setMaxThreads(binderThreadPoolMaxCount); | 
|  | 570 | rpcServer->start(); | 
|  | 571 | e->mRpcServerLinks.emplace(link); | 
| Yifan Hong | 3482323 | 2021-06-07 17:23:00 -0700 | [diff] [blame] | 572 | LOG_RPC_DETAIL("%s(fd=%d) successful", __PRETTY_FUNCTION__, socketFdForPrint); | 
| Yifan Hong | 84bedeb | 2021-04-21 21:37:17 -0700 | [diff] [blame] | 573 | return OK; | 
|  | 574 | } | 
|  | 575 |  | 
| Yifan Hong | 8b89085 | 2021-06-10 13:44:09 -0700 | [diff] [blame] | 576 | void BBinder::removeRpcServerLink(const sp<RpcServerLink>& link) { | 
|  | 577 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 578 | if (!e) return; | 
|  | 579 | AutoMutex _l(e->mLock); | 
|  | 580 | (void)e->mRpcServerLinks.erase(link); | 
|  | 581 | } | 
|  | 582 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 583 | BBinder::~BBinder() | 
|  | 584 | { | 
| Bailey Forrest | 6913c46 | 2015-08-18 17:15:10 -0700 | [diff] [blame] | 585 | Extras* e = mExtras.load(std::memory_order_relaxed); | 
| Hans Boehm | 3effaba | 2014-08-12 22:56:00 +0000 | [diff] [blame] | 586 | if (e) delete e; | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 587 | } | 
|  | 588 |  | 
|  | 589 |  | 
| Jiyong Park | b86c866 | 2018-10-29 23:01:57 +0900 | [diff] [blame] | 590 | // NOLINTNEXTLINE(google-default-arguments) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 591 | status_t BBinder::onTransact( | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 592 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t /*flags*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 593 | { | 
|  | 594 | switch (code) { | 
|  | 595 | case INTERFACE_TRANSACTION: | 
| Jiyong Park | 5970d0a | 2022-03-08 16:56:13 +0900 | [diff] [blame] | 596 | CHECK(reply != nullptr); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 597 | reply->writeString16(getInterfaceDescriptor()); | 
|  | 598 | return NO_ERROR; | 
|  | 599 |  | 
|  | 600 | case DUMP_TRANSACTION: { | 
|  | 601 | int fd = data.readFileDescriptor(); | 
|  | 602 | int argc = data.readInt32(); | 
|  | 603 | Vector<String16> args; | 
|  | 604 | for (int i = 0; i < argc && data.dataAvail() > 0; i++) { | 
|  | 605 | args.add(data.readString16()); | 
|  | 606 | } | 
|  | 607 | return dump(fd, args); | 
|  | 608 | } | 
| Dianne Hackborn | 555f89d | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 609 |  | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 610 | case SHELL_COMMAND_TRANSACTION: { | 
|  | 611 | int in = data.readFileDescriptor(); | 
|  | 612 | int out = data.readFileDescriptor(); | 
|  | 613 | int err = data.readFileDescriptor(); | 
|  | 614 | int argc = data.readInt32(); | 
|  | 615 | Vector<String16> args; | 
|  | 616 | for (int i = 0; i < argc && data.dataAvail() > 0; i++) { | 
|  | 617 | args.add(data.readString16()); | 
|  | 618 | } | 
| Dianne Hackborn | 1941a40 | 2016-08-29 12:30:43 -0700 | [diff] [blame] | 619 | sp<IShellCallback> shellCallback = IShellCallback::asInterface( | 
|  | 620 | data.readStrongBinder()); | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 621 | sp<IResultReceiver> resultReceiver = IResultReceiver::asInterface( | 
|  | 622 | data.readStrongBinder()); | 
|  | 623 |  | 
| Dianne Hackborn | f2bf93b | 2015-10-14 15:13:02 -0700 | [diff] [blame] | 624 | // XXX can't add virtuals until binaries are updated. | 
|  | 625 | //return shellCommand(in, out, err, args, resultReceiver); | 
| Christopher Wiley | 0a9a1c1 | 2016-07-20 08:28:14 -0700 | [diff] [blame] | 626 | (void)in; | 
|  | 627 | (void)out; | 
|  | 628 | (void)err; | 
|  | 629 |  | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 630 | if (resultReceiver != nullptr) { | 
| Dianne Hackborn | f2bf93b | 2015-10-14 15:13:02 -0700 | [diff] [blame] | 631 | resultReceiver->send(INVALID_OPERATION); | 
|  | 632 | } | 
| Martijn Coenen | aa6ee99 | 2017-08-17 15:38:08 +0200 | [diff] [blame] | 633 |  | 
|  | 634 | return NO_ERROR; | 
| Dianne Hackborn | 23eb1e2 | 2015-10-07 17:35:27 -0700 | [diff] [blame] | 635 | } | 
|  | 636 |  | 
| Dianne Hackborn | 555f89d | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 637 | case SYSPROPS_TRANSACTION: { | 
|  | 638 | report_sysprop_change(); | 
|  | 639 | return NO_ERROR; | 
|  | 640 | } | 
|  | 641 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 642 | default: | 
|  | 643 | return UNKNOWN_TRANSACTION; | 
|  | 644 | } | 
|  | 645 | } | 
|  | 646 |  | 
| Steven Moreland | f021200 | 2018-12-26 13:59:23 -0800 | [diff] [blame] | 647 | BBinder::Extras* BBinder::getOrCreateExtras() | 
|  | 648 | { | 
|  | 649 | Extras* e = mExtras.load(std::memory_order_acquire); | 
|  | 650 |  | 
|  | 651 | if (!e) { | 
|  | 652 | e = new Extras; | 
|  | 653 | Extras* expected = nullptr; | 
|  | 654 | if (!mExtras.compare_exchange_strong(expected, e, | 
|  | 655 | std::memory_order_release, | 
|  | 656 | std::memory_order_acquire)) { | 
|  | 657 | delete e; | 
|  | 658 | e = expected;  // Filled in by CAS | 
|  | 659 | } | 
|  | 660 | if (e == nullptr) return nullptr; // out of memory | 
|  | 661 | } | 
|  | 662 |  | 
|  | 663 | return e; | 
|  | 664 | } | 
|  | 665 |  | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 666 | // --------------------------------------------------------------------------- | 
|  | 667 |  | 
|  | 668 | enum { | 
|  | 669 | // This is used to transfer ownership of the remote binder from | 
|  | 670 | // the BpRefBase object holding it (when it is constructed), to the | 
|  | 671 | // owner of the BpRefBase object when it first acquires that BpRefBase. | 
|  | 672 | kRemoteAcquired = 0x00000001 | 
|  | 673 | }; | 
|  | 674 |  | 
|  | 675 | BpRefBase::BpRefBase(const sp<IBinder>& o) | 
| Yi Kong | fdd8da9 | 2018-06-07 17:52:27 -0700 | [diff] [blame] | 676 | : mRemote(o.get()), mRefs(nullptr), mState(0) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 677 | { | 
|  | 678 | extendObjectLifetime(OBJECT_LIFETIME_WEAK); | 
|  | 679 |  | 
|  | 680 | if (mRemote) { | 
|  | 681 | mRemote->incStrong(this);           // Removed on first IncStrong(). | 
|  | 682 | mRefs = mRemote->createWeak(this);  // Held for our entire lifetime. | 
|  | 683 | } | 
|  | 684 | } | 
|  | 685 |  | 
|  | 686 | BpRefBase::~BpRefBase() | 
|  | 687 | { | 
|  | 688 | if (mRemote) { | 
| Bailey Forrest | 6913c46 | 2015-08-18 17:15:10 -0700 | [diff] [blame] | 689 | if (!(mState.load(std::memory_order_relaxed)&kRemoteAcquired)) { | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 690 | mRemote->decStrong(this); | 
|  | 691 | } | 
|  | 692 | mRefs->decWeak(this); | 
|  | 693 | } | 
|  | 694 | } | 
|  | 695 |  | 
|  | 696 | void BpRefBase::onFirstRef() | 
|  | 697 | { | 
| Bailey Forrest | 6913c46 | 2015-08-18 17:15:10 -0700 | [diff] [blame] | 698 | mState.fetch_or(kRemoteAcquired, std::memory_order_relaxed); | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 699 | } | 
|  | 700 |  | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 701 | void BpRefBase::onLastStrongRef(const void* /*id*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 702 | { | 
|  | 703 | if (mRemote) { | 
|  | 704 | mRemote->decStrong(this); | 
|  | 705 | } | 
|  | 706 | } | 
|  | 707 |  | 
| Colin Cross | 6f4f3ab | 2014-02-05 17:42:44 -0800 | [diff] [blame] | 708 | bool BpRefBase::onIncStrongAttempted(uint32_t /*flags*/, const void* /*id*/) | 
| The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 709 | { | 
|  | 710 | return mRemote ? mRefs->attemptIncStrong(this) : false; | 
|  | 711 | } | 
|  | 712 |  | 
|  | 713 | // --------------------------------------------------------------------------- | 
|  | 714 |  | 
| Steven Moreland | 61ff849 | 2019-09-26 16:05:45 -0700 | [diff] [blame] | 715 | } // namespace android |