blob: b3ae09b4051c8ac47afb21cbbac7a35614df6711 [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>
Mark Salyzyn70f36652016-02-02 10:27:03 -080023#include <pthread.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080024#include <stdint.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <sys/mman.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080028#include <sys/stat.h>
29#include <sys/types.h>
Christopher Tatee4e0ae82016-03-24 16:03:44 -070030#include <sys/resource.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080031#include <unistd.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070032
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070033#include <binder/Binder.h>
34#include <binder/BpBinder.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080035#include <binder/IPCThreadState.h>
36#include <binder/Parcel.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070037#include <binder/ProcessState.h>
Christopher Wiley09eb7492015-11-09 15:06:15 -080038#include <binder/Status.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070039#include <binder/TextOutput.h>
Robert Quattlebaum6316f5b2017-01-04 13:25:14 -080040#include <binder/Value.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070041
Mark Salyzynabed7f72016-01-27 08:02:48 -080042#include <cutils/ashmem.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070043#include <utils/Debug.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>
Dianne Hackborn7e790af2014-11-11 12:22:53 -080051#include <private/binder/Static.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070052
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070053#ifndef INT32_MAX
54#define INT32_MAX ((int32_t)(2147483647))
55#endif
56
57#define LOG_REFS(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080058//#define LOG_REFS(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
Dianne Hackborn7e790af2014-11-11 12:22:53 -080059#define LOG_ALLOC(...)
Mark Salyzyne93390b2016-01-27 08:02:48 -080060//#define LOG_ALLOC(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070061
62// ---------------------------------------------------------------------------
63
Nick Kralevichb6b14232015-04-02 09:36:02 -070064// This macro should never be used at runtime, as a too large value
65// of s could cause an integer overflow. Instead, you should always
66// use the wrapper function pad_size()
67#define PAD_SIZE_UNSAFE(s) (((s)+3)&~3)
68
69static size_t pad_size(size_t s) {
70 if (s > (SIZE_T_MAX - 3)) {
71 abort();
72 }
73 return PAD_SIZE_UNSAFE(s);
74}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070075
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070076// Note: must be kept in sync with android/os/StrictMode.java's PENALTY_GATHER
Jeff Sharkey0c1f5cb2014-12-18 10:26:57 -080077#define STRICT_MODE_PENALTY_GATHER (0x40 << 16)
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070078
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070079// XXX This can be made public if we want to provide
80// support for typed data.
81struct small_flat_data
82{
83 uint32_t type;
84 uint32_t data;
85};
86
87namespace android {
88
Dianne Hackborna4cff882014-11-13 17:07:40 -080089static pthread_mutex_t gParcelGlobalAllocSizeLock = PTHREAD_MUTEX_INITIALIZER;
90static size_t gParcelGlobalAllocSize = 0;
91static size_t gParcelGlobalAllocCount = 0;
92
Christopher Tatee4e0ae82016-03-24 16:03:44 -070093static size_t gMaxFds = 0;
94
Jeff Brown13b16042014-11-11 16:44:25 -080095// Maximum size of a blob to transfer in-place.
96static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
97
98enum {
99 BLOB_INPLACE = 0,
100 BLOB_ASHMEM_IMMUTABLE = 1,
101 BLOB_ASHMEM_MUTABLE = 2,
102};
103
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700104void acquire_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -0700105 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700106{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700107 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700108 case BINDER_TYPE_BINDER:
109 if (obj.binder) {
110 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800111 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700112 }
113 return;
114 case BINDER_TYPE_WEAK_BINDER:
115 if (obj.binder)
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800116 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->incWeak(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700117 return;
118 case BINDER_TYPE_HANDLE: {
119 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong81ed8642018-06-07 17:52:27 -0700120 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700121 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
122 b->incStrong(who);
123 }
124 return;
125 }
126 case BINDER_TYPE_WEAK_HANDLE: {
127 const wp<IBinder> b = proc->getWeakProxyForHandle(obj.handle);
Yi Kong81ed8642018-06-07 17:52:27 -0700128 if (b != nullptr) b.get_refs()->incWeak(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700129 return;
130 }
131 case BINDER_TYPE_FD: {
Yi Kong81ed8642018-06-07 17:52:27 -0700132 if ((obj.cookie != 0) && (outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700133 // If we own an ashmem fd, keep track of how much memory it refers to.
134 int size = ashmem_get_size_region(obj.handle);
135 if (size > 0) {
136 *outAshmemSize += size;
Adrian Rooscbf37262015-10-22 16:12:53 -0700137 }
138 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700139 return;
140 }
141 }
142
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700143 ALOGD("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700144}
145
Adrian Roos6bb31142015-10-22 16:46:12 -0700146void acquire_object(const sp<ProcessState>& proc,
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700147 const flat_binder_object& obj, const void* who)
148{
Yi Kong81ed8642018-06-07 17:52:27 -0700149 acquire_object(proc, obj, who, nullptr);
Adrian Roos6bb31142015-10-22 16:46:12 -0700150}
151
152static void release_object(const sp<ProcessState>& proc,
Adrian Rooscbf37262015-10-22 16:12:53 -0700153 const flat_binder_object& obj, const void* who, size_t* outAshmemSize)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700154{
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700155 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700156 case BINDER_TYPE_BINDER:
157 if (obj.binder) {
158 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800159 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700160 }
161 return;
162 case BINDER_TYPE_WEAK_BINDER:
163 if (obj.binder)
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800164 reinterpret_cast<RefBase::weakref_type*>(obj.binder)->decWeak(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700165 return;
166 case BINDER_TYPE_HANDLE: {
167 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong81ed8642018-06-07 17:52:27 -0700168 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700169 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
170 b->decStrong(who);
171 }
172 return;
173 }
174 case BINDER_TYPE_WEAK_HANDLE: {
175 const wp<IBinder> b = proc->getWeakProxyForHandle(obj.handle);
Yi Kong81ed8642018-06-07 17:52:27 -0700176 if (b != nullptr) b.get_refs()->decWeak(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700177 return;
178 }
179 case BINDER_TYPE_FD: {
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800180 if (obj.cookie != 0) { // owned
Yi Kong81ed8642018-06-07 17:52:27 -0700181 if ((outAshmemSize != nullptr) && ashmem_valid(obj.handle)) {
Mark Salyzyn80589362016-08-23 16:15:04 -0700182 int size = ashmem_get_size_region(obj.handle);
183 if (size > 0) {
184 *outAshmemSize -= size;
Adrian Roos6bb31142015-10-22 16:46:12 -0700185 }
Adrian Roos6bb31142015-10-22 16:46:12 -0700186 }
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800187
188 close(obj.handle);
Adrian Rooscbf37262015-10-22 16:12:53 -0700189 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700190 return;
191 }
192 }
193
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700194 ALOGE("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700195}
196
Adrian Roos6bb31142015-10-22 16:46:12 -0700197void release_object(const sp<ProcessState>& proc,
198 const flat_binder_object& obj, const void* who)
199{
Yi Kong81ed8642018-06-07 17:52:27 -0700200 release_object(proc, obj, who, nullptr);
Adrian Roos6bb31142015-10-22 16:46:12 -0700201}
202
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700203inline static status_t finish_flatten_binder(
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800204 const sp<IBinder>& /*binder*/, const flat_binder_object& flat, Parcel* out)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700205{
206 return out->writeObject(flat, false);
207}
208
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800209status_t flatten_binder(const sp<ProcessState>& /*proc*/,
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700210 const sp<IBinder>& binder, Parcel* out)
211{
212 flat_binder_object obj;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700213
Martijn Coenen2b631742017-05-05 11:16:59 -0700214 if (IPCThreadState::self()->backgroundSchedulingDisabled()) {
215 /* minimum priority for all nodes is nice 0 */
216 obj.flags = FLAT_BINDER_FLAG_ACCEPTS_FDS;
217 } else {
218 /* minimum priority for all nodes is MAX_NICE(19) */
219 obj.flags = 0x13 | FLAT_BINDER_FLAG_ACCEPTS_FDS;
220 }
221
Yi Kong81ed8642018-06-07 17:52:27 -0700222 if (binder != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700223 IBinder *local = binder->localBinder();
224 if (!local) {
225 BpBinder *proxy = binder->remoteBinder();
Yi Kong81ed8642018-06-07 17:52:27 -0700226 if (proxy == nullptr) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000227 ALOGE("null proxy");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700228 }
229 const int32_t handle = proxy ? proxy->handle() : 0;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700230 obj.hdr.type = BINDER_TYPE_HANDLE;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -0800231 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700232 obj.handle = handle;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800233 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700234 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700235 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800236 obj.binder = reinterpret_cast<uintptr_t>(local->getWeakRefs());
237 obj.cookie = reinterpret_cast<uintptr_t>(local);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700238 }
239 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700240 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800241 obj.binder = 0;
242 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700243 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700244
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700245 return finish_flatten_binder(binder, obj, out);
246}
247
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800248status_t flatten_binder(const sp<ProcessState>& /*proc*/,
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700249 const wp<IBinder>& binder, Parcel* out)
250{
251 flat_binder_object obj;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700252
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700253 obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
Yi Kong81ed8642018-06-07 17:52:27 -0700254 if (binder != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700255 sp<IBinder> real = binder.promote();
Yi Kong81ed8642018-06-07 17:52:27 -0700256 if (real != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700257 IBinder *local = real->localBinder();
258 if (!local) {
259 BpBinder *proxy = real->remoteBinder();
Yi Kong81ed8642018-06-07 17:52:27 -0700260 if (proxy == nullptr) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000261 ALOGE("null proxy");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700262 }
263 const int32_t handle = proxy ? proxy->handle() : 0;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700264 obj.hdr.type = BINDER_TYPE_WEAK_HANDLE;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -0800265 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700266 obj.handle = handle;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800267 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700268 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700269 obj.hdr.type = BINDER_TYPE_WEAK_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800270 obj.binder = reinterpret_cast<uintptr_t>(binder.get_refs());
271 obj.cookie = reinterpret_cast<uintptr_t>(binder.unsafe_get());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700272 }
273 return finish_flatten_binder(real, obj, out);
274 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700275
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700276 // XXX How to deal? In order to flatten the given binder,
277 // we need to probe it for information, which requires a primary
278 // reference... but we don't have one.
279 //
280 // The OpenBinder implementation uses a dynamic_cast<> here,
281 // but we can't do that with the different reference counting
282 // implementation we are using.
Steve Blocke6f43dd2012-01-06 19:20:56 +0000283 ALOGE("Unable to unflatten Binder weak reference!");
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700284 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800285 obj.binder = 0;
286 obj.cookie = 0;
Yi Kong81ed8642018-06-07 17:52:27 -0700287 return finish_flatten_binder(nullptr, obj, out);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700288
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700289 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700290 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800291 obj.binder = 0;
292 obj.cookie = 0;
Yi Kong81ed8642018-06-07 17:52:27 -0700293 return finish_flatten_binder(nullptr, obj, out);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700294 }
295}
296
297inline static status_t finish_unflatten_binder(
Colin Cross6f4f3ab2014-02-05 17:42:44 -0800298 BpBinder* /*proxy*/, const flat_binder_object& /*flat*/,
299 const Parcel& /*in*/)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700300{
301 return NO_ERROR;
302}
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700303
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700304status_t unflatten_binder(const sp<ProcessState>& proc,
305 const Parcel& in, sp<IBinder>* out)
306{
307 const flat_binder_object* flat = in.readObject(false);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700308
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700309 if (flat) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700310 switch (flat->hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700311 case BINDER_TYPE_BINDER:
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800312 *out = reinterpret_cast<IBinder*>(flat->cookie);
Yi Kong81ed8642018-06-07 17:52:27 -0700313 return finish_unflatten_binder(nullptr, *flat, in);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700314 case BINDER_TYPE_HANDLE:
315 *out = proc->getStrongProxyForHandle(flat->handle);
316 return finish_unflatten_binder(
317 static_cast<BpBinder*>(out->get()), *flat, in);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700318 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700319 }
320 return BAD_TYPE;
321}
322
323status_t unflatten_binder(const sp<ProcessState>& proc,
324 const Parcel& in, wp<IBinder>* out)
325{
326 const flat_binder_object* flat = in.readObject(false);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700327
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700328 if (flat) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700329 switch (flat->hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700330 case BINDER_TYPE_BINDER:
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800331 *out = reinterpret_cast<IBinder*>(flat->cookie);
Yi Kong81ed8642018-06-07 17:52:27 -0700332 return finish_unflatten_binder(nullptr, *flat, in);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700333 case BINDER_TYPE_WEAK_BINDER:
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800334 if (flat->binder != 0) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700335 out->set_object_and_refs(
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800336 reinterpret_cast<IBinder*>(flat->cookie),
337 reinterpret_cast<RefBase::weakref_type*>(flat->binder));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700338 } else {
Yi Kong81ed8642018-06-07 17:52:27 -0700339 *out = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700340 }
Yi Kong81ed8642018-06-07 17:52:27 -0700341 return finish_unflatten_binder(nullptr, *flat, in);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700342 case BINDER_TYPE_HANDLE:
343 case BINDER_TYPE_WEAK_HANDLE:
344 *out = proc->getWeakProxyForHandle(flat->handle);
345 return finish_unflatten_binder(
346 static_cast<BpBinder*>(out->unsafe_get()), *flat, in);
347 }
348 }
349 return BAD_TYPE;
350}
351
352// ---------------------------------------------------------------------------
353
354Parcel::Parcel()
355{
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800356 LOG_ALLOC("Parcel %p: constructing", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700357 initState();
358}
359
360Parcel::~Parcel()
361{
362 freeDataNoInit();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800363 LOG_ALLOC("Parcel %p: destroyed", this);
364}
365
366size_t Parcel::getGlobalAllocSize() {
Dianne Hackborna4cff882014-11-13 17:07:40 -0800367 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
368 size_t size = gParcelGlobalAllocSize;
369 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
370 return size;
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800371}
372
373size_t Parcel::getGlobalAllocCount() {
Dianne Hackborna4cff882014-11-13 17:07:40 -0800374 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
375 size_t count = gParcelGlobalAllocCount;
376 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
377 return count;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700378}
379
380const uint8_t* Parcel::data() const
381{
382 return mData;
383}
384
385size_t Parcel::dataSize() const
386{
387 return (mDataSize > mDataPos ? mDataSize : mDataPos);
388}
389
390size_t Parcel::dataAvail() const
391{
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700392 size_t result = dataSize() - dataPosition();
393 if (result > INT32_MAX) {
394 abort();
395 }
396 return result;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700397}
398
399size_t Parcel::dataPosition() const
400{
401 return mDataPos;
402}
403
404size_t Parcel::dataCapacity() const
405{
406 return mDataCapacity;
407}
408
409status_t Parcel::setDataSize(size_t size)
410{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700411 if (size > INT32_MAX) {
412 // don't accept size_t values which may have come from an
413 // inadvertent conversion from a negative int.
414 return BAD_VALUE;
415 }
416
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700417 status_t err;
418 err = continueWrite(size);
419 if (err == NO_ERROR) {
420 mDataSize = size;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700421 ALOGV("setDataSize Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700422 }
423 return err;
424}
425
426void Parcel::setDataPosition(size_t pos) const
427{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700428 if (pos > INT32_MAX) {
429 // don't accept size_t values which may have come from an
430 // inadvertent conversion from a negative int.
431 abort();
432 }
433
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700434 mDataPos = pos;
435 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -0800436 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700437}
438
439status_t Parcel::setDataCapacity(size_t size)
440{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700441 if (size > INT32_MAX) {
442 // don't accept size_t values which may have come from an
443 // inadvertent conversion from a negative int.
444 return BAD_VALUE;
445 }
446
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700447 if (size > mDataCapacity) return continueWrite(size);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700448 return NO_ERROR;
449}
450
451status_t Parcel::setData(const uint8_t* buffer, size_t len)
452{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700453 if (len > INT32_MAX) {
454 // don't accept size_t values which may have come from an
455 // inadvertent conversion from a negative int.
456 return BAD_VALUE;
457 }
458
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700459 status_t err = restartWrite(len);
460 if (err == NO_ERROR) {
461 memcpy(const_cast<uint8_t*>(data()), buffer, len);
462 mDataSize = len;
463 mFdsKnown = false;
464 }
465 return err;
466}
467
Andreas Huber51faf462011-04-13 10:21:56 -0700468status_t Parcel::appendFrom(const Parcel *parcel, size_t offset, size_t len)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700469{
470 const sp<ProcessState> proc(ProcessState::self());
471 status_t err;
Andreas Huber51faf462011-04-13 10:21:56 -0700472 const uint8_t *data = parcel->mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800473 const binder_size_t *objects = parcel->mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700474 size_t size = parcel->mObjectsSize;
475 int startPos = mDataPos;
476 int firstIndex = -1, lastIndex = -2;
477
478 if (len == 0) {
479 return NO_ERROR;
480 }
481
Nick Kralevichb6b14232015-04-02 09:36:02 -0700482 if (len > INT32_MAX) {
483 // don't accept size_t values which may have come from an
484 // inadvertent conversion from a negative int.
485 return BAD_VALUE;
486 }
487
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700488 // range checks against the source parcel size
489 if ((offset > parcel->mDataSize)
490 || (len > parcel->mDataSize)
491 || (offset + len > parcel->mDataSize)) {
492 return BAD_VALUE;
493 }
494
495 // Count objects in range
496 for (int i = 0; i < (int) size; i++) {
497 size_t off = objects[i];
Christopher Tate27182be2015-05-27 17:53:02 -0700498 if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700499 if (firstIndex == -1) {
500 firstIndex = i;
501 }
502 lastIndex = i;
503 }
504 }
505 int numObjects = lastIndex - firstIndex + 1;
506
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700507 if ((mDataSize+len) > mDataCapacity) {
508 // grow data
509 err = growData(len);
510 if (err != NO_ERROR) {
511 return err;
512 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700513 }
514
515 // append data
516 memcpy(mData + mDataPos, data + offset, len);
517 mDataPos += len;
518 mDataSize += len;
519
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400520 err = NO_ERROR;
521
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700522 if (numObjects > 0) {
523 // grow objects
524 if (mObjectsCapacity < mObjectsSize + numObjects) {
Christopher Tateed7a50c2015-06-08 14:45:14 -0700525 size_t newSize = ((mObjectsSize + numObjects)*3)/2;
Christopher Tate44235112016-11-03 13:32:41 -0700526 if (newSize*sizeof(binder_size_t) < mObjectsSize) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800527 binder_size_t *objects =
528 (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong81ed8642018-06-07 17:52:27 -0700529 if (objects == (binder_size_t*)nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700530 return NO_MEMORY;
531 }
532 mObjects = objects;
533 mObjectsCapacity = newSize;
534 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700535
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700536 // append and acquire objects
537 int idx = mObjectsSize;
538 for (int i = firstIndex; i <= lastIndex; i++) {
539 size_t off = objects[i] - offset + startPos;
540 mObjects[idx++] = off;
541 mObjectsSize++;
542
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700543 flat_binder_object* flat
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700544 = reinterpret_cast<flat_binder_object*>(mData + off);
Adrian Rooscbf37262015-10-22 16:12:53 -0700545 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700546
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700547 if (flat->hdr.type == BINDER_TYPE_FD) {
Dianne Hackborn8af0f822009-05-22 13:20:23 -0700548 // If this is a file descriptor, we need to dup it so the
549 // new Parcel now owns its own fd, and can declare that we
550 // officially know we have fds.
Nick Kralevichec9ec7d2016-12-17 19:47:27 -0800551 flat->handle = fcntl(flat->handle, F_DUPFD_CLOEXEC, 0);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800552 flat->cookie = 1;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700553 mHasFds = mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400554 if (!mAllowFds) {
555 err = FDS_NOT_ALLOWED;
556 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700557 }
558 }
559 }
560
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400561 return err;
562}
563
Dianne Hackborn15feb9b2017-04-10 15:34:35 -0700564int Parcel::compareData(const Parcel& other) {
565 size_t size = dataSize();
566 if (size != other.dataSize()) {
567 return size < other.dataSize() ? -1 : 1;
568 }
569 return memcmp(data(), other.data(), size);
570}
571
Jeff Brown13b16042014-11-11 16:44:25 -0800572bool Parcel::allowFds() const
573{
574 return mAllowFds;
575}
576
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700577bool Parcel::pushAllowFds(bool allowFds)
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400578{
579 const bool origValue = mAllowFds;
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700580 if (!allowFds) {
581 mAllowFds = false;
582 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400583 return origValue;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700584}
585
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700586void Parcel::restoreAllowFds(bool lastValue)
587{
588 mAllowFds = lastValue;
589}
590
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700591bool Parcel::hasFileDescriptors() const
592{
593 if (!mFdsKnown) {
594 scanForFds();
595 }
596 return mHasFds;
597}
598
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700599// Write RPC headers. (previously just the interface token)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700600status_t Parcel::writeInterfaceToken(const String16& interface)
601{
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700602 writeInt32(IPCThreadState::self()->getStrictModePolicy() |
603 STRICT_MODE_PENALTY_GATHER);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700604 // currently the interface identification token is just its name as a string
605 return writeString16(interface);
606}
607
Mathias Agopian83c04462009-05-22 19:00:22 -0700608bool Parcel::checkInterface(IBinder* binder) const
609{
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700610 return enforceInterface(binder->getInterfaceDescriptor());
Mathias Agopian83c04462009-05-22 19:00:22 -0700611}
612
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700613bool Parcel::enforceInterface(const String16& interface,
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700614 IPCThreadState* threadState) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700615{
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700616 int32_t strictPolicy = readInt32();
Yi Kong81ed8642018-06-07 17:52:27 -0700617 if (threadState == nullptr) {
Brad Fitzpatrick70081a12010-07-27 09:49:11 -0700618 threadState = IPCThreadState::self();
Brad Fitzpatricka877cd82010-07-07 16:06:39 -0700619 }
Brad Fitzpatrick52736032010-08-30 16:01:16 -0700620 if ((threadState->getLastTransactionBinderFlags() &
621 IBinder::FLAG_ONEWAY) != 0) {
622 // For one-way calls, the callee is running entirely
623 // disconnected from the caller, so disable StrictMode entirely.
624 // Not only does disk/network usage not impact the caller, but
625 // there's no way to commuicate back any violations anyway.
626 threadState->setStrictModePolicy(0);
627 } else {
628 threadState->setStrictModePolicy(strictPolicy);
629 }
Mathias Agopian83c04462009-05-22 19:00:22 -0700630 const String16 str(readString16());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700631 if (str == interface) {
632 return true;
633 } else {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700634 ALOGW("**** enforceInterface() expected '%s' but read '%s'",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700635 String8(interface).string(), String8(str).string());
636 return false;
637 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700638}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700639
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800640const binder_size_t* Parcel::objects() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700641{
642 return mObjects;
643}
644
645size_t Parcel::objectsCount() const
646{
647 return mObjectsSize;
648}
649
650status_t Parcel::errorCheck() const
651{
652 return mError;
653}
654
655void Parcel::setError(status_t err)
656{
657 mError = err;
658}
659
660status_t Parcel::finishWrite(size_t len)
661{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700662 if (len > INT32_MAX) {
663 // don't accept size_t values which may have come from an
664 // inadvertent conversion from a negative int.
665 return BAD_VALUE;
666 }
667
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700668 //printf("Finish write of %d\n", len);
669 mDataPos += len;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700670 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700671 if (mDataPos > mDataSize) {
672 mDataSize = mDataPos;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700673 ALOGV("finishWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700674 }
675 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
676 return NO_ERROR;
677}
678
679status_t Parcel::writeUnpadded(const void* data, size_t len)
680{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700681 if (len > INT32_MAX) {
682 // don't accept size_t values which may have come from an
683 // inadvertent conversion from a negative int.
684 return BAD_VALUE;
685 }
686
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700687 size_t end = mDataPos + len;
688 if (end < mDataPos) {
689 // integer overflow
690 return BAD_VALUE;
691 }
692
693 if (end <= mDataCapacity) {
694restart_write:
695 memcpy(mData+mDataPos, data, len);
696 return finishWrite(len);
697 }
698
699 status_t err = growData(len);
700 if (err == NO_ERROR) goto restart_write;
701 return err;
702}
703
704status_t Parcel::write(const void* data, size_t len)
705{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700706 if (len > INT32_MAX) {
707 // don't accept size_t values which may have come from an
708 // inadvertent conversion from a negative int.
709 return BAD_VALUE;
710 }
711
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700712 void* const d = writeInplace(len);
713 if (d) {
714 memcpy(d, data, len);
715 return NO_ERROR;
716 }
717 return mError;
718}
719
720void* Parcel::writeInplace(size_t len)
721{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700722 if (len > INT32_MAX) {
723 // don't accept size_t values which may have come from an
724 // inadvertent conversion from a negative int.
Yi Kong81ed8642018-06-07 17:52:27 -0700725 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -0700726 }
727
728 const size_t padded = pad_size(len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700729
730 // sanity check for integer overflow
731 if (mDataPos+padded < mDataPos) {
Yi Kong81ed8642018-06-07 17:52:27 -0700732 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700733 }
734
735 if ((mDataPos+padded) <= mDataCapacity) {
736restart_write:
737 //printf("Writing %ld bytes, padded to %ld\n", len, padded);
738 uint8_t* const data = mData+mDataPos;
739
740 // Need to pad at end?
741 if (padded != len) {
742#if BYTE_ORDER == BIG_ENDIAN
743 static const uint32_t mask[4] = {
744 0x00000000, 0xffffff00, 0xffff0000, 0xff000000
745 };
746#endif
747#if BYTE_ORDER == LITTLE_ENDIAN
748 static const uint32_t mask[4] = {
749 0x00000000, 0x00ffffff, 0x0000ffff, 0x000000ff
750 };
751#endif
752 //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
753 // *reinterpret_cast<void**>(data+padded-4));
754 *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
755 }
756
757 finishWrite(padded);
758 return data;
759 }
760
761 status_t err = growData(padded);
762 if (err == NO_ERROR) goto restart_write;
Yi Kong81ed8642018-06-07 17:52:27 -0700763 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700764}
765
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800766status_t Parcel::writeUtf8AsUtf16(const std::string& str) {
767 const uint8_t* strData = (uint8_t*)str.data();
768 const size_t strLen= str.length();
769 const ssize_t utf16Len = utf8_to_utf16_length(strData, strLen);
Sergio Girof4607432016-07-21 14:46:35 +0100770 if (utf16Len < 0 || utf16Len > std::numeric_limits<int32_t>::max()) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800771 return BAD_VALUE;
772 }
773
774 status_t err = writeInt32(utf16Len);
775 if (err) {
776 return err;
777 }
778
779 // Allocate enough bytes to hold our converted string and its terminating NULL.
780 void* dst = writeInplace((utf16Len + 1) * sizeof(char16_t));
781 if (!dst) {
782 return NO_MEMORY;
783 }
784
Sergio Girof4607432016-07-21 14:46:35 +0100785 utf8_to_utf16(strData, strLen, (char16_t*)dst, (size_t) utf16Len + 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800786
787 return NO_ERROR;
788}
789
790status_t Parcel::writeUtf8AsUtf16(const std::unique_ptr<std::string>& str) {
791 if (!str) {
792 return writeInt32(-1);
793 }
794 return writeUtf8AsUtf16(*str);
795}
796
Casey Dahlin185d3442016-02-09 11:08:35 -0800797namespace {
Casey Dahlinb9872622015-11-25 15:09:45 -0800798
Casey Dahlin185d3442016-02-09 11:08:35 -0800799template<typename T>
800status_t writeByteVectorInternal(Parcel* parcel, const std::vector<T>& val)
Casey Dahlin451ff582015-10-19 18:12:18 -0700801{
Christopher Wileyf0fc52b2015-10-31 13:22:15 -0700802 status_t status;
Casey Dahlin451ff582015-10-19 18:12:18 -0700803 if (val.size() > std::numeric_limits<int32_t>::max()) {
Christopher Wileyf0fc52b2015-10-31 13:22:15 -0700804 status = BAD_VALUE;
805 return status;
Casey Dahlin451ff582015-10-19 18:12:18 -0700806 }
807
Casey Dahlin185d3442016-02-09 11:08:35 -0800808 status = parcel->writeInt32(val.size());
Casey Dahlin451ff582015-10-19 18:12:18 -0700809 if (status != OK) {
810 return status;
811 }
812
Casey Dahlin185d3442016-02-09 11:08:35 -0800813 void* data = parcel->writeInplace(val.size());
Christopher Wileyf0fc52b2015-10-31 13:22:15 -0700814 if (!data) {
815 status = BAD_VALUE;
816 return status;
Casey Dahlin451ff582015-10-19 18:12:18 -0700817 }
818
Christopher Wileyf0fc52b2015-10-31 13:22:15 -0700819 memcpy(data, val.data(), val.size());
820 return status;
Casey Dahlin451ff582015-10-19 18:12:18 -0700821}
822
Casey Dahlin185d3442016-02-09 11:08:35 -0800823template<typename T>
824status_t writeByteVectorInternalPtr(Parcel* parcel,
825 const std::unique_ptr<std::vector<T>>& val)
826{
827 if (!val) {
828 return parcel->writeInt32(-1);
829 }
830
831 return writeByteVectorInternal(parcel, *val);
832}
833
834} // namespace
835
836status_t Parcel::writeByteVector(const std::vector<int8_t>& val) {
837 return writeByteVectorInternal(this, val);
838}
839
840status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<int8_t>>& val)
841{
842 return writeByteVectorInternalPtr(this, val);
843}
844
845status_t Parcel::writeByteVector(const std::vector<uint8_t>& val) {
846 return writeByteVectorInternal(this, val);
847}
848
849status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<uint8_t>>& val)
850{
851 return writeByteVectorInternalPtr(this, val);
852}
853
Casey Dahlin451ff582015-10-19 18:12:18 -0700854status_t Parcel::writeInt32Vector(const std::vector<int32_t>& val)
855{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800856 return writeTypedVector(val, &Parcel::writeInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -0700857}
858
Casey Dahlinb9872622015-11-25 15:09:45 -0800859status_t Parcel::writeInt32Vector(const std::unique_ptr<std::vector<int32_t>>& val)
860{
861 return writeNullableTypedVector(val, &Parcel::writeInt32);
862}
863
Casey Dahlin451ff582015-10-19 18:12:18 -0700864status_t Parcel::writeInt64Vector(const std::vector<int64_t>& val)
865{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800866 return writeTypedVector(val, &Parcel::writeInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -0700867}
868
Casey Dahlinb9872622015-11-25 15:09:45 -0800869status_t Parcel::writeInt64Vector(const std::unique_ptr<std::vector<int64_t>>& val)
870{
871 return writeNullableTypedVector(val, &Parcel::writeInt64);
872}
873
Casey Dahlin451ff582015-10-19 18:12:18 -0700874status_t Parcel::writeFloatVector(const std::vector<float>& val)
875{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800876 return writeTypedVector(val, &Parcel::writeFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -0700877}
878
Casey Dahlinb9872622015-11-25 15:09:45 -0800879status_t Parcel::writeFloatVector(const std::unique_ptr<std::vector<float>>& val)
880{
881 return writeNullableTypedVector(val, &Parcel::writeFloat);
882}
883
Casey Dahlin451ff582015-10-19 18:12:18 -0700884status_t Parcel::writeDoubleVector(const std::vector<double>& val)
885{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800886 return writeTypedVector(val, &Parcel::writeDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -0700887}
888
Casey Dahlinb9872622015-11-25 15:09:45 -0800889status_t Parcel::writeDoubleVector(const std::unique_ptr<std::vector<double>>& val)
890{
891 return writeNullableTypedVector(val, &Parcel::writeDouble);
892}
893
Casey Dahlin451ff582015-10-19 18:12:18 -0700894status_t Parcel::writeBoolVector(const std::vector<bool>& val)
895{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800896 return writeTypedVector(val, &Parcel::writeBool);
Casey Dahlin451ff582015-10-19 18:12:18 -0700897}
898
Casey Dahlinb9872622015-11-25 15:09:45 -0800899status_t Parcel::writeBoolVector(const std::unique_ptr<std::vector<bool>>& val)
900{
901 return writeNullableTypedVector(val, &Parcel::writeBool);
902}
903
Casey Dahlin451ff582015-10-19 18:12:18 -0700904status_t Parcel::writeCharVector(const std::vector<char16_t>& val)
905{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800906 return writeTypedVector(val, &Parcel::writeChar);
Casey Dahlin451ff582015-10-19 18:12:18 -0700907}
908
Casey Dahlinb9872622015-11-25 15:09:45 -0800909status_t Parcel::writeCharVector(const std::unique_ptr<std::vector<char16_t>>& val)
910{
911 return writeNullableTypedVector(val, &Parcel::writeChar);
912}
913
Casey Dahlin451ff582015-10-19 18:12:18 -0700914status_t Parcel::writeString16Vector(const std::vector<String16>& val)
915{
Christopher Wiley03d1eb62015-11-19 06:42:40 -0800916 return writeTypedVector(val, &Parcel::writeString16);
Casey Dahlin451ff582015-10-19 18:12:18 -0700917}
918
Casey Dahlinb9872622015-11-25 15:09:45 -0800919status_t Parcel::writeString16Vector(
920 const std::unique_ptr<std::vector<std::unique_ptr<String16>>>& val)
921{
922 return writeNullableTypedVector(val, &Parcel::writeString16);
923}
924
Christopher Wiley9a5e32f2016-01-28 16:56:53 -0800925status_t Parcel::writeUtf8VectorAsUtf16Vector(
926 const std::unique_ptr<std::vector<std::unique_ptr<std::string>>>& val) {
927 return writeNullableTypedVector(val, &Parcel::writeUtf8AsUtf16);
928}
929
930status_t Parcel::writeUtf8VectorAsUtf16Vector(const std::vector<std::string>& val) {
931 return writeTypedVector(val, &Parcel::writeUtf8AsUtf16);
932}
933
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700934status_t Parcel::writeInt32(int32_t val)
935{
Andreas Huber84a6d042009-08-17 13:33:27 -0700936 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700937}
Dan Stoza41a0f2f2014-12-01 10:01:10 -0800938
939status_t Parcel::writeUint32(uint32_t val)
940{
941 return writeAligned(val);
942}
943
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700944status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700945 if (len > INT32_MAX) {
946 // don't accept size_t values which may have come from an
947 // inadvertent conversion from a negative int.
948 return BAD_VALUE;
949 }
950
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700951 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700952 return writeInt32(-1);
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700953 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700954 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissen5c0106e2013-10-16 10:57:51 -0700955 if (ret == NO_ERROR) {
956 ret = write(val, len * sizeof(*val));
957 }
958 return ret;
959}
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700960status_t Parcel::writeByteArray(size_t len, const uint8_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -0700961 if (len > INT32_MAX) {
962 // don't accept size_t values which may have come from an
963 // inadvertent conversion from a negative int.
964 return BAD_VALUE;
965 }
966
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700967 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -0700968 return writeInt32(-1);
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700969 }
Chad Brubakere59cb432015-06-30 14:03:55 -0700970 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissenf0190bf2014-03-13 14:17:40 -0700971 if (ret == NO_ERROR) {
972 ret = write(val, len * sizeof(*val));
973 }
974 return ret;
975}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700976
Casey Dahlind6848f52015-10-15 15:44:59 -0700977status_t Parcel::writeBool(bool val)
978{
979 return writeInt32(int32_t(val));
980}
981
982status_t Parcel::writeChar(char16_t val)
983{
984 return writeInt32(int32_t(val));
985}
986
987status_t Parcel::writeByte(int8_t val)
988{
989 return writeInt32(int32_t(val));
990}
991
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700992status_t Parcel::writeInt64(int64_t val)
993{
Andreas Huber84a6d042009-08-17 13:33:27 -0700994 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700995}
996
Ronghua Wu2d13afd2015-03-16 11:11:07 -0700997status_t Parcel::writeUint64(uint64_t val)
998{
999 return writeAligned(val);
1000}
1001
Serban Constantinescuf683e012013-11-05 16:53:55 +00001002status_t Parcel::writePointer(uintptr_t val)
1003{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001004 return writeAligned<binder_uintptr_t>(val);
Serban Constantinescuf683e012013-11-05 16:53:55 +00001005}
1006
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001007status_t Parcel::writeFloat(float val)
1008{
Andreas Huber84a6d042009-08-17 13:33:27 -07001009 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001010}
1011
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001012#if defined(__mips__) && defined(__mips_hard_float)
1013
1014status_t Parcel::writeDouble(double val)
1015{
1016 union {
1017 double d;
1018 unsigned long long ll;
1019 } u;
1020 u.d = val;
1021 return writeAligned(u.ll);
1022}
1023
1024#else
1025
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001026status_t Parcel::writeDouble(double val)
1027{
Andreas Huber84a6d042009-08-17 13:33:27 -07001028 return writeAligned(val);
1029}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001030
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001031#endif
1032
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001033status_t Parcel::writeCString(const char* str)
1034{
1035 return write(str, strlen(str)+1);
1036}
1037
1038status_t Parcel::writeString8(const String8& str)
1039{
1040 status_t err = writeInt32(str.bytes());
Pravat Dalbeherad1dff8d2010-12-15 08:40:00 +01001041 // only write string if its length is more than zero characters,
1042 // as readString8 will only read if the length field is non-zero.
1043 // this is slightly different from how writeString16 works.
1044 if (str.bytes() > 0 && err == NO_ERROR) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001045 err = write(str.string(), str.bytes()+1);
1046 }
1047 return err;
1048}
1049
Casey Dahlinb9872622015-11-25 15:09:45 -08001050status_t Parcel::writeString16(const std::unique_ptr<String16>& str)
1051{
1052 if (!str) {
1053 return writeInt32(-1);
1054 }
1055
1056 return writeString16(*str);
1057}
1058
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001059status_t Parcel::writeString16(const String16& str)
1060{
1061 return writeString16(str.string(), str.size());
1062}
1063
1064status_t Parcel::writeString16(const char16_t* str, size_t len)
1065{
Yi Kong81ed8642018-06-07 17:52:27 -07001066 if (str == nullptr) return writeInt32(-1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001067
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001068 status_t err = writeInt32(len);
1069 if (err == NO_ERROR) {
1070 len *= sizeof(char16_t);
1071 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char16_t));
1072 if (data) {
1073 memcpy(data, str, len);
1074 *reinterpret_cast<char16_t*>(data+len) = 0;
1075 return NO_ERROR;
1076 }
1077 err = mError;
1078 }
1079 return err;
1080}
1081
1082status_t Parcel::writeStrongBinder(const sp<IBinder>& val)
1083{
1084 return flatten_binder(ProcessState::self(), val, this);
1085}
1086
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001087status_t Parcel::writeStrongBinderVector(const std::vector<sp<IBinder>>& val)
1088{
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001089 return writeTypedVector(val, &Parcel::writeStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001090}
1091
Casey Dahlinb9872622015-11-25 15:09:45 -08001092status_t Parcel::writeStrongBinderVector(const std::unique_ptr<std::vector<sp<IBinder>>>& val)
1093{
1094 return writeNullableTypedVector(val, &Parcel::writeStrongBinder);
1095}
1096
1097status_t Parcel::readStrongBinderVector(std::unique_ptr<std::vector<sp<IBinder>>>* val) const {
Christopher Wiley35d77ca2016-03-08 10:49:51 -08001098 return readNullableTypedVector(val, &Parcel::readNullableStrongBinder);
Casey Dahlinb9872622015-11-25 15:09:45 -08001099}
1100
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001101status_t Parcel::readStrongBinderVector(std::vector<sp<IBinder>>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001102 return readTypedVector(val, &Parcel::readStrongBinder);
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001103}
1104
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001105status_t Parcel::writeWeakBinder(const wp<IBinder>& val)
1106{
1107 return flatten_binder(ProcessState::self(), val, this);
1108}
1109
Casey Dahlinb9872622015-11-25 15:09:45 -08001110status_t Parcel::writeRawNullableParcelable(const Parcelable* parcelable) {
1111 if (!parcelable) {
1112 return writeInt32(0);
1113 }
1114
1115 return writeParcelable(*parcelable);
1116}
1117
Christopher Wiley97f048d2015-11-19 06:49:05 -08001118status_t Parcel::writeParcelable(const Parcelable& parcelable) {
1119 status_t status = writeInt32(1); // parcelable is not null.
1120 if (status != OK) {
1121 return status;
1122 }
1123 return parcelable.writeToParcel(this);
1124}
1125
Robert Quattlebaum6316f5b2017-01-04 13:25:14 -08001126status_t Parcel::writeValue(const binder::Value& value) {
1127 return value.writeToParcel(this);
1128}
1129
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001130status_t Parcel::writeNativeHandle(const native_handle* handle)
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001131{
Mathias Agopian1d0a95b2009-07-31 16:12:13 -07001132 if (!handle || handle->version != sizeof(native_handle))
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001133 return BAD_TYPE;
1134
1135 status_t err;
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001136 err = writeInt32(handle->numFds);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001137 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001138
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001139 err = writeInt32(handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001140 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001141
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001142 for (int i=0 ; err==NO_ERROR && i<handle->numFds ; i++)
1143 err = writeDupFileDescriptor(handle->data[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001144
1145 if (err != NO_ERROR) {
Steve Block9d453682011-12-20 16:23:08 +00001146 ALOGD("write native handle, write dup fd failed");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001147 return err;
1148 }
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001149 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001150 return err;
1151}
1152
Jeff Brown93ff1f92011-11-04 19:01:44 -07001153status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001154{
1155 flat_binder_object obj;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001156 obj.hdr.type = BINDER_TYPE_FD;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001157 obj.flags = 0x7f | FLAT_BINDER_FLAG_ACCEPTS_FDS;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -08001158 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001159 obj.handle = fd;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001160 obj.cookie = takeOwnership ? 1 : 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001161 return writeObject(obj, true);
1162}
1163
1164status_t Parcel::writeDupFileDescriptor(int fd)
1165{
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08001166 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
Jeff Brownd341c712011-11-04 20:19:33 -07001167 if (dupFd < 0) {
1168 return -errno;
1169 }
1170 status_t err = writeFileDescriptor(dupFd, true /*takeOwnership*/);
Casey Dahlin06673e32015-11-23 13:24:23 -08001171 if (err != OK) {
Jeff Brownd341c712011-11-04 20:19:33 -07001172 close(dupFd);
1173 }
1174 return err;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001175}
1176
Dianne Hackborn1941a402016-08-29 12:30:43 -07001177status_t Parcel::writeParcelFileDescriptor(int fd, bool takeOwnership)
1178{
1179 writeInt32(0);
1180 return writeFileDescriptor(fd, takeOwnership);
1181}
1182
Ryo Hashimotobf551892018-05-31 16:58:35 +09001183status_t Parcel::writeDupParcelFileDescriptor(int fd)
1184{
1185 int dupFd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1186 if (dupFd < 0) {
1187 return -errno;
1188 }
1189 status_t err = writeParcelFileDescriptor(dupFd, true /*takeOwnership*/);
1190 if (err != OK) {
1191 close(dupFd);
1192 }
1193 return err;
1194}
1195
Christopher Wiley2cf19952016-04-11 11:09:37 -07001196status_t Parcel::writeUniqueFileDescriptor(const base::unique_fd& fd) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001197 return writeDupFileDescriptor(fd.get());
1198}
1199
Christopher Wiley2cf19952016-04-11 11:09:37 -07001200status_t Parcel::writeUniqueFileDescriptorVector(const std::vector<base::unique_fd>& val) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001201 return writeTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1202}
1203
Christopher Wiley2cf19952016-04-11 11:09:37 -07001204status_t Parcel::writeUniqueFileDescriptorVector(const std::unique_ptr<std::vector<base::unique_fd>>& val) {
Casey Dahlinb9872622015-11-25 15:09:45 -08001205 return writeNullableTypedVector(val, &Parcel::writeUniqueFileDescriptor);
1206}
1207
Jeff Brown13b16042014-11-11 16:44:25 -08001208status_t Parcel::writeBlob(size_t len, bool mutableCopy, WritableBlob* outBlob)
Jeff Brown5707dbf2011-09-23 21:17:56 -07001209{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001210 if (len > INT32_MAX) {
1211 // don't accept size_t values which may have come from an
1212 // inadvertent conversion from a negative int.
1213 return BAD_VALUE;
1214 }
1215
Jeff Brown13b16042014-11-11 16:44:25 -08001216 status_t status;
1217 if (!mAllowFds || len <= BLOB_INPLACE_LIMIT) {
Steve Block6807e592011-10-20 11:56:00 +01001218 ALOGV("writeBlob: write in place");
Jeff Brown13b16042014-11-11 16:44:25 -08001219 status = writeInt32(BLOB_INPLACE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001220 if (status) return status;
1221
1222 void* ptr = writeInplace(len);
1223 if (!ptr) return NO_MEMORY;
1224
Jeff Brown13b16042014-11-11 16:44:25 -08001225 outBlob->init(-1, ptr, len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001226 return NO_ERROR;
1227 }
1228
Steve Block6807e592011-10-20 11:56:00 +01001229 ALOGV("writeBlob: write to ashmem");
Jeff Brown5707dbf2011-09-23 21:17:56 -07001230 int fd = ashmem_create_region("Parcel Blob", len);
1231 if (fd < 0) return NO_MEMORY;
1232
1233 int result = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE);
1234 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001235 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001236 } else {
Yi Kong81ed8642018-06-07 17:52:27 -07001237 void* ptr = ::mmap(nullptr, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001238 if (ptr == MAP_FAILED) {
1239 status = -errno;
1240 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001241 if (!mutableCopy) {
1242 result = ashmem_set_prot_region(fd, PROT_READ);
1243 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07001244 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001245 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001246 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001247 status = writeInt32(mutableCopy ? BLOB_ASHMEM_MUTABLE : BLOB_ASHMEM_IMMUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001248 if (!status) {
Jeff Brown93ff1f92011-11-04 19:01:44 -07001249 status = writeFileDescriptor(fd, true /*takeOwnership*/);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001250 if (!status) {
Jeff Brown13b16042014-11-11 16:44:25 -08001251 outBlob->init(fd, ptr, len, mutableCopy);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001252 return NO_ERROR;
1253 }
1254 }
1255 }
1256 }
1257 ::munmap(ptr, len);
1258 }
1259 ::close(fd);
1260 return status;
1261}
1262
Jeff Brown13b16042014-11-11 16:44:25 -08001263status_t Parcel::writeDupImmutableBlobFileDescriptor(int fd)
1264{
1265 // Must match up with what's done in writeBlob.
1266 if (!mAllowFds) return FDS_NOT_ALLOWED;
1267 status_t status = writeInt32(BLOB_ASHMEM_IMMUTABLE);
1268 if (status) return status;
1269 return writeDupFileDescriptor(fd);
1270}
1271
Mathias Agopiane1424282013-07-29 21:24:40 -07001272status_t Parcel::write(const FlattenableHelperInterface& val)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001273{
1274 status_t err;
1275
1276 // size if needed
Mathias Agopiane1424282013-07-29 21:24:40 -07001277 const size_t len = val.getFlattenedSize();
1278 const size_t fd_count = val.getFdCount();
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001279
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001280 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001281 // don't accept size_t values which may have come from an
1282 // inadvertent conversion from a negative int.
1283 return BAD_VALUE;
1284 }
1285
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001286 err = this->writeInt32(len);
1287 if (err) return err;
1288
1289 err = this->writeInt32(fd_count);
1290 if (err) return err;
1291
1292 // payload
Martijn Coenenf8542382018-04-04 11:46:56 +02001293 void* const buf = this->writeInplace(len);
Yi Kongfdd8da92018-06-07 17:52:27 -07001294 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001295 return BAD_VALUE;
1296
Yi Kong81ed8642018-06-07 17:52:27 -07001297 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001298 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001299 fds = new (std::nothrow) int[fd_count];
1300 if (fds == nullptr) {
1301 ALOGE("write: failed to allocate requested %zu fds", fd_count);
1302 return BAD_VALUE;
1303 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001304 }
1305
1306 err = val.flatten(buf, len, fds, fd_count);
1307 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1308 err = this->writeDupFileDescriptor( fds[i] );
1309 }
1310
1311 if (fd_count) {
1312 delete [] fds;
1313 }
1314
1315 return err;
1316}
1317
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001318status_t Parcel::writeObject(const flat_binder_object& val, bool nullMetaData)
1319{
1320 const bool enoughData = (mDataPos+sizeof(val)) <= mDataCapacity;
1321 const bool enoughObjects = mObjectsSize < mObjectsCapacity;
1322 if (enoughData && enoughObjects) {
1323restart_write:
1324 *reinterpret_cast<flat_binder_object*>(mData+mDataPos) = val;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001325
Christopher Tate98e67d32015-06-03 18:44:15 -07001326 // remember if it's a file descriptor
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001327 if (val.hdr.type == BINDER_TYPE_FD) {
Christopher Tate98e67d32015-06-03 18:44:15 -07001328 if (!mAllowFds) {
1329 // fail before modifying our object index
1330 return FDS_NOT_ALLOWED;
1331 }
1332 mHasFds = mFdsKnown = true;
1333 }
1334
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001335 // Need to write meta-data?
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001336 if (nullMetaData || val.binder != 0) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001337 mObjects[mObjectsSize] = mDataPos;
Adrian Rooscbf37262015-10-22 16:12:53 -07001338 acquire_object(ProcessState::self(), val, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001339 mObjectsSize++;
1340 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001341
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001342 return finishWrite(sizeof(flat_binder_object));
1343 }
1344
1345 if (!enoughData) {
1346 const status_t err = growData(sizeof(val));
1347 if (err != NO_ERROR) return err;
1348 }
1349 if (!enoughObjects) {
1350 size_t newSize = ((mObjectsSize+2)*3)/2;
Christopher Tate44235112016-11-03 13:32:41 -07001351 if (newSize*sizeof(binder_size_t) < mObjectsSize) return NO_MEMORY; // overflow
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001352 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t));
Yi Kong81ed8642018-06-07 17:52:27 -07001353 if (objects == nullptr) return NO_MEMORY;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001354 mObjects = objects;
1355 mObjectsCapacity = newSize;
1356 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001357
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001358 goto restart_write;
1359}
1360
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001361status_t Parcel::writeNoException()
1362{
Christopher Wiley09eb7492015-11-09 15:06:15 -08001363 binder::Status status;
1364 return status.writeToParcel(this);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001365}
1366
Robert Quattlebaum6316f5b2017-01-04 13:25:14 -08001367status_t Parcel::writeMap(const ::android::binder::Map& map_in)
1368{
1369 using ::std::map;
1370 using ::android::binder::Value;
1371 using ::android::binder::Map;
1372
1373 Map::const_iterator iter;
1374 status_t ret;
1375
1376 ret = writeInt32(map_in.size());
1377
1378 if (ret != NO_ERROR) {
1379 return ret;
1380 }
1381
1382 for (iter = map_in.begin(); iter != map_in.end(); ++iter) {
1383 ret = writeValue(Value(iter->first));
1384 if (ret != NO_ERROR) {
1385 return ret;
1386 }
1387
1388 ret = writeValue(iter->second);
1389 if (ret != NO_ERROR) {
1390 return ret;
1391 }
1392 }
1393
1394 return ret;
1395}
1396
1397status_t Parcel::writeNullableMap(const std::unique_ptr<binder::Map>& map)
1398{
Yi Kong81ed8642018-06-07 17:52:27 -07001399 if (map == nullptr) {
Robert Quattlebaum6316f5b2017-01-04 13:25:14 -08001400 return writeInt32(-1);
1401 }
1402
1403 return writeMap(*map.get());
1404}
1405
1406status_t Parcel::readMap(::android::binder::Map* map_out)const
1407{
1408 using ::std::map;
1409 using ::android::String16;
1410 using ::android::String8;
1411 using ::android::binder::Value;
1412 using ::android::binder::Map;
1413
1414 status_t ret = NO_ERROR;
1415 int32_t count;
1416
1417 ret = readInt32(&count);
1418 if (ret != NO_ERROR) {
1419 return ret;
1420 }
1421
1422 if (count < 0) {
1423 ALOGE("readMap: Unexpected count: %d", count);
1424 return (count == -1)
1425 ? UNEXPECTED_NULL
1426 : BAD_VALUE;
1427 }
1428
1429 map_out->clear();
1430
1431 while (count--) {
1432 Map::key_type key;
1433 Value value;
1434
1435 ret = readValue(&value);
1436 if (ret != NO_ERROR) {
1437 return ret;
1438 }
1439
1440 if (!value.getString(&key)) {
1441 ALOGE("readMap: Key type not a string (parcelType = %d)", value.parcelType());
1442 return BAD_VALUE;
1443 }
1444
1445 ret = readValue(&value);
1446 if (ret != NO_ERROR) {
1447 return ret;
1448 }
1449
1450 (*map_out)[key] = value;
1451 }
1452
1453 return ret;
1454}
1455
1456status_t Parcel::readNullableMap(std::unique_ptr<binder::Map>* map) const
1457{
1458 const size_t start = dataPosition();
1459 int32_t count;
1460 status_t status = readInt32(&count);
1461 map->reset();
1462
1463 if (status != OK || count == -1) {
1464 return status;
1465 }
1466
1467 setDataPosition(start);
1468 map->reset(new binder::Map());
1469
1470 status = readMap(map->get());
1471
1472 if (status != OK) {
1473 map->reset();
1474 }
1475
1476 return status;
1477}
1478
1479
1480
Colin Cross6f4f3ab2014-02-05 17:42:44 -08001481void Parcel::remove(size_t /*start*/, size_t /*amt*/)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001482{
1483 LOG_ALWAYS_FATAL("Parcel::remove() not yet implemented!");
1484}
1485
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001486status_t Parcel::validateReadData(size_t upperBound) const
1487{
1488 // Don't allow non-object reads on object data
1489 if (mObjectsSorted || mObjectsSize <= 1) {
1490data_sorted:
1491 // Expect to check only against the next object
1492 if (mNextObjectHint < mObjectsSize && upperBound > mObjects[mNextObjectHint]) {
1493 // For some reason the current read position is greater than the next object
1494 // hint. Iterate until we find the right object
1495 size_t nextObject = mNextObjectHint;
1496 do {
1497 if (mDataPos < mObjects[nextObject] + sizeof(flat_binder_object)) {
1498 // Requested info overlaps with an object
1499 ALOGE("Attempt to read from protected data in Parcel %p", this);
1500 return PERMISSION_DENIED;
1501 }
1502 nextObject++;
1503 } while (nextObject < mObjectsSize && upperBound > mObjects[nextObject]);
1504 mNextObjectHint = nextObject;
1505 }
1506 return NO_ERROR;
1507 }
1508 // Quickly determine if mObjects is sorted.
1509 binder_size_t* currObj = mObjects + mObjectsSize - 1;
1510 binder_size_t* prevObj = currObj;
1511 while (currObj > mObjects) {
1512 prevObj--;
1513 if(*prevObj > *currObj) {
1514 goto data_unsorted;
1515 }
1516 currObj--;
1517 }
1518 mObjectsSorted = true;
1519 goto data_sorted;
1520
1521data_unsorted:
1522 // Insertion Sort mObjects
1523 // Great for mostly sorted lists. If randomly sorted or reverse ordered mObjects become common,
1524 // switch to std::sort(mObjects, mObjects + mObjectsSize);
1525 for (binder_size_t* iter0 = mObjects + 1; iter0 < mObjects + mObjectsSize; iter0++) {
1526 binder_size_t temp = *iter0;
1527 binder_size_t* iter1 = iter0 - 1;
1528 while (iter1 >= mObjects && *iter1 > temp) {
1529 *(iter1 + 1) = *iter1;
1530 iter1--;
1531 }
1532 *(iter1 + 1) = temp;
1533 }
1534 mNextObjectHint = 0;
1535 mObjectsSorted = true;
1536 goto data_sorted;
1537}
1538
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001539status_t Parcel::read(void* outData, size_t len) const
1540{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001541 if (len > INT32_MAX) {
1542 // don't accept size_t values which may have come from an
1543 // inadvertent conversion from a negative int.
1544 return BAD_VALUE;
1545 }
1546
1547 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1548 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001549 if (mObjectsSize > 0) {
1550 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001551 if(err != NO_ERROR) {
1552 // Still increment the data position by the expected length
1553 mDataPos += pad_size(len);
1554 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
1555 return err;
1556 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001557 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001558 memcpy(outData, mData+mDataPos, len);
Nick Kralevichb6b14232015-04-02 09:36:02 -07001559 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001560 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001561 return NO_ERROR;
1562 }
1563 return NOT_ENOUGH_DATA;
1564}
1565
1566const void* Parcel::readInplace(size_t len) const
1567{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001568 if (len > INT32_MAX) {
1569 // don't accept size_t values which may have come from an
1570 // inadvertent conversion from a negative int.
Yi Kong81ed8642018-06-07 17:52:27 -07001571 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001572 }
1573
1574 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1575 && len <= pad_size(len)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001576 if (mObjectsSize > 0) {
1577 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001578 if(err != NO_ERROR) {
1579 // Still increment the data position by the expected length
1580 mDataPos += pad_size(len);
1581 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
Xin Lif11e2bd2018-06-08 15:11:57 -07001582 return nullptr;
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001583 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001584 }
1585
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001586 const void* data = mData+mDataPos;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001587 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001588 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001589 return data;
1590 }
Yi Kong81ed8642018-06-07 17:52:27 -07001591 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001592}
1593
Andreas Huber84a6d042009-08-17 13:33:27 -07001594template<class T>
1595status_t Parcel::readAligned(T *pArg) const {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001596 COMPILE_TIME_ASSERT_FUNCTION_SCOPE(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001597
1598 if ((mDataPos+sizeof(T)) <= mDataSize) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001599 if (mObjectsSize > 0) {
1600 status_t err = validateReadData(mDataPos + sizeof(T));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001601 if(err != NO_ERROR) {
1602 // Still increment the data position by the expected length
1603 mDataPos += sizeof(T);
1604 return err;
1605 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001606 }
1607
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001608 const void* data = mData+mDataPos;
Andreas Huber84a6d042009-08-17 13:33:27 -07001609 mDataPos += sizeof(T);
1610 *pArg = *reinterpret_cast<const T*>(data);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001611 return NO_ERROR;
1612 } else {
1613 return NOT_ENOUGH_DATA;
1614 }
1615}
1616
Andreas Huber84a6d042009-08-17 13:33:27 -07001617template<class T>
1618T Parcel::readAligned() const {
1619 T result;
1620 if (readAligned(&result) != NO_ERROR) {
1621 result = 0;
1622 }
1623
1624 return result;
1625}
1626
1627template<class T>
1628status_t Parcel::writeAligned(T val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001629 COMPILE_TIME_ASSERT_FUNCTION_SCOPE(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07001630
1631 if ((mDataPos+sizeof(val)) <= mDataCapacity) {
1632restart_write:
1633 *reinterpret_cast<T*>(mData+mDataPos) = val;
1634 return finishWrite(sizeof(val));
1635 }
1636
1637 status_t err = growData(sizeof(val));
1638 if (err == NO_ERROR) goto restart_write;
1639 return err;
1640}
1641
Casey Dahlin185d3442016-02-09 11:08:35 -08001642namespace {
1643
1644template<typename T>
1645status_t readByteVectorInternal(const Parcel* parcel,
1646 std::vector<T>* val) {
Casey Dahlin451ff582015-10-19 18:12:18 -07001647 val->clear();
1648
1649 int32_t size;
Casey Dahlin185d3442016-02-09 11:08:35 -08001650 status_t status = parcel->readInt32(&size);
Casey Dahlin451ff582015-10-19 18:12:18 -07001651
1652 if (status != OK) {
1653 return status;
1654 }
1655
Christopher Wiley4db672d2015-11-10 09:44:30 -08001656 if (size < 0) {
1657 status = UNEXPECTED_NULL;
1658 return status;
1659 }
Casey Dahlin185d3442016-02-09 11:08:35 -08001660 if (size_t(size) > parcel->dataAvail()) {
Christopher Wileyf0fc52b2015-10-31 13:22:15 -07001661 status = BAD_VALUE;
1662 return status;
Casey Dahlin451ff582015-10-19 18:12:18 -07001663 }
Christopher Wiley4db672d2015-11-10 09:44:30 -08001664
Paul Lietar433e87b2016-09-16 10:39:32 -07001665 T* data = const_cast<T*>(reinterpret_cast<const T*>(parcel->readInplace(size)));
Christopher Wileyf0fc52b2015-10-31 13:22:15 -07001666 if (!data) {
1667 status = BAD_VALUE;
1668 return status;
1669 }
Paul Lietar433e87b2016-09-16 10:39:32 -07001670 val->reserve(size);
1671 val->insert(val->end(), data, data + size);
Casey Dahlin451ff582015-10-19 18:12:18 -07001672
Christopher Wileyf0fc52b2015-10-31 13:22:15 -07001673 return status;
Casey Dahlin451ff582015-10-19 18:12:18 -07001674}
1675
Casey Dahlin185d3442016-02-09 11:08:35 -08001676template<typename T>
1677status_t readByteVectorInternalPtr(
1678 const Parcel* parcel,
1679 std::unique_ptr<std::vector<T>>* val) {
1680 const int32_t start = parcel->dataPosition();
Casey Dahlinb9872622015-11-25 15:09:45 -08001681 int32_t size;
Casey Dahlin185d3442016-02-09 11:08:35 -08001682 status_t status = parcel->readInt32(&size);
Casey Dahlinb9872622015-11-25 15:09:45 -08001683 val->reset();
1684
1685 if (status != OK || size < 0) {
1686 return status;
1687 }
1688
Casey Dahlin185d3442016-02-09 11:08:35 -08001689 parcel->setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001690 val->reset(new (std::nothrow) std::vector<T>());
Casey Dahlinb9872622015-11-25 15:09:45 -08001691
Casey Dahlin185d3442016-02-09 11:08:35 -08001692 status = readByteVectorInternal(parcel, val->get());
Casey Dahlinb9872622015-11-25 15:09:45 -08001693
1694 if (status != OK) {
1695 val->reset();
1696 }
1697
1698 return status;
1699}
1700
Casey Dahlin185d3442016-02-09 11:08:35 -08001701} // namespace
1702
1703status_t Parcel::readByteVector(std::vector<int8_t>* val) const {
1704 return readByteVectorInternal(this, val);
1705}
1706
1707status_t Parcel::readByteVector(std::vector<uint8_t>* val) const {
1708 return readByteVectorInternal(this, val);
1709}
1710
1711status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const {
1712 return readByteVectorInternalPtr(this, val);
1713}
1714
1715status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const {
1716 return readByteVectorInternalPtr(this, val);
1717}
1718
Casey Dahlinb9872622015-11-25 15:09:45 -08001719status_t Parcel::readInt32Vector(std::unique_ptr<std::vector<int32_t>>* val) const {
1720 return readNullableTypedVector(val, &Parcel::readInt32);
1721}
1722
Casey Dahlin451ff582015-10-19 18:12:18 -07001723status_t Parcel::readInt32Vector(std::vector<int32_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001724 return readTypedVector(val, &Parcel::readInt32);
Casey Dahlin451ff582015-10-19 18:12:18 -07001725}
1726
Casey Dahlinb9872622015-11-25 15:09:45 -08001727status_t Parcel::readInt64Vector(std::unique_ptr<std::vector<int64_t>>* val) const {
1728 return readNullableTypedVector(val, &Parcel::readInt64);
1729}
1730
Casey Dahlin451ff582015-10-19 18:12:18 -07001731status_t Parcel::readInt64Vector(std::vector<int64_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001732 return readTypedVector(val, &Parcel::readInt64);
Casey Dahlin451ff582015-10-19 18:12:18 -07001733}
1734
Casey Dahlinb9872622015-11-25 15:09:45 -08001735status_t Parcel::readFloatVector(std::unique_ptr<std::vector<float>>* val) const {
1736 return readNullableTypedVector(val, &Parcel::readFloat);
1737}
1738
Casey Dahlin451ff582015-10-19 18:12:18 -07001739status_t Parcel::readFloatVector(std::vector<float>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001740 return readTypedVector(val, &Parcel::readFloat);
Casey Dahlin451ff582015-10-19 18:12:18 -07001741}
1742
Casey Dahlinb9872622015-11-25 15:09:45 -08001743status_t Parcel::readDoubleVector(std::unique_ptr<std::vector<double>>* val) const {
1744 return readNullableTypedVector(val, &Parcel::readDouble);
1745}
1746
Casey Dahlin451ff582015-10-19 18:12:18 -07001747status_t Parcel::readDoubleVector(std::vector<double>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001748 return readTypedVector(val, &Parcel::readDouble);
Casey Dahlin451ff582015-10-19 18:12:18 -07001749}
1750
Casey Dahlinb9872622015-11-25 15:09:45 -08001751status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const {
1752 const int32_t start = dataPosition();
1753 int32_t size;
1754 status_t status = readInt32(&size);
1755 val->reset();
Casey Dahlin451ff582015-10-19 18:12:18 -07001756
Casey Dahlinb9872622015-11-25 15:09:45 -08001757 if (status != OK || size < 0) {
1758 return status;
1759 }
1760
1761 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001762 val->reset(new (std::nothrow) std::vector<bool>());
Casey Dahlinb9872622015-11-25 15:09:45 -08001763
1764 status = readBoolVector(val->get());
1765
1766 if (status != OK) {
1767 val->reset();
1768 }
1769
1770 return status;
1771}
1772
1773status_t Parcel::readBoolVector(std::vector<bool>* val) const {
Casey Dahlin451ff582015-10-19 18:12:18 -07001774 int32_t size;
1775 status_t status = readInt32(&size);
1776
1777 if (status != OK) {
1778 return status;
1779 }
1780
1781 if (size < 0) {
Christopher Wiley4db672d2015-11-10 09:44:30 -08001782 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07001783 }
1784
1785 val->resize(size);
1786
1787 /* C++ bool handling means a vector of bools isn't necessarily addressable
1788 * (we might use individual bits)
1789 */
Christopher Wiley97887982015-10-27 16:33:47 -07001790 bool data;
1791 for (int32_t i = 0; i < size; ++i) {
Casey Dahlin451ff582015-10-19 18:12:18 -07001792 status = readBool(&data);
1793 (*val)[i] = data;
1794
1795 if (status != OK) {
1796 return status;
1797 }
1798 }
1799
1800 return OK;
1801}
1802
Casey Dahlinb9872622015-11-25 15:09:45 -08001803status_t Parcel::readCharVector(std::unique_ptr<std::vector<char16_t>>* val) const {
1804 return readNullableTypedVector(val, &Parcel::readChar);
1805}
1806
Casey Dahlin451ff582015-10-19 18:12:18 -07001807status_t Parcel::readCharVector(std::vector<char16_t>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001808 return readTypedVector(val, &Parcel::readChar);
Casey Dahlin451ff582015-10-19 18:12:18 -07001809}
1810
Casey Dahlinb9872622015-11-25 15:09:45 -08001811status_t Parcel::readString16Vector(
1812 std::unique_ptr<std::vector<std::unique_ptr<String16>>>* val) const {
1813 return readNullableTypedVector(val, &Parcel::readString16);
1814}
1815
Casey Dahlin451ff582015-10-19 18:12:18 -07001816status_t Parcel::readString16Vector(std::vector<String16>* val) const {
Christopher Wiley03d1eb62015-11-19 06:42:40 -08001817 return readTypedVector(val, &Parcel::readString16);
Casey Dahlin451ff582015-10-19 18:12:18 -07001818}
1819
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001820status_t Parcel::readUtf8VectorFromUtf16Vector(
1821 std::unique_ptr<std::vector<std::unique_ptr<std::string>>>* val) const {
1822 return readNullableTypedVector(val, &Parcel::readUtf8FromUtf16);
1823}
1824
1825status_t Parcel::readUtf8VectorFromUtf16Vector(std::vector<std::string>* val) const {
1826 return readTypedVector(val, &Parcel::readUtf8FromUtf16);
1827}
Casey Dahlin451ff582015-10-19 18:12:18 -07001828
Andreas Huber84a6d042009-08-17 13:33:27 -07001829status_t Parcel::readInt32(int32_t *pArg) const
1830{
1831 return readAligned(pArg);
1832}
1833
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001834int32_t Parcel::readInt32() const
1835{
Andreas Huber84a6d042009-08-17 13:33:27 -07001836 return readAligned<int32_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001837}
1838
Dan Stoza41a0f2f2014-12-01 10:01:10 -08001839status_t Parcel::readUint32(uint32_t *pArg) const
1840{
1841 return readAligned(pArg);
1842}
1843
1844uint32_t Parcel::readUint32() const
1845{
1846 return readAligned<uint32_t>();
1847}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001848
1849status_t Parcel::readInt64(int64_t *pArg) const
1850{
Andreas Huber84a6d042009-08-17 13:33:27 -07001851 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001852}
1853
1854
1855int64_t Parcel::readInt64() const
1856{
Andreas Huber84a6d042009-08-17 13:33:27 -07001857 return readAligned<int64_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001858}
1859
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001860status_t Parcel::readUint64(uint64_t *pArg) const
1861{
1862 return readAligned(pArg);
1863}
1864
1865uint64_t Parcel::readUint64() const
1866{
1867 return readAligned<uint64_t>();
1868}
1869
Serban Constantinescuf683e012013-11-05 16:53:55 +00001870status_t Parcel::readPointer(uintptr_t *pArg) const
1871{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001872 status_t ret;
1873 binder_uintptr_t ptr;
1874 ret = readAligned(&ptr);
1875 if (!ret)
1876 *pArg = ptr;
1877 return ret;
Serban Constantinescuf683e012013-11-05 16:53:55 +00001878}
1879
1880uintptr_t Parcel::readPointer() const
1881{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001882 return readAligned<binder_uintptr_t>();
Serban Constantinescuf683e012013-11-05 16:53:55 +00001883}
1884
1885
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001886status_t Parcel::readFloat(float *pArg) const
1887{
Andreas Huber84a6d042009-08-17 13:33:27 -07001888 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001889}
1890
1891
1892float Parcel::readFloat() const
1893{
Andreas Huber84a6d042009-08-17 13:33:27 -07001894 return readAligned<float>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001895}
1896
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001897#if defined(__mips__) && defined(__mips_hard_float)
1898
1899status_t Parcel::readDouble(double *pArg) const
1900{
1901 union {
1902 double d;
1903 unsigned long long ll;
1904 } u;
Narayan Kamath2c68d382014-06-04 15:04:29 +01001905 u.d = 0;
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001906 status_t status;
1907 status = readAligned(&u.ll);
1908 *pArg = u.d;
1909 return status;
1910}
1911
1912double Parcel::readDouble() const
1913{
1914 union {
1915 double d;
1916 unsigned long long ll;
1917 } u;
1918 u.ll = readAligned<unsigned long long>();
1919 return u.d;
1920}
1921
1922#else
1923
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001924status_t Parcel::readDouble(double *pArg) const
1925{
Andreas Huber84a6d042009-08-17 13:33:27 -07001926 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001927}
1928
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001929double Parcel::readDouble() const
1930{
Andreas Huber84a6d042009-08-17 13:33:27 -07001931 return readAligned<double>();
1932}
1933
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001934#endif
1935
Andreas Huber84a6d042009-08-17 13:33:27 -07001936status_t Parcel::readIntPtr(intptr_t *pArg) const
1937{
1938 return readAligned(pArg);
1939}
1940
1941
1942intptr_t Parcel::readIntPtr() const
1943{
1944 return readAligned<intptr_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001945}
1946
Casey Dahlind6848f52015-10-15 15:44:59 -07001947status_t Parcel::readBool(bool *pArg) const
1948{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001949 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001950 status_t ret = readInt32(&tmp);
1951 *pArg = (tmp != 0);
1952 return ret;
1953}
1954
1955bool Parcel::readBool() const
1956{
1957 return readInt32() != 0;
1958}
1959
1960status_t Parcel::readChar(char16_t *pArg) const
1961{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001962 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001963 status_t ret = readInt32(&tmp);
1964 *pArg = char16_t(tmp);
1965 return ret;
1966}
1967
1968char16_t Parcel::readChar() const
1969{
1970 return char16_t(readInt32());
1971}
1972
1973status_t Parcel::readByte(int8_t *pArg) const
1974{
Manoj Gupta6eb62052017-07-12 10:29:15 -07001975 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07001976 status_t ret = readInt32(&tmp);
1977 *pArg = int8_t(tmp);
1978 return ret;
1979}
1980
1981int8_t Parcel::readByte() const
1982{
1983 return int8_t(readInt32());
1984}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001985
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001986status_t Parcel::readUtf8FromUtf16(std::string* str) const {
1987 size_t utf16Size = 0;
1988 const char16_t* src = readString16Inplace(&utf16Size);
1989 if (!src) {
1990 return UNEXPECTED_NULL;
1991 }
1992
1993 // Save ourselves the trouble, we're done.
1994 if (utf16Size == 0u) {
1995 str->clear();
1996 return NO_ERROR;
1997 }
1998
Sergio Giro9b39ebe2016-06-28 18:19:33 +01001999 // Allow for closing '\0'
2000 ssize_t utf8Size = utf16_to_utf8_length(src, utf16Size) + 1;
2001 if (utf8Size < 1) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002002 return BAD_VALUE;
2003 }
2004 // Note that while it is probably safe to assume string::resize keeps a
Sergio Giro9b39ebe2016-06-28 18:19:33 +01002005 // spare byte around for the trailing null, we still pass the size including the trailing null
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002006 str->resize(utf8Size);
Sergio Giro9b39ebe2016-06-28 18:19:33 +01002007 utf16_to_utf8(src, utf16Size, &((*str)[0]), utf8Size);
2008 str->resize(utf8Size - 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002009 return NO_ERROR;
2010}
2011
2012status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const {
2013 const int32_t start = dataPosition();
2014 int32_t size;
2015 status_t status = readInt32(&size);
2016 str->reset();
2017
2018 if (status != OK || size < 0) {
2019 return status;
2020 }
2021
2022 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002023 str->reset(new (std::nothrow) std::string());
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002024 return readUtf8FromUtf16(str->get());
2025}
2026
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002027const char* Parcel::readCString() const
2028{
2029 const size_t avail = mDataSize-mDataPos;
2030 if (avail > 0) {
2031 const char* str = reinterpret_cast<const char*>(mData+mDataPos);
2032 // is the string's trailing NUL within the parcel's valid bounds?
2033 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
2034 if (eos) {
2035 const size_t len = eos - str;
Nick Kralevichb6b14232015-04-02 09:36:02 -07002036 mDataPos += pad_size(len+1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002037 ALOGV("readCString Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002038 return str;
2039 }
2040 }
Yi Kong81ed8642018-06-07 17:52:27 -07002041 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002042}
2043
2044String8 Parcel::readString8() const
2045{
Roshan Pius87b64d22016-07-18 12:51:02 -07002046 String8 retString;
2047 status_t status = readString8(&retString);
2048 if (status != OK) {
2049 // We don't care about errors here, so just return an empty string.
2050 return String8();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002051 }
Roshan Pius87b64d22016-07-18 12:51:02 -07002052 return retString;
2053}
2054
2055status_t Parcel::readString8(String8* pArg) const
2056{
2057 int32_t size;
2058 status_t status = readInt32(&size);
2059 if (status != OK) {
2060 return status;
2061 }
2062 // watch for potential int overflow from size+1
2063 if (size < 0 || size >= INT32_MAX) {
2064 return BAD_VALUE;
2065 }
2066 // |writeString8| writes nothing for empty string.
2067 if (size == 0) {
2068 *pArg = String8();
2069 return OK;
2070 }
2071 const char* str = (const char*)readInplace(size + 1);
Yi Kong81ed8642018-06-07 17:52:27 -07002072 if (str == nullptr) {
Roshan Pius87b64d22016-07-18 12:51:02 -07002073 return BAD_VALUE;
2074 }
2075 pArg->setTo(str, size);
2076 return OK;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002077}
2078
2079String16 Parcel::readString16() const
2080{
2081 size_t len;
2082 const char16_t* str = readString16Inplace(&len);
2083 if (str) return String16(str, len);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002084 ALOGE("Reading a NULL string not supported here.");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002085 return String16();
2086}
2087
Casey Dahlinb9872622015-11-25 15:09:45 -08002088status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const
2089{
2090 const int32_t start = dataPosition();
2091 int32_t size;
2092 status_t status = readInt32(&size);
2093 pArg->reset();
2094
2095 if (status != OK || size < 0) {
2096 return status;
2097 }
2098
2099 setDataPosition(start);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002100 pArg->reset(new (std::nothrow) String16());
Casey Dahlinb9872622015-11-25 15:09:45 -08002101
2102 status = readString16(pArg->get());
2103
2104 if (status != OK) {
2105 pArg->reset();
2106 }
2107
2108 return status;
2109}
2110
Casey Dahlin451ff582015-10-19 18:12:18 -07002111status_t Parcel::readString16(String16* pArg) const
2112{
2113 size_t len;
2114 const char16_t* str = readString16Inplace(&len);
2115 if (str) {
Casey Dahlin1515ea12015-10-20 16:26:23 -07002116 pArg->setTo(str, len);
Casey Dahlin451ff582015-10-19 18:12:18 -07002117 return 0;
2118 } else {
2119 *pArg = String16();
Christopher Wiley4db672d2015-11-10 09:44:30 -08002120 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07002121 }
2122}
2123
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002124const char16_t* Parcel::readString16Inplace(size_t* outLen) const
2125{
2126 int32_t size = readInt32();
2127 // watch for potential int overflow from size+1
2128 if (size >= 0 && size < INT32_MAX) {
2129 *outLen = size;
2130 const char16_t* str = (const char16_t*)readInplace((size+1)*sizeof(char16_t));
Yi Kong81ed8642018-06-07 17:52:27 -07002131 if (str != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002132 return str;
2133 }
2134 }
2135 *outLen = 0;
Yi Kong81ed8642018-06-07 17:52:27 -07002136 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002137}
2138
Casey Dahlinf0c13772015-10-27 18:33:56 -07002139status_t Parcel::readStrongBinder(sp<IBinder>* val) const
2140{
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002141 status_t status = readNullableStrongBinder(val);
2142 if (status == OK && !val->get()) {
2143 status = UNEXPECTED_NULL;
2144 }
2145 return status;
2146}
2147
2148status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const
2149{
Casey Dahlinf0c13772015-10-27 18:33:56 -07002150 return unflatten_binder(ProcessState::self(), *this, val);
2151}
2152
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002153sp<IBinder> Parcel::readStrongBinder() const
2154{
2155 sp<IBinder> val;
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002156 // Note that a lot of code in Android reads binders by hand with this
2157 // method, and that code has historically been ok with getting nullptr
2158 // back (while ignoring error codes).
2159 readNullableStrongBinder(&val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002160 return val;
2161}
2162
2163wp<IBinder> Parcel::readWeakBinder() const
2164{
2165 wp<IBinder> val;
2166 unflatten_binder(ProcessState::self(), *this, &val);
2167 return val;
2168}
2169
Christopher Wiley97f048d2015-11-19 06:49:05 -08002170status_t Parcel::readParcelable(Parcelable* parcelable) const {
2171 int32_t have_parcelable = 0;
2172 status_t status = readInt32(&have_parcelable);
2173 if (status != OK) {
2174 return status;
2175 }
2176 if (!have_parcelable) {
2177 return UNEXPECTED_NULL;
2178 }
2179 return parcelable->readFromParcel(this);
2180}
2181
Robert Quattlebaum6316f5b2017-01-04 13:25:14 -08002182status_t Parcel::readValue(binder::Value* value) const {
2183 return value->readFromParcel(this);
2184}
2185
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002186int32_t Parcel::readExceptionCode() const
2187{
Christopher Wiley09eb7492015-11-09 15:06:15 -08002188 binder::Status status;
2189 status.readFromParcel(*this);
2190 return status.exceptionCode();
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002191}
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002192
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002193native_handle* Parcel::readNativeHandle() const
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002194{
2195 int numFds, numInts;
2196 status_t err;
2197 err = readInt32(&numFds);
Yi Kong81ed8642018-06-07 17:52:27 -07002198 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002199 err = readInt32(&numInts);
Yi Kong81ed8642018-06-07 17:52:27 -07002200 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002201
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002202 native_handle* h = native_handle_create(numFds, numInts);
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002203 if (!h) {
Yi Kong81ed8642018-06-07 17:52:27 -07002204 return nullptr;
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002205 }
2206
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002207 for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002208 h->data[i] = fcntl(readFileDescriptor(), F_DUPFD_CLOEXEC, 0);
Marco Nelissen1de79662016-04-26 08:44:09 -07002209 if (h->data[i] < 0) {
2210 for (int j = 0; j < i; j++) {
2211 close(h->data[j]);
2212 }
2213 native_handle_delete(h);
Yi Kong81ed8642018-06-07 17:52:27 -07002214 return nullptr;
Marco Nelissen1de79662016-04-26 08:44:09 -07002215 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002216 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002217 err = read(h->data + numFds, sizeof(int)*numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002218 if (err != NO_ERROR) {
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002219 native_handle_close(h);
2220 native_handle_delete(h);
Yi Kong81ed8642018-06-07 17:52:27 -07002221 h = nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002222 }
2223 return h;
2224}
2225
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002226int Parcel::readFileDescriptor() const
2227{
2228 const flat_binder_object* flat = readObject(true);
Casey Dahlin06673e32015-11-23 13:24:23 -08002229
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002230 if (flat && flat->hdr.type == BINDER_TYPE_FD) {
Casey Dahlin06673e32015-11-23 13:24:23 -08002231 return flat->handle;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002232 }
Casey Dahlin06673e32015-11-23 13:24:23 -08002233
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002234 return BAD_TYPE;
2235}
2236
Dianne Hackborn1941a402016-08-29 12:30:43 -07002237int Parcel::readParcelFileDescriptor() const
2238{
2239 int32_t hasComm = readInt32();
2240 int fd = readFileDescriptor();
2241 if (hasComm != 0) {
2242 // skip
2243 readFileDescriptor();
2244 }
2245 return fd;
2246}
2247
Christopher Wiley2cf19952016-04-11 11:09:37 -07002248status_t Parcel::readUniqueFileDescriptor(base::unique_fd* val) const
Casey Dahlin06673e32015-11-23 13:24:23 -08002249{
2250 int got = readFileDescriptor();
2251
2252 if (got == BAD_TYPE) {
2253 return BAD_TYPE;
2254 }
2255
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002256 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
Casey Dahlin06673e32015-11-23 13:24:23 -08002257
2258 if (val->get() < 0) {
2259 return BAD_VALUE;
2260 }
2261
2262 return OK;
2263}
2264
Ryo Hashimotobf551892018-05-31 16:58:35 +09002265status_t Parcel::readUniqueParcelFileDescriptor(base::unique_fd* val) const
2266{
2267 int got = readParcelFileDescriptor();
2268
2269 if (got == BAD_TYPE) {
2270 return BAD_TYPE;
2271 }
2272
2273 val->reset(fcntl(got, F_DUPFD_CLOEXEC, 0));
2274
2275 if (val->get() < 0) {
2276 return BAD_VALUE;
2277 }
2278
2279 return OK;
2280}
Casey Dahlin06673e32015-11-23 13:24:23 -08002281
Christopher Wiley2cf19952016-04-11 11:09:37 -07002282status_t Parcel::readUniqueFileDescriptorVector(std::unique_ptr<std::vector<base::unique_fd>>* val) const {
Casey Dahlinb9872622015-11-25 15:09:45 -08002283 return readNullableTypedVector(val, &Parcel::readUniqueFileDescriptor);
2284}
2285
Christopher Wiley2cf19952016-04-11 11:09:37 -07002286status_t Parcel::readUniqueFileDescriptorVector(std::vector<base::unique_fd>* val) const {
Casey Dahlin06673e32015-11-23 13:24:23 -08002287 return readTypedVector(val, &Parcel::readUniqueFileDescriptor);
2288}
2289
Jeff Brown5707dbf2011-09-23 21:17:56 -07002290status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
2291{
Jeff Brown13b16042014-11-11 16:44:25 -08002292 int32_t blobType;
2293 status_t status = readInt32(&blobType);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002294 if (status) return status;
2295
Jeff Brown13b16042014-11-11 16:44:25 -08002296 if (blobType == BLOB_INPLACE) {
Steve Block6807e592011-10-20 11:56:00 +01002297 ALOGV("readBlob: read in place");
Jeff Brown5707dbf2011-09-23 21:17:56 -07002298 const void* ptr = readInplace(len);
2299 if (!ptr) return BAD_VALUE;
2300
Jeff Brown13b16042014-11-11 16:44:25 -08002301 outBlob->init(-1, const_cast<void*>(ptr), len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002302 return NO_ERROR;
2303 }
2304
Steve Block6807e592011-10-20 11:56:00 +01002305 ALOGV("readBlob: read from ashmem");
Jeff Brown13b16042014-11-11 16:44:25 -08002306 bool isMutable = (blobType == BLOB_ASHMEM_MUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002307 int fd = readFileDescriptor();
2308 if (fd == int(BAD_TYPE)) return BAD_VALUE;
2309
Yi Kong81ed8642018-06-07 17:52:27 -07002310 void* ptr = ::mmap(nullptr, len, isMutable ? PROT_READ | PROT_WRITE : PROT_READ,
Jeff Brown13b16042014-11-11 16:44:25 -08002311 MAP_SHARED, fd, 0);
Narayan Kamath9ea09752014-10-08 17:35:45 +01002312 if (ptr == MAP_FAILED) return NO_MEMORY;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002313
Jeff Brown13b16042014-11-11 16:44:25 -08002314 outBlob->init(fd, ptr, len, isMutable);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002315 return NO_ERROR;
2316}
2317
Mathias Agopiane1424282013-07-29 21:24:40 -07002318status_t Parcel::read(FlattenableHelperInterface& val) const
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002319{
2320 // size
2321 const size_t len = this->readInt32();
2322 const size_t fd_count = this->readInt32();
2323
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002324 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07002325 // don't accept size_t values which may have come from an
2326 // inadvertent conversion from a negative int.
2327 return BAD_VALUE;
2328 }
2329
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002330 // payload
Nick Kralevichb6b14232015-04-02 09:36:02 -07002331 void const* const buf = this->readInplace(pad_size(len));
Yi Kong81ed8642018-06-07 17:52:27 -07002332 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002333 return BAD_VALUE;
2334
Yi Kong81ed8642018-06-07 17:52:27 -07002335 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002336 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002337 fds = new (std::nothrow) int[fd_count];
2338 if (fds == nullptr) {
2339 ALOGE("read: failed to allocate requested %zu fds", fd_count);
2340 return BAD_VALUE;
2341 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002342 }
2343
2344 status_t err = NO_ERROR;
2345 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
Fabien Sanglardd84ff312016-10-21 10:58:26 -07002346 int fd = this->readFileDescriptor();
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002347 if (fd < 0 || ((fds[i] = fcntl(fd, F_DUPFD_CLOEXEC, 0)) < 0)) {
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002348 err = BAD_VALUE;
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002349 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 -07002350 i, fds[i], fd_count, strerror(fd < 0 ? -fd : errno));
2351 // Close all the file descriptors that were dup-ed.
2352 for (size_t j=0; j<i ;j++) {
2353 close(fds[j]);
2354 }
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002355 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002356 }
2357
2358 if (err == NO_ERROR) {
2359 err = val.unflatten(buf, len, fds, fd_count);
2360 }
2361
2362 if (fd_count) {
2363 delete [] fds;
2364 }
2365
2366 return err;
2367}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002368const flat_binder_object* Parcel::readObject(bool nullMetaData) const
2369{
2370 const size_t DPOS = mDataPos;
2371 if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
2372 const flat_binder_object* obj
2373 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
2374 mDataPos = DPOS + sizeof(flat_binder_object);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002375 if (!nullMetaData && (obj->cookie == 0 && obj->binder == 0)) {
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002376 // When transferring a NULL object, we don't write it into
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002377 // the object list, so we don't want to check for it when
2378 // reading.
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002379 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002380 return obj;
2381 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002382
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002383 // Ensure that this object is valid...
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002384 binder_size_t* const OBJS = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002385 const size_t N = mObjectsSize;
2386 size_t opos = mNextObjectHint;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002387
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002388 if (N > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002389 ALOGV("Parcel %p looking for obj at %zu, hint=%zu",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002390 this, DPOS, opos);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002391
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002392 // Start at the current hint position, looking for an object at
2393 // the current data position.
2394 if (opos < N) {
2395 while (opos < (N-1) && OBJS[opos] < DPOS) {
2396 opos++;
2397 }
2398 } else {
2399 opos = N-1;
2400 }
2401 if (OBJS[opos] == DPOS) {
2402 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002403 ALOGV("Parcel %p found obj %zu at index %zu with forward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002404 this, DPOS, opos);
2405 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002406 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002407 return obj;
2408 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002409
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002410 // Look backwards for it...
2411 while (opos > 0 && OBJS[opos] > DPOS) {
2412 opos--;
2413 }
2414 if (OBJS[opos] == DPOS) {
2415 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002416 ALOGV("Parcel %p found obj %zu at index %zu with backward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002417 this, DPOS, opos);
2418 mNextObjectHint = opos+1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002419 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002420 return obj;
2421 }
2422 }
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002423 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 -07002424 this, DPOS);
2425 }
Yi Kong81ed8642018-06-07 17:52:27 -07002426 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002427}
2428
2429void Parcel::closeFileDescriptors()
2430{
2431 size_t i = mObjectsSize;
2432 if (i > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002433 //ALOGI("Closing file descriptors for %zu objects...", i);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002434 }
2435 while (i > 0) {
2436 i--;
2437 const flat_binder_object* flat
2438 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002439 if (flat->hdr.type == BINDER_TYPE_FD) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002440 //ALOGI("Closing fd: %ld", flat->handle);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002441 close(flat->handle);
2442 }
2443 }
2444}
2445
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002446uintptr_t Parcel::ipcData() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002447{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002448 return reinterpret_cast<uintptr_t>(mData);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002449}
2450
2451size_t Parcel::ipcDataSize() const
2452{
2453 return (mDataSize > mDataPos ? mDataSize : mDataPos);
2454}
2455
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002456uintptr_t Parcel::ipcObjects() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002457{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002458 return reinterpret_cast<uintptr_t>(mObjects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002459}
2460
2461size_t Parcel::ipcObjectsCount() const
2462{
2463 return mObjectsSize;
2464}
2465
2466void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002467 const binder_size_t* objects, size_t objectsCount, release_func relFunc, void* relCookie)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002468{
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002469 binder_size_t minOffset = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002470 freeDataNoInit();
2471 mError = NO_ERROR;
2472 mData = const_cast<uint8_t*>(data);
2473 mDataSize = mDataCapacity = dataSize;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002474 //ALOGI("setDataReference Setting data size of %p to %lu (pid=%d)", this, mDataSize, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002475 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002476 ALOGV("setDataReference Setting data pos of %p to %zu", this, mDataPos);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002477 mObjects = const_cast<binder_size_t*>(objects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002478 mObjectsSize = mObjectsCapacity = objectsCount;
2479 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002480 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002481 mOwner = relFunc;
2482 mOwnerCookie = relCookie;
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002483 for (size_t i = 0; i < mObjectsSize; i++) {
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002484 binder_size_t offset = mObjects[i];
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002485 if (offset < minOffset) {
Dan Albert3bdc5b82014-11-20 11:50:23 -08002486 ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002487 __func__, (uint64_t)offset, (uint64_t)minOffset);
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002488 mObjectsSize = 0;
2489 break;
2490 }
2491 minOffset = offset + sizeof(flat_binder_object);
2492 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002493 scanForFds();
2494}
2495
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002496void Parcel::print(TextOutput& to, uint32_t /*flags*/) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002497{
2498 to << "Parcel(";
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002499
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002500 if (errorCheck() != NO_ERROR) {
2501 const status_t err = errorCheck();
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002502 to << "Error: " << (void*)(intptr_t)err << " \"" << strerror(-err) << "\"";
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002503 } else if (dataSize() > 0) {
2504 const uint8_t* DATA = data();
2505 to << indent << HexDump(DATA, dataSize()) << dedent;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002506 const binder_size_t* OBJS = objects();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002507 const size_t N = objectsCount();
2508 for (size_t i=0; i<N; i++) {
2509 const flat_binder_object* flat
2510 = reinterpret_cast<const flat_binder_object*>(DATA+OBJS[i]);
2511 to << endl << "Object #" << i << " @ " << (void*)OBJS[i] << ": "
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002512 << TypeCode(flat->hdr.type & 0x7f7f7f00)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002513 << " = " << flat->binder;
2514 }
2515 } else {
2516 to << "NULL";
2517 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002518
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002519 to << ")";
2520}
2521
2522void Parcel::releaseObjects()
2523{
2524 const sp<ProcessState> proc(ProcessState::self());
2525 size_t i = mObjectsSize;
2526 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002527 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002528 while (i > 0) {
2529 i--;
2530 const flat_binder_object* flat
2531 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002532 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002533 }
2534}
2535
2536void Parcel::acquireObjects()
2537{
2538 const sp<ProcessState> proc(ProcessState::self());
2539 size_t i = mObjectsSize;
2540 uint8_t* const data = mData;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002541 binder_size_t* const objects = mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002542 while (i > 0) {
2543 i--;
2544 const flat_binder_object* flat
2545 = reinterpret_cast<flat_binder_object*>(data+objects[i]);
Adrian Rooscbf37262015-10-22 16:12:53 -07002546 acquire_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002547 }
2548}
2549
2550void Parcel::freeData()
2551{
2552 freeDataNoInit();
2553 initState();
2554}
2555
2556void Parcel::freeDataNoInit()
2557{
2558 if (mOwner) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002559 LOG_ALLOC("Parcel %p: freeing other owner data", this);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002560 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002561 mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
2562 } else {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002563 LOG_ALLOC("Parcel %p: freeing allocated data", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002564 releaseObjects();
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002565 if (mData) {
2566 LOG_ALLOC("Parcel %p: freeing with %zu capacity", this, mDataCapacity);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002567 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dan Austin48fd7b42015-09-10 13:46:02 -07002568 if (mDataCapacity <= gParcelGlobalAllocSize) {
2569 gParcelGlobalAllocSize = gParcelGlobalAllocSize - mDataCapacity;
2570 } else {
2571 gParcelGlobalAllocSize = 0;
2572 }
2573 if (gParcelGlobalAllocCount > 0) {
2574 gParcelGlobalAllocCount--;
2575 }
Dianne Hackborna4cff882014-11-13 17:07:40 -08002576 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002577 free(mData);
2578 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002579 if (mObjects) free(mObjects);
2580 }
2581}
2582
2583status_t Parcel::growData(size_t len)
2584{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002585 if (len > INT32_MAX) {
2586 // don't accept size_t values which may have come from an
2587 // inadvertent conversion from a negative int.
2588 return BAD_VALUE;
2589 }
2590
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002591 size_t newSize = ((mDataSize+len)*3)/2;
2592 return (newSize <= mDataSize)
2593 ? (status_t) NO_MEMORY
2594 : continueWrite(newSize);
2595}
2596
2597status_t Parcel::restartWrite(size_t desired)
2598{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002599 if (desired > INT32_MAX) {
2600 // don't accept size_t values which may have come from an
2601 // inadvertent conversion from a negative int.
2602 return BAD_VALUE;
2603 }
2604
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002605 if (mOwner) {
2606 freeData();
2607 return continueWrite(desired);
2608 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002609
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002610 uint8_t* data = (uint8_t*)realloc(mData, desired);
2611 if (!data && desired > mDataCapacity) {
2612 mError = NO_MEMORY;
2613 return NO_MEMORY;
2614 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002615
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002616 releaseObjects();
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002617
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002618 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002619 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002620 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002621 gParcelGlobalAllocSize += desired;
2622 gParcelGlobalAllocSize -= mDataCapacity;
Colin Cross83ec65e2015-12-08 17:15:50 -08002623 if (!mData) {
2624 gParcelGlobalAllocCount++;
2625 }
Dianne Hackborna4cff882014-11-13 17:07:40 -08002626 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002627 mData = data;
2628 mDataCapacity = desired;
2629 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002630
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002631 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002632 ALOGV("restartWrite Setting data size of %p to %zu", this, mDataSize);
2633 ALOGV("restartWrite Setting data pos of %p to %zu", this, mDataPos);
2634
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002635 free(mObjects);
Yi Kong81ed8642018-06-07 17:52:27 -07002636 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002637 mObjectsSize = mObjectsCapacity = 0;
2638 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002639 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002640 mHasFds = false;
2641 mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -04002642 mAllowFds = true;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002643
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002644 return NO_ERROR;
2645}
2646
2647status_t Parcel::continueWrite(size_t desired)
2648{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002649 if (desired > INT32_MAX) {
2650 // don't accept size_t values which may have come from an
2651 // inadvertent conversion from a negative int.
2652 return BAD_VALUE;
2653 }
2654
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002655 // If shrinking, first adjust for any objects that appear
2656 // after the new data size.
2657 size_t objectsSize = mObjectsSize;
2658 if (desired < mDataSize) {
2659 if (desired == 0) {
2660 objectsSize = 0;
2661 } else {
2662 while (objectsSize > 0) {
Michael Wachenschwanza6541632017-05-18 22:08:32 +00002663 if (mObjects[objectsSize-1] < desired)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002664 break;
2665 objectsSize--;
2666 }
2667 }
2668 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002669
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002670 if (mOwner) {
2671 // If the size is going to zero, just release the owner's data.
2672 if (desired == 0) {
2673 freeData();
2674 return NO_ERROR;
2675 }
2676
2677 // If there is a different owner, we need to take
2678 // posession.
2679 uint8_t* data = (uint8_t*)malloc(desired);
2680 if (!data) {
2681 mError = NO_MEMORY;
2682 return NO_MEMORY;
2683 }
Yi Kong81ed8642018-06-07 17:52:27 -07002684 binder_size_t* objects = nullptr;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002685
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002686 if (objectsSize) {
Nick Kraleviche9881a32015-04-28 16:21:30 -07002687 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002688 if (!objects) {
Hyejin Kim3f727c02013-03-09 11:28:54 +09002689 free(data);
2690
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002691 mError = NO_MEMORY;
2692 return NO_MEMORY;
2693 }
2694
2695 // Little hack to only acquire references on objects
2696 // we will be keeping.
2697 size_t oldObjectsSize = mObjectsSize;
2698 mObjectsSize = objectsSize;
2699 acquireObjects();
2700 mObjectsSize = oldObjectsSize;
2701 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002702
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002703 if (mData) {
2704 memcpy(data, mData, mDataSize < desired ? mDataSize : desired);
2705 }
2706 if (objects && mObjects) {
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002707 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002708 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002709 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002710 mOwner(this, mData, mDataSize, mObjects, mObjectsSize, mOwnerCookie);
Yi Kong81ed8642018-06-07 17:52:27 -07002711 mOwner = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002712
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002713 LOG_ALLOC("Parcel %p: taking ownership of %zu capacity", this, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002714 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002715 gParcelGlobalAllocSize += desired;
2716 gParcelGlobalAllocCount++;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002717 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002718
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002719 mData = data;
2720 mObjects = objects;
2721 mDataSize = (mDataSize < desired) ? mDataSize : desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002722 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002723 mDataCapacity = desired;
2724 mObjectsSize = mObjectsCapacity = objectsSize;
2725 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002726 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002727
2728 } else if (mData) {
2729 if (objectsSize < mObjectsSize) {
2730 // Need to release refs on any objects we are dropping.
2731 const sp<ProcessState> proc(ProcessState::self());
2732 for (size_t i=objectsSize; i<mObjectsSize; i++) {
2733 const flat_binder_object* flat
2734 = reinterpret_cast<flat_binder_object*>(mData+mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002735 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002736 // will need to rescan because we may have lopped off the only FDs
2737 mFdsKnown = false;
2738 }
Adrian Rooscbf37262015-10-22 16:12:53 -07002739 release_object(proc, *flat, this, &mOpenAshmemSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002740 }
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002741 binder_size_t* objects =
2742 (binder_size_t*)realloc(mObjects, objectsSize*sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002743 if (objects) {
2744 mObjects = objects;
2745 }
2746 mObjectsSize = objectsSize;
2747 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002748 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002749 }
2750
2751 // We own the data, so we can just do a realloc().
2752 if (desired > mDataCapacity) {
2753 uint8_t* data = (uint8_t*)realloc(mData, desired);
2754 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002755 LOG_ALLOC("Parcel %p: continue from %zu to %zu capacity", this, mDataCapacity,
2756 desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002757 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002758 gParcelGlobalAllocSize += desired;
2759 gParcelGlobalAllocSize -= mDataCapacity;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002760 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002761 mData = data;
2762 mDataCapacity = desired;
Ganesh Mahendranade89892017-09-28 16:56:03 +08002763 } else {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002764 mError = NO_MEMORY;
2765 return NO_MEMORY;
2766 }
2767 } else {
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002768 if (mDataSize > desired) {
2769 mDataSize = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002770 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07002771 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002772 if (mDataPos > desired) {
2773 mDataPos = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002774 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002775 }
2776 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002777
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002778 } else {
2779 // This is the first data. Easy!
2780 uint8_t* data = (uint8_t*)malloc(desired);
2781 if (!data) {
2782 mError = NO_MEMORY;
2783 return NO_MEMORY;
2784 }
Hyejin Kim3f727c02013-03-09 11:28:54 +09002785
Yi Kong81ed8642018-06-07 17:52:27 -07002786 if(!(mDataCapacity == 0 && mObjects == nullptr
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002787 && mObjectsCapacity == 0)) {
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002788 ALOGE("continueWrite: %zu/%p/%zu/%zu", mDataCapacity, mObjects, mObjectsCapacity, desired);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002789 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002790
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002791 LOG_ALLOC("Parcel %p: allocating with %zu capacity", this, desired);
Dianne Hackborna4cff882014-11-13 17:07:40 -08002792 pthread_mutex_lock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002793 gParcelGlobalAllocSize += desired;
2794 gParcelGlobalAllocCount++;
Dianne Hackborna4cff882014-11-13 17:07:40 -08002795 pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002796
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002797 mData = data;
2798 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002799 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
2800 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002801 mDataCapacity = desired;
2802 }
2803
2804 return NO_ERROR;
2805}
2806
2807void Parcel::initState()
2808{
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002809 LOG_ALLOC("Parcel %p: initState", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002810 mError = NO_ERROR;
Yi Kong81ed8642018-06-07 17:52:27 -07002811 mData = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002812 mDataSize = 0;
2813 mDataCapacity = 0;
2814 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002815 ALOGV("initState Setting data size of %p to %zu", this, mDataSize);
2816 ALOGV("initState Setting data pos of %p to %zu", this, mDataPos);
Yi Kong81ed8642018-06-07 17:52:27 -07002817 mObjects = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002818 mObjectsSize = 0;
2819 mObjectsCapacity = 0;
2820 mNextObjectHint = 0;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002821 mObjectsSorted = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002822 mHasFds = false;
2823 mFdsKnown = true;
Dianne Hackborn8938ed22011-09-28 23:19:47 -04002824 mAllowFds = true;
Yi Kong81ed8642018-06-07 17:52:27 -07002825 mOwner = nullptr;
Adrian Rooscbf37262015-10-22 16:12:53 -07002826 mOpenAshmemSize = 0;
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002827
2828 // racing multiple init leads only to multiple identical write
2829 if (gMaxFds == 0) {
2830 struct rlimit result;
2831 if (!getrlimit(RLIMIT_NOFILE, &result)) {
2832 gMaxFds = (size_t)result.rlim_cur;
Christopher Tatebf14e942016-03-25 14:16:24 -07002833 //ALOGI("parcel fd limit set to %zu", gMaxFds);
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002834 } else {
2835 ALOGW("Unable to getrlimit: %s", strerror(errno));
2836 gMaxFds = 1024;
2837 }
2838 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002839}
2840
2841void Parcel::scanForFds() const
2842{
2843 bool hasFds = false;
2844 for (size_t i=0; i<mObjectsSize; i++) {
2845 const flat_binder_object* flat
2846 = reinterpret_cast<const flat_binder_object*>(mData + mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002847 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002848 hasFds = true;
2849 break;
2850 }
2851 }
2852 mHasFds = hasFds;
2853 mFdsKnown = true;
2854}
2855
Dan Sandleraa5c2342015-04-10 10:08:45 -04002856size_t Parcel::getBlobAshmemSize() const
2857{
Adrian Roos6bb31142015-10-22 16:46:12 -07002858 // This used to return the size of all blobs that were written to ashmem, now we're returning
2859 // the ashmem currently referenced by this Parcel, which should be equivalent.
2860 // TODO: Remove method once ABI can be changed.
2861 return mOpenAshmemSize;
Dan Sandleraa5c2342015-04-10 10:08:45 -04002862}
2863
Adrian Rooscbf37262015-10-22 16:12:53 -07002864size_t Parcel::getOpenAshmemSize() const
2865{
2866 return mOpenAshmemSize;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002867}
2868
2869// --- Parcel::Blob ---
2870
2871Parcel::Blob::Blob() :
Yi Kong81ed8642018-06-07 17:52:27 -07002872 mFd(-1), mData(nullptr), mSize(0), mMutable(false) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002873}
2874
2875Parcel::Blob::~Blob() {
2876 release();
2877}
2878
2879void Parcel::Blob::release() {
Jeff Brown13b16042014-11-11 16:44:25 -08002880 if (mFd != -1 && mData) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07002881 ::munmap(mData, mSize);
2882 }
2883 clear();
2884}
2885
Jeff Brown13b16042014-11-11 16:44:25 -08002886void Parcel::Blob::init(int fd, void* data, size_t size, bool isMutable) {
2887 mFd = fd;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002888 mData = data;
2889 mSize = size;
Jeff Brown13b16042014-11-11 16:44:25 -08002890 mMutable = isMutable;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002891}
2892
2893void Parcel::Blob::clear() {
Jeff Brown13b16042014-11-11 16:44:25 -08002894 mFd = -1;
Yi Kong81ed8642018-06-07 17:52:27 -07002895 mData = nullptr;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002896 mSize = 0;
Jeff Brown13b16042014-11-11 16:44:25 -08002897 mMutable = false;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002898}
2899
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002900}; // namespace android