2007-12-02 23:31:45 +00:00
|
|
|
.\"-
|
2011-08-14 00:42:09 +00:00
|
|
|
.\" Copyright (c) 2007-2009 Robert N. M. Watson
|
2007-12-02 23:31:45 +00:00
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" $FreeBSD$
|
|
|
|
.\"
|
2012-03-23 20:09:21 +00:00
|
|
|
.Dd March 23, 2012
|
2007-12-02 23:31:45 +00:00
|
|
|
.Dt PROCSTAT 1
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm procstat
|
|
|
|
.Nd get detailed process information
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
|
|
|
.Op Fl h
|
2010-03-08 20:44:22 +00:00
|
|
|
.Op Fl n
|
2011-08-14 00:42:09 +00:00
|
|
|
.Op Fl C
|
2007-12-02 23:31:45 +00:00
|
|
|
.Op Fl w Ar interval
|
2011-11-28 19:45:47 +00:00
|
|
|
.Op Fl b | c | e | f | i | j | k | l | s | t | v | x
|
2007-12-02 23:31:45 +00:00
|
|
|
.Op Fl a | Ar pid ...
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility displays detailed information about the processes identified by the
|
|
|
|
.Ar pid
|
|
|
|
arguments, or if the
|
|
|
|
.Fl a
|
|
|
|
flag is used, all processes.
|
|
|
|
.Pp
|
|
|
|
By default, basic process statistics are printed; one of the following
|
|
|
|
options may be specified in order to select more detailed process information
|
|
|
|
for printing:
|
|
|
|
.Bl -tag -width indent
|
|
|
|
.It Fl b
|
|
|
|
Display binary information for the process.
|
|
|
|
.It Fl c
|
|
|
|
Display command line arguments for the process.
|
2011-11-22 20:59:52 +00:00
|
|
|
.It Fl e
|
|
|
|
Display environment variables for the process.
|
2007-12-02 23:31:45 +00:00
|
|
|
.It Fl f
|
|
|
|
Display file descriptor information for the process.
|
2010-03-08 20:44:22 +00:00
|
|
|
.It Fl i
|
|
|
|
Display signal pending and disposition information for the process.
|
|
|
|
.It Fl j
|
|
|
|
Display signal pending and blocked information for the process threads.
|
2007-12-02 23:31:45 +00:00
|
|
|
.It Fl k
|
|
|
|
Display the stacks of kernel threads in the process, excluding stacks of
|
|
|
|
threads currently running on a CPU and threads with stacks swapped to disk.
|
|
|
|
If the flag is repeated, function offsets as well as function names are
|
|
|
|
printed.
|
2011-11-24 20:54:06 +00:00
|
|
|
.It Fl l
|
|
|
|
Display resource limits for the process.
|
2007-12-02 23:31:45 +00:00
|
|
|
.It Fl s
|
|
|
|
Display security credential information for the process.
|
|
|
|
.It Fl t
|
|
|
|
Display thread information for the process.
|
|
|
|
.It Fl v
|
|
|
|
Display virtual memory mappings for the process.
|
2011-11-22 20:59:52 +00:00
|
|
|
.It Fl x
|
|
|
|
Display ELF auxiliary vector for the process.
|
2007-12-02 23:31:45 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
All options generate output in the format of a table, the first field of
|
|
|
|
which is the process ID to which the row of information corresponds.
|
|
|
|
The
|
|
|
|
.Fl h
|
|
|
|
flag may be used to suppress table headers.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fl w
|
|
|
|
flag may be used to specify a wait interval at which to repeat the printing
|
|
|
|
of the requested process information.
|
|
|
|
If the
|
|
|
|
.Fl w
|
|
|
|
flag is not specified, the output will not repeat.
|
|
|
|
.Pp
|
2011-08-14 00:42:09 +00:00
|
|
|
The
|
|
|
|
.Fl C
|
|
|
|
flag requests the printing of additional capability information in the file
|
|
|
|
descriptor view.
|
|
|
|
.Pp
|
2007-12-02 23:31:45 +00:00
|
|
|
Some information, such as VM and file descriptor information, is available
|
|
|
|
only to the owner of a process or the superuser.
|
2008-04-19 13:40:42 +00:00
|
|
|
.Ss Binary Information
|
|
|
|
Display the process ID, command, and path to the process binary:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width indent -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It COMM
|
|
|
|
command
|
2012-03-23 20:09:21 +00:00
|
|
|
.It OSREL
|
|
|
|
osreldate for process binary
|
2008-04-19 13:40:42 +00:00
|
|
|
.It PATH
|
|
|
|
path to process binary (if available)
|
|
|
|
.El
|
|
|
|
.Ss Command Line Arguments
|
|
|
|
Display the process ID, command, and command line arguments:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width indent -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It COMM
|
|
|
|
command
|
|
|
|
.It ARGS
|
|
|
|
command line arguments (if available)
|
|
|
|
.El
|
|
|
|
.Ss File Descriptors
|
|
|
|
Display detailed information about each file descriptor referenced by a
|
|
|
|
process, including the process ID, command, file descriptor number, and
|
|
|
|
per-file descriptor object information, such as object type and file system
|
2011-08-14 00:42:09 +00:00
|
|
|
path.
|
|
|
|
By default, the following information will be printed:
|
2008-04-19 13:40:42 +00:00
|
|
|
.Pp
|
|
|
|
.Bl -tag -width indent -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It COMM
|
|
|
|
command
|
|
|
|
.It FD
|
|
|
|
file descriptor number or cwd/root/jail
|
|
|
|
.It T
|
|
|
|
file descriptor type
|
|
|
|
.It V
|
|
|
|
vnode type
|
|
|
|
.It FLAGS
|
|
|
|
file descriptor flags
|
|
|
|
.It REF
|
|
|
|
file descriptor reference count
|
|
|
|
.It OFFSET
|
|
|
|
file descriptor offset
|
|
|
|
.It PRO
|
|
|
|
network protocol
|
|
|
|
.It NAME
|
|
|
|
file path or socket addresses (if available)
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The following file descriptor types may be displayed:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width X -compact
|
|
|
|
.It c
|
|
|
|
crypto
|
2010-02-06 11:29:06 +00:00
|
|
|
.It e
|
|
|
|
POSIX semaphore
|
2008-04-19 13:40:42 +00:00
|
|
|
.It f
|
|
|
|
fifo
|
|
|
|
.It h
|
|
|
|
shared memory
|
|
|
|
.It k
|
|
|
|
kqueue
|
|
|
|
.It m
|
2008-07-28 08:01:24 +00:00
|
|
|
message queue
|
2008-04-19 13:40:42 +00:00
|
|
|
.It p
|
|
|
|
pipe
|
|
|
|
.It s
|
|
|
|
socket
|
Integrate the new MPSAFE TTY layer to the FreeBSD operating system.
The last half year I've been working on a replacement TTY layer for the
FreeBSD kernel. The new TTY layer was designed to improve the following:
- Improved driver model:
The old TTY layer has a driver model that is not abstract enough to
make it friendly to use. A good example is the output path, where the
device drivers directly access the output buffers. This means that an
in-kernel PPP implementation must always convert network buffers into
TTY buffers.
If a PPP implementation would be built on top of the new TTY layer
(still needs a hooks layer, though), it would allow the PPP
implementation to directly hand the data to the TTY driver.
- Improved hotplugging:
With the old TTY layer, it isn't entirely safe to destroy TTY's from
the system. This implementation has a two-step destructing design,
where the driver first abandons the TTY. After all threads have left
the TTY, the TTY layer calls a routine in the driver, which can be
used to free resources (unit numbers, etc).
The pts(4) driver also implements this feature, which means
posix_openpt() will now return PTY's that are created on the fly.
- Improved performance:
One of the major improvements is the per-TTY mutex, which is expected
to improve scalability when compared to the old Giant locking.
Another change is the unbuffered copying to userspace, which is both
used on TTY device nodes and PTY masters.
Upgrading should be quite straightforward. Unlike previous versions,
existing kernel configuration files do not need to be changed, except
when they reference device drivers that are listed in UPDATING.
Obtained from: //depot/projects/mpsafetty/...
Approved by: philip (ex-mentor)
Discussed: on the lists, at BSDCan, at the DevSummit
Sponsored by: Snow B.V., the Netherlands
dcons(4) fixed by: kan
2008-08-20 08:31:58 +00:00
|
|
|
.It t
|
|
|
|
pseudo-terminal master
|
2008-04-19 13:40:42 +00:00
|
|
|
.It v
|
|
|
|
vnode
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The following vnode types may be displayed:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width X -compact
|
|
|
|
.It -
|
|
|
|
not a vnode
|
|
|
|
.It b
|
|
|
|
block device
|
|
|
|
.It c
|
|
|
|
character device
|
2010-02-06 11:29:06 +00:00
|
|
|
.It d
|
|
|
|
directory
|
2008-04-19 13:40:42 +00:00
|
|
|
.It f
|
|
|
|
fifo
|
|
|
|
.It l
|
|
|
|
symbolic link
|
2010-02-06 11:29:06 +00:00
|
|
|
.It r
|
|
|
|
regular file
|
2008-04-19 13:40:42 +00:00
|
|
|
.It s
|
|
|
|
socket
|
|
|
|
.It x
|
|
|
|
revoked device
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The following file descriptor flags may be displayed:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width X -compact
|
|
|
|
.It r
|
|
|
|
read
|
|
|
|
.It w
|
|
|
|
write
|
|
|
|
.It a
|
|
|
|
append
|
|
|
|
.It s
|
|
|
|
async
|
|
|
|
.It f
|
|
|
|
fsync
|
|
|
|
.It n
|
|
|
|
non-blocking
|
|
|
|
.It d
|
|
|
|
direct I/O
|
|
|
|
.It l
|
|
|
|
lock held
|
2011-08-14 00:42:09 +00:00
|
|
|
.It c
|
|
|
|
descriptor is a capability
|
2008-04-19 13:40:42 +00:00
|
|
|
.El
|
2011-08-14 00:42:09 +00:00
|
|
|
.Pp
|
|
|
|
If the
|
|
|
|
.Fl C
|
|
|
|
flag is specified, the vnode type, reference count, and offset fields will be
|
|
|
|
omitted, and a new capabilities field will be included listing capabilities,
|
|
|
|
as described in
|
|
|
|
.Xr cap_new 2 ,
|
|
|
|
present for each capability descriptor.
|
2010-03-08 20:44:22 +00:00
|
|
|
.Ss Signal Disposition Information
|
|
|
|
Display signal pending and disposition for a process:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width ident -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It COMM
|
|
|
|
command
|
|
|
|
.It SIG
|
|
|
|
signal name
|
|
|
|
.It FLAGS
|
|
|
|
process signal disposition details, three symbols
|
|
|
|
.Bl -tag -width X -compact
|
|
|
|
.It P
|
|
|
|
if signal is pending in the global process queue, - otherwise
|
|
|
|
.It I
|
|
|
|
if signal delivery disposition is SIGIGN, - otherwise
|
|
|
|
.It C
|
|
|
|
if signal delivery is to catch it, - otherwise
|
|
|
|
.El
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fl n
|
|
|
|
switch is given, the signal numbers are shown instead of signal names.
|
|
|
|
.Ss Thread Signal Information
|
|
|
|
Display signal pending and blocked for a process threads:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width ident -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It COMM
|
|
|
|
command
|
|
|
|
.It TID
|
|
|
|
thread ID
|
|
|
|
.It SIG
|
|
|
|
signal name
|
|
|
|
.It FLAGS
|
|
|
|
thread signal delivery status, two symbols
|
|
|
|
.Bl -tag -width X -compact
|
|
|
|
.It P
|
|
|
|
if signal is pending for the thread, - otherwise
|
|
|
|
.It B
|
|
|
|
if signal is blocked in the thread signal mask, - if not blocked
|
|
|
|
.El
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fl n
|
|
|
|
switch has the same effect as for the
|
|
|
|
.Fl i
|
|
|
|
switch, the signals numbers are shown instead of signal names.
|
2008-04-19 13:40:42 +00:00
|
|
|
.Ss Kernel Thread Stacks
|
|
|
|
Display kernel thread stacks for a process, allowing further interpretation
|
|
|
|
of thread wait channels.
|
|
|
|
If the
|
|
|
|
.Fl k
|
2008-12-19 16:56:49 +00:00
|
|
|
flag is repeated, function offsets, not just function names, are printed.
|
2008-04-19 13:40:42 +00:00
|
|
|
.Pp
|
|
|
|
This feature requires
|
|
|
|
.Cd "options STACK"
|
|
|
|
or
|
|
|
|
.Cd "options DDB"
|
|
|
|
to be compiled into the kernel.
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width indent -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It TID
|
|
|
|
thread ID
|
|
|
|
.It COMM
|
|
|
|
command
|
|
|
|
.It TDNAME
|
|
|
|
thread name
|
|
|
|
.It KSTACK
|
|
|
|
kernel thread call stack
|
|
|
|
.El
|
|
|
|
.Ss Security Credentials
|
|
|
|
Display process credential information:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width indent -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It COMM
|
|
|
|
command
|
|
|
|
.It EUID
|
|
|
|
effective user ID
|
|
|
|
.It RUID
|
|
|
|
real user ID
|
|
|
|
.It SVUID
|
|
|
|
saved user ID
|
|
|
|
.It EGID
|
|
|
|
effective group ID
|
|
|
|
.It RGID
|
|
|
|
real group ID
|
|
|
|
.It SVGID
|
|
|
|
saved group ID
|
2012-02-29 15:06:40 +00:00
|
|
|
.It UMASK
|
|
|
|
file creation mode mask
|
2011-08-14 00:42:09 +00:00
|
|
|
.It FLAGS
|
|
|
|
credential flags
|
2008-04-19 13:40:42 +00:00
|
|
|
.It GROUPS
|
|
|
|
group set
|
|
|
|
.El
|
2011-08-14 00:42:09 +00:00
|
|
|
.Pp
|
|
|
|
The following credential flags may be displayed:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width X -compact
|
|
|
|
.It C
|
|
|
|
capability mode
|
|
|
|
.El
|
2008-04-19 13:40:42 +00:00
|
|
|
.Ss Thread Information
|
|
|
|
Display per-thread information, including process ID, per-thread ID, name,
|
|
|
|
CPU, and execution state:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width indent -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It TID
|
|
|
|
thread ID
|
|
|
|
.It COMM
|
|
|
|
command
|
|
|
|
.It TDNAME
|
|
|
|
thread name
|
|
|
|
.It CPU
|
|
|
|
current or most recent CPU run on
|
|
|
|
.It PRI
|
|
|
|
thread priority
|
|
|
|
.It STATE
|
|
|
|
thread state
|
|
|
|
.It WCHAN
|
|
|
|
thread wait channel
|
|
|
|
.El
|
|
|
|
.Ss Virtual Memory Mappings
|
|
|
|
Display process virtual memory mappings, including addresses, mapping
|
|
|
|
meta-data, and mapped object information:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width indent -compact
|
|
|
|
.It PID
|
|
|
|
process ID
|
|
|
|
.It START
|
|
|
|
starting address of mapping
|
|
|
|
.It END
|
|
|
|
ending address of mapping
|
|
|
|
.It PRT
|
|
|
|
protection flags
|
|
|
|
.It RES
|
|
|
|
resident pages
|
|
|
|
.It PRES
|
|
|
|
private resident pages
|
|
|
|
.It REF
|
|
|
|
reference count
|
|
|
|
.It SHD
|
|
|
|
shadow page count
|
|
|
|
.It FL
|
|
|
|
mapping flags
|
|
|
|
.It TP
|
|
|
|
VM object type
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The following protection flags may be displayed:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width X -compact
|
|
|
|
.It r
|
|
|
|
read
|
|
|
|
.It w
|
|
|
|
write
|
|
|
|
.It x
|
|
|
|
execute
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The following VM object types may be displayed:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width XX -compact
|
|
|
|
.It --
|
|
|
|
none
|
|
|
|
.It dd
|
|
|
|
dead
|
|
|
|
.It df
|
|
|
|
default
|
|
|
|
.It dv
|
|
|
|
device
|
|
|
|
.It ph
|
|
|
|
physical
|
|
|
|
.It sw
|
|
|
|
swap
|
|
|
|
.It vn
|
|
|
|
vnode
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The following mapping flags may be displayed:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width X -compact
|
|
|
|
.It C
|
|
|
|
copy-on-write
|
|
|
|
.It N
|
|
|
|
needs copy
|
2011-11-07 21:16:19 +00:00
|
|
|
.It S
|
|
|
|
one or more superpage mappings are used
|
2008-04-19 13:40:42 +00:00
|
|
|
.El
|
2007-12-02 23:31:45 +00:00
|
|
|
.Sh EXIT STATUS
|
|
|
|
.Ex -std
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr fstat 1 ,
|
|
|
|
.Xr ps 1 ,
|
|
|
|
.Xr sockstat 1 ,
|
2011-08-14 00:42:09 +00:00
|
|
|
.Xr cap_enter 2 ,
|
|
|
|
.Xr cap_new 2 ,
|
2008-04-21 17:09:53 +00:00
|
|
|
.Xr ddb 4 ,
|
2007-12-02 23:31:45 +00:00
|
|
|
.Xr stack 9
|
|
|
|
.Sh AUTHORS
|
|
|
|
.An Robert N M Watson
|
|
|
|
.Sh BUGS
|
|
|
|
Some field values may include spaces, which limits the extent to which the
|
|
|
|
output of
|
|
|
|
.Nm
|
|
|
|
may be mechanically parsed.
|
|
|
|
.Pp
|
|
|
|
The display of open file or memory mapping pathnames is implemented using the
|
|
|
|
kernel's name cache.
|
2009-08-12 10:41:37 +00:00
|
|
|
If a file system does not use the name cache, or the path to a file is not in
|
|
|
|
the cache, a path will not be displayed.
|
2008-04-19 12:39:15 +00:00
|
|
|
.Pp
|
|
|
|
.Nm
|
|
|
|
currently supports extracting data only from a live kernel, and not from
|
|
|
|
kernel crash dumps.
|