blob: 27cf97c945c40f3cb6c8fd6d6f95ecac33274ac7 [file] [log] [blame]
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2005 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "Parcel"
18//#define LOG_NDEBUG 0
19
Mark Salyzynabed7f72016-01-27 08:02:48 -080020#include <errno.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080021#include <fcntl.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080022#include <inttypes.h>
Steven Morelandbf1915b2020-07-16 22:43:02 +000023#include <linux/sched.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080024#include <pthread.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080025#include <stdint.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <sys/mman.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080029#include <sys/stat.h>
30#include <sys/types.h>
Christopher Tatee4e0ae82016-03-24 16:03:44 -070031#include <sys/resource.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080032#include <unistd.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070033
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070034#include <binder/Binder.h>
35#include <binder/BpBinder.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080036#include <binder/IPCThreadState.h>
37#include <binder/Parcel.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070038#include <binder/ProcessState.h>
Steven Moreland6e5a7752019-08-05 20:30:14 -070039#include <binder/Stability.h>
Christopher Wiley09eb7492015-11-09 15:06:15 -080040#include <binder/Status.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070041#include <binder/TextOutput.h>
42
Mark Salyzynabed7f72016-01-27 08:02:48 -080043#include <cutils/ashmem.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080044#include <utils/Flattenable.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070045#include <utils/Log.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080046#include <utils/misc.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070047#include <utils/String8.h>
48#include <utils/String16.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070049
Mathias Agopian208059f2009-05-18 15:08:03 -070050#include <private/binder/binder_module.h>
Steven Morelanda4853cd2019-07-12 15:44:37 -070051#include "Static.h"
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070052
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070053#define LOG_REFS(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080054//#define LOG_REFS(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
Dianne Hackborn7e790af2014-11-11 12:22:53 -080055#define LOG_ALLOC(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080056//#define LOG_ALLOC(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070057
58// ---------------------------------------------------------------------------
59
Nick Kralevichb6b14232015-04-02 09:36:02 -070060// This macro should never be used at runtime, as a too large value
61// of s could cause an integer overflow. Instead, you should always
62// use the wrapper function pad_size()
63#define PAD_SIZE_UNSAFE(s) (((s)+3)&~3)
64
65static size_t pad_size(size_t s) {
Steven Moreland28723ae2019-04-01 18:52:30 -070066 if (s > (std::numeric_limits<size_t>::max() - 3)) {
Steven Moreland6adf33c2019-09-25 13:18:09 -070067 LOG_ALWAYS_FATAL("pad size too big %zu", s);
Nick Kralevichb6b14232015-04-02 09:36:02 -070068 }
69 return PAD_SIZE_UNSAFE(s);
70}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070071
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070072// Note: must be kept in sync with android/os/StrictMode.java's PENALTY_GATHER
Jeff Sharkey05827be2018-06-26 10:52:38 -060073#define STRICT_MODE_PENALTY_GATHER (1 << 31)
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070074
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070075namespace android {
76
Steven Moreland7b102262019-08-01 15:48:43 -070077// many things compile this into prebuilts on the stack
78static_assert(sizeof(Parcel) == 60 || sizeof(Parcel) == 120);
79
Jeff Sharkey8994c182020-09-11 12:07:10 -060080static std::atomic<size_t> gParcelGlobalAllocCount;
81static std::atomic<size_t> gParcelGlobalAllocSize;
Dianne Hackborna4cff882014-11-13 17:07:40 -080082
Christopher Tatee4e0ae82016-03-24 16:03:44 -070083static size_t gMaxFds = 0;
84
Jeff Brown13b16042014-11-11 16:44:25 -080085// Maximum size of a blob to transfer in-place.
86static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
87
88enum {
89 BLOB_INPLACE = 0,
90 BLOB_ASHMEM_IMMUTABLE = 1,
91 BLOB_ASHMEM_MUTABLE = 2,
92};
93
Steven Morelandb1c81202019-04-05 18:49:55 -070094static void acquire_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -070095 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070096{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -070097 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070098 case BINDER_TYPE_BINDER:
99 if (obj.binder) {
100 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800101 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700102 }
103 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700104 case BINDER_TYPE_HANDLE: {
105 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700106 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700107 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
108 b->incStrong(who);
109 }
110 return;
111 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700112 case BINDER_TYPE_FD: {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000113 if ((obj.cookie != 0) && (outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700114 // If we own an ashmem fd, keep track of how much memory it refers to.
115 int size = ashmem_get_size_region(obj.handle);
116 if (size > 0) {
117 *outAshmemSize += size;
Adrian Rooscbf37262015-10-22 16:12:53 -0700118 }
119 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700120 return;
121 }
122 }
123
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700124 ALOGD("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700125}
126
Adrian Roos6bb31142015-10-22 16:46:12 -0700127static void release_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -0700128 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700129{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700130 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700131 case BINDER_TYPE_BINDER:
132 if (obj.binder) {
133 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800134 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700135 }
136 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700137 case BINDER_TYPE_HANDLE: {
138 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700139 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700140 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
141 b->decStrong(who);
142 }
143 return;
144 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700145 case BINDER_TYPE_FD: {
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800146 if (obj.cookie != 0) { // owned
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000147 if ((outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700148 int size = ashmem_get_size_region(obj.handle);
149 if (size > 0) {
Tri Voaa6e1112019-01-29 13:23:46 -0800150 // ashmem size might have changed since last time it was accounted for, e.g.
151 // in acquire_object(). Value of *outAshmemSize is not critical since we are
152 // releasing the object anyway. Check for integer overflow condition.
153 *outAshmemSize -= std::min(*outAshmemSize, static_cast<size_t>(size));
Adrian Roos6bb31142015-10-22 16:46:12 -0700154 }
Adrian Roos6bb31142015-10-22 16:46:12 -0700155 }
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800156
157 close(obj.handle);
Adrian Rooscbf37262015-10-22 16:12:53 -0700158 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700159 return;
160 }
161 }
162
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700163 ALOGE("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700164}
165
Steven Morelanda86a3562019-08-01 23:28:34 +0000166status_t Parcel::finishFlattenBinder(
167 const sp<IBinder>& binder, const flat_binder_object& flat)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700168{
Steven Morelanda86a3562019-08-01 23:28:34 +0000169 status_t status = writeObject(flat, false);
170 if (status != OK) return status;
171
Steven Moreland6e5a7752019-08-05 20:30:14 -0700172 internal::Stability::tryMarkCompilationUnit(binder.get());
Steven Morelanda86a3562019-08-01 23:28:34 +0000173 return writeInt32(internal::Stability::get(binder.get()));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700174}
175
Steven Morelanda86a3562019-08-01 23:28:34 +0000176status_t Parcel::finishUnflattenBinder(
177 const sp<IBinder>& binder, sp<IBinder>* out) const
178{
179 int32_t stability;
180 status_t status = readInt32(&stability);
181 if (status != OK) return status;
182
Steven Moreland05929552019-07-31 17:51:25 -0700183 status = internal::Stability::set(binder.get(), stability, true /*log*/);
Steven Morelanda86a3562019-08-01 23:28:34 +0000184 if (status != OK) return status;
185
186 *out = binder;
187 return OK;
188}
189
Steven Morelandbf1915b2020-07-16 22:43:02 +0000190static constexpr inline int schedPolicyMask(int policy, int priority) {
191 return (priority & FLAT_BINDER_FLAG_PRIORITY_MASK) | ((policy & 3) << FLAT_BINDER_FLAG_SCHED_POLICY_SHIFT);
192}
193
Steven Morelanda86a3562019-08-01 23:28:34 +0000194status_t Parcel::flattenBinder(const sp<IBinder>& binder)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700195{
196 flat_binder_object obj;
Steven Morelandbf1915b2020-07-16 22:43:02 +0000197 obj.flags = FLAT_BINDER_FLAG_ACCEPTS_FDS;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700198
Steven Morelandbf1915b2020-07-16 22:43:02 +0000199 int schedBits = 0;
200 if (!IPCThreadState::self()->backgroundSchedulingDisabled()) {
201 schedBits = schedPolicyMask(SCHED_NORMAL, 19);
Martijn Coenen2b631742017-05-05 11:16:59 -0700202 }
203
Yi Kong91635562018-06-07 14:38:36 -0700204 if (binder != nullptr) {
Steven Morelandf0212002018-12-26 13:59:23 -0800205 BBinder *local = binder->localBinder();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700206 if (!local) {
207 BpBinder *proxy = binder->remoteBinder();
Yi Kong91635562018-06-07 14:38:36 -0700208 if (proxy == nullptr) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000209 ALOGE("null proxy");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700210 }
211 const int32_t handle = proxy ? proxy->handle() : 0;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700212 obj.hdr.type = BINDER_TYPE_HANDLE;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -0800213 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700214 obj.handle = handle;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800215 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700216 } else {
Steven Morelandbf1915b2020-07-16 22:43:02 +0000217 int policy = local->getMinSchedulerPolicy();
218 int priority = local->getMinSchedulerPriority();
219
220 if (policy != 0 || priority != 0) {
221 // override value, since it is set explicitly
222 schedBits = schedPolicyMask(policy, priority);
223 }
Steven Morelandf0212002018-12-26 13:59:23 -0800224 if (local->isRequestingSid()) {
225 obj.flags |= FLAT_BINDER_FLAG_TXN_SECURITY_CTX;
226 }
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700227 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800228 obj.binder = reinterpret_cast<uintptr_t>(local->getWeakRefs());
229 obj.cookie = reinterpret_cast<uintptr_t>(local);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700230 }
231 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700232 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800233 obj.binder = 0;
234 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700235 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700236
Steven Morelandbf1915b2020-07-16 22:43:02 +0000237 obj.flags |= schedBits;
238
Steven Morelanda86a3562019-08-01 23:28:34 +0000239 return finishFlattenBinder(binder, obj);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700240}
241
Steven Morelanda86a3562019-08-01 23:28:34 +0000242status_t Parcel::unflattenBinder(sp<IBinder>* out) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700243{
Steven Morelanda86a3562019-08-01 23:28:34 +0000244 const flat_binder_object* flat = readObject(false);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700245
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700246 if (flat) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700247 switch (flat->hdr.type) {
Steven Morelanda86a3562019-08-01 23:28:34 +0000248 case BINDER_TYPE_BINDER: {
249 sp<IBinder> binder = reinterpret_cast<IBinder*>(flat->cookie);
250 return finishUnflattenBinder(binder, out);
251 }
252 case BINDER_TYPE_HANDLE: {
253 sp<IBinder> binder =
254 ProcessState::self()->getStrongProxyForHandle(flat->handle);
255 return finishUnflattenBinder(binder, out);
256 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700257 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700258 }
259 return BAD_TYPE;
260}
261
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700262// ---------------------------------------------------------------------------
263
264Parcel::Parcel()
265{
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800266 LOG_ALLOC("Parcel %p: constructing", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700267 initState();
268}
269
270Parcel::~Parcel()
271{
272 freeDataNoInit();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800273 LOG_ALLOC("Parcel %p: destroyed", this);
274}
275
276size_t Parcel::getGlobalAllocSize() {
Jeff Sharkey8994c182020-09-11 12:07:10 -0600277 return gParcelGlobalAllocSize.load();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800278}
279
280size_t Parcel::getGlobalAllocCount() {
Jeff Sharkey8994c182020-09-11 12:07:10 -0600281 return gParcelGlobalAllocCount.load();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700282}
283
284const uint8_t* Parcel::data() const
285{
286 return mData;
287}
288
289size_t Parcel::dataSize() const
290{
291 return (mDataSize > mDataPos ? mDataSize : mDataPos);
292}
293
294size_t Parcel::dataAvail() const
295{
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700296 size_t result = dataSize() - dataPosition();
297 if (result > INT32_MAX) {
Steven Moreland6adf33c2019-09-25 13:18:09 -0700298 LOG_ALWAYS_FATAL("result too big: %zu", result);
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700299 }
300 return result;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700301}
302
303size_t Parcel::dataPosition() const
304{
305 return mDataPos;
306}
307
308size_t Parcel::dataCapacity() const
309{
310 return mDataCapacity;
311}
312
313status_t Parcel::setDataSize(size_t size)
314{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700315 if (size > INT32_MAX) {
316 // don't accept size_t values which may have come from an
317 // inadvertent conversion from a negative int.
318 return BAD_VALUE;
319 }
320
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700321 status_t err;
322 err = continueWrite(size);
323 if (err == NO_ERROR) {
324 mDataSize = size;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700325 ALOGV("setDataSize Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700326 }
327 return err;
328}
329
330void Parcel::setDataPosition(size_t pos) const
331{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700332 if (pos > INT32_MAX) {
333 // don't accept size_t values which may have come from an
334 // inadvertent conversion from a negative int.
Steven Moreland6adf33c2019-09-25 13:18:09 -0700335 LOG_ALWAYS_FATAL("pos too big: %zu", pos);
Nick Kralevichb6b14232015-04-02 09:36:02 -0700336 }
337
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700338 mDataPos = pos;
339 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -0800340 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700341}
342
343status_t Parcel::setDataCapacity(size_t size)
344{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700345 if (size > INT32_MAX) {
346 // don't accept size_t values which may have come from an
347 // inadvertent conversion from a negative int.
348 return BAD_VALUE;
349 }
350
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700351 if (size > mDataCapacity) return continueWrite(size);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700352 return NO_ERROR;
353}
354
355status_t Parcel::setData(const uint8_t* buffer, size_t len)
356{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700357 if (len > INT32_MAX) {
358 // don't accept size_t values which may have come from an
359 // inadvertent conversion from a negative int.
360 return BAD_VALUE;
361 }
362
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700363 status_t err = restartWrite(len);
364 if (err == NO_ERROR) {
365 memcpy(const_cast<uint8_t*>(data()), buffer, len);
366 mDataSize = len;
367 mFdsKnown = false;
368 }
369 return err;
370}
371
Andreas Huber51faf462011-04-13 10:21:56 -0700372status_t Parcel::appendFrom(const Parcel *parcel, size_t offset, size_t len)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700373{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700374 status_t err;
Andreas Huber51faf462011-04-13 10:21:56 -0700375 const uint8_t *data = parcel->mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800376 const binder_size_t *objects = parcel->mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700377 size_t size = parcel->mObjectsSize;
378 int startPos = mDataPos;
379 int firstIndex = -1, lastIndex = -2;
380
381 if (len == 0) {
382 return NO_ERROR;
383 }
384
Nick Kralevichb6b14232015-04-02 09:36:02 -0700385 if (len > INT32_MAX) {
386 // don't accept size_t values which may have come from an
387 // inadvertent conversion from a negative int.
388 return BAD_VALUE;
389 }
390
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700391 // range checks against the source parcel size
392 if ((offset > parcel->mDataSize)
393 || (len > parcel->mDataSize)
394 || (offset + len > parcel->mDataSize)) {
395 return BAD_VALUE;
396 }
397
398 // Count objects in range
399 for (int i = 0; i < (int) size; i++) {
400 size_t off = objects[i];
Christopher Tate27182be2015-05-27 17:53:02 -0700401 if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700402 if (firstIndex == -1) {
403 firstIndex = i;
404 }
405 lastIndex = i;
406 }
407 }
408 int numObjects = lastIndex - firstIndex + 1;
409
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700410 if ((mDataSize+len) > mDataCapacity) {
411 // grow data
412 err = growData(len);
413 if (err != NO_ERROR) {
414 return err;
415 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700416 }
417
418 // append data
419 memcpy(mData + mDataPos, data + offset, len);
420 mDataPos += len;
421 mDataSize += len;
422
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400423 err = NO_ERROR;
424
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700425 if (numObjects > 0) {
Martijn Coenen69390d42018-10-22 15:18:10 +0200426 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700427 // grow objects
428 if (mObjectsCapacity < mObjectsSize + numObjects) {
Martijn Coenen93fe5182020-01-22 10:46:25 +0100429 if ((size_t) numObjects > SIZE_MAX - mObjectsSize) return NO_MEMORY; // overflow
430 if (mObjectsSize + numObjects > SIZE_MAX / 3) return NO_MEMORY; // overflow
Christopher Tateed7a50c2015-06-08 14:45:14 -0700431 size_t newSize = ((mObjectsSize + numObjects)*3)/2;
Martijn Coenen93fe5182020-01-22 10:46:25 +0100432 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800433 binder_size_t *objects =
434 (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -0700435 if (objects == (binder_size_t*)nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700436 return NO_MEMORY;
437 }
438 mObjects = objects;
439 mObjectsCapacity = newSize;
440 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700441
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700442 // append and acquire objects
443 int idx = mObjectsSize;
444 for (int i = firstIndex; i <= lastIndex; i++) {
445 size_t off = objects[i] - offset + startPos;
446 mObjects[idx++] = off;
447 mObjectsSize++;
448
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700449 flat_binder_object* flat
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700450 = reinterpret_cast<flat_binder_object*>(mData + off);
Adrian Rooscbf37262015-10-22 16:12:53 -0700451 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700452
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700453 if (flat->hdr.type == BINDER_TYPE_FD) {
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700454 // If this is a file descriptor, we need to dup it so the
455 // new Parcel now owns its own fd, and can declare that we
456 // officially know we have fds.
Nick Kralevichec9ec7d2016-12-17 19:47:27 -0800457 flat->handle = fcntl(flat->handle, F_DUPFD_CLOEXEC, 0);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800458 flat->cookie = 1;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700459 mHasFds = mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400460 if (!mAllowFds) {
461 err = FDS_NOT_ALLOWED;
462 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700463 }
464 }
465 }
466
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400467 return err;
468}
469
Dianne Hackborn15feb9b2017-04-10 15:34:35 -0700470int Parcel::compareData(const Parcel& other) {
471 size_t size = dataSize();
472 if (size != other.dataSize()) {
473 return size < other.dataSize() ? -1 : 1;
474 }
475 return memcmp(data(), other.data(), size);
476}
477
Jeff Brown13b16042014-11-11 16:44:25 -0800478bool Parcel::allowFds() const
479{
480 return mAllowFds;
481}
482
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700483bool Parcel::pushAllowFds(bool allowFds)
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400484{
485 const bool origValue = mAllowFds;
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700486 if (!allowFds) {
487 mAllowFds = false;
488 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400489 return origValue;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700490}
491
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700492void Parcel::restoreAllowFds(bool lastValue)
493{
494 mAllowFds = lastValue;
495}
496
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700497bool Parcel::hasFileDescriptors() const
498{
499 if (!mFdsKnown) {
500 scanForFds();
501 }
502 return mHasFds;
503}
504
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000505void Parcel::updateWorkSourceRequestHeaderPosition() const {
506 // Only update the request headers once. We only want to point
507 // to the first headers read/written.
508 if (!mRequestHeaderPresent) {
509 mWorkSourceRequestHeaderPosition = dataPosition();
510 mRequestHeaderPresent = true;
511 }
512}
513
Jooyung Han1b228f42020-01-30 13:41:12 +0900514#if defined(__ANDROID_VNDK__) && !defined(__ANDROID_APEX__)
Steven Morelandd70160f2019-07-23 10:20:38 -0700515constexpr int32_t kHeader = B_PACK_CHARS('V', 'N', 'D', 'R');
516#else
517constexpr int32_t kHeader = B_PACK_CHARS('S', 'Y', 'S', 'T');
518#endif
519
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700520// Write RPC headers. (previously just the interface token)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700521status_t Parcel::writeInterfaceToken(const String16& interface)
522{
Steven Morelanddbc76c72020-10-01 18:02:48 +0000523 return writeInterfaceToken(interface.string(), interface.size());
524}
525
526status_t Parcel::writeInterfaceToken(const char16_t* str, size_t len) {
Olivier Gaillard91a04802018-11-14 17:32:41 +0000527 const IPCThreadState* threadState = IPCThreadState::self();
528 writeInt32(threadState->getStrictModePolicy() | STRICT_MODE_PENALTY_GATHER);
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000529 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000530 writeInt32(threadState->shouldPropagateWorkSource() ?
531 threadState->getCallingWorkSourceUid() : IPCThreadState::kUnsetWorkSource);
Steven Morelandd70160f2019-07-23 10:20:38 -0700532 writeInt32(kHeader);
Steven Morelanddbc76c72020-10-01 18:02:48 +0000533
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700534 // currently the interface identification token is just its name as a string
Steven Morelanddbc76c72020-10-01 18:02:48 +0000535 return writeString16(str, len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700536}
537
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000538bool Parcel::replaceCallingWorkSourceUid(uid_t uid)
539{
540 if (!mRequestHeaderPresent) {
541 return false;
542 }
543
544 const size_t initialPosition = dataPosition();
545 setDataPosition(mWorkSourceRequestHeaderPosition);
546 status_t err = writeInt32(uid);
547 setDataPosition(initialPosition);
548 return err == NO_ERROR;
549}
550
Steven Morelandf1b1e492019-05-06 15:05:13 -0700551uid_t Parcel::readCallingWorkSourceUid() const
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000552{
553 if (!mRequestHeaderPresent) {
554 return IPCThreadState::kUnsetWorkSource;
555 }
556
557 const size_t initialPosition = dataPosition();
558 setDataPosition(mWorkSourceRequestHeaderPosition);
559 uid_t uid = readInt32();
560 setDataPosition(initialPosition);
561 return uid;
562}
563
Mathias Agopian83c04462009-05-22 19:00:22 -0700564bool Parcel::checkInterface(IBinder* binder) const
565{
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700566 return enforceInterface(binder->getInterfaceDescriptor());
Mathias Agopian83c04462009-05-22 19:00:22 -0700567}
568
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700569bool Parcel::enforceInterface(const String16& interface,
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700570 IPCThreadState* threadState) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700571{
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700572 return enforceInterface(interface.string(), interface.size(), threadState);
573}
574
575bool Parcel::enforceInterface(const char16_t* interface,
576 size_t len,
577 IPCThreadState* threadState) const
578{
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100579 // StrictModePolicy.
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700580 int32_t strictPolicy = readInt32();
Yi Kong91635562018-06-07 14:38:36 -0700581 if (threadState == nullptr) {
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700582 threadState = IPCThreadState::self();
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700583 }
Brad Fitzpatrick52736032010-08-30 16:01:16 -0700584 if ((threadState->getLastTransactionBinderFlags() &
585 IBinder::FLAG_ONEWAY) != 0) {
586 // For one-way calls, the callee is running entirely
587 // disconnected from the caller, so disable StrictMode entirely.
588 // Not only does disk/network usage not impact the caller, but
589 // there's no way to commuicate back any violations anyway.
590 threadState->setStrictModePolicy(0);
591 } else {
592 threadState->setStrictModePolicy(strictPolicy);
593 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100594 // WorkSource.
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000595 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100596 int32_t workSource = readInt32();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000597 threadState->setCallingWorkSourceUidWithoutPropagation(workSource);
Steven Morelandd70160f2019-07-23 10:20:38 -0700598 // vendor header
599 int32_t header = readInt32();
600 if (header != kHeader) {
601 ALOGE("Expecting header 0x%x but found 0x%x. Mixing copies of libbinder?", kHeader, header);
602 return false;
603 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100604 // Interface descriptor.
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700605 size_t parcel_interface_len;
606 const char16_t* parcel_interface = readString16Inplace(&parcel_interface_len);
607 if (len == parcel_interface_len &&
608 (!len || !memcmp(parcel_interface, interface, len * sizeof (char16_t)))) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700609 return true;
610 } else {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700611 ALOGW("**** enforceInterface() expected '%s' but read '%s'",
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700612 String8(interface, len).string(),
613 String8(parcel_interface, parcel_interface_len).string());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700614 return false;
615 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700616}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700617
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700618size_t Parcel::objectsCount() const
619{
620 return mObjectsSize;
621}
622
623status_t Parcel::errorCheck() const
624{
625 return mError;
626}
627
628void Parcel::setError(status_t err)
629{
630 mError = err;
631}
632
633status_t Parcel::finishWrite(size_t len)
634{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700635 if (len > INT32_MAX) {
636 // don't accept size_t values which may have come from an
637 // inadvertent conversion from a negative int.
638 return BAD_VALUE;
639 }
640
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700641 //printf("Finish write of %d\n", len);
642 mDataPos += len;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700643 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700644 if (mDataPos > mDataSize) {
645 mDataSize = mDataPos;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700646 ALOGV("finishWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700647 }
648 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
649 return NO_ERROR;
650}
651
652status_t Parcel::writeUnpadded(const void* data, size_t len)
653{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700654 if (len > INT32_MAX) {
655 // don't accept size_t values which may have come from an
656 // inadvertent conversion from a negative int.
657 return BAD_VALUE;
658 }
659
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700660 size_t end = mDataPos + len;
661 if (end < mDataPos) {
662 // integer overflow
663 return BAD_VALUE;
664 }
665
666 if (end <= mDataCapacity) {
667restart_write:
668 memcpy(mData+mDataPos, data, len);
669 return finishWrite(len);
670 }
671
672 status_t err = growData(len);
673 if (err == NO_ERROR) goto restart_write;
674 return err;
675}
676
677status_t Parcel::write(const void* data, size_t len)
678{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700679 if (len > INT32_MAX) {
680 // don't accept size_t values which may have come from an
681 // inadvertent conversion from a negative int.
682 return BAD_VALUE;
683 }
684
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700685 void* const d = writeInplace(len);
686 if (d) {
687 memcpy(d, data, len);
688 return NO_ERROR;
689 }
690 return mError;
691}
692
693void* Parcel::writeInplace(size_t len)
694{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700695 if (len > INT32_MAX) {
696 // don't accept size_t values which may have come from an
697 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -0700698 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -0700699 }
700
701 const size_t padded = pad_size(len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700702
703 // sanity check for integer overflow
704 if (mDataPos+padded < mDataPos) {
Yi Kong91635562018-06-07 14:38:36 -0700705 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700706 }
707
708 if ((mDataPos+padded) <= mDataCapacity) {
709restart_write:
710 //printf("Writing %ld bytes, padded to %ld\n", len, padded);
711 uint8_t* const data = mData+mDataPos;
712
713 // Need to pad at end?
714 if (padded != len) {
715#if BYTE_ORDER == BIG_ENDIAN
716 static const uint32_t mask[4] = {
717 0x00000000, 0xffffff00, 0xffff0000, 0xff000000
718 };
719#endif
720#if BYTE_ORDER == LITTLE_ENDIAN
721 static const uint32_t mask[4] = {
722 0x00000000, 0x00ffffff, 0x0000ffff, 0x000000ff
723 };
724#endif
725 //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
726 // *reinterpret_cast<void**>(data+padded-4));
727 *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
728 }
729
730 finishWrite(padded);
731 return data;
732 }
733
734 status_t err = growData(padded);
735 if (err == NO_ERROR) goto restart_write;
Yi Kong91635562018-06-07 14:38:36 -0700736 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700737}
738
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800739status_t Parcel::writeUtf8AsUtf16(const std::string& str) {
740 const uint8_t* strData = (uint8_t*)str.data();
741 const size_t strLen= str.length();
742 const ssize_t utf16Len = utf8_to_utf16_length(strData, strLen);
Sergio Girof4607432016-07-21 14:46:35 +0100743 if (utf16Len < 0 || utf16Len > std::numeric_limits<int32_t>::max()) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800744 return BAD_VALUE;
745 }
746
747 status_t err = writeInt32(utf16Len);
748 if (err) {
749 return err;
750 }
751
752 // Allocate enough bytes to hold our converted string and its terminating NULL.
753 void* dst = writeInplace((utf16Len + 1) * sizeof(char16_t));
754 if (!dst) {
755 return NO_MEMORY;
756 }
757
Sergio Girof4607432016-07-21 14:46:35 +0100758 utf8_to_utf16(strData, strLen, (char16_t*)dst, (size_t) utf16Len + 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800759
760 return NO_ERROR;
761}
762
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900763status_t Parcel::writeUtf8AsUtf16(const std::optional<std::string>& str) {
764 if (!str) {
765 return writeInt32(-1);
766 }
767 return writeUtf8AsUtf16(*str);
768}
769
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800770status_t Parcel::writeUtf8AsUtf16(const std::unique_ptr<std::string>& str) {
771 if (!str) {
772 return writeInt32(-1);
773 }
774 return writeUtf8AsUtf16(*str);
775}
776
Daniel Normand0337ef2019-09-20 15:46:03 -0700777status_t Parcel::writeByteVectorInternal(const int8_t* data, size_t size) {
778 if (size > std::numeric_limits<int32_t>::max()) {
779 return BAD_VALUE;
Casey Dahlin451ff582015-10-19 18:12:18 -0700780 }
781
Daniel Normand0337ef2019-09-20 15:46:03 -0700782 status_t status = writeInt32(size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700783 if (status != OK) {
784 return status;
785 }
786
Daniel Normand0337ef2019-09-20 15:46:03 -0700787 return write(data, size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700788}
789
Casey Dahlin185d3442016-02-09 11:08:35 -0800790status_t Parcel::writeByteVector(const std::vector<int8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700791 return writeByteVectorInternal(val.data(), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800792}
793
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900794status_t Parcel::writeByteVector(const std::optional<std::vector<int8_t>>& val)
795{
796 if (!val) return writeInt32(-1);
797 return writeByteVectorInternal(val->data(), val->size());
798}
799
Casey Dahlin185d3442016-02-09 11:08:35 -0800800status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<int8_t>>& val)
801{
Daniel Normand0337ef2019-09-20 15:46:03 -0700802 if (!val) return writeInt32(-1);
803 return writeByteVectorInternal(val->data(), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800804}
805
806status_t Parcel::writeByteVector(const std::vector<uint8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700807 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val.data()), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800808}
809
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900810status_t Parcel::writeByteVector(const std::optional<std::vector<uint8_t>>& val)
811{
812 if (!val) return writeInt32(-1);
813 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
814}
815
Casey Dahlin185d3442016-02-09 11:08:35 -0800816status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<uint8_t>>& val)
817{
Daniel Normand0337ef2019-09-20 15:46:03 -0700818 if (!val) return writeInt32(-1);
819 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800820}
821
Casey Dahlin451ff582015-10-19 18:12:18 -0700822status_t Parcel::writeInt32Vector(const std::vector<int32_t>& val)
823{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800824 return writeTypedVector(val, &Parcel::writeInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -0700825}
826
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900827status_t Parcel::writeInt32Vector(const std::optional<std::vector<int32_t>>& val)
828{
829 return writeNullableTypedVector(val, &Parcel::writeInt32);
830}
831
Casey Dahlinb9872622015-11-25 15:09:45 -0800832status_t Parcel::writeInt32Vector(const std::unique_ptr<std::vector<int32_t>>& val)
833{
834 return writeNullableTypedVector(val, &Parcel::writeInt32);
835}
836
Casey Dahlin451ff582015-10-19 18:12:18 -0700837status_t Parcel::writeInt64Vector(const std::vector<int64_t>& val)
838{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800839 return writeTypedVector(val, &Parcel::writeInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -0700840}
841
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900842status_t Parcel::writeInt64Vector(const std::optional<std::vector<int64_t>>& val)
843{
844 return writeNullableTypedVector(val, &Parcel::writeInt64);
845}
846
Casey Dahlinb9872622015-11-25 15:09:45 -0800847status_t Parcel::writeInt64Vector(const std::unique_ptr<std::vector<int64_t>>& val)
848{
849 return writeNullableTypedVector(val, &Parcel::writeInt64);
850}
851
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800852status_t Parcel::writeUint64Vector(const std::vector<uint64_t>& val)
853{
854 return writeTypedVector(val, &Parcel::writeUint64);
855}
856
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900857status_t Parcel::writeUint64Vector(const std::optional<std::vector<uint64_t>>& val)
858{
859 return writeNullableTypedVector(val, &Parcel::writeUint64);
860}
861
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800862status_t Parcel::writeUint64Vector(const std::unique_ptr<std::vector<uint64_t>>& val)
863{
864 return writeNullableTypedVector(val, &Parcel::writeUint64);
865}
866
Casey Dahlin451ff582015-10-19 18:12:18 -0700867status_t Parcel::writeFloatVector(const std::vector<float>& val)
868{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800869 return writeTypedVector(val, &Parcel::writeFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -0700870}
871
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900872status_t Parcel::writeFloatVector(const std::optional<std::vector<float>>& val)
873{
874 return writeNullableTypedVector(val, &Parcel::writeFloat);
875}
876
Casey Dahlinb9872622015-11-25 15:09:45 -0800877status_t Parcel::writeFloatVector(const std::unique_ptr<std::vector<float>>& val)
878{
879 return writeNullableTypedVector(val, &Parcel::writeFloat);
880}
881
Casey Dahlin451ff582015-10-19 18:12:18 -0700882status_t Parcel::writeDoubleVector(const std::vector<double>& val)
883{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800884 return writeTypedVector(val, &Parcel::writeDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -0700885}
886
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900887status_t Parcel::writeDoubleVector(const std::optional<std::vector<double>>& val)
888{
889 return writeNullableTypedVector(val, &Parcel::writeDouble);
890}
891
Casey Dahlinb9872622015-11-25 15:09:45 -0800892status_t Parcel::writeDoubleVector(const std::unique_ptr<std::vector<double>>& val)
893{
894 return writeNullableTypedVector(val, &Parcel::writeDouble);
895}
896
Casey Dahlin451ff582015-10-19 18:12:18 -0700897status_t Parcel::writeBoolVector(const std::vector<bool>& val)
898{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800899 return writeTypedVector(val, &Parcel::writeBool);
Casey Dahlin451ff582015-10-19 18:12:18 -0700900}
901
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900902status_t Parcel::writeBoolVector(const std::optional<std::vector<bool>>& val)
903{
904 return writeNullableTypedVector(val, &Parcel::writeBool);
905}
906
Casey Dahlinb9872622015-11-25 15:09:45 -0800907status_t Parcel::writeBoolVector(const std::unique_ptr<std::vector<bool>>& val)
908{
909 return writeNullableTypedVector(val, &Parcel::writeBool);
910}
911
Casey Dahlin451ff582015-10-19 18:12:18 -0700912status_t Parcel::writeCharVector(const std::vector<char16_t>& val)
913{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800914 return writeTypedVector(val, &Parcel::writeChar);
Casey Dahlin451ff582015-10-19 18:12:18 -0700915}
916
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900917status_t Parcel::writeCharVector(const std::optional<std::vector<char16_t>>& val)
918{
919 return writeNullableTypedVector(val, &Parcel::writeChar);
920}
921
Casey Dahlinb9872622015-11-25 15:09:45 -0800922status_t Parcel::writeCharVector(const std::unique_ptr<std::vector<char16_t>>& val)
923{
924 return writeNullableTypedVector(val, &Parcel::writeChar);
925}
926
Casey Dahlin451ff582015-10-19 18:12:18 -0700927status_t Parcel::writeString16Vector(const std::vector<String16>& val)
928{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800929 return writeTypedVector(val, &Parcel::writeString16);
Casey Dahlin451ff582015-10-19 18:12:18 -0700930}
931
Casey Dahlinb9872622015-11-25 15:09:45 -0800932status_t Parcel::writeString16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900933 const std::optional<std::vector<std::optional<String16>>>& val)
934{
935 return writeNullableTypedVector(val, &Parcel::writeString16);
936}
937
938status_t Parcel::writeString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -0800939 const std::unique_ptr<std::vector<std::unique_ptr<String16>>>& val)
940{
941 return writeNullableTypedVector(val, &Parcel::writeString16);
942}
943
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800944status_t Parcel::writeUtf8VectorAsUtf16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +0900945 const std::optional<std::vector<std::optional<std::string>>>& val) {
946 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
947}
948
949status_t Parcel::writeUtf8VectorAsUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800950 const std::unique_ptr<std::vector<std::unique_ptr<std::string>>>& val) {
951 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
952}
953
954status_t Parcel::writeUtf8VectorAsUtf16Vector(const std::vector<std::string>& val) {
955 return writeTypedVector(val, &Parcel::writeUtf8AsUtf16);
956}
957
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700958status_t Parcel::writeInt32(int32_t val)
959{
Andreas Huber84a6d042009-08-17 13:33:27 -0700960 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700961}
Dan Stoza41a0f2f2014-12-01 10:01:10 -0800962
963status_t Parcel::writeUint32(uint32_t val)
964{
965 return writeAligned(val);
966}
967
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700968status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700969 if (len > INT32_MAX) {
970 // don't accept size_t values which may have come from an
971 // inadvertent conversion from a negative int.
972 return BAD_VALUE;
973 }
974
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700975 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700976 return writeInt32(-1);
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700977 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700978 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700979 if (ret == NO_ERROR) {
980 ret = write(val, len * sizeof(*val));
981 }
982 return ret;
983}
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700984status_t Parcel::writeByteArray(size_t len, const uint8_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700985 if (len > INT32_MAX) {
986 // don't accept size_t values which may have come from an
987 // inadvertent conversion from a negative int.
988 return BAD_VALUE;
989 }
990
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700991 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700992 return writeInt32(-1);
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700993 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700994 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700995 if (ret == NO_ERROR) {
996 ret = write(val, len * sizeof(*val));
997 }
998 return ret;
999}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001000
Casey Dahlind6848f52015-10-15 15:44:59 -07001001status_t Parcel::writeBool(bool val)
1002{
1003 return writeInt32(int32_t(val));
1004}
1005
1006status_t Parcel::writeChar(char16_t val)
1007{
1008 return writeInt32(int32_t(val));
1009}
1010
1011status_t Parcel::writeByte(int8_t val)
1012{
1013 return writeInt32(int32_t(val));
1014}
1015
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001016status_t Parcel::writeInt64(int64_t val)
1017{
Andreas Huber84a6d042009-08-17 13:33:27 -07001018 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001019}
1020
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001021status_t Parcel::writeUint64(uint64_t val)
1022{
1023 return writeAligned(val);
1024}
1025
Serban Constantinescuf683e012013-11-05 16:53:55 +00001026status_t Parcel::writePointer(uintptr_t val)
1027{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001028 return writeAligned<binder_uintptr_t>(val);
Serban Constantinescuf683e012013-11-05 16:53:55 +00001029}
1030
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001031status_t Parcel::writeFloat(float val)
1032{
Andreas Huber84a6d042009-08-17 13:33:27 -07001033 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001034}
1035
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001036#if defined(__mips__) && defined(__mips_hard_float)
1037
1038status_t Parcel::writeDouble(double val)
1039{
1040 union {
1041 double d;
1042 unsigned long long ll;
1043 } u;
1044 u.d = val;
1045 return writeAligned(u.ll);
1046}
1047
1048#else
1049
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001050status_t Parcel::writeDouble(double val)
1051{
Andreas Huber84a6d042009-08-17 13:33:27 -07001052 return writeAligned(val);
1053}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001054
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001055#endif
1056
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001057status_t Parcel::writeCString(const char* str)
1058{
1059 return write(str, strlen(str)+1);
1060}
1061
1062status_t Parcel::writeString8(const String8& str)
1063{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06001064 return writeString8(str.string(), str.size());
1065}
1066
1067status_t Parcel::writeString8(const char* str, size_t len)
1068{
1069 if (str == nullptr) return writeInt32(-1);
1070
Jeff Sharkey18220902020-11-05 08:36:20 -07001071 // NOTE: Keep this logic in sync with android_os_Parcel.cpp
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06001072 status_t err = writeInt32(len);
1073 if (err == NO_ERROR) {
1074 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char));
1075 if (data) {
1076 memcpy(data, str, len);
1077 *reinterpret_cast<char*>(data+len) = 0;
1078 return NO_ERROR;
1079 }
1080 err = mError;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001081 }
1082 return err;
1083}
1084
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001085status_t Parcel::writeString16(const std::optional<String16>& str)
1086{
1087 if (!str) {
1088 return writeInt32(-1);
1089 }
1090
1091 return writeString16(*str);
1092}
1093
Casey Dahlinb9872622015-11-25 15:09:45 -08001094status_t Parcel::writeString16(const std::unique_ptr<String16>& str)
1095{
1096 if (!str) {
1097 return writeInt32(-1);
1098 }
1099
1100 return writeString16(*str);
1101}
1102
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001103status_t Parcel::writeString16(const String16& str)
1104{
1105 return writeString16(str.string(), str.size());
1106}
1107
1108status_t Parcel::writeString16(const char16_t* str, size_t len)
1109{
Yi Kong91635562018-06-07 14:38:36 -07001110 if (str == nullptr) return writeInt32(-1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001111
Jeff Sharkey18220902020-11-05 08:36:20 -07001112 // NOTE: Keep this logic in sync with android_os_Parcel.cpp
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001113 status_t err = writeInt32(len);
1114 if (err == NO_ERROR) {
1115 len *= sizeof(char16_t);
1116 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char16_t));
1117 if (data) {
1118 memcpy(data, str, len);
1119 *reinterpret_cast<char16_t*>(data+len) = 0;
1120 return NO_ERROR;
1121 }
1122 err = mError;
1123 }
1124 return err;
1125}
1126
1127status_t Parcel::writeStrongBinder(const sp<IBinder>& val)
1128{
Steven Morelanda86a3562019-08-01 23:28:34 +00001129 return flattenBinder(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001130}
1131
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001132status_t Parcel::writeStrongBinderVector(const std::vector<sp<IBinder>>& val)
1133{
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001134 return writeTypedVector(val, &Parcel::writeStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001135}
1136
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001137status_t Parcel::writeStrongBinderVector(const std::optional<std::vector<sp<IBinder>>>& val)
1138{
1139 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1140}
1141
Casey Dahlinb9872622015-11-25 15:09:45 -08001142status_t Parcel::writeStrongBinderVector(const std::unique_ptr<std::vector<sp<IBinder>>>& val)
1143{
1144 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1145}
1146
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001147status_t Parcel::readStrongBinderVector(std::optional<std::vector<sp<IBinder>>>* val) const {
1148 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
1149}
1150
Casey Dahlinb9872622015-11-25 15:09:45 -08001151status_t Parcel::readStrongBinderVector(std::unique_ptr<std::vector<sp<IBinder>>>* val) const {
Christopher Wiley35d77ca2016-03-08 10:49:51 -08001152 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
Casey Dahlinb9872622015-11-25 15:09:45 -08001153}
1154
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001155status_t Parcel::readStrongBinderVector(std::vector<sp<IBinder>>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001156 return readTypedVector(val, &Parcel::readStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001157}
1158
Casey Dahlinb9872622015-11-25 15:09:45 -08001159status_t Parcel::writeRawNullableParcelable(const Parcelable* parcelable) {
1160 if (!parcelable) {
1161 return writeInt32(0);
1162 }
1163
1164 return writeParcelable(*parcelable);
1165}
1166
Christopher Wiley97f048d2015-11-19 06:49:05 -08001167status_t Parcel::writeParcelable(const Parcelable& parcelable) {
1168 status_t status = writeInt32(1); // parcelable is not null.
1169 if (status != OK) {
1170 return status;
1171 }
1172 return parcelable.writeToParcel(this);
1173}
1174
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001175status_t Parcel::writeNativeHandle(const native_handle* handle)
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001176{
Mathias Agopian1d0a95b2009-07-31 16:12:13 -07001177 if (!handle || handle->version != sizeof(native_handle))
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001178 return BAD_TYPE;
1179
1180 status_t err;
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001181 err = writeInt32(handle->numFds);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001182 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001183
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001184 err = writeInt32(handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001185 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001186
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001187 for (int i=0 ; err==NO_ERROR && i<handle->numFds ; i++)
1188 err = writeDupFileDescriptor(handle->data[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001189
1190 if (err != NO_ERROR) {
Steve Block9d453682011-12-20 16:23:08 +00001191 ALOGD("write native handle, write dup fd failed");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001192 return err;
1193 }
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001194 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001195 return err;
1196}
1197
Jeff Brown93ff1f92011-11-04 19:01:44 -07001198status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001199{
1200 flat_binder_object obj;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001201 obj.hdr.type = BINDER_TYPE_FD;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001202 obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -08001203 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001204 obj.handle = fd;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001205 obj.cookie = takeOwnership ? 1 : 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001206 return writeObject(obj, true);
1207}
1208
1209status_t Parcel::writeDupFileDescriptor(int fd)
1210{
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08001211 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
Jeff Brownd341c712011-11-04 20:19:33 -07001212 if (dupFd < 0) {
1213 return -errno;
1214 }
1215 status_t err = writeFileDescriptor(dupFd, true /*takeOwnership*/);
Casey Dahlin06673e32015-11-23 13:24:23 -08001216 if (err != OK) {
Jeff Brownd341c712011-11-04 20:19:33 -07001217 close(dupFd);
1218 }
1219 return err;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001220}
1221
Dianne Hackborn1941a402016-08-29 12:30:43 -07001222status_t Parcel::writeParcelFileDescriptor(int fd, bool takeOwnership)
1223{
1224 writeInt32(0);
1225 return writeFileDescriptor(fd, takeOwnership);
1226}
1227
Ryo Hashimotobf551892018-05-31 16:58:35 +09001228status_t Parcel::writeDupParcelFileDescriptor(int fd)
1229{
1230 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1231 if (dupFd < 0) {
1232 return -errno;
1233 }
1234 status_t err = writeParcelFileDescriptor(dupFd, true /*takeOwnership*/);
1235 if (err != OK) {
1236 close(dupFd);
1237 }
1238 return err;
1239}
1240
Christopher Wiley2cf19952016-04-11 11:09:37 -07001241status_t Parcel::writeUniqueFileDescriptor(const base::unique_fd& fd) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001242 return writeDupFileDescriptor(fd.get());
1243}
1244
Christopher Wiley2cf19952016-04-11 11:09:37 -07001245status_t Parcel::writeUniqueFileDescriptorVector(const std::vector<base::unique_fd>& val) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001246 return writeTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1247}
1248
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001249status_t Parcel::writeUniqueFileDescriptorVector(const std::optional<std::vector<base::unique_fd>>& val) {
1250 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1251}
1252
Christopher Wiley2cf19952016-04-11 11:09:37 -07001253status_t Parcel::writeUniqueFileDescriptorVector(const std::unique_ptr<std::vector<base::unique_fd>>& val) {
Casey Dahlinb9872622015-11-25 15:09:45 -08001254 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1255}
1256
Jeff Brown13b16042014-11-11 16:44:25 -08001257status_t Parcel::writeBlob(size_t len, bool mutableCopy, WritableBlob* outBlob)
Jeff Brown5707dbf2011-09-23 21:17:56 -07001258{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001259 if (len > INT32_MAX) {
1260 // don't accept size_t values which may have come from an
1261 // inadvertent conversion from a negative int.
1262 return BAD_VALUE;
1263 }
1264
Jeff Brown13b16042014-11-11 16:44:25 -08001265 status_t status;
1266 if (!mAllowFds || len <= BLOB_INPLACE_LIMIT) {
Steve Block6807e592011-10-20 11:56:00 +01001267 ALOGV("writeBlob: write in place");
Jeff Brown13b16042014-11-11 16:44:25 -08001268 status = writeInt32(BLOB_INPLACE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001269 if (status) return status;
1270
1271 void* ptr = writeInplace(len);
1272 if (!ptr) return NO_MEMORY;
1273
Jeff Brown13b16042014-11-11 16:44:25 -08001274 outBlob->init(-1, ptr, len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001275 return NO_ERROR;
1276 }
1277
Steve Block6807e592011-10-20 11:56:00 +01001278 ALOGV("writeBlob: write to ashmem");
Jeff Brown5707dbf2011-09-23 21:17:56 -07001279 int fd = ashmem_create_region("Parcel Blob", len);
1280 if (fd < 0) return NO_MEMORY;
1281
1282 int result = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE);
1283 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001284 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001285 } else {
Yi Kong91635562018-06-07 14:38:36 -07001286 void* ptr = ::mmap(nullptr, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001287 if (ptr == MAP_FAILED) {
1288 status = -errno;
1289 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001290 if (!mutableCopy) {
1291 result = ashmem_set_prot_region(fd, PROT_READ);
1292 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07001293 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001294 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001295 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001296 status = writeInt32(mutableCopy ? BLOB_ASHMEM_MUTABLE : BLOB_ASHMEM_IMMUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001297 if (!status) {
Jeff Brown93ff1f92011-11-04 19:01:44 -07001298 status = writeFileDescriptor(fd, true /*takeOwnership*/);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001299 if (!status) {
Jeff Brown13b16042014-11-11 16:44:25 -08001300 outBlob->init(fd, ptr, len, mutableCopy);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001301 return NO_ERROR;
1302 }
1303 }
1304 }
1305 }
1306 ::munmap(ptr, len);
1307 }
1308 ::close(fd);
1309 return status;
1310}
1311
Jeff Brown13b16042014-11-11 16:44:25 -08001312status_t Parcel::writeDupImmutableBlobFileDescriptor(int fd)
1313{
1314 // Must match up with what's done in writeBlob.
1315 if (!mAllowFds) return FDS_NOT_ALLOWED;
1316 status_t status = writeInt32(BLOB_ASHMEM_IMMUTABLE);
1317 if (status) return status;
1318 return writeDupFileDescriptor(fd);
1319}
1320
Mathias Agopiane1424282013-07-29 21:24:40 -07001321status_t Parcel::write(const FlattenableHelperInterface& val)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001322{
1323 status_t err;
1324
1325 // size if needed
Mathias Agopiane1424282013-07-29 21:24:40 -07001326 const size_t len = val.getFlattenedSize();
1327 const size_t fd_count = val.getFdCount();
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001328
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001329 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001330 // don't accept size_t values which may have come from an
1331 // inadvertent conversion from a negative int.
1332 return BAD_VALUE;
1333 }
1334
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001335 err = this->writeInt32(len);
1336 if (err) return err;
1337
1338 err = this->writeInt32(fd_count);
1339 if (err) return err;
1340
1341 // payload
Martijn Coenenf8542382018-04-04 11:46:56 +02001342 void* const buf = this->writeInplace(len);
Yi Kong91635562018-06-07 14:38:36 -07001343 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001344 return BAD_VALUE;
1345
Yi Kong91635562018-06-07 14:38:36 -07001346 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001347 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001348 fds = new (std::nothrow) int[fd_count];
1349 if (fds == nullptr) {
1350 ALOGE("write: failed to allocate requested %zu fds", fd_count);
1351 return BAD_VALUE;
1352 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001353 }
1354
1355 err = val.flatten(buf, len, fds, fd_count);
1356 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1357 err = this->writeDupFileDescriptor( fds[i] );
1358 }
1359
1360 if (fd_count) {
1361 delete [] fds;
1362 }
1363
1364 return err;
1365}
1366
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001367status_t Parcel::writeObject(const flat_binder_object& val, bool nullMetaData)
1368{
1369 const bool enoughData = (mDataPos+sizeof(val)) <= mDataCapacity;
1370 const bool enoughObjects = mObjectsSize < mObjectsCapacity;
1371 if (enoughData && enoughObjects) {
1372restart_write:
1373 *reinterpret_cast<flat_binder_object*>(mData+mDataPos) = val;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001374
Christopher Tate98e67d32015-06-03 18:44:15 -07001375 // remember if it's a file descriptor
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001376 if (val.hdr.type == BINDER_TYPE_FD) {
Christopher Tate98e67d32015-06-03 18:44:15 -07001377 if (!mAllowFds) {
1378 // fail before modifying our object index
1379 return FDS_NOT_ALLOWED;
1380 }
1381 mHasFds = mFdsKnown = true;
1382 }
1383
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001384 // Need to write meta-data?
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001385 if (nullMetaData || val.binder != 0) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001386 mObjects[mObjectsSize] = mDataPos;
Adrian Rooscbf37262015-10-22 16:12:53 -07001387 acquire_object(ProcessState::self(), val, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001388 mObjectsSize++;
1389 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001390
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001391 return finishWrite(sizeof(flat_binder_object));
1392 }
1393
1394 if (!enoughData) {
1395 const status_t err = growData(sizeof(val));
1396 if (err != NO_ERROR) return err;
1397 }
1398 if (!enoughObjects) {
Martijn Coenen93fe5182020-01-22 10:46:25 +01001399 if (mObjectsSize > SIZE_MAX - 2) return NO_MEMORY; // overflow
1400 if ((mObjectsSize + 2) > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001401 size_t newSize = ((mObjectsSize+2)*3)/2;
Martijn Coenen93fe5182020-01-22 10:46:25 +01001402 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001403 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -07001404 if (objects == nullptr) return NO_MEMORY;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001405 mObjects = objects;
1406 mObjectsCapacity = newSize;
1407 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001408
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001409 goto restart_write;
1410}
1411
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001412status_t Parcel::writeNoException()
1413{
Christopher Wiley09eb7492015-11-09 15:06:15 -08001414 binder::Status status;
1415 return status.writeToParcel(this);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001416}
1417
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001418status_t Parcel::validateReadData(size_t upperBound) const
1419{
1420 // Don't allow non-object reads on object data
1421 if (mObjectsSorted || mObjectsSize <= 1) {
1422data_sorted:
1423 // Expect to check only against the next object
1424 if (mNextObjectHint < mObjectsSize && upperBound > mObjects[mNextObjectHint]) {
1425 // For some reason the current read position is greater than the next object
1426 // hint. Iterate until we find the right object
1427 size_t nextObject = mNextObjectHint;
1428 do {
1429 if (mDataPos < mObjects[nextObject] + sizeof(flat_binder_object)) {
1430 // Requested info overlaps with an object
1431 ALOGE("Attempt to read from protected data in Parcel %p", this);
1432 return PERMISSION_DENIED;
1433 }
1434 nextObject++;
1435 } while (nextObject < mObjectsSize && upperBound > mObjects[nextObject]);
1436 mNextObjectHint = nextObject;
1437 }
1438 return NO_ERROR;
1439 }
1440 // Quickly determine if mObjects is sorted.
1441 binder_size_t* currObj = mObjects + mObjectsSize - 1;
1442 binder_size_t* prevObj = currObj;
1443 while (currObj > mObjects) {
1444 prevObj--;
1445 if(*prevObj > *currObj) {
1446 goto data_unsorted;
1447 }
1448 currObj--;
1449 }
1450 mObjectsSorted = true;
1451 goto data_sorted;
1452
1453data_unsorted:
1454 // Insertion Sort mObjects
1455 // Great for mostly sorted lists. If randomly sorted or reverse ordered mObjects become common,
1456 // switch to std::sort(mObjects, mObjects + mObjectsSize);
1457 for (binder_size_t* iter0 = mObjects + 1; iter0 < mObjects + mObjectsSize; iter0++) {
1458 binder_size_t temp = *iter0;
1459 binder_size_t* iter1 = iter0 - 1;
1460 while (iter1 >= mObjects && *iter1 > temp) {
1461 *(iter1 + 1) = *iter1;
1462 iter1--;
1463 }
1464 *(iter1 + 1) = temp;
1465 }
1466 mNextObjectHint = 0;
1467 mObjectsSorted = true;
1468 goto data_sorted;
1469}
1470
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001471status_t Parcel::read(void* outData, size_t len) const
1472{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001473 if (len > INT32_MAX) {
1474 // don't accept size_t values which may have come from an
1475 // inadvertent conversion from a negative int.
1476 return BAD_VALUE;
1477 }
1478
1479 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1480 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001481 if (mObjectsSize > 0) {
1482 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001483 if(err != NO_ERROR) {
1484 // Still increment the data position by the expected length
1485 mDataPos += pad_size(len);
1486 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
1487 return err;
1488 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001489 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001490 memcpy(outData, mData+mDataPos, len);
Nick Kralevichb6b14232015-04-02 09:36:02 -07001491 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001492 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001493 return NO_ERROR;
1494 }
1495 return NOT_ENOUGH_DATA;
1496}
1497
1498const void* Parcel::readInplace(size_t len) const
1499{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001500 if (len > INT32_MAX) {
1501 // don't accept size_t values which may have come from an
1502 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -07001503 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001504 }
1505
1506 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1507 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001508 if (mObjectsSize > 0) {
1509 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001510 if(err != NO_ERROR) {
1511 // Still increment the data position by the expected length
1512 mDataPos += pad_size(len);
1513 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07001514 return nullptr;
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001515 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001516 }
1517
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001518 const void* data = mData+mDataPos;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001519 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001520 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001521 return data;
1522 }
Yi Kong91635562018-06-07 14:38:36 -07001523 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001524}
1525
Andreas Huber84a6d042009-08-17 13:33:27 -07001526template<class T>
1527status_t Parcel::readAligned(T *pArg) const {
Elliott Hughes42a9b942020-08-17 15:53:31 -07001528 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001529
1530 if ((mDataPos+sizeof(T)) <= mDataSize) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001531 if (mObjectsSize > 0) {
1532 status_t err = validateReadData(mDataPos + sizeof(T));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001533 if(err != NO_ERROR) {
1534 // Still increment the data position by the expected length
1535 mDataPos += sizeof(T);
1536 return err;
1537 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001538 }
1539
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001540 const void* data = mData+mDataPos;
Andreas Huber84a6d042009-08-17 13:33:27 -07001541 mDataPos += sizeof(T);
1542 *pArg = *reinterpret_cast<const T*>(data);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001543 return NO_ERROR;
1544 } else {
1545 return NOT_ENOUGH_DATA;
1546 }
1547}
1548
Andreas Huber84a6d042009-08-17 13:33:27 -07001549template<class T>
1550T Parcel::readAligned() const {
1551 T result;
1552 if (readAligned(&result) != NO_ERROR) {
1553 result = 0;
1554 }
1555
1556 return result;
1557}
1558
1559template<class T>
1560status_t Parcel::writeAligned(T val) {
Elliott Hughes42a9b942020-08-17 15:53:31 -07001561 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001562
1563 if ((mDataPos+sizeof(val)) <= mDataCapacity) {
1564restart_write:
1565 *reinterpret_cast<T*>(mData+mDataPos) = val;
1566 return finishWrite(sizeof(val));
1567 }
1568
1569 status_t err = growData(sizeof(val));
1570 if (err == NO_ERROR) goto restart_write;
1571 return err;
1572}
1573
Casey Dahlin185d3442016-02-09 11:08:35 -08001574status_t Parcel::readByteVector(std::vector<int8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001575 size_t size;
1576 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1577 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001578}
1579
1580status_t Parcel::readByteVector(std::vector<uint8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001581 size_t size;
1582 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1583 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001584}
1585
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001586status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const {
1587 size_t size;
1588 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1589 if (!*val) {
1590 // reserveOutVector does not create the out vector if size is < 0.
1591 // This occurs when writing a null byte vector.
1592 return OK;
1593 }
1594 return readByteVectorInternal(&**val, size);
1595}
1596
Casey Dahlin185d3442016-02-09 11:08:35 -08001597status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001598 size_t size;
1599 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001600 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001601 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001602 // This occurs when writing a null byte vector.
1603 return OK;
1604 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001605 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001606}
1607
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001608status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const {
1609 size_t size;
1610 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1611 if (!*val) {
1612 // reserveOutVector does not create the out vector if size is < 0.
1613 // This occurs when writing a null byte vector.
1614 return OK;
1615 }
1616 return readByteVectorInternal(&**val, size);
1617}
1618
Casey Dahlin185d3442016-02-09 11:08:35 -08001619status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001620 size_t size;
1621 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001622 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001623 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001624 // This occurs when writing a null byte vector.
1625 return OK;
1626 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001627 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001628}
1629
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001630status_t Parcel::readInt32Vector(std::optional<std::vector<int32_t>>* val) const {
1631 return readNullableTypedVector(val, &Parcel::readInt32);
1632}
1633
Casey Dahlinb9872622015-11-25 15:09:45 -08001634status_t Parcel::readInt32Vector(std::unique_ptr<std::vector<int32_t>>* val) const {
1635 return readNullableTypedVector(val, &Parcel::readInt32);
1636}
1637
Casey Dahlin451ff582015-10-19 18:12:18 -07001638status_t Parcel::readInt32Vector(std::vector<int32_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001639 return readTypedVector(val, &Parcel::readInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -07001640}
1641
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001642status_t Parcel::readInt64Vector(std::optional<std::vector<int64_t>>* val) const {
1643 return readNullableTypedVector(val, &Parcel::readInt64);
1644}
1645
Casey Dahlinb9872622015-11-25 15:09:45 -08001646status_t Parcel::readInt64Vector(std::unique_ptr<std::vector<int64_t>>* val) const {
1647 return readNullableTypedVector(val, &Parcel::readInt64);
1648}
1649
Casey Dahlin451ff582015-10-19 18:12:18 -07001650status_t Parcel::readInt64Vector(std::vector<int64_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001651 return readTypedVector(val, &Parcel::readInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -07001652}
1653
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001654status_t Parcel::readUint64Vector(std::optional<std::vector<uint64_t>>* val) const {
1655 return readNullableTypedVector(val, &Parcel::readUint64);
1656}
1657
Kevin DuBois2f82d5b2018-12-05 12:56:10 -08001658status_t Parcel::readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const {
1659 return readNullableTypedVector(val, &Parcel::readUint64);
1660}
1661
1662status_t Parcel::readUint64Vector(std::vector<uint64_t>* val) const {
1663 return readTypedVector(val, &Parcel::readUint64);
1664}
1665
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001666status_t Parcel::readFloatVector(std::optional<std::vector<float>>* val) const {
1667 return readNullableTypedVector(val, &Parcel::readFloat);
1668}
1669
Casey Dahlinb9872622015-11-25 15:09:45 -08001670status_t Parcel::readFloatVector(std::unique_ptr<std::vector<float>>* val) const {
1671 return readNullableTypedVector(val, &Parcel::readFloat);
1672}
1673
Casey Dahlin451ff582015-10-19 18:12:18 -07001674status_t Parcel::readFloatVector(std::vector<float>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001675 return readTypedVector(val, &Parcel::readFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -07001676}
1677
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001678status_t Parcel::readDoubleVector(std::optional<std::vector<double>>* val) const {
1679 return readNullableTypedVector(val, &Parcel::readDouble);
1680}
1681
Casey Dahlinb9872622015-11-25 15:09:45 -08001682status_t Parcel::readDoubleVector(std::unique_ptr<std::vector<double>>* val) const {
1683 return readNullableTypedVector(val, &Parcel::readDouble);
1684}
1685
Casey Dahlin451ff582015-10-19 18:12:18 -07001686status_t Parcel::readDoubleVector(std::vector<double>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001687 return readTypedVector(val, &Parcel::readDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -07001688}
1689
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001690status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const {
1691 const int32_t start = dataPosition();
1692 int32_t size;
1693 status_t status = readInt32(&size);
1694 val->reset();
1695
1696 if (status != OK || size < 0) {
1697 return status;
1698 }
1699
1700 setDataPosition(start);
1701 val->emplace();
1702
1703 status = readBoolVector(&**val);
1704
1705 if (status != OK) {
1706 val->reset();
1707 }
1708
1709 return status;
1710}
1711
Casey Dahlinb9872622015-11-25 15:09:45 -08001712status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const {
1713 const int32_t start = dataPosition();
1714 int32_t size;
1715 status_t status = readInt32(&size);
1716 val->reset();
Casey Dahlin451ff582015-10-19 18:12:18 -07001717
Casey Dahlinb9872622015-11-25 15:09:45 -08001718 if (status != OK || size < 0) {
1719 return status;
1720 }
1721
1722 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001723 val->reset(new (std::nothrow) std::vector<bool>());
Casey Dahlinb9872622015-11-25 15:09:45 -08001724
1725 status = readBoolVector(val->get());
1726
1727 if (status != OK) {
1728 val->reset();
1729 }
1730
1731 return status;
1732}
1733
1734status_t Parcel::readBoolVector(std::vector<bool>* val) const {
Casey Dahlin451ff582015-10-19 18:12:18 -07001735 int32_t size;
1736 status_t status = readInt32(&size);
1737
1738 if (status != OK) {
1739 return status;
1740 }
1741
1742 if (size < 0) {
Christopher Wiley4db672d2015-11-10 09:44:30 -08001743 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07001744 }
1745
1746 val->resize(size);
1747
1748 /* C++ bool handling means a vector of bools isn't necessarily addressable
1749 * (we might use individual bits)
1750 */
Christopher Wiley97887982015-10-27 16:33:47 -07001751 bool data;
1752 for (int32_t i = 0; i < size; ++i) {
Casey Dahlin451ff582015-10-19 18:12:18 -07001753 status = readBool(&data);
1754 (*val)[i] = data;
1755
1756 if (status != OK) {
1757 return status;
1758 }
1759 }
1760
1761 return OK;
1762}
1763
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001764status_t Parcel::readCharVector(std::optional<std::vector<char16_t>>* val) const {
1765 return readNullableTypedVector(val, &Parcel::readChar);
1766}
1767
Casey Dahlinb9872622015-11-25 15:09:45 -08001768status_t Parcel::readCharVector(std::unique_ptr<std::vector<char16_t>>* val) const {
1769 return readNullableTypedVector(val, &Parcel::readChar);
1770}
1771
Casey Dahlin451ff582015-10-19 18:12:18 -07001772status_t Parcel::readCharVector(std::vector<char16_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001773 return readTypedVector(val, &Parcel::readChar);
Casey Dahlin451ff582015-10-19 18:12:18 -07001774}
1775
Casey Dahlinb9872622015-11-25 15:09:45 -08001776status_t Parcel::readString16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001777 std::optional<std::vector<std::optional<String16>>>* val) const {
1778 return readNullableTypedVector(val, &Parcel::readString16);
1779}
1780
1781status_t Parcel::readString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -08001782 std::unique_ptr<std::vector<std::unique_ptr<String16>>>* val) const {
1783 return readNullableTypedVector(val, &Parcel::readString16);
1784}
1785
Casey Dahlin451ff582015-10-19 18:12:18 -07001786status_t Parcel::readString16Vector(std::vector<String16>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001787 return readTypedVector(val, &Parcel::readString16);
Casey Dahlin451ff582015-10-19 18:12:18 -07001788}
1789
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001790status_t Parcel::readUtf8VectorFromUtf16Vector(
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001791 std::optional<std::vector<std::optional<std::string>>>* val) const {
1792 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1793}
1794
1795status_t Parcel::readUtf8VectorFromUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001796 std::unique_ptr<std::vector<std::unique_ptr<std::string>>>* val) const {
1797 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1798}
1799
1800status_t Parcel::readUtf8VectorFromUtf16Vector(std::vector<std::string>* val) const {
1801 return readTypedVector(val, &Parcel::readUtf8FromUtf16);
1802}
Casey Dahlin451ff582015-10-19 18:12:18 -07001803
Andreas Huber84a6d042009-08-17 13:33:27 -07001804status_t Parcel::readInt32(int32_t *pArg) const
1805{
1806 return readAligned(pArg);
1807}
1808
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001809int32_t Parcel::readInt32() const
1810{
Andreas Huber84a6d042009-08-17 13:33:27 -07001811 return readAligned<int32_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001812}
1813
Dan Stoza41a0f2f2014-12-01 10:01:10 -08001814status_t Parcel::readUint32(uint32_t *pArg) const
1815{
1816 return readAligned(pArg);
1817}
1818
1819uint32_t Parcel::readUint32() const
1820{
1821 return readAligned<uint32_t>();
1822}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001823
1824status_t Parcel::readInt64(int64_t *pArg) const
1825{
Andreas Huber84a6d042009-08-17 13:33:27 -07001826 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001827}
1828
1829
1830int64_t Parcel::readInt64() const
1831{
Andreas Huber84a6d042009-08-17 13:33:27 -07001832 return readAligned<int64_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001833}
1834
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001835status_t Parcel::readUint64(uint64_t *pArg) const
1836{
1837 return readAligned(pArg);
1838}
1839
1840uint64_t Parcel::readUint64() const
1841{
1842 return readAligned<uint64_t>();
1843}
1844
Serban Constantinescuf683e012013-11-05 16:53:55 +00001845status_t Parcel::readPointer(uintptr_t *pArg) const
1846{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001847 status_t ret;
1848 binder_uintptr_t ptr;
1849 ret = readAligned(&ptr);
1850 if (!ret)
1851 *pArg = ptr;
1852 return ret;
Serban Constantinescuf683e012013-11-05 16:53:55 +00001853}
1854
1855uintptr_t Parcel::readPointer() const
1856{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001857 return readAligned<binder_uintptr_t>();
Serban Constantinescuf683e012013-11-05 16:53:55 +00001858}
1859
1860
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001861status_t Parcel::readFloat(float *pArg) const
1862{
Andreas Huber84a6d042009-08-17 13:33:27 -07001863 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001864}
1865
1866
1867float Parcel::readFloat() const
1868{
Andreas Huber84a6d042009-08-17 13:33:27 -07001869 return readAligned<float>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001870}
1871
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001872#if defined(__mips__) && defined(__mips_hard_float)
1873
1874status_t Parcel::readDouble(double *pArg) const
1875{
1876 union {
1877 double d;
1878 unsigned long long ll;
1879 } u;
Narayan Kamath2c68d382014-06-04 15:04:29 +01001880 u.d = 0;
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001881 status_t status;
1882 status = readAligned(&u.ll);
1883 *pArg = u.d;
1884 return status;
1885}
1886
1887double Parcel::readDouble() const
1888{
1889 union {
1890 double d;
1891 unsigned long long ll;
1892 } u;
1893 u.ll = readAligned<unsigned long long>();
1894 return u.d;
1895}
1896
1897#else
1898
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001899status_t Parcel::readDouble(double *pArg) const
1900{
Andreas Huber84a6d042009-08-17 13:33:27 -07001901 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001902}
1903
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001904double Parcel::readDouble() const
1905{
Andreas Huber84a6d042009-08-17 13:33:27 -07001906 return readAligned<double>();
1907}
1908
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001909#endif
1910
Andreas Huber84a6d042009-08-17 13:33:27 -07001911status_t Parcel::readIntPtr(intptr_t *pArg) const
1912{
1913 return readAligned(pArg);
1914}
1915
1916
1917intptr_t Parcel::readIntPtr() const
1918{
1919 return readAligned<intptr_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001920}
1921
Casey Dahlind6848f52015-10-15 15:44:59 -07001922status_t Parcel::readBool(bool *pArg) const
1923{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001924 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001925 status_t ret = readInt32(&tmp);
1926 *pArg = (tmp != 0);
1927 return ret;
1928}
1929
1930bool Parcel::readBool() const
1931{
1932 return readInt32() != 0;
1933}
1934
1935status_t Parcel::readChar(char16_t *pArg) const
1936{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001937 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001938 status_t ret = readInt32(&tmp);
1939 *pArg = char16_t(tmp);
1940 return ret;
1941}
1942
1943char16_t Parcel::readChar() const
1944{
1945 return char16_t(readInt32());
1946}
1947
1948status_t Parcel::readByte(int8_t *pArg) const
1949{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001950 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001951 status_t ret = readInt32(&tmp);
1952 *pArg = int8_t(tmp);
1953 return ret;
1954}
1955
1956int8_t Parcel::readByte() const
1957{
1958 return int8_t(readInt32());
1959}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001960
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001961status_t Parcel::readUtf8FromUtf16(std::string* str) const {
1962 size_t utf16Size = 0;
1963 const char16_t* src = readString16Inplace(&utf16Size);
1964 if (!src) {
1965 return UNEXPECTED_NULL;
1966 }
1967
1968 // Save ourselves the trouble, we're done.
1969 if (utf16Size == 0u) {
1970 str->clear();
1971 return NO_ERROR;
1972 }
1973
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001974 // Allow for closing '\0'
1975 ssize_t utf8Size = utf16_to_utf8_length(src, utf16Size) + 1;
1976 if (utf8Size < 1) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001977 return BAD_VALUE;
1978 }
1979 // Note that while it is probably safe to assume string::resize keeps a
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001980 // spare byte around for the trailing null, we still pass the size including the trailing null
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001981 str->resize(utf8Size);
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001982 utf16_to_utf8(src, utf16Size, &((*str)[0]), utf8Size);
1983 str->resize(utf8Size - 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001984 return NO_ERROR;
1985}
1986
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001987status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const {
1988 const int32_t start = dataPosition();
1989 int32_t size;
1990 status_t status = readInt32(&size);
1991 str->reset();
1992
1993 if (status != OK || size < 0) {
1994 return status;
1995 }
1996
1997 setDataPosition(start);
1998 str->emplace();
1999 return readUtf8FromUtf16(&**str);
2000}
2001
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002002status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const {
2003 const int32_t start = dataPosition();
2004 int32_t size;
2005 status_t status = readInt32(&size);
2006 str->reset();
2007
2008 if (status != OK || size < 0) {
2009 return status;
2010 }
2011
2012 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002013 str->reset(new (std::nothrow) std::string());
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002014 return readUtf8FromUtf16(str->get());
2015}
2016
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002017const char* Parcel::readCString() const
2018{
Steven Morelandd0d4b582019-05-17 13:14:06 -07002019 if (mDataPos < mDataSize) {
2020 const size_t avail = mDataSize-mDataPos;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002021 const char* str = reinterpret_cast<const char*>(mData+mDataPos);
2022 // is the string's trailing NUL within the parcel's valid bounds?
2023 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
2024 if (eos) {
2025 const size_t len = eos - str;
Nick Kralevichb6b14232015-04-02 09:36:02 -07002026 mDataPos += pad_size(len+1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002027 ALOGV("readCString Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002028 return str;
2029 }
2030 }
Yi Kong91635562018-06-07 14:38:36 -07002031 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002032}
2033
2034String8 Parcel::readString8() const
2035{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002036 size_t len;
2037 const char* str = readString8Inplace(&len);
2038 if (str) return String8(str, len);
2039 ALOGE("Reading a NULL string not supported here.");
2040 return String8();
Roshan Pius87b64d22016-07-18 12:51:02 -07002041}
2042
2043status_t Parcel::readString8(String8* pArg) const
2044{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002045 size_t len;
2046 const char* str = readString8Inplace(&len);
2047 if (str) {
2048 pArg->setTo(str, len);
2049 return 0;
2050 } else {
Roshan Pius87b64d22016-07-18 12:51:02 -07002051 *pArg = String8();
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002052 return UNEXPECTED_NULL;
Roshan Pius87b64d22016-07-18 12:51:02 -07002053 }
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002054}
2055
2056const char* Parcel::readString8Inplace(size_t* outLen) const
2057{
2058 int32_t size = readInt32();
2059 // watch for potential int overflow from size+1
2060 if (size >= 0 && size < INT32_MAX) {
2061 *outLen = size;
2062 const char* str = (const char*)readInplace(size+1);
2063 if (str != nullptr) {
2064 return str;
2065 }
Roshan Pius87b64d22016-07-18 12:51:02 -07002066 }
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002067 *outLen = 0;
2068 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002069}
2070
2071String16 Parcel::readString16() const
2072{
2073 size_t len;
2074 const char16_t* str = readString16Inplace(&len);
2075 if (str) return String16(str, len);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002076 ALOGE("Reading a NULL string not supported here.");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002077 return String16();
2078}
2079
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09002080status_t Parcel::readString16(std::optional<String16>* pArg) const
2081{
2082 const int32_t start = dataPosition();
2083 int32_t size;
2084 status_t status = readInt32(&size);
2085 pArg->reset();
2086
2087 if (status != OK || size < 0) {
2088 return status;
2089 }
2090
2091 setDataPosition(start);
2092 pArg->emplace();
2093
2094 status = readString16(&**pArg);
2095
2096 if (status != OK) {
2097 pArg->reset();
2098 }
2099
2100 return status;
2101}
2102
Casey Dahlinb9872622015-11-25 15:09:45 -08002103status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const
2104{
2105 const int32_t start = dataPosition();
2106 int32_t size;
2107 status_t status = readInt32(&size);
2108 pArg->reset();
2109
2110 if (status != OK || size < 0) {
2111 return status;
2112 }
2113
2114 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002115 pArg->reset(new (std::nothrow) String16());
Casey Dahlinb9872622015-11-25 15:09:45 -08002116
2117 status = readString16(pArg->get());
2118
2119 if (status != OK) {
2120 pArg->reset();
2121 }
2122
2123 return status;
2124}
2125
Casey Dahlin451ff582015-10-19 18:12:18 -07002126status_t Parcel::readString16(String16* pArg) const
2127{
2128 size_t len;
2129 const char16_t* str = readString16Inplace(&len);
2130 if (str) {
Casey Dahlin1515ea12015-10-20 16:26:23 -07002131 pArg->setTo(str, len);
Casey Dahlin451ff582015-10-19 18:12:18 -07002132 return 0;
2133 } else {
2134 *pArg = String16();
Christopher Wiley4db672d2015-11-10 09:44:30 -08002135 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07002136 }
2137}
2138
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002139const char16_t* Parcel::readString16Inplace(size_t* outLen) const
2140{
2141 int32_t size = readInt32();
2142 // watch for potential int overflow from size+1
2143 if (size >= 0 && size < INT32_MAX) {
2144 *outLen = size;
2145 const char16_t* str = (const char16_t*)readInplace((size+1)*sizeof(char16_t));
Yi Kong91635562018-06-07 14:38:36 -07002146 if (str != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002147 return str;
2148 }
2149 }
2150 *outLen = 0;
Yi Kong91635562018-06-07 14:38:36 -07002151 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002152}
2153
Casey Dahlinf0c13772015-10-27 18:33:56 -07002154status_t Parcel::readStrongBinder(sp<IBinder>* val) const
2155{
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002156 status_t status = readNullableStrongBinder(val);
2157 if (status == OK && !val->get()) {
2158 status = UNEXPECTED_NULL;
2159 }
2160 return status;
2161}
2162
2163status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const
2164{
Steven Morelanda86a3562019-08-01 23:28:34 +00002165 return unflattenBinder(val);
Casey Dahlinf0c13772015-10-27 18:33:56 -07002166}
2167
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002168sp<IBinder> Parcel::readStrongBinder() const
2169{
2170 sp<IBinder> val;
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002171 // Note that a lot of code in Android reads binders by hand with this
2172 // method, and that code has historically been ok with getting nullptr
2173 // back (while ignoring error codes).
2174 readNullableStrongBinder(&val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002175 return val;
2176}
2177
Christopher Wiley97f048d2015-11-19 06:49:05 -08002178status_t Parcel::readParcelable(Parcelable* parcelable) const {
2179 int32_t have_parcelable = 0;
2180 status_t status = readInt32(&have_parcelable);
2181 if (status != OK) {
2182 return status;
2183 }
2184 if (!have_parcelable) {
2185 return UNEXPECTED_NULL;
2186 }
2187 return parcelable->readFromParcel(this);
2188}
2189
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002190int32_t Parcel::readExceptionCode() const
2191{
Christopher Wiley09eb7492015-11-09 15:06:15 -08002192 binder::Status status;
2193 status.readFromParcel(*this);
2194 return status.exceptionCode();
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002195}
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002196
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002197native_handle* Parcel::readNativeHandle() const
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002198{
2199 int numFds, numInts;
2200 status_t err;
2201 err = readInt32(&numFds);
Yi Kong91635562018-06-07 14:38:36 -07002202 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002203 err = readInt32(&numInts);
Yi Kong91635562018-06-07 14:38:36 -07002204 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002205
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002206 native_handle* h = native_handle_create(numFds, numInts);
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002207 if (!h) {
Yi Kong91635562018-06-07 14:38:36 -07002208 return nullptr;
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002209 }
2210
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002211 for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002212 h->data[i] = fcntl(readFileDescriptor(), F_DUPFD_CLOEXEC, 0);
Marco Nelissen1de79662016-04-26 08:44:09 -07002213 if (h->data[i] < 0) {
2214 for (int j = 0; j < i; j++) {
2215 close(h->data[j]);
2216 }
2217 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002218 return nullptr;
Marco Nelissen1de79662016-04-26 08:44:09 -07002219 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002220 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002221 err = read(h->data + numFds, sizeof(int)*numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002222 if (err != NO_ERROR) {
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002223 native_handle_close(h);
2224 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002225 h = nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002226 }
2227 return h;
2228}
2229
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002230int Parcel::readFileDescriptor() const
2231{
2232 const flat_binder_object* flat = readObject(true);
Casey Dahlin06673e32015-11-23 13:24:23 -08002233
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002234 if (flat && flat->hdr.type == BINDER_TYPE_FD) {
Casey Dahlin06673e32015-11-23 13:24:23 -08002235 return flat->handle;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002236 }
Casey Dahlin06673e32015-11-23 13:24:23 -08002237
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002238 return BAD_TYPE;
2239}
2240
Dianne Hackborn1941a402016-08-29 12:30:43 -07002241int Parcel::readParcelFileDescriptor() const
2242{
2243 int32_t hasComm = readInt32();
2244 int fd = readFileDescriptor();
2245 if (hasComm != 0) {
Steven Morelandb73806a2018-11-12 19:35:47 -08002246 // detach (owned by the binder driver)
2247 int comm = readFileDescriptor();
2248
2249 // warning: this must be kept in sync with:
2250 // frameworks/base/core/java/android/os/ParcelFileDescriptor.java
2251 enum ParcelFileDescriptorStatus {
2252 DETACHED = 2,
2253 };
2254
2255#if BYTE_ORDER == BIG_ENDIAN
2256 const int32_t message = ParcelFileDescriptorStatus::DETACHED;
2257#endif
2258#if BYTE_ORDER == LITTLE_ENDIAN
2259 const int32_t message = __builtin_bswap32(ParcelFileDescriptorStatus::DETACHED);
2260#endif
2261
2262 ssize_t written = TEMP_FAILURE_RETRY(
2263 ::write(comm, &message, sizeof(message)));
2264
2265 if (written == -1 || written != sizeof(message)) {
2266 ALOGW("Failed to detach ParcelFileDescriptor written: %zd err: %s",
2267 written, strerror(errno));
2268 return BAD_TYPE;
2269 }
Dianne Hackborn1941a402016-08-29 12:30:43 -07002270 }
2271 return fd;
2272}
2273
Christopher Wiley2cf19952016-04-11 11:09:37 -07002274status_t Parcel::readUniqueFileDescriptor(base::unique_fd* val) const
Casey Dahlin06673e32015-11-23 13:24:23 -08002275{
2276 int got = readFileDescriptor();
2277
2278 if (got == BAD_TYPE) {
2279 return BAD_TYPE;
2280 }
2281
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002282 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
Casey Dahlin06673e32015-11-23 13:24:23 -08002283
2284 if (val->get() < 0) {
2285 return BAD_VALUE;
2286 }
2287
2288 return OK;
2289}
2290
Ryo Hashimotobf551892018-05-31 16:58:35 +09002291status_t Parcel::readUniqueParcelFileDescriptor(base::unique_fd* val) const
2292{
2293 int got = readParcelFileDescriptor();
2294
2295 if (got == BAD_TYPE) {
2296 return BAD_TYPE;
2297 }
2298
2299 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
2300
2301 if (val->get() < 0) {
2302 return BAD_VALUE;
2303 }
2304
2305 return OK;
2306}
Casey Dahlin06673e32015-11-23 13:24:23 -08002307
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09002308status_t Parcel::readUniqueFileDescriptorVector(std::optional<std::vector<base::unique_fd>>* val) const {
2309 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2310}
2311
Christopher Wiley2cf19952016-04-11 11:09:37 -07002312status_t Parcel::readUniqueFileDescriptorVector(std::unique_ptr<std::vector<base::unique_fd>>* val) const {
Casey Dahlinb9872622015-11-25 15:09:45 -08002313 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2314}
2315
Christopher Wiley2cf19952016-04-11 11:09:37 -07002316status_t Parcel::readUniqueFileDescriptorVector(std::vector<base::unique_fd>* val) const {
Casey Dahlin06673e32015-11-23 13:24:23 -08002317 return readTypedVector(val, &Parcel::readUniqueFileDescriptor);
2318}
2319
Jeff Brown5707dbf2011-09-23 21:17:56 -07002320status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
2321{
Jeff Brown13b16042014-11-11 16:44:25 -08002322 int32_t blobType;
2323 status_t status = readInt32(&blobType);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002324 if (status) return status;
2325
Jeff Brown13b16042014-11-11 16:44:25 -08002326 if (blobType == BLOB_INPLACE) {
Steve Block6807e592011-10-20 11:56:00 +01002327 ALOGV("readBlob: read in place");
Jeff Brown5707dbf2011-09-23 21:17:56 -07002328 const void* ptr = readInplace(len);
2329 if (!ptr) return BAD_VALUE;
2330
Jeff Brown13b16042014-11-11 16:44:25 -08002331 outBlob->init(-1, const_cast<void*>(ptr), len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002332 return NO_ERROR;
2333 }
2334
Steve Block6807e592011-10-20 11:56:00 +01002335 ALOGV("readBlob: read from ashmem");
Jeff Brown13b16042014-11-11 16:44:25 -08002336 bool isMutable = (blobType == BLOB_ASHMEM_MUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002337 int fd = readFileDescriptor();
2338 if (fd == int(BAD_TYPE)) return BAD_VALUE;
2339
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002340 if (!ashmem_valid(fd)) {
2341 ALOGE("invalid fd");
2342 return BAD_VALUE;
2343 }
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002344 int size = ashmem_get_size_region(fd);
2345 if (size < 0 || size_t(size) < len) {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002346 ALOGE("request size %zu does not match fd size %d", len, size);
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002347 return BAD_VALUE;
2348 }
Yi Kong91635562018-06-07 14:38:36 -07002349 void* ptr = ::mmap(nullptr, len, isMutable ? PROT_READ | PROT_WRITE : PROT_READ,
Jeff Brown13b16042014-11-11 16:44:25 -08002350 MAP_SHARED, fd, 0);
Narayan Kamath9ea09752014-10-08 17:35:45 +01002351 if (ptr == MAP_FAILED) return NO_MEMORY;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002352
Jeff Brown13b16042014-11-11 16:44:25 -08002353 outBlob->init(fd, ptr, len, isMutable);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002354 return NO_ERROR;
2355}
2356
Mathias Agopiane1424282013-07-29 21:24:40 -07002357status_t Parcel::read(FlattenableHelperInterface& val) const
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002358{
2359 // size
2360 const size_t len = this->readInt32();
2361 const size_t fd_count = this->readInt32();
2362
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002363 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07002364 // don't accept size_t values which may have come from an
2365 // inadvertent conversion from a negative int.
2366 return BAD_VALUE;
2367 }
2368
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002369 // payload
Nick Kralevichb6b14232015-04-02 09:36:02 -07002370 void const* const buf = this->readInplace(pad_size(len));
Yi Kong91635562018-06-07 14:38:36 -07002371 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002372 return BAD_VALUE;
2373
Yi Kong91635562018-06-07 14:38:36 -07002374 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002375 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002376 fds = new (std::nothrow) int[fd_count];
2377 if (fds == nullptr) {
2378 ALOGE("read: failed to allocate requested %zu fds", fd_count);
2379 return BAD_VALUE;
2380 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002381 }
2382
2383 status_t err = NO_ERROR;
2384 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
Fabien Sanglardd84ff312016-10-21 10:58:26 -07002385 int fd = this->readFileDescriptor();
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002386 if (fd < 0 || ((fds[i] = fcntl(fd, F_DUPFD_CLOEXEC, 0)) < 0)) {
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002387 err = BAD_VALUE;
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002388 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 -07002389 i, fds[i], fd_count, strerror(fd < 0 ? -fd : errno));
2390 // Close all the file descriptors that were dup-ed.
2391 for (size_t j=0; j<i ;j++) {
2392 close(fds[j]);
2393 }
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002394 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002395 }
2396
2397 if (err == NO_ERROR) {
2398 err = val.unflatten(buf, len, fds, fd_count);
2399 }
2400
2401 if (fd_count) {
2402 delete [] fds;
2403 }
2404
2405 return err;
2406}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002407const flat_binder_object* Parcel::readObject(bool nullMetaData) const
2408{
2409 const size_t DPOS = mDataPos;
2410 if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
2411 const flat_binder_object* obj
2412 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
2413 mDataPos = DPOS + sizeof(flat_binder_object);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002414 if (!nullMetaData && (obj->cookie == 0 && obj->binder == 0)) {
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002415 // When transferring a NULL object, we don't write it into
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002416 // the object list, so we don't want to check for it when
2417 // reading.
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002418 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002419 return obj;
2420 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002421
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002422 // Ensure that this object is valid...
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002423 binder_size_t* const OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002424 const size_t N = mObjectsSize;
2425 size_t opos = mNextObjectHint;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002426
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002427 if (N > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002428 ALOGV("Parcel %p looking for obj at %zu, hint=%zu",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002429 this, DPOS, opos);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002430
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002431 // Start at the current hint position, looking for an object at
2432 // the current data position.
2433 if (opos < N) {
2434 while (opos < (N-1) && OBJS[opos] < DPOS) {
2435 opos++;
2436 }
2437 } else {
2438 opos = N-1;
2439 }
2440 if (OBJS[opos] == DPOS) {
2441 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002442 ALOGV("Parcel %p found obj %zu at index %zu with forward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002443 this, DPOS, opos);
2444 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002445 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002446 return obj;
2447 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002448
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002449 // Look backwards for it...
2450 while (opos > 0 && OBJS[opos] > DPOS) {
2451 opos--;
2452 }
2453 if (OBJS[opos] == DPOS) {
2454 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002455 ALOGV("Parcel %p found obj %zu at index %zu with backward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002456 this, DPOS, opos);
2457 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002458 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002459 return obj;
2460 }
2461 }
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002462 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 -07002463 this, DPOS);
2464 }
Yi Kong91635562018-06-07 14:38:36 -07002465 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002466}
2467
2468void Parcel::closeFileDescriptors()
2469{
2470 size_t i = mObjectsSize;
2471 if (i > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002472 //ALOGI("Closing file descriptors for %zu objects...", i);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002473 }
2474 while (i > 0) {
2475 i--;
2476 const flat_binder_object* flat
2477 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002478 if (flat->hdr.type == BINDER_TYPE_FD) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002479 //ALOGI("Closing fd: %ld", flat->handle);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002480 close(flat->handle);
2481 }
2482 }
2483}
2484
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002485uintptr_t Parcel::ipcData() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002486{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002487 return reinterpret_cast<uintptr_t>(mData);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002488}
2489
2490size_t Parcel::ipcDataSize() const
2491{
2492 return (mDataSize > mDataPos ? mDataSize : mDataPos);
2493}
2494
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002495uintptr_t Parcel::ipcObjects() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002496{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002497 return reinterpret_cast<uintptr_t>(mObjects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002498}
2499
2500size_t Parcel::ipcObjectsCount() const
2501{
2502 return mObjectsSize;
2503}
2504
2505void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002506 const binder_size_t* objects, size_t objectsCount, release_func relFunc, void* relCookie)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002507{
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002508 binder_size_t minOffset = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002509 freeDataNoInit();
2510 mError = NO_ERROR;
2511 mData = const_cast<uint8_t*>(data);
2512 mDataSize = mDataCapacity = dataSize;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002513 //ALOGI("setDataReference Setting data size of %p to %lu (pid=%d)", this, mDataSize, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002514 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002515 ALOGV("setDataReference Setting data pos of %p to %zu", this, mDataPos);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002516 mObjects = const_cast<binder_size_t*>(objects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002517 mObjectsSize = mObjectsCapacity = objectsCount;
2518 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002519 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002520 mOwner = relFunc;
2521 mOwnerCookie = relCookie;
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002522 for (size_t i = 0; i < mObjectsSize; i++) {
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002523 binder_size_t offset = mObjects[i];
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002524 if (offset < minOffset) {
Dan Albert3bdc5b82014-11-20 11:50:23 -08002525 ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002526 __func__, (uint64_t)offset, (uint64_t)minOffset);
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002527 mObjectsSize = 0;
2528 break;
2529 }
Martijn Coenen82c75312019-07-24 15:18:30 +02002530 const flat_binder_object* flat
2531 = reinterpret_cast<const flat_binder_object*>(mData + offset);
2532 uint32_t type = flat->hdr.type;
2533 if (!(type == BINDER_TYPE_BINDER || type == BINDER_TYPE_HANDLE ||
2534 type == BINDER_TYPE_FD)) {
2535 // We should never receive other types (eg BINDER_TYPE_FDA) as long as we don't support
2536 // them in libbinder. If we do receive them, it probably means a kernel bug; try to
2537 // recover gracefully by clearing out the objects, and releasing the objects we do
2538 // know about.
2539 android_errorWriteLog(0x534e4554, "135930648");
2540 ALOGE("%s: unsupported type object (%" PRIu32 ") at offset %" PRIu64 "\n",
2541 __func__, type, (uint64_t)offset);
2542 releaseObjects();
2543 mObjectsSize = 0;
2544 break;
2545 }
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002546 minOffset = offset + sizeof(flat_binder_object);
2547 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002548 scanForFds();
2549}
2550
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002551void Parcel::print(TextOutput& to, uint32_t /*flags*/) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002552{
2553 to << "Parcel(";
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002554
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002555 if (errorCheck() != NO_ERROR) {
2556 const status_t err = errorCheck();
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002557 to << "Error: " << (void*)(intptr_t)err << " \"" << strerror(-err) << "\"";
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002558 } else if (dataSize() > 0) {
2559 const uint8_t* DATA = data();
2560 to << indent << HexDump(DATA, dataSize()) << dedent;
Steven Moreland8bd01352019-07-15 16:36:14 -07002561 const binder_size_t* OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002562 const size_t N = objectsCount();
2563 for (size_t i=0; i<N; i++) {
2564 const flat_binder_object* flat
2565 = reinterpret_cast<const flat_binder_object*>(DATA+OBJS[i]);
2566 to << endl << "Object #" << i << " @ " << (void*)OBJS[i] << ": "
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002567 << TypeCode(flat->hdr.type & 0x7f7f7f00)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002568 << " = " << flat->binder;
2569 }
2570 } else {
2571 to << "NULL";
2572 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002573
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002574 to << ")";
2575}
2576
2577void Parcel::releaseObjects()
2578{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002579 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002580 if (i == 0) {
2581 return;
2582 }
2583 sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002584 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002585 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002586 while (i > 0) {
2587 i--;
2588 const flat_binder_object* flat
2589 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002590 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002591 }
2592}
2593
2594void Parcel::acquireObjects()
2595{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002596 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002597 if (i == 0) {
2598 return;
2599 }
2600 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002601 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002602 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002603 while (i > 0) {
2604 i--;
2605 const flat_binder_object* flat
2606 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002607 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002608 }
2609}
2610
2611void Parcel::freeData()
2612{
2613 freeDataNoInit();
2614 initState();
2615}
2616
2617void Parcel::freeDataNoInit()
2618{
2619 if (mOwner) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002620 LOG_ALLOC("Parcel %p: freeing other owner data", this);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002621 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002622 mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
2623 } else {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002624 LOG_ALLOC("Parcel %p: freeing allocated data", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002625 releaseObjects();
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002626 if (mData) {
2627 LOG_ALLOC("Parcel %p: freeing with %zu capacity", this, mDataCapacity);
Jeff Sharkey8994c182020-09-11 12:07:10 -06002628 gParcelGlobalAllocSize -= mDataCapacity;
2629 gParcelGlobalAllocCount--;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002630 free(mData);
2631 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002632 if (mObjects) free(mObjects);
2633 }
2634}
2635
2636status_t Parcel::growData(size_t len)
2637{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002638 if (len > INT32_MAX) {
2639 // don't accept size_t values which may have come from an
2640 // inadvertent conversion from a negative int.
2641 return BAD_VALUE;
2642 }
2643
Martijn Coenen93fe5182020-01-22 10:46:25 +01002644 if (len > SIZE_MAX - mDataSize) return NO_MEMORY; // overflow
2645 if (mDataSize + len > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002646 size_t newSize = ((mDataSize+len)*3)/2;
2647 return (newSize <= mDataSize)
2648 ? (status_t) NO_MEMORY
Steven Moreland042ae822020-05-27 17:45:17 +00002649 : continueWrite(std::max(newSize, (size_t) 128));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002650}
2651
2652status_t Parcel::restartWrite(size_t desired)
2653{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002654 if (desired > INT32_MAX) {
2655 // don't accept size_t values which may have come from an
2656 // inadvertent conversion from a negative int.
2657 return BAD_VALUE;
2658 }
2659
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002660 if (mOwner) {
2661 freeData();
2662 return continueWrite(desired);
2663 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002664
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002665 uint8_t* data = (uint8_t*)realloc(mData, desired);
2666 if (!data && desired > mDataCapacity) {
2667 mError = NO_MEMORY;
2668 return NO_MEMORY;
2669 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002670
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002671 releaseObjects();
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002672
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002673 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002674 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
Jeff Sharkey8994c182020-09-11 12:07:10 -06002675 if (mDataCapacity > desired) {
2676 gParcelGlobalAllocSize -= (mDataCapacity - desired);
2677 } else {
2678 gParcelGlobalAllocSize += (desired - mDataCapacity);
2679 }
2680
Colin Cross83ec65e2015-12-08 17:15:50 -08002681 if (!mData) {
2682 gParcelGlobalAllocCount++;
2683 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002684 mData = data;
2685 mDataCapacity = desired;
2686 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002687
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002688 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002689 ALOGV("restartWrite Setting data size of %p to %zu", this, mDataSize);
2690 ALOGV("restartWrite Setting data pos of %p to %zu", this, mDataPos);
2691
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002692 free(mObjects);
Yi Kong91635562018-06-07 14:38:36 -07002693 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002694 mObjectsSize = mObjectsCapacity = 0;
2695 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002696 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002697 mHasFds = false;
2698 mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -04002699 mAllowFds = true;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002700
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002701 return NO_ERROR;
2702}
2703
2704status_t Parcel::continueWrite(size_t desired)
2705{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002706 if (desired > INT32_MAX) {
2707 // don't accept size_t values which may have come from an
2708 // inadvertent conversion from a negative int.
2709 return BAD_VALUE;
2710 }
2711
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002712 // If shrinking, first adjust for any objects that appear
2713 // after the new data size.
2714 size_t objectsSize = mObjectsSize;
2715 if (desired < mDataSize) {
2716 if (desired == 0) {
2717 objectsSize = 0;
2718 } else {
2719 while (objectsSize > 0) {
Michael Wachenschwanza6541632017-05-18 22:08:32 +00002720 if (mObjects[objectsSize-1] < desired)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002721 break;
2722 objectsSize--;
2723 }
2724 }
2725 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002726
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002727 if (mOwner) {
2728 // If the size is going to zero, just release the owner's data.
2729 if (desired == 0) {
2730 freeData();
2731 return NO_ERROR;
2732 }
2733
2734 // If there is a different owner, we need to take
2735 // posession.
2736 uint8_t* data = (uint8_t*)malloc(desired);
2737 if (!data) {
2738 mError = NO_MEMORY;
2739 return NO_MEMORY;
2740 }
Yi Kong91635562018-06-07 14:38:36 -07002741 binder_size_t* objects = nullptr;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002742
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002743 if (objectsSize) {
Nick Kraleviche9881a32015-04-28 16:21:30 -07002744 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002745 if (!objects) {
Hyejin Kim3f727c02013-03-09 11:28:54 +09002746 free(data);
2747
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002748 mError = NO_MEMORY;
2749 return NO_MEMORY;
2750 }
2751
2752 // Little hack to only acquire references on objects
2753 // we will be keeping.
2754 size_t oldObjectsSize = mObjectsSize;
2755 mObjectsSize = objectsSize;
2756 acquireObjects();
2757 mObjectsSize = oldObjectsSize;
2758 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002759
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002760 if (mData) {
2761 memcpy(data, mData, mDataSize < desired ? mDataSize : desired);
2762 }
2763 if (objects && mObjects) {
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002764 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002765 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002766 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002767 mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
Yi Kong91635562018-06-07 14:38:36 -07002768 mOwner = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002769
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002770 LOG_ALLOC("Parcel %p: taking ownership of %zu capacity", this, desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002771 gParcelGlobalAllocSize += desired;
2772 gParcelGlobalAllocCount++;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002773
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002774 mData = data;
2775 mObjects = objects;
2776 mDataSize = (mDataSize < desired) ? mDataSize : desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002777 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002778 mDataCapacity = desired;
2779 mObjectsSize = mObjectsCapacity = objectsSize;
2780 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002781 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002782
2783 } else if (mData) {
2784 if (objectsSize < mObjectsSize) {
2785 // Need to release refs on any objects we are dropping.
2786 const sp<ProcessState> proc(ProcessState::self());
2787 for (size_t i=objectsSize; i<mObjectsSize; i++) {
2788 const flat_binder_object* flat
2789 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002790 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002791 // will need to rescan because we may have lopped off the only FDs
2792 mFdsKnown = false;
2793 }
Adrian Rooscbf37262015-10-22 16:12:53 -07002794 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002795 }
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002796
2797 if (objectsSize == 0) {
2798 free(mObjects);
2799 mObjects = nullptr;
Michael Wachenschwanzdaf29a62019-10-15 11:49:22 -07002800 mObjectsCapacity = 0;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002801 } else {
2802 binder_size_t* objects =
2803 (binder_size_t*)realloc(mObjects, objectsSize*sizeof(binder_size_t));
2804 if (objects) {
2805 mObjects = objects;
Michael Wachenschwanzdaf29a62019-10-15 11:49:22 -07002806 mObjectsCapacity = objectsSize;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002807 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002808 }
2809 mObjectsSize = objectsSize;
2810 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002811 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002812 }
2813
2814 // We own the data, so we can just do a realloc().
2815 if (desired > mDataCapacity) {
2816 uint8_t* data = (uint8_t*)realloc(mData, desired);
2817 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002818 LOG_ALLOC("Parcel %p: continue from %zu to %zu capacity", this, mDataCapacity,
2819 desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002820 gParcelGlobalAllocSize += desired;
2821 gParcelGlobalAllocSize -= mDataCapacity;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002822 mData = data;
2823 mDataCapacity = desired;
Ganesh Mahendranade89892017-09-28 16:56:03 +08002824 } else {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002825 mError = NO_MEMORY;
2826 return NO_MEMORY;
2827 }
2828 } else {
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002829 if (mDataSize > desired) {
2830 mDataSize = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002831 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002832 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002833 if (mDataPos > desired) {
2834 mDataPos = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002835 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002836 }
2837 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002838
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002839 } else {
2840 // This is the first data. Easy!
2841 uint8_t* data = (uint8_t*)malloc(desired);
2842 if (!data) {
2843 mError = NO_MEMORY;
2844 return NO_MEMORY;
2845 }
Hyejin Kim3f727c02013-03-09 11:28:54 +09002846
Yi Kong91635562018-06-07 14:38:36 -07002847 if(!(mDataCapacity == 0 && mObjects == nullptr
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002848 && mObjectsCapacity == 0)) {
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002849 ALOGE("continueWrite: %zu/%p/%zu/%zu", mDataCapacity, mObjects, mObjectsCapacity, desired);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002850 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002851
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002852 LOG_ALLOC("Parcel %p: allocating with %zu capacity", this, desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002853 gParcelGlobalAllocSize += desired;
2854 gParcelGlobalAllocCount++;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002855
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002856 mData = data;
2857 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002858 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
2859 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002860 mDataCapacity = desired;
2861 }
2862
2863 return NO_ERROR;
2864}
2865
2866void Parcel::initState()
2867{
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002868 LOG_ALLOC("Parcel %p: initState", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002869 mError = NO_ERROR;
Yi Kong91635562018-06-07 14:38:36 -07002870 mData = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002871 mDataSize = 0;
2872 mDataCapacity = 0;
2873 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002874 ALOGV("initState Setting data size of %p to %zu", this, mDataSize);
2875 ALOGV("initState Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07002876 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002877 mObjectsSize = 0;
2878 mObjectsCapacity = 0;
2879 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002880 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002881 mHasFds = false;
2882 mFdsKnown = true;
Steven Moreland6e5a7752019-08-05 20:30:14 -07002883 mAllowFds = true;
Yi Kong91635562018-06-07 14:38:36 -07002884 mOwner = nullptr;
Adrian Rooscbf37262015-10-22 16:12:53 -07002885 mOpenAshmemSize = 0;
Olivier Gaillarddc848a02019-01-30 17:10:44 +00002886 mWorkSourceRequestHeaderPosition = 0;
2887 mRequestHeaderPresent = false;
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002888
2889 // racing multiple init leads only to multiple identical write
2890 if (gMaxFds == 0) {
2891 struct rlimit result;
2892 if (!getrlimit(RLIMIT_NOFILE, &result)) {
2893 gMaxFds = (size_t)result.rlim_cur;
Christopher Tatebf14e942016-03-25 14:16:24 -07002894 //ALOGI("parcel fd limit set to %zu", gMaxFds);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002895 } else {
2896 ALOGW("Unable to getrlimit: %s", strerror(errno));
2897 gMaxFds = 1024;
2898 }
2899 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002900}
2901
2902void Parcel::scanForFds() const
2903{
2904 bool hasFds = false;
2905 for (size_t i=0; i<mObjectsSize; i++) {
2906 const flat_binder_object* flat
2907 = reinterpret_cast<const flat_binder_object*>(mData + mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002908 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002909 hasFds = true;
2910 break;
2911 }
2912 }
2913 mHasFds = hasFds;
2914 mFdsKnown = true;
2915}
2916
Dan Sandleraa5c2342015-04-10 10:08:45 -04002917size_t Parcel::getBlobAshmemSize() const
2918{
Adrian Roos6bb31142015-10-22 16:46:12 -07002919 // This used to return the size of all blobs that were written to ashmem, now we're returning
2920 // the ashmem currently referenced by this Parcel, which should be equivalent.
2921 // TODO: Remove method once ABI can be changed.
2922 return mOpenAshmemSize;
Dan Sandleraa5c2342015-04-10 10:08:45 -04002923}
2924
Adrian Rooscbf37262015-10-22 16:12:53 -07002925size_t Parcel::getOpenAshmemSize() const
2926{
2927 return mOpenAshmemSize;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002928}
2929
2930// --- Parcel::Blob ---
2931
2932Parcel::Blob::Blob() :
Yi Kong91635562018-06-07 14:38:36 -07002933 mFd(-1), mData(nullptr), mSize(0), mMutable(false) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002934}
2935
2936Parcel::Blob::~Blob() {
2937 release();
2938}
2939
2940void Parcel::Blob::release() {
Jeff Brown13b16042014-11-11 16:44:25 -08002941 if (mFd != -1 && mData) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002942 ::munmap(mData, mSize);
2943 }
2944 clear();
2945}
2946
Jeff Brown13b16042014-11-11 16:44:25 -08002947void Parcel::Blob::init(int fd, void* data, size_t size, bool isMutable) {
2948 mFd = fd;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002949 mData = data;
2950 mSize = size;
Jeff Brown13b16042014-11-11 16:44:25 -08002951 mMutable = isMutable;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002952}
2953
2954void Parcel::Blob::clear() {
Jeff Brown13b16042014-11-11 16:44:25 -08002955 mFd = -1;
Yi Kong91635562018-06-07 14:38:36 -07002956 mData = nullptr;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002957 mSize = 0;
Jeff Brown13b16042014-11-11 16:44:25 -08002958 mMutable = false;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002959}
2960
Steven Moreland61ff8492019-09-26 16:05:45 -07002961} // namespace android