1 .\" Copyright (c) 1990, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)ktrace.1 8.1 (Berkeley) 6/6/93
39 .Nd enable kernel process tracing
54 enables kernel trace logging for the specified processes.
55 Kernel trace data is logged to the file
57 The kernel operations that are traced include system calls, namei
58 translations, signal processing, and
61 Once tracing is enabled on a process, trace data will be logged until
62 either the process exits or the trace point is cleared.
63 A traced process can generate enormous amounts of log data quickly;
64 It is strongly suggested that users memorize how to disable tracing before
65 attempting to trace a process.
66 The following command is sufficient to disable tracing on all user owned
67 processes, and, if executed by root, all processes:
71 The trace file is not human readable; use
75 The options are as follows:
76 .Bl -tag -width indent
78 Append to the trace file instead of truncating it.
80 Disable tracing on all user owned processes, and, if executed by root, all
81 processes in the system.
83 Clear the trace points associated with the specified file or processes.
85 Descendants; perform the operation for all current children of the
93 Enable (disable) tracing on all processes in the process group (only one
97 Inherit; pass the trace flags to all future children of the designated
100 Enable (disable) tracing on the indicated process id (only one
104 The string argument represents the kernel trace points, one per letter.
105 The following table equates the letters with the tracepoints:
107 .Bl -tag -width flag -compact
111 trace namei translations
116 trace signal processing
121 with the specified trace flags.
129 options are mutually exclusive.
131 # trace all kernel operations of process id 34
134 # trace all kernel operations of processes in process group 15 and
135 # pass the trace flags to all current and future children
138 # disable all tracing of process 65
141 # disable tracing signals on process 70 and all current children
142 .Dl $ ktrace -t s -cdp 70
147 .Dl $ ktrace -ti -p 67
149 # run the command "w", tracing only system calls
152 # disable all tracing to the file "tracedata"
153 .Dl $ ktrace -c -f tracedata
155 # disable tracing of all processes owned by the user