Expand PMF_FN_* macros.
[netbsd-mini2440.git] / usr.bin / fstat / fstat.1
blob9efcacb9d1357b7f8e853799ca7c4edbf4638c6c
1 .\"     $NetBSD: fstat.1,v 1.24 2006/07/29 14:46:13 hubertf Exp $
2 .\"
3 .\" Copyright (c) 1987, 1991, 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 .\"     from: @(#)fstat.1       8.3 (Berkeley) 2/25/94
31 .\"     $NetBSD: fstat.1,v 1.24 2006/07/29 14:46:13 hubertf Exp $
32 .\"
33 .Dd January 4, 2009
34 .Dt FSTAT 1
35 .Os
36 .Sh NAME
37 .Nm fstat
38 .Nd display status of open files
39 .Sh SYNOPSIS
40 .Nm
41 .Op Fl fnv
42 .Op Fl M Ar core
43 .Op Fl N Ar system
44 .Op Fl p Ar pid
45 .Op Fl u Ar user
46 .Op Ar
47 .Sh DESCRIPTION
48 .Nm
49 identifies open files.
50 A file is considered open by a process if it was explicitly opened,
51 is the working directory, root directory, active pure text, or kernel
52 trace file for that process.
53 If no options are specified,
54 .Nm
55 reports on all open files in the system.
56 .Pp
57 Options:
58 .Bl -tag -width Ds
59 .It Fl f
60 Restrict examination to files open in the same filesystems as
61 the named file arguments, or to the filesystem containing the
62 current directory if there are no additional filename arguments.
63 For example, to find all files open in the filesystem where the
64 directory
65 .Pa /usr/src
66 resides, type
67 .Dq Li fstat -f /usr/src .
68 .It Fl M
69 Extract values associated with the name list from the specified core
70 instead of the default
71 .Pa /dev/kmem .
72 .It Fl N
73 Extract the name list from the specified system instead of the default
74 .Pa /netbsd .
75 .It Fl n
76 Numerical format.
77 Print the device number (maj,min) of the filesystem
78 the file resides in rather than the mount point name; for special
79 files, print the
80 device number that the special device refers to rather than the filename
82 .Pa /dev ;
83 and print the mode of the file in octal instead of symbolic form.
84 .It Fl p
85 Report all files open by the specified process.
86 .It Fl u
87 Report all files open by the specified user.
88 .It Fl v
89 Verbose mode.
90 Print error messages upon failures to locate particular
91 system data structures rather than silently ignoring them.
92 Most of
93 these data structures are dynamically created or deleted and it is
94 possible for them to disappear while
95 .Nm
96 is running.
97 This
98 is normal and  unavoidable since the rest of the system is running while
99 .Nm
100 itself is running.
101 .It Ar
102 Restrict reports to the specified files.
105 The following fields are printed:
106 .Bl -tag -width MOUNT
107 .It Li USER
108 The username of the owner of the process (effective UID).
109 .It Li CMD
110 The command name of the process.
111 .It Li PID
112 The process ID.
113 .It Li FD
114 The file number in the per-process open file table or one of the following
115 special names:
117 .Bl -tag -width MOUNT -offset indent -compact
118 .It Li text
119 pure text inode
120 .It Li wd
121 current working directory
122 .It Li root
123 root inode
124 .It Li tr
125 kernel trace file
128 If the file number is followed by an asterisk
129 .Pq Dq * ,
130 the file is not an inode, but rather a socket,
131 .Tn FIFO ,
132 or there is an error.
133 In this case the remainder of the line doesn't
134 correspond to the remaining headers -- the format of the line
135 is described later under
136 .Sx SOCKETS .
137 .It Li MOUNT
138 If the
139 .Fl n
140 flag wasn't specified, this header is present and is the
141 pathname that the filesystem the file resides in is mounted on.
142 .It Li DEV
143 If the
144 .Fl n
145 flag is specified, this header is present and is the
146 major/minor number of the device that this file resides in.
147 .It Li INUM
148 The inode number of the file.
149 .It Li MODE
150 The mode of the file.
151 If the
152 .Fl n
153 flag isn't specified, the mode is printed
154 using a symbolic format (see
155 .Xr strmode 3 ) ;
156 otherwise, the mode is printed
157 as an octal number.
158 .It Li SZ\&|DV
159 If the file is not a character or block special file, prints the size of
160 the file in bytes.
161 Otherwise, if the
162 .Fl n
163 flag is not specified, prints
164 the name of the special file as located in
165 .Pa /dev .
166 If that cannot be
167 located, or the
168 .Fl n
169 flag is specified, prints the major/minor device
170 number that the special device refers to.
171 .It Li R/W
172 This column describes the access mode that the file allows.
173 The letter
174 .Dq r
175 indicates open for reading;
176 the letter
177 .Dq w
178 indicates open for writing.
179 This field is useful when trying to find the processes that are
180 preventing a filesystem from being downgraded to read-only.
181 .It Li NAME
182 If filename arguments are specified and the
183 .Fl f
184 flag is not, then
185 this field is present and is the name associated with the given file.
186 Normally the name cannot be determined since there is no mapping
187 from an open file back to the directory entry that was used to open
188 that file.
189 Also, since different directory entries may reference
190 the same file (via
191 .Xr ln 1 ) ,
192 the name printed may not be the actual
193 name that the process originally used to open that file.
195 .Sh SOCKETS
196 The formatting of open sockets depends on the protocol domain.
197 In all cases the first field is the domain name and
198 the second field is the socket type (stream, dgram, etc.).
199 The remaining fields are protocol dependent.
200 For TCP, it is the address of the tcpcb, and for UDP, the inpcb (socket pcb).
203 domain sockets, its the address of the socket pcb and the address
204 of the connected pcb (if connected).
205 Otherwise the protocol number and address of the socket itself are printed.
206 The attempt is to make enough information available to
207 permit further analysis without duplicating
208 .Xr netstat 1 .
210 For example, the addresses mentioned above are the addresses which the
211 .Dq Li netstat -A
212 command would print for TCP, UDP, and
214 domain.
215 Note that since pipes are implemented using sockets, a pipe appears as a
216 connected
218 domain stream socket.
219 A unidirectional
221 domain socket indicates the direction of flow with an arrow
223 .Dq \*[Lt]-
225 .Dq -\*[Gt]
226 .Pc ,
227 and a full duplex socket shows a double arrow
228 .Pq Dq \*[Lt]-\*[Gt] .
230 For internet sockets
231 .Nm fstat
232 also attempts to print the internet address and port for the
233 local end of a connection.
234 If the socket is connected, it also prints the remote internet address
235 and port.
236 An asterisk
237 .Pq Dq *
238 is used to indicate an INADDR_ANY binding.
239 .Sh SEE ALSO
240 .Xr netstat 1 ,
241 .Xr nfsstat 1 ,
242 .Xr ps 1 ,
243 .Xr sockstat 1 ,
244 .Xr systat 1 ,
245 .Xr vmstat 1 ,
246 .Xr iostat 8 ,
247 .Xr pstat 8
248 .Sh HISTORY
251 command appeared in
252 .Bx 4.3 tahoe .
253 .Sh BUGS
254 Since
256 takes a snapshot of the system, it is only correct for a very short period
257 of time.
259 Moreover, because DNS resolution and YP lookups cause many file
260 descriptor changes,
262 does not attempt to translate the internet address and port numbers into
263 symbolic names.