blob: 333b95badc089919242088888e7d094f7ee2be49 [file] [log] [blame]
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001/*
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
Mark Salyzynabed7f72016-01-27 08:02:48 -080020#include <errno.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080021#include <fcntl.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080022#include <inttypes.h>
Steven Morelandbf1915b2020-07-16 22:43:02 +000023#include <linux/sched.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080024#include <pthread.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080025#include <stdint.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <sys/mman.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080029#include <sys/stat.h>
30#include <sys/types.h>
Christopher Tatee4e0ae82016-03-24 16:03:44 -070031#include <sys/resource.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080032#include <unistd.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070033
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070034#include <binder/Binder.h>
35#include <binder/BpBinder.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080036#include <binder/IPCThreadState.h>
37#include <binder/Parcel.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070038#include <binder/ProcessState.h>
Steven Moreland6e5a7752019-08-05 20:30:14 -070039#include <binder/Stability.h>
Christopher Wiley09eb7492015-11-09 15:06:15 -080040#include <binder/Status.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070041#include <binder/TextOutput.h>
42
Mark Salyzynabed7f72016-01-27 08:02:48 -080043#include <cutils/ashmem.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080044#include <utils/Flattenable.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070045#include <utils/Log.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080046#include <utils/misc.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070047#include <utils/String8.h>
48#include <utils/String16.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070049
Mathias Agopian208059f2009-05-18 15:08:03 -070050#include <private/binder/binder_module.h>
Steven Morelanda4853cd2019-07-12 15:44:37 -070051#include "Static.h"
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070052
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070053#define LOG_REFS(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080054//#define LOG_REFS(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
Dianne Hackborn7e790af2014-11-11 12:22:53 -080055#define LOG_ALLOC(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080056//#define LOG_ALLOC(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070057
58// ---------------------------------------------------------------------------
59
Nick Kralevichb6b14232015-04-02 09:36:02 -070060// This macro should never be used at runtime, as a too large value
61// of s could cause an integer overflow. Instead, you should always
62// use the wrapper function pad_size()
63#define PAD_SIZE_UNSAFE(s) (((s)+3)&~3)
64
65static size_t pad_size(size_t s) {
Steven Moreland28723ae2019-04-01 18:52:30 -070066 if (s > (std::numeric_limits<size_t>::max() - 3)) {
Steven Moreland6adf33c2019-09-25 13:18:09 -070067 LOG_ALWAYS_FATAL("pad size too big %zu", s);
Nick Kralevichb6b14232015-04-02 09:36:02 -070068 }
69 return PAD_SIZE_UNSAFE(s);
70}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070071
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070072// Note: must be kept in sync with android/os/StrictMode.java's PENALTY_GATHER
Jeff Sharkey05827be2018-06-26 10:52:38 -060073#define STRICT_MODE_PENALTY_GATHER (1 << 31)
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070074
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070075namespace android {
76
Steven Moreland7b102262019-08-01 15:48:43 -070077// many things compile this into prebuilts on the stack
78static_assert(sizeof(Parcel) == 60 || sizeof(Parcel) == 120);
79
Dianne Hackborna4cff882014-11-13 17:07:40 -080080static pthread_mutex_t gParcelGlobalAllocSizeLock = PTHREAD_MUTEX_INITIALIZER;
81static size_t gParcelGlobalAllocSize = 0;
82static size_t gParcelGlobalAllocCount = 0;
83
Christopher Tatee4e0ae82016-03-24 16:03:44 -070084static size_t gMaxFds = 0;
85
Jeff Brown13b16042014-11-11 16:44:25 -080086// Maximum size of a blob to transfer in-place.
87static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
88
89enum {
90 BLOB_INPLACE = 0,
91 BLOB_ASHMEM_IMMUTABLE = 1,
92 BLOB_ASHMEM_MUTABLE = 2,
93};
94
Steven Morelandb1c81202019-04-05 18:49:55 -070095static void acquire_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -070096 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070097{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -070098 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070099 case BINDER_TYPE_BINDER:
100 if (obj.binder) {
101 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800102 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700103 }
104 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700105 case BINDER_TYPE_HANDLE: {
106 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700107 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700108 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
109 b->incStrong(who);
110 }
111 return;
112 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700113 case BINDER_TYPE_FD: {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000114 if ((obj.cookie != 0) && (outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700115 // If we own an ashmem fd, keep track of how much memory it refers to.
116 int size = ashmem_get_size_region(obj.handle);
117 if (size > 0) {
118 *outAshmemSize += size;
Adrian Rooscbf37262015-10-22 16:12:53 -0700119 }
120 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700121 return;
122 }
123 }
124
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700125 ALOGD("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700126}
127
Adrian Roos6bb31142015-10-22 16:46:12 -0700128static void release_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -0700129 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700130{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700131 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700132 case BINDER_TYPE_BINDER:
133 if (obj.binder) {
134 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800135 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700136 }
137 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700138 case BINDER_TYPE_HANDLE: {
139 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700140 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700141 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
142 b->decStrong(who);
143 }
144 return;
145 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700146 case BINDER_TYPE_FD: {
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800147 if (obj.cookie != 0) { // owned
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000148 if ((outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700149 int size = ashmem_get_size_region(obj.handle);
150 if (size > 0) {
Tri Voaa6e1112019-01-29 13:23:46 -0800151 // ashmem size might have changed since last time it was accounted for, e.g.
152 // in acquire_object(). Value of *outAshmemSize is not critical since we are
153 // releasing the object anyway. Check for integer overflow condition.
154 *outAshmemSize -= std::min(*outAshmemSize, static_cast<size_t>(size));
Adrian Roos6bb31142015-10-22 16:46:12 -0700155 }
Adrian Roos6bb31142015-10-22 16:46:12 -0700156 }
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800157
158 close(obj.handle);
Adrian Rooscbf37262015-10-22 16:12:53 -0700159 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700160 return;
161 }
162 }
163
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700164 ALOGE("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700165}
166
Steven Morelanda86a3562019-08-01 23:28:34 +0000167status_t Parcel::finishFlattenBinder(
168 const sp<IBinder>& binder, const flat_binder_object& flat)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700169{
Steven Morelanda86a3562019-08-01 23:28:34 +0000170 status_t status = writeObject(flat, false);
171 if (status != OK) return status;
172
Steven Moreland6e5a7752019-08-05 20:30:14 -0700173 internal::Stability::tryMarkCompilationUnit(binder.get());
Steven Morelanda86a3562019-08-01 23:28:34 +0000174 return writeInt32(internal::Stability::get(binder.get()));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700175}
176
Steven Morelanda86a3562019-08-01 23:28:34 +0000177status_t Parcel::finishUnflattenBinder(
178 const sp<IBinder>& binder, sp<IBinder>* out) const
179{
180 int32_t stability;
181 status_t status = readInt32(&stability);
182 if (status != OK) return status;
183
Steven Moreland05929552019-07-31 17:51:25 -0700184 status = internal::Stability::set(binder.get(), stability, true /*log*/);
Steven Morelanda86a3562019-08-01 23:28:34 +0000185 if (status != OK) return status;
186
187 *out = binder;
188 return OK;
189}
190
Steven Morelandbf1915b2020-07-16 22:43:02 +0000191static constexpr inline int schedPolicyMask(int policy, int priority) {
192 return (priority & FLAT_BINDER_FLAG_PRIORITY_MASK) | ((policy & 3) << FLAT_BINDER_FLAG_SCHED_POLICY_SHIFT);
193}
194
Steven Morelanda86a3562019-08-01 23:28:34 +0000195status_t Parcel::flattenBinder(const sp<IBinder>& binder)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700196{
197 flat_binder_object obj;
Steven Morelandbf1915b2020-07-16 22:43:02 +0000198 obj.flags = FLAT_BINDER_FLAG_ACCEPTS_FDS;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700199
Steven Morelandbf1915b2020-07-16 22:43:02 +0000200 int schedBits = 0;
201 if (!IPCThreadState::self()->backgroundSchedulingDisabled()) {
202 schedBits = schedPolicyMask(SCHED_NORMAL, 19);
Martijn Coenen2b631742017-05-05 11:16:59 -0700203 }
204
Yi Kong91635562018-06-07 14:38:36 -0700205 if (binder != nullptr) {
Steven Morelandf0212002018-12-26 13:59:23 -0800206 BBinder *local = binder->localBinder();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700207 if (!local) {
208 BpBinder *proxy = binder->remoteBinder();
Yi Kong91635562018-06-07 14:38:36 -0700209 if (proxy == nullptr) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000210 ALOGE("null proxy");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700211 }
212 const int32_t handle = proxy ? proxy->handle() : 0;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700213 obj.hdr.type = BINDER_TYPE_HANDLE;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -0800214 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700215 obj.handle = handle;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800216 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700217 } else {
Steven Morelandbf1915b2020-07-16 22:43:02 +0000218 int policy = local->getMinSchedulerPolicy();
219 int priority = local->getMinSchedulerPriority();
220
221 if (policy != 0 || priority != 0) {
222 // override value, since it is set explicitly
223 schedBits = schedPolicyMask(policy, priority);
224 }
Steven Morelandf0212002018-12-26 13:59:23 -0800225 if (local->isRequestingSid()) {
226 obj.flags |= FLAT_BINDER_FLAG_TXN_SECURITY_CTX;
227 }
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700228 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800229 obj.binder = reinterpret_cast<uintptr_t>(local->getWeakRefs());
230 obj.cookie = reinterpret_cast<uintptr_t>(local);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700231 }
232 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700233 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800234 obj.binder = 0;
235 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700236 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700237
Steven Morelandbf1915b2020-07-16 22:43:02 +0000238 obj.flags |= schedBits;
239
Steven Morelanda86a3562019-08-01 23:28:34 +0000240 return finishFlattenBinder(binder, obj);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700241}
242
Steven Morelanda86a3562019-08-01 23:28:34 +0000243status_t Parcel::unflattenBinder(sp<IBinder>* out) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700244{
Steven Morelanda86a3562019-08-01 23:28:34 +0000245 const flat_binder_object* flat = readObject(false);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700246
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700247 if (flat) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700248 switch (flat->hdr.type) {
Steven Morelanda86a3562019-08-01 23:28:34 +0000249 case BINDER_TYPE_BINDER: {
250 sp<IBinder> binder = reinterpret_cast<IBinder*>(flat->cookie);
251 return finishUnflattenBinder(binder, out);
252 }
253 case BINDER_TYPE_HANDLE: {
254 sp<IBinder> binder =
255 ProcessState::self()->getStrongProxyForHandle(flat->handle);
256 return finishUnflattenBinder(binder, out);
257 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700258 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700259 }
260 return BAD_TYPE;
261}
262
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700263// ---------------------------------------------------------------------------
264
265Parcel::Parcel()
266{
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800267 LOG_ALLOC("Parcel %p: constructing", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700268 initState();
269}
270
271Parcel::~Parcel()
272{
273 freeDataNoInit();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800274 LOG_ALLOC("Parcel %p: destroyed", this);
275}
276
277size_t Parcel::getGlobalAllocSize() {
Dianne Hackborna4cff882014-11-13 17:07:40 -0800278 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
279 size_t size = gParcelGlobalAllocSize;
280 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
281 return size;
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800282}
283
284size_t Parcel::getGlobalAllocCount() {
Dianne Hackborna4cff882014-11-13 17:07:40 -0800285 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
286 size_t count = gParcelGlobalAllocCount;
287 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
288 return count;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700289}
290
291const uint8_t* Parcel::data() const
292{
293 return mData;
294}
295
296size_t Parcel::dataSize() const
297{
298 return (mDataSize > mDataPos ? mDataSize : mDataPos);
299}
300
301size_t Parcel::dataAvail() const
302{
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700303 size_t result = dataSize() - dataPosition();
304 if (result > INT32_MAX) {
Steven Moreland6adf33c2019-09-25 13:18:09 -0700305 LOG_ALWAYS_FATAL("result too big: %zu", result);
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700306 }
307 return result;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700308}
309
310size_t Parcel::dataPosition() const
311{
312 return mDataPos;
313}
314
315size_t Parcel::dataCapacity() const
316{
317 return mDataCapacity;
318}
319
320status_t Parcel::setDataSize(size_t size)
321{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700322 if (size > INT32_MAX) {
323 // don't accept size_t values which may have come from an
324 // inadvertent conversion from a negative int.
325 return BAD_VALUE;
326 }
327
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700328 status_t err;
329 err = continueWrite(size);
330 if (err == NO_ERROR) {
331 mDataSize = size;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700332 ALOGV("setDataSize Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700333 }
334 return err;
335}
336
337void Parcel::setDataPosition(size_t pos) const
338{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700339 if (pos > INT32_MAX) {
340 // don't accept size_t values which may have come from an
341 // inadvertent conversion from a negative int.
Steven Moreland6adf33c2019-09-25 13:18:09 -0700342 LOG_ALWAYS_FATAL("pos too big: %zu", pos);
Nick Kralevichb6b14232015-04-02 09:36:02 -0700343 }
344
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700345 mDataPos = pos;
346 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -0800347 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700348}
349
350status_t Parcel::setDataCapacity(size_t size)
351{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700352 if (size > INT32_MAX) {
353 // don't accept size_t values which may have come from an
354 // inadvertent conversion from a negative int.
355 return BAD_VALUE;
356 }
357
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700358 if (size > mDataCapacity) return continueWrite(size);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700359 return NO_ERROR;
360}
361
362status_t Parcel::setData(const uint8_t* buffer, size_t len)
363{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700364 if (len > INT32_MAX) {
365 // don't accept size_t values which may have come from an
366 // inadvertent conversion from a negative int.
367 return BAD_VALUE;
368 }
369
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700370 status_t err = restartWrite(len);
371 if (err == NO_ERROR) {
372 memcpy(const_cast<uint8_t*>(data()), buffer, len);
373 mDataSize = len;
374 mFdsKnown = false;
375 }
376 return err;
377}
378
Andreas Huber51faf462011-04-13 10:21:56 -0700379status_t Parcel::appendFrom(const Parcel *parcel, size_t offset, size_t len)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700380{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700381 status_t err;
Andreas Huber51faf462011-04-13 10:21:56 -0700382 const uint8_t *data = parcel->mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800383 const binder_size_t *objects = parcel->mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700384 size_t size = parcel->mObjectsSize;
385 int startPos = mDataPos;
386 int firstIndex = -1, lastIndex = -2;
387
388 if (len == 0) {
389 return NO_ERROR;
390 }
391
Nick Kralevichb6b14232015-04-02 09:36:02 -0700392 if (len > INT32_MAX) {
393 // don't accept size_t values which may have come from an
394 // inadvertent conversion from a negative int.
395 return BAD_VALUE;
396 }
397
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700398 // range checks against the source parcel size
399 if ((offset > parcel->mDataSize)
400 || (len > parcel->mDataSize)
401 || (offset + len > parcel->mDataSize)) {
402 return BAD_VALUE;
403 }
404
405 // Count objects in range
406 for (int i = 0; i < (int) size; i++) {
407 size_t off = objects[i];
Christopher Tate27182be2015-05-27 17:53:02 -0700408 if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700409 if (firstIndex == -1) {
410 firstIndex = i;
411 }
412 lastIndex = i;
413 }
414 }
415 int numObjects = lastIndex - firstIndex + 1;
416
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700417 if ((mDataSize+len) > mDataCapacity) {
418 // grow data
419 err = growData(len);
420 if (err != NO_ERROR) {
421 return err;
422 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700423 }
424
425 // append data
426 memcpy(mData + mDataPos, data + offset, len);
427 mDataPos += len;
428 mDataSize += len;
429
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400430 err = NO_ERROR;
431
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700432 if (numObjects > 0) {
Martijn Coenen69390d42018-10-22 15:18:10 +0200433 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700434 // grow objects
435 if (mObjectsCapacity < mObjectsSize + numObjects) {
Martijn Coenen93fe5182020-01-22 10:46:25 +0100436 if ((size_t) numObjects > SIZE_MAX - mObjectsSize) return NO_MEMORY; // overflow
437 if (mObjectsSize + numObjects > SIZE_MAX / 3) return NO_MEMORY; // overflow
Christopher Tateed7a50c2015-06-08 14:45:14 -0700438 size_t newSize = ((mObjectsSize + numObjects)*3)/2;
Martijn Coenen93fe5182020-01-22 10:46:25 +0100439 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800440 binder_size_t *objects =
441 (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -0700442 if (objects == (binder_size_t*)nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700443 return NO_MEMORY;
444 }
445 mObjects = objects;
446 mObjectsCapacity = newSize;
447 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700448
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700449 // append and acquire objects
450 int idx = mObjectsSize;
451 for (int i = firstIndex; i <= lastIndex; i++) {
452 size_t off = objects[i] - offset + startPos;
453 mObjects[idx++] = off;
454 mObjectsSize++;
455
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700456 flat_binder_object* flat
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700457 = reinterpret_cast<flat_binder_object*>(mData + off);
Adrian Rooscbf37262015-10-22 16:12:53 -0700458 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700459
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700460 if (flat->hdr.type == BINDER_TYPE_FD) {
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700461 // If this is a file descriptor, we need to dup it so the
462 // new Parcel now owns its own fd, and can declare that we
463 // officially know we have fds.
Nick Kralevichec9ec7d2016-12-17 19:47:27 -0800464 flat->handle = fcntl(flat->handle, F_DUPFD_CLOEXEC, 0);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800465 flat->cookie = 1;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700466 mHasFds = mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400467 if (!mAllowFds) {
468 err = FDS_NOT_ALLOWED;
469 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700470 }
471 }
472 }
473
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400474 return err;
475}
476
Dianne Hackborn15feb9b2017-04-10 15:34:35 -0700477int Parcel::compareData(const Parcel& other) {
478 size_t size = dataSize();
479 if (size != other.dataSize()) {
480 return size < other.dataSize() ? -1 : 1;
481 }
482 return memcmp(data(), other.data(), size);
483}
484
Jeff Brown13b16042014-11-11 16:44:25 -0800485bool Parcel::allowFds() const
486{
487 return mAllowFds;
488}
489
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700490bool Parcel::pushAllowFds(bool allowFds)
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400491{
492 const bool origValue = mAllowFds;
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700493 if (!allowFds) {
494 mAllowFds = false;
495 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400496 return origValue;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700497}
498
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700499void Parcel::restoreAllowFds(bool lastValue)
500{
501 mAllowFds = lastValue;
502}
503
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700504bool Parcel::hasFileDescriptors() const
505{
506 if (!mFdsKnown) {
507 scanForFds();
508 }
509 return mHasFds;
510}
511
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000512void Parcel::updateWorkSourceRequestHeaderPosition() const {
513 // Only update the request headers once. We only want to point
514 // to the first headers read/written.
515 if (!mRequestHeaderPresent) {
516 mWorkSourceRequestHeaderPosition = dataPosition();
517 mRequestHeaderPresent = true;
518 }
519}
520
Jooyung Han1b228f42020-01-30 13:41:12 +0900521#if defined(__ANDROID_VNDK__) && !defined(__ANDROID_APEX__)
Steven Morelandd70160f2019-07-23 10:20:38 -0700522constexpr int32_t kHeader = B_PACK_CHARS('V', 'N', 'D', 'R');
523#else
524constexpr int32_t kHeader = B_PACK_CHARS('S', 'Y', 'S', 'T');
525#endif
526
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700527// Write RPC headers. (previously just the interface token)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700528status_t Parcel::writeInterfaceToken(const String16& interface)
529{
Olivier Gaillard91a04802018-11-14 17:32:41 +0000530 const IPCThreadState* threadState = IPCThreadState::self();
531 writeInt32(threadState->getStrictModePolicy() | STRICT_MODE_PENALTY_GATHER);
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000532 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000533 writeInt32(threadState->shouldPropagateWorkSource() ?
534 threadState->getCallingWorkSourceUid() : IPCThreadState::kUnsetWorkSource);
Steven Morelandd70160f2019-07-23 10:20:38 -0700535 writeInt32(kHeader);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700536 // currently the interface identification token is just its name as a string
537 return writeString16(interface);
538}
539
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000540bool Parcel::replaceCallingWorkSourceUid(uid_t uid)
541{
542 if (!mRequestHeaderPresent) {
543 return false;
544 }
545
546 const size_t initialPosition = dataPosition();
547 setDataPosition(mWorkSourceRequestHeaderPosition);
548 status_t err = writeInt32(uid);
549 setDataPosition(initialPosition);
550 return err == NO_ERROR;
551}
552
Steven Morelandf1b1e492019-05-06 15:05:13 -0700553uid_t Parcel::readCallingWorkSourceUid() const
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000554{
555 if (!mRequestHeaderPresent) {
556 return IPCThreadState::kUnsetWorkSource;
557 }
558
559 const size_t initialPosition = dataPosition();
560 setDataPosition(mWorkSourceRequestHeaderPosition);
561 uid_t uid = readInt32();
562 setDataPosition(initialPosition);
563 return uid;
564}
565
Mathias Agopian83c04462009-05-22 19:00:22 -0700566bool Parcel::checkInterface(IBinder* binder) const
567{
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700568 return enforceInterface(binder->getInterfaceDescriptor());
Mathias Agopian83c04462009-05-22 19:00:22 -0700569}
570
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700571bool Parcel::enforceInterface(const String16& interface,
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700572 IPCThreadState* threadState) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700573{
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700574 return enforceInterface(interface.string(), interface.size(), threadState);
575}
576
577bool Parcel::enforceInterface(const char16_t* interface,
578 size_t len,
579 IPCThreadState* threadState) const
580{
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100581 // StrictModePolicy.
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700582 int32_t strictPolicy = readInt32();
Yi Kong91635562018-06-07 14:38:36 -0700583 if (threadState == nullptr) {
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700584 threadState = IPCThreadState::self();
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700585 }
Brad Fitzpatrick52736032010-08-30 16:01:16 -0700586 if ((threadState->getLastTransactionBinderFlags() &
587 IBinder::FLAG_ONEWAY) != 0) {
588 // For one-way calls, the callee is running entirely
589 // disconnected from the caller, so disable StrictMode entirely.
590 // Not only does disk/network usage not impact the caller, but
591 // there's no way to commuicate back any violations anyway.
592 threadState->setStrictModePolicy(0);
593 } else {
594 threadState->setStrictModePolicy(strictPolicy);
595 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100596 // WorkSource.
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000597 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100598 int32_t workSource = readInt32();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000599 threadState->setCallingWorkSourceUidWithoutPropagation(workSource);
Steven Morelandd70160f2019-07-23 10:20:38 -0700600 // vendor header
601 int32_t header = readInt32();
602 if (header != kHeader) {
603 ALOGE("Expecting header 0x%x but found 0x%x. Mixing copies of libbinder?", kHeader, header);
604 return false;
605 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100606 // Interface descriptor.
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700607 size_t parcel_interface_len;
608 const char16_t* parcel_interface = readString16Inplace(&parcel_interface_len);
609 if (len == parcel_interface_len &&
610 (!len || !memcmp(parcel_interface, interface, len * sizeof (char16_t)))) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700611 return true;
612 } else {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700613 ALOGW("**** enforceInterface() expected '%s' but read '%s'",
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700614 String8(interface, len).string(),
615 String8(parcel_interface, parcel_interface_len).string());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700616 return false;
617 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700618}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700619
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700620size_t Parcel::objectsCount() const
621{
622 return mObjectsSize;
623}
624
625status_t Parcel::errorCheck() const
626{
627 return mError;
628}
629
630void Parcel::setError(status_t err)
631{
632 mError = err;
633}
634
635status_t Parcel::finishWrite(size_t len)
636{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700637 if (len > INT32_MAX) {
638 // don't accept size_t values which may have come from an
639 // inadvertent conversion from a negative int.
640 return BAD_VALUE;
641 }
642
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700643 //printf("Finish write of %d\n", len);
644 mDataPos += len;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700645 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700646 if (mDataPos > mDataSize) {
647 mDataSize = mDataPos;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700648 ALOGV("finishWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700649 }
650 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
651 return NO_ERROR;
652}
653
654status_t Parcel::writeUnpadded(const void* data, size_t len)
655{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700656 if (len > INT32_MAX) {
657 // don't accept size_t values which may have come from an
658 // inadvertent conversion from a negative int.
659 return BAD_VALUE;
660 }
661
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700662 size_t end = mDataPos + len;
663 if (end < mDataPos) {
664 // integer overflow
665 return BAD_VALUE;
666 }
667
668 if (end <= mDataCapacity) {
669restart_write:
670 memcpy(mData+mDataPos, data, len);
671 return finishWrite(len);
672 }
673
674 status_t err = growData(len);
675 if (err == NO_ERROR) goto restart_write;
676 return err;
677}
678
679status_t Parcel::write(const void* data, size_t len)
680{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700681 if (len > INT32_MAX) {
682 // don't accept size_t values which may have come from an
683 // inadvertent conversion from a negative int.
684 return BAD_VALUE;
685 }
686
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700687 void* const d = writeInplace(len);
688 if (d) {
689 memcpy(d, data, len);
690 return NO_ERROR;
691 }
692 return mError;
693}
694
695void* Parcel::writeInplace(size_t len)
696{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700697 if (len > INT32_MAX) {
698 // don't accept size_t values which may have come from an
699 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -0700700 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -0700701 }
702
703 const size_t padded = pad_size(len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700704
705 // sanity check for integer overflow
706 if (mDataPos+padded < mDataPos) {
Yi Kong91635562018-06-07 14:38:36 -0700707 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700708 }
709
710 if ((mDataPos+padded) <= mDataCapacity) {
711restart_write:
712 //printf("Writing %ld bytes, padded to %ld\n", len, padded);
713 uint8_t* const data = mData+mDataPos;
714
715 // Need to pad at end?
716 if (padded != len) {
717#if BYTE_ORDER == BIG_ENDIAN
718 static const uint32_t mask[4] = {
719 0x00000000, 0xffffff00, 0xffff0000, 0xff000000
720 };
721#endif
722#if BYTE_ORDER == LITTLE_ENDIAN
723 static const uint32_t mask[4] = {
724 0x00000000, 0x00ffffff, 0x0000ffff, 0x000000ff
725 };
726#endif
727 //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
728 // *reinterpret_cast<void**>(data+padded-4));
729 *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
730 }
731
732 finishWrite(padded);
733 return data;
734 }
735
736 status_t err = growData(padded);
737 if (err == NO_ERROR) goto restart_write;
Yi Kong91635562018-06-07 14:38:36 -0700738 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700739}
740
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800741status_t Parcel::writeUtf8AsUtf16(const std::string& str) {
742 const uint8_t* strData = (uint8_t*)str.data();
743 const size_t strLen= str.length();
744 const ssize_t utf16Len = utf8_to_utf16_length(strData, strLen);
Sergio Girof4607432016-07-21 14:46:35 +0100745 if (utf16Len < 0 || utf16Len > std::numeric_limits<int32_t>::max()) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800746 return BAD_VALUE;
747 }
748
749 status_t err = writeInt32(utf16Len);
750 if (err) {
751 return err;
752 }
753
754 // Allocate enough bytes to hold our converted string and its terminating NULL.
755 void* dst = writeInplace((utf16Len + 1) * sizeof(char16_t));
756 if (!dst) {
757 return NO_MEMORY;
758 }
759
Sergio Girof4607432016-07-21 14:46:35 +0100760 utf8_to_utf16(strData, strLen, (char16_t*)dst, (size_t) utf16Len + 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800761
762 return NO_ERROR;
763}
764
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900765status_t Parcel::writeUtf8AsUtf16(const std::optional<std::string>& str) {
766 if (!str) {
767 return writeInt32(-1);
768 }
769 return writeUtf8AsUtf16(*str);
770}
771
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800772status_t Parcel::writeUtf8AsUtf16(const std::unique_ptr<std::string>& str) {
773 if (!str) {
774 return writeInt32(-1);
775 }
776 return writeUtf8AsUtf16(*str);
777}
778
Daniel Normand0337ef2019-09-20 15:46:03 -0700779status_t Parcel::writeByteVectorInternal(const int8_t* data, size_t size) {
780 if (size > std::numeric_limits<int32_t>::max()) {
781 return BAD_VALUE;
Casey Dahlin451ff582015-10-19 18:12:18 -0700782 }
783
Daniel Normand0337ef2019-09-20 15:46:03 -0700784 status_t status = writeInt32(size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700785 if (status != OK) {
786 return status;
787 }
788
Daniel Normand0337ef2019-09-20 15:46:03 -0700789 return write(data, size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700790}
791
Casey Dahlin185d3442016-02-09 11:08:35 -0800792status_t Parcel::writeByteVector(const std::vector<int8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700793 return writeByteVectorInternal(val.data(), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800794}
795
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900796status_t Parcel::writeByteVector(const std::optional<std::vector<int8_t>>& val)
797{
798 if (!val) return writeInt32(-1);
799 return writeByteVectorInternal(val->data(), val->size());
800}
801
Casey Dahlin185d3442016-02-09 11:08:35 -0800802status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<int8_t>>& val)
803{
Daniel Normand0337ef2019-09-20 15:46:03 -0700804 if (!val) return writeInt32(-1);
805 return writeByteVectorInternal(val->data(), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800806}
807
808status_t Parcel::writeByteVector(const std::vector<uint8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700809 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val.data()), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800810}
811
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900812status_t Parcel::writeByteVector(const std::optional<std::vector<uint8_t>>& val)
813{
814 if (!val) return writeInt32(-1);
815 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
816}
817
Casey Dahlin185d3442016-02-09 11:08:35 -0800818status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<uint8_t>>& val)
819{
Daniel Normand0337ef2019-09-20 15:46:03 -0700820 if (!val) return writeInt32(-1);
821 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800822}
823
Casey Dahlin451ff582015-10-19 18:12:18 -0700824status_t Parcel::writeInt32Vector(const std::vector<int32_t>& val)
825{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800826 return writeTypedVector(val, &Parcel::writeInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -0700827}
828
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900829status_t Parcel::writeInt32Vector(const std::optional<std::vector<int32_t>>& val)
830{
831 return writeNullableTypedVector(val, &Parcel::writeInt32);
832}
833
Casey Dahlinb9872622015-11-25 15:09:45 -0800834status_t Parcel::writeInt32Vector(const std::unique_ptr<std::vector<int32_t>>& val)
835{
836 return writeNullableTypedVector(val, &Parcel::writeInt32);
837}
838
Casey Dahlin451ff582015-10-19 18:12:18 -0700839status_t Parcel::writeInt64Vector(const std::vector<int64_t>& val)
840{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800841 return writeTypedVector(val, &Parcel::writeInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -0700842}
843
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900844status_t Parcel::writeInt64Vector(const std::optional<std::vector<int64_t>>& val)
845{
846 return writeNullableTypedVector(val, &Parcel::writeInt64);
847}
848
Casey Dahlinb9872622015-11-25 15:09:45 -0800849status_t Parcel::writeInt64Vector(const std::unique_ptr<std::vector<int64_t>>& val)
850{
851 return writeNullableTypedVector(val, &Parcel::writeInt64);
852}
853
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800854status_t Parcel::writeUint64Vector(const std::vector<uint64_t>& val)
855{
856 return writeTypedVector(val, &Parcel::writeUint64);
857}
858
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900859status_t Parcel::writeUint64Vector(const std::optional<std::vector<uint64_t>>& val)
860{
861 return writeNullableTypedVector(val, &Parcel::writeUint64);
862}
863
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800864status_t Parcel::writeUint64Vector(const std::unique_ptr<std::vector<uint64_t>>& val)
865{
866 return writeNullableTypedVector(val, &Parcel::writeUint64);
867}
868
Casey Dahlin451ff582015-10-19 18:12:18 -0700869status_t Parcel::writeFloatVector(const std::vector<float>& val)
870{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800871 return writeTypedVector(val, &Parcel::writeFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -0700872}
873
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900874status_t Parcel::writeFloatVector(const std::optional<std::vector<float>>& val)
875{
876 return writeNullableTypedVector(val, &Parcel::writeFloat);
877}
878
Casey Dahlinb9872622015-11-25 15:09:45 -0800879status_t Parcel::writeFloatVector(const std::unique_ptr<std::vector<float>>& val)
880{
881 return writeNullableTypedVector(val, &Parcel::writeFloat);
882}
883
Casey Dahlin451ff582015-10-19 18:12:18 -0700884status_t Parcel::writeDoubleVector(const std::vector<double>& val)
885{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800886 return writeTypedVector(val, &Parcel::writeDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -0700887}
888
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900889status_t Parcel::writeDoubleVector(const std::optional<std::vector<double>>& val)
890{
891 return writeNullableTypedVector(val, &Parcel::writeDouble);
892}
893
Casey Dahlinb9872622015-11-25 15:09:45 -0800894status_t Parcel::writeDoubleVector(const std::unique_ptr<std::vector<double>>& val)
895{
896 return writeNullableTypedVector(val, &Parcel::writeDouble);
897}
898
Casey Dahlin451ff582015-10-19 18:12:18 -0700899status_t Parcel::writeBoolVector(const std::vector<bool>& val)
900{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800901 return writeTypedVector(val, &Parcel::writeBool);
Casey Dahlin451ff582015-10-19 18:12:18 -0700902}
903
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900904status_t Parcel::writeBoolVector(const std::optional<std::vector<bool>>& val)
905{
906 return writeNullableTypedVector(val, &Parcel::writeBool);
907}
908
Casey Dahlinb9872622015-11-25 15:09:45 -0800909status_t Parcel::writeBoolVector(const std::unique_ptr<std::vector<bool>>& val)
910{
911 return writeNullableTypedVector(val, &Parcel::writeBool);
912}
913
Casey Dahlin451ff582015-10-19 18:12:18 -0700914status_t Parcel::writeCharVector(const std::vector<char16_t>& val)
915{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800916 return writeTypedVector(val, &Parcel::writeChar);
Casey Dahlin451ff582015-10-19 18:12:18 -0700917}
918
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900919status_t Parcel::writeCharVector(const std::optional<std::vector<char16_t>>& val)
920{
921 return writeNullableTypedVector(val, &Parcel::writeChar);
922}
923
Casey Dahlinb9872622015-11-25 15:09:45 -0800924status_t Parcel::writeCharVector(const std::unique_ptr<std::vector<char16_t>>& val)
925{
926 return writeNullableTypedVector(val, &Parcel::writeChar);
927}
928
Casey Dahlin451ff582015-10-19 18:12:18 -0700929status_t Parcel::writeString16Vector(const std::vector<String16>& val)
930{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800931 return writeTypedVector(val, &Parcel::writeString16);
Casey Dahlin451ff582015-10-19 18:12:18 -0700932}
933
Casey Dahlinb9872622015-11-25 15:09:45 -0800934status_t Parcel::writeString16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900935 const std::optional<std::vector<std::optional<String16>>>& val)
936{
937 return writeNullableTypedVector(val, &Parcel::writeString16);
938}
939
940status_t Parcel::writeString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -0800941 const std::unique_ptr<std::vector<std::unique_ptr<String16>>>& val)
942{
943 return writeNullableTypedVector(val, &Parcel::writeString16);
944}
945
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800946status_t Parcel::writeUtf8VectorAsUtf16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900947 const std::optional<std::vector<std::optional<std::string>>>& val) {
948 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
949}
950
951status_t Parcel::writeUtf8VectorAsUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800952 const std::unique_ptr<std::vector<std::unique_ptr<std::string>>>& val) {
953 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
954}
955
956status_t Parcel::writeUtf8VectorAsUtf16Vector(const std::vector<std::string>& val) {
957 return writeTypedVector(val, &Parcel::writeUtf8AsUtf16);
958}
959
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700960status_t Parcel::writeInt32(int32_t val)
961{
Andreas Huber84a6d042009-08-17 13:33:27 -0700962 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700963}
Dan Stoza41a0f2f2014-12-01 10:01:10 -0800964
965status_t Parcel::writeUint32(uint32_t val)
966{
967 return writeAligned(val);
968}
969
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700970status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700971 if (len > INT32_MAX) {
972 // don't accept size_t values which may have come from an
973 // inadvertent conversion from a negative int.
974 return BAD_VALUE;
975 }
976
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700977 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700978 return writeInt32(-1);
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700979 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700980 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700981 if (ret == NO_ERROR) {
982 ret = write(val, len * sizeof(*val));
983 }
984 return ret;
985}
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700986status_t Parcel::writeByteArray(size_t len, const uint8_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700987 if (len > INT32_MAX) {
988 // don't accept size_t values which may have come from an
989 // inadvertent conversion from a negative int.
990 return BAD_VALUE;
991 }
992
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700993 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700994 return writeInt32(-1);
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700995 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700996 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700997 if (ret == NO_ERROR) {
998 ret = write(val, len * sizeof(*val));
999 }
1000 return ret;
1001}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001002
Casey Dahlind6848f52015-10-15 15:44:59 -07001003status_t Parcel::writeBool(bool val)
1004{
1005 return writeInt32(int32_t(val));
1006}
1007
1008status_t Parcel::writeChar(char16_t val)
1009{
1010 return writeInt32(int32_t(val));
1011}
1012
1013status_t Parcel::writeByte(int8_t val)
1014{
1015 return writeInt32(int32_t(val));
1016}
1017
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001018status_t Parcel::writeInt64(int64_t val)
1019{
Andreas Huber84a6d042009-08-17 13:33:27 -07001020 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001021}
1022
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001023status_t Parcel::writeUint64(uint64_t val)
1024{
1025 return writeAligned(val);
1026}
1027
Serban Constantinescuf683e012013-11-05 16:53:55 +00001028status_t Parcel::writePointer(uintptr_t val)
1029{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001030 return writeAligned<binder_uintptr_t>(val);
Serban Constantinescuf683e012013-11-05 16:53:55 +00001031}
1032
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001033status_t Parcel::writeFloat(float val)
1034{
Andreas Huber84a6d042009-08-17 13:33:27 -07001035 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001036}
1037
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001038#if defined(__mips__) && defined(__mips_hard_float)
1039
1040status_t Parcel::writeDouble(double val)
1041{
1042 union {
1043 double d;
1044 unsigned long long ll;
1045 } u;
1046 u.d = val;
1047 return writeAligned(u.ll);
1048}
1049
1050#else
1051
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001052status_t Parcel::writeDouble(double val)
1053{
Andreas Huber84a6d042009-08-17 13:33:27 -07001054 return writeAligned(val);
1055}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001056
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001057#endif
1058
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001059status_t Parcel::writeCString(const char* str)
1060{
1061 return write(str, strlen(str)+1);
1062}
1063
1064status_t Parcel::writeString8(const String8& str)
1065{
1066 status_t err = writeInt32(str.bytes());
Pravat Dalbeherad1dff8d2010-12-15 08:40:00 +01001067 // only write string if its length is more than zero characters,
1068 // as readString8 will only read if the length field is non-zero.
1069 // this is slightly different from how writeString16 works.
1070 if (str.bytes() > 0 && err == NO_ERROR) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001071 err = write(str.string(), str.bytes()+1);
1072 }
1073 return err;
1074}
1075
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001076status_t Parcel::writeString16(const std::optional<String16>& str)
1077{
1078 if (!str) {
1079 return writeInt32(-1);
1080 }
1081
1082 return writeString16(*str);
1083}
1084
Casey Dahlinb9872622015-11-25 15:09:45 -08001085status_t Parcel::writeString16(const std::unique_ptr<String16>& str)
1086{
1087 if (!str) {
1088 return writeInt32(-1);
1089 }
1090
1091 return writeString16(*str);
1092}
1093
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001094status_t Parcel::writeString16(const String16& str)
1095{
1096 return writeString16(str.string(), str.size());
1097}
1098
1099status_t Parcel::writeString16(const char16_t* str, size_t len)
1100{
Yi Kong91635562018-06-07 14:38:36 -07001101 if (str == nullptr) return writeInt32(-1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001102
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001103 status_t err = writeInt32(len);
1104 if (err == NO_ERROR) {
1105 len *= sizeof(char16_t);
1106 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char16_t));
1107 if (data) {
1108 memcpy(data, str, len);
1109 *reinterpret_cast<char16_t*>(data+len) = 0;
1110 return NO_ERROR;
1111 }
1112 err = mError;
1113 }
1114 return err;
1115}
1116
1117status_t Parcel::writeStrongBinder(const sp<IBinder>& val)
1118{
Steven Morelanda86a3562019-08-01 23:28:34 +00001119 return flattenBinder(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001120}
1121
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001122status_t Parcel::writeStrongBinderVector(const std::vector<sp<IBinder>>& val)
1123{
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001124 return writeTypedVector(val, &Parcel::writeStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001125}
1126
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001127status_t Parcel::writeStrongBinderVector(const std::optional<std::vector<sp<IBinder>>>& val)
1128{
1129 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1130}
1131
Casey Dahlinb9872622015-11-25 15:09:45 -08001132status_t Parcel::writeStrongBinderVector(const std::unique_ptr<std::vector<sp<IBinder>>>& val)
1133{
1134 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1135}
1136
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001137status_t Parcel::readStrongBinderVector(std::optional<std::vector<sp<IBinder>>>* val) const {
1138 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
1139}
1140
Casey Dahlinb9872622015-11-25 15:09:45 -08001141status_t Parcel::readStrongBinderVector(std::unique_ptr<std::vector<sp<IBinder>>>* val) const {
Christopher Wiley35d77ca2016-03-08 10:49:51 -08001142 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
Casey Dahlinb9872622015-11-25 15:09:45 -08001143}
1144
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001145status_t Parcel::readStrongBinderVector(std::vector<sp<IBinder>>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001146 return readTypedVector(val, &Parcel::readStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001147}
1148
Casey Dahlinb9872622015-11-25 15:09:45 -08001149status_t Parcel::writeRawNullableParcelable(const Parcelable* parcelable) {
1150 if (!parcelable) {
1151 return writeInt32(0);
1152 }
1153
1154 return writeParcelable(*parcelable);
1155}
1156
Christopher Wiley97f048d2015-11-19 06:49:05 -08001157status_t Parcel::writeParcelable(const Parcelable& parcelable) {
1158 status_t status = writeInt32(1); // parcelable is not null.
1159 if (status != OK) {
1160 return status;
1161 }
1162 return parcelable.writeToParcel(this);
1163}
1164
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001165status_t Parcel::writeNativeHandle(const native_handle* handle)
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001166{
Mathias Agopian1d0a95b2009-07-31 16:12:13 -07001167 if (!handle || handle->version != sizeof(native_handle))
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001168 return BAD_TYPE;
1169
1170 status_t err;
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001171 err = writeInt32(handle->numFds);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001172 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001173
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001174 err = writeInt32(handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001175 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001176
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001177 for (int i=0 ; err==NO_ERROR && i<handle->numFds ; i++)
1178 err = writeDupFileDescriptor(handle->data[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001179
1180 if (err != NO_ERROR) {
Steve Block9d453682011-12-20 16:23:08 +00001181 ALOGD("write native handle, write dup fd failed");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001182 return err;
1183 }
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001184 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001185 return err;
1186}
1187
Jeff Brown93ff1f92011-11-04 19:01:44 -07001188status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001189{
1190 flat_binder_object obj;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001191 obj.hdr.type = BINDER_TYPE_FD;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001192 obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -08001193 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001194 obj.handle = fd;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001195 obj.cookie = takeOwnership ? 1 : 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001196 return writeObject(obj, true);
1197}
1198
1199status_t Parcel::writeDupFileDescriptor(int fd)
1200{
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08001201 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
Jeff Brownd341c712011-11-04 20:19:33 -07001202 if (dupFd < 0) {
1203 return -errno;
1204 }
1205 status_t err = writeFileDescriptor(dupFd, true /*takeOwnership*/);
Casey Dahlin06673e32015-11-23 13:24:23 -08001206 if (err != OK) {
Jeff Brownd341c712011-11-04 20:19:33 -07001207 close(dupFd);
1208 }
1209 return err;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001210}
1211
Dianne Hackborn1941a402016-08-29 12:30:43 -07001212status_t Parcel::writeParcelFileDescriptor(int fd, bool takeOwnership)
1213{
1214 writeInt32(0);
1215 return writeFileDescriptor(fd, takeOwnership);
1216}
1217
Ryo Hashimotobf551892018-05-31 16:58:35 +09001218status_t Parcel::writeDupParcelFileDescriptor(int fd)
1219{
1220 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1221 if (dupFd < 0) {
1222 return -errno;
1223 }
1224 status_t err = writeParcelFileDescriptor(dupFd, true /*takeOwnership*/);
1225 if (err != OK) {
1226 close(dupFd);
1227 }
1228 return err;
1229}
1230
Christopher Wiley2cf19952016-04-11 11:09:37 -07001231status_t Parcel::writeUniqueFileDescriptor(const base::unique_fd& fd) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001232 return writeDupFileDescriptor(fd.get());
1233}
1234
Christopher Wiley2cf19952016-04-11 11:09:37 -07001235status_t Parcel::writeUniqueFileDescriptorVector(const std::vector<base::unique_fd>& val) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001236 return writeTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1237}
1238
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001239status_t Parcel::writeUniqueFileDescriptorVector(const std::optional<std::vector<base::unique_fd>>& val) {
1240 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1241}
1242
Christopher Wiley2cf19952016-04-11 11:09:37 -07001243status_t Parcel::writeUniqueFileDescriptorVector(const std::unique_ptr<std::vector<base::unique_fd>>& val) {
Casey Dahlinb9872622015-11-25 15:09:45 -08001244 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1245}
1246
Jeff Brown13b16042014-11-11 16:44:25 -08001247status_t Parcel::writeBlob(size_t len, bool mutableCopy, WritableBlob* outBlob)
Jeff Brown5707dbf2011-09-23 21:17:56 -07001248{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001249 if (len > INT32_MAX) {
1250 // don't accept size_t values which may have come from an
1251 // inadvertent conversion from a negative int.
1252 return BAD_VALUE;
1253 }
1254
Jeff Brown13b16042014-11-11 16:44:25 -08001255 status_t status;
1256 if (!mAllowFds || len <= BLOB_INPLACE_LIMIT) {
Steve Block6807e592011-10-20 11:56:00 +01001257 ALOGV("writeBlob: write in place");
Jeff Brown13b16042014-11-11 16:44:25 -08001258 status = writeInt32(BLOB_INPLACE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001259 if (status) return status;
1260
1261 void* ptr = writeInplace(len);
1262 if (!ptr) return NO_MEMORY;
1263
Jeff Brown13b16042014-11-11 16:44:25 -08001264 outBlob->init(-1, ptr, len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001265 return NO_ERROR;
1266 }
1267
Steve Block6807e592011-10-20 11:56:00 +01001268 ALOGV("writeBlob: write to ashmem");
Jeff Brown5707dbf2011-09-23 21:17:56 -07001269 int fd = ashmem_create_region("Parcel Blob", len);
1270 if (fd < 0) return NO_MEMORY;
1271
1272 int result = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE);
1273 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001274 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001275 } else {
Yi Kong91635562018-06-07 14:38:36 -07001276 void* ptr = ::mmap(nullptr, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001277 if (ptr == MAP_FAILED) {
1278 status = -errno;
1279 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001280 if (!mutableCopy) {
1281 result = ashmem_set_prot_region(fd, PROT_READ);
1282 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07001283 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001284 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001285 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001286 status = writeInt32(mutableCopy ? BLOB_ASHMEM_MUTABLE : BLOB_ASHMEM_IMMUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001287 if (!status) {
Jeff Brown93ff1f92011-11-04 19:01:44 -07001288 status = writeFileDescriptor(fd, true /*takeOwnership*/);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001289 if (!status) {
Jeff Brown13b16042014-11-11 16:44:25 -08001290 outBlob->init(fd, ptr, len, mutableCopy);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001291 return NO_ERROR;
1292 }
1293 }
1294 }
1295 }
1296 ::munmap(ptr, len);
1297 }
1298 ::close(fd);
1299 return status;
1300}
1301
Jeff Brown13b16042014-11-11 16:44:25 -08001302status_t Parcel::writeDupImmutableBlobFileDescriptor(int fd)
1303{
1304 // Must match up with what's done in writeBlob.
1305 if (!mAllowFds) return FDS_NOT_ALLOWED;
1306 status_t status = writeInt32(BLOB_ASHMEM_IMMUTABLE);
1307 if (status) return status;
1308 return writeDupFileDescriptor(fd);
1309}
1310
Mathias Agopiane1424282013-07-29 21:24:40 -07001311status_t Parcel::write(const FlattenableHelperInterface& val)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001312{
1313 status_t err;
1314
1315 // size if needed
Mathias Agopiane1424282013-07-29 21:24:40 -07001316 const size_t len = val.getFlattenedSize();
1317 const size_t fd_count = val.getFdCount();
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001318
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001319 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001320 // don't accept size_t values which may have come from an
1321 // inadvertent conversion from a negative int.
1322 return BAD_VALUE;
1323 }
1324
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001325 err = this->writeInt32(len);
1326 if (err) return err;
1327
1328 err = this->writeInt32(fd_count);
1329 if (err) return err;
1330
1331 // payload
Martijn Coenenf8542382018-04-04 11:46:56 +02001332 void* const buf = this->writeInplace(len);
Yi Kong91635562018-06-07 14:38:36 -07001333 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001334 return BAD_VALUE;
1335
Yi Kong91635562018-06-07 14:38:36 -07001336 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001337 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001338 fds = new (std::nothrow) int[fd_count];
1339 if (fds == nullptr) {
1340 ALOGE("write: failed to allocate requested %zu fds", fd_count);
1341 return BAD_VALUE;
1342 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001343 }
1344
1345 err = val.flatten(buf, len, fds, fd_count);
1346 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1347 err = this->writeDupFileDescriptor( fds[i] );
1348 }
1349
1350 if (fd_count) {
1351 delete [] fds;
1352 }
1353
1354 return err;
1355}
1356
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001357status_t Parcel::writeObject(const flat_binder_object& val, bool nullMetaData)
1358{
1359 const bool enoughData = (mDataPos+sizeof(val)) <= mDataCapacity;
1360 const bool enoughObjects = mObjectsSize < mObjectsCapacity;
1361 if (enoughData && enoughObjects) {
1362restart_write:
1363 *reinterpret_cast<flat_binder_object*>(mData+mDataPos) = val;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001364
Christopher Tate98e67d32015-06-03 18:44:15 -07001365 // remember if it's a file descriptor
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001366 if (val.hdr.type == BINDER_TYPE_FD) {
Christopher Tate98e67d32015-06-03 18:44:15 -07001367 if (!mAllowFds) {
1368 // fail before modifying our object index
1369 return FDS_NOT_ALLOWED;
1370 }
1371 mHasFds = mFdsKnown = true;
1372 }
1373
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001374 // Need to write meta-data?
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001375 if (nullMetaData || val.binder != 0) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001376 mObjects[mObjectsSize] = mDataPos;
Adrian Rooscbf37262015-10-22 16:12:53 -07001377 acquire_object(ProcessState::self(), val, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001378 mObjectsSize++;
1379 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001380
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001381 return finishWrite(sizeof(flat_binder_object));
1382 }
1383
1384 if (!enoughData) {
1385 const status_t err = growData(sizeof(val));
1386 if (err != NO_ERROR) return err;
1387 }
1388 if (!enoughObjects) {
Martijn Coenen93fe5182020-01-22 10:46:25 +01001389 if (mObjectsSize > SIZE_MAX - 2) return NO_MEMORY; // overflow
1390 if ((mObjectsSize + 2) > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001391 size_t newSize = ((mObjectsSize+2)*3)/2;
Martijn Coenen93fe5182020-01-22 10:46:25 +01001392 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001393 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -07001394 if (objects == nullptr) return NO_MEMORY;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001395 mObjects = objects;
1396 mObjectsCapacity = newSize;
1397 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001398
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001399 goto restart_write;
1400}
1401
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001402status_t Parcel::writeNoException()
1403{
Christopher Wiley09eb7492015-11-09 15:06:15 -08001404 binder::Status status;
1405 return status.writeToParcel(this);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001406}
1407
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001408status_t Parcel::validateReadData(size_t upperBound) const
1409{
1410 // Don't allow non-object reads on object data
1411 if (mObjectsSorted || mObjectsSize <= 1) {
1412data_sorted:
1413 // Expect to check only against the next object
1414 if (mNextObjectHint < mObjectsSize && upperBound > mObjects[mNextObjectHint]) {
1415 // For some reason the current read position is greater than the next object
1416 // hint. Iterate until we find the right object
1417 size_t nextObject = mNextObjectHint;
1418 do {
1419 if (mDataPos < mObjects[nextObject] + sizeof(flat_binder_object)) {
1420 // Requested info overlaps with an object
1421 ALOGE("Attempt to read from protected data in Parcel %p", this);
1422 return PERMISSION_DENIED;
1423 }
1424 nextObject++;
1425 } while (nextObject < mObjectsSize && upperBound > mObjects[nextObject]);
1426 mNextObjectHint = nextObject;
1427 }
1428 return NO_ERROR;
1429 }
1430 // Quickly determine if mObjects is sorted.
1431 binder_size_t* currObj = mObjects + mObjectsSize - 1;
1432 binder_size_t* prevObj = currObj;
1433 while (currObj > mObjects) {
1434 prevObj--;
1435 if(*prevObj > *currObj) {
1436 goto data_unsorted;
1437 }
1438 currObj--;
1439 }
1440 mObjectsSorted = true;
1441 goto data_sorted;
1442
1443data_unsorted:
1444 // Insertion Sort mObjects
1445 // Great for mostly sorted lists. If randomly sorted or reverse ordered mObjects become common,
1446 // switch to std::sort(mObjects, mObjects + mObjectsSize);
1447 for (binder_size_t* iter0 = mObjects + 1; iter0 < mObjects + mObjectsSize; iter0++) {
1448 binder_size_t temp = *iter0;
1449 binder_size_t* iter1 = iter0 - 1;
1450 while (iter1 >= mObjects && *iter1 > temp) {
1451 *(iter1 + 1) = *iter1;
1452 iter1--;
1453 }
1454 *(iter1 + 1) = temp;
1455 }
1456 mNextObjectHint = 0;
1457 mObjectsSorted = true;
1458 goto data_sorted;
1459}
1460
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001461status_t Parcel::read(void* outData, size_t len) const
1462{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001463 if (len > INT32_MAX) {
1464 // don't accept size_t values which may have come from an
1465 // inadvertent conversion from a negative int.
1466 return BAD_VALUE;
1467 }
1468
1469 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1470 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001471 if (mObjectsSize > 0) {
1472 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001473 if(err != NO_ERROR) {
1474 // Still increment the data position by the expected length
1475 mDataPos += pad_size(len);
1476 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
1477 return err;
1478 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001479 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001480 memcpy(outData, mData+mDataPos, len);
Nick Kralevichb6b14232015-04-02 09:36:02 -07001481 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001482 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001483 return NO_ERROR;
1484 }
1485 return NOT_ENOUGH_DATA;
1486}
1487
1488const void* Parcel::readInplace(size_t len) const
1489{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001490 if (len > INT32_MAX) {
1491 // don't accept size_t values which may have come from an
1492 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -07001493 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001494 }
1495
1496 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1497 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001498 if (mObjectsSize > 0) {
1499 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001500 if(err != NO_ERROR) {
1501 // Still increment the data position by the expected length
1502 mDataPos += pad_size(len);
1503 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07001504 return nullptr;
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001505 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001506 }
1507
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001508 const void* data = mData+mDataPos;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001509 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001510 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001511 return data;
1512 }
Yi Kong91635562018-06-07 14:38:36 -07001513 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001514}
1515
Andreas Huber84a6d042009-08-17 13:33:27 -07001516template<class T>
1517status_t Parcel::readAligned(T *pArg) const {
Elliott Hughes42a9b942020-08-17 15:53:31 -07001518 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001519
1520 if ((mDataPos+sizeof(T)) <= mDataSize) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001521 if (mObjectsSize > 0) {
1522 status_t err = validateReadData(mDataPos + sizeof(T));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001523 if(err != NO_ERROR) {
1524 // Still increment the data position by the expected length
1525 mDataPos += sizeof(T);
1526 return err;
1527 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001528 }
1529
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001530 const void* data = mData+mDataPos;
Andreas Huber84a6d042009-08-17 13:33:27 -07001531 mDataPos += sizeof(T);
1532 *pArg = *reinterpret_cast<const T*>(data);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001533 return NO_ERROR;
1534 } else {
1535 return NOT_ENOUGH_DATA;
1536 }
1537}
1538
Andreas Huber84a6d042009-08-17 13:33:27 -07001539template<class T>
1540T Parcel::readAligned() const {
1541 T result;
1542 if (readAligned(&result) != NO_ERROR) {
1543 result = 0;
1544 }
1545
1546 return result;
1547}
1548
1549template<class T>
1550status_t Parcel::writeAligned(T val) {
Elliott Hughes42a9b942020-08-17 15:53:31 -07001551 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001552
1553 if ((mDataPos+sizeof(val)) <= mDataCapacity) {
1554restart_write:
1555 *reinterpret_cast<T*>(mData+mDataPos) = val;
1556 return finishWrite(sizeof(val));
1557 }
1558
1559 status_t err = growData(sizeof(val));
1560 if (err == NO_ERROR) goto restart_write;
1561 return err;
1562}
1563
Casey Dahlin185d3442016-02-09 11:08:35 -08001564status_t Parcel::readByteVector(std::vector<int8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001565 size_t size;
1566 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1567 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001568}
1569
1570status_t Parcel::readByteVector(std::vector<uint8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001571 size_t size;
1572 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1573 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001574}
1575
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001576status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const {
1577 size_t size;
1578 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1579 if (!*val) {
1580 // reserveOutVector does not create the out vector if size is < 0.
1581 // This occurs when writing a null byte vector.
1582 return OK;
1583 }
1584 return readByteVectorInternal(&**val, size);
1585}
1586
Casey Dahlin185d3442016-02-09 11:08:35 -08001587status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001588 size_t size;
1589 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001590 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001591 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001592 // This occurs when writing a null byte vector.
1593 return OK;
1594 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001595 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001596}
1597
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001598status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const {
1599 size_t size;
1600 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1601 if (!*val) {
1602 // reserveOutVector does not create the out vector if size is < 0.
1603 // This occurs when writing a null byte vector.
1604 return OK;
1605 }
1606 return readByteVectorInternal(&**val, size);
1607}
1608
Casey Dahlin185d3442016-02-09 11:08:35 -08001609status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001610 size_t size;
1611 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001612 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001613 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001614 // This occurs when writing a null byte vector.
1615 return OK;
1616 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001617 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001618}
1619
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001620status_t Parcel::readInt32Vector(std::optional<std::vector<int32_t>>* val) const {
1621 return readNullableTypedVector(val, &Parcel::readInt32);
1622}
1623
Casey Dahlinb9872622015-11-25 15:09:45 -08001624status_t Parcel::readInt32Vector(std::unique_ptr<std::vector<int32_t>>* val) const {
1625 return readNullableTypedVector(val, &Parcel::readInt32);
1626}
1627
Casey Dahlin451ff582015-10-19 18:12:18 -07001628status_t Parcel::readInt32Vector(std::vector<int32_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001629 return readTypedVector(val, &Parcel::readInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -07001630}
1631
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001632status_t Parcel::readInt64Vector(std::optional<std::vector<int64_t>>* val) const {
1633 return readNullableTypedVector(val, &Parcel::readInt64);
1634}
1635
Casey Dahlinb9872622015-11-25 15:09:45 -08001636status_t Parcel::readInt64Vector(std::unique_ptr<std::vector<int64_t>>* val) const {
1637 return readNullableTypedVector(val, &Parcel::readInt64);
1638}
1639
Casey Dahlin451ff582015-10-19 18:12:18 -07001640status_t Parcel::readInt64Vector(std::vector<int64_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001641 return readTypedVector(val, &Parcel::readInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -07001642}
1643
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001644status_t Parcel::readUint64Vector(std::optional<std::vector<uint64_t>>* val) const {
1645 return readNullableTypedVector(val, &Parcel::readUint64);
1646}
1647
Kevin DuBois2f82d5b2018-12-05 12:56:10 -08001648status_t Parcel::readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const {
1649 return readNullableTypedVector(val, &Parcel::readUint64);
1650}
1651
1652status_t Parcel::readUint64Vector(std::vector<uint64_t>* val) const {
1653 return readTypedVector(val, &Parcel::readUint64);
1654}
1655
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001656status_t Parcel::readFloatVector(std::optional<std::vector<float>>* val) const {
1657 return readNullableTypedVector(val, &Parcel::readFloat);
1658}
1659
Casey Dahlinb9872622015-11-25 15:09:45 -08001660status_t Parcel::readFloatVector(std::unique_ptr<std::vector<float>>* val) const {
1661 return readNullableTypedVector(val, &Parcel::readFloat);
1662}
1663
Casey Dahlin451ff582015-10-19 18:12:18 -07001664status_t Parcel::readFloatVector(std::vector<float>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001665 return readTypedVector(val, &Parcel::readFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -07001666}
1667
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001668status_t Parcel::readDoubleVector(std::optional<std::vector<double>>* val) const {
1669 return readNullableTypedVector(val, &Parcel::readDouble);
1670}
1671
Casey Dahlinb9872622015-11-25 15:09:45 -08001672status_t Parcel::readDoubleVector(std::unique_ptr<std::vector<double>>* val) const {
1673 return readNullableTypedVector(val, &Parcel::readDouble);
1674}
1675
Casey Dahlin451ff582015-10-19 18:12:18 -07001676status_t Parcel::readDoubleVector(std::vector<double>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001677 return readTypedVector(val, &Parcel::readDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -07001678}
1679
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001680status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const {
1681 const int32_t start = dataPosition();
1682 int32_t size;
1683 status_t status = readInt32(&size);
1684 val->reset();
1685
1686 if (status != OK || size < 0) {
1687 return status;
1688 }
1689
1690 setDataPosition(start);
1691 val->emplace();
1692
1693 status = readBoolVector(&**val);
1694
1695 if (status != OK) {
1696 val->reset();
1697 }
1698
1699 return status;
1700}
1701
Casey Dahlinb9872622015-11-25 15:09:45 -08001702status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const {
1703 const int32_t start = dataPosition();
1704 int32_t size;
1705 status_t status = readInt32(&size);
1706 val->reset();
Casey Dahlin451ff582015-10-19 18:12:18 -07001707
Casey Dahlinb9872622015-11-25 15:09:45 -08001708 if (status != OK || size < 0) {
1709 return status;
1710 }
1711
1712 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001713 val->reset(new (std::nothrow) std::vector<bool>());
Casey Dahlinb9872622015-11-25 15:09:45 -08001714
1715 status = readBoolVector(val->get());
1716
1717 if (status != OK) {
1718 val->reset();
1719 }
1720
1721 return status;
1722}
1723
1724status_t Parcel::readBoolVector(std::vector<bool>* val) const {
Casey Dahlin451ff582015-10-19 18:12:18 -07001725 int32_t size;
1726 status_t status = readInt32(&size);
1727
1728 if (status != OK) {
1729 return status;
1730 }
1731
1732 if (size < 0) {
Christopher Wiley4db672d2015-11-10 09:44:30 -08001733 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07001734 }
1735
1736 val->resize(size);
1737
1738 /* C++ bool handling means a vector of bools isn't necessarily addressable
1739 * (we might use individual bits)
1740 */
Christopher Wiley97887982015-10-27 16:33:47 -07001741 bool data;
1742 for (int32_t i = 0; i < size; ++i) {
Casey Dahlin451ff582015-10-19 18:12:18 -07001743 status = readBool(&data);
1744 (*val)[i] = data;
1745
1746 if (status != OK) {
1747 return status;
1748 }
1749 }
1750
1751 return OK;
1752}
1753
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001754status_t Parcel::readCharVector(std::optional<std::vector<char16_t>>* val) const {
1755 return readNullableTypedVector(val, &Parcel::readChar);
1756}
1757
Casey Dahlinb9872622015-11-25 15:09:45 -08001758status_t Parcel::readCharVector(std::unique_ptr<std::vector<char16_t>>* val) const {
1759 return readNullableTypedVector(val, &Parcel::readChar);
1760}
1761
Casey Dahlin451ff582015-10-19 18:12:18 -07001762status_t Parcel::readCharVector(std::vector<char16_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001763 return readTypedVector(val, &Parcel::readChar);
Casey Dahlin451ff582015-10-19 18:12:18 -07001764}
1765
Casey Dahlinb9872622015-11-25 15:09:45 -08001766status_t Parcel::readString16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001767 std::optional<std::vector<std::optional<String16>>>* val) const {
1768 return readNullableTypedVector(val, &Parcel::readString16);
1769}
1770
1771status_t Parcel::readString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -08001772 std::unique_ptr<std::vector<std::unique_ptr<String16>>>* val) const {
1773 return readNullableTypedVector(val, &Parcel::readString16);
1774}
1775
Casey Dahlin451ff582015-10-19 18:12:18 -07001776status_t Parcel::readString16Vector(std::vector<String16>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001777 return readTypedVector(val, &Parcel::readString16);
Casey Dahlin451ff582015-10-19 18:12:18 -07001778}
1779
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001780status_t Parcel::readUtf8VectorFromUtf16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001781 std::optional<std::vector<std::optional<std::string>>>* val) const {
1782 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1783}
1784
1785status_t Parcel::readUtf8VectorFromUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001786 std::unique_ptr<std::vector<std::unique_ptr<std::string>>>* val) const {
1787 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1788}
1789
1790status_t Parcel::readUtf8VectorFromUtf16Vector(std::vector<std::string>* val) const {
1791 return readTypedVector(val, &Parcel::readUtf8FromUtf16);
1792}
Casey Dahlin451ff582015-10-19 18:12:18 -07001793
Andreas Huber84a6d042009-08-17 13:33:27 -07001794status_t Parcel::readInt32(int32_t *pArg) const
1795{
1796 return readAligned(pArg);
1797}
1798
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001799int32_t Parcel::readInt32() const
1800{
Andreas Huber84a6d042009-08-17 13:33:27 -07001801 return readAligned<int32_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001802}
1803
Dan Stoza41a0f2f2014-12-01 10:01:10 -08001804status_t Parcel::readUint32(uint32_t *pArg) const
1805{
1806 return readAligned(pArg);
1807}
1808
1809uint32_t Parcel::readUint32() const
1810{
1811 return readAligned<uint32_t>();
1812}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001813
1814status_t Parcel::readInt64(int64_t *pArg) const
1815{
Andreas Huber84a6d042009-08-17 13:33:27 -07001816 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001817}
1818
1819
1820int64_t Parcel::readInt64() const
1821{
Andreas Huber84a6d042009-08-17 13:33:27 -07001822 return readAligned<int64_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001823}
1824
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001825status_t Parcel::readUint64(uint64_t *pArg) const
1826{
1827 return readAligned(pArg);
1828}
1829
1830uint64_t Parcel::readUint64() const
1831{
1832 return readAligned<uint64_t>();
1833}
1834
Serban Constantinescuf683e012013-11-05 16:53:55 +00001835status_t Parcel::readPointer(uintptr_t *pArg) const
1836{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001837 status_t ret;
1838 binder_uintptr_t ptr;
1839 ret = readAligned(&ptr);
1840 if (!ret)
1841 *pArg = ptr;
1842 return ret;
Serban Constantinescuf683e012013-11-05 16:53:55 +00001843}
1844
1845uintptr_t Parcel::readPointer() const
1846{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001847 return readAligned<binder_uintptr_t>();
Serban Constantinescuf683e012013-11-05 16:53:55 +00001848}
1849
1850
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001851status_t Parcel::readFloat(float *pArg) const
1852{
Andreas Huber84a6d042009-08-17 13:33:27 -07001853 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001854}
1855
1856
1857float Parcel::readFloat() const
1858{
Andreas Huber84a6d042009-08-17 13:33:27 -07001859 return readAligned<float>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001860}
1861
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001862#if defined(__mips__) && defined(__mips_hard_float)
1863
1864status_t Parcel::readDouble(double *pArg) const
1865{
1866 union {
1867 double d;
1868 unsigned long long ll;
1869 } u;
Narayan Kamath2c68d382014-06-04 15:04:29 +01001870 u.d = 0;
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001871 status_t status;
1872 status = readAligned(&u.ll);
1873 *pArg = u.d;
1874 return status;
1875}
1876
1877double Parcel::readDouble() const
1878{
1879 union {
1880 double d;
1881 unsigned long long ll;
1882 } u;
1883 u.ll = readAligned<unsigned long long>();
1884 return u.d;
1885}
1886
1887#else
1888
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001889status_t Parcel::readDouble(double *pArg) const
1890{
Andreas Huber84a6d042009-08-17 13:33:27 -07001891 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001892}
1893
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001894double Parcel::readDouble() const
1895{
Andreas Huber84a6d042009-08-17 13:33:27 -07001896 return readAligned<double>();
1897}
1898
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001899#endif
1900
Andreas Huber84a6d042009-08-17 13:33:27 -07001901status_t Parcel::readIntPtr(intptr_t *pArg) const
1902{
1903 return readAligned(pArg);
1904}
1905
1906
1907intptr_t Parcel::readIntPtr() const
1908{
1909 return readAligned<intptr_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001910}
1911
Casey Dahlind6848f52015-10-15 15:44:59 -07001912status_t Parcel::readBool(bool *pArg) const
1913{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001914 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001915 status_t ret = readInt32(&tmp);
1916 *pArg = (tmp != 0);
1917 return ret;
1918}
1919
1920bool Parcel::readBool() const
1921{
1922 return readInt32() != 0;
1923}
1924
1925status_t Parcel::readChar(char16_t *pArg) const
1926{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001927 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001928 status_t ret = readInt32(&tmp);
1929 *pArg = char16_t(tmp);
1930 return ret;
1931}
1932
1933char16_t Parcel::readChar() const
1934{
1935 return char16_t(readInt32());
1936}
1937
1938status_t Parcel::readByte(int8_t *pArg) const
1939{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001940 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001941 status_t ret = readInt32(&tmp);
1942 *pArg = int8_t(tmp);
1943 return ret;
1944}
1945
1946int8_t Parcel::readByte() const
1947{
1948 return int8_t(readInt32());
1949}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001950
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001951status_t Parcel::readUtf8FromUtf16(std::string* str) const {
1952 size_t utf16Size = 0;
1953 const char16_t* src = readString16Inplace(&utf16Size);
1954 if (!src) {
1955 return UNEXPECTED_NULL;
1956 }
1957
1958 // Save ourselves the trouble, we're done.
1959 if (utf16Size == 0u) {
1960 str->clear();
1961 return NO_ERROR;
1962 }
1963
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001964 // Allow for closing '\0'
1965 ssize_t utf8Size = utf16_to_utf8_length(src, utf16Size) + 1;
1966 if (utf8Size < 1) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001967 return BAD_VALUE;
1968 }
1969 // Note that while it is probably safe to assume string::resize keeps a
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001970 // spare byte around for the trailing null, we still pass the size including the trailing null
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001971 str->resize(utf8Size);
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001972 utf16_to_utf8(src, utf16Size, &((*str)[0]), utf8Size);
1973 str->resize(utf8Size - 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001974 return NO_ERROR;
1975}
1976
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001977status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const {
1978 const int32_t start = dataPosition();
1979 int32_t size;
1980 status_t status = readInt32(&size);
1981 str->reset();
1982
1983 if (status != OK || size < 0) {
1984 return status;
1985 }
1986
1987 setDataPosition(start);
1988 str->emplace();
1989 return readUtf8FromUtf16(&**str);
1990}
1991
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001992status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const {
1993 const int32_t start = dataPosition();
1994 int32_t size;
1995 status_t status = readInt32(&size);
1996 str->reset();
1997
1998 if (status != OK || size < 0) {
1999 return status;
2000 }
2001
2002 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002003 str->reset(new (std::nothrow) std::string());
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002004 return readUtf8FromUtf16(str->get());
2005}
2006
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002007const char* Parcel::readCString() const
2008{
Steven Morelandd0d4b582019-05-17 13:14:06 -07002009 if (mDataPos < mDataSize) {
2010 const size_t avail = mDataSize-mDataPos;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002011 const char* str = reinterpret_cast<const char*>(mData+mDataPos);
2012 // is the string's trailing NUL within the parcel's valid bounds?
2013 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
2014 if (eos) {
2015 const size_t len = eos - str;
Nick Kralevichb6b14232015-04-02 09:36:02 -07002016 mDataPos += pad_size(len+1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002017 ALOGV("readCString Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002018 return str;
2019 }
2020 }
Yi Kong91635562018-06-07 14:38:36 -07002021 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002022}
2023
2024String8 Parcel::readString8() const
2025{
Roshan Pius87b64d22016-07-18 12:51:02 -07002026 String8 retString;
2027 status_t status = readString8(&retString);
2028 if (status != OK) {
2029 // We don't care about errors here, so just return an empty string.
2030 return String8();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002031 }
Roshan Pius87b64d22016-07-18 12:51:02 -07002032 return retString;
2033}
2034
2035status_t Parcel::readString8(String8* pArg) const
2036{
2037 int32_t size;
2038 status_t status = readInt32(&size);
2039 if (status != OK) {
2040 return status;
2041 }
2042 // watch for potential int overflow from size+1
2043 if (size < 0 || size >= INT32_MAX) {
2044 return BAD_VALUE;
2045 }
2046 // |writeString8| writes nothing for empty string.
2047 if (size == 0) {
2048 *pArg = String8();
2049 return OK;
2050 }
2051 const char* str = (const char*)readInplace(size + 1);
Yi Kong91635562018-06-07 14:38:36 -07002052 if (str == nullptr) {
Roshan Pius87b64d22016-07-18 12:51:02 -07002053 return BAD_VALUE;
2054 }
2055 pArg->setTo(str, size);
2056 return OK;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002057}
2058
2059String16 Parcel::readString16() const
2060{
2061 size_t len;
2062 const char16_t* str = readString16Inplace(&len);
2063 if (str) return String16(str, len);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002064 ALOGE("Reading a NULL string not supported here.");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002065 return String16();
2066}
2067
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09002068status_t Parcel::readString16(std::optional<String16>* pArg) const
2069{
2070 const int32_t start = dataPosition();
2071 int32_t size;
2072 status_t status = readInt32(&size);
2073 pArg->reset();
2074
2075 if (status != OK || size < 0) {
2076 return status;
2077 }
2078
2079 setDataPosition(start);
2080 pArg->emplace();
2081
2082 status = readString16(&**pArg);
2083
2084 if (status != OK) {
2085 pArg->reset();
2086 }
2087
2088 return status;
2089}
2090
Casey Dahlinb9872622015-11-25 15:09:45 -08002091status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const
2092{
2093 const int32_t start = dataPosition();
2094 int32_t size;
2095 status_t status = readInt32(&size);
2096 pArg->reset();
2097
2098 if (status != OK || size < 0) {
2099 return status;
2100 }
2101
2102 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002103 pArg->reset(new (std::nothrow) String16());
Casey Dahlinb9872622015-11-25 15:09:45 -08002104
2105 status = readString16(pArg->get());
2106
2107 if (status != OK) {
2108 pArg->reset();
2109 }
2110
2111 return status;
2112}
2113
Casey Dahlin451ff582015-10-19 18:12:18 -07002114status_t Parcel::readString16(String16* pArg) const
2115{
2116 size_t len;
2117 const char16_t* str = readString16Inplace(&len);
2118 if (str) {
Casey Dahlin1515ea12015-10-20 16:26:23 -07002119 pArg->setTo(str, len);
Casey Dahlin451ff582015-10-19 18:12:18 -07002120 return 0;
2121 } else {
2122 *pArg = String16();
Christopher Wiley4db672d2015-11-10 09:44:30 -08002123 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07002124 }
2125}
2126
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002127const char16_t* Parcel::readString16Inplace(size_t* outLen) const
2128{
2129 int32_t size = readInt32();
2130 // watch for potential int overflow from size+1
2131 if (size >= 0 && size < INT32_MAX) {
2132 *outLen = size;
2133 const char16_t* str = (const char16_t*)readInplace((size+1)*sizeof(char16_t));
Yi Kong91635562018-06-07 14:38:36 -07002134 if (str != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002135 return str;
2136 }
2137 }
2138 *outLen = 0;
Yi Kong91635562018-06-07 14:38:36 -07002139 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002140}
2141
Casey Dahlinf0c13772015-10-27 18:33:56 -07002142status_t Parcel::readStrongBinder(sp<IBinder>* val) const
2143{
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002144 status_t status = readNullableStrongBinder(val);
2145 if (status == OK && !val->get()) {
2146 status = UNEXPECTED_NULL;
2147 }
2148 return status;
2149}
2150
2151status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const
2152{
Steven Morelanda86a3562019-08-01 23:28:34 +00002153 return unflattenBinder(val);
Casey Dahlinf0c13772015-10-27 18:33:56 -07002154}
2155
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002156sp<IBinder> Parcel::readStrongBinder() const
2157{
2158 sp<IBinder> val;
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002159 // Note that a lot of code in Android reads binders by hand with this
2160 // method, and that code has historically been ok with getting nullptr
2161 // back (while ignoring error codes).
2162 readNullableStrongBinder(&val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002163 return val;
2164}
2165
Christopher Wiley97f048d2015-11-19 06:49:05 -08002166status_t Parcel::readParcelable(Parcelable* parcelable) const {
2167 int32_t have_parcelable = 0;
2168 status_t status = readInt32(&have_parcelable);
2169 if (status != OK) {
2170 return status;
2171 }
2172 if (!have_parcelable) {
2173 return UNEXPECTED_NULL;
2174 }
2175 return parcelable->readFromParcel(this);
2176}
2177
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002178int32_t Parcel::readExceptionCode() const
2179{
Christopher Wiley09eb7492015-11-09 15:06:15 -08002180 binder::Status status;
2181 status.readFromParcel(*this);
2182 return status.exceptionCode();
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002183}
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002184
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002185native_handle* Parcel::readNativeHandle() const
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002186{
2187 int numFds, numInts;
2188 status_t err;
2189 err = readInt32(&numFds);
Yi Kong91635562018-06-07 14:38:36 -07002190 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002191 err = readInt32(&numInts);
Yi Kong91635562018-06-07 14:38:36 -07002192 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002193
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002194 native_handle* h = native_handle_create(numFds, numInts);
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002195 if (!h) {
Yi Kong91635562018-06-07 14:38:36 -07002196 return nullptr;
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002197 }
2198
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002199 for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002200 h->data[i] = fcntl(readFileDescriptor(), F_DUPFD_CLOEXEC, 0);
Marco Nelissen1de79662016-04-26 08:44:09 -07002201 if (h->data[i] < 0) {
2202 for (int j = 0; j < i; j++) {
2203 close(h->data[j]);
2204 }
2205 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002206 return nullptr;
Marco Nelissen1de79662016-04-26 08:44:09 -07002207 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002208 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002209 err = read(h->data + numFds, sizeof(int)*numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002210 if (err != NO_ERROR) {
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002211 native_handle_close(h);
2212 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002213 h = nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002214 }
2215 return h;
2216}
2217
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002218int Parcel::readFileDescriptor() const
2219{
2220 const flat_binder_object* flat = readObject(true);
Casey Dahlin06673e32015-11-23 13:24:23 -08002221
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002222 if (flat && flat->hdr.type == BINDER_TYPE_FD) {
Casey Dahlin06673e32015-11-23 13:24:23 -08002223 return flat->handle;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002224 }
Casey Dahlin06673e32015-11-23 13:24:23 -08002225
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002226 return BAD_TYPE;
2227}
2228
Dianne Hackborn1941a402016-08-29 12:30:43 -07002229int Parcel::readParcelFileDescriptor() const
2230{
2231 int32_t hasComm = readInt32();
2232 int fd = readFileDescriptor();
2233 if (hasComm != 0) {
Steven Morelandb73806a2018-11-12 19:35:47 -08002234 // detach (owned by the binder driver)
2235 int comm = readFileDescriptor();
2236
2237 // warning: this must be kept in sync with:
2238 // frameworks/base/core/java/android/os/ParcelFileDescriptor.java
2239 enum ParcelFileDescriptorStatus {
2240 DETACHED = 2,
2241 };
2242
2243#if BYTE_ORDER == BIG_ENDIAN
2244 const int32_t message = ParcelFileDescriptorStatus::DETACHED;
2245#endif
2246#if BYTE_ORDER == LITTLE_ENDIAN
2247 const int32_t message = __builtin_bswap32(ParcelFileDescriptorStatus::DETACHED);
2248#endif
2249
2250 ssize_t written = TEMP_FAILURE_RETRY(
2251 ::write(comm, &message, sizeof(message)));
2252
2253 if (written == -1 || written != sizeof(message)) {
2254 ALOGW("Failed to detach ParcelFileDescriptor written: %zd err: %s",
2255 written, strerror(errno));
2256 return BAD_TYPE;
2257 }
Dianne Hackborn1941a402016-08-29 12:30:43 -07002258 }
2259 return fd;
2260}
2261
Christopher Wiley2cf19952016-04-11 11:09:37 -07002262status_t Parcel::readUniqueFileDescriptor(base::unique_fd* val) const
Casey Dahlin06673e32015-11-23 13:24:23 -08002263{
2264 int got = readFileDescriptor();
2265
2266 if (got == BAD_TYPE) {
2267 return BAD_TYPE;
2268 }
2269
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002270 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
Casey Dahlin06673e32015-11-23 13:24:23 -08002271
2272 if (val->get() < 0) {
2273 return BAD_VALUE;
2274 }
2275
2276 return OK;
2277}
2278
Ryo Hashimotobf551892018-05-31 16:58:35 +09002279status_t Parcel::readUniqueParcelFileDescriptor(base::unique_fd* val) const
2280{
2281 int got = readParcelFileDescriptor();
2282
2283 if (got == BAD_TYPE) {
2284 return BAD_TYPE;
2285 }
2286
2287 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
2288
2289 if (val->get() < 0) {
2290 return BAD_VALUE;
2291 }
2292
2293 return OK;
2294}
Casey Dahlin06673e32015-11-23 13:24:23 -08002295
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09002296status_t Parcel::readUniqueFileDescriptorVector(std::optional<std::vector<base::unique_fd>>* val) const {
2297 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2298}
2299
Christopher Wiley2cf19952016-04-11 11:09:37 -07002300status_t Parcel::readUniqueFileDescriptorVector(std::unique_ptr<std::vector<base::unique_fd>>* val) const {
Casey Dahlinb9872622015-11-25 15:09:45 -08002301 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2302}
2303
Christopher Wiley2cf19952016-04-11 11:09:37 -07002304status_t Parcel::readUniqueFileDescriptorVector(std::vector<base::unique_fd>* val) const {
Casey Dahlin06673e32015-11-23 13:24:23 -08002305 return readTypedVector(val, &Parcel::readUniqueFileDescriptor);
2306}
2307
Jeff Brown5707dbf2011-09-23 21:17:56 -07002308status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
2309{
Jeff Brown13b16042014-11-11 16:44:25 -08002310 int32_t blobType;
2311 status_t status = readInt32(&blobType);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002312 if (status) return status;
2313
Jeff Brown13b16042014-11-11 16:44:25 -08002314 if (blobType == BLOB_INPLACE) {
Steve Block6807e592011-10-20 11:56:00 +01002315 ALOGV("readBlob: read in place");
Jeff Brown5707dbf2011-09-23 21:17:56 -07002316 const void* ptr = readInplace(len);
2317 if (!ptr) return BAD_VALUE;
2318
Jeff Brown13b16042014-11-11 16:44:25 -08002319 outBlob->init(-1, const_cast<void*>(ptr), len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002320 return NO_ERROR;
2321 }
2322
Steve Block6807e592011-10-20 11:56:00 +01002323 ALOGV("readBlob: read from ashmem");
Jeff Brown13b16042014-11-11 16:44:25 -08002324 bool isMutable = (blobType == BLOB_ASHMEM_MUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002325 int fd = readFileDescriptor();
2326 if (fd == int(BAD_TYPE)) return BAD_VALUE;
2327
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002328 if (!ashmem_valid(fd)) {
2329 ALOGE("invalid fd");
2330 return BAD_VALUE;
2331 }
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002332 int size = ashmem_get_size_region(fd);
2333 if (size < 0 || size_t(size) < len) {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002334 ALOGE("request size %zu does not match fd size %d", len, size);
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002335 return BAD_VALUE;
2336 }
Yi Kong91635562018-06-07 14:38:36 -07002337 void* ptr = ::mmap(nullptr, len, isMutable ? PROT_READ | PROT_WRITE : PROT_READ,
Jeff Brown13b16042014-11-11 16:44:25 -08002338 MAP_SHARED, fd, 0);
Narayan Kamath9ea09752014-10-08 17:35:45 +01002339 if (ptr == MAP_FAILED) return NO_MEMORY;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002340
Jeff Brown13b16042014-11-11 16:44:25 -08002341 outBlob->init(fd, ptr, len, isMutable);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002342 return NO_ERROR;
2343}
2344
Mathias Agopiane1424282013-07-29 21:24:40 -07002345status_t Parcel::read(FlattenableHelperInterface& val) const
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002346{
2347 // size
2348 const size_t len = this->readInt32();
2349 const size_t fd_count = this->readInt32();
2350
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002351 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07002352 // don't accept size_t values which may have come from an
2353 // inadvertent conversion from a negative int.
2354 return BAD_VALUE;
2355 }
2356
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002357 // payload
Nick Kralevichb6b14232015-04-02 09:36:02 -07002358 void const* const buf = this->readInplace(pad_size(len));
Yi Kong91635562018-06-07 14:38:36 -07002359 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002360 return BAD_VALUE;
2361
Yi Kong91635562018-06-07 14:38:36 -07002362 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002363 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002364 fds = new (std::nothrow) int[fd_count];
2365 if (fds == nullptr) {
2366 ALOGE("read: failed to allocate requested %zu fds", fd_count);
2367 return BAD_VALUE;
2368 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002369 }
2370
2371 status_t err = NO_ERROR;
2372 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
Fabien Sanglardd84ff312016-10-21 10:58:26 -07002373 int fd = this->readFileDescriptor();
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002374 if (fd < 0 || ((fds[i] = fcntl(fd, F_DUPFD_CLOEXEC, 0)) < 0)) {
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002375 err = BAD_VALUE;
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002376 ALOGE("fcntl(F_DUPFD_CLOEXEC) failed in Parcel::read, i is %zu, fds[i] is %d, fd_count is %zu, error: %s",
Fabien Sanglardd84ff312016-10-21 10:58:26 -07002377 i, fds[i], fd_count, strerror(fd < 0 ? -fd : errno));
2378 // Close all the file descriptors that were dup-ed.
2379 for (size_t j=0; j<i ;j++) {
2380 close(fds[j]);
2381 }
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002382 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002383 }
2384
2385 if (err == NO_ERROR) {
2386 err = val.unflatten(buf, len, fds, fd_count);
2387 }
2388
2389 if (fd_count) {
2390 delete [] fds;
2391 }
2392
2393 return err;
2394}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002395const flat_binder_object* Parcel::readObject(bool nullMetaData) const
2396{
2397 const size_t DPOS = mDataPos;
2398 if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
2399 const flat_binder_object* obj
2400 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
2401 mDataPos = DPOS + sizeof(flat_binder_object);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002402 if (!nullMetaData && (obj->cookie == 0 && obj->binder == 0)) {
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002403 // When transferring a NULL object, we don't write it into
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002404 // the object list, so we don't want to check for it when
2405 // reading.
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002406 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002407 return obj;
2408 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002409
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002410 // Ensure that this object is valid...
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002411 binder_size_t* const OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002412 const size_t N = mObjectsSize;
2413 size_t opos = mNextObjectHint;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002414
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002415 if (N > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002416 ALOGV("Parcel %p looking for obj at %zu, hint=%zu",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002417 this, DPOS, opos);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002418
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002419 // Start at the current hint position, looking for an object at
2420 // the current data position.
2421 if (opos < N) {
2422 while (opos < (N-1) && OBJS[opos] < DPOS) {
2423 opos++;
2424 }
2425 } else {
2426 opos = N-1;
2427 }
2428 if (OBJS[opos] == DPOS) {
2429 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002430 ALOGV("Parcel %p found obj %zu at index %zu with forward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002431 this, DPOS, opos);
2432 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002433 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002434 return obj;
2435 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002436
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002437 // Look backwards for it...
2438 while (opos > 0 && OBJS[opos] > DPOS) {
2439 opos--;
2440 }
2441 if (OBJS[opos] == DPOS) {
2442 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002443 ALOGV("Parcel %p found obj %zu at index %zu with backward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002444 this, DPOS, opos);
2445 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002446 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002447 return obj;
2448 }
2449 }
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002450 ALOGW("Attempt to read object from Parcel %p at offset %zu that is not in the object list",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002451 this, DPOS);
2452 }
Yi Kong91635562018-06-07 14:38:36 -07002453 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002454}
2455
2456void Parcel::closeFileDescriptors()
2457{
2458 size_t i = mObjectsSize;
2459 if (i > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002460 //ALOGI("Closing file descriptors for %zu objects...", i);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002461 }
2462 while (i > 0) {
2463 i--;
2464 const flat_binder_object* flat
2465 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002466 if (flat->hdr.type == BINDER_TYPE_FD) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002467 //ALOGI("Closing fd: %ld", flat->handle);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002468 close(flat->handle);
2469 }
2470 }
2471}
2472
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002473uintptr_t Parcel::ipcData() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002474{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002475 return reinterpret_cast<uintptr_t>(mData);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002476}
2477
2478size_t Parcel::ipcDataSize() const
2479{
2480 return (mDataSize > mDataPos ? mDataSize : mDataPos);
2481}
2482
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002483uintptr_t Parcel::ipcObjects() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002484{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002485 return reinterpret_cast<uintptr_t>(mObjects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002486}
2487
2488size_t Parcel::ipcObjectsCount() const
2489{
2490 return mObjectsSize;
2491}
2492
2493void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002494 const binder_size_t* objects, size_t objectsCount, release_func relFunc, void* relCookie)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002495{
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002496 binder_size_t minOffset = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002497 freeDataNoInit();
2498 mError = NO_ERROR;
2499 mData = const_cast<uint8_t*>(data);
2500 mDataSize = mDataCapacity = dataSize;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002501 //ALOGI("setDataReference Setting data size of %p to %lu (pid=%d)", this, mDataSize, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002502 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002503 ALOGV("setDataReference Setting data pos of %p to %zu", this, mDataPos);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002504 mObjects = const_cast<binder_size_t*>(objects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002505 mObjectsSize = mObjectsCapacity = objectsCount;
2506 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002507 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002508 mOwner = relFunc;
2509 mOwnerCookie = relCookie;
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002510 for (size_t i = 0; i < mObjectsSize; i++) {
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002511 binder_size_t offset = mObjects[i];
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002512 if (offset < minOffset) {
Dan Albert3bdc5b82014-11-20 11:50:23 -08002513 ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002514 __func__, (uint64_t)offset, (uint64_t)minOffset);
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002515 mObjectsSize = 0;
2516 break;
2517 }
2518 minOffset = offset + sizeof(flat_binder_object);
2519 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002520 scanForFds();
2521}
2522
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002523void Parcel::print(TextOutput& to, uint32_t /*flags*/) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002524{
2525 to << "Parcel(";
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002526
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002527 if (errorCheck() != NO_ERROR) {
2528 const status_t err = errorCheck();
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002529 to << "Error: " << (void*)(intptr_t)err << " \"" << strerror(-err) << "\"";
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002530 } else if (dataSize() > 0) {
2531 const uint8_t* DATA = data();
2532 to << indent << HexDump(DATA, dataSize()) << dedent;
Steven Moreland8bd01352019-07-15 16:36:14 -07002533 const binder_size_t* OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002534 const size_t N = objectsCount();
2535 for (size_t i=0; i<N; i++) {
2536 const flat_binder_object* flat
2537 = reinterpret_cast<const flat_binder_object*>(DATA+OBJS[i]);
2538 to << endl << "Object #" << i << " @ " << (void*)OBJS[i] << ": "
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002539 << TypeCode(flat->hdr.type & 0x7f7f7f00)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002540 << " = " << flat->binder;
2541 }
2542 } else {
2543 to << "NULL";
2544 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002545
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002546 to << ")";
2547}
2548
2549void Parcel::releaseObjects()
2550{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002551 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002552 if (i == 0) {
2553 return;
2554 }
2555 sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002556 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002557 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002558 while (i > 0) {
2559 i--;
2560 const flat_binder_object* flat
2561 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002562 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002563 }
2564}
2565
2566void Parcel::acquireObjects()
2567{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002568 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002569 if (i == 0) {
2570 return;
2571 }
2572 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002573 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002574 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002575 while (i > 0) {
2576 i--;
2577 const flat_binder_object* flat
2578 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002579 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002580 }
2581}
2582
2583void Parcel::freeData()
2584{
2585 freeDataNoInit();
2586 initState();
2587}
2588
2589void Parcel::freeDataNoInit()
2590{
2591 if (mOwner) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002592 LOG_ALLOC("Parcel %p: freeing other owner data", this);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002593 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002594 mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
2595 } else {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002596 LOG_ALLOC("Parcel %p: freeing allocated data", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002597 releaseObjects();
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002598 if (mData) {
2599 LOG_ALLOC("Parcel %p: freeing with %zu capacity", this, mDataCapacity);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002600 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dan Austin48fd7b42015-09-10 13:46:02 -07002601 if (mDataCapacity <= gParcelGlobalAllocSize) {
2602 gParcelGlobalAllocSize = gParcelGlobalAllocSize - mDataCapacity;
2603 } else {
2604 gParcelGlobalAllocSize = 0;
2605 }
2606 if (gParcelGlobalAllocCount > 0) {
2607 gParcelGlobalAllocCount--;
2608 }
Dianne Hackborna4cff882014-11-13 17:07:40 -08002609 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002610 free(mData);
2611 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002612 if (mObjects) free(mObjects);
2613 }
2614}
2615
2616status_t Parcel::growData(size_t len)
2617{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002618 if (len > INT32_MAX) {
2619 // don't accept size_t values which may have come from an
2620 // inadvertent conversion from a negative int.
2621 return BAD_VALUE;
2622 }
2623
Martijn Coenen93fe5182020-01-22 10:46:25 +01002624 if (len > SIZE_MAX - mDataSize) return NO_MEMORY; // overflow
2625 if (mDataSize + len > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002626 size_t newSize = ((mDataSize+len)*3)/2;
2627 return (newSize <= mDataSize)
2628 ? (status_t) NO_MEMORY
Steven Moreland042ae822020-05-27 17:45:17 +00002629 : continueWrite(std::max(newSize, (size_t) 128));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002630}
2631
2632status_t Parcel::restartWrite(size_t desired)
2633{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002634 if (desired > INT32_MAX) {
2635 // don't accept size_t values which may have come from an
2636 // inadvertent conversion from a negative int.
2637 return BAD_VALUE;
2638 }
2639
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002640 if (mOwner) {
2641 freeData();
2642 return continueWrite(desired);
2643 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002644
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002645 uint8_t* data = (uint8_t*)realloc(mData, desired);
2646 if (!data && desired > mDataCapacity) {
2647 mError = NO_MEMORY;
2648 return NO_MEMORY;
2649 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002650
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002651 releaseObjects();
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002652
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002653 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002654 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002655 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002656 gParcelGlobalAllocSize += desired;
2657 gParcelGlobalAllocSize -= mDataCapacity;
Colin Cross83ec65e2015-12-08 17:15:50 -08002658 if (!mData) {
2659 gParcelGlobalAllocCount++;
2660 }
Dianne Hackborna4cff882014-11-13 17:07:40 -08002661 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002662 mData = data;
2663 mDataCapacity = desired;
2664 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002665
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002666 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002667 ALOGV("restartWrite Setting data size of %p to %zu", this, mDataSize);
2668 ALOGV("restartWrite Setting data pos of %p to %zu", this, mDataPos);
2669
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002670 free(mObjects);
Yi Kong91635562018-06-07 14:38:36 -07002671 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002672 mObjectsSize = mObjectsCapacity = 0;
2673 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002674 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002675 mHasFds = false;
2676 mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -04002677 mAllowFds = true;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002678
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002679 return NO_ERROR;
2680}
2681
2682status_t Parcel::continueWrite(size_t desired)
2683{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002684 if (desired > INT32_MAX) {
2685 // don't accept size_t values which may have come from an
2686 // inadvertent conversion from a negative int.
2687 return BAD_VALUE;
2688 }
2689
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002690 // If shrinking, first adjust for any objects that appear
2691 // after the new data size.
2692 size_t objectsSize = mObjectsSize;
2693 if (desired < mDataSize) {
2694 if (desired == 0) {
2695 objectsSize = 0;
2696 } else {
2697 while (objectsSize > 0) {
Michael Wachenschwanza6541632017-05-18 22:08:32 +00002698 if (mObjects[objectsSize-1] < desired)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002699 break;
2700 objectsSize--;
2701 }
2702 }
2703 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002704
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002705 if (mOwner) {
2706 // If the size is going to zero, just release the owner's data.
2707 if (desired == 0) {
2708 freeData();
2709 return NO_ERROR;
2710 }
2711
2712 // If there is a different owner, we need to take
2713 // posession.
2714 uint8_t* data = (uint8_t*)malloc(desired);
2715 if (!data) {
2716 mError = NO_MEMORY;
2717 return NO_MEMORY;
2718 }
Yi Kong91635562018-06-07 14:38:36 -07002719 binder_size_t* objects = nullptr;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002720
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002721 if (objectsSize) {
Nick Kraleviche9881a32015-04-28 16:21:30 -07002722 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002723 if (!objects) {
Hyejin Kim3f727c02013-03-09 11:28:54 +09002724 free(data);
2725
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002726 mError = NO_MEMORY;
2727 return NO_MEMORY;
2728 }
2729
2730 // Little hack to only acquire references on objects
2731 // we will be keeping.
2732 size_t oldObjectsSize = mObjectsSize;
2733 mObjectsSize = objectsSize;
2734 acquireObjects();
2735 mObjectsSize = oldObjectsSize;
2736 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002737
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002738 if (mData) {
2739 memcpy(data, mData, mDataSize < desired ? mDataSize : desired);
2740 }
2741 if (objects && mObjects) {
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002742 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002743 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002744 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002745 mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
Yi Kong91635562018-06-07 14:38:36 -07002746 mOwner = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002747
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002748 LOG_ALLOC("Parcel %p: taking ownership of %zu capacity", this, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002749 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002750 gParcelGlobalAllocSize += desired;
2751 gParcelGlobalAllocCount++;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002752 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002753
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002754 mData = data;
2755 mObjects = objects;
2756 mDataSize = (mDataSize < desired) ? mDataSize : desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002757 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002758 mDataCapacity = desired;
2759 mObjectsSize = mObjectsCapacity = objectsSize;
2760 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002761 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002762
2763 } else if (mData) {
2764 if (objectsSize < mObjectsSize) {
2765 // Need to release refs on any objects we are dropping.
2766 const sp<ProcessState> proc(ProcessState::self());
2767 for (size_t i=objectsSize; i<mObjectsSize; i++) {
2768 const flat_binder_object* flat
2769 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002770 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002771 // will need to rescan because we may have lopped off the only FDs
2772 mFdsKnown = false;
2773 }
Adrian Rooscbf37262015-10-22 16:12:53 -07002774 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002775 }
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002776
2777 if (objectsSize == 0) {
2778 free(mObjects);
2779 mObjects = nullptr;
Michael Wachenschwanzdaf29a62019-10-15 11:49:22 -07002780 mObjectsCapacity = 0;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002781 } else {
2782 binder_size_t* objects =
2783 (binder_size_t*)realloc(mObjects, objectsSize*sizeof(binder_size_t));
2784 if (objects) {
2785 mObjects = objects;
Michael Wachenschwanzdaf29a62019-10-15 11:49:22 -07002786 mObjectsCapacity = objectsSize;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002787 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002788 }
2789 mObjectsSize = objectsSize;
2790 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002791 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002792 }
2793
2794 // We own the data, so we can just do a realloc().
2795 if (desired > mDataCapacity) {
2796 uint8_t* data = (uint8_t*)realloc(mData, desired);
2797 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002798 LOG_ALLOC("Parcel %p: continue from %zu to %zu capacity", this, mDataCapacity,
2799 desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002800 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002801 gParcelGlobalAllocSize += desired;
2802 gParcelGlobalAllocSize -= mDataCapacity;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002803 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002804 mData = data;
2805 mDataCapacity = desired;
Ganesh Mahendranade89892017-09-28 16:56:03 +08002806 } else {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002807 mError = NO_MEMORY;
2808 return NO_MEMORY;
2809 }
2810 } else {
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002811 if (mDataSize > desired) {
2812 mDataSize = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002813 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002814 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002815 if (mDataPos > desired) {
2816 mDataPos = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002817 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002818 }
2819 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002820
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002821 } else {
2822 // This is the first data. Easy!
2823 uint8_t* data = (uint8_t*)malloc(desired);
2824 if (!data) {
2825 mError = NO_MEMORY;
2826 return NO_MEMORY;
2827 }
Hyejin Kim3f727c02013-03-09 11:28:54 +09002828
Yi Kong91635562018-06-07 14:38:36 -07002829 if(!(mDataCapacity == 0 && mObjects == nullptr
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002830 && mObjectsCapacity == 0)) {
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002831 ALOGE("continueWrite: %zu/%p/%zu/%zu", mDataCapacity, mObjects, mObjectsCapacity, desired);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002832 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002833
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002834 LOG_ALLOC("Parcel %p: allocating with %zu capacity", this, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002835 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002836 gParcelGlobalAllocSize += desired;
2837 gParcelGlobalAllocCount++;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002838 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002839
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002840 mData = data;
2841 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002842 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
2843 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002844 mDataCapacity = desired;
2845 }
2846
2847 return NO_ERROR;
2848}
2849
2850void Parcel::initState()
2851{
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002852 LOG_ALLOC("Parcel %p: initState", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002853 mError = NO_ERROR;
Yi Kong91635562018-06-07 14:38:36 -07002854 mData = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002855 mDataSize = 0;
2856 mDataCapacity = 0;
2857 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002858 ALOGV("initState Setting data size of %p to %zu", this, mDataSize);
2859 ALOGV("initState Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07002860 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002861 mObjectsSize = 0;
2862 mObjectsCapacity = 0;
2863 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002864 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002865 mHasFds = false;
2866 mFdsKnown = true;
Steven Moreland6e5a7752019-08-05 20:30:14 -07002867 mAllowFds = true;
Yi Kong91635562018-06-07 14:38:36 -07002868 mOwner = nullptr;
Adrian Rooscbf37262015-10-22 16:12:53 -07002869 mOpenAshmemSize = 0;
Olivier Gaillarddc848a02019-01-30 17:10:44 +00002870 mWorkSourceRequestHeaderPosition = 0;
2871 mRequestHeaderPresent = false;
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002872
2873 // racing multiple init leads only to multiple identical write
2874 if (gMaxFds == 0) {
2875 struct rlimit result;
2876 if (!getrlimit(RLIMIT_NOFILE, &result)) {
2877 gMaxFds = (size_t)result.rlim_cur;
Christopher Tatebf14e942016-03-25 14:16:24 -07002878 //ALOGI("parcel fd limit set to %zu", gMaxFds);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002879 } else {
2880 ALOGW("Unable to getrlimit: %s", strerror(errno));
2881 gMaxFds = 1024;
2882 }
2883 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002884}
2885
2886void Parcel::scanForFds() const
2887{
2888 bool hasFds = false;
2889 for (size_t i=0; i<mObjectsSize; i++) {
2890 const flat_binder_object* flat
2891 = reinterpret_cast<const flat_binder_object*>(mData + mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002892 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002893 hasFds = true;
2894 break;
2895 }
2896 }
2897 mHasFds = hasFds;
2898 mFdsKnown = true;
2899}
2900
Dan Sandleraa5c2342015-04-10 10:08:45 -04002901size_t Parcel::getBlobAshmemSize() const
2902{
Adrian Roos6bb31142015-10-22 16:46:12 -07002903 // This used to return the size of all blobs that were written to ashmem, now we're returning
2904 // the ashmem currently referenced by this Parcel, which should be equivalent.
2905 // TODO: Remove method once ABI can be changed.
2906 return mOpenAshmemSize;
Dan Sandleraa5c2342015-04-10 10:08:45 -04002907}
2908
Adrian Rooscbf37262015-10-22 16:12:53 -07002909size_t Parcel::getOpenAshmemSize() const
2910{
2911 return mOpenAshmemSize;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002912}
2913
2914// --- Parcel::Blob ---
2915
2916Parcel::Blob::Blob() :
Yi Kong91635562018-06-07 14:38:36 -07002917 mFd(-1), mData(nullptr), mSize(0), mMutable(false) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002918}
2919
2920Parcel::Blob::~Blob() {
2921 release();
2922}
2923
2924void Parcel::Blob::release() {
Jeff Brown13b16042014-11-11 16:44:25 -08002925 if (mFd != -1 && mData) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002926 ::munmap(mData, mSize);
2927 }
2928 clear();
2929}
2930
Jeff Brown13b16042014-11-11 16:44:25 -08002931void Parcel::Blob::init(int fd, void* data, size_t size, bool isMutable) {
2932 mFd = fd;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002933 mData = data;
2934 mSize = size;
Jeff Brown13b16042014-11-11 16:44:25 -08002935 mMutable = isMutable;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002936}
2937
2938void Parcel::Blob::clear() {
Jeff Brown13b16042014-11-11 16:44:25 -08002939 mFd = -1;
Yi Kong91635562018-06-07 14:38:36 -07002940 mData = nullptr;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002941 mSize = 0;
Jeff Brown13b16042014-11-11 16:44:25 -08002942 mMutable = false;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002943}
2944
Steven Moreland61ff8492019-09-26 16:05:45 -07002945} // namespace android