blob: c7cb495d15f6eaa7c2c07ec585126b38d8e43ca6 [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>
Mathias Agopian002e1e52013-05-06 20:20:50 -070044#include <utils/Debug.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080045#include <utils/Flattenable.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070046#include <utils/Log.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080047#include <utils/misc.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070048#include <utils/String8.h>
49#include <utils/String16.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070050
Mathias Agopian208059f2009-05-18 15:08:03 -070051#include <private/binder/binder_module.h>
Steven Morelanda4853cd2019-07-12 15:44:37 -070052#include "Static.h"
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070053
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070054#define LOG_REFS(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080055//#define LOG_REFS(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
Dianne Hackborn7e790af2014-11-11 12:22:53 -080056#define LOG_ALLOC(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080057//#define LOG_ALLOC(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070058
59// ---------------------------------------------------------------------------
60
Nick Kralevichb6b14232015-04-02 09:36:02 -070061// This macro should never be used at runtime, as a too large value
62// of s could cause an integer overflow. Instead, you should always
63// use the wrapper function pad_size()
64#define PAD_SIZE_UNSAFE(s) (((s)+3)&~3)
65
66static size_t pad_size(size_t s) {
Steven Moreland28723ae2019-04-01 18:52:30 -070067 if (s > (std::numeric_limits<size_t>::max() - 3)) {
Steven Moreland6adf33c2019-09-25 13:18:09 -070068 LOG_ALWAYS_FATAL("pad size too big %zu", s);
Nick Kralevichb6b14232015-04-02 09:36:02 -070069 }
70 return PAD_SIZE_UNSAFE(s);
71}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070072
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070073// Note: must be kept in sync with android/os/StrictMode.java's PENALTY_GATHER
Jeff Sharkey05827be2018-06-26 10:52:38 -060074#define STRICT_MODE_PENALTY_GATHER (1 << 31)
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070075
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070076namespace android {
77
Steven Moreland7b102262019-08-01 15:48:43 -070078// many things compile this into prebuilts on the stack
79static_assert(sizeof(Parcel) == 60 || sizeof(Parcel) == 120);
80
Dianne Hackborna4cff882014-11-13 17:07:40 -080081static pthread_mutex_t gParcelGlobalAllocSizeLock = PTHREAD_MUTEX_INITIALIZER;
82static size_t gParcelGlobalAllocSize = 0;
83static size_t gParcelGlobalAllocCount = 0;
84
Christopher Tatee4e0ae82016-03-24 16:03:44 -070085static size_t gMaxFds = 0;
86
Jeff Brown13b16042014-11-11 16:44:25 -080087// Maximum size of a blob to transfer in-place.
88static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
89
90enum {
91 BLOB_INPLACE = 0,
92 BLOB_ASHMEM_IMMUTABLE = 1,
93 BLOB_ASHMEM_MUTABLE = 2,
94};
95
Steven Morelandb1c81202019-04-05 18:49:55 -070096static void acquire_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -070097 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070098{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -070099 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700100 case BINDER_TYPE_BINDER:
101 if (obj.binder) {
102 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800103 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700104 }
105 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700106 case BINDER_TYPE_HANDLE: {
107 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700108 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700109 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
110 b->incStrong(who);
111 }
112 return;
113 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700114 case BINDER_TYPE_FD: {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000115 if ((obj.cookie != 0) && (outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700116 // If we own an ashmem fd, keep track of how much memory it refers to.
117 int size = ashmem_get_size_region(obj.handle);
118 if (size > 0) {
119 *outAshmemSize += size;
Adrian Rooscbf37262015-10-22 16:12:53 -0700120 }
121 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700122 return;
123 }
124 }
125
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700126 ALOGD("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700127}
128
Adrian Roos6bb31142015-10-22 16:46:12 -0700129static void release_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -0700130 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700131{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700132 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700133 case BINDER_TYPE_BINDER:
134 if (obj.binder) {
135 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800136 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700137 }
138 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700139 case BINDER_TYPE_HANDLE: {
140 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700141 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700142 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
143 b->decStrong(who);
144 }
145 return;
146 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700147 case BINDER_TYPE_FD: {
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800148 if (obj.cookie != 0) { // owned
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000149 if ((outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700150 int size = ashmem_get_size_region(obj.handle);
151 if (size > 0) {
Tri Voaa6e1112019-01-29 13:23:46 -0800152 // ashmem size might have changed since last time it was accounted for, e.g.
153 // in acquire_object(). Value of *outAshmemSize is not critical since we are
154 // releasing the object anyway. Check for integer overflow condition.
155 *outAshmemSize -= std::min(*outAshmemSize, static_cast<size_t>(size));
Adrian Roos6bb31142015-10-22 16:46:12 -0700156 }
Adrian Roos6bb31142015-10-22 16:46:12 -0700157 }
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800158
159 close(obj.handle);
Adrian Rooscbf37262015-10-22 16:12:53 -0700160 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700161 return;
162 }
163 }
164
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700165 ALOGE("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700166}
167
Steven Morelanda86a3562019-08-01 23:28:34 +0000168status_t Parcel::finishFlattenBinder(
169 const sp<IBinder>& binder, const flat_binder_object& flat)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700170{
Steven Morelanda86a3562019-08-01 23:28:34 +0000171 status_t status = writeObject(flat, false);
172 if (status != OK) return status;
173
Steven Moreland6e5a7752019-08-05 20:30:14 -0700174 internal::Stability::tryMarkCompilationUnit(binder.get());
Steven Morelanda86a3562019-08-01 23:28:34 +0000175 return writeInt32(internal::Stability::get(binder.get()));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700176}
177
Steven Morelanda86a3562019-08-01 23:28:34 +0000178status_t Parcel::finishUnflattenBinder(
179 const sp<IBinder>& binder, sp<IBinder>* out) const
180{
181 int32_t stability;
182 status_t status = readInt32(&stability);
183 if (status != OK) return status;
184
Steven Moreland05929552019-07-31 17:51:25 -0700185 status = internal::Stability::set(binder.get(), stability, true /*log*/);
Steven Morelanda86a3562019-08-01 23:28:34 +0000186 if (status != OK) return status;
187
188 *out = binder;
189 return OK;
190}
191
Steven Morelandbf1915b2020-07-16 22:43:02 +0000192static constexpr inline int schedPolicyMask(int policy, int priority) {
193 return (priority & FLAT_BINDER_FLAG_PRIORITY_MASK) | ((policy & 3) << FLAT_BINDER_FLAG_SCHED_POLICY_SHIFT);
194}
195
Steven Morelanda86a3562019-08-01 23:28:34 +0000196status_t Parcel::flattenBinder(const sp<IBinder>& binder)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700197{
198 flat_binder_object obj;
Steven Morelandbf1915b2020-07-16 22:43:02 +0000199 obj.flags = FLAT_BINDER_FLAG_ACCEPTS_FDS;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700200
Steven Morelandbf1915b2020-07-16 22:43:02 +0000201 int schedBits = 0;
202 if (!IPCThreadState::self()->backgroundSchedulingDisabled()) {
203 schedBits = schedPolicyMask(SCHED_NORMAL, 19);
Martijn Coenen2b631742017-05-05 11:16:59 -0700204 }
205
Yi Kong91635562018-06-07 14:38:36 -0700206 if (binder != nullptr) {
Steven Morelandf0212002018-12-26 13:59:23 -0800207 BBinder *local = binder->localBinder();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700208 if (!local) {
209 BpBinder *proxy = binder->remoteBinder();
Yi Kong91635562018-06-07 14:38:36 -0700210 if (proxy == nullptr) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000211 ALOGE("null proxy");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700212 }
213 const int32_t handle = proxy ? proxy->handle() : 0;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700214 obj.hdr.type = BINDER_TYPE_HANDLE;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -0800215 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700216 obj.handle = handle;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800217 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700218 } else {
Steven Morelandbf1915b2020-07-16 22:43:02 +0000219 int policy = local->getMinSchedulerPolicy();
220 int priority = local->getMinSchedulerPriority();
221
222 if (policy != 0 || priority != 0) {
223 // override value, since it is set explicitly
224 schedBits = schedPolicyMask(policy, priority);
225 }
Steven Morelandf0212002018-12-26 13:59:23 -0800226 if (local->isRequestingSid()) {
227 obj.flags |= FLAT_BINDER_FLAG_TXN_SECURITY_CTX;
228 }
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700229 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800230 obj.binder = reinterpret_cast<uintptr_t>(local->getWeakRefs());
231 obj.cookie = reinterpret_cast<uintptr_t>(local);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700232 }
233 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700234 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800235 obj.binder = 0;
236 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700237 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700238
Steven Morelandbf1915b2020-07-16 22:43:02 +0000239 obj.flags |= schedBits;
240
Steven Morelanda86a3562019-08-01 23:28:34 +0000241 return finishFlattenBinder(binder, obj);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700242}
243
Steven Morelanda86a3562019-08-01 23:28:34 +0000244status_t Parcel::unflattenBinder(sp<IBinder>* out) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700245{
Steven Morelanda86a3562019-08-01 23:28:34 +0000246 const flat_binder_object* flat = readObject(false);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700247
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700248 if (flat) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700249 switch (flat->hdr.type) {
Steven Morelanda86a3562019-08-01 23:28:34 +0000250 case BINDER_TYPE_BINDER: {
251 sp<IBinder> binder = reinterpret_cast<IBinder*>(flat->cookie);
252 return finishUnflattenBinder(binder, out);
253 }
254 case BINDER_TYPE_HANDLE: {
255 sp<IBinder> binder =
256 ProcessState::self()->getStrongProxyForHandle(flat->handle);
257 return finishUnflattenBinder(binder, out);
258 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700259 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700260 }
261 return BAD_TYPE;
262}
263
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700264// ---------------------------------------------------------------------------
265
266Parcel::Parcel()
267{
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800268 LOG_ALLOC("Parcel %p: constructing", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700269 initState();
270}
271
272Parcel::~Parcel()
273{
274 freeDataNoInit();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800275 LOG_ALLOC("Parcel %p: destroyed", this);
276}
277
278size_t Parcel::getGlobalAllocSize() {
Dianne Hackborna4cff882014-11-13 17:07:40 -0800279 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
280 size_t size = gParcelGlobalAllocSize;
281 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
282 return size;
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800283}
284
285size_t Parcel::getGlobalAllocCount() {
Dianne Hackborna4cff882014-11-13 17:07:40 -0800286 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
287 size_t count = gParcelGlobalAllocCount;
288 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
289 return count;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700290}
291
292const uint8_t* Parcel::data() const
293{
294 return mData;
295}
296
297size_t Parcel::dataSize() const
298{
299 return (mDataSize > mDataPos ? mDataSize : mDataPos);
300}
301
302size_t Parcel::dataAvail() const
303{
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700304 size_t result = dataSize() - dataPosition();
305 if (result > INT32_MAX) {
Steven Moreland6adf33c2019-09-25 13:18:09 -0700306 LOG_ALWAYS_FATAL("result too big: %zu", result);
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700307 }
308 return result;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700309}
310
311size_t Parcel::dataPosition() const
312{
313 return mDataPos;
314}
315
316size_t Parcel::dataCapacity() const
317{
318 return mDataCapacity;
319}
320
321status_t Parcel::setDataSize(size_t size)
322{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700323 if (size > INT32_MAX) {
324 // don't accept size_t values which may have come from an
325 // inadvertent conversion from a negative int.
326 return BAD_VALUE;
327 }
328
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700329 status_t err;
330 err = continueWrite(size);
331 if (err == NO_ERROR) {
332 mDataSize = size;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700333 ALOGV("setDataSize Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700334 }
335 return err;
336}
337
338void Parcel::setDataPosition(size_t pos) const
339{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700340 if (pos > INT32_MAX) {
341 // don't accept size_t values which may have come from an
342 // inadvertent conversion from a negative int.
Steven Moreland6adf33c2019-09-25 13:18:09 -0700343 LOG_ALWAYS_FATAL("pos too big: %zu", pos);
Nick Kralevichb6b14232015-04-02 09:36:02 -0700344 }
345
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700346 mDataPos = pos;
347 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -0800348 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700349}
350
351status_t Parcel::setDataCapacity(size_t size)
352{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700353 if (size > INT32_MAX) {
354 // don't accept size_t values which may have come from an
355 // inadvertent conversion from a negative int.
356 return BAD_VALUE;
357 }
358
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700359 if (size > mDataCapacity) return continueWrite(size);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700360 return NO_ERROR;
361}
362
363status_t Parcel::setData(const uint8_t* buffer, size_t len)
364{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700365 if (len > INT32_MAX) {
366 // don't accept size_t values which may have come from an
367 // inadvertent conversion from a negative int.
368 return BAD_VALUE;
369 }
370
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700371 status_t err = restartWrite(len);
372 if (err == NO_ERROR) {
373 memcpy(const_cast<uint8_t*>(data()), buffer, len);
374 mDataSize = len;
375 mFdsKnown = false;
376 }
377 return err;
378}
379
Andreas Huber51faf462011-04-13 10:21:56 -0700380status_t Parcel::appendFrom(const Parcel *parcel, size_t offset, size_t len)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700381{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700382 status_t err;
Andreas Huber51faf462011-04-13 10:21:56 -0700383 const uint8_t *data = parcel->mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800384 const binder_size_t *objects = parcel->mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700385 size_t size = parcel->mObjectsSize;
386 int startPos = mDataPos;
387 int firstIndex = -1, lastIndex = -2;
388
389 if (len == 0) {
390 return NO_ERROR;
391 }
392
Nick Kralevichb6b14232015-04-02 09:36:02 -0700393 if (len > INT32_MAX) {
394 // don't accept size_t values which may have come from an
395 // inadvertent conversion from a negative int.
396 return BAD_VALUE;
397 }
398
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700399 // range checks against the source parcel size
400 if ((offset > parcel->mDataSize)
401 || (len > parcel->mDataSize)
402 || (offset + len > parcel->mDataSize)) {
403 return BAD_VALUE;
404 }
405
406 // Count objects in range
407 for (int i = 0; i < (int) size; i++) {
408 size_t off = objects[i];
Christopher Tate27182be2015-05-27 17:53:02 -0700409 if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700410 if (firstIndex == -1) {
411 firstIndex = i;
412 }
413 lastIndex = i;
414 }
415 }
416 int numObjects = lastIndex - firstIndex + 1;
417
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700418 if ((mDataSize+len) > mDataCapacity) {
419 // grow data
420 err = growData(len);
421 if (err != NO_ERROR) {
422 return err;
423 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700424 }
425
426 // append data
427 memcpy(mData + mDataPos, data + offset, len);
428 mDataPos += len;
429 mDataSize += len;
430
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400431 err = NO_ERROR;
432
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700433 if (numObjects > 0) {
Martijn Coenen69390d42018-10-22 15:18:10 +0200434 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700435 // grow objects
436 if (mObjectsCapacity < mObjectsSize + numObjects) {
Martijn Coenen93fe5182020-01-22 10:46:25 +0100437 if ((size_t) numObjects > SIZE_MAX - mObjectsSize) return NO_MEMORY; // overflow
438 if (mObjectsSize + numObjects > SIZE_MAX / 3) return NO_MEMORY; // overflow
Christopher Tateed7a50c2015-06-08 14:45:14 -0700439 size_t newSize = ((mObjectsSize + numObjects)*3)/2;
Martijn Coenen93fe5182020-01-22 10:46:25 +0100440 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800441 binder_size_t *objects =
442 (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -0700443 if (objects == (binder_size_t*)nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700444 return NO_MEMORY;
445 }
446 mObjects = objects;
447 mObjectsCapacity = newSize;
448 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700449
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700450 // append and acquire objects
451 int idx = mObjectsSize;
452 for (int i = firstIndex; i <= lastIndex; i++) {
453 size_t off = objects[i] - offset + startPos;
454 mObjects[idx++] = off;
455 mObjectsSize++;
456
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700457 flat_binder_object* flat
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700458 = reinterpret_cast<flat_binder_object*>(mData + off);
Adrian Rooscbf37262015-10-22 16:12:53 -0700459 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700460
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700461 if (flat->hdr.type == BINDER_TYPE_FD) {
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700462 // If this is a file descriptor, we need to dup it so the
463 // new Parcel now owns its own fd, and can declare that we
464 // officially know we have fds.
Nick Kralevichec9ec7d2016-12-17 19:47:27 -0800465 flat->handle = fcntl(flat->handle, F_DUPFD_CLOEXEC, 0);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800466 flat->cookie = 1;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700467 mHasFds = mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400468 if (!mAllowFds) {
469 err = FDS_NOT_ALLOWED;
470 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700471 }
472 }
473 }
474
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400475 return err;
476}
477
Dianne Hackborn15feb9b2017-04-10 15:34:35 -0700478int Parcel::compareData(const Parcel& other) {
479 size_t size = dataSize();
480 if (size != other.dataSize()) {
481 return size < other.dataSize() ? -1 : 1;
482 }
483 return memcmp(data(), other.data(), size);
484}
485
Jeff Brown13b16042014-11-11 16:44:25 -0800486bool Parcel::allowFds() const
487{
488 return mAllowFds;
489}
490
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700491bool Parcel::pushAllowFds(bool allowFds)
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400492{
493 const bool origValue = mAllowFds;
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700494 if (!allowFds) {
495 mAllowFds = false;
496 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400497 return origValue;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700498}
499
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700500void Parcel::restoreAllowFds(bool lastValue)
501{
502 mAllowFds = lastValue;
503}
504
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700505bool Parcel::hasFileDescriptors() const
506{
507 if (!mFdsKnown) {
508 scanForFds();
509 }
510 return mHasFds;
511}
512
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000513void Parcel::updateWorkSourceRequestHeaderPosition() const {
514 // Only update the request headers once. We only want to point
515 // to the first headers read/written.
516 if (!mRequestHeaderPresent) {
517 mWorkSourceRequestHeaderPosition = dataPosition();
518 mRequestHeaderPresent = true;
519 }
520}
521
Jooyung Han1b228f42020-01-30 13:41:12 +0900522#if defined(__ANDROID_VNDK__) && !defined(__ANDROID_APEX__)
Steven Morelandd70160f2019-07-23 10:20:38 -0700523constexpr int32_t kHeader = B_PACK_CHARS('V', 'N', 'D', 'R');
524#else
525constexpr int32_t kHeader = B_PACK_CHARS('S', 'Y', 'S', 'T');
526#endif
527
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700528// Write RPC headers. (previously just the interface token)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700529status_t Parcel::writeInterfaceToken(const String16& interface)
530{
Olivier Gaillard91a04802018-11-14 17:32:41 +0000531 const IPCThreadState* threadState = IPCThreadState::self();
532 writeInt32(threadState->getStrictModePolicy() | STRICT_MODE_PENALTY_GATHER);
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000533 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000534 writeInt32(threadState->shouldPropagateWorkSource() ?
535 threadState->getCallingWorkSourceUid() : IPCThreadState::kUnsetWorkSource);
Steven Morelandd70160f2019-07-23 10:20:38 -0700536 writeInt32(kHeader);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700537 // currently the interface identification token is just its name as a string
538 return writeString16(interface);
539}
540
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000541bool Parcel::replaceCallingWorkSourceUid(uid_t uid)
542{
543 if (!mRequestHeaderPresent) {
544 return false;
545 }
546
547 const size_t initialPosition = dataPosition();
548 setDataPosition(mWorkSourceRequestHeaderPosition);
549 status_t err = writeInt32(uid);
550 setDataPosition(initialPosition);
551 return err == NO_ERROR;
552}
553
Steven Morelandf1b1e492019-05-06 15:05:13 -0700554uid_t Parcel::readCallingWorkSourceUid() const
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000555{
556 if (!mRequestHeaderPresent) {
557 return IPCThreadState::kUnsetWorkSource;
558 }
559
560 const size_t initialPosition = dataPosition();
561 setDataPosition(mWorkSourceRequestHeaderPosition);
562 uid_t uid = readInt32();
563 setDataPosition(initialPosition);
564 return uid;
565}
566
Mathias Agopian83c04462009-05-22 19:00:22 -0700567bool Parcel::checkInterface(IBinder* binder) const
568{
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700569 return enforceInterface(binder->getInterfaceDescriptor());
Mathias Agopian83c04462009-05-22 19:00:22 -0700570}
571
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700572bool Parcel::enforceInterface(const String16& interface,
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700573 IPCThreadState* threadState) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700574{
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700575 return enforceInterface(interface.string(), interface.size(), threadState);
576}
577
578bool Parcel::enforceInterface(const char16_t* interface,
579 size_t len,
580 IPCThreadState* threadState) const
581{
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100582 // StrictModePolicy.
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700583 int32_t strictPolicy = readInt32();
Yi Kong91635562018-06-07 14:38:36 -0700584 if (threadState == nullptr) {
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700585 threadState = IPCThreadState::self();
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700586 }
Brad Fitzpatrick52736032010-08-30 16:01:16 -0700587 if ((threadState->getLastTransactionBinderFlags() &
588 IBinder::FLAG_ONEWAY) != 0) {
589 // For one-way calls, the callee is running entirely
590 // disconnected from the caller, so disable StrictMode entirely.
591 // Not only does disk/network usage not impact the caller, but
592 // there's no way to commuicate back any violations anyway.
593 threadState->setStrictModePolicy(0);
594 } else {
595 threadState->setStrictModePolicy(strictPolicy);
596 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100597 // WorkSource.
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000598 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100599 int32_t workSource = readInt32();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000600 threadState->setCallingWorkSourceUidWithoutPropagation(workSource);
Steven Morelandd70160f2019-07-23 10:20:38 -0700601 // vendor header
602 int32_t header = readInt32();
603 if (header != kHeader) {
604 ALOGE("Expecting header 0x%x but found 0x%x. Mixing copies of libbinder?", kHeader, header);
605 return false;
606 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100607 // Interface descriptor.
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700608 size_t parcel_interface_len;
609 const char16_t* parcel_interface = readString16Inplace(&parcel_interface_len);
610 if (len == parcel_interface_len &&
611 (!len || !memcmp(parcel_interface, interface, len * sizeof (char16_t)))) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700612 return true;
613 } else {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700614 ALOGW("**** enforceInterface() expected '%s' but read '%s'",
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700615 String8(interface, len).string(),
616 String8(parcel_interface, parcel_interface_len).string());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700617 return false;
618 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700619}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700620
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700621size_t Parcel::objectsCount() const
622{
623 return mObjectsSize;
624}
625
626status_t Parcel::errorCheck() const
627{
628 return mError;
629}
630
631void Parcel::setError(status_t err)
632{
633 mError = err;
634}
635
636status_t Parcel::finishWrite(size_t len)
637{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700638 if (len > INT32_MAX) {
639 // don't accept size_t values which may have come from an
640 // inadvertent conversion from a negative int.
641 return BAD_VALUE;
642 }
643
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700644 //printf("Finish write of %d\n", len);
645 mDataPos += len;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700646 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700647 if (mDataPos > mDataSize) {
648 mDataSize = mDataPos;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700649 ALOGV("finishWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700650 }
651 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
652 return NO_ERROR;
653}
654
655status_t Parcel::writeUnpadded(const void* data, size_t len)
656{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700657 if (len > INT32_MAX) {
658 // don't accept size_t values which may have come from an
659 // inadvertent conversion from a negative int.
660 return BAD_VALUE;
661 }
662
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700663 size_t end = mDataPos + len;
664 if (end < mDataPos) {
665 // integer overflow
666 return BAD_VALUE;
667 }
668
669 if (end <= mDataCapacity) {
670restart_write:
671 memcpy(mData+mDataPos, data, len);
672 return finishWrite(len);
673 }
674
675 status_t err = growData(len);
676 if (err == NO_ERROR) goto restart_write;
677 return err;
678}
679
680status_t Parcel::write(const void* data, size_t len)
681{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700682 if (len > INT32_MAX) {
683 // don't accept size_t values which may have come from an
684 // inadvertent conversion from a negative int.
685 return BAD_VALUE;
686 }
687
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700688 void* const d = writeInplace(len);
689 if (d) {
690 memcpy(d, data, len);
691 return NO_ERROR;
692 }
693 return mError;
694}
695
696void* Parcel::writeInplace(size_t len)
697{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700698 if (len > INT32_MAX) {
699 // don't accept size_t values which may have come from an
700 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -0700701 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -0700702 }
703
704 const size_t padded = pad_size(len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700705
706 // sanity check for integer overflow
707 if (mDataPos+padded < mDataPos) {
Yi Kong91635562018-06-07 14:38:36 -0700708 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700709 }
710
711 if ((mDataPos+padded) <= mDataCapacity) {
712restart_write:
713 //printf("Writing %ld bytes, padded to %ld\n", len, padded);
714 uint8_t* const data = mData+mDataPos;
715
716 // Need to pad at end?
717 if (padded != len) {
718#if BYTE_ORDER == BIG_ENDIAN
719 static const uint32_t mask[4] = {
720 0x00000000, 0xffffff00, 0xffff0000, 0xff000000
721 };
722#endif
723#if BYTE_ORDER == LITTLE_ENDIAN
724 static const uint32_t mask[4] = {
725 0x00000000, 0x00ffffff, 0x0000ffff, 0x000000ff
726 };
727#endif
728 //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
729 // *reinterpret_cast<void**>(data+padded-4));
730 *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
731 }
732
733 finishWrite(padded);
734 return data;
735 }
736
737 status_t err = growData(padded);
738 if (err == NO_ERROR) goto restart_write;
Yi Kong91635562018-06-07 14:38:36 -0700739 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700740}
741
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800742status_t Parcel::writeUtf8AsUtf16(const std::string& str) {
743 const uint8_t* strData = (uint8_t*)str.data();
744 const size_t strLen= str.length();
745 const ssize_t utf16Len = utf8_to_utf16_length(strData, strLen);
Sergio Girof4607432016-07-21 14:46:35 +0100746 if (utf16Len < 0 || utf16Len > std::numeric_limits<int32_t>::max()) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800747 return BAD_VALUE;
748 }
749
750 status_t err = writeInt32(utf16Len);
751 if (err) {
752 return err;
753 }
754
755 // Allocate enough bytes to hold our converted string and its terminating NULL.
756 void* dst = writeInplace((utf16Len + 1) * sizeof(char16_t));
757 if (!dst) {
758 return NO_MEMORY;
759 }
760
Sergio Girof4607432016-07-21 14:46:35 +0100761 utf8_to_utf16(strData, strLen, (char16_t*)dst, (size_t) utf16Len + 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800762
763 return NO_ERROR;
764}
765
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900766status_t Parcel::writeUtf8AsUtf16(const std::optional<std::string>& str) {
767 if (!str) {
768 return writeInt32(-1);
769 }
770 return writeUtf8AsUtf16(*str);
771}
772
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800773status_t Parcel::writeUtf8AsUtf16(const std::unique_ptr<std::string>& str) {
774 if (!str) {
775 return writeInt32(-1);
776 }
777 return writeUtf8AsUtf16(*str);
778}
779
Daniel Normand0337ef2019-09-20 15:46:03 -0700780status_t Parcel::writeByteVectorInternal(const int8_t* data, size_t size) {
781 if (size > std::numeric_limits<int32_t>::max()) {
782 return BAD_VALUE;
Casey Dahlin451ff582015-10-19 18:12:18 -0700783 }
784
Daniel Normand0337ef2019-09-20 15:46:03 -0700785 status_t status = writeInt32(size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700786 if (status != OK) {
787 return status;
788 }
789
Daniel Normand0337ef2019-09-20 15:46:03 -0700790 return write(data, size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700791}
792
Casey Dahlin185d3442016-02-09 11:08:35 -0800793status_t Parcel::writeByteVector(const std::vector<int8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700794 return writeByteVectorInternal(val.data(), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800795}
796
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900797status_t Parcel::writeByteVector(const std::optional<std::vector<int8_t>>& val)
798{
799 if (!val) return writeInt32(-1);
800 return writeByteVectorInternal(val->data(), val->size());
801}
802
Casey Dahlin185d3442016-02-09 11:08:35 -0800803status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<int8_t>>& val)
804{
Daniel Normand0337ef2019-09-20 15:46:03 -0700805 if (!val) return writeInt32(-1);
806 return writeByteVectorInternal(val->data(), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800807}
808
809status_t Parcel::writeByteVector(const std::vector<uint8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700810 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val.data()), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800811}
812
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900813status_t Parcel::writeByteVector(const std::optional<std::vector<uint8_t>>& val)
814{
815 if (!val) return writeInt32(-1);
816 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
817}
818
Casey Dahlin185d3442016-02-09 11:08:35 -0800819status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<uint8_t>>& val)
820{
Daniel Normand0337ef2019-09-20 15:46:03 -0700821 if (!val) return writeInt32(-1);
822 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800823}
824
Casey Dahlin451ff582015-10-19 18:12:18 -0700825status_t Parcel::writeInt32Vector(const std::vector<int32_t>& val)
826{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800827 return writeTypedVector(val, &Parcel::writeInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -0700828}
829
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900830status_t Parcel::writeInt32Vector(const std::optional<std::vector<int32_t>>& val)
831{
832 return writeNullableTypedVector(val, &Parcel::writeInt32);
833}
834
Casey Dahlinb9872622015-11-25 15:09:45 -0800835status_t Parcel::writeInt32Vector(const std::unique_ptr<std::vector<int32_t>>& val)
836{
837 return writeNullableTypedVector(val, &Parcel::writeInt32);
838}
839
Casey Dahlin451ff582015-10-19 18:12:18 -0700840status_t Parcel::writeInt64Vector(const std::vector<int64_t>& val)
841{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800842 return writeTypedVector(val, &Parcel::writeInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -0700843}
844
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900845status_t Parcel::writeInt64Vector(const std::optional<std::vector<int64_t>>& val)
846{
847 return writeNullableTypedVector(val, &Parcel::writeInt64);
848}
849
Casey Dahlinb9872622015-11-25 15:09:45 -0800850status_t Parcel::writeInt64Vector(const std::unique_ptr<std::vector<int64_t>>& val)
851{
852 return writeNullableTypedVector(val, &Parcel::writeInt64);
853}
854
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800855status_t Parcel::writeUint64Vector(const std::vector<uint64_t>& val)
856{
857 return writeTypedVector(val, &Parcel::writeUint64);
858}
859
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900860status_t Parcel::writeUint64Vector(const std::optional<std::vector<uint64_t>>& val)
861{
862 return writeNullableTypedVector(val, &Parcel::writeUint64);
863}
864
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800865status_t Parcel::writeUint64Vector(const std::unique_ptr<std::vector<uint64_t>>& val)
866{
867 return writeNullableTypedVector(val, &Parcel::writeUint64);
868}
869
Casey Dahlin451ff582015-10-19 18:12:18 -0700870status_t Parcel::writeFloatVector(const std::vector<float>& val)
871{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800872 return writeTypedVector(val, &Parcel::writeFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -0700873}
874
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900875status_t Parcel::writeFloatVector(const std::optional<std::vector<float>>& val)
876{
877 return writeNullableTypedVector(val, &Parcel::writeFloat);
878}
879
Casey Dahlinb9872622015-11-25 15:09:45 -0800880status_t Parcel::writeFloatVector(const std::unique_ptr<std::vector<float>>& val)
881{
882 return writeNullableTypedVector(val, &Parcel::writeFloat);
883}
884
Casey Dahlin451ff582015-10-19 18:12:18 -0700885status_t Parcel::writeDoubleVector(const std::vector<double>& val)
886{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800887 return writeTypedVector(val, &Parcel::writeDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -0700888}
889
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900890status_t Parcel::writeDoubleVector(const std::optional<std::vector<double>>& val)
891{
892 return writeNullableTypedVector(val, &Parcel::writeDouble);
893}
894
Casey Dahlinb9872622015-11-25 15:09:45 -0800895status_t Parcel::writeDoubleVector(const std::unique_ptr<std::vector<double>>& val)
896{
897 return writeNullableTypedVector(val, &Parcel::writeDouble);
898}
899
Casey Dahlin451ff582015-10-19 18:12:18 -0700900status_t Parcel::writeBoolVector(const std::vector<bool>& val)
901{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800902 return writeTypedVector(val, &Parcel::writeBool);
Casey Dahlin451ff582015-10-19 18:12:18 -0700903}
904
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900905status_t Parcel::writeBoolVector(const std::optional<std::vector<bool>>& val)
906{
907 return writeNullableTypedVector(val, &Parcel::writeBool);
908}
909
Casey Dahlinb9872622015-11-25 15:09:45 -0800910status_t Parcel::writeBoolVector(const std::unique_ptr<std::vector<bool>>& val)
911{
912 return writeNullableTypedVector(val, &Parcel::writeBool);
913}
914
Casey Dahlin451ff582015-10-19 18:12:18 -0700915status_t Parcel::writeCharVector(const std::vector<char16_t>& val)
916{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800917 return writeTypedVector(val, &Parcel::writeChar);
Casey Dahlin451ff582015-10-19 18:12:18 -0700918}
919
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900920status_t Parcel::writeCharVector(const std::optional<std::vector<char16_t>>& val)
921{
922 return writeNullableTypedVector(val, &Parcel::writeChar);
923}
924
Casey Dahlinb9872622015-11-25 15:09:45 -0800925status_t Parcel::writeCharVector(const std::unique_ptr<std::vector<char16_t>>& val)
926{
927 return writeNullableTypedVector(val, &Parcel::writeChar);
928}
929
Casey Dahlin451ff582015-10-19 18:12:18 -0700930status_t Parcel::writeString16Vector(const std::vector<String16>& val)
931{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800932 return writeTypedVector(val, &Parcel::writeString16);
Casey Dahlin451ff582015-10-19 18:12:18 -0700933}
934
Casey Dahlinb9872622015-11-25 15:09:45 -0800935status_t Parcel::writeString16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900936 const std::optional<std::vector<std::optional<String16>>>& val)
937{
938 return writeNullableTypedVector(val, &Parcel::writeString16);
939}
940
941status_t Parcel::writeString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -0800942 const std::unique_ptr<std::vector<std::unique_ptr<String16>>>& val)
943{
944 return writeNullableTypedVector(val, &Parcel::writeString16);
945}
946
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800947status_t Parcel::writeUtf8VectorAsUtf16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900948 const std::optional<std::vector<std::optional<std::string>>>& val) {
949 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
950}
951
952status_t Parcel::writeUtf8VectorAsUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800953 const std::unique_ptr<std::vector<std::unique_ptr<std::string>>>& val) {
954 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
955}
956
957status_t Parcel::writeUtf8VectorAsUtf16Vector(const std::vector<std::string>& val) {
958 return writeTypedVector(val, &Parcel::writeUtf8AsUtf16);
959}
960
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700961status_t Parcel::writeInt32(int32_t val)
962{
Andreas Huber84a6d042009-08-17 13:33:27 -0700963 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700964}
Dan Stoza41a0f2f2014-12-01 10:01:10 -0800965
966status_t Parcel::writeUint32(uint32_t val)
967{
968 return writeAligned(val);
969}
970
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700971status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700972 if (len > INT32_MAX) {
973 // don't accept size_t values which may have come from an
974 // inadvertent conversion from a negative int.
975 return BAD_VALUE;
976 }
977
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700978 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700979 return writeInt32(-1);
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700980 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700981 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700982 if (ret == NO_ERROR) {
983 ret = write(val, len * sizeof(*val));
984 }
985 return ret;
986}
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700987status_t Parcel::writeByteArray(size_t len, const uint8_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700988 if (len > INT32_MAX) {
989 // don't accept size_t values which may have come from an
990 // inadvertent conversion from a negative int.
991 return BAD_VALUE;
992 }
993
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700994 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700995 return writeInt32(-1);
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700996 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700997 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700998 if (ret == NO_ERROR) {
999 ret = write(val, len * sizeof(*val));
1000 }
1001 return ret;
1002}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001003
Casey Dahlind6848f52015-10-15 15:44:59 -07001004status_t Parcel::writeBool(bool val)
1005{
1006 return writeInt32(int32_t(val));
1007}
1008
1009status_t Parcel::writeChar(char16_t val)
1010{
1011 return writeInt32(int32_t(val));
1012}
1013
1014status_t Parcel::writeByte(int8_t val)
1015{
1016 return writeInt32(int32_t(val));
1017}
1018
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001019status_t Parcel::writeInt64(int64_t val)
1020{
Andreas Huber84a6d042009-08-17 13:33:27 -07001021 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001022}
1023
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001024status_t Parcel::writeUint64(uint64_t val)
1025{
1026 return writeAligned(val);
1027}
1028
Serban Constantinescuf683e012013-11-05 16:53:55 +00001029status_t Parcel::writePointer(uintptr_t val)
1030{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001031 return writeAligned<binder_uintptr_t>(val);
Serban Constantinescuf683e012013-11-05 16:53:55 +00001032}
1033
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001034status_t Parcel::writeFloat(float val)
1035{
Andreas Huber84a6d042009-08-17 13:33:27 -07001036 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001037}
1038
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001039#if defined(__mips__) && defined(__mips_hard_float)
1040
1041status_t Parcel::writeDouble(double val)
1042{
1043 union {
1044 double d;
1045 unsigned long long ll;
1046 } u;
1047 u.d = val;
1048 return writeAligned(u.ll);
1049}
1050
1051#else
1052
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001053status_t Parcel::writeDouble(double val)
1054{
Andreas Huber84a6d042009-08-17 13:33:27 -07001055 return writeAligned(val);
1056}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001057
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001058#endif
1059
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001060status_t Parcel::writeCString(const char* str)
1061{
1062 return write(str, strlen(str)+1);
1063}
1064
1065status_t Parcel::writeString8(const String8& str)
1066{
1067 status_t err = writeInt32(str.bytes());
Pravat Dalbeherad1dff8d2010-12-15 08:40:00 +01001068 // only write string if its length is more than zero characters,
1069 // as readString8 will only read if the length field is non-zero.
1070 // this is slightly different from how writeString16 works.
1071 if (str.bytes() > 0 && err == NO_ERROR) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001072 err = write(str.string(), str.bytes()+1);
1073 }
1074 return err;
1075}
1076
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001077status_t Parcel::writeString16(const std::optional<String16>& str)
1078{
1079 if (!str) {
1080 return writeInt32(-1);
1081 }
1082
1083 return writeString16(*str);
1084}
1085
Casey Dahlinb9872622015-11-25 15:09:45 -08001086status_t Parcel::writeString16(const std::unique_ptr<String16>& str)
1087{
1088 if (!str) {
1089 return writeInt32(-1);
1090 }
1091
1092 return writeString16(*str);
1093}
1094
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001095status_t Parcel::writeString16(const String16& str)
1096{
1097 return writeString16(str.string(), str.size());
1098}
1099
1100status_t Parcel::writeString16(const char16_t* str, size_t len)
1101{
Yi Kong91635562018-06-07 14:38:36 -07001102 if (str == nullptr) return writeInt32(-1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001103
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001104 status_t err = writeInt32(len);
1105 if (err == NO_ERROR) {
1106 len *= sizeof(char16_t);
1107 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char16_t));
1108 if (data) {
1109 memcpy(data, str, len);
1110 *reinterpret_cast<char16_t*>(data+len) = 0;
1111 return NO_ERROR;
1112 }
1113 err = mError;
1114 }
1115 return err;
1116}
1117
1118status_t Parcel::writeStrongBinder(const sp<IBinder>& val)
1119{
Steven Morelanda86a3562019-08-01 23:28:34 +00001120 return flattenBinder(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001121}
1122
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001123status_t Parcel::writeStrongBinderVector(const std::vector<sp<IBinder>>& val)
1124{
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001125 return writeTypedVector(val, &Parcel::writeStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001126}
1127
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001128status_t Parcel::writeStrongBinderVector(const std::optional<std::vector<sp<IBinder>>>& val)
1129{
1130 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1131}
1132
Casey Dahlinb9872622015-11-25 15:09:45 -08001133status_t Parcel::writeStrongBinderVector(const std::unique_ptr<std::vector<sp<IBinder>>>& val)
1134{
1135 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1136}
1137
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001138status_t Parcel::readStrongBinderVector(std::optional<std::vector<sp<IBinder>>>* val) const {
1139 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
1140}
1141
Casey Dahlinb9872622015-11-25 15:09:45 -08001142status_t Parcel::readStrongBinderVector(std::unique_ptr<std::vector<sp<IBinder>>>* val) const {
Christopher Wiley35d77ca2016-03-08 10:49:51 -08001143 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
Casey Dahlinb9872622015-11-25 15:09:45 -08001144}
1145
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001146status_t Parcel::readStrongBinderVector(std::vector<sp<IBinder>>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001147 return readTypedVector(val, &Parcel::readStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001148}
1149
Casey Dahlinb9872622015-11-25 15:09:45 -08001150status_t Parcel::writeRawNullableParcelable(const Parcelable* parcelable) {
1151 if (!parcelable) {
1152 return writeInt32(0);
1153 }
1154
1155 return writeParcelable(*parcelable);
1156}
1157
Christopher Wiley97f048d2015-11-19 06:49:05 -08001158status_t Parcel::writeParcelable(const Parcelable& parcelable) {
1159 status_t status = writeInt32(1); // parcelable is not null.
1160 if (status != OK) {
1161 return status;
1162 }
1163 return parcelable.writeToParcel(this);
1164}
1165
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001166status_t Parcel::writeNativeHandle(const native_handle* handle)
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001167{
Mathias Agopian1d0a95b2009-07-31 16:12:13 -07001168 if (!handle || handle->version != sizeof(native_handle))
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001169 return BAD_TYPE;
1170
1171 status_t err;
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001172 err = writeInt32(handle->numFds);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001173 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001174
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001175 err = writeInt32(handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001176 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001177
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001178 for (int i=0 ; err==NO_ERROR && i<handle->numFds ; i++)
1179 err = writeDupFileDescriptor(handle->data[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001180
1181 if (err != NO_ERROR) {
Steve Block9d453682011-12-20 16:23:08 +00001182 ALOGD("write native handle, write dup fd failed");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001183 return err;
1184 }
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001185 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001186 return err;
1187}
1188
Jeff Brown93ff1f92011-11-04 19:01:44 -07001189status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001190{
1191 flat_binder_object obj;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001192 obj.hdr.type = BINDER_TYPE_FD;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001193 obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -08001194 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001195 obj.handle = fd;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001196 obj.cookie = takeOwnership ? 1 : 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001197 return writeObject(obj, true);
1198}
1199
1200status_t Parcel::writeDupFileDescriptor(int fd)
1201{
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08001202 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
Jeff Brownd341c712011-11-04 20:19:33 -07001203 if (dupFd < 0) {
1204 return -errno;
1205 }
1206 status_t err = writeFileDescriptor(dupFd, true /*takeOwnership*/);
Casey Dahlin06673e32015-11-23 13:24:23 -08001207 if (err != OK) {
Jeff Brownd341c712011-11-04 20:19:33 -07001208 close(dupFd);
1209 }
1210 return err;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001211}
1212
Dianne Hackborn1941a402016-08-29 12:30:43 -07001213status_t Parcel::writeParcelFileDescriptor(int fd, bool takeOwnership)
1214{
1215 writeInt32(0);
1216 return writeFileDescriptor(fd, takeOwnership);
1217}
1218
Ryo Hashimotobf551892018-05-31 16:58:35 +09001219status_t Parcel::writeDupParcelFileDescriptor(int fd)
1220{
1221 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1222 if (dupFd < 0) {
1223 return -errno;
1224 }
1225 status_t err = writeParcelFileDescriptor(dupFd, true /*takeOwnership*/);
1226 if (err != OK) {
1227 close(dupFd);
1228 }
1229 return err;
1230}
1231
Christopher Wiley2cf19952016-04-11 11:09:37 -07001232status_t Parcel::writeUniqueFileDescriptor(const base::unique_fd& fd) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001233 return writeDupFileDescriptor(fd.get());
1234}
1235
Christopher Wiley2cf19952016-04-11 11:09:37 -07001236status_t Parcel::writeUniqueFileDescriptorVector(const std::vector<base::unique_fd>& val) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001237 return writeTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1238}
1239
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001240status_t Parcel::writeUniqueFileDescriptorVector(const std::optional<std::vector<base::unique_fd>>& val) {
1241 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1242}
1243
Christopher Wiley2cf19952016-04-11 11:09:37 -07001244status_t Parcel::writeUniqueFileDescriptorVector(const std::unique_ptr<std::vector<base::unique_fd>>& val) {
Casey Dahlinb9872622015-11-25 15:09:45 -08001245 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1246}
1247
Jeff Brown13b16042014-11-11 16:44:25 -08001248status_t Parcel::writeBlob(size_t len, bool mutableCopy, WritableBlob* outBlob)
Jeff Brown5707dbf2011-09-23 21:17:56 -07001249{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001250 if (len > INT32_MAX) {
1251 // don't accept size_t values which may have come from an
1252 // inadvertent conversion from a negative int.
1253 return BAD_VALUE;
1254 }
1255
Jeff Brown13b16042014-11-11 16:44:25 -08001256 status_t status;
1257 if (!mAllowFds || len <= BLOB_INPLACE_LIMIT) {
Steve Block6807e592011-10-20 11:56:00 +01001258 ALOGV("writeBlob: write in place");
Jeff Brown13b16042014-11-11 16:44:25 -08001259 status = writeInt32(BLOB_INPLACE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001260 if (status) return status;
1261
1262 void* ptr = writeInplace(len);
1263 if (!ptr) return NO_MEMORY;
1264
Jeff Brown13b16042014-11-11 16:44:25 -08001265 outBlob->init(-1, ptr, len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001266 return NO_ERROR;
1267 }
1268
Steve Block6807e592011-10-20 11:56:00 +01001269 ALOGV("writeBlob: write to ashmem");
Jeff Brown5707dbf2011-09-23 21:17:56 -07001270 int fd = ashmem_create_region("Parcel Blob", len);
1271 if (fd < 0) return NO_MEMORY;
1272
1273 int result = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE);
1274 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001275 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001276 } else {
Yi Kong91635562018-06-07 14:38:36 -07001277 void* ptr = ::mmap(nullptr, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001278 if (ptr == MAP_FAILED) {
1279 status = -errno;
1280 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001281 if (!mutableCopy) {
1282 result = ashmem_set_prot_region(fd, PROT_READ);
1283 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07001284 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001285 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001286 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001287 status = writeInt32(mutableCopy ? BLOB_ASHMEM_MUTABLE : BLOB_ASHMEM_IMMUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001288 if (!status) {
Jeff Brown93ff1f92011-11-04 19:01:44 -07001289 status = writeFileDescriptor(fd, true /*takeOwnership*/);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001290 if (!status) {
Jeff Brown13b16042014-11-11 16:44:25 -08001291 outBlob->init(fd, ptr, len, mutableCopy);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001292 return NO_ERROR;
1293 }
1294 }
1295 }
1296 }
1297 ::munmap(ptr, len);
1298 }
1299 ::close(fd);
1300 return status;
1301}
1302
Jeff Brown13b16042014-11-11 16:44:25 -08001303status_t Parcel::writeDupImmutableBlobFileDescriptor(int fd)
1304{
1305 // Must match up with what's done in writeBlob.
1306 if (!mAllowFds) return FDS_NOT_ALLOWED;
1307 status_t status = writeInt32(BLOB_ASHMEM_IMMUTABLE);
1308 if (status) return status;
1309 return writeDupFileDescriptor(fd);
1310}
1311
Mathias Agopiane1424282013-07-29 21:24:40 -07001312status_t Parcel::write(const FlattenableHelperInterface& val)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001313{
1314 status_t err;
1315
1316 // size if needed
Mathias Agopiane1424282013-07-29 21:24:40 -07001317 const size_t len = val.getFlattenedSize();
1318 const size_t fd_count = val.getFdCount();
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001319
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001320 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001321 // don't accept size_t values which may have come from an
1322 // inadvertent conversion from a negative int.
1323 return BAD_VALUE;
1324 }
1325
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001326 err = this->writeInt32(len);
1327 if (err) return err;
1328
1329 err = this->writeInt32(fd_count);
1330 if (err) return err;
1331
1332 // payload
Martijn Coenenf8542382018-04-04 11:46:56 +02001333 void* const buf = this->writeInplace(len);
Yi Kong91635562018-06-07 14:38:36 -07001334 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001335 return BAD_VALUE;
1336
Yi Kong91635562018-06-07 14:38:36 -07001337 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001338 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001339 fds = new (std::nothrow) int[fd_count];
1340 if (fds == nullptr) {
1341 ALOGE("write: failed to allocate requested %zu fds", fd_count);
1342 return BAD_VALUE;
1343 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001344 }
1345
1346 err = val.flatten(buf, len, fds, fd_count);
1347 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1348 err = this->writeDupFileDescriptor( fds[i] );
1349 }
1350
1351 if (fd_count) {
1352 delete [] fds;
1353 }
1354
1355 return err;
1356}
1357
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001358status_t Parcel::writeObject(const flat_binder_object& val, bool nullMetaData)
1359{
1360 const bool enoughData = (mDataPos+sizeof(val)) <= mDataCapacity;
1361 const bool enoughObjects = mObjectsSize < mObjectsCapacity;
1362 if (enoughData && enoughObjects) {
1363restart_write:
1364 *reinterpret_cast<flat_binder_object*>(mData+mDataPos) = val;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001365
Christopher Tate98e67d32015-06-03 18:44:15 -07001366 // remember if it's a file descriptor
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001367 if (val.hdr.type == BINDER_TYPE_FD) {
Christopher Tate98e67d32015-06-03 18:44:15 -07001368 if (!mAllowFds) {
1369 // fail before modifying our object index
1370 return FDS_NOT_ALLOWED;
1371 }
1372 mHasFds = mFdsKnown = true;
1373 }
1374
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001375 // Need to write meta-data?
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001376 if (nullMetaData || val.binder != 0) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001377 mObjects[mObjectsSize] = mDataPos;
Adrian Rooscbf37262015-10-22 16:12:53 -07001378 acquire_object(ProcessState::self(), val, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001379 mObjectsSize++;
1380 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001381
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001382 return finishWrite(sizeof(flat_binder_object));
1383 }
1384
1385 if (!enoughData) {
1386 const status_t err = growData(sizeof(val));
1387 if (err != NO_ERROR) return err;
1388 }
1389 if (!enoughObjects) {
Martijn Coenen93fe5182020-01-22 10:46:25 +01001390 if (mObjectsSize > SIZE_MAX - 2) return NO_MEMORY; // overflow
1391 if ((mObjectsSize + 2) > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001392 size_t newSize = ((mObjectsSize+2)*3)/2;
Martijn Coenen93fe5182020-01-22 10:46:25 +01001393 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001394 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -07001395 if (objects == nullptr) return NO_MEMORY;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001396 mObjects = objects;
1397 mObjectsCapacity = newSize;
1398 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001399
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001400 goto restart_write;
1401}
1402
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001403status_t Parcel::writeNoException()
1404{
Christopher Wiley09eb7492015-11-09 15:06:15 -08001405 binder::Status status;
1406 return status.writeToParcel(this);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001407}
1408
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001409status_t Parcel::validateReadData(size_t upperBound) const
1410{
1411 // Don't allow non-object reads on object data
1412 if (mObjectsSorted || mObjectsSize <= 1) {
1413data_sorted:
1414 // Expect to check only against the next object
1415 if (mNextObjectHint < mObjectsSize && upperBound > mObjects[mNextObjectHint]) {
1416 // For some reason the current read position is greater than the next object
1417 // hint. Iterate until we find the right object
1418 size_t nextObject = mNextObjectHint;
1419 do {
1420 if (mDataPos < mObjects[nextObject] + sizeof(flat_binder_object)) {
1421 // Requested info overlaps with an object
1422 ALOGE("Attempt to read from protected data in Parcel %p", this);
1423 return PERMISSION_DENIED;
1424 }
1425 nextObject++;
1426 } while (nextObject < mObjectsSize && upperBound > mObjects[nextObject]);
1427 mNextObjectHint = nextObject;
1428 }
1429 return NO_ERROR;
1430 }
1431 // Quickly determine if mObjects is sorted.
1432 binder_size_t* currObj = mObjects + mObjectsSize - 1;
1433 binder_size_t* prevObj = currObj;
1434 while (currObj > mObjects) {
1435 prevObj--;
1436 if(*prevObj > *currObj) {
1437 goto data_unsorted;
1438 }
1439 currObj--;
1440 }
1441 mObjectsSorted = true;
1442 goto data_sorted;
1443
1444data_unsorted:
1445 // Insertion Sort mObjects
1446 // Great for mostly sorted lists. If randomly sorted or reverse ordered mObjects become common,
1447 // switch to std::sort(mObjects, mObjects + mObjectsSize);
1448 for (binder_size_t* iter0 = mObjects + 1; iter0 < mObjects + mObjectsSize; iter0++) {
1449 binder_size_t temp = *iter0;
1450 binder_size_t* iter1 = iter0 - 1;
1451 while (iter1 >= mObjects && *iter1 > temp) {
1452 *(iter1 + 1) = *iter1;
1453 iter1--;
1454 }
1455 *(iter1 + 1) = temp;
1456 }
1457 mNextObjectHint = 0;
1458 mObjectsSorted = true;
1459 goto data_sorted;
1460}
1461
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001462status_t Parcel::read(void* outData, size_t len) const
1463{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001464 if (len > INT32_MAX) {
1465 // don't accept size_t values which may have come from an
1466 // inadvertent conversion from a negative int.
1467 return BAD_VALUE;
1468 }
1469
1470 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1471 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001472 if (mObjectsSize > 0) {
1473 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001474 if(err != NO_ERROR) {
1475 // Still increment the data position by the expected length
1476 mDataPos += pad_size(len);
1477 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
1478 return err;
1479 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001480 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001481 memcpy(outData, mData+mDataPos, len);
Nick Kralevichb6b14232015-04-02 09:36:02 -07001482 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001483 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001484 return NO_ERROR;
1485 }
1486 return NOT_ENOUGH_DATA;
1487}
1488
1489const void* Parcel::readInplace(size_t len) const
1490{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001491 if (len > INT32_MAX) {
1492 // don't accept size_t values which may have come from an
1493 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -07001494 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001495 }
1496
1497 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1498 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001499 if (mObjectsSize > 0) {
1500 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001501 if(err != NO_ERROR) {
1502 // Still increment the data position by the expected length
1503 mDataPos += pad_size(len);
1504 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07001505 return nullptr;
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001506 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001507 }
1508
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001509 const void* data = mData+mDataPos;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001510 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001511 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001512 return data;
1513 }
Yi Kong91635562018-06-07 14:38:36 -07001514 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001515}
1516
Andreas Huber84a6d042009-08-17 13:33:27 -07001517template<class T>
1518status_t Parcel::readAligned(T *pArg) const {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001519 COMPILE_TIME_ASSERT_FUNCTION_SCOPE(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001520
1521 if ((mDataPos+sizeof(T)) <= mDataSize) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001522 if (mObjectsSize > 0) {
1523 status_t err = validateReadData(mDataPos + sizeof(T));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001524 if(err != NO_ERROR) {
1525 // Still increment the data position by the expected length
1526 mDataPos += sizeof(T);
1527 return err;
1528 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001529 }
1530
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001531 const void* data = mData+mDataPos;
Andreas Huber84a6d042009-08-17 13:33:27 -07001532 mDataPos += sizeof(T);
1533 *pArg = *reinterpret_cast<const T*>(data);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001534 return NO_ERROR;
1535 } else {
1536 return NOT_ENOUGH_DATA;
1537 }
1538}
1539
Andreas Huber84a6d042009-08-17 13:33:27 -07001540template<class T>
1541T Parcel::readAligned() const {
1542 T result;
1543 if (readAligned(&result) != NO_ERROR) {
1544 result = 0;
1545 }
1546
1547 return result;
1548}
1549
1550template<class T>
1551status_t Parcel::writeAligned(T val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001552 COMPILE_TIME_ASSERT_FUNCTION_SCOPE(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001553
1554 if ((mDataPos+sizeof(val)) <= mDataCapacity) {
1555restart_write:
1556 *reinterpret_cast<T*>(mData+mDataPos) = val;
1557 return finishWrite(sizeof(val));
1558 }
1559
1560 status_t err = growData(sizeof(val));
1561 if (err == NO_ERROR) goto restart_write;
1562 return err;
1563}
1564
Casey Dahlin185d3442016-02-09 11:08:35 -08001565status_t Parcel::readByteVector(std::vector<int8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001566 size_t size;
1567 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1568 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001569}
1570
1571status_t Parcel::readByteVector(std::vector<uint8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001572 size_t size;
1573 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1574 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001575}
1576
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001577status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const {
1578 size_t size;
1579 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1580 if (!*val) {
1581 // reserveOutVector does not create the out vector if size is < 0.
1582 // This occurs when writing a null byte vector.
1583 return OK;
1584 }
1585 return readByteVectorInternal(&**val, size);
1586}
1587
Casey Dahlin185d3442016-02-09 11:08:35 -08001588status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001589 size_t size;
1590 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001591 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001592 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001593 // This occurs when writing a null byte vector.
1594 return OK;
1595 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001596 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001597}
1598
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001599status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const {
1600 size_t size;
1601 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1602 if (!*val) {
1603 // reserveOutVector does not create the out vector if size is < 0.
1604 // This occurs when writing a null byte vector.
1605 return OK;
1606 }
1607 return readByteVectorInternal(&**val, size);
1608}
1609
Casey Dahlin185d3442016-02-09 11:08:35 -08001610status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001611 size_t size;
1612 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001613 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001614 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001615 // This occurs when writing a null byte vector.
1616 return OK;
1617 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001618 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001619}
1620
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001621status_t Parcel::readInt32Vector(std::optional<std::vector<int32_t>>* val) const {
1622 return readNullableTypedVector(val, &Parcel::readInt32);
1623}
1624
Casey Dahlinb9872622015-11-25 15:09:45 -08001625status_t Parcel::readInt32Vector(std::unique_ptr<std::vector<int32_t>>* val) const {
1626 return readNullableTypedVector(val, &Parcel::readInt32);
1627}
1628
Casey Dahlin451ff582015-10-19 18:12:18 -07001629status_t Parcel::readInt32Vector(std::vector<int32_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001630 return readTypedVector(val, &Parcel::readInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -07001631}
1632
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001633status_t Parcel::readInt64Vector(std::optional<std::vector<int64_t>>* val) const {
1634 return readNullableTypedVector(val, &Parcel::readInt64);
1635}
1636
Casey Dahlinb9872622015-11-25 15:09:45 -08001637status_t Parcel::readInt64Vector(std::unique_ptr<std::vector<int64_t>>* val) const {
1638 return readNullableTypedVector(val, &Parcel::readInt64);
1639}
1640
Casey Dahlin451ff582015-10-19 18:12:18 -07001641status_t Parcel::readInt64Vector(std::vector<int64_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001642 return readTypedVector(val, &Parcel::readInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -07001643}
1644
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001645status_t Parcel::readUint64Vector(std::optional<std::vector<uint64_t>>* val) const {
1646 return readNullableTypedVector(val, &Parcel::readUint64);
1647}
1648
Kevin DuBois2f82d5b2018-12-05 12:56:10 -08001649status_t Parcel::readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const {
1650 return readNullableTypedVector(val, &Parcel::readUint64);
1651}
1652
1653status_t Parcel::readUint64Vector(std::vector<uint64_t>* val) const {
1654 return readTypedVector(val, &Parcel::readUint64);
1655}
1656
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001657status_t Parcel::readFloatVector(std::optional<std::vector<float>>* val) const {
1658 return readNullableTypedVector(val, &Parcel::readFloat);
1659}
1660
Casey Dahlinb9872622015-11-25 15:09:45 -08001661status_t Parcel::readFloatVector(std::unique_ptr<std::vector<float>>* val) const {
1662 return readNullableTypedVector(val, &Parcel::readFloat);
1663}
1664
Casey Dahlin451ff582015-10-19 18:12:18 -07001665status_t Parcel::readFloatVector(std::vector<float>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001666 return readTypedVector(val, &Parcel::readFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -07001667}
1668
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001669status_t Parcel::readDoubleVector(std::optional<std::vector<double>>* val) const {
1670 return readNullableTypedVector(val, &Parcel::readDouble);
1671}
1672
Casey Dahlinb9872622015-11-25 15:09:45 -08001673status_t Parcel::readDoubleVector(std::unique_ptr<std::vector<double>>* val) const {
1674 return readNullableTypedVector(val, &Parcel::readDouble);
1675}
1676
Casey Dahlin451ff582015-10-19 18:12:18 -07001677status_t Parcel::readDoubleVector(std::vector<double>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001678 return readTypedVector(val, &Parcel::readDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -07001679}
1680
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001681status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const {
1682 const int32_t start = dataPosition();
1683 int32_t size;
1684 status_t status = readInt32(&size);
1685 val->reset();
1686
1687 if (status != OK || size < 0) {
1688 return status;
1689 }
1690
1691 setDataPosition(start);
1692 val->emplace();
1693
1694 status = readBoolVector(&**val);
1695
1696 if (status != OK) {
1697 val->reset();
1698 }
1699
1700 return status;
1701}
1702
Casey Dahlinb9872622015-11-25 15:09:45 -08001703status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const {
1704 const int32_t start = dataPosition();
1705 int32_t size;
1706 status_t status = readInt32(&size);
1707 val->reset();
Casey Dahlin451ff582015-10-19 18:12:18 -07001708
Casey Dahlinb9872622015-11-25 15:09:45 -08001709 if (status != OK || size < 0) {
1710 return status;
1711 }
1712
1713 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001714 val->reset(new (std::nothrow) std::vector<bool>());
Casey Dahlinb9872622015-11-25 15:09:45 -08001715
1716 status = readBoolVector(val->get());
1717
1718 if (status != OK) {
1719 val->reset();
1720 }
1721
1722 return status;
1723}
1724
1725status_t Parcel::readBoolVector(std::vector<bool>* val) const {
Casey Dahlin451ff582015-10-19 18:12:18 -07001726 int32_t size;
1727 status_t status = readInt32(&size);
1728
1729 if (status != OK) {
1730 return status;
1731 }
1732
1733 if (size < 0) {
Christopher Wiley4db672d2015-11-10 09:44:30 -08001734 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07001735 }
1736
1737 val->resize(size);
1738
1739 /* C++ bool handling means a vector of bools isn't necessarily addressable
1740 * (we might use individual bits)
1741 */
Christopher Wiley97887982015-10-27 16:33:47 -07001742 bool data;
1743 for (int32_t i = 0; i < size; ++i) {
Casey Dahlin451ff582015-10-19 18:12:18 -07001744 status = readBool(&data);
1745 (*val)[i] = data;
1746
1747 if (status != OK) {
1748 return status;
1749 }
1750 }
1751
1752 return OK;
1753}
1754
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001755status_t Parcel::readCharVector(std::optional<std::vector<char16_t>>* val) const {
1756 return readNullableTypedVector(val, &Parcel::readChar);
1757}
1758
Casey Dahlinb9872622015-11-25 15:09:45 -08001759status_t Parcel::readCharVector(std::unique_ptr<std::vector<char16_t>>* val) const {
1760 return readNullableTypedVector(val, &Parcel::readChar);
1761}
1762
Casey Dahlin451ff582015-10-19 18:12:18 -07001763status_t Parcel::readCharVector(std::vector<char16_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001764 return readTypedVector(val, &Parcel::readChar);
Casey Dahlin451ff582015-10-19 18:12:18 -07001765}
1766
Casey Dahlinb9872622015-11-25 15:09:45 -08001767status_t Parcel::readString16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001768 std::optional<std::vector<std::optional<String16>>>* val) const {
1769 return readNullableTypedVector(val, &Parcel::readString16);
1770}
1771
1772status_t Parcel::readString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -08001773 std::unique_ptr<std::vector<std::unique_ptr<String16>>>* val) const {
1774 return readNullableTypedVector(val, &Parcel::readString16);
1775}
1776
Casey Dahlin451ff582015-10-19 18:12:18 -07001777status_t Parcel::readString16Vector(std::vector<String16>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001778 return readTypedVector(val, &Parcel::readString16);
Casey Dahlin451ff582015-10-19 18:12:18 -07001779}
1780
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001781status_t Parcel::readUtf8VectorFromUtf16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001782 std::optional<std::vector<std::optional<std::string>>>* val) const {
1783 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1784}
1785
1786status_t Parcel::readUtf8VectorFromUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001787 std::unique_ptr<std::vector<std::unique_ptr<std::string>>>* val) const {
1788 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1789}
1790
1791status_t Parcel::readUtf8VectorFromUtf16Vector(std::vector<std::string>* val) const {
1792 return readTypedVector(val, &Parcel::readUtf8FromUtf16);
1793}
Casey Dahlin451ff582015-10-19 18:12:18 -07001794
Andreas Huber84a6d042009-08-17 13:33:27 -07001795status_t Parcel::readInt32(int32_t *pArg) const
1796{
1797 return readAligned(pArg);
1798}
1799
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001800int32_t Parcel::readInt32() const
1801{
Andreas Huber84a6d042009-08-17 13:33:27 -07001802 return readAligned<int32_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001803}
1804
Dan Stoza41a0f2f2014-12-01 10:01:10 -08001805status_t Parcel::readUint32(uint32_t *pArg) const
1806{
1807 return readAligned(pArg);
1808}
1809
1810uint32_t Parcel::readUint32() const
1811{
1812 return readAligned<uint32_t>();
1813}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001814
1815status_t Parcel::readInt64(int64_t *pArg) const
1816{
Andreas Huber84a6d042009-08-17 13:33:27 -07001817 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001818}
1819
1820
1821int64_t Parcel::readInt64() const
1822{
Andreas Huber84a6d042009-08-17 13:33:27 -07001823 return readAligned<int64_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001824}
1825
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001826status_t Parcel::readUint64(uint64_t *pArg) const
1827{
1828 return readAligned(pArg);
1829}
1830
1831uint64_t Parcel::readUint64() const
1832{
1833 return readAligned<uint64_t>();
1834}
1835
Serban Constantinescuf683e012013-11-05 16:53:55 +00001836status_t Parcel::readPointer(uintptr_t *pArg) const
1837{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001838 status_t ret;
1839 binder_uintptr_t ptr;
1840 ret = readAligned(&ptr);
1841 if (!ret)
1842 *pArg = ptr;
1843 return ret;
Serban Constantinescuf683e012013-11-05 16:53:55 +00001844}
1845
1846uintptr_t Parcel::readPointer() const
1847{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001848 return readAligned<binder_uintptr_t>();
Serban Constantinescuf683e012013-11-05 16:53:55 +00001849}
1850
1851
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001852status_t Parcel::readFloat(float *pArg) const
1853{
Andreas Huber84a6d042009-08-17 13:33:27 -07001854 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001855}
1856
1857
1858float Parcel::readFloat() const
1859{
Andreas Huber84a6d042009-08-17 13:33:27 -07001860 return readAligned<float>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001861}
1862
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001863#if defined(__mips__) && defined(__mips_hard_float)
1864
1865status_t Parcel::readDouble(double *pArg) const
1866{
1867 union {
1868 double d;
1869 unsigned long long ll;
1870 } u;
Narayan Kamath2c68d382014-06-04 15:04:29 +01001871 u.d = 0;
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001872 status_t status;
1873 status = readAligned(&u.ll);
1874 *pArg = u.d;
1875 return status;
1876}
1877
1878double Parcel::readDouble() const
1879{
1880 union {
1881 double d;
1882 unsigned long long ll;
1883 } u;
1884 u.ll = readAligned<unsigned long long>();
1885 return u.d;
1886}
1887
1888#else
1889
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001890status_t Parcel::readDouble(double *pArg) const
1891{
Andreas Huber84a6d042009-08-17 13:33:27 -07001892 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001893}
1894
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001895double Parcel::readDouble() const
1896{
Andreas Huber84a6d042009-08-17 13:33:27 -07001897 return readAligned<double>();
1898}
1899
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001900#endif
1901
Andreas Huber84a6d042009-08-17 13:33:27 -07001902status_t Parcel::readIntPtr(intptr_t *pArg) const
1903{
1904 return readAligned(pArg);
1905}
1906
1907
1908intptr_t Parcel::readIntPtr() const
1909{
1910 return readAligned<intptr_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001911}
1912
Casey Dahlind6848f52015-10-15 15:44:59 -07001913status_t Parcel::readBool(bool *pArg) const
1914{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001915 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001916 status_t ret = readInt32(&tmp);
1917 *pArg = (tmp != 0);
1918 return ret;
1919}
1920
1921bool Parcel::readBool() const
1922{
1923 return readInt32() != 0;
1924}
1925
1926status_t Parcel::readChar(char16_t *pArg) const
1927{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001928 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001929 status_t ret = readInt32(&tmp);
1930 *pArg = char16_t(tmp);
1931 return ret;
1932}
1933
1934char16_t Parcel::readChar() const
1935{
1936 return char16_t(readInt32());
1937}
1938
1939status_t Parcel::readByte(int8_t *pArg) const
1940{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001941 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001942 status_t ret = readInt32(&tmp);
1943 *pArg = int8_t(tmp);
1944 return ret;
1945}
1946
1947int8_t Parcel::readByte() const
1948{
1949 return int8_t(readInt32());
1950}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001951
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001952status_t Parcel::readUtf8FromUtf16(std::string* str) const {
1953 size_t utf16Size = 0;
1954 const char16_t* src = readString16Inplace(&utf16Size);
1955 if (!src) {
1956 return UNEXPECTED_NULL;
1957 }
1958
1959 // Save ourselves the trouble, we're done.
1960 if (utf16Size == 0u) {
1961 str->clear();
1962 return NO_ERROR;
1963 }
1964
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001965 // Allow for closing '\0'
1966 ssize_t utf8Size = utf16_to_utf8_length(src, utf16Size) + 1;
1967 if (utf8Size < 1) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001968 return BAD_VALUE;
1969 }
1970 // Note that while it is probably safe to assume string::resize keeps a
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001971 // spare byte around for the trailing null, we still pass the size including the trailing null
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001972 str->resize(utf8Size);
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001973 utf16_to_utf8(src, utf16Size, &((*str)[0]), utf8Size);
1974 str->resize(utf8Size - 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001975 return NO_ERROR;
1976}
1977
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001978status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const {
1979 const int32_t start = dataPosition();
1980 int32_t size;
1981 status_t status = readInt32(&size);
1982 str->reset();
1983
1984 if (status != OK || size < 0) {
1985 return status;
1986 }
1987
1988 setDataPosition(start);
1989 str->emplace();
1990 return readUtf8FromUtf16(&**str);
1991}
1992
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001993status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const {
1994 const int32_t start = dataPosition();
1995 int32_t size;
1996 status_t status = readInt32(&size);
1997 str->reset();
1998
1999 if (status != OK || size < 0) {
2000 return status;
2001 }
2002
2003 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002004 str->reset(new (std::nothrow) std::string());
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002005 return readUtf8FromUtf16(str->get());
2006}
2007
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002008const char* Parcel::readCString() const
2009{
Steven Morelandd0d4b582019-05-17 13:14:06 -07002010 if (mDataPos < mDataSize) {
2011 const size_t avail = mDataSize-mDataPos;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002012 const char* str = reinterpret_cast<const char*>(mData+mDataPos);
2013 // is the string's trailing NUL within the parcel's valid bounds?
2014 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
2015 if (eos) {
2016 const size_t len = eos - str;
Nick Kralevichb6b14232015-04-02 09:36:02 -07002017 mDataPos += pad_size(len+1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002018 ALOGV("readCString Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002019 return str;
2020 }
2021 }
Yi Kong91635562018-06-07 14:38:36 -07002022 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002023}
2024
2025String8 Parcel::readString8() const
2026{
Roshan Pius87b64d22016-07-18 12:51:02 -07002027 String8 retString;
2028 status_t status = readString8(&retString);
2029 if (status != OK) {
2030 // We don't care about errors here, so just return an empty string.
2031 return String8();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002032 }
Roshan Pius87b64d22016-07-18 12:51:02 -07002033 return retString;
2034}
2035
2036status_t Parcel::readString8(String8* pArg) const
2037{
2038 int32_t size;
2039 status_t status = readInt32(&size);
2040 if (status != OK) {
2041 return status;
2042 }
2043 // watch for potential int overflow from size+1
2044 if (size < 0 || size >= INT32_MAX) {
2045 return BAD_VALUE;
2046 }
2047 // |writeString8| writes nothing for empty string.
2048 if (size == 0) {
2049 *pArg = String8();
2050 return OK;
2051 }
2052 const char* str = (const char*)readInplace(size + 1);
Yi Kong91635562018-06-07 14:38:36 -07002053 if (str == nullptr) {
Roshan Pius87b64d22016-07-18 12:51:02 -07002054 return BAD_VALUE;
2055 }
2056 pArg->setTo(str, size);
2057 return OK;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002058}
2059
2060String16 Parcel::readString16() const
2061{
2062 size_t len;
2063 const char16_t* str = readString16Inplace(&len);
2064 if (str) return String16(str, len);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002065 ALOGE("Reading a NULL string not supported here.");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002066 return String16();
2067}
2068
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09002069status_t Parcel::readString16(std::optional<String16>* pArg) const
2070{
2071 const int32_t start = dataPosition();
2072 int32_t size;
2073 status_t status = readInt32(&size);
2074 pArg->reset();
2075
2076 if (status != OK || size < 0) {
2077 return status;
2078 }
2079
2080 setDataPosition(start);
2081 pArg->emplace();
2082
2083 status = readString16(&**pArg);
2084
2085 if (status != OK) {
2086 pArg->reset();
2087 }
2088
2089 return status;
2090}
2091
Casey Dahlinb9872622015-11-25 15:09:45 -08002092status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const
2093{
2094 const int32_t start = dataPosition();
2095 int32_t size;
2096 status_t status = readInt32(&size);
2097 pArg->reset();
2098
2099 if (status != OK || size < 0) {
2100 return status;
2101 }
2102
2103 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002104 pArg->reset(new (std::nothrow) String16());
Casey Dahlinb9872622015-11-25 15:09:45 -08002105
2106 status = readString16(pArg->get());
2107
2108 if (status != OK) {
2109 pArg->reset();
2110 }
2111
2112 return status;
2113}
2114
Casey Dahlin451ff582015-10-19 18:12:18 -07002115status_t Parcel::readString16(String16* pArg) const
2116{
2117 size_t len;
2118 const char16_t* str = readString16Inplace(&len);
2119 if (str) {
Casey Dahlin1515ea12015-10-20 16:26:23 -07002120 pArg->setTo(str, len);
Casey Dahlin451ff582015-10-19 18:12:18 -07002121 return 0;
2122 } else {
2123 *pArg = String16();
Christopher Wiley4db672d2015-11-10 09:44:30 -08002124 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07002125 }
2126}
2127
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002128const char16_t* Parcel::readString16Inplace(size_t* outLen) const
2129{
2130 int32_t size = readInt32();
2131 // watch for potential int overflow from size+1
2132 if (size >= 0 && size < INT32_MAX) {
2133 *outLen = size;
2134 const char16_t* str = (const char16_t*)readInplace((size+1)*sizeof(char16_t));
Yi Kong91635562018-06-07 14:38:36 -07002135 if (str != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002136 return str;
2137 }
2138 }
2139 *outLen = 0;
Yi Kong91635562018-06-07 14:38:36 -07002140 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002141}
2142
Casey Dahlinf0c13772015-10-27 18:33:56 -07002143status_t Parcel::readStrongBinder(sp<IBinder>* val) const
2144{
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002145 status_t status = readNullableStrongBinder(val);
2146 if (status == OK && !val->get()) {
2147 status = UNEXPECTED_NULL;
2148 }
2149 return status;
2150}
2151
2152status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const
2153{
Steven Morelanda86a3562019-08-01 23:28:34 +00002154 return unflattenBinder(val);
Casey Dahlinf0c13772015-10-27 18:33:56 -07002155}
2156
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002157sp<IBinder> Parcel::readStrongBinder() const
2158{
2159 sp<IBinder> val;
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002160 // Note that a lot of code in Android reads binders by hand with this
2161 // method, and that code has historically been ok with getting nullptr
2162 // back (while ignoring error codes).
2163 readNullableStrongBinder(&val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002164 return val;
2165}
2166
Christopher Wiley97f048d2015-11-19 06:49:05 -08002167status_t Parcel::readParcelable(Parcelable* parcelable) const {
2168 int32_t have_parcelable = 0;
2169 status_t status = readInt32(&have_parcelable);
2170 if (status != OK) {
2171 return status;
2172 }
2173 if (!have_parcelable) {
2174 return UNEXPECTED_NULL;
2175 }
2176 return parcelable->readFromParcel(this);
2177}
2178
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002179int32_t Parcel::readExceptionCode() const
2180{
Christopher Wiley09eb7492015-11-09 15:06:15 -08002181 binder::Status status;
2182 status.readFromParcel(*this);
2183 return status.exceptionCode();
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002184}
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002185
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002186native_handle* Parcel::readNativeHandle() const
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002187{
2188 int numFds, numInts;
2189 status_t err;
2190 err = readInt32(&numFds);
Yi Kong91635562018-06-07 14:38:36 -07002191 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002192 err = readInt32(&numInts);
Yi Kong91635562018-06-07 14:38:36 -07002193 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002194
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002195 native_handle* h = native_handle_create(numFds, numInts);
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002196 if (!h) {
Yi Kong91635562018-06-07 14:38:36 -07002197 return nullptr;
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002198 }
2199
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002200 for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002201 h->data[i] = fcntl(readFileDescriptor(), F_DUPFD_CLOEXEC, 0);
Marco Nelissen1de79662016-04-26 08:44:09 -07002202 if (h->data[i] < 0) {
2203 for (int j = 0; j < i; j++) {
2204 close(h->data[j]);
2205 }
2206 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002207 return nullptr;
Marco Nelissen1de79662016-04-26 08:44:09 -07002208 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002209 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002210 err = read(h->data + numFds, sizeof(int)*numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002211 if (err != NO_ERROR) {
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002212 native_handle_close(h);
2213 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002214 h = nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002215 }
2216 return h;
2217}
2218
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002219int Parcel::readFileDescriptor() const
2220{
2221 const flat_binder_object* flat = readObject(true);
Casey Dahlin06673e32015-11-23 13:24:23 -08002222
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002223 if (flat && flat->hdr.type == BINDER_TYPE_FD) {
Casey Dahlin06673e32015-11-23 13:24:23 -08002224 return flat->handle;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002225 }
Casey Dahlin06673e32015-11-23 13:24:23 -08002226
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002227 return BAD_TYPE;
2228}
2229
Dianne Hackborn1941a402016-08-29 12:30:43 -07002230int Parcel::readParcelFileDescriptor() const
2231{
2232 int32_t hasComm = readInt32();
2233 int fd = readFileDescriptor();
2234 if (hasComm != 0) {
Steven Morelandb73806a2018-11-12 19:35:47 -08002235 // detach (owned by the binder driver)
2236 int comm = readFileDescriptor();
2237
2238 // warning: this must be kept in sync with:
2239 // frameworks/base/core/java/android/os/ParcelFileDescriptor.java
2240 enum ParcelFileDescriptorStatus {
2241 DETACHED = 2,
2242 };
2243
2244#if BYTE_ORDER == BIG_ENDIAN
2245 const int32_t message = ParcelFileDescriptorStatus::DETACHED;
2246#endif
2247#if BYTE_ORDER == LITTLE_ENDIAN
2248 const int32_t message = __builtin_bswap32(ParcelFileDescriptorStatus::DETACHED);
2249#endif
2250
2251 ssize_t written = TEMP_FAILURE_RETRY(
2252 ::write(comm, &message, sizeof(message)));
2253
2254 if (written == -1 || written != sizeof(message)) {
2255 ALOGW("Failed to detach ParcelFileDescriptor written: %zd err: %s",
2256 written, strerror(errno));
2257 return BAD_TYPE;
2258 }
Dianne Hackborn1941a402016-08-29 12:30:43 -07002259 }
2260 return fd;
2261}
2262
Christopher Wiley2cf19952016-04-11 11:09:37 -07002263status_t Parcel::readUniqueFileDescriptor(base::unique_fd* val) const
Casey Dahlin06673e32015-11-23 13:24:23 -08002264{
2265 int got = readFileDescriptor();
2266
2267 if (got == BAD_TYPE) {
2268 return BAD_TYPE;
2269 }
2270
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002271 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
Casey Dahlin06673e32015-11-23 13:24:23 -08002272
2273 if (val->get() < 0) {
2274 return BAD_VALUE;
2275 }
2276
2277 return OK;
2278}
2279
Ryo Hashimotobf551892018-05-31 16:58:35 +09002280status_t Parcel::readUniqueParcelFileDescriptor(base::unique_fd* val) const
2281{
2282 int got = readParcelFileDescriptor();
2283
2284 if (got == BAD_TYPE) {
2285 return BAD_TYPE;
2286 }
2287
2288 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
2289
2290 if (val->get() < 0) {
2291 return BAD_VALUE;
2292 }
2293
2294 return OK;
2295}
Casey Dahlin06673e32015-11-23 13:24:23 -08002296
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09002297status_t Parcel::readUniqueFileDescriptorVector(std::optional<std::vector<base::unique_fd>>* val) const {
2298 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2299}
2300
Christopher Wiley2cf19952016-04-11 11:09:37 -07002301status_t Parcel::readUniqueFileDescriptorVector(std::unique_ptr<std::vector<base::unique_fd>>* val) const {
Casey Dahlinb9872622015-11-25 15:09:45 -08002302 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2303}
2304
Christopher Wiley2cf19952016-04-11 11:09:37 -07002305status_t Parcel::readUniqueFileDescriptorVector(std::vector<base::unique_fd>* val) const {
Casey Dahlin06673e32015-11-23 13:24:23 -08002306 return readTypedVector(val, &Parcel::readUniqueFileDescriptor);
2307}
2308
Jeff Brown5707dbf2011-09-23 21:17:56 -07002309status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
2310{
Jeff Brown13b16042014-11-11 16:44:25 -08002311 int32_t blobType;
2312 status_t status = readInt32(&blobType);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002313 if (status) return status;
2314
Jeff Brown13b16042014-11-11 16:44:25 -08002315 if (blobType == BLOB_INPLACE) {
Steve Block6807e592011-10-20 11:56:00 +01002316 ALOGV("readBlob: read in place");
Jeff Brown5707dbf2011-09-23 21:17:56 -07002317 const void* ptr = readInplace(len);
2318 if (!ptr) return BAD_VALUE;
2319
Jeff Brown13b16042014-11-11 16:44:25 -08002320 outBlob->init(-1, const_cast<void*>(ptr), len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002321 return NO_ERROR;
2322 }
2323
Steve Block6807e592011-10-20 11:56:00 +01002324 ALOGV("readBlob: read from ashmem");
Jeff Brown13b16042014-11-11 16:44:25 -08002325 bool isMutable = (blobType == BLOB_ASHMEM_MUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002326 int fd = readFileDescriptor();
2327 if (fd == int(BAD_TYPE)) return BAD_VALUE;
2328
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002329 if (!ashmem_valid(fd)) {
2330 ALOGE("invalid fd");
2331 return BAD_VALUE;
2332 }
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002333 int size = ashmem_get_size_region(fd);
2334 if (size < 0 || size_t(size) < len) {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002335 ALOGE("request size %zu does not match fd size %d", len, size);
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002336 return BAD_VALUE;
2337 }
Yi Kong91635562018-06-07 14:38:36 -07002338 void* ptr = ::mmap(nullptr, len, isMutable ? PROT_READ | PROT_WRITE : PROT_READ,
Jeff Brown13b16042014-11-11 16:44:25 -08002339 MAP_SHARED, fd, 0);
Narayan Kamath9ea09752014-10-08 17:35:45 +01002340 if (ptr == MAP_FAILED) return NO_MEMORY;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002341
Jeff Brown13b16042014-11-11 16:44:25 -08002342 outBlob->init(fd, ptr, len, isMutable);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002343 return NO_ERROR;
2344}
2345
Mathias Agopiane1424282013-07-29 21:24:40 -07002346status_t Parcel::read(FlattenableHelperInterface& val) const
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002347{
2348 // size
2349 const size_t len = this->readInt32();
2350 const size_t fd_count = this->readInt32();
2351
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002352 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07002353 // don't accept size_t values which may have come from an
2354 // inadvertent conversion from a negative int.
2355 return BAD_VALUE;
2356 }
2357
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002358 // payload
Nick Kralevichb6b14232015-04-02 09:36:02 -07002359 void const* const buf = this->readInplace(pad_size(len));
Yi Kong91635562018-06-07 14:38:36 -07002360 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002361 return BAD_VALUE;
2362
Yi Kong91635562018-06-07 14:38:36 -07002363 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002364 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002365 fds = new (std::nothrow) int[fd_count];
2366 if (fds == nullptr) {
2367 ALOGE("read: failed to allocate requested %zu fds", fd_count);
2368 return BAD_VALUE;
2369 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002370 }
2371
2372 status_t err = NO_ERROR;
2373 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
Fabien Sanglardd84ff312016-10-21 10:58:26 -07002374 int fd = this->readFileDescriptor();
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002375 if (fd < 0 || ((fds[i] = fcntl(fd, F_DUPFD_CLOEXEC, 0)) < 0)) {
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002376 err = BAD_VALUE;
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002377 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 -07002378 i, fds[i], fd_count, strerror(fd < 0 ? -fd : errno));
2379 // Close all the file descriptors that were dup-ed.
2380 for (size_t j=0; j<i ;j++) {
2381 close(fds[j]);
2382 }
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002383 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002384 }
2385
2386 if (err == NO_ERROR) {
2387 err = val.unflatten(buf, len, fds, fd_count);
2388 }
2389
2390 if (fd_count) {
2391 delete [] fds;
2392 }
2393
2394 return err;
2395}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002396const flat_binder_object* Parcel::readObject(bool nullMetaData) const
2397{
2398 const size_t DPOS = mDataPos;
2399 if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
2400 const flat_binder_object* obj
2401 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
2402 mDataPos = DPOS + sizeof(flat_binder_object);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002403 if (!nullMetaData && (obj->cookie == 0 && obj->binder == 0)) {
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002404 // When transferring a NULL object, we don't write it into
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002405 // the object list, so we don't want to check for it when
2406 // reading.
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002407 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002408 return obj;
2409 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002410
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002411 // Ensure that this object is valid...
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002412 binder_size_t* const OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002413 const size_t N = mObjectsSize;
2414 size_t opos = mNextObjectHint;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002415
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002416 if (N > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002417 ALOGV("Parcel %p looking for obj at %zu, hint=%zu",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002418 this, DPOS, opos);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002419
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002420 // Start at the current hint position, looking for an object at
2421 // the current data position.
2422 if (opos < N) {
2423 while (opos < (N-1) && OBJS[opos] < DPOS) {
2424 opos++;
2425 }
2426 } else {
2427 opos = N-1;
2428 }
2429 if (OBJS[opos] == DPOS) {
2430 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002431 ALOGV("Parcel %p found obj %zu at index %zu with forward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002432 this, DPOS, opos);
2433 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002434 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002435 return obj;
2436 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002437
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002438 // Look backwards for it...
2439 while (opos > 0 && OBJS[opos] > DPOS) {
2440 opos--;
2441 }
2442 if (OBJS[opos] == DPOS) {
2443 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002444 ALOGV("Parcel %p found obj %zu at index %zu with backward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002445 this, DPOS, opos);
2446 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002447 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002448 return obj;
2449 }
2450 }
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002451 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 -07002452 this, DPOS);
2453 }
Yi Kong91635562018-06-07 14:38:36 -07002454 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002455}
2456
2457void Parcel::closeFileDescriptors()
2458{
2459 size_t i = mObjectsSize;
2460 if (i > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002461 //ALOGI("Closing file descriptors for %zu objects...", i);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002462 }
2463 while (i > 0) {
2464 i--;
2465 const flat_binder_object* flat
2466 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002467 if (flat->hdr.type == BINDER_TYPE_FD) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002468 //ALOGI("Closing fd: %ld", flat->handle);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002469 close(flat->handle);
2470 }
2471 }
2472}
2473
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002474uintptr_t Parcel::ipcData() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002475{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002476 return reinterpret_cast<uintptr_t>(mData);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002477}
2478
2479size_t Parcel::ipcDataSize() const
2480{
2481 return (mDataSize > mDataPos ? mDataSize : mDataPos);
2482}
2483
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002484uintptr_t Parcel::ipcObjects() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002485{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002486 return reinterpret_cast<uintptr_t>(mObjects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002487}
2488
2489size_t Parcel::ipcObjectsCount() const
2490{
2491 return mObjectsSize;
2492}
2493
2494void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002495 const binder_size_t* objects, size_t objectsCount, release_func relFunc, void* relCookie)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002496{
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002497 binder_size_t minOffset = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002498 freeDataNoInit();
2499 mError = NO_ERROR;
2500 mData = const_cast<uint8_t*>(data);
2501 mDataSize = mDataCapacity = dataSize;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002502 //ALOGI("setDataReference Setting data size of %p to %lu (pid=%d)", this, mDataSize, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002503 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002504 ALOGV("setDataReference Setting data pos of %p to %zu", this, mDataPos);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002505 mObjects = const_cast<binder_size_t*>(objects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002506 mObjectsSize = mObjectsCapacity = objectsCount;
2507 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002508 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002509 mOwner = relFunc;
2510 mOwnerCookie = relCookie;
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002511 for (size_t i = 0; i < mObjectsSize; i++) {
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002512 binder_size_t offset = mObjects[i];
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002513 if (offset < minOffset) {
Dan Albert3bdc5b82014-11-20 11:50:23 -08002514 ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002515 __func__, (uint64_t)offset, (uint64_t)minOffset);
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002516 mObjectsSize = 0;
2517 break;
2518 }
2519 minOffset = offset + sizeof(flat_binder_object);
2520 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002521 scanForFds();
2522}
2523
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002524void Parcel::print(TextOutput& to, uint32_t /*flags*/) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002525{
2526 to << "Parcel(";
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002527
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002528 if (errorCheck() != NO_ERROR) {
2529 const status_t err = errorCheck();
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002530 to << "Error: " << (void*)(intptr_t)err << " \"" << strerror(-err) << "\"";
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002531 } else if (dataSize() > 0) {
2532 const uint8_t* DATA = data();
2533 to << indent << HexDump(DATA, dataSize()) << dedent;
Steven Moreland8bd01352019-07-15 16:36:14 -07002534 const binder_size_t* OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002535 const size_t N = objectsCount();
2536 for (size_t i=0; i<N; i++) {
2537 const flat_binder_object* flat
2538 = reinterpret_cast<const flat_binder_object*>(DATA+OBJS[i]);
2539 to << endl << "Object #" << i << " @ " << (void*)OBJS[i] << ": "
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002540 << TypeCode(flat->hdr.type & 0x7f7f7f00)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002541 << " = " << flat->binder;
2542 }
2543 } else {
2544 to << "NULL";
2545 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002546
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002547 to << ")";
2548}
2549
2550void Parcel::releaseObjects()
2551{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002552 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002553 if (i == 0) {
2554 return;
2555 }
2556 sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002557 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002558 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002559 while (i > 0) {
2560 i--;
2561 const flat_binder_object* flat
2562 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002563 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002564 }
2565}
2566
2567void Parcel::acquireObjects()
2568{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002569 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002570 if (i == 0) {
2571 return;
2572 }
2573 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002574 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002575 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002576 while (i > 0) {
2577 i--;
2578 const flat_binder_object* flat
2579 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002580 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002581 }
2582}
2583
2584void Parcel::freeData()
2585{
2586 freeDataNoInit();
2587 initState();
2588}
2589
2590void Parcel::freeDataNoInit()
2591{
2592 if (mOwner) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002593 LOG_ALLOC("Parcel %p: freeing other owner data", this);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002594 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002595 mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
2596 } else {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002597 LOG_ALLOC("Parcel %p: freeing allocated data", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002598 releaseObjects();
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002599 if (mData) {
2600 LOG_ALLOC("Parcel %p: freeing with %zu capacity", this, mDataCapacity);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002601 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dan Austin48fd7b42015-09-10 13:46:02 -07002602 if (mDataCapacity <= gParcelGlobalAllocSize) {
2603 gParcelGlobalAllocSize = gParcelGlobalAllocSize - mDataCapacity;
2604 } else {
2605 gParcelGlobalAllocSize = 0;
2606 }
2607 if (gParcelGlobalAllocCount > 0) {
2608 gParcelGlobalAllocCount--;
2609 }
Dianne Hackborna4cff882014-11-13 17:07:40 -08002610 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002611 free(mData);
2612 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002613 if (mObjects) free(mObjects);
2614 }
2615}
2616
2617status_t Parcel::growData(size_t len)
2618{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002619 if (len > INT32_MAX) {
2620 // don't accept size_t values which may have come from an
2621 // inadvertent conversion from a negative int.
2622 return BAD_VALUE;
2623 }
2624
Martijn Coenen93fe5182020-01-22 10:46:25 +01002625 if (len > SIZE_MAX - mDataSize) return NO_MEMORY; // overflow
2626 if (mDataSize + len > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002627 size_t newSize = ((mDataSize+len)*3)/2;
2628 return (newSize <= mDataSize)
2629 ? (status_t) NO_MEMORY
Steven Moreland042ae822020-05-27 17:45:17 +00002630 : continueWrite(std::max(newSize, (size_t) 128));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002631}
2632
2633status_t Parcel::restartWrite(size_t desired)
2634{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002635 if (desired > INT32_MAX) {
2636 // don't accept size_t values which may have come from an
2637 // inadvertent conversion from a negative int.
2638 return BAD_VALUE;
2639 }
2640
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002641 if (mOwner) {
2642 freeData();
2643 return continueWrite(desired);
2644 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002645
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002646 uint8_t* data = (uint8_t*)realloc(mData, desired);
2647 if (!data && desired > mDataCapacity) {
2648 mError = NO_MEMORY;
2649 return NO_MEMORY;
2650 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002651
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002652 releaseObjects();
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002653
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002654 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002655 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002656 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002657 gParcelGlobalAllocSize += desired;
2658 gParcelGlobalAllocSize -= mDataCapacity;
Colin Cross83ec65e2015-12-08 17:15:50 -08002659 if (!mData) {
2660 gParcelGlobalAllocCount++;
2661 }
Dianne Hackborna4cff882014-11-13 17:07:40 -08002662 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002663 mData = data;
2664 mDataCapacity = desired;
2665 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002666
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002667 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002668 ALOGV("restartWrite Setting data size of %p to %zu", this, mDataSize);
2669 ALOGV("restartWrite Setting data pos of %p to %zu", this, mDataPos);
2670
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002671 free(mObjects);
Yi Kong91635562018-06-07 14:38:36 -07002672 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002673 mObjectsSize = mObjectsCapacity = 0;
2674 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002675 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002676 mHasFds = false;
2677 mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -04002678 mAllowFds = true;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002679
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002680 return NO_ERROR;
2681}
2682
2683status_t Parcel::continueWrite(size_t desired)
2684{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002685 if (desired > INT32_MAX) {
2686 // don't accept size_t values which may have come from an
2687 // inadvertent conversion from a negative int.
2688 return BAD_VALUE;
2689 }
2690
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002691 // If shrinking, first adjust for any objects that appear
2692 // after the new data size.
2693 size_t objectsSize = mObjectsSize;
2694 if (desired < mDataSize) {
2695 if (desired == 0) {
2696 objectsSize = 0;
2697 } else {
2698 while (objectsSize > 0) {
Michael Wachenschwanza6541632017-05-18 22:08:32 +00002699 if (mObjects[objectsSize-1] < desired)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002700 break;
2701 objectsSize--;
2702 }
2703 }
2704 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002705
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002706 if (mOwner) {
2707 // If the size is going to zero, just release the owner's data.
2708 if (desired == 0) {
2709 freeData();
2710 return NO_ERROR;
2711 }
2712
2713 // If there is a different owner, we need to take
2714 // posession.
2715 uint8_t* data = (uint8_t*)malloc(desired);
2716 if (!data) {
2717 mError = NO_MEMORY;
2718 return NO_MEMORY;
2719 }
Yi Kong91635562018-06-07 14:38:36 -07002720 binder_size_t* objects = nullptr;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002721
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002722 if (objectsSize) {
Nick Kraleviche9881a32015-04-28 16:21:30 -07002723 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002724 if (!objects) {
Hyejin Kim3f727c02013-03-09 11:28:54 +09002725 free(data);
2726
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002727 mError = NO_MEMORY;
2728 return NO_MEMORY;
2729 }
2730
2731 // Little hack to only acquire references on objects
2732 // we will be keeping.
2733 size_t oldObjectsSize = mObjectsSize;
2734 mObjectsSize = objectsSize;
2735 acquireObjects();
2736 mObjectsSize = oldObjectsSize;
2737 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002738
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002739 if (mData) {
2740 memcpy(data, mData, mDataSize < desired ? mDataSize : desired);
2741 }
2742 if (objects && mObjects) {
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002743 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002744 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002745 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002746 mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
Yi Kong91635562018-06-07 14:38:36 -07002747 mOwner = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002748
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002749 LOG_ALLOC("Parcel %p: taking ownership of %zu capacity", this, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002750 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002751 gParcelGlobalAllocSize += desired;
2752 gParcelGlobalAllocCount++;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002753 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002754
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002755 mData = data;
2756 mObjects = objects;
2757 mDataSize = (mDataSize < desired) ? mDataSize : desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002758 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002759 mDataCapacity = desired;
2760 mObjectsSize = mObjectsCapacity = objectsSize;
2761 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002762 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002763
2764 } else if (mData) {
2765 if (objectsSize < mObjectsSize) {
2766 // Need to release refs on any objects we are dropping.
2767 const sp<ProcessState> proc(ProcessState::self());
2768 for (size_t i=objectsSize; i<mObjectsSize; i++) {
2769 const flat_binder_object* flat
2770 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002771 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002772 // will need to rescan because we may have lopped off the only FDs
2773 mFdsKnown = false;
2774 }
Adrian Rooscbf37262015-10-22 16:12:53 -07002775 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002776 }
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002777
2778 if (objectsSize == 0) {
2779 free(mObjects);
2780 mObjects = nullptr;
Michael Wachenschwanzdaf29a62019-10-15 11:49:22 -07002781 mObjectsCapacity = 0;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002782 } else {
2783 binder_size_t* objects =
2784 (binder_size_t*)realloc(mObjects, objectsSize*sizeof(binder_size_t));
2785 if (objects) {
2786 mObjects = objects;
Michael Wachenschwanzdaf29a62019-10-15 11:49:22 -07002787 mObjectsCapacity = objectsSize;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002788 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002789 }
2790 mObjectsSize = objectsSize;
2791 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002792 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002793 }
2794
2795 // We own the data, so we can just do a realloc().
2796 if (desired > mDataCapacity) {
2797 uint8_t* data = (uint8_t*)realloc(mData, desired);
2798 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002799 LOG_ALLOC("Parcel %p: continue from %zu to %zu capacity", this, mDataCapacity,
2800 desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002801 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002802 gParcelGlobalAllocSize += desired;
2803 gParcelGlobalAllocSize -= mDataCapacity;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002804 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002805 mData = data;
2806 mDataCapacity = desired;
Ganesh Mahendranade89892017-09-28 16:56:03 +08002807 } else {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002808 mError = NO_MEMORY;
2809 return NO_MEMORY;
2810 }
2811 } else {
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002812 if (mDataSize > desired) {
2813 mDataSize = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002814 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002815 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002816 if (mDataPos > desired) {
2817 mDataPos = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002818 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002819 }
2820 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002821
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002822 } else {
2823 // This is the first data. Easy!
2824 uint8_t* data = (uint8_t*)malloc(desired);
2825 if (!data) {
2826 mError = NO_MEMORY;
2827 return NO_MEMORY;
2828 }
Hyejin Kim3f727c02013-03-09 11:28:54 +09002829
Yi Kong91635562018-06-07 14:38:36 -07002830 if(!(mDataCapacity == 0 && mObjects == nullptr
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002831 && mObjectsCapacity == 0)) {
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002832 ALOGE("continueWrite: %zu/%p/%zu/%zu", mDataCapacity, mObjects, mObjectsCapacity, desired);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002833 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002834
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002835 LOG_ALLOC("Parcel %p: allocating with %zu capacity", this, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002836 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002837 gParcelGlobalAllocSize += desired;
2838 gParcelGlobalAllocCount++;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002839 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002840
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002841 mData = data;
2842 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002843 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
2844 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002845 mDataCapacity = desired;
2846 }
2847
2848 return NO_ERROR;
2849}
2850
2851void Parcel::initState()
2852{
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002853 LOG_ALLOC("Parcel %p: initState", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002854 mError = NO_ERROR;
Yi Kong91635562018-06-07 14:38:36 -07002855 mData = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002856 mDataSize = 0;
2857 mDataCapacity = 0;
2858 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002859 ALOGV("initState Setting data size of %p to %zu", this, mDataSize);
2860 ALOGV("initState Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07002861 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002862 mObjectsSize = 0;
2863 mObjectsCapacity = 0;
2864 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002865 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002866 mHasFds = false;
2867 mFdsKnown = true;
Steven Moreland6e5a7752019-08-05 20:30:14 -07002868 mAllowFds = true;
Yi Kong91635562018-06-07 14:38:36 -07002869 mOwner = nullptr;
Adrian Rooscbf37262015-10-22 16:12:53 -07002870 mOpenAshmemSize = 0;
Olivier Gaillarddc848a02019-01-30 17:10:44 +00002871 mWorkSourceRequestHeaderPosition = 0;
2872 mRequestHeaderPresent = false;
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002873
2874 // racing multiple init leads only to multiple identical write
2875 if (gMaxFds == 0) {
2876 struct rlimit result;
2877 if (!getrlimit(RLIMIT_NOFILE, &result)) {
2878 gMaxFds = (size_t)result.rlim_cur;
Christopher Tatebf14e942016-03-25 14:16:24 -07002879 //ALOGI("parcel fd limit set to %zu", gMaxFds);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002880 } else {
2881 ALOGW("Unable to getrlimit: %s", strerror(errno));
2882 gMaxFds = 1024;
2883 }
2884 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002885}
2886
2887void Parcel::scanForFds() const
2888{
2889 bool hasFds = false;
2890 for (size_t i=0; i<mObjectsSize; i++) {
2891 const flat_binder_object* flat
2892 = reinterpret_cast<const flat_binder_object*>(mData + mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002893 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002894 hasFds = true;
2895 break;
2896 }
2897 }
2898 mHasFds = hasFds;
2899 mFdsKnown = true;
2900}
2901
Dan Sandleraa5c2342015-04-10 10:08:45 -04002902size_t Parcel::getBlobAshmemSize() const
2903{
Adrian Roos6bb31142015-10-22 16:46:12 -07002904 // This used to return the size of all blobs that were written to ashmem, now we're returning
2905 // the ashmem currently referenced by this Parcel, which should be equivalent.
2906 // TODO: Remove method once ABI can be changed.
2907 return mOpenAshmemSize;
Dan Sandleraa5c2342015-04-10 10:08:45 -04002908}
2909
Adrian Rooscbf37262015-10-22 16:12:53 -07002910size_t Parcel::getOpenAshmemSize() const
2911{
2912 return mOpenAshmemSize;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002913}
2914
2915// --- Parcel::Blob ---
2916
2917Parcel::Blob::Blob() :
Yi Kong91635562018-06-07 14:38:36 -07002918 mFd(-1), mData(nullptr), mSize(0), mMutable(false) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002919}
2920
2921Parcel::Blob::~Blob() {
2922 release();
2923}
2924
2925void Parcel::Blob::release() {
Jeff Brown13b16042014-11-11 16:44:25 -08002926 if (mFd != -1 && mData) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002927 ::munmap(mData, mSize);
2928 }
2929 clear();
2930}
2931
Jeff Brown13b16042014-11-11 16:44:25 -08002932void Parcel::Blob::init(int fd, void* data, size_t size, bool isMutable) {
2933 mFd = fd;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002934 mData = data;
2935 mSize = size;
Jeff Brown13b16042014-11-11 16:44:25 -08002936 mMutable = isMutable;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002937}
2938
2939void Parcel::Blob::clear() {
Jeff Brown13b16042014-11-11 16:44:25 -08002940 mFd = -1;
Yi Kong91635562018-06-07 14:38:36 -07002941 mData = nullptr;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002942 mSize = 0;
Jeff Brown13b16042014-11-11 16:44:25 -08002943 mMutable = false;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002944}
2945
Steven Moreland61ff8492019-09-26 16:05:45 -07002946} // namespace android