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 | 42bc6d5 | 2019-01-09 18:00:33 -0800 | [diff] [blame] | 45 | // TODO(b/122472540): only store one data item per object |
| 46 | template <typename V> |
| 47 | static void pruneMapLocked(ConcurrentMap<wp<IBase>, V>& map) { |
| 48 | std::vector<wp<IBase>> toDelete; |
| 49 | for (const auto& kv : map) { |
| 50 | if (kv.first.promote() == nullptr) { |
| 51 | toDelete.push_back(kv.first); |
| 52 | } |
| 53 | } |
| 54 | for (const auto& k : toDelete) { |
| 55 | map.eraseLocked(k); |
| 56 | } |
| 57 | } |
| 58 | |
Steven Moreland | 87d991b | 2018-12-12 15:56:33 -0800 | [diff] [blame] | 59 | bool setMinSchedulerPolicy(const sp<IBase>& service, int policy, int priority) { |
Martijn Coenen | 81ef4da | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 60 | if (service->isRemote()) { |
Steven Moreland | b917318 | 2018-08-08 20:06:08 +0000 | [diff] [blame] | 61 | LOG(ERROR) << "Can't set scheduler policy on remote service."; |
Martijn Coenen | 81ef4da | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 62 | return false; |
| 63 | } |
| 64 | |
Steven Moreland | b7798be | 2018-09-19 13:17:37 -0700 | [diff] [blame] | 65 | switch (policy) { |
| 66 | case SCHED_NORMAL: { |
| 67 | if (priority < -20 || priority > 19) { |
| 68 | LOG(ERROR) << "Invalid priority for SCHED_NORMAL: " << priority; |
| 69 | return false; |
| 70 | } |
| 71 | } break; |
| 72 | case SCHED_RR: |
| 73 | case SCHED_FIFO: { |
| 74 | if (priority < 1 || priority > 99) { |
| 75 | LOG(ERROR) << "Invalid priority for " << policy << " policy: " << priority; |
| 76 | return false; |
| 77 | } |
| 78 | } break; |
| 79 | default: { |
| 80 | LOG(ERROR) << "Invalid scheduler policy " << policy; |
| 81 | return false; |
| 82 | } |
Martijn Coenen | 81ef4da | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Steven Moreland | 49ccc38 | 2018-07-24 12:18:36 -0700 | [diff] [blame] | 85 | // Due to ABI considerations, IBase cannot have a destructor to clean this up. |
| 86 | // So, because this API is so infrequently used, (expected to be usually only |
| 87 | // one time for a process, but it can be more), we are cleaning it up here. |
Steven Moreland | d0a754c | 2019-04-22 10:27:47 -0700 | [diff] [blame] | 88 | std::unique_lock<std::mutex> lock = details::gServicePrioMap->lock(); |
| 89 | pruneMapLocked(details::gServicePrioMap.get()); |
| 90 | details::gServicePrioMap->setLocked(service, {policy, priority}); |
Steven Moreland | a13980d | 2019-01-07 14:13:07 -0800 | [diff] [blame] | 91 | |
| 92 | return true; |
| 93 | } |
| 94 | |
Steven Moreland | 42bc6d5 | 2019-01-09 18:00:33 -0800 | [diff] [blame] | 95 | bool setRequestingSid(const sp<IBase>& service, bool requesting) { |
| 96 | if (service->isRemote()) { |
| 97 | LOG(ERROR) << "Can't set requesting sid on remote service."; |
| 98 | return false; |
| 99 | } |
| 100 | |
| 101 | // Due to ABI considerations, IBase cannot have a destructor to clean this up. |
| 102 | // So, because this API is so infrequently used, (expected to be usually only |
| 103 | // one time for a process, but it can be more), we are cleaning it up here. |
Steven Moreland | d0a754c | 2019-04-22 10:27:47 -0700 | [diff] [blame] | 104 | std::unique_lock<std::mutex> lock = details::gServiceSidMap->lock(); |
| 105 | pruneMapLocked(details::gServiceSidMap.get()); |
| 106 | details::gServiceSidMap->setLocked(service, requesting); |
Steven Moreland | 42bc6d5 | 2019-01-09 18:00:33 -0800 | [diff] [blame] | 107 | |
| 108 | return true; |
| 109 | } |
| 110 | |
Steven Moreland | 87d991b | 2018-12-12 15:56:33 -0800 | [diff] [blame] | 111 | bool interfacesEqual(const sp<IBase>& left, const sp<IBase>& right) { |
| 112 | if (left == nullptr || right == nullptr || !left->isRemote() || !right->isRemote()) { |
| 113 | return left == right; |
| 114 | } |
| 115 | return getOrCreateCachedBinder(left.get()) == getOrCreateCachedBinder(right.get()); |
| 116 | } |
| 117 | |
Yifan Hong | 7a4b756 | 2017-11-20 11:36:51 -0800 | [diff] [blame] | 118 | namespace details { |
| 119 | int32_t getPidIfSharable() { |
| 120 | #if LIBHIDL_TARGET_DEBUGGABLE |
| 121 | return getpid(); |
| 122 | #else |
| 123 | using android::hidl::manager::V1_0::IServiceManager; |
Yifan Hong | a8b6eab | 2017-11-22 22:15:39 -0800 | [diff] [blame] | 124 | return static_cast<int32_t>(IServiceManager::PidConstant::NO_PID); |
Yifan Hong | 7a4b756 | 2017-11-20 11:36:51 -0800 | [diff] [blame] | 125 | #endif |
| 126 | } |
| 127 | } // namespace details |
| 128 | |
Steven Moreland | a15479f | 2017-10-06 16:06:26 -0700 | [diff] [blame] | 129 | } // namespace hardware |
| 130 | } // namespace android |