blob: 91e465f5a4bbb3a266ff3ac9ca5527d36adda763 [file] [log] [blame]
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2005 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "Parcel"
18//#define LOG_NDEBUG 0
19
Mark Salyzynabed7f72016-01-27 08:02:48 -080020#include <errno.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080021#include <fcntl.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080022#include <inttypes.h>
Steven Morelandbf1915b2020-07-16 22:43:02 +000023#include <linux/sched.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080024#include <pthread.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080025#include <stdint.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <sys/mman.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080029#include <sys/stat.h>
30#include <sys/types.h>
Christopher Tatee4e0ae82016-03-24 16:03:44 -070031#include <sys/resource.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080032#include <unistd.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070033
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070034#include <binder/Binder.h>
35#include <binder/BpBinder.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080036#include <binder/IPCThreadState.h>
37#include <binder/Parcel.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070038#include <binder/ProcessState.h>
Steven Moreland6e5a7752019-08-05 20:30:14 -070039#include <binder/Stability.h>
Christopher Wiley09eb7492015-11-09 15:06:15 -080040#include <binder/Status.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070041#include <binder/TextOutput.h>
42
Mark Salyzynabed7f72016-01-27 08:02:48 -080043#include <cutils/ashmem.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080044#include <utils/Flattenable.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070045#include <utils/Log.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080046#include <utils/misc.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070047#include <utils/String8.h>
48#include <utils/String16.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070049
Mathias Agopian208059f2009-05-18 15:08:03 -070050#include <private/binder/binder_module.h>
Steven Morelanda4853cd2019-07-12 15:44:37 -070051#include "Static.h"
Steven Morelandf183fdd2020-10-27 00:12:12 +000052#include "Utils.h"
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070053
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070054#define LOG_REFS(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080055//#define LOG_REFS(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
Dianne Hackborn7e790af2014-11-11 12:22:53 -080056#define LOG_ALLOC(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080057//#define LOG_ALLOC(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070058
59// ---------------------------------------------------------------------------
60
Nick Kralevichb6b14232015-04-02 09:36:02 -070061// This macro should never be used at runtime, as a too large value
62// of s could cause an integer overflow. Instead, you should always
63// use the wrapper function pad_size()
64#define PAD_SIZE_UNSAFE(s) (((s)+3)&~3)
65
66static size_t pad_size(size_t s) {
Steven Moreland28723ae2019-04-01 18:52:30 -070067 if (s > (std::numeric_limits<size_t>::max() - 3)) {
Steven Moreland6adf33c2019-09-25 13:18:09 -070068 LOG_ALWAYS_FATAL("pad size too big %zu", s);
Nick Kralevichb6b14232015-04-02 09:36:02 -070069 }
70 return PAD_SIZE_UNSAFE(s);
71}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070072
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070073// Note: must be kept in sync with android/os/StrictMode.java's PENALTY_GATHER
Jeff Sharkey05827be2018-06-26 10:52:38 -060074#define STRICT_MODE_PENALTY_GATHER (1 << 31)
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070075
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070076namespace android {
77
Steven Moreland7b102262019-08-01 15:48:43 -070078// many things compile this into prebuilts on the stack
79static_assert(sizeof(Parcel) == 60 || sizeof(Parcel) == 120);
80
Jeff Sharkey8994c182020-09-11 12:07:10 -060081static std::atomic<size_t> gParcelGlobalAllocCount;
82static std::atomic<size_t> gParcelGlobalAllocSize;
Dianne Hackborna4cff882014-11-13 17:07:40 -080083
Christopher Tatee4e0ae82016-03-24 16:03:44 -070084static size_t gMaxFds = 0;
85
Jeff Brown13b16042014-11-11 16:44:25 -080086// Maximum size of a blob to transfer in-place.
87static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
88
89enum {
90 BLOB_INPLACE = 0,
91 BLOB_ASHMEM_IMMUTABLE = 1,
92 BLOB_ASHMEM_MUTABLE = 2,
93};
94
Steven Morelandb1c81202019-04-05 18:49:55 -070095static void acquire_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -070096 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070097{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -070098 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070099 case BINDER_TYPE_BINDER:
100 if (obj.binder) {
101 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800102 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700103 }
104 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700105 case BINDER_TYPE_HANDLE: {
106 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700107 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700108 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
109 b->incStrong(who);
110 }
111 return;
112 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700113 case BINDER_TYPE_FD: {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000114 if ((obj.cookie != 0) && (outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700115 // If we own an ashmem fd, keep track of how much memory it refers to.
116 int size = ashmem_get_size_region(obj.handle);
117 if (size > 0) {
118 *outAshmemSize += size;
Adrian Rooscbf37262015-10-22 16:12:53 -0700119 }
120 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700121 return;
122 }
123 }
124
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700125 ALOGD("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700126}
127
Adrian Roos6bb31142015-10-22 16:46:12 -0700128static void release_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -0700129 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700130{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700131 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700132 case BINDER_TYPE_BINDER:
133 if (obj.binder) {
134 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800135 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700136 }
137 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700138 case BINDER_TYPE_HANDLE: {
139 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700140 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700141 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
142 b->decStrong(who);
143 }
144 return;
145 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700146 case BINDER_TYPE_FD: {
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800147 if (obj.cookie != 0) { // owned
Jorim Jaggi150b4ef2018-07-13 11:18:30 +0000148 if ((outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700149 int size = ashmem_get_size_region(obj.handle);
150 if (size > 0) {
Tri Voaa6e1112019-01-29 13:23:46 -0800151 // ashmem size might have changed since last time it was accounted for, e.g.
152 // in acquire_object(). Value of *outAshmemSize is not critical since we are
153 // releasing the object anyway. Check for integer overflow condition.
154 *outAshmemSize -= std::min(*outAshmemSize, static_cast<size_t>(size));
Adrian Roos6bb31142015-10-22 16:46:12 -0700155 }
Adrian Roos6bb31142015-10-22 16:46:12 -0700156 }
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800157
158 close(obj.handle);
Adrian Rooscbf37262015-10-22 16:12:53 -0700159 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700160 return;
161 }
162 }
163
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700164 ALOGE("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700165}
166
Steven Moreland34b48cb2020-12-01 22:45:38 +0000167status_t Parcel::finishFlattenBinder(const sp<IBinder>& binder)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700168{
Steven Moreland6e5a7752019-08-05 20:30:14 -0700169 internal::Stability::tryMarkCompilationUnit(binder.get());
Steven Moreland89ddfc52020-11-13 02:39:26 +0000170 auto category = internal::Stability::getCategory(binder.get());
171 return writeInt32(category.repr());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700172}
173
Steven Morelanda86a3562019-08-01 23:28:34 +0000174status_t Parcel::finishUnflattenBinder(
175 const sp<IBinder>& binder, sp<IBinder>* out) const
176{
177 int32_t stability;
178 status_t status = readInt32(&stability);
179 if (status != OK) return status;
180
Steven Moreland89ddfc52020-11-13 02:39:26 +0000181 status = internal::Stability::setRepr(binder.get(), stability, true /*log*/);
Steven Morelanda86a3562019-08-01 23:28:34 +0000182 if (status != OK) return status;
183
184 *out = binder;
185 return OK;
186}
187
Steven Morelandbf1915b2020-07-16 22:43:02 +0000188static constexpr inline int schedPolicyMask(int policy, int priority) {
189 return (priority & FLAT_BINDER_FLAG_PRIORITY_MASK) | ((policy & 3) << FLAT_BINDER_FLAG_SCHED_POLICY_SHIFT);
190}
191
Steven Morelanda86a3562019-08-01 23:28:34 +0000192status_t Parcel::flattenBinder(const sp<IBinder>& binder)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700193{
194 flat_binder_object obj;
Steven Morelandbf1915b2020-07-16 22:43:02 +0000195 obj.flags = FLAT_BINDER_FLAG_ACCEPTS_FDS;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700196
Steven Morelandbf1915b2020-07-16 22:43:02 +0000197 int schedBits = 0;
198 if (!IPCThreadState::self()->backgroundSchedulingDisabled()) {
199 schedBits = schedPolicyMask(SCHED_NORMAL, 19);
Martijn Coenen2b631742017-05-05 11:16:59 -0700200 }
201
Yi Kong91635562018-06-07 14:38:36 -0700202 if (binder != nullptr) {
Steven Morelandf0212002018-12-26 13:59:23 -0800203 BBinder *local = binder->localBinder();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700204 if (!local) {
205 BpBinder *proxy = binder->remoteBinder();
Yi Kong91635562018-06-07 14:38:36 -0700206 if (proxy == nullptr) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000207 ALOGE("null proxy");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700208 }
209 const int32_t handle = proxy ? proxy->handle() : 0;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700210 obj.hdr.type = BINDER_TYPE_HANDLE;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -0800211 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700212 obj.handle = handle;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800213 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700214 } else {
Steven Morelandbf1915b2020-07-16 22:43:02 +0000215 int policy = local->getMinSchedulerPolicy();
216 int priority = local->getMinSchedulerPriority();
217
218 if (policy != 0 || priority != 0) {
219 // override value, since it is set explicitly
220 schedBits = schedPolicyMask(policy, priority);
221 }
Steven Morelandf0212002018-12-26 13:59:23 -0800222 if (local->isRequestingSid()) {
223 obj.flags |= FLAT_BINDER_FLAG_TXN_SECURITY_CTX;
224 }
Steven Morelandcf03cf12020-12-04 02:58:40 +0000225 if (local->isInheritRt()) {
226 obj.flags |= FLAT_BINDER_FLAG_INHERIT_RT;
227 }
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700228 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800229 obj.binder = reinterpret_cast<uintptr_t>(local->getWeakRefs());
230 obj.cookie = reinterpret_cast<uintptr_t>(local);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700231 }
232 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700233 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800234 obj.binder = 0;
235 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700236 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700237
Steven Morelandbf1915b2020-07-16 22:43:02 +0000238 obj.flags |= schedBits;
239
Steven Moreland34b48cb2020-12-01 22:45:38 +0000240 status_t status = writeObject(obj, false);
241 if (status != OK) return status;
242
243 return finishFlattenBinder(binder);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700244}
245
Steven Morelanda86a3562019-08-01 23:28:34 +0000246status_t Parcel::unflattenBinder(sp<IBinder>* out) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700247{
Steven Morelanda86a3562019-08-01 23:28:34 +0000248 const flat_binder_object* flat = readObject(false);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700249
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700250 if (flat) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700251 switch (flat->hdr.type) {
Steven Morelanda86a3562019-08-01 23:28:34 +0000252 case BINDER_TYPE_BINDER: {
253 sp<IBinder> binder = reinterpret_cast<IBinder*>(flat->cookie);
254 return finishUnflattenBinder(binder, out);
255 }
256 case BINDER_TYPE_HANDLE: {
257 sp<IBinder> binder =
258 ProcessState::self()->getStrongProxyForHandle(flat->handle);
259 return finishUnflattenBinder(binder, out);
260 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700261 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700262 }
263 return BAD_TYPE;
264}
265
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700266// ---------------------------------------------------------------------------
267
268Parcel::Parcel()
269{
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800270 LOG_ALLOC("Parcel %p: constructing", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700271 initState();
272}
273
274Parcel::~Parcel()
275{
276 freeDataNoInit();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800277 LOG_ALLOC("Parcel %p: destroyed", this);
278}
279
280size_t Parcel::getGlobalAllocSize() {
Jeff Sharkey8994c182020-09-11 12:07:10 -0600281 return gParcelGlobalAllocSize.load();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800282}
283
284size_t Parcel::getGlobalAllocCount() {
Jeff Sharkey8994c182020-09-11 12:07:10 -0600285 return gParcelGlobalAllocCount.load();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700286}
287
288const uint8_t* Parcel::data() const
289{
290 return mData;
291}
292
293size_t Parcel::dataSize() const
294{
295 return (mDataSize > mDataPos ? mDataSize : mDataPos);
296}
297
298size_t Parcel::dataAvail() const
299{
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700300 size_t result = dataSize() - dataPosition();
301 if (result > INT32_MAX) {
Steven Moreland6adf33c2019-09-25 13:18:09 -0700302 LOG_ALWAYS_FATAL("result too big: %zu", result);
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700303 }
304 return result;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700305}
306
307size_t Parcel::dataPosition() const
308{
309 return mDataPos;
310}
311
312size_t Parcel::dataCapacity() const
313{
314 return mDataCapacity;
315}
316
317status_t Parcel::setDataSize(size_t size)
318{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700319 if (size > INT32_MAX) {
320 // don't accept size_t values which may have come from an
321 // inadvertent conversion from a negative int.
322 return BAD_VALUE;
323 }
324
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700325 status_t err;
326 err = continueWrite(size);
327 if (err == NO_ERROR) {
328 mDataSize = size;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700329 ALOGV("setDataSize Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700330 }
331 return err;
332}
333
334void Parcel::setDataPosition(size_t pos) const
335{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700336 if (pos > INT32_MAX) {
337 // don't accept size_t values which may have come from an
338 // inadvertent conversion from a negative int.
Steven Moreland6adf33c2019-09-25 13:18:09 -0700339 LOG_ALWAYS_FATAL("pos too big: %zu", pos);
Nick Kralevichb6b14232015-04-02 09:36:02 -0700340 }
341
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700342 mDataPos = pos;
343 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -0800344 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700345}
346
347status_t Parcel::setDataCapacity(size_t size)
348{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700349 if (size > INT32_MAX) {
350 // don't accept size_t values which may have come from an
351 // inadvertent conversion from a negative int.
352 return BAD_VALUE;
353 }
354
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700355 if (size > mDataCapacity) return continueWrite(size);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700356 return NO_ERROR;
357}
358
359status_t Parcel::setData(const uint8_t* buffer, size_t len)
360{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700361 if (len > INT32_MAX) {
362 // don't accept size_t values which may have come from an
363 // inadvertent conversion from a negative int.
364 return BAD_VALUE;
365 }
366
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700367 status_t err = restartWrite(len);
368 if (err == NO_ERROR) {
369 memcpy(const_cast<uint8_t*>(data()), buffer, len);
370 mDataSize = len;
371 mFdsKnown = false;
372 }
373 return err;
374}
375
Andreas Huber51faf462011-04-13 10:21:56 -0700376status_t Parcel::appendFrom(const Parcel *parcel, size_t offset, size_t len)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700377{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700378 status_t err;
Andreas Huber51faf462011-04-13 10:21:56 -0700379 const uint8_t *data = parcel->mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800380 const binder_size_t *objects = parcel->mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700381 size_t size = parcel->mObjectsSize;
382 int startPos = mDataPos;
383 int firstIndex = -1, lastIndex = -2;
384
385 if (len == 0) {
386 return NO_ERROR;
387 }
388
Nick Kralevichb6b14232015-04-02 09:36:02 -0700389 if (len > INT32_MAX) {
390 // don't accept size_t values which may have come from an
391 // inadvertent conversion from a negative int.
392 return BAD_VALUE;
393 }
394
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700395 // range checks against the source parcel size
396 if ((offset > parcel->mDataSize)
397 || (len > parcel->mDataSize)
398 || (offset + len > parcel->mDataSize)) {
399 return BAD_VALUE;
400 }
401
402 // Count objects in range
403 for (int i = 0; i < (int) size; i++) {
404 size_t off = objects[i];
Christopher Tate27182be2015-05-27 17:53:02 -0700405 if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700406 if (firstIndex == -1) {
407 firstIndex = i;
408 }
409 lastIndex = i;
410 }
411 }
412 int numObjects = lastIndex - firstIndex + 1;
413
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700414 if ((mDataSize+len) > mDataCapacity) {
415 // grow data
416 err = growData(len);
417 if (err != NO_ERROR) {
418 return err;
419 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700420 }
421
422 // append data
423 memcpy(mData + mDataPos, data + offset, len);
424 mDataPos += len;
425 mDataSize += len;
426
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400427 err = NO_ERROR;
428
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700429 if (numObjects > 0) {
Martijn Coenen69390d42018-10-22 15:18:10 +0200430 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700431 // grow objects
432 if (mObjectsCapacity < mObjectsSize + numObjects) {
Martijn Coenenda2f2fd2020-01-22 10:46:25 +0100433 if ((size_t) numObjects > SIZE_MAX - mObjectsSize) return NO_MEMORY; // overflow
434 if (mObjectsSize + numObjects > SIZE_MAX / 3) return NO_MEMORY; // overflow
Christopher Tateed7a50c2015-06-08 14:45:14 -0700435 size_t newSize = ((mObjectsSize + numObjects)*3)/2;
Martijn Coenenda2f2fd2020-01-22 10:46:25 +0100436 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800437 binder_size_t *objects =
438 (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -0700439 if (objects == (binder_size_t*)nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700440 return NO_MEMORY;
441 }
442 mObjects = objects;
443 mObjectsCapacity = newSize;
444 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700445
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700446 // append and acquire objects
447 int idx = mObjectsSize;
448 for (int i = firstIndex; i <= lastIndex; i++) {
449 size_t off = objects[i] - offset + startPos;
450 mObjects[idx++] = off;
451 mObjectsSize++;
452
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700453 flat_binder_object* flat
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700454 = reinterpret_cast<flat_binder_object*>(mData + off);
Adrian Rooscbf37262015-10-22 16:12:53 -0700455 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700456
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700457 if (flat->hdr.type == BINDER_TYPE_FD) {
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700458 // If this is a file descriptor, we need to dup it so the
459 // new Parcel now owns its own fd, and can declare that we
460 // officially know we have fds.
Nick Kralevichec9ec7d2016-12-17 19:47:27 -0800461 flat->handle = fcntl(flat->handle, F_DUPFD_CLOEXEC, 0);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800462 flat->cookie = 1;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700463 mHasFds = mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400464 if (!mAllowFds) {
465 err = FDS_NOT_ALLOWED;
466 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700467 }
468 }
469 }
470
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400471 return err;
472}
473
Dianne Hackborn15feb9b2017-04-10 15:34:35 -0700474int Parcel::compareData(const Parcel& other) {
475 size_t size = dataSize();
476 if (size != other.dataSize()) {
477 return size < other.dataSize() ? -1 : 1;
478 }
479 return memcmp(data(), other.data(), size);
480}
481
Jeff Brown13b16042014-11-11 16:44:25 -0800482bool Parcel::allowFds() const
483{
484 return mAllowFds;
485}
486
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700487bool Parcel::pushAllowFds(bool allowFds)
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400488{
489 const bool origValue = mAllowFds;
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700490 if (!allowFds) {
491 mAllowFds = false;
492 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400493 return origValue;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700494}
495
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700496void Parcel::restoreAllowFds(bool lastValue)
497{
498 mAllowFds = lastValue;
499}
500
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700501bool Parcel::hasFileDescriptors() const
502{
503 if (!mFdsKnown) {
504 scanForFds();
505 }
506 return mHasFds;
507}
508
Steven Morelandf183fdd2020-10-27 00:12:12 +0000509void Parcel::markSensitive() const
510{
511 mDeallocZero = true;
512}
513
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000514void Parcel::updateWorkSourceRequestHeaderPosition() const {
515 // Only update the request headers once. We only want to point
516 // to the first headers read/written.
517 if (!mRequestHeaderPresent) {
518 mWorkSourceRequestHeaderPosition = dataPosition();
519 mRequestHeaderPresent = true;
520 }
521}
522
Jooyung Han1b228f42020-01-30 13:41:12 +0900523#if defined(__ANDROID_VNDK__) && !defined(__ANDROID_APEX__)
Steven Moreland0f452742019-07-31 15:50:51 +0000524constexpr int32_t kHeader = B_PACK_CHARS('V', 'N', 'D', 'R');
525#else
526constexpr int32_t kHeader = B_PACK_CHARS('S', 'Y', 'S', 'T');
527#endif
528
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700529// Write RPC headers. (previously just the interface token)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700530status_t Parcel::writeInterfaceToken(const String16& interface)
531{
Steven Morelanddbc76c72020-10-01 18:02:48 +0000532 return writeInterfaceToken(interface.string(), interface.size());
533}
534
535status_t Parcel::writeInterfaceToken(const char16_t* str, size_t len) {
Olivier Gaillard91a04802018-11-14 17:32:41 +0000536 const IPCThreadState* threadState = IPCThreadState::self();
537 writeInt32(threadState->getStrictModePolicy() | STRICT_MODE_PENALTY_GATHER);
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000538 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000539 writeInt32(threadState->shouldPropagateWorkSource() ?
540 threadState->getCallingWorkSourceUid() : IPCThreadState::kUnsetWorkSource);
Steven Moreland0f452742019-07-31 15:50:51 +0000541 writeInt32(kHeader);
Steven Morelanddbc76c72020-10-01 18:02:48 +0000542
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700543 // currently the interface identification token is just its name as a string
Steven Morelanddbc76c72020-10-01 18:02:48 +0000544 return writeString16(str, len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700545}
546
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000547bool Parcel::replaceCallingWorkSourceUid(uid_t uid)
548{
549 if (!mRequestHeaderPresent) {
550 return false;
551 }
552
553 const size_t initialPosition = dataPosition();
554 setDataPosition(mWorkSourceRequestHeaderPosition);
555 status_t err = writeInt32(uid);
556 setDataPosition(initialPosition);
557 return err == NO_ERROR;
558}
559
Steven Moreland0891c9b2019-05-06 15:05:13 -0700560uid_t Parcel::readCallingWorkSourceUid() const
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000561{
562 if (!mRequestHeaderPresent) {
563 return IPCThreadState::kUnsetWorkSource;
564 }
565
566 const size_t initialPosition = dataPosition();
567 setDataPosition(mWorkSourceRequestHeaderPosition);
568 uid_t uid = readInt32();
569 setDataPosition(initialPosition);
570 return uid;
571}
572
Mathias Agopian83c04462009-05-22 19:00:22 -0700573bool Parcel::checkInterface(IBinder* binder) const
574{
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700575 return enforceInterface(binder->getInterfaceDescriptor());
Mathias Agopian83c04462009-05-22 19:00:22 -0700576}
577
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700578bool Parcel::enforceInterface(const String16& interface,
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700579 IPCThreadState* threadState) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700580{
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700581 return enforceInterface(interface.string(), interface.size(), threadState);
582}
583
584bool Parcel::enforceInterface(const char16_t* interface,
585 size_t len,
586 IPCThreadState* threadState) const
587{
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100588 // StrictModePolicy.
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700589 int32_t strictPolicy = readInt32();
Yi Kong91635562018-06-07 14:38:36 -0700590 if (threadState == nullptr) {
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700591 threadState = IPCThreadState::self();
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700592 }
Brad Fitzpatrick52736032010-08-30 16:01:16 -0700593 if ((threadState->getLastTransactionBinderFlags() &
594 IBinder::FLAG_ONEWAY) != 0) {
595 // For one-way calls, the callee is running entirely
596 // disconnected from the caller, so disable StrictMode entirely.
597 // Not only does disk/network usage not impact the caller, but
598 // there's no way to commuicate back any violations anyway.
599 threadState->setStrictModePolicy(0);
600 } else {
601 threadState->setStrictModePolicy(strictPolicy);
602 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100603 // WorkSource.
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000604 updateWorkSourceRequestHeaderPosition();
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100605 int32_t workSource = readInt32();
Olivier Gaillard91a04802018-11-14 17:32:41 +0000606 threadState->setCallingWorkSourceUidWithoutPropagation(workSource);
Steven Moreland0f452742019-07-31 15:50:51 +0000607 // vendor header
608 int32_t header = readInt32();
609 if (header != kHeader) {
610 ALOGE("Expecting header 0x%x but found 0x%x. Mixing copies of libbinder?", kHeader, header);
611 return false;
612 }
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +0100613 // Interface descriptor.
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700614 size_t parcel_interface_len;
615 const char16_t* parcel_interface = readString16Inplace(&parcel_interface_len);
616 if (len == parcel_interface_len &&
617 (!len || !memcmp(parcel_interface, interface, len * sizeof (char16_t)))) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700618 return true;
619 } else {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700620 ALOGW("**** enforceInterface() expected '%s' but read '%s'",
Daniel Colascione0bb330d2019-10-29 16:44:19 -0700621 String8(interface, len).string(),
622 String8(parcel_interface, parcel_interface_len).string());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700623 return false;
624 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700625}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700626
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700627size_t Parcel::objectsCount() const
628{
629 return mObjectsSize;
630}
631
632status_t Parcel::errorCheck() const
633{
634 return mError;
635}
636
637void Parcel::setError(status_t err)
638{
639 mError = err;
640}
641
642status_t Parcel::finishWrite(size_t len)
643{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700644 if (len > INT32_MAX) {
645 // don't accept size_t values which may have come from an
646 // inadvertent conversion from a negative int.
647 return BAD_VALUE;
648 }
649
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700650 //printf("Finish write of %d\n", len);
651 mDataPos += len;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700652 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700653 if (mDataPos > mDataSize) {
654 mDataSize = mDataPos;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700655 ALOGV("finishWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700656 }
657 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
658 return NO_ERROR;
659}
660
661status_t Parcel::writeUnpadded(const void* data, size_t len)
662{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700663 if (len > INT32_MAX) {
664 // don't accept size_t values which may have come from an
665 // inadvertent conversion from a negative int.
666 return BAD_VALUE;
667 }
668
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700669 size_t end = mDataPos + len;
670 if (end < mDataPos) {
671 // integer overflow
672 return BAD_VALUE;
673 }
674
675 if (end <= mDataCapacity) {
676restart_write:
677 memcpy(mData+mDataPos, data, len);
678 return finishWrite(len);
679 }
680
681 status_t err = growData(len);
682 if (err == NO_ERROR) goto restart_write;
683 return err;
684}
685
686status_t Parcel::write(const void* data, size_t len)
687{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700688 if (len > INT32_MAX) {
689 // don't accept size_t values which may have come from an
690 // inadvertent conversion from a negative int.
691 return BAD_VALUE;
692 }
693
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700694 void* const d = writeInplace(len);
695 if (d) {
696 memcpy(d, data, len);
697 return NO_ERROR;
698 }
699 return mError;
700}
701
702void* Parcel::writeInplace(size_t len)
703{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700704 if (len > INT32_MAX) {
705 // don't accept size_t values which may have come from an
706 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -0700707 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -0700708 }
709
710 const size_t padded = pad_size(len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700711
712 // sanity check for integer overflow
713 if (mDataPos+padded < mDataPos) {
Yi Kong91635562018-06-07 14:38:36 -0700714 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700715 }
716
717 if ((mDataPos+padded) <= mDataCapacity) {
718restart_write:
719 //printf("Writing %ld bytes, padded to %ld\n", len, padded);
720 uint8_t* const data = mData+mDataPos;
721
722 // Need to pad at end?
723 if (padded != len) {
724#if BYTE_ORDER == BIG_ENDIAN
725 static const uint32_t mask[4] = {
726 0x00000000, 0xffffff00, 0xffff0000, 0xff000000
727 };
728#endif
729#if BYTE_ORDER == LITTLE_ENDIAN
730 static const uint32_t mask[4] = {
731 0x00000000, 0x00ffffff, 0x0000ffff, 0x000000ff
732 };
733#endif
734 //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
735 // *reinterpret_cast<void**>(data+padded-4));
736 *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
737 }
738
739 finishWrite(padded);
740 return data;
741 }
742
743 status_t err = growData(padded);
744 if (err == NO_ERROR) goto restart_write;
Yi Kong91635562018-06-07 14:38:36 -0700745 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700746}
747
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800748status_t Parcel::writeUtf8AsUtf16(const std::string& str) {
749 const uint8_t* strData = (uint8_t*)str.data();
750 const size_t strLen= str.length();
751 const ssize_t utf16Len = utf8_to_utf16_length(strData, strLen);
Sergio Girof4607432016-07-21 14:46:35 +0100752 if (utf16Len < 0 || utf16Len > std::numeric_limits<int32_t>::max()) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800753 return BAD_VALUE;
754 }
755
756 status_t err = writeInt32(utf16Len);
757 if (err) {
758 return err;
759 }
760
761 // Allocate enough bytes to hold our converted string and its terminating NULL.
762 void* dst = writeInplace((utf16Len + 1) * sizeof(char16_t));
763 if (!dst) {
764 return NO_MEMORY;
765 }
766
Sergio Girof4607432016-07-21 14:46:35 +0100767 utf8_to_utf16(strData, strLen, (char16_t*)dst, (size_t) utf16Len + 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800768
769 return NO_ERROR;
770}
771
Jooyung Han2d5878e2020-01-23 12:45:10 +0900772status_t Parcel::writeUtf8AsUtf16(const std::optional<std::string>& str) {
773 if (!str) {
774 return writeInt32(-1);
775 }
776 return writeUtf8AsUtf16(*str);
777}
778
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800779status_t Parcel::writeUtf8AsUtf16(const std::unique_ptr<std::string>& str) {
780 if (!str) {
781 return writeInt32(-1);
782 }
783 return writeUtf8AsUtf16(*str);
784}
785
Daniel Normand0337ef2019-09-20 15:46:03 -0700786status_t Parcel::writeByteVectorInternal(const int8_t* data, size_t size) {
787 if (size > std::numeric_limits<int32_t>::max()) {
788 return BAD_VALUE;
Casey Dahlin451ff582015-10-19 18:12:18 -0700789 }
790
Daniel Normand0337ef2019-09-20 15:46:03 -0700791 status_t status = writeInt32(size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700792 if (status != OK) {
793 return status;
794 }
795
Daniel Normand0337ef2019-09-20 15:46:03 -0700796 return write(data, size);
Casey Dahlin451ff582015-10-19 18:12:18 -0700797}
798
Casey Dahlin185d3442016-02-09 11:08:35 -0800799status_t Parcel::writeByteVector(const std::vector<int8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700800 return writeByteVectorInternal(val.data(), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800801}
802
Jooyung Han2d5878e2020-01-23 12:45:10 +0900803status_t Parcel::writeByteVector(const std::optional<std::vector<int8_t>>& val)
804{
805 if (!val) return writeInt32(-1);
806 return writeByteVectorInternal(val->data(), val->size());
807}
808
Casey Dahlin185d3442016-02-09 11:08:35 -0800809status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<int8_t>>& val)
810{
Daniel Normand0337ef2019-09-20 15:46:03 -0700811 if (!val) return writeInt32(-1);
812 return writeByteVectorInternal(val->data(), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800813}
814
815status_t Parcel::writeByteVector(const std::vector<uint8_t>& val) {
Daniel Normand0337ef2019-09-20 15:46:03 -0700816 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val.data()), val.size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800817}
818
Jooyung Han2d5878e2020-01-23 12:45:10 +0900819status_t Parcel::writeByteVector(const std::optional<std::vector<uint8_t>>& val)
820{
821 if (!val) return writeInt32(-1);
822 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
823}
824
Casey Dahlin185d3442016-02-09 11:08:35 -0800825status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<uint8_t>>& val)
826{
Daniel Normand0337ef2019-09-20 15:46:03 -0700827 if (!val) return writeInt32(-1);
828 return writeByteVectorInternal(reinterpret_cast<const int8_t*>(val->data()), val->size());
Casey Dahlin185d3442016-02-09 11:08:35 -0800829}
830
Casey Dahlin451ff582015-10-19 18:12:18 -0700831status_t Parcel::writeInt32Vector(const std::vector<int32_t>& val)
832{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800833 return writeTypedVector(val, &Parcel::writeInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -0700834}
835
Jooyung Han2d5878e2020-01-23 12:45:10 +0900836status_t Parcel::writeInt32Vector(const std::optional<std::vector<int32_t>>& val)
837{
838 return writeNullableTypedVector(val, &Parcel::writeInt32);
839}
840
Casey Dahlinb9872622015-11-25 15:09:45 -0800841status_t Parcel::writeInt32Vector(const std::unique_ptr<std::vector<int32_t>>& val)
842{
843 return writeNullableTypedVector(val, &Parcel::writeInt32);
844}
845
Casey Dahlin451ff582015-10-19 18:12:18 -0700846status_t Parcel::writeInt64Vector(const std::vector<int64_t>& val)
847{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800848 return writeTypedVector(val, &Parcel::writeInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -0700849}
850
Jooyung Han2d5878e2020-01-23 12:45:10 +0900851status_t Parcel::writeInt64Vector(const std::optional<std::vector<int64_t>>& val)
852{
853 return writeNullableTypedVector(val, &Parcel::writeInt64);
854}
855
Casey Dahlinb9872622015-11-25 15:09:45 -0800856status_t Parcel::writeInt64Vector(const std::unique_ptr<std::vector<int64_t>>& val)
857{
858 return writeNullableTypedVector(val, &Parcel::writeInt64);
859}
860
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800861status_t Parcel::writeUint64Vector(const std::vector<uint64_t>& val)
862{
863 return writeTypedVector(val, &Parcel::writeUint64);
864}
865
Jooyung Han2d5878e2020-01-23 12:45:10 +0900866status_t Parcel::writeUint64Vector(const std::optional<std::vector<uint64_t>>& val)
867{
868 return writeNullableTypedVector(val, &Parcel::writeUint64);
869}
870
Kevin DuBois2f82d5b2018-12-05 12:56:10 -0800871status_t Parcel::writeUint64Vector(const std::unique_ptr<std::vector<uint64_t>>& val)
872{
873 return writeNullableTypedVector(val, &Parcel::writeUint64);
874}
875
Casey Dahlin451ff582015-10-19 18:12:18 -0700876status_t Parcel::writeFloatVector(const std::vector<float>& val)
877{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800878 return writeTypedVector(val, &Parcel::writeFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -0700879}
880
Jooyung Han2d5878e2020-01-23 12:45:10 +0900881status_t Parcel::writeFloatVector(const std::optional<std::vector<float>>& val)
882{
883 return writeNullableTypedVector(val, &Parcel::writeFloat);
884}
885
Casey Dahlinb9872622015-11-25 15:09:45 -0800886status_t Parcel::writeFloatVector(const std::unique_ptr<std::vector<float>>& val)
887{
888 return writeNullableTypedVector(val, &Parcel::writeFloat);
889}
890
Casey Dahlin451ff582015-10-19 18:12:18 -0700891status_t Parcel::writeDoubleVector(const std::vector<double>& val)
892{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800893 return writeTypedVector(val, &Parcel::writeDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -0700894}
895
Jooyung Han2d5878e2020-01-23 12:45:10 +0900896status_t Parcel::writeDoubleVector(const std::optional<std::vector<double>>& val)
897{
898 return writeNullableTypedVector(val, &Parcel::writeDouble);
899}
900
Casey Dahlinb9872622015-11-25 15:09:45 -0800901status_t Parcel::writeDoubleVector(const std::unique_ptr<std::vector<double>>& val)
902{
903 return writeNullableTypedVector(val, &Parcel::writeDouble);
904}
905
Casey Dahlin451ff582015-10-19 18:12:18 -0700906status_t Parcel::writeBoolVector(const std::vector<bool>& val)
907{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800908 return writeTypedVector(val, &Parcel::writeBool);
Casey Dahlin451ff582015-10-19 18:12:18 -0700909}
910
Jooyung Han2d5878e2020-01-23 12:45:10 +0900911status_t Parcel::writeBoolVector(const std::optional<std::vector<bool>>& val)
912{
913 return writeNullableTypedVector(val, &Parcel::writeBool);
914}
915
Casey Dahlinb9872622015-11-25 15:09:45 -0800916status_t Parcel::writeBoolVector(const std::unique_ptr<std::vector<bool>>& val)
917{
918 return writeNullableTypedVector(val, &Parcel::writeBool);
919}
920
Casey Dahlin451ff582015-10-19 18:12:18 -0700921status_t Parcel::writeCharVector(const std::vector<char16_t>& val)
922{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800923 return writeTypedVector(val, &Parcel::writeChar);
Casey Dahlin451ff582015-10-19 18:12:18 -0700924}
925
Jooyung Han2d5878e2020-01-23 12:45:10 +0900926status_t Parcel::writeCharVector(const std::optional<std::vector<char16_t>>& val)
927{
928 return writeNullableTypedVector(val, &Parcel::writeChar);
929}
930
Casey Dahlinb9872622015-11-25 15:09:45 -0800931status_t Parcel::writeCharVector(const std::unique_ptr<std::vector<char16_t>>& val)
932{
933 return writeNullableTypedVector(val, &Parcel::writeChar);
934}
935
Casey Dahlin451ff582015-10-19 18:12:18 -0700936status_t Parcel::writeString16Vector(const std::vector<String16>& val)
937{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800938 return writeTypedVector(val, &Parcel::writeString16);
Casey Dahlin451ff582015-10-19 18:12:18 -0700939}
940
Casey Dahlinb9872622015-11-25 15:09:45 -0800941status_t Parcel::writeString16Vector(
Jooyung Han2d5878e2020-01-23 12:45:10 +0900942 const std::optional<std::vector<std::optional<String16>>>& val)
943{
944 return writeNullableTypedVector(val, &Parcel::writeString16);
945}
946
947status_t Parcel::writeString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -0800948 const std::unique_ptr<std::vector<std::unique_ptr<String16>>>& val)
949{
950 return writeNullableTypedVector(val, &Parcel::writeString16);
951}
952
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800953status_t Parcel::writeUtf8VectorAsUtf16Vector(
Jooyung Han2d5878e2020-01-23 12:45:10 +0900954 const std::optional<std::vector<std::optional<std::string>>>& val) {
955 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
956}
957
958status_t Parcel::writeUtf8VectorAsUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800959 const std::unique_ptr<std::vector<std::unique_ptr<std::string>>>& val) {
960 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
961}
962
963status_t Parcel::writeUtf8VectorAsUtf16Vector(const std::vector<std::string>& val) {
964 return writeTypedVector(val, &Parcel::writeUtf8AsUtf16);
965}
966
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700967status_t Parcel::writeInt32(int32_t val)
968{
Andreas Huber84a6d042009-08-17 13:33:27 -0700969 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700970}
Dan Stoza41a0f2f2014-12-01 10:01:10 -0800971
972status_t Parcel::writeUint32(uint32_t val)
973{
974 return writeAligned(val);
975}
976
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700977status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700978 if (len > INT32_MAX) {
979 // don't accept size_t values which may have come from an
980 // inadvertent conversion from a negative int.
981 return BAD_VALUE;
982 }
983
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700984 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700985 return writeInt32(-1);
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700986 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700987 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700988 if (ret == NO_ERROR) {
989 ret = write(val, len * sizeof(*val));
990 }
991 return ret;
992}
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700993status_t Parcel::writeByteArray(size_t len, const uint8_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700994 if (len > INT32_MAX) {
995 // don't accept size_t values which may have come from an
996 // inadvertent conversion from a negative int.
997 return BAD_VALUE;
998 }
999
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001000 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -07001001 return writeInt32(-1);
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001002 }
Chad Brubakere59cb432015-06-30 14:03:55 -07001003 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001004 if (ret == NO_ERROR) {
1005 ret = write(val, len * sizeof(*val));
1006 }
1007 return ret;
1008}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001009
Casey Dahlind6848f52015-10-15 15:44:59 -07001010status_t Parcel::writeBool(bool val)
1011{
1012 return writeInt32(int32_t(val));
1013}
1014
1015status_t Parcel::writeChar(char16_t val)
1016{
1017 return writeInt32(int32_t(val));
1018}
1019
1020status_t Parcel::writeByte(int8_t val)
1021{
1022 return writeInt32(int32_t(val));
1023}
1024
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001025status_t Parcel::writeInt64(int64_t val)
1026{
Andreas Huber84a6d042009-08-17 13:33:27 -07001027 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001028}
1029
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001030status_t Parcel::writeUint64(uint64_t val)
1031{
1032 return writeAligned(val);
1033}
1034
Serban Constantinescuf683e012013-11-05 16:53:55 +00001035status_t Parcel::writePointer(uintptr_t val)
1036{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001037 return writeAligned<binder_uintptr_t>(val);
Serban Constantinescuf683e012013-11-05 16:53:55 +00001038}
1039
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001040status_t Parcel::writeFloat(float val)
1041{
Andreas Huber84a6d042009-08-17 13:33:27 -07001042 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001043}
1044
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001045#if defined(__mips__) && defined(__mips_hard_float)
1046
1047status_t Parcel::writeDouble(double val)
1048{
1049 union {
1050 double d;
1051 unsigned long long ll;
1052 } u;
1053 u.d = val;
1054 return writeAligned(u.ll);
1055}
1056
1057#else
1058
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001059status_t Parcel::writeDouble(double val)
1060{
Andreas Huber84a6d042009-08-17 13:33:27 -07001061 return writeAligned(val);
1062}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001063
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001064#endif
1065
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001066status_t Parcel::writeCString(const char* str)
1067{
1068 return write(str, strlen(str)+1);
1069}
1070
1071status_t Parcel::writeString8(const String8& str)
1072{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06001073 return writeString8(str.string(), str.size());
1074}
1075
1076status_t Parcel::writeString8(const char* str, size_t len)
1077{
1078 if (str == nullptr) return writeInt32(-1);
1079
Jeff Sharkey18220902020-11-05 08:36:20 -07001080 // NOTE: Keep this logic in sync with android_os_Parcel.cpp
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06001081 status_t err = writeInt32(len);
1082 if (err == NO_ERROR) {
1083 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char));
1084 if (data) {
1085 memcpy(data, str, len);
1086 *reinterpret_cast<char*>(data+len) = 0;
1087 return NO_ERROR;
1088 }
1089 err = mError;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001090 }
1091 return err;
1092}
1093
Jooyung Han2d5878e2020-01-23 12:45:10 +09001094status_t Parcel::writeString16(const std::optional<String16>& str)
1095{
1096 if (!str) {
1097 return writeInt32(-1);
1098 }
1099
1100 return writeString16(*str);
1101}
1102
Casey Dahlinb9872622015-11-25 15:09:45 -08001103status_t Parcel::writeString16(const std::unique_ptr<String16>& str)
1104{
1105 if (!str) {
1106 return writeInt32(-1);
1107 }
1108
1109 return writeString16(*str);
1110}
1111
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001112status_t Parcel::writeString16(const String16& str)
1113{
1114 return writeString16(str.string(), str.size());
1115}
1116
1117status_t Parcel::writeString16(const char16_t* str, size_t len)
1118{
Yi Kong91635562018-06-07 14:38:36 -07001119 if (str == nullptr) return writeInt32(-1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001120
Jeff Sharkey18220902020-11-05 08:36:20 -07001121 // NOTE: Keep this logic in sync with android_os_Parcel.cpp
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001122 status_t err = writeInt32(len);
1123 if (err == NO_ERROR) {
1124 len *= sizeof(char16_t);
1125 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char16_t));
1126 if (data) {
1127 memcpy(data, str, len);
1128 *reinterpret_cast<char16_t*>(data+len) = 0;
1129 return NO_ERROR;
1130 }
1131 err = mError;
1132 }
1133 return err;
1134}
1135
1136status_t Parcel::writeStrongBinder(const sp<IBinder>& val)
1137{
Steven Morelanda86a3562019-08-01 23:28:34 +00001138 return flattenBinder(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001139}
1140
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001141status_t Parcel::writeStrongBinderVector(const std::vector<sp<IBinder>>& val)
1142{
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001143 return writeTypedVector(val, &Parcel::writeStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001144}
1145
Jooyung Han2d5878e2020-01-23 12:45:10 +09001146status_t Parcel::writeStrongBinderVector(const std::optional<std::vector<sp<IBinder>>>& val)
1147{
1148 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1149}
1150
Casey Dahlinb9872622015-11-25 15:09:45 -08001151status_t Parcel::writeStrongBinderVector(const std::unique_ptr<std::vector<sp<IBinder>>>& val)
1152{
1153 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1154}
1155
Jooyung Han2d5878e2020-01-23 12:45:10 +09001156status_t Parcel::readStrongBinderVector(std::optional<std::vector<sp<IBinder>>>* val) const {
1157 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
1158}
1159
Casey Dahlinb9872622015-11-25 15:09:45 -08001160status_t Parcel::readStrongBinderVector(std::unique_ptr<std::vector<sp<IBinder>>>* val) const {
Christopher Wiley35d77ca2016-03-08 10:49:51 -08001161 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
Casey Dahlinb9872622015-11-25 15:09:45 -08001162}
1163
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001164status_t Parcel::readStrongBinderVector(std::vector<sp<IBinder>>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001165 return readTypedVector(val, &Parcel::readStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001166}
1167
Casey Dahlinb9872622015-11-25 15:09:45 -08001168status_t Parcel::writeRawNullableParcelable(const Parcelable* parcelable) {
1169 if (!parcelable) {
1170 return writeInt32(0);
1171 }
1172
1173 return writeParcelable(*parcelable);
1174}
1175
Christopher Wiley97f048d2015-11-19 06:49:05 -08001176status_t Parcel::writeParcelable(const Parcelable& parcelable) {
1177 status_t status = writeInt32(1); // parcelable is not null.
1178 if (status != OK) {
1179 return status;
1180 }
1181 return parcelable.writeToParcel(this);
1182}
1183
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001184status_t Parcel::writeNativeHandle(const native_handle* handle)
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001185{
Mathias Agopian1d0a95b2009-07-31 16:12:13 -07001186 if (!handle || handle->version != sizeof(native_handle))
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001187 return BAD_TYPE;
1188
1189 status_t err;
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001190 err = writeInt32(handle->numFds);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001191 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001192
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001193 err = writeInt32(handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001194 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001195
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001196 for (int i=0 ; err==NO_ERROR && i<handle->numFds ; i++)
1197 err = writeDupFileDescriptor(handle->data[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001198
1199 if (err != NO_ERROR) {
Steve Block9d453682011-12-20 16:23:08 +00001200 ALOGD("write native handle, write dup fd failed");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001201 return err;
1202 }
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001203 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001204 return err;
1205}
1206
Jeff Brown93ff1f92011-11-04 19:01:44 -07001207status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001208{
1209 flat_binder_object obj;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001210 obj.hdr.type = BINDER_TYPE_FD;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001211 obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -08001212 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001213 obj.handle = fd;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001214 obj.cookie = takeOwnership ? 1 : 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001215 return writeObject(obj, true);
1216}
1217
1218status_t Parcel::writeDupFileDescriptor(int fd)
1219{
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08001220 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
Jeff Brownd341c712011-11-04 20:19:33 -07001221 if (dupFd < 0) {
1222 return -errno;
1223 }
1224 status_t err = writeFileDescriptor(dupFd, true /*takeOwnership*/);
Casey Dahlin06673e32015-11-23 13:24:23 -08001225 if (err != OK) {
Jeff Brownd341c712011-11-04 20:19:33 -07001226 close(dupFd);
1227 }
1228 return err;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001229}
1230
Dianne Hackborn1941a402016-08-29 12:30:43 -07001231status_t Parcel::writeParcelFileDescriptor(int fd, bool takeOwnership)
1232{
1233 writeInt32(0);
1234 return writeFileDescriptor(fd, takeOwnership);
1235}
1236
Ryo Hashimotobf551892018-05-31 16:58:35 +09001237status_t Parcel::writeDupParcelFileDescriptor(int fd)
1238{
1239 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1240 if (dupFd < 0) {
1241 return -errno;
1242 }
1243 status_t err = writeParcelFileDescriptor(dupFd, true /*takeOwnership*/);
1244 if (err != OK) {
1245 close(dupFd);
1246 }
1247 return err;
1248}
1249
Christopher Wiley2cf19952016-04-11 11:09:37 -07001250status_t Parcel::writeUniqueFileDescriptor(const base::unique_fd& fd) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001251 return writeDupFileDescriptor(fd.get());
1252}
1253
Christopher Wiley2cf19952016-04-11 11:09:37 -07001254status_t Parcel::writeUniqueFileDescriptorVector(const std::vector<base::unique_fd>& val) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001255 return writeTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1256}
1257
Jooyung Han2d5878e2020-01-23 12:45:10 +09001258status_t Parcel::writeUniqueFileDescriptorVector(const std::optional<std::vector<base::unique_fd>>& val) {
1259 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1260}
1261
Christopher Wiley2cf19952016-04-11 11:09:37 -07001262status_t Parcel::writeUniqueFileDescriptorVector(const std::unique_ptr<std::vector<base::unique_fd>>& val) {
Casey Dahlinb9872622015-11-25 15:09:45 -08001263 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1264}
1265
Jeff Brown13b16042014-11-11 16:44:25 -08001266status_t Parcel::writeBlob(size_t len, bool mutableCopy, WritableBlob* outBlob)
Jeff Brown5707dbf2011-09-23 21:17:56 -07001267{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001268 if (len > INT32_MAX) {
1269 // don't accept size_t values which may have come from an
1270 // inadvertent conversion from a negative int.
1271 return BAD_VALUE;
1272 }
1273
Jeff Brown13b16042014-11-11 16:44:25 -08001274 status_t status;
1275 if (!mAllowFds || len <= BLOB_INPLACE_LIMIT) {
Steve Block6807e592011-10-20 11:56:00 +01001276 ALOGV("writeBlob: write in place");
Jeff Brown13b16042014-11-11 16:44:25 -08001277 status = writeInt32(BLOB_INPLACE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001278 if (status) return status;
1279
1280 void* ptr = writeInplace(len);
1281 if (!ptr) return NO_MEMORY;
1282
Jeff Brown13b16042014-11-11 16:44:25 -08001283 outBlob->init(-1, ptr, len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001284 return NO_ERROR;
1285 }
1286
Steve Block6807e592011-10-20 11:56:00 +01001287 ALOGV("writeBlob: write to ashmem");
Jeff Brown5707dbf2011-09-23 21:17:56 -07001288 int fd = ashmem_create_region("Parcel Blob", len);
1289 if (fd < 0) return NO_MEMORY;
1290
1291 int result = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE);
1292 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001293 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001294 } else {
Yi Kong91635562018-06-07 14:38:36 -07001295 void* ptr = ::mmap(nullptr, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001296 if (ptr == MAP_FAILED) {
1297 status = -errno;
1298 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001299 if (!mutableCopy) {
1300 result = ashmem_set_prot_region(fd, PROT_READ);
1301 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07001302 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001303 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001304 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001305 status = writeInt32(mutableCopy ? BLOB_ASHMEM_MUTABLE : BLOB_ASHMEM_IMMUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001306 if (!status) {
Jeff Brown93ff1f92011-11-04 19:01:44 -07001307 status = writeFileDescriptor(fd, true /*takeOwnership*/);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001308 if (!status) {
Jeff Brown13b16042014-11-11 16:44:25 -08001309 outBlob->init(fd, ptr, len, mutableCopy);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001310 return NO_ERROR;
1311 }
1312 }
1313 }
1314 }
1315 ::munmap(ptr, len);
1316 }
1317 ::close(fd);
1318 return status;
1319}
1320
Jeff Brown13b16042014-11-11 16:44:25 -08001321status_t Parcel::writeDupImmutableBlobFileDescriptor(int fd)
1322{
1323 // Must match up with what's done in writeBlob.
1324 if (!mAllowFds) return FDS_NOT_ALLOWED;
1325 status_t status = writeInt32(BLOB_ASHMEM_IMMUTABLE);
1326 if (status) return status;
1327 return writeDupFileDescriptor(fd);
1328}
1329
Mathias Agopiane1424282013-07-29 21:24:40 -07001330status_t Parcel::write(const FlattenableHelperInterface& val)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001331{
1332 status_t err;
1333
1334 // size if needed
Mathias Agopiane1424282013-07-29 21:24:40 -07001335 const size_t len = val.getFlattenedSize();
1336 const size_t fd_count = val.getFdCount();
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001337
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001338 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001339 // don't accept size_t values which may have come from an
1340 // inadvertent conversion from a negative int.
1341 return BAD_VALUE;
1342 }
1343
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001344 err = this->writeInt32(len);
1345 if (err) return err;
1346
1347 err = this->writeInt32(fd_count);
1348 if (err) return err;
1349
1350 // payload
Martijn Coenenf8542382018-04-04 11:46:56 +02001351 void* const buf = this->writeInplace(len);
Yi Kong91635562018-06-07 14:38:36 -07001352 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001353 return BAD_VALUE;
1354
Yi Kong91635562018-06-07 14:38:36 -07001355 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001356 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001357 fds = new (std::nothrow) int[fd_count];
1358 if (fds == nullptr) {
1359 ALOGE("write: failed to allocate requested %zu fds", fd_count);
1360 return BAD_VALUE;
1361 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001362 }
1363
1364 err = val.flatten(buf, len, fds, fd_count);
1365 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1366 err = this->writeDupFileDescriptor( fds[i] );
1367 }
1368
1369 if (fd_count) {
1370 delete [] fds;
1371 }
1372
1373 return err;
1374}
1375
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001376status_t Parcel::writeObject(const flat_binder_object& val, bool nullMetaData)
1377{
1378 const bool enoughData = (mDataPos+sizeof(val)) <= mDataCapacity;
1379 const bool enoughObjects = mObjectsSize < mObjectsCapacity;
1380 if (enoughData && enoughObjects) {
1381restart_write:
1382 *reinterpret_cast<flat_binder_object*>(mData+mDataPos) = val;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001383
Christopher Tate98e67d32015-06-03 18:44:15 -07001384 // remember if it's a file descriptor
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001385 if (val.hdr.type == BINDER_TYPE_FD) {
Christopher Tate98e67d32015-06-03 18:44:15 -07001386 if (!mAllowFds) {
1387 // fail before modifying our object index
1388 return FDS_NOT_ALLOWED;
1389 }
1390 mHasFds = mFdsKnown = true;
1391 }
1392
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001393 // Need to write meta-data?
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001394 if (nullMetaData || val.binder != 0) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001395 mObjects[mObjectsSize] = mDataPos;
Adrian Rooscbf37262015-10-22 16:12:53 -07001396 acquire_object(ProcessState::self(), val, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001397 mObjectsSize++;
1398 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001399
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001400 return finishWrite(sizeof(flat_binder_object));
1401 }
1402
1403 if (!enoughData) {
1404 const status_t err = growData(sizeof(val));
1405 if (err != NO_ERROR) return err;
1406 }
1407 if (!enoughObjects) {
Martijn Coenenda2f2fd2020-01-22 10:46:25 +01001408 if (mObjectsSize > SIZE_MAX - 2) return NO_MEMORY; // overflow
1409 if ((mObjectsSize + 2) > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001410 size_t newSize = ((mObjectsSize+2)*3)/2;
Martijn Coenenda2f2fd2020-01-22 10:46:25 +01001411 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001412 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -07001413 if (objects == nullptr) return NO_MEMORY;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001414 mObjects = objects;
1415 mObjectsCapacity = newSize;
1416 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001417
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001418 goto restart_write;
1419}
1420
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001421status_t Parcel::writeNoException()
1422{
Christopher Wiley09eb7492015-11-09 15:06:15 -08001423 binder::Status status;
1424 return status.writeToParcel(this);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001425}
1426
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001427status_t Parcel::validateReadData(size_t upperBound) const
1428{
1429 // Don't allow non-object reads on object data
1430 if (mObjectsSorted || mObjectsSize <= 1) {
1431data_sorted:
1432 // Expect to check only against the next object
1433 if (mNextObjectHint < mObjectsSize && upperBound > mObjects[mNextObjectHint]) {
1434 // For some reason the current read position is greater than the next object
1435 // hint. Iterate until we find the right object
1436 size_t nextObject = mNextObjectHint;
1437 do {
1438 if (mDataPos < mObjects[nextObject] + sizeof(flat_binder_object)) {
1439 // Requested info overlaps with an object
1440 ALOGE("Attempt to read from protected data in Parcel %p", this);
1441 return PERMISSION_DENIED;
1442 }
1443 nextObject++;
1444 } while (nextObject < mObjectsSize && upperBound > mObjects[nextObject]);
1445 mNextObjectHint = nextObject;
1446 }
1447 return NO_ERROR;
1448 }
1449 // Quickly determine if mObjects is sorted.
1450 binder_size_t* currObj = mObjects + mObjectsSize - 1;
1451 binder_size_t* prevObj = currObj;
1452 while (currObj > mObjects) {
1453 prevObj--;
1454 if(*prevObj > *currObj) {
1455 goto data_unsorted;
1456 }
1457 currObj--;
1458 }
1459 mObjectsSorted = true;
1460 goto data_sorted;
1461
1462data_unsorted:
1463 // Insertion Sort mObjects
1464 // Great for mostly sorted lists. If randomly sorted or reverse ordered mObjects become common,
1465 // switch to std::sort(mObjects, mObjects + mObjectsSize);
1466 for (binder_size_t* iter0 = mObjects + 1; iter0 < mObjects + mObjectsSize; iter0++) {
1467 binder_size_t temp = *iter0;
1468 binder_size_t* iter1 = iter0 - 1;
1469 while (iter1 >= mObjects && *iter1 > temp) {
1470 *(iter1 + 1) = *iter1;
1471 iter1--;
1472 }
1473 *(iter1 + 1) = temp;
1474 }
1475 mNextObjectHint = 0;
1476 mObjectsSorted = true;
1477 goto data_sorted;
1478}
1479
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001480status_t Parcel::read(void* outData, size_t len) const
1481{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001482 if (len > INT32_MAX) {
1483 // don't accept size_t values which may have come from an
1484 // inadvertent conversion from a negative int.
1485 return BAD_VALUE;
1486 }
1487
1488 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1489 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001490 if (mObjectsSize > 0) {
1491 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001492 if(err != NO_ERROR) {
1493 // Still increment the data position by the expected length
1494 mDataPos += pad_size(len);
1495 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
1496 return err;
1497 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001498 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001499 memcpy(outData, mData+mDataPos, len);
Nick Kralevichb6b14232015-04-02 09:36:02 -07001500 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001501 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001502 return NO_ERROR;
1503 }
1504 return NOT_ENOUGH_DATA;
1505}
1506
1507const void* Parcel::readInplace(size_t len) const
1508{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001509 if (len > INT32_MAX) {
1510 // don't accept size_t values which may have come from an
1511 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -07001512 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001513 }
1514
1515 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1516 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001517 if (mObjectsSize > 0) {
1518 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001519 if(err != NO_ERROR) {
1520 // Still increment the data position by the expected length
1521 mDataPos += pad_size(len);
1522 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07001523 return nullptr;
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001524 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001525 }
1526
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001527 const void* data = mData+mDataPos;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001528 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001529 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001530 return data;
1531 }
Yi Kong91635562018-06-07 14:38:36 -07001532 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001533}
1534
Andreas Huber84a6d042009-08-17 13:33:27 -07001535template<class T>
1536status_t Parcel::readAligned(T *pArg) const {
Elliott Hughes42a9b942020-08-17 15:53:31 -07001537 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001538
1539 if ((mDataPos+sizeof(T)) <= mDataSize) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001540 if (mObjectsSize > 0) {
1541 status_t err = validateReadData(mDataPos + sizeof(T));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001542 if(err != NO_ERROR) {
1543 // Still increment the data position by the expected length
1544 mDataPos += sizeof(T);
1545 return err;
1546 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001547 }
1548
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001549 const void* data = mData+mDataPos;
Andreas Huber84a6d042009-08-17 13:33:27 -07001550 mDataPos += sizeof(T);
1551 *pArg = *reinterpret_cast<const T*>(data);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001552 return NO_ERROR;
1553 } else {
1554 return NOT_ENOUGH_DATA;
1555 }
1556}
1557
Andreas Huber84a6d042009-08-17 13:33:27 -07001558template<class T>
1559T Parcel::readAligned() const {
1560 T result;
1561 if (readAligned(&result) != NO_ERROR) {
1562 result = 0;
1563 }
1564
1565 return result;
1566}
1567
1568template<class T>
1569status_t Parcel::writeAligned(T val) {
Elliott Hughes42a9b942020-08-17 15:53:31 -07001570 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001571
1572 if ((mDataPos+sizeof(val)) <= mDataCapacity) {
1573restart_write:
1574 *reinterpret_cast<T*>(mData+mDataPos) = val;
1575 return finishWrite(sizeof(val));
1576 }
1577
1578 status_t err = growData(sizeof(val));
1579 if (err == NO_ERROR) goto restart_write;
1580 return err;
1581}
1582
Casey Dahlin185d3442016-02-09 11:08:35 -08001583status_t Parcel::readByteVector(std::vector<int8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001584 size_t size;
1585 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1586 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001587}
1588
1589status_t Parcel::readByteVector(std::vector<uint8_t>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001590 size_t size;
1591 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1592 return readByteVectorInternal(val, size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001593}
1594
Jooyung Han2d5878e2020-01-23 12:45:10 +09001595status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const {
1596 size_t size;
1597 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1598 if (!*val) {
1599 // reserveOutVector does not create the out vector if size is < 0.
1600 // This occurs when writing a null byte vector.
1601 return OK;
1602 }
1603 return readByteVectorInternal(&**val, size);
1604}
1605
Casey Dahlin185d3442016-02-09 11:08:35 -08001606status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001607 size_t size;
1608 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001609 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001610 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001611 // This occurs when writing a null byte vector.
1612 return OK;
1613 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001614 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001615}
1616
Jooyung Han2d5878e2020-01-23 12:45:10 +09001617status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const {
1618 size_t size;
1619 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
1620 if (!*val) {
1621 // reserveOutVector does not create the out vector if size is < 0.
1622 // This occurs when writing a null byte vector.
1623 return OK;
1624 }
1625 return readByteVectorInternal(&**val, size);
1626}
1627
Casey Dahlin185d3442016-02-09 11:08:35 -08001628status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const {
Daniel Normanc8646c32019-10-30 10:33:22 -07001629 size_t size;
1630 if (status_t status = reserveOutVector(val, &size); status != OK) return status;
Daniel Normand0337ef2019-09-20 15:46:03 -07001631 if (val->get() == nullptr) {
Daniel Normanc8646c32019-10-30 10:33:22 -07001632 // reserveOutVector does not create the out vector if size is < 0.
Daniel Normand0337ef2019-09-20 15:46:03 -07001633 // This occurs when writing a null byte vector.
1634 return OK;
1635 }
Daniel Normanc8646c32019-10-30 10:33:22 -07001636 return readByteVectorInternal(val->get(), size);
Casey Dahlin185d3442016-02-09 11:08:35 -08001637}
1638
Jooyung Han2d5878e2020-01-23 12:45:10 +09001639status_t Parcel::readInt32Vector(std::optional<std::vector<int32_t>>* val) const {
1640 return readNullableTypedVector(val, &Parcel::readInt32);
1641}
1642
Casey Dahlinb9872622015-11-25 15:09:45 -08001643status_t Parcel::readInt32Vector(std::unique_ptr<std::vector<int32_t>>* val) const {
1644 return readNullableTypedVector(val, &Parcel::readInt32);
1645}
1646
Casey Dahlin451ff582015-10-19 18:12:18 -07001647status_t Parcel::readInt32Vector(std::vector<int32_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001648 return readTypedVector(val, &Parcel::readInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -07001649}
1650
Jooyung Han2d5878e2020-01-23 12:45:10 +09001651status_t Parcel::readInt64Vector(std::optional<std::vector<int64_t>>* val) const {
1652 return readNullableTypedVector(val, &Parcel::readInt64);
1653}
1654
Casey Dahlinb9872622015-11-25 15:09:45 -08001655status_t Parcel::readInt64Vector(std::unique_ptr<std::vector<int64_t>>* val) const {
1656 return readNullableTypedVector(val, &Parcel::readInt64);
1657}
1658
Casey Dahlin451ff582015-10-19 18:12:18 -07001659status_t Parcel::readInt64Vector(std::vector<int64_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001660 return readTypedVector(val, &Parcel::readInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -07001661}
1662
Jooyung Han2d5878e2020-01-23 12:45:10 +09001663status_t Parcel::readUint64Vector(std::optional<std::vector<uint64_t>>* val) const {
1664 return readNullableTypedVector(val, &Parcel::readUint64);
1665}
1666
Kevin DuBois2f82d5b2018-12-05 12:56:10 -08001667status_t Parcel::readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const {
1668 return readNullableTypedVector(val, &Parcel::readUint64);
1669}
1670
1671status_t Parcel::readUint64Vector(std::vector<uint64_t>* val) const {
1672 return readTypedVector(val, &Parcel::readUint64);
1673}
1674
Jooyung Han2d5878e2020-01-23 12:45:10 +09001675status_t Parcel::readFloatVector(std::optional<std::vector<float>>* val) const {
1676 return readNullableTypedVector(val, &Parcel::readFloat);
1677}
1678
Casey Dahlinb9872622015-11-25 15:09:45 -08001679status_t Parcel::readFloatVector(std::unique_ptr<std::vector<float>>* val) const {
1680 return readNullableTypedVector(val, &Parcel::readFloat);
1681}
1682
Casey Dahlin451ff582015-10-19 18:12:18 -07001683status_t Parcel::readFloatVector(std::vector<float>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001684 return readTypedVector(val, &Parcel::readFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -07001685}
1686
Jooyung Han2d5878e2020-01-23 12:45:10 +09001687status_t Parcel::readDoubleVector(std::optional<std::vector<double>>* val) const {
1688 return readNullableTypedVector(val, &Parcel::readDouble);
1689}
1690
Casey Dahlinb9872622015-11-25 15:09:45 -08001691status_t Parcel::readDoubleVector(std::unique_ptr<std::vector<double>>* val) const {
1692 return readNullableTypedVector(val, &Parcel::readDouble);
1693}
1694
Casey Dahlin451ff582015-10-19 18:12:18 -07001695status_t Parcel::readDoubleVector(std::vector<double>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001696 return readTypedVector(val, &Parcel::readDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -07001697}
1698
Jooyung Han2d5878e2020-01-23 12:45:10 +09001699status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const {
1700 const int32_t start = dataPosition();
1701 int32_t size;
1702 status_t status = readInt32(&size);
1703 val->reset();
1704
1705 if (status != OK || size < 0) {
1706 return status;
1707 }
1708
1709 setDataPosition(start);
1710 val->emplace();
1711
1712 status = readBoolVector(&**val);
1713
1714 if (status != OK) {
1715 val->reset();
1716 }
1717
1718 return status;
1719}
1720
Casey Dahlinb9872622015-11-25 15:09:45 -08001721status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const {
1722 const int32_t start = dataPosition();
1723 int32_t size;
1724 status_t status = readInt32(&size);
1725 val->reset();
Casey Dahlin451ff582015-10-19 18:12:18 -07001726
Casey Dahlinb9872622015-11-25 15:09:45 -08001727 if (status != OK || size < 0) {
1728 return status;
1729 }
1730
1731 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001732 val->reset(new (std::nothrow) std::vector<bool>());
Casey Dahlinb9872622015-11-25 15:09:45 -08001733
1734 status = readBoolVector(val->get());
1735
1736 if (status != OK) {
1737 val->reset();
1738 }
1739
1740 return status;
1741}
1742
1743status_t Parcel::readBoolVector(std::vector<bool>* val) const {
Casey Dahlin451ff582015-10-19 18:12:18 -07001744 int32_t size;
1745 status_t status = readInt32(&size);
1746
1747 if (status != OK) {
1748 return status;
1749 }
1750
1751 if (size < 0) {
Christopher Wiley4db672d2015-11-10 09:44:30 -08001752 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07001753 }
1754
1755 val->resize(size);
1756
1757 /* C++ bool handling means a vector of bools isn't necessarily addressable
1758 * (we might use individual bits)
1759 */
Christopher Wiley97887982015-10-27 16:33:47 -07001760 bool data;
1761 for (int32_t i = 0; i < size; ++i) {
Casey Dahlin451ff582015-10-19 18:12:18 -07001762 status = readBool(&data);
1763 (*val)[i] = data;
1764
1765 if (status != OK) {
1766 return status;
1767 }
1768 }
1769
1770 return OK;
1771}
1772
Jooyung Han2d5878e2020-01-23 12:45:10 +09001773status_t Parcel::readCharVector(std::optional<std::vector<char16_t>>* val) const {
1774 return readNullableTypedVector(val, &Parcel::readChar);
1775}
1776
Casey Dahlinb9872622015-11-25 15:09:45 -08001777status_t Parcel::readCharVector(std::unique_ptr<std::vector<char16_t>>* val) const {
1778 return readNullableTypedVector(val, &Parcel::readChar);
1779}
1780
Casey Dahlin451ff582015-10-19 18:12:18 -07001781status_t Parcel::readCharVector(std::vector<char16_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001782 return readTypedVector(val, &Parcel::readChar);
Casey Dahlin451ff582015-10-19 18:12:18 -07001783}
1784
Casey Dahlinb9872622015-11-25 15:09:45 -08001785status_t Parcel::readString16Vector(
Jooyung Han2d5878e2020-01-23 12:45:10 +09001786 std::optional<std::vector<std::optional<String16>>>* val) const {
1787 return readNullableTypedVector(val, &Parcel::readString16);
1788}
1789
1790status_t Parcel::readString16Vector(
Casey Dahlinb9872622015-11-25 15:09:45 -08001791 std::unique_ptr<std::vector<std::unique_ptr<String16>>>* val) const {
1792 return readNullableTypedVector(val, &Parcel::readString16);
1793}
1794
Casey Dahlin451ff582015-10-19 18:12:18 -07001795status_t Parcel::readString16Vector(std::vector<String16>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001796 return readTypedVector(val, &Parcel::readString16);
Casey Dahlin451ff582015-10-19 18:12:18 -07001797}
1798
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001799status_t Parcel::readUtf8VectorFromUtf16Vector(
Jooyung Han2d5878e2020-01-23 12:45:10 +09001800 std::optional<std::vector<std::optional<std::string>>>* val) const {
1801 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1802}
1803
1804status_t Parcel::readUtf8VectorFromUtf16Vector(
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001805 std::unique_ptr<std::vector<std::unique_ptr<std::string>>>* val) const {
1806 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1807}
1808
1809status_t Parcel::readUtf8VectorFromUtf16Vector(std::vector<std::string>* val) const {
1810 return readTypedVector(val, &Parcel::readUtf8FromUtf16);
1811}
Casey Dahlin451ff582015-10-19 18:12:18 -07001812
Andreas Huber84a6d042009-08-17 13:33:27 -07001813status_t Parcel::readInt32(int32_t *pArg) const
1814{
1815 return readAligned(pArg);
1816}
1817
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001818int32_t Parcel::readInt32() const
1819{
Andreas Huber84a6d042009-08-17 13:33:27 -07001820 return readAligned<int32_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001821}
1822
Dan Stoza41a0f2f2014-12-01 10:01:10 -08001823status_t Parcel::readUint32(uint32_t *pArg) const
1824{
1825 return readAligned(pArg);
1826}
1827
1828uint32_t Parcel::readUint32() const
1829{
1830 return readAligned<uint32_t>();
1831}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001832
1833status_t Parcel::readInt64(int64_t *pArg) const
1834{
Andreas Huber84a6d042009-08-17 13:33:27 -07001835 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001836}
1837
1838
1839int64_t Parcel::readInt64() const
1840{
Andreas Huber84a6d042009-08-17 13:33:27 -07001841 return readAligned<int64_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001842}
1843
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001844status_t Parcel::readUint64(uint64_t *pArg) const
1845{
1846 return readAligned(pArg);
1847}
1848
1849uint64_t Parcel::readUint64() const
1850{
1851 return readAligned<uint64_t>();
1852}
1853
Serban Constantinescuf683e012013-11-05 16:53:55 +00001854status_t Parcel::readPointer(uintptr_t *pArg) const
1855{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001856 status_t ret;
1857 binder_uintptr_t ptr;
1858 ret = readAligned(&ptr);
1859 if (!ret)
1860 *pArg = ptr;
1861 return ret;
Serban Constantinescuf683e012013-11-05 16:53:55 +00001862}
1863
1864uintptr_t Parcel::readPointer() const
1865{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001866 return readAligned<binder_uintptr_t>();
Serban Constantinescuf683e012013-11-05 16:53:55 +00001867}
1868
1869
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001870status_t Parcel::readFloat(float *pArg) const
1871{
Andreas Huber84a6d042009-08-17 13:33:27 -07001872 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001873}
1874
1875
1876float Parcel::readFloat() const
1877{
Andreas Huber84a6d042009-08-17 13:33:27 -07001878 return readAligned<float>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001879}
1880
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001881#if defined(__mips__) && defined(__mips_hard_float)
1882
1883status_t Parcel::readDouble(double *pArg) const
1884{
1885 union {
1886 double d;
1887 unsigned long long ll;
1888 } u;
Narayan Kamath2c68d382014-06-04 15:04:29 +01001889 u.d = 0;
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001890 status_t status;
1891 status = readAligned(&u.ll);
1892 *pArg = u.d;
1893 return status;
1894}
1895
1896double Parcel::readDouble() const
1897{
1898 union {
1899 double d;
1900 unsigned long long ll;
1901 } u;
1902 u.ll = readAligned<unsigned long long>();
1903 return u.d;
1904}
1905
1906#else
1907
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001908status_t Parcel::readDouble(double *pArg) const
1909{
Andreas Huber84a6d042009-08-17 13:33:27 -07001910 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001911}
1912
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001913double Parcel::readDouble() const
1914{
Andreas Huber84a6d042009-08-17 13:33:27 -07001915 return readAligned<double>();
1916}
1917
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001918#endif
1919
Casey Dahlind6848f52015-10-15 15:44:59 -07001920status_t Parcel::readBool(bool *pArg) const
1921{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001922 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001923 status_t ret = readInt32(&tmp);
1924 *pArg = (tmp != 0);
1925 return ret;
1926}
1927
1928bool Parcel::readBool() const
1929{
1930 return readInt32() != 0;
1931}
1932
1933status_t Parcel::readChar(char16_t *pArg) const
1934{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001935 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001936 status_t ret = readInt32(&tmp);
1937 *pArg = char16_t(tmp);
1938 return ret;
1939}
1940
1941char16_t Parcel::readChar() const
1942{
1943 return char16_t(readInt32());
1944}
1945
1946status_t Parcel::readByte(int8_t *pArg) const
1947{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001948 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001949 status_t ret = readInt32(&tmp);
1950 *pArg = int8_t(tmp);
1951 return ret;
1952}
1953
1954int8_t Parcel::readByte() const
1955{
1956 return int8_t(readInt32());
1957}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001958
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001959status_t Parcel::readUtf8FromUtf16(std::string* str) const {
1960 size_t utf16Size = 0;
1961 const char16_t* src = readString16Inplace(&utf16Size);
1962 if (!src) {
1963 return UNEXPECTED_NULL;
1964 }
1965
1966 // Save ourselves the trouble, we're done.
1967 if (utf16Size == 0u) {
1968 str->clear();
1969 return NO_ERROR;
1970 }
1971
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001972 // Allow for closing '\0'
1973 ssize_t utf8Size = utf16_to_utf8_length(src, utf16Size) + 1;
1974 if (utf8Size < 1) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001975 return BAD_VALUE;
1976 }
1977 // Note that while it is probably safe to assume string::resize keeps a
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001978 // spare byte around for the trailing null, we still pass the size including the trailing null
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001979 str->resize(utf8Size);
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001980 utf16_to_utf8(src, utf16Size, &((*str)[0]), utf8Size);
1981 str->resize(utf8Size - 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001982 return NO_ERROR;
1983}
1984
Jooyung Han2d5878e2020-01-23 12:45:10 +09001985status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const {
1986 const int32_t start = dataPosition();
1987 int32_t size;
1988 status_t status = readInt32(&size);
1989 str->reset();
1990
1991 if (status != OK || size < 0) {
1992 return status;
1993 }
1994
1995 setDataPosition(start);
1996 str->emplace();
1997 return readUtf8FromUtf16(&**str);
1998}
1999
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002000status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const {
2001 const int32_t start = dataPosition();
2002 int32_t size;
2003 status_t status = readInt32(&size);
2004 str->reset();
2005
2006 if (status != OK || size < 0) {
2007 return status;
2008 }
2009
2010 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002011 str->reset(new (std::nothrow) std::string());
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002012 return readUtf8FromUtf16(str->get());
2013}
2014
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002015const char* Parcel::readCString() const
2016{
Steven Morelandf5e6c7e2019-05-17 13:14:06 -07002017 if (mDataPos < mDataSize) {
2018 const size_t avail = mDataSize-mDataPos;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002019 const char* str = reinterpret_cast<const char*>(mData+mDataPos);
2020 // is the string's trailing NUL within the parcel's valid bounds?
2021 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
2022 if (eos) {
2023 const size_t len = eos - str;
Nick Kralevichb6b14232015-04-02 09:36:02 -07002024 mDataPos += pad_size(len+1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002025 ALOGV("readCString Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002026 return str;
2027 }
2028 }
Yi Kong91635562018-06-07 14:38:36 -07002029 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002030}
2031
2032String8 Parcel::readString8() const
2033{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002034 size_t len;
2035 const char* str = readString8Inplace(&len);
2036 if (str) return String8(str, len);
2037 ALOGE("Reading a NULL string not supported here.");
2038 return String8();
Roshan Pius87b64d22016-07-18 12:51:02 -07002039}
2040
2041status_t Parcel::readString8(String8* pArg) const
2042{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002043 size_t len;
2044 const char* str = readString8Inplace(&len);
2045 if (str) {
2046 pArg->setTo(str, len);
2047 return 0;
2048 } else {
Roshan Pius87b64d22016-07-18 12:51:02 -07002049 *pArg = String8();
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002050 return UNEXPECTED_NULL;
Roshan Pius87b64d22016-07-18 12:51:02 -07002051 }
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002052}
2053
2054const char* Parcel::readString8Inplace(size_t* outLen) const
2055{
2056 int32_t size = readInt32();
2057 // watch for potential int overflow from size+1
2058 if (size >= 0 && size < INT32_MAX) {
2059 *outLen = size;
2060 const char* str = (const char*)readInplace(size+1);
Steven Moreland34af0632020-12-04 21:13:03 +00002061 if (str != nullptr) {
2062 if (str[size] == '\0') {
2063 return str;
2064 }
2065 android_errorWriteLog(0x534e4554, "172655291");
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002066 }
Roshan Pius87b64d22016-07-18 12:51:02 -07002067 }
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002068 *outLen = 0;
2069 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002070}
2071
2072String16 Parcel::readString16() const
2073{
2074 size_t len;
2075 const char16_t* str = readString16Inplace(&len);
2076 if (str) return String16(str, len);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002077 ALOGE("Reading a NULL string not supported here.");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002078 return String16();
2079}
2080
Jooyung Han2d5878e2020-01-23 12:45:10 +09002081status_t Parcel::readString16(std::optional<String16>* pArg) const
2082{
2083 const int32_t start = dataPosition();
2084 int32_t size;
2085 status_t status = readInt32(&size);
2086 pArg->reset();
2087
2088 if (status != OK || size < 0) {
2089 return status;
2090 }
2091
2092 setDataPosition(start);
2093 pArg->emplace();
2094
2095 status = readString16(&**pArg);
2096
2097 if (status != OK) {
2098 pArg->reset();
2099 }
2100
2101 return status;
2102}
2103
Casey Dahlinb9872622015-11-25 15:09:45 -08002104status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const
2105{
2106 const int32_t start = dataPosition();
2107 int32_t size;
2108 status_t status = readInt32(&size);
2109 pArg->reset();
2110
2111 if (status != OK || size < 0) {
2112 return status;
2113 }
2114
2115 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002116 pArg->reset(new (std::nothrow) String16());
Casey Dahlinb9872622015-11-25 15:09:45 -08002117
2118 status = readString16(pArg->get());
2119
2120 if (status != OK) {
2121 pArg->reset();
2122 }
2123
2124 return status;
2125}
2126
Casey Dahlin451ff582015-10-19 18:12:18 -07002127status_t Parcel::readString16(String16* pArg) const
2128{
2129 size_t len;
2130 const char16_t* str = readString16Inplace(&len);
2131 if (str) {
Casey Dahlin1515ea12015-10-20 16:26:23 -07002132 pArg->setTo(str, len);
Casey Dahlin451ff582015-10-19 18:12:18 -07002133 return 0;
2134 } else {
2135 *pArg = String16();
Christopher Wiley4db672d2015-11-10 09:44:30 -08002136 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07002137 }
2138}
2139
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002140const char16_t* Parcel::readString16Inplace(size_t* outLen) const
2141{
2142 int32_t size = readInt32();
2143 // watch for potential int overflow from size+1
2144 if (size >= 0 && size < INT32_MAX) {
2145 *outLen = size;
2146 const char16_t* str = (const char16_t*)readInplace((size+1)*sizeof(char16_t));
Steven Moreland34af0632020-12-04 21:13:03 +00002147 if (str != nullptr) {
2148 if (str[size] == u'\0') {
2149 return str;
2150 }
2151 android_errorWriteLog(0x534e4554, "172655291");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002152 }
2153 }
2154 *outLen = 0;
Yi Kong91635562018-06-07 14:38:36 -07002155 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002156}
2157
Casey Dahlinf0c13772015-10-27 18:33:56 -07002158status_t Parcel::readStrongBinder(sp<IBinder>* val) const
2159{
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002160 status_t status = readNullableStrongBinder(val);
2161 if (status == OK && !val->get()) {
2162 status = UNEXPECTED_NULL;
2163 }
2164 return status;
2165}
2166
2167status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const
2168{
Steven Morelanda86a3562019-08-01 23:28:34 +00002169 return unflattenBinder(val);
Casey Dahlinf0c13772015-10-27 18:33:56 -07002170}
2171
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002172sp<IBinder> Parcel::readStrongBinder() const
2173{
2174 sp<IBinder> val;
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002175 // Note that a lot of code in Android reads binders by hand with this
2176 // method, and that code has historically been ok with getting nullptr
2177 // back (while ignoring error codes).
2178 readNullableStrongBinder(&val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002179 return val;
2180}
2181
Christopher Wiley97f048d2015-11-19 06:49:05 -08002182status_t Parcel::readParcelable(Parcelable* parcelable) const {
2183 int32_t have_parcelable = 0;
2184 status_t status = readInt32(&have_parcelable);
2185 if (status != OK) {
2186 return status;
2187 }
2188 if (!have_parcelable) {
2189 return UNEXPECTED_NULL;
2190 }
2191 return parcelable->readFromParcel(this);
2192}
2193
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002194int32_t Parcel::readExceptionCode() const
2195{
Christopher Wiley09eb7492015-11-09 15:06:15 -08002196 binder::Status status;
2197 status.readFromParcel(*this);
2198 return status.exceptionCode();
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002199}
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002200
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002201native_handle* Parcel::readNativeHandle() const
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002202{
2203 int numFds, numInts;
2204 status_t err;
2205 err = readInt32(&numFds);
Yi Kong91635562018-06-07 14:38:36 -07002206 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002207 err = readInt32(&numInts);
Yi Kong91635562018-06-07 14:38:36 -07002208 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002209
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002210 native_handle* h = native_handle_create(numFds, numInts);
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002211 if (!h) {
Yi Kong91635562018-06-07 14:38:36 -07002212 return nullptr;
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002213 }
2214
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002215 for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002216 h->data[i] = fcntl(readFileDescriptor(), F_DUPFD_CLOEXEC, 0);
Marco Nelissen1de79662016-04-26 08:44:09 -07002217 if (h->data[i] < 0) {
2218 for (int j = 0; j < i; j++) {
2219 close(h->data[j]);
2220 }
2221 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002222 return nullptr;
Marco Nelissen1de79662016-04-26 08:44:09 -07002223 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002224 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002225 err = read(h->data + numFds, sizeof(int)*numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002226 if (err != NO_ERROR) {
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002227 native_handle_close(h);
2228 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002229 h = nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002230 }
2231 return h;
2232}
2233
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002234int Parcel::readFileDescriptor() const
2235{
2236 const flat_binder_object* flat = readObject(true);
Casey Dahlin06673e32015-11-23 13:24:23 -08002237
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002238 if (flat && flat->hdr.type == BINDER_TYPE_FD) {
Casey Dahlin06673e32015-11-23 13:24:23 -08002239 return flat->handle;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002240 }
Casey Dahlin06673e32015-11-23 13:24:23 -08002241
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002242 return BAD_TYPE;
2243}
2244
Dianne Hackborn1941a402016-08-29 12:30:43 -07002245int Parcel::readParcelFileDescriptor() const
2246{
2247 int32_t hasComm = readInt32();
2248 int fd = readFileDescriptor();
2249 if (hasComm != 0) {
Steven Morelandb73806a2018-11-12 19:35:47 -08002250 // detach (owned by the binder driver)
2251 int comm = readFileDescriptor();
2252
2253 // warning: this must be kept in sync with:
2254 // frameworks/base/core/java/android/os/ParcelFileDescriptor.java
2255 enum ParcelFileDescriptorStatus {
2256 DETACHED = 2,
2257 };
2258
2259#if BYTE_ORDER == BIG_ENDIAN
2260 const int32_t message = ParcelFileDescriptorStatus::DETACHED;
2261#endif
2262#if BYTE_ORDER == LITTLE_ENDIAN
2263 const int32_t message = __builtin_bswap32(ParcelFileDescriptorStatus::DETACHED);
2264#endif
2265
2266 ssize_t written = TEMP_FAILURE_RETRY(
2267 ::write(comm, &message, sizeof(message)));
2268
2269 if (written == -1 || written != sizeof(message)) {
2270 ALOGW("Failed to detach ParcelFileDescriptor written: %zd err: %s",
2271 written, strerror(errno));
2272 return BAD_TYPE;
2273 }
Dianne Hackborn1941a402016-08-29 12:30:43 -07002274 }
2275 return fd;
2276}
2277
Christopher Wiley2cf19952016-04-11 11:09:37 -07002278status_t Parcel::readUniqueFileDescriptor(base::unique_fd* val) const
Casey Dahlin06673e32015-11-23 13:24:23 -08002279{
2280 int got = readFileDescriptor();
2281
2282 if (got == BAD_TYPE) {
2283 return BAD_TYPE;
2284 }
2285
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002286 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
Casey Dahlin06673e32015-11-23 13:24:23 -08002287
2288 if (val->get() < 0) {
2289 return BAD_VALUE;
2290 }
2291
2292 return OK;
2293}
2294
Ryo Hashimotobf551892018-05-31 16:58:35 +09002295status_t Parcel::readUniqueParcelFileDescriptor(base::unique_fd* val) const
2296{
2297 int got = readParcelFileDescriptor();
2298
2299 if (got == BAD_TYPE) {
2300 return BAD_TYPE;
2301 }
2302
2303 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
2304
2305 if (val->get() < 0) {
2306 return BAD_VALUE;
2307 }
2308
2309 return OK;
2310}
Casey Dahlin06673e32015-11-23 13:24:23 -08002311
Jooyung Han2d5878e2020-01-23 12:45:10 +09002312status_t Parcel::readUniqueFileDescriptorVector(std::optional<std::vector<base::unique_fd>>* val) const {
2313 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2314}
2315
Christopher Wiley2cf19952016-04-11 11:09:37 -07002316status_t Parcel::readUniqueFileDescriptorVector(std::unique_ptr<std::vector<base::unique_fd>>* val) const {
Casey Dahlinb9872622015-11-25 15:09:45 -08002317 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2318}
2319
Christopher Wiley2cf19952016-04-11 11:09:37 -07002320status_t Parcel::readUniqueFileDescriptorVector(std::vector<base::unique_fd>* val) const {
Casey Dahlin06673e32015-11-23 13:24:23 -08002321 return readTypedVector(val, &Parcel::readUniqueFileDescriptor);
2322}
2323
Jeff Brown5707dbf2011-09-23 21:17:56 -07002324status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
2325{
Jeff Brown13b16042014-11-11 16:44:25 -08002326 int32_t blobType;
2327 status_t status = readInt32(&blobType);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002328 if (status) return status;
2329
Jeff Brown13b16042014-11-11 16:44:25 -08002330 if (blobType == BLOB_INPLACE) {
Steve Block6807e592011-10-20 11:56:00 +01002331 ALOGV("readBlob: read in place");
Jeff Brown5707dbf2011-09-23 21:17:56 -07002332 const void* ptr = readInplace(len);
2333 if (!ptr) return BAD_VALUE;
2334
Jeff Brown13b16042014-11-11 16:44:25 -08002335 outBlob->init(-1, const_cast<void*>(ptr), len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002336 return NO_ERROR;
2337 }
2338
Steve Block6807e592011-10-20 11:56:00 +01002339 ALOGV("readBlob: read from ashmem");
Jeff Brown13b16042014-11-11 16:44:25 -08002340 bool isMutable = (blobType == BLOB_ASHMEM_MUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002341 int fd = readFileDescriptor();
2342 if (fd == int(BAD_TYPE)) return BAD_VALUE;
2343
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002344 if (!ashmem_valid(fd)) {
2345 ALOGE("invalid fd");
2346 return BAD_VALUE;
2347 }
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002348 int size = ashmem_get_size_region(fd);
2349 if (size < 0 || size_t(size) < len) {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002350 ALOGE("request size %zu does not match fd size %d", len, size);
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002351 return BAD_VALUE;
2352 }
Yi Kong91635562018-06-07 14:38:36 -07002353 void* ptr = ::mmap(nullptr, len, isMutable ? PROT_READ | PROT_WRITE : PROT_READ,
Jeff Brown13b16042014-11-11 16:44:25 -08002354 MAP_SHARED, fd, 0);
Narayan Kamath9ea09752014-10-08 17:35:45 +01002355 if (ptr == MAP_FAILED) return NO_MEMORY;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002356
Jeff Brown13b16042014-11-11 16:44:25 -08002357 outBlob->init(fd, ptr, len, isMutable);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002358 return NO_ERROR;
2359}
2360
Mathias Agopiane1424282013-07-29 21:24:40 -07002361status_t Parcel::read(FlattenableHelperInterface& val) const
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002362{
2363 // size
2364 const size_t len = this->readInt32();
2365 const size_t fd_count = this->readInt32();
2366
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002367 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07002368 // don't accept size_t values which may have come from an
2369 // inadvertent conversion from a negative int.
2370 return BAD_VALUE;
2371 }
2372
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002373 // payload
Nick Kralevichb6b14232015-04-02 09:36:02 -07002374 void const* const buf = this->readInplace(pad_size(len));
Yi Kong91635562018-06-07 14:38:36 -07002375 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002376 return BAD_VALUE;
2377
Yi Kong91635562018-06-07 14:38:36 -07002378 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002379 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002380 fds = new (std::nothrow) int[fd_count];
2381 if (fds == nullptr) {
2382 ALOGE("read: failed to allocate requested %zu fds", fd_count);
2383 return BAD_VALUE;
2384 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002385 }
2386
2387 status_t err = NO_ERROR;
2388 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
Fabien Sanglardd84ff312016-10-21 10:58:26 -07002389 int fd = this->readFileDescriptor();
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002390 if (fd < 0 || ((fds[i] = fcntl(fd, F_DUPFD_CLOEXEC, 0)) < 0)) {
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002391 err = BAD_VALUE;
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002392 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 -07002393 i, fds[i], fd_count, strerror(fd < 0 ? -fd : errno));
2394 // Close all the file descriptors that were dup-ed.
2395 for (size_t j=0; j<i ;j++) {
2396 close(fds[j]);
2397 }
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002398 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002399 }
2400
2401 if (err == NO_ERROR) {
2402 err = val.unflatten(buf, len, fds, fd_count);
2403 }
2404
2405 if (fd_count) {
2406 delete [] fds;
2407 }
2408
2409 return err;
2410}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002411const flat_binder_object* Parcel::readObject(bool nullMetaData) const
2412{
2413 const size_t DPOS = mDataPos;
2414 if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
2415 const flat_binder_object* obj
2416 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
2417 mDataPos = DPOS + sizeof(flat_binder_object);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002418 if (!nullMetaData && (obj->cookie == 0 && obj->binder == 0)) {
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002419 // When transferring a NULL object, we don't write it into
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002420 // the object list, so we don't want to check for it when
2421 // reading.
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002422 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002423 return obj;
2424 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002425
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002426 // Ensure that this object is valid...
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002427 binder_size_t* const OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002428 const size_t N = mObjectsSize;
2429 size_t opos = mNextObjectHint;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002430
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002431 if (N > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002432 ALOGV("Parcel %p looking for obj at %zu, hint=%zu",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002433 this, DPOS, opos);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002434
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002435 // Start at the current hint position, looking for an object at
2436 // the current data position.
2437 if (opos < N) {
2438 while (opos < (N-1) && OBJS[opos] < DPOS) {
2439 opos++;
2440 }
2441 } else {
2442 opos = N-1;
2443 }
2444 if (OBJS[opos] == DPOS) {
2445 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002446 ALOGV("Parcel %p found obj %zu at index %zu with forward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002447 this, DPOS, opos);
2448 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002449 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002450 return obj;
2451 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002452
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002453 // Look backwards for it...
2454 while (opos > 0 && OBJS[opos] > DPOS) {
2455 opos--;
2456 }
2457 if (OBJS[opos] == DPOS) {
2458 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002459 ALOGV("Parcel %p found obj %zu at index %zu with backward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002460 this, DPOS, opos);
2461 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002462 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002463 return obj;
2464 }
2465 }
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002466 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 -07002467 this, DPOS);
2468 }
Yi Kong91635562018-06-07 14:38:36 -07002469 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002470}
2471
2472void Parcel::closeFileDescriptors()
2473{
2474 size_t i = mObjectsSize;
2475 if (i > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002476 //ALOGI("Closing file descriptors for %zu objects...", i);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002477 }
2478 while (i > 0) {
2479 i--;
2480 const flat_binder_object* flat
2481 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002482 if (flat->hdr.type == BINDER_TYPE_FD) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002483 //ALOGI("Closing fd: %ld", flat->handle);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002484 close(flat->handle);
2485 }
2486 }
2487}
2488
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002489uintptr_t Parcel::ipcData() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002490{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002491 return reinterpret_cast<uintptr_t>(mData);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002492}
2493
2494size_t Parcel::ipcDataSize() const
2495{
2496 return (mDataSize > mDataPos ? mDataSize : mDataPos);
2497}
2498
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002499uintptr_t Parcel::ipcObjects() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002500{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002501 return reinterpret_cast<uintptr_t>(mObjects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002502}
2503
2504size_t Parcel::ipcObjectsCount() const
2505{
2506 return mObjectsSize;
2507}
2508
2509void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,
Steven Moreland161fe122020-11-12 23:16:47 +00002510 const binder_size_t* objects, size_t objectsCount, release_func relFunc)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002511{
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002512 binder_size_t minOffset = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002513 freeDataNoInit();
2514 mError = NO_ERROR;
2515 mData = const_cast<uint8_t*>(data);
2516 mDataSize = mDataCapacity = dataSize;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002517 //ALOGI("setDataReference Setting data size of %p to %lu (pid=%d)", this, mDataSize, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002518 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002519 ALOGV("setDataReference Setting data pos of %p to %zu", this, mDataPos);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002520 mObjects = const_cast<binder_size_t*>(objects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002521 mObjectsSize = mObjectsCapacity = objectsCount;
2522 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002523 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002524 mOwner = relFunc;
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002525 for (size_t i = 0; i < mObjectsSize; i++) {
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002526 binder_size_t offset = mObjects[i];
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002527 if (offset < minOffset) {
Dan Albert3bdc5b82014-11-20 11:50:23 -08002528 ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002529 __func__, (uint64_t)offset, (uint64_t)minOffset);
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002530 mObjectsSize = 0;
2531 break;
2532 }
Martijn Coenen82c75312019-07-24 15:18:30 +02002533 const flat_binder_object* flat
2534 = reinterpret_cast<const flat_binder_object*>(mData + offset);
2535 uint32_t type = flat->hdr.type;
2536 if (!(type == BINDER_TYPE_BINDER || type == BINDER_TYPE_HANDLE ||
2537 type == BINDER_TYPE_FD)) {
2538 // We should never receive other types (eg BINDER_TYPE_FDA) as long as we don't support
2539 // them in libbinder. If we do receive them, it probably means a kernel bug; try to
2540 // recover gracefully by clearing out the objects, and releasing the objects we do
2541 // know about.
2542 android_errorWriteLog(0x534e4554, "135930648");
2543 ALOGE("%s: unsupported type object (%" PRIu32 ") at offset %" PRIu64 "\n",
2544 __func__, type, (uint64_t)offset);
2545 releaseObjects();
2546 mObjectsSize = 0;
2547 break;
2548 }
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002549 minOffset = offset + sizeof(flat_binder_object);
2550 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002551 scanForFds();
2552}
2553
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002554void Parcel::print(TextOutput& to, uint32_t /*flags*/) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002555{
2556 to << "Parcel(";
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002557
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002558 if (errorCheck() != NO_ERROR) {
2559 const status_t err = errorCheck();
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002560 to << "Error: " << (void*)(intptr_t)err << " \"" << strerror(-err) << "\"";
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002561 } else if (dataSize() > 0) {
2562 const uint8_t* DATA = data();
2563 to << indent << HexDump(DATA, dataSize()) << dedent;
Steven Moreland8bd01352019-07-15 16:36:14 -07002564 const binder_size_t* OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002565 const size_t N = objectsCount();
2566 for (size_t i=0; i<N; i++) {
2567 const flat_binder_object* flat
2568 = reinterpret_cast<const flat_binder_object*>(DATA+OBJS[i]);
2569 to << endl << "Object #" << i << " @ " << (void*)OBJS[i] << ": "
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002570 << TypeCode(flat->hdr.type & 0x7f7f7f00)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002571 << " = " << flat->binder;
2572 }
2573 } else {
2574 to << "NULL";
2575 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002576
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002577 to << ")";
2578}
2579
2580void Parcel::releaseObjects()
2581{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002582 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002583 if (i == 0) {
2584 return;
2585 }
2586 sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002587 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002588 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002589 while (i > 0) {
2590 i--;
2591 const flat_binder_object* flat
2592 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002593 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002594 }
2595}
2596
2597void Parcel::acquireObjects()
2598{
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002599 size_t i = mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002600 if (i == 0) {
2601 return;
2602 }
2603 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002604 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002605 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002606 while (i > 0) {
2607 i--;
2608 const flat_binder_object* flat
2609 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002610 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002611 }
2612}
2613
2614void Parcel::freeData()
2615{
2616 freeDataNoInit();
2617 initState();
2618}
2619
2620void Parcel::freeDataNoInit()
2621{
2622 if (mOwner) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002623 LOG_ALLOC("Parcel %p: freeing other owner data", this);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002624 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
Steven Moreland161fe122020-11-12 23:16:47 +00002625 mOwner(this, mData, mDataSize, mObjects, mObjectsSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002626 } else {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002627 LOG_ALLOC("Parcel %p: freeing allocated data", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002628 releaseObjects();
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002629 if (mData) {
2630 LOG_ALLOC("Parcel %p: freeing with %zu capacity", this, mDataCapacity);
Jeff Sharkey8994c182020-09-11 12:07:10 -06002631 gParcelGlobalAllocSize -= mDataCapacity;
2632 gParcelGlobalAllocCount--;
Steven Morelandf183fdd2020-10-27 00:12:12 +00002633 if (mDeallocZero) {
2634 zeroMemory(mData, mDataSize);
2635 }
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002636 free(mData);
2637 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002638 if (mObjects) free(mObjects);
2639 }
2640}
2641
2642status_t Parcel::growData(size_t len)
2643{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002644 if (len > INT32_MAX) {
2645 // don't accept size_t values which may have come from an
2646 // inadvertent conversion from a negative int.
2647 return BAD_VALUE;
2648 }
2649
Martijn Coenenda2f2fd2020-01-22 10:46:25 +01002650 if (len > SIZE_MAX - mDataSize) return NO_MEMORY; // overflow
2651 if (mDataSize + len > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002652 size_t newSize = ((mDataSize+len)*3)/2;
2653 return (newSize <= mDataSize)
2654 ? (status_t) NO_MEMORY
Steven Moreland042ae822020-05-27 17:45:17 +00002655 : continueWrite(std::max(newSize, (size_t) 128));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002656}
2657
Steven Morelandf183fdd2020-10-27 00:12:12 +00002658static uint8_t* reallocZeroFree(uint8_t* data, size_t oldCapacity, size_t newCapacity, bool zero) {
2659 if (!zero) {
2660 return (uint8_t*)realloc(data, newCapacity);
2661 }
2662 uint8_t* newData = (uint8_t*)malloc(newCapacity);
2663 if (!newData) {
2664 return nullptr;
2665 }
2666
2667 memcpy(newData, data, std::min(oldCapacity, newCapacity));
2668 zeroMemory(data, oldCapacity);
2669 free(data);
2670 return newData;
2671}
2672
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002673status_t Parcel::restartWrite(size_t desired)
2674{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002675 if (desired > INT32_MAX) {
2676 // don't accept size_t values which may have come from an
2677 // inadvertent conversion from a negative int.
2678 return BAD_VALUE;
2679 }
2680
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002681 if (mOwner) {
2682 freeData();
2683 return continueWrite(desired);
2684 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002685
Steven Morelandf183fdd2020-10-27 00:12:12 +00002686 uint8_t* data = reallocZeroFree(mData, mDataCapacity, desired, mDeallocZero);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002687 if (!data && desired > mDataCapacity) {
2688 mError = NO_MEMORY;
2689 return NO_MEMORY;
2690 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002691
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002692 releaseObjects();
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002693
Devin Moore4a0a55e2020-06-04 13:23:10 -07002694 if (data || desired == 0) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002695 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
Jeff Sharkey8994c182020-09-11 12:07:10 -06002696 if (mDataCapacity > desired) {
2697 gParcelGlobalAllocSize -= (mDataCapacity - desired);
2698 } else {
2699 gParcelGlobalAllocSize += (desired - mDataCapacity);
2700 }
2701
Colin Cross83ec65e2015-12-08 17:15:50 -08002702 if (!mData) {
2703 gParcelGlobalAllocCount++;
2704 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002705 mData = data;
2706 mDataCapacity = desired;
2707 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002708
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002709 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002710 ALOGV("restartWrite Setting data size of %p to %zu", this, mDataSize);
2711 ALOGV("restartWrite Setting data pos of %p to %zu", this, mDataPos);
2712
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002713 free(mObjects);
Yi Kong91635562018-06-07 14:38:36 -07002714 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002715 mObjectsSize = mObjectsCapacity = 0;
2716 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002717 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002718 mHasFds = false;
2719 mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -04002720 mAllowFds = true;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002721
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002722 return NO_ERROR;
2723}
2724
2725status_t Parcel::continueWrite(size_t desired)
2726{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002727 if (desired > INT32_MAX) {
2728 // don't accept size_t values which may have come from an
2729 // inadvertent conversion from a negative int.
2730 return BAD_VALUE;
2731 }
2732
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002733 // If shrinking, first adjust for any objects that appear
2734 // after the new data size.
2735 size_t objectsSize = mObjectsSize;
2736 if (desired < mDataSize) {
2737 if (desired == 0) {
2738 objectsSize = 0;
2739 } else {
2740 while (objectsSize > 0) {
Michael Wachenschwanza6541632017-05-18 22:08:32 +00002741 if (mObjects[objectsSize-1] < desired)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002742 break;
2743 objectsSize--;
2744 }
2745 }
2746 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002747
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002748 if (mOwner) {
2749 // If the size is going to zero, just release the owner's data.
2750 if (desired == 0) {
2751 freeData();
2752 return NO_ERROR;
2753 }
2754
2755 // If there is a different owner, we need to take
2756 // posession.
2757 uint8_t* data = (uint8_t*)malloc(desired);
2758 if (!data) {
2759 mError = NO_MEMORY;
2760 return NO_MEMORY;
2761 }
Yi Kong91635562018-06-07 14:38:36 -07002762 binder_size_t* objects = nullptr;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002763
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002764 if (objectsSize) {
Nick Kraleviche9881a32015-04-28 16:21:30 -07002765 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002766 if (!objects) {
Hyejin Kim3f727c02013-03-09 11:28:54 +09002767 free(data);
2768
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002769 mError = NO_MEMORY;
2770 return NO_MEMORY;
2771 }
2772
2773 // Little hack to only acquire references on objects
2774 // we will be keeping.
2775 size_t oldObjectsSize = mObjectsSize;
2776 mObjectsSize = objectsSize;
2777 acquireObjects();
2778 mObjectsSize = oldObjectsSize;
2779 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002780
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002781 if (mData) {
2782 memcpy(data, mData, mDataSize < desired ? mDataSize : desired);
2783 }
2784 if (objects && mObjects) {
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002785 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002786 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002787 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
Steven Moreland161fe122020-11-12 23:16:47 +00002788 mOwner(this, mData, mDataSize, mObjects, mObjectsSize);
Yi Kong91635562018-06-07 14:38:36 -07002789 mOwner = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002790
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002791 LOG_ALLOC("Parcel %p: taking ownership of %zu capacity", this, desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002792 gParcelGlobalAllocSize += desired;
2793 gParcelGlobalAllocCount++;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002794
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002795 mData = data;
2796 mObjects = objects;
2797 mDataSize = (mDataSize < desired) ? mDataSize : desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002798 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002799 mDataCapacity = desired;
2800 mObjectsSize = mObjectsCapacity = objectsSize;
2801 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002802 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002803
2804 } else if (mData) {
2805 if (objectsSize < mObjectsSize) {
2806 // Need to release refs on any objects we are dropping.
2807 const sp<ProcessState> proc(ProcessState::self());
2808 for (size_t i=objectsSize; i<mObjectsSize; i++) {
2809 const flat_binder_object* flat
2810 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002811 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002812 // will need to rescan because we may have lopped off the only FDs
2813 mFdsKnown = false;
2814 }
Adrian Rooscbf37262015-10-22 16:12:53 -07002815 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002816 }
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002817
2818 if (objectsSize == 0) {
2819 free(mObjects);
2820 mObjects = nullptr;
Michael Wachenschwanzc67d9f32019-10-15 11:49:22 -07002821 mObjectsCapacity = 0;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002822 } else {
2823 binder_size_t* objects =
2824 (binder_size_t*)realloc(mObjects, objectsSize*sizeof(binder_size_t));
2825 if (objects) {
2826 mObjects = objects;
Michael Wachenschwanzc67d9f32019-10-15 11:49:22 -07002827 mObjectsCapacity = objectsSize;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07002828 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002829 }
2830 mObjectsSize = objectsSize;
2831 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002832 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002833 }
2834
2835 // We own the data, so we can just do a realloc().
2836 if (desired > mDataCapacity) {
Steven Morelandf183fdd2020-10-27 00:12:12 +00002837 uint8_t* data = reallocZeroFree(mData, mDataCapacity, desired, mDeallocZero);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002838 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002839 LOG_ALLOC("Parcel %p: continue from %zu to %zu capacity", this, mDataCapacity,
2840 desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002841 gParcelGlobalAllocSize += desired;
2842 gParcelGlobalAllocSize -= mDataCapacity;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002843 mData = data;
2844 mDataCapacity = desired;
Ganesh Mahendranade89892017-09-28 16:56:03 +08002845 } else {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002846 mError = NO_MEMORY;
2847 return NO_MEMORY;
2848 }
2849 } else {
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002850 if (mDataSize > desired) {
2851 mDataSize = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002852 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002853 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002854 if (mDataPos > desired) {
2855 mDataPos = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002856 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002857 }
2858 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002859
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002860 } else {
2861 // This is the first data. Easy!
2862 uint8_t* data = (uint8_t*)malloc(desired);
2863 if (!data) {
2864 mError = NO_MEMORY;
2865 return NO_MEMORY;
2866 }
Hyejin Kim3f727c02013-03-09 11:28:54 +09002867
Yi Kong91635562018-06-07 14:38:36 -07002868 if(!(mDataCapacity == 0 && mObjects == nullptr
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002869 && mObjectsCapacity == 0)) {
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002870 ALOGE("continueWrite: %zu/%p/%zu/%zu", mDataCapacity, mObjects, mObjectsCapacity, desired);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002871 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002872
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002873 LOG_ALLOC("Parcel %p: allocating with %zu capacity", this, desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002874 gParcelGlobalAllocSize += desired;
2875 gParcelGlobalAllocCount++;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002876
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002877 mData = data;
2878 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002879 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
2880 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002881 mDataCapacity = desired;
2882 }
2883
2884 return NO_ERROR;
2885}
2886
2887void Parcel::initState()
2888{
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002889 LOG_ALLOC("Parcel %p: initState", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002890 mError = NO_ERROR;
Yi Kong91635562018-06-07 14:38:36 -07002891 mData = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002892 mDataSize = 0;
2893 mDataCapacity = 0;
2894 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002895 ALOGV("initState Setting data size of %p to %zu", this, mDataSize);
2896 ALOGV("initState Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07002897 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002898 mObjectsSize = 0;
2899 mObjectsCapacity = 0;
2900 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002901 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002902 mHasFds = false;
2903 mFdsKnown = true;
Steven Moreland6e5a7752019-08-05 20:30:14 -07002904 mAllowFds = true;
Steven Morelandf183fdd2020-10-27 00:12:12 +00002905 mDeallocZero = false;
Yi Kong91635562018-06-07 14:38:36 -07002906 mOwner = nullptr;
Adrian Rooscbf37262015-10-22 16:12:53 -07002907 mOpenAshmemSize = 0;
Olivier Gaillarddc848a02019-01-30 17:10:44 +00002908 mWorkSourceRequestHeaderPosition = 0;
2909 mRequestHeaderPresent = false;
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002910
2911 // racing multiple init leads only to multiple identical write
2912 if (gMaxFds == 0) {
2913 struct rlimit result;
2914 if (!getrlimit(RLIMIT_NOFILE, &result)) {
2915 gMaxFds = (size_t)result.rlim_cur;
Christopher Tatebf14e942016-03-25 14:16:24 -07002916 //ALOGI("parcel fd limit set to %zu", gMaxFds);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002917 } else {
2918 ALOGW("Unable to getrlimit: %s", strerror(errno));
2919 gMaxFds = 1024;
2920 }
2921 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002922}
2923
2924void Parcel::scanForFds() const
2925{
2926 bool hasFds = false;
2927 for (size_t i=0; i<mObjectsSize; i++) {
2928 const flat_binder_object* flat
2929 = reinterpret_cast<const flat_binder_object*>(mData + mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002930 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002931 hasFds = true;
2932 break;
2933 }
2934 }
2935 mHasFds = hasFds;
2936 mFdsKnown = true;
2937}
2938
Dan Sandleraa5c2342015-04-10 10:08:45 -04002939size_t Parcel::getBlobAshmemSize() const
2940{
Adrian Roos6bb31142015-10-22 16:46:12 -07002941 // This used to return the size of all blobs that were written to ashmem, now we're returning
2942 // the ashmem currently referenced by this Parcel, which should be equivalent.
2943 // TODO: Remove method once ABI can be changed.
2944 return mOpenAshmemSize;
Dan Sandleraa5c2342015-04-10 10:08:45 -04002945}
2946
Adrian Rooscbf37262015-10-22 16:12:53 -07002947size_t Parcel::getOpenAshmemSize() const
2948{
2949 return mOpenAshmemSize;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002950}
2951
2952// --- Parcel::Blob ---
2953
2954Parcel::Blob::Blob() :
Yi Kong91635562018-06-07 14:38:36 -07002955 mFd(-1), mData(nullptr), mSize(0), mMutable(false) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002956}
2957
2958Parcel::Blob::~Blob() {
2959 release();
2960}
2961
2962void Parcel::Blob::release() {
Jeff Brown13b16042014-11-11 16:44:25 -08002963 if (mFd != -1 && mData) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002964 ::munmap(mData, mSize);
2965 }
2966 clear();
2967}
2968
Jeff Brown13b16042014-11-11 16:44:25 -08002969void Parcel::Blob::init(int fd, void* data, size_t size, bool isMutable) {
2970 mFd = fd;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002971 mData = data;
2972 mSize = size;
Jeff Brown13b16042014-11-11 16:44:25 -08002973 mMutable = isMutable;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002974}
2975
2976void Parcel::Blob::clear() {
Jeff Brown13b16042014-11-11 16:44:25 -08002977 mFd = -1;
Yi Kong91635562018-06-07 14:38:36 -07002978 mData = nullptr;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002979 mSize = 0;
Jeff Brown13b16042014-11-11 16:44:25 -08002980 mMutable = false;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002981}
2982
Steven Moreland6511af52019-09-26 16:05:45 -07002983} // namespace android