blob: 6e5cff263e2b81b47d29aaa3af7b3d687f174100 [file] [log] [blame]
Anton Arapovdecc6bf2013-04-03 18:00:39 +02001 Uprobe-tracer: Uprobe-based Event Tracing
2 =========================================
3
4 Documentation written by Srikar Dronamraju
5
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +05306
7Overview
8--------
9Uprobe based trace events are similar to kprobe based trace events.
Srikar Dronamrajuec83db02012-05-08 16:41:26 +053010To enable this feature, build your kernel with CONFIG_UPROBE_EVENT=y.
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053011
12Similar to the kprobe-event tracer, this doesn't need to be activated via
13current_tracer. Instead of that, add probe points via
14/sys/kernel/debug/tracing/uprobe_events, and enable it via
15/sys/kernel/debug/tracing/events/uprobes/<EVENT>/enabled.
16
17However unlike kprobe-event tracer, the uprobe event interface expects the
Anton Arapovdecc6bf2013-04-03 18:00:39 +020018user to calculate the offset of the probepoint in the object.
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053019
20Synopsis of uprobe_tracer
21-------------------------
Namhyung Kim306cfe22013-07-03 16:44:46 +090022 p[:[GRP/]EVENT] PATH:OFFSET [FETCHARGS] : Set a uprobe
23 r[:[GRP/]EVENT] PATH:OFFSET [FETCHARGS] : Set a return uprobe (uretprobe)
24 -:[GRP/]EVENT : Clear uprobe or uretprobe event
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053025
Anton Arapovdecc6bf2013-04-03 18:00:39 +020026 GRP : Group name. If omitted, "uprobes" is the default value.
27 EVENT : Event name. If omitted, the event name is generated based
Namhyung Kim306cfe22013-07-03 16:44:46 +090028 on PATH+OFFSET.
Anton Arapovdecc6bf2013-04-03 18:00:39 +020029 PATH : Path to an executable or a library.
Namhyung Kim306cfe22013-07-03 16:44:46 +090030 OFFSET : Offset where the probe is inserted.
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053031
Anton Arapovdecc6bf2013-04-03 18:00:39 +020032 FETCHARGS : Arguments. Each probe can have up to 128 args.
33 %REG : Fetch register REG
Namhyung Kimb079d372013-07-03 18:34:23 +090034 @ADDR : Fetch memory at ADDR (ADDR should be in userspace)
35 $stackN : Fetch Nth entry of stack (N >= 0)
36 $stack : Fetch stack address.
37 $retval : Fetch return value.(*)
38 +|-offs(FETCHARG) : Fetch memory at FETCHARG +|- offs address.(**)
39 NAME=FETCHARG : Set NAME as the argument name of FETCHARG.
40 FETCHARG:TYPE : Set TYPE as the type of FETCHARG. Currently, basic types
41 (u8/u16/u32/u64/s8/s16/s32/s64), "string" and bitfield
42 are supported.
43
44 (*) only for return probe.
45 (**) this is useful for fetching a field of data structures.
46
47Types
48-----
49Several types are supported for fetch-args. Uprobe tracer will access memory
50by given type. Prefix 's' and 'u' means those types are signed and unsigned
51respectively. Traced arguments are shown in decimal (signed) or hex (unsigned).
52String type is a special type, which fetches a "null-terminated" string from
53user space.
54Bitfield is another special type, which takes 3 parameters, bit-width, bit-
55offset, and container-size (usually 32). The syntax is;
56
57 b<bit-width>@<bit-offset>/<container-size>
58
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053059
60Event Profiling
61---------------
Anton Arapovdecc6bf2013-04-03 18:00:39 +020062You can check the total number of probe hits and probe miss-hits via
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053063/sys/kernel/debug/tracing/uprobe_profile.
Anton Arapovdecc6bf2013-04-03 18:00:39 +020064The first column is event name, the second is the number of probe hits,
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053065the third is the number of probe miss-hits.
66
67Usage examples
68--------------
Anton Arapovdecc6bf2013-04-03 18:00:39 +020069 * Add a probe as a new uprobe event, write a new definition to uprobe_events
70as below: (sets a uprobe at an offset of 0x4245c0 in the executable /bin/bash)
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053071
Anton Arapovdecc6bf2013-04-03 18:00:39 +020072 echo 'p: /bin/bash:0x4245c0' > /sys/kernel/debug/tracing/uprobe_events
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053073
Anton Arapovdecc6bf2013-04-03 18:00:39 +020074 * Add a probe as a new uretprobe event:
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053075
Anton Arapovdecc6bf2013-04-03 18:00:39 +020076 echo 'r: /bin/bash:0x4245c0' > /sys/kernel/debug/tracing/uprobe_events
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053077
Anton Arapovdecc6bf2013-04-03 18:00:39 +020078 * Unset registered event:
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053079
Anton Arapovdecc6bf2013-04-03 18:00:39 +020080 echo '-:bash_0x4245c0' >> /sys/kernel/debug/tracing/uprobe_events
81
82 * Print out the events that are registered:
83
84 cat /sys/kernel/debug/tracing/uprobe_events
85
86 * Clear all events:
87
88 echo > /sys/kernel/debug/tracing/uprobe_events
89
90Following example shows how to dump the instruction pointer and %ax register
91at the probed text address. Probe zfree function in /bin/zsh:
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053092
93 # cd /sys/kernel/debug/tracing/
Anton Arapovdecc6bf2013-04-03 18:00:39 +020094 # cat /proc/`pgrep zsh`/maps | grep /bin/zsh | grep r-xp
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +053095 00400000-0048a000 r-xp 00000000 08:03 130904 /bin/zsh
96 # objdump -T /bin/zsh | grep -w zfree
97 0000000000446420 g DF .text 0000000000000012 Base zfree
98
Anton Arapovdecc6bf2013-04-03 18:00:39 +020099 0x46420 is the offset of zfree in object /bin/zsh that is loaded at
100 0x00400000. Hence the command to uprobe would be:
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +0530101
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200102 # echo 'p:zfree_entry /bin/zsh:0x46420 %ip %ax' > uprobe_events
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +0530103
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200104 And the same for the uretprobe would be:
105
106 # echo 'r:zfree_exit /bin/zsh:0x46420 %ip %ax' >> uprobe_events
107
108Please note: User has to explicitly calculate the offset of the probe-point
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +0530109in the object. We can see the events that are registered by looking at the
110uprobe_events file.
111
112 # cat uprobe_events
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200113 p:uprobes/zfree_entry /bin/zsh:0x00046420 arg1=%ip arg2=%ax
114 r:uprobes/zfree_exit /bin/zsh:0x00046420 arg1=%ip arg2=%ax
Srikar Dronamrajuec83db02012-05-08 16:41:26 +0530115
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200116Format of events can be seen by viewing the file events/uprobes/zfree_entry/format
Srikar Dronamrajuec83db02012-05-08 16:41:26 +0530117
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200118 # cat events/uprobes/zfree_entry/format
119 name: zfree_entry
Srikar Dronamrajuec83db02012-05-08 16:41:26 +0530120 ID: 922
121 format:
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200122 field:unsigned short common_type; offset:0; size:2; signed:0;
123 field:unsigned char common_flags; offset:2; size:1; signed:0;
124 field:unsigned char common_preempt_count; offset:3; size:1; signed:0;
125 field:int common_pid; offset:4; size:4; signed:1;
126 field:int common_padding; offset:8; size:4; signed:1;
Srikar Dronamrajuec83db02012-05-08 16:41:26 +0530127
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200128 field:unsigned long __probe_ip; offset:12; size:4; signed:0;
129 field:u32 arg1; offset:16; size:4; signed:0;
130 field:u32 arg2; offset:20; size:4; signed:0;
Srikar Dronamrajuec83db02012-05-08 16:41:26 +0530131
132 print fmt: "(%lx) arg1=%lx arg2=%lx", REC->__probe_ip, REC->arg1, REC->arg2
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +0530133
134Right after definition, each event is disabled by default. For tracing these
135events, you need to enable it by:
136
137 # echo 1 > events/uprobes/enable
138
139Lets disable the event after sleeping for some time.
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200140
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +0530141 # sleep 20
142 # echo 0 > events/uprobes/enable
143
144And you can see the traced information via /sys/kernel/debug/tracing/trace.
145
146 # cat trace
147 # tracer: nop
148 #
149 # TASK-PID CPU# TIMESTAMP FUNCTION
150 # | | | | |
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200151 zsh-24842 [006] 258544.995456: zfree_entry: (0x446420) arg1=446420 arg2=79
152 zsh-24842 [007] 258545.000270: zfree_exit: (0x446540 <- 0x446420) arg1=446540 arg2=0
153 zsh-24842 [002] 258545.043929: zfree_entry: (0x446420) arg1=446420 arg2=79
154 zsh-24842 [004] 258547.046129: zfree_exit: (0x446540 <- 0x446420) arg1=446540 arg2=0
Srikar Dronamrajuf3f096c2012-04-11 16:00:43 +0530155
Anton Arapovdecc6bf2013-04-03 18:00:39 +0200156Output shows us uprobe was triggered for a pid 24842 with ip being 0x446420
157and contents of ax register being 79. And uretprobe was triggered with ip at
1580x446540 with counterpart function entry at 0x446420.