blob: d6d7806f0579a890d6f850fd7b2b4f4f1d88e324 [file] [log] [blame]
Sasha Goldshtein38847f02016-02-22 02:19:24 -08001Demonstrations of trace.
2
3
4trace probes functions you specify and displays trace messages if a particular
ShelbyFrances69abacc2017-02-08 05:56:53 +03005condition is met. You can control the message format to display function
6arguments and return values.
Sasha Goldshtein38847f02016-02-22 02:19:24 -08007
8For example, suppose you want to trace all commands being exec'd across the
9system:
10
Sasha Goldshtein8acd0152016-02-22 02:25:03 -080011# trace 'sys_execve "%s", arg1'
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +000012PID COMM FUNC -
134402 bash sys_execve /usr/bin/man
144411 man sys_execve /usr/local/bin/less
154411 man sys_execve /usr/bin/less
164410 man sys_execve /usr/local/bin/nroff
174410 man sys_execve /usr/bin/nroff
184409 man sys_execve /usr/local/bin/tbl
194409 man sys_execve /usr/bin/tbl
204408 man sys_execve /usr/local/bin/preconv
214408 man sys_execve /usr/bin/preconv
224415 nroff sys_execve /usr/bin/locale
234416 nroff sys_execve /usr/bin/groff
244418 groff sys_execve /usr/bin/grotty
254417 groff sys_execve /usr/bin/troff
Sasha Goldshtein38847f02016-02-22 02:19:24 -080026^C
27
28The ::sys_execve syntax specifies that you want an entry probe (which is the
29default), in a kernel function (which is the default) called sys_execve. Next,
30the format string to print is simply "%s", which prints a string. Finally, the
31value to print is the first argument to the sys_execve function, which happens
32to be the command that is exec'd. The above trace was generated by executing
33"man ls" in a separate shell. As you see, man executes a number of additional
34programs to finally display the man page.
35
36Next, suppose you are looking for large reads across the system. Let's trace
37the read system call and inspect the third argument, which is the number of
38bytes to be read:
39
Sasha Goldshtein8acd0152016-02-22 02:25:03 -080040# trace 'sys_read (arg3 > 20000) "read %d bytes", arg3'
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +000041PID COMM FUNC -
424490 dd sys_read read 1048576 bytes
434490 dd sys_read read 1048576 bytes
444490 dd sys_read read 1048576 bytes
454490 dd sys_read read 1048576 bytes
Sasha Goldshtein38847f02016-02-22 02:19:24 -080046^C
47
48During the trace, I executed "dd if=/dev/zero of=/dev/null bs=1M count=4".
49The individual reads are visible, with the custom format message printed for
50each read. The parenthesized expression "(arg3 > 20000)" is a filter that is
51evaluated for each invocation of the probe before printing anything.
52
53You can also trace user functions. For example, let's simulate the bashreadline
54script, which attaches to the readline function in bash and prints its return
55value, effectively snooping all bash shell input across the system:
56
57# trace 'r:bash:readline "%s", retval'
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +000058PID COMM FUNC -
592740 bash readline echo hi!
602740 bash readline man ls
Sasha Goldshtein38847f02016-02-22 02:19:24 -080061^C
62
63The special retval keywords stands for the function's return value, and can
64be used only in a retprobe, specified by the 'r' prefix. The next component
65of the probe is the library that contains the desired function. It's OK to
66specify executables too, as long as they can be found in the PATH. Or, you
67can specify the full path to the executable (e.g. "/usr/bin/bash").
68
69Multiple probes can be combined on the same command line. For example, let's
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +000070trace failed read and write calls on the libc level, and include a time column:
Sasha Goldshtein38847f02016-02-22 02:19:24 -080071
72# trace 'r:c:read ((int)retval < 0) "read failed: %d", retval' \
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +000073 'r:c:write ((int)retval < 0) "write failed: %d", retval' -T
Sasha Goldshtein38847f02016-02-22 02:19:24 -080074TIME PID COMM FUNC -
7505:31:57 3388 bash write write failed: -1
7605:32:00 3388 bash write write failed: -1
77^C
78
79Note that the retval variable must be cast to int before comparing to zero.
80The reason is that the default type for argN and retval is an unsigned 64-bit
81integer, which can never be smaller than 0.
82
Sasha Goldshteinfd60d552016-03-01 12:15:34 -080083trace has also some basic support for kernel tracepoints. For example, let's
84trace the block:block_rq_complete tracepoint and print out the number of sectors
85transferred:
86
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +000087# trace 't:block:block_rq_complete "sectors=%d", args->nr_sector' -T
Sasha Goldshteinfd60d552016-03-01 12:15:34 -080088TIME PID COMM FUNC -
8901:23:51 0 swapper/0 block_rq_complete sectors=8
9001:23:55 10017 kworker/u64: block_rq_complete sectors=1
9101:23:55 0 swapper/0 block_rq_complete sectors=8
92^C
93
Sasha Goldshtein376ae5c2016-10-04 19:49:57 +030094To discover the tracepoint structure format (which you can refer to as the "args"
95pointer variable), use the tplist tool. For example:
Sasha Goldshteinfd60d552016-03-01 12:15:34 -080096
97# tplist -v block:block_rq_complete
98block:block_rq_complete
99 dev_t dev;
100 sector_t sector;
101 unsigned int nr_sector;
102 int errors;
103 char rwbs[8];
104
Sasha Goldshtein376ae5c2016-10-04 19:49:57 +0300105This output tells you that you can use "args->dev", "args->sector", etc. in your
Sasha Goldshteinfd60d552016-03-01 12:15:34 -0800106predicate and trace arguments.
107
Sasha Goldshteinaccd4cf2016-10-11 07:56:13 -0700108
109More and more high-level libraries are instrumented with USDT probe support.
110These probes can be traced by trace just like kernel tracepoints. For example,
Teng Qinc200b6c2017-12-16 00:15:55 -0800111trace new threads being created and their function name, include time column
112and on which CPU it happened:
Sasha Goldshteinaccd4cf2016-10-11 07:56:13 -0700113
Teng Qinc200b6c2017-12-16 00:15:55 -0800114# trace 'u:pthread:pthread_create "%U", arg3' -T -C
115TIME CPU PID TID COMM FUNC -
11613:22:01 25 2627 2629 automount pthread_create expire_proc_indirect+0x0 [automount]
11713:22:01 5 21360 21414 osqueryd pthread_create [unknown] [osqueryd]
11813:22:03 25 2627 2629 automount pthread_create expire_proc_indirect+0x0 [automount]
11913:22:04 15 21360 21414 osqueryd pthread_create [unknown] [osqueryd]
12013:22:07 25 2627 2629 automount pthread_create expire_proc_indirect+0x0 [automount]
12113:22:07 4 21360 21414 osqueryd pthread_create [unknown] [osqueryd]
Sasha Goldshteinaccd4cf2016-10-11 07:56:13 -0700122^C
123
124The "%U" format specifier tells trace to resolve arg3 as a user-space symbol,
125if possible. Similarly, use "%K" for kernel symbols.
126
127Ruby, Node, and OpenJDK are also instrumented with USDT. For example, let's
128trace Ruby methods being called (this requires a version of Ruby built with
129the --enable-dtrace configure flag):
130
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +0000131# trace 'u:ruby:method__entry "%s.%s", arg1, arg2' -p $(pidof irb) -T
Sasha Goldshteinaccd4cf2016-10-11 07:56:13 -0700132TIME PID COMM FUNC -
13312:08:43 18420 irb method__entry IRB::Context.verbose?
13412:08:43 18420 irb method__entry RubyLex.ungetc
13512:08:43 18420 irb method__entry RuxyLex.debug?
136^C
137
138In the previous invocation, arg1 and arg2 are the class name and method name
139for the Ruby method being invoked.
140
ShelbyFrances86cd5352017-02-08 05:56:37 +0300141You can also trace exported functions from shared libraries, or an imported
142function on the actual executable:
143
144# sudo ./trace.py 'r:/usr/lib64/libtinfo.so:curses_version "Version=%s", retval'
145# tput -V
146
147PID TID COMM FUNC -
14821720 21720 tput curses_version Version=ncurses 6.0.20160709
149^C
150
Sasha Goldshteinaccd4cf2016-10-11 07:56:13 -0700151
Sasha Goldshteinf4797b02016-10-17 01:44:56 -0700152Occasionally, it can be useful to filter specific strings. For example, you
153might be interested in open() calls that open a specific file:
154
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +0000155# trace 'p:c:open (STRCMP("test.txt", arg1)) "opening %s", arg1' -T
Sasha Goldshteinf4797b02016-10-17 01:44:56 -0700156TIME PID COMM FUNC -
15701:43:15 10938 cat open opening test.txt
15801:43:20 10939 cat open opening test.txt
159^C
160
161
Sasha Goldshtein23e72b82017-01-17 08:49:36 +0000162In the preceding example, as well as in many others, readability may be
163improved by providing the function's signature, which names the arguments and
164lets you access structure sub-fields, which is hard with the "arg1", "arg2"
165convention. For example:
166
167# trace 'p:c:open(char *filename) "opening %s", filename'
168PID TID COMM FUNC -
16917507 17507 cat open opening FAQ.txt
170^C
171
172# trace 'p::SyS_nanosleep(struct timespec *ts) "sleep for %lld ns", ts->tv_nsec'
173PID TID COMM FUNC -
174777 785 automount SyS_nanosleep sleep for 500000000 ns
175777 785 automount SyS_nanosleep sleep for 500000000 ns
176777 785 automount SyS_nanosleep sleep for 500000000 ns
177777 785 automount SyS_nanosleep sleep for 500000000 ns
178^C
179
ShelbyFrances69abacc2017-02-08 05:56:53 +0300180Remember to use the -I argument include the appropriate header file. We didn't
181need to do that here because `struct timespec` is used internally by the tool,
182so it always includes this header file.
Sasha Goldshtein23e72b82017-01-17 08:49:36 +0000183
ShelbyFrances69abacc2017-02-08 05:56:53 +0300184
185As a final example, let's trace open syscalls for a specific process. By
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800186default, tracing is system-wide, but the -p switch overrides this:
187
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +0000188# trace -p 2740 'do_sys_open "%s", arg2' -T
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800189TIME PID COMM FUNC -
19005:36:16 15872 ls do_sys_open /etc/ld.so.cache
19105:36:16 15872 ls do_sys_open /lib64/libselinux.so.1
19205:36:16 15872 ls do_sys_open /lib64/libcap.so.2
19305:36:16 15872 ls do_sys_open /lib64/libacl.so.1
19405:36:16 15872 ls do_sys_open /lib64/libc.so.6
19505:36:16 15872 ls do_sys_open /lib64/libpcre.so.1
19605:36:16 15872 ls do_sys_open /lib64/libdl.so.2
19705:36:16 15872 ls do_sys_open /lib64/libattr.so.1
19805:36:16 15872 ls do_sys_open /lib64/libpthread.so.0
19905:36:16 15872 ls do_sys_open /usr/lib/locale/locale-archive
20005:36:16 15872 ls do_sys_open /home/vagrant
201^C
202
203In this example, we traced the "ls ~" command as it was opening its shared
204libraries and then accessing the /home/vagrant directory listing.
205
206
Mark Drayton5f5687e2017-02-20 18:13:03 +0000207Lastly, if a high-frequency event is traced you may overflow the perf ring
208buffer. This shows as "Lost N samples":
209
210# trace sys_open
2115087 5087 pgrep sys_open
2125087 5087 pgrep sys_open
2135087 5087 pgrep sys_open
2145087 5087 pgrep sys_open
2155087 5087 pgrep sys_open
216Lost 764896 samples
217Lost 764896 samples
218Lost 764896 samples
219
220The perf ring buffer size can be changed with -b. The unit is size per-CPU buffer
221size and is measured in pages. The value must be a power of two and defaults to
22264 pages.
223
224
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800225USAGE message:
226
Mark Drayton5f5687e2017-02-20 18:13:03 +0000227usage: trace [-h] [-b BUFFER_PAGES] [-p PID] [-L TID] [-v] [-Z STRING_SIZE]
228 [-S] [-M MAX_EVENTS] [-t] [-T] [-K] [-U] [-I header]
Mark Draytonaa6c9162016-11-03 15:36:29 +0000229 probe [probe ...]
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800230
231Attach to functions and print trace messages.
232
233positional arguments:
234 probe probe specifier (see examples)
235
236optional arguments:
237 -h, --help show this help message and exit
Mark Drayton5f5687e2017-02-20 18:13:03 +0000238 -b BUFFER_PAGES, --buffer-pages BUFFER_PAGES
239 number of pages to use for perf_events ring buffer
240 (default: 64)
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800241 -p PID, --pid PID id of the process to trace (optional)
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +0000242 -L TID, --tid TID id of the thread to trace (optional)
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800243 -v, --verbose print resulting BPF program code before executing
244 -Z STRING_SIZE, --string-size STRING_SIZE
245 maximum size to read from strings
246 -S, --include-self do not filter trace's own pid from the trace
247 -M MAX_EVENTS, --max-events MAX_EVENTS
248 number of events to print before quitting
Sasha Goldshtein49d50ba2016-12-19 10:17:38 +0000249 -t, --timestamp print timestamp column (offset from trace start)
Mark Drayton5f5687e2017-02-20 18:13:03 +0000250 -T, --time print time column
Teng Qinc200b6c2017-12-16 00:15:55 -0800251 -C, --print_cpu print CPU id
Sasha Goldshtein4725a722016-10-18 20:54:47 +0300252 -K, --kernel-stack output kernel stack trace
253 -U, --user-stack output user stack trace
254 -I header, --include header
255 additional header files to include in the BPF program
Yonghong Songf4470dc2017-12-13 14:12:13 -0800256 as either full path, or relative to current working directory,
257 or relative to default kernel header search path
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800258
259EXAMPLES:
260
Sasha Goldshtein8acd0152016-02-22 02:25:03 -0800261trace do_sys_open
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800262 Trace the open syscall and print a default trace message when entered
Sasha Goldshtein8acd0152016-02-22 02:25:03 -0800263trace 'do_sys_open "%s", arg2'
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800264 Trace the open syscall and print the filename being opened
Sasha Goldshtein8acd0152016-02-22 02:25:03 -0800265trace 'sys_read (arg3 > 20000) "read %d bytes", arg3'
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800266 Trace the read syscall and print a message for reads >20000 bytes
Sasha Goldshtein23e72b82017-01-17 08:49:36 +0000267trace 'r::do_sys_open "%llx", retval'
Mark Draytonaa6c9162016-11-03 15:36:29 +0000268 Trace the return from the open syscall and print the return value
Sasha Goldshtein8acd0152016-02-22 02:25:03 -0800269trace 'c:open (arg2 == 42) "%s %d", arg1, arg2'
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800270 Trace the open() call from libc only if the flags (arg2) argument is 42
Sasha Goldshtein8acd0152016-02-22 02:25:03 -0800271trace 'c:malloc "size = %d", arg1'
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800272 Trace malloc calls and print the size being allocated
Sasha Goldshtein8acd0152016-02-22 02:25:03 -0800273trace 'p:c:write (arg1 == 1) "writing %d bytes to STDOUT", arg3'
274 Trace the write() call from libc to monitor writes to STDOUT
Mark Drayton5f5687e2017-02-20 18:13:03 +0000275trace 'r::__kmalloc (retval == 0) "kmalloc failed!"'
Sasha Goldshtein8acd0152016-02-22 02:25:03 -0800276 Trace returns from __kmalloc which returned a null pointer
Mark Drayton5f5687e2017-02-20 18:13:03 +0000277trace 'r:c:malloc (retval) "allocated = %x", retval'
Sasha Goldshtein38847f02016-02-22 02:19:24 -0800278 Trace returns from malloc and print non-NULL allocated buffers
Sasha Goldshtein376ae5c2016-10-04 19:49:57 +0300279trace 't:block:block_rq_complete "sectors=%d", args->nr_sector'
Sasha Goldshteinfd60d552016-03-01 12:15:34 -0800280 Trace the block_rq_complete kernel tracepoint and print # of tx sectors
Sasha Goldshtein3e39a082016-03-24 08:39:47 -0700281trace 'u:pthread:pthread_create (arg4 != 0)'
282 Trace the USDT probe pthread_create when its 4th argument is non-zero
Sasha Goldshtein23e72b82017-01-17 08:49:36 +0000283trace 'p::SyS_nanosleep(struct timespec *ts) "sleep for %lld ns", ts->tv_nsec'
284 Trace the nanosleep syscall and print the sleep duration in ns
Yonghong Songf4470dc2017-12-13 14:12:13 -0800285trace -I 'linux/fs.h' \
286 'p::uprobe_register(struct inode *inode) "a_ops = %llx", inode->i_mapping->a_ops'
287 Trace the uprobe_register inode mapping ops, and the symbol can be found
288 in /proc/kallsyms
289trace -I 'kernel/sched/sched.h' \
290 'p::__account_cfs_rq_runtime(struct cfs_rq *cfs_rq) "%d", cfs_rq->runtime_remaining'
291 Trace the cfs scheduling runqueue remaining runtime. The struct cfs_rq is defined
292 in kernel/sched/sched.h which is in kernel source tree and not in kernel-devel
293 package. So this command needs to run at the kernel source tree root directory
294 so that the added header file can be found by the compiler.