blob: 95687cbd0022e7b6a105b9d555669d9a6a1ea6a4 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
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
Elliott Hughes24627902015-02-04 10:25:09 -080017#include "bootchart.h"
Yongqin Liua197ff12014-12-05 13:45:02 +080018#include "keywords.h"
19#include "log.h"
Elliott Hughes841b2632015-02-12 14:28:54 -080020#include "property_service.h"
Elliott Hughes24627902015-02-04 10:25:09 -080021
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080022#include <dirent.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023#include <errno.h>
Elliott Hughes24627902015-02-04 10:25:09 -080024#include <fcntl.h>
25#include <stdio.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026#include <stdlib.h>
Elliott Hughesf3cf4382015-02-03 17:12:07 -080027#include <string.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028#include <sys/stat.h>
Elliott Hughes841b2632015-02-12 14:28:54 -080029#include <sys/utsname.h>
Elliott Hughes24627902015-02-04 10:25:09 -080030#include <time.h>
31#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080032
Elliott Hughes81399e12015-03-10 08:39:45 -070033#include <memory>
Elliott Hughes841b2632015-02-12 14:28:54 -080034#include <string>
Yongqin Liua197ff12014-12-05 13:45:02 +080035
Dan Albertc007bc32015-03-16 10:08:46 -070036#include <base/file.h>
Elliott Hughes841b2632015-02-12 14:28:54 -080037
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080038#define LOG_ROOT "/data/bootchart"
39#define LOG_STAT LOG_ROOT"/proc_stat.log"
40#define LOG_PROCS LOG_ROOT"/proc_ps.log"
41#define LOG_DISK LOG_ROOT"/proc_diskstats.log"
42#define LOG_HEADER LOG_ROOT"/header"
43#define LOG_ACCT LOG_ROOT"/kernel_pacct"
44
Yongqin Liua197ff12014-12-05 13:45:02 +080045#define LOG_STARTFILE LOG_ROOT"/start"
46#define LOG_STOPFILE LOG_ROOT"/stop"
47
Elliott Hughes841b2632015-02-12 14:28:54 -080048// Polling period in ms.
49static const int BOOTCHART_POLLING_MS = 200;
Yongqin Liua197ff12014-12-05 13:45:02 +080050
Elliott Hughes841b2632015-02-12 14:28:54 -080051// Max polling time in seconds.
52static const int BOOTCHART_MAX_TIME_SEC = 10*60;
53
54static long long g_last_bootchart_time;
Yongqin Liua197ff12014-12-05 13:45:02 +080055static int g_remaining_samples;
56
Elliott Hughes841b2632015-02-12 14:28:54 -080057static FILE* log_stat;
58static FILE* log_procs;
59static FILE* log_disks;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080060
Elliott Hughes841b2632015-02-12 14:28:54 -080061static long long get_uptime_jiffies() {
62 std::string uptime;
Dan Albertc007bc32015-03-16 10:08:46 -070063 if (!android::base::ReadFileToString("/proc/uptime", &uptime)) {
Elliott Hughes841b2632015-02-12 14:28:54 -080064 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080065 }
Elliott Hughes841b2632015-02-12 14:28:54 -080066 return 100LL * strtod(uptime.c_str(), NULL);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080067}
68
Elliott Hughes841b2632015-02-12 14:28:54 -080069static void log_header() {
70 char date[32];
71 time_t now_t = time(NULL);
72 struct tm now = *localtime(&now_t);
73 strftime(date, sizeof(date), "%F %T", &now);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080074
Elliott Hughes841b2632015-02-12 14:28:54 -080075 utsname uts;
76 if (uname(&uts) == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080077 return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080078 }
79
Elliott Hughes841b2632015-02-12 14:28:54 -080080 char fingerprint[PROP_VALUE_MAX];
81 if (property_get("ro.build.fingerprint", fingerprint) == -1) {
82 return;
83 }
84
85 std::string kernel_cmdline;
Dan Albertc007bc32015-03-16 10:08:46 -070086 android::base::ReadFileToString("/proc/cmdline", &kernel_cmdline);
Elliott Hughes841b2632015-02-12 14:28:54 -080087
88 FILE* out = fopen(LOG_HEADER, "we");
89 if (out == NULL) {
90 return;
91 }
92 fprintf(out, "version = Android init 0.8 " __TIME__ "\n");
93 fprintf(out, "title = Boot chart for Android (%s)\n", date);
94 fprintf(out, "system.uname = %s %s %s %s\n", uts.sysname, uts.release, uts.version, uts.machine);
95 fprintf(out, "system.release = %s\n", fingerprint);
96 // TODO: use /proc/cpuinfo "model name" line for x86, "Processor" line for arm.
97 fprintf(out, "system.cpu = %s\n", uts.machine);
98 fprintf(out, "system.kernel.options = %s\n", kernel_cmdline.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080099 fclose(out);
100}
101
Elliott Hughes841b2632015-02-12 14:28:54 -0800102static void do_log_uptime(FILE* log) {
103 fprintf(log, "%lld\n", get_uptime_jiffies());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800104}
105
Elliott Hughes841b2632015-02-12 14:28:54 -0800106static void do_log_file(FILE* log, const char* procfile) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800107 do_log_uptime(log);
108
Elliott Hughes841b2632015-02-12 14:28:54 -0800109 std::string content;
Dan Albertc007bc32015-03-16 10:08:46 -0700110 if (android::base::ReadFileToString(procfile, &content)) {
Elliott Hughes841b2632015-02-12 14:28:54 -0800111 fprintf(log, "%s\n", content.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800112 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800113}
114
Elliott Hughes841b2632015-02-12 14:28:54 -0800115static void do_log_procs(FILE* log) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800116 do_log_uptime(log);
117
Elliott Hughes81399e12015-03-10 08:39:45 -0700118 std::unique_ptr<DIR, int(*)(DIR*)> dir(opendir("/proc"), closedir);
Elliott Hughes841b2632015-02-12 14:28:54 -0800119 struct dirent* entry;
Elliott Hughes81399e12015-03-10 08:39:45 -0700120 while ((entry = readdir(dir.get())) != NULL) {
Elliott Hughes841b2632015-02-12 14:28:54 -0800121 // Only match numeric values.
122 char* end;
123 int pid = strtol(entry->d_name, &end, 10);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800124 if (end != NULL && end > entry->d_name && *end == 0) {
Elliott Hughes841b2632015-02-12 14:28:54 -0800125 char filename[32];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800126
Elliott Hughes841b2632015-02-12 14:28:54 -0800127 // /proc/<pid>/stat only has truncated task names, so get the full
128 // name from /proc/<pid>/cmdline.
129 snprintf(filename, sizeof(filename), "/proc/%d/cmdline", pid);
130 std::string cmdline;
Dan Albertc007bc32015-03-16 10:08:46 -0700131 android::base::ReadFileToString(filename, &cmdline);
Elliott Hughes841b2632015-02-12 14:28:54 -0800132 const char* full_name = cmdline.c_str(); // So we stop at the first NUL.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800133
Elliott Hughes841b2632015-02-12 14:28:54 -0800134 // Read process stat line.
135 snprintf(filename, sizeof(filename), "/proc/%d/stat", pid);
136 std::string stat;
Dan Albertc007bc32015-03-16 10:08:46 -0700137 if (android::base::ReadFileToString(filename, &stat)) {
Elliott Hughes841b2632015-02-12 14:28:54 -0800138 if (!cmdline.empty()) {
139 // Substitute the process name with its real name.
140 size_t open = stat.find('(');
141 size_t close = stat.find_last_of(')');
142 if (open != std::string::npos && close != std::string::npos) {
143 stat.replace(open + 1, close - open - 1, full_name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800144 }
Elliott Hughes841b2632015-02-12 14:28:54 -0800145 }
146 fputs(stat.c_str(), log);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800147 }
148 }
149 }
Elliott Hughes841b2632015-02-12 14:28:54 -0800150
151 fputc('\n', log);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800152}
153
Elliott Hughes841b2632015-02-12 14:28:54 -0800154static int bootchart_init() {
155 int timeout = 0;
156
157 std::string start;
Dan Albertc007bc32015-03-16 10:08:46 -0700158 android::base::ReadFileToString(LOG_STARTFILE, &start);
Elliott Hughes841b2632015-02-12 14:28:54 -0800159 if (!start.empty()) {
160 timeout = atoi(start.c_str());
Yongqin Liua197ff12014-12-05 13:45:02 +0800161 } else {
Elliott Hughes841b2632015-02-12 14:28:54 -0800162 // When running with emulator, androidboot.bootchart=<timeout>
163 // might be passed by as kernel parameters to specify the bootchart
164 // timeout. this is useful when using -wipe-data since the /data
165 // partition is fresh.
166 std::string cmdline;
Dan Albertc007bc32015-03-16 10:08:46 -0700167 android::base::ReadFileToString("/proc/cmdline", &cmdline);
Elliott Hughes841b2632015-02-12 14:28:54 -0800168#define KERNEL_OPTION "androidboot.bootchart="
169 if (strstr(cmdline.c_str(), KERNEL_OPTION) != NULL) {
170 timeout = atoi(cmdline.c_str() + sizeof(KERNEL_OPTION) - 1);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800171 }
172 }
173 if (timeout == 0)
174 return 0;
175
176 if (timeout > BOOTCHART_MAX_TIME_SEC)
177 timeout = BOOTCHART_MAX_TIME_SEC;
178
Elliott Hughes841b2632015-02-12 14:28:54 -0800179 int count = (timeout*1000 + BOOTCHART_POLLING_MS-1)/BOOTCHART_POLLING_MS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800180
Elliott Hughes841b2632015-02-12 14:28:54 -0800181 log_stat = fopen(LOG_STAT, "we");
182 if (log_stat == NULL) {
183 return -1;
184 }
185 log_procs = fopen(LOG_PROCS, "we");
186 if (log_procs == NULL) {
187 fclose(log_stat);
188 return -1;
189 }
190 log_disks = fopen(LOG_DISK, "we");
191 if (log_disks == NULL) {
192 fclose(log_stat);
193 fclose(log_procs);
194 return -1;
195 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800196
Elliott Hughes841b2632015-02-12 14:28:54 -0800197 // Create kernel process accounting file.
Elliott Hughes59abac22015-03-28 12:12:51 -0700198 close(open(LOG_ACCT, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, 0644));
199 acct(LOG_ACCT);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800200
201 log_header();
202 return count;
203}
204
Elliott Hughes841b2632015-02-12 14:28:54 -0800205int do_bootchart_init(int nargs, char** args) {
206 g_remaining_samples = bootchart_init();
207 if (g_remaining_samples < 0) {
Elliott Hughes59abac22015-03-28 12:12:51 -0700208 ERROR("Bootcharting init failure: %s\n", strerror(errno));
Elliott Hughes841b2632015-02-12 14:28:54 -0800209 } else if (g_remaining_samples > 0) {
Elliott Hughes59abac22015-03-28 12:12:51 -0700210 NOTICE("Bootcharting started (will run for %d s).\n",
211 (g_remaining_samples * BOOTCHART_POLLING_MS) / 1000);
Elliott Hughes841b2632015-02-12 14:28:54 -0800212 } else {
Elliott Hughes59abac22015-03-28 12:12:51 -0700213 NOTICE("Not bootcharting.\n");
Elliott Hughes841b2632015-02-12 14:28:54 -0800214 }
215 return 0;
216}
217
218static int bootchart_step() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800219 do_log_file(log_stat, "/proc/stat");
220 do_log_file(log_disks, "/proc/diskstats");
221 do_log_procs(log_procs);
222
Elliott Hughes841b2632015-02-12 14:28:54 -0800223 // Stop if /data/bootchart/stop contains 1.
224 std::string stop;
Dan Albertc007bc32015-03-16 10:08:46 -0700225 if (android::base::ReadFileToString(LOG_STOPFILE, &stop) && stop == "1") {
Elliott Hughes841b2632015-02-12 14:28:54 -0800226 return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800227 }
228
229 return 0;
230}
231
Yongqin Liua197ff12014-12-05 13:45:02 +0800232/* called to get time (in ms) used by bootchart */
233static long long bootchart_gettime() {
234 return 10LL*get_uptime_jiffies();
235}
236
Elliott Hughes841b2632015-02-12 14:28:54 -0800237static void bootchart_finish() {
238 unlink(LOG_STOPFILE);
239 fclose(log_stat);
240 fclose(log_disks);
241 fclose(log_procs);
242 acct(NULL);
Yongqin Liua197ff12014-12-05 13:45:02 +0800243}
244
Elliott Hughes841b2632015-02-12 14:28:54 -0800245void bootchart_sample(int* timeout) {
246 // Do we have any more bootcharting to do?
247 if (g_remaining_samples <= 0) {
248 return;
249 }
250
251 long long current_time = bootchart_gettime();
252 int elapsed_time = current_time - g_last_bootchart_time;
253
254 if (elapsed_time >= BOOTCHART_POLLING_MS) {
255 /* count missed samples */
256 while (elapsed_time >= BOOTCHART_POLLING_MS) {
257 elapsed_time -= BOOTCHART_POLLING_MS;
258 g_remaining_samples--;
259 }
260 /* count may be negative, take a sample anyway */
261 g_last_bootchart_time = current_time;
262 if (bootchart_step() < 0 || g_remaining_samples <= 0) {
263 bootchart_finish();
264 g_remaining_samples = 0;
265 }
266 }
267 if (g_remaining_samples > 0) {
268 int remaining_time = BOOTCHART_POLLING_MS - elapsed_time;
269 if (*timeout < 0 || *timeout > remaining_time) {
270 *timeout = remaining_time;
271 }
272 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800273}