blob: 352ed78ad8212d7a47d9f551861916b7ee43623b [file] [log] [blame]
Yifan Hong7f97f442016-11-14 18:31:05 -08001/*
2 * Copyright (C) 2016 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 "HidlSupport"
18
19#include <hidl/HidlBinderSupport.h>
20
Steven Moreland9cbef742018-06-26 16:23:50 -070021#include <InternalStatic.h> // TODO(b/69122224): remove this include, for getOrCreateCachedBinder
Steven Moreland986fa092018-09-27 10:38:03 -070022#include <android/hidl/base/1.0/BpHwBase.h>
Steven Morelandb9173182018-08-08 20:06:08 +000023#include <hwbinder/IPCThreadState.h>
Steven Moreland9cbef742018-06-26 16:23:50 -070024
Yifan Hong777bef92017-02-01 15:50:36 -080025// C includes
Steven Moreland45f69c62018-06-06 16:28:29 -070026#include <inttypes.h>
Yifan Hong777bef92017-02-01 15:50:36 -080027#include <unistd.h>
28
29// C++ includes
30#include <fstream>
31#include <sstream>
32
Yifan Hong7f97f442016-11-14 18:31:05 -080033namespace android {
34namespace hardware {
35
Steven Moreland108d09d2017-05-05 16:15:38 -070036hidl_binder_death_recipient::hidl_binder_death_recipient(const sp<hidl_death_recipient> &recipient,
37 uint64_t cookie, const sp<::android::hidl::base::V1_0::IBase> &base) :
38 mRecipient(recipient), mCookie(cookie), mBase(base) {
39}
40
41void hidl_binder_death_recipient::binderDied(const wp<IBinder>& /*who*/) {
42 sp<hidl_death_recipient> recipient = mRecipient.promote();
Martijn Coenen25508802017-07-05 12:21:00 +020043 if (recipient != nullptr && mBase != nullptr) {
Steven Moreland108d09d2017-05-05 16:15:38 -070044 recipient->serviceDied(mCookie, mBase);
45 }
Martijn Coenen25508802017-07-05 12:21:00 +020046 mBase = nullptr;
Steven Moreland108d09d2017-05-05 16:15:38 -070047}
48
49wp<hidl_death_recipient> hidl_binder_death_recipient::getRecipient() {
50 return mRecipient;
51}
52
Nirav Atre564a8d22018-07-26 18:29:12 -070053const size_t hidl_handle::kOffsetOfNativeHandle = offsetof(hidl_handle, mHandle);
54static_assert(hidl_handle::kOffsetOfNativeHandle == 0, "wrong offset");
55
56status_t readEmbeddedFromParcel(const hidl_handle& /* handle */,
57 const Parcel &parcel, size_t parentHandle, size_t parentOffset) {
58 const native_handle_t *handle;
59 status_t _hidl_err = parcel.readNullableEmbeddedNativeHandle(
60 parentHandle,
61 parentOffset + hidl_handle::kOffsetOfNativeHandle,
62 &handle);
63
64 return _hidl_err;
65}
66
67status_t writeEmbeddedToParcel(const hidl_handle &handle,
68 Parcel *parcel, size_t parentHandle, size_t parentOffset) {
69 status_t _hidl_err = parcel->writeEmbeddedNativeHandle(
70 handle.getNativeHandle(),
71 parentHandle,
72 parentOffset + hidl_handle::kOffsetOfNativeHandle);
73
74 return _hidl_err;
75}
76
Martijn Coenen30791002016-12-01 15:40:46 +010077const size_t hidl_memory::kOffsetOfHandle = offsetof(hidl_memory, mHandle);
78const size_t hidl_memory::kOffsetOfName = offsetof(hidl_memory, mName);
Hridya Valsaraju6d4acb12017-03-03 14:24:43 -080079static_assert(hidl_memory::kOffsetOfHandle == 0, "wrong offset");
80static_assert(hidl_memory::kOffsetOfName == 24, "wrong offset");
Martijn Coenen30791002016-12-01 15:40:46 +010081
Martijn Coenen9d3eb352017-04-18 20:28:03 -070082status_t readEmbeddedFromParcel(const hidl_memory& memory,
Martijn Coenen30791002016-12-01 15:40:46 +010083 const Parcel &parcel, size_t parentHandle, size_t parentOffset) {
Nirav Atre564a8d22018-07-26 18:29:12 -070084 // TODO(b/111883309): Invoke readEmbeddedFromParcel(hidl_handle, ...).
Steven Moreland1f535a22017-01-06 19:25:49 -080085 const native_handle_t *handle;
86 ::android::status_t _hidl_err = parcel.readNullableEmbeddedNativeHandle(
Martijn Coenen30791002016-12-01 15:40:46 +010087 parentHandle,
Steven Moreland1f535a22017-01-06 19:25:49 -080088 parentOffset + hidl_memory::kOffsetOfHandle,
89 &handle);
Martijn Coenen30791002016-12-01 15:40:46 +010090
Steven Moreland1f535a22017-01-06 19:25:49 -080091 if (_hidl_err == ::android::OK) {
92 _hidl_err = readEmbeddedFromParcel(
Martijn Coenen9d3eb352017-04-18 20:28:03 -070093 memory.name(),
Steven Moreland1f535a22017-01-06 19:25:49 -080094 parcel,
95 parentHandle,
96 parentOffset + hidl_memory::kOffsetOfName);
Martijn Coenen30791002016-12-01 15:40:46 +010097 }
98
Steven Moreland45f69c62018-06-06 16:28:29 -070099 // hidl_memory's size is stored in uint64_t, but mapMemory's mmap will map
100 // size in size_t. If size is over SIZE_MAX, mapMemory could succeed
101 // but the mapped memory's actual size will be smaller than the reported size.
102 if (memory.size() > SIZE_MAX) {
103 ALOGE("Cannot use memory with %" PRId64 " bytes because it is too large.", memory.size());
104 android_errorWriteLog(0x534e4554, "79376389");
105 return BAD_VALUE;
106 }
107
Martijn Coenen30791002016-12-01 15:40:46 +0100108 return _hidl_err;
109}
110
111status_t writeEmbeddedToParcel(const hidl_memory &memory,
112 Parcel *parcel, size_t parentHandle, size_t parentOffset) {
Nirav Atre564a8d22018-07-26 18:29:12 -0700113 // TODO(b/111883309): Invoke writeEmbeddedToParcel(hidl_handle, ...).
Martijn Coenen30791002016-12-01 15:40:46 +0100114 status_t _hidl_err = parcel->writeEmbeddedNativeHandle(
115 memory.handle(),
116 parentHandle,
117 parentOffset + hidl_memory::kOffsetOfHandle);
118
119 if (_hidl_err == ::android::OK) {
120 _hidl_err = writeEmbeddedToParcel(
121 memory.name(),
122 parcel,
123 parentHandle,
124 parentOffset + hidl_memory::kOffsetOfName);
125 }
126
127 return _hidl_err;
128}
Yifan Hong7f97f442016-11-14 18:31:05 -0800129const size_t hidl_string::kOffsetOfBuffer = offsetof(hidl_string, mBuffer);
Hridya Valsaraju6d4acb12017-03-03 14:24:43 -0800130static_assert(hidl_string::kOffsetOfBuffer == 0, "wrong offset");
Yifan Hong7f97f442016-11-14 18:31:05 -0800131
Martijn Coenen9d3eb352017-04-18 20:28:03 -0700132status_t readEmbeddedFromParcel(const hidl_string &string ,
Yifan Hong7f97f442016-11-14 18:31:05 -0800133 const Parcel &parcel, size_t parentHandle, size_t parentOffset) {
Steven Moreland1f535a22017-01-06 19:25:49 -0800134 const void *out;
Martijn Coenen9d3eb352017-04-18 20:28:03 -0700135
136 status_t status = parcel.readEmbeddedBuffer(
137 string.size() + 1,
Yifan Hong7f97f442016-11-14 18:31:05 -0800138 nullptr /* buffer_handle */,
139 parentHandle,
Steven Moreland1f535a22017-01-06 19:25:49 -0800140 parentOffset + hidl_string::kOffsetOfBuffer,
141 &out);
Martijn Coenen9d3eb352017-04-18 20:28:03 -0700142
143 if (status != OK) {
144 return status;
145 }
146
147 // Always safe to access out[string.size()] because we read size+1 bytes
148 if (static_cast<const char *>(out)[string.size()] != '\0') {
149 ALOGE("Received unterminated hidl_string buffer.");
150 return BAD_VALUE;
151 }
152
153 return OK;
Yifan Hong7f97f442016-11-14 18:31:05 -0800154}
155
156status_t writeEmbeddedToParcel(const hidl_string &string,
157 Parcel *parcel, size_t parentHandle, size_t parentOffset) {
158 return parcel->writeEmbeddedBuffer(
159 string.c_str(),
160 string.size() + 1,
161 nullptr /* handle */,
162 parentHandle,
163 parentOffset + hidl_string::kOffsetOfBuffer);
164}
165
166android::status_t writeToParcel(const hidl_version &version, android::hardware::Parcel& parcel) {
167 return parcel.writeUint32(static_cast<uint32_t>(version.get_major()) << 16 | version.get_minor());
168}
169
170hidl_version* readFromParcel(const android::hardware::Parcel& parcel) {
171 uint32_t version;
172 android::status_t status = parcel.readUint32(&version);
173 if (status != OK) {
174 return nullptr;
175 } else {
176 return new hidl_version(version >> 16, version & 0xFFFF);
177 }
178}
179
180status_t readFromParcel(Status *s, const Parcel& parcel) {
181 int32_t exception;
Yifan Hong7f97f442016-11-14 18:31:05 -0800182 status_t status = parcel.readInt32(&exception);
183 if (status != OK) {
184 s->setFromStatusT(status);
185 return status;
186 }
187
Yifan Hong7f97f442016-11-14 18:31:05 -0800188 if (exception == Status::EX_NONE) {
189 *s = Status::ok();
190 return status;
191 }
192
193 // The remote threw an exception. Get the message back.
194 String16 message;
195 status = parcel.readString16(&message);
196 if (status != OK) {
197 s->setFromStatusT(status);
198 return status;
199 }
200
Steven Moreland72db40f2017-03-09 18:15:27 -0800201 s->setException(exception, String8(message));
Yifan Hong7f97f442016-11-14 18:31:05 -0800202
203 return status;
204}
205
206status_t writeToParcel(const Status &s, Parcel* parcel) {
207 // Something really bad has happened, and we're not going to even
208 // try returning rich error data.
209 if (s.exceptionCode() == Status::EX_TRANSACTION_FAILED) {
Steven Moreland872da2d2018-10-12 15:12:39 -0700210 return s.transactionError();
Yifan Hong7f97f442016-11-14 18:31:05 -0800211 }
212
213 status_t status = parcel->writeInt32(s.exceptionCode());
214 if (status != OK) { return status; }
215 if (s.exceptionCode() == Status::EX_NONE) {
216 // We have no more information to write.
217 return status;
218 }
219 status = parcel->writeString16(String16(s.exceptionMessage()));
Yifan Hong7f97f442016-11-14 18:31:05 -0800220 return status;
221}
222
Steven Moreland9cbef742018-06-26 16:23:50 -0700223sp<IBinder> getOrCreateCachedBinder(::android::hidl::base::V1_0::IBase* ifacePtr) {
Steven Moreland986fa092018-09-27 10:38:03 -0700224 if (ifacePtr == nullptr) {
225 return nullptr;
226 }
227
228 if (ifacePtr->isRemote()) {
229 using ::android::hidl::base::V1_0::BpHwBase;
230
231 BpHwBase* bpBase = static_cast<BpHwBase*>(ifacePtr);
232 BpHwRefBase* bpRefBase = static_cast<BpHwRefBase*>(bpBase);
233 return sp<IBinder>(bpRefBase->remote());
234 }
Steven Moreland9cbef742018-06-26 16:23:50 -0700235
236 std::string descriptor = details::getDescriptor(ifacePtr);
237 if (descriptor.empty()) {
238 // interfaceDescriptor fails
239 return nullptr;
240 }
241
242 // for get + set
Steven Morelandd0a754c2019-04-22 10:27:47 -0700243 std::unique_lock<std::mutex> _lock = details::gBnMap->lock();
Steven Moreland9cbef742018-06-26 16:23:50 -0700244
Steven Morelandd0a754c2019-04-22 10:27:47 -0700245 wp<BHwBinder> wBnObj = details::gBnMap->getLocked(ifacePtr, nullptr);
Steven Moreland9cbef742018-06-26 16:23:50 -0700246 sp<IBinder> sBnObj = wBnObj.promote();
247
248 if (sBnObj == nullptr) {
249 auto func = details::getBnConstructorMap().get(descriptor, nullptr);
250 if (!func) {
251 // TODO(b/69122224): remove this static variable when prebuilts updated
Steven Morelandd0a754c2019-04-22 10:27:47 -0700252 func = details::gBnConstructorMap->get(descriptor, nullptr);
Steven Moreland9cbef742018-06-26 16:23:50 -0700253 }
Steven Moreland9fd33872018-06-26 18:14:22 -0700254 LOG_ALWAYS_FATAL_IF(func == nullptr, "%s gBnConstructorMap returned null for %s", __func__,
255 descriptor.c_str());
Steven Moreland9cbef742018-06-26 16:23:50 -0700256
257 sBnObj = sp<IBinder>(func(static_cast<void*>(ifacePtr)));
Steven Moreland9fd33872018-06-26 18:14:22 -0700258 LOG_ALWAYS_FATAL_IF(sBnObj == nullptr, "%s Bn constructor function returned null for %s",
259 __func__, descriptor.c_str());
Steven Moreland9cbef742018-06-26 16:23:50 -0700260
Steven Morelandd0a754c2019-04-22 10:27:47 -0700261 details::gBnMap->setLocked(ifacePtr, static_cast<BHwBinder*>(sBnObj.get()));
Steven Moreland9cbef742018-06-26 16:23:50 -0700262 }
263
264 return sBnObj;
265}
266
Steven Moreland50815be2018-05-24 12:35:44 -0700267static bool gThreadPoolConfigured = false;
268
Steven Moreland6cf8fa22017-02-21 13:38:17 -0800269void configureBinderRpcThreadpool(size_t maxThreads, bool callerWillJoin) {
Steven Moreland50815be2018-05-24 12:35:44 -0700270 status_t ret = ProcessState::self()->setThreadPoolConfiguration(
271 maxThreads, callerWillJoin /*callerJoinsPool*/);
272 LOG_ALWAYS_FATAL_IF(ret != OK, "Could not setThreadPoolConfiguration: %d", ret);
273
274 gThreadPoolConfigured = true;
Steven Moreland6cf8fa22017-02-21 13:38:17 -0800275}
276
277void joinBinderRpcThreadpool() {
Steven Morelandcd329a82018-05-29 13:30:11 -0700278 LOG_ALWAYS_FATAL_IF(!gThreadPoolConfigured,
279 "HIDL joinRpcThreadpool without calling configureRpcThreadPool.");
Steven Moreland6cf8fa22017-02-21 13:38:17 -0800280 IPCThreadState::self()->joinThreadPool();
281}
282
Martijn Coenen3f5ac4c2017-11-27 15:09:28 -0800283int setupBinderPolling() {
284 int fd;
285 int err = IPCThreadState::self()->setupPolling(&fd);
286
Steven Morelandcd329a82018-05-29 13:30:11 -0700287 LOG_ALWAYS_FATAL_IF(err != OK, "Failed to setup binder polling: %d (%s)", err, strerror(err));
Martijn Coenen3f5ac4c2017-11-27 15:09:28 -0800288
289 return err == OK ? fd : -1;
290}
291
292status_t handleBinderPoll() {
293 return IPCThreadState::self()->handlePolledCommands();
294}
295
Steven Morelandd40af8e2018-05-01 16:33:21 -0700296void addPostCommandTask(const std::function<void(void)> task) {
297 IPCThreadState::self()->addPostCommandTask(task);
298}
299
Yifan Hong7f97f442016-11-14 18:31:05 -0800300} // namespace hardware
301} // namespace android