blob: 307bc28c0e71ffac69786463a9e1b2b34c4f330e [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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 "IMemory"
18
Hans Boehm7e202972016-07-12 18:05:49 -070019#include <atomic>
Mathias Agopiane9e9fe42017-02-28 16:25:16 -080020#include <stdatomic.h>
21
Mark Salyzyna5e161b2016-09-29 08:08:05 -070022#include <fcntl.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080023#include <stdint.h>
24#include <stdio.h>
25#include <stdlib.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080026#include <sys/types.h>
27#include <sys/mman.h>
Mark Salyzyna5e161b2016-09-29 08:08:05 -070028#include <unistd.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080029
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070030#include <binder/IMemory.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070031#include <binder/Parcel.h>
Mark Salyzyn7823e122016-09-29 08:08:05 -070032#include <log/log.h>
Mathias Agopiane9e9fe42017-02-28 16:25:16 -080033
Mark Salyzyna5e161b2016-09-29 08:08:05 -070034#include <utils/KeyedVector.h>
35#include <utils/threads.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036
37#define VERBOSE 0
38
39namespace android {
40// ---------------------------------------------------------------------------
41
42class HeapCache : public IBinder::DeathRecipient
43{
44public:
45 HeapCache();
46 virtual ~HeapCache();
Anu Sundararajan5728a922011-06-22 15:58:59 -050047
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048 virtual void binderDied(const wp<IBinder>& who);
49
Anu Sundararajan5728a922011-06-22 15:58:59 -050050 sp<IMemoryHeap> find_heap(const sp<IBinder>& binder);
51 void free_heap(const sp<IBinder>& binder);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080052 sp<IMemoryHeap> get_heap(const sp<IBinder>& binder);
53 void dump_heaps();
54
55private:
56 // For IMemory.cpp
57 struct heap_info_t {
58 sp<IMemoryHeap> heap;
59 int32_t count;
Hans Boehm7e202972016-07-12 18:05:49 -070060 // Note that this cannot be meaningfully copied.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080061 };
62
Anu Sundararajan5728a922011-06-22 15:58:59 -050063 void free_heap(const wp<IBinder>& binder);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080064
Hans Boehm7e202972016-07-12 18:05:49 -070065 Mutex mHeapCacheLock; // Protects entire vector below.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080066 KeyedVector< wp<IBinder>, heap_info_t > mHeapCache;
Hans Boehm7e202972016-07-12 18:05:49 -070067 // We do not use the copy-on-write capabilities of KeyedVector.
68 // TODO: Reimplemement based on standard C++ container?
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080069};
70
71static sp<HeapCache> gHeapCache = new HeapCache();
72
73/******************************************************************************/
74
75enum {
76 HEAP_ID = IBinder::FIRST_CALL_TRANSACTION
77};
78
79class BpMemoryHeap : public BpInterface<IMemoryHeap>
80{
81public:
Chih-Hung Hsiehe2347b72016-04-25 15:41:05 -070082 explicit BpMemoryHeap(const sp<IBinder>& impl);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080083 virtual ~BpMemoryHeap();
84
85 virtual int getHeapID() const;
86 virtual void* getBase() const;
87 virtual size_t getSize() const;
88 virtual uint32_t getFlags() const;
Anu Sundararajan5728a922011-06-22 15:58:59 -050089 virtual uint32_t getOffset() const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080090
91private:
92 friend class IMemory;
93 friend class HeapCache;
Anu Sundararajan5728a922011-06-22 15:58:59 -050094
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080095 // for debugging in this module
96 static inline sp<IMemoryHeap> find_heap(const sp<IBinder>& binder) {
97 return gHeapCache->find_heap(binder);
98 }
99 static inline void free_heap(const sp<IBinder>& binder) {
100 gHeapCache->free_heap(binder);
101 }
102 static inline sp<IMemoryHeap> get_heap(const sp<IBinder>& binder) {
103 return gHeapCache->get_heap(binder);
104 }
105 static inline void dump_heaps() {
Anu Sundararajan5728a922011-06-22 15:58:59 -0500106 gHeapCache->dump_heaps();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800107 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800108
109 void assertMapped() const;
110 void assertReallyMapped() const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800111
Hans Boehm7e202972016-07-12 18:05:49 -0700112 mutable std::atomic<int32_t> mHeapId;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800113 mutable void* mBase;
114 mutable size_t mSize;
115 mutable uint32_t mFlags;
Anu Sundararajan5728a922011-06-22 15:58:59 -0500116 mutable uint32_t mOffset;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800117 mutable bool mRealHeap;
118 mutable Mutex mLock;
119};
120
121// ----------------------------------------------------------------------------
122
123enum {
124 GET_MEMORY = IBinder::FIRST_CALL_TRANSACTION
125};
126
127class BpMemory : public BpInterface<IMemory>
128{
129public:
Chih-Hung Hsiehe2347b72016-04-25 15:41:05 -0700130 explicit BpMemory(const sp<IBinder>& impl);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800131 virtual ~BpMemory();
Jiyong Parkb86c8662018-10-29 23:01:57 +0900132 // NOLINTNEXTLINE(google-default-arguments)
Yi Kongfdd8da92018-06-07 17:52:27 -0700133 virtual sp<IMemoryHeap> getMemory(ssize_t* offset=nullptr, size_t* size=nullptr) const;
Anu Sundararajan5728a922011-06-22 15:58:59 -0500134
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800135private:
136 mutable sp<IMemoryHeap> mHeap;
137 mutable ssize_t mOffset;
138 mutable size_t mSize;
139};
140
141/******************************************************************************/
142
143void* IMemory::fastPointer(const sp<IBinder>& binder, ssize_t offset) const
144{
145 sp<IMemoryHeap> realHeap = BpMemoryHeap::get_heap(binder);
146 void* const base = realHeap->base();
147 if (base == MAP_FAILED)
Yi Kongfdd8da92018-06-07 17:52:27 -0700148 return nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800149 return static_cast<char*>(base) + offset;
150}
151
152void* IMemory::pointer() const {
153 ssize_t offset;
154 sp<IMemoryHeap> heap = getMemory(&offset);
Yi Kongfdd8da92018-06-07 17:52:27 -0700155 void* const base = heap!=nullptr ? heap->base() : MAP_FAILED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800156 if (base == MAP_FAILED)
Yi Kongfdd8da92018-06-07 17:52:27 -0700157 return nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800158 return static_cast<char*>(base) + offset;
159}
160
161size_t IMemory::size() const {
162 size_t size;
Yi Kongfdd8da92018-06-07 17:52:27 -0700163 getMemory(nullptr, &size);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800164 return size;
165}
166
167ssize_t IMemory::offset() const {
168 ssize_t offset;
169 getMemory(&offset);
170 return offset;
171}
172
173/******************************************************************************/
174
175BpMemory::BpMemory(const sp<IBinder>& impl)
176 : BpInterface<IMemory>(impl), mOffset(0), mSize(0)
177{
178}
179
180BpMemory::~BpMemory()
181{
182}
183
Jiyong Parkb86c8662018-10-29 23:01:57 +0900184// NOLINTNEXTLINE(google-default-arguments)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800185sp<IMemoryHeap> BpMemory::getMemory(ssize_t* offset, size_t* size) const
186{
Yi Kongfdd8da92018-06-07 17:52:27 -0700187 if (mHeap == nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800188 Parcel data, reply;
189 data.writeInterfaceToken(IMemory::getInterfaceDescriptor());
190 if (remote()->transact(GET_MEMORY, data, &reply) == NO_ERROR) {
191 sp<IBinder> heap = reply.readStrongBinder();
192 ssize_t o = reply.readInt32();
193 size_t s = reply.readInt32();
Yi Kongfdd8da92018-06-07 17:52:27 -0700194 if (heap != nullptr) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800195 mHeap = interface_cast<IMemoryHeap>(heap);
Yi Kongfdd8da92018-06-07 17:52:27 -0700196 if (mHeap != nullptr) {
Christopher Tate94b0d4e2016-02-05 19:02:56 -0800197 size_t heapSize = mHeap->getSize();
198 if (s <= heapSize
199 && o >= 0
200 && (static_cast<size_t>(o) <= heapSize - s)) {
201 mOffset = o;
202 mSize = s;
203 } else {
204 // Hm.
205 android_errorWriteWithInfoLog(0x534e4554,
Yi Kongfdd8da92018-06-07 17:52:27 -0700206 "26877992", -1, nullptr, 0);
Christopher Tate94b0d4e2016-02-05 19:02:56 -0800207 mOffset = 0;
208 mSize = 0;
209 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800210 }
211 }
212 }
213 }
214 if (offset) *offset = mOffset;
215 if (size) *size = mSize;
Yi Kongfdd8da92018-06-07 17:52:27 -0700216 return (mSize > 0) ? mHeap : nullptr;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800217}
218
219// ---------------------------------------------------------------------------
220
221IMPLEMENT_META_INTERFACE(Memory, "android.utils.IMemory");
222
Mathias Agopian83c04462009-05-22 19:00:22 -0700223BnMemory::BnMemory() {
224}
225
Anu Sundararajan5728a922011-06-22 15:58:59 -0500226BnMemory::~BnMemory() {
Mathias Agopian83c04462009-05-22 19:00:22 -0700227}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800228
Jiyong Parkb86c8662018-10-29 23:01:57 +0900229// NOLINTNEXTLINE(google-default-arguments)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800230status_t BnMemory::onTransact(
231 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
232{
233 switch(code) {
234 case GET_MEMORY: {
235 CHECK_INTERFACE(IMemory, data, reply);
236 ssize_t offset;
237 size_t size;
Marco Nelissen097ca272014-11-14 08:01:01 -0800238 reply->writeStrongBinder( IInterface::asBinder(getMemory(&offset, &size)) );
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800239 reply->writeInt32(offset);
240 reply->writeInt32(size);
241 return NO_ERROR;
242 } break;
243 default:
244 return BBinder::onTransact(code, data, reply, flags);
245 }
246}
247
248
249/******************************************************************************/
250
251BpMemoryHeap::BpMemoryHeap(const sp<IBinder>& impl)
252 : BpInterface<IMemoryHeap>(impl),
Anu Sundararajan5728a922011-06-22 15:58:59 -0500253 mHeapId(-1), mBase(MAP_FAILED), mSize(0), mFlags(0), mOffset(0), mRealHeap(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800254{
255}
256
257BpMemoryHeap::~BpMemoryHeap() {
Hans Boehm7e202972016-07-12 18:05:49 -0700258 int32_t heapId = mHeapId.load(memory_order_relaxed);
259 if (heapId != -1) {
260 close(heapId);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800261 if (mRealHeap) {
262 // by construction we're the last one
263 if (mBase != MAP_FAILED) {
Marco Nelissen097ca272014-11-14 08:01:01 -0800264 sp<IBinder> binder = IInterface::asBinder(this);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800265
266 if (VERBOSE) {
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800267 ALOGD("UNMAPPING binder=%p, heap=%p, size=%zu, fd=%d",
Hans Boehm7e202972016-07-12 18:05:49 -0700268 binder.get(), this, mSize, heapId);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800269 }
270
271 munmap(mBase, mSize);
272 }
273 } else {
274 // remove from list only if it was mapped before
Marco Nelissen097ca272014-11-14 08:01:01 -0800275 sp<IBinder> binder = IInterface::asBinder(this);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800276 free_heap(binder);
277 }
278 }
279}
280
281void BpMemoryHeap::assertMapped() const
282{
Hans Boehm7e202972016-07-12 18:05:49 -0700283 int32_t heapId = mHeapId.load(memory_order_acquire);
284 if (heapId == -1) {
Marco Nelissen097ca272014-11-14 08:01:01 -0800285 sp<IBinder> binder(IInterface::asBinder(const_cast<BpMemoryHeap*>(this)));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800286 sp<BpMemoryHeap> heap(static_cast<BpMemoryHeap*>(find_heap(binder).get()));
287 heap->assertReallyMapped();
288 if (heap->mBase != MAP_FAILED) {
289 Mutex::Autolock _l(mLock);
Hans Boehm7e202972016-07-12 18:05:49 -0700290 if (mHeapId.load(memory_order_relaxed) == -1) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800291 mBase = heap->mBase;
292 mSize = heap->mSize;
Anu Sundararajan5728a922011-06-22 15:58:59 -0500293 mOffset = heap->mOffset;
Nick Kralevichec9ec7d2016-12-17 19:47:27 -0800294 int fd = fcntl(heap->mHeapId.load(memory_order_relaxed), F_DUPFD_CLOEXEC, 0);
Hans Boehm7e202972016-07-12 18:05:49 -0700295 ALOGE_IF(fd==-1, "cannot dup fd=%d",
296 heap->mHeapId.load(memory_order_relaxed));
297 mHeapId.store(fd, memory_order_release);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800298 }
299 } else {
300 // something went wrong
301 free_heap(binder);
302 }
303 }
304}
305
306void BpMemoryHeap::assertReallyMapped() const
307{
Hans Boehm7e202972016-07-12 18:05:49 -0700308 int32_t heapId = mHeapId.load(memory_order_acquire);
309 if (heapId == -1) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800310
311 // remote call without mLock held, worse case scenario, we end up
312 // calling transact() from multiple threads, but that's not a problem,
313 // only mmap below must be in the critical section.
Anu Sundararajan5728a922011-06-22 15:58:59 -0500314
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800315 Parcel data, reply;
316 data.writeInterfaceToken(IMemoryHeap::getInterfaceDescriptor());
317 status_t err = remote()->transact(HEAP_ID, data, &reply);
318 int parcel_fd = reply.readFileDescriptor();
319 ssize_t size = reply.readInt32();
320 uint32_t flags = reply.readInt32();
Anu Sundararajan5728a922011-06-22 15:58:59 -0500321 uint32_t offset = reply.readInt32();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800322
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800323 ALOGE_IF(err, "binder=%p transaction failed fd=%d, size=%zd, err=%d (%s)",
Marco Nelissen097ca272014-11-14 08:01:01 -0800324 IInterface::asBinder(this).get(),
325 parcel_fd, size, err, strerror(-err));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800326
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800327 Mutex::Autolock _l(mLock);
Hans Boehm7e202972016-07-12 18:05:49 -0700328 if (mHeapId.load(memory_order_relaxed) == -1) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -0800329 int fd = fcntl(parcel_fd, F_DUPFD_CLOEXEC, 0);
John Eckerdal6b0b0632016-04-21 15:04:14 +0200330 ALOGE_IF(fd==-1, "cannot dup fd=%d, size=%zd, err=%d (%s)",
331 parcel_fd, size, err, strerror(errno));
332
333 int access = PROT_READ;
334 if (!(flags & READ_ONLY)) {
335 access |= PROT_WRITE;
336 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800337 mRealHeap = true;
Yi Kongfdd8da92018-06-07 17:52:27 -0700338 mBase = mmap(nullptr, size, access, MAP_SHARED, fd, offset);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800339 if (mBase == MAP_FAILED) {
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800340 ALOGE("cannot map BpMemoryHeap (binder=%p), size=%zd, fd=%d (%s)",
Marco Nelissen097ca272014-11-14 08:01:01 -0800341 IInterface::asBinder(this).get(), size, fd, strerror(errno));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800342 close(fd);
343 } else {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800344 mSize = size;
345 mFlags = flags;
Anu Sundararajan5728a922011-06-22 15:58:59 -0500346 mOffset = offset;
Hans Boehm7e202972016-07-12 18:05:49 -0700347 mHeapId.store(fd, memory_order_release);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800348 }
349 }
350 }
351}
352
353int BpMemoryHeap::getHeapID() const {
354 assertMapped();
Hans Boehm7e202972016-07-12 18:05:49 -0700355 // We either stored mHeapId ourselves, or loaded it with acquire semantics.
356 return mHeapId.load(memory_order_relaxed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800357}
358
359void* BpMemoryHeap::getBase() const {
360 assertMapped();
361 return mBase;
362}
363
364size_t BpMemoryHeap::getSize() const {
365 assertMapped();
366 return mSize;
367}
368
369uint32_t BpMemoryHeap::getFlags() const {
370 assertMapped();
371 return mFlags;
372}
373
Anu Sundararajan5728a922011-06-22 15:58:59 -0500374uint32_t BpMemoryHeap::getOffset() const {
375 assertMapped();
376 return mOffset;
377}
378
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800379// ---------------------------------------------------------------------------
380
381IMPLEMENT_META_INTERFACE(MemoryHeap, "android.utils.IMemoryHeap");
382
Anu Sundararajan5728a922011-06-22 15:58:59 -0500383BnMemoryHeap::BnMemoryHeap() {
Mathias Agopian83c04462009-05-22 19:00:22 -0700384}
385
Anu Sundararajan5728a922011-06-22 15:58:59 -0500386BnMemoryHeap::~BnMemoryHeap() {
Mathias Agopian83c04462009-05-22 19:00:22 -0700387}
388
Jiyong Parkb86c8662018-10-29 23:01:57 +0900389// NOLINTNEXTLINE(google-default-arguments)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800390status_t BnMemoryHeap::onTransact(
Mathias Agopian83c04462009-05-22 19:00:22 -0700391 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800392{
393 switch(code) {
394 case HEAP_ID: {
395 CHECK_INTERFACE(IMemoryHeap, data, reply);
396 reply->writeFileDescriptor(getHeapID());
397 reply->writeInt32(getSize());
398 reply->writeInt32(getFlags());
Anu Sundararajan5728a922011-06-22 15:58:59 -0500399 reply->writeInt32(getOffset());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800400 return NO_ERROR;
401 } break;
402 default:
403 return BBinder::onTransact(code, data, reply, flags);
404 }
405}
406
407/*****************************************************************************/
408
409HeapCache::HeapCache()
410 : DeathRecipient()
411{
412}
413
414HeapCache::~HeapCache()
415{
416}
417
418void HeapCache::binderDied(const wp<IBinder>& binder)
419{
Steve Block9d453682011-12-20 16:23:08 +0000420 //ALOGD("binderDied binder=%p", binder.unsafe_get());
Anu Sundararajan5728a922011-06-22 15:58:59 -0500421 free_heap(binder);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800422}
423
Anu Sundararajan5728a922011-06-22 15:58:59 -0500424sp<IMemoryHeap> HeapCache::find_heap(const sp<IBinder>& binder)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800425{
426 Mutex::Autolock _l(mHeapCacheLock);
427 ssize_t i = mHeapCache.indexOfKey(binder);
428 if (i>=0) {
429 heap_info_t& info = mHeapCache.editValueAt(i);
Steve Block9d453682011-12-20 16:23:08 +0000430 ALOGD_IF(VERBOSE,
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800431 "found binder=%p, heap=%p, size=%zu, fd=%d, count=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800432 binder.get(), info.heap.get(),
433 static_cast<BpMemoryHeap*>(info.heap.get())->mSize,
Hans Boehm7e202972016-07-12 18:05:49 -0700434 static_cast<BpMemoryHeap*>(info.heap.get())
435 ->mHeapId.load(memory_order_relaxed),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800436 info.count);
Hans Boehm7e202972016-07-12 18:05:49 -0700437 ++info.count;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800438 return info.heap;
439 } else {
440 heap_info_t info;
441 info.heap = interface_cast<IMemoryHeap>(binder);
442 info.count = 1;
Steve Block9d453682011-12-20 16:23:08 +0000443 //ALOGD("adding binder=%p, heap=%p, count=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800444 // binder.get(), info.heap.get(), info.count);
445 mHeapCache.add(binder, info);
446 return info.heap;
447 }
448}
449
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800450void HeapCache::free_heap(const sp<IBinder>& binder) {
451 free_heap( wp<IBinder>(binder) );
452}
453
Anu Sundararajan5728a922011-06-22 15:58:59 -0500454void HeapCache::free_heap(const wp<IBinder>& binder)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800455{
456 sp<IMemoryHeap> rel;
457 {
458 Mutex::Autolock _l(mHeapCacheLock);
459 ssize_t i = mHeapCache.indexOfKey(binder);
460 if (i>=0) {
461 heap_info_t& info(mHeapCache.editValueAt(i));
Hans Boehm7e202972016-07-12 18:05:49 -0700462 if (--info.count == 0) {
Steve Block9d453682011-12-20 16:23:08 +0000463 ALOGD_IF(VERBOSE,
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800464 "removing binder=%p, heap=%p, size=%zu, fd=%d, count=%d",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800465 binder.unsafe_get(), info.heap.get(),
466 static_cast<BpMemoryHeap*>(info.heap.get())->mSize,
Hans Boehm7e202972016-07-12 18:05:49 -0700467 static_cast<BpMemoryHeap*>(info.heap.get())
468 ->mHeapId.load(memory_order_relaxed),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800469 info.count);
470 rel = mHeapCache.valueAt(i).heap;
471 mHeapCache.removeItemsAt(i);
472 }
473 } else {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000474 ALOGE("free_heap binder=%p not found!!!", binder.unsafe_get());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800475 }
476 }
477}
478
479sp<IMemoryHeap> HeapCache::get_heap(const sp<IBinder>& binder)
480{
481 sp<IMemoryHeap> realHeap;
482 Mutex::Autolock _l(mHeapCacheLock);
483 ssize_t i = mHeapCache.indexOfKey(binder);
484 if (i>=0) realHeap = mHeapCache.valueAt(i).heap;
485 else realHeap = interface_cast<IMemoryHeap>(binder);
486 return realHeap;
487}
488
Anu Sundararajan5728a922011-06-22 15:58:59 -0500489void HeapCache::dump_heaps()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800490{
491 Mutex::Autolock _l(mHeapCacheLock);
492 int c = mHeapCache.size();
493 for (int i=0 ; i<c ; i++) {
494 const heap_info_t& info = mHeapCache.valueAt(i);
495 BpMemoryHeap const* h(static_cast<BpMemoryHeap const *>(info.heap.get()));
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800496 ALOGD("hey=%p, heap=%p, count=%d, (fd=%d, base=%p, size=%zu)",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800497 mHeapCache.keyAt(i).unsafe_get(),
Anu Sundararajan5728a922011-06-22 15:58:59 -0500498 info.heap.get(), info.count,
Hans Boehm7e202972016-07-12 18:05:49 -0700499 h->mHeapId.load(memory_order_relaxed), h->mBase, h->mSize);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800500 }
501}
502
503
504// ---------------------------------------------------------------------------
505}; // namespace android