The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* |
| 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 Hughes | 2462790 | 2015-02-04 10:25:09 -0800 | [diff] [blame] | 17 | #include "bootchart.h" |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 18 | #include "keywords.h" |
| 19 | #include "log.h" |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 20 | #include "property_service.h" |
Elliott Hughes | 2462790 | 2015-02-04 10:25:09 -0800 | [diff] [blame] | 21 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 22 | #include <dirent.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 23 | #include <errno.h> |
Elliott Hughes | 2462790 | 2015-02-04 10:25:09 -0800 | [diff] [blame] | 24 | #include <fcntl.h> |
| 25 | #include <stdio.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 26 | #include <stdlib.h> |
Elliott Hughes | f3cf438 | 2015-02-03 17:12:07 -0800 | [diff] [blame] | 27 | #include <string.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 28 | #include <sys/stat.h> |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 29 | #include <sys/utsname.h> |
Elliott Hughes | 2462790 | 2015-02-04 10:25:09 -0800 | [diff] [blame] | 30 | #include <time.h> |
| 31 | #include <unistd.h> |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 32 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 33 | #include <string> |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 34 | |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 35 | #include <utils/file.h> |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 36 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 37 | #define LOG_ROOT "/data/bootchart" |
| 38 | #define LOG_STAT LOG_ROOT"/proc_stat.log" |
| 39 | #define LOG_PROCS LOG_ROOT"/proc_ps.log" |
| 40 | #define LOG_DISK LOG_ROOT"/proc_diskstats.log" |
| 41 | #define LOG_HEADER LOG_ROOT"/header" |
| 42 | #define LOG_ACCT LOG_ROOT"/kernel_pacct" |
| 43 | |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 44 | #define LOG_STARTFILE LOG_ROOT"/start" |
| 45 | #define LOG_STOPFILE LOG_ROOT"/stop" |
| 46 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 47 | // Polling period in ms. |
| 48 | static const int BOOTCHART_POLLING_MS = 200; |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 49 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 50 | // Max polling time in seconds. |
| 51 | static const int BOOTCHART_MAX_TIME_SEC = 10*60; |
| 52 | |
| 53 | static long long g_last_bootchart_time; |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 54 | static int g_remaining_samples; |
| 55 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 56 | static FILE* log_stat; |
| 57 | static FILE* log_procs; |
| 58 | static FILE* log_disks; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 59 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 60 | static long long get_uptime_jiffies() { |
| 61 | std::string uptime; |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 62 | if (!android::ReadFileToString("/proc/uptime", &uptime)) { |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 63 | return 0; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 64 | } |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 65 | return 100LL * strtod(uptime.c_str(), NULL); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 66 | } |
| 67 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 68 | static void log_header() { |
| 69 | char date[32]; |
| 70 | time_t now_t = time(NULL); |
| 71 | struct tm now = *localtime(&now_t); |
| 72 | strftime(date, sizeof(date), "%F %T", &now); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 73 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 74 | utsname uts; |
| 75 | if (uname(&uts) == -1) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 76 | return; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 77 | } |
| 78 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 79 | char fingerprint[PROP_VALUE_MAX]; |
| 80 | if (property_get("ro.build.fingerprint", fingerprint) == -1) { |
| 81 | return; |
| 82 | } |
| 83 | |
| 84 | std::string kernel_cmdline; |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 85 | android::ReadFileToString("/proc/cmdline", &kernel_cmdline); |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 86 | |
| 87 | FILE* out = fopen(LOG_HEADER, "we"); |
| 88 | if (out == NULL) { |
| 89 | return; |
| 90 | } |
| 91 | fprintf(out, "version = Android init 0.8 " __TIME__ "\n"); |
| 92 | fprintf(out, "title = Boot chart for Android (%s)\n", date); |
| 93 | fprintf(out, "system.uname = %s %s %s %s\n", uts.sysname, uts.release, uts.version, uts.machine); |
| 94 | fprintf(out, "system.release = %s\n", fingerprint); |
| 95 | // TODO: use /proc/cpuinfo "model name" line for x86, "Processor" line for arm. |
| 96 | fprintf(out, "system.cpu = %s\n", uts.machine); |
| 97 | fprintf(out, "system.kernel.options = %s\n", kernel_cmdline.c_str()); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 98 | fclose(out); |
| 99 | } |
| 100 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 101 | static void do_log_uptime(FILE* log) { |
| 102 | fprintf(log, "%lld\n", get_uptime_jiffies()); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 103 | } |
| 104 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 105 | static void do_log_file(FILE* log, const char* procfile) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 106 | do_log_uptime(log); |
| 107 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 108 | std::string content; |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 109 | if (android::ReadFileToString(procfile, &content)) { |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 110 | fprintf(log, "%s\n", content.c_str()); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 111 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 112 | } |
| 113 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 114 | static void do_log_procs(FILE* log) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 115 | do_log_uptime(log); |
| 116 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 117 | DIR* dir = opendir("/proc"); |
| 118 | struct dirent* entry; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 119 | while ((entry = readdir(dir)) != NULL) { |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 120 | // Only match numeric values. |
| 121 | char* end; |
| 122 | int pid = strtol(entry->d_name, &end, 10); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 123 | if (end != NULL && end > entry->d_name && *end == 0) { |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 124 | char filename[32]; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 125 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 126 | // /proc/<pid>/stat only has truncated task names, so get the full |
| 127 | // name from /proc/<pid>/cmdline. |
| 128 | snprintf(filename, sizeof(filename), "/proc/%d/cmdline", pid); |
| 129 | std::string cmdline; |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 130 | android::ReadFileToString(filename, &cmdline); |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 131 | const char* full_name = cmdline.c_str(); // So we stop at the first NUL. |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 132 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 133 | // Read process stat line. |
| 134 | snprintf(filename, sizeof(filename), "/proc/%d/stat", pid); |
| 135 | std::string stat; |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 136 | if (android::ReadFileToString(filename, &stat)) { |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 137 | if (!cmdline.empty()) { |
| 138 | // Substitute the process name with its real name. |
| 139 | size_t open = stat.find('('); |
| 140 | size_t close = stat.find_last_of(')'); |
| 141 | if (open != std::string::npos && close != std::string::npos) { |
| 142 | stat.replace(open + 1, close - open - 1, full_name); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 143 | } |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 144 | } |
| 145 | fputs(stat.c_str(), log); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 146 | } |
| 147 | } |
| 148 | } |
| 149 | closedir(dir); |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 150 | |
| 151 | fputc('\n', log); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 152 | } |
| 153 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 154 | static int bootchart_init() { |
| 155 | int timeout = 0; |
| 156 | |
| 157 | std::string start; |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 158 | android::ReadFileToString(LOG_STARTFILE, &start); |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 159 | if (!start.empty()) { |
| 160 | timeout = atoi(start.c_str()); |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 161 | } else { |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 162 | // 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; |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 167 | android::ReadFileToString("/proc/cmdline", &cmdline); |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 168 | #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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 171 | } |
| 172 | } |
| 173 | if (timeout == 0) |
| 174 | return 0; |
| 175 | |
| 176 | if (timeout > BOOTCHART_MAX_TIME_SEC) |
| 177 | timeout = BOOTCHART_MAX_TIME_SEC; |
| 178 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 179 | int count = (timeout*1000 + BOOTCHART_POLLING_MS-1)/BOOTCHART_POLLING_MS; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 180 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 181 | 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 Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 196 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 197 | // Create kernel process accounting file. |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 198 | { |
Nick Kralevich | 45a884f | 2015-02-02 14:37:22 -0800 | [diff] [blame] | 199 | int fd = open( LOG_ACCT, O_WRONLY|O_CREAT|O_TRUNC|O_CLOEXEC,0644); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 200 | if (fd >= 0) { |
| 201 | close(fd); |
| 202 | acct( LOG_ACCT ); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | log_header(); |
| 207 | return count; |
| 208 | } |
| 209 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 210 | int do_bootchart_init(int nargs, char** args) { |
| 211 | g_remaining_samples = bootchart_init(); |
| 212 | if (g_remaining_samples < 0) { |
| 213 | ERROR("bootcharting init failure: %s\n", strerror(errno)); |
| 214 | } else if (g_remaining_samples > 0) { |
| 215 | NOTICE("bootcharting started (will run for %d ms)\n", g_remaining_samples*BOOTCHART_POLLING_MS); |
| 216 | } else { |
| 217 | NOTICE("bootcharting ignored\n"); |
| 218 | } |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | static int bootchart_step() { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 223 | do_log_file(log_stat, "/proc/stat"); |
| 224 | do_log_file(log_disks, "/proc/diskstats"); |
| 225 | do_log_procs(log_procs); |
| 226 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 227 | // Stop if /data/bootchart/stop contains 1. |
| 228 | std::string stop; |
Nicolas Geoffray | a7870d8 | 2015-03-16 10:29:36 +0000 | [diff] [blame^] | 229 | if (android::ReadFileToString(LOG_STOPFILE, &stop) && stop == "1") { |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 230 | return -1; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | return 0; |
| 234 | } |
| 235 | |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 236 | /* called to get time (in ms) used by bootchart */ |
| 237 | static long long bootchart_gettime() { |
| 238 | return 10LL*get_uptime_jiffies(); |
| 239 | } |
| 240 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 241 | static void bootchart_finish() { |
| 242 | unlink(LOG_STOPFILE); |
| 243 | fclose(log_stat); |
| 244 | fclose(log_disks); |
| 245 | fclose(log_procs); |
| 246 | acct(NULL); |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 247 | } |
| 248 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 249 | void bootchart_sample(int* timeout) { |
| 250 | // Do we have any more bootcharting to do? |
| 251 | if (g_remaining_samples <= 0) { |
| 252 | return; |
| 253 | } |
| 254 | |
| 255 | long long current_time = bootchart_gettime(); |
| 256 | int elapsed_time = current_time - g_last_bootchart_time; |
| 257 | |
| 258 | if (elapsed_time >= BOOTCHART_POLLING_MS) { |
| 259 | /* count missed samples */ |
| 260 | while (elapsed_time >= BOOTCHART_POLLING_MS) { |
| 261 | elapsed_time -= BOOTCHART_POLLING_MS; |
| 262 | g_remaining_samples--; |
| 263 | } |
| 264 | /* count may be negative, take a sample anyway */ |
| 265 | g_last_bootchart_time = current_time; |
| 266 | if (bootchart_step() < 0 || g_remaining_samples <= 0) { |
| 267 | bootchart_finish(); |
| 268 | g_remaining_samples = 0; |
| 269 | } |
| 270 | } |
| 271 | if (g_remaining_samples > 0) { |
| 272 | int remaining_time = BOOTCHART_POLLING_MS - elapsed_time; |
| 273 | if (*timeout < 0 || *timeout > remaining_time) { |
| 274 | *timeout = remaining_time; |
| 275 | } |
| 276 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 277 | } |