• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 #define LOG_TAG "Parcel"
18 //#define LOG_NDEBUG 0
19 
20 #include <binder/Parcel.h>
21 
22 #include <binder/IPCThreadState.h>
23 #include <binder/Binder.h>
24 #include <binder/BpBinder.h>
25 #include <binder/ProcessState.h>
26 #include <binder/TextOutput.h>
27 
28 #include <errno.h>
29 #include <utils/Debug.h>
30 #include <utils/Log.h>
31 #include <utils/String8.h>
32 #include <utils/String16.h>
33 #include <utils/misc.h>
34 #include <utils/Flattenable.h>
35 #include <cutils/ashmem.h>
36 
37 #include <private/binder/binder_module.h>
38 #include <private/binder/Static.h>
39 
40 #include <inttypes.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <stdint.h>
44 #include <sys/mman.h>
45 
46 #ifndef INT32_MAX
47 #define INT32_MAX ((int32_t)(2147483647))
48 #endif
49 
50 #define LOG_REFS(...)
51 //#define LOG_REFS(...) ALOG(LOG_DEBUG, "Parcel", __VA_ARGS__)
52 #define LOG_ALLOC(...)
53 //#define LOG_ALLOC(...) ALOG(LOG_DEBUG, "Parcel", __VA_ARGS__)
54 
55 // ---------------------------------------------------------------------------
56 
57 // This macro should never be used at runtime, as a too large value
58 // of s could cause an integer overflow. Instead, you should always
59 // use the wrapper function pad_size()
60 #define PAD_SIZE_UNSAFE(s) (((s)+3)&~3)
61 
pad_size(size_t s)62 static size_t pad_size(size_t s) {
63     if (s > (SIZE_T_MAX - 3)) {
64         abort();
65     }
66     return PAD_SIZE_UNSAFE(s);
67 }
68 
69 // Note: must be kept in sync with android/os/StrictMode.java's PENALTY_GATHER
70 #define STRICT_MODE_PENALTY_GATHER (0x40 << 16)
71 
72 // Note: must be kept in sync with android/os/Parcel.java's EX_HAS_REPLY_HEADER
73 #define EX_HAS_REPLY_HEADER -128
74 
75 // XXX This can be made public if we want to provide
76 // support for typed data.
77 struct small_flat_data
78 {
79     uint32_t type;
80     uint32_t data;
81 };
82 
83 namespace android {
84 
85 static pthread_mutex_t gParcelGlobalAllocSizeLock = PTHREAD_MUTEX_INITIALIZER;
86 static size_t gParcelGlobalAllocSize = 0;
87 static size_t gParcelGlobalAllocCount = 0;
88 
89 // Maximum size of a blob to transfer in-place.
90 static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
91 
92 enum {
93     BLOB_INPLACE = 0,
94     BLOB_ASHMEM_IMMUTABLE = 1,
95     BLOB_ASHMEM_MUTABLE = 2,
96 };
97 
acquire_object(const sp<ProcessState> & proc,const flat_binder_object & obj,const void * who,size_t * outAshmemSize)98 void acquire_object(const sp<ProcessState>& proc,
99     const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
100 {
101     switch (obj.type) {
102         case BINDER_TYPE_BINDER:
103             if (obj.binder) {
104                 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
105                 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
106             }
107             return;
108         case BINDER_TYPE_WEAK_BINDER:
109             if (obj.binder)
110                 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
111             return;
112         case BINDER_TYPE_HANDLE: {
113             const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
114             if (b != NULL) {
115                 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
116                 b->incStrong(who);
117             }
118             return;
119         }
120         case BINDER_TYPE_WEAK_HANDLE: {
121             const wp<IBinder> b = proc->getWeakProxyForHandle(obj.handle);
122             if (b != NULL) b.get_refs()->incWeak(who);
123             return;
124         }
125         case BINDER_TYPE_FD: {
126             if (obj.cookie != 0) {
127                 if (outAshmemSize != NULL) {
128                     // If we own an ashmem fd, keep track of how much memory it refers to.
129                     int size = ashmem_get_size_region(obj.handle);
130                     if (size > 0) {
131                         *outAshmemSize += size;
132                     }
133                 }
134             }
135             return;
136         }
137     }
138 
139     ALOGD("Invalid object type 0x%08x", obj.type);
140 }
141 
acquire_object(const sp<ProcessState> & proc,const flat_binder_object & obj,const void * who)142 void acquire_object(const sp<ProcessState>& proc,
143     const flat_binder_object& obj, const void* who)
144 {
145     acquire_object(proc, obj, who, NULL);
146 }
147 
release_object(const sp<ProcessState> & proc,const flat_binder_object & obj,const void * who,size_t * outAshmemSize)148 static void release_object(const sp<ProcessState>& proc,
149     const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
150 {
151     switch (obj.type) {
152         case BINDER_TYPE_BINDER:
153             if (obj.binder) {
154                 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
155                 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who);
156             }
157             return;
158         case BINDER_TYPE_WEAK_BINDER:
159             if (obj.binder)
160                 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->decWeak(who);
161             return;
162         case BINDER_TYPE_HANDLE: {
163             const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
164             if (b != NULL) {
165                 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
166                 b->decStrong(who);
167             }
168             return;
169         }
170         case BINDER_TYPE_WEAK_HANDLE: {
171             const wp<IBinder> b = proc->getWeakProxyForHandle(obj.handle);
172             if (b != NULL) b.get_refs()->decWeak(who);
173             return;
174         }
175         case BINDER_TYPE_FD: {
176             if (outAshmemSize != NULL) {
177                 if (obj.cookie != 0) {
178                     int size = ashmem_get_size_region(obj.handle);
179                     if (size > 0) {
180                         *outAshmemSize -= size;
181                     }
182 
183                     close(obj.handle);
184                 }
185             }
186             return;
187         }
188     }
189 
190     ALOGE("Invalid object type 0x%08x", obj.type);
191 }
192 
release_object(const sp<ProcessState> & proc,const flat_binder_object & obj,const void * who)193 void release_object(const sp<ProcessState>& proc,
194     const flat_binder_object& obj, const void* who)
195 {
196     release_object(proc, obj, who, NULL);
197 }
198 
finish_flatten_binder(const sp<IBinder> &,const flat_binder_object & flat,Parcel * out)199 inline static status_t finish_flatten_binder(
200     const sp<IBinder>& /*binder*/, const flat_binder_object& flat, Parcel* out)
201 {
202     return out->writeObject(flat, false);
203 }
204 
flatten_binder(const sp<ProcessState> &,const sp<IBinder> & binder,Parcel * out)205 status_t flatten_binder(const sp<ProcessState>& /*proc*/,
206     const sp<IBinder>& binder, Parcel* out)
207 {
208     flat_binder_object obj;
209 
210     obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
211     if (binder != NULL) {
212         IBinder *local = binder->localBinder();
213         if (!local) {
214             BpBinder *proxy = binder->remoteBinder();
215             if (proxy == NULL) {
216                 ALOGE("null proxy");
217             }
218             const int32_t handle = proxy ? proxy->handle() : 0;
219             obj.type = BINDER_TYPE_HANDLE;
220             obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
221             obj.handle = handle;
222             obj.cookie = 0;
223         } else {
224             obj.type = BINDER_TYPE_BINDER;
225             obj.binder = reinterpret_cast<uintptr_t>(local->getWeakRefs());
226             obj.cookie = reinterpret_cast<uintptr_t>(local);
227         }
228     } else {
229         obj.type = BINDER_TYPE_BINDER;
230         obj.binder = 0;
231         obj.cookie = 0;
232     }
233 
234     return finish_flatten_binder(binder, obj, out);
235 }
236 
flatten_binder(const sp<ProcessState> &,const wp<IBinder> & binder,Parcel * out)237 status_t flatten_binder(const sp<ProcessState>& /*proc*/,
238     const wp<IBinder>& binder, Parcel* out)
239 {
240     flat_binder_object obj;
241 
242     obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
243     if (binder != NULL) {
244         sp<IBinder> real = binder.promote();
245         if (real != NULL) {
246             IBinder *local = real->localBinder();
247             if (!local) {
248                 BpBinder *proxy = real->remoteBinder();
249                 if (proxy == NULL) {
250                     ALOGE("null proxy");
251                 }
252                 const int32_t handle = proxy ? proxy->handle() : 0;
253                 obj.type = BINDER_TYPE_WEAK_HANDLE;
254                 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
255                 obj.handle = handle;
256                 obj.cookie = 0;
257             } else {
258                 obj.type = BINDER_TYPE_WEAK_BINDER;
259                 obj.binder = reinterpret_cast<uintptr_t>(binder.get_refs());
260                 obj.cookie = reinterpret_cast<uintptr_t>(binder.unsafe_get());
261             }
262             return finish_flatten_binder(real, obj, out);
263         }
264 
265         // XXX How to deal?  In order to flatten the given binder,
266         // we need to probe it for information, which requires a primary
267         // reference...  but we don't have one.
268         //
269         // The OpenBinder implementation uses a dynamic_cast<> here,
270         // but we can't do that with the different reference counting
271         // implementation we are using.
272         ALOGE("Unable to unflatten Binder weak reference!");
273         obj.type = BINDER_TYPE_BINDER;
274         obj.binder = 0;
275         obj.cookie = 0;
276         return finish_flatten_binder(NULL, obj, out);
277 
278     } else {
279         obj.type = BINDER_TYPE_BINDER;
280         obj.binder = 0;
281         obj.cookie = 0;
282         return finish_flatten_binder(NULL, obj, out);
283     }
284 }
285 
finish_unflatten_binder(BpBinder *,const flat_binder_object &,const Parcel &)286 inline static status_t finish_unflatten_binder(
287     BpBinder* /*proxy*/, const flat_binder_object& /*flat*/,
288     const Parcel& /*in*/)
289 {
290     return NO_ERROR;
291 }
292 
unflatten_binder(const sp<ProcessState> & proc,const Parcel & in,sp<IBinder> * out)293 status_t unflatten_binder(const sp<ProcessState>& proc,
294     const Parcel& in, sp<IBinder>* out)
295 {
296     const flat_binder_object* flat = in.readObject(false);
297 
298     if (flat) {
299         switch (flat->type) {
300             case BINDER_TYPE_BINDER:
301                 *out = reinterpret_cast<IBinder*>(flat->cookie);
302                 return finish_unflatten_binder(NULL, *flat, in);
303             case BINDER_TYPE_HANDLE:
304                 *out = proc->getStrongProxyForHandle(flat->handle);
305                 return finish_unflatten_binder(
306                     static_cast<BpBinder*>(out->get()), *flat, in);
307         }
308     }
309     return BAD_TYPE;
310 }
311 
unflatten_binder(const sp<ProcessState> & proc,const Parcel & in,wp<IBinder> * out)312 status_t unflatten_binder(const sp<ProcessState>& proc,
313     const Parcel& in, wp<IBinder>* out)
314 {
315     const flat_binder_object* flat = in.readObject(false);
316 
317     if (flat) {
318         switch (flat->type) {
319             case BINDER_TYPE_BINDER:
320                 *out = reinterpret_cast<IBinder*>(flat->cookie);
321                 return finish_unflatten_binder(NULL, *flat, in);
322             case BINDER_TYPE_WEAK_BINDER:
323                 if (flat->binder != 0) {
324                     out->set_object_and_refs(
325                         reinterpret_cast<IBinder*>(flat->cookie),
326                         reinterpret_cast<RefBase::weakref_type*>(flat->binder));
327                 } else {
328                     *out = NULL;
329                 }
330                 return finish_unflatten_binder(NULL, *flat, in);
331             case BINDER_TYPE_HANDLE:
332             case BINDER_TYPE_WEAK_HANDLE:
333                 *out = proc->getWeakProxyForHandle(flat->handle);
334                 return finish_unflatten_binder(
335                     static_cast<BpBinder*>(out->unsafe_get()), *flat, in);
336         }
337     }
338     return BAD_TYPE;
339 }
340 
341 // ---------------------------------------------------------------------------
342 
Parcel()343 Parcel::Parcel()
344 {
345     LOG_ALLOC("Parcel %p: constructing", this);
346     initState();
347 }
348 
~Parcel()349 Parcel::~Parcel()
350 {
351     freeDataNoInit();
352     LOG_ALLOC("Parcel %p: destroyed", this);
353 }
354 
getGlobalAllocSize()355 size_t Parcel::getGlobalAllocSize() {
356     pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
357     size_t size = gParcelGlobalAllocSize;
358     pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
359     return size;
360 }
361 
getGlobalAllocCount()362 size_t Parcel::getGlobalAllocCount() {
363     pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
364     size_t count = gParcelGlobalAllocCount;
365     pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
366     return count;
367 }
368 
data() const369 const uint8_t* Parcel::data() const
370 {
371     return mData;
372 }
373 
dataSize() const374 size_t Parcel::dataSize() const
375 {
376     return (mDataSize > mDataPos ? mDataSize : mDataPos);
377 }
378 
dataAvail() const379 size_t Parcel::dataAvail() const
380 {
381     // TODO: decide what to do about the possibility that this can
382     // report an available-data size that exceeds a Java int's max
383     // positive value, causing havoc.  Fortunately this will only
384     // happen if someone constructs a Parcel containing more than two
385     // gigabytes of data, which on typical phone hardware is simply
386     // not possible.
387     return dataSize() - dataPosition();
388 }
389 
dataPosition() const390 size_t Parcel::dataPosition() const
391 {
392     return mDataPos;
393 }
394 
dataCapacity() const395 size_t Parcel::dataCapacity() const
396 {
397     return mDataCapacity;
398 }
399 
setDataSize(size_t size)400 status_t Parcel::setDataSize(size_t size)
401 {
402     if (size > INT32_MAX) {
403         // don't accept size_t values which may have come from an
404         // inadvertent conversion from a negative int.
405         return BAD_VALUE;
406     }
407 
408     status_t err;
409     err = continueWrite(size);
410     if (err == NO_ERROR) {
411         mDataSize = size;
412         ALOGV("setDataSize Setting data size of %p to %zu", this, mDataSize);
413     }
414     return err;
415 }
416 
setDataPosition(size_t pos) const417 void Parcel::setDataPosition(size_t pos) const
418 {
419     if (pos > INT32_MAX) {
420         // don't accept size_t values which may have come from an
421         // inadvertent conversion from a negative int.
422         abort();
423     }
424 
425     mDataPos = pos;
426     mNextObjectHint = 0;
427 }
428 
setDataCapacity(size_t size)429 status_t Parcel::setDataCapacity(size_t size)
430 {
431     if (size > INT32_MAX) {
432         // don't accept size_t values which may have come from an
433         // inadvertent conversion from a negative int.
434         return BAD_VALUE;
435     }
436 
437     if (size > mDataCapacity) return continueWrite(size);
438     return NO_ERROR;
439 }
440 
setData(const uint8_t * buffer,size_t len)441 status_t Parcel::setData(const uint8_t* buffer, size_t len)
442 {
443     if (len > INT32_MAX) {
444         // don't accept size_t values which may have come from an
445         // inadvertent conversion from a negative int.
446         return BAD_VALUE;
447     }
448 
449     status_t err = restartWrite(len);
450     if (err == NO_ERROR) {
451         memcpy(const_cast<uint8_t*>(data()), buffer, len);
452         mDataSize = len;
453         mFdsKnown = false;
454     }
455     return err;
456 }
457 
appendFrom(const Parcel * parcel,size_t offset,size_t len)458 status_t Parcel::appendFrom(const Parcel *parcel, size_t offset, size_t len)
459 {
460     const sp<ProcessState> proc(ProcessState::self());
461     status_t err;
462     const uint8_t *data = parcel->mData;
463     const binder_size_t *objects = parcel->mObjects;
464     size_t size = parcel->mObjectsSize;
465     int startPos = mDataPos;
466     int firstIndex = -1, lastIndex = -2;
467 
468     if (len == 0) {
469         return NO_ERROR;
470     }
471 
472     if (len > INT32_MAX) {
473         // don't accept size_t values which may have come from an
474         // inadvertent conversion from a negative int.
475         return BAD_VALUE;
476     }
477 
478     // range checks against the source parcel size
479     if ((offset > parcel->mDataSize)
480             || (len > parcel->mDataSize)
481             || (offset + len > parcel->mDataSize)) {
482         return BAD_VALUE;
483     }
484 
485     // Count objects in range
486     for (int i = 0; i < (int) size; i++) {
487         size_t off = objects[i];
488         if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
489             if (firstIndex == -1) {
490                 firstIndex = i;
491             }
492             lastIndex = i;
493         }
494     }
495     int numObjects = lastIndex - firstIndex + 1;
496 
497     if ((mDataSize+len) > mDataCapacity) {
498         // grow data
499         err = growData(len);
500         if (err != NO_ERROR) {
501             return err;
502         }
503     }
504 
505     // append data
506     memcpy(mData + mDataPos, data + offset, len);
507     mDataPos += len;
508     mDataSize += len;
509 
510     err = NO_ERROR;
511 
512     if (numObjects > 0) {
513         // grow objects
514         if (mObjectsCapacity < mObjectsSize + numObjects) {
515             size_t newSize = ((mObjectsSize + numObjects)*3)/2;
516             if (newSize < mObjectsSize) return NO_MEMORY;   // overflow
517             binder_size_t *objects =
518                 (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
519             if (objects == (binder_size_t*)0) {
520                 return NO_MEMORY;
521             }
522             mObjects = objects;
523             mObjectsCapacity = newSize;
524         }
525 
526         // append and acquire objects
527         int idx = mObjectsSize;
528         for (int i = firstIndex; i <= lastIndex; i++) {
529             size_t off = objects[i] - offset + startPos;
530             mObjects[idx++] = off;
531             mObjectsSize++;
532 
533             flat_binder_object* flat
534                 = reinterpret_cast<flat_binder_object*>(mData + off);
535             acquire_object(proc, *flat, this, &mOpenAshmemSize);
536 
537             if (flat->type == BINDER_TYPE_FD) {
538                 // If this is a file descriptor, we need to dup it so the
539                 // new Parcel now owns its own fd, and can declare that we
540                 // officially know we have fds.
541                 flat->handle = dup(flat->handle);
542                 flat->cookie = 1;
543                 mHasFds = mFdsKnown = true;
544                 if (!mAllowFds) {
545                     err = FDS_NOT_ALLOWED;
546                 }
547             }
548         }
549     }
550 
551     return err;
552 }
553 
allowFds() const554 bool Parcel::allowFds() const
555 {
556     return mAllowFds;
557 }
558 
pushAllowFds(bool allowFds)559 bool Parcel::pushAllowFds(bool allowFds)
560 {
561     const bool origValue = mAllowFds;
562     if (!allowFds) {
563         mAllowFds = false;
564     }
565     return origValue;
566 }
567 
restoreAllowFds(bool lastValue)568 void Parcel::restoreAllowFds(bool lastValue)
569 {
570     mAllowFds = lastValue;
571 }
572 
hasFileDescriptors() const573 bool Parcel::hasFileDescriptors() const
574 {
575     if (!mFdsKnown) {
576         scanForFds();
577     }
578     return mHasFds;
579 }
580 
581 // Write RPC headers.  (previously just the interface token)
writeInterfaceToken(const String16 & interface)582 status_t Parcel::writeInterfaceToken(const String16& interface)
583 {
584     writeInt32(IPCThreadState::self()->getStrictModePolicy() |
585                STRICT_MODE_PENALTY_GATHER);
586     // currently the interface identification token is just its name as a string
587     return writeString16(interface);
588 }
589 
checkInterface(IBinder * binder) const590 bool Parcel::checkInterface(IBinder* binder) const
591 {
592     return enforceInterface(binder->getInterfaceDescriptor());
593 }
594 
enforceInterface(const String16 & interface,IPCThreadState * threadState) const595 bool Parcel::enforceInterface(const String16& interface,
596                               IPCThreadState* threadState) const
597 {
598     int32_t strictPolicy = readInt32();
599     if (threadState == NULL) {
600         threadState = IPCThreadState::self();
601     }
602     if ((threadState->getLastTransactionBinderFlags() &
603          IBinder::FLAG_ONEWAY) != 0) {
604       // For one-way calls, the callee is running entirely
605       // disconnected from the caller, so disable StrictMode entirely.
606       // Not only does disk/network usage not impact the caller, but
607       // there's no way to commuicate back any violations anyway.
608       threadState->setStrictModePolicy(0);
609     } else {
610       threadState->setStrictModePolicy(strictPolicy);
611     }
612     const String16 str(readString16());
613     if (str == interface) {
614         return true;
615     } else {
616         ALOGW("**** enforceInterface() expected '%s' but read '%s'",
617                 String8(interface).string(), String8(str).string());
618         return false;
619     }
620 }
621 
objects() const622 const binder_size_t* Parcel::objects() const
623 {
624     return mObjects;
625 }
626 
objectsCount() const627 size_t Parcel::objectsCount() const
628 {
629     return mObjectsSize;
630 }
631 
errorCheck() const632 status_t Parcel::errorCheck() const
633 {
634     return mError;
635 }
636 
setError(status_t err)637 void Parcel::setError(status_t err)
638 {
639     mError = err;
640 }
641 
finishWrite(size_t len)642 status_t Parcel::finishWrite(size_t len)
643 {
644     if (len > INT32_MAX) {
645         // don't accept size_t values which may have come from an
646         // inadvertent conversion from a negative int.
647         return BAD_VALUE;
648     }
649 
650     //printf("Finish write of %d\n", len);
651     mDataPos += len;
652     ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
653     if (mDataPos > mDataSize) {
654         mDataSize = mDataPos;
655         ALOGV("finishWrite Setting data size of %p to %zu", this, mDataSize);
656     }
657     //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
658     return NO_ERROR;
659 }
660 
writeUnpadded(const void * data,size_t len)661 status_t Parcel::writeUnpadded(const void* data, size_t len)
662 {
663     if (len > INT32_MAX) {
664         // don't accept size_t values which may have come from an
665         // inadvertent conversion from a negative int.
666         return BAD_VALUE;
667     }
668 
669     size_t end = mDataPos + len;
670     if (end < mDataPos) {
671         // integer overflow
672         return BAD_VALUE;
673     }
674 
675     if (end <= mDataCapacity) {
676 restart_write:
677         memcpy(mData+mDataPos, data, len);
678         return finishWrite(len);
679     }
680 
681     status_t err = growData(len);
682     if (err == NO_ERROR) goto restart_write;
683     return err;
684 }
685 
write(const void * data,size_t len)686 status_t Parcel::write(const void* data, size_t len)
687 {
688     if (len > INT32_MAX) {
689         // don't accept size_t values which may have come from an
690         // inadvertent conversion from a negative int.
691         return BAD_VALUE;
692     }
693 
694     void* const d = writeInplace(len);
695     if (d) {
696         memcpy(d, data, len);
697         return NO_ERROR;
698     }
699     return mError;
700 }
701 
writeInplace(size_t len)702 void* Parcel::writeInplace(size_t len)
703 {
704     if (len > INT32_MAX) {
705         // don't accept size_t values which may have come from an
706         // inadvertent conversion from a negative int.
707         return NULL;
708     }
709 
710     const size_t padded = pad_size(len);
711 
712     // sanity check for integer overflow
713     if (mDataPos+padded < mDataPos) {
714         return NULL;
715     }
716 
717     if ((mDataPos+padded) <= mDataCapacity) {
718 restart_write:
719         //printf("Writing %ld bytes, padded to %ld\n", len, padded);
720         uint8_t* const data = mData+mDataPos;
721 
722         // Need to pad at end?
723         if (padded != len) {
724 #if BYTE_ORDER == BIG_ENDIAN
725             static const uint32_t mask[4] = {
726                 0x00000000, 0xffffff00, 0xffff0000, 0xff000000
727             };
728 #endif
729 #if BYTE_ORDER == LITTLE_ENDIAN
730             static const uint32_t mask[4] = {
731                 0x00000000, 0x00ffffff, 0x0000ffff, 0x000000ff
732             };
733 #endif
734             //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
735             //    *reinterpret_cast<void**>(data+padded-4));
736             *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
737         }
738 
739         finishWrite(padded);
740         return data;
741     }
742 
743     status_t err = growData(padded);
744     if (err == NO_ERROR) goto restart_write;
745     return NULL;
746 }
747 
writeInt32(int32_t val)748 status_t Parcel::writeInt32(int32_t val)
749 {
750     return writeAligned(val);
751 }
752 
writeUint32(uint32_t val)753 status_t Parcel::writeUint32(uint32_t val)
754 {
755     return writeAligned(val);
756 }
757 
writeInt32Array(size_t len,const int32_t * val)758 status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
759     if (len > INT32_MAX) {
760         // don't accept size_t values which may have come from an
761         // inadvertent conversion from a negative int.
762         return BAD_VALUE;
763     }
764 
765     if (!val) {
766         return writeInt32(-1);
767     }
768     status_t ret = writeInt32(static_cast<uint32_t>(len));
769     if (ret == NO_ERROR) {
770         ret = write(val, len * sizeof(*val));
771     }
772     return ret;
773 }
writeByteArray(size_t len,const uint8_t * val)774 status_t Parcel::writeByteArray(size_t len, const uint8_t *val) {
775     if (len > INT32_MAX) {
776         // don't accept size_t values which may have come from an
777         // inadvertent conversion from a negative int.
778         return BAD_VALUE;
779     }
780 
781     if (!val) {
782         return writeInt32(-1);
783     }
784     status_t ret = writeInt32(static_cast<uint32_t>(len));
785     if (ret == NO_ERROR) {
786         ret = write(val, len * sizeof(*val));
787     }
788     return ret;
789 }
790 
writeInt64(int64_t val)791 status_t Parcel::writeInt64(int64_t val)
792 {
793     return writeAligned(val);
794 }
795 
writeUint64(uint64_t val)796 status_t Parcel::writeUint64(uint64_t val)
797 {
798     return writeAligned(val);
799 }
800 
writePointer(uintptr_t val)801 status_t Parcel::writePointer(uintptr_t val)
802 {
803     return writeAligned<binder_uintptr_t>(val);
804 }
805 
writeFloat(float val)806 status_t Parcel::writeFloat(float val)
807 {
808     return writeAligned(val);
809 }
810 
811 #if defined(__mips__) && defined(__mips_hard_float)
812 
writeDouble(double val)813 status_t Parcel::writeDouble(double val)
814 {
815     union {
816         double d;
817         unsigned long long ll;
818     } u;
819     u.d = val;
820     return writeAligned(u.ll);
821 }
822 
823 #else
824 
writeDouble(double val)825 status_t Parcel::writeDouble(double val)
826 {
827     return writeAligned(val);
828 }
829 
830 #endif
831 
writeCString(const char * str)832 status_t Parcel::writeCString(const char* str)
833 {
834     return write(str, strlen(str)+1);
835 }
836 
writeString8(const String8 & str)837 status_t Parcel::writeString8(const String8& str)
838 {
839     status_t err = writeInt32(str.bytes());
840     // only write string if its length is more than zero characters,
841     // as readString8 will only read if the length field is non-zero.
842     // this is slightly different from how writeString16 works.
843     if (str.bytes() > 0 && err == NO_ERROR) {
844         err = write(str.string(), str.bytes()+1);
845     }
846     return err;
847 }
848 
writeString16(const String16 & str)849 status_t Parcel::writeString16(const String16& str)
850 {
851     return writeString16(str.string(), str.size());
852 }
853 
writeString16(const char16_t * str,size_t len)854 status_t Parcel::writeString16(const char16_t* str, size_t len)
855 {
856     if (str == NULL) return writeInt32(-1);
857 
858     status_t err = writeInt32(len);
859     if (err == NO_ERROR) {
860         len *= sizeof(char16_t);
861         uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char16_t));
862         if (data) {
863             memcpy(data, str, len);
864             *reinterpret_cast<char16_t*>(data+len) = 0;
865             return NO_ERROR;
866         }
867         err = mError;
868     }
869     return err;
870 }
871 
writeStrongBinder(const sp<IBinder> & val)872 status_t Parcel::writeStrongBinder(const sp<IBinder>& val)
873 {
874     return flatten_binder(ProcessState::self(), val, this);
875 }
876 
writeWeakBinder(const wp<IBinder> & val)877 status_t Parcel::writeWeakBinder(const wp<IBinder>& val)
878 {
879     return flatten_binder(ProcessState::self(), val, this);
880 }
881 
writeNativeHandle(const native_handle * handle)882 status_t Parcel::writeNativeHandle(const native_handle* handle)
883 {
884     if (!handle || handle->version != sizeof(native_handle))
885         return BAD_TYPE;
886 
887     status_t err;
888     err = writeInt32(handle->numFds);
889     if (err != NO_ERROR) return err;
890 
891     err = writeInt32(handle->numInts);
892     if (err != NO_ERROR) return err;
893 
894     for (int i=0 ; err==NO_ERROR && i<handle->numFds ; i++)
895         err = writeDupFileDescriptor(handle->data[i]);
896 
897     if (err != NO_ERROR) {
898         ALOGD("write native handle, write dup fd failed");
899         return err;
900     }
901     err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
902     return err;
903 }
904 
writeFileDescriptor(int fd,bool takeOwnership)905 status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership)
906 {
907     flat_binder_object obj;
908     obj.type = BINDER_TYPE_FD;
909     obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
910     obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
911     obj.handle = fd;
912     obj.cookie = takeOwnership ? 1 : 0;
913     return writeObject(obj, true);
914 }
915 
writeDupFileDescriptor(int fd)916 status_t Parcel::writeDupFileDescriptor(int fd)
917 {
918     int dupFd = dup(fd);
919     if (dupFd < 0) {
920         return -errno;
921     }
922     status_t err = writeFileDescriptor(dupFd, true /*takeOwnership*/);
923     if (err) {
924         close(dupFd);
925     }
926     return err;
927 }
928 
writeBlob(size_t len,bool mutableCopy,WritableBlob * outBlob)929 status_t Parcel::writeBlob(size_t len, bool mutableCopy, WritableBlob* outBlob)
930 {
931     if (len > INT32_MAX) {
932         // don't accept size_t values which may have come from an
933         // inadvertent conversion from a negative int.
934         return BAD_VALUE;
935     }
936 
937     status_t status;
938     if (!mAllowFds || len <= BLOB_INPLACE_LIMIT) {
939         ALOGV("writeBlob: write in place");
940         status = writeInt32(BLOB_INPLACE);
941         if (status) return status;
942 
943         void* ptr = writeInplace(len);
944         if (!ptr) return NO_MEMORY;
945 
946         outBlob->init(-1, ptr, len, false);
947         return NO_ERROR;
948     }
949 
950     ALOGV("writeBlob: write to ashmem");
951     int fd = ashmem_create_region("Parcel Blob", len);
952     if (fd < 0) return NO_MEMORY;
953 
954     int result = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE);
955     if (result < 0) {
956         status = result;
957     } else {
958         void* ptr = ::mmap(NULL, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
959         if (ptr == MAP_FAILED) {
960             status = -errno;
961         } else {
962             if (!mutableCopy) {
963                 result = ashmem_set_prot_region(fd, PROT_READ);
964             }
965             if (result < 0) {
966                 status = result;
967             } else {
968                 status = writeInt32(mutableCopy ? BLOB_ASHMEM_MUTABLE : BLOB_ASHMEM_IMMUTABLE);
969                 if (!status) {
970                     status = writeFileDescriptor(fd, true /*takeOwnership*/);
971                     if (!status) {
972                         outBlob->init(fd, ptr, len, mutableCopy);
973                         return NO_ERROR;
974                     }
975                 }
976             }
977         }
978         ::munmap(ptr, len);
979     }
980     ::close(fd);
981     return status;
982 }
983 
writeDupImmutableBlobFileDescriptor(int fd)984 status_t Parcel::writeDupImmutableBlobFileDescriptor(int fd)
985 {
986     // Must match up with what's done in writeBlob.
987     if (!mAllowFds) return FDS_NOT_ALLOWED;
988     status_t status = writeInt32(BLOB_ASHMEM_IMMUTABLE);
989     if (status) return status;
990     return writeDupFileDescriptor(fd);
991 }
992 
write(const FlattenableHelperInterface & val)993 status_t Parcel::write(const FlattenableHelperInterface& val)
994 {
995     status_t err;
996 
997     // size if needed
998     const size_t len = val.getFlattenedSize();
999     const size_t fd_count = val.getFdCount();
1000 
1001     if ((len > INT32_MAX) || (fd_count > INT32_MAX)) {
1002         // don't accept size_t values which may have come from an
1003         // inadvertent conversion from a negative int.
1004         return BAD_VALUE;
1005     }
1006 
1007     err = this->writeInt32(len);
1008     if (err) return err;
1009 
1010     err = this->writeInt32(fd_count);
1011     if (err) return err;
1012 
1013     // payload
1014     void* const buf = this->writeInplace(pad_size(len));
1015     if (buf == NULL)
1016         return BAD_VALUE;
1017 
1018     int* fds = NULL;
1019     if (fd_count) {
1020         fds = new int[fd_count];
1021     }
1022 
1023     err = val.flatten(buf, len, fds, fd_count);
1024     for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1025         err = this->writeDupFileDescriptor( fds[i] );
1026     }
1027 
1028     if (fd_count) {
1029         delete [] fds;
1030     }
1031 
1032     return err;
1033 }
1034 
writeObject(const flat_binder_object & val,bool nullMetaData)1035 status_t Parcel::writeObject(const flat_binder_object& val, bool nullMetaData)
1036 {
1037     const bool enoughData = (mDataPos+sizeof(val)) <= mDataCapacity;
1038     const bool enoughObjects = mObjectsSize < mObjectsCapacity;
1039     if (enoughData && enoughObjects) {
1040 restart_write:
1041         *reinterpret_cast<flat_binder_object*>(mData+mDataPos) = val;
1042 
1043         // remember if it's a file descriptor
1044         if (val.type == BINDER_TYPE_FD) {
1045             if (!mAllowFds) {
1046                 // fail before modifying our object index
1047                 return FDS_NOT_ALLOWED;
1048             }
1049             mHasFds = mFdsKnown = true;
1050         }
1051 
1052         // Need to write meta-data?
1053         if (nullMetaData || val.binder != 0) {
1054             mObjects[mObjectsSize] = mDataPos;
1055             acquire_object(ProcessState::self(), val, this, &mOpenAshmemSize);
1056             mObjectsSize++;
1057         }
1058 
1059         return finishWrite(sizeof(flat_binder_object));
1060     }
1061 
1062     if (!enoughData) {
1063         const status_t err = growData(sizeof(val));
1064         if (err != NO_ERROR) return err;
1065     }
1066     if (!enoughObjects) {
1067         size_t newSize = ((mObjectsSize+2)*3)/2;
1068         if (newSize < mObjectsSize) return NO_MEMORY;   // overflow
1069         binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
1070         if (objects == NULL) return NO_MEMORY;
1071         mObjects = objects;
1072         mObjectsCapacity = newSize;
1073     }
1074 
1075     goto restart_write;
1076 }
1077 
writeNoException()1078 status_t Parcel::writeNoException()
1079 {
1080     return writeInt32(0);
1081 }
1082 
remove(size_t,size_t)1083 void Parcel::remove(size_t /*start*/, size_t /*amt*/)
1084 {
1085     LOG_ALWAYS_FATAL("Parcel::remove() not yet implemented!");
1086 }
1087 
read(void * outData,size_t len) const1088 status_t Parcel::read(void* outData, size_t len) const
1089 {
1090     if (len > INT32_MAX) {
1091         // don't accept size_t values which may have come from an
1092         // inadvertent conversion from a negative int.
1093         return BAD_VALUE;
1094     }
1095 
1096     if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1097             && len <= pad_size(len)) {
1098         memcpy(outData, mData+mDataPos, len);
1099         mDataPos += pad_size(len);
1100         ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
1101         return NO_ERROR;
1102     }
1103     return NOT_ENOUGH_DATA;
1104 }
1105 
readInplace(size_t len) const1106 const void* Parcel::readInplace(size_t len) const
1107 {
1108     if (len > INT32_MAX) {
1109         // don't accept size_t values which may have come from an
1110         // inadvertent conversion from a negative int.
1111         return NULL;
1112     }
1113 
1114     if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1115             && len <= pad_size(len)) {
1116         const void* data = mData+mDataPos;
1117         mDataPos += pad_size(len);
1118         ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
1119         return data;
1120     }
1121     return NULL;
1122 }
1123 
1124 template<class T>
readAligned(T * pArg) const1125 status_t Parcel::readAligned(T *pArg) const {
1126     COMPILE_TIME_ASSERT_FUNCTION_SCOPE(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
1127 
1128     if ((mDataPos+sizeof(T)) <= mDataSize) {
1129         const void* data = mData+mDataPos;
1130         mDataPos += sizeof(T);
1131         *pArg =  *reinterpret_cast<const T*>(data);
1132         return NO_ERROR;
1133     } else {
1134         return NOT_ENOUGH_DATA;
1135     }
1136 }
1137 
1138 template<class T>
readAligned() const1139 T Parcel::readAligned() const {
1140     T result;
1141     if (readAligned(&result) != NO_ERROR) {
1142         result = 0;
1143     }
1144 
1145     return result;
1146 }
1147 
1148 template<class T>
writeAligned(T val)1149 status_t Parcel::writeAligned(T val) {
1150     COMPILE_TIME_ASSERT_FUNCTION_SCOPE(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
1151 
1152     if ((mDataPos+sizeof(val)) <= mDataCapacity) {
1153 restart_write:
1154         *reinterpret_cast<T*>(mData+mDataPos) = val;
1155         return finishWrite(sizeof(val));
1156     }
1157 
1158     status_t err = growData(sizeof(val));
1159     if (err == NO_ERROR) goto restart_write;
1160     return err;
1161 }
1162 
readInt32(int32_t * pArg) const1163 status_t Parcel::readInt32(int32_t *pArg) const
1164 {
1165     return readAligned(pArg);
1166 }
1167 
readInt32() const1168 int32_t Parcel::readInt32() const
1169 {
1170     return readAligned<int32_t>();
1171 }
1172 
readUint32(uint32_t * pArg) const1173 status_t Parcel::readUint32(uint32_t *pArg) const
1174 {
1175     return readAligned(pArg);
1176 }
1177 
readUint32() const1178 uint32_t Parcel::readUint32() const
1179 {
1180     return readAligned<uint32_t>();
1181 }
1182 
readInt64(int64_t * pArg) const1183 status_t Parcel::readInt64(int64_t *pArg) const
1184 {
1185     return readAligned(pArg);
1186 }
1187 
1188 
readInt64() const1189 int64_t Parcel::readInt64() const
1190 {
1191     return readAligned<int64_t>();
1192 }
1193 
readUint64(uint64_t * pArg) const1194 status_t Parcel::readUint64(uint64_t *pArg) const
1195 {
1196     return readAligned(pArg);
1197 }
1198 
readUint64() const1199 uint64_t Parcel::readUint64() const
1200 {
1201     return readAligned<uint64_t>();
1202 }
1203 
readPointer(uintptr_t * pArg) const1204 status_t Parcel::readPointer(uintptr_t *pArg) const
1205 {
1206     status_t ret;
1207     binder_uintptr_t ptr;
1208     ret = readAligned(&ptr);
1209     if (!ret)
1210         *pArg = ptr;
1211     return ret;
1212 }
1213 
readPointer() const1214 uintptr_t Parcel::readPointer() const
1215 {
1216     return readAligned<binder_uintptr_t>();
1217 }
1218 
1219 
readFloat(float * pArg) const1220 status_t Parcel::readFloat(float *pArg) const
1221 {
1222     return readAligned(pArg);
1223 }
1224 
1225 
readFloat() const1226 float Parcel::readFloat() const
1227 {
1228     return readAligned<float>();
1229 }
1230 
1231 #if defined(__mips__) && defined(__mips_hard_float)
1232 
readDouble(double * pArg) const1233 status_t Parcel::readDouble(double *pArg) const
1234 {
1235     union {
1236       double d;
1237       unsigned long long ll;
1238     } u;
1239     u.d = 0;
1240     status_t status;
1241     status = readAligned(&u.ll);
1242     *pArg = u.d;
1243     return status;
1244 }
1245 
readDouble() const1246 double Parcel::readDouble() const
1247 {
1248     union {
1249       double d;
1250       unsigned long long ll;
1251     } u;
1252     u.ll = readAligned<unsigned long long>();
1253     return u.d;
1254 }
1255 
1256 #else
1257 
readDouble(double * pArg) const1258 status_t Parcel::readDouble(double *pArg) const
1259 {
1260     return readAligned(pArg);
1261 }
1262 
readDouble() const1263 double Parcel::readDouble() const
1264 {
1265     return readAligned<double>();
1266 }
1267 
1268 #endif
1269 
readIntPtr(intptr_t * pArg) const1270 status_t Parcel::readIntPtr(intptr_t *pArg) const
1271 {
1272     return readAligned(pArg);
1273 }
1274 
1275 
readIntPtr() const1276 intptr_t Parcel::readIntPtr() const
1277 {
1278     return readAligned<intptr_t>();
1279 }
1280 
1281 
readCString() const1282 const char* Parcel::readCString() const
1283 {
1284     const size_t avail = mDataSize-mDataPos;
1285     if (avail > 0) {
1286         const char* str = reinterpret_cast<const char*>(mData+mDataPos);
1287         // is the string's trailing NUL within the parcel's valid bounds?
1288         const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
1289         if (eos) {
1290             const size_t len = eos - str;
1291             mDataPos += pad_size(len+1);
1292             ALOGV("readCString Setting data pos of %p to %zu", this, mDataPos);
1293             return str;
1294         }
1295     }
1296     return NULL;
1297 }
1298 
readString8() const1299 String8 Parcel::readString8() const
1300 {
1301     int32_t size = readInt32();
1302     // watch for potential int overflow adding 1 for trailing NUL
1303     if (size > 0 && size < INT32_MAX) {
1304         const char* str = (const char*)readInplace(size+1);
1305         if (str) return String8(str, size);
1306     }
1307     return String8();
1308 }
1309 
readString16() const1310 String16 Parcel::readString16() const
1311 {
1312     size_t len;
1313     const char16_t* str = readString16Inplace(&len);
1314     if (str) return String16(str, len);
1315     ALOGE("Reading a NULL string not supported here.");
1316     return String16();
1317 }
1318 
readString16Inplace(size_t * outLen) const1319 const char16_t* Parcel::readString16Inplace(size_t* outLen) const
1320 {
1321     int32_t size = readInt32();
1322     // watch for potential int overflow from size+1
1323     if (size >= 0 && size < INT32_MAX) {
1324         *outLen = size;
1325         const char16_t* str = (const char16_t*)readInplace((size+1)*sizeof(char16_t));
1326         if (str != NULL) {
1327             return str;
1328         }
1329     }
1330     *outLen = 0;
1331     return NULL;
1332 }
1333 
readStrongBinder() const1334 sp<IBinder> Parcel::readStrongBinder() const
1335 {
1336     sp<IBinder> val;
1337     unflatten_binder(ProcessState::self(), *this, &val);
1338     return val;
1339 }
1340 
readWeakBinder() const1341 wp<IBinder> Parcel::readWeakBinder() const
1342 {
1343     wp<IBinder> val;
1344     unflatten_binder(ProcessState::self(), *this, &val);
1345     return val;
1346 }
1347 
readExceptionCode() const1348 int32_t Parcel::readExceptionCode() const
1349 {
1350   int32_t exception_code = readAligned<int32_t>();
1351   if (exception_code == EX_HAS_REPLY_HEADER) {
1352     int32_t header_start = dataPosition();
1353     int32_t header_size = readAligned<int32_t>();
1354     // Skip over fat responses headers.  Not used (or propagated) in
1355     // native code
1356     setDataPosition(header_start + header_size);
1357     // And fat response headers are currently only used when there are no
1358     // exceptions, so return no error:
1359     return 0;
1360   }
1361   return exception_code;
1362 }
1363 
readNativeHandle() const1364 native_handle* Parcel::readNativeHandle() const
1365 {
1366     int numFds, numInts;
1367     status_t err;
1368     err = readInt32(&numFds);
1369     if (err != NO_ERROR) return 0;
1370     err = readInt32(&numInts);
1371     if (err != NO_ERROR) return 0;
1372 
1373     native_handle* h = native_handle_create(numFds, numInts);
1374     if (!h) {
1375         return 0;
1376     }
1377 
1378     for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
1379         h->data[i] = dup(readFileDescriptor());
1380         if (h->data[i] < 0) {
1381             for (int j = 0; j < i; j++) {
1382                 close(h->data[j]);
1383             }
1384             native_handle_delete(h);
1385             return 0;
1386         }
1387     }
1388     err = read(h->data + numFds, sizeof(int)*numInts);
1389     if (err != NO_ERROR) {
1390         native_handle_close(h);
1391         native_handle_delete(h);
1392         h = 0;
1393     }
1394     return h;
1395 }
1396 
1397 
readFileDescriptor() const1398 int Parcel::readFileDescriptor() const
1399 {
1400     const flat_binder_object* flat = readObject(true);
1401     if (flat) {
1402         switch (flat->type) {
1403             case BINDER_TYPE_FD:
1404                 //ALOGI("Returning file descriptor %ld from parcel %p", flat->handle, this);
1405                 return flat->handle;
1406         }
1407     }
1408     return BAD_TYPE;
1409 }
1410 
readBlob(size_t len,ReadableBlob * outBlob) const1411 status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
1412 {
1413     int32_t blobType;
1414     status_t status = readInt32(&blobType);
1415     if (status) return status;
1416 
1417     if (blobType == BLOB_INPLACE) {
1418         ALOGV("readBlob: read in place");
1419         const void* ptr = readInplace(len);
1420         if (!ptr) return BAD_VALUE;
1421 
1422         outBlob->init(-1, const_cast<void*>(ptr), len, false);
1423         return NO_ERROR;
1424     }
1425 
1426     ALOGV("readBlob: read from ashmem");
1427     bool isMutable = (blobType == BLOB_ASHMEM_MUTABLE);
1428     int fd = readFileDescriptor();
1429     if (fd == int(BAD_TYPE)) return BAD_VALUE;
1430 
1431     void* ptr = ::mmap(NULL, len, isMutable ? PROT_READ | PROT_WRITE : PROT_READ,
1432             MAP_SHARED, fd, 0);
1433     if (ptr == MAP_FAILED) return NO_MEMORY;
1434 
1435     outBlob->init(fd, ptr, len, isMutable);
1436     return NO_ERROR;
1437 }
1438 
read(FlattenableHelperInterface & val) const1439 status_t Parcel::read(FlattenableHelperInterface& val) const
1440 {
1441     // size
1442     const size_t len = this->readInt32();
1443     const size_t fd_count = this->readInt32();
1444 
1445     if (len > INT32_MAX) {
1446         // don't accept size_t values which may have come from an
1447         // inadvertent conversion from a negative int.
1448         return BAD_VALUE;
1449     }
1450 
1451     // payload
1452     void const* const buf = this->readInplace(pad_size(len));
1453     if (buf == NULL)
1454         return BAD_VALUE;
1455 
1456     int* fds = NULL;
1457     if (fd_count) {
1458         fds = new int[fd_count];
1459     }
1460 
1461     status_t err = NO_ERROR;
1462     for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1463         fds[i] = dup(this->readFileDescriptor());
1464         if (fds[i] < 0) {
1465             err = BAD_VALUE;
1466             ALOGE("dup() failed in Parcel::read, i is %zu, fds[i] is %d, fd_count is %zu, error: %s",
1467                 i, fds[i], fd_count, strerror(errno));
1468         }
1469     }
1470 
1471     if (err == NO_ERROR) {
1472         err = val.unflatten(buf, len, fds, fd_count);
1473     }
1474 
1475     if (fd_count) {
1476         delete [] fds;
1477     }
1478 
1479     return err;
1480 }
readObject(bool nullMetaData) const1481 const flat_binder_object* Parcel::readObject(bool nullMetaData) const
1482 {
1483     const size_t DPOS = mDataPos;
1484     if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
1485         const flat_binder_object* obj
1486                 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
1487         mDataPos = DPOS + sizeof(flat_binder_object);
1488         if (!nullMetaData && (obj->cookie == 0 && obj->binder == 0)) {
1489             // When transferring a NULL object, we don't write it into
1490             // the object list, so we don't want to check for it when
1491             // reading.
1492             ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
1493             return obj;
1494         }
1495 
1496         // Ensure that this object is valid...
1497         binder_size_t* const OBJS = mObjects;
1498         const size_t N = mObjectsSize;
1499         size_t opos = mNextObjectHint;
1500 
1501         if (N > 0) {
1502             ALOGV("Parcel %p looking for obj at %zu, hint=%zu",
1503                  this, DPOS, opos);
1504 
1505             // Start at the current hint position, looking for an object at
1506             // the current data position.
1507             if (opos < N) {
1508                 while (opos < (N-1) && OBJS[opos] < DPOS) {
1509                     opos++;
1510                 }
1511             } else {
1512                 opos = N-1;
1513             }
1514             if (OBJS[opos] == DPOS) {
1515                 // Found it!
1516                 ALOGV("Parcel %p found obj %zu at index %zu with forward search",
1517                      this, DPOS, opos);
1518                 mNextObjectHint = opos+1;
1519                 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
1520                 return obj;
1521             }
1522 
1523             // Look backwards for it...
1524             while (opos > 0 && OBJS[opos] > DPOS) {
1525                 opos--;
1526             }
1527             if (OBJS[opos] == DPOS) {
1528                 // Found it!
1529                 ALOGV("Parcel %p found obj %zu at index %zu with backward search",
1530                      this, DPOS, opos);
1531                 mNextObjectHint = opos+1;
1532                 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
1533                 return obj;
1534             }
1535         }
1536         ALOGW("Attempt to read object from Parcel %p at offset %zu that is not in the object list",
1537              this, DPOS);
1538     }
1539     return NULL;
1540 }
1541 
closeFileDescriptors()1542 void Parcel::closeFileDescriptors()
1543 {
1544     size_t i = mObjectsSize;
1545     if (i > 0) {
1546         //ALOGI("Closing file descriptors for %zu objects...", i);
1547     }
1548     while (i > 0) {
1549         i--;
1550         const flat_binder_object* flat
1551             = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
1552         if (flat->type == BINDER_TYPE_FD) {
1553             //ALOGI("Closing fd: %ld", flat->handle);
1554             close(flat->handle);
1555         }
1556     }
1557 }
1558 
ipcData() const1559 uintptr_t Parcel::ipcData() const
1560 {
1561     return reinterpret_cast<uintptr_t>(mData);
1562 }
1563 
ipcDataSize() const1564 size_t Parcel::ipcDataSize() const
1565 {
1566     return (mDataSize > mDataPos ? mDataSize : mDataPos);
1567 }
1568 
ipcObjects() const1569 uintptr_t Parcel::ipcObjects() const
1570 {
1571     return reinterpret_cast<uintptr_t>(mObjects);
1572 }
1573 
ipcObjectsCount() const1574 size_t Parcel::ipcObjectsCount() const
1575 {
1576     return mObjectsSize;
1577 }
1578 
ipcSetDataReference(const uint8_t * data,size_t dataSize,const binder_size_t * objects,size_t objectsCount,release_func relFunc,void * relCookie)1579 void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,
1580     const binder_size_t* objects, size_t objectsCount, release_func relFunc, void* relCookie)
1581 {
1582     binder_size_t minOffset = 0;
1583     freeDataNoInit();
1584     mError = NO_ERROR;
1585     mData = const_cast<uint8_t*>(data);
1586     mDataSize = mDataCapacity = dataSize;
1587     //ALOGI("setDataReference Setting data size of %p to %lu (pid=%d)", this, mDataSize, getpid());
1588     mDataPos = 0;
1589     ALOGV("setDataReference Setting data pos of %p to %zu", this, mDataPos);
1590     mObjects = const_cast<binder_size_t*>(objects);
1591     mObjectsSize = mObjectsCapacity = objectsCount;
1592     mNextObjectHint = 0;
1593     mOwner = relFunc;
1594     mOwnerCookie = relCookie;
1595     for (size_t i = 0; i < mObjectsSize; i++) {
1596         binder_size_t offset = mObjects[i];
1597         if (offset < minOffset) {
1598             ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
1599                   __func__, (uint64_t)offset, (uint64_t)minOffset);
1600             mObjectsSize = 0;
1601             break;
1602         }
1603         minOffset = offset + sizeof(flat_binder_object);
1604     }
1605     scanForFds();
1606 }
1607 
print(TextOutput & to,uint32_t) const1608 void Parcel::print(TextOutput& to, uint32_t /*flags*/) const
1609 {
1610     to << "Parcel(";
1611 
1612     if (errorCheck() != NO_ERROR) {
1613         const status_t err = errorCheck();
1614         to << "Error: " << (void*)(intptr_t)err << " \"" << strerror(-err) << "\"";
1615     } else if (dataSize() > 0) {
1616         const uint8_t* DATA = data();
1617         to << indent << HexDump(DATA, dataSize()) << dedent;
1618         const binder_size_t* OBJS = objects();
1619         const size_t N = objectsCount();
1620         for (size_t i=0; i<N; i++) {
1621             const flat_binder_object* flat
1622                 = reinterpret_cast<const flat_binder_object*>(DATA+OBJS[i]);
1623             to << endl << "Object #" << i << " @ " << (void*)OBJS[i] << ": "
1624                 << TypeCode(flat->type & 0x7f7f7f00)
1625                 << " = " << flat->binder;
1626         }
1627     } else {
1628         to << "NULL";
1629     }
1630 
1631     to << ")";
1632 }
1633 
releaseObjects()1634 void Parcel::releaseObjects()
1635 {
1636     const sp<ProcessState> proc(ProcessState::self());
1637     size_t i = mObjectsSize;
1638     uint8_t* const data = mData;
1639     binder_size_t* const objects = mObjects;
1640     while (i > 0) {
1641         i--;
1642         const flat_binder_object* flat
1643             = reinterpret_cast<flat_binder_object*>(data+objects[i]);
1644         release_object(proc, *flat, this, &mOpenAshmemSize);
1645     }
1646 }
1647 
acquireObjects()1648 void Parcel::acquireObjects()
1649 {
1650     const sp<ProcessState> proc(ProcessState::self());
1651     size_t i = mObjectsSize;
1652     uint8_t* const data = mData;
1653     binder_size_t* const objects = mObjects;
1654     while (i > 0) {
1655         i--;
1656         const flat_binder_object* flat
1657             = reinterpret_cast<flat_binder_object*>(data+objects[i]);
1658         acquire_object(proc, *flat, this, &mOpenAshmemSize);
1659     }
1660 }
1661 
freeData()1662 void Parcel::freeData()
1663 {
1664     freeDataNoInit();
1665     initState();
1666 }
1667 
freeDataNoInit()1668 void Parcel::freeDataNoInit()
1669 {
1670     if (mOwner) {
1671         LOG_ALLOC("Parcel %p: freeing other owner data", this);
1672         //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
1673         mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
1674     } else {
1675         LOG_ALLOC("Parcel %p: freeing allocated data", this);
1676         releaseObjects();
1677         if (mData) {
1678             LOG_ALLOC("Parcel %p: freeing with %zu capacity", this, mDataCapacity);
1679             pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
1680             gParcelGlobalAllocSize -= mDataCapacity;
1681             gParcelGlobalAllocCount--;
1682             pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
1683             free(mData);
1684         }
1685         if (mObjects) free(mObjects);
1686     }
1687 }
1688 
growData(size_t len)1689 status_t Parcel::growData(size_t len)
1690 {
1691     if (len > INT32_MAX) {
1692         // don't accept size_t values which may have come from an
1693         // inadvertent conversion from a negative int.
1694         return BAD_VALUE;
1695     }
1696 
1697     size_t newSize = ((mDataSize+len)*3)/2;
1698     return (newSize <= mDataSize)
1699             ? (status_t) NO_MEMORY
1700             : continueWrite(newSize);
1701 }
1702 
restartWrite(size_t desired)1703 status_t Parcel::restartWrite(size_t desired)
1704 {
1705     if (desired > INT32_MAX) {
1706         // don't accept size_t values which may have come from an
1707         // inadvertent conversion from a negative int.
1708         return BAD_VALUE;
1709     }
1710 
1711     if (mOwner) {
1712         freeData();
1713         return continueWrite(desired);
1714     }
1715 
1716     uint8_t* data = (uint8_t*)realloc(mData, desired);
1717     if (!data && desired > mDataCapacity) {
1718         mError = NO_MEMORY;
1719         return NO_MEMORY;
1720     }
1721 
1722     releaseObjects();
1723 
1724     if (data) {
1725         LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
1726         pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
1727         gParcelGlobalAllocSize += desired;
1728         gParcelGlobalAllocSize -= mDataCapacity;
1729         pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
1730         mData = data;
1731         mDataCapacity = desired;
1732     }
1733 
1734     mDataSize = mDataPos = 0;
1735     ALOGV("restartWrite Setting data size of %p to %zu", this, mDataSize);
1736     ALOGV("restartWrite Setting data pos of %p to %zu", this, mDataPos);
1737 
1738     free(mObjects);
1739     mObjects = NULL;
1740     mObjectsSize = mObjectsCapacity = 0;
1741     mNextObjectHint = 0;
1742     mHasFds = false;
1743     mFdsKnown = true;
1744     mAllowFds = true;
1745 
1746     return NO_ERROR;
1747 }
1748 
continueWrite(size_t desired)1749 status_t Parcel::continueWrite(size_t desired)
1750 {
1751     if (desired > INT32_MAX) {
1752         // don't accept size_t values which may have come from an
1753         // inadvertent conversion from a negative int.
1754         return BAD_VALUE;
1755     }
1756 
1757     // If shrinking, first adjust for any objects that appear
1758     // after the new data size.
1759     size_t objectsSize = mObjectsSize;
1760     if (desired < mDataSize) {
1761         if (desired == 0) {
1762             objectsSize = 0;
1763         } else {
1764             while (objectsSize > 0) {
1765                 if (mObjects[objectsSize-1] < desired)
1766                     break;
1767                 objectsSize--;
1768             }
1769         }
1770     }
1771 
1772     if (mOwner) {
1773         // If the size is going to zero, just release the owner's data.
1774         if (desired == 0) {
1775             freeData();
1776             return NO_ERROR;
1777         }
1778 
1779         // If there is a different owner, we need to take
1780         // posession.
1781         uint8_t* data = (uint8_t*)malloc(desired);
1782         if (!data) {
1783             mError = NO_MEMORY;
1784             return NO_MEMORY;
1785         }
1786         binder_size_t* objects = NULL;
1787 
1788         if (objectsSize) {
1789             objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
1790             if (!objects) {
1791                 free(data);
1792 
1793                 mError = NO_MEMORY;
1794                 return NO_MEMORY;
1795             }
1796 
1797             // Little hack to only acquire references on objects
1798             // we will be keeping.
1799             size_t oldObjectsSize = mObjectsSize;
1800             mObjectsSize = objectsSize;
1801             acquireObjects();
1802             mObjectsSize = oldObjectsSize;
1803         }
1804 
1805         if (mData) {
1806             memcpy(data, mData, mDataSize < desired ? mDataSize : desired);
1807         }
1808         if (objects && mObjects) {
1809             memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
1810         }
1811         //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
1812         mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
1813         mOwner = NULL;
1814 
1815         LOG_ALLOC("Parcel %p: taking ownership of %zu capacity", this, desired);
1816         pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
1817         gParcelGlobalAllocSize += desired;
1818         gParcelGlobalAllocCount++;
1819         pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
1820 
1821         mData = data;
1822         mObjects = objects;
1823         mDataSize = (mDataSize < desired) ? mDataSize : desired;
1824         ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
1825         mDataCapacity = desired;
1826         mObjectsSize = mObjectsCapacity = objectsSize;
1827         mNextObjectHint = 0;
1828 
1829     } else if (mData) {
1830         if (objectsSize < mObjectsSize) {
1831             // Need to release refs on any objects we are dropping.
1832             const sp<ProcessState> proc(ProcessState::self());
1833             for (size_t i=objectsSize; i<mObjectsSize; i++) {
1834                 const flat_binder_object* flat
1835                     = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
1836                 if (flat->type == BINDER_TYPE_FD) {
1837                     // will need to rescan because we may have lopped off the only FDs
1838                     mFdsKnown = false;
1839                 }
1840                 release_object(proc, *flat, this, &mOpenAshmemSize);
1841             }
1842             binder_size_t* objects =
1843                 (binder_size_t*)realloc(mObjects, objectsSize*sizeof(binder_size_t));
1844             if (objects) {
1845                 mObjects = objects;
1846             }
1847             mObjectsSize = objectsSize;
1848             mNextObjectHint = 0;
1849         }
1850 
1851         // We own the data, so we can just do a realloc().
1852         if (desired > mDataCapacity) {
1853             uint8_t* data = (uint8_t*)realloc(mData, desired);
1854             if (data) {
1855                 LOG_ALLOC("Parcel %p: continue from %zu to %zu capacity", this, mDataCapacity,
1856                         desired);
1857                 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
1858                 gParcelGlobalAllocSize += desired;
1859                 gParcelGlobalAllocSize -= mDataCapacity;
1860                 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
1861                 mData = data;
1862                 mDataCapacity = desired;
1863             } else if (desired > mDataCapacity) {
1864                 mError = NO_MEMORY;
1865                 return NO_MEMORY;
1866             }
1867         } else {
1868             if (mDataSize > desired) {
1869                 mDataSize = desired;
1870                 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
1871             }
1872             if (mDataPos > desired) {
1873                 mDataPos = desired;
1874                 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
1875             }
1876         }
1877 
1878     } else {
1879         // This is the first data.  Easy!
1880         uint8_t* data = (uint8_t*)malloc(desired);
1881         if (!data) {
1882             mError = NO_MEMORY;
1883             return NO_MEMORY;
1884         }
1885 
1886         if(!(mDataCapacity == 0 && mObjects == NULL
1887              && mObjectsCapacity == 0)) {
1888             ALOGE("continueWrite: %zu/%p/%zu/%zu", mDataCapacity, mObjects, mObjectsCapacity, desired);
1889         }
1890 
1891         LOG_ALLOC("Parcel %p: allocating with %zu capacity", this, desired);
1892         pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
1893         gParcelGlobalAllocSize += desired;
1894         gParcelGlobalAllocCount++;
1895         pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
1896 
1897         mData = data;
1898         mDataSize = mDataPos = 0;
1899         ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
1900         ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
1901         mDataCapacity = desired;
1902     }
1903 
1904     return NO_ERROR;
1905 }
1906 
initState()1907 void Parcel::initState()
1908 {
1909     LOG_ALLOC("Parcel %p: initState", this);
1910     mError = NO_ERROR;
1911     mData = 0;
1912     mDataSize = 0;
1913     mDataCapacity = 0;
1914     mDataPos = 0;
1915     ALOGV("initState Setting data size of %p to %zu", this, mDataSize);
1916     ALOGV("initState Setting data pos of %p to %zu", this, mDataPos);
1917     mObjects = NULL;
1918     mObjectsSize = 0;
1919     mObjectsCapacity = 0;
1920     mNextObjectHint = 0;
1921     mHasFds = false;
1922     mFdsKnown = true;
1923     mAllowFds = true;
1924     mOwner = NULL;
1925     mOpenAshmemSize = 0;
1926 }
1927 
scanForFds() const1928 void Parcel::scanForFds() const
1929 {
1930     bool hasFds = false;
1931     for (size_t i=0; i<mObjectsSize; i++) {
1932         const flat_binder_object* flat
1933             = reinterpret_cast<const flat_binder_object*>(mData + mObjects[i]);
1934         if (flat->type == BINDER_TYPE_FD) {
1935             hasFds = true;
1936             break;
1937         }
1938     }
1939     mHasFds = hasFds;
1940     mFdsKnown = true;
1941 }
1942 
getBlobAshmemSize() const1943 size_t Parcel::getBlobAshmemSize() const
1944 {
1945     // This used to return the size of all blobs that were written to ashmem, now we're returning
1946     // the ashmem currently referenced by this Parcel, which should be equivalent.
1947     // TODO: Remove method once ABI can be changed.
1948     return mOpenAshmemSize;
1949 }
1950 
getOpenAshmemSize() const1951 size_t Parcel::getOpenAshmemSize() const
1952 {
1953     return mOpenAshmemSize;
1954 }
1955 
1956 // --- Parcel::Blob ---
1957 
Blob()1958 Parcel::Blob::Blob() :
1959         mFd(-1), mData(NULL), mSize(0), mMutable(false) {
1960 }
1961 
~Blob()1962 Parcel::Blob::~Blob() {
1963     release();
1964 }
1965 
release()1966 void Parcel::Blob::release() {
1967     if (mFd != -1 && mData) {
1968         ::munmap(mData, mSize);
1969     }
1970     clear();
1971 }
1972 
init(int fd,void * data,size_t size,bool isMutable)1973 void Parcel::Blob::init(int fd, void* data, size_t size, bool isMutable) {
1974     mFd = fd;
1975     mData = data;
1976     mSize = size;
1977     mMutable = isMutable;
1978 }
1979 
clear()1980 void Parcel::Blob::clear() {
1981     mFd = -1;
1982     mData = NULL;
1983     mSize = 0;
1984     mMutable = false;
1985 }
1986 
1987 }; // namespace android
1988