blob: 5f75098f3514e64d9e23c40f4ef652b28335e3ec [file] [log] [blame]
Steven Moreland5d5ef7f2016-10-20 19:19:55 -07001/*
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 "ServiceManagement"
18
Jiyong Park3ab546c2017-04-06 20:28:07 +090019#include <android/dlext.h>
Yifan Hong9a22d1d2017-01-25 14:19:26 -080020#include <condition_variable>
21#include <dlfcn.h>
22#include <dirent.h>
Steven Moreland405d7612017-04-07 20:31:22 -070023#include <fstream>
24#include <pthread.h>
Yifan Hong9a22d1d2017-01-25 14:19:26 -080025#include <unistd.h>
26
27#include <mutex>
28#include <regex>
Yifan Hongbd0d8f72017-05-24 19:43:51 -070029#include <set>
Yifan Hong9a22d1d2017-01-25 14:19:26 -080030
Martijn Coenen12f04d92016-12-07 17:29:41 +010031#include <hidl/HidlBinderSupport.h>
Justin Yun1f048102017-12-01 15:30:08 +090032#include <hidl/HidlInternal.h>
Steven Moreland83cb4b32018-03-14 10:55:42 -070033#include <hidl/HidlTransportUtils.h>
Steven Moreland5d5ef7f2016-10-20 19:19:55 -070034#include <hidl/ServiceManagement.h>
Steven Moreland5d5ef7f2016-10-20 19:19:55 -070035#include <hidl/Status.h>
36
Steven Moreland337e6b62017-01-18 17:25:13 -080037#include <android-base/logging.h>
Steven Morelandc1cee2c2017-03-24 16:23:11 +000038#include <android-base/properties.h>
Justin Yun1f048102017-12-01 15:30:08 +090039#include <android-base/stringprintf.h>
Steven Moreland5d5ef7f2016-10-20 19:19:55 -070040#include <hwbinder/IPCThreadState.h>
41#include <hwbinder/Parcel.h>
Jerry Zhang86ae9992018-05-30 17:11:09 -070042#if !defined(__ANDROID_RECOVERY__)
Jiyong Parkba8ace12017-05-15 15:44:39 +090043#include <vndksupport/linker.h>
Jerry Zhang86ae9992018-05-30 17:11:09 -070044#endif
Steven Moreland5d5ef7f2016-10-20 19:19:55 -070045
Steven Moreland89909692018-05-30 14:11:19 -070046#include <android/hidl/manager/1.2/BnHwServiceManager.h>
47#include <android/hidl/manager/1.2/BpHwServiceManager.h>
48#include <android/hidl/manager/1.2/IServiceManager.h>
Steven Moreland5d5ef7f2016-10-20 19:19:55 -070049
Yifan Hong9a22d1d2017-01-25 14:19:26 -080050#define RE_COMPONENT "[a-zA-Z_][a-zA-Z_0-9]*"
51#define RE_PATH RE_COMPONENT "(?:[.]" RE_COMPONENT ")*"
52static const std::regex gLibraryFileNamePattern("(" RE_PATH "@[0-9]+[.][0-9]+)-impl(.*?).so");
53
Steven Morelandc1cee2c2017-03-24 16:23:11 +000054using android::base::WaitForProperty;
55
Steven Moreland2a2678e2017-07-21 18:07:38 -070056using IServiceManager1_0 = android::hidl::manager::V1_0::IServiceManager;
57using IServiceManager1_1 = android::hidl::manager::V1_1::IServiceManager;
Steven Moreland89909692018-05-30 14:11:19 -070058using IServiceManager1_2 = android::hidl::manager::V1_2::IServiceManager;
Steven Moreland337e6b62017-01-18 17:25:13 -080059using android::hidl::manager::V1_0::IServiceNotification;
Steven Moreland5d5ef7f2016-10-20 19:19:55 -070060
61namespace android {
62namespace hardware {
63
Steven Morelandc1cee2c2017-03-24 16:23:11 +000064static const char* kHwServicemanagerReadyProperty = "hwservicemanager.ready";
65
66void waitForHwServiceManager() {
67 using std::literals::chrono_literals::operator""s;
68
69 while (!WaitForProperty(kHwServicemanagerReadyProperty, "true", 1s)) {
70 LOG(WARNING) << "Waited for hwservicemanager.ready for a second, waiting another...";
71 }
72}
73
Steven Moreland405d7612017-04-07 20:31:22 -070074bool endsWith(const std::string &in, const std::string &suffix) {
75 return in.size() >= suffix.size() &&
76 in.substr(in.size() - suffix.size()) == suffix;
77}
Steven Moreland5d5ef7f2016-10-20 19:19:55 -070078
Steven Moreland405d7612017-04-07 20:31:22 -070079bool startsWith(const std::string &in, const std::string &prefix) {
80 return in.size() >= prefix.size() &&
81 in.substr(0, prefix.size()) == prefix;
82}
83
84std::string binaryName() {
85 std::ifstream ifs("/proc/self/cmdline");
86 std::string cmdline;
87 if (!ifs.is_open()) {
88 return "";
89 }
90 ifs >> cmdline;
91
Chih-Hung Hsieh41649d52017-08-03 14:27:21 -070092 size_t idx = cmdline.rfind('/');
Steven Moreland405d7612017-04-07 20:31:22 -070093 if (idx != std::string::npos) {
94 cmdline = cmdline.substr(idx + 1);
95 }
96
97 return cmdline;
98}
99
100void tryShortenProcessName(const std::string &packageName) {
101 std::string processName = binaryName();
102
103 if (!startsWith(processName, packageName)) {
104 return;
105 }
106
107 // e.x. android.hardware.module.foo@1.0 -> foo@1.0
108 size_t lastDot = packageName.rfind('.');
109 size_t secondDot = packageName.rfind('.', lastDot - 1);
110
111 if (secondDot == std::string::npos) {
112 return;
113 }
114
115 std::string newName = processName.substr(secondDot + 1,
116 16 /* TASK_COMM_LEN */ - 1);
117 ALOGI("Removing namespace from process name %s to %s.",
118 processName.c_str(), newName.c_str());
119
120 int rc = pthread_setname_np(pthread_self(), newName.c_str());
121 ALOGI_IF(rc != 0, "Removing namespace from process name %s failed.",
122 processName.c_str());
123}
124
125namespace details {
126
127void onRegistration(const std::string &packageName,
128 const std::string& /* interfaceName */,
129 const std::string& /* instanceName */) {
130 tryShortenProcessName(packageName);
131}
132
133} // details
134
Steven Moreland2a2678e2017-07-21 18:07:38 -0700135sp<IServiceManager1_0> defaultServiceManager() {
Steven Moreland89909692018-05-30 14:11:19 -0700136 return defaultServiceManager1_2();
Steven Moreland2a2678e2017-07-21 18:07:38 -0700137}
138sp<IServiceManager1_1> defaultServiceManager1_1() {
Steven Moreland89909692018-05-30 14:11:19 -0700139 return defaultServiceManager1_2();
140}
141sp<IServiceManager1_2> defaultServiceManager1_2() {
142 using android::hidl::manager::V1_2::BnHwServiceManager;
143 using android::hidl::manager::V1_2::BpHwServiceManager;
144
145 static std::mutex gDefaultServiceManagerLock;
146 static sp<IServiceManager1_2> gDefaultServiceManager;
147
Steven Moreland5d5ef7f2016-10-20 19:19:55 -0700148 {
Steven Moreland89909692018-05-30 14:11:19 -0700149 std::lock_guard<std::mutex> _l(gDefaultServiceManagerLock);
150 if (gDefaultServiceManager != nullptr) {
151 return gDefaultServiceManager;
Yifan Hong8fb656b2017-03-16 14:30:40 -0700152 }
Steven Moreland405d7612017-04-07 20:31:22 -0700153
Yifan Hong8fb656b2017-03-16 14:30:40 -0700154 if (access("/dev/hwbinder", F_OK|R_OK|W_OK) != 0) {
155 // HwBinder not available on this device or not accessible to
156 // this process.
157 return nullptr;
158 }
Steven Morelandc1cee2c2017-03-24 16:23:11 +0000159
160 waitForHwServiceManager();
161
Steven Moreland89909692018-05-30 14:11:19 -0700162 while (gDefaultServiceManager == nullptr) {
163 gDefaultServiceManager =
164 fromBinder<IServiceManager1_2, BpHwServiceManager, BnHwServiceManager>(
165 ProcessState::self()->getContextObject(nullptr));
166 if (gDefaultServiceManager == nullptr) {
Steven Morelandc1cee2c2017-03-24 16:23:11 +0000167 LOG(ERROR) << "Waited for hwservicemanager, but got nullptr.";
Steven Moreland5d5ef7f2016-10-20 19:19:55 -0700168 sleep(1);
Yifan Hong8fb656b2017-03-16 14:30:40 -0700169 }
Steven Moreland5d5ef7f2016-10-20 19:19:55 -0700170 }
171 }
172
Steven Moreland89909692018-05-30 14:11:19 -0700173 return gDefaultServiceManager;
Steven Moreland5d5ef7f2016-10-20 19:19:55 -0700174}
175
Steven Moreland0091c092017-01-20 23:15:18 +0000176std::vector<std::string> search(const std::string &path,
177 const std::string &prefix,
178 const std::string &suffix) {
179 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(path.c_str()), closedir);
180 if (!dir) return {};
181
182 std::vector<std::string> results{};
183
184 dirent* dp;
185 while ((dp = readdir(dir.get())) != nullptr) {
186 std::string name = dp->d_name;
187
Steven Moreland819c05d2017-04-06 17:24:22 -0700188 if (startsWith(name, prefix) &&
189 endsWith(name, suffix)) {
Steven Moreland0091c092017-01-20 23:15:18 +0000190 results.push_back(name);
191 }
192 }
193
194 return results;
195}
196
Yifan Hongbd0d8f72017-05-24 19:43:51 -0700197bool matchPackageName(const std::string& lib, std::string* matchedName, std::string* implName) {
Yifan Hong9a22d1d2017-01-25 14:19:26 -0800198 std::smatch match;
199 if (std::regex_match(lib, match, gLibraryFileNamePattern)) {
200 *matchedName = match.str(1) + "::I*";
Yifan Hongbd0d8f72017-05-24 19:43:51 -0700201 *implName = match.str(2);
Yifan Hong9a22d1d2017-01-25 14:19:26 -0800202 return true;
203 }
204 return false;
205}
206
Yifan Hong7f49f592017-02-03 15:11:44 -0800207static void registerReference(const hidl_string &interfaceName, const hidl_string &instanceName) {
Steven Moreland2a2678e2017-07-21 18:07:38 -0700208 sp<IServiceManager1_0> binderizedManager = defaultServiceManager();
Yifan Hong7f49f592017-02-03 15:11:44 -0800209 if (binderizedManager == nullptr) {
210 LOG(WARNING) << "Could not registerReference for "
211 << interfaceName << "/" << instanceName
212 << ": null binderized manager.";
213 return;
214 }
Martijn Coenenaf4aba52017-04-27 09:41:13 -0700215 auto ret = binderizedManager->registerPassthroughClient(interfaceName, instanceName);
Yifan Hong7f49f592017-02-03 15:11:44 -0800216 if (!ret.isOk()) {
217 LOG(WARNING) << "Could not registerReference for "
218 << interfaceName << "/" << instanceName
219 << ": " << ret.description();
Steven Moreland0aeaa782017-03-22 08:11:07 -0700220 return;
Yifan Hong7f49f592017-02-03 15:11:44 -0800221 }
Steven Morelande681aa52017-02-15 16:22:37 -0800222 LOG(VERBOSE) << "Successfully registerReference for "
223 << interfaceName << "/" << instanceName;
Yifan Hong7f49f592017-02-03 15:11:44 -0800224}
225
Yifan Hongbd0d8f72017-05-24 19:43:51 -0700226using InstanceDebugInfo = hidl::manager::V1_0::IServiceManager::InstanceDebugInfo;
227static inline void fetchPidsForPassthroughLibraries(
228 std::map<std::string, InstanceDebugInfo>* infos) {
229 static const std::string proc = "/proc/";
230
231 std::map<std::string, std::set<pid_t>> pids;
232 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(proc.c_str()), closedir);
233 if (!dir) return;
234 dirent* dp;
235 while ((dp = readdir(dir.get())) != nullptr) {
Stephen Hinesfd9ecee2017-09-27 18:52:52 -0700236 pid_t pid = strtoll(dp->d_name, nullptr, 0);
Yifan Hongbd0d8f72017-05-24 19:43:51 -0700237 if (pid == 0) continue;
238 std::string mapsPath = proc + dp->d_name + "/maps";
239 std::ifstream ifs{mapsPath};
240 if (!ifs.is_open()) continue;
241
242 for (std::string line; std::getline(ifs, line);) {
243 // The last token of line should look like
244 // vendor/lib64/hw/android.hardware.foo@1.0-impl-extra.so
245 // Use some simple filters to ignore bad lines before extracting libFileName
246 // and checking the key in info to make parsing faster.
247 if (line.back() != 'o') continue;
248 if (line.rfind('@') == std::string::npos) continue;
249
250 auto spacePos = line.rfind(' ');
251 if (spacePos == std::string::npos) continue;
252 auto libFileName = line.substr(spacePos + 1);
253 auto it = infos->find(libFileName);
254 if (it == infos->end()) continue;
255 pids[libFileName].insert(pid);
256 }
257 }
258 for (auto& pair : *infos) {
259 pair.second.clientPids =
260 std::vector<pid_t>{pids[pair.first].begin(), pids[pair.first].end()};
261 }
262}
263
Steven Moreland2a2678e2017-07-21 18:07:38 -0700264struct PassthroughServiceManager : IServiceManager1_1 {
Chih-Hung Hsieh41649d52017-08-03 14:27:21 -0700265 static void openLibs(
266 const std::string& fqName,
267 const std::function<bool /* continue */ (void* /* handle */, const std::string& /* lib */,
268 const std::string& /* sym */)>& eachLib) {
Steven Moreland819c05d2017-04-06 17:24:22 -0700269 //fqName looks like android.hardware.foo@1.0::IFoo
Steven Moreland519306f2017-06-06 17:14:12 -0700270 size_t idx = fqName.find("::");
Steven Moreland819c05d2017-04-06 17:24:22 -0700271
272 if (idx == std::string::npos ||
Steven Moreland519306f2017-06-06 17:14:12 -0700273 idx + strlen("::") + 1 >= fqName.size()) {
Steven Moreland337e6b62017-01-18 17:25:13 -0800274 LOG(ERROR) << "Invalid interface name passthrough lookup: " << fqName;
Steven Moreland519306f2017-06-06 17:14:12 -0700275 return;
Steven Moreland337e6b62017-01-18 17:25:13 -0800276 }
277
Steven Moreland519306f2017-06-06 17:14:12 -0700278 std::string packageAndVersion = fqName.substr(0, idx);
279 std::string ifaceName = fqName.substr(idx + strlen("::"));
Steven Moreland819c05d2017-04-06 17:24:22 -0700280
281 const std::string prefix = packageAndVersion + "-impl";
282 const std::string sym = "HIDL_FETCH_" + ifaceName;
Steven Moreland348802d2017-02-23 12:48:55 -0800283
Steven Moreland77f4c852017-10-12 11:05:53 -0700284 constexpr int dlMode = RTLD_LAZY;
285 void* handle = nullptr;
Steven Moreland337e6b62017-01-18 17:25:13 -0800286
Steven Morelanda29905c2017-03-01 10:42:35 -0800287 dlerror(); // clear
288
Justin Yun1f048102017-12-01 15:30:08 +0900289 static std::string halLibPathVndkSp = android::base::StringPrintf(
290 HAL_LIBRARY_PATH_VNDK_SP_FOR_VERSION, details::getVndkVersionStr().c_str());
Steven Morelandf7dea692017-07-14 12:49:28 -0700291 std::vector<std::string> paths = {HAL_LIBRARY_PATH_ODM, HAL_LIBRARY_PATH_VENDOR,
Justin Yun1f048102017-12-01 15:30:08 +0900292 halLibPathVndkSp, HAL_LIBRARY_PATH_SYSTEM};
Steven Moreland77f4c852017-10-12 11:05:53 -0700293
Steven Morelandf7dea692017-07-14 12:49:28 -0700294#ifdef LIBHIDL_TARGET_DEBUGGABLE
295 const char* env = std::getenv("TREBLE_TESTING_OVERRIDE");
296 const bool trebleTestingOverride = env && !strcmp(env, "true");
297 if (trebleTestingOverride) {
Steven Moreland77f4c852017-10-12 11:05:53 -0700298 // Load HAL implementations that are statically linked
299 handle = dlopen(nullptr, dlMode);
300 if (handle == nullptr) {
301 const char* error = dlerror();
302 LOG(ERROR) << "Failed to dlopen self: "
303 << (error == nullptr ? "unknown error" : error);
304 } else if (!eachLib(handle, "SELF", sym)) {
305 return;
306 }
307
Steven Morelandf7dea692017-07-14 12:49:28 -0700308 const char* vtsRootPath = std::getenv("VTS_ROOT_PATH");
309 if (vtsRootPath && strlen(vtsRootPath) > 0) {
310 const std::string halLibraryPathVtsOverride =
311 std::string(vtsRootPath) + HAL_LIBRARY_PATH_SYSTEM;
Steven Moreland77f4c852017-10-12 11:05:53 -0700312 paths.insert(paths.begin(), halLibraryPathVtsOverride);
Steven Morelandf7dea692017-07-14 12:49:28 -0700313 }
314 }
315#endif
Steven Moreland77f4c852017-10-12 11:05:53 -0700316
Steven Morelandf7dea692017-07-14 12:49:28 -0700317 for (const std::string& path : paths) {
Steven Moreland0091c092017-01-20 23:15:18 +0000318 std::vector<std::string> libs = search(path, prefix, ".so");
319
Steven Moreland0091c092017-01-20 23:15:18 +0000320 for (const std::string &lib : libs) {
Steven Moreland348802d2017-02-23 12:48:55 -0800321 const std::string fullPath = path + lib;
322
Steven Moreland65c00cb2017-10-12 11:35:22 -0700323 if (path == HAL_LIBRARY_PATH_SYSTEM) {
Jiyong Park3ab546c2017-04-06 20:28:07 +0900324 handle = dlopen(fullPath.c_str(), dlMode);
Steven Moreland65c00cb2017-10-12 11:35:22 -0700325 } else {
Jerry Zhang86ae9992018-05-30 17:11:09 -0700326#if !defined(__ANDROID_RECOVERY__)
Steven Moreland65c00cb2017-10-12 11:35:22 -0700327 handle = android_load_sphal_library(fullPath.c_str(), dlMode);
Jerry Zhang86ae9992018-05-30 17:11:09 -0700328#endif
Jiyong Park3ab546c2017-04-06 20:28:07 +0900329 }
330
Steven Moreland348802d2017-02-23 12:48:55 -0800331 if (handle == nullptr) {
332 const char* error = dlerror();
333 LOG(ERROR) << "Failed to dlopen " << lib << ": "
334 << (error == nullptr ? "unknown error" : error);
335 continue;
Steven Moreland0091c092017-01-20 23:15:18 +0000336 }
Steven Moreland348802d2017-02-23 12:48:55 -0800337
Steven Moreland519306f2017-06-06 17:14:12 -0700338 if (!eachLib(handle, lib, sym)) {
339 return;
Steven Moreland348802d2017-02-23 12:48:55 -0800340 }
Steven Moreland337e6b62017-01-18 17:25:13 -0800341 }
342 }
Steven Moreland519306f2017-06-06 17:14:12 -0700343 }
Steven Moreland337e6b62017-01-18 17:25:13 -0800344
Steven Moreland519306f2017-06-06 17:14:12 -0700345 Return<sp<IBase>> get(const hidl_string& fqName,
346 const hidl_string& name) override {
347 sp<IBase> ret = nullptr;
348
349 openLibs(fqName, [&](void* handle, const std::string &lib, const std::string &sym) {
350 IBase* (*generator)(const char* name);
351 *(void **)(&generator) = dlsym(handle, sym.c_str());
352 if(!generator) {
353 const char* error = dlerror();
354 LOG(ERROR) << "Passthrough lookup opened " << lib
355 << " but could not find symbol " << sym << ": "
356 << (error == nullptr ? "unknown error" : error);
357 dlclose(handle);
358 return true;
359 }
360
361 ret = (*generator)(name.c_str());
362
363 if (ret == nullptr) {
364 dlclose(handle);
365 return true; // this module doesn't provide this instance name
366 }
367
Steven Moreland83cb4b32018-03-14 10:55:42 -0700368 // Actual fqname might be a subclass.
369 // This assumption is tested in vts_treble_vintf_test
370 using ::android::hardware::details::getDescriptor;
371 std::string actualFqName = getDescriptor(ret.get());
372 CHECK(actualFqName.size() > 0);
373 registerReference(actualFqName, name);
Steven Moreland519306f2017-06-06 17:14:12 -0700374 return false;
375 });
376
377 return ret;
Steven Moreland337e6b62017-01-18 17:25:13 -0800378 }
379
Martijn Coenen67a02492017-03-06 13:04:48 +0100380 Return<bool> add(const hidl_string& /* name */,
Steven Moreland337e6b62017-01-18 17:25:13 -0800381 const sp<IBase>& /* service */) override {
382 LOG(FATAL) << "Cannot register services with passthrough service manager.";
383 return false;
384 }
385
Steven Morelandc601c5f2017-04-06 09:26:07 -0700386 Return<Transport> getTransport(const hidl_string& /* fqName */,
387 const hidl_string& /* name */) {
388 LOG(FATAL) << "Cannot getTransport with passthrough service manager.";
389 return Transport::EMPTY;
390 }
391
Yifan Hong705e5da2017-03-02 16:59:39 -0800392 Return<void> list(list_cb /* _hidl_cb */) override {
393 LOG(FATAL) << "Cannot list services with passthrough service manager.";
Steven Moreland337e6b62017-01-18 17:25:13 -0800394 return Void();
395 }
396 Return<void> listByInterface(const hidl_string& /* fqInstanceName */,
397 listByInterface_cb /* _hidl_cb */) override {
398 // TODO: add this functionality
399 LOG(FATAL) << "Cannot list services with passthrough service manager.";
400 return Void();
401 }
402
403 Return<bool> registerForNotifications(const hidl_string& /* fqName */,
404 const hidl_string& /* name */,
405 const sp<IServiceNotification>& /* callback */) override {
406 // This makes no sense.
407 LOG(FATAL) << "Cannot register for notifications with passthrough service manager.";
408 return false;
409 }
410
Yifan Hong705e5da2017-03-02 16:59:39 -0800411 Return<void> debugDump(debugDump_cb _hidl_cb) override {
412 using Arch = ::android::hidl::base::V1_0::DebugInfo::Architecture;
Yifan Hongbd0d8f72017-05-24 19:43:51 -0700413 using std::literals::string_literals::operator""s;
Justin Yun1f048102017-12-01 15:30:08 +0900414 static std::string halLibPathVndkSp64 = android::base::StringPrintf(
415 HAL_LIBRARY_PATH_VNDK_SP_64BIT_FOR_VERSION, details::getVndkVersionStr().c_str());
416 static std::string halLibPathVndkSp32 = android::base::StringPrintf(
417 HAL_LIBRARY_PATH_VNDK_SP_32BIT_FOR_VERSION, details::getVndkVersionStr().c_str());
Jiyong Park56eb1492017-08-04 16:16:13 +0900418 static std::vector<std::pair<Arch, std::vector<const char*>>> sAllPaths{
419 {Arch::IS_64BIT,
420 {HAL_LIBRARY_PATH_ODM_64BIT, HAL_LIBRARY_PATH_VENDOR_64BIT,
Justin Yun1f048102017-12-01 15:30:08 +0900421 halLibPathVndkSp64.c_str(), HAL_LIBRARY_PATH_SYSTEM_64BIT}},
Jiyong Park56eb1492017-08-04 16:16:13 +0900422 {Arch::IS_32BIT,
423 {HAL_LIBRARY_PATH_ODM_32BIT, HAL_LIBRARY_PATH_VENDOR_32BIT,
Justin Yun1f048102017-12-01 15:30:08 +0900424 halLibPathVndkSp32.c_str(), HAL_LIBRARY_PATH_SYSTEM_32BIT}}};
Yifan Hongbd0d8f72017-05-24 19:43:51 -0700425 std::map<std::string, InstanceDebugInfo> map;
Yifan Hong705e5da2017-03-02 16:59:39 -0800426 for (const auto &pair : sAllPaths) {
427 Arch arch = pair.first;
428 for (const auto &path : pair.second) {
429 std::vector<std::string> libs = search(path, "", ".so");
430 for (const std::string &lib : libs) {
431 std::string matchedName;
Yifan Hongbd0d8f72017-05-24 19:43:51 -0700432 std::string implName;
433 if (matchPackageName(lib, &matchedName, &implName)) {
434 std::string instanceName{"* ("s + path + ")"s};
435 if (!implName.empty()) instanceName += " ("s + implName + ")"s;
436 map.emplace(path + lib, InstanceDebugInfo{.interfaceName = matchedName,
437 .instanceName = instanceName,
438 .clientPids = {},
439 .arch = arch});
Yifan Hong705e5da2017-03-02 16:59:39 -0800440 }
441 }
442 }
443 }
Yifan Hongbd0d8f72017-05-24 19:43:51 -0700444 fetchPidsForPassthroughLibraries(&map);
445 hidl_vec<InstanceDebugInfo> vec;
446 vec.resize(map.size());
447 size_t idx = 0;
448 for (auto&& pair : map) {
449 vec[idx++] = std::move(pair.second);
450 }
Yifan Hong705e5da2017-03-02 16:59:39 -0800451 _hidl_cb(vec);
Yifan Hong7f49f592017-02-03 15:11:44 -0800452 return Void();
453 }
454
Martijn Coenenaf4aba52017-04-27 09:41:13 -0700455 Return<void> registerPassthroughClient(const hidl_string &, const hidl_string &) override {
Yifan Hong7f49f592017-02-03 15:11:44 -0800456 // This makes no sense.
457 LOG(FATAL) << "Cannot call registerPassthroughClient on passthrough service manager. "
458 << "Call it on defaultServiceManager() instead.";
Yifan Hong9a22d1d2017-01-25 14:19:26 -0800459 return Void();
460 }
461
Steven Moreland2a2678e2017-07-21 18:07:38 -0700462 Return<bool> unregisterForNotifications(const hidl_string& /* fqName */,
463 const hidl_string& /* name */,
464 const sp<IServiceNotification>& /* callback */) override {
465 // This makes no sense.
466 LOG(FATAL) << "Cannot unregister for notifications with passthrough service manager.";
467 return false;
468 }
469
Steven Moreland337e6b62017-01-18 17:25:13 -0800470};
471
Steven Moreland2a2678e2017-07-21 18:07:38 -0700472sp<IServiceManager1_0> getPassthroughServiceManager() {
473 return getPassthroughServiceManager1_1();
474}
475sp<IServiceManager1_1> getPassthroughServiceManager1_1() {
Steven Moreland337e6b62017-01-18 17:25:13 -0800476 static sp<PassthroughServiceManager> manager(new PassthroughServiceManager());
477 return manager;
478}
479
Steven Morelandcbefd352017-01-23 20:29:05 -0800480namespace details {
481
Steven Moreland519306f2017-06-06 17:14:12 -0700482void preloadPassthroughService(const std::string &descriptor) {
483 PassthroughServiceManager::openLibs(descriptor,
484 [&](void* /* handle */, const std::string& /* lib */, const std::string& /* sym */) {
485 // do nothing
486 return true; // open all libs
487 });
488}
489
Steven Morelandcbefd352017-01-23 20:29:05 -0800490struct Waiter : IServiceNotification {
Martijn Coenen773609e2017-10-24 09:57:53 +0200491 Waiter(const std::string& interface, const std::string& instanceName,
492 const sp<IServiceManager1_1>& sm) : mInterfaceName(interface),
493 mInstanceName(instanceName), mSm(sm) {
Martijn Coenene6cdfd32017-11-13 14:03:05 +0100494 }
495
496 void onFirstRef() override {
Martijn Coenenb88ae7f2017-10-24 11:45:41 +0200497 // If this process only has one binder thread, and we're calling wait() from
498 // that thread, it will block forever because we hung up the one and only
499 // binder thread on a condition variable that can only be notified by an
500 // incoming binder call.
Tobias Lindskog88e886f2018-01-05 10:32:43 +0100501 if (IPCThreadState::self()->isOnlyBinderThread()) {
Martijn Coenenb88ae7f2017-10-24 11:45:41 +0200502 LOG(WARNING) << "Can't efficiently wait for " << mInterfaceName << "/"
503 << mInstanceName << ", because we are called from "
504 << "the only binder thread in this process.";
505 return;
506 }
507
Martijn Coenene6cdfd32017-11-13 14:03:05 +0100508 Return<bool> ret = mSm->registerForNotifications(mInterfaceName, mInstanceName, this);
Martijn Coenen773609e2017-10-24 09:57:53 +0200509
510 if (!ret.isOk()) {
511 LOG(ERROR) << "Transport error, " << ret.description()
Martijn Coenene6cdfd32017-11-13 14:03:05 +0100512 << ", during notification registration for " << mInterfaceName << "/"
513 << mInstanceName << ".";
Martijn Coenen773609e2017-10-24 09:57:53 +0200514 return;
515 }
516
517 if (!ret) {
Martijn Coenene6cdfd32017-11-13 14:03:05 +0100518 LOG(ERROR) << "Could not register for notifications for " << mInterfaceName << "/"
519 << mInstanceName << ".";
Martijn Coenen773609e2017-10-24 09:57:53 +0200520 return;
521 }
522
523 mRegisteredForNotifications = true;
524 }
525
526 ~Waiter() {
Martijn Coenen3fa15c22018-02-10 11:30:00 +0100527 if (!mDoneCalled) {
528 LOG(FATAL)
529 << "Waiter still registered for notifications, call done() before dropping ref!";
Martijn Coenen773609e2017-10-24 09:57:53 +0200530 }
531 }
532
Steven Morelandcbefd352017-01-23 20:29:05 -0800533 Return<void> onRegistration(const hidl_string& /* fqName */,
534 const hidl_string& /* name */,
535 bool /* preexisting */) override {
536 std::unique_lock<std::mutex> lock(mMutex);
537 if (mRegistered) {
538 return Void();
539 }
540 mRegistered = true;
541 lock.unlock();
542
543 mCondition.notify_one();
544 return Void();
545 }
546
Steven Moreland0771d8a2018-05-09 13:29:14 -0700547 void wait(bool timeout) {
Steven Moreland49605102017-03-28 09:33:06 -0700548 using std::literals::chrono_literals::operator""s;
549
Martijn Coenen773609e2017-10-24 09:57:53 +0200550 if (!mRegisteredForNotifications) {
551 // As an alternative, just sleep for a second and return
552 LOG(WARNING) << "Waiting one second for " << mInterfaceName << "/" << mInstanceName;
553 sleep(1);
554 return;
555 }
556
Steven Morelandcbefd352017-01-23 20:29:05 -0800557 std::unique_lock<std::mutex> lock(mMutex);
Steven Moreland0771d8a2018-05-09 13:29:14 -0700558 do {
Steven Moreland49605102017-03-28 09:33:06 -0700559 mCondition.wait_for(lock, 1s, [this]{
560 return mRegistered;
561 });
562
563 if (mRegistered) {
564 break;
565 }
566
Steven Moreland0771d8a2018-05-09 13:29:14 -0700567 LOG(WARNING) << "Waited one second for " << mInterfaceName << "/" << mInstanceName;
568 } while (!timeout);
Steven Morelandcbefd352017-01-23 20:29:05 -0800569 }
570
Martijn Coenen773609e2017-10-24 09:57:53 +0200571 // Be careful when using this; after calling reset(), you must always try to retrieve
572 // the corresponding service before blocking on the waiter; otherwise, you might run
573 // into a race-condition where the service has just (re-)registered, you clear the state
574 // here, and subsequently calling waiter->wait() will block forever.
575 void reset() {
576 std::unique_lock<std::mutex> lock(mMutex);
577 mRegistered = false;
578 }
Martijn Coenen3fa15c22018-02-10 11:30:00 +0100579
580 // done() must be called before dropping the last strong ref to the Waiter, to make
581 // sure we can properly unregister with hwservicemanager.
582 void done() {
583 if (mRegisteredForNotifications) {
584 if (!mSm->unregisterForNotifications(mInterfaceName, mInstanceName, this)
585 .withDefault(false)) {
586 LOG(ERROR) << "Could not unregister service notification for " << mInterfaceName
587 << "/" << mInstanceName << ".";
588 } else {
589 mRegisteredForNotifications = false;
590 }
591 }
592 mDoneCalled = true;
593 }
594
595 private:
Martijn Coenen773609e2017-10-24 09:57:53 +0200596 const std::string mInterfaceName;
597 const std::string mInstanceName;
598 const sp<IServiceManager1_1>& mSm;
Steven Morelandcbefd352017-01-23 20:29:05 -0800599 std::mutex mMutex;
600 std::condition_variable mCondition;
601 bool mRegistered = false;
Martijn Coenen773609e2017-10-24 09:57:53 +0200602 bool mRegisteredForNotifications = false;
Martijn Coenen3fa15c22018-02-10 11:30:00 +0100603 bool mDoneCalled = false;
Steven Morelandcbefd352017-01-23 20:29:05 -0800604};
605
606void waitForHwService(
607 const std::string &interface, const std::string &instanceName) {
Martijn Coenen773609e2017-10-24 09:57:53 +0200608 sp<Waiter> waiter = new Waiter(interface, instanceName, defaultServiceManager1_1());
Steven Moreland0771d8a2018-05-09 13:29:14 -0700609 waiter->wait(false /* timeout */);
Martijn Coenen3fa15c22018-02-10 11:30:00 +0100610 waiter->done();
Martijn Coenen773609e2017-10-24 09:57:53 +0200611}
Steven Morelandcbefd352017-01-23 20:29:05 -0800612
Martijn Coenen773609e2017-10-24 09:57:53 +0200613// Prints relevant error/warning messages for error return values from
614// details::canCastInterface(), both transaction errors (!castReturn.isOk())
615// as well as actual cast failures (castReturn.isOk() && castReturn = false).
616// Returns 'true' if the error is non-fatal and it's useful to retry
617bool handleCastError(const Return<bool>& castReturn, const std::string& descriptor,
618 const std::string& instance) {
619 if (castReturn.isOk()) {
620 if (castReturn) {
621 details::logAlwaysFatal("Successful cast value passed into handleCastError.");
622 }
623 // This should never happen, and there's not really a point in retrying.
624 ALOGE("getService: received incompatible service (bug in hwservicemanager?) for "
625 "%s/%s.", descriptor.c_str(), instance.c_str());
626 return false;
Steven Morelandcbefd352017-01-23 20:29:05 -0800627 }
Martijn Coenen773609e2017-10-24 09:57:53 +0200628 if (castReturn.isDeadObject()) {
629 ALOGW("getService: found dead hwbinder service for %s/%s.", descriptor.c_str(),
630 instance.c_str());
631 return true;
Steven Morelandcbefd352017-01-23 20:29:05 -0800632 }
Martijn Coenen773609e2017-10-24 09:57:53 +0200633 // This can happen due to:
634 // 1) No SELinux permissions
635 // 2) Other transaction failure (no buffer space, kernel error)
636 // The first isn't recoverable, but the second is.
637 // Since we can't yet differentiate between the two, and clients depend
638 // on us not blocking in case 1), treat this as a fatal error for now.
639 ALOGW("getService: unable to call into hwbinder service for %s/%s.",
640 descriptor.c_str(), instance.c_str());
641 return false;
Steven Morelandcbefd352017-01-23 20:29:05 -0800642}
643
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200644sp<::android::hidl::base::V1_0::IBase> getRawServiceInternal(const std::string& descriptor,
645 const std::string& instance,
646 bool retry, bool getStub) {
647 using Transport = ::android::hidl::manager::V1_0::IServiceManager::Transport;
648 using ::android::hidl::base::V1_0::IBase;
649 using ::android::hidl::manager::V1_0::IServiceManager;
Martijn Coenen0e6f8ba2018-03-07 09:51:01 +0100650 sp<Waiter> waiter;
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200651
Martijn Coenen773609e2017-10-24 09:57:53 +0200652 const sp<IServiceManager1_1> sm = defaultServiceManager1_1();
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200653 if (sm == nullptr) {
654 ALOGE("getService: defaultServiceManager() is null");
655 return nullptr;
656 }
657
658 Return<Transport> transportRet = sm->getTransport(descriptor, instance);
659
660 if (!transportRet.isOk()) {
661 ALOGE("getService: defaultServiceManager()->getTransport returns %s",
662 transportRet.description().c_str());
663 return nullptr;
664 }
665 Transport transport = transportRet;
666 const bool vintfHwbinder = (transport == Transport::HWBINDER);
667 const bool vintfPassthru = (transport == Transport::PASSTHROUGH);
668
Steven Moreland757394b2017-12-13 14:09:24 -0800669#ifdef ENFORCE_VINTF_MANIFEST
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200670
671#ifdef LIBHIDL_TARGET_DEBUGGABLE
672 const char* env = std::getenv("TREBLE_TESTING_OVERRIDE");
673 const bool trebleTestingOverride = env && !strcmp(env, "true");
674 const bool vintfLegacy = (transport == Transport::EMPTY) && trebleTestingOverride;
Steven Moreland757394b2017-12-13 14:09:24 -0800675#else // ENFORCE_VINTF_MANIFEST but not LIBHIDL_TARGET_DEBUGGABLE
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200676 const bool trebleTestingOverride = false;
677 const bool vintfLegacy = false;
678#endif // LIBHIDL_TARGET_DEBUGGABLE
679
Steven Moreland757394b2017-12-13 14:09:24 -0800680#else // not ENFORCE_VINTF_MANIFEST
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200681 const char* env = std::getenv("TREBLE_TESTING_OVERRIDE");
682 const bool trebleTestingOverride = env && !strcmp(env, "true");
683 const bool vintfLegacy = (transport == Transport::EMPTY);
Steven Moreland757394b2017-12-13 14:09:24 -0800684#endif // ENFORCE_VINTF_MANIFEST
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200685
Steven Moreland3ae9bf92018-04-19 17:11:39 -0700686 for (int tries = 0; !getStub && (vintfHwbinder || vintfLegacy); tries++) {
687 if (waiter == nullptr && tries > 0) {
Martijn Coenen0e6f8ba2018-03-07 09:51:01 +0100688 waiter = new Waiter(descriptor, instance, sm);
689 }
Steven Moreland3ae9bf92018-04-19 17:11:39 -0700690 if (waiter != nullptr) {
691 waiter->reset(); // don't reorder this -- see comments on reset()
692 }
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200693 Return<sp<IBase>> ret = sm->get(descriptor, instance);
694 if (!ret.isOk()) {
695 ALOGE("getService: defaultServiceManager()->get returns %s for %s/%s.",
696 ret.description().c_str(), descriptor.c_str(), instance.c_str());
697 break;
698 }
699 sp<IBase> base = ret;
Martijn Coenen773609e2017-10-24 09:57:53 +0200700 if (base != nullptr) {
701 Return<bool> canCastRet =
702 details::canCastInterface(base.get(), descriptor.c_str(), true /* emitError */);
703
704 if (canCastRet.isOk() && canCastRet) {
Steven Moreland3ae9bf92018-04-19 17:11:39 -0700705 if (waiter != nullptr) {
706 waiter->done();
707 }
Martijn Coenen773609e2017-10-24 09:57:53 +0200708 return base; // still needs to be wrapped by Bp class.
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200709 }
Martijn Coenen773609e2017-10-24 09:57:53 +0200710
711 if (!handleCastError(canCastRet, descriptor, instance)) break;
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200712 }
713
Martijn Coenen773609e2017-10-24 09:57:53 +0200714 // In case of legacy or we were not asked to retry, don't.
715 if (vintfLegacy || !retry) break;
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200716
Steven Moreland3ae9bf92018-04-19 17:11:39 -0700717 if (waiter != nullptr) {
718 ALOGI("getService: Trying again for %s/%s...", descriptor.c_str(), instance.c_str());
Steven Moreland0771d8a2018-05-09 13:29:14 -0700719 waiter->wait(true /* timeout */);
Steven Moreland3ae9bf92018-04-19 17:11:39 -0700720 }
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200721 }
722
Martijn Coenen0e6f8ba2018-03-07 09:51:01 +0100723 if (waiter != nullptr) {
724 waiter->done();
725 }
Martijn Coenen3fa15c22018-02-10 11:30:00 +0100726
Martijn Coenen86c3abb2017-10-24 09:33:28 +0200727 if (getStub || vintfPassthru || vintfLegacy) {
728 const sp<IServiceManager> pm = getPassthroughServiceManager();
729 if (pm != nullptr) {
730 sp<IBase> base = pm->get(descriptor, instance).withDefault(nullptr);
731 if (!getStub || trebleTestingOverride) {
732 base = wrapPassthrough(base);
733 }
734 return base;
735 }
736 }
737
738 return nullptr;
739}
740
Bernhard Rosenkränzer0c28fd22018-06-04 16:01:47 +0200741} // namespace details
Steven Morelandcbefd352017-01-23 20:29:05 -0800742
Bernhard Rosenkränzer0c28fd22018-06-04 16:01:47 +0200743} // namespace hardware
744} // namespace android