blob: 238c9dcc7f20093d43a9096bf27b71b1b0d3120c [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
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
17#define LOG_TAG "BpBinder"
18//#define LOG_NDEBUG 0
19
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070020#include <binder/BpBinder.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080021
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070022#include <binder/IPCThreadState.h>
Dianne Hackborn23eb1e22015-10-07 17:35:27 -070023#include <binder/IResultReceiver.h>
Steven Moreland6e5a7752019-08-05 20:30:14 -070024#include <binder/Stability.h>
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -070025#include <cutils/compiler.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080026#include <utils/Log.h>
27
28#include <stdio.h>
29
Steve Block6807e592011-10-20 11:56:00 +010030//#undef ALOGV
31//#define ALOGV(...) fprintf(stderr, __VA_ARGS__)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080032
33namespace android {
34
35// ---------------------------------------------------------------------------
36
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -070037Mutex BpBinder::sTrackingLock;
38std::unordered_map<int32_t,uint32_t> BpBinder::sTrackingMap;
39int BpBinder::sNumTrackedUids = 0;
40std::atomic_bool BpBinder::sCountByUidEnabled(false);
41binder_proxy_limit_callback BpBinder::sLimitCallback;
42bool BpBinder::sBinderProxyThrottleCreate = false;
43
44// Arbitrarily high value that probably distinguishes a bad behaving app
45uint32_t BpBinder::sBinderProxyCountHighWatermark = 2500;
46// Another arbitrary value a binder count needs to drop below before another callback will be called
47uint32_t BpBinder::sBinderProxyCountLowWatermark = 2000;
48
49enum {
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -070050 LIMIT_REACHED_MASK = 0x80000000, // A flag denoting that the limit has been reached
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -070051 COUNTING_VALUE_MASK = 0x7FFFFFFF, // A mask of the remaining bits for the count value
52};
53
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054BpBinder::ObjectManager::ObjectManager()
55{
56}
57
58BpBinder::ObjectManager::~ObjectManager()
59{
60 kill();
61}
62
63void BpBinder::ObjectManager::attach(
64 const void* objectID, void* object, void* cleanupCookie,
65 IBinder::object_cleanup_func func)
66{
67 entry_t e;
68 e.object = object;
69 e.cleanupCookie = cleanupCookie;
70 e.func = func;
71
72 if (mObjects.indexOfKey(objectID) >= 0) {
Steve Blocke6f43dd2012-01-06 19:20:56 +000073 ALOGE("Trying to attach object ID %p to binder ObjectManager %p with object %p, but object ID already in use",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080074 objectID, this, object);
75 return;
76 }
77
78 mObjects.add(objectID, e);
79}
80
81void* BpBinder::ObjectManager::find(const void* objectID) const
82{
83 const ssize_t i = mObjects.indexOfKey(objectID);
Yi Kongfdd8da92018-06-07 17:52:27 -070084 if (i < 0) return nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080085 return mObjects.valueAt(i).object;
86}
87
88void BpBinder::ObjectManager::detach(const void* objectID)
89{
90 mObjects.removeItem(objectID);
91}
92
93void BpBinder::ObjectManager::kill()
94{
95 const size_t N = mObjects.size();
Mark Salyzynd4ecccf2014-05-30 16:35:57 -070096 ALOGV("Killing %zu objects in manager %p", N, this);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080097 for (size_t i=0; i<N; i++) {
98 const entry_t& e = mObjects.valueAt(i);
Yi Kongfdd8da92018-06-07 17:52:27 -070099 if (e.func != nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800100 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie);
101 }
102 }
103
104 mObjects.clear();
105}
106
107// ---------------------------------------------------------------------------
108
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700109
110BpBinder* BpBinder::create(int32_t handle) {
111 int32_t trackedUid = -1;
112 if (sCountByUidEnabled) {
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700113 trackedUid = IPCThreadState::self()->getCallingUid();
114 AutoMutex _l(sTrackingLock);
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -0700115 uint32_t trackedValue = sTrackingMap[trackedUid];
116 if (CC_UNLIKELY(trackedValue & LIMIT_REACHED_MASK)) {
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700117 if (sBinderProxyThrottleCreate) {
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -0700118 return nullptr;
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700119 }
120 } else {
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -0700121 if ((trackedValue & COUNTING_VALUE_MASK) >= sBinderProxyCountHighWatermark) {
122 ALOGE("Too many binder proxy objects sent to uid %d from uid %d (%d proxies held)",
123 getuid(), trackedUid, trackedValue);
124 sTrackingMap[trackedUid] |= LIMIT_REACHED_MASK;
125 if (sLimitCallback) sLimitCallback(trackedUid);
126 if (sBinderProxyThrottleCreate) {
127 ALOGI("Throttling binder proxy creates from uid %d in uid %d until binder proxy"
128 " count drops below %d",
129 trackedUid, getuid(), sBinderProxyCountLowWatermark);
130 return nullptr;
131 }
132 }
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700133 }
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -0700134 sTrackingMap[trackedUid]++;
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700135 }
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -0700136 return new BpBinder(handle, trackedUid);
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700137}
138
139BpBinder::BpBinder(int32_t handle, int32_t trackedUid)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800140 : mHandle(handle)
141 , mAlive(1)
142 , mObitsSent(0)
Yi Kongfdd8da92018-06-07 17:52:27 -0700143 , mObituaries(nullptr)
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700144 , mTrackedUid(trackedUid)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800145{
Steve Block6807e592011-10-20 11:56:00 +0100146 ALOGV("Creating BpBinder %p handle %d\n", this, mHandle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800147
148 extendObjectLifetime(OBJECT_LIFETIME_WEAK);
Martijn Coenen7c170bb2018-05-04 17:28:55 -0700149 IPCThreadState::self()->incWeakHandle(handle, this);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800150}
151
Steven Moreland85180c02019-07-16 14:24:20 -0700152int32_t BpBinder::handle() const {
153 return mHandle;
154}
155
Mathias Agopian83c04462009-05-22 19:00:22 -0700156bool BpBinder::isDescriptorCached() const {
157 Mutex::Autolock _l(mLock);
158 return mDescriptorCache.size() ? true : false;
159}
160
161const String16& BpBinder::getInterfaceDescriptor() const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800162{
Mathias Agopian83c04462009-05-22 19:00:22 -0700163 if (isDescriptorCached() == false) {
164 Parcel send, reply;
165 // do the IPC without a lock held.
166 status_t err = const_cast<BpBinder*>(this)->transact(
167 INTERFACE_TRANSACTION, send, &reply);
168 if (err == NO_ERROR) {
169 String16 res(reply.readString16());
170 Mutex::Autolock _l(mLock);
171 // mDescriptorCache could have been assigned while the lock was
172 // released.
173 if (mDescriptorCache.size() == 0)
174 mDescriptorCache = res;
175 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800176 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700177
Mathias Agopian83c04462009-05-22 19:00:22 -0700178 // we're returning a reference to a non-static object here. Usually this
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700179 // is not something smart to do, however, with binder objects it is
Mathias Agopian83c04462009-05-22 19:00:22 -0700180 // (usually) safe because they are reference-counted.
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700181
Mathias Agopian83c04462009-05-22 19:00:22 -0700182 return mDescriptorCache;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800183}
184
185bool BpBinder::isBinderAlive() const
186{
187 return mAlive != 0;
188}
189
190status_t BpBinder::pingBinder()
191{
192 Parcel send;
193 Parcel reply;
Steven Moreland6e69d652019-07-10 14:17:55 -0700194 return transact(PING_TRANSACTION, send, &reply);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800195}
196
197status_t BpBinder::dump(int fd, const Vector<String16>& args)
198{
199 Parcel send;
200 Parcel reply;
201 send.writeFileDescriptor(fd);
202 const size_t numArgs = args.size();
203 send.writeInt32(numArgs);
204 for (size_t i = 0; i < numArgs; i++) {
205 send.writeString16(args[i]);
206 }
207 status_t err = transact(DUMP_TRANSACTION, send, &reply);
208 return err;
209}
210
Jiyong Parkb86c8662018-10-29 23:01:57 +0900211// NOLINTNEXTLINE(google-default-arguments)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800212status_t BpBinder::transact(
213 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
214{
215 // Once a binder has died, it will never come back to life.
216 if (mAlive) {
Steven Moreland46b5fea2019-10-15 11:22:18 -0700217 bool privateVendor = flags & FLAG_PRIVATE_VENDOR;
218 // don't send userspace flags to the kernel
219 flags = flags & ~FLAG_PRIVATE_VENDOR;
220
Steven Moreland6e5a7752019-08-05 20:30:14 -0700221 // user transactions require a given stability level
222 if (code >= FIRST_CALL_TRANSACTION && code <= LAST_CALL_TRANSACTION) {
223 using android::internal::Stability;
224
225 auto stability = Stability::get(this);
Steven Moreland46b5fea2019-10-15 11:22:18 -0700226 auto required = privateVendor ? Stability::VENDOR : Stability::kLocalStability;
Steven Moreland6e5a7752019-08-05 20:30:14 -0700227
Steven Moreland46b5fea2019-10-15 11:22:18 -0700228 if (CC_UNLIKELY(!Stability::check(stability, required))) {
Steven Moreland86a17f82019-09-10 10:18:00 -0700229 ALOGE("Cannot do a user transaction on a %s binder in a %s context.",
230 Stability::stabilityString(stability).c_str(),
Steven Moreland46b5fea2019-10-15 11:22:18 -0700231 Stability::stabilityString(required).c_str());
Steven Moreland6e5a7752019-08-05 20:30:14 -0700232 return BAD_TYPE;
233 }
234 }
235
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800236 status_t status = IPCThreadState::self()->transact(
237 mHandle, code, data, reply, flags);
238 if (status == DEAD_OBJECT) mAlive = 0;
Steven Morelanda86a3562019-08-01 23:28:34 +0000239
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800240 return status;
241 }
242
243 return DEAD_OBJECT;
244}
245
Jiyong Parkb86c8662018-10-29 23:01:57 +0900246// NOLINTNEXTLINE(google-default-arguments)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800247status_t BpBinder::linkToDeath(
248 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
249{
250 Obituary ob;
251 ob.recipient = recipient;
252 ob.cookie = cookie;
253 ob.flags = flags;
254
Yi Kongfdd8da92018-06-07 17:52:27 -0700255 LOG_ALWAYS_FATAL_IF(recipient == nullptr,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800256 "linkToDeath(): recipient must be non-NULL");
257
258 {
259 AutoMutex _l(mLock);
260
261 if (!mObitsSent) {
262 if (!mObituaries) {
263 mObituaries = new Vector<Obituary>;
264 if (!mObituaries) {
265 return NO_MEMORY;
266 }
Steve Block6807e592011-10-20 11:56:00 +0100267 ALOGV("Requesting death notification: %p handle %d\n", this, mHandle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800268 getWeakRefs()->incWeak(this);
269 IPCThreadState* self = IPCThreadState::self();
270 self->requestDeathNotification(mHandle, this);
271 self->flushCommands();
272 }
273 ssize_t res = mObituaries->add(ob);
274 return res >= (ssize_t)NO_ERROR ? (status_t)NO_ERROR : res;
275 }
276 }
277
278 return DEAD_OBJECT;
279}
280
Jiyong Parkb86c8662018-10-29 23:01:57 +0900281// NOLINTNEXTLINE(google-default-arguments)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800282status_t BpBinder::unlinkToDeath(
283 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
284 wp<DeathRecipient>* outRecipient)
285{
286 AutoMutex _l(mLock);
287
288 if (mObitsSent) {
289 return DEAD_OBJECT;
290 }
291
292 const size_t N = mObituaries ? mObituaries->size() : 0;
293 for (size_t i=0; i<N; i++) {
294 const Obituary& obit = mObituaries->itemAt(i);
295 if ((obit.recipient == recipient
Yi Kongfdd8da92018-06-07 17:52:27 -0700296 || (recipient == nullptr && obit.cookie == cookie))
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800297 && obit.flags == flags) {
Yi Kongfdd8da92018-06-07 17:52:27 -0700298 if (outRecipient != nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800299 *outRecipient = mObituaries->itemAt(i).recipient;
300 }
301 mObituaries->removeAt(i);
302 if (mObituaries->size() == 0) {
Steve Block6807e592011-10-20 11:56:00 +0100303 ALOGV("Clearing death notification: %p handle %d\n", this, mHandle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800304 IPCThreadState* self = IPCThreadState::self();
305 self->clearDeathNotification(mHandle, this);
306 self->flushCommands();
307 delete mObituaries;
Yi Kongfdd8da92018-06-07 17:52:27 -0700308 mObituaries = nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800309 }
310 return NO_ERROR;
311 }
312 }
313
314 return NAME_NOT_FOUND;
315}
316
317void BpBinder::sendObituary()
318{
Steve Block6807e592011-10-20 11:56:00 +0100319 ALOGV("Sending obituary for proxy %p handle %d, mObitsSent=%s\n",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800320 this, mHandle, mObitsSent ? "true" : "false");
321
322 mAlive = 0;
323 if (mObitsSent) return;
324
325 mLock.lock();
326 Vector<Obituary>* obits = mObituaries;
Yi Kongfdd8da92018-06-07 17:52:27 -0700327 if(obits != nullptr) {
Steve Block6807e592011-10-20 11:56:00 +0100328 ALOGV("Clearing sent death notification: %p handle %d\n", this, mHandle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800329 IPCThreadState* self = IPCThreadState::self();
330 self->clearDeathNotification(mHandle, this);
331 self->flushCommands();
Yi Kongfdd8da92018-06-07 17:52:27 -0700332 mObituaries = nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800333 }
334 mObitsSent = 1;
335 mLock.unlock();
336
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700337 ALOGV("Reporting death of proxy %p for %zu recipients\n",
338 this, obits ? obits->size() : 0U);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800339
Yi Kongfdd8da92018-06-07 17:52:27 -0700340 if (obits != nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800341 const size_t N = obits->size();
342 for (size_t i=0; i<N; i++) {
343 reportOneDeath(obits->itemAt(i));
344 }
345
346 delete obits;
347 }
348}
349
350void BpBinder::reportOneDeath(const Obituary& obit)
351{
352 sp<DeathRecipient> recipient = obit.recipient.promote();
Steve Block6807e592011-10-20 11:56:00 +0100353 ALOGV("Reporting death to recipient: %p\n", recipient.get());
Yi Kongfdd8da92018-06-07 17:52:27 -0700354 if (recipient == nullptr) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800355
356 recipient->binderDied(this);
357}
358
359
360void BpBinder::attachObject(
361 const void* objectID, void* object, void* cleanupCookie,
362 object_cleanup_func func)
363{
364 AutoMutex _l(mLock);
Steve Block6807e592011-10-20 11:56:00 +0100365 ALOGV("Attaching object %p to binder %p (manager=%p)", object, this, &mObjects);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800366 mObjects.attach(objectID, object, cleanupCookie, func);
367}
368
369void* BpBinder::findObject(const void* objectID) const
370{
371 AutoMutex _l(mLock);
372 return mObjects.find(objectID);
373}
374
375void BpBinder::detachObject(const void* objectID)
376{
377 AutoMutex _l(mLock);
378 mObjects.detach(objectID);
379}
380
381BpBinder* BpBinder::remoteBinder()
382{
383 return this;
384}
385
386BpBinder::~BpBinder()
387{
Steve Block6807e592011-10-20 11:56:00 +0100388 ALOGV("Destroying BpBinder %p handle %d\n", this, mHandle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800389
390 IPCThreadState* ipc = IPCThreadState::self();
391
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700392 if (mTrackedUid >= 0) {
393 AutoMutex _l(sTrackingLock);
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -0700394 uint32_t trackedValue = sTrackingMap[mTrackedUid];
395 if (CC_UNLIKELY((trackedValue & COUNTING_VALUE_MASK) == 0)) {
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700396 ALOGE("Unexpected Binder Proxy tracking decrement in %p handle %d\n", this, mHandle);
397 } else {
398 if (CC_UNLIKELY(
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -0700399 (trackedValue & LIMIT_REACHED_MASK) &&
400 ((trackedValue & COUNTING_VALUE_MASK) <= sBinderProxyCountLowWatermark)
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700401 )) {
Michael Wachenschwanz74d967a2018-05-15 15:03:57 -0700402 ALOGI("Limit reached bit reset for uid %d (fewer than %d proxies from uid %d held)",
403 getuid(), mTrackedUid, sBinderProxyCountLowWatermark);
404 sTrackingMap[mTrackedUid] &= ~LIMIT_REACHED_MASK;
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700405 }
406 if (--sTrackingMap[mTrackedUid] == 0) {
407 sTrackingMap.erase(mTrackedUid);
408 }
409 }
410 }
411
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800412 if (ipc) {
413 ipc->expungeHandle(mHandle, this);
414 ipc->decWeakHandle(mHandle);
415 }
416}
417
418void BpBinder::onFirstRef()
419{
Steve Block6807e592011-10-20 11:56:00 +0100420 ALOGV("onFirstRef BpBinder %p handle %d\n", this, mHandle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800421 IPCThreadState* ipc = IPCThreadState::self();
Martijn Coenen7c170bb2018-05-04 17:28:55 -0700422 if (ipc) ipc->incStrongHandle(mHandle, this);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800423}
424
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800425void BpBinder::onLastStrongRef(const void* /*id*/)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800426{
Steve Block6807e592011-10-20 11:56:00 +0100427 ALOGV("onLastStrongRef BpBinder %p handle %d\n", this, mHandle);
428 IF_ALOGV() {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800429 printRefs();
430 }
431 IPCThreadState* ipc = IPCThreadState::self();
432 if (ipc) ipc->decStrongHandle(mHandle);
Steven Moreland80d23932019-06-07 12:43:27 -0700433
434 mLock.lock();
435 Vector<Obituary>* obits = mObituaries;
436 if(obits != nullptr) {
437 if (!obits->isEmpty()) {
438 ALOGI("onLastStrongRef automatically unlinking death recipients");
439 }
440
441 if (ipc) ipc->clearDeathNotification(mHandle, this);
442 mObituaries = nullptr;
443 }
444 mLock.unlock();
445
446 if (obits != nullptr) {
447 // XXX Should we tell any remaining DeathRecipient
448 // objects that the last strong ref has gone away, so they
449 // are no longer linked?
450 delete obits;
451 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800452}
453
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800454bool BpBinder::onIncStrongAttempted(uint32_t /*flags*/, const void* /*id*/)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800455{
Steve Block6807e592011-10-20 11:56:00 +0100456 ALOGV("onIncStrongAttempted BpBinder %p handle %d\n", this, mHandle);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800457 IPCThreadState* ipc = IPCThreadState::self();
458 return ipc ? ipc->attemptIncStrongHandle(mHandle) == NO_ERROR : false;
459}
460
Michael Wachenschwanzd296d0c2017-08-15 00:57:14 -0700461uint32_t BpBinder::getBinderProxyCount(uint32_t uid)
462{
463 AutoMutex _l(sTrackingLock);
464 auto it = sTrackingMap.find(uid);
465 if (it != sTrackingMap.end()) {
466 return it->second & COUNTING_VALUE_MASK;
467 }
468 return 0;
469}
470
471void BpBinder::getCountByUid(Vector<uint32_t>& uids, Vector<uint32_t>& counts)
472{
473 AutoMutex _l(sTrackingLock);
474 uids.setCapacity(sTrackingMap.size());
475 counts.setCapacity(sTrackingMap.size());
476 for (const auto& it : sTrackingMap) {
477 uids.push_back(it.first);
478 counts.push_back(it.second & COUNTING_VALUE_MASK);
479 }
480}
481
482void BpBinder::enableCountByUid() { sCountByUidEnabled.store(true); }
483void BpBinder::disableCountByUid() { sCountByUidEnabled.store(false); }
484void BpBinder::setCountByUidEnabled(bool enable) { sCountByUidEnabled.store(enable); }
485
486void BpBinder::setLimitCallback(binder_proxy_limit_callback cb) {
487 AutoMutex _l(sTrackingLock);
488 sLimitCallback = cb;
489}
490
491void BpBinder::setBinderProxyCountWatermarks(int high, int low) {
492 AutoMutex _l(sTrackingLock);
493 sBinderProxyCountHighWatermark = high;
494 sBinderProxyCountLowWatermark = low;
495}
496
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800497// ---------------------------------------------------------------------------
498
Steven Moreland61ff8492019-09-26 16:05:45 -0700499} // namespace android