blob: 7737d53ec0ecb1a10e61e15693b42b66da401f85 [file] [log] [blame]
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2005 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "Parcel"
18//#define LOG_NDEBUG 0
19
Mark Salyzynabed7f72016-01-27 08:02:48 -080020#include <errno.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080021#include <fcntl.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080022#include <inttypes.h>
Steven Morelandbf1915b2020-07-16 22:43:02 +000023#include <linux/sched.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080024#include <pthread.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080025#include <stdint.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <sys/mman.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080029#include <sys/stat.h>
30#include <sys/types.h>
Christopher Tatee4e0ae82016-03-24 16:03:44 -070031#include <sys/resource.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080032#include <unistd.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070033
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070034#include <binder/Binder.h>
35#include <binder/BpBinder.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080036#include <binder/IPCThreadState.h>
37#include <binder/Parcel.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070038#include <binder/ProcessState.h>
Steven Moreland6e5a7752019-08-05 20:30:14 -070039#include <binder/Stability.h>
Christopher Wiley09eb7492015-11-09 15:06:15 -080040#include <binder/Status.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070041#include <binder/TextOutput.h>
42
Mark Salyzynabed7f72016-01-27 08:02:48 -080043#include <cutils/ashmem.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080044#include <utils/Flattenable.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070045#include <utils/Log.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080046#include <utils/misc.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070047#include <utils/String8.h>
48#include <utils/String16.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070049
Mathias Agopian208059f2009-05-18 15:08:03 -070050#include <private/binder/binder_module.h>
Steven Morelanda4853cd2019-07-12 15:44:37 -070051#include "Static.h"
Steven Morelandf183fdd2020-10-27 00:12:12 +000052#include "Utils.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
Jeff Sharkey8994c182020-09-11 12:07:10 -060081static std::atomic<size_t> gParcelGlobalAllocCount;
82static std::atomic<size_t> gParcelGlobalAllocSize;
Dianne Hackborna4cff882014-11-13 17:07:40 -080083
Christopher Tatee4e0ae82016-03-24 16:03:44 -070084static size_t gMaxFds = 0;
85
Jeff Brown13b16042014-11-11 16:44:25 -080086// Maximum size of a blob to transfer in-place.
87static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
88
89enum {
90 BLOB_INPLACE = 0,
91 BLOB_ASHMEM_IMMUTABLE = 1,
92 BLOB_ASHMEM_MUTABLE = 2,
93};
94
Steven Morelandb1c81202019-04-05 18:49:55 -070095static void acquire_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -070096 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070097{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -070098 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070099 case BINDER_TYPE_BINDER:
100 if (obj.binder) {
101 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800102 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700103 }
104 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700105 case BINDER_TYPE_HANDLE: {
106 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700107 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700108 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
109 b->incStrong(who);
110 }
111 return;
112 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700113 case BINDER_TYPE_FD: {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000114 if ((obj.cookie != 0) && (outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700115 // If we own an ashmem fd, keep track of how much memory it refers to.
116 int size = ashmem_get_size_region(obj.handle);
117 if (size > 0) {
118 *outAshmemSize += size;
Adrian Rooscbf37262015-10-22 16:12:53 -0700119 }
120 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700121 return;
122 }
123 }
124
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700125 ALOGD("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700126}
127
Adrian Roos6bb31142015-10-22 16:46:12 -0700128static void release_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -0700129 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700130{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700131 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700132 case BINDER_TYPE_BINDER:
133 if (obj.binder) {
134 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800135 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700136 }
137 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700138 case BINDER_TYPE_HANDLE: {
139 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700140 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700141 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
142 b->decStrong(who);
143 }
144 return;
145 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700146 case BINDER_TYPE_FD: {
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800147 if (obj.cookie != 0) { // owned
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000148 if ((outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700149 int size = ashmem_get_size_region(obj.handle);
150 if (size > 0) {
Tri Voaa6e1112019-01-29 13:23:46 -0800151 // ashmem size might have changed since last time it was accounted for, e.g.
152 // in acquire_object(). Value of *outAshmemSize is not critical since we are
153 // releasing the object anyway. Check for integer overflow condition.
154 *outAshmemSize -= std::min(*outAshmemSize, static_cast<size_t>(size));
Adrian Roos6bb31142015-10-22 16:46:12 -0700155 }
Adrian Roos6bb31142015-10-22 16:46:12 -0700156 }
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800157
158 close(obj.handle);
Adrian Rooscbf37262015-10-22 16:12:53 -0700159 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700160 return;
161 }
162 }
163
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700164 ALOGE("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700165}
166
Steven Morelanda86a3562019-08-01 23:28:34 +0000167status_t Parcel::finishFlattenBinder(
168 const sp<IBinder>& binder, const flat_binder_object& flat)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700169{
Steven Morelanda86a3562019-08-01 23:28:34 +0000170 status_t status = writeObject(flat, false);
171 if (status != OK) return status;
172
Steven Moreland6e5a7752019-08-05 20:30:14 -0700173 internal::Stability::tryMarkCompilationUnit(binder.get());
Steven Moreland89ddfc52020-11-13 02:39:26 +0000174 auto category = internal::Stability::getCategory(binder.get());
175 return writeInt32(category.repr());
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 Moreland89ddfc52020-11-13 02:39:26 +0000185 status = internal::Stability::setRepr(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() {
Jeff Sharkey8994c182020-09-11 12:07:10 -0600279 return gParcelGlobalAllocSize.load();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800280}
281
282size_t Parcel::getGlobalAllocCount() {
Jeff Sharkey8994c182020-09-11 12:07:10 -0600283 return gParcelGlobalAllocCount.load();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700284}
285
286const uint8_t* Parcel::data() const
287{
288 return mData;
289}
290
291size_t Parcel::dataSize() const
292{
293 return (mDataSize > mDataPos ? mDataSize : mDataPos);
294}
295
296size_t Parcel::dataAvail() const
297{
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700298 size_t result = dataSize() - dataPosition();
299 if (result > INT32_MAX) {
Steven Moreland6adf33c2019-09-25 13:18:09 -0700300 LOG_ALWAYS_FATAL("result too big: %zu", result);
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700301 }
302 return result;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700303}
304
305size_t Parcel::dataPosition() const
306{
307 return mDataPos;
308}
309
310size_t Parcel::dataCapacity() const
311{
312 return mDataCapacity;
313}
314
315status_t Parcel::setDataSize(size_t size)
316{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700317 if (size > INT32_MAX) {
318 // don't accept size_t values which may have come from an
319 // inadvertent conversion from a negative int.
320 return BAD_VALUE;
321 }
322
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700323 status_t err;
324 err = continueWrite(size);
325 if (err == NO_ERROR) {
326 mDataSize = size;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700327 ALOGV("setDataSize Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700328 }
329 return err;
330}
331
332void Parcel::setDataPosition(size_t pos) const
333{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700334 if (pos > INT32_MAX) {
335 // don't accept size_t values which may have come from an
336 // inadvertent conversion from a negative int.
Steven Moreland6adf33c2019-09-25 13:18:09 -0700337 LOG_ALWAYS_FATAL("pos too big: %zu", pos);
Nick Kralevichb6b14232015-04-02 09:36:02 -0700338 }
339
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700340 mDataPos = pos;
341 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -0800342 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700343}
344
345status_t Parcel::setDataCapacity(size_t size)
346{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700347 if (size > INT32_MAX) {
348 // don't accept size_t values which may have come from an
349 // inadvertent conversion from a negative int.
350 return BAD_VALUE;
351 }
352
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700353 if (size > mDataCapacity) return continueWrite(size);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700354 return NO_ERROR;
355}
356
357status_t Parcel::setData(const uint8_t* buffer, size_t len)
358{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700359 if (len > INT32_MAX) {
360 // don't accept size_t values which may have come from an
361 // inadvertent conversion from a negative int.
362 return BAD_VALUE;
363 }
364
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700365 status_t err = restartWrite(len);
366 if (err == NO_ERROR) {
367 memcpy(const_cast<uint8_t*>(data()), buffer, len);
368 mDataSize = len;
369 mFdsKnown = false;
370 }
371 return err;
372}
373
Andreas Huber51faf462011-04-13 10:21:56 -0700374status_t Parcel::appendFrom(const Parcel *parcel, size_t offset, size_t len)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700375{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700376 status_t err;
Andreas Huber51faf462011-04-13 10:21:56 -0700377 const uint8_t *data = parcel->mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800378 const binder_size_t *objects = parcel->mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700379 size_t size = parcel->mObjectsSize;
380 int startPos = mDataPos;
381 int firstIndex = -1, lastIndex = -2;
382
383 if (len == 0) {
384 return NO_ERROR;
385 }
386
Nick Kralevichb6b14232015-04-02 09:36:02 -0700387 if (len > INT32_MAX) {
388 // don't accept size_t values which may have come from an
389 // inadvertent conversion from a negative int.
390 return BAD_VALUE;
391 }
392
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700393 // range checks against the source parcel size
394 if ((offset > parcel->mDataSize)
395 || (len > parcel->mDataSize)
396 || (offset + len > parcel->mDataSize)) {
397 return BAD_VALUE;
398 }
399
400 // Count objects in range
401 for (int i = 0; i < (int) size; i++) {
402 size_t off = objects[i];
Christopher Tate27182be2015-05-27 17:53:02 -0700403 if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700404 if (firstIndex == -1) {
405 firstIndex = i;
406 }
407 lastIndex = i;
408 }
409 }
410 int numObjects = lastIndex - firstIndex + 1;
411
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700412 if ((mDataSize+len) > mDataCapacity) {
413 // grow data
414 err = growData(len);
415 if (err != NO_ERROR) {
416 return err;
417 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700418 }
419
420 // append data
421 memcpy(mData + mDataPos, data + offset, len);
422 mDataPos += len;
423 mDataSize += len;
424
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400425 err = NO_ERROR;
426
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700427 if (numObjects > 0) {
Martijn Coenen69390d42018-10-22 15:18:10 +0200428 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700429 // grow objects
430 if (mObjectsCapacity < mObjectsSize + numObjects) {
Martijn Coenen93fe5182020-01-22 10:46:25 +0100431 if ((size_t) numObjects > SIZE_MAX - mObjectsSize) return NO_MEMORY; // overflow
432 if (mObjectsSize + numObjects > SIZE_MAX / 3) return NO_MEMORY; // overflow
Christopher Tateed7a50c2015-06-08 14:45:14 -0700433 size_t newSize = ((mObjectsSize + numObjects)*3)/2;
Martijn Coenen93fe5182020-01-22 10:46:25 +0100434 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800435 binder_size_t *objects =
436 (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -0700437 if (objects == (binder_size_t*)nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700438 return NO_MEMORY;
439 }
440 mObjects = objects;
441 mObjectsCapacity = newSize;
442 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700443
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700444 // append and acquire objects
445 int idx = mObjectsSize;
446 for (int i = firstIndex; i <= lastIndex; i++) {
447 size_t off = objects[i] - offset + startPos;
448 mObjects[idx++] = off;
449 mObjectsSize++;
450
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700451 flat_binder_object* flat
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700452 = reinterpret_cast<flat_binder_object*>(mData + off);
Adrian Rooscbf37262015-10-22 16:12:53 -0700453 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700454
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700455 if (flat->hdr.type == BINDER_TYPE_FD) {
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700456 // If this is a file descriptor, we need to dup it so the
457 // new Parcel now owns its own fd, and can declare that we
458 // officially know we have fds.
Nick Kralevichec9ec7d2016-12-17 19:47:27 -0800459 flat->handle = fcntl(flat->handle, F_DUPFD_CLOEXEC, 0);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800460 flat->cookie = 1;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700461 mHasFds = mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400462 if (!mAllowFds) {
463 err = FDS_NOT_ALLOWED;
464 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700465 }
466 }
467 }
468
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400469 return err;
470}
471
Dianne Hackborn15feb9b2017-04-10 15:34:35 -0700472int Parcel::compareData(const Parcel& other) {
473 size_t size = dataSize();
474 if (size != other.dataSize()) {
475 return size < other.dataSize() ? -1 : 1;
476 }
477 return memcmp(data(), other.data(), size);
478}
479
Jeff Brown13b16042014-11-11 16:44:25 -0800480bool Parcel::allowFds() const
481{
482 return mAllowFds;
483}
484
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700485bool Parcel::pushAllowFds(bool allowFds)
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400486{
487 const bool origValue = mAllowFds;
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700488 if (!allowFds) {
489 mAllowFds = false;
490 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400491 return origValue;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700492}
493
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700494void Parcel::restoreAllowFds(bool lastValue)
495{
496 mAllowFds = lastValue;
497}
498
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700499bool Parcel::hasFileDescriptors() const
500{
501 if (!mFdsKnown) {
502 scanForFds();
503 }
504 return mHasFds;
505}
506
Steven Morelandf183fdd2020-10-27 00:12:12 +0000507void Parcel::markSensitive() const
508{
509 mDeallocZero = true;
510}
511
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000512void Parcel::updateWorkSourceRequestHeaderPosition() const {
513 // Only update the request headers once. We only want to point
514 // to the first headers read/written.
515 if (!mRequestHeaderPresent) {
516 mWorkSourceRequestHeaderPosition = dataPosition();
517 mRequestHeaderPresent = true;
518 }
519}
520
Jooyung Han1b228f42020-01-30 13:41:12 +0900521#if defined(__ANDROID_VNDK__) && !defined(__ANDROID_APEX__)
Steven Morelandd70160f2019-07-23 10:20:38 -0700522constexpr int32_t kHeader = B_PACK_CHARS('V', 'N', 'D', 'R');
523#else
524constexpr int32_t kHeader = B_PACK_CHARS('S', 'Y', 'S', 'T');
525#endif
526
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700527// Write RPC headers. (previously just the interface token)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700528status_t Parcel::writeInterfaceToken(const String16& interface)
529{
Steven Morelanddbc76c72020-10-01 18:02:48 +0000530 return writeInterfaceToken(interface.string(), interface.size());
531}
532
533status_t Parcel::writeInterfaceToken(const char16_t* str, size_t len) {
Olivier Gaillard91a04802018-11-14 17:32:41 +0000534 const IPCThreadState* threadState = IPCThreadState::self();
535 writeInt32(threadState->getStrictModePolicy() | STRICT_MODE_PENALTY_GATHER);
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000536 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000537 writeInt32(threadState->shouldPropagateWorkSource() ?
538 threadState->getCallingWorkSourceUid() : IPCThreadState::kUnsetWorkSource);
Steven Morelandd70160f2019-07-23 10:20:38 -0700539 writeInt32(kHeader);
Steven Morelanddbc76c72020-10-01 18:02:48 +0000540
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700541 // currently the interface identification token is just its name as a string
Steven Morelanddbc76c72020-10-01 18:02:48 +0000542 return writeString16(str, len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700543}
544
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000545bool Parcel::replaceCallingWorkSourceUid(uid_t uid)
546{
547 if (!mRequestHeaderPresent) {
548 return false;
549 }
550
551 const size_t initialPosition = dataPosition();
552 setDataPosition(mWorkSourceRequestHeaderPosition);
553 status_t err = writeInt32(uid);
554 setDataPosition(initialPosition);
555 return err == NO_ERROR;
556}
557
Steven Morelandf1b1e492019-05-06 15:05:13 -0700558uid_t Parcel::readCallingWorkSourceUid() const
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000559{
560 if (!mRequestHeaderPresent) {
561 return IPCThreadState::kUnsetWorkSource;
562 }
563
564 const size_t initialPosition = dataPosition();
565 setDataPosition(mWorkSourceRequestHeaderPosition);
566 uid_t uid = readInt32();
567 setDataPosition(initialPosition);
568 return uid;
569}
570
Mathias Agopian83c04462009-05-22 19:00:22 -0700571bool Parcel::checkInterface(IBinder* binder) const
572{
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700573 return enforceInterface(binder->getInterfaceDescriptor());
Mathias Agopian83c04462009-05-22 19:00:22 -0700574}
575
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700576bool Parcel::enforceInterface(const String16& interface,
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700577 IPCThreadState* threadState) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700578{
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700579 return enforceInterface(interface.string(), interface.size(), threadState);
580}
581
582bool Parcel::enforceInterface(const char16_t* interface,
583 size_t len,
584 IPCThreadState* threadState) const
585{
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100586 // StrictModePolicy.
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700587 int32_t strictPolicy = readInt32();
Yi Kong91635562018-06-07 14:38:36 -0700588 if (threadState == nullptr) {
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700589 threadState = IPCThreadState::self();
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700590 }
Brad Fitzpatrick52736032010-08-30 16:01:16 -0700591 if ((threadState->getLastTransactionBinderFlags() &
592 IBinder::FLAG_ONEWAY) != 0) {
593 // For one-way calls, the callee is running entirely
594 // disconnected from the caller, so disable StrictMode entirely.
595 // Not only does disk/network usage not impact the caller, but
596 // there's no way to commuicate back any violations anyway.
597 threadState->setStrictModePolicy(0);
598 } else {
599 threadState->setStrictModePolicy(strictPolicy);
600 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100601 // WorkSource.
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000602 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100603 int32_t workSource = readInt32();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000604 threadState->setCallingWorkSourceUidWithoutPropagation(workSource);
Steven Morelandd70160f2019-07-23 10:20:38 -0700605 // vendor header
606 int32_t header = readInt32();
607 if (header != kHeader) {
608 ALOGE("Expecting header 0x%x but found 0x%x. Mixing copies of libbinder?", kHeader, header);
609 return false;
610 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100611 // Interface descriptor.
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700612 size_t parcel_interface_len;
613 const char16_t* parcel_interface = readString16Inplace(&parcel_interface_len);
614 if (len == parcel_interface_len &&
615 (!len || !memcmp(parcel_interface, interface, len * sizeof (char16_t)))) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700616 return true;
617 } else {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700618 ALOGW("**** enforceInterface() expected '%s' but read '%s'",
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700619 String8(interface, len).string(),
620 String8(parcel_interface, parcel_interface_len).string());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700621 return false;
622 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700623}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700624
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700625size_t Parcel::objectsCount() const
626{
627 return mObjectsSize;
628}
629
630status_t Parcel::errorCheck() const
631{
632 return mError;
633}
634
635void Parcel::setError(status_t err)
636{
637 mError = err;
638}
639
640status_t Parcel::finishWrite(size_t len)
641{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700642 if (len > INT32_MAX) {
643 // don't accept size_t values which may have come from an
644 // inadvertent conversion from a negative int.
645 return BAD_VALUE;
646 }
647
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700648 //printf("Finish write of %d\n", len);
649 mDataPos += len;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700650 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700651 if (mDataPos > mDataSize) {
652 mDataSize = mDataPos;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700653 ALOGV("finishWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700654 }
655 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
656 return NO_ERROR;
657}
658
659status_t Parcel::writeUnpadded(const void* data, size_t len)
660{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700661 if (len > INT32_MAX) {
662 // don't accept size_t values which may have come from an
663 // inadvertent conversion from a negative int.
664 return BAD_VALUE;
665 }
666
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700667 size_t end = mDataPos + len;
668 if (end < mDataPos) {
669 // integer overflow
670 return BAD_VALUE;
671 }
672
673 if (end <= mDataCapacity) {
674restart_write:
675 memcpy(mData+mDataPos, data, len);
676 return finishWrite(len);
677 }
678
679 status_t err = growData(len);
680 if (err == NO_ERROR) goto restart_write;
681 return err;
682}
683
684status_t Parcel::write(const void* data, size_t len)
685{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700686 if (len > INT32_MAX) {
687 // don't accept size_t values which may have come from an
688 // inadvertent conversion from a negative int.
689 return BAD_VALUE;
690 }
691
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700692 void* const d = writeInplace(len);
693 if (d) {
694 memcpy(d, data, len);
695 return NO_ERROR;
696 }
697 return mError;
698}
699
700void* Parcel::writeInplace(size_t len)
701{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700702 if (len > INT32_MAX) {
703 // don't accept size_t values which may have come from an
704 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -0700705 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -0700706 }
707
708 const size_t padded = pad_size(len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700709
710 // sanity check for integer overflow
711 if (mDataPos+padded < mDataPos) {
Yi Kong91635562018-06-07 14:38:36 -0700712 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700713 }
714
715 if ((mDataPos+padded) <= mDataCapacity) {
716restart_write:
717 //printf("Writing %ld bytes, padded to %ld\n", len, padded);
718 uint8_t* const data = mData+mDataPos;
719
720 // Need to pad at end?
721 if (padded != len) {
722#if BYTE_ORDER == BIG_ENDIAN
723 static const uint32_t mask[4] = {
724 0x00000000, 0xffffff00, 0xffff0000, 0xff000000
725 };
726#endif
727#if BYTE_ORDER == LITTLE_ENDIAN
728 static const uint32_t mask[4] = {
729 0x00000000, 0x00ffffff, 0x0000ffff, 0x000000ff
730 };
731#endif
732 //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
733 // *reinterpret_cast<void**>(data+padded-4));
734 *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
735 }
736
737 finishWrite(padded);
738 return data;
739 }
740
741 status_t err = growData(padded);
742 if (err == NO_ERROR) goto restart_write;
Yi Kong91635562018-06-07 14:38:36 -0700743 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700744}
745
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800746status_t Parcel::writeUtf8AsUtf16(const std::string& str) {
747 const uint8_t* strData = (uint8_t*)str.data();
748 const size_t strLen= str.length();
749 const ssize_t utf16Len = utf8_to_utf16_length(strData, strLen);
Sergio Girof4607432016-07-21 14:46:35 +0100750 if (utf16Len < 0 || utf16Len > std::numeric_limits<int32_t>::max()) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800751 return BAD_VALUE;
752 }
753
754 status_t err = writeInt32(utf16Len);
755 if (err) {
756 return err;
757 }
758
759 // Allocate enough bytes to hold our converted string and its terminating NULL.
760 void* dst = writeInplace((utf16Len + 1) * sizeof(char16_t));
761 if (!dst) {
762 return NO_MEMORY;
763 }
764
Sergio Girof4607432016-07-21 14:46:35 +0100765 utf8_to_utf16(strData, strLen, (char16_t*)dst, (size_t) utf16Len + 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800766
767 return NO_ERROR;
768}
769
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900770status_t Parcel::writeUtf8AsUtf16(const std::optional<std::string>& str) {
771 if (!str) {
772 return writeInt32(-1);
773 }
774 return writeUtf8AsUtf16(*str);
775}
776
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800777status_t Parcel::writeUtf8AsUtf16(const std::unique_ptr<std::string>& str) {
778 if (!str) {
779 return writeInt32(-1);
780 }
781 return writeUtf8AsUtf16(*str);
782}
783
Daniel Normand0337ef2019-09-20 15:46:03 -0700784status_t Parcel::writeByteVectorInternal(const int8_t* data, size_t size) {
785 if (size > std::numeric_limits<int32_t>::max()) {
786 return BAD_VALUE;
Casey Dahlin451ff582015-10-19 18:12:18 -0700787 }
788
Daniel Normand0337ef2019-09-20 15:46:03 -0700789 status_t status = writeInt32(size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700790 if (status != OK) {
791 return status;
792 }
793
Daniel Normand0337ef2019-09-20 15:46:03 -0700794 return write(data, size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700795}
796
Casey Dahlin185d3442016-02-09 11:08:35 -0800797status_t Parcel::writeByteVector(const std::vector<int8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700798 return writeByteVectorInternal(val.data(), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800799}
800
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900801status_t Parcel::writeByteVector(const std::optional<std::vector<int8_t>>& val)
802{
803 if (!val) return writeInt32(-1);
804 return writeByteVectorInternal(val->data(), val->size());
805}
806
Casey Dahlin185d3442016-02-09 11:08:35 -0800807status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<int8_t>>& val)
808{
Daniel Normand0337ef2019-09-20 15:46:03 -0700809 if (!val) return writeInt32(-1);
810 return writeByteVectorInternal(val->data(), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800811}
812
813status_t Parcel::writeByteVector(const std::vector<uint8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700814 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val.data()), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800815}
816
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900817status_t Parcel::writeByteVector(const std::optional<std::vector<uint8_t>>& val)
818{
819 if (!val) return writeInt32(-1);
820 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
821}
822
Casey Dahlin185d3442016-02-09 11:08:35 -0800823status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<uint8_t>>& val)
824{
Daniel Normand0337ef2019-09-20 15:46:03 -0700825 if (!val) return writeInt32(-1);
826 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800827}
828
Casey Dahlin451ff582015-10-19 18:12:18 -0700829status_t Parcel::writeInt32Vector(const std::vector<int32_t>& val)
830{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800831 return writeTypedVector(val, &Parcel::writeInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -0700832}
833
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900834status_t Parcel::writeInt32Vector(const std::optional<std::vector<int32_t>>& val)
835{
836 return writeNullableTypedVector(val, &Parcel::writeInt32);
837}
838
Casey Dahlinb9872622015-11-25 15:09:45 -0800839status_t Parcel::writeInt32Vector(const std::unique_ptr<std::vector<int32_t>>& val)
840{
841 return writeNullableTypedVector(val, &Parcel::writeInt32);
842}
843
Casey Dahlin451ff582015-10-19 18:12:18 -0700844status_t Parcel::writeInt64Vector(const std::vector<int64_t>& val)
845{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800846 return writeTypedVector(val, &Parcel::writeInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -0700847}
848
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900849status_t Parcel::writeInt64Vector(const std::optional<std::vector<int64_t>>& val)
850{
851 return writeNullableTypedVector(val, &Parcel::writeInt64);
852}
853
Casey Dahlinb9872622015-11-25 15:09:45 -0800854status_t Parcel::writeInt64Vector(const std::unique_ptr<std::vector<int64_t>>& val)
855{
856 return writeNullableTypedVector(val, &Parcel::writeInt64);
857}
858
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800859status_t Parcel::writeUint64Vector(const std::vector<uint64_t>& val)
860{
861 return writeTypedVector(val, &Parcel::writeUint64);
862}
863
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900864status_t Parcel::writeUint64Vector(const std::optional<std::vector<uint64_t>>& val)
865{
866 return writeNullableTypedVector(val, &Parcel::writeUint64);
867}
868
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800869status_t Parcel::writeUint64Vector(const std::unique_ptr<std::vector<uint64_t>>& val)
870{
871 return writeNullableTypedVector(val, &Parcel::writeUint64);
872}
873
Casey Dahlin451ff582015-10-19 18:12:18 -0700874status_t Parcel::writeFloatVector(const std::vector<float>& val)
875{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800876 return writeTypedVector(val, &Parcel::writeFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -0700877}
878
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900879status_t Parcel::writeFloatVector(const std::optional<std::vector<float>>& val)
880{
881 return writeNullableTypedVector(val, &Parcel::writeFloat);
882}
883
Casey Dahlinb9872622015-11-25 15:09:45 -0800884status_t Parcel::writeFloatVector(const std::unique_ptr<std::vector<float>>& val)
885{
886 return writeNullableTypedVector(val, &Parcel::writeFloat);
887}
888
Casey Dahlin451ff582015-10-19 18:12:18 -0700889status_t Parcel::writeDoubleVector(const std::vector<double>& val)
890{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800891 return writeTypedVector(val, &Parcel::writeDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -0700892}
893
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900894status_t Parcel::writeDoubleVector(const std::optional<std::vector<double>>& val)
895{
896 return writeNullableTypedVector(val, &Parcel::writeDouble);
897}
898
Casey Dahlinb9872622015-11-25 15:09:45 -0800899status_t Parcel::writeDoubleVector(const std::unique_ptr<std::vector<double>>& val)
900{
901 return writeNullableTypedVector(val, &Parcel::writeDouble);
902}
903
Casey Dahlin451ff582015-10-19 18:12:18 -0700904status_t Parcel::writeBoolVector(const std::vector<bool>& val)
905{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800906 return writeTypedVector(val, &Parcel::writeBool);
Casey Dahlin451ff582015-10-19 18:12:18 -0700907}
908
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900909status_t Parcel::writeBoolVector(const std::optional<std::vector<bool>>& val)
910{
911 return writeNullableTypedVector(val, &Parcel::writeBool);
912}
913
Casey Dahlinb9872622015-11-25 15:09:45 -0800914status_t Parcel::writeBoolVector(const std::unique_ptr<std::vector<bool>>& val)
915{
916 return writeNullableTypedVector(val, &Parcel::writeBool);
917}
918
Casey Dahlin451ff582015-10-19 18:12:18 -0700919status_t Parcel::writeCharVector(const std::vector<char16_t>& val)
920{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800921 return writeTypedVector(val, &Parcel::writeChar);
Casey Dahlin451ff582015-10-19 18:12:18 -0700922}
923
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900924status_t Parcel::writeCharVector(const std::optional<std::vector<char16_t>>& val)
925{
926 return writeNullableTypedVector(val, &Parcel::writeChar);
927}
928
Casey Dahlinb9872622015-11-25 15:09:45 -0800929status_t Parcel::writeCharVector(const std::unique_ptr<std::vector<char16_t>>& val)
930{
931 return writeNullableTypedVector(val, &Parcel::writeChar);
932}
933
Casey Dahlin451ff582015-10-19 18:12:18 -0700934status_t Parcel::writeString16Vector(const std::vector<String16>& val)
935{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800936 return writeTypedVector(val, &Parcel::writeString16);
Casey Dahlin451ff582015-10-19 18:12:18 -0700937}
938
Casey Dahlinb9872622015-11-25 15:09:45 -0800939status_t Parcel::writeString16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900940 const std::optional<std::vector<std::optional<String16>>>& val)
941{
942 return writeNullableTypedVector(val, &Parcel::writeString16);
943}
944
945status_t Parcel::writeString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -0800946 const std::unique_ptr<std::vector<std::unique_ptr<String16>>>& val)
947{
948 return writeNullableTypedVector(val, &Parcel::writeString16);
949}
950
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800951status_t Parcel::writeUtf8VectorAsUtf16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900952 const std::optional<std::vector<std::optional<std::string>>>& val) {
953 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
954}
955
956status_t Parcel::writeUtf8VectorAsUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800957 const std::unique_ptr<std::vector<std::unique_ptr<std::string>>>& val) {
958 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
959}
960
961status_t Parcel::writeUtf8VectorAsUtf16Vector(const std::vector<std::string>& val) {
962 return writeTypedVector(val, &Parcel::writeUtf8AsUtf16);
963}
964
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700965status_t Parcel::writeInt32(int32_t val)
966{
Andreas Huber84a6d042009-08-17 13:33:27 -0700967 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700968}
Dan Stoza41a0f2f2014-12-01 10:01:10 -0800969
970status_t Parcel::writeUint32(uint32_t val)
971{
972 return writeAligned(val);
973}
974
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700975status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700976 if (len > INT32_MAX) {
977 // don't accept size_t values which may have come from an
978 // inadvertent conversion from a negative int.
979 return BAD_VALUE;
980 }
981
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700982 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700983 return writeInt32(-1);
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700984 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700985 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700986 if (ret == NO_ERROR) {
987 ret = write(val, len * sizeof(*val));
988 }
989 return ret;
990}
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700991status_t Parcel::writeByteArray(size_t len, const uint8_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700992 if (len > INT32_MAX) {
993 // don't accept size_t values which may have come from an
994 // inadvertent conversion from a negative int.
995 return BAD_VALUE;
996 }
997
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700998 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700999 return writeInt32(-1);
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001000 }
Chad Brubakere59cb432015-06-30 14:03:55 -07001001 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001002 if (ret == NO_ERROR) {
1003 ret = write(val, len * sizeof(*val));
1004 }
1005 return ret;
1006}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001007
Casey Dahlind6848f52015-10-15 15:44:59 -07001008status_t Parcel::writeBool(bool val)
1009{
1010 return writeInt32(int32_t(val));
1011}
1012
1013status_t Parcel::writeChar(char16_t val)
1014{
1015 return writeInt32(int32_t(val));
1016}
1017
1018status_t Parcel::writeByte(int8_t val)
1019{
1020 return writeInt32(int32_t(val));
1021}
1022
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001023status_t Parcel::writeInt64(int64_t val)
1024{
Andreas Huber84a6d042009-08-17 13:33:27 -07001025 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001026}
1027
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001028status_t Parcel::writeUint64(uint64_t val)
1029{
1030 return writeAligned(val);
1031}
1032
Serban Constantinescuf683e012013-11-05 16:53:55 +00001033status_t Parcel::writePointer(uintptr_t val)
1034{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001035 return writeAligned<binder_uintptr_t>(val);
Serban Constantinescuf683e012013-11-05 16:53:55 +00001036}
1037
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001038status_t Parcel::writeFloat(float val)
1039{
Andreas Huber84a6d042009-08-17 13:33:27 -07001040 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001041}
1042
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001043#if defined(__mips__) && defined(__mips_hard_float)
1044
1045status_t Parcel::writeDouble(double val)
1046{
1047 union {
1048 double d;
1049 unsigned long long ll;
1050 } u;
1051 u.d = val;
1052 return writeAligned(u.ll);
1053}
1054
1055#else
1056
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001057status_t Parcel::writeDouble(double val)
1058{
Andreas Huber84a6d042009-08-17 13:33:27 -07001059 return writeAligned(val);
1060}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001061
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001062#endif
1063
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001064status_t Parcel::writeCString(const char* str)
1065{
1066 return write(str, strlen(str)+1);
1067}
1068
1069status_t Parcel::writeString8(const String8& str)
1070{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06001071 return writeString8(str.string(), str.size());
1072}
1073
1074status_t Parcel::writeString8(const char* str, size_t len)
1075{
1076 if (str == nullptr) return writeInt32(-1);
1077
Jeff Sharkey18220902020-11-05 08:36:20 -07001078 // NOTE: Keep this logic in sync with android_os_Parcel.cpp
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06001079 status_t err = writeInt32(len);
1080 if (err == NO_ERROR) {
1081 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char));
1082 if (data) {
1083 memcpy(data, str, len);
1084 *reinterpret_cast<char*>(data+len) = 0;
1085 return NO_ERROR;
1086 }
1087 err = mError;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001088 }
1089 return err;
1090}
1091
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001092status_t Parcel::writeString16(const std::optional<String16>& str)
1093{
1094 if (!str) {
1095 return writeInt32(-1);
1096 }
1097
1098 return writeString16(*str);
1099}
1100
Casey Dahlinb9872622015-11-25 15:09:45 -08001101status_t Parcel::writeString16(const std::unique_ptr<String16>& str)
1102{
1103 if (!str) {
1104 return writeInt32(-1);
1105 }
1106
1107 return writeString16(*str);
1108}
1109
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001110status_t Parcel::writeString16(const String16& str)
1111{
1112 return writeString16(str.string(), str.size());
1113}
1114
1115status_t Parcel::writeString16(const char16_t* str, size_t len)
1116{
Yi Kong91635562018-06-07 14:38:36 -07001117 if (str == nullptr) return writeInt32(-1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001118
Jeff Sharkey18220902020-11-05 08:36:20 -07001119 // NOTE: Keep this logic in sync with android_os_Parcel.cpp
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001120 status_t err = writeInt32(len);
1121 if (err == NO_ERROR) {
1122 len *= sizeof(char16_t);
1123 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char16_t));
1124 if (data) {
1125 memcpy(data, str, len);
1126 *reinterpret_cast<char16_t*>(data+len) = 0;
1127 return NO_ERROR;
1128 }
1129 err = mError;
1130 }
1131 return err;
1132}
1133
1134status_t Parcel::writeStrongBinder(const sp<IBinder>& val)
1135{
Steven Morelanda86a3562019-08-01 23:28:34 +00001136 return flattenBinder(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001137}
1138
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001139status_t Parcel::writeStrongBinderVector(const std::vector<sp<IBinder>>& val)
1140{
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001141 return writeTypedVector(val, &Parcel::writeStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001142}
1143
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001144status_t Parcel::writeStrongBinderVector(const std::optional<std::vector<sp<IBinder>>>& val)
1145{
1146 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1147}
1148
Casey Dahlinb9872622015-11-25 15:09:45 -08001149status_t Parcel::writeStrongBinderVector(const std::unique_ptr<std::vector<sp<IBinder>>>& val)
1150{
1151 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1152}
1153
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001154status_t Parcel::readStrongBinderVector(std::optional<std::vector<sp<IBinder>>>* val) const {
1155 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
1156}
1157
Casey Dahlinb9872622015-11-25 15:09:45 -08001158status_t Parcel::readStrongBinderVector(std::unique_ptr<std::vector<sp<IBinder>>>* val) const {
Christopher Wiley35d77ca2016-03-08 10:49:51 -08001159 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
Casey Dahlinb9872622015-11-25 15:09:45 -08001160}
1161
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001162status_t Parcel::readStrongBinderVector(std::vector<sp<IBinder>>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001163 return readTypedVector(val, &Parcel::readStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001164}
1165
Casey Dahlinb9872622015-11-25 15:09:45 -08001166status_t Parcel::writeRawNullableParcelable(const Parcelable* parcelable) {
1167 if (!parcelable) {
1168 return writeInt32(0);
1169 }
1170
1171 return writeParcelable(*parcelable);
1172}
1173
Christopher Wiley97f048d2015-11-19 06:49:05 -08001174status_t Parcel::writeParcelable(const Parcelable& parcelable) {
1175 status_t status = writeInt32(1); // parcelable is not null.
1176 if (status != OK) {
1177 return status;
1178 }
1179 return parcelable.writeToParcel(this);
1180}
1181
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001182status_t Parcel::writeNativeHandle(const native_handle* handle)
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001183{
Mathias Agopian1d0a95b2009-07-31 16:12:13 -07001184 if (!handle || handle->version != sizeof(native_handle))
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001185 return BAD_TYPE;
1186
1187 status_t err;
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001188 err = writeInt32(handle->numFds);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001189 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001190
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001191 err = writeInt32(handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001192 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001193
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001194 for (int i=0 ; err==NO_ERROR && i<handle->numFds ; i++)
1195 err = writeDupFileDescriptor(handle->data[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001196
1197 if (err != NO_ERROR) {
Steve Block9d453682011-12-20 16:23:08 +00001198 ALOGD("write native handle, write dup fd failed");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001199 return err;
1200 }
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001201 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001202 return err;
1203}
1204
Jeff Brown93ff1f92011-11-04 19:01:44 -07001205status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001206{
1207 flat_binder_object obj;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001208 obj.hdr.type = BINDER_TYPE_FD;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001209 obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -08001210 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001211 obj.handle = fd;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001212 obj.cookie = takeOwnership ? 1 : 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001213 return writeObject(obj, true);
1214}
1215
1216status_t Parcel::writeDupFileDescriptor(int fd)
1217{
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08001218 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
Jeff Brownd341c712011-11-04 20:19:33 -07001219 if (dupFd < 0) {
1220 return -errno;
1221 }
1222 status_t err = writeFileDescriptor(dupFd, true /*takeOwnership*/);
Casey Dahlin06673e32015-11-23 13:24:23 -08001223 if (err != OK) {
Jeff Brownd341c712011-11-04 20:19:33 -07001224 close(dupFd);
1225 }
1226 return err;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001227}
1228
Dianne Hackborn1941a402016-08-29 12:30:43 -07001229status_t Parcel::writeParcelFileDescriptor(int fd, bool takeOwnership)
1230{
1231 writeInt32(0);
1232 return writeFileDescriptor(fd, takeOwnership);
1233}
1234
Ryo Hashimotobf551892018-05-31 16:58:35 +09001235status_t Parcel::writeDupParcelFileDescriptor(int fd)
1236{
1237 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1238 if (dupFd < 0) {
1239 return -errno;
1240 }
1241 status_t err = writeParcelFileDescriptor(dupFd, true /*takeOwnership*/);
1242 if (err != OK) {
1243 close(dupFd);
1244 }
1245 return err;
1246}
1247
Christopher Wiley2cf19952016-04-11 11:09:37 -07001248status_t Parcel::writeUniqueFileDescriptor(const base::unique_fd& fd) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001249 return writeDupFileDescriptor(fd.get());
1250}
1251
Christopher Wiley2cf19952016-04-11 11:09:37 -07001252status_t Parcel::writeUniqueFileDescriptorVector(const std::vector<base::unique_fd>& val) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001253 return writeTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1254}
1255
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001256status_t Parcel::writeUniqueFileDescriptorVector(const std::optional<std::vector<base::unique_fd>>& val) {
1257 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1258}
1259
Christopher Wiley2cf19952016-04-11 11:09:37 -07001260status_t Parcel::writeUniqueFileDescriptorVector(const std::unique_ptr<std::vector<base::unique_fd>>& val) {
Casey Dahlinb9872622015-11-25 15:09:45 -08001261 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1262}
1263
Jeff Brown13b16042014-11-11 16:44:25 -08001264status_t Parcel::writeBlob(size_t len, bool mutableCopy, WritableBlob* outBlob)
Jeff Brown5707dbf2011-09-23 21:17:56 -07001265{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001266 if (len > INT32_MAX) {
1267 // don't accept size_t values which may have come from an
1268 // inadvertent conversion from a negative int.
1269 return BAD_VALUE;
1270 }
1271
Jeff Brown13b16042014-11-11 16:44:25 -08001272 status_t status;
1273 if (!mAllowFds || len <= BLOB_INPLACE_LIMIT) {
Steve Block6807e592011-10-20 11:56:00 +01001274 ALOGV("writeBlob: write in place");
Jeff Brown13b16042014-11-11 16:44:25 -08001275 status = writeInt32(BLOB_INPLACE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001276 if (status) return status;
1277
1278 void* ptr = writeInplace(len);
1279 if (!ptr) return NO_MEMORY;
1280
Jeff Brown13b16042014-11-11 16:44:25 -08001281 outBlob->init(-1, ptr, len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001282 return NO_ERROR;
1283 }
1284
Steve Block6807e592011-10-20 11:56:00 +01001285 ALOGV("writeBlob: write to ashmem");
Jeff Brown5707dbf2011-09-23 21:17:56 -07001286 int fd = ashmem_create_region("Parcel Blob", len);
1287 if (fd < 0) return NO_MEMORY;
1288
1289 int result = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE);
1290 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001291 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001292 } else {
Yi Kong91635562018-06-07 14:38:36 -07001293 void* ptr = ::mmap(nullptr, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001294 if (ptr == MAP_FAILED) {
1295 status = -errno;
1296 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001297 if (!mutableCopy) {
1298 result = ashmem_set_prot_region(fd, PROT_READ);
1299 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07001300 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001301 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001302 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001303 status = writeInt32(mutableCopy ? BLOB_ASHMEM_MUTABLE : BLOB_ASHMEM_IMMUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001304 if (!status) {
Jeff Brown93ff1f92011-11-04 19:01:44 -07001305 status = writeFileDescriptor(fd, true /*takeOwnership*/);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001306 if (!status) {
Jeff Brown13b16042014-11-11 16:44:25 -08001307 outBlob->init(fd, ptr, len, mutableCopy);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001308 return NO_ERROR;
1309 }
1310 }
1311 }
1312 }
1313 ::munmap(ptr, len);
1314 }
1315 ::close(fd);
1316 return status;
1317}
1318
Jeff Brown13b16042014-11-11 16:44:25 -08001319status_t Parcel::writeDupImmutableBlobFileDescriptor(int fd)
1320{
1321 // Must match up with what's done in writeBlob.
1322 if (!mAllowFds) return FDS_NOT_ALLOWED;
1323 status_t status = writeInt32(BLOB_ASHMEM_IMMUTABLE);
1324 if (status) return status;
1325 return writeDupFileDescriptor(fd);
1326}
1327
Mathias Agopiane1424282013-07-29 21:24:40 -07001328status_t Parcel::write(const FlattenableHelperInterface& val)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001329{
1330 status_t err;
1331
1332 // size if needed
Mathias Agopiane1424282013-07-29 21:24:40 -07001333 const size_t len = val.getFlattenedSize();
1334 const size_t fd_count = val.getFdCount();
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001335
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001336 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001337 // don't accept size_t values which may have come from an
1338 // inadvertent conversion from a negative int.
1339 return BAD_VALUE;
1340 }
1341
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001342 err = this->writeInt32(len);
1343 if (err) return err;
1344
1345 err = this->writeInt32(fd_count);
1346 if (err) return err;
1347
1348 // payload
Martijn Coenenf8542382018-04-04 11:46:56 +02001349 void* const buf = this->writeInplace(len);
Yi Kong91635562018-06-07 14:38:36 -07001350 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001351 return BAD_VALUE;
1352
Yi Kong91635562018-06-07 14:38:36 -07001353 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001354 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001355 fds = new (std::nothrow) int[fd_count];
1356 if (fds == nullptr) {
1357 ALOGE("write: failed to allocate requested %zu fds", fd_count);
1358 return BAD_VALUE;
1359 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001360 }
1361
1362 err = val.flatten(buf, len, fds, fd_count);
1363 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1364 err = this->writeDupFileDescriptor( fds[i] );
1365 }
1366
1367 if (fd_count) {
1368 delete [] fds;
1369 }
1370
1371 return err;
1372}
1373
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001374status_t Parcel::writeObject(const flat_binder_object& val, bool nullMetaData)
1375{
1376 const bool enoughData = (mDataPos+sizeof(val)) <= mDataCapacity;
1377 const bool enoughObjects = mObjectsSize < mObjectsCapacity;
1378 if (enoughData && enoughObjects) {
1379restart_write:
1380 *reinterpret_cast<flat_binder_object*>(mData+mDataPos) = val;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001381
Christopher Tate98e67d32015-06-03 18:44:15 -07001382 // remember if it's a file descriptor
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001383 if (val.hdr.type == BINDER_TYPE_FD) {
Christopher Tate98e67d32015-06-03 18:44:15 -07001384 if (!mAllowFds) {
1385 // fail before modifying our object index
1386 return FDS_NOT_ALLOWED;
1387 }
1388 mHasFds = mFdsKnown = true;
1389 }
1390
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001391 // Need to write meta-data?
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001392 if (nullMetaData || val.binder != 0) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001393 mObjects[mObjectsSize] = mDataPos;
Adrian Rooscbf37262015-10-22 16:12:53 -07001394 acquire_object(ProcessState::self(), val, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001395 mObjectsSize++;
1396 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001397
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001398 return finishWrite(sizeof(flat_binder_object));
1399 }
1400
1401 if (!enoughData) {
1402 const status_t err = growData(sizeof(val));
1403 if (err != NO_ERROR) return err;
1404 }
1405 if (!enoughObjects) {
Martijn Coenen93fe5182020-01-22 10:46:25 +01001406 if (mObjectsSize > SIZE_MAX - 2) return NO_MEMORY; // overflow
1407 if ((mObjectsSize + 2) > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001408 size_t newSize = ((mObjectsSize+2)*3)/2;
Martijn Coenen93fe5182020-01-22 10:46:25 +01001409 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001410 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -07001411 if (objects == nullptr) return NO_MEMORY;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001412 mObjects = objects;
1413 mObjectsCapacity = newSize;
1414 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001415
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001416 goto restart_write;
1417}
1418
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001419status_t Parcel::writeNoException()
1420{
Christopher Wiley09eb7492015-11-09 15:06:15 -08001421 binder::Status status;
1422 return status.writeToParcel(this);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001423}
1424
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001425status_t Parcel::validateReadData(size_t upperBound) const
1426{
1427 // Don't allow non-object reads on object data
1428 if (mObjectsSorted || mObjectsSize <= 1) {
1429data_sorted:
1430 // Expect to check only against the next object
1431 if (mNextObjectHint < mObjectsSize && upperBound > mObjects[mNextObjectHint]) {
1432 // For some reason the current read position is greater than the next object
1433 // hint. Iterate until we find the right object
1434 size_t nextObject = mNextObjectHint;
1435 do {
1436 if (mDataPos < mObjects[nextObject] + sizeof(flat_binder_object)) {
1437 // Requested info overlaps with an object
1438 ALOGE("Attempt to read from protected data in Parcel %p", this);
1439 return PERMISSION_DENIED;
1440 }
1441 nextObject++;
1442 } while (nextObject < mObjectsSize && upperBound > mObjects[nextObject]);
1443 mNextObjectHint = nextObject;
1444 }
1445 return NO_ERROR;
1446 }
1447 // Quickly determine if mObjects is sorted.
1448 binder_size_t* currObj = mObjects + mObjectsSize - 1;
1449 binder_size_t* prevObj = currObj;
1450 while (currObj > mObjects) {
1451 prevObj--;
1452 if(*prevObj > *currObj) {
1453 goto data_unsorted;
1454 }
1455 currObj--;
1456 }
1457 mObjectsSorted = true;
1458 goto data_sorted;
1459
1460data_unsorted:
1461 // Insertion Sort mObjects
1462 // Great for mostly sorted lists. If randomly sorted or reverse ordered mObjects become common,
1463 // switch to std::sort(mObjects, mObjects + mObjectsSize);
1464 for (binder_size_t* iter0 = mObjects + 1; iter0 < mObjects + mObjectsSize; iter0++) {
1465 binder_size_t temp = *iter0;
1466 binder_size_t* iter1 = iter0 - 1;
1467 while (iter1 >= mObjects && *iter1 > temp) {
1468 *(iter1 + 1) = *iter1;
1469 iter1--;
1470 }
1471 *(iter1 + 1) = temp;
1472 }
1473 mNextObjectHint = 0;
1474 mObjectsSorted = true;
1475 goto data_sorted;
1476}
1477
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001478status_t Parcel::read(void* outData, size_t len) const
1479{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001480 if (len > INT32_MAX) {
1481 // don't accept size_t values which may have come from an
1482 // inadvertent conversion from a negative int.
1483 return BAD_VALUE;
1484 }
1485
1486 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1487 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001488 if (mObjectsSize > 0) {
1489 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001490 if(err != NO_ERROR) {
1491 // Still increment the data position by the expected length
1492 mDataPos += pad_size(len);
1493 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
1494 return err;
1495 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001496 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001497 memcpy(outData, mData+mDataPos, len);
Nick Kralevichb6b14232015-04-02 09:36:02 -07001498 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001499 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001500 return NO_ERROR;
1501 }
1502 return NOT_ENOUGH_DATA;
1503}
1504
1505const void* Parcel::readInplace(size_t len) const
1506{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001507 if (len > INT32_MAX) {
1508 // don't accept size_t values which may have come from an
1509 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -07001510 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001511 }
1512
1513 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1514 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001515 if (mObjectsSize > 0) {
1516 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001517 if(err != NO_ERROR) {
1518 // Still increment the data position by the expected length
1519 mDataPos += pad_size(len);
1520 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07001521 return nullptr;
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001522 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001523 }
1524
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001525 const void* data = mData+mDataPos;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001526 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001527 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001528 return data;
1529 }
Yi Kong91635562018-06-07 14:38:36 -07001530 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001531}
1532
Andreas Huber84a6d042009-08-17 13:33:27 -07001533template<class T>
1534status_t Parcel::readAligned(T *pArg) const {
Elliott Hughes42a9b942020-08-17 15:53:31 -07001535 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001536
1537 if ((mDataPos+sizeof(T)) <= mDataSize) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001538 if (mObjectsSize > 0) {
1539 status_t err = validateReadData(mDataPos + sizeof(T));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001540 if(err != NO_ERROR) {
1541 // Still increment the data position by the expected length
1542 mDataPos += sizeof(T);
1543 return err;
1544 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001545 }
1546
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001547 const void* data = mData+mDataPos;
Andreas Huber84a6d042009-08-17 13:33:27 -07001548 mDataPos += sizeof(T);
1549 *pArg = *reinterpret_cast<const T*>(data);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001550 return NO_ERROR;
1551 } else {
1552 return NOT_ENOUGH_DATA;
1553 }
1554}
1555
Andreas Huber84a6d042009-08-17 13:33:27 -07001556template<class T>
1557T Parcel::readAligned() const {
1558 T result;
1559 if (readAligned(&result) != NO_ERROR) {
1560 result = 0;
1561 }
1562
1563 return result;
1564}
1565
1566template<class T>
1567status_t Parcel::writeAligned(T val) {
Elliott Hughes42a9b942020-08-17 15:53:31 -07001568 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001569
1570 if ((mDataPos+sizeof(val)) <= mDataCapacity) {
1571restart_write:
1572 *reinterpret_cast<T*>(mData+mDataPos) = val;
1573 return finishWrite(sizeof(val));
1574 }
1575
1576 status_t err = growData(sizeof(val));
1577 if (err == NO_ERROR) goto restart_write;
1578 return err;
1579}
1580
Casey Dahlin185d3442016-02-09 11:08:35 -08001581status_t Parcel::readByteVector(std::vector<int8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001582 size_t size;
1583 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1584 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001585}
1586
1587status_t Parcel::readByteVector(std::vector<uint8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001588 size_t size;
1589 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1590 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001591}
1592
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001593status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const {
1594 size_t size;
1595 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1596 if (!*val) {
1597 // reserveOutVector does not create the out vector if size is < 0.
1598 // This occurs when writing a null byte vector.
1599 return OK;
1600 }
1601 return readByteVectorInternal(&**val, size);
1602}
1603
Casey Dahlin185d3442016-02-09 11:08:35 -08001604status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001605 size_t size;
1606 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001607 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001608 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001609 // This occurs when writing a null byte vector.
1610 return OK;
1611 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001612 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001613}
1614
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001615status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const {
1616 size_t size;
1617 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1618 if (!*val) {
1619 // reserveOutVector does not create the out vector if size is < 0.
1620 // This occurs when writing a null byte vector.
1621 return OK;
1622 }
1623 return readByteVectorInternal(&**val, size);
1624}
1625
Casey Dahlin185d3442016-02-09 11:08:35 -08001626status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001627 size_t size;
1628 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001629 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001630 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001631 // This occurs when writing a null byte vector.
1632 return OK;
1633 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001634 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001635}
1636
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001637status_t Parcel::readInt32Vector(std::optional<std::vector<int32_t>>* val) const {
1638 return readNullableTypedVector(val, &Parcel::readInt32);
1639}
1640
Casey Dahlinb9872622015-11-25 15:09:45 -08001641status_t Parcel::readInt32Vector(std::unique_ptr<std::vector<int32_t>>* val) const {
1642 return readNullableTypedVector(val, &Parcel::readInt32);
1643}
1644
Casey Dahlin451ff582015-10-19 18:12:18 -07001645status_t Parcel::readInt32Vector(std::vector<int32_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001646 return readTypedVector(val, &Parcel::readInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -07001647}
1648
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001649status_t Parcel::readInt64Vector(std::optional<std::vector<int64_t>>* val) const {
1650 return readNullableTypedVector(val, &Parcel::readInt64);
1651}
1652
Casey Dahlinb9872622015-11-25 15:09:45 -08001653status_t Parcel::readInt64Vector(std::unique_ptr<std::vector<int64_t>>* val) const {
1654 return readNullableTypedVector(val, &Parcel::readInt64);
1655}
1656
Casey Dahlin451ff582015-10-19 18:12:18 -07001657status_t Parcel::readInt64Vector(std::vector<int64_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001658 return readTypedVector(val, &Parcel::readInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -07001659}
1660
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001661status_t Parcel::readUint64Vector(std::optional<std::vector<uint64_t>>* val) const {
1662 return readNullableTypedVector(val, &Parcel::readUint64);
1663}
1664
Kevin DuBois2f82d5b2018-12-05 12:56:10 -08001665status_t Parcel::readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const {
1666 return readNullableTypedVector(val, &Parcel::readUint64);
1667}
1668
1669status_t Parcel::readUint64Vector(std::vector<uint64_t>* val) const {
1670 return readTypedVector(val, &Parcel::readUint64);
1671}
1672
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001673status_t Parcel::readFloatVector(std::optional<std::vector<float>>* val) const {
1674 return readNullableTypedVector(val, &Parcel::readFloat);
1675}
1676
Casey Dahlinb9872622015-11-25 15:09:45 -08001677status_t Parcel::readFloatVector(std::unique_ptr<std::vector<float>>* val) const {
1678 return readNullableTypedVector(val, &Parcel::readFloat);
1679}
1680
Casey Dahlin451ff582015-10-19 18:12:18 -07001681status_t Parcel::readFloatVector(std::vector<float>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001682 return readTypedVector(val, &Parcel::readFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -07001683}
1684
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001685status_t Parcel::readDoubleVector(std::optional<std::vector<double>>* val) const {
1686 return readNullableTypedVector(val, &Parcel::readDouble);
1687}
1688
Casey Dahlinb9872622015-11-25 15:09:45 -08001689status_t Parcel::readDoubleVector(std::unique_ptr<std::vector<double>>* val) const {
1690 return readNullableTypedVector(val, &Parcel::readDouble);
1691}
1692
Casey Dahlin451ff582015-10-19 18:12:18 -07001693status_t Parcel::readDoubleVector(std::vector<double>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001694 return readTypedVector(val, &Parcel::readDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -07001695}
1696
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001697status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const {
1698 const int32_t start = dataPosition();
1699 int32_t size;
1700 status_t status = readInt32(&size);
1701 val->reset();
1702
1703 if (status != OK || size < 0) {
1704 return status;
1705 }
1706
1707 setDataPosition(start);
1708 val->emplace();
1709
1710 status = readBoolVector(&**val);
1711
1712 if (status != OK) {
1713 val->reset();
1714 }
1715
1716 return status;
1717}
1718
Casey Dahlinb9872622015-11-25 15:09:45 -08001719status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const {
1720 const int32_t start = dataPosition();
1721 int32_t size;
1722 status_t status = readInt32(&size);
1723 val->reset();
Casey Dahlin451ff582015-10-19 18:12:18 -07001724
Casey Dahlinb9872622015-11-25 15:09:45 -08001725 if (status != OK || size < 0) {
1726 return status;
1727 }
1728
1729 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001730 val->reset(new (std::nothrow) std::vector<bool>());
Casey Dahlinb9872622015-11-25 15:09:45 -08001731
1732 status = readBoolVector(val->get());
1733
1734 if (status != OK) {
1735 val->reset();
1736 }
1737
1738 return status;
1739}
1740
1741status_t Parcel::readBoolVector(std::vector<bool>* val) const {
Casey Dahlin451ff582015-10-19 18:12:18 -07001742 int32_t size;
1743 status_t status = readInt32(&size);
1744
1745 if (status != OK) {
1746 return status;
1747 }
1748
1749 if (size < 0) {
Christopher Wiley4db672d2015-11-10 09:44:30 -08001750 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07001751 }
1752
1753 val->resize(size);
1754
1755 /* C++ bool handling means a vector of bools isn't necessarily addressable
1756 * (we might use individual bits)
1757 */
Christopher Wiley97887982015-10-27 16:33:47 -07001758 bool data;
1759 for (int32_t i = 0; i < size; ++i) {
Casey Dahlin451ff582015-10-19 18:12:18 -07001760 status = readBool(&data);
1761 (*val)[i] = data;
1762
1763 if (status != OK) {
1764 return status;
1765 }
1766 }
1767
1768 return OK;
1769}
1770
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001771status_t Parcel::readCharVector(std::optional<std::vector<char16_t>>* val) const {
1772 return readNullableTypedVector(val, &Parcel::readChar);
1773}
1774
Casey Dahlinb9872622015-11-25 15:09:45 -08001775status_t Parcel::readCharVector(std::unique_ptr<std::vector<char16_t>>* val) const {
1776 return readNullableTypedVector(val, &Parcel::readChar);
1777}
1778
Casey Dahlin451ff582015-10-19 18:12:18 -07001779status_t Parcel::readCharVector(std::vector<char16_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001780 return readTypedVector(val, &Parcel::readChar);
Casey Dahlin451ff582015-10-19 18:12:18 -07001781}
1782
Casey Dahlinb9872622015-11-25 15:09:45 -08001783status_t Parcel::readString16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001784 std::optional<std::vector<std::optional<String16>>>* val) const {
1785 return readNullableTypedVector(val, &Parcel::readString16);
1786}
1787
1788status_t Parcel::readString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -08001789 std::unique_ptr<std::vector<std::unique_ptr<String16>>>* val) const {
1790 return readNullableTypedVector(val, &Parcel::readString16);
1791}
1792
Casey Dahlin451ff582015-10-19 18:12:18 -07001793status_t Parcel::readString16Vector(std::vector<String16>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001794 return readTypedVector(val, &Parcel::readString16);
Casey Dahlin451ff582015-10-19 18:12:18 -07001795}
1796
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001797status_t Parcel::readUtf8VectorFromUtf16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001798 std::optional<std::vector<std::optional<std::string>>>* val) const {
1799 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1800}
1801
1802status_t Parcel::readUtf8VectorFromUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001803 std::unique_ptr<std::vector<std::unique_ptr<std::string>>>* val) const {
1804 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1805}
1806
1807status_t Parcel::readUtf8VectorFromUtf16Vector(std::vector<std::string>* val) const {
1808 return readTypedVector(val, &Parcel::readUtf8FromUtf16);
1809}
Casey Dahlin451ff582015-10-19 18:12:18 -07001810
Andreas Huber84a6d042009-08-17 13:33:27 -07001811status_t Parcel::readInt32(int32_t *pArg) const
1812{
1813 return readAligned(pArg);
1814}
1815
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001816int32_t Parcel::readInt32() const
1817{
Andreas Huber84a6d042009-08-17 13:33:27 -07001818 return readAligned<int32_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001819}
1820
Dan Stoza41a0f2f2014-12-01 10:01:10 -08001821status_t Parcel::readUint32(uint32_t *pArg) const
1822{
1823 return readAligned(pArg);
1824}
1825
1826uint32_t Parcel::readUint32() const
1827{
1828 return readAligned<uint32_t>();
1829}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001830
1831status_t Parcel::readInt64(int64_t *pArg) const
1832{
Andreas Huber84a6d042009-08-17 13:33:27 -07001833 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001834}
1835
1836
1837int64_t Parcel::readInt64() const
1838{
Andreas Huber84a6d042009-08-17 13:33:27 -07001839 return readAligned<int64_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001840}
1841
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001842status_t Parcel::readUint64(uint64_t *pArg) const
1843{
1844 return readAligned(pArg);
1845}
1846
1847uint64_t Parcel::readUint64() const
1848{
1849 return readAligned<uint64_t>();
1850}
1851
Serban Constantinescuf683e012013-11-05 16:53:55 +00001852status_t Parcel::readPointer(uintptr_t *pArg) const
1853{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001854 status_t ret;
1855 binder_uintptr_t ptr;
1856 ret = readAligned(&ptr);
1857 if (!ret)
1858 *pArg = ptr;
1859 return ret;
Serban Constantinescuf683e012013-11-05 16:53:55 +00001860}
1861
1862uintptr_t Parcel::readPointer() const
1863{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001864 return readAligned<binder_uintptr_t>();
Serban Constantinescuf683e012013-11-05 16:53:55 +00001865}
1866
1867
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001868status_t Parcel::readFloat(float *pArg) const
1869{
Andreas Huber84a6d042009-08-17 13:33:27 -07001870 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001871}
1872
1873
1874float Parcel::readFloat() const
1875{
Andreas Huber84a6d042009-08-17 13:33:27 -07001876 return readAligned<float>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001877}
1878
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001879#if defined(__mips__) && defined(__mips_hard_float)
1880
1881status_t Parcel::readDouble(double *pArg) const
1882{
1883 union {
1884 double d;
1885 unsigned long long ll;
1886 } u;
Narayan Kamath2c68d382014-06-04 15:04:29 +01001887 u.d = 0;
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001888 status_t status;
1889 status = readAligned(&u.ll);
1890 *pArg = u.d;
1891 return status;
1892}
1893
1894double Parcel::readDouble() const
1895{
1896 union {
1897 double d;
1898 unsigned long long ll;
1899 } u;
1900 u.ll = readAligned<unsigned long long>();
1901 return u.d;
1902}
1903
1904#else
1905
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001906status_t Parcel::readDouble(double *pArg) const
1907{
Andreas Huber84a6d042009-08-17 13:33:27 -07001908 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001909}
1910
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001911double Parcel::readDouble() const
1912{
Andreas Huber84a6d042009-08-17 13:33:27 -07001913 return readAligned<double>();
1914}
1915
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001916#endif
1917
Casey Dahlind6848f52015-10-15 15:44:59 -07001918status_t Parcel::readBool(bool *pArg) const
1919{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001920 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001921 status_t ret = readInt32(&tmp);
1922 *pArg = (tmp != 0);
1923 return ret;
1924}
1925
1926bool Parcel::readBool() const
1927{
1928 return readInt32() != 0;
1929}
1930
1931status_t Parcel::readChar(char16_t *pArg) const
1932{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001933 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001934 status_t ret = readInt32(&tmp);
1935 *pArg = char16_t(tmp);
1936 return ret;
1937}
1938
1939char16_t Parcel::readChar() const
1940{
1941 return char16_t(readInt32());
1942}
1943
1944status_t Parcel::readByte(int8_t *pArg) const
1945{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001946 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001947 status_t ret = readInt32(&tmp);
1948 *pArg = int8_t(tmp);
1949 return ret;
1950}
1951
1952int8_t Parcel::readByte() const
1953{
1954 return int8_t(readInt32());
1955}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001956
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001957status_t Parcel::readUtf8FromUtf16(std::string* str) const {
1958 size_t utf16Size = 0;
1959 const char16_t* src = readString16Inplace(&utf16Size);
1960 if (!src) {
1961 return UNEXPECTED_NULL;
1962 }
1963
1964 // Save ourselves the trouble, we're done.
1965 if (utf16Size == 0u) {
1966 str->clear();
1967 return NO_ERROR;
1968 }
1969
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001970 // Allow for closing '\0'
1971 ssize_t utf8Size = utf16_to_utf8_length(src, utf16Size) + 1;
1972 if (utf8Size < 1) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001973 return BAD_VALUE;
1974 }
1975 // Note that while it is probably safe to assume string::resize keeps a
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001976 // spare byte around for the trailing null, we still pass the size including the trailing null
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001977 str->resize(utf8Size);
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001978 utf16_to_utf8(src, utf16Size, &((*str)[0]), utf8Size);
1979 str->resize(utf8Size - 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001980 return NO_ERROR;
1981}
1982
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001983status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const {
1984 const int32_t start = dataPosition();
1985 int32_t size;
1986 status_t status = readInt32(&size);
1987 str->reset();
1988
1989 if (status != OK || size < 0) {
1990 return status;
1991 }
1992
1993 setDataPosition(start);
1994 str->emplace();
1995 return readUtf8FromUtf16(&**str);
1996}
1997
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001998status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const {
1999 const int32_t start = dataPosition();
2000 int32_t size;
2001 status_t status = readInt32(&size);
2002 str->reset();
2003
2004 if (status != OK || size < 0) {
2005 return status;
2006 }
2007
2008 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002009 str->reset(new (std::nothrow) std::string());
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002010 return readUtf8FromUtf16(str->get());
2011}
2012
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002013const char* Parcel::readCString() const
2014{
Steven Morelandd0d4b582019-05-17 13:14:06 -07002015 if (mDataPos < mDataSize) {
2016 const size_t avail = mDataSize-mDataPos;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002017 const char* str = reinterpret_cast<const char*>(mData+mDataPos);
2018 // is the string's trailing NUL within the parcel's valid bounds?
2019 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
2020 if (eos) {
2021 const size_t len = eos - str;
Nick Kralevichb6b14232015-04-02 09:36:02 -07002022 mDataPos += pad_size(len+1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002023 ALOGV("readCString Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002024 return str;
2025 }
2026 }
Yi Kong91635562018-06-07 14:38:36 -07002027 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002028}
2029
2030String8 Parcel::readString8() const
2031{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002032 size_t len;
2033 const char* str = readString8Inplace(&len);
2034 if (str) return String8(str, len);
2035 ALOGE("Reading a NULL string not supported here.");
2036 return String8();
Roshan Pius87b64d22016-07-18 12:51:02 -07002037}
2038
2039status_t Parcel::readString8(String8* pArg) const
2040{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002041 size_t len;
2042 const char* str = readString8Inplace(&len);
2043 if (str) {
2044 pArg->setTo(str, len);
2045 return 0;
2046 } else {
Roshan Pius87b64d22016-07-18 12:51:02 -07002047 *pArg = String8();
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002048 return UNEXPECTED_NULL;
Roshan Pius87b64d22016-07-18 12:51:02 -07002049 }
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002050}
2051
2052const char* Parcel::readString8Inplace(size_t* outLen) const
2053{
2054 int32_t size = readInt32();
2055 // watch for potential int overflow from size+1
2056 if (size >= 0 && size < INT32_MAX) {
2057 *outLen = size;
2058 const char* str = (const char*)readInplace(size+1);
2059 if (str != nullptr) {
2060 return str;
2061 }
Roshan Pius87b64d22016-07-18 12:51:02 -07002062 }
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002063 *outLen = 0;
2064 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002065}
2066
2067String16 Parcel::readString16() const
2068{
2069 size_t len;
2070 const char16_t* str = readString16Inplace(&len);
2071 if (str) return String16(str, len);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002072 ALOGE("Reading a NULL string not supported here.");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002073 return String16();
2074}
2075
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09002076status_t Parcel::readString16(std::optional<String16>* pArg) const
2077{
2078 const int32_t start = dataPosition();
2079 int32_t size;
2080 status_t status = readInt32(&size);
2081 pArg->reset();
2082
2083 if (status != OK || size < 0) {
2084 return status;
2085 }
2086
2087 setDataPosition(start);
2088 pArg->emplace();
2089
2090 status = readString16(&**pArg);
2091
2092 if (status != OK) {
2093 pArg->reset();
2094 }
2095
2096 return status;
2097}
2098
Casey Dahlinb9872622015-11-25 15:09:45 -08002099status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const
2100{
2101 const int32_t start = dataPosition();
2102 int32_t size;
2103 status_t status = readInt32(&size);
2104 pArg->reset();
2105
2106 if (status != OK || size < 0) {
2107 return status;
2108 }
2109
2110 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002111 pArg->reset(new (std::nothrow) String16());
Casey Dahlinb9872622015-11-25 15:09:45 -08002112
2113 status = readString16(pArg->get());
2114
2115 if (status != OK) {
2116 pArg->reset();
2117 }
2118
2119 return status;
2120}
2121
Casey Dahlin451ff582015-10-19 18:12:18 -07002122status_t Parcel::readString16(String16* pArg) const
2123{
2124 size_t len;
2125 const char16_t* str = readString16Inplace(&len);
2126 if (str) {
Casey Dahlin1515ea12015-10-20 16:26:23 -07002127 pArg->setTo(str, len);
Casey Dahlin451ff582015-10-19 18:12:18 -07002128 return 0;
2129 } else {
2130 *pArg = String16();
Christopher Wiley4db672d2015-11-10 09:44:30 -08002131 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07002132 }
2133}
2134
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002135const char16_t* Parcel::readString16Inplace(size_t* outLen) const
2136{
2137 int32_t size = readInt32();
2138 // watch for potential int overflow from size+1
2139 if (size >= 0 && size < INT32_MAX) {
2140 *outLen = size;
2141 const char16_t* str = (const char16_t*)readInplace((size+1)*sizeof(char16_t));
Yi Kong91635562018-06-07 14:38:36 -07002142 if (str != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002143 return str;
2144 }
2145 }
2146 *outLen = 0;
Yi Kong91635562018-06-07 14:38:36 -07002147 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002148}
2149
Casey Dahlinf0c13772015-10-27 18:33:56 -07002150status_t Parcel::readStrongBinder(sp<IBinder>* val) const
2151{
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002152 status_t status = readNullableStrongBinder(val);
2153 if (status == OK && !val->get()) {
2154 status = UNEXPECTED_NULL;
2155 }
2156 return status;
2157}
2158
2159status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const
2160{
Steven Morelanda86a3562019-08-01 23:28:34 +00002161 return unflattenBinder(val);
Casey Dahlinf0c13772015-10-27 18:33:56 -07002162}
2163
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002164sp<IBinder> Parcel::readStrongBinder() const
2165{
2166 sp<IBinder> val;
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002167 // Note that a lot of code in Android reads binders by hand with this
2168 // method, and that code has historically been ok with getting nullptr
2169 // back (while ignoring error codes).
2170 readNullableStrongBinder(&val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002171 return val;
2172}
2173
Christopher Wiley97f048d2015-11-19 06:49:05 -08002174status_t Parcel::readParcelable(Parcelable* parcelable) const {
2175 int32_t have_parcelable = 0;
2176 status_t status = readInt32(&have_parcelable);
2177 if (status != OK) {
2178 return status;
2179 }
2180 if (!have_parcelable) {
2181 return UNEXPECTED_NULL;
2182 }
2183 return parcelable->readFromParcel(this);
2184}
2185
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002186int32_t Parcel::readExceptionCode() const
2187{
Christopher Wiley09eb7492015-11-09 15:06:15 -08002188 binder::Status status;
2189 status.readFromParcel(*this);
2190 return status.exceptionCode();
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002191}
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002192
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002193native_handle* Parcel::readNativeHandle() const
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002194{
2195 int numFds, numInts;
2196 status_t err;
2197 err = readInt32(&numFds);
Yi Kong91635562018-06-07 14:38:36 -07002198 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002199 err = readInt32(&numInts);
Yi Kong91635562018-06-07 14:38:36 -07002200 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002201
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002202 native_handle* h = native_handle_create(numFds, numInts);
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002203 if (!h) {
Yi Kong91635562018-06-07 14:38:36 -07002204 return nullptr;
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002205 }
2206
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002207 for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002208 h->data[i] = fcntl(readFileDescriptor(), F_DUPFD_CLOEXEC, 0);
Marco Nelissen1de79662016-04-26 08:44:09 -07002209 if (h->data[i] < 0) {
2210 for (int j = 0; j < i; j++) {
2211 close(h->data[j]);
2212 }
2213 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002214 return nullptr;
Marco Nelissen1de79662016-04-26 08:44:09 -07002215 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002216 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002217 err = read(h->data + numFds, sizeof(int)*numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002218 if (err != NO_ERROR) {
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002219 native_handle_close(h);
2220 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002221 h = nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002222 }
2223 return h;
2224}
2225
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002226int Parcel::readFileDescriptor() const
2227{
2228 const flat_binder_object* flat = readObject(true);
Casey Dahlin06673e32015-11-23 13:24:23 -08002229
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002230 if (flat && flat->hdr.type == BINDER_TYPE_FD) {
Casey Dahlin06673e32015-11-23 13:24:23 -08002231 return flat->handle;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002232 }
Casey Dahlin06673e32015-11-23 13:24:23 -08002233
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002234 return BAD_TYPE;
2235}
2236
Dianne Hackborn1941a402016-08-29 12:30:43 -07002237int Parcel::readParcelFileDescriptor() const
2238{
2239 int32_t hasComm = readInt32();
2240 int fd = readFileDescriptor();
2241 if (hasComm != 0) {
Steven Morelandb73806a2018-11-12 19:35:47 -08002242 // detach (owned by the binder driver)
2243 int comm = readFileDescriptor();
2244
2245 // warning: this must be kept in sync with:
2246 // frameworks/base/core/java/android/os/ParcelFileDescriptor.java
2247 enum ParcelFileDescriptorStatus {
2248 DETACHED = 2,
2249 };
2250
2251#if BYTE_ORDER == BIG_ENDIAN
2252 const int32_t message = ParcelFileDescriptorStatus::DETACHED;
2253#endif
2254#if BYTE_ORDER == LITTLE_ENDIAN
2255 const int32_t message = __builtin_bswap32(ParcelFileDescriptorStatus::DETACHED);
2256#endif
2257
2258 ssize_t written = TEMP_FAILURE_RETRY(
2259 ::write(comm, &message, sizeof(message)));
2260
2261 if (written == -1 || written != sizeof(message)) {
2262 ALOGW("Failed to detach ParcelFileDescriptor written: %zd err: %s",
2263 written, strerror(errno));
2264 return BAD_TYPE;
2265 }
Dianne Hackborn1941a402016-08-29 12:30:43 -07002266 }
2267 return fd;
2268}
2269
Christopher Wiley2cf19952016-04-11 11:09:37 -07002270status_t Parcel::readUniqueFileDescriptor(base::unique_fd* val) const
Casey Dahlin06673e32015-11-23 13:24:23 -08002271{
2272 int got = readFileDescriptor();
2273
2274 if (got == BAD_TYPE) {
2275 return BAD_TYPE;
2276 }
2277
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002278 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
Casey Dahlin06673e32015-11-23 13:24:23 -08002279
2280 if (val->get() < 0) {
2281 return BAD_VALUE;
2282 }
2283
2284 return OK;
2285}
2286
Ryo Hashimotobf551892018-05-31 16:58:35 +09002287status_t Parcel::readUniqueParcelFileDescriptor(base::unique_fd* val) const
2288{
2289 int got = readParcelFileDescriptor();
2290
2291 if (got == BAD_TYPE) {
2292 return BAD_TYPE;
2293 }
2294
2295 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
2296
2297 if (val->get() < 0) {
2298 return BAD_VALUE;
2299 }
2300
2301 return OK;
2302}
Casey Dahlin06673e32015-11-23 13:24:23 -08002303
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09002304status_t Parcel::readUniqueFileDescriptorVector(std::optional<std::vector<base::unique_fd>>* val) const {
2305 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2306}
2307
Christopher Wiley2cf19952016-04-11 11:09:37 -07002308status_t Parcel::readUniqueFileDescriptorVector(std::unique_ptr<std::vector<base::unique_fd>>* val) const {
Casey Dahlinb9872622015-11-25 15:09:45 -08002309 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2310}
2311
Christopher Wiley2cf19952016-04-11 11:09:37 -07002312status_t Parcel::readUniqueFileDescriptorVector(std::vector<base::unique_fd>* val) const {
Casey Dahlin06673e32015-11-23 13:24:23 -08002313 return readTypedVector(val, &Parcel::readUniqueFileDescriptor);
2314}
2315
Jeff Brown5707dbf2011-09-23 21:17:56 -07002316status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
2317{
Jeff Brown13b16042014-11-11 16:44:25 -08002318 int32_t blobType;
2319 status_t status = readInt32(&blobType);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002320 if (status) return status;
2321
Jeff Brown13b16042014-11-11 16:44:25 -08002322 if (blobType == BLOB_INPLACE) {
Steve Block6807e592011-10-20 11:56:00 +01002323 ALOGV("readBlob: read in place");
Jeff Brown5707dbf2011-09-23 21:17:56 -07002324 const void* ptr = readInplace(len);
2325 if (!ptr) return BAD_VALUE;
2326
Jeff Brown13b16042014-11-11 16:44:25 -08002327 outBlob->init(-1, const_cast<void*>(ptr), len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002328 return NO_ERROR;
2329 }
2330
Steve Block6807e592011-10-20 11:56:00 +01002331 ALOGV("readBlob: read from ashmem");
Jeff Brown13b16042014-11-11 16:44:25 -08002332 bool isMutable = (blobType == BLOB_ASHMEM_MUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002333 int fd = readFileDescriptor();
2334 if (fd == int(BAD_TYPE)) return BAD_VALUE;
2335
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002336 if (!ashmem_valid(fd)) {
2337 ALOGE("invalid fd");
2338 return BAD_VALUE;
2339 }
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002340 int size = ashmem_get_size_region(fd);
2341 if (size < 0 || size_t(size) < len) {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002342 ALOGE("request size %zu does not match fd size %d", len, size);
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002343 return BAD_VALUE;
2344 }
Yi Kong91635562018-06-07 14:38:36 -07002345 void* ptr = ::mmap(nullptr, len, isMutable ? PROT_READ | PROT_WRITE : PROT_READ,
Jeff Brown13b16042014-11-11 16:44:25 -08002346 MAP_SHARED, fd, 0);
Narayan Kamath9ea09752014-10-08 17:35:45 +01002347 if (ptr == MAP_FAILED) return NO_MEMORY;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002348
Jeff Brown13b16042014-11-11 16:44:25 -08002349 outBlob->init(fd, ptr, len, isMutable);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002350 return NO_ERROR;
2351}
2352
Mathias Agopiane1424282013-07-29 21:24:40 -07002353status_t Parcel::read(FlattenableHelperInterface& val) const
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002354{
2355 // size
2356 const size_t len = this->readInt32();
2357 const size_t fd_count = this->readInt32();
2358
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002359 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07002360 // don't accept size_t values which may have come from an
2361 // inadvertent conversion from a negative int.
2362 return BAD_VALUE;
2363 }
2364
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002365 // payload
Nick Kralevichb6b14232015-04-02 09:36:02 -07002366 void const* const buf = this->readInplace(pad_size(len));
Yi Kong91635562018-06-07 14:38:36 -07002367 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002368 return BAD_VALUE;
2369
Yi Kong91635562018-06-07 14:38:36 -07002370 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002371 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002372 fds = new (std::nothrow) int[fd_count];
2373 if (fds == nullptr) {
2374 ALOGE("read: failed to allocate requested %zu fds", fd_count);
2375 return BAD_VALUE;
2376 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002377 }
2378
2379 status_t err = NO_ERROR;
2380 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
Fabien Sanglardd84ff312016-10-21 10:58:26 -07002381 int fd = this->readFileDescriptor();
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002382 if (fd < 0 || ((fds[i] = fcntl(fd, F_DUPFD_CLOEXEC, 0)) < 0)) {
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002383 err = BAD_VALUE;
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002384 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 -07002385 i, fds[i], fd_count, strerror(fd < 0 ? -fd : errno));
2386 // Close all the file descriptors that were dup-ed.
2387 for (size_t j=0; j<i ;j++) {
2388 close(fds[j]);
2389 }
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002390 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002391 }
2392
2393 if (err == NO_ERROR) {
2394 err = val.unflatten(buf, len, fds, fd_count);
2395 }
2396
2397 if (fd_count) {
2398 delete [] fds;
2399 }
2400
2401 return err;
2402}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002403const flat_binder_object* Parcel::readObject(bool nullMetaData) const
2404{
2405 const size_t DPOS = mDataPos;
2406 if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
2407 const flat_binder_object* obj
2408 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
2409 mDataPos = DPOS + sizeof(flat_binder_object);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002410 if (!nullMetaData && (obj->cookie == 0 && obj->binder == 0)) {
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002411 // When transferring a NULL object, we don't write it into
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002412 // the object list, so we don't want to check for it when
2413 // reading.
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002414 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002415 return obj;
2416 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002417
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002418 // Ensure that this object is valid...
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002419 binder_size_t* const OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002420 const size_t N = mObjectsSize;
2421 size_t opos = mNextObjectHint;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002422
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002423 if (N > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002424 ALOGV("Parcel %p looking for obj at %zu, hint=%zu",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002425 this, DPOS, opos);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002426
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002427 // Start at the current hint position, looking for an object at
2428 // the current data position.
2429 if (opos < N) {
2430 while (opos < (N-1) && OBJS[opos] < DPOS) {
2431 opos++;
2432 }
2433 } else {
2434 opos = N-1;
2435 }
2436 if (OBJS[opos] == DPOS) {
2437 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002438 ALOGV("Parcel %p found obj %zu at index %zu with forward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002439 this, DPOS, opos);
2440 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002441 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002442 return obj;
2443 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002444
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002445 // Look backwards for it...
2446 while (opos > 0 && OBJS[opos] > DPOS) {
2447 opos--;
2448 }
2449 if (OBJS[opos] == DPOS) {
2450 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002451 ALOGV("Parcel %p found obj %zu at index %zu with backward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002452 this, DPOS, opos);
2453 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002454 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002455 return obj;
2456 }
2457 }
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002458 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 -07002459 this, DPOS);
2460 }
Yi Kong91635562018-06-07 14:38:36 -07002461 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002462}
2463
2464void Parcel::closeFileDescriptors()
2465{
2466 size_t i = mObjectsSize;
2467 if (i > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002468 //ALOGI("Closing file descriptors for %zu objects...", i);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002469 }
2470 while (i > 0) {
2471 i--;
2472 const flat_binder_object* flat
2473 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002474 if (flat->hdr.type == BINDER_TYPE_FD) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002475 //ALOGI("Closing fd: %ld", flat->handle);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002476 close(flat->handle);
2477 }
2478 }
2479}
2480
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002481uintptr_t Parcel::ipcData() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002482{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002483 return reinterpret_cast<uintptr_t>(mData);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002484}
2485
2486size_t Parcel::ipcDataSize() const
2487{
2488 return (mDataSize > mDataPos ? mDataSize : mDataPos);
2489}
2490
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002491uintptr_t Parcel::ipcObjects() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002492{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002493 return reinterpret_cast<uintptr_t>(mObjects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002494}
2495
2496size_t Parcel::ipcObjectsCount() const
2497{
2498 return mObjectsSize;
2499}
2500
2501void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,
Steven Moreland161fe122020-11-12 23:16:47 +00002502 const binder_size_t* objects, size_t objectsCount, release_func relFunc)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002503{
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002504 binder_size_t minOffset = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002505 freeDataNoInit();
2506 mError = NO_ERROR;
2507 mData = const_cast<uint8_t*>(data);
2508 mDataSize = mDataCapacity = dataSize;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002509 //ALOGI("setDataReference Setting data size of %p to %lu (pid=%d)", this, mDataSize, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002510 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002511 ALOGV("setDataReference Setting data pos of %p to %zu", this, mDataPos);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002512 mObjects = const_cast<binder_size_t*>(objects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002513 mObjectsSize = mObjectsCapacity = objectsCount;
2514 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002515 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002516 mOwner = relFunc;
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002517 for (size_t i = 0; i < mObjectsSize; i++) {
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002518 binder_size_t offset = mObjects[i];
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002519 if (offset < minOffset) {
Dan Albert3bdc5b82014-11-20 11:50:23 -08002520 ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002521 __func__, (uint64_t)offset, (uint64_t)minOffset);
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002522 mObjectsSize = 0;
2523 break;
2524 }
Martijn Coenen82c75312019-07-24 15:18:30 +02002525 const flat_binder_object* flat
2526 = reinterpret_cast<const flat_binder_object*>(mData + offset);
2527 uint32_t type = flat->hdr.type;
2528 if (!(type == BINDER_TYPE_BINDER || type == BINDER_TYPE_HANDLE ||
2529 type == BINDER_TYPE_FD)) {
2530 // We should never receive other types (eg BINDER_TYPE_FDA) as long as we don't support
2531 // them in libbinder. If we do receive them, it probably means a kernel bug; try to
2532 // recover gracefully by clearing out the objects, and releasing the objects we do
2533 // know about.
2534 android_errorWriteLog(0x534e4554, "135930648");
2535 ALOGE("%s: unsupported type object (%" PRIu32 ") at offset %" PRIu64 "\n",
2536 __func__, type, (uint64_t)offset);
2537 releaseObjects();
2538 mObjectsSize = 0;
2539 break;
2540 }
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002541 minOffset = offset + sizeof(flat_binder_object);
2542 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002543 scanForFds();
2544}
2545
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002546void Parcel::print(TextOutput& to, uint32_t /*flags*/) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002547{
2548 to << "Parcel(";
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002549
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002550 if (errorCheck() != NO_ERROR) {
2551 const status_t err = errorCheck();
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002552 to << "Error: " << (void*)(intptr_t)err << " \"" << strerror(-err) << "\"";
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002553 } else if (dataSize() > 0) {
2554 const uint8_t* DATA = data();
2555 to << indent << HexDump(DATA, dataSize()) << dedent;
Steven Moreland8bd01352019-07-15 16:36:14 -07002556 const binder_size_t* OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002557 const size_t N = objectsCount();
2558 for (size_t i=0; i<N; i++) {
2559 const flat_binder_object* flat
2560 = reinterpret_cast<const flat_binder_object*>(DATA+OBJS[i]);
2561 to << endl << "Object #" << i << " @ " << (void*)OBJS[i] << ": "
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002562 << TypeCode(flat->hdr.type & 0x7f7f7f00)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002563 << " = " << flat->binder;
2564 }
2565 } else {
2566 to << "NULL";
2567 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002568
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002569 to << ")";
2570}
2571
2572void Parcel::releaseObjects()
2573{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002574 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002575 if (i == 0) {
2576 return;
2577 }
2578 sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002579 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002580 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002581 while (i > 0) {
2582 i--;
2583 const flat_binder_object* flat
2584 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002585 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002586 }
2587}
2588
2589void Parcel::acquireObjects()
2590{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002591 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002592 if (i == 0) {
2593 return;
2594 }
2595 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002596 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002597 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002598 while (i > 0) {
2599 i--;
2600 const flat_binder_object* flat
2601 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002602 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002603 }
2604}
2605
2606void Parcel::freeData()
2607{
2608 freeDataNoInit();
2609 initState();
2610}
2611
2612void Parcel::freeDataNoInit()
2613{
2614 if (mOwner) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002615 LOG_ALLOC("Parcel %p: freeing other owner data", this);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002616 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
Steven Moreland161fe122020-11-12 23:16:47 +00002617 mOwner(this, mData, mDataSize, mObjects, mObjectsSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002618 } else {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002619 LOG_ALLOC("Parcel %p: freeing allocated data", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002620 releaseObjects();
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002621 if (mData) {
2622 LOG_ALLOC("Parcel %p: freeing with %zu capacity", this, mDataCapacity);
Jeff Sharkey8994c182020-09-11 12:07:10 -06002623 gParcelGlobalAllocSize -= mDataCapacity;
2624 gParcelGlobalAllocCount--;
Steven Morelandf183fdd2020-10-27 00:12:12 +00002625 if (mDeallocZero) {
2626 zeroMemory(mData, mDataSize);
2627 }
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002628 free(mData);
2629 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002630 if (mObjects) free(mObjects);
2631 }
2632}
2633
2634status_t Parcel::growData(size_t len)
2635{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002636 if (len > INT32_MAX) {
2637 // don't accept size_t values which may have come from an
2638 // inadvertent conversion from a negative int.
2639 return BAD_VALUE;
2640 }
2641
Martijn Coenen93fe5182020-01-22 10:46:25 +01002642 if (len > SIZE_MAX - mDataSize) return NO_MEMORY; // overflow
2643 if (mDataSize + len > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002644 size_t newSize = ((mDataSize+len)*3)/2;
2645 return (newSize <= mDataSize)
2646 ? (status_t) NO_MEMORY
Steven Moreland042ae822020-05-27 17:45:17 +00002647 : continueWrite(std::max(newSize, (size_t) 128));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002648}
2649
Steven Morelandf183fdd2020-10-27 00:12:12 +00002650static uint8_t* reallocZeroFree(uint8_t* data, size_t oldCapacity, size_t newCapacity, bool zero) {
2651 if (!zero) {
2652 return (uint8_t*)realloc(data, newCapacity);
2653 }
2654 uint8_t* newData = (uint8_t*)malloc(newCapacity);
2655 if (!newData) {
2656 return nullptr;
2657 }
2658
2659 memcpy(newData, data, std::min(oldCapacity, newCapacity));
2660 zeroMemory(data, oldCapacity);
2661 free(data);
2662 return newData;
2663}
2664
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002665status_t Parcel::restartWrite(size_t desired)
2666{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002667 if (desired > INT32_MAX) {
2668 // don't accept size_t values which may have come from an
2669 // inadvertent conversion from a negative int.
2670 return BAD_VALUE;
2671 }
2672
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002673 if (mOwner) {
2674 freeData();
2675 return continueWrite(desired);
2676 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002677
Steven Morelandf183fdd2020-10-27 00:12:12 +00002678 uint8_t* data = reallocZeroFree(mData, mDataCapacity, desired, mDeallocZero);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002679 if (!data && desired > mDataCapacity) {
2680 mError = NO_MEMORY;
2681 return NO_MEMORY;
2682 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002683
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002684 releaseObjects();
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002685
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002686 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002687 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
Jeff Sharkey8994c182020-09-11 12:07:10 -06002688 if (mDataCapacity > desired) {
2689 gParcelGlobalAllocSize -= (mDataCapacity - desired);
2690 } else {
2691 gParcelGlobalAllocSize += (desired - mDataCapacity);
2692 }
2693
Colin Cross83ec65e2015-12-08 17:15:50 -08002694 if (!mData) {
2695 gParcelGlobalAllocCount++;
2696 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002697 mData = data;
2698 mDataCapacity = desired;
2699 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002700
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002701 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002702 ALOGV("restartWrite Setting data size of %p to %zu", this, mDataSize);
2703 ALOGV("restartWrite Setting data pos of %p to %zu", this, mDataPos);
2704
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002705 free(mObjects);
Yi Kong91635562018-06-07 14:38:36 -07002706 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002707 mObjectsSize = mObjectsCapacity = 0;
2708 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002709 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002710 mHasFds = false;
2711 mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -04002712 mAllowFds = true;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002713
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002714 return NO_ERROR;
2715}
2716
2717status_t Parcel::continueWrite(size_t desired)
2718{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002719 if (desired > INT32_MAX) {
2720 // don't accept size_t values which may have come from an
2721 // inadvertent conversion from a negative int.
2722 return BAD_VALUE;
2723 }
2724
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002725 // If shrinking, first adjust for any objects that appear
2726 // after the new data size.
2727 size_t objectsSize = mObjectsSize;
2728 if (desired < mDataSize) {
2729 if (desired == 0) {
2730 objectsSize = 0;
2731 } else {
2732 while (objectsSize > 0) {
Michael Wachenschwanza6541632017-05-18 22:08:32 +00002733 if (mObjects[objectsSize-1] < desired)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002734 break;
2735 objectsSize--;
2736 }
2737 }
2738 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002739
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002740 if (mOwner) {
2741 // If the size is going to zero, just release the owner's data.
2742 if (desired == 0) {
2743 freeData();
2744 return NO_ERROR;
2745 }
2746
2747 // If there is a different owner, we need to take
2748 // posession.
2749 uint8_t* data = (uint8_t*)malloc(desired);
2750 if (!data) {
2751 mError = NO_MEMORY;
2752 return NO_MEMORY;
2753 }
Yi Kong91635562018-06-07 14:38:36 -07002754 binder_size_t* objects = nullptr;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002755
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002756 if (objectsSize) {
Nick Kraleviche9881a32015-04-28 16:21:30 -07002757 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002758 if (!objects) {
Hyejin Kim3f727c02013-03-09 11:28:54 +09002759 free(data);
2760
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002761 mError = NO_MEMORY;
2762 return NO_MEMORY;
2763 }
2764
2765 // Little hack to only acquire references on objects
2766 // we will be keeping.
2767 size_t oldObjectsSize = mObjectsSize;
2768 mObjectsSize = objectsSize;
2769 acquireObjects();
2770 mObjectsSize = oldObjectsSize;
2771 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002772
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002773 if (mData) {
2774 memcpy(data, mData, mDataSize < desired ? mDataSize : desired);
2775 }
2776 if (objects && mObjects) {
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002777 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002778 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002779 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
Steven Moreland161fe122020-11-12 23:16:47 +00002780 mOwner(this, mData, mDataSize, mObjects, mObjectsSize);
Yi Kong91635562018-06-07 14:38:36 -07002781 mOwner = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002782
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002783 LOG_ALLOC("Parcel %p: taking ownership of %zu capacity", this, desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002784 gParcelGlobalAllocSize += desired;
2785 gParcelGlobalAllocCount++;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002786
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002787 mData = data;
2788 mObjects = objects;
2789 mDataSize = (mDataSize < desired) ? mDataSize : desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002790 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002791 mDataCapacity = desired;
2792 mObjectsSize = mObjectsCapacity = objectsSize;
2793 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002794 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002795
2796 } else if (mData) {
2797 if (objectsSize < mObjectsSize) {
2798 // Need to release refs on any objects we are dropping.
2799 const sp<ProcessState> proc(ProcessState::self());
2800 for (size_t i=objectsSize; i<mObjectsSize; i++) {
2801 const flat_binder_object* flat
2802 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002803 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002804 // will need to rescan because we may have lopped off the only FDs
2805 mFdsKnown = false;
2806 }
Adrian Rooscbf37262015-10-22 16:12:53 -07002807 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002808 }
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002809
2810 if (objectsSize == 0) {
2811 free(mObjects);
2812 mObjects = nullptr;
Michael Wachenschwanzdaf29a62019-10-15 11:49:22 -07002813 mObjectsCapacity = 0;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002814 } else {
2815 binder_size_t* objects =
2816 (binder_size_t*)realloc(mObjects, objectsSize*sizeof(binder_size_t));
2817 if (objects) {
2818 mObjects = objects;
Michael Wachenschwanzdaf29a62019-10-15 11:49:22 -07002819 mObjectsCapacity = objectsSize;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002820 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002821 }
2822 mObjectsSize = objectsSize;
2823 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002824 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002825 }
2826
2827 // We own the data, so we can just do a realloc().
2828 if (desired > mDataCapacity) {
Steven Morelandf183fdd2020-10-27 00:12:12 +00002829 uint8_t* data = reallocZeroFree(mData, mDataCapacity, desired, mDeallocZero);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002830 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002831 LOG_ALLOC("Parcel %p: continue from %zu to %zu capacity", this, mDataCapacity,
2832 desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002833 gParcelGlobalAllocSize += desired;
2834 gParcelGlobalAllocSize -= mDataCapacity;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002835 mData = data;
2836 mDataCapacity = desired;
Ganesh Mahendranade89892017-09-28 16:56:03 +08002837 } else {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002838 mError = NO_MEMORY;
2839 return NO_MEMORY;
2840 }
2841 } else {
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002842 if (mDataSize > desired) {
2843 mDataSize = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002844 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002845 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002846 if (mDataPos > desired) {
2847 mDataPos = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002848 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002849 }
2850 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002851
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002852 } else {
2853 // This is the first data. Easy!
2854 uint8_t* data = (uint8_t*)malloc(desired);
2855 if (!data) {
2856 mError = NO_MEMORY;
2857 return NO_MEMORY;
2858 }
Hyejin Kim3f727c02013-03-09 11:28:54 +09002859
Yi Kong91635562018-06-07 14:38:36 -07002860 if(!(mDataCapacity == 0 && mObjects == nullptr
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002861 && mObjectsCapacity == 0)) {
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002862 ALOGE("continueWrite: %zu/%p/%zu/%zu", mDataCapacity, mObjects, mObjectsCapacity, desired);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002863 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002864
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002865 LOG_ALLOC("Parcel %p: allocating with %zu capacity", this, desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002866 gParcelGlobalAllocSize += desired;
2867 gParcelGlobalAllocCount++;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002868
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002869 mData = data;
2870 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002871 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
2872 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002873 mDataCapacity = desired;
2874 }
2875
2876 return NO_ERROR;
2877}
2878
2879void Parcel::initState()
2880{
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002881 LOG_ALLOC("Parcel %p: initState", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002882 mError = NO_ERROR;
Yi Kong91635562018-06-07 14:38:36 -07002883 mData = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002884 mDataSize = 0;
2885 mDataCapacity = 0;
2886 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002887 ALOGV("initState Setting data size of %p to %zu", this, mDataSize);
2888 ALOGV("initState Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07002889 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002890 mObjectsSize = 0;
2891 mObjectsCapacity = 0;
2892 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002893 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002894 mHasFds = false;
2895 mFdsKnown = true;
Steven Moreland6e5a7752019-08-05 20:30:14 -07002896 mAllowFds = true;
Steven Morelandf183fdd2020-10-27 00:12:12 +00002897 mDeallocZero = false;
Yi Kong91635562018-06-07 14:38:36 -07002898 mOwner = nullptr;
Adrian Rooscbf37262015-10-22 16:12:53 -07002899 mOpenAshmemSize = 0;
Olivier Gaillarddc848a02019-01-30 17:10:44 +00002900 mWorkSourceRequestHeaderPosition = 0;
2901 mRequestHeaderPresent = false;
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002902
2903 // racing multiple init leads only to multiple identical write
2904 if (gMaxFds == 0) {
2905 struct rlimit result;
2906 if (!getrlimit(RLIMIT_NOFILE, &result)) {
2907 gMaxFds = (size_t)result.rlim_cur;
Christopher Tatebf14e942016-03-25 14:16:24 -07002908 //ALOGI("parcel fd limit set to %zu", gMaxFds);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002909 } else {
2910 ALOGW("Unable to getrlimit: %s", strerror(errno));
2911 gMaxFds = 1024;
2912 }
2913 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002914}
2915
2916void Parcel::scanForFds() const
2917{
2918 bool hasFds = false;
2919 for (size_t i=0; i<mObjectsSize; i++) {
2920 const flat_binder_object* flat
2921 = reinterpret_cast<const flat_binder_object*>(mData + mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002922 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002923 hasFds = true;
2924 break;
2925 }
2926 }
2927 mHasFds = hasFds;
2928 mFdsKnown = true;
2929}
2930
Dan Sandleraa5c2342015-04-10 10:08:45 -04002931size_t Parcel::getBlobAshmemSize() const
2932{
Adrian Roos6bb31142015-10-22 16:46:12 -07002933 // This used to return the size of all blobs that were written to ashmem, now we're returning
2934 // the ashmem currently referenced by this Parcel, which should be equivalent.
2935 // TODO: Remove method once ABI can be changed.
2936 return mOpenAshmemSize;
Dan Sandleraa5c2342015-04-10 10:08:45 -04002937}
2938
Adrian Rooscbf37262015-10-22 16:12:53 -07002939size_t Parcel::getOpenAshmemSize() const
2940{
2941 return mOpenAshmemSize;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002942}
2943
2944// --- Parcel::Blob ---
2945
2946Parcel::Blob::Blob() :
Yi Kong91635562018-06-07 14:38:36 -07002947 mFd(-1), mData(nullptr), mSize(0), mMutable(false) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002948}
2949
2950Parcel::Blob::~Blob() {
2951 release();
2952}
2953
2954void Parcel::Blob::release() {
Jeff Brown13b16042014-11-11 16:44:25 -08002955 if (mFd != -1 && mData) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002956 ::munmap(mData, mSize);
2957 }
2958 clear();
2959}
2960
Jeff Brown13b16042014-11-11 16:44:25 -08002961void Parcel::Blob::init(int fd, void* data, size_t size, bool isMutable) {
2962 mFd = fd;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002963 mData = data;
2964 mSize = size;
Jeff Brown13b16042014-11-11 16:44:25 -08002965 mMutable = isMutable;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002966}
2967
2968void Parcel::Blob::clear() {
Jeff Brown13b16042014-11-11 16:44:25 -08002969 mFd = -1;
Yi Kong91635562018-06-07 14:38:36 -07002970 mData = nullptr;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002971 mSize = 0;
Jeff Brown13b16042014-11-11 16:44:25 -08002972 mMutable = false;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002973}
2974
Steven Moreland61ff8492019-09-26 16:05:45 -07002975} // namespace android