blob: e38a664ad87788ea89777a2226b9003d0baa153f [file] [log] [blame]
Steven Moreland337c3ae2016-11-22 13:37:32 -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 "HidlInternal"
18
19#include <hidl/HidlInternal.h>
20
21#include <android-base/logging.h>
Justin Yun1f048102017-12-01 15:30:08 +090022#include <android-base/properties.h>
23#include <android-base/stringprintf.h>
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +000024
25#ifdef LIBHIDL_TARGET_DEBUGGABLE
26#include <dirent.h>
27#include <dlfcn.h>
Ryan Campbell21d59d92017-10-19 14:12:49 -070028#include <link.h>
Ryan Campbell69aff752017-07-27 13:49:46 -070029#include <utils/misc.h>
Ryan Campbell21d59d92017-10-19 14:12:49 -070030#include <regex>
Ryan Campbell69aff752017-07-27 13:49:46 -070031
32extern "C" __attribute__((weak)) void __sanitizer_cov_dump();
Logan Chien73fe94d2018-10-23 13:44:45 +080033
34const char kGcovPrefixEnvVar[] = "GCOV_PREFIX";
35const char kGcovPrefixOverrideEnvVar[] = "GCOV_PREFIX_OVERRIDE";
36const char kGcovPrefixPath[] = "/data/misc/trace/";
37const char kSysPropHalCoverage[] = "hal.coverage.enable";
Zhuoyao Zhange8f82592018-02-01 16:18:15 -080038#if defined(__LP64__)
Logan Chien73fe94d2018-10-23 13:44:45 +080039const char kSysPropInstrumentationPath[] = "hal.instrumentation.lib.path.64";
Zhuoyao Zhange8f82592018-02-01 16:18:15 -080040#else
Logan Chien73fe94d2018-10-23 13:44:45 +080041const char kSysPropInstrumentationPath[] = "hal.instrumentation.lib.path.32";
Zhuoyao Zhange8f82592018-02-01 16:18:15 -080042#endif
Logan Chien73fe94d2018-10-23 13:44:45 +080043#endif // LIBHIDL_TARGET_DEBUGGABLE
Steven Moreland337c3ae2016-11-22 13:37:32 -080044
45namespace android {
46namespace hardware {
47namespace details {
48
Ryan Campbell69aff752017-07-27 13:49:46 -070049void logAlwaysFatal(const char* message) {
Steven Moreland337c3ae2016-11-22 13:37:32 -080050 LOG(FATAL) << message;
51}
52
Justin Yun1f048102017-12-01 15:30:08 +090053std::string getVndkVersionStr() {
Jooyung Han0268c932020-04-07 16:21:35 +090054 static std::string vndkVersion = base::GetProperty("ro.vndk.version", "");
Justin Yun1f048102017-12-01 15:30:08 +090055 return vndkVersion;
56}
57
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +000058// ----------------------------------------------------------------------
59// HidlInstrumentor implementation.
Steven Moreland384792b2017-06-19 18:24:40 -070060HidlInstrumentor::HidlInstrumentor(const std::string& package, const std::string& interface)
61 : mEnableInstrumentation(false),
62 mInstrumentationLibPackage(package),
63 mInterfaceName(interface) {
Ryan Campbell69aff752017-07-27 13:49:46 -070064#ifdef LIBHIDL_TARGET_DEBUGGABLE
Zhuoyao Zhange8f82592018-02-01 16:18:15 -080065 configureInstrumentation(false);
Ryan Campbell69aff752017-07-27 13:49:46 -070066 if (__sanitizer_cov_dump != nullptr) {
67 ::android::add_sysprop_change_callback(
Steven Moreland2056cf32019-09-17 17:41:02 -070068 []() {
69 bool enableCoverage = base::GetBoolProperty(kSysPropHalCoverage, false);
70 if (enableCoverage) {
71 __sanitizer_cov_dump();
72 }
73 },
74 0);
Ryan Campbell69aff752017-07-27 13:49:46 -070075 }
Steven Moreland2056cf32019-09-17 17:41:02 -070076 if (base::GetBoolProperty("ro.vts.coverage", false)) {
Ryan Campbellde6c76a2017-11-14 18:15:13 -080077 const char* prefixOverride = getenv(kGcovPrefixOverrideEnvVar);
78 if (prefixOverride == nullptr || strcmp(prefixOverride, "true") != 0) {
79 const std::string gcovPath = kGcovPrefixPath + std::to_string(getpid());
80 setenv(kGcovPrefixEnvVar, gcovPath.c_str(), true /* overwrite */);
81 }
Ryan Campbell21d59d92017-10-19 14:12:49 -070082 ::android::add_sysprop_change_callback(
Steven Moreland2056cf32019-09-17 17:41:02 -070083 []() {
84 const bool enableCoverage = base::GetBoolProperty(kSysPropHalCoverage, false);
85 if (enableCoverage) {
86 dl_iterate_phdr(
87 [](struct dl_phdr_info* info, size_t /* size */, void* /* data */) {
88 if (strlen(info->dlpi_name) == 0) return 0;
Ryan Campbell21d59d92017-10-19 14:12:49 -070089
Steven Moreland2056cf32019-09-17 17:41:02 -070090 void* handle = dlopen(info->dlpi_name, RTLD_LAZY);
91 if (handle == nullptr) {
92 LOG(INFO) << "coverage dlopen failed: " << dlerror();
93 return 0;
94 }
95 void (*flush)() = (void (*)())dlsym(handle, "__gcov_flush");
96 if (flush == nullptr) {
97 return 0;
98 }
99 flush();
100 return 0;
101 },
102 nullptr /* data */);
103 }
104 },
105 0 /* priority */);
Ryan Campbell21d59d92017-10-19 14:12:49 -0700106 }
Ryan Campbell69aff752017-07-27 13:49:46 -0700107#endif
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000108}
109
Ryan Campbell69aff752017-07-27 13:49:46 -0700110HidlInstrumentor::~HidlInstrumentor() {}
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000111
112void HidlInstrumentor::configureInstrumentation(bool log) {
Steven Moreland2056cf32019-09-17 17:41:02 -0700113 mEnableInstrumentation = base::GetBoolProperty("hal.instrumentation.enable", false);
Zhuoyao Zhange8f82592018-02-01 16:18:15 -0800114 if (mEnableInstrumentation) {
115 if (log) {
116 LOG(INFO) << "Enable instrumentation.";
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000117 }
Zhuoyao Zhange8f82592018-02-01 16:18:15 -0800118 mInstrumentationCallbacks.clear();
119 registerInstrumentationCallbacks(&mInstrumentationCallbacks);
120 } else {
121 if (log) {
122 LOG(INFO) << "Disable instrumentation.";
123 }
124 mInstrumentationCallbacks.clear();
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000125 }
126}
127
128void HidlInstrumentor::registerInstrumentationCallbacks(
129 std::vector<InstrumentationCallback> *instrumentationCallbacks) {
130#ifdef LIBHIDL_TARGET_DEBUGGABLE
131 std::vector<std::string> instrumentationLibPaths;
Steven Moreland2056cf32019-09-17 17:41:02 -0700132 const std::string instrumentationLibPath = base::GetProperty(kSysPropInstrumentationPath, "");
133 if (instrumentationLibPath.size() > 0) {
Steven Moreland384792b2017-06-19 18:24:40 -0700134 instrumentationLibPaths.push_back(instrumentationLibPath);
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000135 } else {
Justin Yun1f048102017-12-01 15:30:08 +0900136 static std::string halLibPathVndkSp = android::base::StringPrintf(
137 HAL_LIBRARY_PATH_VNDK_SP_FOR_VERSION, getVndkVersionStr().c_str());
Justin Yun6a323ed2018-10-18 18:41:56 +0900138#ifndef __ANDROID_VNDK__
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000139 instrumentationLibPaths.push_back(HAL_LIBRARY_PATH_SYSTEM);
Justin Yun6a323ed2018-10-18 18:41:56 +0900140#endif
Justin Yun1f048102017-12-01 15:30:08 +0900141 instrumentationLibPaths.push_back(halLibPathVndkSp);
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000142 instrumentationLibPaths.push_back(HAL_LIBRARY_PATH_VENDOR);
143 instrumentationLibPaths.push_back(HAL_LIBRARY_PATH_ODM);
144 }
145
Chih-Hung Hsieh41649d52017-08-03 14:27:21 -0700146 for (const auto& path : instrumentationLibPaths) {
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000147 DIR *dir = opendir(path.c_str());
Yi Kong277f9772018-07-24 14:59:46 -0700148 if (dir == nullptr) {
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000149 LOG(WARNING) << path << " does not exist. ";
150 return;
151 }
152
153 struct dirent *file;
Stephen Hinesfd9ecee2017-09-27 18:52:52 -0700154 while ((file = readdir(dir)) != nullptr) {
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000155 if (!isInstrumentationLib(file))
156 continue;
157
158 void *handle = dlopen((path + file->d_name).c_str(), RTLD_NOW);
159 char *error;
160 if (handle == nullptr) {
161 LOG(WARNING) << "couldn't load file: " << file->d_name
162 << " error: " << dlerror();
163 continue;
164 }
165
166 dlerror(); /* Clear any existing error */
167
Steven Moreland384792b2017-06-19 18:24:40 -0700168 using cbFun = void (*)(
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000169 const InstrumentationEvent,
170 const char *,
171 const char *,
172 const char *,
173 const char *,
174 std::vector<void *> *);
Steven Moreland819c05d2017-04-06 17:24:22 -0700175 std::string package = mInstrumentationLibPackage;
176 for (size_t i = 0; i < package.size(); i++) {
177 if (package[i] == '.') {
178 package[i] = '_';
179 continue;
180 }
181
182 if (package[i] == '@') {
183 package[i] = '_';
184 package.insert(i + 1, "V");
185 continue;
186 }
187 }
Steven Moreland384792b2017-06-19 18:24:40 -0700188 auto cb = (cbFun)dlsym(handle, ("HIDL_INSTRUMENTATION_FUNCTION_"
Steven Moreland819c05d2017-04-06 17:24:22 -0700189 + package + "_" + mInterfaceName).c_str());
Stephen Hinesfd9ecee2017-09-27 18:52:52 -0700190 if ((error = dlerror()) != nullptr) {
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000191 LOG(WARNING)
192 << "couldn't find symbol: HIDL_INSTRUMENTATION_FUNCTION_"
Steven Moreland819c05d2017-04-06 17:24:22 -0700193 << package << "_" << mInterfaceName << ", error: " << error;
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000194 continue;
195 }
196 instrumentationCallbacks->push_back(cb);
197 LOG(INFO) << "Register instrumentation callback from "
198 << file->d_name;
199 }
200 closedir(dir);
201 }
202#else
203 // No-op for user builds.
Steven Morelandead33e22017-02-21 19:19:39 -0800204 (void) instrumentationCallbacks;
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000205 return;
206#endif
207}
208
209bool HidlInstrumentor::isInstrumentationLib(const dirent *file) {
210#ifdef LIBHIDL_TARGET_DEBUGGABLE
211 if (file->d_type != DT_REG) return false;
212 std::cmatch cm;
213 std::regex e("^" + mInstrumentationLibPackage + "(.*).profiler.so$");
214 if (std::regex_match(file->d_name, cm, e)) return true;
Steven Morelandead33e22017-02-21 19:19:39 -0800215#else
216 (void) file;
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000217#endif
218 return false;
219}
220
Steven Moreland337c3ae2016-11-22 13:37:32 -0800221} // namespace details
222} // namespace hardware
223} // namespace android