Annotation of wikisrc/tutorials/how_to_enable_and_run_dtrace.mdwn, revision 1.29
1.15 sevan 1: DTrace is a Dynamic Tracing framework developed by Sun and ported to NetBSD. It enables extensive instrumentation of the kernel and user space. See the [DTrace Community Page](http://dtrace.org) for more information.
2: Also see [DTrace Introduction](http://dtrace.org/guide/preface.html), Brendan Gregg's [DTrace one liners](http://www.brendangregg.com/DTrace/dtrace_oneliners.txt) and his notes for [DTrace on FreeBSD](https://wiki.freebsd.org/DTrace/).
1.2 schmonz 3:
1.5 wiki 4: # Current status
1.2 schmonz 5:
1.5 wiki 6: ## Supported platforms
7:
8: DTrace is a work-in-progress effort and it is for x86 systems and some arm boards.
9:
10: * i386 and amd64
1.18 sevan 11: * earm* (evbarm and armv4 based ports)
1.5 wiki 12:
13: ## Supported providers
14:
1.25 sevan 15: * DTrace: What to do when a script BEGINs, ENDs, ERRORs
1.5 wiki 16: * FBT: Function Boundary Tracing
1.25 sevan 17: * IO: Disk I/O
1.14 sevan 18: * Lockstat: Kernel Lock Statistics
1.25 sevan 19: * Proc: Process and thread related events
1.14 sevan 20: * Profile: Time based interrupt event source for Profiling
1.25 sevan 21: * SDT: Statically Defined Tracing
1.14 sevan 22: * Syscall: System Calls
23: * Syscall Linux (32bit & 64 bit): System calls via the Linux binary emulation layer
1.25 sevan 24: * VFS: Filesystem operations (confined to namecache events at time of writing - 8.99.22)
1.2 schmonz 25:
1.6 riastrad 26: ## TODO for netbsd-7
27:
28: * Measure effect of `options KDTRACE_HOOKS` on system performance.
29: * Determine whether the profile module works and list it here.
1.7 riastrad 30: * Integrate [[riz|users/riz]]'s syscall provider patch.
1.6 riastrad 31:
1.5 wiki 32: # How to use
33:
1.2 schmonz 34: ## Building DTrace
35:
36: You need the following options in your kernel:
37:
1.10 wiz 38: options KDTRACE_HOOKS # kernel DTrace hooks
1.2 schmonz 39: options MODULAR
40:
1.14 sevan 41: Optionally:
1.16 sevan 42:
1.14 sevan 43: options INSECURE # permit modules to loaded from user space once system has gone multiuser and securelevel has been raised.
1.2 schmonz 44:
1.14 sevan 45: A Distribution needs to be built with the options `MKDTRACE=yes` and `MKCTF=yes`, this is taken care of automatically and doesn't need to be specified manually. The list of platforms it is applied to automatically is set in `src/share/mk/bsd.own.mk`
1.2 schmonz 46:
1.14 sevan 47: Set the system to load the solaris and dtrace related modules in `/etc/modules.conf`, for a list of available modules, see `/stand/$MACHINE/$VERSION/modules/`
1.17 sevan 48:
49: For example, add the following to `/etc/modules.conf` (the file may not exist already on a system):
1.2 schmonz 50:
1.22 leot 51: - `solaris`
52: - `dtrace`
53: - `dtrace_fbt`
54: - `dtrace_lockstat`
55: - `dtrace_profile`
1.26 sevan 56: - `dtrace_sdt`
1.22 leot 57: - `dtrace_syscall`
1.26 sevan 58: - `dtrace_syscall_linux`
1.2 schmonz 59:
1.14 sevan 60: A `dtrace` device node is created automatically in `/dev/dtrace` when the modules are loaded into place.
1.2 schmonz 61:
62: List the dtrace probes
63:
64: dtrace -l
65:
66: ID PROVIDER MODULE FUNCTION NAME
67: 1 dtrace BEGIN
68: 2 dtrace END
69: 3 dtrace ERROR
70: 4 fbt netbsd AcpiAcquireGlobalLock entry
71: 5 fbt netbsd AcpiAcquireGlobalLock return
72: 6 fbt netbsd AcpiAllocateRootTable entry
73: 7 fbt netbsd AcpiAttachData entry
74: .
75: .
76: 29129 fbt solaris zfs_vop_getattr entry
77: 29130 fbt solaris zfs_vop_getattr return
78: 29131 proc create
79: 29132 proc exec
80: .
81: .
82: 29140 proc lwp_start
83: 29141 proc lwp_exit
84:
85:
1.24 gson 86: ## Running hello world
1.2 schmonz 87:
1.9 wiz 88: Put the following into the file hello.d:
1.2 schmonz 89:
90: BEGIN
91: {
92: trace("Hello world");
93: exit(0);
94: }
95:
96:
97: Run the hello world script:
98:
99: dtrace -s hello.d
100:
101: dtrace: script './hello.d' matched 1 probe
102: CPU ID FUNCTION:NAME
103: 0 1 :BEGIN Hello world
1.27 sevan 104:
105: The same script could be executed as a one liner on the shell, using
106:
107: dtrace -n 'BEGIN { trace("Hello world"); exit(0); }'
1.2 schmonz 108:
1.23 gson 109: ## A more complex example
110:
111: The following script traces the execution of a sleep operation
1.9 wiz 112: in the kernel. Put it in sleep.d:
1.2 schmonz 113:
114: #pragma D option flowindent
1.23 gson 115:
116: syscall::nanosleep:entry
1.2 schmonz 117: /execname == "sleep" && guard++ == 0/
118: {
119: self->traceme = 1;
120: }
1.23 gson 121:
122: fbt:::
123: /self->traceme/
124: {}
125:
126: syscall::nanosleep:return
1.2 schmonz 127: /self->traceme/
128: {
129: self->traceme = 0;
130: exit(0);
131: }
132:
1.23 gson 133: Start the script running:
134:
135: dtrace -s sleep.d
136:
137: This will take a while as the script instruments every function in the
138: kernel. When it's ready, it will print a message like "dtrace: script
139: 'sleep.d' matched 59268 probes". Then execute a "sleep 2" in another
140: shell.
1.19 sevan 141:
1.24 gson 142: ## Tools included in base
1.19 sevan 143:
144: Starting with NetBSD-8, on builds where `MKDTRACE=yes` is set, scripts from
145: [Brendan Gregg's DTrace toolkit](https://github.com/opendtrace/toolkit/) are installed in base as standard.
146:
1.21 sevan 147: At present, the following scripts are installed in `/usr/sbin`:
1.19 sevan 148:
1.22 leot 149: - `dtruss` - An implementation of the truss utility in DTrace which traces the system calls
150: made by a process
151: - `execsnoop` - snoop on execution of processes as they occur
152: - `opensnoop` - snoop on openning of files as they occur
153: - `procsystime` - print process system call time details.
1.28 sevan 154:
155: ## Troubleshooting
156:
157: The Compact C Type Format (CTF) has a 2^15 limit on types which can overflow, this prevents DTrace from
158: working correctly.
159:
160: Check the number of types using `ctfdump` e.g
1.29 ! sevan 161:
1.28 sevan 162: ctfdump -S /netbsd
163:
164: Note the line which states `total number of types`, the value should by less than 32768.
165:
166: If overflow is not an issue, `libdtrace(3)` can provide some insight into what is going on via an
167: environment variable. Define `DTRACE_DEBUG` before tracing.
168:
169: env DTRACE_DEBUG= execsnoop
170:
CVSweb for NetBSD wikisrc <wikimaster@NetBSD.org> software: FreeBSD-CVSweb