blob: 956effdf09a1e1454da27f3f1dec6d745de2ae9e [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() {
54 static std::string vndkVersion("0");
55 // "0" means the vndkVersion must be initialized with the property value.
56 // Otherwise, return the value.
57 if (vndkVersion == "0") {
Steven Moreland2056cf32019-09-17 17:41:02 -070058 vndkVersion = base::GetProperty("ro.vndk.version", "");
Justin Yun1f048102017-12-01 15:30:08 +090059 if (vndkVersion != "" && vndkVersion != "current") {
60 vndkVersion = "-" + vndkVersion;
61 } else {
62 vndkVersion = "";
63 }
64 }
65 return vndkVersion;
66}
67
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +000068// ----------------------------------------------------------------------
69// HidlInstrumentor implementation.
Steven Moreland384792b2017-06-19 18:24:40 -070070HidlInstrumentor::HidlInstrumentor(const std::string& package, const std::string& interface)
71 : mEnableInstrumentation(false),
72 mInstrumentationLibPackage(package),
73 mInterfaceName(interface) {
Ryan Campbell69aff752017-07-27 13:49:46 -070074#ifdef LIBHIDL_TARGET_DEBUGGABLE
Zhuoyao Zhange8f82592018-02-01 16:18:15 -080075 configureInstrumentation(false);
Ryan Campbell69aff752017-07-27 13:49:46 -070076 if (__sanitizer_cov_dump != nullptr) {
77 ::android::add_sysprop_change_callback(
Steven Moreland2056cf32019-09-17 17:41:02 -070078 []() {
79 bool enableCoverage = base::GetBoolProperty(kSysPropHalCoverage, false);
80 if (enableCoverage) {
81 __sanitizer_cov_dump();
82 }
83 },
84 0);
Ryan Campbell69aff752017-07-27 13:49:46 -070085 }
Steven Moreland2056cf32019-09-17 17:41:02 -070086 if (base::GetBoolProperty("ro.vts.coverage", false)) {
Ryan Campbellde6c76a2017-11-14 18:15:13 -080087 const char* prefixOverride = getenv(kGcovPrefixOverrideEnvVar);
88 if (prefixOverride == nullptr || strcmp(prefixOverride, "true") != 0) {
89 const std::string gcovPath = kGcovPrefixPath + std::to_string(getpid());
90 setenv(kGcovPrefixEnvVar, gcovPath.c_str(), true /* overwrite */);
91 }
Ryan Campbell21d59d92017-10-19 14:12:49 -070092 ::android::add_sysprop_change_callback(
Steven Moreland2056cf32019-09-17 17:41:02 -070093 []() {
94 const bool enableCoverage = base::GetBoolProperty(kSysPropHalCoverage, false);
95 if (enableCoverage) {
96 dl_iterate_phdr(
97 [](struct dl_phdr_info* info, size_t /* size */, void* /* data */) {
98 if (strlen(info->dlpi_name) == 0) return 0;
Ryan Campbell21d59d92017-10-19 14:12:49 -070099
Steven Moreland2056cf32019-09-17 17:41:02 -0700100 void* handle = dlopen(info->dlpi_name, RTLD_LAZY);
101 if (handle == nullptr) {
102 LOG(INFO) << "coverage dlopen failed: " << dlerror();
103 return 0;
104 }
105 void (*flush)() = (void (*)())dlsym(handle, "__gcov_flush");
106 if (flush == nullptr) {
107 return 0;
108 }
109 flush();
110 return 0;
111 },
112 nullptr /* data */);
113 }
114 },
115 0 /* priority */);
Ryan Campbell21d59d92017-10-19 14:12:49 -0700116 }
Ryan Campbell69aff752017-07-27 13:49:46 -0700117#endif
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000118}
119
Ryan Campbell69aff752017-07-27 13:49:46 -0700120HidlInstrumentor::~HidlInstrumentor() {}
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000121
122void HidlInstrumentor::configureInstrumentation(bool log) {
Steven Moreland2056cf32019-09-17 17:41:02 -0700123 mEnableInstrumentation = base::GetBoolProperty("hal.instrumentation.enable", false);
Zhuoyao Zhange8f82592018-02-01 16:18:15 -0800124 if (mEnableInstrumentation) {
125 if (log) {
126 LOG(INFO) << "Enable instrumentation.";
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000127 }
Zhuoyao Zhange8f82592018-02-01 16:18:15 -0800128 mInstrumentationCallbacks.clear();
129 registerInstrumentationCallbacks(&mInstrumentationCallbacks);
130 } else {
131 if (log) {
132 LOG(INFO) << "Disable instrumentation.";
133 }
134 mInstrumentationCallbacks.clear();
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000135 }
136}
137
138void HidlInstrumentor::registerInstrumentationCallbacks(
139 std::vector<InstrumentationCallback> *instrumentationCallbacks) {
140#ifdef LIBHIDL_TARGET_DEBUGGABLE
141 std::vector<std::string> instrumentationLibPaths;
Steven Moreland2056cf32019-09-17 17:41:02 -0700142 const std::string instrumentationLibPath = base::GetProperty(kSysPropInstrumentationPath, "");
143 if (instrumentationLibPath.size() > 0) {
Steven Moreland384792b2017-06-19 18:24:40 -0700144 instrumentationLibPaths.push_back(instrumentationLibPath);
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000145 } else {
Justin Yun1f048102017-12-01 15:30:08 +0900146 static std::string halLibPathVndkSp = android::base::StringPrintf(
147 HAL_LIBRARY_PATH_VNDK_SP_FOR_VERSION, getVndkVersionStr().c_str());
Justin Yun6a323ed2018-10-18 18:41:56 +0900148#ifndef __ANDROID_VNDK__
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000149 instrumentationLibPaths.push_back(HAL_LIBRARY_PATH_SYSTEM);
Justin Yun6a323ed2018-10-18 18:41:56 +0900150#endif
Justin Yun1f048102017-12-01 15:30:08 +0900151 instrumentationLibPaths.push_back(halLibPathVndkSp);
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000152 instrumentationLibPaths.push_back(HAL_LIBRARY_PATH_VENDOR);
153 instrumentationLibPaths.push_back(HAL_LIBRARY_PATH_ODM);
154 }
155
Chih-Hung Hsieh41649d52017-08-03 14:27:21 -0700156 for (const auto& path : instrumentationLibPaths) {
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000157 DIR *dir = opendir(path.c_str());
Yi Kong277f9772018-07-24 14:59:46 -0700158 if (dir == nullptr) {
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000159 LOG(WARNING) << path << " does not exist. ";
160 return;
161 }
162
163 struct dirent *file;
Stephen Hinesfd9ecee2017-09-27 18:52:52 -0700164 while ((file = readdir(dir)) != nullptr) {
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000165 if (!isInstrumentationLib(file))
166 continue;
167
168 void *handle = dlopen((path + file->d_name).c_str(), RTLD_NOW);
169 char *error;
170 if (handle == nullptr) {
171 LOG(WARNING) << "couldn't load file: " << file->d_name
172 << " error: " << dlerror();
173 continue;
174 }
175
176 dlerror(); /* Clear any existing error */
177
Steven Moreland384792b2017-06-19 18:24:40 -0700178 using cbFun = void (*)(
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000179 const InstrumentationEvent,
180 const char *,
181 const char *,
182 const char *,
183 const char *,
184 std::vector<void *> *);
Steven Moreland819c05d2017-04-06 17:24:22 -0700185 std::string package = mInstrumentationLibPackage;
186 for (size_t i = 0; i < package.size(); i++) {
187 if (package[i] == '.') {
188 package[i] = '_';
189 continue;
190 }
191
192 if (package[i] == '@') {
193 package[i] = '_';
194 package.insert(i + 1, "V");
195 continue;
196 }
197 }
Steven Moreland384792b2017-06-19 18:24:40 -0700198 auto cb = (cbFun)dlsym(handle, ("HIDL_INSTRUMENTATION_FUNCTION_"
Steven Moreland819c05d2017-04-06 17:24:22 -0700199 + package + "_" + mInterfaceName).c_str());
Stephen Hinesfd9ecee2017-09-27 18:52:52 -0700200 if ((error = dlerror()) != nullptr) {
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000201 LOG(WARNING)
202 << "couldn't find symbol: HIDL_INSTRUMENTATION_FUNCTION_"
Steven Moreland819c05d2017-04-06 17:24:22 -0700203 << package << "_" << mInterfaceName << ", error: " << error;
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000204 continue;
205 }
206 instrumentationCallbacks->push_back(cb);
207 LOG(INFO) << "Register instrumentation callback from "
208 << file->d_name;
209 }
210 closedir(dir);
211 }
212#else
213 // No-op for user builds.
Steven Morelandead33e22017-02-21 19:19:39 -0800214 (void) instrumentationCallbacks;
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000215 return;
216#endif
217}
218
219bool HidlInstrumentor::isInstrumentationLib(const dirent *file) {
220#ifdef LIBHIDL_TARGET_DEBUGGABLE
221 if (file->d_type != DT_REG) return false;
222 std::cmatch cm;
223 std::regex e("^" + mInstrumentationLibPackage + "(.*).profiler.so$");
224 if (std::regex_match(file->d_name, cm, e)) return true;
Steven Morelandead33e22017-02-21 19:19:39 -0800225#else
226 (void) file;
Zhuoyao Zhang7a57de62017-02-15 21:04:19 +0000227#endif
228 return false;
229}
230
Steven Moreland337c3ae2016-11-22 13:37:32 -0800231} // namespace details
232} // namespace hardware
233} // namespace android