blob: af5380c004b6d6250d20a01f96cf1cef61ea1190 [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{
Martijn Coenenf6ac8482017-01-02 15:17:11 +0100517 using ::android::hidl::base::V1_0::IBase;
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100518 using ::android::hidl::manager::V1_0::IServiceManager;
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100519 using ::android::hardware::hidl_string;
Martijn Coenenf6ac8482017-01-02 15:17:11 +0100520 using ::android::hardware::Return;
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100521
522 sp<IServiceManager> sm = ::android::hardware::defaultServiceManager();
Steven Morelanda42866b2016-12-12 15:18:06 -0800523
524 if (sm == nullptr) {
525 fprintf(stderr, "failed to get IServiceManager to poke hal services\n");
526 return;
527 }
528
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800529 auto listRet = sm->list([&](const auto &interfaces) {
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100530 for (size_t i = 0; i < interfaces.size(); i++) {
531 string fqInstanceName = interfaces[i];
532 string::size_type n = fqInstanceName.find("/");
533 if (n == std::string::npos || interfaces[i].size() == n+1)
534 continue;
535 hidl_string fqInterfaceName = fqInstanceName.substr(0, n);
536 hidl_string instanceName = fqInstanceName.substr(n+1, std::string::npos);
Martijn Coenenf6ac8482017-01-02 15:17:11 +0100537 Return<sp<IBase>> interfaceRet = sm->get(fqInterfaceName, instanceName);
538 if (!interfaceRet.isOk()) {
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800539 fprintf(stderr, "failed to get service %s: %s\n",
540 fqInstanceName.c_str(),
Martijn Coenenf6ac8482017-01-02 15:17:11 +0100541 interfaceRet.description().c_str());
542 continue;
543 }
544 sp<IBase> interface = interfaceRet;
545 auto notifyRet = interface->notifySyspropsChanged();
546 if (!notifyRet.isOk()) {
547 fprintf(stderr, "failed to notifySyspropsChanged on service %s: %s\n",
548 fqInstanceName.c_str(),
549 notifyRet.description().c_str());
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800550 }
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100551 }
552 });
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800553 if (!listRet.isOk()) {
Yifan Hong03632092016-12-21 10:47:56 -0800554 fprintf(stderr, "failed to list services: %s\n", listRet.description().c_str());
Yifan Hong8cf4ed12016-11-30 17:28:58 -0800555 }
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100556}
557
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800558// Set the trace tags that userland tracing uses, and poke the running
559// processes to pick up the new value.
560static bool setTagsProperty(uint64_t tags)
561{
sergeyv4144eff2016-04-28 11:40:04 -0700562 char buf[PROPERTY_VALUE_MAX];
563 snprintf(buf, sizeof(buf), "%#" PRIx64, tags);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800564 if (property_set(k_traceTagsProperty, buf) < 0) {
565 fprintf(stderr, "error setting trace tags system property\n");
566 return false;
567 }
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700568 return true;
569}
570
sergeyv4144eff2016-04-28 11:40:04 -0700571static void clearAppProperties()
572{
573 char buf[PROPERTY_KEY_MAX];
574 for (int i = 0; i < MAX_PACKAGES; i++) {
575 snprintf(buf, sizeof(buf), k_traceAppsPropertyTemplate, i);
576 if (property_set(buf, "") < 0) {
577 fprintf(stderr, "failed to clear system property: %s\n", buf);
578 }
579 }
580 if (property_set(k_traceAppsNumberProperty, "") < 0) {
581 fprintf(stderr, "failed to clear system property: %s",
582 k_traceAppsNumberProperty);
583 }
584}
585
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700586// Set the system property that indicates which apps should perform
587// application-level tracing.
Dan Austin497951c2016-05-31 13:27:03 -0700588static bool setAppCmdlineProperty(char* cmdline)
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700589{
sergeyv4144eff2016-04-28 11:40:04 -0700590 char buf[PROPERTY_KEY_MAX];
591 int i = 0;
Dan Austin497951c2016-05-31 13:27:03 -0700592 char* start = cmdline;
sergeyv4144eff2016-04-28 11:40:04 -0700593 while (start != NULL) {
594 if (i == MAX_PACKAGES) {
595 fprintf(stderr, "error: only 16 packages could be traced at once\n");
596 clearAppProperties();
597 return false;
598 }
599 char* end = strchr(start, ',');
600 if (end != NULL) {
601 *end = '\0';
602 end++;
603 }
604 snprintf(buf, sizeof(buf), k_traceAppsPropertyTemplate, i);
605 if (property_set(buf, start) < 0) {
606 fprintf(stderr, "error setting trace app %d property to %s\n", i, buf);
607 clearAppProperties();
608 return false;
609 }
610 start = end;
611 i++;
612 }
613
614 snprintf(buf, sizeof(buf), "%d", i);
615 if (property_set(k_traceAppsNumberProperty, buf) < 0) {
616 fprintf(stderr, "error setting trace app number property to %s\n", buf);
617 clearAppProperties();
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700618 return false;
619 }
620 return true;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800621}
622
623// Disable all /sys/ enable files.
624static bool disableKernelTraceEvents() {
625 bool ok = true;
626 for (int i = 0; i < NELEM(k_categories); i++) {
627 const TracingCategory &c = k_categories[i];
628 for (int j = 0; j < MAX_SYS_FILES; j++) {
629 const char* path = c.sysfiles[j].path;
630 if (path != NULL && fileIsWritable(path)) {
631 ok &= setKernelOptionEnable(path, false);
632 }
633 }
634 }
635 return ok;
636}
637
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700638// Verify that the comma separated list of functions are being traced by the
639// kernel.
640static bool verifyKernelTraceFuncs(const char* funcs)
641{
Stephane Gasparinid8419c22016-03-02 13:45:15 +0100642 std::string buf;
643 if (!android::base::ReadFileToString(k_ftraceFilterPath, &buf)) {
644 fprintf(stderr, "error opening %s: %s (%d)\n", k_ftraceFilterPath,
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700645 strerror(errno), errno);
Stephane Gasparinid8419c22016-03-02 13:45:15 +0100646 return false;
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700647 }
648
Stephane Gasparinid8419c22016-03-02 13:45:15 +0100649 String8 funcList = String8::format("\n%s",buf.c_str());
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700650
651 // Make sure that every function listed in funcs is in the list we just
Thomas Buhota2c22872016-01-27 09:44:31 +0100652 // read from the kernel, except for wildcard inputs.
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700653 bool ok = true;
654 char* myFuncs = strdup(funcs);
655 char* func = strtok(myFuncs, ",");
656 while (func) {
Thomas Buhota2c22872016-01-27 09:44:31 +0100657 if (!strchr(func, '*')) {
658 String8 fancyFunc = String8::format("\n%s\n", func);
659 bool found = funcList.find(fancyFunc.string(), 0) >= 0;
660 if (!found || func[0] == '\0') {
661 fprintf(stderr, "error: \"%s\" is not a valid kernel function "
662 "to trace.\n", func);
663 ok = false;
664 }
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700665 }
666 func = strtok(NULL, ",");
667 }
668 free(myFuncs);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700669 return ok;
670}
671
672// Set the comma separated list of functions that the kernel is to trace.
673static bool setKernelTraceFuncs(const char* funcs)
674{
675 bool ok = true;
676
677 if (funcs == NULL || funcs[0] == '\0') {
678 // Disable kernel function tracing.
Jamie Gennis6f6f3f72013-03-27 15:50:30 -0700679 if (fileIsWritable(k_currentTracerPath)) {
680 ok &= writeStr(k_currentTracerPath, "nop");
681 }
682 if (fileIsWritable(k_ftraceFilterPath)) {
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700683 ok &= truncateFile(k_ftraceFilterPath);
684 }
685 } else {
686 // Enable kernel function tracing.
687 ok &= writeStr(k_currentTracerPath, "function_graph");
688 ok &= setKernelOptionEnable(k_funcgraphAbsTimePath, true);
689 ok &= setKernelOptionEnable(k_funcgraphCpuPath, true);
690 ok &= setKernelOptionEnable(k_funcgraphProcPath, true);
691 ok &= setKernelOptionEnable(k_funcgraphFlatPath, true);
692
693 // Set the requested filter functions.
694 ok &= truncateFile(k_ftraceFilterPath);
695 char* myFuncs = strdup(funcs);
696 char* func = strtok(myFuncs, ",");
697 while (func) {
698 ok &= appendStr(k_ftraceFilterPath, func);
699 func = strtok(NULL, ",");
700 }
701 free(myFuncs);
702
703 // Verify that the set functions are being traced.
704 if (ok) {
705 ok &= verifyKernelTraceFuncs(funcs);
706 }
707 }
708
709 return ok;
710}
711
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +0900712static bool setCategoryEnable(const char* name, bool enable)
713{
714 for (int i = 0; i < NELEM(k_categories); i++) {
715 const TracingCategory& c = k_categories[i];
716 if (strcmp(name, c.name) == 0) {
717 if (isCategorySupported(c)) {
718 g_categoryEnables[i] = enable;
719 return true;
720 } else {
721 if (isCategorySupportedForRoot(c)) {
722 fprintf(stderr, "error: category \"%s\" requires root "
723 "privileges.\n", name);
724 } else {
725 fprintf(stderr, "error: category \"%s\" is not supported "
726 "on this device.\n", name);
727 }
728 return false;
729 }
730 }
731 }
732 fprintf(stderr, "error: unknown tracing category \"%s\"\n", name);
733 return false;
734}
735
736static bool setCategoriesEnableFromFile(const char* categories_file)
737{
738 if (!categories_file) {
739 return true;
740 }
741 Tokenizer* tokenizer = NULL;
742 if (Tokenizer::open(String8(categories_file), &tokenizer) != NO_ERROR) {
743 return false;
744 }
745 bool ok = true;
746 while (!tokenizer->isEol()) {
747 String8 token = tokenizer->nextToken(" ");
748 if (token.isEmpty()) {
749 tokenizer->skipDelimiters(" ");
750 continue;
751 }
752 ok &= setCategoryEnable(token.string(), true);
753 }
754 delete tokenizer;
755 return ok;
756}
757
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700758// Set all the kernel tracing settings to the desired state for this trace
759// capture.
760static bool setUpTrace()
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800761{
762 bool ok = true;
763
764 // Set up the tracing options.
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +0900765 ok &= setCategoriesEnableFromFile(g_categoriesFile);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800766 ok &= setTraceOverwriteEnable(g_traceOverwrite);
767 ok &= setTraceBufferSizeKB(g_traceBufferSizeKB);
768 ok &= setGlobalClockEnable(true);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700769 ok &= setPrintTgidEnableIfPresent(true);
770 ok &= setKernelTraceFuncs(g_kernelTraceFuncs);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800771
772 // Set up the tags property.
773 uint64_t tags = 0;
774 for (int i = 0; i < NELEM(k_categories); i++) {
775 if (g_categoryEnables[i]) {
776 const TracingCategory &c = k_categories[i];
777 tags |= c.tags;
778 }
779 }
780 ok &= setTagsProperty(tags);
sergeyvdb404152016-05-02 19:26:07 -0700781
782 bool coreServicesTagEnabled = false;
783 for (int i = 0; i < NELEM(k_categories); i++) {
784 if (strcmp(k_categories[i].name, k_coreServiceCategory) == 0) {
785 coreServicesTagEnabled = g_categoryEnables[i];
786 }
787 }
788
789 std::string packageList(g_debugAppCmdLine);
790 if (coreServicesTagEnabled) {
791 char value[PROPERTY_VALUE_MAX];
792 property_get(k_coreServicesProp, value, "");
793 if (!packageList.empty()) {
794 packageList += ",";
795 }
796 packageList += value;
797 }
Dan Austin497951c2016-05-31 13:27:03 -0700798 ok &= setAppCmdlineProperty(&packageList[0]);
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700799 ok &= pokeBinderServices();
Martijn Coenenee9b97e2016-11-16 16:00:26 +0100800 pokeHalServices();
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800801
802 // Disable all the sysfs enables. This is done as a separate loop from
803 // the enables to allow the same enable to exist in multiple categories.
804 ok &= disableKernelTraceEvents();
805
806 // Enable all the sysfs enables that are in an enabled category.
807 for (int i = 0; i < NELEM(k_categories); i++) {
808 if (g_categoryEnables[i]) {
809 const TracingCategory &c = k_categories[i];
810 for (int j = 0; j < MAX_SYS_FILES; j++) {
811 const char* path = c.sysfiles[j].path;
812 bool required = c.sysfiles[j].required == REQ;
813 if (path != NULL) {
814 if (fileIsWritable(path)) {
815 ok &= setKernelOptionEnable(path, true);
816 } else if (required) {
817 fprintf(stderr, "error writing file %s\n", path);
818 ok = false;
819 }
820 }
821 }
822 }
823 }
824
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800825 return ok;
826}
827
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700828// Reset all the kernel tracing settings to their default state.
829static void cleanUpTrace()
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800830{
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800831 // Disable all tracing that we're able to.
832 disableKernelTraceEvents();
833
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700834 // Reset the system properties.
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800835 setTagsProperty(0);
sergeyv4144eff2016-04-28 11:40:04 -0700836 clearAppProperties();
Jamie Gennisf7f29c82013-03-27 15:50:58 -0700837 pokeBinderServices();
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800838
839 // Set the options back to their defaults.
840 setTraceOverwriteEnable(true);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700841 setTraceBufferSizeKB(1);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800842 setGlobalClockEnable(false);
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700843 setPrintTgidEnableIfPresent(false);
844 setKernelTraceFuncs(NULL);
845}
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800846
Jamie Gennise9b8cfb2013-03-12 16:00:10 -0700847
848// Enable tracing in the kernel.
849static bool startTrace()
850{
851 return setTracingEnabled(true);
852}
853
854// Disable tracing in the kernel.
855static void stopTrace()
856{
857 setTracingEnabled(false);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800858}
859
Martijn Coenend9535872015-11-26 10:00:55 +0100860// Read data from the tracing pipe and forward to stdout
861static void streamTrace()
862{
863 char trace_data[4096];
864 int traceFD = open(k_traceStreamPath, O_RDWR);
865 if (traceFD == -1) {
866 fprintf(stderr, "error opening %s: %s (%d)\n", k_traceStreamPath,
867 strerror(errno), errno);
868 return;
869 }
870 while (!g_traceAborted) {
871 ssize_t bytes_read = read(traceFD, trace_data, 4096);
872 if (bytes_read > 0) {
873 write(STDOUT_FILENO, trace_data, bytes_read);
874 fflush(stdout);
875 } else {
876 if (!g_traceAborted) {
877 fprintf(stderr, "read returned %zd bytes err %d (%s)\n",
878 bytes_read, errno, strerror(errno));
879 }
880 break;
881 }
882 }
883}
884
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800885// Read the current kernel trace and write it to stdout.
John Reck40b26b42016-03-30 09:44:36 -0700886static void dumpTrace(int outFd)
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800887{
John Reck6c8ac922016-03-28 11:25:30 -0700888 ALOGI("Dumping trace");
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800889 int traceFD = open(k_tracePath, O_RDWR);
890 if (traceFD == -1) {
891 fprintf(stderr, "error opening %s: %s (%d)\n", k_tracePath,
892 strerror(errno), errno);
893 return;
894 }
895
896 if (g_compress) {
897 z_stream zs;
Elliott Hughes3da5d232015-01-25 08:35:20 -0800898 memset(&zs, 0, sizeof(zs));
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700899
900 int result = deflateInit(&zs, Z_DEFAULT_COMPRESSION);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800901 if (result != Z_OK) {
902 fprintf(stderr, "error initializing zlib: %d\n", result);
903 close(traceFD);
904 return;
905 }
906
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700907 constexpr size_t bufSize = 64*1024;
908 std::unique_ptr<uint8_t> in(new uint8_t[bufSize]);
909 std::unique_ptr<uint8_t> out(new uint8_t[bufSize]);
910 if (!in || !out) {
911 fprintf(stderr, "couldn't allocate buffers\n");
912 close(traceFD);
913 return;
914 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800915
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700916 int flush = Z_NO_FLUSH;
917
918 zs.next_out = reinterpret_cast<Bytef*>(out.get());
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800919 zs.avail_out = bufSize;
920
921 do {
922
923 if (zs.avail_in == 0) {
924 // More input is needed.
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700925 result = read(traceFD, in.get(), bufSize);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800926 if (result < 0) {
927 fprintf(stderr, "error reading trace: %s (%d)\n",
928 strerror(errno), errno);
929 result = Z_STREAM_END;
930 break;
931 } else if (result == 0) {
932 flush = Z_FINISH;
933 } else {
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700934 zs.next_in = reinterpret_cast<Bytef*>(in.get());
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800935 zs.avail_in = result;
936 }
937 }
938
939 if (zs.avail_out == 0) {
940 // Need to write the output.
Elliott Hughesb59e2962016-07-22 09:00:59 -0700941 result = write(outFd, out.get(), bufSize);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800942 if ((size_t)result < bufSize) {
943 fprintf(stderr, "error writing deflated trace: %s (%d)\n",
944 strerror(errno), errno);
945 result = Z_STREAM_END; // skip deflate error message
946 zs.avail_out = bufSize; // skip the final write
947 break;
948 }
Elliott Hughesa252f4d2016-07-21 17:12:15 -0700949 zs.next_out = reinterpret_cast<Bytef*>(out.get());
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800950 zs.avail_out = bufSize;
951 }
952
953 } while ((result = deflate(&zs, flush)) == Z_OK);
954
955 if (result != Z_STREAM_END) {
956 fprintf(stderr, "error deflating trace: %s\n", zs.msg);
957 }
958
959 if (zs.avail_out < bufSize) {
960 size_t bytes = bufSize - zs.avail_out;
Elliott Hughesb59e2962016-07-22 09:00:59 -0700961 result = write(outFd, out.get(), bytes);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800962 if ((size_t)result < bytes) {
963 fprintf(stderr, "error writing deflated trace: %s (%d)\n",
964 strerror(errno), errno);
965 }
966 }
967
968 result = deflateEnd(&zs);
969 if (result != Z_OK) {
970 fprintf(stderr, "error cleaning up zlib: %d\n", result);
971 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800972 } else {
973 ssize_t sent = 0;
John Reck40b26b42016-03-30 09:44:36 -0700974 while ((sent = sendfile(outFd, traceFD, NULL, 64*1024*1024)) > 0);
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800975 if (sent == -1) {
976 fprintf(stderr, "error dumping trace: %s (%d)\n", strerror(errno),
977 errno);
978 }
979 }
980
981 close(traceFD);
982}
983
Mark Salyzyn92dc3fc2014-03-12 13:12:44 -0700984static void handleSignal(int /*signo*/)
Jamie Gennis6eea6fb2012-12-07 14:03:07 -0800985{
986 if (!g_nohup) {
987 g_traceAborted = true;
988 }
989}
990
991static void registerSigHandler()
992{
993 struct sigaction sa;
994 sigemptyset(&sa.sa_mask);
995 sa.sa_flags = 0;
996 sa.sa_handler = handleSignal;
997 sigaction(SIGHUP, &sa, NULL);
998 sigaction(SIGINT, &sa, NULL);
999 sigaction(SIGQUIT, &sa, NULL);
1000 sigaction(SIGTERM, &sa, NULL);
1001}
1002
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001003static void listSupportedCategories()
1004{
1005 for (int i = 0; i < NELEM(k_categories); i++) {
1006 const TracingCategory& c = k_categories[i];
1007 if (isCategorySupported(c)) {
1008 printf(" %10s - %s\n", c.name, c.longname);
1009 }
1010 }
1011}
1012
1013// Print the command usage help to stderr.
1014static void showHelp(const char *cmd)
1015{
1016 fprintf(stderr, "usage: %s [options] [categories...]\n", cmd);
1017 fprintf(stderr, "options include:\n"
Jamie Gennisf7f29c82013-03-27 15:50:58 -07001018 " -a appname enable app-level tracing for a comma "
1019 "separated list of cmdlines\n"
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001020 " -b N use a trace buffer size of N KB\n"
1021 " -c trace into a circular buffer\n"
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +09001022 " -f filename use the categories written in a file as space-separated\n"
1023 " values in a line\n"
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001024 " -k fname,... trace the listed kernel functions\n"
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001025 " -n ignore signals\n"
1026 " -s N sleep for N seconds before tracing [default 0]\n"
Elliott Hughesf884a062016-07-22 09:38:44 -07001027 " -t N trace for N seconds [default 5]\n"
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001028 " -z compress the trace dump\n"
1029 " --async_start start circular trace and return immediatly\n"
1030 " --async_dump dump the current contents of circular trace buffer\n"
1031 " --async_stop stop tracing and dump the current contents of circular\n"
1032 " trace buffer\n"
Martijn Coenend9535872015-11-26 10:00:55 +01001033 " --stream stream trace to stdout as it enters the trace buffer\n"
1034 " Note: this can take significant CPU time, and is best\n"
1035 " used for measuring things that are not affected by\n"
1036 " CPU performance, like pagecache usage.\n"
Jamie Gennis92573f12012-12-07 16:29:03 -08001037 " --list_categories\n"
1038 " list the available tracing categories\n"
John Reck40b26b42016-03-30 09:44:36 -07001039 " -o filename write the trace to the specified file instead\n"
1040 " of stdout.\n"
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001041 );
1042}
1043
1044int main(int argc, char **argv)
1045{
1046 bool async = false;
1047 bool traceStart = true;
1048 bool traceStop = true;
1049 bool traceDump = true;
Martijn Coenend9535872015-11-26 10:00:55 +01001050 bool traceStream = false;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001051
1052 if (argc == 2 && 0 == strcmp(argv[1], "--help")) {
1053 showHelp(argv[0]);
1054 exit(0);
1055 }
1056
1057 for (;;) {
1058 int ret;
1059 int option_index = 0;
1060 static struct option long_options[] = {
1061 {"async_start", no_argument, 0, 0 },
1062 {"async_stop", no_argument, 0, 0 },
1063 {"async_dump", no_argument, 0, 0 },
1064 {"list_categories", no_argument, 0, 0 },
Martijn Coenend9535872015-11-26 10:00:55 +01001065 {"stream", no_argument, 0, 0 },
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001066 { 0, 0, 0, 0 }
1067 };
1068
John Reck40b26b42016-03-30 09:44:36 -07001069 ret = getopt_long(argc, argv, "a:b:cf:k:ns:t:zo:",
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001070 long_options, &option_index);
1071
1072 if (ret < 0) {
1073 for (int i = optind; i < argc; i++) {
1074 if (!setCategoryEnable(argv[i], true)) {
1075 fprintf(stderr, "error enabling tracing category \"%s\"\n", argv[i]);
1076 exit(1);
1077 }
1078 }
1079 break;
1080 }
1081
1082 switch(ret) {
Jamie Gennisf7f29c82013-03-27 15:50:58 -07001083 case 'a':
1084 g_debugAppCmdLine = optarg;
1085 break;
1086
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001087 case 'b':
1088 g_traceBufferSizeKB = atoi(optarg);
1089 break;
1090
1091 case 'c':
1092 g_traceOverwrite = true;
1093 break;
1094
Yasuhiro Matsuda46c51fb2015-06-29 19:20:39 +09001095 case 'f':
1096 g_categoriesFile = optarg;
1097 break;
1098
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001099 case 'k':
1100 g_kernelTraceFuncs = optarg;
Jamie Gennis6f6f3f72013-03-27 15:50:30 -07001101 break;
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001102
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001103 case 'n':
1104 g_nohup = true;
Jamie Gennis6f6f3f72013-03-27 15:50:30 -07001105 break;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001106
1107 case 's':
1108 g_initialSleepSecs = atoi(optarg);
1109 break;
1110
1111 case 't':
1112 g_traceDurationSeconds = atoi(optarg);
1113 break;
1114
1115 case 'z':
1116 g_compress = true;
1117 break;
1118
John Reck40b26b42016-03-30 09:44:36 -07001119 case 'o':
1120 g_outputFile = optarg;
1121 break;
1122
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001123 case 0:
1124 if (!strcmp(long_options[option_index].name, "async_start")) {
1125 async = true;
1126 traceStop = false;
1127 traceDump = false;
1128 g_traceOverwrite = true;
1129 } else if (!strcmp(long_options[option_index].name, "async_stop")) {
1130 async = true;
John Reck4ba2b632015-05-15 10:00:34 -07001131 traceStart = false;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001132 } else if (!strcmp(long_options[option_index].name, "async_dump")) {
1133 async = true;
1134 traceStart = false;
1135 traceStop = false;
Martijn Coenend9535872015-11-26 10:00:55 +01001136 } else if (!strcmp(long_options[option_index].name, "stream")) {
1137 traceStream = true;
1138 traceDump = false;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001139 } else if (!strcmp(long_options[option_index].name, "list_categories")) {
1140 listSupportedCategories();
1141 exit(0);
1142 }
Jamie Gennis6f6f3f72013-03-27 15:50:30 -07001143 break;
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001144
1145 default:
1146 fprintf(stderr, "\n");
1147 showHelp(argv[0]);
1148 exit(-1);
1149 break;
1150 }
1151 }
1152
1153 registerSigHandler();
1154
1155 if (g_initialSleepSecs > 0) {
1156 sleep(g_initialSleepSecs);
1157 }
1158
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001159 bool ok = true;
1160 ok &= setUpTrace();
1161 ok &= startTrace();
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001162
1163 if (ok && traceStart) {
Martijn Coenend9535872015-11-26 10:00:55 +01001164 if (!traceStream) {
1165 printf("capturing trace...");
1166 fflush(stdout);
1167 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001168
1169 // We clear the trace after starting it because tracing gets enabled for
1170 // each CPU individually in the kernel. Having the beginning of the trace
1171 // contain entries from only one CPU can cause "begin" entries without a
1172 // matching "end" entry to show up if a task gets migrated from one CPU to
1173 // another.
1174 ok = clearTrace();
1175
Martijn Coenen0bcd97a2015-07-15 14:25:23 +02001176 writeClockSyncMarker();
Martijn Coenend9535872015-11-26 10:00:55 +01001177 if (ok && !async && !traceStream) {
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001178 // Sleep to allow the trace to be captured.
1179 struct timespec timeLeft;
1180 timeLeft.tv_sec = g_traceDurationSeconds;
1181 timeLeft.tv_nsec = 0;
1182 do {
1183 if (g_traceAborted) {
1184 break;
1185 }
1186 } while (nanosleep(&timeLeft, &timeLeft) == -1 && errno == EINTR);
1187 }
Martijn Coenend9535872015-11-26 10:00:55 +01001188
1189 if (traceStream) {
1190 streamTrace();
1191 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001192 }
1193
1194 // Stop the trace and restore the default settings.
1195 if (traceStop)
1196 stopTrace();
1197
1198 if (ok && traceDump) {
1199 if (!g_traceAborted) {
John Reck40b26b42016-03-30 09:44:36 -07001200 printf(" done\n");
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001201 fflush(stdout);
John Reck40b26b42016-03-30 09:44:36 -07001202 int outFd = STDOUT_FILENO;
1203 if (g_outputFile) {
1204 outFd = open(g_outputFile, O_WRONLY | O_CREAT);
1205 }
1206 if (outFd == -1) {
1207 printf("Failed to open '%s', err=%d", g_outputFile, errno);
1208 } else {
1209 dprintf(outFd, "TRACE:\n");
1210 dumpTrace(outFd);
1211 if (g_outputFile) {
1212 close(outFd);
1213 }
1214 }
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001215 } else {
1216 printf("\ntrace aborted.\n");
1217 fflush(stdout);
1218 }
1219 clearTrace();
1220 } else if (!ok) {
1221 fprintf(stderr, "unable to start tracing\n");
1222 }
1223
1224 // Reset the trace buffer size to 1.
1225 if (traceStop)
Jamie Gennise9b8cfb2013-03-12 16:00:10 -07001226 cleanUpTrace();
Jamie Gennis6eea6fb2012-12-07 14:03:07 -08001227
1228 return g_traceAborted ? 1 : 0;
1229}