Steven Moreland | 11a732a | 2017-03-07 17:44:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | */ |
Steven Moreland | 9211951 | 2018-08-08 20:01:21 +0000 | [diff] [blame] | 16 | #include <hidl/HidlBinderSupport.h> |
Steven Moreland | b917318 | 2018-08-08 20:06:08 +0000 | [diff] [blame] | 17 | #include <hidl/HidlTransportSupport.h> |
| 18 | #include <hidl/Static.h> |
Steven Moreland | 11a732a | 2017-03-07 17:44:17 -0800 | [diff] [blame] | 19 | |
Steven Moreland | b917318 | 2018-08-08 20:06:08 +0000 | [diff] [blame] | 20 | #include <android-base/logging.h> |
Yifan Hong | a8b6eab | 2017-11-22 22:15:39 -0800 | [diff] [blame] | 21 | #include <android/hidl/manager/1.0/IServiceManager.h> |
| 22 | |
Steven Moreland | 11a732a | 2017-03-07 17:44:17 -0800 | [diff] [blame] | 23 | namespace android { |
| 24 | namespace hardware { |
| 25 | |
Steven Moreland | 87d991b | 2018-12-12 15:56:33 -0800 | [diff] [blame] | 26 | using ::android::hidl::base::V1_0::IBase; |
| 27 | |
Steven Moreland | 11a732a | 2017-03-07 17:44:17 -0800 | [diff] [blame] | 28 | void configureRpcThreadpool(size_t maxThreads, bool callerWillJoin) { |
| 29 | // TODO(b/32756130) this should be transport-dependent |
| 30 | configureBinderRpcThreadpool(maxThreads, callerWillJoin); |
| 31 | } |
| 32 | void joinRpcThreadpool() { |
| 33 | // TODO(b/32756130) this should be transport-dependent |
| 34 | joinBinderRpcThreadpool(); |
| 35 | } |
| 36 | |
Martijn Coenen | 3f5ac4c | 2017-11-27 15:09:28 -0800 | [diff] [blame] | 37 | int setupTransportPolling() { |
| 38 | return setupBinderPolling(); |
| 39 | } |
| 40 | |
| 41 | status_t handleTransportPoll(int /*fd*/) { |
| 42 | return handleBinderPoll(); |
| 43 | } |
| 44 | |
Steven Moreland | 399533d | 2019-01-07 14:13:07 -0800 | [diff] [blame] | 45 | // TODO(b/122472540): only store one data item per object |
| 46 | template <typename V> |
| 47 | static void pruneMapLocked(ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, V>& map) { |
| 48 | using ::android::hidl::base::V1_0::IBase; |
| 49 | |
| 50 | std::vector<wp<IBase>> toDelete; |
| 51 | for (const auto& kv : map) { |
| 52 | if (kv.first.promote() == nullptr) { |
| 53 | toDelete.push_back(kv.first); |
| 54 | } |
| 55 | } |
| 56 | for (const auto& k : toDelete) { |
| 57 | map.eraseLocked(k); |
| 58 | } |
| 59 | } |
| 60 | |
Martijn Coenen | 81ef4da | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 61 | bool setMinSchedulerPolicy(const sp<::android::hidl::base::V1_0::IBase>& service, |
| 62 | int policy, int priority) { |
| 63 | if (service->isRemote()) { |
Steven Moreland | b917318 | 2018-08-08 20:06:08 +0000 | [diff] [blame] | 64 | LOG(ERROR) << "Can't set scheduler policy on remote service."; |
Martijn Coenen | 81ef4da | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 65 | return false; |
| 66 | } |
| 67 | |
Steven Moreland | b7798be | 2018-09-19 13:17:37 -0700 | [diff] [blame] | 68 | switch (policy) { |
| 69 | case SCHED_NORMAL: { |
| 70 | if (priority < -20 || priority > 19) { |
| 71 | LOG(ERROR) << "Invalid priority for SCHED_NORMAL: " << priority; |
| 72 | return false; |
| 73 | } |
| 74 | } break; |
| 75 | case SCHED_RR: |
| 76 | case SCHED_FIFO: { |
| 77 | if (priority < 1 || priority > 99) { |
| 78 | LOG(ERROR) << "Invalid priority for " << policy << " policy: " << priority; |
| 79 | return false; |
| 80 | } |
| 81 | } break; |
| 82 | default: { |
| 83 | LOG(ERROR) << "Invalid scheduler policy " << policy; |
| 84 | return false; |
| 85 | } |
Martijn Coenen | 81ef4da | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 86 | } |
| 87 | |
Steven Moreland | 49ccc38 | 2018-07-24 12:18:36 -0700 | [diff] [blame] | 88 | // Due to ABI considerations, IBase cannot have a destructor to clean this up. |
| 89 | // So, because this API is so infrequently used, (expected to be usually only |
| 90 | // one time for a process, but it can be more), we are cleaning it up here. |
| 91 | // TODO(b/37794345): if ever we update the HIDL ABI for launches in an Android |
| 92 | // release in the meta-version sense, we should remove this. |
| 93 | std::unique_lock<std::mutex> lock = details::gServicePrioMap.lock(); |
| 94 | |
Steven Moreland | 87d991b | 2018-12-12 15:56:33 -0800 | [diff] [blame] | 95 | std::vector<wp<IBase>> toDelete; |
Steven Moreland | 49ccc38 | 2018-07-24 12:18:36 -0700 | [diff] [blame] | 96 | for (const auto& kv : details::gServicePrioMap) { |
| 97 | if (kv.first.promote() == nullptr) { |
| 98 | toDelete.push_back(kv.first); |
| 99 | } |
| 100 | } |
| 101 | for (const auto& k : toDelete) { |
| 102 | details::gServicePrioMap.eraseLocked(k); |
| 103 | } |
| 104 | details::gServicePrioMap.setLocked(service, {policy, priority}); |
Martijn Coenen | 81ef4da | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 105 | |
| 106 | return true; |
Steven Moreland | 11a732a | 2017-03-07 17:44:17 -0800 | [diff] [blame] | 107 | } |
Martijn Coenen | 81ef4da | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 108 | |
Steven Moreland | 399533d | 2019-01-07 14:13:07 -0800 | [diff] [blame] | 109 | bool setRequestingSid(const sp<::android::hidl::base::V1_0::IBase>& service, bool requesting) { |
| 110 | if (service->isRemote()) { |
| 111 | ALOGE("Can't set requesting sid on remote service."); |
| 112 | return false; |
| 113 | } |
| 114 | |
| 115 | // Due to ABI considerations, IBase cannot have a destructor to clean this up. |
| 116 | // So, because this API is so infrequently used, (expected to be usually only |
| 117 | // one time for a process, but it can be more), we are cleaning it up here. |
| 118 | std::unique_lock<std::mutex> lock = details::gServiceSidMap.lock(); |
| 119 | pruneMapLocked(details::gServiceSidMap); |
| 120 | details::gServiceSidMap.setLocked(service, requesting); |
| 121 | |
| 122 | return true; |
| 123 | } |
| 124 | |
Steven Moreland | 87d991b | 2018-12-12 15:56:33 -0800 | [diff] [blame] | 125 | bool interfacesEqual(const sp<IBase>& left, const sp<IBase>& right) { |
| 126 | if (left == nullptr || right == nullptr || !left->isRemote() || !right->isRemote()) { |
| 127 | return left == right; |
| 128 | } |
| 129 | return getOrCreateCachedBinder(left.get()) == getOrCreateCachedBinder(right.get()); |
| 130 | } |
| 131 | |
Yifan Hong | 7a4b756 | 2017-11-20 11:36:51 -0800 | [diff] [blame] | 132 | namespace details { |
| 133 | int32_t getPidIfSharable() { |
| 134 | #if LIBHIDL_TARGET_DEBUGGABLE |
| 135 | return getpid(); |
| 136 | #else |
| 137 | using android::hidl::manager::V1_0::IServiceManager; |
Yifan Hong | a8b6eab | 2017-11-22 22:15:39 -0800 | [diff] [blame] | 138 | return static_cast<int32_t>(IServiceManager::PidConstant::NO_PID); |
Yifan Hong | 7a4b756 | 2017-11-20 11:36:51 -0800 | [diff] [blame] | 139 | #endif |
| 140 | } |
| 141 | } // namespace details |
| 142 | |
Steven Moreland | a15479f | 2017-10-06 16:06:26 -0700 | [diff] [blame] | 143 | } // namespace hardware |
| 144 | } // namespace android |