blob: e9758a01727d41732f2666d08e349ca66b018ecc [file] [log] [blame]
Jamie Gennis6eea6fb2012-12-07 22:03:071/*
2 * Copyright (C) 2012 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
Paul Lawrence2cd93cc2017-01-17 17:50:1817#define LOG_TAG "atrace"
John Reck40b26b42016-03-30 16:44:3618
Jamie Gennis6eea6fb2012-12-07 22:03:0719#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
Mark Salyzyn92dc3fc2014-03-12 20:12:4422#include <inttypes.h>
Jamie Gennis6eea6fb2012-12-07 22:03:0723#include <signal.h>
24#include <stdarg.h>
25#include <stdbool.h>
26#include <stdio.h>
27#include <stdlib.h>
Elliott Hughes3da5d232015-01-25 16:35:2028#include <string.h>
Jamie Gennis6eea6fb2012-12-07 22:03:0729#include <time.h>
Martijn Coenend9535872015-11-26 09:00:5530#include <unistd.h>
Jamie Gennis6eea6fb2012-12-07 22:03:0731#include <zlib.h>
32
Carmen Jacksonea826792017-05-05 18:42:3233#include <fstream>
Elliott Hughesa252f4d2016-07-22 00:12:1534#include <memory>
35
Jamie Gennis6eea6fb2012-12-07 22:03:0736#include <binder/IBinder.h>
37#include <binder/IServiceManager.h>
38#include <binder/Parcel.h>
39
Martijn Coenenee9b97e2016-11-16 15:00:2640#include <android/hidl/manager/1.0/IServiceManager.h>
41#include <hidl/ServiceManagement.h>
Jamie Gennis6eea6fb2012-12-07 22:03:0742
Corey Tabakaa6c0a722017-05-31 23:37:4043#include <pdx/default_transport/service_utility.h>
Jamie Gennis6eea6fb2012-12-07 22:03:0744#include <utils/String8.h>
John Reck469a1942015-03-26 22:31:3545#include <utils/Timers.h>
Yasuhiro Matsuda46c51fb2015-06-29 10:20:3946#include <utils/Tokenizer.h>
Jamie Gennis6eea6fb2012-12-07 22:03:0747#include <utils/Trace.h>
Stephane Gasparinid8419c22016-03-02 12:45:1548#include <android-base/file.h>
Elliott Hughes5fd6ff62017-03-28 21:55:3149#include <android-base/macros.h>
50#include <android-base/properties.h>
51#include <android-base/stringprintf.h>
Jamie Gennis6eea6fb2012-12-07 22:03:0752
53using namespace android;
Corey Tabakaa6c0a722017-05-31 23:37:4054using pdx::default_transport::ServiceUtility;
Jamie Gennis6eea6fb2012-12-07 22:03:0755
Martijn Coenenee9b97e2016-11-16 15:00:2656using std::string;
Jamie Gennis6eea6fb2012-12-07 22:03:0757
sergeyv4144eff2016-04-28 18:40:0458#define MAX_SYS_FILES 10
Jamie Gennis6eea6fb2012-12-07 22:03:0759
60const char* k_traceTagsProperty = "debug.atrace.tags.enableflags";
sergeyv4144eff2016-04-28 18:40:0461
62const char* k_traceAppsNumberProperty = "debug.atrace.app_number";
63const char* k_traceAppsPropertyTemplate = "debug.atrace.app_%d";
sergeyvdb404152016-05-03 02:26:0764const char* k_coreServiceCategory = "core_services";
Corey Tabakaa6c0a722017-05-31 23:37:4065const char* k_pdxServiceCategory = "pdx";
sergeyvdb404152016-05-03 02:26:0766const char* k_coreServicesProp = "ro.atrace.core.services";
Jamie Gennis6eea6fb2012-12-07 22:03:0767
68typedef enum { OPT, REQ } requiredness ;
69
70struct TracingCategory {
71 // The name identifying the category.
72 const char* name;
73
74 // A longer description of the category.
75 const char* longname;
76
77 // The userland tracing tags that the category enables.
78 uint64_t tags;
79
80 // The fname==NULL terminated list of /sys/ files that the category
81 // enables.
82 struct {
83 // Whether the file must be writable in order to enable the tracing
84 // category.
85 requiredness required;
86
87 // The path to the enable file.
88 const char* path;
89 } sysfiles[MAX_SYS_FILES];
90};
91
92/* Tracing categories */
93static const TracingCategory k_categories[] = {
John Reck732a29a2017-05-24 23:09:2194 { "gfx", "Graphics", ATRACE_TAG_GRAPHICS, {
95 { OPT, "events/mdss/enable" },
96 } },
Jamie Gennisb2a89e32013-03-12 02:37:5397 { "input", "Input", ATRACE_TAG_INPUT, { } },
98 { "view", "View System", ATRACE_TAG_VIEW, { } },
99 { "webview", "WebView", ATRACE_TAG_WEBVIEW, { } },
100 { "wm", "Window Manager", ATRACE_TAG_WINDOW_MANAGER, { } },
101 { "am", "Activity Manager", ATRACE_TAG_ACTIVITY_MANAGER, { } },
Patrick Auchter70ec2942014-09-30 20:38:30102 { "sm", "Sync Manager", ATRACE_TAG_SYNC_MANAGER, { } },
Jamie Gennisb2a89e32013-03-12 02:37:53103 { "audio", "Audio", ATRACE_TAG_AUDIO, { } },
104 { "video", "Video", ATRACE_TAG_VIDEO, { } },
105 { "camera", "Camera", ATRACE_TAG_CAMERA, { } },
106 { "hal", "Hardware Modules", ATRACE_TAG_HAL, { } },
Jeff Brown3200b0b2014-08-15 02:24:47107 { "app", "Application", ATRACE_TAG_APP, { } },
Dianne Hackborn9380d782013-04-12 21:52:35108 { "res", "Resource Loading", ATRACE_TAG_RESOURCES, { } },
Jamie Genniseff2e8d2013-05-07 22:20:39109 { "dalvik", "Dalvik VM", ATRACE_TAG_DALVIK, { } },
Tim Murrayf0f28412013-05-23 21:39:42110 { "rs", "RenderScript", ATRACE_TAG_RS, { } },
Brigid Smith750aa972014-05-28 21:23:24111 { "bionic", "Bionic C Library", ATRACE_TAG_BIONIC, { } },
Jeff Brown3200b0b2014-08-15 02:24:47112 { "power", "Power Management", ATRACE_TAG_POWER, { } },
Todd Kennedy01e111b2015-07-31 21:36:20113 { "pm", "Package Manager", ATRACE_TAG_PACKAGE_MANAGER, { } },
Yasuhiro Matsuda7cc49772015-06-30 16:46:25114 { "ss", "System Server", ATRACE_TAG_SYSTEM_SERVER, { } },
Greg Hackmannbbd7d992014-12-01 22:43:34115 { "database", "Database", ATRACE_TAG_DATABASE, { } },
Felipe Leme0f97c1d2016-09-07 18:33:26116 { "network", "Network", ATRACE_TAG_NETWORK, { } },
Josh Gao468b4cb2016-11-29 18:55:21117 { "adb", "ADB", ATRACE_TAG_ADB, { } },
sergeyvdb404152016-05-03 02:26:07118 { k_coreServiceCategory, "Core services", 0, { } },
Corey Tabakaa6c0a722017-05-31 23:37:40119 { k_pdxServiceCategory, "PDX services", 0, { } },
Jamie Gennisb2a89e32013-03-12 02:37:53120 { "sched", "CPU Scheduling", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18121 { REQ, "events/sched/sched_switch/enable" },
122 { REQ, "events/sched/sched_wakeup/enable" },
Joel Fernandesee593e22017-06-04 20:05:59123 { OPT, "events/sched/sched_waking/enable" },
Paul Lawrence2cd93cc2017-01-17 17:50:18124 { OPT, "events/sched/sched_blocked_reason/enable" },
125 { OPT, "events/sched/sched_cpu_hotplug/enable" },
Joel Fernandes4dfca7c2017-06-15 23:53:52126 { OPT, "events/cgroup/enable" },
Jamie Gennis6eea6fb2012-12-07 22:03:07127 } },
Dan Willemsenf440d392014-04-11 22:44:09128 { "irq", "IRQ Events", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18129 { REQ, "events/irq/enable" },
130 { OPT, "events/ipi/enable" },
Dan Willemsenf440d392014-04-11 22:44:09131 } },
Michael Wright43fb6782016-08-18 18:56:43132 { "i2c", "I2C Events", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18133 { REQ, "events/i2c/enable" },
134 { REQ, "events/i2c/i2c_read/enable" },
135 { REQ, "events/i2c/i2c_write/enable" },
136 { REQ, "events/i2c/i2c_result/enable" },
137 { REQ, "events/i2c/i2c_reply/enable" },
138 { OPT, "events/i2c/smbus_read/enable" },
139 { OPT, "events/i2c/smbus_write/enable" },
140 { OPT, "events/i2c/smbus_result/enable" },
141 { OPT, "events/i2c/smbus_reply/enable" },
Michael Wright43fb6782016-08-18 18:56:43142 } },
Jamie Gennisb2a89e32013-03-12 02:37:53143 { "freq", "CPU Frequency", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18144 { REQ, "events/power/cpu_frequency/enable" },
145 { OPT, "events/power/clock_set_rate/enable" },
146 { OPT, "events/power/cpu_frequency_limits/enable" },
Jamie Gennis6eea6fb2012-12-07 22:03:07147 } },
Jamie Gennisb2a89e32013-03-12 02:37:53148 { "membus", "Memory Bus Utilization", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18149 { REQ, "events/memory_bus/enable" },
Jamie Gennis6eea6fb2012-12-07 22:03:07150 } },
Jamie Gennisb2a89e32013-03-12 02:37:53151 { "idle", "CPU Idle", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18152 { REQ, "events/power/cpu_idle/enable" },
Jamie Gennis6eea6fb2012-12-07 22:03:07153 } },
Jamie Gennisb2a89e32013-03-12 02:37:53154 { "disk", "Disk I/O", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18155 { OPT, "events/f2fs/f2fs_sync_file_enter/enable" },
156 { OPT, "events/f2fs/f2fs_sync_file_exit/enable" },
157 { OPT, "events/f2fs/f2fs_write_begin/enable" },
158 { OPT, "events/f2fs/f2fs_write_end/enable" },
159 { OPT, "events/ext4/ext4_da_write_begin/enable" },
160 { OPT, "events/ext4/ext4_da_write_end/enable" },
161 { OPT, "events/ext4/ext4_sync_file_enter/enable" },
162 { OPT, "events/ext4/ext4_sync_file_exit/enable" },
163 { REQ, "events/block/block_rq_issue/enable" },
164 { REQ, "events/block/block_rq_complete/enable" },
Jamie Gennis6eea6fb2012-12-07 22:03:07165 } },
Ken Sumralld3fa5612013-07-03 19:32:03166 { "mmc", "eMMC commands", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18167 { REQ, "events/mmc/enable" },
Ken Sumralld3fa5612013-07-03 19:32:03168 } },
Jamie Gennisb2a89e32013-03-12 02:37:53169 { "load", "CPU Load", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18170 { REQ, "events/cpufreq_interactive/enable" },
Jamie Gennis6eea6fb2012-12-07 22:03:07171 } },
Jamie Gennisb2a89e32013-03-12 02:37:53172 { "sync", "Synchronization", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18173 { REQ, "events/sync/enable" },
Jamie Gennis6eea6fb2012-12-07 22:03:07174 } },
Jamie Gennisb2a89e32013-03-12 02:37:53175 { "workq", "Kernel Workqueues", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18176 { REQ, "events/workqueue/enable" },
Jamie Gennis6eea6fb2012-12-07 22:03:07177 } },
Colin Cross580407f2014-08-18 22:22:13178 { "memreclaim", "Kernel Memory Reclaim", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18179 { REQ, "events/vmscan/mm_vmscan_direct_reclaim_begin/enable" },
180 { REQ, "events/vmscan/mm_vmscan_direct_reclaim_end/enable" },
181 { REQ, "events/vmscan/mm_vmscan_kswapd_wake/enable" },
182 { REQ, "events/vmscan/mm_vmscan_kswapd_sleep/enable" },
Marc Hittingerf1f62e32017-05-17 22:57:43183 { REQ, "events/lowmemorykiller/enable" },
Colin Cross580407f2014-08-18 22:22:13184 } },
Aaron Schulmanc2c6ecd2015-02-25 16:37:09185 { "regulators", "Voltage and Current Regulators", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18186 { REQ, "events/regulator/enable" },
Aaron Schulmanc2c6ecd2015-02-25 16:37:09187 } },
Scott Bauerae473362015-06-08 23:32:36188 { "binder_driver", "Binder Kernel driver", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18189 { REQ, "events/binder/binder_transaction/enable" },
190 { REQ, "events/binder/binder_transaction_received/enable" },
Martijn Coenen7f3d7a22017-05-26 16:50:55191 { OPT, "events/binder/binder_set_priority/enable" },
Scott Bauerae473362015-06-08 23:32:36192 } },
193 { "binder_lock", "Binder global lock trace", 0, {
Howard Cheneb8acbf2017-05-10 08:32:11194 { OPT, "events/binder/binder_lock/enable" },
195 { OPT, "events/binder/binder_locked/enable" },
196 { OPT, "events/binder/binder_unlock/enable" },
Scott Bauerae473362015-06-08 23:32:36197 } },
Martijn Coenen70481612015-10-23 11:57:05198 { "pagecache", "Page cache", 0, {
Paul Lawrence2cd93cc2017-01-17 17:50:18199 { REQ, "events/filemap/enable" },
Martijn Coenen70481612015-10-23 11:57:05200 } },
Jamie Gennis6eea6fb2012-12-07 22:03:07201};
202
203/* Command line options */
204static int g_traceDurationSeconds = 5;
205static bool g_traceOverwrite = false;
206static int g_traceBufferSizeKB = 2048;
207static bool g_compress = false;
208static bool g_nohup = false;
209static int g_initialSleepSecs = 0;
Yasuhiro Matsuda46c51fb2015-06-29 10:20:39210static const char* g_categoriesFile = NULL;
Jamie Gennise9b8cfb2013-03-12 23:00:10211static const char* g_kernelTraceFuncs = NULL;
Jamie Gennisf7f29c82013-03-27 22:50:58212static const char* g_debugAppCmdLine = "";
John Reck40b26b42016-03-30 16:44:36213static const char* g_outputFile = nullptr;
Jamie Gennis6eea6fb2012-12-07 22:03:07214
215/* Global state */
Corey Tabakaa6c0a722017-05-31 23:37:40216static bool g_tracePdx = false;
Jamie Gennis6eea6fb2012-12-07 22:03:07217static bool g_traceAborted = false;
Elliott Hughes5fd6ff62017-03-28 21:55:31218static bool g_categoryEnables[arraysize(k_categories)] = {};
Paul Lawrence2cd93cc2017-01-17 17:50:18219static std::string g_traceFolder;
Jamie Gennis6eea6fb2012-12-07 22:03:07220
221/* Sys file paths */
222static const char* k_traceClockPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18223 "trace_clock";
Jamie Gennis6eea6fb2012-12-07 22:03:07224
225static const char* k_traceBufferSizePath =
Paul Lawrence2cd93cc2017-01-17 17:50:18226 "buffer_size_kb";
Jamie Gennis6eea6fb2012-12-07 22:03:07227
Chih-Hung Hsieh734e3782017-10-05 20:44:13228#if 0
229// TODO: Re-enable after stabilization
Joel Fernandesed80bd02017-06-02 17:19:28230static const char* k_traceCmdlineSizePath =
231 "saved_cmdlines_size";
Chih-Hung Hsieh734e3782017-10-05 20:44:13232#endif
Joel Fernandesed80bd02017-06-02 17:19:28233
Jamie Gennis6eea6fb2012-12-07 22:03:07234static const char* k_tracingOverwriteEnablePath =
Paul Lawrence2cd93cc2017-01-17 17:50:18235 "options/overwrite";
Jamie Gennis6eea6fb2012-12-07 22:03:07236
Jamie Gennise9b8cfb2013-03-12 23:00:10237static const char* k_currentTracerPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18238 "current_tracer";
Jamie Gennise9b8cfb2013-03-12 23:00:10239
240static const char* k_printTgidPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18241 "options/print-tgid";
Jamie Gennise9b8cfb2013-03-12 23:00:10242
243static const char* k_funcgraphAbsTimePath =
Paul Lawrence2cd93cc2017-01-17 17:50:18244 "options/funcgraph-abstime";
Jamie Gennise9b8cfb2013-03-12 23:00:10245
246static const char* k_funcgraphCpuPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18247 "options/funcgraph-cpu";
Jamie Gennise9b8cfb2013-03-12 23:00:10248
249static const char* k_funcgraphProcPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18250 "options/funcgraph-proc";
Jamie Gennise9b8cfb2013-03-12 23:00:10251
252static const char* k_funcgraphFlatPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18253 "options/funcgraph-flat";
Jamie Gennise9b8cfb2013-03-12 23:00:10254
Jamie Gennise9b8cfb2013-03-12 23:00:10255static const char* k_ftraceFilterPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18256 "set_ftrace_filter";
Jamie Gennise9b8cfb2013-03-12 23:00:10257
Jamie Gennis6eea6fb2012-12-07 22:03:07258static const char* k_tracingOnPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18259 "tracing_on";
Jamie Gennis6eea6fb2012-12-07 22:03:07260
261static const char* k_tracePath =
Paul Lawrence2cd93cc2017-01-17 17:50:18262 "trace";
Jamie Gennis6eea6fb2012-12-07 22:03:07263
Martijn Coenend9535872015-11-26 09:00:55264static const char* k_traceStreamPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18265 "trace_pipe";
Martijn Coenend9535872015-11-26 09:00:55266
John Reck469a1942015-03-26 22:31:35267static const char* k_traceMarkerPath =
Paul Lawrence2cd93cc2017-01-17 17:50:18268 "trace_marker";
John Reck469a1942015-03-26 22:31:35269
Jamie Gennis6eea6fb2012-12-07 22:03:07270// Check whether a file exists.
271static bool fileExists(const char* filename) {
Paul Lawrence2cd93cc2017-01-17 17:50:18272 return access((g_traceFolder + filename).c_str(), F_OK) != -1;
Jamie Gennis6eea6fb2012-12-07 22:03:07273}
274
275// Check whether a file is writable.
276static bool fileIsWritable(const char* filename) {
Paul Lawrence2cd93cc2017-01-17 17:50:18277 return access((g_traceFolder + filename).c_str(), W_OK) != -1;
Jamie Gennis6eea6fb2012-12-07 22:03:07278}
279
Jamie Gennise9b8cfb2013-03-12 23:00:10280// Truncate a file.
281static bool truncateFile(const char* path)
Jamie Gennis6eea6fb2012-12-07 22:03:07282{
Jamie Gennis43122e72013-03-21 21:06:31283 // This uses creat rather than truncate because some of the debug kernel
284 // device nodes (e.g. k_ftraceFilterPath) currently aren't changed by
285 // calls to truncate, but they are cleared by calls to creat.
Paul Lawrence2cd93cc2017-01-17 17:50:18286 int traceFD = creat((g_traceFolder + path).c_str(), 0);
Jamie Gennis43122e72013-03-21 21:06:31287 if (traceFD == -1) {
Paul Lawrence2cd93cc2017-01-17 17:50:18288 fprintf(stderr, "error truncating %s: %s (%d)\n", (g_traceFolder + path).c_str(),
Jamie Gennis43122e72013-03-21 21:06:31289 strerror(errno), errno);
Jamie Gennise9b8cfb2013-03-12 23:00:10290 return false;
291 }
292
Jamie Gennis43122e72013-03-21 21:06:31293 close(traceFD);
294
Jamie Gennise9b8cfb2013-03-12 23:00:10295 return true;
296}
297
298static bool _writeStr(const char* filename, const char* str, int flags)
299{
Paul Lawrence2cd93cc2017-01-17 17:50:18300 std::string fullFilename = g_traceFolder + filename;
301 int fd = open(fullFilename.c_str(), flags);
Jamie Gennis6eea6fb2012-12-07 22:03:07302 if (fd == -1) {
Paul Lawrence2cd93cc2017-01-17 17:50:18303 fprintf(stderr, "error opening %s: %s (%d)\n", fullFilename.c_str(),
Jamie Gennis6eea6fb2012-12-07 22:03:07304 strerror(errno), errno);
305 return false;
306 }
307
308 bool ok = true;
309 ssize_t len = strlen(str);
310 if (write(fd, str, len) != len) {
Paul Lawrence2cd93cc2017-01-17 17:50:18311 fprintf(stderr, "error writing to %s: %s (%d)\n", fullFilename.c_str(),
Jamie Gennis6eea6fb2012-12-07 22:03:07312 strerror(errno), errno);
313 ok = false;
314 }
315
316 close(fd);
317
318 return ok;
319}
320
Jamie Gennise9b8cfb2013-03-12 23:00:10321// Write a string to a file, returning true if the write was successful.
322static bool writeStr(const char* filename, const char* str)
323{
324 return _writeStr(filename, str, O_WRONLY);
325}
326
327// Append a string to a file, returning true if the write was successful.
328static bool appendStr(const char* filename, const char* str)
329{
330 return _writeStr(filename, str, O_APPEND|O_WRONLY);
331}
332
John Reck469a1942015-03-26 22:31:35333static void writeClockSyncMarker()
334{
335 char buffer[128];
Martijn Coenen0bcd97a2015-07-15 12:25:23336 int len = 0;
Paul Lawrence2cd93cc2017-01-17 17:50:18337 int fd = open((g_traceFolder + k_traceMarkerPath).c_str(), O_WRONLY);
Martijn Coenen0bcd97a2015-07-15 12:25:23338 if (fd == -1) {
339 fprintf(stderr, "error opening %s: %s (%d)\n", k_traceMarkerPath,
340 strerror(errno), errno);
341 return;
342 }
John Reck469a1942015-03-26 22:31:35343 float now_in_seconds = systemTime(CLOCK_MONOTONIC) / 1000000000.0f;
Martijn Coenen0bcd97a2015-07-15 12:25:23344
345 len = snprintf(buffer, 128, "trace_event_clock_sync: parent_ts=%f\n", now_in_seconds);
346 if (write(fd, buffer, len) != len) {
347 fprintf(stderr, "error writing clock sync marker %s (%d)\n", strerror(errno), errno);
348 }
349
350 int64_t realtime_in_ms = systemTime(CLOCK_REALTIME) / 1000000;
351 len = snprintf(buffer, 128, "trace_event_clock_sync: realtime_ts=%" PRId64 "\n", realtime_in_ms);
352 if (write(fd, buffer, len) != len) {
353 fprintf(stderr, "error writing clock sync marker %s (%d)\n", strerror(errno), errno);
354 }
355
356 close(fd);
John Reck469a1942015-03-26 22:31:35357}
358
Jamie Gennis6eea6fb2012-12-07 22:03:07359// Enable or disable a kernel option by writing a "1" or a "0" into a /sys
360// file.
361static bool setKernelOptionEnable(const char* filename, bool enable)
362{
363 return writeStr(filename, enable ? "1" : "0");
364}
365
366// Check whether the category is supported on the device with the current
367// rootness. A category is supported only if all its required /sys/ files are
368// writable and if enabling the category will enable one or more tracing tags
369// or /sys/ files.
370static bool isCategorySupported(const TracingCategory& category)
371{
sergeyvdb404152016-05-03 02:26:07372 if (strcmp(category.name, k_coreServiceCategory) == 0) {
Elliott Hughes5fd6ff62017-03-28 21:55:31373 return !android::base::GetProperty(k_coreServicesProp, "").empty();
sergeyvdb404152016-05-03 02:26:07374 }
375
Corey Tabakaa6c0a722017-05-31 23:37:40376 if (strcmp(category.name, k_pdxServiceCategory) == 0) {
377 return true;
378 }
379
Jamie Gennis6eea6fb2012-12-07 22:03:07380 bool ok = category.tags != 0;
381 for (int i = 0; i < MAX_SYS_FILES; i++) {
382 const char* path = category.sysfiles[i].path;
383 bool req = category.sysfiles[i].required == REQ;
384 if (path != NULL) {
385 if (req) {
386 if (!fileIsWritable(path)) {
387 return false;
388 } else {
389 ok = true;
390 }
391 } else {
Howard Cheneb8acbf2017-05-10 08:32:11392 ok = true;
Jamie Gennis6eea6fb2012-12-07 22:03:07393 }
394 }
395 }
396 return ok;
397}
398
399// Check whether the category would be supported on the device if the user
400// were root. This function assumes that root is able to write to any file
401// that exists. It performs the same logic as isCategorySupported, but it
Fabien Sanglardb5c95472016-06-08 18:40:12402// uses file existence rather than writability in the /sys/ file checks.
Jamie Gennis6eea6fb2012-12-07 22:03:07403static bool isCategorySupportedForRoot(const TracingCategory& category)
404{
405 bool ok = category.tags != 0;
406 for (int i = 0; i < MAX_SYS_FILES; i++) {
407 const char* path = category.sysfiles[i].path;
408 bool req = category.sysfiles[i].required == REQ;
409 if (path != NULL) {
410 if (req) {
411 if (!fileExists(path)) {
412 return false;
413 } else {
414 ok = true;
415 }
416 } else {
417 ok |= fileExists(path);
418 }
419 }
420 }
421 return ok;
422}
423
424// Enable or disable overwriting of the kernel trace buffers. Disabling this
425// will cause tracing to stop once the trace buffers have filled up.
426static bool setTraceOverwriteEnable(bool enable)
427{
428 return setKernelOptionEnable(k_tracingOverwriteEnablePath, enable);
429}
430
431// Enable or disable kernel tracing.
432static bool setTracingEnabled(bool enable)
433{
434 return setKernelOptionEnable(k_tracingOnPath, enable);
435}
436
437// Clear the contents of the kernel trace.
438static bool clearTrace()
439{
Jamie Gennise9b8cfb2013-03-12 23:00:10440 return truncateFile(k_tracePath);
Jamie Gennis6eea6fb2012-12-07 22:03:07441}
442
443// Set the size of the kernel's trace buffer in kilobytes.
444static bool setTraceBufferSizeKB(int size)
445{
446 char str[32] = "1";
Jamie Gennis6eea6fb2012-12-07 22:03:07447 if (size < 1) {
448 size = 1;
449 }
450 snprintf(str, 32, "%d", size);
451 return writeStr(k_traceBufferSizePath, str);
452}
453
Chih-Hung Hsieh734e3782017-10-05 20:44:13454#if 0
455// TODO: Re-enable after stabilization
Joel Fernandesed80bd02017-06-02 17:19:28456// Set the default size of cmdline hashtable
457static bool setCmdlineSize()
458{
Joel Fernandesce964f22017-06-06 19:20:29459 if (fileExists(k_traceCmdlineSizePath)) {
460 return writeStr(k_traceCmdlineSizePath, "8192");
461 }
462 return true;
Joel Fernandesed80bd02017-06-02 17:19:28463}
Chih-Hung Hsieh734e3782017-10-05 20:44:13464#endif
Joel Fernandesed80bd02017-06-02 17:19:28465
Carmen Jacksonea826792017-05-05 18:42:32466// Set the clock to the best available option while tracing. Use 'boot' if it's
467// available; otherwise, use 'mono'. If neither are available use 'global'.
Colin Crossb1ce49b2014-08-20 21:28:47468// Any write to the trace_clock sysfs file will reset the buffer, so only
469// update it if the requested value is not the current value.
Carmen Jacksonea826792017-05-05 18:42:32470static bool setClock()
Jamie Gennis6eea6fb2012-12-07 22:03:07471{
Carmen Jacksonea826792017-05-05 18:42:32472 std::ifstream clockFile((g_traceFolder + k_traceClockPath).c_str(), O_RDONLY);
473 std::string clockStr((std::istreambuf_iterator<char>(clockFile)),
474 std::istreambuf_iterator<char>());
Colin Crossb1ce49b2014-08-20 21:28:47475
Carmen Jacksonea826792017-05-05 18:42:32476 std::string newClock;
477 if (clockStr.find("boot") != std::string::npos) {
478 newClock = "boot";
479 } else if (clockStr.find("mono") != std::string::npos) {
480 newClock = "mono";
481 } else {
482 newClock = "global";
Colin Crossb1ce49b2014-08-20 21:28:47483 }
484
Chih-Hung Hsiehcb057c22017-08-03 22:48:25485 size_t begin = clockStr.find('[') + 1;
486 size_t end = clockStr.find(']');
Carmen Jacksonea826792017-05-05 18:42:32487 if (newClock.compare(0, std::string::npos, clockStr, begin, end-begin) == 0) {
488 return true;
489 }
490 return writeStr(k_traceClockPath, newClock.c_str());
Jamie Gennis6eea6fb2012-12-07 22:03:07491}
492
Jamie Gennise9b8cfb2013-03-12 23:00:10493static bool setPrintTgidEnableIfPresent(bool enable)
494{
495 if (fileExists(k_printTgidPath)) {
496 return setKernelOptionEnable(k_printTgidPath, enable);
497 }
498 return true;
499}
500
Jamie Gennis6eea6fb2012-12-07 22:03:07501// Poke all the binder-enabled processes in the system to get them to re-read
502// their system properties.
503static bool pokeBinderServices()
504{
505 sp<IServiceManager> sm = defaultServiceManager();
506 Vector<String16> services = sm->listServices();
507 for (size_t i = 0; i < services.size(); i++) {
508 sp<IBinder> obj = sm->checkService(services[i]);
509 if (obj != NULL) {
510 Parcel data;
511 if (obj->transact(IBinder::SYSPROPS_TRANSACTION, data,
512 NULL, 0) != OK) {
513 if (false) {
514 // XXX: For some reason this fails on tablets trying to
515 // poke the "phone" service. It's not clear whether some
516 // are expected to fail.
517 String8 svc(services[i]);
518 fprintf(stderr, "error poking binder service %s\n",
519 svc.string());
520 return false;
521 }
522 }
523 }
524 }
525 return true;
526}
527
Martijn Coenenee9b97e2016-11-16 15:00:26528// Poke all the HAL processes in the system to get them to re-read
529// their system properties.
530static void pokeHalServices()
531{
Martijn Coenenf6ac8482017-01-02 14:17:11532 using ::android::hidl::base::V1_0::IBase;
Martijn Coenenee9b97e2016-11-16 15:00:26533 using ::android::hidl::manager::V1_0::IServiceManager;
Martijn Coenenee9b97e2016-11-16 15:00:26534 using ::android::hardware::hidl_string;
Martijn Coenenf6ac8482017-01-02 14:17:11535 using ::android::hardware::Return;
Martijn Coenenee9b97e2016-11-16 15:00:26536
537 sp<IServiceManager> sm = ::android::hardware::defaultServiceManager();
Steven Morelanda42866b2016-12-12 23:18:06538
539 if (sm == nullptr) {
540 fprintf(stderr, "failed to get IServiceManager to poke hal services\n");
541 return;
542 }
543
Yifan Hong8cf4ed12016-12-01 01:28:58544 auto listRet = sm->list([&](const auto &interfaces) {
Martijn Coenenee9b97e2016-11-16 15:00:26545 for (size_t i = 0; i < interfaces.size(); i++) {
546 string fqInstanceName = interfaces[i];
Chih-Hung Hsiehcb057c22017-08-03 22:48:25547 string::size_type n = fqInstanceName.find('/');
Martijn Coenenee9b97e2016-11-16 15:00:26548 if (n == std::string::npos || interfaces[i].size() == n+1)
549 continue;
550 hidl_string fqInterfaceName = fqInstanceName.substr(0, n);
551 hidl_string instanceName = fqInstanceName.substr(n+1, std::string::npos);
Martijn Coenenf6ac8482017-01-02 14:17:11552 Return<sp<IBase>> interfaceRet = sm->get(fqInterfaceName, instanceName);
553 if (!interfaceRet.isOk()) {
Martijn Coenen1e4a7fb2017-02-17 13:57:38554 // ignore
Martijn Coenenf6ac8482017-01-02 14:17:11555 continue;
556 }
Carmen Jackson73206122017-04-18 22:37:57557
Martijn Coenenf6ac8482017-01-02 14:17:11558 sp<IBase> interface = interfaceRet;
Carmen Jackson73206122017-04-18 22:37:57559 if (interface == nullptr) {
560 // ignore
561 continue;
562 }
563
Martijn Coenenf6ac8482017-01-02 14:17:11564 auto notifyRet = interface->notifySyspropsChanged();
565 if (!notifyRet.isOk()) {
Martijn Coenen1e4a7fb2017-02-17 13:57:38566 // ignore
Yifan Hong8cf4ed12016-12-01 01:28:58567 }
Martijn Coenenee9b97e2016-11-16 15:00:26568 }
569 });
Yifan Hong8cf4ed12016-12-01 01:28:58570 if (!listRet.isOk()) {
Martijn Coenen64d54eb2017-01-12 16:16:31571 // TODO(b/34242478) fix this when we determine the correct ACL
572 //fprintf(stderr, "failed to list services: %s\n", listRet.description().c_str());
Yifan Hong8cf4ed12016-12-01 01:28:58573 }
Martijn Coenenee9b97e2016-11-16 15:00:26574}
575
Jamie Gennis6eea6fb2012-12-07 22:03:07576// Set the trace tags that userland tracing uses, and poke the running
577// processes to pick up the new value.
578static bool setTagsProperty(uint64_t tags)
579{
Elliott Hughes5fd6ff62017-03-28 21:55:31580 std::string value = android::base::StringPrintf("%#" PRIx64, tags);
581 if (!android::base::SetProperty(k_traceTagsProperty, value)) {
Jamie Gennis6eea6fb2012-12-07 22:03:07582 fprintf(stderr, "error setting trace tags system property\n");
583 return false;
584 }
Jamie Gennisf7f29c82013-03-27 22:50:58585 return true;
586}
587
sergeyv4144eff2016-04-28 18:40:04588static void clearAppProperties()
589{
Elliott Hughes5fd6ff62017-03-28 21:55:31590 if (!android::base::SetProperty(k_traceAppsNumberProperty, "")) {
sergeyv4144eff2016-04-28 18:40:04591 fprintf(stderr, "failed to clear system property: %s",
592 k_traceAppsNumberProperty);
593 }
594}
595
Jamie Gennisf7f29c82013-03-27 22:50:58596// Set the system property that indicates which apps should perform
597// application-level tracing.
Dan Austin09a79872016-05-31 20:27:03598static bool setAppCmdlineProperty(char* cmdline)
Jamie Gennisf7f29c82013-03-27 22:50:58599{
sergeyv4144eff2016-04-28 18:40:04600 int i = 0;
Dan Austin09a79872016-05-31 20:27:03601 char* start = cmdline;
sergeyv4144eff2016-04-28 18:40:04602 while (start != NULL) {
sergeyv4144eff2016-04-28 18:40:04603 char* end = strchr(start, ',');
604 if (end != NULL) {
605 *end = '\0';
606 end++;
607 }
Elliott Hughes5fd6ff62017-03-28 21:55:31608 std::string key = android::base::StringPrintf(k_traceAppsPropertyTemplate, i);
609 if (!android::base::SetProperty(key, start)) {
610 fprintf(stderr, "error setting trace app %d property to %s\n", i, key.c_str());
sergeyv4144eff2016-04-28 18:40:04611 clearAppProperties();
612 return false;
613 }
614 start = end;
615 i++;
616 }
617
Elliott Hughes5fd6ff62017-03-28 21:55:31618 std::string value = android::base::StringPrintf("%d", i);
619 if (!android::base::SetProperty(k_traceAppsNumberProperty, value)) {
620 fprintf(stderr, "error setting trace app number property to %s\n", value.c_str());
sergeyv4144eff2016-04-28 18:40:04621 clearAppProperties();
Jamie Gennisf7f29c82013-03-27 22:50:58622 return false;
623 }
624 return true;
Jamie Gennis6eea6fb2012-12-07 22:03:07625}
626
627// Disable all /sys/ enable files.
628static bool disableKernelTraceEvents() {
629 bool ok = true;
Elliott Hughes5fd6ff62017-03-28 21:55:31630 for (size_t i = 0; i < arraysize(k_categories); i++) {
Jamie Gennis6eea6fb2012-12-07 22:03:07631 const TracingCategory &c = k_categories[i];
632 for (int j = 0; j < MAX_SYS_FILES; j++) {
633 const char* path = c.sysfiles[j].path;
634 if (path != NULL && fileIsWritable(path)) {
635 ok &= setKernelOptionEnable(path, false);
636 }
637 }
638 }
639 return ok;
640}
641
Jamie Gennise9b8cfb2013-03-12 23:00:10642// Verify that the comma separated list of functions are being traced by the
643// kernel.
644static bool verifyKernelTraceFuncs(const char* funcs)
645{
Stephane Gasparinid8419c22016-03-02 12:45:15646 std::string buf;
Paul Lawrence2cd93cc2017-01-17 17:50:18647 if (!android::base::ReadFileToString(g_traceFolder + k_ftraceFilterPath, &buf)) {
Stephane Gasparinid8419c22016-03-02 12:45:15648 fprintf(stderr, "error opening %s: %s (%d)\n", k_ftraceFilterPath,
Jamie Gennise9b8cfb2013-03-12 23:00:10649 strerror(errno), errno);
Stephane Gasparinid8419c22016-03-02 12:45:15650 return false;
Jamie Gennise9b8cfb2013-03-12 23:00:10651 }
652
Stephane Gasparinid8419c22016-03-02 12:45:15653 String8 funcList = String8::format("\n%s",buf.c_str());
Jamie Gennise9b8cfb2013-03-12 23:00:10654
655 // Make sure that every function listed in funcs is in the list we just
Thomas Buhota2c22872016-01-27 08:44:31656 // read from the kernel, except for wildcard inputs.
Jamie Gennise9b8cfb2013-03-12 23:00:10657 bool ok = true;
658 char* myFuncs = strdup(funcs);
659 char* func = strtok(myFuncs, ",");
660 while (func) {
Thomas Buhota2c22872016-01-27 08:44:31661 if (!strchr(func, '*')) {
662 String8 fancyFunc = String8::format("\n%s\n", func);
663 bool found = funcList.find(fancyFunc.string(), 0) >= 0;
664 if (!found || func[0] == '\0') {
665 fprintf(stderr, "error: \"%s\" is not a valid kernel function "
666 "to trace.\n", func);
667 ok = false;
668 }
Jamie Gennise9b8cfb2013-03-12 23:00:10669 }
670 func = strtok(NULL, ",");
671 }
672 free(myFuncs);
Jamie Gennise9b8cfb2013-03-12 23:00:10673 return ok;
674}
675
676// Set the comma separated list of functions that the kernel is to trace.
677static bool setKernelTraceFuncs(const char* funcs)
678{
679 bool ok = true;
680
681 if (funcs == NULL || funcs[0] == '\0') {
682 // Disable kernel function tracing.
Jamie Gennis6f6f3f72013-03-27 22:50:30683 if (fileIsWritable(k_currentTracerPath)) {
684 ok &= writeStr(k_currentTracerPath, "nop");
685 }
686 if (fileIsWritable(k_ftraceFilterPath)) {
Jamie Gennise9b8cfb2013-03-12 23:00:10687 ok &= truncateFile(k_ftraceFilterPath);
688 }
689 } else {
690 // Enable kernel function tracing.
691 ok &= writeStr(k_currentTracerPath, "function_graph");
692 ok &= setKernelOptionEnable(k_funcgraphAbsTimePath, true);
693 ok &= setKernelOptionEnable(k_funcgraphCpuPath, true);
694 ok &= setKernelOptionEnable(k_funcgraphProcPath, true);
695 ok &= setKernelOptionEnable(k_funcgraphFlatPath, true);
696
697 // Set the requested filter functions.
698 ok &= truncateFile(k_ftraceFilterPath);
699 char* myFuncs = strdup(funcs);
700 char* func = strtok(myFuncs, ",");
701 while (func) {
702 ok &= appendStr(k_ftraceFilterPath, func);
703 func = strtok(NULL, ",");
704 }
705 free(myFuncs);
706
707 // Verify that the set functions are being traced.
708 if (ok) {
709 ok &= verifyKernelTraceFuncs(funcs);
710 }
711 }
712
713 return ok;
714}
715
Yasuhiro Matsuda46c51fb2015-06-29 10:20:39716static bool setCategoryEnable(const char* name, bool enable)
717{
Elliott Hughes5fd6ff62017-03-28 21:55:31718 for (size_t i = 0; i < arraysize(k_categories); i++) {
Yasuhiro Matsuda46c51fb2015-06-29 10:20:39719 const TracingCategory& c = k_categories[i];
720 if (strcmp(name, c.name) == 0) {
721 if (isCategorySupported(c)) {
722 g_categoryEnables[i] = enable;
723 return true;
724 } else {
725 if (isCategorySupportedForRoot(c)) {
726 fprintf(stderr, "error: category \"%s\" requires root "
727 "privileges.\n", name);
728 } else {
729 fprintf(stderr, "error: category \"%s\" is not supported "
730 "on this device.\n", name);
731 }
732 return false;
733 }
734 }
735 }
736 fprintf(stderr, "error: unknown tracing category \"%s\"\n", name);
737 return false;
738}
739
740static bool setCategoriesEnableFromFile(const char* categories_file)
741{
742 if (!categories_file) {
743 return true;
744 }
745 Tokenizer* tokenizer = NULL;
746 if (Tokenizer::open(String8(categories_file), &tokenizer) != NO_ERROR) {
747 return false;
748 }
749 bool ok = true;
750 while (!tokenizer->isEol()) {
751 String8 token = tokenizer->nextToken(" ");
752 if (token.isEmpty()) {
753 tokenizer->skipDelimiters(" ");
754 continue;
755 }
756 ok &= setCategoryEnable(token.string(), true);
757 }
758 delete tokenizer;
759 return ok;
760}
761
Jamie Gennise9b8cfb2013-03-12 23:00:10762// Set all the kernel tracing settings to the desired state for this trace
763// capture.
764static bool setUpTrace()
Jamie Gennis6eea6fb2012-12-07 22:03:07765{
766 bool ok = true;
767
768 // Set up the tracing options.
Yasuhiro Matsuda46c51fb2015-06-29 10:20:39769 ok &= setCategoriesEnableFromFile(g_categoriesFile);
Jamie Gennis6eea6fb2012-12-07 22:03:07770 ok &= setTraceOverwriteEnable(g_traceOverwrite);
771 ok &= setTraceBufferSizeKB(g_traceBufferSizeKB);
John Reckba54d5b2017-06-23 16:44:08772 // TODO: Re-enable after stabilization
773 //ok &= setCmdlineSize();
Carmen Jacksonea826792017-05-05 18:42:32774 ok &= setClock();
Jamie Gennise9b8cfb2013-03-12 23:00:10775 ok &= setPrintTgidEnableIfPresent(true);
776 ok &= setKernelTraceFuncs(g_kernelTraceFuncs);
Jamie Gennis6eea6fb2012-12-07 22:03:07777
778 // Set up the tags property.
779 uint64_t tags = 0;
Elliott Hughes5fd6ff62017-03-28 21:55:31780 for (size_t i = 0; i < arraysize(k_categories); i++) {
Jamie Gennis6eea6fb2012-12-07 22:03:07781 if (g_categoryEnables[i]) {
782 const TracingCategory &c = k_categories[i];
783 tags |= c.tags;
784 }
785 }
786 ok &= setTagsProperty(tags);
sergeyvdb404152016-05-03 02:26:07787
788 bool coreServicesTagEnabled = false;
Elliott Hughes5fd6ff62017-03-28 21:55:31789 for (size_t i = 0; i < arraysize(k_categories); i++) {
sergeyvdb404152016-05-03 02:26:07790 if (strcmp(k_categories[i].name, k_coreServiceCategory) == 0) {
791 coreServicesTagEnabled = g_categoryEnables[i];
792 }
Corey Tabakaa6c0a722017-05-31 23:37:40793
794 // Set whether to poke PDX services in this session.
795 if (strcmp(k_categories[i].name, k_pdxServiceCategory) == 0) {
796 g_tracePdx = g_categoryEnables[i];
797 }
sergeyvdb404152016-05-03 02:26:07798 }
799
800 std::string packageList(g_debugAppCmdLine);
801 if (coreServicesTagEnabled) {
sergeyvdb404152016-05-03 02:26:07802 if (!packageList.empty()) {
803 packageList += ",";
804 }
Elliott Hughes5fd6ff62017-03-28 21:55:31805 packageList += android::base::GetProperty(k_coreServicesProp, "");
sergeyvdb404152016-05-03 02:26:07806 }
Dan Austin09a79872016-05-31 20:27:03807 ok &= setAppCmdlineProperty(&packageList[0]);
Jamie Gennisf7f29c82013-03-27 22:50:58808 ok &= pokeBinderServices();
Martijn Coenenee9b97e2016-11-16 15:00:26809 pokeHalServices();
Jamie Gennis6eea6fb2012-12-07 22:03:07810
Corey Tabakaa6c0a722017-05-31 23:37:40811 if (g_tracePdx) {
812 ok &= ServiceUtility::PokeServices();
813 }
814
Jamie Gennis6eea6fb2012-12-07 22:03:07815 // Disable all the sysfs enables. This is done as a separate loop from
816 // the enables to allow the same enable to exist in multiple categories.
817 ok &= disableKernelTraceEvents();
818
819 // Enable all the sysfs enables that are in an enabled category.
Elliott Hughes5fd6ff62017-03-28 21:55:31820 for (size_t i = 0; i < arraysize(k_categories); i++) {
Jamie Gennis6eea6fb2012-12-07 22:03:07821 if (g_categoryEnables[i]) {
822 const TracingCategory &c = k_categories[i];
823 for (int j = 0; j < MAX_SYS_FILES; j++) {
824 const char* path = c.sysfiles[j].path;
825 bool required = c.sysfiles[j].required == REQ;
826 if (path != NULL) {
827 if (fileIsWritable(path)) {
828 ok &= setKernelOptionEnable(path, true);
829 } else if (required) {
830 fprintf(stderr, "error writing file %s\n", path);
831 ok = false;
832 }
833 }
834 }
835 }
836 }
837
Jamie Gennis6eea6fb2012-12-07 22:03:07838 return ok;
839}
840
Jamie Gennise9b8cfb2013-03-12 23:00:10841// Reset all the kernel tracing settings to their default state.
842static void cleanUpTrace()
Jamie Gennis6eea6fb2012-12-07 22:03:07843{
Jamie Gennis6eea6fb2012-12-07 22:03:07844 // Disable all tracing that we're able to.
845 disableKernelTraceEvents();
846
Jamie Gennisf7f29c82013-03-27 22:50:58847 // Reset the system properties.
Jamie Gennis6eea6fb2012-12-07 22:03:07848 setTagsProperty(0);
sergeyv4144eff2016-04-28 18:40:04849 clearAppProperties();
Jamie Gennisf7f29c82013-03-27 22:50:58850 pokeBinderServices();
Jamie Gennis6eea6fb2012-12-07 22:03:07851
Corey Tabakaa6c0a722017-05-31 23:37:40852 if (g_tracePdx) {
853 ServiceUtility::PokeServices();
854 }
855
Jamie Gennis6eea6fb2012-12-07 22:03:07856 // Set the options back to their defaults.
857 setTraceOverwriteEnable(true);
Jamie Gennise9b8cfb2013-03-12 23:00:10858 setTraceBufferSizeKB(1);
Jamie Gennise9b8cfb2013-03-12 23:00:10859 setPrintTgidEnableIfPresent(false);
860 setKernelTraceFuncs(NULL);
861}
Jamie Gennis6eea6fb2012-12-07 22:03:07862
Jamie Gennise9b8cfb2013-03-12 23:00:10863
864// Enable tracing in the kernel.
865static bool startTrace()
866{
867 return setTracingEnabled(true);
868}
869
870// Disable tracing in the kernel.
871static void stopTrace()
872{
873 setTracingEnabled(false);
Jamie Gennis6eea6fb2012-12-07 22:03:07874}
875
Martijn Coenend9535872015-11-26 09:00:55876// Read data from the tracing pipe and forward to stdout
877static void streamTrace()
878{
879 char trace_data[4096];
Paul Lawrence2cd93cc2017-01-17 17:50:18880 int traceFD = open((g_traceFolder + k_traceStreamPath).c_str(), O_RDWR);
Martijn Coenend9535872015-11-26 09:00:55881 if (traceFD == -1) {
882 fprintf(stderr, "error opening %s: %s (%d)\n", k_traceStreamPath,
883 strerror(errno), errno);
884 return;
885 }
886 while (!g_traceAborted) {
887 ssize_t bytes_read = read(traceFD, trace_data, 4096);
888 if (bytes_read > 0) {
889 write(STDOUT_FILENO, trace_data, bytes_read);
890 fflush(stdout);
891 } else {
892 if (!g_traceAborted) {
893 fprintf(stderr, "read returned %zd bytes err %d (%s)\n",
894 bytes_read, errno, strerror(errno));
895 }
896 break;
897 }
898 }
899}
900
Jamie Gennis6eea6fb2012-12-07 22:03:07901// Read the current kernel trace and write it to stdout.
John Reck40b26b42016-03-30 16:44:36902static void dumpTrace(int outFd)
Jamie Gennis6eea6fb2012-12-07 22:03:07903{
John Reck6c8ac922016-03-28 18:25:30904 ALOGI("Dumping trace");
Paul Lawrence2cd93cc2017-01-17 17:50:18905 int traceFD = open((g_traceFolder + k_tracePath).c_str(), O_RDWR);
Jamie Gennis6eea6fb2012-12-07 22:03:07906 if (traceFD == -1) {
907 fprintf(stderr, "error opening %s: %s (%d)\n", k_tracePath,
908 strerror(errno), errno);
909 return;
910 }
911
912 if (g_compress) {
913 z_stream zs;
Elliott Hughes3da5d232015-01-25 16:35:20914 memset(&zs, 0, sizeof(zs));
Elliott Hughesa252f4d2016-07-22 00:12:15915
916 int result = deflateInit(&zs, Z_DEFAULT_COMPRESSION);
Jamie Gennis6eea6fb2012-12-07 22:03:07917 if (result != Z_OK) {
918 fprintf(stderr, "error initializing zlib: %d\n", result);
919 close(traceFD);
920 return;
921 }
922
Elliott Hughesa252f4d2016-07-22 00:12:15923 constexpr size_t bufSize = 64*1024;
924 std::unique_ptr<uint8_t> in(new uint8_t[bufSize]);
925 std::unique_ptr<uint8_t> out(new uint8_t[bufSize]);
926 if (!in || !out) {
927 fprintf(stderr, "couldn't allocate buffers\n");
928 close(traceFD);
929 return;
930 }
Jamie Gennis6eea6fb2012-12-07 22:03:07931
Elliott Hughesa252f4d2016-07-22 00:12:15932 int flush = Z_NO_FLUSH;
933
934 zs.next_out = reinterpret_cast<Bytef*>(out.get());
Jamie Gennis6eea6fb2012-12-07 22:03:07935 zs.avail_out = bufSize;
936
937 do {
938
939 if (zs.avail_in == 0) {
940 // More input is needed.
Elliott Hughesa252f4d2016-07-22 00:12:15941 result = read(traceFD, in.get(), bufSize);
Jamie Gennis6eea6fb2012-12-07 22:03:07942 if (result < 0) {
943 fprintf(stderr, "error reading trace: %s (%d)\n",
944 strerror(errno), errno);
945 result = Z_STREAM_END;
946 break;
947 } else if (result == 0) {
948 flush = Z_FINISH;
949 } else {
Elliott Hughesa252f4d2016-07-22 00:12:15950 zs.next_in = reinterpret_cast<Bytef*>(in.get());
Jamie Gennis6eea6fb2012-12-07 22:03:07951 zs.avail_in = result;
952 }
953 }
954
955 if (zs.avail_out == 0) {
956 // Need to write the output.
Elliott Hughesb59e2962016-07-22 16:00:59957 result = write(outFd, out.get(), bufSize);
Jamie Gennis6eea6fb2012-12-07 22:03:07958 if ((size_t)result < bufSize) {
959 fprintf(stderr, "error writing deflated trace: %s (%d)\n",
960 strerror(errno), errno);
961 result = Z_STREAM_END; // skip deflate error message
962 zs.avail_out = bufSize; // skip the final write
963 break;
964 }
Elliott Hughesa252f4d2016-07-22 00:12:15965 zs.next_out = reinterpret_cast<Bytef*>(out.get());
Jamie Gennis6eea6fb2012-12-07 22:03:07966 zs.avail_out = bufSize;
967 }
968
969 } while ((result = deflate(&zs, flush)) == Z_OK);
970
971 if (result != Z_STREAM_END) {
972 fprintf(stderr, "error deflating trace: %s\n", zs.msg);
973 }
974
975 if (zs.avail_out < bufSize) {
976 size_t bytes = bufSize - zs.avail_out;
Elliott Hughesb59e2962016-07-22 16:00:59977 result = write(outFd, out.get(), bytes);
Jamie Gennis6eea6fb2012-12-07 22:03:07978 if ((size_t)result < bytes) {
979 fprintf(stderr, "error writing deflated trace: %s (%d)\n",
980 strerror(errno), errno);
981 }
982 }
983
984 result = deflateEnd(&zs);
985 if (result != Z_OK) {
986 fprintf(stderr, "error cleaning up zlib: %d\n", result);
987 }
Jamie Gennis6eea6fb2012-12-07 22:03:07988 } else {
Josh Gaod3d36e72017-04-11 22:21:13989 char buf[4096];
990 ssize_t rc;
991 while ((rc = TEMP_FAILURE_RETRY(read(traceFD, buf, sizeof(buf)))) > 0) {
992 if (!android::base::WriteFully(outFd, buf, rc)) {
993 fprintf(stderr, "error writing trace: %s\n", strerror(errno));
994 break;
995 }
996 }
997 if (rc == -1) {
998 fprintf(stderr, "error dumping trace: %s\n", strerror(errno));
Jamie Gennis6eea6fb2012-12-07 22:03:07999 }
1000 }
1001
1002 close(traceFD);
1003}
1004
Mark Salyzyn92dc3fc2014-03-12 20:12:441005static void handleSignal(int /*signo*/)
Jamie Gennis6eea6fb2012-12-07 22:03:071006{
1007 if (!g_nohup) {
1008 g_traceAborted = true;
1009 }
1010}
1011
1012static void registerSigHandler()
1013{
1014 struct sigaction sa;
1015 sigemptyset(&sa.sa_mask);
1016 sa.sa_flags = 0;
1017 sa.sa_handler = handleSignal;
1018 sigaction(SIGHUP, &sa, NULL);
1019 sigaction(SIGINT, &sa, NULL);
1020 sigaction(SIGQUIT, &sa, NULL);
1021 sigaction(SIGTERM, &sa, NULL);
1022}
1023
Jamie Gennis6eea6fb2012-12-07 22:03:071024static void listSupportedCategories()
1025{
Elliott Hughes5fd6ff62017-03-28 21:55:311026 for (size_t i = 0; i < arraysize(k_categories); i++) {
Jamie Gennis6eea6fb2012-12-07 22:03:071027 const TracingCategory& c = k_categories[i];
1028 if (isCategorySupported(c)) {
1029 printf(" %10s - %s\n", c.name, c.longname);
1030 }
1031 }
1032}
1033
1034// Print the command usage help to stderr.
1035static void showHelp(const char *cmd)
1036{
1037 fprintf(stderr, "usage: %s [options] [categories...]\n", cmd);
1038 fprintf(stderr, "options include:\n"
Jamie Gennisf7f29c82013-03-27 22:50:581039 " -a appname enable app-level tracing for a comma "
Daniel Colascione519a0792018-02-10 04:05:391040 "separated list of cmdlines; * is a wildcard matching any process\n"
Jamie Gennis6eea6fb2012-12-07 22:03:071041 " -b N use a trace buffer size of N KB\n"
1042 " -c trace into a circular buffer\n"
Yasuhiro Matsuda46c51fb2015-06-29 10:20:391043 " -f filename use the categories written in a file as space-separated\n"
1044 " values in a line\n"
Jamie Gennise9b8cfb2013-03-12 23:00:101045 " -k fname,... trace the listed kernel functions\n"
Jamie Gennis6eea6fb2012-12-07 22:03:071046 " -n ignore signals\n"
1047 " -s N sleep for N seconds before tracing [default 0]\n"
Fabien Sanglardb5c95472016-06-08 18:40:121048 " -t N trace for N seconds [default 5]\n"
Jamie Gennis6eea6fb2012-12-07 22:03:071049 " -z compress the trace dump\n"
Fabien Sanglardb5c95472016-06-08 18:40:121050 " --async_start start circular trace and return immediately\n"
Jamie Gennis6eea6fb2012-12-07 22:03:071051 " --async_dump dump the current contents of circular trace buffer\n"
1052 " --async_stop stop tracing and dump the current contents of circular\n"
1053 " trace buffer\n"
Martijn Coenend9535872015-11-26 09:00:551054 " --stream stream trace to stdout as it enters the trace buffer\n"
1055 " Note: this can take significant CPU time, and is best\n"
1056 " used for measuring things that are not affected by\n"
1057 " CPU performance, like pagecache usage.\n"
Jamie Gennis92573f12012-12-08 00:29:031058 " --list_categories\n"
1059 " list the available tracing categories\n"
John Reck40b26b42016-03-30 16:44:361060 " -o filename write the trace to the specified file instead\n"
1061 " of stdout.\n"
Jamie Gennis6eea6fb2012-12-07 22:03:071062 );
1063}
1064
Paul Lawrence2cd93cc2017-01-17 17:50:181065bool findTraceFiles()
1066{
1067 static const std::string debugfs_path = "/sys/kernel/debug/tracing/";
1068 static const std::string tracefs_path = "/sys/kernel/tracing/";
1069 static const std::string trace_file = "trace_marker";
1070
1071 bool tracefs = access((tracefs_path + trace_file).c_str(), F_OK) != -1;
1072 bool debugfs = access((debugfs_path + trace_file).c_str(), F_OK) != -1;
1073
1074 if (!tracefs && !debugfs) {
1075 fprintf(stderr, "Error: Did not find trace folder\n");
1076 return false;
1077 }
1078
1079 if (tracefs) {
1080 g_traceFolder = tracefs_path;
1081 } else {
1082 g_traceFolder = debugfs_path;
1083 }
1084
1085 return true;
1086}
1087
Jamie Gennis6eea6fb2012-12-07 22:03:071088int main(int argc, char **argv)
1089{
1090 bool async = false;
1091 bool traceStart = true;
1092 bool traceStop = true;
1093 bool traceDump = true;
Martijn Coenend9535872015-11-26 09:00:551094 bool traceStream = false;
Jamie Gennis6eea6fb2012-12-07 22:03:071095
1096 if (argc == 2 && 0 == strcmp(argv[1], "--help")) {
1097 showHelp(argv[0]);
1098 exit(0);
1099 }
1100
Paul Lawrence2cd93cc2017-01-17 17:50:181101 if (!findTraceFiles()) {
1102 fprintf(stderr, "No trace folder found\n");
1103 exit(-1);
1104 }
1105
Jamie Gennis6eea6fb2012-12-07 22:03:071106 for (;;) {
1107 int ret;
1108 int option_index = 0;
1109 static struct option long_options[] = {
1110 {"async_start", no_argument, 0, 0 },
1111 {"async_stop", no_argument, 0, 0 },
1112 {"async_dump", no_argument, 0, 0 },
1113 {"list_categories", no_argument, 0, 0 },
Martijn Coenend9535872015-11-26 09:00:551114 {"stream", no_argument, 0, 0 },
Jamie Gennis6eea6fb2012-12-07 22:03:071115 { 0, 0, 0, 0 }
1116 };
1117
John Reck40b26b42016-03-30 16:44:361118 ret = getopt_long(argc, argv, "a:b:cf:k:ns:t:zo:",
Jamie Gennis6eea6fb2012-12-07 22:03:071119 long_options, &option_index);
1120
1121 if (ret < 0) {
1122 for (int i = optind; i < argc; i++) {
1123 if (!setCategoryEnable(argv[i], true)) {
1124 fprintf(stderr, "error enabling tracing category \"%s\"\n", argv[i]);
1125 exit(1);
1126 }
1127 }
1128 break;
1129 }
1130
1131 switch(ret) {
Jamie Gennisf7f29c82013-03-27 22:50:581132 case 'a':
1133 g_debugAppCmdLine = optarg;
1134 break;
1135
Jamie Gennis6eea6fb2012-12-07 22:03:071136 case 'b':
1137 g_traceBufferSizeKB = atoi(optarg);
1138 break;
1139
1140 case 'c':
1141 g_traceOverwrite = true;
1142 break;
1143
Yasuhiro Matsuda46c51fb2015-06-29 10:20:391144 case 'f':
1145 g_categoriesFile = optarg;
1146 break;
1147
Jamie Gennise9b8cfb2013-03-12 23:00:101148 case 'k':
1149 g_kernelTraceFuncs = optarg;
Jamie Gennis6f6f3f72013-03-27 22:50:301150 break;
Jamie Gennise9b8cfb2013-03-12 23:00:101151
Jamie Gennis6eea6fb2012-12-07 22:03:071152 case 'n':
1153 g_nohup = true;
Jamie Gennis6f6f3f72013-03-27 22:50:301154 break;
Jamie Gennis6eea6fb2012-12-07 22:03:071155
1156 case 's':
1157 g_initialSleepSecs = atoi(optarg);
1158 break;
1159
1160 case 't':
1161 g_traceDurationSeconds = atoi(optarg);
1162 break;
1163
1164 case 'z':
1165 g_compress = true;
1166 break;
1167
John Reck40b26b42016-03-30 16:44:361168 case 'o':
1169 g_outputFile = optarg;
1170 break;
1171
Jamie Gennis6eea6fb2012-12-07 22:03:071172 case 0:
1173 if (!strcmp(long_options[option_index].name, "async_start")) {
1174 async = true;
1175 traceStop = false;
1176 traceDump = false;
1177 g_traceOverwrite = true;
1178 } else if (!strcmp(long_options[option_index].name, "async_stop")) {
1179 async = true;
John Reck4ba2b632015-05-15 17:00:341180 traceStart = false;
Jamie Gennis6eea6fb2012-12-07 22:03:071181 } else if (!strcmp(long_options[option_index].name, "async_dump")) {
1182 async = true;
1183 traceStart = false;
1184 traceStop = false;
Martijn Coenend9535872015-11-26 09:00:551185 } else if (!strcmp(long_options[option_index].name, "stream")) {
1186 traceStream = true;
1187 traceDump = false;
Jamie Gennis6eea6fb2012-12-07 22:03:071188 } else if (!strcmp(long_options[option_index].name, "list_categories")) {
1189 listSupportedCategories();
1190 exit(0);
1191 }
Jamie Gennis6f6f3f72013-03-27 22:50:301192 break;
Jamie Gennis6eea6fb2012-12-07 22:03:071193
1194 default:
1195 fprintf(stderr, "\n");
1196 showHelp(argv[0]);
1197 exit(-1);
1198 break;
1199 }
1200 }
1201
1202 registerSigHandler();
1203
1204 if (g_initialSleepSecs > 0) {
1205 sleep(g_initialSleepSecs);
1206 }
1207
Jamie Gennise9b8cfb2013-03-12 23:00:101208 bool ok = true;
1209 ok &= setUpTrace();
1210 ok &= startTrace();
Jamie Gennis6eea6fb2012-12-07 22:03:071211
1212 if (ok && traceStart) {
Martijn Coenend9535872015-11-26 09:00:551213 if (!traceStream) {
Carmen Jacksonac53e732017-05-02 23:55:331214 printf("capturing trace...");
Martijn Coenend9535872015-11-26 09:00:551215 fflush(stdout);
1216 }
Jamie Gennis6eea6fb2012-12-07 22:03:071217
1218 // We clear the trace after starting it because tracing gets enabled for
1219 // each CPU individually in the kernel. Having the beginning of the trace
1220 // contain entries from only one CPU can cause "begin" entries without a
1221 // matching "end" entry to show up if a task gets migrated from one CPU to
1222 // another.
1223 ok = clearTrace();
1224
Martijn Coenen0bcd97a2015-07-15 12:25:231225 writeClockSyncMarker();
Martijn Coenend9535872015-11-26 09:00:551226 if (ok && !async && !traceStream) {
Jamie Gennis6eea6fb2012-12-07 22:03:071227 // Sleep to allow the trace to be captured.
1228 struct timespec timeLeft;
1229 timeLeft.tv_sec = g_traceDurationSeconds;
1230 timeLeft.tv_nsec = 0;
1231 do {
1232 if (g_traceAborted) {
1233 break;
1234 }
1235 } while (nanosleep(&timeLeft, &timeLeft) == -1 && errno == EINTR);
1236 }
Martijn Coenend9535872015-11-26 09:00:551237
1238 if (traceStream) {
1239 streamTrace();
1240 }
Jamie Gennis6eea6fb2012-12-07 22:03:071241 }
1242
1243 // Stop the trace and restore the default settings.
1244 if (traceStop)
1245 stopTrace();
1246
1247 if (ok && traceDump) {
1248 if (!g_traceAborted) {
John Reck40b26b42016-03-30 16:44:361249 printf(" done\n");
Jamie Gennis6eea6fb2012-12-07 22:03:071250 fflush(stdout);
John Reck40b26b42016-03-30 16:44:361251 int outFd = STDOUT_FILENO;
1252 if (g_outputFile) {
Martijn Coenenc5791982017-02-22 08:25:311253 outFd = open(g_outputFile, O_WRONLY | O_CREAT | O_TRUNC, 0644);
John Reck40b26b42016-03-30 16:44:361254 }
1255 if (outFd == -1) {
1256 printf("Failed to open '%s', err=%d", g_outputFile, errno);
1257 } else {
1258 dprintf(outFd, "TRACE:\n");
1259 dumpTrace(outFd);
1260 if (g_outputFile) {
1261 close(outFd);
1262 }
1263 }
Jamie Gennis6eea6fb2012-12-07 22:03:071264 } else {
1265 printf("\ntrace aborted.\n");
1266 fflush(stdout);
1267 }
1268 clearTrace();
1269 } else if (!ok) {
1270 fprintf(stderr, "unable to start tracing\n");
1271 }
1272
1273 // Reset the trace buffer size to 1.
1274 if (traceStop)
Jamie Gennise9b8cfb2013-03-12 23:00:101275 cleanUpTrace();
Jamie Gennis6eea6fb2012-12-07 22:03:071276
1277 return g_traceAborted ? 1 : 0;
1278}