blob: c7961bbbdb258916386019fb355f0c4a039e4831 [file] [log] [blame]
Colin Crossf45fa6b2012-03-26 12:38:26 -07001/*
2 * Copyright (C) 2008 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
Felipe Lemef0292972016-11-22 13:57:05 -080017#define LOG_TAG "dumpstate"
18
19#include "dumpstate.h"
20
Colin Crossf45fa6b2012-03-26 12:38:26 -070021#include <dirent.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070022#include <fcntl.h>
Felipe Lemee184f662016-10-27 10:04:47 -070023#include <libgen.h>
Felipe Leme7447d7c2016-11-03 18:12:22 -070024#include <math.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070025#include <poll.h>
26#include <signal.h>
27#include <stdarg.h>
28#include <stdio.h>
29#include <stdlib.h>
30#include <string.h>
Felipe Lemecf6a8b42016-03-11 10:38:19 -080031#include <sys/capability.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070032#include <sys/inotify.h>
Felipe Lemee184f662016-10-27 10:04:47 -070033#include <sys/klog.h>
Mark Salyzyna5e161b2016-09-29 08:08:05 -070034#include <sys/prctl.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070035#include <sys/stat.h>
36#include <sys/time.h>
37#include <sys/wait.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070038#include <time.h>
39#include <unistd.h>
Mark Salyzyn261a7332016-05-24 12:38:40 -070040
Narayan Kamath8f788292017-05-25 13:20:39 +010041#include <memory>
Steven Moreland17b29e12017-03-21 18:38:05 -070042#include <set>
Mark Salyzyna5e161b2016-09-29 08:08:05 -070043#include <string>
Felipe Leme36b3f6f2015-11-19 15:41:04 -080044#include <vector>
Colin Crossf45fa6b2012-03-26 12:38:26 -070045
Mark Salyzyn290f4b92016-05-16 08:33:59 -070046#include <android-base/file.h>
Felipe Leme96c2bbb2016-09-26 09:21:21 -070047#include <android-base/properties.h>
Felipe Leme2b9b06c2016-10-14 09:13:06 -070048#include <android-base/stringprintf.h>
Felipe Leme7447d7c2016-11-03 18:12:22 -070049#include <android-base/strings.h>
Narayan Kamath8f788292017-05-25 13:20:39 +010050#include <android-base/unique_fd.h>
Steven Moreland17b29e12017-03-21 18:38:05 -070051#include <android/hidl/manager/1.0/IServiceManager.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070052#include <cutils/properties.h>
53#include <cutils/sockets.h>
Josh Gaod2db0242017-01-05 18:27:33 -080054#include <debuggerd/client.h>
Mark Salyzyn4eb13822017-01-12 13:57:51 -080055#include <log/log.h>
Colin Crossf45fa6b2012-03-26 12:38:26 -070056#include <private/android_filesystem_config.h>
57
Felipe Lemef0292972016-11-22 13:57:05 -080058#include "DumpstateInternal.h"
Jeff Brown1dc94e32014-09-11 14:15:27 -070059
Felipe Leme47e9be22016-12-21 15:37:07 -080060// TODO: remove once moved to namespace
61using android::os::dumpstate::CommandOptions;
62using android::os::dumpstate::DumpFileToFd;
63using android::os::dumpstate::PropertiesHelper;
64
Brian Carlstroma3322752017-03-19 17:48:01 -070065// Keep in sync with
66// frameworks/base/services/core/java/com/android/server/am/ActivityManagerService.java
Felipe Leme61884122016-06-13 09:23:30 -070067static const int TRACE_DUMP_TIMEOUT_MS = 10000; // 10 seconds
68
Felipe Lemef0292972016-11-22 13:57:05 -080069/* Most simple commands have 10 as timeout, so 5 is a good estimate */
70static const int32_t WEIGHT_FILE = 5;
71
Felipe Lemee844a9d2016-09-21 15:01:39 -070072// TODO: temporary variables and functions used during C++ refactoring
73static Dumpstate& ds = Dumpstate::GetInstance();
Felipe Leme9a523ae2016-10-20 15:10:33 -070074static int RunCommand(const std::string& title, const std::vector<std::string>& full_command,
Felipe Leme678727a2016-09-21 17:22:11 -070075 const CommandOptions& options = CommandOptions::DEFAULT) {
Felipe Leme9a523ae2016-10-20 15:10:33 -070076 return ds.RunCommand(title, full_command, options);
Felipe Leme678727a2016-09-21 17:22:11 -070077}
Felipe Lemee844a9d2016-09-21 15:01:39 -070078
Jeff Brownbf7f4922012-06-07 16:40:01 -070079/* list of native processes to include in the native dumps */
Andy Hung5c04e742016-04-13 19:35:34 -070080// This matches the /proc/pid/exe link instead of /proc/pid/cmdline.
Jeff Brownbf7f4922012-06-07 16:40:01 -070081static const char* native_processes_to_dump[] = {
Andy Hung9609bbd2015-12-15 12:42:50 -080082 "/system/bin/audioserver",
Chien-Yu Chenf5248da2016-01-28 14:23:03 -080083 "/system/bin/cameraserver",
James Dong1fc4f802012-09-10 16:08:48 -070084 "/system/bin/drmserver",
Andy Hung5c04e742016-04-13 19:35:34 -070085 "/system/bin/mediadrmserver",
86 "/system/bin/mediaextractor", // media.extractor
Jeff Brownbf7f4922012-06-07 16:40:01 -070087 "/system/bin/mediaserver",
88 "/system/bin/sdcard",
89 "/system/bin/surfaceflinger",
keunyoungd907b322015-10-16 15:21:43 -070090 "/system/bin/vehicle_network_service",
Chong Zhangde00ee42017-06-02 16:13:16 -070091 "/vendor/bin/hw/android.hardware.media.omx@1.0-service", // media.codec
Jeff Brownbf7f4922012-06-07 16:40:01 -070092 NULL,
93};
94
Steven Moreland17b29e12017-03-21 18:38:05 -070095/* list of hal interface to dump containing process during native dumps */
96static const char* hal_interfaces_to_dump[] {
97 "android.hardware.audio@2.0::IDevicesFactory",
98 "android.hardware.bluetooth@1.0::IBluetoothHci",
99 "android.hardware.camera.provider@2.4::ICameraProvider",
Chia-I Wu108c0f02017-04-20 14:31:50 -0700100 "android.hardware.graphics.composer@2.1::IComposer",
Steven Moreland17b29e12017-03-21 18:38:05 -0700101 "android.hardware.vr@1.0::IVr",
102 "android.hardware.media.omx@1.0::IOmx",
103 NULL,
104};
105
Felipe Leme7447d7c2016-11-03 18:12:22 -0700106// Reasonable value for max stats.
107static const int STATS_MAX_N_RUNS = 1000;
108static const long STATS_MAX_AVERAGE = 100000;
109
Felipe Lemebda15a02016-11-16 17:48:25 -0800110CommandOptions Dumpstate::DEFAULT_DUMPSYS = CommandOptions::WithTimeout(30).Build();
Felipe Leme30dbfa12016-09-02 12:43:26 -0700111
Felipe Lemef0292972016-11-22 13:57:05 -0800112Dumpstate::Dumpstate(const std::string& version)
113 : pid_(getpid()), version_(version), now_(time(nullptr)) {
Felipe Lemee844a9d2016-09-21 15:01:39 -0700114}
115
116Dumpstate& Dumpstate::GetInstance() {
Felipe Lemef0292972016-11-22 13:57:05 -0800117 static Dumpstate singleton_(android::base::GetProperty("dumpstate.version", VERSION_CURRENT));
Felipe Leme9a523ae2016-10-20 15:10:33 -0700118 return singleton_;
Felipe Lemee844a9d2016-09-21 15:01:39 -0700119}
120
Felipe Leme46b85da2016-11-21 17:40:45 -0800121DurationReporter::DurationReporter(const std::string& title, bool log_only)
122 : title_(title), log_only_(log_only) {
Felipe Leme678727a2016-09-21 17:22:11 -0700123 if (!title_.empty()) {
Felipe Lemef0292972016-11-22 13:57:05 -0800124 started_ = Nanotime();
Felipe Leme78f2c862015-12-21 09:55:22 -0800125 }
126}
127
128DurationReporter::~DurationReporter() {
Felipe Leme678727a2016-09-21 17:22:11 -0700129 if (!title_.empty()) {
Felipe Lemef0292972016-11-22 13:57:05 -0800130 uint64_t elapsed = Nanotime() - started_;
Felipe Leme46b85da2016-11-21 17:40:45 -0800131 if (log_only_) {
Felipe Leme678727a2016-09-21 17:22:11 -0700132 MYLOGD("Duration of '%s': %.3fs\n", title_.c_str(), (float)elapsed / NANOS_PER_SEC);
Felipe Leme46b85da2016-11-21 17:40:45 -0800133 } else {
134 // Use "Yoda grammar" to make it easier to grep|sort sections.
Felipe Lemed8b94e52016-12-08 10:21:44 -0800135 printf("------ %.3fs was the duration of '%s' ------\n", (float)elapsed / NANOS_PER_SEC,
136 title_.c_str());
Felipe Leme608385d2016-02-01 10:35:38 -0800137 }
Felipe Leme78f2c862015-12-21 09:55:22 -0800138 }
139}
140
Felipe Leme7447d7c2016-11-03 18:12:22 -0700141const int32_t Progress::kDefaultMax = 5000;
142
143Progress::Progress(const std::string& path) : Progress(Progress::kDefaultMax, 1.1, path) {
144}
145
146Progress::Progress(int32_t initial_max, int32_t progress, float growth_factor)
147 : Progress(initial_max, growth_factor, "") {
148 progress_ = progress;
149}
150
151Progress::Progress(int32_t initial_max, float growth_factor, const std::string& path)
152 : initial_max_(initial_max),
153 progress_(0),
154 max_(initial_max),
155 growth_factor_(growth_factor),
156 n_runs_(0),
157 average_max_(0),
158 path_(path) {
159 if (!path_.empty()) {
160 Load();
161 }
162}
163
164void Progress::Load() {
165 MYLOGD("Loading stats from %s\n", path_.c_str());
166 std::string content;
167 if (!android::base::ReadFileToString(path_, &content)) {
168 MYLOGI("Could not read stats from %s; using max of %d\n", path_.c_str(), max_);
169 return;
170 }
171 if (content.empty()) {
172 MYLOGE("No stats (empty file) on %s; using max of %d\n", path_.c_str(), max_);
173 return;
174 }
175 std::vector<std::string> lines = android::base::Split(content, "\n");
176
177 if (lines.size() < 1) {
178 MYLOGE("Invalid stats on file %s: not enough lines (%d). Using max of %d\n", path_.c_str(),
179 (int)lines.size(), max_);
180 return;
181 }
182 char* ptr;
183 n_runs_ = strtol(lines[0].c_str(), &ptr, 10);
184 average_max_ = strtol(ptr, nullptr, 10);
185 if (n_runs_ <= 0 || average_max_ <= 0 || n_runs_ > STATS_MAX_N_RUNS ||
186 average_max_ > STATS_MAX_AVERAGE) {
187 MYLOGE("Invalid stats line on file %s: %s\n", path_.c_str(), lines[0].c_str());
188 initial_max_ = Progress::kDefaultMax;
189 } else {
190 initial_max_ = average_max_;
191 }
192 max_ = initial_max_;
193
194 MYLOGI("Average max progress: %d in %d runs; estimated max: %d\n", average_max_, n_runs_, max_);
195}
196
197void Progress::Save() {
198 int32_t total = n_runs_ * average_max_ + progress_;
199 int32_t runs = n_runs_ + 1;
200 int32_t average = floor(((float)total) / runs);
201 MYLOGI("Saving stats (total=%d, runs=%d, average=%d) on %s\n", total, runs, average,
202 path_.c_str());
203 if (path_.empty()) {
204 return;
205 }
206
207 std::string content = android::base::StringPrintf("%d %d\n", runs, average);
208 if (!android::base::WriteStringToFile(content, path_)) {
209 MYLOGE("Could not save stats on %s\n", path_.c_str());
210 }
211}
212
213int32_t Progress::Get() const {
214 return progress_;
215}
216
217bool Progress::Inc(int32_t delta) {
218 bool changed = false;
219 if (delta >= 0) {
220 progress_ += delta;
221 if (progress_ > max_) {
222 int32_t old_max = max_;
223 max_ = floor((float)progress_ * growth_factor_);
224 MYLOGD("Adjusting max progress from %d to %d\n", old_max, max_);
225 changed = true;
226 }
227 }
228 return changed;
229}
230
231int32_t Progress::GetMax() const {
232 return max_;
233}
234
235int32_t Progress::GetInitialMax() const {
236 return initial_max_;
237}
238
239void Progress::Dump(int fd, const std::string& prefix) const {
240 const char* pr = prefix.c_str();
241 dprintf(fd, "%sprogress: %d\n", pr, progress_);
242 dprintf(fd, "%smax: %d\n", pr, max_);
243 dprintf(fd, "%sinitial_max: %d\n", pr, initial_max_);
244 dprintf(fd, "%sgrowth_factor: %0.2f\n", pr, growth_factor_);
245 dprintf(fd, "%spath: %s\n", pr, path_.c_str());
246 dprintf(fd, "%sn_runs: %d\n", pr, n_runs_);
247 dprintf(fd, "%saverage_max: %d\n", pr, average_max_);
248}
249
Felipe Leme75876a22016-10-27 16:31:27 -0700250bool Dumpstate::IsZipping() const {
251 return zip_writer_ != nullptr;
252}
253
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700254std::string Dumpstate::GetPath(const std::string& suffix) const {
Felipe Leme9a523ae2016-10-20 15:10:33 -0700255 return android::base::StringPrintf("%s/%s-%s%s", bugreport_dir_.c_str(), base_name_.c_str(),
Felipe Leme2b9b06c2016-10-14 09:13:06 -0700256 name_.c_str(), suffix.c_str());
Felipe Lemebbaf3c12016-10-11 14:32:25 -0700257}
258
Felipe Leme7447d7c2016-11-03 18:12:22 -0700259void Dumpstate::SetProgress(std::unique_ptr<Progress> progress) {
260 progress_ = std::move(progress);
261}
262
John Spurlock5ecd4be2014-01-29 14:14:40 -0500263void for_each_userid(void (*func)(int), const char *header) {
Felipe Leme8f00ed02016-12-07 17:42:44 -0800264 std::string title = header == nullptr ? "for_each_userid" : android::base::StringPrintf(
265 "for_each_userid(%s)", header);
266 DurationReporter duration_reporter(title);
Felipe Lemef0292972016-11-22 13:57:05 -0800267 if (PropertiesHelper::IsDryRun()) return;
Felipe Lemed402e7d2016-08-03 09:22:27 -0700268
John Spurlock5ecd4be2014-01-29 14:14:40 -0500269 DIR *d;
270 struct dirent *de;
271
Felipe Lemed8b94e52016-12-08 10:21:44 -0800272 if (header) printf("\n------ %s ------\n", header);
John Spurlock5ecd4be2014-01-29 14:14:40 -0500273 func(0);
274
275 if (!(d = opendir("/data/system/users"))) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800276 printf("Failed to open /data/system/users (%s)\n", strerror(errno));
John Spurlock5ecd4be2014-01-29 14:14:40 -0500277 return;
278 }
279
280 while ((de = readdir(d))) {
281 int userid;
282 if (de->d_type != DT_DIR || !(userid = atoi(de->d_name))) {
283 continue;
284 }
285 func(userid);
286 }
287
288 closedir(d);
289}
290
Colin Cross0c22e8b2012-11-02 15:46:56 -0700291static void __for_each_pid(void (*helper)(int, const char *, void *), const char *header, void *arg) {
Colin Crossf45fa6b2012-03-26 12:38:26 -0700292 DIR *d;
293 struct dirent *de;
294
295 if (!(d = opendir("/proc"))) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800296 printf("Failed to open /proc (%s)\n", strerror(errno));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700297 return;
298 }
299
Felipe Lemed8b94e52016-12-08 10:21:44 -0800300 if (header) printf("\n------ %s ------\n", header);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700301 while ((de = readdir(d))) {
302 int pid;
303 int fd;
304 char cmdpath[255];
305 char cmdline[255];
306
307 if (!(pid = atoi(de->d_name))) {
308 continue;
309 }
310
Colin Crossf45fa6b2012-03-26 12:38:26 -0700311 memset(cmdline, 0, sizeof(cmdline));
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800312
313 snprintf(cmdpath, sizeof(cmdpath), "/proc/%d/cmdline", pid);
314 if ((fd = TEMP_FAILURE_RETRY(open(cmdpath, O_RDONLY | O_CLOEXEC))) >= 0) {
315 TEMP_FAILURE_RETRY(read(fd, cmdline, sizeof(cmdline) - 2));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700316 close(fd);
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800317 if (cmdline[0]) {
318 helper(pid, cmdline, arg);
319 continue;
320 }
321 }
322
323 // if no cmdline, a kernel thread has comm
324 snprintf(cmdpath, sizeof(cmdpath), "/proc/%d/comm", pid);
325 if ((fd = TEMP_FAILURE_RETRY(open(cmdpath, O_RDONLY | O_CLOEXEC))) >= 0) {
326 TEMP_FAILURE_RETRY(read(fd, cmdline + 1, sizeof(cmdline) - 4));
327 close(fd);
328 if (cmdline[1]) {
329 cmdline[0] = '[';
330 size_t len = strcspn(cmdline, "\f\b\r\n");
331 cmdline[len] = ']';
332 cmdline[len+1] = '\0';
333 }
334 }
335 if (!cmdline[0]) {
336 strcpy(cmdline, "N/A");
Colin Crossf45fa6b2012-03-26 12:38:26 -0700337 }
Colin Cross0c22e8b2012-11-02 15:46:56 -0700338 helper(pid, cmdline, arg);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700339 }
340
341 closedir(d);
342}
343
Colin Cross0c22e8b2012-11-02 15:46:56 -0700344static void for_each_pid_helper(int pid, const char *cmdline, void *arg) {
Felipe Leme8620bb42015-11-10 11:04:45 -0800345 for_each_pid_func *func = (for_each_pid_func*) arg;
Colin Cross0c22e8b2012-11-02 15:46:56 -0700346 func(pid, cmdline);
347}
348
349void for_each_pid(for_each_pid_func func, const char *header) {
Felipe Leme8f00ed02016-12-07 17:42:44 -0800350 std::string title = header == nullptr ? "for_each_pid"
351 : android::base::StringPrintf("for_each_pid(%s)", header);
352 DurationReporter duration_reporter(title);
Felipe Lemef0292972016-11-22 13:57:05 -0800353 if (PropertiesHelper::IsDryRun()) return;
Felipe Lemed402e7d2016-08-03 09:22:27 -0700354
Felipe Leme515eb0d2015-12-14 15:09:56 -0800355 __for_each_pid(for_each_pid_helper, header, (void *) func);
Colin Cross0c22e8b2012-11-02 15:46:56 -0700356}
357
358static void for_each_tid_helper(int pid, const char *cmdline, void *arg) {
359 DIR *d;
360 struct dirent *de;
361 char taskpath[255];
Felipe Leme8620bb42015-11-10 11:04:45 -0800362 for_each_tid_func *func = (for_each_tid_func *) arg;
Colin Cross0c22e8b2012-11-02 15:46:56 -0700363
Nick Kralevichf0922cc2016-05-14 16:47:44 -0700364 snprintf(taskpath, sizeof(taskpath), "/proc/%d/task", pid);
Colin Cross0c22e8b2012-11-02 15:46:56 -0700365
366 if (!(d = opendir(taskpath))) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800367 printf("Failed to open %s (%s)\n", taskpath, strerror(errno));
Colin Cross0c22e8b2012-11-02 15:46:56 -0700368 return;
369 }
370
371 func(pid, pid, cmdline);
372
373 while ((de = readdir(d))) {
374 int tid;
375 int fd;
376 char commpath[255];
377 char comm[255];
378
379 if (!(tid = atoi(de->d_name))) {
380 continue;
381 }
382
383 if (tid == pid)
384 continue;
385
Nick Kralevichf0922cc2016-05-14 16:47:44 -0700386 snprintf(commpath, sizeof(commpath), "/proc/%d/comm", tid);
Colin Cross1493a392012-11-07 11:25:31 -0800387 memset(comm, 0, sizeof(comm));
Nick Kralevichcd67e9f2015-03-19 11:30:59 -0700388 if ((fd = TEMP_FAILURE_RETRY(open(commpath, O_RDONLY | O_CLOEXEC))) < 0) {
Colin Cross0c22e8b2012-11-02 15:46:56 -0700389 strcpy(comm, "N/A");
390 } else {
391 char *c;
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800392 TEMP_FAILURE_RETRY(read(fd, comm, sizeof(comm) - 2));
Colin Cross0c22e8b2012-11-02 15:46:56 -0700393 close(fd);
394
395 c = strrchr(comm, '\n');
396 if (c) {
397 *c = '\0';
398 }
399 }
400 func(pid, tid, comm);
401 }
402
403 closedir(d);
404}
405
406void for_each_tid(for_each_tid_func func, const char *header) {
Felipe Leme8f00ed02016-12-07 17:42:44 -0800407 std::string title = header == nullptr ? "for_each_tid"
408 : android::base::StringPrintf("for_each_tid(%s)", header);
409 DurationReporter duration_reporter(title);
Felipe Lemed8b94e52016-12-08 10:21:44 -0800410
Felipe Lemef0292972016-11-22 13:57:05 -0800411 if (PropertiesHelper::IsDryRun()) return;
Felipe Lemed402e7d2016-08-03 09:22:27 -0700412
Felipe Leme8620bb42015-11-10 11:04:45 -0800413 __for_each_pid(for_each_tid_helper, header, (void *) func);
Colin Cross0c22e8b2012-11-02 15:46:56 -0700414}
415
416void show_wchan(int pid, int tid, const char *name) {
Felipe Lemef0292972016-11-22 13:57:05 -0800417 if (PropertiesHelper::IsDryRun()) return;
Felipe Lemed402e7d2016-08-03 09:22:27 -0700418
Colin Crossf45fa6b2012-03-26 12:38:26 -0700419 char path[255];
420 char buffer[255];
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800421 int fd, ret, save_errno;
Colin Cross0c22e8b2012-11-02 15:46:56 -0700422 char name_buffer[255];
Colin Crossf45fa6b2012-03-26 12:38:26 -0700423
424 memset(buffer, 0, sizeof(buffer));
425
Nick Kralevichf0922cc2016-05-14 16:47:44 -0700426 snprintf(path, sizeof(path), "/proc/%d/wchan", tid);
Nick Kralevichcd67e9f2015-03-19 11:30:59 -0700427 if ((fd = TEMP_FAILURE_RETRY(open(path, O_RDONLY | O_CLOEXEC))) < 0) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800428 printf("Failed to open '%s' (%s)\n", path, strerror(errno));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700429 return;
430 }
431
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800432 ret = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer)));
433 save_errno = errno;
434 close(fd);
435
436 if (ret < 0) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800437 printf("Failed to read '%s' (%s)\n", path, strerror(save_errno));
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800438 return;
Colin Crossf45fa6b2012-03-26 12:38:26 -0700439 }
440
Colin Cross0c22e8b2012-11-02 15:46:56 -0700441 snprintf(name_buffer, sizeof(name_buffer), "%*s%s",
442 pid == tid ? 0 : 3, "", name);
443
Felipe Lemed8b94e52016-12-08 10:21:44 -0800444 printf("%-7d %-32s %s\n", tid, name_buffer, buffer);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700445
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800446 return;
447}
448
449// print time in centiseconds
450static void snprcent(char *buffer, size_t len, size_t spc,
451 unsigned long long time) {
452 static long hz; // cache discovered hz
453
454 if (hz <= 0) {
455 hz = sysconf(_SC_CLK_TCK);
456 if (hz <= 0) {
457 hz = 1000;
458 }
459 }
460
461 // convert to centiseconds
462 time = (time * 100 + (hz / 2)) / hz;
463
464 char str[16];
465
466 snprintf(str, sizeof(str), " %llu.%02u",
467 time / 100, (unsigned)(time % 100));
468 size_t offset = strlen(buffer);
469 snprintf(buffer + offset, (len > offset) ? len - offset : 0,
470 "%*s", (spc > offset) ? (int)(spc - offset) : 0, str);
471}
472
473// print permille as a percent
474static void snprdec(char *buffer, size_t len, size_t spc, unsigned permille) {
475 char str[16];
476
477 snprintf(str, sizeof(str), " %u.%u%%", permille / 10, permille % 10);
478 size_t offset = strlen(buffer);
479 snprintf(buffer + offset, (len > offset) ? len - offset : 0,
480 "%*s", (spc > offset) ? (int)(spc - offset) : 0, str);
481}
482
483void show_showtime(int pid, const char *name) {
Felipe Lemef0292972016-11-22 13:57:05 -0800484 if (PropertiesHelper::IsDryRun()) return;
Felipe Lemed402e7d2016-08-03 09:22:27 -0700485
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800486 char path[255];
487 char buffer[1023];
488 int fd, ret, save_errno;
489
490 memset(buffer, 0, sizeof(buffer));
491
Nick Kralevichf0922cc2016-05-14 16:47:44 -0700492 snprintf(path, sizeof(path), "/proc/%d/stat", pid);
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800493 if ((fd = TEMP_FAILURE_RETRY(open(path, O_RDONLY | O_CLOEXEC))) < 0) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800494 printf("Failed to open '%s' (%s)\n", path, strerror(errno));
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800495 return;
496 }
497
498 ret = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer)));
499 save_errno = errno;
Colin Crossf45fa6b2012-03-26 12:38:26 -0700500 close(fd);
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800501
502 if (ret < 0) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800503 printf("Failed to read '%s' (%s)\n", path, strerror(save_errno));
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800504 return;
505 }
506
507 // field 14 is utime
508 // field 15 is stime
509 // field 42 is iotime
510 unsigned long long utime = 0, stime = 0, iotime = 0;
511 if (sscanf(buffer,
Mark Salyzyn791ddd32016-02-10 07:41:12 -0800512 "%*u %*s %*s %*d %*d %*d %*d %*d %*d %*d %*d "
513 "%*d %*d %llu %llu %*d %*d %*d %*d %*d %*d "
514 "%*d %*d %*d %*d %*d %*d %*d %*d %*d %*d "
515 "%*d %*d %*d %*d %*d %*d %*d %*d %*d %llu ",
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800516 &utime, &stime, &iotime) != 3) {
517 return;
518 }
519
520 unsigned long long total = utime + stime;
521 if (!total) {
522 return;
523 }
524
525 unsigned permille = (iotime * 1000 + (total / 2)) / total;
526 if (permille > 1000) {
527 permille = 1000;
528 }
529
530 // try to beautify and stabilize columns at <80 characters
531 snprintf(buffer, sizeof(buffer), "%-6d%s", pid, name);
532 if ((name[0] != '[') || utime) {
533 snprcent(buffer, sizeof(buffer), 57, utime);
534 }
535 snprcent(buffer, sizeof(buffer), 65, stime);
536 if ((name[0] != '[') || iotime) {
537 snprcent(buffer, sizeof(buffer), 73, iotime);
538 }
539 if (iotime) {
540 snprdec(buffer, sizeof(buffer), 79, permille);
541 }
Felipe Lemed8b94e52016-12-08 10:21:44 -0800542 puts(buffer); // adds a trailing newline
Mark Salyzyn0751efa2016-02-05 15:33:17 -0800543
Colin Crossf45fa6b2012-03-26 12:38:26 -0700544 return;
545}
546
547void do_dmesg() {
Felipe Leme78f2c862015-12-21 09:55:22 -0800548 const char *title = "KERNEL LOG (dmesg)";
549 DurationReporter duration_reporter(title);
Felipe Lemed8b94e52016-12-08 10:21:44 -0800550 printf("------ %s ------\n", title);
Felipe Leme78f2c862015-12-21 09:55:22 -0800551
Felipe Lemef0292972016-11-22 13:57:05 -0800552 if (PropertiesHelper::IsDryRun()) return;
Felipe Lemed402e7d2016-08-03 09:22:27 -0700553
Elliott Hughes5f87b312012-09-17 11:43:40 -0700554 /* Get size of kernel buffer */
555 int size = klogctl(KLOG_SIZE_BUFFER, NULL, 0);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700556 if (size <= 0) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800557 printf("Unexpected klogctl return value: %d\n\n", size);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700558 return;
559 }
560 char *buf = (char *) malloc(size + 1);
561 if (buf == NULL) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800562 printf("memory allocation failed\n\n");
Colin Crossf45fa6b2012-03-26 12:38:26 -0700563 return;
564 }
565 int retval = klogctl(KLOG_READ_ALL, buf, size);
566 if (retval < 0) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800567 printf("klogctl failure\n\n");
Colin Crossf45fa6b2012-03-26 12:38:26 -0700568 free(buf);
569 return;
570 }
571 buf[retval] = '\0';
Felipe Lemed8b94e52016-12-08 10:21:44 -0800572 printf("%s\n\n", buf);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700573 free(buf);
574 return;
575}
576
577void do_showmap(int pid, const char *name) {
578 char title[255];
579 char arg[255];
580
Nick Kralevichf0922cc2016-05-14 16:47:44 -0700581 snprintf(title, sizeof(title), "SHOW MAP %d (%s)", pid, name);
582 snprintf(arg, sizeof(arg), "%d", pid);
Felipe Lemef0292972016-11-22 13:57:05 -0800583 RunCommand(title, {"showmap", "-q", arg}, CommandOptions::AS_ROOT);
Felipe Lemebda15a02016-11-16 17:48:25 -0800584}
585
Felipe Leme678727a2016-09-21 17:22:11 -0700586int Dumpstate::DumpFile(const std::string& title, const std::string& path) {
Felipe Leme9a523ae2016-10-20 15:10:33 -0700587 DurationReporter duration_reporter(title);
Felipe Leme46b85da2016-11-21 17:40:45 -0800588
Felipe Lemef0292972016-11-22 13:57:05 -0800589 int status = DumpFileToFd(STDOUT_FILENO, title, path);
Felipe Leme46b85da2016-11-21 17:40:45 -0800590
Felipe Lemef0292972016-11-22 13:57:05 -0800591 UpdateProgress(WEIGHT_FILE);
Felipe Leme46b85da2016-11-21 17:40:45 -0800592
Felipe Leme46b85da2016-11-21 17:40:45 -0800593 return status;
Christopher Ferris54bcc5f2015-02-10 12:15:01 -0800594}
595
Felipe Leme71a74ac2016-03-17 15:43:25 -0700596int read_file_as_long(const char *path, long int *output) {
597 int fd = TEMP_FAILURE_RETRY(open(path, O_RDONLY | O_NONBLOCK | O_CLOEXEC));
598 if (fd < 0) {
599 int err = errno;
600 MYLOGE("Error opening file descriptor for %s: %s\n", path, strerror(err));
601 return -1;
602 }
603 char buffer[50];
604 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer)));
605 if (bytes_read == -1) {
606 MYLOGE("Error reading file %s: %s\n", path, strerror(errno));
607 return -2;
608 }
609 if (bytes_read == 0) {
610 MYLOGE("File %s is empty\n", path);
611 return -3;
612 }
613 *output = atoi(buffer);
614 return 0;
615}
616
Mark Salyzyn326842f2015-04-30 09:49:41 -0700617/* calls skip to gate calling dump_from_fd recursively
618 * in the specified directory. dump_from_fd defaults to
619 * dump_file_from_fd above when set to NULL. skip defaults
620 * to false when set to NULL. dump_from_fd will always be
621 * called with title NULL.
622 */
Felipe Leme678727a2016-09-21 17:22:11 -0700623int dump_files(const std::string& title, const char* dir, bool (*skip)(const char* path),
624 int (*dump_from_fd)(const char* title, const char* path, int fd)) {
Felipe Leme78f2c862015-12-21 09:55:22 -0800625 DurationReporter duration_reporter(title);
Mark Salyzyn326842f2015-04-30 09:49:41 -0700626 DIR *dirp;
627 struct dirent *d;
628 char *newpath = NULL;
Felipe Leme8620bb42015-11-10 11:04:45 -0800629 const char *slash = "/";
Mark Salyzyn326842f2015-04-30 09:49:41 -0700630 int fd, retval = 0;
631
Felipe Leme678727a2016-09-21 17:22:11 -0700632 if (!title.empty()) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800633 printf("------ %s (%s) ------\n", title.c_str(), dir);
Mark Salyzyn326842f2015-04-30 09:49:41 -0700634 }
Felipe Lemef0292972016-11-22 13:57:05 -0800635 if (PropertiesHelper::IsDryRun()) return 0;
Mark Salyzyn326842f2015-04-30 09:49:41 -0700636
637 if (dir[strlen(dir) - 1] == '/') {
638 ++slash;
639 }
640 dirp = opendir(dir);
641 if (dirp == NULL) {
642 retval = -errno;
Felipe Leme107a05f2016-03-08 15:11:15 -0800643 MYLOGE("%s: %s\n", dir, strerror(errno));
Mark Salyzyn326842f2015-04-30 09:49:41 -0700644 return retval;
645 }
646
647 if (!dump_from_fd) {
648 dump_from_fd = dump_file_from_fd;
649 }
650 for (; ((d = readdir(dirp))); free(newpath), newpath = NULL) {
651 if ((d->d_name[0] == '.')
652 && (((d->d_name[1] == '.') && (d->d_name[2] == '\0'))
653 || (d->d_name[1] == '\0'))) {
654 continue;
655 }
656 asprintf(&newpath, "%s%s%s%s", dir, slash, d->d_name,
657 (d->d_type == DT_DIR) ? "/" : "");
658 if (!newpath) {
659 retval = -errno;
660 continue;
661 }
662 if (skip && (*skip)(newpath)) {
663 continue;
664 }
665 if (d->d_type == DT_DIR) {
Felipe Leme678727a2016-09-21 17:22:11 -0700666 int ret = dump_files("", newpath, skip, dump_from_fd);
Mark Salyzyn326842f2015-04-30 09:49:41 -0700667 if (ret < 0) {
668 retval = ret;
669 }
670 continue;
671 }
672 fd = TEMP_FAILURE_RETRY(open(newpath, O_RDONLY | O_NONBLOCK | O_CLOEXEC));
673 if (fd < 0) {
674 retval = fd;
Felipe Lemed8b94e52016-12-08 10:21:44 -0800675 printf("*** %s: %s\n", newpath, strerror(errno));
Mark Salyzyn326842f2015-04-30 09:49:41 -0700676 continue;
677 }
678 (*dump_from_fd)(NULL, newpath, fd);
679 }
680 closedir(dirp);
Felipe Leme678727a2016-09-21 17:22:11 -0700681 if (!title.empty()) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800682 printf("\n");
Mark Salyzyn326842f2015-04-30 09:49:41 -0700683 }
684 return retval;
685}
686
Christopher Ferris54bcc5f2015-02-10 12:15:01 -0800687/* fd must have been opened with the flag O_NONBLOCK. With this flag set,
688 * it's possible to avoid issues where opening the file itself can get
689 * stuck.
690 */
691int dump_file_from_fd(const char *title, const char *path, int fd) {
Felipe Lemef0292972016-11-22 13:57:05 -0800692 if (PropertiesHelper::IsDryRun()) return 0;
Felipe Lemed402e7d2016-08-03 09:22:27 -0700693
Christopher Ferris54bcc5f2015-02-10 12:15:01 -0800694 int flags = fcntl(fd, F_GETFL);
695 if (flags == -1) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800696 printf("*** %s: failed to get flags on fd %d: %s\n", path, fd, strerror(errno));
Christopher Ferrised24d2a2015-11-12 14:01:56 -0800697 close(fd);
Christopher Ferris54bcc5f2015-02-10 12:15:01 -0800698 return -1;
699 } else if (!(flags & O_NONBLOCK)) {
Felipe Lemed8b94e52016-12-08 10:21:44 -0800700 printf("*** %s: fd must have O_NONBLOCK set.\n", path);
Christopher Ferrised24d2a2015-11-12 14:01:56 -0800701 close(fd);
Christopher Ferris54bcc5f2015-02-10 12:15:01 -0800702 return -1;
703 }
Felipe Lemef0292972016-11-22 13:57:05 -0800704 return DumpFileFromFdToFd(title, path, fd, STDOUT_FILENO, PropertiesHelper::IsDryRun());
Colin Crossf45fa6b2012-03-26 12:38:26 -0700705}
706
Felipe Leme46b85da2016-11-21 17:40:45 -0800707int Dumpstate::RunCommand(const std::string& title, const std::vector<std::string>& full_command,
708 const CommandOptions& options) {
709 DurationReporter duration_reporter(title);
710
Felipe Lemef0292972016-11-22 13:57:05 -0800711 int status = RunCommandToFd(STDOUT_FILENO, title, full_command, options);
Felipe Leme46b85da2016-11-21 17:40:45 -0800712
Felipe Lemef0292972016-11-22 13:57:05 -0800713 /* TODO: for now we're simplifying the progress calculation by using the
714 * timeout as the weight. It's a good approximation for most cases, except when calling dumpsys,
715 * where its weight should be much higher proportionally to its timeout.
716 * Ideally, it should use a options.EstimatedDuration() instead...*/
717 UpdateProgress(options.Timeout());
Felipe Leme46b85da2016-11-21 17:40:45 -0800718
Felipe Leme46b85da2016-11-21 17:40:45 -0800719 return status;
720}
721
Felipe Leme9a523ae2016-10-20 15:10:33 -0700722void Dumpstate::RunDumpsys(const std::string& title, const std::vector<std::string>& dumpsys_args,
Felipe Leme678727a2016-09-21 17:22:11 -0700723 const CommandOptions& options, long dumpsysTimeout) {
Felipe Leme5bcce572016-09-27 09:21:08 -0700724 long timeout = dumpsysTimeout > 0 ? dumpsysTimeout : options.Timeout();
725 std::vector<std::string> dumpsys = {"/system/bin/dumpsys", "-t", std::to_string(timeout)};
Felipe Leme9a523ae2016-10-20 15:10:33 -0700726 dumpsys.insert(dumpsys.end(), dumpsys_args.begin(), dumpsys_args.end());
Felipe Leme678727a2016-09-21 17:22:11 -0700727 RunCommand(title, dumpsys, options);
Felipe Leme30dbfa12016-09-02 12:43:26 -0700728}
729
Felipe Leme2628e9e2016-04-12 16:36:51 -0700730int open_socket(const char *service) {
Colin Crossf45fa6b2012-03-26 12:38:26 -0700731 int s = android_get_control_socket(service);
732 if (s < 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -0800733 MYLOGE("android_get_control_socket(%s): %s\n", service, strerror(errno));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700734 exit(1);
735 }
Nick Kralevichcd67e9f2015-03-19 11:30:59 -0700736 fcntl(s, F_SETFD, FD_CLOEXEC);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700737 if (listen(s, 4) < 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -0800738 MYLOGE("listen(control socket): %s\n", strerror(errno));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700739 exit(1);
740 }
741
742 struct sockaddr addr;
743 socklen_t alen = sizeof(addr);
744 int fd = accept(s, &addr, &alen);
745 if (fd < 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -0800746 MYLOGE("accept(control socket): %s\n", strerror(errno));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700747 exit(1);
748 }
749
Felipe Leme2628e9e2016-04-12 16:36:51 -0700750 return fd;
751}
752
753/* redirect output to a service control socket */
754void redirect_to_socket(FILE *redirect, const char *service) {
755 int fd = open_socket(service);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700756 fflush(redirect);
757 dup2(fd, fileno(redirect));
758 close(fd);
759}
760
Felipe Leme2628e9e2016-04-12 16:36:51 -0700761// TODO: should call is_valid_output_file and/or be merged into it.
Felipe Leme111b9d02016-02-03 09:28:24 -0800762void create_parent_dirs(const char *path) {
Srinath Sridharanfdf52d32016-02-01 15:50:22 -0800763 char *chp = const_cast<char *> (path);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700764
765 /* skip initial slash */
766 if (chp[0] == '/')
767 chp++;
768
769 /* create leading directories, if necessary */
Felipe Leme111b9d02016-02-03 09:28:24 -0800770 struct stat dir_stat;
Colin Crossf45fa6b2012-03-26 12:38:26 -0700771 while (chp && chp[0]) {
772 chp = strchr(chp, '/');
773 if (chp) {
774 *chp = 0;
Felipe Leme111b9d02016-02-03 09:28:24 -0800775 if (stat(path, &dir_stat) == -1 || !S_ISDIR(dir_stat.st_mode)) {
Felipe Lemecbce55d2016-02-08 09:53:18 -0800776 MYLOGI("Creating directory %s\n", path);
Felipe Leme111b9d02016-02-03 09:28:24 -0800777 if (mkdir(path, 0770)) { /* drwxrwx--- */
Felipe Lemecbce55d2016-02-08 09:53:18 -0800778 MYLOGE("Unable to create directory %s: %s\n", path, strerror(errno));
Felipe Leme111b9d02016-02-03 09:28:24 -0800779 } else if (chown(path, AID_SHELL, AID_SHELL)) {
Felipe Lemecbce55d2016-02-08 09:53:18 -0800780 MYLOGE("Unable to change ownership of dir %s: %s\n", path, strerror(errno));
Felipe Leme111b9d02016-02-03 09:28:24 -0800781 }
782 }
Colin Crossf45fa6b2012-03-26 12:38:26 -0700783 *chp++ = '/';
784 }
785 }
Felipe Leme111b9d02016-02-03 09:28:24 -0800786}
787
Felipe Leme0f3fb202016-06-10 17:10:53 -0700788void _redirect_to_file(FILE *redirect, char *path, int truncate_flag) {
Felipe Leme111b9d02016-02-03 09:28:24 -0800789 create_parent_dirs(path);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700790
Felipe Leme0f3fb202016-06-10 17:10:53 -0700791 int fd = TEMP_FAILURE_RETRY(open(path,
792 O_WRONLY | O_CREAT | truncate_flag | O_CLOEXEC | O_NOFOLLOW,
Christopher Ferrisff4a4dc2015-02-09 16:24:47 -0800793 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700794 if (fd < 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -0800795 MYLOGE("%s: %s\n", path, strerror(errno));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700796 exit(1);
797 }
798
Christopher Ferrisff4a4dc2015-02-09 16:24:47 -0800799 TEMP_FAILURE_RETRY(dup2(fd, fileno(redirect)));
Colin Crossf45fa6b2012-03-26 12:38:26 -0700800 close(fd);
Colin Crossf45fa6b2012-03-26 12:38:26 -0700801}
802
Felipe Leme0f3fb202016-06-10 17:10:53 -0700803void redirect_to_file(FILE *redirect, char *path) {
804 _redirect_to_file(redirect, path, O_TRUNC);
805}
806
807void redirect_to_existing_file(FILE *redirect, char *path) {
808 _redirect_to_file(redirect, path, O_APPEND);
809}
810
Steven Moreland17b29e12017-03-21 18:38:05 -0700811static bool should_dump_hal_interface(const char* interface) {
812 for (const char** i = hal_interfaces_to_dump; *i; i++) {
813 if (!strcmp(*i, interface)) {
814 return true;
815 }
816 }
817 return false;
818}
819
Jeff Brownbf7f4922012-06-07 16:40:01 -0700820static bool should_dump_native_traces(const char* path) {
821 for (const char** p = native_processes_to_dump; *p; p++) {
822 if (!strcmp(*p, path)) {
823 return true;
824 }
825 }
826 return false;
827}
828
Steven Moreland17b29e12017-03-21 18:38:05 -0700829std::set<int> get_interesting_hal_pids() {
830 using android::hidl::manager::V1_0::IServiceManager;
831 using android::sp;
832 using android::hardware::Return;
833
834 sp<IServiceManager> manager = IServiceManager::getService();
835 std::set<int> pids;
836
837 Return<void> ret = manager->debugDump([&](auto& hals) {
838 for (const auto &info : hals) {
839 if (info.pid == static_cast<int>(IServiceManager::PidConstant::NO_PID)) {
840 continue;
841 }
842
Scott Randolph5a0c4852017-04-03 14:05:49 -0700843 if (!should_dump_hal_interface(info.interfaceName.c_str())) {
Steven Moreland17b29e12017-03-21 18:38:05 -0700844 continue;
845 }
846
847 pids.insert(info.pid);
848 }
849 });
850
851 if (!ret.isOk()) {
852 MYLOGE("Could not get list of HAL PIDs: %s\n", ret.description().c_str());
853 }
854
855 return pids; // whether it was okay or not
856}
857
Narayan Kamath8f788292017-05-25 13:20:39 +0100858const char* DumpTraces(const std::string& traces_path);
859const char* DumpTracesTombstoned(const std::string& traces_dir);
860
Jeff Brownbf7f4922012-06-07 16:40:01 -0700861/* dump Dalvik and native stack traces, return the trace file location (NULL if none) */
862const char *dump_traces() {
Felipe Lemee184f662016-10-27 10:04:47 -0700863 DurationReporter duration_reporter("DUMP TRACES");
Felipe Lemed402e7d2016-08-03 09:22:27 -0700864
Narayan Kamath8f788292017-05-25 13:20:39 +0100865 const std::string traces_dir = android::base::GetProperty("dalvik.vm.stack-trace-dir", "");
866 if (!traces_dir.empty()) {
867 return DumpTracesTombstoned(traces_dir);
868 }
Jeff Brownbf7f4922012-06-07 16:40:01 -0700869
Narayan Kamath8f788292017-05-25 13:20:39 +0100870 const std::string traces_file = android::base::GetProperty("dalvik.vm.stack-trace-file", "");
871 if (!traces_file.empty()) {
872 return DumpTraces(traces_file);
873 }
Colin Crossf45fa6b2012-03-26 12:38:26 -0700874
Narayan Kamath8f788292017-05-25 13:20:39 +0100875 return nullptr;
876}
877
878static bool IsZygote(int pid) {
879 static const std::string kZygotePrefix = "zygote";
880
881 std::string cmdline;
882 if (!android::base::ReadFileToString(android::base::StringPrintf("/proc/%d/cmdline", pid),
883 &cmdline)) {
884 return true;
885 }
886
887 return (cmdline.find(kZygotePrefix) == 0);
888}
889
890const char* DumpTracesTombstoned(const std::string& traces_dir) {
891 const std::string temp_file_pattern = traces_dir + "/dumptrace_XXXXXX";
892
893 const size_t buf_size = temp_file_pattern.length() + 1;
894 std::unique_ptr<char[]> file_name_buf(new char[buf_size]);
895 memcpy(file_name_buf.get(), temp_file_pattern.c_str(), buf_size);
896
897 // Create a new, empty file to receive all trace dumps.
898 //
899 // TODO: This can be simplified once we remove support for the old style
900 // dumps. We can have a file descriptor passed in to dump_traces instead
901 // of creating a file, closing it and then reopening it again.
902 android::base::unique_fd fd(mkostemp(file_name_buf.get(), O_APPEND | O_CLOEXEC));
903 if (fd < 0) {
904 MYLOGE("mkostemp on pattern %s: %s\n", file_name_buf.get(), strerror(errno));
905 return nullptr;
906 }
907
908 // Nobody should have access to this temporary file except dumpstate, but we
909 // temporarily grant 'read' to 'others' here because this file is created
910 // when tombstoned is still running as root, but dumped after dropping. This
911 // can go away once support for old style dumping has.
912 const int chmod_ret = fchmod(fd, 0666);
913 if (chmod_ret < 0) {
914 MYLOGE("fchmod on %s failed: %s\n", file_name_buf.get(), strerror(errno));
915 return nullptr;
916 }
917
918 std::unique_ptr<DIR, decltype(&closedir)> proc(opendir("/proc"), closedir);
919 if (proc.get() == nullptr) {
920 MYLOGE("opendir /proc failed: %s\n", strerror(errno));
921 return nullptr;
922 }
923
924 // Number of times process dumping has timed out. If we encounter too many
925 // failures, we'll give up.
926 int timeout_failures = 0;
927 bool dalvik_found = false;
928
929 const std::set<int> hal_pids = get_interesting_hal_pids();
930
931 struct dirent* d;
932 while ((d = readdir(proc.get()))) {
933 int pid = atoi(d->d_name);
934 if (pid <= 0) {
935 continue;
936 }
937
938 const std::string link_name = android::base::StringPrintf("/proc/%d/exe", pid);
939 std::string exe;
940 if (!android::base::Readlink(link_name, &exe)) {
941 continue;
942 }
943
944 bool is_java_process;
945 if (exe == "/system/bin/app_process32" || exe == "/system/bin/app_process64") {
946 // Don't bother dumping backtraces for the zygote.
947 if (IsZygote(pid)) {
948 continue;
949 }
950
951 dalvik_found = true;
952 is_java_process = true;
953 } else if (should_dump_native_traces(exe.c_str()) || hal_pids.find(pid) != hal_pids.end()) {
954 is_java_process = false;
955 } else {
956 // Probably a native process we don't care about, continue.
957 continue;
958 }
959
960 // If 3 backtrace dumps fail in a row, consider debuggerd dead.
961 if (timeout_failures == 3) {
962 dprintf(fd, "ERROR: Too many stack dump failures, exiting.\n");
963 break;
964 }
965
966 const uint64_t start = Nanotime();
967 const int ret = dump_backtrace_to_file_timeout(
968 pid, is_java_process ? kDebuggerdJavaBacktrace : kDebuggerdNativeBacktrace,
969 is_java_process ? 5 : 20, fd);
970
971 if (ret == -1) {
972 dprintf(fd, "dumping failed, likely due to a timeout\n");
973 timeout_failures++;
974 continue;
975 }
976
977 // We've successfully dumped stack traces, reset the failure count
978 // and write a summary of the elapsed time to the file and continue with the
979 // next process.
980 timeout_failures = 0;
981
982 dprintf(fd, "[dump %s stack %d: %.3fs elapsed]\n", is_java_process ? "dalvik" : "native",
983 pid, (float)(Nanotime() - start) / NANOS_PER_SEC);
984 }
985
986 if (!dalvik_found) {
987 MYLOGE("Warning: no Dalvik processes found to dump stacks\n");
988 }
989
990 return file_name_buf.release();
991}
992
993const char* DumpTraces(const std::string& traces_path) {
994 const char* result = NULL;
Colin Crossf45fa6b2012-03-26 12:38:26 -0700995 /* move the old traces.txt (if any) out of the way temporarily */
Felipe Lemee184f662016-10-27 10:04:47 -0700996 std::string anrtraces_path = traces_path + ".anr";
997 if (rename(traces_path.c_str(), anrtraces_path.c_str()) && errno != ENOENT) {
998 MYLOGE("rename(%s, %s): %s\n", traces_path.c_str(), anrtraces_path.c_str(), strerror(errno));
Felipe Leme96c2bbb2016-09-26 09:21:21 -0700999 return nullptr; // Can't rename old traces.txt -- no permission? -- leave it alone instead
Colin Crossf45fa6b2012-03-26 12:38:26 -07001000 }
1001
Colin Crossf45fa6b2012-03-26 12:38:26 -07001002 /* create a new, empty traces.txt file to receive stack dumps */
Josh Gao989b8122017-01-13 22:09:40 -08001003 int fd = TEMP_FAILURE_RETRY(
Josh Gaoe75d9632017-01-18 16:14:03 -08001004 open(traces_path.c_str(), O_CREAT | O_WRONLY | O_APPEND | O_TRUNC | O_NOFOLLOW | O_CLOEXEC,
Josh Gao989b8122017-01-13 22:09:40 -08001005 0666)); /* -rw-rw-rw- */
Colin Crossf45fa6b2012-03-26 12:38:26 -07001006 if (fd < 0) {
Felipe Lemee184f662016-10-27 10:04:47 -07001007 MYLOGE("%s: %s\n", traces_path.c_str(), strerror(errno));
Felipe Leme96c2bbb2016-09-26 09:21:21 -07001008 return nullptr;
Colin Crossf45fa6b2012-03-26 12:38:26 -07001009 }
Nick Kralevichc7f1fe22012-04-06 09:31:28 -07001010 int chmod_ret = fchmod(fd, 0666);
1011 if (chmod_ret < 0) {
Felipe Lemee184f662016-10-27 10:04:47 -07001012 MYLOGE("fchmod on %s failed: %s\n", traces_path.c_str(), strerror(errno));
Nick Kralevichc7f1fe22012-04-06 09:31:28 -07001013 close(fd);
Felipe Leme96c2bbb2016-09-26 09:21:21 -07001014 return nullptr;
Nick Kralevichc7f1fe22012-04-06 09:31:28 -07001015 }
Colin Crossf45fa6b2012-03-26 12:38:26 -07001016
Felipe Leme8620bb42015-11-10 11:04:45 -08001017 /* Variables below must be initialized before 'goto' statements */
1018 int dalvik_found = 0;
1019 int ifd, wfd = -1;
Steven Moreland17b29e12017-03-21 18:38:05 -07001020 std::set<int> hal_pids = get_interesting_hal_pids();
Felipe Leme8620bb42015-11-10 11:04:45 -08001021
Colin Crossf45fa6b2012-03-26 12:38:26 -07001022 /* walk /proc and kill -QUIT all Dalvik processes */
1023 DIR *proc = opendir("/proc");
1024 if (proc == NULL) {
Felipe Leme107a05f2016-03-08 15:11:15 -08001025 MYLOGE("/proc: %s\n", strerror(errno));
Jeff Brownbf7f4922012-06-07 16:40:01 -07001026 goto error_close_fd;
Colin Crossf45fa6b2012-03-26 12:38:26 -07001027 }
1028
1029 /* use inotify to find when processes are done dumping */
Felipe Leme8620bb42015-11-10 11:04:45 -08001030 ifd = inotify_init();
Colin Crossf45fa6b2012-03-26 12:38:26 -07001031 if (ifd < 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -08001032 MYLOGE("inotify_init: %s\n", strerror(errno));
Jeff Brownbf7f4922012-06-07 16:40:01 -07001033 goto error_close_fd;
Colin Crossf45fa6b2012-03-26 12:38:26 -07001034 }
1035
Felipe Lemee184f662016-10-27 10:04:47 -07001036 wfd = inotify_add_watch(ifd, traces_path.c_str(), IN_CLOSE_WRITE);
Colin Crossf45fa6b2012-03-26 12:38:26 -07001037 if (wfd < 0) {
Felipe Lemee184f662016-10-27 10:04:47 -07001038 MYLOGE("inotify_add_watch(%s): %s\n", traces_path.c_str(), strerror(errno));
Jeff Brownbf7f4922012-06-07 16:40:01 -07001039 goto error_close_ifd;
Colin Crossf45fa6b2012-03-26 12:38:26 -07001040 }
1041
1042 struct dirent *d;
Colin Crossf45fa6b2012-03-26 12:38:26 -07001043 while ((d = readdir(proc))) {
1044 int pid = atoi(d->d_name);
1045 if (pid <= 0) continue;
1046
Jeff Brownbf7f4922012-06-07 16:40:01 -07001047 char path[PATH_MAX];
1048 char data[PATH_MAX];
Colin Crossf45fa6b2012-03-26 12:38:26 -07001049 snprintf(path, sizeof(path), "/proc/%d/exe", pid);
Jeff Brownbf7f4922012-06-07 16:40:01 -07001050 ssize_t len = readlink(path, data, sizeof(data) - 1);
1051 if (len <= 0) {
Colin Crossf45fa6b2012-03-26 12:38:26 -07001052 continue;
1053 }
Jeff Brownbf7f4922012-06-07 16:40:01 -07001054 data[len] = '\0';
Colin Crossf45fa6b2012-03-26 12:38:26 -07001055
Colin Cross0d6180f2014-07-16 19:00:46 -07001056 if (!strncmp(data, "/system/bin/app_process", strlen("/system/bin/app_process"))) {
Jeff Brownbf7f4922012-06-07 16:40:01 -07001057 /* skip zygote -- it won't dump its stack anyway */
1058 snprintf(path, sizeof(path), "/proc/%d/cmdline", pid);
Nick Kralevichcd67e9f2015-03-19 11:30:59 -07001059 int cfd = TEMP_FAILURE_RETRY(open(path, O_RDONLY | O_CLOEXEC));
Jeff Brown1dc94e32014-09-11 14:15:27 -07001060 len = read(cfd, data, sizeof(data) - 1);
1061 close(cfd);
Jeff Brownbf7f4922012-06-07 16:40:01 -07001062 if (len <= 0) {
1063 continue;
1064 }
1065 data[len] = '\0';
Colin Cross0d6180f2014-07-16 19:00:46 -07001066 if (!strncmp(data, "zygote", strlen("zygote"))) {
Jeff Brownbf7f4922012-06-07 16:40:01 -07001067 continue;
1068 }
1069
1070 ++dalvik_found;
Felipe Lemef0292972016-11-22 13:57:05 -08001071 uint64_t start = Nanotime();
Jeff Brownbf7f4922012-06-07 16:40:01 -07001072 if (kill(pid, SIGQUIT)) {
Felipe Leme107a05f2016-03-08 15:11:15 -08001073 MYLOGE("kill(%d, SIGQUIT): %s\n", pid, strerror(errno));
Jeff Brownbf7f4922012-06-07 16:40:01 -07001074 continue;
1075 }
1076
1077 /* wait for the writable-close notification from inotify */
1078 struct pollfd pfd = { ifd, POLLIN, 0 };
Felipe Leme61884122016-06-13 09:23:30 -07001079 int ret = poll(&pfd, 1, TRACE_DUMP_TIMEOUT_MS);
Jeff Brownbf7f4922012-06-07 16:40:01 -07001080 if (ret < 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -08001081 MYLOGE("poll: %s\n", strerror(errno));
Jeff Brownbf7f4922012-06-07 16:40:01 -07001082 } else if (ret == 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -08001083 MYLOGE("warning: timed out dumping pid %d\n", pid);
Jeff Brownbf7f4922012-06-07 16:40:01 -07001084 } else {
1085 struct inotify_event ie;
1086 read(ifd, &ie, sizeof(ie));
1087 }
Jeff Brown1dc94e32014-09-11 14:15:27 -07001088
1089 if (lseek(fd, 0, SEEK_END) < 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -08001090 MYLOGE("lseek: %s\n", strerror(errno));
Jeff Brown1dc94e32014-09-11 14:15:27 -07001091 } else {
Felipe Lemeb0f669d2016-09-26 18:26:11 -07001092 dprintf(fd, "[dump dalvik stack %d: %.3fs elapsed]\n", pid,
Felipe Lemef0292972016-11-22 13:57:05 -08001093 (float)(Nanotime() - start) / NANOS_PER_SEC);
Jeff Brown1dc94e32014-09-11 14:15:27 -07001094 }
Steven Moreland17b29e12017-03-21 18:38:05 -07001095 } else if (should_dump_native_traces(data) ||
1096 hal_pids.find(pid) != hal_pids.end()) {
Jeff Brownbf7f4922012-06-07 16:40:01 -07001097 /* dump native process if appropriate */
1098 if (lseek(fd, 0, SEEK_END) < 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -08001099 MYLOGE("lseek: %s\n", strerror(errno));
Jeff Brownbf7f4922012-06-07 16:40:01 -07001100 } else {
Christopher Ferris31ef8552015-01-14 13:23:30 -08001101 static uint16_t timeout_failures = 0;
Felipe Lemef0292972016-11-22 13:57:05 -08001102 uint64_t start = Nanotime();
Christopher Ferris31ef8552015-01-14 13:23:30 -08001103
1104 /* If 3 backtrace dumps fail in a row, consider debuggerd dead. */
1105 if (timeout_failures == 3) {
1106 dprintf(fd, "too many stack dump failures, skipping...\n");
Narayan Kamath93b36d12017-05-31 10:33:28 +01001107 } else if (dump_backtrace_to_file_timeout(
1108 pid, kDebuggerdNativeBacktrace, 20, fd) == -1) {
Christopher Ferris31ef8552015-01-14 13:23:30 -08001109 dprintf(fd, "dumping failed, likely due to a timeout\n");
1110 timeout_failures++;
1111 } else {
1112 timeout_failures = 0;
1113 }
Felipe Lemeb0f669d2016-09-26 18:26:11 -07001114 dprintf(fd, "[dump native stack %d: %.3fs elapsed]\n", pid,
Felipe Lemef0292972016-11-22 13:57:05 -08001115 (float)(Nanotime() - start) / NANOS_PER_SEC);
Jeff Brownbf7f4922012-06-07 16:40:01 -07001116 }
Colin Crossf45fa6b2012-03-26 12:38:26 -07001117 }
1118 }
1119
Colin Crossf45fa6b2012-03-26 12:38:26 -07001120 if (dalvik_found == 0) {
Felipe Leme107a05f2016-03-08 15:11:15 -08001121 MYLOGE("Warning: no Dalvik processes found to dump stacks\n");
Colin Crossf45fa6b2012-03-26 12:38:26 -07001122 }
1123
Felipe Lemee184f662016-10-27 10:04:47 -07001124 static std::string dumptraces_path = android::base::StringPrintf(
1125 "%s/bugreport-%s", dirname(traces_path.c_str()), basename(traces_path.c_str()));
1126 if (rename(traces_path.c_str(), dumptraces_path.c_str())) {
1127 MYLOGE("rename(%s, %s): %s\n", traces_path.c_str(), dumptraces_path.c_str(),
1128 strerror(errno));
Jeff Brownbf7f4922012-06-07 16:40:01 -07001129 goto error_close_ifd;
Colin Crossf45fa6b2012-03-26 12:38:26 -07001130 }
Felipe Lemee184f662016-10-27 10:04:47 -07001131 result = dumptraces_path.c_str();
Colin Crossf45fa6b2012-03-26 12:38:26 -07001132
1133 /* replace the saved [ANR] traces.txt file */
Felipe Lemee184f662016-10-27 10:04:47 -07001134 rename(anrtraces_path.c_str(), traces_path.c_str());
Jeff Brownbf7f4922012-06-07 16:40:01 -07001135
1136error_close_ifd:
1137 close(ifd);
1138error_close_fd:
1139 close(fd);
1140 return result;
Colin Crossf45fa6b2012-03-26 12:38:26 -07001141}
1142
Sreeram Ramachandran2b3bba32014-07-08 15:40:55 -07001143void dump_route_tables() {
Felipe Leme78f2c862015-12-21 09:55:22 -08001144 DurationReporter duration_reporter("DUMP ROUTE TABLES");
Felipe Lemef0292972016-11-22 13:57:05 -08001145 if (PropertiesHelper::IsDryRun()) return;
Sreeram Ramachandran2b3bba32014-07-08 15:40:55 -07001146 const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Felipe Lemec7fe8fe2016-09-21 18:13:20 -07001147 ds.DumpFile("RT_TABLES", RT_TABLES_PATH);
Nick Kralevichcd67e9f2015-03-19 11:30:59 -07001148 FILE* fp = fopen(RT_TABLES_PATH, "re");
Sreeram Ramachandran2b3bba32014-07-08 15:40:55 -07001149 if (!fp) {
Felipe Lemed8b94e52016-12-08 10:21:44 -08001150 printf("*** %s: %s\n", RT_TABLES_PATH, strerror(errno));
Sreeram Ramachandran2b3bba32014-07-08 15:40:55 -07001151 return;
1152 }
1153 char table[16];
1154 // Each line has an integer (the table number), a space, and a string (the table name). We only
1155 // need the table number. It's a 32-bit unsigned number, so max 10 chars. Skip the table name.
1156 // Add a fixed max limit so this doesn't go awry.
1157 for (int i = 0; i < 64 && fscanf(fp, " %10s %*s", table) == 1; ++i) {
Felipe Lemeb0f669d2016-09-26 18:26:11 -07001158 RunCommand("ROUTE TABLE IPv4", {"ip", "-4", "route", "show", "table", table});
1159 RunCommand("ROUTE TABLE IPv6", {"ip", "-6", "route", "show", "table", table});
Sreeram Ramachandran2b3bba32014-07-08 15:40:55 -07001160 }
1161 fclose(fp);
1162}
Felipe Leme71bbfc52015-11-23 14:14:51 -08001163
Felipe Leme71bbfc52015-11-23 14:14:51 -08001164// TODO: make this function thread safe if sections are generated in parallel.
Felipe Leme7447d7c2016-11-03 18:12:22 -07001165void Dumpstate::UpdateProgress(int32_t delta) {
1166 if (progress_ == nullptr) {
1167 MYLOGE("UpdateProgress: progress_ not set\n");
1168 return;
1169 }
Felipe Leme71bbfc52015-11-23 14:14:51 -08001170
Felipe Leme7447d7c2016-11-03 18:12:22 -07001171 // Always update progess so stats can be tuned...
1172 bool max_changed = progress_->Inc(delta);
1173
1174 // ...but only notifiy listeners when necessary.
1175 if (!update_progress_) return;
Felipe Leme71bbfc52015-11-23 14:14:51 -08001176
Felipe Leme009ecbb2016-11-07 10:18:44 -08001177 int progress = progress_->Get();
1178 int max = progress_->GetMax();
Felipe Lemead5f6c42015-11-30 14:26:46 -08001179
1180 // adjusts max on the fly
Felipe Leme009ecbb2016-11-07 10:18:44 -08001181 if (max_changed && listener_ != nullptr) {
1182 listener_->onMaxProgressUpdated(max);
Felipe Lemead5f6c42015-11-30 14:26:46 -08001183 }
1184
Felipe Leme009ecbb2016-11-07 10:18:44 -08001185 int32_t last_update_delta = progress - last_updated_progress_;
1186 if (last_updated_progress_ > 0 && last_update_delta < update_progress_threshold_) {
1187 return;
1188 }
1189 last_updated_progress_ = progress;
Felipe Leme7447d7c2016-11-03 18:12:22 -07001190
Felipe Leme9a523ae2016-10-20 15:10:33 -07001191 if (control_socket_fd_ >= 0) {
Felipe Leme7447d7c2016-11-03 18:12:22 -07001192 dprintf(control_socket_fd_, "PROGRESS:%d/%d\n", progress, max);
Felipe Leme9a523ae2016-10-20 15:10:33 -07001193 fsync(control_socket_fd_);
Felipe Leme02b7e002016-07-22 12:03:20 -07001194 }
1195
Felipe Leme75876a22016-10-27 16:31:27 -07001196 if (listener_ != nullptr) {
Felipe Leme7447d7c2016-11-03 18:12:22 -07001197 if (progress % 100 == 0) {
Felipe Leme75876a22016-10-27 16:31:27 -07001198 // We don't want to spam logcat, so only log multiples of 100.
Felipe Leme7447d7c2016-11-03 18:12:22 -07001199 MYLOGD("Setting progress (%s): %d/%d\n", listener_name_.c_str(), progress, max);
Felipe Leme75876a22016-10-27 16:31:27 -07001200 } else {
1201 // stderr is ignored on normal invocations, but useful when calling
1202 // /system/bin/dumpstate directly for debuggging.
Felipe Leme7447d7c2016-11-03 18:12:22 -07001203 fprintf(stderr, "Setting progress (%s): %d/%d\n", listener_name_.c_str(), progress, max);
Felipe Leme75876a22016-10-27 16:31:27 -07001204 }
Felipe Leme7447d7c2016-11-03 18:12:22 -07001205 listener_->onProgressUpdated(progress);
Felipe Leme71bbfc52015-11-23 14:14:51 -08001206 }
1207}
Felipe Lemee338bf62015-12-07 14:03:50 -08001208
Felipe Lemebbaf3c12016-10-11 14:32:25 -07001209void Dumpstate::TakeScreenshot(const std::string& path) {
Felipe Leme9a523ae2016-10-20 15:10:33 -07001210 const std::string& real_path = path.empty() ? screenshot_path_ : path;
Felipe Lemebbaf3c12016-10-11 14:32:25 -07001211 int status =
Felipe Leme9a523ae2016-10-20 15:10:33 -07001212 RunCommand("", {"/system/bin/screencap", "-p", real_path},
Felipe Lemebbaf3c12016-10-11 14:32:25 -07001213 CommandOptions::WithTimeout(10).Always().DropRoot().RedirectStderr().Build());
1214 if (status == 0) {
Felipe Leme9a523ae2016-10-20 15:10:33 -07001215 MYLOGD("Screenshot saved on %s\n", real_path.c_str());
Felipe Lemebbaf3c12016-10-11 14:32:25 -07001216 } else {
Felipe Leme9a523ae2016-10-20 15:10:33 -07001217 MYLOGE("Failed to take screenshot on %s\n", real_path.c_str());
Felipe Lemebbaf3c12016-10-11 14:32:25 -07001218 }
Felipe Lemee338bf62015-12-07 14:03:50 -08001219}
Mark Salyzynf55d4022015-12-11 07:32:31 -08001220
Felipe Leme0c80cf02016-01-05 13:25:34 -08001221bool is_dir(const char* pathname) {
1222 struct stat info;
1223 if (stat(pathname, &info) == -1) {
1224 return false;
1225 }
1226 return S_ISDIR(info.st_mode);
1227}
1228
1229time_t get_mtime(int fd, time_t default_mtime) {
1230 struct stat info;
1231 if (fstat(fd, &info) == -1) {
1232 return default_mtime;
1233 }
1234 return info.st_mtime;
1235}
1236
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001237void dump_emmc_ecsd(const char *ext_csd_path) {
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001238 // List of interesting offsets
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001239 struct hex {
1240 char str[2];
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001241 };
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001242 static const size_t EXT_CSD_REV = 192 * sizeof(hex);
1243 static const size_t EXT_PRE_EOL_INFO = 267 * sizeof(hex);
1244 static const size_t EXT_DEVICE_LIFE_TIME_EST_TYP_A = 268 * sizeof(hex);
1245 static const size_t EXT_DEVICE_LIFE_TIME_EST_TYP_B = 269 * sizeof(hex);
1246
1247 std::string buffer;
1248 if (!android::base::ReadFileToString(ext_csd_path, &buffer)) {
1249 return;
1250 }
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001251
Felipe Lemed8b94e52016-12-08 10:21:44 -08001252 printf("------ %s Extended CSD ------\n", ext_csd_path);
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001253
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001254 if (buffer.length() < (EXT_CSD_REV + sizeof(hex))) {
Felipe Lemed8b94e52016-12-08 10:21:44 -08001255 printf("*** %s: truncated content %zu\n\n", ext_csd_path, buffer.length());
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001256 return;
1257 }
1258
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001259 int ext_csd_rev = 0;
1260 std::string sub = buffer.substr(EXT_CSD_REV, sizeof(hex));
1261 if (sscanf(sub.c_str(), "%2x", &ext_csd_rev) != 1) {
Felipe Lemed8b94e52016-12-08 10:21:44 -08001262 printf("*** %s: EXT_CSD_REV parse error \"%s\"\n\n", ext_csd_path, sub.c_str());
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001263 return;
1264 }
1265
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001266 static const char *ver_str[] = {
1267 "4.0", "4.1", "4.2", "4.3", "Obsolete", "4.41", "4.5", "5.0"
1268 };
Felipe Lemed8b94e52016-12-08 10:21:44 -08001269 printf("rev 1.%d (MMC %s)\n", ext_csd_rev,
1270 (ext_csd_rev < (int)(sizeof(ver_str) / sizeof(ver_str[0]))) ? ver_str[ext_csd_rev]
1271 : "Unknown");
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001272 if (ext_csd_rev < 7) {
Felipe Lemed8b94e52016-12-08 10:21:44 -08001273 printf("\n");
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001274 return;
1275 }
1276
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001277 if (buffer.length() < (EXT_PRE_EOL_INFO + sizeof(hex))) {
Felipe Lemed8b94e52016-12-08 10:21:44 -08001278 printf("*** %s: truncated content %zu\n\n", ext_csd_path, buffer.length());
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001279 return;
1280 }
1281
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001282 int ext_pre_eol_info = 0;
1283 sub = buffer.substr(EXT_PRE_EOL_INFO, sizeof(hex));
1284 if (sscanf(sub.c_str(), "%2x", &ext_pre_eol_info) != 1) {
Felipe Lemed8b94e52016-12-08 10:21:44 -08001285 printf("*** %s: PRE_EOL_INFO parse error \"%s\"\n\n", ext_csd_path, sub.c_str());
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001286 return;
1287 }
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001288
1289 static const char *eol_str[] = {
1290 "Undefined",
1291 "Normal",
1292 "Warning (consumed 80% of reserve)",
1293 "Urgent (consumed 90% of reserve)"
1294 };
Felipe Lemed8b94e52016-12-08 10:21:44 -08001295 printf(
1296 "PRE_EOL_INFO %d (MMC %s)\n", ext_pre_eol_info,
Felipe Leme8f00ed02016-12-07 17:42:44 -08001297 eol_str[(ext_pre_eol_info < (int)(sizeof(eol_str) / sizeof(eol_str[0]))) ? ext_pre_eol_info
1298 : 0]);
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001299
1300 for (size_t lifetime = EXT_DEVICE_LIFE_TIME_EST_TYP_A;
1301 lifetime <= EXT_DEVICE_LIFE_TIME_EST_TYP_B;
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001302 lifetime += sizeof(hex)) {
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001303 int ext_device_life_time_est;
1304 static const char *est_str[] = {
1305 "Undefined",
1306 "0-10% of device lifetime used",
1307 "10-20% of device lifetime used",
1308 "20-30% of device lifetime used",
1309 "30-40% of device lifetime used",
1310 "40-50% of device lifetime used",
1311 "50-60% of device lifetime used",
1312 "60-70% of device lifetime used",
1313 "70-80% of device lifetime used",
1314 "80-90% of device lifetime used",
1315 "90-100% of device lifetime used",
1316 "Exceeded the maximum estimated device lifetime",
1317 };
1318
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001319 if (buffer.length() < (lifetime + sizeof(hex))) {
Felipe Lemed8b94e52016-12-08 10:21:44 -08001320 printf("*** %s: truncated content %zu\n", ext_csd_path, buffer.length());
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001321 break;
1322 }
1323
1324 ext_device_life_time_est = 0;
Mark Salyzyn290f4b92016-05-16 08:33:59 -07001325 sub = buffer.substr(lifetime, sizeof(hex));
1326 if (sscanf(sub.c_str(), "%2x", &ext_device_life_time_est) != 1) {
Felipe Lemed8b94e52016-12-08 10:21:44 -08001327 printf("*** %s: DEVICE_LIFE_TIME_EST_TYP_%c parse error \"%s\"\n", ext_csd_path,
1328 (unsigned)((lifetime - EXT_DEVICE_LIFE_TIME_EST_TYP_A) / sizeof(hex)) + 'A',
1329 sub.c_str());
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001330 continue;
1331 }
Felipe Lemed8b94e52016-12-08 10:21:44 -08001332 printf("DEVICE_LIFE_TIME_EST_TYP_%c %d (MMC %s)\n",
1333 (unsigned)((lifetime - EXT_DEVICE_LIFE_TIME_EST_TYP_A) / sizeof(hex)) + 'A',
1334 ext_device_life_time_est,
1335 est_str[(ext_device_life_time_est < (int)(sizeof(est_str) / sizeof(est_str[0])))
1336 ? ext_device_life_time_est
1337 : 0]);
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001338 }
1339
Felipe Lemed8b94e52016-12-08 10:21:44 -08001340 printf("\n");
Mark Salyzyn8c8130e2015-12-09 11:21:28 -08001341}