blob: c1761018f5c60da39ff72306023be3fcb6721174 [file] [log] [blame]
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001/*
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
John Reck40b26b42016-03-30 09:44:36 -070017 #define LOG_TAG "atrace"
18
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
Mark Salyzyn92dc3fc2014-03-12 13:12:44 -070022#include <inttypes.h>
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080023#include <signal.h>
24#include <stdarg.h>
25#include <stdbool.h>
26#include <stdio.h>
27#include <stdlib.h>
Elliott Hughes3da5d232015-01-25 08:35:20 -080028#include <string.h>
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080029#include <sys/sendfile.h>
30#include <time.h>
Martijn Coenend9535872015-11-26 10:00:55 +010031#include <unistd.h>
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080032#include <zlib.h>
33
Elliott Hughesa252f4d2016-07-21 17:12:15 -070034#include <memory>
35
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080036#include <binder/IBinder.h>
37#include <binder/IServiceManager.h>
38#include <binder/Parcel.h>
39
Martijn Coenenee9b97e2016-11-16 16:00:26 +010040#include <android/hidl/manager/1.0/IServiceManager.h>
41#include <hidl/ServiceManagement.h>
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080042#include <cutils/properties.h>
43
44#include <utils/String8.h>
John Reck469a1942015-03-26 15:31:35 -070045#include <utils/Timers.h>
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +090046#include <utils/Tokenizer.h>
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080047#include <utils/Trace.h>
Stephane Gasparinid8419c22016-03-02 13:45:15 +010048#include <android-base/file.h>
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080049
50using namespace android;
51
Martijn Coenenee9b97e2016-11-16 16:00:26 +010052using std::string;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080053#define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
54
sergeyv4144eff2016-04-28 11:40:04 -070055#define MAX_SYS_FILES 10
56#define MAX_PACKAGES 16
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080057
58const char* k_traceTagsProperty = "debug.atrace.tags.enableflags";
sergeyv4144eff2016-04-28 11:40:04 -070059
60const char* k_traceAppsNumberProperty = "debug.atrace.app_number";
61const char* k_traceAppsPropertyTemplate = "debug.atrace.app_%d";
sergeyvdb404152016-05-02 19:26:07 -070062const char* k_coreServiceCategory = "core_services";
63const char* k_coreServicesProp = "ro.atrace.core.services";
Jamie Gennis6eea6fb2012-12-07 14:03:07 -080064
65typedef enum { OPT, REQ } requiredness ;
66
67struct TracingCategory {
68 // The name identifying the category.
69 const char* name;
70
71 // A longer description of the category.
72 const char* longname;
73
74 // The userland tracing tags that the category enables.
75 uint64_t tags;
76
77 // The fname==NULL terminated list of /sys/ files that the category
78 // enables.
79 struct {
80 // Whether the file must be writable in order to enable the tracing
81 // category.
82 requiredness required;
83
84 // The path to the enable file.
85 const char* path;
86 } sysfiles[MAX_SYS_FILES];
87};
88
89/* Tracing categories */
90static const TracingCategory k_categories[] = {
Jamie Gennisb2a89e32013-03-11 19:37:53 -070091 { "gfx", "Graphics", ATRACE_TAG_GRAPHICS, { } },
92 { "input", "Input", ATRACE_TAG_INPUT, { } },
93 { "view", "View System", ATRACE_TAG_VIEW, { } },
94 { "webview", "WebView", ATRACE_TAG_WEBVIEW, { } },
95 { "wm", "Window Manager", ATRACE_TAG_WINDOW_MANAGER, { } },
96 { "am", "Activity Manager", ATRACE_TAG_ACTIVITY_MANAGER, { } },
Patrick Auchter70ec2942014-09-30 15:38:30 -050097 { "sm", "Sync Manager", ATRACE_TAG_SYNC_MANAGER, { } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -070098 { "audio", "Audio", ATRACE_TAG_AUDIO, { } },
99 { "video", "Video", ATRACE_TAG_VIDEO, { } },
100 { "camera", "Camera", ATRACE_TAG_CAMERA, { } },
101 { "hal", "Hardware Modules", ATRACE_TAG_HAL, { } },
Jeff Brown3200b0b2014-08-14 19:24:47 -0700102 { "app", "Application", ATRACE_TAG_APP, { } },
Dianne Hackborn9380d782013-04-12 14:52:35 -0700103 { "res", "Resource Loading", ATRACE_TAG_RESOURCES, { } },
Jamie Genniseff2e8d2013-05-07 15:20:39 -0700104 { "dalvik", "Dalvik VM", ATRACE_TAG_DALVIK, { } },
Tim Murrayf0f28412013-05-23 14:39:42 -0700105 { "rs", "RenderScript", ATRACE_TAG_RS, { } },
Brigid Smith750aa972014-05-28 14:23:24 -0700106 { "bionic", "Bionic C Library", ATRACE_TAG_BIONIC, { } },
Jeff Brown3200b0b2014-08-14 19:24:47 -0700107 { "power", "Power Management", ATRACE_TAG_POWER, { } },
Todd Kennedy01e111b2015-07-31 14:36:20 -0700108 { "pm", "Package Manager", ATRACE_TAG_PACKAGE_MANAGER, { } },
Yasuhiro Matsuda7cc49772015-07-01 01:46:25 +0900109 { "ss", "System Server", ATRACE_TAG_SYSTEM_SERVER, { } },
Greg Hackmannbbd7d992014-12-01 14:43:34 -0800110 { "database", "Database", ATRACE_TAG_DATABASE, { } },
Felipe Leme0f97c1d2016-09-07 11:33:26 -0700111 { "network", "Network", ATRACE_TAG_NETWORK, { } },
Josh Gao468b4cb2016-11-29 10:55:21 -0800112 { "adb", "ADB", ATRACE_TAG_ADB, { } },
sergeyvdb404152016-05-02 19:26:07 -0700113 { k_coreServiceCategory, "Core services", 0, { } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700114 { "sched", "CPU Scheduling", 0, {
115 { REQ, "/sys/kernel/debug/tracing/events/sched/sched_switch/enable" },
116 { REQ, "/sys/kernel/debug/tracing/events/sched/sched_wakeup/enable" },
Riley Andrews5672bb72015-11-19 13:31:17 -0800117 { OPT, "/sys/kernel/debug/tracing/events/sched/sched_blocked_reason/enable" },
Ruchi Kandoicfe500d2015-11-23 13:47:20 -0800118 { OPT, "/sys/kernel/debug/tracing/events/sched/sched_cpu_hotplug/enable" },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800119 } },
Dan Willemsenf440d392014-04-11 15:44:09 -0700120 { "irq", "IRQ Events", 0, {
121 { REQ, "/sys/kernel/debug/tracing/events/irq/enable" },
Riley Andrews412e4f62015-11-02 21:01:34 -0800122 { OPT, "/sys/kernel/debug/tracing/events/ipi/enable" },
Dan Willemsenf440d392014-04-11 15:44:09 -0700123 } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700124 { "freq", "CPU Frequency", 0, {
125 { REQ, "/sys/kernel/debug/tracing/events/power/cpu_frequency/enable" },
126 { OPT, "/sys/kernel/debug/tracing/events/power/clock_set_rate/enable" },
Ruchi Kandoiffcc7112015-11-19 18:32:00 -0800127 { OPT, "/sys/kernel/debug/tracing/events/power/cpu_frequency_limits/enable" },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800128 } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700129 { "membus", "Memory Bus Utilization", 0, {
130 { REQ, "/sys/kernel/debug/tracing/events/memory_bus/enable" },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800131 } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700132 { "idle", "CPU Idle", 0, {
133 { REQ, "/sys/kernel/debug/tracing/events/power/cpu_idle/enable" },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800134 } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700135 { "disk", "Disk I/O", 0, {
Greg Hackmanne80d32c2014-11-20 12:59:44 -0800136 { OPT, "/sys/kernel/debug/tracing/events/f2fs/f2fs_sync_file_enter/enable" },
137 { OPT, "/sys/kernel/debug/tracing/events/f2fs/f2fs_sync_file_exit/enable" },
138 { OPT, "/sys/kernel/debug/tracing/events/f2fs/f2fs_write_begin/enable" },
139 { OPT, "/sys/kernel/debug/tracing/events/f2fs/f2fs_write_end/enable" },
140 { OPT, "/sys/kernel/debug/tracing/events/ext4/ext4_da_write_begin/enable" },
141 { OPT, "/sys/kernel/debug/tracing/events/ext4/ext4_da_write_end/enable" },
142 { OPT, "/sys/kernel/debug/tracing/events/ext4/ext4_sync_file_enter/enable" },
143 { OPT, "/sys/kernel/debug/tracing/events/ext4/ext4_sync_file_exit/enable" },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700144 { REQ, "/sys/kernel/debug/tracing/events/block/block_rq_issue/enable" },
145 { REQ, "/sys/kernel/debug/tracing/events/block/block_rq_complete/enable" },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800146 } },
Ken Sumralld3fa5612013-07-03 12:32:03 -0700147 { "mmc", "eMMC commands", 0, {
148 { REQ, "/sys/kernel/debug/tracing/events/mmc/enable" },
149 } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700150 { "load", "CPU Load", 0, {
151 { REQ, "/sys/kernel/debug/tracing/events/cpufreq_interactive/enable" },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800152 } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700153 { "sync", "Synchronization", 0, {
154 { REQ, "/sys/kernel/debug/tracing/events/sync/enable" },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800155 } },
Jamie Gennisb2a89e32013-03-11 19:37:53 -0700156 { "workq", "Kernel Workqueues", 0, {
157 { REQ, "/sys/kernel/debug/tracing/events/workqueue/enable" },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800158 } },
Colin Cross580407f2014-08-18 15:22:13 -0700159 { "memreclaim", "Kernel Memory Reclaim", 0, {
160 { REQ, "/sys/kernel/debug/tracing/events/vmscan/mm_vmscan_direct_reclaim_begin/enable" },
161 { REQ, "/sys/kernel/debug/tracing/events/vmscan/mm_vmscan_direct_reclaim_end/enable" },
162 { REQ, "/sys/kernel/debug/tracing/events/vmscan/mm_vmscan_kswapd_wake/enable" },
163 { REQ, "/sys/kernel/debug/tracing/events/vmscan/mm_vmscan_kswapd_sleep/enable" },
164 } },
Aaron Schulmanc2c6ecd2015-02-25 08:37:09 -0800165 { "regulators", "Voltage and Current Regulators", 0, {
166 { REQ, "/sys/kernel/debug/tracing/events/regulator/enable" },
167 } },
Scott Bauerae473362015-06-08 16:32:36 -0700168 { "binder_driver", "Binder Kernel driver", 0, {
169 { REQ, "/sys/kernel/debug/tracing/events/binder/binder_transaction/enable" },
170 { REQ, "/sys/kernel/debug/tracing/events/binder/binder_transaction_received/enable" },
171 } },
172 { "binder_lock", "Binder global lock trace", 0, {
173 { REQ, "/sys/kernel/debug/tracing/events/binder/binder_lock/enable" },
174 { REQ, "/sys/kernel/debug/tracing/events/binder/binder_locked/enable" },
175 { REQ, "/sys/kernel/debug/tracing/events/binder/binder_unlock/enable" },
176 } },
Martijn Coenen70481612015-10-23 13:57:05 +0200177 { "pagecache", "Page cache", 0, {
178 { REQ, "/sys/kernel/debug/tracing/events/filemap/enable" },
179 } },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800180};
181
182/* Command line options */
183static int g_traceDurationSeconds = 5;
184static bool g_traceOverwrite = false;
185static int g_traceBufferSizeKB = 2048;
186static bool g_compress = false;
187static bool g_nohup = false;
188static int g_initialSleepSecs = 0;
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +0900189static const char* g_categoriesFile = NULL;
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700190static const char* g_kernelTraceFuncs = NULL;
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700191static const char* g_debugAppCmdLine = "";
John Reck40b26b42016-03-30 09:44:36 -0700192static const char* g_outputFile = nullptr;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800193
194/* Global state */
195static bool g_traceAborted = false;
196static bool g_categoryEnables[NELEM(k_categories)] = {};
197
198/* Sys file paths */
199static const char* k_traceClockPath =
200 "/sys/kernel/debug/tracing/trace_clock";
201
202static const char* k_traceBufferSizePath =
203 "/sys/kernel/debug/tracing/buffer_size_kb";
204
205static const char* k_tracingOverwriteEnablePath =
206 "/sys/kernel/debug/tracing/options/overwrite";
207
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700208static const char* k_currentTracerPath =
209 "/sys/kernel/debug/tracing/current_tracer";
210
211static const char* k_printTgidPath =
212 "/sys/kernel/debug/tracing/options/print-tgid";
213
214static const char* k_funcgraphAbsTimePath =
215 "/sys/kernel/debug/tracing/options/funcgraph-abstime";
216
217static const char* k_funcgraphCpuPath =
218 "/sys/kernel/debug/tracing/options/funcgraph-cpu";
219
220static const char* k_funcgraphProcPath =
221 "/sys/kernel/debug/tracing/options/funcgraph-proc";
222
223static const char* k_funcgraphFlatPath =
224 "/sys/kernel/debug/tracing/options/funcgraph-flat";
225
226static const char* k_funcgraphDurationPath =
227 "/sys/kernel/debug/tracing/options/funcgraph-duration";
228
229static const char* k_ftraceFilterPath =
230 "/sys/kernel/debug/tracing/set_ftrace_filter";
231
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800232static const char* k_tracingOnPath =
233 "/sys/kernel/debug/tracing/tracing_on";
234
235static const char* k_tracePath =
236 "/sys/kernel/debug/tracing/trace";
237
Martijn Coenend9535872015-11-26 10:00:55 +0100238static const char* k_traceStreamPath =
239 "/sys/kernel/debug/tracing/trace_pipe";
240
John Reck469a1942015-03-26 15:31:35 -0700241static const char* k_traceMarkerPath =
242 "/sys/kernel/debug/tracing/trace_marker";
243
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800244// Check whether a file exists.
245static bool fileExists(const char* filename) {
246 return access(filename, F_OK) != -1;
247}
248
249// Check whether a file is writable.
250static bool fileIsWritable(const char* filename) {
251 return access(filename, W_OK) != -1;
252}
253
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700254// Truncate a file.
255static bool truncateFile(const char* path)
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800256{
Jamie Gennis43122e72013-03-21 14:06:31 -0700257 // This uses creat rather than truncate because some of the debug kernel
258 // device nodes (e.g. k_ftraceFilterPath) currently aren't changed by
259 // calls to truncate, but they are cleared by calls to creat.
260 int traceFD = creat(path, 0);
261 if (traceFD == -1) {
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700262 fprintf(stderr, "error truncating %s: %s (%d)\n", path,
Jamie Gennis43122e72013-03-21 14:06:31 -0700263 strerror(errno), errno);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700264 return false;
265 }
266
Jamie Gennis43122e72013-03-21 14:06:31 -0700267 close(traceFD);
268
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700269 return true;
270}
271
272static bool _writeStr(const char* filename, const char* str, int flags)
273{
274 int fd = open(filename, flags);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800275 if (fd == -1) {
276 fprintf(stderr, "error opening %s: %s (%d)\n", filename,
277 strerror(errno), errno);
278 return false;
279 }
280
281 bool ok = true;
282 ssize_t len = strlen(str);
283 if (write(fd, str, len) != len) {
284 fprintf(stderr, "error writing to %s: %s (%d)\n", filename,
285 strerror(errno), errno);
286 ok = false;
287 }
288
289 close(fd);
290
291 return ok;
292}
293
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700294// Write a string to a file, returning true if the write was successful.
295static bool writeStr(const char* filename, const char* str)
296{
297 return _writeStr(filename, str, O_WRONLY);
298}
299
300// Append a string to a file, returning true if the write was successful.
301static bool appendStr(const char* filename, const char* str)
302{
303 return _writeStr(filename, str, O_APPEND|O_WRONLY);
304}
305
John Reck469a1942015-03-26 15:31:35 -0700306static void writeClockSyncMarker()
307{
308 char buffer[128];
Martijn Coenen0bcd97a2015-07-15 14:25:23 +0200309 int len = 0;
310 int fd = open(k_traceMarkerPath, O_WRONLY);
311 if (fd == -1) {
312 fprintf(stderr, "error opening %s: %s (%d)\n", k_traceMarkerPath,
313 strerror(errno), errno);
314 return;
315 }
John Reck469a1942015-03-26 15:31:35 -0700316 float now_in_seconds = systemTime(CLOCK_MONOTONIC) / 1000000000.0f;
Martijn Coenen0bcd97a2015-07-15 14:25:23 +0200317
318 len = snprintf(buffer, 128, "trace_event_clock_sync: parent_ts=%f\n", now_in_seconds);
319 if (write(fd, buffer, len) != len) {
320 fprintf(stderr, "error writing clock sync marker %s (%d)\n", strerror(errno), errno);
321 }
322
323 int64_t realtime_in_ms = systemTime(CLOCK_REALTIME) / 1000000;
324 len = snprintf(buffer, 128, "trace_event_clock_sync: realtime_ts=%" PRId64 "\n", realtime_in_ms);
325 if (write(fd, buffer, len) != len) {
326 fprintf(stderr, "error writing clock sync marker %s (%d)\n", strerror(errno), errno);
327 }
328
329 close(fd);
John Reck469a1942015-03-26 15:31:35 -0700330}
331
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800332// Enable or disable a kernel option by writing a "1" or a "0" into a /sys
333// file.
334static bool setKernelOptionEnable(const char* filename, bool enable)
335{
336 return writeStr(filename, enable ? "1" : "0");
337}
338
339// Check whether the category is supported on the device with the current
340// rootness. A category is supported only if all its required /sys/ files are
341// writable and if enabling the category will enable one or more tracing tags
342// or /sys/ files.
343static bool isCategorySupported(const TracingCategory& category)
344{
sergeyvdb404152016-05-02 19:26:07 -0700345 if (strcmp(category.name, k_coreServiceCategory) == 0) {
346 char value[PROPERTY_VALUE_MAX];
347 property_get(k_coreServicesProp, value, "");
348 return strlen(value) != 0;
349 }
350
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800351 bool ok = category.tags != 0;
352 for (int i = 0; i < MAX_SYS_FILES; i++) {
353 const char* path = category.sysfiles[i].path;
354 bool req = category.sysfiles[i].required == REQ;
355 if (path != NULL) {
356 if (req) {
357 if (!fileIsWritable(path)) {
358 return false;
359 } else {
360 ok = true;
361 }
362 } else {
363 ok |= fileIsWritable(path);
364 }
365 }
366 }
367 return ok;
368}
369
370// Check whether the category would be supported on the device if the user
371// were root. This function assumes that root is able to write to any file
372// that exists. It performs the same logic as isCategorySupported, but it
373// uses file existance rather than writability in the /sys/ file checks.
374static bool isCategorySupportedForRoot(const TracingCategory& category)
375{
376 bool ok = category.tags != 0;
377 for (int i = 0; i < MAX_SYS_FILES; i++) {
378 const char* path = category.sysfiles[i].path;
379 bool req = category.sysfiles[i].required == REQ;
380 if (path != NULL) {
381 if (req) {
382 if (!fileExists(path)) {
383 return false;
384 } else {
385 ok = true;
386 }
387 } else {
388 ok |= fileExists(path);
389 }
390 }
391 }
392 return ok;
393}
394
395// Enable or disable overwriting of the kernel trace buffers. Disabling this
396// will cause tracing to stop once the trace buffers have filled up.
397static bool setTraceOverwriteEnable(bool enable)
398{
399 return setKernelOptionEnable(k_tracingOverwriteEnablePath, enable);
400}
401
402// Enable or disable kernel tracing.
403static bool setTracingEnabled(bool enable)
404{
405 return setKernelOptionEnable(k_tracingOnPath, enable);
406}
407
408// Clear the contents of the kernel trace.
409static bool clearTrace()
410{
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700411 return truncateFile(k_tracePath);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800412}
413
414// Set the size of the kernel's trace buffer in kilobytes.
415static bool setTraceBufferSizeKB(int size)
416{
417 char str[32] = "1";
418 int len;
419 if (size < 1) {
420 size = 1;
421 }
422 snprintf(str, 32, "%d", size);
423 return writeStr(k_traceBufferSizePath, str);
424}
425
Colin Crossb1ce49b2014-08-20 14:28:47 -0700426// Read the trace_clock sysfs file and return true if it matches the requested
427// value. The trace_clock file format is:
428// local [global] counter uptime perf
429static bool isTraceClock(const char *mode)
430{
431 int fd = open(k_traceClockPath, O_RDONLY);
432 if (fd == -1) {
433 fprintf(stderr, "error opening %s: %s (%d)\n", k_traceClockPath,
434 strerror(errno), errno);
435 return false;
436 }
437
438 char buf[4097];
439 ssize_t n = read(fd, buf, 4096);
440 close(fd);
441 if (n == -1) {
442 fprintf(stderr, "error reading %s: %s (%d)\n", k_traceClockPath,
443 strerror(errno), errno);
444 return false;
445 }
446 buf[n] = '\0';
447
448 char *start = strchr(buf, '[');
449 if (start == NULL) {
450 return false;
451 }
452 start++;
453
454 char *end = strchr(start, ']');
455 if (end == NULL) {
456 return false;
457 }
458 *end = '\0';
459
460 return strcmp(mode, start) == 0;
461}
462
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800463// Enable or disable the kernel's use of the global clock. Disabling the global
464// clock will result in the kernel using a per-CPU local clock.
Colin Crossb1ce49b2014-08-20 14:28:47 -0700465// Any write to the trace_clock sysfs file will reset the buffer, so only
466// update it if the requested value is not the current value.
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800467static bool setGlobalClockEnable(bool enable)
468{
Colin Crossb1ce49b2014-08-20 14:28:47 -0700469 const char *clock = enable ? "global" : "local";
470
471 if (isTraceClock(clock)) {
472 return true;
473 }
474
475 return writeStr(k_traceClockPath, clock);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800476}
477
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700478static bool setPrintTgidEnableIfPresent(bool enable)
479{
480 if (fileExists(k_printTgidPath)) {
481 return setKernelOptionEnable(k_printTgidPath, enable);
482 }
483 return true;
484}
485
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800486// Poke all the binder-enabled processes in the system to get them to re-read
487// their system properties.
488static bool pokeBinderServices()
489{
490 sp<IServiceManager> sm = defaultServiceManager();
491 Vector<String16> services = sm->listServices();
492 for (size_t i = 0; i < services.size(); i++) {
493 sp<IBinder> obj = sm->checkService(services[i]);
494 if (obj != NULL) {
495 Parcel data;
496 if (obj->transact(IBinder::SYSPROPS_TRANSACTION, data,
497 NULL, 0) != OK) {
498 if (false) {
499 // XXX: For some reason this fails on tablets trying to
500 // poke the "phone" service. It's not clear whether some
501 // are expected to fail.
502 String8 svc(services[i]);
503 fprintf(stderr, "error poking binder service %s\n",
504 svc.string());
505 return false;
506 }
507 }
508 }
509 }
510 return true;
511}
512
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100513// Poke all the HAL processes in the system to get them to re-read
514// their system properties.
515static void pokeHalServices()
516{
517 using ::android::hidl::manager::V1_0::IServiceManager;
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100518 using ::android::hardware::hidl_string;
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100519
520 sp<IServiceManager> sm = ::android::hardware::defaultServiceManager();
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800521 auto listRet = sm->list([&](const auto &interfaces) {
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100522 for (size_t i = 0; i < interfaces.size(); i++) {
523 string fqInstanceName = interfaces[i];
524 string::size_type n = fqInstanceName.find("/");
525 if (n == std::string::npos || interfaces[i].size() == n+1)
526 continue;
527 hidl_string fqInterfaceName = fqInstanceName.substr(0, n);
528 hidl_string instanceName = fqInstanceName.substr(n+1, std::string::npos);
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800529 auto getRet = sm->get(fqInterfaceName, instanceName, [&](const auto &interface) {
Yifan Hong61954a42016-12-05 12:58:05 -0800530 auto notifyRet = interface->notifySyspropsChanged();
531 if (!notifyRet.isOk()) {
532 fprintf(stderr, "failed to notifySyspropsChanged on service %s: %s\n",
533 fqInstanceName.c_str(),
534 notifyRet.getStatus().toString8().string());
535 }
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100536 });
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800537 if (!getRet.isOk()) {
538 fprintf(stderr, "failed to get service %s: %s\n",
539 fqInstanceName.c_str(),
540 getRet.getStatus().toString8().string());
541 }
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100542 }
543 });
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800544 if (!listRet.isOk()) {
545 fprintf(stderr, "failed to list services: %s\n", listRet.getStatus().toString8().string());
546 }
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100547}
548
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800549// Set the trace tags that userland tracing uses, and poke the running
550// processes to pick up the new value.
551static bool setTagsProperty(uint64_t tags)
552{
sergeyv4144eff2016-04-28 11:40:04 -0700553 char buf[PROPERTY_VALUE_MAX];
554 snprintf(buf, sizeof(buf), "%#" PRIx64, tags);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800555 if (property_set(k_traceTagsProperty, buf) < 0) {
556 fprintf(stderr, "error setting trace tags system property\n");
557 return false;
558 }
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700559 return true;
560}
561
sergeyv4144eff2016-04-28 11:40:04 -0700562static void clearAppProperties()
563{
564 char buf[PROPERTY_KEY_MAX];
565 for (int i = 0; i < MAX_PACKAGES; i++) {
566 snprintf(buf, sizeof(buf), k_traceAppsPropertyTemplate, i);
567 if (property_set(buf, "") < 0) {
568 fprintf(stderr, "failed to clear system property: %s\n", buf);
569 }
570 }
571 if (property_set(k_traceAppsNumberProperty, "") < 0) {
572 fprintf(stderr, "failed to clear system property: %s",
573 k_traceAppsNumberProperty);
574 }
575}
576
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700577// Set the system property that indicates which apps should perform
578// application-level tracing.
Dan Austin497951c2016-05-31 13:27:03 -0700579static bool setAppCmdlineProperty(char* cmdline)
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700580{
sergeyv4144eff2016-04-28 11:40:04 -0700581 char buf[PROPERTY_KEY_MAX];
582 int i = 0;
Dan Austin497951c2016-05-31 13:27:03 -0700583 char* start = cmdline;
sergeyv4144eff2016-04-28 11:40:04 -0700584 while (start != NULL) {
585 if (i == MAX_PACKAGES) {
586 fprintf(stderr, "error: only 16 packages could be traced at once\n");
587 clearAppProperties();
588 return false;
589 }
590 char* end = strchr(start, ',');
591 if (end != NULL) {
592 *end = '\0';
593 end++;
594 }
595 snprintf(buf, sizeof(buf), k_traceAppsPropertyTemplate, i);
596 if (property_set(buf, start) < 0) {
597 fprintf(stderr, "error setting trace app %d property to %s\n", i, buf);
598 clearAppProperties();
599 return false;
600 }
601 start = end;
602 i++;
603 }
604
605 snprintf(buf, sizeof(buf), "%d", i);
606 if (property_set(k_traceAppsNumberProperty, buf) < 0) {
607 fprintf(stderr, "error setting trace app number property to %s\n", buf);
608 clearAppProperties();
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700609 return false;
610 }
611 return true;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800612}
613
614// Disable all /sys/ enable files.
615static bool disableKernelTraceEvents() {
616 bool ok = true;
617 for (int i = 0; i < NELEM(k_categories); i++) {
618 const TracingCategory &c = k_categories[i];
619 for (int j = 0; j < MAX_SYS_FILES; j++) {
620 const char* path = c.sysfiles[j].path;
621 if (path != NULL && fileIsWritable(path)) {
622 ok &= setKernelOptionEnable(path, false);
623 }
624 }
625 }
626 return ok;
627}
628
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700629// Verify that the comma separated list of functions are being traced by the
630// kernel.
631static bool verifyKernelTraceFuncs(const char* funcs)
632{
Stephane Gasparinid8419c22016-03-02 13:45:15 +0100633 std::string buf;
634 if (!android::base::ReadFileToString(k_ftraceFilterPath, &buf)) {
635 fprintf(stderr, "error opening %s: %s (%d)\n", k_ftraceFilterPath,
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700636 strerror(errno), errno);
Stephane Gasparinid8419c22016-03-02 13:45:15 +0100637 return false;
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700638 }
639
Stephane Gasparinid8419c22016-03-02 13:45:15 +0100640 String8 funcList = String8::format("\n%s",buf.c_str());
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700641
642 // Make sure that every function listed in funcs is in the list we just
Thomas Buhota2c22872016-01-27 09:44:31 +0100643 // read from the kernel, except for wildcard inputs.
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700644 bool ok = true;
645 char* myFuncs = strdup(funcs);
646 char* func = strtok(myFuncs, ",");
647 while (func) {
Thomas Buhota2c22872016-01-27 09:44:31 +0100648 if (!strchr(func, '*')) {
649 String8 fancyFunc = String8::format("\n%s\n", func);
650 bool found = funcList.find(fancyFunc.string(), 0) >= 0;
651 if (!found || func[0] == '\0') {
652 fprintf(stderr, "error: \"%s\" is not a valid kernel function "
653 "to trace.\n", func);
654 ok = false;
655 }
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700656 }
657 func = strtok(NULL, ",");
658 }
659 free(myFuncs);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700660 return ok;
661}
662
663// Set the comma separated list of functions that the kernel is to trace.
664static bool setKernelTraceFuncs(const char* funcs)
665{
666 bool ok = true;
667
668 if (funcs == NULL || funcs[0] == '\0') {
669 // Disable kernel function tracing.
Jamie Gennis6f6f3f72013-03-27 15:50:30 -0700670 if (fileIsWritable(k_currentTracerPath)) {
671 ok &= writeStr(k_currentTracerPath, "nop");
672 }
673 if (fileIsWritable(k_ftraceFilterPath)) {
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700674 ok &= truncateFile(k_ftraceFilterPath);
675 }
676 } else {
677 // Enable kernel function tracing.
678 ok &= writeStr(k_currentTracerPath, "function_graph");
679 ok &= setKernelOptionEnable(k_funcgraphAbsTimePath, true);
680 ok &= setKernelOptionEnable(k_funcgraphCpuPath, true);
681 ok &= setKernelOptionEnable(k_funcgraphProcPath, true);
682 ok &= setKernelOptionEnable(k_funcgraphFlatPath, true);
683
684 // Set the requested filter functions.
685 ok &= truncateFile(k_ftraceFilterPath);
686 char* myFuncs = strdup(funcs);
687 char* func = strtok(myFuncs, ",");
688 while (func) {
689 ok &= appendStr(k_ftraceFilterPath, func);
690 func = strtok(NULL, ",");
691 }
692 free(myFuncs);
693
694 // Verify that the set functions are being traced.
695 if (ok) {
696 ok &= verifyKernelTraceFuncs(funcs);
697 }
698 }
699
700 return ok;
701}
702
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +0900703static bool setCategoryEnable(const char* name, bool enable)
704{
705 for (int i = 0; i < NELEM(k_categories); i++) {
706 const TracingCategory& c = k_categories[i];
707 if (strcmp(name, c.name) == 0) {
708 if (isCategorySupported(c)) {
709 g_categoryEnables[i] = enable;
710 return true;
711 } else {
712 if (isCategorySupportedForRoot(c)) {
713 fprintf(stderr, "error: category \"%s\" requires root "
714 "privileges.\n", name);
715 } else {
716 fprintf(stderr, "error: category \"%s\" is not supported "
717 "on this device.\n", name);
718 }
719 return false;
720 }
721 }
722 }
723 fprintf(stderr, "error: unknown tracing category \"%s\"\n", name);
724 return false;
725}
726
727static bool setCategoriesEnableFromFile(const char* categories_file)
728{
729 if (!categories_file) {
730 return true;
731 }
732 Tokenizer* tokenizer = NULL;
733 if (Tokenizer::open(String8(categories_file), &tokenizer) != NO_ERROR) {
734 return false;
735 }
736 bool ok = true;
737 while (!tokenizer->isEol()) {
738 String8 token = tokenizer->nextToken(" ");
739 if (token.isEmpty()) {
740 tokenizer->skipDelimiters(" ");
741 continue;
742 }
743 ok &= setCategoryEnable(token.string(), true);
744 }
745 delete tokenizer;
746 return ok;
747}
748
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700749// Set all the kernel tracing settings to the desired state for this trace
750// capture.
751static bool setUpTrace()
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800752{
753 bool ok = true;
754
755 // Set up the tracing options.
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +0900756 ok &= setCategoriesEnableFromFile(g_categoriesFile);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800757 ok &= setTraceOverwriteEnable(g_traceOverwrite);
758 ok &= setTraceBufferSizeKB(g_traceBufferSizeKB);
759 ok &= setGlobalClockEnable(true);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700760 ok &= setPrintTgidEnableIfPresent(true);
761 ok &= setKernelTraceFuncs(g_kernelTraceFuncs);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800762
763 // Set up the tags property.
764 uint64_t tags = 0;
765 for (int i = 0; i < NELEM(k_categories); i++) {
766 if (g_categoryEnables[i]) {
767 const TracingCategory &c = k_categories[i];
768 tags |= c.tags;
769 }
770 }
771 ok &= setTagsProperty(tags);
sergeyvdb404152016-05-02 19:26:07 -0700772
773 bool coreServicesTagEnabled = false;
774 for (int i = 0; i < NELEM(k_categories); i++) {
775 if (strcmp(k_categories[i].name, k_coreServiceCategory) == 0) {
776 coreServicesTagEnabled = g_categoryEnables[i];
777 }
778 }
779
780 std::string packageList(g_debugAppCmdLine);
781 if (coreServicesTagEnabled) {
782 char value[PROPERTY_VALUE_MAX];
783 property_get(k_coreServicesProp, value, "");
784 if (!packageList.empty()) {
785 packageList += ",";
786 }
787 packageList += value;
788 }
Dan Austin497951c2016-05-31 13:27:03 -0700789 ok &= setAppCmdlineProperty(&packageList[0]);
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700790 ok &= pokeBinderServices();
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100791 pokeHalServices();
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800792
793 // Disable all the sysfs enables. This is done as a separate loop from
794 // the enables to allow the same enable to exist in multiple categories.
795 ok &= disableKernelTraceEvents();
796
797 // Enable all the sysfs enables that are in an enabled category.
798 for (int i = 0; i < NELEM(k_categories); i++) {
799 if (g_categoryEnables[i]) {
800 const TracingCategory &c = k_categories[i];
801 for (int j = 0; j < MAX_SYS_FILES; j++) {
802 const char* path = c.sysfiles[j].path;
803 bool required = c.sysfiles[j].required == REQ;
804 if (path != NULL) {
805 if (fileIsWritable(path)) {
806 ok &= setKernelOptionEnable(path, true);
807 } else if (required) {
808 fprintf(stderr, "error writing file %s\n", path);
809 ok = false;
810 }
811 }
812 }
813 }
814 }
815
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800816 return ok;
817}
818
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700819// Reset all the kernel tracing settings to their default state.
820static void cleanUpTrace()
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800821{
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800822 // Disable all tracing that we're able to.
823 disableKernelTraceEvents();
824
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700825 // Reset the system properties.
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800826 setTagsProperty(0);
sergeyv4144eff2016-04-28 11:40:04 -0700827 clearAppProperties();
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700828 pokeBinderServices();
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800829
830 // Set the options back to their defaults.
831 setTraceOverwriteEnable(true);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700832 setTraceBufferSizeKB(1);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800833 setGlobalClockEnable(false);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700834 setPrintTgidEnableIfPresent(false);
835 setKernelTraceFuncs(NULL);
836}
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800837
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700838
839// Enable tracing in the kernel.
840static bool startTrace()
841{
842 return setTracingEnabled(true);
843}
844
845// Disable tracing in the kernel.
846static void stopTrace()
847{
848 setTracingEnabled(false);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800849}
850
Martijn Coenend9535872015-11-26 10:00:55 +0100851// Read data from the tracing pipe and forward to stdout
852static void streamTrace()
853{
854 char trace_data[4096];
855 int traceFD = open(k_traceStreamPath, O_RDWR);
856 if (traceFD == -1) {
857 fprintf(stderr, "error opening %s: %s (%d)\n", k_traceStreamPath,
858 strerror(errno), errno);
859 return;
860 }
861 while (!g_traceAborted) {
862 ssize_t bytes_read = read(traceFD, trace_data, 4096);
863 if (bytes_read > 0) {
864 write(STDOUT_FILENO, trace_data, bytes_read);
865 fflush(stdout);
866 } else {
867 if (!g_traceAborted) {
868 fprintf(stderr, "read returned %zd bytes err %d (%s)\n",
869 bytes_read, errno, strerror(errno));
870 }
871 break;
872 }
873 }
874}
875
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800876// Read the current kernel trace and write it to stdout.
John Reck40b26b42016-03-30 09:44:36 -0700877static void dumpTrace(int outFd)
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800878{
John Reck6c8ac922016-03-28 11:25:30 -0700879 ALOGI("Dumping trace");
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800880 int traceFD = open(k_tracePath, O_RDWR);
881 if (traceFD == -1) {
882 fprintf(stderr, "error opening %s: %s (%d)\n", k_tracePath,
883 strerror(errno), errno);
884 return;
885 }
886
887 if (g_compress) {
888 z_stream zs;
Elliott Hughes3da5d232015-01-25 08:35:20 -0800889 memset(&zs, 0, sizeof(zs));
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700890
891 int result = deflateInit(&zs, Z_DEFAULT_COMPRESSION);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800892 if (result != Z_OK) {
893 fprintf(stderr, "error initializing zlib: %d\n", result);
894 close(traceFD);
895 return;
896 }
897
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700898 constexpr size_t bufSize = 64*1024;
899 std::unique_ptr<uint8_t> in(new uint8_t[bufSize]);
900 std::unique_ptr<uint8_t> out(new uint8_t[bufSize]);
901 if (!in || !out) {
902 fprintf(stderr, "couldn't allocate buffers\n");
903 close(traceFD);
904 return;
905 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800906
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700907 int flush = Z_NO_FLUSH;
908
909 zs.next_out = reinterpret_cast<Bytef*>(out.get());
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800910 zs.avail_out = bufSize;
911
912 do {
913
914 if (zs.avail_in == 0) {
915 // More input is needed.
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700916 result = read(traceFD, in.get(), bufSize);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800917 if (result < 0) {
918 fprintf(stderr, "error reading trace: %s (%d)\n",
919 strerror(errno), errno);
920 result = Z_STREAM_END;
921 break;
922 } else if (result == 0) {
923 flush = Z_FINISH;
924 } else {
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700925 zs.next_in = reinterpret_cast<Bytef*>(in.get());
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800926 zs.avail_in = result;
927 }
928 }
929
930 if (zs.avail_out == 0) {
931 // Need to write the output.
Elliott Hughesb59e2962016-07-22 09:00:59 -0700932 result = write(outFd, out.get(), bufSize);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800933 if ((size_t)result < bufSize) {
934 fprintf(stderr, "error writing deflated trace: %s (%d)\n",
935 strerror(errno), errno);
936 result = Z_STREAM_END; // skip deflate error message
937 zs.avail_out = bufSize; // skip the final write
938 break;
939 }
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700940 zs.next_out = reinterpret_cast<Bytef*>(out.get());
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800941 zs.avail_out = bufSize;
942 }
943
944 } while ((result = deflate(&zs, flush)) == Z_OK);
945
946 if (result != Z_STREAM_END) {
947 fprintf(stderr, "error deflating trace: %s\n", zs.msg);
948 }
949
950 if (zs.avail_out < bufSize) {
951 size_t bytes = bufSize - zs.avail_out;
Elliott Hughesb59e2962016-07-22 09:00:59 -0700952 result = write(outFd, out.get(), bytes);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800953 if ((size_t)result < bytes) {
954 fprintf(stderr, "error writing deflated trace: %s (%d)\n",
955 strerror(errno), errno);
956 }
957 }
958
959 result = deflateEnd(&zs);
960 if (result != Z_OK) {
961 fprintf(stderr, "error cleaning up zlib: %d\n", result);
962 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800963 } else {
964 ssize_t sent = 0;
John Reck40b26b42016-03-30 09:44:36 -0700965 while ((sent = sendfile(outFd, traceFD, NULL, 64*1024*1024)) > 0);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800966 if (sent == -1) {
967 fprintf(stderr, "error dumping trace: %s (%d)\n", strerror(errno),
968 errno);
969 }
970 }
971
972 close(traceFD);
973}
974
Mark Salyzyn92dc3fc2014-03-12 13:12:44 -0700975static void handleSignal(int /*signo*/)
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800976{
977 if (!g_nohup) {
978 g_traceAborted = true;
979 }
980}
981
982static void registerSigHandler()
983{
984 struct sigaction sa;
985 sigemptyset(&sa.sa_mask);
986 sa.sa_flags = 0;
987 sa.sa_handler = handleSignal;
988 sigaction(SIGHUP, &sa, NULL);
989 sigaction(SIGINT, &sa, NULL);
990 sigaction(SIGQUIT, &sa, NULL);
991 sigaction(SIGTERM, &sa, NULL);
992}
993
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800994static void listSupportedCategories()
995{
996 for (int i = 0; i < NELEM(k_categories); i++) {
997 const TracingCategory& c = k_categories[i];
998 if (isCategorySupported(c)) {
999 printf(" %10s - %s\n", c.name, c.longname);
1000 }
1001 }
1002}
1003
1004// Print the command usage help to stderr.
1005static void showHelp(const char *cmd)
1006{
1007 fprintf(stderr, "usage: %s [options] [categories...]\n", cmd);
1008 fprintf(stderr, "options include:\n"
Jamie Gennisf7f29c82013-03-27 15:50:58 -07001009 " -a appname enable app-level tracing for a comma "
1010 "separated list of cmdlines\n"
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001011 " -b N use a trace buffer size of N KB\n"
1012 " -c trace into a circular buffer\n"
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +09001013 " -f filename use the categories written in a file as space-separated\n"
1014 " values in a line\n"
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001015 " -k fname,... trace the listed kernel functions\n"
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001016 " -n ignore signals\n"
1017 " -s N sleep for N seconds before tracing [default 0]\n"
Elliott Hughesf884a062016-07-22 09:38:44 -07001018 " -t N trace for N seconds [default 5]\n"
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001019 " -z compress the trace dump\n"
1020 " --async_start start circular trace and return immediatly\n"
1021 " --async_dump dump the current contents of circular trace buffer\n"
1022 " --async_stop stop tracing and dump the current contents of circular\n"
1023 " trace buffer\n"
Martijn Coenend9535872015-11-26 10:00:55 +01001024 " --stream stream trace to stdout as it enters the trace buffer\n"
1025 " Note: this can take significant CPU time, and is best\n"
1026 " used for measuring things that are not affected by\n"
1027 " CPU performance, like pagecache usage.\n"
Jamie Gennis92573f12012-12-07 16:29:03 -08001028 " --list_categories\n"
1029 " list the available tracing categories\n"
John Reck40b26b42016-03-30 09:44:36 -07001030 " -o filename write the trace to the specified file instead\n"
1031 " of stdout.\n"
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001032 );
1033}
1034
1035int main(int argc, char **argv)
1036{
1037 bool async = false;
1038 bool traceStart = true;
1039 bool traceStop = true;
1040 bool traceDump = true;
Martijn Coenend9535872015-11-26 10:00:55 +01001041 bool traceStream = false;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001042
1043 if (argc == 2 && 0 == strcmp(argv[1], "--help")) {
1044 showHelp(argv[0]);
1045 exit(0);
1046 }
1047
1048 for (;;) {
1049 int ret;
1050 int option_index = 0;
1051 static struct option long_options[] = {
1052 {"async_start", no_argument, 0, 0 },
1053 {"async_stop", no_argument, 0, 0 },
1054 {"async_dump", no_argument, 0, 0 },
1055 {"list_categories", no_argument, 0, 0 },
Martijn Coenend9535872015-11-26 10:00:55 +01001056 {"stream", no_argument, 0, 0 },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001057 { 0, 0, 0, 0 }
1058 };
1059
John Reck40b26b42016-03-30 09:44:36 -07001060 ret = getopt_long(argc, argv, "a:b:cf:k:ns:t:zo:",
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001061 long_options, &option_index);
1062
1063 if (ret < 0) {
1064 for (int i = optind; i < argc; i++) {
1065 if (!setCategoryEnable(argv[i], true)) {
1066 fprintf(stderr, "error enabling tracing category \"%s\"\n", argv[i]);
1067 exit(1);
1068 }
1069 }
1070 break;
1071 }
1072
1073 switch(ret) {
Jamie Gennisf7f29c82013-03-27 15:50:58 -07001074 case 'a':
1075 g_debugAppCmdLine = optarg;
1076 break;
1077
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001078 case 'b':
1079 g_traceBufferSizeKB = atoi(optarg);
1080 break;
1081
1082 case 'c':
1083 g_traceOverwrite = true;
1084 break;
1085
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +09001086 case 'f':
1087 g_categoriesFile = optarg;
1088 break;
1089
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001090 case 'k':
1091 g_kernelTraceFuncs = optarg;
Jamie Gennis6f6f3f72013-03-27 15:50:30 -07001092 break;
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001093
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001094 case 'n':
1095 g_nohup = true;
Jamie Gennis6f6f3f72013-03-27 15:50:30 -07001096 break;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001097
1098 case 's':
1099 g_initialSleepSecs = atoi(optarg);
1100 break;
1101
1102 case 't':
1103 g_traceDurationSeconds = atoi(optarg);
1104 break;
1105
1106 case 'z':
1107 g_compress = true;
1108 break;
1109
John Reck40b26b42016-03-30 09:44:36 -07001110 case 'o':
1111 g_outputFile = optarg;
1112 break;
1113
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001114 case 0:
1115 if (!strcmp(long_options[option_index].name, "async_start")) {
1116 async = true;
1117 traceStop = false;
1118 traceDump = false;
1119 g_traceOverwrite = true;
1120 } else if (!strcmp(long_options[option_index].name, "async_stop")) {
1121 async = true;
John Reck4ba2b632015-05-15 10:00:34 -07001122 traceStart = false;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001123 } else if (!strcmp(long_options[option_index].name, "async_dump")) {
1124 async = true;
1125 traceStart = false;
1126 traceStop = false;
Martijn Coenend9535872015-11-26 10:00:55 +01001127 } else if (!strcmp(long_options[option_index].name, "stream")) {
1128 traceStream = true;
1129 traceDump = false;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001130 } else if (!strcmp(long_options[option_index].name, "list_categories")) {
1131 listSupportedCategories();
1132 exit(0);
1133 }
Jamie Gennis6f6f3f72013-03-27 15:50:30 -07001134 break;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001135
1136 default:
1137 fprintf(stderr, "\n");
1138 showHelp(argv[0]);
1139 exit(-1);
1140 break;
1141 }
1142 }
1143
1144 registerSigHandler();
1145
1146 if (g_initialSleepSecs > 0) {
1147 sleep(g_initialSleepSecs);
1148 }
1149
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001150 bool ok = true;
1151 ok &= setUpTrace();
1152 ok &= startTrace();
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001153
1154 if (ok && traceStart) {
Martijn Coenend9535872015-11-26 10:00:55 +01001155 if (!traceStream) {
1156 printf("capturing trace...");
1157 fflush(stdout);
1158 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001159
1160 // We clear the trace after starting it because tracing gets enabled for
1161 // each CPU individually in the kernel. Having the beginning of the trace
1162 // contain entries from only one CPU can cause "begin" entries without a
1163 // matching "end" entry to show up if a task gets migrated from one CPU to
1164 // another.
1165 ok = clearTrace();
1166
Martijn Coenen0bcd97a2015-07-15 14:25:23 +02001167 writeClockSyncMarker();
Martijn Coenend9535872015-11-26 10:00:55 +01001168 if (ok && !async && !traceStream) {
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001169 // Sleep to allow the trace to be captured.
1170 struct timespec timeLeft;
1171 timeLeft.tv_sec = g_traceDurationSeconds;
1172 timeLeft.tv_nsec = 0;
1173 do {
1174 if (g_traceAborted) {
1175 break;
1176 }
1177 } while (nanosleep(&timeLeft, &timeLeft) == -1 && errno == EINTR);
1178 }
Martijn Coenend9535872015-11-26 10:00:55 +01001179
1180 if (traceStream) {
1181 streamTrace();
1182 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001183 }
1184
1185 // Stop the trace and restore the default settings.
1186 if (traceStop)
1187 stopTrace();
1188
1189 if (ok && traceDump) {
1190 if (!g_traceAborted) {
John Reck40b26b42016-03-30 09:44:36 -07001191 printf(" done\n");
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001192 fflush(stdout);
John Reck40b26b42016-03-30 09:44:36 -07001193 int outFd = STDOUT_FILENO;
1194 if (g_outputFile) {
1195 outFd = open(g_outputFile, O_WRONLY | O_CREAT);
1196 }
1197 if (outFd == -1) {
1198 printf("Failed to open '%s', err=%d", g_outputFile, errno);
1199 } else {
1200 dprintf(outFd, "TRACE:\n");
1201 dumpTrace(outFd);
1202 if (g_outputFile) {
1203 close(outFd);
1204 }
1205 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001206 } else {
1207 printf("\ntrace aborted.\n");
1208 fflush(stdout);
1209 }
1210 clearTrace();
1211 } else if (!ok) {
1212 fprintf(stderr, "unable to start tracing\n");
1213 }
1214
1215 // Reset the trace buffer size to 1.
1216 if (traceStop)
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001217 cleanUpTrace();
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001218
1219 return g_traceAborted ? 1 : 0;
1220}