xref: /minix/lib/libc/sys/ktrace.2 (revision 0a6a1f1d)
1.\"	$NetBSD: ktrace.2,v 1.18 2014/11/11 08:10:02 njoly Exp $
2.\"
3.\" Copyright (c) 1993
4.\"	The Regents of the University of California.  All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\" 3. Neither the name of the University nor the names of its contributors
15.\"    may be used to endorse or promote products derived from this software
16.\"    without specific prior written permission.
17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE.
29.\"
30.\"     @(#)ktrace.2	8.1 (Berkeley) 6/4/93
31.\"
32.Dd June 4, 1993
33.Dt KTRACE 2
34.Os
35.Sh NAME
36.Nm ktrace
37.Nd process tracing
38.Sh LIBRARY
39.Lb libc
40.Sh SYNOPSIS
41.In sys/types.h
42.In sys/uio.h
43.In sys/ktrace.h
44.Ft int
45.Fn ktrace "const char *tracefile" "int ops" "int trpoints" "pid_t pid"
46.Ft int
47.Fn fktrace "int fd" "int ops" "int trpoints" "pid_t pid"
48.Sh DESCRIPTION
49The
50.Fn ktrace
51function enables or disables tracing of one or more processes.
52Users may only trace their own processes.
53Only the super-user can trace setuid or setgid programs.
54.Pp
55The
56.Ar tracefile
57gives the pathname of the file to be used for tracing.
58The file must exist and be writable by the calling process.
59All trace records are always appended to the file,
60so the file must be truncated to zero length to discard
61previous trace data.
62If tracing points are being disabled (see KTROP_CLEAR below),
63.Ar tracefile
64may be NULL.
65If using
66.Fn fktrace
67then instead of passing a filename as
68.Ar tracefile ,
69a file descriptor is passed as
70.Ar fd
71and behaviour is otherwise the same.
72.Pp
73The
74.Nm ops
75parameter specifies the requested ktrace operation.
76The defined operations are:
77.Bl -column KTRFLAG_DESCENDXXX -offset indent
78.It KTROP_SET	Enable trace points specified in Ar trpoints .
79.It KTROP_CLEAR	Disable trace points specified in Ar trpoints .
80.It KTROP_CLEARFILE	Stop all tracing.
81.It KTRFLAG_DESCEND	The tracing change should apply to the
82specified process and all its current children.
83.El
84.Pp
85The
86.Nm trpoints
87parameter specifies the trace points of interest.
88The defined trace points are:
89.Bl -column KTRFAC_SYSCALLXXX -offset indent
90.It KTRFAC_SYSCALL	Trace system calls.
91.It KTRFAC_SYSRET	Trace return values from system calls.
92.It KTRFAC_NAMEI	Trace name lookup operations.
93.It KTRFAC_GENIO	Trace all I/O (note that this option can
94generate much output).
95.It KTRFAC_PSIG	Trace posted signals.
96.It KTRFAC_CSW	Trace context switch points.
97.It KTRFAC_EMUL	Trace emulation changes.
98.It KTRFAC_INHERIT	Inherit tracing to future children.
99.El
100.Pp
101Each tracing event outputs a record composed of a generic header
102followed by a trace point specific structure.
103The generic header is:
104.Bd -literal
105struct ktr_header {
106	int	ktr_len;		/* length of buf */
107	short	ktr_type;		/* trace record type */
108	pid_t	ktr_pid;		/* process id */
109	char	ktr_comm[MAXCOMLEN+1];	/* command name */
110	struct	timeval ktr_time;	/* timestamp */
111	caddr_t	ktr_buf;
112};
113.Ed
114.Pp
115The
116.Nm ktr_len
117field specifies the length of the
118.Nm ktr_type
119data that follows this header.
120The
121.Nm ktr_pid
122and
123.Nm ktr_comm
124fields specify the process and command generating the record.
125The
126.Nm ktr_time
127field gives the time (with microsecond resolution)
128that the record was generated.
129The
130.Nm ktr_buf
131is an internal kernel pointer and is not useful.
132.Pp
133The generic header is followed by
134.Nm ktr_len
135bytes of a
136.Nm ktr_type
137record.
138The type specific records are defined in the
139.Pa \*[Lt]sys/ktrace.h\*[Gt]
140include file.
141.Sh RETURN VALUES
142On successful completion a value of 0 is returned.
143Otherwise, a value of \-1 is returned and
144.Va errno
145is set to show the error.
146.Sh ERRORS
147.Fn ktrace
148will fail if:
149.Bl -tag -width ENAMETOOLONGAA
150.It Bq Er ENOTDIR
151A component of the path prefix is not a directory.
152.It Bq Er EINVAL
153The pathname contains a character with the high-order bit set.
154.It Bq Er ENAMETOOLONG
155A component of a pathname exceeded
156.Brq Dv NAME_MAX
157characters,
158or an entire path name exceeded
159.Brq Dv PATH_MAX
160characters.
161.It Bq Er ENOENT
162The named tracefile does not exist.
163.It Bq Er EACCES
164Search permission is denied for a component of the path prefix.
165.It Bq Er ELOOP
166Too many symbolic links were encountered in translating the pathname.
167.It Bq Er EIO
168An I/O error occurred while reading from or writing to the file system.
169.El
170.Sh SEE ALSO
171.Xr kdump 1 ,
172.Xr ktrace 1
173.Sh HISTORY
174A
175.Nm ktrace
176function call first appeared in
177.Bx 4.4 .
178