Manual Pages for UNIX Darwin command on man ktrace
MyWebUniversity

Manual Pages for UNIX Darwin command on man ktrace

KTRACE(1) BSD General Commands Manual KTRACE(1)

NAME

kkttrraaccee - enable kernel process tracing

SYNOPSIS

kkttrraaccee [-aaCCccddii] [-ff trfile] [-gg pgrp | -pp pid] [-tt trstr]

kkttrraaccee [-aaddii] [-ff trfile] [-tt trstr] command

DESCRIPTION

The kkttrraaccee command enables kernel trace logging for the specified pro-

cesses. Kernel trace data is logged to the file ktrace.out. The kernel

operations that are traced include system calls, namei translations, sig-

nal processing, and I/O. Once tracing is enabled on a process, trace data will be logged until either the process exits or the trace point is cleared. A traced process

can generate enormous amounts of log data quickly; It is strongly sug-

gested that users memorize how to disable tracing before attempting to trace a process. The following command is sufficient to disable tracing on all user owned processes, and, if executed by root, all processes:

$ ktrace -C

The trace file is not human readable; use kdump(1) to decode it. The options are as follows:

-aa Append to the trace file instead of recreating it.

-CC Disable tracing on all user owned processes, and, if executed by

root, all processes in the system.

-cc Clear the trace points associated with the specified file or pro-

cesses.

-dd Descendants; perform the operation for all current children of

the designated processes.

-ff file

Log trace records to file instead of ktrace.out.

-gg pgid

Enable (disable) tracing on all processes in the process group

(only one -gg flag is permitted).

-ii Inherit; pass the trace flags to all future children of the des-

ignated processes.

-pp pid Enable (disable) tracing on the indicated process id (only one -pp

flag is permitted).

-tt trstr

The string argument represents the kernel trace points, one per

letter. The following table equates the letters with the trace-

points: cc trace system calls nn trace namei translations ii trace I/O ss trace signal processing uu userland traces ww context switches command Execute command with the specified trace flags.

The -pp, -gg, and command options are mutually exclusive.

EEXXAAMMPPLLEESS

# trace all kernel operations of process id 34

$ ktrace -p 34

# trace all kernel operations of processes in process group 15 and # pass

the trace flags to all current and future children

$ ktrace -idg 15

# disable all tracing of process 65

$ ktrace -cp 65

# disable tracing signals on process 70 and all current children

$ ktrace -t s -cdp 70

# enable tracing of I/O on process 67

$ ktrace -ti -p 67

# run the command "w", tracing only system calls

$ ktrace -tc w

# disable all tracing to the file "tracedata"

$ ktrace -c -f tracedata

# disable tracing of all processes owned by the user

$ ktrace -C

SEE ALSO

kdump(1)

BUGS

Only works if file is a regular file. HISTORY The kkttrraaccee command appeared in 4.4BSD. BSD June 6, 1993 BSD




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™