blob: e645cd0f00626d1edf9e4d7cfe41c3e6a31cdfb5 [file] [log] [blame]
Steven Moreland11a732a2017-03-07 17:44:17 -08001/*
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 Morelandb9173182018-08-08 20:06:08 +000016#include <hidl/HidlTransportSupport.h>
Steven Moreland23c28f52019-09-18 12:04:22 -070017
18#include <hidl/HidlBinderSupport.h>
19#include "InternalStatic.h"
Steven Moreland11a732a2017-03-07 17:44:17 -080020
Steven Morelandb9173182018-08-08 20:06:08 +000021#include <android-base/logging.h>
Yifan Honga8b6eab2017-11-22 22:15:39 -080022#include <android/hidl/manager/1.0/IServiceManager.h>
23
Steven Moreland23c28f52019-09-18 12:04:22 -070024#include <linux/sched.h>
25
Steven Moreland11a732a2017-03-07 17:44:17 -080026namespace android {
27namespace hardware {
28
Steven Moreland87d991b2018-12-12 15:56:33 -080029using ::android::hidl::base::V1_0::IBase;
30
Steven Moreland11a732a2017-03-07 17:44:17 -080031void configureRpcThreadpool(size_t maxThreads, bool callerWillJoin) {
32 // TODO(b/32756130) this should be transport-dependent
33 configureBinderRpcThreadpool(maxThreads, callerWillJoin);
34}
35void joinRpcThreadpool() {
36 // TODO(b/32756130) this should be transport-dependent
37 joinBinderRpcThreadpool();
38}
39
Martijn Coenen3f5ac4c2017-11-27 15:09:28 -080040int setupTransportPolling() {
41 return setupBinderPolling();
42}
43
44status_t handleTransportPoll(int /*fd*/) {
45 return handleBinderPoll();
46}
47
Steven Moreland083a1d32019-01-09 18:00:33 -080048// TODO(b/122472540): only store one data item per object
49template <typename V>
50static void pruneMapLocked(ConcurrentMap<wp<IBase>, V>& map) {
51 std::vector<wp<IBase>> toDelete;
52 for (const auto& kv : map) {
53 if (kv.first.promote() == nullptr) {
54 toDelete.push_back(kv.first);
55 }
56 }
57 for (const auto& k : toDelete) {
58 map.eraseLocked(k);
59 }
60}
61
Steven Moreland87d991b2018-12-12 15:56:33 -080062bool setMinSchedulerPolicy(const sp<IBase>& service, int policy, int priority) {
Martijn Coenen81ef4da2017-04-21 16:21:31 -070063 if (service->isRemote()) {
Steven Morelandb9173182018-08-08 20:06:08 +000064 LOG(ERROR) << "Can't set scheduler policy on remote service.";
Martijn Coenen81ef4da2017-04-21 16:21:31 -070065 return false;
66 }
67
Steven Morelandb7798be2018-09-19 13:17:37 -070068 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 Coenen81ef4da2017-04-21 16:21:31 -070086 }
87
Steven Moreland49ccc382018-07-24 12:18:36 -070088 // 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.
Steven Morelandb1c7d062019-04-22 10:27:47 -070091 std::unique_lock<std::mutex> lock = details::gServicePrioMap->lock();
92 pruneMapLocked(details::gServicePrioMap.get());
93 details::gServicePrioMap->setLocked(service, {policy, priority});
Martijn Coenen81ef4da2017-04-21 16:21:31 -070094
95 return true;
Steven Moreland11a732a2017-03-07 17:44:17 -080096}
Martijn Coenen81ef4da2017-04-21 16:21:31 -070097
Steven Moreland23c28f52019-09-18 12:04:22 -070098SchedPrio getMinSchedulerPolicy(const sp<IBase>& service) {
99 return details::gServicePrioMap->get(service, {SCHED_NORMAL, 0});
100}
101
Steven Moreland083a1d32019-01-09 18:00:33 -0800102bool setRequestingSid(const sp<IBase>& service, bool requesting) {
103 if (service->isRemote()) {
104 LOG(ERROR) << "Can't set requesting sid on remote service.";
105 return false;
106 }
107
108 // Due to ABI considerations, IBase cannot have a destructor to clean this up.
109 // So, because this API is so infrequently used, (expected to be usually only
110 // one time for a process, but it can be more), we are cleaning it up here.
Steven Morelandb1c7d062019-04-22 10:27:47 -0700111 std::unique_lock<std::mutex> lock = details::gServiceSidMap->lock();
112 pruneMapLocked(details::gServiceSidMap.get());
113 details::gServiceSidMap->setLocked(service, requesting);
Steven Moreland083a1d32019-01-09 18:00:33 -0800114
115 return true;
116}
117
Steven Moreland23c28f52019-09-18 12:04:22 -0700118bool getRequestingSid(const sp<IBase>& service) {
119 return details::gServiceSidMap->get(service.get(), false);
120}
121
Steven Moreland87d991b2018-12-12 15:56:33 -0800122bool interfacesEqual(const sp<IBase>& left, const sp<IBase>& right) {
123 if (left == nullptr || right == nullptr || !left->isRemote() || !right->isRemote()) {
124 return left == right;
125 }
126 return getOrCreateCachedBinder(left.get()) == getOrCreateCachedBinder(right.get());
127}
128
Yifan Hong7a4b7562017-11-20 11:36:51 -0800129namespace details {
130int32_t getPidIfSharable() {
131#if LIBHIDL_TARGET_DEBUGGABLE
132 return getpid();
133#else
134 using android::hidl::manager::V1_0::IServiceManager;
Yifan Honga8b6eab2017-11-22 22:15:39 -0800135 return static_cast<int32_t>(IServiceManager::PidConstant::NO_PID);
Yifan Hong7a4b7562017-11-20 11:36:51 -0800136#endif
137}
138} // namespace details
139
Steven Morelanda15479f2017-10-06 16:06:26 -0700140} // namespace hardware
141} // namespace android