| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2018 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 | #include <set> | 
|  | 17 |  | 
|  | 18 | #include <android-base/file.h> | 
| Eric Jeong | 9b6bcca | 2019-11-08 16:37:13 -0800 | [diff] [blame] | 19 | #include <android-base/properties.h> | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 20 | #include <android-base/stringprintf.h> | 
| Eric Jeong | 9b6bcca | 2019-11-08 16:37:13 -0800 | [diff] [blame] | 21 | #include <android-base/strings.h> | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 22 | #include <android/hidl/manager/1.0/IServiceManager.h> | 
| Jayant Chowdhary | ddd3da0 | 2022-05-20 03:30:09 +0000 | [diff] [blame] | 23 | #include <binder/IServiceManager.h> | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 24 | #include <dumputils/dump_utils.h> | 
|  | 25 | #include <log/log.h> | 
|  | 26 |  | 
|  | 27 | /* list of native processes to include in the native dumps */ | 
|  | 28 | // This matches the /proc/pid/exe link instead of /proc/pid/cmdline. | 
|  | 29 | static const char* native_processes_to_dump[] = { | 
|  | 30 | "/system/bin/audioserver", | 
|  | 31 | "/system/bin/cameraserver", | 
|  | 32 | "/system/bin/drmserver", | 
|  | 33 | "/system/bin/mediadrmserver", | 
|  | 34 | "/system/bin/mediaextractor", // media.extractor | 
|  | 35 | "/system/bin/mediametrics", // media.metrics | 
|  | 36 | "/system/bin/mediaserver", | 
| Chong Zhang | 7920d81 | 2020-10-15 12:06:39 -0700 | [diff] [blame] | 37 | "/system/bin/mediatranscoding", // media.transcoding | 
| Chalard Jean | bd52694 | 2019-04-04 18:23:04 +0900 | [diff] [blame] | 38 | "/system/bin/netd", | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 39 | "/system/bin/sdcard", | 
| Howard Ro | 6a446a2 | 2020-02-20 04:57:00 +0000 | [diff] [blame] | 40 | "/apex/com.android.os.statsd/bin/statsd", | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 41 | "/system/bin/surfaceflinger", | 
|  | 42 | "/system/bin/vehicle_network_service", | 
|  | 43 | "/vendor/bin/hw/android.hardware.media.omx@1.0-service", // media.codec | 
| Chong Zhang | 31f6899 | 2019-03-27 16:08:53 -0700 | [diff] [blame] | 44 | "/apex/com.android.media.swcodec/bin/mediaswcodec", // media.swcodec | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 45 | NULL, | 
|  | 46 | }; | 
|  | 47 |  | 
| Josh Gao | e73b7ee | 2020-01-09 21:54:50 -0800 | [diff] [blame] | 48 |  | 
|  | 49 | // Native processes to dump on debuggable builds. | 
|  | 50 | static const char* debuggable_native_processes_to_dump[] = { | 
| Eric Biggers | e846316 | 2021-05-04 15:03:48 -0700 | [diff] [blame] | 51 | "/system/bin/keystore2", | 
| Josh Gao | e73b7ee | 2020-01-09 21:54:50 -0800 | [diff] [blame] | 52 | "/system/bin/vold", | 
|  | 53 | NULL, | 
|  | 54 | }; | 
|  | 55 |  | 
| Jayant Chowdhary | ddd3da0 | 2022-05-20 03:30:09 +0000 | [diff] [blame] | 56 | /* list of hidl hal interface to dump containing process during native dumps */ | 
|  | 57 | static const char* hidl_hal_interfaces_to_dump[] { | 
| Mikhail Naganov | ac1e32c | 2018-05-01 09:03:40 -0700 | [diff] [blame] | 58 | "android.hardware.audio@4.0::IDevicesFactory", | 
| Carter Hsu | 723e8cd | 2019-09-11 13:57:58 +0800 | [diff] [blame] | 59 | "android.hardware.audio@5.0::IDevicesFactory", | 
| Mikhail Naganov | 091e5d8 | 2020-01-27 12:11:51 -0800 | [diff] [blame] | 60 | "android.hardware.audio@6.0::IDevicesFactory", | 
| Mikhail Naganov | 783022f | 2020-08-06 19:38:38 +0000 | [diff] [blame] | 61 | "android.hardware.audio@7.0::IDevicesFactory", | 
| Stefano Galarraga | 5101b33 | 2020-03-23 08:49:08 +0000 | [diff] [blame] | 62 | "android.hardware.automotive.audiocontrol@1.0::IAudioControl", | 
| Hayden Gomes | b11a1b7 | 2020-03-26 14:23:33 -0700 | [diff] [blame] | 63 | "android.hardware.automotive.audiocontrol@2.0::IAudioControl", | 
| Stefano Galarraga | 5101b33 | 2020-03-23 08:49:08 +0000 | [diff] [blame] | 64 | "android.hardware.automotive.evs@1.0::IEvsCamera", | 
|  | 65 | "android.hardware.automotive.vehicle@2.0::IVehicle", | 
| Kevin Chyn | 3bad810 | 2019-06-19 11:05:53 -0700 | [diff] [blame] | 66 | "android.hardware.biometrics.face@1.0::IBiometricsFace", | 
| Kris Chen | e93e6c9 | 2020-03-03 17:50:11 +0800 | [diff] [blame] | 67 | "android.hardware.biometrics.fingerprint@2.1::IBiometricsFingerprint", | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 68 | "android.hardware.bluetooth@1.0::IBluetoothHci", | 
|  | 69 | "android.hardware.camera.provider@2.4::ICameraProvider", | 
| Jeff Tinker | 5fce882 | 2018-04-02 17:24:41 -0700 | [diff] [blame] | 70 | "android.hardware.drm@1.0::IDrmFactory", | 
| Chia-I Wu | 078dc42 | 2018-08-09 16:04:51 -0700 | [diff] [blame] | 71 | "android.hardware.graphics.allocator@2.0::IAllocator", | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 72 | "android.hardware.graphics.composer@2.1::IComposer", | 
| Yifan Hong | 77a5617 | 2018-11-27 16:43:49 -0800 | [diff] [blame] | 73 | "android.hardware.health@2.0::IHealth", | 
| Chong Zhang | 31f6899 | 2019-03-27 16:08:53 -0700 | [diff] [blame] | 74 | "android.hardware.media.c2@1.0::IComponentStore", | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 75 | "android.hardware.media.omx@1.0::IOmx", | 
| Pawin Vongmasa | b4c85df | 2018-04-18 07:00:30 -0700 | [diff] [blame] | 76 | "android.hardware.media.omx@1.0::IOmxStore", | 
| Stefano Galarraga | 5101b33 | 2020-03-23 08:49:08 +0000 | [diff] [blame] | 77 | "android.hardware.neuralnetworks@1.0::IDevice", | 
| Wei Wang | 0773561 | 2019-04-23 14:12:24 -0700 | [diff] [blame] | 78 | "android.hardware.power@1.3::IPower", | 
| Benjamin Schwartz | 525651b | 2019-04-08 15:26:10 -0700 | [diff] [blame] | 79 | "android.hardware.power.stats@1.0::IPowerStats", | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 80 | "android.hardware.sensors@1.0::ISensors", | 
| Wei Wang | 0773561 | 2019-04-23 14:12:24 -0700 | [diff] [blame] | 81 | "android.hardware.thermal@2.0::IThermal", | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 82 | "android.hardware.vr@1.0::IVr", | 
|  | 83 | NULL, | 
|  | 84 | }; | 
|  | 85 |  | 
| Jayant Chowdhary | ddd3da0 | 2022-05-20 03:30:09 +0000 | [diff] [blame] | 86 | /* list of hal interface to dump containing process during native dumps */ | 
|  | 87 | static const std::vector<std::string> aidl_interfaces_to_dump { | 
|  | 88 | "android.hardware.camera.provider.ICameraProvider", | 
| Siarhei Vishniakou | f02724c | 2022-07-01 13:38:51 -0700 | [diff] [blame] | 89 | "android.hardware.input.processor.IInputProcessor", | 
| Jayant Chowdhary | ddd3da0 | 2022-05-20 03:30:09 +0000 | [diff] [blame] | 90 | }; | 
|  | 91 |  | 
| Eric Jeong | 9b6bcca | 2019-11-08 16:37:13 -0800 | [diff] [blame] | 92 | /* list of extra hal interfaces to dump containing process during native dumps */ | 
|  | 93 | // This is filled when dumpstate is called. | 
|  | 94 | static std::set<const std::string> extra_hal_interfaces_to_dump; | 
|  | 95 |  | 
|  | 96 | static void read_extra_hals_to_dump_from_property() { | 
|  | 97 | // extra hals to dump are already filled | 
| Eric Jeong | 961ba2d | 2020-06-24 11:43:15 -0700 | [diff] [blame] | 98 | if (!extra_hal_interfaces_to_dump.empty()) { | 
| Eric Jeong | 9b6bcca | 2019-11-08 16:37:13 -0800 | [diff] [blame] | 99 | return; | 
|  | 100 | } | 
|  | 101 | std::string value = android::base::GetProperty("ro.dump.hals.extra", ""); | 
|  | 102 | std::vector<std::string> tokens = android::base::Split(value, ","); | 
|  | 103 | for (const auto &token : tokens) { | 
|  | 104 | std::string trimmed_token = android::base::Trim(token); | 
|  | 105 | if (trimmed_token.length() == 0) { | 
|  | 106 | continue; | 
|  | 107 | } | 
|  | 108 | extra_hal_interfaces_to_dump.insert(trimmed_token); | 
|  | 109 | } | 
|  | 110 | } | 
|  | 111 |  | 
|  | 112 | // check if interface is included in either default hal list or extra hal list | 
|  | 113 | bool should_dump_hal_interface(const std::string& interface) { | 
| Jayant Chowdhary | ddd3da0 | 2022-05-20 03:30:09 +0000 | [diff] [blame] | 114 | for (const char** i = hidl_hal_interfaces_to_dump; *i; i++) { | 
| Eric Jeong | 9b6bcca | 2019-11-08 16:37:13 -0800 | [diff] [blame] | 115 | if (interface == *i) { | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 116 | return true; | 
|  | 117 | } | 
|  | 118 | } | 
| Eric Jeong | 9b6bcca | 2019-11-08 16:37:13 -0800 | [diff] [blame] | 119 | return extra_hal_interfaces_to_dump.find(interface) != extra_hal_interfaces_to_dump.end(); | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 120 | } | 
|  | 121 |  | 
|  | 122 | bool should_dump_native_traces(const char* path) { | 
|  | 123 | for (const char** p = native_processes_to_dump; *p; p++) { | 
|  | 124 | if (!strcmp(*p, path)) { | 
|  | 125 | return true; | 
|  | 126 | } | 
|  | 127 | } | 
| Josh Gao | e73b7ee | 2020-01-09 21:54:50 -0800 | [diff] [blame] | 128 |  | 
|  | 129 | if (android::base::GetBoolProperty("ro.debuggable", false)) { | 
|  | 130 | for (const char** p = debuggable_native_processes_to_dump; *p; p++) { | 
|  | 131 | if (!strcmp(*p, path)) { | 
|  | 132 | return true; | 
|  | 133 | } | 
|  | 134 | } | 
|  | 135 | } | 
|  | 136 |  | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 137 | return false; | 
|  | 138 | } | 
|  | 139 |  | 
| Jayant Chowdhary | ddd3da0 | 2022-05-20 03:30:09 +0000 | [diff] [blame] | 140 | static void get_interesting_aidl_pids(std::set<int> &pids) { | 
|  | 141 | using ServiceDebugInfo = android::IServiceManager::ServiceDebugInfo; | 
|  | 142 | auto sm = android::defaultServiceManager(); | 
|  | 143 | std::vector<ServiceDebugInfo> serviceDebugInfos = sm->getServiceDebugInfo(); | 
|  | 144 | for (const auto & serviceDebugInfo : serviceDebugInfos) { | 
|  | 145 | for (const auto &aidl_prefix : aidl_interfaces_to_dump) { | 
|  | 146 | // Check for prefix match with aidl interface to dump | 
|  | 147 | if (serviceDebugInfo.name.rfind(aidl_prefix, 0) == 0) { | 
|  | 148 | pids.insert(serviceDebugInfo.pid); | 
|  | 149 | } | 
|  | 150 | } | 
|  | 151 | } | 
|  | 152 | } | 
|  | 153 |  | 
|  | 154 | static void get_interesting_hidl_pids(std::set<int> &pids) { | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 155 | using android::hidl::manager::V1_0::IServiceManager; | 
|  | 156 | using android::sp; | 
|  | 157 | using android::hardware::Return; | 
|  | 158 |  | 
|  | 159 | sp<IServiceManager> manager = IServiceManager::getService(); | 
| Eric Jeong | 9b6bcca | 2019-11-08 16:37:13 -0800 | [diff] [blame] | 160 | read_extra_hals_to_dump_from_property(); | 
|  | 161 |  | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 162 | Return<void> ret = manager->debugDump([&](auto& hals) { | 
|  | 163 | for (const auto &info : hals) { | 
|  | 164 | if (info.pid == static_cast<int>(IServiceManager::PidConstant::NO_PID)) { | 
|  | 165 | continue; | 
|  | 166 | } | 
|  | 167 |  | 
| Jayant Chowdhary | ddd3da0 | 2022-05-20 03:30:09 +0000 | [diff] [blame] | 168 | if (should_dump_hal_interface(info.interfaceName)) { | 
|  | 169 | pids.insert(info.pid); | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 170 | } | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 171 | } | 
|  | 172 | }); | 
|  | 173 |  | 
|  | 174 | if (!ret.isOk()) { | 
|  | 175 | ALOGE("Could not get list of HAL PIDs: %s\n", ret.description().c_str()); | 
|  | 176 | } | 
|  | 177 |  | 
| Jayant Chowdhary | ddd3da0 | 2022-05-20 03:30:09 +0000 | [diff] [blame] | 178 | return; | 
|  | 179 | } | 
|  | 180 |  | 
|  | 181 | std::set<int> get_interesting_pids() { | 
|  | 182 | std::set<int> interesting_pids; | 
|  | 183 | get_interesting_hidl_pids(interesting_pids); | 
|  | 184 | get_interesting_aidl_pids(interesting_pids); | 
|  | 185 | return interesting_pids; | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 186 | } | 
|  | 187 |  | 
|  | 188 | bool IsZygote(int pid) { | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 189 | std::string cmdline; | 
|  | 190 | if (!android::base::ReadFileToString(android::base::StringPrintf("/proc/%d/cmdline", pid), | 
|  | 191 | &cmdline)) { | 
|  | 192 | return true; | 
|  | 193 | } | 
|  | 194 |  | 
| Josh Gao | 33e622a | 2019-05-16 16:05:04 -0700 | [diff] [blame] | 195 | // cmdline has embedded nulls; only consider argv[0]. | 
|  | 196 | cmdline = std::string(cmdline.c_str()); | 
|  | 197 |  | 
|  | 198 | return cmdline == "zygote" || cmdline == "zygote64" || cmdline == "usap32" || | 
|  | 199 | cmdline == "usap64"; | 
| Kweku Adams | 5ce418d | 2018-02-05 16:43:53 -0800 | [diff] [blame] | 200 | } |