blob: 923015a39192711bdeceefb79810a4e668811b58 [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
Tomasz Wasilczyk1d1e9ff2023-10-25 16:17:54 -070020#include <endian.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080021#include <errno.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080022#include <fcntl.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080023#include <inttypes.h>
Mark Salyzyn70f36652016-02-02 10:27:03 -080024#include <pthread.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080025#include <stdint.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <sys/mman.h>
Andrei Homescua9cca9c2022-05-03 04:48:01 +000029#include <sys/resource.h>
Mark Salyzyneab2afc2016-01-27 08:02:48 -080030#include <sys/stat.h>
31#include <sys/types.h>
32#include <unistd.h>
Benjamin Lerman38f51272024-04-22 14:27:36 +020033#include <algorithm>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070034
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070035#include <binder/Binder.h>
36#include <binder/BpBinder.h>
Tomasz Wasilczyk1de48a22023-10-30 14:19:19 +000037#include <binder/Functional.h>
Mark Salyzynabed7f72016-01-27 08:02:48 -080038#include <binder/IPCThreadState.h>
39#include <binder/Parcel.h>
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070040#include <binder/ProcessState.h>
Steven Moreland6e5a7752019-08-05 20:30:14 -070041#include <binder/Stability.h>
Christopher Wiley09eb7492015-11-09 15:06:15 -080042#include <binder/Status.h>
Mathias Agopian002e1e52013-05-06 20:20:50 -070043#include <binder/TextOutput.h>
44
Tomasz Wasilczykbca8f942023-10-09 17:42:37 +000045#ifndef BINDER_DISABLE_BLOB
Mark Salyzynabed7f72016-01-27 08:02:48 -080046#include <cutils/ashmem.h>
Tomasz Wasilczykbca8f942023-10-09 17:42:37 +000047#endif
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070048#include <utils/String16.h>
Steven Moreland3af936a2021-03-26 03:05:38 +000049#include <utils/String8.h>
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070050
Andrei Homescu24ad36e2022-08-04 01:33:33 +000051#include "OS.h"
Steven Moreland5553ac42020-11-11 02:14:45 +000052#include "RpcState.h"
Steven Morelanda4853cd2019-07-12 15:44:37 -070053#include "Static.h"
Steven Morelandf183fdd2020-10-27 00:12:12 +000054#include "Utils.h"
Andrei Homescua9cca9c2022-05-03 04:48:01 +000055
56// A lot of code in this file uses definitions from the
57// Linux kernel header for Binder <linux/android/binder.h>
58// which is included indirectly via "binder_module.h".
59// Non-Linux OSes do not have that header, so libbinder should be
60// built for those targets without kernel binder support, i.e.,
61// without BINDER_WITH_KERNEL_IPC. For this reason, all code in this
62// file that depends on kernel binder, including the header itself,
63// is conditional on BINDER_WITH_KERNEL_IPC.
64#ifdef BINDER_WITH_KERNEL_IPC
65#include <linux/sched.h>
Steven Moreland6ba5a252021-05-04 22:49:00 +000066#include "binder_module.h"
Andrei Homescua9cca9c2022-05-03 04:48:01 +000067#else // BINDER_WITH_KERNEL_IPC
68// Needed by {read,write}Pointer
69typedef uintptr_t binder_uintptr_t;
70#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070071
Steven Moreland02f736f2023-06-22 23:03:57 +000072#ifdef __BIONIC__
73#include <android/fdsan.h>
74#endif
75
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070076#define LOG_REFS(...)
Andrei Homescua9cca9c2022-05-03 04:48:01 +000077// #define LOG_REFS(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
Dianne Hackborn7e790af2014-11-11 12:22:53 -080078#define LOG_ALLOC(...)
Andrei Homescua9cca9c2022-05-03 04:48:01 +000079// #define LOG_ALLOC(...) ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070080
81// ---------------------------------------------------------------------------
82
Nick Kralevichb6b14232015-04-02 09:36:02 -070083// This macro should never be used at runtime, as a too large value
84// of s could cause an integer overflow. Instead, you should always
85// use the wrapper function pad_size()
Andrei Homescuf7f2c172022-03-08 22:52:49 +000086#define PAD_SIZE_UNSAFE(s) (((s) + 3) & ~3UL)
Nick Kralevichb6b14232015-04-02 09:36:02 -070087
88static size_t pad_size(size_t s) {
Steven Moreland28723ae2019-04-01 18:52:30 -070089 if (s > (std::numeric_limits<size_t>::max() - 3)) {
Steven Moreland6adf33c2019-09-25 13:18:09 -070090 LOG_ALWAYS_FATAL("pad size too big %zu", s);
Nick Kralevichb6b14232015-04-02 09:36:02 -070091 }
92 return PAD_SIZE_UNSAFE(s);
93}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070094
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070095// Note: must be kept in sync with android/os/StrictMode.java's PENALTY_GATHER
Jeff Sharkey05827be2018-06-26 10:52:38 -060096#define STRICT_MODE_PENALTY_GATHER (1 << 31)
Brad Fitzpatricka877cd82010-07-07 16:06:39 -070097
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -070098namespace android {
99
Tomasz Wasilczyk1de48a22023-10-30 14:19:19 +0000100using namespace android::binder::impl;
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -0700101using binder::borrowed_fd;
102using binder::unique_fd;
Tomasz Wasilczyk1de48a22023-10-30 14:19:19 +0000103
Steven Moreland7b102262019-08-01 15:48:43 -0700104// many things compile this into prebuilts on the stack
Steven Moreland90c1f9a2021-05-03 18:27:24 +0000105#ifdef __LP64__
106static_assert(sizeof(Parcel) == 120);
107#else
108static_assert(sizeof(Parcel) == 60);
109#endif
Steven Moreland7b102262019-08-01 15:48:43 -0700110
Jeff Sharkey8994c182020-09-11 12:07:10 -0600111static std::atomic<size_t> gParcelGlobalAllocCount;
112static std::atomic<size_t> gParcelGlobalAllocSize;
Dianne Hackborna4cff882014-11-13 17:07:40 -0800113
Andrei Homescu1519b982022-06-09 02:04:44 +0000114// Maximum number of file descriptors per Parcel.
115constexpr size_t kMaxFds = 1024;
Christopher Tatee4e0ae82016-03-24 16:03:44 -0700116
Jeff Brown13b16042014-11-11 16:44:25 -0800117// Maximum size of a blob to transfer in-place.
Tomasz Wasilczyk83780132023-11-29 21:39:29 -0800118[[maybe_unused]] static const size_t BLOB_INPLACE_LIMIT = 16 * 1024;
Jeff Brown13b16042014-11-11 16:44:25 -0800119
Steven Moreland02f736f2023-06-22 23:03:57 +0000120#if defined(__BIONIC__)
121static void FdTag(int fd, const void* old_addr, const void* new_addr) {
122 if (android_fdsan_exchange_owner_tag) {
123 uint64_t old_tag = android_fdsan_create_owner_tag(ANDROID_FDSAN_OWNER_TYPE_PARCEL,
124 reinterpret_cast<uint64_t>(old_addr));
125 uint64_t new_tag = android_fdsan_create_owner_tag(ANDROID_FDSAN_OWNER_TYPE_PARCEL,
126 reinterpret_cast<uint64_t>(new_addr));
127 android_fdsan_exchange_owner_tag(fd, old_tag, new_tag);
128 }
129}
130static void FdTagClose(int fd, const void* addr) {
131 if (android_fdsan_close_with_tag) {
132 uint64_t tag = android_fdsan_create_owner_tag(ANDROID_FDSAN_OWNER_TYPE_PARCEL,
133 reinterpret_cast<uint64_t>(addr));
134 android_fdsan_close_with_tag(fd, tag);
135 } else {
136 close(fd);
137 }
138}
139#else
140static void FdTag(int fd, const void* old_addr, const void* new_addr) {
141 (void)fd;
142 (void)old_addr;
143 (void)new_addr;
144}
145static void FdTagClose(int fd, const void* addr) {
146 (void)addr;
147 close(fd);
148}
149#endif
150
Jeff Brown13b16042014-11-11 16:44:25 -0800151enum {
152 BLOB_INPLACE = 0,
153 BLOB_ASHMEM_IMMUTABLE = 1,
154 BLOB_ASHMEM_MUTABLE = 2,
155};
156
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000157#ifdef BINDER_WITH_KERNEL_IPC
Steven Morelandc673f1f2021-10-07 18:23:35 -0700158static void acquire_object(const sp<ProcessState>& proc, const flat_binder_object& obj,
159 const void* who) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700160 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700161 case BINDER_TYPE_BINDER:
162 if (obj.binder) {
yuxic05af3b2021-08-24 02:52:15 +0000163 LOG_REFS("Parcel %p acquiring reference on local %llu", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800164 reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700165 }
166 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700167 case BINDER_TYPE_HANDLE: {
168 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700169 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700170 LOG_REFS("Parcel %p acquiring reference on remote %p", who, b.get());
171 b->incStrong(who);
172 }
173 return;
174 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700175 case BINDER_TYPE_FD: {
Steven Moreland02f736f2023-06-22 23:03:57 +0000176 if (obj.cookie != 0) { // owned
177 FdTag(obj.handle, nullptr, who);
178 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700179 return;
180 }
181 }
182
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700183 ALOGD("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700184}
185
Steven Morelandc673f1f2021-10-07 18:23:35 -0700186static void release_object(const sp<ProcessState>& proc, const flat_binder_object& obj,
187 const void* who) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700188 switch (obj.hdr.type) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700189 case BINDER_TYPE_BINDER:
190 if (obj.binder) {
yuxic05af3b2021-08-24 02:52:15 +0000191 LOG_REFS("Parcel %p releasing reference on local %llu", who, obj.cookie);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800192 reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700193 }
194 return;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700195 case BINDER_TYPE_HANDLE: {
196 const sp<IBinder> b = proc->getStrongProxyForHandle(obj.handle);
Yi Kong91635562018-06-07 14:38:36 -0700197 if (b != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700198 LOG_REFS("Parcel %p releasing reference on remote %p", who, b.get());
199 b->decStrong(who);
200 }
201 return;
202 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700203 case BINDER_TYPE_FD: {
Steven Moreland02f736f2023-06-22 23:03:57 +0000204 // note: this path is not used when mOwner, so the tag is also released
205 // in 'closeFileDescriptors'
Mark Salyzynb454d8f2016-01-27 08:02:48 -0800206 if (obj.cookie != 0) { // owned
Steven Moreland02f736f2023-06-22 23:03:57 +0000207 FdTagClose(obj.handle, who);
Adrian Rooscbf37262015-10-22 16:12:53 -0700208 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700209 return;
210 }
211 }
212
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700213 ALOGE("Invalid object type 0x%08x", obj.hdr.type);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700214}
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000215#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700216
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -0700217static int toRawFd(const std::variant<unique_fd, borrowed_fd>& v) {
Frederick Mayle69a0c992022-05-26 20:38:39 +0000218 return std::visit([](const auto& fd) { return fd.get(); }, v);
219}
220
Frederick Mayled3c595a2022-05-09 23:02:54 +0000221Parcel::RpcFields::RpcFields(const sp<RpcSession>& session) : mSession(session) {
222 LOG_ALWAYS_FATAL_IF(mSession == nullptr);
223}
224
Steven Moreland34b48cb2020-12-01 22:45:38 +0000225status_t Parcel::finishFlattenBinder(const sp<IBinder>& binder)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700226{
Steven Moreland6e5a7752019-08-05 20:30:14 -0700227 internal::Stability::tryMarkCompilationUnit(binder.get());
Steven Moreland16a41062021-07-23 13:35:25 -0700228 int16_t rep = internal::Stability::getRepr(binder.get());
Steven Moreland14e4cfa2021-06-03 21:40:45 +0000229 return writeInt32(rep);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700230}
231
Steven Morelanda86a3562019-08-01 23:28:34 +0000232status_t Parcel::finishUnflattenBinder(
233 const sp<IBinder>& binder, sp<IBinder>* out) const
234{
235 int32_t stability;
236 status_t status = readInt32(&stability);
237 if (status != OK) return status;
238
Steven Moreland14e4cfa2021-06-03 21:40:45 +0000239 status = internal::Stability::setRepr(binder.get(), static_cast<int16_t>(stability),
240 true /*log*/);
Steven Morelanda86a3562019-08-01 23:28:34 +0000241 if (status != OK) return status;
242
243 *out = binder;
244 return OK;
245}
246
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000247#ifdef BINDER_WITH_KERNEL_IPC
Steven Morelandbf1915b2020-07-16 22:43:02 +0000248static constexpr inline int schedPolicyMask(int policy, int priority) {
249 return (priority & FLAT_BINDER_FLAG_PRIORITY_MASK) | ((policy & 3) << FLAT_BINDER_FLAG_SCHED_POLICY_SHIFT);
250}
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000251#endif // BINDER_WITH_KERNEL_IPC
Steven Morelandbf1915b2020-07-16 22:43:02 +0000252
Kalesh Singhd67c8e82020-12-29 15:46:25 -0500253status_t Parcel::flattenBinder(const sp<IBinder>& binder) {
254 BBinder* local = nullptr;
255 if (binder) local = binder->localBinder();
256 if (local) local->setParceled();
257
Frederick Mayled3c595a2022-05-09 23:02:54 +0000258 if (const auto* rpcFields = maybeRpcFields()) {
Steven Moreland5553ac42020-11-11 02:14:45 +0000259 if (binder) {
sandeepbandaruaa9d3a32024-02-22 17:16:53 +0000260 status_t status = writeInt32(RpcFields::TYPE_BINDER); // non-null
Steven Moreland5553ac42020-11-11 02:14:45 +0000261 if (status != OK) return status;
Steven Moreland5623d1a2021-09-10 15:45:34 -0700262 uint64_t address;
Steven Morelanda5036f02021-06-08 02:26:57 +0000263 // TODO(b/167966510): need to undo this if the Parcel is not sent
Frederick Mayled3c595a2022-05-09 23:02:54 +0000264 status = rpcFields->mSession->state()->onBinderLeaving(rpcFields->mSession, binder,
265 &address);
Steven Moreland5553ac42020-11-11 02:14:45 +0000266 if (status != OK) return status;
Steven Moreland5623d1a2021-09-10 15:45:34 -0700267 status = writeUint64(address);
Steven Moreland5553ac42020-11-11 02:14:45 +0000268 if (status != OK) return status;
269 } else {
sandeepbandaruaa9d3a32024-02-22 17:16:53 +0000270 status_t status = writeInt32(RpcFields::TYPE_BINDER_NULL); // null
Steven Moreland5553ac42020-11-11 02:14:45 +0000271 if (status != OK) return status;
272 }
273 return finishFlattenBinder(binder);
274 }
275
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000276#ifdef BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700277 flat_binder_object obj;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700278
Steven Morelandbf1915b2020-07-16 22:43:02 +0000279 int schedBits = 0;
280 if (!IPCThreadState::self()->backgroundSchedulingDisabled()) {
281 schedBits = schedPolicyMask(SCHED_NORMAL, 19);
Martijn Coenen2b631742017-05-05 11:16:59 -0700282 }
283
Yi Kong91635562018-06-07 14:38:36 -0700284 if (binder != nullptr) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700285 if (!local) {
286 BpBinder *proxy = binder->remoteBinder();
Yi Kong91635562018-06-07 14:38:36 -0700287 if (proxy == nullptr) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000288 ALOGE("null proxy");
Steven Moreland5553ac42020-11-11 02:14:45 +0000289 } else {
290 if (proxy->isRpcBinder()) {
Steven Morelanda9231112021-09-22 10:08:14 -0700291 ALOGE("Sending a socket binder over kernel binder is prohibited");
Steven Moreland5553ac42020-11-11 02:14:45 +0000292 return INVALID_OPERATION;
293 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700294 }
Steven Moreland99157622021-09-13 16:27:34 -0700295 const int32_t handle = proxy ? proxy->getPrivateAccessor().binderHandle() : 0;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700296 obj.hdr.type = BINDER_TYPE_HANDLE;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -0800297 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
Steven Moreland49c27532022-03-01 10:21:07 +0000298 obj.flags = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700299 obj.handle = handle;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800300 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700301 } else {
Steven Morelandbf1915b2020-07-16 22:43:02 +0000302 int policy = local->getMinSchedulerPolicy();
303 int priority = local->getMinSchedulerPriority();
304
305 if (policy != 0 || priority != 0) {
306 // override value, since it is set explicitly
307 schedBits = schedPolicyMask(policy, priority);
308 }
Steven Moreland49c27532022-03-01 10:21:07 +0000309 obj.flags = FLAT_BINDER_FLAG_ACCEPTS_FDS;
Steven Morelandf0212002018-12-26 13:59:23 -0800310 if (local->isRequestingSid()) {
311 obj.flags |= FLAT_BINDER_FLAG_TXN_SECURITY_CTX;
312 }
Steven Morelandcf03cf12020-12-04 02:58:40 +0000313 if (local->isInheritRt()) {
314 obj.flags |= FLAT_BINDER_FLAG_INHERIT_RT;
315 }
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700316 obj.hdr.type = BINDER_TYPE_BINDER;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800317 obj.binder = reinterpret_cast<uintptr_t>(local->getWeakRefs());
318 obj.cookie = reinterpret_cast<uintptr_t>(local);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700319 }
320 } else {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700321 obj.hdr.type = BINDER_TYPE_BINDER;
Steven Moreland49c27532022-03-01 10:21:07 +0000322 obj.flags = 0;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -0800323 obj.binder = 0;
324 obj.cookie = 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700325 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700326
Steven Morelandbf1915b2020-07-16 22:43:02 +0000327 obj.flags |= schedBits;
328
Steven Moreland34b48cb2020-12-01 22:45:38 +0000329 status_t status = writeObject(obj, false);
330 if (status != OK) return status;
331
332 return finishFlattenBinder(binder);
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000333#else // BINDER_WITH_KERNEL_IPC
334 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
335 return INVALID_OPERATION;
336#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700337}
338
Steven Morelanda86a3562019-08-01 23:28:34 +0000339status_t Parcel::unflattenBinder(sp<IBinder>* out) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700340{
Frederick Mayled3c595a2022-05-09 23:02:54 +0000341 if (const auto* rpcFields = maybeRpcFields()) {
Steven Moreland5623d1a2021-09-10 15:45:34 -0700342 int32_t isPresent;
343 status_t status = readInt32(&isPresent);
Steven Moreland5553ac42020-11-11 02:14:45 +0000344 if (status != OK) return status;
345
346 sp<IBinder> binder;
347
Steven Moreland5623d1a2021-09-10 15:45:34 -0700348 if (isPresent & 1) {
349 uint64_t addr;
350 if (status_t status = readUint64(&addr); status != OK) return status;
Frederick Mayled3c595a2022-05-09 23:02:54 +0000351 if (status_t status =
352 rpcFields->mSession->state()->onBinderEntering(rpcFields->mSession, addr,
353 &binder);
Steven Moreland7227c8a2021-06-02 00:24:32 +0000354 status != OK)
355 return status;
Frederick Mayled3c595a2022-05-09 23:02:54 +0000356 if (status_t status =
357 rpcFields->mSession->state()->flushExcessBinderRefs(rpcFields->mSession,
358 addr, binder);
Steven Morelandd8083312021-09-22 13:37:10 -0700359 status != OK)
360 return status;
Steven Moreland5553ac42020-11-11 02:14:45 +0000361 }
362
363 return finishUnflattenBinder(binder, out);
364 }
365
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000366#ifdef BINDER_WITH_KERNEL_IPC
Steven Morelanda86a3562019-08-01 23:28:34 +0000367 const flat_binder_object* flat = readObject(false);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700368
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700369 if (flat) {
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -0700370 switch (flat->hdr.type) {
Steven Morelanda86a3562019-08-01 23:28:34 +0000371 case BINDER_TYPE_BINDER: {
Steven Moreland1a3a8ef2021-04-02 02:52:46 +0000372 sp<IBinder> binder =
373 sp<IBinder>::fromExisting(reinterpret_cast<IBinder*>(flat->cookie));
Steven Morelanda86a3562019-08-01 23:28:34 +0000374 return finishUnflattenBinder(binder, out);
375 }
376 case BINDER_TYPE_HANDLE: {
377 sp<IBinder> binder =
378 ProcessState::self()->getStrongProxyForHandle(flat->handle);
379 return finishUnflattenBinder(binder, out);
380 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700381 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700382 }
383 return BAD_TYPE;
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000384#else // BINDER_WITH_KERNEL_IPC
385 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
386 return INVALID_OPERATION;
387#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700388}
389
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700390// ---------------------------------------------------------------------------
391
392Parcel::Parcel()
393{
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800394 LOG_ALLOC("Parcel %p: constructing", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700395 initState();
396}
397
398Parcel::~Parcel()
399{
400 freeDataNoInit();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800401 LOG_ALLOC("Parcel %p: destroyed", this);
402}
403
404size_t Parcel::getGlobalAllocSize() {
Jeff Sharkey8994c182020-09-11 12:07:10 -0600405 return gParcelGlobalAllocSize.load();
Dianne Hackborn7e790af2014-11-11 12:22:53 -0800406}
407
408size_t Parcel::getGlobalAllocCount() {
Jeff Sharkey8994c182020-09-11 12:07:10 -0600409 return gParcelGlobalAllocCount.load();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700410}
411
412const uint8_t* Parcel::data() const
413{
414 return mData;
415}
416
417size_t Parcel::dataSize() const
418{
419 return (mDataSize > mDataPos ? mDataSize : mDataPos);
420}
421
Pawan Waghd886a442023-01-21 02:16:38 +0000422size_t Parcel::dataBufferSize() const {
423 return mDataSize;
424}
425
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700426size_t Parcel::dataAvail() const
427{
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700428 size_t result = dataSize() - dataPosition();
429 if (result > INT32_MAX) {
Steven Moreland6adf33c2019-09-25 13:18:09 -0700430 LOG_ALWAYS_FATAL("result too big: %zu", result);
Nick Kralevichcfe27de2015-09-16 09:49:15 -0700431 }
432 return result;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700433}
434
435size_t Parcel::dataPosition() const
436{
437 return mDataPos;
438}
439
440size_t Parcel::dataCapacity() const
441{
442 return mDataCapacity;
443}
444
445status_t Parcel::setDataSize(size_t size)
446{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700447 if (size > INT32_MAX) {
448 // don't accept size_t values which may have come from an
449 // inadvertent conversion from a negative int.
450 return BAD_VALUE;
451 }
452
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700453 status_t err;
454 err = continueWrite(size);
455 if (err == NO_ERROR) {
456 mDataSize = size;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700457 ALOGV("setDataSize Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700458 }
459 return err;
460}
461
462void Parcel::setDataPosition(size_t pos) const
463{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700464 if (pos > INT32_MAX) {
465 // don't accept size_t values which may have come from an
466 // inadvertent conversion from a negative int.
Steven Moreland6adf33c2019-09-25 13:18:09 -0700467 LOG_ALWAYS_FATAL("pos too big: %zu", pos);
Nick Kralevichb6b14232015-04-02 09:36:02 -0700468 }
469
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700470 mDataPos = pos;
Frederick Mayled3c595a2022-05-09 23:02:54 +0000471 if (const auto* kernelFields = maybeKernelFields()) {
472 kernelFields->mNextObjectHint = 0;
473 kernelFields->mObjectsSorted = false;
474 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700475}
476
477status_t Parcel::setDataCapacity(size_t size)
478{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700479 if (size > INT32_MAX) {
480 // don't accept size_t values which may have come from an
481 // inadvertent conversion from a negative int.
482 return BAD_VALUE;
483 }
484
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700485 if (size > mDataCapacity) return continueWrite(size);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700486 return NO_ERROR;
487}
488
489status_t Parcel::setData(const uint8_t* buffer, size_t len)
490{
Nick Kralevichb6b14232015-04-02 09:36:02 -0700491 if (len > INT32_MAX) {
492 // don't accept size_t values which may have come from an
493 // inadvertent conversion from a negative int.
494 return BAD_VALUE;
495 }
496
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700497 status_t err = restartWrite(len);
498 if (err == NO_ERROR) {
499 memcpy(const_cast<uint8_t*>(data()), buffer, len);
500 mDataSize = len;
Frederick Mayled3c595a2022-05-09 23:02:54 +0000501 if (auto* kernelFields = maybeKernelFields()) {
502 kernelFields->mFdsKnown = false;
503 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700504 }
505 return err;
506}
507
Frederick Mayled3c595a2022-05-09 23:02:54 +0000508status_t Parcel::appendFrom(const Parcel* parcel, size_t offset, size_t len) {
509 if (isForRpc() != parcel->isForRpc()) {
Steven Moreland2034eff2021-10-13 11:24:35 -0700510 ALOGE("Cannot append Parcel from one context to another. They may be different formats, "
511 "and objects are specific to a context.");
Steven Moreland67753c32021-04-02 18:45:19 +0000512 return BAD_TYPE;
513 }
Frederick Mayled3c595a2022-05-09 23:02:54 +0000514 if (isForRpc() && maybeRpcFields()->mSession != parcel->maybeRpcFields()->mSession) {
515 ALOGE("Cannot append Parcels from different sessions");
516 return BAD_TYPE;
517 }
Steven Moreland67753c32021-04-02 18:45:19 +0000518
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700519 status_t err;
Frederick Mayled3c595a2022-05-09 23:02:54 +0000520 const uint8_t* data = parcel->mData;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700521 int startPos = mDataPos;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700522
523 if (len == 0) {
524 return NO_ERROR;
525 }
526
Nick Kralevichb6b14232015-04-02 09:36:02 -0700527 if (len > INT32_MAX) {
528 // don't accept size_t values which may have come from an
529 // inadvertent conversion from a negative int.
530 return BAD_VALUE;
531 }
532
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700533 // range checks against the source parcel size
534 if ((offset > parcel->mDataSize)
535 || (len > parcel->mDataSize)
536 || (offset + len > parcel->mDataSize)) {
537 return BAD_VALUE;
538 }
539
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -0700540 if ((mDataSize+len) > mDataCapacity) {
541 // grow data
542 err = growData(len);
543 if (err != NO_ERROR) {
544 return err;
545 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700546 }
547
548 // append data
549 memcpy(mData + mDataPos, data + offset, len);
550 mDataPos += len;
551 mDataSize += len;
552
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400553 err = NO_ERROR;
554
Frederick Mayled3c595a2022-05-09 23:02:54 +0000555 if (auto* kernelFields = maybeKernelFields()) {
Andrei Homescu88012462022-07-07 04:30:05 +0000556#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayled3c595a2022-05-09 23:02:54 +0000557 auto* otherKernelFields = parcel->maybeKernelFields();
558 LOG_ALWAYS_FATAL_IF(otherKernelFields == nullptr);
559
560 const binder_size_t* objects = otherKernelFields->mObjects;
561 size_t size = otherKernelFields->mObjectsSize;
562 // Count objects in range
563 int firstIndex = -1, lastIndex = -2;
564 for (int i = 0; i < (int)size; i++) {
565 size_t off = objects[i];
566 if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
567 if (firstIndex == -1) {
568 firstIndex = i;
569 }
570 lastIndex = i;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700571 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700572 }
Frederick Mayled3c595a2022-05-09 23:02:54 +0000573 int numObjects = lastIndex - firstIndex + 1;
574 if (numObjects > 0) {
575 const sp<ProcessState> proc(ProcessState::self());
576 // grow objects
577 if (kernelFields->mObjectsCapacity < kernelFields->mObjectsSize + numObjects) {
578 if ((size_t)numObjects > SIZE_MAX - kernelFields->mObjectsSize)
579 return NO_MEMORY; // overflow
580 if (kernelFields->mObjectsSize + numObjects > SIZE_MAX / 3)
581 return NO_MEMORY; // overflow
582 size_t newSize = ((kernelFields->mObjectsSize + numObjects) * 3) / 2;
583 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
584 binder_size_t* objects = (binder_size_t*)realloc(kernelFields->mObjects,
585 newSize * sizeof(binder_size_t));
586 if (objects == (binder_size_t*)nullptr) {
587 return NO_MEMORY;
588 }
589 kernelFields->mObjects = objects;
590 kernelFields->mObjectsCapacity = newSize;
591 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -0700592
Frederick Mayled3c595a2022-05-09 23:02:54 +0000593 // append and acquire objects
594 int idx = kernelFields->mObjectsSize;
595 for (int i = firstIndex; i <= lastIndex; i++) {
596 size_t off = objects[i] - offset + startPos;
597 kernelFields->mObjects[idx++] = off;
598 kernelFields->mObjectsSize++;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700599
Frederick Mayled3c595a2022-05-09 23:02:54 +0000600 flat_binder_object* flat = reinterpret_cast<flat_binder_object*>(mData + off);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700601
Frederick Mayled3c595a2022-05-09 23:02:54 +0000602 if (flat->hdr.type == BINDER_TYPE_FD) {
603 // If this is a file descriptor, we need to dup it so the
604 // new Parcel now owns its own fd, and can declare that we
605 // officially know we have fds.
606 flat->handle = fcntl(flat->handle, F_DUPFD_CLOEXEC, 0);
607 flat->cookie = 1;
608 kernelFields->mHasFds = kernelFields->mFdsKnown = true;
609 if (!mAllowFds) {
610 err = FDS_NOT_ALLOWED;
611 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400612 }
Steven Moreland02f736f2023-06-22 23:03:57 +0000613
614 acquire_object(proc, *flat, this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700615 }
616 }
Andrei Homescu88012462022-07-07 04:30:05 +0000617#else
618 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
619 return INVALID_OPERATION;
620#endif // BINDER_WITH_KERNEL_IPC
Frederick Mayle69a0c992022-05-26 20:38:39 +0000621 } else {
622 auto* rpcFields = maybeRpcFields();
623 LOG_ALWAYS_FATAL_IF(rpcFields == nullptr);
624 auto* otherRpcFields = parcel->maybeRpcFields();
625 if (otherRpcFields == nullptr) {
626 return BAD_TYPE;
627 }
628 if (rpcFields->mSession != otherRpcFields->mSession) {
629 return BAD_TYPE;
630 }
631
632 const size_t savedDataPos = mDataPos;
Tomasz Wasilczyk1de48a22023-10-30 14:19:19 +0000633 auto scopeGuard = make_scope_guard([&]() { mDataPos = savedDataPos; });
Frederick Mayle69a0c992022-05-26 20:38:39 +0000634
635 rpcFields->mObjectPositions.reserve(otherRpcFields->mObjectPositions.size());
636 if (otherRpcFields->mFds != nullptr) {
637 if (rpcFields->mFds == nullptr) {
638 rpcFields->mFds = std::make_unique<decltype(rpcFields->mFds)::element_type>();
639 }
640 rpcFields->mFds->reserve(otherRpcFields->mFds->size());
641 }
642 for (size_t i = 0; i < otherRpcFields->mObjectPositions.size(); i++) {
643 const binder_size_t objPos = otherRpcFields->mObjectPositions[i];
644 if (offset <= objPos && objPos < offset + len) {
645 size_t newDataPos = objPos - offset + startPos;
646 rpcFields->mObjectPositions.push_back(newDataPos);
647
648 mDataPos = newDataPos;
649 int32_t objectType;
650 if (status_t status = readInt32(&objectType); status != OK) {
651 return status;
652 }
653 if (objectType != RpcFields::TYPE_NATIVE_FILE_DESCRIPTOR) {
654 continue;
655 }
656
657 if (!mAllowFds) {
658 return FDS_NOT_ALLOWED;
659 }
660
661 // Read FD, duplicate, and add to list.
662 int32_t fdIndex;
663 if (status_t status = readInt32(&fdIndex); status != OK) {
664 return status;
665 }
Andrei Homescufc221502022-10-08 03:51:17 +0000666 int oldFd = toRawFd(otherRpcFields->mFds->at(fdIndex));
Frederick Mayle69a0c992022-05-26 20:38:39 +0000667 // To match kernel binder behavior, we always dup, even if the
668 // FD was unowned in the source parcel.
Andrei Homescufc221502022-10-08 03:51:17 +0000669 int newFd = -1;
Tomasz Wasilczyk0d9dec22023-10-06 20:28:49 +0000670 if (status_t status = binder::os::dupFileDescriptor(oldFd, &newFd); status != OK) {
Andrei Homescufc221502022-10-08 03:51:17 +0000671 ALOGW("Failed to duplicate file descriptor %d: %s", oldFd, strerror(-status));
672 }
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -0700673 rpcFields->mFds->emplace_back(unique_fd(newFd));
Frederick Mayle69a0c992022-05-26 20:38:39 +0000674 // Fixup the index in the data.
675 mDataPos = newDataPos + 4;
676 if (status_t status = writeInt32(rpcFields->mFds->size() - 1); status != OK) {
677 return status;
678 }
679 }
680 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700681 }
682
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400683 return err;
684}
685
Dianne Hackborn15feb9b2017-04-10 15:34:35 -0700686int Parcel::compareData(const Parcel& other) {
687 size_t size = dataSize();
688 if (size != other.dataSize()) {
689 return size < other.dataSize() ? -1 : 1;
690 }
691 return memcmp(data(), other.data(), size);
692}
693
Bernardo Rufino897b1652021-10-08 10:30:20 +0100694status_t Parcel::compareDataInRange(size_t thisOffset, const Parcel& other, size_t otherOffset,
695 size_t len, int* result) const {
696 if (len > INT32_MAX || thisOffset > INT32_MAX || otherOffset > INT32_MAX) {
697 // Don't accept size_t values which may have come from an inadvertent conversion from a
698 // negative int.
699 return BAD_VALUE;
700 }
701 size_t thisLimit;
702 if (__builtin_add_overflow(thisOffset, len, &thisLimit) || thisLimit > mDataSize) {
703 return BAD_VALUE;
704 }
705 size_t otherLimit;
706 if (__builtin_add_overflow(otherOffset, len, &otherLimit) || otherLimit > other.mDataSize) {
707 return BAD_VALUE;
708 }
709 *result = memcmp(data() + thisOffset, other.data() + otherOffset, len);
710 return NO_ERROR;
711}
712
Jeff Brown13b16042014-11-11 16:44:25 -0800713bool Parcel::allowFds() const
714{
715 return mAllowFds;
716}
717
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700718bool Parcel::pushAllowFds(bool allowFds)
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400719{
720 const bool origValue = mAllowFds;
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700721 if (!allowFds) {
722 mAllowFds = false;
723 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -0400724 return origValue;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700725}
726
Dianne Hackborn7746cc32011-10-03 21:09:35 -0700727void Parcel::restoreAllowFds(bool lastValue)
728{
729 mAllowFds = lastValue;
730}
731
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700732bool Parcel::hasFileDescriptors() const
733{
Frederick Mayled3c595a2022-05-09 23:02:54 +0000734 if (const auto* rpcFields = maybeRpcFields()) {
Frederick Mayle69a0c992022-05-26 20:38:39 +0000735 return rpcFields->mFds != nullptr && !rpcFields->mFds->empty();
Frederick Mayled3c595a2022-05-09 23:02:54 +0000736 }
737 auto* kernelFields = maybeKernelFields();
738 if (!kernelFields->mFdsKnown) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700739 scanForFds();
740 }
Frederick Mayled3c595a2022-05-09 23:02:54 +0000741 return kernelFields->mHasFds;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700742}
743
sandeepbandaruaa9d3a32024-02-22 17:16:53 +0000744status_t Parcel::hasBinders(bool* result) const {
745 status_t status = hasBindersInRange(0, dataSize(), result);
746 ALOGE_IF(status != NO_ERROR, "Error %d calling hasBindersInRange()", status);
747 return status;
748}
749
Steven Moreland4b2f18d2022-03-24 00:32:25 +0000750std::vector<sp<IBinder>> Parcel::debugReadAllStrongBinders() const {
751 std::vector<sp<IBinder>> ret;
752
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000753#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayled3c595a2022-05-09 23:02:54 +0000754 const auto* kernelFields = maybeKernelFields();
755 if (kernelFields == nullptr) {
756 return ret;
757 }
758
Steven Moreland4b2f18d2022-03-24 00:32:25 +0000759 size_t initPosition = dataPosition();
Frederick Mayled3c595a2022-05-09 23:02:54 +0000760 for (size_t i = 0; i < kernelFields->mObjectsSize; i++) {
761 binder_size_t offset = kernelFields->mObjects[i];
Steven Moreland4b2f18d2022-03-24 00:32:25 +0000762 const flat_binder_object* flat =
763 reinterpret_cast<const flat_binder_object*>(mData + offset);
764 if (flat->hdr.type != BINDER_TYPE_BINDER) continue;
765
766 setDataPosition(offset);
767
768 sp<IBinder> binder = readStrongBinder();
769 if (binder != nullptr) ret.push_back(binder);
770 }
771
772 setDataPosition(initPosition);
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000773#endif // BINDER_WITH_KERNEL_IPC
774
Steven Moreland4b2f18d2022-03-24 00:32:25 +0000775 return ret;
776}
777
778std::vector<int> Parcel::debugReadAllFileDescriptors() const {
779 std::vector<int> ret;
780
Frederick Mayle69a0c992022-05-26 20:38:39 +0000781 if (const auto* kernelFields = maybeKernelFields()) {
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000782#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayle69a0c992022-05-26 20:38:39 +0000783 size_t initPosition = dataPosition();
784 for (size_t i = 0; i < kernelFields->mObjectsSize; i++) {
785 binder_size_t offset = kernelFields->mObjects[i];
786 const flat_binder_object* flat =
787 reinterpret_cast<const flat_binder_object*>(mData + offset);
788 if (flat->hdr.type != BINDER_TYPE_FD) continue;
789
790 setDataPosition(offset);
791
792 int fd = readFileDescriptor();
793 LOG_ALWAYS_FATAL_IF(fd == -1);
794 ret.push_back(fd);
795 }
796 setDataPosition(initPosition);
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000797#else
798 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
799#endif
Frederick Mayle69a0c992022-05-26 20:38:39 +0000800 } else if (const auto* rpcFields = maybeRpcFields(); rpcFields && rpcFields->mFds) {
801 for (const auto& fd : *rpcFields->mFds) {
802 ret.push_back(toRawFd(fd));
803 }
Frederick Mayled3c595a2022-05-09 23:02:54 +0000804 }
805
Steven Moreland4b2f18d2022-03-24 00:32:25 +0000806 return ret;
807}
808
sandeepbandaruaa9d3a32024-02-22 17:16:53 +0000809status_t Parcel::hasBindersInRange(size_t offset, size_t len, bool* result) const {
810 if (len > INT32_MAX || offset > INT32_MAX) {
811 // Don't accept size_t values which may have come from an inadvertent conversion from a
812 // negative int.
813 return BAD_VALUE;
814 }
815 size_t limit;
816 if (__builtin_add_overflow(offset, len, &limit) || limit > mDataSize) {
817 return BAD_VALUE;
818 }
819 *result = false;
820 if (const auto* kernelFields = maybeKernelFields()) {
821#ifdef BINDER_WITH_KERNEL_IPC
822 for (size_t i = 0; i < kernelFields->mObjectsSize; i++) {
823 size_t pos = kernelFields->mObjects[i];
824 if (pos < offset) continue;
825 if (pos + sizeof(flat_binder_object) > offset + len) {
826 if (kernelFields->mObjectsSorted) {
827 break;
828 } else {
829 continue;
830 }
831 }
832 const flat_binder_object* flat =
833 reinterpret_cast<const flat_binder_object*>(mData + pos);
834 if (flat->hdr.type == BINDER_TYPE_BINDER || flat->hdr.type == BINDER_TYPE_HANDLE) {
835 *result = true;
836 break;
837 }
838 }
839#else
840 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
841 return INVALID_OPERATION;
842#endif // BINDER_WITH_KERNEL_IPC
843 } else if (const auto* rpcFields = maybeRpcFields()) {
844 return INVALID_OPERATION;
845 }
846 return NO_ERROR;
847}
848
Bernardo Rufinobbbd88d2021-10-15 14:54:30 +0100849status_t Parcel::hasFileDescriptorsInRange(size_t offset, size_t len, bool* result) const {
Bernardo Rufino22092af2021-10-07 14:09:24 +0100850 if (len > INT32_MAX || offset > INT32_MAX) {
851 // Don't accept size_t values which may have come from an inadvertent conversion from a
852 // negative int.
853 return BAD_VALUE;
854 }
Bernardo Rufinobbbd88d2021-10-15 14:54:30 +0100855 size_t limit;
856 if (__builtin_add_overflow(offset, len, &limit) || limit > mDataSize) {
Bernardo Rufino22092af2021-10-07 14:09:24 +0100857 return BAD_VALUE;
858 }
Bernardo Rufinobbbd88d2021-10-15 14:54:30 +0100859 *result = false;
Frederick Mayle69a0c992022-05-26 20:38:39 +0000860 if (const auto* kernelFields = maybeKernelFields()) {
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000861#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayle69a0c992022-05-26 20:38:39 +0000862 for (size_t i = 0; i < kernelFields->mObjectsSize; i++) {
863 size_t pos = kernelFields->mObjects[i];
864 if (pos < offset) continue;
865 if (pos + sizeof(flat_binder_object) > offset + len) {
866 if (kernelFields->mObjectsSorted) {
867 break;
868 } else {
869 continue;
870 }
871 }
872 const flat_binder_object* flat =
873 reinterpret_cast<const flat_binder_object*>(mData + pos);
874 if (flat->hdr.type == BINDER_TYPE_FD) {
875 *result = true;
Frederick Mayled3c595a2022-05-09 23:02:54 +0000876 break;
Frederick Mayled3c595a2022-05-09 23:02:54 +0000877 }
Bernardo Rufino22092af2021-10-07 14:09:24 +0100878 }
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000879#else
880 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
881 return INVALID_OPERATION;
882#endif // BINDER_WITH_KERNEL_IPC
Frederick Mayle69a0c992022-05-26 20:38:39 +0000883 } else if (const auto* rpcFields = maybeRpcFields()) {
884 for (uint32_t pos : rpcFields->mObjectPositions) {
885 if (offset <= pos && pos < limit) {
886 const auto* type = reinterpret_cast<const RpcFields::ObjectType*>(mData + pos);
887 if (*type == RpcFields::TYPE_NATIVE_FILE_DESCRIPTOR) {
888 *result = true;
889 break;
890 }
891 }
Bernardo Rufino22092af2021-10-07 14:09:24 +0100892 }
893 }
Bernardo Rufinobbbd88d2021-10-15 14:54:30 +0100894 return NO_ERROR;
Bernardo Rufino22092af2021-10-07 14:09:24 +0100895}
896
Steven Morelandf183fdd2020-10-27 00:12:12 +0000897void Parcel::markSensitive() const
898{
899 mDeallocZero = true;
900}
901
Steven Moreland5553ac42020-11-11 02:14:45 +0000902void Parcel::markForBinder(const sp<IBinder>& binder) {
Steven Moreland1fda67b2021-04-02 18:35:50 +0000903 LOG_ALWAYS_FATAL_IF(mData != nullptr, "format must be set before data is written");
904
Steven Moreland5553ac42020-11-11 02:14:45 +0000905 if (binder && binder->remoteBinder() && binder->remoteBinder()->isRpcBinder()) {
Steven Moreland99157622021-09-13 16:27:34 -0700906 markForRpc(binder->remoteBinder()->getPrivateAccessor().rpcSession());
Steven Moreland5553ac42020-11-11 02:14:45 +0000907 }
908}
909
Steven Morelandc9939062021-05-05 17:57:41 +0000910void Parcel::markForRpc(const sp<RpcSession>& session) {
Steven Moreland1fda67b2021-04-02 18:35:50 +0000911 LOG_ALWAYS_FATAL_IF(mData != nullptr && mOwner == nullptr,
912 "format must be set before data is written OR on IPC data");
913
Frederick Mayled3c595a2022-05-09 23:02:54 +0000914 mVariantFields.emplace<RpcFields>(session);
Steven Moreland5553ac42020-11-11 02:14:45 +0000915}
916
917bool Parcel::isForRpc() const {
Frederick Mayled3c595a2022-05-09 23:02:54 +0000918 return std::holds_alternative<RpcFields>(mVariantFields);
Steven Moreland5553ac42020-11-11 02:14:45 +0000919}
920
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000921void Parcel::updateWorkSourceRequestHeaderPosition() const {
Frederick Mayled3c595a2022-05-09 23:02:54 +0000922 auto* kernelFields = maybeKernelFields();
923 if (kernelFields == nullptr) {
924 return;
925 }
926
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000927 // Only update the request headers once. We only want to point
928 // to the first headers read/written.
Frederick Mayled3c595a2022-05-09 23:02:54 +0000929 if (!kernelFields->mRequestHeaderPresent) {
930 kernelFields->mWorkSourceRequestHeaderPosition = dataPosition();
931 kernelFields->mRequestHeaderPresent = true;
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000932 }
933}
934
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000935#ifdef BINDER_WITH_KERNEL_IPC
Steven Moreland94e63e12023-12-05 20:29:50 +0000936
937#if defined(__ANDROID__)
938
Steven Morelandb6c7e222021-02-18 19:20:14 +0000939#if defined(__ANDROID_VNDK__)
Steven Morelandd70160f2019-07-23 10:20:38 -0700940constexpr int32_t kHeader = B_PACK_CHARS('V', 'N', 'D', 'R');
Yifan Hong70786532021-10-20 21:41:18 -0700941#elif defined(__ANDROID_RECOVERY__)
942constexpr int32_t kHeader = B_PACK_CHARS('R', 'E', 'C', 'O');
Steven Morelandd70160f2019-07-23 10:20:38 -0700943#else
944constexpr int32_t kHeader = B_PACK_CHARS('S', 'Y', 'S', 'T');
945#endif
Steven Moreland94e63e12023-12-05 20:29:50 +0000946
947#else // ANDROID not defined
948
949// If kernel binder is used in new environments, we need to make sure it's separated
950// out and has a separate header.
951constexpr int32_t kHeader = B_PACK_CHARS('U', 'N', 'K', 'N');
952#endif
953
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000954#endif // BINDER_WITH_KERNEL_IPC
Steven Morelandd70160f2019-07-23 10:20:38 -0700955
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -0700956// Write RPC headers. (previously just the interface token)
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700957status_t Parcel::writeInterfaceToken(const String16& interface)
958{
Tomasz Wasilczyk0bfea2d2023-08-11 00:06:51 +0000959 return writeInterfaceToken(interface.c_str(), interface.size());
Steven Morelanddbc76c72020-10-01 18:02:48 +0000960}
961
962status_t Parcel::writeInterfaceToken(const char16_t* str, size_t len) {
Frederick Mayled3c595a2022-05-09 23:02:54 +0000963 if (auto* kernelFields = maybeKernelFields()) {
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000964#ifdef BINDER_WITH_KERNEL_IPC
Steven Moreland3af936a2021-03-26 03:05:38 +0000965 const IPCThreadState* threadState = IPCThreadState::self();
966 writeInt32(threadState->getStrictModePolicy() | STRICT_MODE_PENALTY_GATHER);
967 updateWorkSourceRequestHeaderPosition();
968 writeInt32(threadState->shouldPropagateWorkSource() ? threadState->getCallingWorkSourceUid()
969 : IPCThreadState::kUnsetWorkSource);
970 writeInt32(kHeader);
Andrei Homescua9cca9c2022-05-03 04:48:01 +0000971#else // BINDER_WITH_KERNEL_IPC
972 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
973 return INVALID_OPERATION;
974#endif // BINDER_WITH_KERNEL_IPC
Steven Moreland3af936a2021-03-26 03:05:38 +0000975 }
Steven Morelanddbc76c72020-10-01 18:02:48 +0000976
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700977 // currently the interface identification token is just its name as a string
Steven Morelanddbc76c72020-10-01 18:02:48 +0000978 return writeString16(str, len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -0700979}
980
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000981bool Parcel::replaceCallingWorkSourceUid(uid_t uid)
982{
Frederick Mayled3c595a2022-05-09 23:02:54 +0000983 auto* kernelFields = maybeKernelFields();
984 if (kernelFields == nullptr) {
985 return false;
986 }
987 if (!kernelFields->mRequestHeaderPresent) {
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000988 return false;
989 }
990
991 const size_t initialPosition = dataPosition();
Frederick Mayled3c595a2022-05-09 23:02:54 +0000992 setDataPosition(kernelFields->mWorkSourceRequestHeaderPosition);
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000993 status_t err = writeInt32(uid);
994 setDataPosition(initialPosition);
995 return err == NO_ERROR;
996}
997
Steven Morelandf1b1e492019-05-06 15:05:13 -0700998uid_t Parcel::readCallingWorkSourceUid() const
Olivier Gaillarddc848a02019-01-30 17:10:44 +0000999{
Frederick Mayled3c595a2022-05-09 23:02:54 +00001000 auto* kernelFields = maybeKernelFields();
1001 if (kernelFields == nullptr) {
1002 return false;
1003 }
1004 if (!kernelFields->mRequestHeaderPresent) {
Olivier Gaillarddc848a02019-01-30 17:10:44 +00001005 return IPCThreadState::kUnsetWorkSource;
1006 }
1007
1008 const size_t initialPosition = dataPosition();
Frederick Mayled3c595a2022-05-09 23:02:54 +00001009 setDataPosition(kernelFields->mWorkSourceRequestHeaderPosition);
Olivier Gaillarddc848a02019-01-30 17:10:44 +00001010 uid_t uid = readInt32();
1011 setDataPosition(initialPosition);
1012 return uid;
1013}
1014
Mathias Agopian83c04462009-05-22 19:00:22 -07001015bool Parcel::checkInterface(IBinder* binder) const
1016{
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -07001017 return enforceInterface(binder->getInterfaceDescriptor());
Mathias Agopian83c04462009-05-22 19:00:22 -07001018}
1019
Brad Fitzpatricka877cd82010-07-07 16:06:39 -07001020bool Parcel::enforceInterface(const String16& interface,
Brad Fitzpatrick70081a12010-07-27 09:49:11 -07001021 IPCThreadState* threadState) const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001022{
Tomasz Wasilczyk0bfea2d2023-08-11 00:06:51 +00001023 return enforceInterface(interface.c_str(), interface.size(), threadState);
Daniel Colascione0bb330d2019-10-29 16:44:19 -07001024}
1025
1026bool Parcel::enforceInterface(const char16_t* interface,
1027 size_t len,
1028 IPCThreadState* threadState) const
1029{
Frederick Mayled3c595a2022-05-09 23:02:54 +00001030 if (auto* kernelFields = maybeKernelFields()) {
Andrei Homescua9cca9c2022-05-03 04:48:01 +00001031#ifdef BINDER_WITH_KERNEL_IPC
Steven Moreland3af936a2021-03-26 03:05:38 +00001032 // StrictModePolicy.
1033 int32_t strictPolicy = readInt32();
1034 if (threadState == nullptr) {
1035 threadState = IPCThreadState::self();
1036 }
1037 if ((threadState->getLastTransactionBinderFlags() & IBinder::FLAG_ONEWAY) != 0) {
1038 // For one-way calls, the callee is running entirely
1039 // disconnected from the caller, so disable StrictMode entirely.
1040 // Not only does disk/network usage not impact the caller, but
1041 // there's no way to communicate back violations anyway.
1042 threadState->setStrictModePolicy(0);
1043 } else {
1044 threadState->setStrictModePolicy(strictPolicy);
1045 }
1046 // WorkSource.
1047 updateWorkSourceRequestHeaderPosition();
1048 int32_t workSource = readInt32();
1049 threadState->setCallingWorkSourceUidWithoutPropagation(workSource);
1050 // vendor header
1051 int32_t header = readInt32();
Steven Moreland3a667492023-06-02 21:41:39 +00001052
1053 // fuzzers skip this check, because it is for protecting the underlying ABI, but
1054 // we don't want it to reduce our coverage
1055 if (header != kHeader && !mServiceFuzzing) {
Steven Moreland3af936a2021-03-26 03:05:38 +00001056 ALOGE("Expecting header 0x%x but found 0x%x. Mixing copies of libbinder?", kHeader,
1057 header);
1058 return false;
1059 }
Andrei Homescua9cca9c2022-05-03 04:48:01 +00001060#else // BINDER_WITH_KERNEL_IPC
1061 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
1062 (void)threadState;
1063 return false;
1064#endif // BINDER_WITH_KERNEL_IPC
Brad Fitzpatricka877cd82010-07-07 16:06:39 -07001065 }
Steven Moreland3af936a2021-03-26 03:05:38 +00001066
Olivier Gaillard0e0f1de2018-08-16 14:04:09 +01001067 // Interface descriptor.
Daniel Colascione0bb330d2019-10-29 16:44:19 -07001068 size_t parcel_interface_len;
1069 const char16_t* parcel_interface = readString16Inplace(&parcel_interface_len);
1070 if (len == parcel_interface_len &&
1071 (!len || !memcmp(parcel_interface, interface, len * sizeof (char16_t)))) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001072 return true;
1073 } else {
Steven Morelande99d8822023-06-02 21:56:39 +00001074 if (mServiceFuzzing) {
1075 // ignore. Theoretically, this could cause a few false positives, because
1076 // people could assume things about getInterfaceDescriptor if they pass
1077 // this point, but it would be extremely fragile. It's more important that
1078 // we fuzz with the above things read from the Parcel.
1079 return true;
1080 } else {
Steven Moreland3a667492023-06-02 21:41:39 +00001081 ALOGW("**** enforceInterface() expected '%s' but read '%s'",
Tomasz Wasilczyk0bfea2d2023-08-11 00:06:51 +00001082 String8(interface, len).c_str(),
1083 String8(parcel_interface, parcel_interface_len).c_str());
Steven Morelande99d8822023-06-02 21:56:39 +00001084 return false;
Steven Moreland3a667492023-06-02 21:41:39 +00001085 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001086 }
Brad Fitzpatrick702ea9d2010-06-18 13:07:53 -07001087}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001088
Pawan Wagh104654a2022-11-15 21:18:42 +00001089void Parcel::setEnforceNoDataAvail(bool enforceNoDataAvail) {
1090 mEnforceNoDataAvail = enforceNoDataAvail;
1091}
1092
Steven Moreland3a667492023-06-02 21:41:39 +00001093void Parcel::setServiceFuzzing() {
1094 mServiceFuzzing = true;
1095}
1096
Steven Moreland418914a2023-06-28 21:47:14 +00001097bool Parcel::isServiceFuzzing() const {
1098 return mServiceFuzzing;
1099}
1100
Jooyung Hand23f9502021-12-23 14:39:57 +09001101binder::Status Parcel::enforceNoDataAvail() const {
Pawan Wagh104654a2022-11-15 21:18:42 +00001102 if (!mEnforceNoDataAvail) {
1103 return binder::Status::ok();
1104 }
1105
Jooyung Hand23f9502021-12-23 14:39:57 +09001106 const auto n = dataAvail();
1107 if (n == 0) {
1108 return binder::Status::ok();
1109 }
1110 return binder::Status::
1111 fromExceptionCode(binder::Status::Exception::EX_BAD_PARCELABLE,
1112 String8::format("Parcel data not fully consumed, unread size: %zu",
1113 n));
1114}
1115
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001116size_t Parcel::objectsCount() const
1117{
Frederick Mayled3c595a2022-05-09 23:02:54 +00001118 if (const auto* kernelFields = maybeKernelFields()) {
1119 return kernelFields->mObjectsSize;
1120 }
1121 return 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001122}
1123
1124status_t Parcel::errorCheck() const
1125{
1126 return mError;
1127}
1128
1129void Parcel::setError(status_t err)
1130{
1131 mError = err;
1132}
1133
1134status_t Parcel::finishWrite(size_t len)
1135{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001136 if (len > INT32_MAX) {
1137 // don't accept size_t values which may have come from an
1138 // inadvertent conversion from a negative int.
1139 return BAD_VALUE;
1140 }
1141
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001142 //printf("Finish write of %d\n", len);
1143 mDataPos += len;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001144 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001145 if (mDataPos > mDataSize) {
1146 mDataSize = mDataPos;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001147 ALOGV("finishWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001148 }
1149 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
1150 return NO_ERROR;
1151}
1152
1153status_t Parcel::writeUnpadded(const void* data, size_t len)
1154{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001155 if (len > INT32_MAX) {
1156 // don't accept size_t values which may have come from an
1157 // inadvertent conversion from a negative int.
1158 return BAD_VALUE;
1159 }
1160
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001161 size_t end = mDataPos + len;
1162 if (end < mDataPos) {
1163 // integer overflow
1164 return BAD_VALUE;
1165 }
1166
1167 if (end <= mDataCapacity) {
1168restart_write:
1169 memcpy(mData+mDataPos, data, len);
1170 return finishWrite(len);
1171 }
1172
1173 status_t err = growData(len);
1174 if (err == NO_ERROR) goto restart_write;
1175 return err;
1176}
1177
1178status_t Parcel::write(const void* data, size_t len)
1179{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001180 if (len > INT32_MAX) {
1181 // don't accept size_t values which may have come from an
1182 // inadvertent conversion from a negative int.
1183 return BAD_VALUE;
1184 }
1185
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001186 void* const d = writeInplace(len);
1187 if (d) {
1188 memcpy(d, data, len);
1189 return NO_ERROR;
1190 }
1191 return mError;
1192}
1193
1194void* Parcel::writeInplace(size_t len)
1195{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001196 if (len > INT32_MAX) {
1197 // don't accept size_t values which may have come from an
1198 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -07001199 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001200 }
1201
1202 const size_t padded = pad_size(len);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001203
Khalid Ramadanb3d817b2021-11-18 07:02:50 +00001204 // check for integer overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001205 if (mDataPos+padded < mDataPos) {
Yi Kong91635562018-06-07 14:38:36 -07001206 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001207 }
1208
1209 if ((mDataPos+padded) <= mDataCapacity) {
1210restart_write:
1211 //printf("Writing %ld bytes, padded to %ld\n", len, padded);
1212 uint8_t* const data = mData+mDataPos;
1213
Steven Moreland344041a2024-10-02 00:37:59 +00001214 if (status_t status = validateReadData(mDataPos + padded); status != OK) {
1215 return nullptr; // drops status
1216 }
1217
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001218 // Need to pad at end?
1219 if (padded != len) {
1220#if BYTE_ORDER == BIG_ENDIAN
1221 static const uint32_t mask[4] = {
1222 0x00000000, 0xffffff00, 0xffff0000, 0xff000000
1223 };
1224#endif
1225#if BYTE_ORDER == LITTLE_ENDIAN
1226 static const uint32_t mask[4] = {
1227 0x00000000, 0x00ffffff, 0x0000ffff, 0x000000ff
1228 };
1229#endif
1230 //printf("Applying pad mask: %p to %p\n", (void*)mask[padded-len],
1231 // *reinterpret_cast<void**>(data+padded-4));
1232 *reinterpret_cast<uint32_t*>(data+padded-4) &= mask[padded-len];
1233 }
1234
1235 finishWrite(padded);
1236 return data;
1237 }
1238
1239 status_t err = growData(padded);
1240 if (err == NO_ERROR) goto restart_write;
Yi Kong91635562018-06-07 14:38:36 -07001241 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001242}
1243
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001244status_t Parcel::writeUtf8AsUtf16(const std::string& str) {
1245 const uint8_t* strData = (uint8_t*)str.data();
1246 const size_t strLen= str.length();
1247 const ssize_t utf16Len = utf8_to_utf16_length(strData, strLen);
Sergio Girof4607432016-07-21 14:46:35 +01001248 if (utf16Len < 0 || utf16Len > std::numeric_limits<int32_t>::max()) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001249 return BAD_VALUE;
1250 }
1251
1252 status_t err = writeInt32(utf16Len);
1253 if (err) {
1254 return err;
1255 }
1256
1257 // Allocate enough bytes to hold our converted string and its terminating NULL.
1258 void* dst = writeInplace((utf16Len + 1) * sizeof(char16_t));
1259 if (!dst) {
1260 return NO_MEMORY;
1261 }
1262
Sergio Girof4607432016-07-21 14:46:35 +01001263 utf8_to_utf16(strData, strLen, (char16_t*)dst, (size_t) utf16Len + 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001264
1265 return NO_ERROR;
1266}
1267
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001268
Andy Hung49198cf2020-11-18 11:02:39 -08001269status_t Parcel::writeUtf8AsUtf16(const std::optional<std::string>& str) { return writeData(str); }
1270status_t Parcel::writeUtf8AsUtf16(const std::unique_ptr<std::string>& str) { return writeData(str); }
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001271
Andy Hung49198cf2020-11-18 11:02:39 -08001272status_t Parcel::writeString16(const std::optional<String16>& str) { return writeData(str); }
1273status_t Parcel::writeString16(const std::unique_ptr<String16>& str) { return writeData(str); }
Casey Dahlin451ff582015-10-19 18:12:18 -07001274
Andy Hung49198cf2020-11-18 11:02:39 -08001275status_t Parcel::writeByteVector(const std::vector<int8_t>& val) { return writeData(val); }
1276status_t Parcel::writeByteVector(const std::optional<std::vector<int8_t>>& val) { return writeData(val); }
1277status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<int8_t>>& val) { return writeData(val); }
1278status_t Parcel::writeByteVector(const std::vector<uint8_t>& val) { return writeData(val); }
1279status_t Parcel::writeByteVector(const std::optional<std::vector<uint8_t>>& val) { return writeData(val); }
1280status_t Parcel::writeByteVector(const std::unique_ptr<std::vector<uint8_t>>& val){ return writeData(val); }
1281status_t Parcel::writeInt32Vector(const std::vector<int32_t>& val) { return writeData(val); }
1282status_t Parcel::writeInt32Vector(const std::optional<std::vector<int32_t>>& val) { return writeData(val); }
1283status_t Parcel::writeInt32Vector(const std::unique_ptr<std::vector<int32_t>>& val) { return writeData(val); }
1284status_t Parcel::writeInt64Vector(const std::vector<int64_t>& val) { return writeData(val); }
1285status_t Parcel::writeInt64Vector(const std::optional<std::vector<int64_t>>& val) { return writeData(val); }
1286status_t Parcel::writeInt64Vector(const std::unique_ptr<std::vector<int64_t>>& val) { return writeData(val); }
1287status_t Parcel::writeUint64Vector(const std::vector<uint64_t>& val) { return writeData(val); }
1288status_t Parcel::writeUint64Vector(const std::optional<std::vector<uint64_t>>& val) { return writeData(val); }
1289status_t Parcel::writeUint64Vector(const std::unique_ptr<std::vector<uint64_t>>& val) { return writeData(val); }
1290status_t Parcel::writeFloatVector(const std::vector<float>& val) { return writeData(val); }
1291status_t Parcel::writeFloatVector(const std::optional<std::vector<float>>& val) { return writeData(val); }
1292status_t Parcel::writeFloatVector(const std::unique_ptr<std::vector<float>>& val) { return writeData(val); }
1293status_t Parcel::writeDoubleVector(const std::vector<double>& val) { return writeData(val); }
1294status_t Parcel::writeDoubleVector(const std::optional<std::vector<double>>& val) { return writeData(val); }
1295status_t Parcel::writeDoubleVector(const std::unique_ptr<std::vector<double>>& val) { return writeData(val); }
1296status_t Parcel::writeBoolVector(const std::vector<bool>& val) { return writeData(val); }
1297status_t Parcel::writeBoolVector(const std::optional<std::vector<bool>>& val) { return writeData(val); }
1298status_t Parcel::writeBoolVector(const std::unique_ptr<std::vector<bool>>& val) { return writeData(val); }
1299status_t Parcel::writeCharVector(const std::vector<char16_t>& val) { return writeData(val); }
1300status_t Parcel::writeCharVector(const std::optional<std::vector<char16_t>>& val) { return writeData(val); }
1301status_t Parcel::writeCharVector(const std::unique_ptr<std::vector<char16_t>>& val) { return writeData(val); }
Casey Dahlin451ff582015-10-19 18:12:18 -07001302
Andy Hung49198cf2020-11-18 11:02:39 -08001303status_t Parcel::writeString16Vector(const std::vector<String16>& val) { return writeData(val); }
Casey Dahlinb9872622015-11-25 15:09:45 -08001304status_t Parcel::writeString16Vector(
Andy Hung49198cf2020-11-18 11:02:39 -08001305 const std::optional<std::vector<std::optional<String16>>>& val) { return writeData(val); }
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001306status_t Parcel::writeString16Vector(
Andy Hung49198cf2020-11-18 11:02:39 -08001307 const std::unique_ptr<std::vector<std::unique_ptr<String16>>>& val) { return writeData(val); }
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001308status_t Parcel::writeUtf8VectorAsUtf16Vector(
Andy Hung49198cf2020-11-18 11:02:39 -08001309 const std::optional<std::vector<std::optional<std::string>>>& val) { return writeData(val); }
Jooyung Han9fcc4ef2020-01-23 12:45:10 +09001310status_t Parcel::writeUtf8VectorAsUtf16Vector(
Andy Hung49198cf2020-11-18 11:02:39 -08001311 const std::unique_ptr<std::vector<std::unique_ptr<std::string>>>& val) { return writeData(val); }
1312status_t Parcel::writeUtf8VectorAsUtf16Vector(const std::vector<std::string>& val) { return writeData(val); }
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001313
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07001314status_t Parcel::writeUniqueFileDescriptorVector(const std::vector<unique_fd>& val) {
1315 return writeData(val);
1316}
1317status_t Parcel::writeUniqueFileDescriptorVector(const std::optional<std::vector<unique_fd>>& val) {
1318 return writeData(val);
1319}
1320status_t Parcel::writeUniqueFileDescriptorVector(
1321 const std::unique_ptr<std::vector<unique_fd>>& val) {
1322 return writeData(val);
1323}
Andy Hung49198cf2020-11-18 11:02:39 -08001324
1325status_t Parcel::writeStrongBinderVector(const std::vector<sp<IBinder>>& val) { return writeData(val); }
1326status_t Parcel::writeStrongBinderVector(const std::optional<std::vector<sp<IBinder>>>& val) { return writeData(val); }
1327status_t Parcel::writeStrongBinderVector(const std::unique_ptr<std::vector<sp<IBinder>>>& val) { return writeData(val); }
1328
1329status_t Parcel::writeParcelable(const Parcelable& parcelable) { return writeData(parcelable); }
1330
1331status_t Parcel::readUtf8FromUtf16(std::optional<std::string>* str) const { return readData(str); }
1332status_t Parcel::readUtf8FromUtf16(std::unique_ptr<std::string>* str) const { return readData(str); }
1333
1334status_t Parcel::readString16(std::optional<String16>* pArg) const { return readData(pArg); }
1335status_t Parcel::readString16(std::unique_ptr<String16>* pArg) const { return readData(pArg); }
1336
1337status_t Parcel::readByteVector(std::vector<int8_t>* val) const { return readData(val); }
1338status_t Parcel::readByteVector(std::vector<uint8_t>* val) const { return readData(val); }
1339status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const { return readData(val); }
1340status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const { return readData(val); }
1341status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const { return readData(val); }
1342status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const { return readData(val); }
1343status_t Parcel::readInt32Vector(std::optional<std::vector<int32_t>>* val) const { return readData(val); }
1344status_t Parcel::readInt32Vector(std::unique_ptr<std::vector<int32_t>>* val) const { return readData(val); }
1345status_t Parcel::readInt32Vector(std::vector<int32_t>* val) const { return readData(val); }
1346status_t Parcel::readInt64Vector(std::optional<std::vector<int64_t>>* val) const { return readData(val); }
1347status_t Parcel::readInt64Vector(std::unique_ptr<std::vector<int64_t>>* val) const { return readData(val); }
1348status_t Parcel::readInt64Vector(std::vector<int64_t>* val) const { return readData(val); }
1349status_t Parcel::readUint64Vector(std::optional<std::vector<uint64_t>>* val) const { return readData(val); }
1350status_t Parcel::readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const { return readData(val); }
1351status_t Parcel::readUint64Vector(std::vector<uint64_t>* val) const { return readData(val); }
1352status_t Parcel::readFloatVector(std::optional<std::vector<float>>* val) const { return readData(val); }
1353status_t Parcel::readFloatVector(std::unique_ptr<std::vector<float>>* val) const { return readData(val); }
1354status_t Parcel::readFloatVector(std::vector<float>* val) const { return readData(val); }
1355status_t Parcel::readDoubleVector(std::optional<std::vector<double>>* val) const { return readData(val); }
1356status_t Parcel::readDoubleVector(std::unique_ptr<std::vector<double>>* val) const { return readData(val); }
1357status_t Parcel::readDoubleVector(std::vector<double>* val) const { return readData(val); }
1358status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const { return readData(val); }
1359status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const { return readData(val); }
1360status_t Parcel::readBoolVector(std::vector<bool>* val) const { return readData(val); }
1361status_t Parcel::readCharVector(std::optional<std::vector<char16_t>>* val) const { return readData(val); }
1362status_t Parcel::readCharVector(std::unique_ptr<std::vector<char16_t>>* val) const { return readData(val); }
1363status_t Parcel::readCharVector(std::vector<char16_t>* val) const { return readData(val); }
1364
1365status_t Parcel::readString16Vector(
1366 std::optional<std::vector<std::optional<String16>>>* val) const { return readData(val); }
1367status_t Parcel::readString16Vector(
1368 std::unique_ptr<std::vector<std::unique_ptr<String16>>>* val) const { return readData(val); }
1369status_t Parcel::readString16Vector(std::vector<String16>* val) const { return readData(val); }
1370status_t Parcel::readUtf8VectorFromUtf16Vector(
1371 std::optional<std::vector<std::optional<std::string>>>* val) const { return readData(val); }
1372status_t Parcel::readUtf8VectorFromUtf16Vector(
1373 std::unique_ptr<std::vector<std::unique_ptr<std::string>>>* val) const { return readData(val); }
1374status_t Parcel::readUtf8VectorFromUtf16Vector(std::vector<std::string>* val) const { return readData(val); }
1375
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07001376status_t Parcel::readUniqueFileDescriptorVector(std::optional<std::vector<unique_fd>>* val) const {
1377 return readData(val);
1378}
1379status_t Parcel::readUniqueFileDescriptorVector(
1380 std::unique_ptr<std::vector<unique_fd>>* val) const {
1381 return readData(val);
1382}
1383status_t Parcel::readUniqueFileDescriptorVector(std::vector<unique_fd>* val) const {
1384 return readData(val);
1385}
Andy Hung49198cf2020-11-18 11:02:39 -08001386
1387status_t Parcel::readStrongBinderVector(std::optional<std::vector<sp<IBinder>>>* val) const { return readData(val); }
1388status_t Parcel::readStrongBinderVector(std::unique_ptr<std::vector<sp<IBinder>>>* val) const { return readData(val); }
1389status_t Parcel::readStrongBinderVector(std::vector<sp<IBinder>>* val) const { return readData(val); }
1390
1391status_t Parcel::readParcelable(Parcelable* parcelable) const { return readData(parcelable); }
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08001392
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001393status_t Parcel::writeInt32(int32_t val)
1394{
Andreas Huber84a6d042009-08-17 13:33:27 -07001395 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001396}
Dan Stoza41a0f2f2014-12-01 10:01:10 -08001397
1398status_t Parcel::writeUint32(uint32_t val)
1399{
1400 return writeAligned(val);
1401}
1402
Marco Nelissen5c0106e2013-10-16 10:57:51 -07001403status_t Parcel::writeInt32Array(size_t len, const int32_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001404 if (len > INT32_MAX) {
1405 // don't accept size_t values which may have come from an
1406 // inadvertent conversion from a negative int.
1407 return BAD_VALUE;
1408 }
1409
Marco Nelissen5c0106e2013-10-16 10:57:51 -07001410 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -07001411 return writeInt32(-1);
Marco Nelissen5c0106e2013-10-16 10:57:51 -07001412 }
Chad Brubakere59cb432015-06-30 14:03:55 -07001413 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissen5c0106e2013-10-16 10:57:51 -07001414 if (ret == NO_ERROR) {
1415 ret = write(val, len * sizeof(*val));
1416 }
1417 return ret;
1418}
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001419status_t Parcel::writeByteArray(size_t len, const uint8_t *val) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001420 if (len > INT32_MAX) {
1421 // don't accept size_t values which may have come from an
1422 // inadvertent conversion from a negative int.
1423 return BAD_VALUE;
1424 }
1425
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001426 if (!val) {
Chad Brubakere59cb432015-06-30 14:03:55 -07001427 return writeInt32(-1);
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001428 }
Chad Brubakere59cb432015-06-30 14:03:55 -07001429 status_t ret = writeInt32(static_cast<uint32_t>(len));
Marco Nelissenf0190bf2014-03-13 14:17:40 -07001430 if (ret == NO_ERROR) {
1431 ret = write(val, len * sizeof(*val));
1432 }
1433 return ret;
1434}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001435
Casey Dahlind6848f52015-10-15 15:44:59 -07001436status_t Parcel::writeBool(bool val)
1437{
1438 return writeInt32(int32_t(val));
1439}
1440
1441status_t Parcel::writeChar(char16_t val)
1442{
1443 return writeInt32(int32_t(val));
1444}
1445
1446status_t Parcel::writeByte(int8_t val)
1447{
1448 return writeInt32(int32_t(val));
1449}
1450
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001451status_t Parcel::writeInt64(int64_t val)
1452{
Andreas Huber84a6d042009-08-17 13:33:27 -07001453 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001454}
1455
Ronghua Wu2d13afd2015-03-16 11:11:07 -07001456status_t Parcel::writeUint64(uint64_t val)
1457{
1458 return writeAligned(val);
1459}
1460
Serban Constantinescuf683e012013-11-05 16:53:55 +00001461status_t Parcel::writePointer(uintptr_t val)
1462{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001463 return writeAligned<binder_uintptr_t>(val);
Serban Constantinescuf683e012013-11-05 16:53:55 +00001464}
1465
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001466status_t Parcel::writeFloat(float val)
1467{
Andreas Huber84a6d042009-08-17 13:33:27 -07001468 return writeAligned(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001469}
1470
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001471#if defined(__mips__) && defined(__mips_hard_float)
1472
1473status_t Parcel::writeDouble(double val)
1474{
1475 union {
1476 double d;
1477 unsigned long long ll;
1478 } u;
1479 u.d = val;
1480 return writeAligned(u.ll);
1481}
1482
1483#else
1484
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001485status_t Parcel::writeDouble(double val)
1486{
Andreas Huber84a6d042009-08-17 13:33:27 -07001487 return writeAligned(val);
1488}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001489
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08001490#endif
1491
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001492status_t Parcel::writeCString(const char* str)
1493{
1494 return write(str, strlen(str)+1);
1495}
1496
1497status_t Parcel::writeString8(const String8& str)
1498{
Tomasz Wasilczyk0bfea2d2023-08-11 00:06:51 +00001499 return writeString8(str.c_str(), str.size());
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06001500}
1501
1502status_t Parcel::writeString8(const char* str, size_t len)
1503{
1504 if (str == nullptr) return writeInt32(-1);
1505
Jeff Sharkey18220902020-11-05 08:36:20 -07001506 // NOTE: Keep this logic in sync with android_os_Parcel.cpp
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06001507 status_t err = writeInt32(len);
1508 if (err == NO_ERROR) {
1509 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char));
1510 if (data) {
1511 memcpy(data, str, len);
1512 *reinterpret_cast<char*>(data+len) = 0;
1513 return NO_ERROR;
1514 }
1515 err = mError;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001516 }
1517 return err;
1518}
1519
1520status_t Parcel::writeString16(const String16& str)
1521{
Tomasz Wasilczyk0bfea2d2023-08-11 00:06:51 +00001522 return writeString16(str.c_str(), str.size());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001523}
1524
1525status_t Parcel::writeString16(const char16_t* str, size_t len)
1526{
Yi Kong91635562018-06-07 14:38:36 -07001527 if (str == nullptr) return writeInt32(-1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001528
Jeff Sharkey18220902020-11-05 08:36:20 -07001529 // NOTE: Keep this logic in sync with android_os_Parcel.cpp
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001530 status_t err = writeInt32(len);
1531 if (err == NO_ERROR) {
1532 len *= sizeof(char16_t);
1533 uint8_t* data = (uint8_t*)writeInplace(len+sizeof(char16_t));
1534 if (data) {
1535 memcpy(data, str, len);
1536 *reinterpret_cast<char16_t*>(data+len) = 0;
1537 return NO_ERROR;
1538 }
1539 err = mError;
1540 }
1541 return err;
1542}
1543
1544status_t Parcel::writeStrongBinder(const sp<IBinder>& val)
1545{
Steven Morelanda86a3562019-08-01 23:28:34 +00001546 return flattenBinder(val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001547}
1548
Casey Dahlineb8e15f2015-11-03 13:50:37 -08001549
Casey Dahlinb9872622015-11-25 15:09:45 -08001550status_t Parcel::writeRawNullableParcelable(const Parcelable* parcelable) {
1551 if (!parcelable) {
1552 return writeInt32(0);
1553 }
1554
1555 return writeParcelable(*parcelable);
1556}
1557
Tomasz Wasilczyk232d0b32023-10-09 17:37:16 +00001558#ifndef BINDER_DISABLE_NATIVE_HANDLE
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001559status_t Parcel::writeNativeHandle(const native_handle* handle)
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001560{
Mathias Agopian1d0a95b2009-07-31 16:12:13 -07001561 if (!handle || handle->version != sizeof(native_handle))
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001562 return BAD_TYPE;
1563
1564 status_t err;
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001565 err = writeInt32(handle->numFds);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001566 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001567
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001568 err = writeInt32(handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001569 if (err != NO_ERROR) return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001570
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001571 for (int i=0 ; err==NO_ERROR && i<handle->numFds ; i++)
1572 err = writeDupFileDescriptor(handle->data[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001573
1574 if (err != NO_ERROR) {
Steve Block9d453682011-12-20 16:23:08 +00001575 ALOGD("write native handle, write dup fd failed");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001576 return err;
1577 }
Mathias Agopiana47f02a2009-05-21 16:29:38 -07001578 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001579 return err;
1580}
Tomasz Wasilczyk232d0b32023-10-09 17:37:16 +00001581#endif
The Android Open Source Project5f78a482009-01-20 14:03:58 -08001582
Frederick Mayle69a0c992022-05-26 20:38:39 +00001583status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership) {
1584 if (auto* rpcFields = maybeRpcFields()) {
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07001585 std::variant<unique_fd, borrowed_fd> fdVariant;
Frederick Mayle69a0c992022-05-26 20:38:39 +00001586 if (takeOwnership) {
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07001587 fdVariant = unique_fd(fd);
Frederick Mayle69a0c992022-05-26 20:38:39 +00001588 } else {
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07001589 fdVariant = borrowed_fd(fd);
Frederick Mayle69a0c992022-05-26 20:38:39 +00001590 }
1591 if (!mAllowFds) {
Devin Mooref4c9b482024-07-01 20:22:23 +00001592 ALOGE("FDs are not allowed in this parcel. Both the service and the client must set "
1593 "the FileDescriptorTransportMode and agree on the support.");
Frederick Mayle69a0c992022-05-26 20:38:39 +00001594 return FDS_NOT_ALLOWED;
1595 }
1596 switch (rpcFields->mSession->getFileDescriptorTransportMode()) {
1597 case RpcSession::FileDescriptorTransportMode::NONE: {
Devin Mooref4c9b482024-07-01 20:22:23 +00001598 ALOGE("FDs are not allowed in this RpcSession. Both the service and the client "
1599 "must set "
1600 "the FileDescriptorTransportMode and agree on the support.");
Frederick Mayle69a0c992022-05-26 20:38:39 +00001601 return FDS_NOT_ALLOWED;
1602 }
Andrei Homescu1c18a802022-08-17 04:59:01 +00001603 case RpcSession::FileDescriptorTransportMode::UNIX:
1604 case RpcSession::FileDescriptorTransportMode::TRUSTY: {
Frederick Mayle69a0c992022-05-26 20:38:39 +00001605 if (rpcFields->mFds == nullptr) {
1606 rpcFields->mFds = std::make_unique<decltype(rpcFields->mFds)::element_type>();
1607 }
1608 size_t dataPos = mDataPos;
1609 if (dataPos > UINT32_MAX) {
1610 return NO_MEMORY;
1611 }
1612 if (status_t err = writeInt32(RpcFields::TYPE_NATIVE_FILE_DESCRIPTOR); err != OK) {
1613 return err;
1614 }
1615 if (status_t err = writeInt32(rpcFields->mFds->size()); err != OK) {
1616 return err;
1617 }
1618 rpcFields->mObjectPositions.push_back(dataPos);
1619 rpcFields->mFds->push_back(std::move(fdVariant));
1620 return OK;
1621 }
1622 }
Steven Moreland5553ac42020-11-11 02:14:45 +00001623 }
1624
Andrei Homescua9cca9c2022-05-03 04:48:01 +00001625#ifdef BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001626 flat_binder_object obj;
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001627 obj.hdr.type = BINDER_TYPE_FD;
T.J. Mercierca0c2cb2022-12-19 21:56:35 +00001628 obj.flags = 0;
Arve Hjønnevåg07fd0f12014-02-18 21:10:29 -08001629 obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001630 obj.handle = fd;
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001631 obj.cookie = takeOwnership ? 1 : 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001632 return writeObject(obj, true);
Andrei Homescua9cca9c2022-05-03 04:48:01 +00001633#else // BINDER_WITH_KERNEL_IPC
1634 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
1635 (void)fd;
1636 (void)takeOwnership;
1637 return INVALID_OPERATION;
1638#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001639}
1640
1641status_t Parcel::writeDupFileDescriptor(int fd)
1642{
Andrei Homescu24ad36e2022-08-04 01:33:33 +00001643 int dupFd;
Tomasz Wasilczyk0d9dec22023-10-06 20:28:49 +00001644 if (status_t err = binder::os::dupFileDescriptor(fd, &dupFd); err != OK) {
Andrei Homescu24ad36e2022-08-04 01:33:33 +00001645 return err;
Jeff Brownd341c712011-11-04 20:19:33 -07001646 }
1647 status_t err = writeFileDescriptor(dupFd, true /*takeOwnership*/);
Casey Dahlin06673e32015-11-23 13:24:23 -08001648 if (err != OK) {
Jeff Brownd341c712011-11-04 20:19:33 -07001649 close(dupFd);
1650 }
1651 return err;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001652}
1653
Dianne Hackborn1941a402016-08-29 12:30:43 -07001654status_t Parcel::writeParcelFileDescriptor(int fd, bool takeOwnership)
1655{
1656 writeInt32(0);
1657 return writeFileDescriptor(fd, takeOwnership);
1658}
1659
Ryo Hashimotobf551892018-05-31 16:58:35 +09001660status_t Parcel::writeDupParcelFileDescriptor(int fd)
1661{
Andrei Homescu24ad36e2022-08-04 01:33:33 +00001662 int dupFd;
Tomasz Wasilczyk0d9dec22023-10-06 20:28:49 +00001663 if (status_t err = binder::os::dupFileDescriptor(fd, &dupFd); err != OK) {
Andrei Homescu24ad36e2022-08-04 01:33:33 +00001664 return err;
Ryo Hashimotobf551892018-05-31 16:58:35 +09001665 }
1666 status_t err = writeParcelFileDescriptor(dupFd, true /*takeOwnership*/);
1667 if (err != OK) {
1668 close(dupFd);
1669 }
1670 return err;
1671}
1672
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07001673status_t Parcel::writeUniqueFileDescriptor(const unique_fd& fd) {
Casey Dahlin06673e32015-11-23 13:24:23 -08001674 return writeDupFileDescriptor(fd.get());
1675}
1676
Jeff Brown13b16042014-11-11 16:44:25 -08001677status_t Parcel::writeBlob(size_t len, bool mutableCopy, WritableBlob* outBlob)
Jeff Brown5707dbf2011-09-23 21:17:56 -07001678{
Tomasz Wasilczykbca8f942023-10-09 17:42:37 +00001679#ifdef BINDER_DISABLE_BLOB
1680 (void)len;
1681 (void)mutableCopy;
1682 (void)outBlob;
1683 return INVALID_OPERATION;
1684#else
Nick Kralevichb6b14232015-04-02 09:36:02 -07001685 if (len > INT32_MAX) {
1686 // don't accept size_t values which may have come from an
1687 // inadvertent conversion from a negative int.
1688 return BAD_VALUE;
1689 }
1690
Jeff Brown13b16042014-11-11 16:44:25 -08001691 status_t status;
1692 if (!mAllowFds || len <= BLOB_INPLACE_LIMIT) {
Steve Block6807e592011-10-20 11:56:00 +01001693 ALOGV("writeBlob: write in place");
Jeff Brown13b16042014-11-11 16:44:25 -08001694 status = writeInt32(BLOB_INPLACE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001695 if (status) return status;
1696
1697 void* ptr = writeInplace(len);
1698 if (!ptr) return NO_MEMORY;
1699
Jeff Brown13b16042014-11-11 16:44:25 -08001700 outBlob->init(-1, ptr, len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001701 return NO_ERROR;
1702 }
1703
Steve Block6807e592011-10-20 11:56:00 +01001704 ALOGV("writeBlob: write to ashmem");
Jeff Brown5707dbf2011-09-23 21:17:56 -07001705 int fd = ashmem_create_region("Parcel Blob", len);
1706 if (fd < 0) return NO_MEMORY;
1707
1708 int result = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE);
1709 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001710 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001711 } else {
Yi Kong91635562018-06-07 14:38:36 -07001712 void* ptr = ::mmap(nullptr, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001713 if (ptr == MAP_FAILED) {
1714 status = -errno;
1715 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001716 if (!mutableCopy) {
1717 result = ashmem_set_prot_region(fd, PROT_READ);
1718 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07001719 if (result < 0) {
Jeff Brownec4e0062011-10-10 14:50:10 -07001720 status = result;
Jeff Brown5707dbf2011-09-23 21:17:56 -07001721 } else {
Jeff Brown13b16042014-11-11 16:44:25 -08001722 status = writeInt32(mutableCopy ? BLOB_ASHMEM_MUTABLE : BLOB_ASHMEM_IMMUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001723 if (!status) {
Jeff Brown93ff1f92011-11-04 19:01:44 -07001724 status = writeFileDescriptor(fd, true /*takeOwnership*/);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001725 if (!status) {
Jeff Brown13b16042014-11-11 16:44:25 -08001726 outBlob->init(fd, ptr, len, mutableCopy);
Jeff Brown5707dbf2011-09-23 21:17:56 -07001727 return NO_ERROR;
1728 }
1729 }
1730 }
1731 }
Mike McTernan733610f2024-08-27 11:48:30 +01001732 if (::munmap(ptr, len) == -1) {
1733 ALOGW("munmap() failed: %s", strerror(errno));
1734 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07001735 }
1736 ::close(fd);
1737 return status;
Tomasz Wasilczykbca8f942023-10-09 17:42:37 +00001738#endif
Jeff Brown5707dbf2011-09-23 21:17:56 -07001739}
1740
Jeff Brown13b16042014-11-11 16:44:25 -08001741status_t Parcel::writeDupImmutableBlobFileDescriptor(int fd)
1742{
1743 // Must match up with what's done in writeBlob.
1744 if (!mAllowFds) return FDS_NOT_ALLOWED;
1745 status_t status = writeInt32(BLOB_ASHMEM_IMMUTABLE);
1746 if (status) return status;
1747 return writeDupFileDescriptor(fd);
1748}
1749
Mathias Agopiane1424282013-07-29 21:24:40 -07001750status_t Parcel::write(const FlattenableHelperInterface& val)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001751{
1752 status_t err;
1753
1754 // size if needed
Mathias Agopiane1424282013-07-29 21:24:40 -07001755 const size_t len = val.getFlattenedSize();
1756 const size_t fd_count = val.getFdCount();
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001757
Andrei Homescu1519b982022-06-09 02:04:44 +00001758 if ((len > INT32_MAX) || (fd_count > kMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07001759 // don't accept size_t values which may have come from an
1760 // inadvertent conversion from a negative int.
1761 return BAD_VALUE;
1762 }
1763
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001764 err = this->writeInt32(len);
1765 if (err) return err;
1766
1767 err = this->writeInt32(fd_count);
1768 if (err) return err;
1769
1770 // payload
Martijn Coenenf8542382018-04-04 11:46:56 +02001771 void* const buf = this->writeInplace(len);
Yi Kong91635562018-06-07 14:38:36 -07001772 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001773 return BAD_VALUE;
1774
Yi Kong91635562018-06-07 14:38:36 -07001775 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001776 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07001777 fds = new (std::nothrow) int[fd_count];
1778 if (fds == nullptr) {
1779 ALOGE("write: failed to allocate requested %zu fds", fd_count);
1780 return BAD_VALUE;
1781 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08001782 }
1783
1784 err = val.flatten(buf, len, fds, fd_count);
1785 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1786 err = this->writeDupFileDescriptor( fds[i] );
1787 }
1788
1789 if (fd_count) {
1790 delete [] fds;
1791 }
1792
1793 return err;
1794}
1795
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001796status_t Parcel::writeObject(const flat_binder_object& val, bool nullMetaData)
1797{
Frederick Mayled3c595a2022-05-09 23:02:54 +00001798 auto* kernelFields = maybeKernelFields();
1799 LOG_ALWAYS_FATAL_IF(kernelFields == nullptr, "Can't write flat_binder_object to RPC Parcel");
1800
Andrei Homescua9cca9c2022-05-03 04:48:01 +00001801#ifdef BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001802 const bool enoughData = (mDataPos+sizeof(val)) <= mDataCapacity;
Frederick Mayled3c595a2022-05-09 23:02:54 +00001803 const bool enoughObjects = kernelFields->mObjectsSize < kernelFields->mObjectsCapacity;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001804 if (enoughData && enoughObjects) {
1805restart_write:
Steven Moreland344041a2024-10-02 00:37:59 +00001806 if (status_t status = validateReadData(mDataPos + sizeof(val)); status != OK) {
1807 return status;
1808 }
1809
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001810 *reinterpret_cast<flat_binder_object*>(mData+mDataPos) = val;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001811
Christopher Tate98e67d32015-06-03 18:44:15 -07001812 // remember if it's a file descriptor
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07001813 if (val.hdr.type == BINDER_TYPE_FD) {
Christopher Tate98e67d32015-06-03 18:44:15 -07001814 if (!mAllowFds) {
1815 // fail before modifying our object index
1816 return FDS_NOT_ALLOWED;
1817 }
Frederick Mayled3c595a2022-05-09 23:02:54 +00001818 kernelFields->mHasFds = kernelFields->mFdsKnown = true;
Christopher Tate98e67d32015-06-03 18:44:15 -07001819 }
1820
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001821 // Need to write meta-data?
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08001822 if (nullMetaData || val.binder != 0) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00001823 kernelFields->mObjects[kernelFields->mObjectsSize] = mDataPos;
Steven Morelandc673f1f2021-10-07 18:23:35 -07001824 acquire_object(ProcessState::self(), val, this);
Frederick Mayled3c595a2022-05-09 23:02:54 +00001825 kernelFields->mObjectsSize++;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001826 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001827
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001828 return finishWrite(sizeof(flat_binder_object));
1829 }
1830
1831 if (!enoughData) {
1832 const status_t err = growData(sizeof(val));
1833 if (err != NO_ERROR) return err;
1834 }
1835 if (!enoughObjects) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00001836 if (kernelFields->mObjectsSize > SIZE_MAX - 2) return NO_MEMORY; // overflow
1837 if ((kernelFields->mObjectsSize + 2) > SIZE_MAX / 3) return NO_MEMORY; // overflow
1838 size_t newSize = ((kernelFields->mObjectsSize + 2) * 3) / 2;
Martijn Coenen93fe5182020-01-22 10:46:25 +01001839 if (newSize > SIZE_MAX / sizeof(binder_size_t)) return NO_MEMORY; // overflow
Frederick Mayled3c595a2022-05-09 23:02:54 +00001840 binder_size_t* objects =
1841 (binder_size_t*)realloc(kernelFields->mObjects, newSize * sizeof(binder_size_t));
Yi Kong91635562018-06-07 14:38:36 -07001842 if (objects == nullptr) return NO_MEMORY;
Frederick Mayled3c595a2022-05-09 23:02:54 +00001843 kernelFields->mObjects = objects;
1844 kernelFields->mObjectsCapacity = newSize;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001845 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001846
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001847 goto restart_write;
Andrei Homescua9cca9c2022-05-03 04:48:01 +00001848#else // BINDER_WITH_KERNEL_IPC
1849 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
1850 (void)val;
1851 (void)nullMetaData;
1852 return INVALID_OPERATION;
1853#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001854}
1855
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001856status_t Parcel::writeNoException()
1857{
Christopher Wiley09eb7492015-11-09 15:06:15 -08001858 binder::Status status;
1859 return status.writeToParcel(this);
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07001860}
1861
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001862status_t Parcel::validateReadData(size_t upperBound) const
1863{
Frederick Mayled3c595a2022-05-09 23:02:54 +00001864 const auto* kernelFields = maybeKernelFields();
1865 if (kernelFields == nullptr) {
1866 // Can't validate RPC Parcel reads because the location of binder
1867 // objects is unknown.
1868 return OK;
1869 }
1870
Andrei Homescua9cca9c2022-05-03 04:48:01 +00001871#ifdef BINDER_WITH_KERNEL_IPC
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001872 // Don't allow non-object reads on object data
Frederick Mayled3c595a2022-05-09 23:02:54 +00001873 if (kernelFields->mObjectsSorted || kernelFields->mObjectsSize <= 1) {
1874 data_sorted:
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001875 // Expect to check only against the next object
Frederick Mayled3c595a2022-05-09 23:02:54 +00001876 if (kernelFields->mNextObjectHint < kernelFields->mObjectsSize &&
1877 upperBound > kernelFields->mObjects[kernelFields->mNextObjectHint]) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001878 // For some reason the current read position is greater than the next object
1879 // hint. Iterate until we find the right object
Frederick Mayled3c595a2022-05-09 23:02:54 +00001880 size_t nextObject = kernelFields->mNextObjectHint;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001881 do {
Frederick Mayled3c595a2022-05-09 23:02:54 +00001882 if (mDataPos < kernelFields->mObjects[nextObject] + sizeof(flat_binder_object)) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001883 // Requested info overlaps with an object
Steven Moreland3a667492023-06-02 21:41:39 +00001884 if (!mServiceFuzzing) {
1885 ALOGE("Attempt to read from protected data in Parcel %p", this);
1886 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001887 return PERMISSION_DENIED;
1888 }
1889 nextObject++;
Frederick Mayled3c595a2022-05-09 23:02:54 +00001890 } while (nextObject < kernelFields->mObjectsSize &&
1891 upperBound > kernelFields->mObjects[nextObject]);
1892 kernelFields->mNextObjectHint = nextObject;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001893 }
1894 return NO_ERROR;
1895 }
1896 // Quickly determine if mObjects is sorted.
Frederick Mayled3c595a2022-05-09 23:02:54 +00001897 binder_size_t* currObj = kernelFields->mObjects + kernelFields->mObjectsSize - 1;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001898 binder_size_t* prevObj = currObj;
Frederick Mayled3c595a2022-05-09 23:02:54 +00001899 while (currObj > kernelFields->mObjects) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001900 prevObj--;
1901 if(*prevObj > *currObj) {
1902 goto data_unsorted;
1903 }
1904 currObj--;
1905 }
Frederick Mayled3c595a2022-05-09 23:02:54 +00001906 kernelFields->mObjectsSorted = true;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001907 goto data_sorted;
1908
1909data_unsorted:
1910 // Insertion Sort mObjects
1911 // Great for mostly sorted lists. If randomly sorted or reverse ordered mObjects become common,
1912 // switch to std::sort(mObjects, mObjects + mObjectsSize);
Frederick Mayled3c595a2022-05-09 23:02:54 +00001913 for (binder_size_t* iter0 = kernelFields->mObjects + 1;
1914 iter0 < kernelFields->mObjects + kernelFields->mObjectsSize; iter0++) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001915 binder_size_t temp = *iter0;
1916 binder_size_t* iter1 = iter0 - 1;
Frederick Mayled3c595a2022-05-09 23:02:54 +00001917 while (iter1 >= kernelFields->mObjects && *iter1 > temp) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001918 *(iter1 + 1) = *iter1;
1919 iter1--;
1920 }
1921 *(iter1 + 1) = temp;
1922 }
Frederick Mayled3c595a2022-05-09 23:02:54 +00001923 kernelFields->mNextObjectHint = 0;
1924 kernelFields->mObjectsSorted = true;
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001925 goto data_sorted;
Andrei Homescua9cca9c2022-05-03 04:48:01 +00001926#else // BINDER_WITH_KERNEL_IPC
1927 (void)upperBound;
1928 return NO_ERROR;
1929#endif // BINDER_WITH_KERNEL_IPC
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001930}
1931
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001932status_t Parcel::read(void* outData, size_t len) const
1933{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001934 if (len > INT32_MAX) {
1935 // don't accept size_t values which may have come from an
1936 // inadvertent conversion from a negative int.
1937 return BAD_VALUE;
1938 }
1939
1940 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1941 && len <= pad_size(len)) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00001942 const auto* kernelFields = maybeKernelFields();
1943 if (kernelFields != nullptr && kernelFields->mObjectsSize > 0) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001944 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001945 if(err != NO_ERROR) {
1946 // Still increment the data position by the expected length
1947 mDataPos += pad_size(len);
1948 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
1949 return err;
1950 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001951 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001952 memcpy(outData, mData+mDataPos, len);
Nick Kralevichb6b14232015-04-02 09:36:02 -07001953 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001954 ALOGV("read Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001955 return NO_ERROR;
1956 }
1957 return NOT_ENOUGH_DATA;
1958}
1959
1960const void* Parcel::readInplace(size_t len) const
1961{
Nick Kralevichb6b14232015-04-02 09:36:02 -07001962 if (len > INT32_MAX) {
1963 // don't accept size_t values which may have come from an
1964 // inadvertent conversion from a negative int.
Yi Kong91635562018-06-07 14:38:36 -07001965 return nullptr;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001966 }
1967
1968 if ((mDataPos+pad_size(len)) >= mDataPos && (mDataPos+pad_size(len)) <= mDataSize
1969 && len <= pad_size(len)) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00001970 const auto* kernelFields = maybeKernelFields();
1971 if (kernelFields != nullptr && kernelFields->mObjectsSize > 0) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001972 status_t err = validateReadData(mDataPos + pad_size(len));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001973 if(err != NO_ERROR) {
1974 // Still increment the data position by the expected length
1975 mDataPos += pad_size(len);
1976 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
Yi Kong91635562018-06-07 14:38:36 -07001977 return nullptr;
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07001978 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08001979 }
1980
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001981 const void* data = mData+mDataPos;
Nick Kralevichb6b14232015-04-02 09:36:02 -07001982 mDataPos += pad_size(len);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07001983 ALOGV("readInplace Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001984 return data;
1985 }
Yi Kong91635562018-06-07 14:38:36 -07001986 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001987}
1988
Steven Morelandd4f73fb2021-05-14 19:50:52 +00001989status_t Parcel::readOutVectorSizeWithCheck(size_t elmSize, int32_t* size) const {
1990 if (status_t status = readInt32(size); status != OK) return status;
1991 if (*size < 0) return OK; // may be null, client to handle
1992
1993 LOG_ALWAYS_FATAL_IF(elmSize > INT32_MAX, "Cannot have element as big as %zu", elmSize);
1994
1995 // approximation, can't know max element size (e.g. if it makes heap
1996 // allocations)
1997 static_assert(sizeof(int) == sizeof(int32_t), "Android is LP64");
1998 int32_t allocationSize;
1999 if (__builtin_smul_overflow(elmSize, *size, &allocationSize)) return NO_MEMORY;
2000
2001 // High limit of 1MB since something this big could never be returned. Could
2002 // probably scope this down, but might impact very specific usecases.
2003 constexpr int32_t kMaxAllocationSize = 1 * 1000 * 1000;
2004
2005 if (allocationSize >= kMaxAllocationSize) {
2006 return NO_MEMORY;
2007 }
2008
2009 return OK;
2010}
2011
Andreas Huber84a6d042009-08-17 13:33:27 -07002012template<class T>
2013status_t Parcel::readAligned(T *pArg) const {
Elliott Hughes42a9b942020-08-17 15:53:31 -07002014 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andrei Homescue33238e2022-03-29 22:50:00 +00002015 static_assert(std::is_trivially_copyable_v<T>);
Andreas Huber84a6d042009-08-17 13:33:27 -07002016
2017 if ((mDataPos+sizeof(T)) <= mDataSize) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00002018 const auto* kernelFields = maybeKernelFields();
2019 if (kernelFields != nullptr && kernelFields->mObjectsSize > 0) {
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002020 status_t err = validateReadData(mDataPos + sizeof(T));
Michael Wachenschwanza17f0222018-04-17 16:52:40 -07002021 if(err != NO_ERROR) {
2022 // Still increment the data position by the expected length
2023 mDataPos += sizeof(T);
2024 return err;
2025 }
Michael Wachenschwanzc5176812017-11-17 18:25:05 -08002026 }
2027
Andrei Homescue33238e2022-03-29 22:50:00 +00002028 memcpy(pArg, mData + mDataPos, sizeof(T));
Andreas Huber84a6d042009-08-17 13:33:27 -07002029 mDataPos += sizeof(T);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002030 return NO_ERROR;
2031 } else {
2032 return NOT_ENOUGH_DATA;
2033 }
2034}
2035
Andreas Huber84a6d042009-08-17 13:33:27 -07002036template<class T>
2037T Parcel::readAligned() const {
2038 T result;
2039 if (readAligned(&result) != NO_ERROR) {
2040 result = 0;
2041 }
2042
2043 return result;
2044}
2045
2046template<class T>
2047status_t Parcel::writeAligned(T val) {
Elliott Hughes42a9b942020-08-17 15:53:31 -07002048 static_assert(PAD_SIZE_UNSAFE(sizeof(T)) == sizeof(T));
Andrei Homescue33238e2022-03-29 22:50:00 +00002049 static_assert(std::is_trivially_copyable_v<T>);
Andreas Huber84a6d042009-08-17 13:33:27 -07002050
2051 if ((mDataPos+sizeof(val)) <= mDataCapacity) {
2052restart_write:
Steven Moreland344041a2024-10-02 00:37:59 +00002053 if (status_t status = validateReadData(mDataPos + sizeof(val)); status != OK) {
2054 return status;
2055 }
2056
Andrei Homescue33238e2022-03-29 22:50:00 +00002057 memcpy(mData + mDataPos, &val, sizeof(val));
Andreas Huber84a6d042009-08-17 13:33:27 -07002058 return finishWrite(sizeof(val));
2059 }
2060
2061 status_t err = growData(sizeof(val));
2062 if (err == NO_ERROR) goto restart_write;
2063 return err;
2064}
2065
2066status_t Parcel::readInt32(int32_t *pArg) const
2067{
2068 return readAligned(pArg);
2069}
2070
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002071int32_t Parcel::readInt32() const
2072{
Andreas Huber84a6d042009-08-17 13:33:27 -07002073 return readAligned<int32_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002074}
2075
Dan Stoza41a0f2f2014-12-01 10:01:10 -08002076status_t Parcel::readUint32(uint32_t *pArg) const
2077{
2078 return readAligned(pArg);
2079}
2080
2081uint32_t Parcel::readUint32() const
2082{
2083 return readAligned<uint32_t>();
2084}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002085
2086status_t Parcel::readInt64(int64_t *pArg) const
2087{
Andreas Huber84a6d042009-08-17 13:33:27 -07002088 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002089}
2090
2091
2092int64_t Parcel::readInt64() const
2093{
Andreas Huber84a6d042009-08-17 13:33:27 -07002094 return readAligned<int64_t>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002095}
2096
Ronghua Wu2d13afd2015-03-16 11:11:07 -07002097status_t Parcel::readUint64(uint64_t *pArg) const
2098{
2099 return readAligned(pArg);
2100}
2101
2102uint64_t Parcel::readUint64() const
2103{
2104 return readAligned<uint64_t>();
2105}
2106
Serban Constantinescuf683e012013-11-05 16:53:55 +00002107status_t Parcel::readPointer(uintptr_t *pArg) const
2108{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002109 status_t ret;
2110 binder_uintptr_t ptr;
2111 ret = readAligned(&ptr);
2112 if (!ret)
2113 *pArg = ptr;
2114 return ret;
Serban Constantinescuf683e012013-11-05 16:53:55 +00002115}
2116
2117uintptr_t Parcel::readPointer() const
2118{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002119 return readAligned<binder_uintptr_t>();
Serban Constantinescuf683e012013-11-05 16:53:55 +00002120}
2121
2122
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002123status_t Parcel::readFloat(float *pArg) const
2124{
Andreas Huber84a6d042009-08-17 13:33:27 -07002125 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002126}
2127
2128
2129float Parcel::readFloat() const
2130{
Andreas Huber84a6d042009-08-17 13:33:27 -07002131 return readAligned<float>();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002132}
2133
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08002134#if defined(__mips__) && defined(__mips_hard_float)
2135
2136status_t Parcel::readDouble(double *pArg) const
2137{
2138 union {
2139 double d;
2140 unsigned long long ll;
2141 } u;
Narayan Kamath2c68d382014-06-04 15:04:29 +01002142 u.d = 0;
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08002143 status_t status;
2144 status = readAligned(&u.ll);
2145 *pArg = u.d;
2146 return status;
2147}
2148
2149double Parcel::readDouble() const
2150{
2151 union {
2152 double d;
2153 unsigned long long ll;
2154 } u;
2155 u.ll = readAligned<unsigned long long>();
2156 return u.d;
2157}
2158
2159#else
2160
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002161status_t Parcel::readDouble(double *pArg) const
2162{
Andreas Huber84a6d042009-08-17 13:33:27 -07002163 return readAligned(pArg);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002164}
2165
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002166double Parcel::readDouble() const
2167{
Andreas Huber84a6d042009-08-17 13:33:27 -07002168 return readAligned<double>();
2169}
2170
Douglas Leungcc1a4bb2013-01-11 15:00:55 -08002171#endif
2172
Casey Dahlind6848f52015-10-15 15:44:59 -07002173status_t Parcel::readBool(bool *pArg) const
2174{
Manoj Gupta6eb62052017-07-12 10:29:15 -07002175 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07002176 status_t ret = readInt32(&tmp);
2177 *pArg = (tmp != 0);
2178 return ret;
2179}
2180
2181bool Parcel::readBool() const
2182{
2183 return readInt32() != 0;
2184}
2185
2186status_t Parcel::readChar(char16_t *pArg) const
2187{
Manoj Gupta6eb62052017-07-12 10:29:15 -07002188 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07002189 status_t ret = readInt32(&tmp);
2190 *pArg = char16_t(tmp);
2191 return ret;
2192}
2193
2194char16_t Parcel::readChar() const
2195{
2196 return char16_t(readInt32());
2197}
2198
2199status_t Parcel::readByte(int8_t *pArg) const
2200{
Manoj Gupta6eb62052017-07-12 10:29:15 -07002201 int32_t tmp = 0;
Casey Dahlind6848f52015-10-15 15:44:59 -07002202 status_t ret = readInt32(&tmp);
2203 *pArg = int8_t(tmp);
2204 return ret;
2205}
2206
2207int8_t Parcel::readByte() const
2208{
2209 return int8_t(readInt32());
2210}
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002211
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002212status_t Parcel::readUtf8FromUtf16(std::string* str) const {
2213 size_t utf16Size = 0;
2214 const char16_t* src = readString16Inplace(&utf16Size);
2215 if (!src) {
2216 return UNEXPECTED_NULL;
2217 }
2218
2219 // Save ourselves the trouble, we're done.
2220 if (utf16Size == 0u) {
2221 str->clear();
2222 return NO_ERROR;
2223 }
2224
Sergio Giro9b39ebe2016-06-28 18:19:33 +01002225 // Allow for closing '\0'
2226 ssize_t utf8Size = utf16_to_utf8_length(src, utf16Size) + 1;
2227 if (utf8Size < 1) {
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002228 return BAD_VALUE;
2229 }
2230 // Note that while it is probably safe to assume string::resize keeps a
Sergio Giro9b39ebe2016-06-28 18:19:33 +01002231 // spare byte around for the trailing null, we still pass the size including the trailing null
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002232 str->resize(utf8Size);
Sergio Giro9b39ebe2016-06-28 18:19:33 +01002233 utf16_to_utf8(src, utf16Size, &((*str)[0]), utf8Size);
2234 str->resize(utf8Size - 1);
Christopher Wiley9a5e32f2016-01-28 16:56:53 -08002235 return NO_ERROR;
2236}
2237
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002238const char* Parcel::readCString() const
2239{
Steven Morelandd0d4b582019-05-17 13:14:06 -07002240 if (mDataPos < mDataSize) {
2241 const size_t avail = mDataSize-mDataPos;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002242 const char* str = reinterpret_cast<const char*>(mData+mDataPos);
2243 // is the string's trailing NUL within the parcel's valid bounds?
2244 const char* eos = reinterpret_cast<const char*>(memchr(str, 0, avail));
2245 if (eos) {
2246 const size_t len = eos - str;
Nick Kralevichb6b14232015-04-02 09:36:02 -07002247 mDataPos += pad_size(len+1);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002248 ALOGV("readCString Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002249 return str;
2250 }
2251 }
Yi Kong91635562018-06-07 14:38:36 -07002252 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002253}
2254
2255String8 Parcel::readString8() const
2256{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002257 size_t len;
2258 const char* str = readString8Inplace(&len);
2259 if (str) return String8(str, len);
Steven Moreland3a667492023-06-02 21:41:39 +00002260
2261 if (!mServiceFuzzing) {
2262 ALOGE("Reading a NULL string not supported here.");
2263 }
2264
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002265 return String8();
Roshan Pius87b64d22016-07-18 12:51:02 -07002266}
2267
2268status_t Parcel::readString8(String8* pArg) const
2269{
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002270 size_t len;
2271 const char* str = readString8Inplace(&len);
2272 if (str) {
2273 pArg->setTo(str, len);
2274 return 0;
2275 } else {
Roshan Pius87b64d22016-07-18 12:51:02 -07002276 *pArg = String8();
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002277 return UNEXPECTED_NULL;
Roshan Pius87b64d22016-07-18 12:51:02 -07002278 }
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002279}
2280
2281const char* Parcel::readString8Inplace(size_t* outLen) const
2282{
2283 int32_t size = readInt32();
2284 // watch for potential int overflow from size+1
2285 if (size >= 0 && size < INT32_MAX) {
2286 *outLen = size;
2287 const char* str = (const char*)readInplace(size+1);
Steven Moreland61d0f842020-12-04 21:13:03 +00002288 if (str != nullptr) {
2289 if (str[size] == '\0') {
2290 return str;
2291 }
2292 android_errorWriteLog(0x534e4554, "172655291");
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002293 }
Roshan Pius87b64d22016-07-18 12:51:02 -07002294 }
Jeff Sharkey2f8bdb52020-04-19 21:41:26 -06002295 *outLen = 0;
2296 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002297}
2298
2299String16 Parcel::readString16() const
2300{
2301 size_t len;
2302 const char16_t* str = readString16Inplace(&len);
2303 if (str) return String16(str, len);
Steven Moreland3a667492023-06-02 21:41:39 +00002304
2305 if (!mServiceFuzzing) {
2306 ALOGE("Reading a NULL string not supported here.");
2307 }
2308
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002309 return String16();
2310}
2311
Casey Dahlinb9872622015-11-25 15:09:45 -08002312
Casey Dahlin451ff582015-10-19 18:12:18 -07002313status_t Parcel::readString16(String16* pArg) const
2314{
2315 size_t len;
2316 const char16_t* str = readString16Inplace(&len);
2317 if (str) {
Casey Dahlin1515ea12015-10-20 16:26:23 -07002318 pArg->setTo(str, len);
Casey Dahlin451ff582015-10-19 18:12:18 -07002319 return 0;
2320 } else {
2321 *pArg = String16();
Christopher Wiley4db672d2015-11-10 09:44:30 -08002322 return UNEXPECTED_NULL;
Casey Dahlin451ff582015-10-19 18:12:18 -07002323 }
2324}
2325
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002326const char16_t* Parcel::readString16Inplace(size_t* outLen) const
2327{
2328 int32_t size = readInt32();
2329 // watch for potential int overflow from size+1
2330 if (size >= 0 && size < INT32_MAX) {
2331 *outLen = size;
2332 const char16_t* str = (const char16_t*)readInplace((size+1)*sizeof(char16_t));
Steven Moreland61d0f842020-12-04 21:13:03 +00002333 if (str != nullptr) {
2334 if (str[size] == u'\0') {
2335 return str;
2336 }
2337 android_errorWriteLog(0x534e4554, "172655291");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002338 }
2339 }
2340 *outLen = 0;
Yi Kong91635562018-06-07 14:38:36 -07002341 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002342}
2343
Casey Dahlinf0c13772015-10-27 18:33:56 -07002344status_t Parcel::readStrongBinder(sp<IBinder>* val) const
2345{
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002346 status_t status = readNullableStrongBinder(val);
2347 if (status == OK && !val->get()) {
Steven Moreland3a667492023-06-02 21:41:39 +00002348 if (!mServiceFuzzing) {
2349 ALOGW("Expecting binder but got null!");
2350 }
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002351 status = UNEXPECTED_NULL;
2352 }
2353 return status;
2354}
2355
2356status_t Parcel::readNullableStrongBinder(sp<IBinder>* val) const
2357{
Steven Morelanda86a3562019-08-01 23:28:34 +00002358 return unflattenBinder(val);
Casey Dahlinf0c13772015-10-27 18:33:56 -07002359}
2360
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002361sp<IBinder> Parcel::readStrongBinder() const
2362{
2363 sp<IBinder> val;
Christopher Wiley35d77ca2016-03-08 10:49:51 -08002364 // Note that a lot of code in Android reads binders by hand with this
2365 // method, and that code has historically been ok with getting nullptr
2366 // back (while ignoring error codes).
2367 readNullableStrongBinder(&val);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002368 return val;
2369}
2370
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002371int32_t Parcel::readExceptionCode() const
2372{
Christopher Wiley09eb7492015-11-09 15:06:15 -08002373 binder::Status status;
2374 status.readFromParcel(*this);
2375 return status.exceptionCode();
Brad Fitzpatrick837a0d02010-07-13 15:33:35 -07002376}
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002377
Tomasz Wasilczyk232d0b32023-10-09 17:37:16 +00002378#ifndef BINDER_DISABLE_NATIVE_HANDLE
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002379native_handle* Parcel::readNativeHandle() const
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002380{
2381 int numFds, numInts;
2382 status_t err;
2383 err = readInt32(&numFds);
Yi Kong91635562018-06-07 14:38:36 -07002384 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002385 err = readInt32(&numInts);
Yi Kong91635562018-06-07 14:38:36 -07002386 if (err != NO_ERROR) return nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002387
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002388 native_handle* h = native_handle_create(numFds, numInts);
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002389 if (!h) {
Yi Kong91635562018-06-07 14:38:36 -07002390 return nullptr;
Adam Lesinskieaac99a2015-05-12 17:35:48 -07002391 }
2392
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002393 for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002394 h->data[i] = fcntl(readFileDescriptor(), F_DUPFD_CLOEXEC, 0);
Marco Nelissen1de79662016-04-26 08:44:09 -07002395 if (h->data[i] < 0) {
2396 for (int j = 0; j < i; j++) {
2397 close(h->data[j]);
2398 }
2399 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002400 return nullptr;
Marco Nelissen1de79662016-04-26 08:44:09 -07002401 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002402 }
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002403 err = read(h->data + numFds, sizeof(int)*numInts);
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002404 if (err != NO_ERROR) {
Mathias Agopiana47f02a2009-05-21 16:29:38 -07002405 native_handle_close(h);
2406 native_handle_delete(h);
Yi Kong91635562018-06-07 14:38:36 -07002407 h = nullptr;
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002408 }
2409 return h;
2410}
Tomasz Wasilczyk232d0b32023-10-09 17:37:16 +00002411#endif
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002412
Frederick Mayle69a0c992022-05-26 20:38:39 +00002413int Parcel::readFileDescriptor() const {
2414 if (const auto* rpcFields = maybeRpcFields()) {
2415 if (!std::binary_search(rpcFields->mObjectPositions.begin(),
2416 rpcFields->mObjectPositions.end(), mDataPos)) {
Steven Moreland3a667492023-06-02 21:41:39 +00002417 if (!mServiceFuzzing) {
2418 ALOGW("Attempt to read file descriptor from Parcel %p at offset %zu that is not in "
2419 "the object list",
2420 this, mDataPos);
2421 }
Frederick Mayle69a0c992022-05-26 20:38:39 +00002422 return BAD_TYPE;
2423 }
2424
2425 int32_t objectType = readInt32();
2426 if (objectType != RpcFields::TYPE_NATIVE_FILE_DESCRIPTOR) {
2427 return BAD_TYPE;
2428 }
2429
2430 int32_t fdIndex = readInt32();
2431 if (rpcFields->mFds == nullptr || fdIndex < 0 ||
2432 static_cast<size_t>(fdIndex) >= rpcFields->mFds->size()) {
2433 ALOGE("RPC Parcel contains invalid file descriptor index. index=%d fd_count=%zu",
2434 fdIndex, rpcFields->mFds ? rpcFields->mFds->size() : 0);
2435 return BAD_VALUE;
2436 }
2437 return toRawFd(rpcFields->mFds->at(fdIndex));
2438 }
2439
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002440#ifdef BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002441 const flat_binder_object* flat = readObject(true);
Casey Dahlin06673e32015-11-23 13:24:23 -08002442
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07002443 if (flat && flat->hdr.type == BINDER_TYPE_FD) {
Casey Dahlin06673e32015-11-23 13:24:23 -08002444 return flat->handle;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002445 }
Casey Dahlin06673e32015-11-23 13:24:23 -08002446
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002447 return BAD_TYPE;
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002448#else // BINDER_WITH_KERNEL_IPC
2449 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
2450 return INVALID_OPERATION;
2451#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002452}
2453
Frederick Mayle69a0c992022-05-26 20:38:39 +00002454int Parcel::readParcelFileDescriptor() const {
Dianne Hackborn1941a402016-08-29 12:30:43 -07002455 int32_t hasComm = readInt32();
2456 int fd = readFileDescriptor();
2457 if (hasComm != 0) {
Steven Morelandb73806a2018-11-12 19:35:47 -08002458 // detach (owned by the binder driver)
2459 int comm = readFileDescriptor();
2460
2461 // warning: this must be kept in sync with:
2462 // frameworks/base/core/java/android/os/ParcelFileDescriptor.java
2463 enum ParcelFileDescriptorStatus {
2464 DETACHED = 2,
2465 };
2466
2467#if BYTE_ORDER == BIG_ENDIAN
2468 const int32_t message = ParcelFileDescriptorStatus::DETACHED;
2469#endif
2470#if BYTE_ORDER == LITTLE_ENDIAN
2471 const int32_t message = __builtin_bswap32(ParcelFileDescriptorStatus::DETACHED);
2472#endif
2473
2474 ssize_t written = TEMP_FAILURE_RETRY(
2475 ::write(comm, &message, sizeof(message)));
2476
Krzysztof Kosińskia8406892021-02-02 17:59:43 -08002477 if (written != sizeof(message)) {
Steven Morelandb73806a2018-11-12 19:35:47 -08002478 ALOGW("Failed to detach ParcelFileDescriptor written: %zd err: %s",
2479 written, strerror(errno));
2480 return BAD_TYPE;
2481 }
Dianne Hackborn1941a402016-08-29 12:30:43 -07002482 }
2483 return fd;
2484}
2485
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07002486status_t Parcel::readUniqueFileDescriptor(unique_fd* val) const {
Casey Dahlin06673e32015-11-23 13:24:23 -08002487 int got = readFileDescriptor();
2488
2489 if (got == BAD_TYPE) {
2490 return BAD_TYPE;
2491 }
2492
Andrei Homescu24ad36e2022-08-04 01:33:33 +00002493 int dupFd;
Tomasz Wasilczyk0d9dec22023-10-06 20:28:49 +00002494 if (status_t err = binder::os::dupFileDescriptor(got, &dupFd); err != OK) {
Andrei Homescu24ad36e2022-08-04 01:33:33 +00002495 return BAD_VALUE;
2496 }
2497
2498 val->reset(dupFd);
Casey Dahlin06673e32015-11-23 13:24:23 -08002499
2500 if (val->get() < 0) {
2501 return BAD_VALUE;
2502 }
2503
2504 return OK;
2505}
2506
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07002507status_t Parcel::readUniqueParcelFileDescriptor(unique_fd* val) const {
Ryo Hashimotobf551892018-05-31 16:58:35 +09002508 int got = readParcelFileDescriptor();
2509
2510 if (got == BAD_TYPE) {
2511 return BAD_TYPE;
2512 }
2513
Andrei Homescu24ad36e2022-08-04 01:33:33 +00002514 int dupFd;
Tomasz Wasilczyk0d9dec22023-10-06 20:28:49 +00002515 if (status_t err = binder::os::dupFileDescriptor(got, &dupFd); err != OK) {
Andrei Homescu24ad36e2022-08-04 01:33:33 +00002516 return BAD_VALUE;
2517 }
2518
2519 val->reset(dupFd);
Ryo Hashimotobf551892018-05-31 16:58:35 +09002520
2521 if (val->get() < 0) {
2522 return BAD_VALUE;
2523 }
2524
2525 return OK;
2526}
Casey Dahlin06673e32015-11-23 13:24:23 -08002527
Jeff Brown5707dbf2011-09-23 21:17:56 -07002528status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
2529{
Tomasz Wasilczykbca8f942023-10-09 17:42:37 +00002530#ifdef BINDER_DISABLE_BLOB
2531 (void)len;
2532 (void)outBlob;
2533 return INVALID_OPERATION;
2534#else
Jeff Brown13b16042014-11-11 16:44:25 -08002535 int32_t blobType;
2536 status_t status = readInt32(&blobType);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002537 if (status) return status;
2538
Jeff Brown13b16042014-11-11 16:44:25 -08002539 if (blobType == BLOB_INPLACE) {
Steve Block6807e592011-10-20 11:56:00 +01002540 ALOGV("readBlob: read in place");
Jeff Brown5707dbf2011-09-23 21:17:56 -07002541 const void* ptr = readInplace(len);
2542 if (!ptr) return BAD_VALUE;
2543
Jeff Brown13b16042014-11-11 16:44:25 -08002544 outBlob->init(-1, const_cast<void*>(ptr), len, false);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002545 return NO_ERROR;
2546 }
2547
Steve Block6807e592011-10-20 11:56:00 +01002548 ALOGV("readBlob: read from ashmem");
Jeff Brown13b16042014-11-11 16:44:25 -08002549 bool isMutable = (blobType == BLOB_ASHMEM_MUTABLE);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002550 int fd = readFileDescriptor();
2551 if (fd == int(BAD_TYPE)) return BAD_VALUE;
2552
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002553 if (!ashmem_valid(fd)) {
2554 ALOGE("invalid fd");
2555 return BAD_VALUE;
2556 }
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002557 int size = ashmem_get_size_region(fd);
2558 if (size < 0 || size_t(size) < len) {
Jorim Jaggi150b4ef2018-07-13 11:18:30 +00002559 ALOGE("request size %zu does not match fd size %d", len, size);
Marco Nelissen7a96ec42018-06-06 07:37:46 -07002560 return BAD_VALUE;
2561 }
Yi Kong91635562018-06-07 14:38:36 -07002562 void* ptr = ::mmap(nullptr, len, isMutable ? PROT_READ | PROT_WRITE : PROT_READ,
Jeff Brown13b16042014-11-11 16:44:25 -08002563 MAP_SHARED, fd, 0);
Narayan Kamath9ea09752014-10-08 17:35:45 +01002564 if (ptr == MAP_FAILED) return NO_MEMORY;
Jeff Brown5707dbf2011-09-23 21:17:56 -07002565
Jeff Brown13b16042014-11-11 16:44:25 -08002566 outBlob->init(fd, ptr, len, isMutable);
Jeff Brown5707dbf2011-09-23 21:17:56 -07002567 return NO_ERROR;
Tomasz Wasilczykbca8f942023-10-09 17:42:37 +00002568#endif
Jeff Brown5707dbf2011-09-23 21:17:56 -07002569}
2570
Mathias Agopiane1424282013-07-29 21:24:40 -07002571status_t Parcel::read(FlattenableHelperInterface& val) const
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002572{
2573 // size
2574 const size_t len = this->readInt32();
2575 const size_t fd_count = this->readInt32();
2576
Andrei Homescu1519b982022-06-09 02:04:44 +00002577 if ((len > INT32_MAX) || (fd_count > kMaxFds)) {
Nick Kralevichb6b14232015-04-02 09:36:02 -07002578 // don't accept size_t values which may have come from an
2579 // inadvertent conversion from a negative int.
2580 return BAD_VALUE;
2581 }
2582
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002583 // payload
Nick Kralevichb6b14232015-04-02 09:36:02 -07002584 void const* const buf = this->readInplace(pad_size(len));
Yi Kong91635562018-06-07 14:38:36 -07002585 if (buf == nullptr)
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002586 return BAD_VALUE;
2587
Yi Kong91635562018-06-07 14:38:36 -07002588 int* fds = nullptr;
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002589 if (fd_count) {
Christopher Tatee4e0ae82016-03-24 16:03:44 -07002590 fds = new (std::nothrow) int[fd_count];
2591 if (fds == nullptr) {
2592 ALOGE("read: failed to allocate requested %zu fds", fd_count);
2593 return BAD_VALUE;
2594 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002595 }
2596
2597 status_t err = NO_ERROR;
2598 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
Fabien Sanglardd84ff312016-10-21 10:58:26 -07002599 int fd = this->readFileDescriptor();
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002600 if (fd < 0 || ((fds[i] = fcntl(fd, F_DUPFD_CLOEXEC, 0)) < 0)) {
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002601 err = BAD_VALUE;
Nick Kralevichec9ec7d2016-12-17 19:47:27 -08002602 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 -07002603 i, fds[i], fd_count, strerror(fd < 0 ? -fd : errno));
2604 // Close all the file descriptors that were dup-ed.
2605 for (size_t j=0; j<i ;j++) {
2606 close(fds[j]);
2607 }
Jun Jiangabf8a2c2014-04-29 14:22:10 +08002608 }
Mathias Agopian98e71dd2010-02-11 17:30:52 -08002609 }
2610
2611 if (err == NO_ERROR) {
2612 err = val.unflatten(buf, len, fds, fd_count);
2613 }
2614
2615 if (fd_count) {
2616 delete [] fds;
2617 }
2618
2619 return err;
2620}
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002621
2622#ifdef BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002623const flat_binder_object* Parcel::readObject(bool nullMetaData) const
2624{
Frederick Mayled3c595a2022-05-09 23:02:54 +00002625 const auto* kernelFields = maybeKernelFields();
2626 if (kernelFields == nullptr) {
2627 return nullptr;
2628 }
2629
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002630 const size_t DPOS = mDataPos;
2631 if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
2632 const flat_binder_object* obj
2633 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
2634 mDataPos = DPOS + sizeof(flat_binder_object);
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002635 if (!nullMetaData && (obj->cookie == 0 && obj->binder == 0)) {
The Android Open Source Project5f78a482009-01-20 14:03:58 -08002636 // When transferring a NULL object, we don't write it into
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002637 // the object list, so we don't want to check for it when
2638 // reading.
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002639 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002640 return obj;
2641 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002642
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002643 // Ensure that this object is valid...
Frederick Mayled3c595a2022-05-09 23:02:54 +00002644 binder_size_t* const OBJS = kernelFields->mObjects;
2645 const size_t N = kernelFields->mObjectsSize;
2646 size_t opos = kernelFields->mNextObjectHint;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002647
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002648 if (N > 0) {
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002649 ALOGV("Parcel %p looking for obj at %zu, hint=%zu",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002650 this, DPOS, opos);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002651
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002652 // Start at the current hint position, looking for an object at
2653 // the current data position.
2654 if (opos < N) {
2655 while (opos < (N-1) && OBJS[opos] < DPOS) {
2656 opos++;
2657 }
2658 } else {
2659 opos = N-1;
2660 }
2661 if (OBJS[opos] == DPOS) {
2662 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002663 ALOGV("Parcel %p found obj %zu at index %zu with forward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002664 this, DPOS, opos);
Frederick Mayled3c595a2022-05-09 23:02:54 +00002665 kernelFields->mNextObjectHint = opos + 1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002666 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002667 return obj;
2668 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002669
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002670 // Look backwards for it...
2671 while (opos > 0 && OBJS[opos] > DPOS) {
2672 opos--;
2673 }
2674 if (OBJS[opos] == DPOS) {
2675 // Found it!
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002676 ALOGV("Parcel %p found obj %zu at index %zu with backward search",
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002677 this, DPOS, opos);
Frederick Mayled3c595a2022-05-09 23:02:54 +00002678 kernelFields->mNextObjectHint = opos + 1;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002679 ALOGV("readObject Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002680 return obj;
2681 }
2682 }
Steven Moreland3a667492023-06-02 21:41:39 +00002683 if (!mServiceFuzzing) {
2684 ALOGW("Attempt to read object from Parcel %p at offset %zu that is not in the object "
2685 "list",
2686 this, DPOS);
2687 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002688 }
Yi Kong91635562018-06-07 14:38:36 -07002689 return nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002690}
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002691#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002692
Frederick Mayle884d1a52024-09-30 17:42:45 -07002693void Parcel::closeFileDescriptors(size_t newObjectsSize) {
Frederick Mayle69a0c992022-05-26 20:38:39 +00002694 if (auto* kernelFields = maybeKernelFields()) {
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002695#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayle69a0c992022-05-26 20:38:39 +00002696 size_t i = kernelFields->mObjectsSize;
2697 if (i > 0) {
2698 // ALOGI("Closing file descriptors for %zu objects...", i);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002699 }
Frederick Mayle884d1a52024-09-30 17:42:45 -07002700 while (i > newObjectsSize) {
Frederick Mayle69a0c992022-05-26 20:38:39 +00002701 i--;
2702 const flat_binder_object* flat =
2703 reinterpret_cast<flat_binder_object*>(mData + kernelFields->mObjects[i]);
2704 if (flat->hdr.type == BINDER_TYPE_FD) {
2705 // ALOGI("Closing fd: %ld", flat->handle);
Steven Moreland02f736f2023-06-22 23:03:57 +00002706 // FDs from the kernel are always owned
2707 FdTagClose(flat->handle, this);
Frederick Mayle69a0c992022-05-26 20:38:39 +00002708 }
2709 }
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002710#else // BINDER_WITH_KERNEL_IPC
Frederick Mayle884d1a52024-09-30 17:42:45 -07002711 (void)newObjectsSize;
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002712 LOG_ALWAYS_FATAL("Binder kernel driver disabled at build time");
2713#endif // BINDER_WITH_KERNEL_IPC
Frederick Mayle69a0c992022-05-26 20:38:39 +00002714 } else if (auto* rpcFields = maybeRpcFields()) {
2715 rpcFields->mFds.reset();
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002716 }
2717}
2718
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002719uintptr_t Parcel::ipcData() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002720{
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002721 return reinterpret_cast<uintptr_t>(mData);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002722}
2723
2724size_t Parcel::ipcDataSize() const
2725{
2726 return (mDataSize > mDataPos ? mDataSize : mDataPos);
2727}
2728
Arve Hjønnevåg84e625a2014-01-28 20:12:59 -08002729uintptr_t Parcel::ipcObjects() const
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002730{
Frederick Mayled3c595a2022-05-09 23:02:54 +00002731 if (const auto* kernelFields = maybeKernelFields()) {
2732 return reinterpret_cast<uintptr_t>(kernelFields->mObjects);
2733 }
2734 return 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002735}
2736
2737size_t Parcel::ipcObjectsCount() const
2738{
Frederick Mayled3c595a2022-05-09 23:02:54 +00002739 if (const auto* kernelFields = maybeKernelFields()) {
2740 return kernelFields->mObjectsSize;
2741 }
2742 return 0;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002743}
2744
Frederick Mayled3c595a2022-05-09 23:02:54 +00002745void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize, const binder_size_t* objects,
2746 size_t objectsCount, release_func relFunc) {
Steven Moreland438cce82021-04-02 18:04:08 +00002747 // this code uses 'mOwner == nullptr' to understand whether it owns memory
2748 LOG_ALWAYS_FATAL_IF(relFunc == nullptr, "must provide cleanup function");
2749
Steven Morelandceed9bb2020-12-17 01:01:06 +00002750 freeData();
2751
Frederick Mayled3c595a2022-05-09 23:02:54 +00002752 auto* kernelFields = maybeKernelFields();
2753 LOG_ALWAYS_FATAL_IF(kernelFields == nullptr); // guaranteed by freeData.
2754
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002755 mData = const_cast<uint8_t*>(data);
2756 mDataSize = mDataCapacity = dataSize;
Frederick Mayled3c595a2022-05-09 23:02:54 +00002757 kernelFields->mObjects = const_cast<binder_size_t*>(objects);
2758 kernelFields->mObjectsSize = kernelFields->mObjectsCapacity = objectsCount;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002759 mOwner = relFunc;
Steven Morelandceed9bb2020-12-17 01:01:06 +00002760
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002761#ifdef BINDER_WITH_KERNEL_IPC
Steven Morelandceed9bb2020-12-17 01:01:06 +00002762 binder_size_t minOffset = 0;
Frederick Mayled3c595a2022-05-09 23:02:54 +00002763 for (size_t i = 0; i < kernelFields->mObjectsSize; i++) {
2764 binder_size_t offset = kernelFields->mObjects[i];
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002765 if (offset < minOffset) {
Dan Albert3bdc5b82014-11-20 11:50:23 -08002766 ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
Arve Hjønnevåg6f286112014-02-19 20:42:13 -08002767 __func__, (uint64_t)offset, (uint64_t)minOffset);
Frederick Mayled3c595a2022-05-09 23:02:54 +00002768 kernelFields->mObjectsSize = 0;
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002769 break;
2770 }
Martijn Coenen82c75312019-07-24 15:18:30 +02002771 const flat_binder_object* flat
2772 = reinterpret_cast<const flat_binder_object*>(mData + offset);
2773 uint32_t type = flat->hdr.type;
2774 if (!(type == BINDER_TYPE_BINDER || type == BINDER_TYPE_HANDLE ||
2775 type == BINDER_TYPE_FD)) {
2776 // We should never receive other types (eg BINDER_TYPE_FDA) as long as we don't support
2777 // them in libbinder. If we do receive them, it probably means a kernel bug; try to
Steven Morelandf2e0a952021-11-01 18:17:23 -07002778 // recover gracefully by clearing out the objects.
Martijn Coenen82c75312019-07-24 15:18:30 +02002779 android_errorWriteLog(0x534e4554, "135930648");
Steven Morelandf2e0a952021-11-01 18:17:23 -07002780 android_errorWriteLog(0x534e4554, "203847542");
Martijn Coenen82c75312019-07-24 15:18:30 +02002781 ALOGE("%s: unsupported type object (%" PRIu32 ") at offset %" PRIu64 "\n",
2782 __func__, type, (uint64_t)offset);
Steven Morelandf2e0a952021-11-01 18:17:23 -07002783
2784 // WARNING: callers of ipcSetDataReference need to make sure they
2785 // don't rely on mObjectsSize in their release_func.
Frederick Mayled3c595a2022-05-09 23:02:54 +00002786 kernelFields->mObjectsSize = 0;
Martijn Coenen82c75312019-07-24 15:18:30 +02002787 break;
2788 }
Steven Moreland02f736f2023-06-22 23:03:57 +00002789 if (type == BINDER_TYPE_FD) {
2790 // FDs from the kernel are always owned
Tomasz Wasilczyke97f3a82024-04-30 10:37:32 -07002791 FdTag(flat->handle, nullptr, this);
Steven Moreland02f736f2023-06-22 23:03:57 +00002792 }
Arve Hjønnevågf50b9ea2014-02-13 19:22:08 -08002793 minOffset = offset + sizeof(flat_binder_object);
2794 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002795 scanForFds();
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002796#else // BINDER_WITH_KERNEL_IPC
2797 LOG_ALWAYS_FATAL_IF(objectsCount != 0,
2798 "Non-zero objects count passed to Parcel with kernel driver disabled");
2799#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002800}
2801
Frederick Mayleffe9ac22022-06-30 02:07:36 +00002802status_t Parcel::rpcSetDataReference(
2803 const sp<RpcSession>& session, const uint8_t* data, size_t dataSize,
2804 const uint32_t* objectTable, size_t objectTableSize,
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -07002805 std::vector<std::variant<unique_fd, borrowed_fd>>&& ancillaryFds, release_func relFunc) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00002806 // this code uses 'mOwner == nullptr' to understand whether it owns memory
2807 LOG_ALWAYS_FATAL_IF(relFunc == nullptr, "must provide cleanup function");
2808
2809 LOG_ALWAYS_FATAL_IF(session == nullptr);
2810
Frederick Mayle694e9732022-07-15 00:24:58 +00002811 if (objectTableSize != ancillaryFds.size()) {
2812 ALOGE("objectTableSize=%zu ancillaryFds.size=%zu", objectTableSize, ancillaryFds.size());
2813 relFunc(data, dataSize, nullptr, 0);
2814 return BAD_VALUE;
2815 }
2816 for (size_t i = 0; i < objectTableSize; i++) {
2817 uint32_t minObjectEnd;
2818 if (__builtin_add_overflow(objectTable[i], sizeof(RpcFields::ObjectType), &minObjectEnd) ||
2819 minObjectEnd >= dataSize) {
2820 ALOGE("received out of range object position: %" PRIu32 " (parcel size is %zu)",
2821 objectTable[i], dataSize);
2822 relFunc(data, dataSize, nullptr, 0);
2823 return BAD_VALUE;
2824 }
2825 }
2826
Frederick Mayled3c595a2022-05-09 23:02:54 +00002827 freeData();
2828 markForRpc(session);
2829
Frederick Mayle69a0c992022-05-26 20:38:39 +00002830 auto* rpcFields = maybeRpcFields();
2831 LOG_ALWAYS_FATAL_IF(rpcFields == nullptr); // guaranteed by markForRpc.
2832
Frederick Mayled3c595a2022-05-09 23:02:54 +00002833 mData = const_cast<uint8_t*>(data);
2834 mDataSize = mDataCapacity = dataSize;
2835 mOwner = relFunc;
Frederick Mayle69a0c992022-05-26 20:38:39 +00002836
Frederick Mayle69a0c992022-05-26 20:38:39 +00002837 rpcFields->mObjectPositions.reserve(objectTableSize);
2838 for (size_t i = 0; i < objectTableSize; i++) {
2839 rpcFields->mObjectPositions.push_back(objectTable[i]);
2840 }
2841 if (!ancillaryFds.empty()) {
2842 rpcFields->mFds = std::make_unique<decltype(rpcFields->mFds)::element_type>();
Frederick Mayleffe9ac22022-06-30 02:07:36 +00002843 *rpcFields->mFds = std::move(ancillaryFds);
Frederick Mayle69a0c992022-05-26 20:38:39 +00002844 }
2845
2846 return OK;
Frederick Mayled3c595a2022-05-09 23:02:54 +00002847}
2848
Pawan Wagh7063b522022-09-28 18:52:26 +00002849void Parcel::print(std::ostream& to, uint32_t /*flags*/) const {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002850 to << "Parcel(";
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002851
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002852 if (errorCheck() != NO_ERROR) {
2853 const status_t err = errorCheck();
Colin Cross6f4f3ab2014-02-05 17:42:44 -08002854 to << "Error: " << (void*)(intptr_t)err << " \"" << strerror(-err) << "\"";
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002855 } else if (dataSize() > 0) {
2856 const uint8_t* DATA = data();
Pawan Wagh7063b522022-09-28 18:52:26 +00002857 to << "\t" << HexDump(DATA, dataSize());
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002858#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayled3c595a2022-05-09 23:02:54 +00002859 if (const auto* kernelFields = maybeKernelFields()) {
2860 const binder_size_t* OBJS = kernelFields->mObjects;
2861 const size_t N = objectsCount();
2862 for (size_t i = 0; i < N; i++) {
2863 const flat_binder_object* flat =
2864 reinterpret_cast<const flat_binder_object*>(DATA + OBJS[i]);
Pawan Wagh7063b522022-09-28 18:52:26 +00002865 to << "Object #" << i << " @ " << (void*)OBJS[i] << ": "
Frederick Mayled3c595a2022-05-09 23:02:54 +00002866 << TypeCode(flat->hdr.type & 0x7f7f7f00) << " = " << flat->binder;
2867 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002868 }
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002869#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002870 } else {
2871 to << "NULL";
2872 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002873
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002874 to << ")";
2875}
2876
2877void Parcel::releaseObjects()
2878{
Frederick Mayled3c595a2022-05-09 23:02:54 +00002879 auto* kernelFields = maybeKernelFields();
2880 if (kernelFields == nullptr) {
2881 return;
2882 }
2883
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002884#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayled3c595a2022-05-09 23:02:54 +00002885 size_t i = kernelFields->mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002886 if (i == 0) {
2887 return;
2888 }
2889 sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002890 uint8_t* const data = mData;
Frederick Mayled3c595a2022-05-09 23:02:54 +00002891 binder_size_t* const objects = kernelFields->mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002892 while (i > 0) {
2893 i--;
Frederick Mayled3c595a2022-05-09 23:02:54 +00002894 const flat_binder_object* flat = reinterpret_cast<flat_binder_object*>(data + objects[i]);
Steven Morelandc673f1f2021-10-07 18:23:35 -07002895 release_object(proc, *flat, this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002896 }
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002897#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002898}
2899
2900void Parcel::acquireObjects()
2901{
Frederick Mayled3c595a2022-05-09 23:02:54 +00002902 auto* kernelFields = maybeKernelFields();
2903 if (kernelFields == nullptr) {
2904 return;
2905 }
2906
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002907#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayled3c595a2022-05-09 23:02:54 +00002908 size_t i = kernelFields->mObjectsSize;
Martijn Coenen69390d42018-10-22 15:18:10 +02002909 if (i == 0) {
2910 return;
2911 }
2912 const sp<ProcessState> proc(ProcessState::self());
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002913 uint8_t* const data = mData;
Frederick Mayled3c595a2022-05-09 23:02:54 +00002914 binder_size_t* const objects = kernelFields->mObjects;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002915 while (i > 0) {
2916 i--;
Frederick Mayled3c595a2022-05-09 23:02:54 +00002917 const flat_binder_object* flat = reinterpret_cast<flat_binder_object*>(data + objects[i]);
Steven Morelandc673f1f2021-10-07 18:23:35 -07002918 acquire_object(proc, *flat, this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002919 }
Andrei Homescua9cca9c2022-05-03 04:48:01 +00002920#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002921}
2922
2923void Parcel::freeData()
2924{
2925 freeDataNoInit();
2926 initState();
2927}
2928
2929void Parcel::freeDataNoInit()
2930{
2931 if (mOwner) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002932 LOG_ALLOC("Parcel %p: freeing other owner data", this);
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07002933 //ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
Frederick Mayled3c595a2022-05-09 23:02:54 +00002934 auto* kernelFields = maybeKernelFields();
Frederick Mayle53b6ffe2022-07-15 20:14:01 +00002935 // Close FDs before freeing, otherwise they will leak for kernel binder.
Frederick Mayle884d1a52024-09-30 17:42:45 -07002936 closeFileDescriptors(/*newObjectsSize=*/0);
Frederick Mayle53b6ffe2022-07-15 20:14:01 +00002937 mOwner(mData, mDataSize, kernelFields ? kernelFields->mObjects : nullptr,
Frederick Mayled3c595a2022-05-09 23:02:54 +00002938 kernelFields ? kernelFields->mObjectsSize : 0);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002939 } else {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002940 LOG_ALLOC("Parcel %p: freeing allocated data", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002941 releaseObjects();
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002942 if (mData) {
2943 LOG_ALLOC("Parcel %p: freeing with %zu capacity", this, mDataCapacity);
Jeff Sharkey8994c182020-09-11 12:07:10 -06002944 gParcelGlobalAllocSize -= mDataCapacity;
2945 gParcelGlobalAllocCount--;
Steven Morelandf183fdd2020-10-27 00:12:12 +00002946 if (mDeallocZero) {
2947 zeroMemory(mData, mDataSize);
2948 }
Dianne Hackborn7e790af2014-11-11 12:22:53 -08002949 free(mData);
2950 }
Frederick Mayled3c595a2022-05-09 23:02:54 +00002951 auto* kernelFields = maybeKernelFields();
2952 if (kernelFields && kernelFields->mObjects) free(kernelFields->mObjects);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002953 }
2954}
2955
2956status_t Parcel::growData(size_t len)
2957{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002958 if (len > INT32_MAX) {
2959 // don't accept size_t values which may have come from an
2960 // inadvertent conversion from a negative int.
2961 return BAD_VALUE;
2962 }
2963
Steven Moreland62e48122024-10-02 01:00:23 +00002964 if (mDataPos > mDataSize) {
2965 // b/370831157 - this case used to abort. We also don't expect mDataPos < mDataSize, but
2966 // this would only waste a bit of memory, so it's okay.
2967 ALOGE("growData only expected at the end of a Parcel. pos: %zu, size: %zu, capacity: %zu",
2968 mDataPos, len, mDataCapacity);
2969 return BAD_VALUE;
2970 }
2971
Martijn Coenen93fe5182020-01-22 10:46:25 +01002972 if (len > SIZE_MAX - mDataSize) return NO_MEMORY; // overflow
2973 if (mDataSize + len > SIZE_MAX / 3) return NO_MEMORY; // overflow
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002974 size_t newSize = ((mDataSize+len)*3)/2;
2975 return (newSize <= mDataSize)
2976 ? (status_t) NO_MEMORY
Steven Moreland042ae822020-05-27 17:45:17 +00002977 : continueWrite(std::max(newSize, (size_t) 128));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002978}
2979
Steven Morelandf183fdd2020-10-27 00:12:12 +00002980static uint8_t* reallocZeroFree(uint8_t* data, size_t oldCapacity, size_t newCapacity, bool zero) {
2981 if (!zero) {
2982 return (uint8_t*)realloc(data, newCapacity);
2983 }
2984 uint8_t* newData = (uint8_t*)malloc(newCapacity);
2985 if (!newData) {
2986 return nullptr;
2987 }
2988
2989 memcpy(newData, data, std::min(oldCapacity, newCapacity));
2990 zeroMemory(data, oldCapacity);
2991 free(data);
2992 return newData;
2993}
2994
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07002995status_t Parcel::restartWrite(size_t desired)
2996{
Nick Kralevichb6b14232015-04-02 09:36:02 -07002997 if (desired > INT32_MAX) {
2998 // don't accept size_t values which may have come from an
2999 // inadvertent conversion from a negative int.
3000 return BAD_VALUE;
3001 }
3002
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003003 if (mOwner) {
3004 freeData();
3005 return continueWrite(desired);
3006 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003007
Steven Morelandc6b0dfa2024-03-05 09:10:02 +00003008 releaseObjects();
3009
Steven Morelandf183fdd2020-10-27 00:12:12 +00003010 uint8_t* data = reallocZeroFree(mData, mDataCapacity, desired, mDeallocZero);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003011 if (!data && desired > mDataCapacity) {
Steven Moreland47d7f1e2024-03-08 23:43:21 +00003012 LOG_ALWAYS_FATAL("out of memory");
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003013 mError = NO_MEMORY;
3014 return NO_MEMORY;
3015 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003016
Devin Moore4a0a55e2020-06-04 13:23:10 -07003017 if (data || desired == 0) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003018 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired);
Jeff Sharkey8994c182020-09-11 12:07:10 -06003019 if (mDataCapacity > desired) {
3020 gParcelGlobalAllocSize -= (mDataCapacity - desired);
3021 } else {
3022 gParcelGlobalAllocSize += (desired - mDataCapacity);
3023 }
3024
Colin Cross83ec65e2015-12-08 17:15:50 -08003025 if (!mData) {
3026 gParcelGlobalAllocCount++;
3027 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003028 mData = data;
3029 mDataCapacity = desired;
3030 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003031
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003032 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003033 ALOGV("restartWrite Setting data size of %p to %zu", this, mDataSize);
3034 ALOGV("restartWrite Setting data pos of %p to %zu", this, mDataPos);
3035
Frederick Mayled3c595a2022-05-09 23:02:54 +00003036 if (auto* kernelFields = maybeKernelFields()) {
3037 free(kernelFields->mObjects);
3038 kernelFields->mObjects = nullptr;
3039 kernelFields->mObjectsSize = kernelFields->mObjectsCapacity = 0;
3040 kernelFields->mNextObjectHint = 0;
3041 kernelFields->mObjectsSorted = false;
3042 kernelFields->mHasFds = false;
3043 kernelFields->mFdsKnown = true;
Frederick Mayle69a0c992022-05-26 20:38:39 +00003044 } else if (auto* rpcFields = maybeRpcFields()) {
3045 rpcFields->mObjectPositions.clear();
3046 rpcFields->mFds.reset();
Frederick Mayled3c595a2022-05-09 23:02:54 +00003047 }
Dianne Hackborn8938ed22011-09-28 23:19:47 -04003048 mAllowFds = true;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003049
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003050 return NO_ERROR;
3051}
3052
3053status_t Parcel::continueWrite(size_t desired)
3054{
Nick Kralevichb6b14232015-04-02 09:36:02 -07003055 if (desired > INT32_MAX) {
3056 // don't accept size_t values which may have come from an
3057 // inadvertent conversion from a negative int.
3058 return BAD_VALUE;
3059 }
3060
Frederick Mayled3c595a2022-05-09 23:02:54 +00003061 auto* kernelFields = maybeKernelFields();
Frederick Mayle69a0c992022-05-26 20:38:39 +00003062 auto* rpcFields = maybeRpcFields();
Frederick Mayled3c595a2022-05-09 23:02:54 +00003063
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003064 // If shrinking, first adjust for any objects that appear
3065 // after the new data size.
Frederick Mayle69a0c992022-05-26 20:38:39 +00003066 size_t objectsSize =
3067 kernelFields ? kernelFields->mObjectsSize : rpcFields->mObjectPositions.size();
3068 if (desired < mDataSize) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003069 if (desired == 0) {
3070 objectsSize = 0;
3071 } else {
Frederick Mayle69a0c992022-05-26 20:38:39 +00003072 if (kernelFields) {
Frederick Mayle884d1a52024-09-30 17:42:45 -07003073#ifdef BINDER_WITH_KERNEL_IPC
3074 validateReadData(mDataSize); // hack to sort the objects
Frederick Mayle69a0c992022-05-26 20:38:39 +00003075 while (objectsSize > 0) {
Frederick Mayle884d1a52024-09-30 17:42:45 -07003076 if (kernelFields->mObjects[objectsSize - 1] + sizeof(flat_binder_object) <=
3077 desired)
3078 break;
Frederick Mayle69a0c992022-05-26 20:38:39 +00003079 objectsSize--;
3080 }
Frederick Mayle884d1a52024-09-30 17:42:45 -07003081#endif // BINDER_WITH_KERNEL_IPC
Frederick Mayle69a0c992022-05-26 20:38:39 +00003082 } else {
3083 while (objectsSize > 0) {
Frederick Mayle884d1a52024-09-30 17:42:45 -07003084 // Object size varies by type.
3085 uint32_t pos = rpcFields->mObjectPositions[objectsSize - 1];
3086 size_t size = sizeof(RpcFields::ObjectType);
3087 uint32_t minObjectEnd;
3088 if (__builtin_add_overflow(pos, sizeof(RpcFields::ObjectType), &minObjectEnd) ||
3089 minObjectEnd > mDataSize) {
3090 return BAD_VALUE;
3091 }
3092 const auto type = *reinterpret_cast<const RpcFields::ObjectType*>(mData + pos);
3093 switch (type) {
3094 case RpcFields::TYPE_BINDER_NULL:
3095 break;
3096 case RpcFields::TYPE_BINDER:
3097 size += sizeof(uint64_t); // address
3098 break;
3099 case RpcFields::TYPE_NATIVE_FILE_DESCRIPTOR:
3100 size += sizeof(int32_t); // fd index
3101 break;
3102 }
3103
3104 if (pos + size <= desired) break;
Frederick Mayle69a0c992022-05-26 20:38:39 +00003105 objectsSize--;
3106 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003107 }
3108 }
3109 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003110
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003111 if (mOwner) {
3112 // If the size is going to zero, just release the owner's data.
3113 if (desired == 0) {
3114 freeData();
3115 return NO_ERROR;
3116 }
3117
3118 // If there is a different owner, we need to take
3119 // posession.
3120 uint8_t* data = (uint8_t*)malloc(desired);
3121 if (!data) {
3122 mError = NO_MEMORY;
3123 return NO_MEMORY;
3124 }
Yi Kong91635562018-06-07 14:38:36 -07003125 binder_size_t* objects = nullptr;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003126
Frederick Mayle69a0c992022-05-26 20:38:39 +00003127 if (kernelFields && objectsSize) {
Nick Kraleviche9881a32015-04-28 16:21:30 -07003128 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003129 if (!objects) {
Hyejin Kim3f727c02013-03-09 11:28:54 +09003130 free(data);
3131
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003132 mError = NO_MEMORY;
3133 return NO_MEMORY;
3134 }
3135
3136 // Little hack to only acquire references on objects
3137 // we will be keeping.
Frederick Mayled3c595a2022-05-09 23:02:54 +00003138 size_t oldObjectsSize = kernelFields->mObjectsSize;
3139 kernelFields->mObjectsSize = objectsSize;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003140 acquireObjects();
Frederick Mayled3c595a2022-05-09 23:02:54 +00003141 kernelFields->mObjectsSize = oldObjectsSize;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003142 }
Frederick Mayle69a0c992022-05-26 20:38:39 +00003143 if (rpcFields) {
3144 if (status_t status = truncateRpcObjects(objectsSize); status != OK) {
3145 free(data);
3146 return status;
3147 }
3148 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003149
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003150 if (mData) {
3151 memcpy(data, mData, mDataSize < desired ? mDataSize : desired);
3152 }
Frederick Mayle884d1a52024-09-30 17:42:45 -07003153#ifdef BINDER_WITH_KERNEL_IPC
Frederick Mayled3c595a2022-05-09 23:02:54 +00003154 if (objects && kernelFields && kernelFields->mObjects) {
3155 memcpy(objects, kernelFields->mObjects, objectsSize * sizeof(binder_size_t));
Frederick Mayle884d1a52024-09-30 17:42:45 -07003156 // All FDs are owned when `mOwner`, even when `cookie == 0`. When
3157 // we switch to `!mOwner`, we need to explicitly mark the FDs as
3158 // owned.
3159 for (size_t i = 0; i < objectsSize; i++) {
3160 flat_binder_object* flat = reinterpret_cast<flat_binder_object*>(data + objects[i]);
3161 if (flat->hdr.type == BINDER_TYPE_FD) {
3162 flat->cookie = 1;
3163 }
3164 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003165 }
Frederick Mayle53b6ffe2022-07-15 20:14:01 +00003166 // ALOGI("Freeing data ref of %p (pid=%d)", this, getpid());
3167 if (kernelFields) {
Frederick Mayle884d1a52024-09-30 17:42:45 -07003168 closeFileDescriptors(objectsSize);
Frederick Mayle53b6ffe2022-07-15 20:14:01 +00003169 }
Frederick Mayle884d1a52024-09-30 17:42:45 -07003170#endif // BINDER_WITH_KERNEL_IPC
Frederick Mayle53b6ffe2022-07-15 20:14:01 +00003171 mOwner(mData, mDataSize, kernelFields ? kernelFields->mObjects : nullptr,
Frederick Mayled3c595a2022-05-09 23:02:54 +00003172 kernelFields ? kernelFields->mObjectsSize : 0);
Yi Kong91635562018-06-07 14:38:36 -07003173 mOwner = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003174
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003175 LOG_ALLOC("Parcel %p: taking ownership of %zu capacity", this, desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003176 gParcelGlobalAllocSize += desired;
3177 gParcelGlobalAllocCount++;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003178
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003179 mData = data;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003180 mDataSize = (mDataSize < desired) ? mDataSize : desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003181 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003182 mDataCapacity = desired;
Frederick Mayled3c595a2022-05-09 23:02:54 +00003183 if (kernelFields) {
3184 kernelFields->mObjects = objects;
3185 kernelFields->mObjectsSize = kernelFields->mObjectsCapacity = objectsSize;
3186 kernelFields->mNextObjectHint = 0;
3187 kernelFields->mObjectsSorted = false;
3188 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003189
3190 } else if (mData) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00003191 if (kernelFields && objectsSize < kernelFields->mObjectsSize) {
Andrei Homescua9cca9c2022-05-03 04:48:01 +00003192#ifdef BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003193 // Need to release refs on any objects we are dropping.
3194 const sp<ProcessState> proc(ProcessState::self());
Frederick Mayled3c595a2022-05-09 23:02:54 +00003195 for (size_t i = objectsSize; i < kernelFields->mObjectsSize; i++) {
3196 const flat_binder_object* flat =
3197 reinterpret_cast<flat_binder_object*>(mData + kernelFields->mObjects[i]);
Christopher Ferrisdbaa22a2017-07-27 10:38:45 -07003198 if (flat->hdr.type == BINDER_TYPE_FD) {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003199 // will need to rescan because we may have lopped off the only FDs
Frederick Mayled3c595a2022-05-09 23:02:54 +00003200 kernelFields->mFdsKnown = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003201 }
Steven Morelandc673f1f2021-10-07 18:23:35 -07003202 release_object(proc, *flat, this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003203 }
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07003204
3205 if (objectsSize == 0) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00003206 free(kernelFields->mObjects);
3207 kernelFields->mObjects = nullptr;
3208 kernelFields->mObjectsCapacity = 0;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07003209 } else {
3210 binder_size_t* objects =
Frederick Mayled3c595a2022-05-09 23:02:54 +00003211 (binder_size_t*)realloc(kernelFields->mObjects,
3212 objectsSize * sizeof(binder_size_t));
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07003213 if (objects) {
Frederick Mayled3c595a2022-05-09 23:02:54 +00003214 kernelFields->mObjects = objects;
3215 kernelFields->mObjectsCapacity = objectsSize;
Michael Wachenschwanz6af27a82019-06-03 17:24:51 -07003216 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003217 }
Frederick Mayled3c595a2022-05-09 23:02:54 +00003218 kernelFields->mObjectsSize = objectsSize;
3219 kernelFields->mNextObjectHint = 0;
3220 kernelFields->mObjectsSorted = false;
Andrei Homescua9cca9c2022-05-03 04:48:01 +00003221#else // BINDER_WITH_KERNEL_IPC
3222 LOG_ALWAYS_FATAL("Non-zero numObjects for RPC Parcel");
3223#endif // BINDER_WITH_KERNEL_IPC
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003224 }
Frederick Mayle69a0c992022-05-26 20:38:39 +00003225 if (rpcFields) {
3226 if (status_t status = truncateRpcObjects(objectsSize); status != OK) {
3227 return status;
3228 }
3229 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003230
3231 // We own the data, so we can just do a realloc().
3232 if (desired > mDataCapacity) {
Steven Morelandf183fdd2020-10-27 00:12:12 +00003233 uint8_t* data = reallocZeroFree(mData, mDataCapacity, desired, mDeallocZero);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003234 if (data) {
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003235 LOG_ALLOC("Parcel %p: continue from %zu to %zu capacity", this, mDataCapacity,
3236 desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003237 gParcelGlobalAllocSize += desired;
3238 gParcelGlobalAllocSize -= mDataCapacity;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003239 mData = data;
3240 mDataCapacity = desired;
Ganesh Mahendranade89892017-09-28 16:56:03 +08003241 } else {
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003242 mError = NO_MEMORY;
3243 return NO_MEMORY;
3244 }
3245 } else {
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07003246 if (mDataSize > desired) {
3247 mDataSize = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003248 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
Dianne Hackborn97e2bcd2011-04-13 18:15:56 -07003249 }
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003250 if (mDataPos > desired) {
3251 mDataPos = desired;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003252 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003253 }
3254 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003255
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003256 } else {
3257 // This is the first data. Easy!
3258 uint8_t* data = (uint8_t*)malloc(desired);
3259 if (!data) {
3260 mError = NO_MEMORY;
3261 return NO_MEMORY;
3262 }
Hyejin Kim3f727c02013-03-09 11:28:54 +09003263
Frederick Mayled3c595a2022-05-09 23:02:54 +00003264 if (!(mDataCapacity == 0 &&
3265 (kernelFields == nullptr ||
3266 (kernelFields->mObjects == nullptr && kernelFields->mObjectsCapacity == 0)))) {
3267 ALOGE("continueWrite: %zu/%p/%zu/%zu", mDataCapacity,
3268 kernelFields ? kernelFields->mObjects : nullptr,
3269 kernelFields ? kernelFields->mObjectsCapacity : 0, desired);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003270 }
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003271
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003272 LOG_ALLOC("Parcel %p: allocating with %zu capacity", this, desired);
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003273 gParcelGlobalAllocSize += desired;
3274 gParcelGlobalAllocCount++;
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003275
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003276 mData = data;
3277 mDataSize = mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003278 ALOGV("continueWrite Setting data size of %p to %zu", this, mDataSize);
3279 ALOGV("continueWrite Setting data pos of %p to %zu", this, mDataPos);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003280 mDataCapacity = desired;
3281 }
3282
3283 return NO_ERROR;
3284}
3285
Frederick Mayle69a0c992022-05-26 20:38:39 +00003286status_t Parcel::truncateRpcObjects(size_t newObjectsSize) {
3287 auto* rpcFields = maybeRpcFields();
3288 if (newObjectsSize == 0) {
3289 rpcFields->mObjectPositions.clear();
3290 if (rpcFields->mFds) {
3291 rpcFields->mFds->clear();
3292 }
3293 return OK;
3294 }
3295 while (rpcFields->mObjectPositions.size() > newObjectsSize) {
3296 uint32_t pos = rpcFields->mObjectPositions.back();
Frederick Mayle884d1a52024-09-30 17:42:45 -07003297 uint32_t minObjectEnd;
3298 if (__builtin_add_overflow(pos, sizeof(RpcFields::ObjectType), &minObjectEnd) ||
3299 minObjectEnd > mDataSize) {
3300 return BAD_VALUE;
3301 }
Frederick Mayle69a0c992022-05-26 20:38:39 +00003302 const auto type = *reinterpret_cast<const RpcFields::ObjectType*>(mData + pos);
3303 if (type == RpcFields::TYPE_NATIVE_FILE_DESCRIPTOR) {
Frederick Mayle884d1a52024-09-30 17:42:45 -07003304 uint32_t objectEnd;
3305 if (__builtin_add_overflow(minObjectEnd, sizeof(int32_t), &objectEnd) ||
3306 objectEnd > mDataSize) {
3307 return BAD_VALUE;
3308 }
3309 const auto fdIndex = *reinterpret_cast<const int32_t*>(mData + minObjectEnd);
Frederick Mayle69a0c992022-05-26 20:38:39 +00003310 if (rpcFields->mFds == nullptr || fdIndex < 0 ||
3311 static_cast<size_t>(fdIndex) >= rpcFields->mFds->size()) {
3312 ALOGE("RPC Parcel contains invalid file descriptor index. index=%d fd_count=%zu",
3313 fdIndex, rpcFields->mFds ? rpcFields->mFds->size() : 0);
3314 return BAD_VALUE;
3315 }
3316 // In practice, this always removes the last element.
3317 rpcFields->mFds->erase(rpcFields->mFds->begin() + fdIndex);
3318 }
Frederick Mayle884d1a52024-09-30 17:42:45 -07003319 rpcFields->mObjectPositions.pop_back();
Frederick Mayle69a0c992022-05-26 20:38:39 +00003320 }
3321 return OK;
3322}
3323
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003324void Parcel::initState()
3325{
Dianne Hackborn7e790af2014-11-11 12:22:53 -08003326 LOG_ALLOC("Parcel %p: initState", this);
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003327 mError = NO_ERROR;
Yi Kong91635562018-06-07 14:38:36 -07003328 mData = nullptr;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003329 mDataSize = 0;
3330 mDataCapacity = 0;
3331 mDataPos = 0;
Mark Salyzynd4ecccf2014-05-30 16:35:57 -07003332 ALOGV("initState Setting data size of %p to %zu", this, mDataSize);
3333 ALOGV("initState Setting data pos of %p to %zu", this, mDataPos);
Frederick Mayled3c595a2022-05-09 23:02:54 +00003334 mVariantFields.emplace<KernelFields>();
Steven Moreland6e5a7752019-08-05 20:30:14 -07003335 mAllowFds = true;
Steven Morelandf183fdd2020-10-27 00:12:12 +00003336 mDeallocZero = false;
Yi Kong91635562018-06-07 14:38:36 -07003337 mOwner = nullptr;
Pawan Wagh104654a2022-11-15 21:18:42 +00003338 mEnforceNoDataAvail = true;
Steven Moreland3a667492023-06-02 21:41:39 +00003339 mServiceFuzzing = false;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003340}
3341
Bernardo Rufinobbbd88d2021-10-15 14:54:30 +01003342void Parcel::scanForFds() const {
Frederick Mayled3c595a2022-05-09 23:02:54 +00003343 auto* kernelFields = maybeKernelFields();
3344 if (kernelFields == nullptr) {
3345 return;
3346 }
3347 status_t status = hasFileDescriptorsInRange(0, dataSize(), &kernelFields->mHasFds);
Bernardo Rufinobbbd88d2021-10-15 14:54:30 +01003348 ALOGE_IF(status != NO_ERROR, "Error %d calling hasFileDescriptorsInRange()", status);
Frederick Mayled3c595a2022-05-09 23:02:54 +00003349 kernelFields->mFdsKnown = true;
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07003350}
3351
Andrei Homescua9cca9c2022-05-03 04:48:01 +00003352#ifdef BINDER_WITH_KERNEL_IPC
Dan Sandleraa5c2342015-04-10 10:08:45 -04003353size_t Parcel::getBlobAshmemSize() const
3354{
Adrian Roos6bb31142015-10-22 16:46:12 -07003355 // This used to return the size of all blobs that were written to ashmem, now we're returning
3356 // the ashmem currently referenced by this Parcel, which should be equivalent.
Steven Morelandc673f1f2021-10-07 18:23:35 -07003357 // TODO(b/202029388): Remove method once ABI can be changed.
3358 return getOpenAshmemSize();
Dan Sandleraa5c2342015-04-10 10:08:45 -04003359}
3360
Adrian Rooscbf37262015-10-22 16:12:53 -07003361size_t Parcel::getOpenAshmemSize() const
3362{
Frederick Mayled3c595a2022-05-09 23:02:54 +00003363 auto* kernelFields = maybeKernelFields();
3364 if (kernelFields == nullptr) {
3365 return 0;
3366 }
3367
Steven Morelandc673f1f2021-10-07 18:23:35 -07003368 size_t openAshmemSize = 0;
Tomasz Wasilczykbca8f942023-10-09 17:42:37 +00003369#ifndef BINDER_DISABLE_BLOB
Frederick Mayled3c595a2022-05-09 23:02:54 +00003370 for (size_t i = 0; i < kernelFields->mObjectsSize; i++) {
Steven Morelandc673f1f2021-10-07 18:23:35 -07003371 const flat_binder_object* flat =
Frederick Mayled3c595a2022-05-09 23:02:54 +00003372 reinterpret_cast<const flat_binder_object*>(mData + kernelFields->mObjects[i]);
Steven Morelandc673f1f2021-10-07 18:23:35 -07003373
3374 // cookie is compared against zero for historical reasons
3375 // > obj.cookie = takeOwnership ? 1 : 0;
3376 if (flat->hdr.type == BINDER_TYPE_FD && flat->cookie != 0 && ashmem_valid(flat->handle)) {
3377 int size = ashmem_get_size_region(flat->handle);
3378 if (__builtin_add_overflow(openAshmemSize, size, &openAshmemSize)) {
3379 ALOGE("Overflow when computing ashmem size.");
3380 return SIZE_MAX;
3381 }
3382 }
3383 }
Tomasz Wasilczykbca8f942023-10-09 17:42:37 +00003384#endif
Steven Morelandc673f1f2021-10-07 18:23:35 -07003385 return openAshmemSize;
Jeff Brown5707dbf2011-09-23 21:17:56 -07003386}
Andrei Homescua9cca9c2022-05-03 04:48:01 +00003387#endif // BINDER_WITH_KERNEL_IPC
Jeff Brown5707dbf2011-09-23 21:17:56 -07003388
3389// --- Parcel::Blob ---
3390
3391Parcel::Blob::Blob() :
Yi Kong91635562018-06-07 14:38:36 -07003392 mFd(-1), mData(nullptr), mSize(0), mMutable(false) {
Jeff Brown5707dbf2011-09-23 21:17:56 -07003393}
3394
3395Parcel::Blob::~Blob() {
3396 release();
3397}
3398
3399void Parcel::Blob::release() {
Jeff Brown13b16042014-11-11 16:44:25 -08003400 if (mFd != -1 && mData) {
Mike McTernan733610f2024-08-27 11:48:30 +01003401 if (::munmap(mData, mSize) == -1) {
3402 ALOGW("munmap() failed: %s", strerror(errno));
3403 }
Jeff Brown5707dbf2011-09-23 21:17:56 -07003404 }
3405 clear();
3406}
3407
Jeff Brown13b16042014-11-11 16:44:25 -08003408void Parcel::Blob::init(int fd, void* data, size_t size, bool isMutable) {
3409 mFd = fd;
Jeff Brown5707dbf2011-09-23 21:17:56 -07003410 mData = data;
3411 mSize = size;
Jeff Brown13b16042014-11-11 16:44:25 -08003412 mMutable = isMutable;
Jeff Brown5707dbf2011-09-23 21:17:56 -07003413}
3414
3415void Parcel::Blob::clear() {
Jeff Brown13b16042014-11-11 16:44:25 -08003416 mFd = -1;
Yi Kong91635562018-06-07 14:38:36 -07003417 mData = nullptr;
Jeff Brown5707dbf2011-09-23 21:17:56 -07003418 mSize = 0;
Jeff Brown13b16042014-11-11 16:44:25 -08003419 mMutable = false;
Jeff Brown5707dbf2011-09-23 21:17:56 -07003420}
3421
Steven Moreland61ff8492019-09-26 16:05:45 -07003422} // namespace android