icon Top 9 categories map      RocketAware >

fstat(1)

Tips: Browse or Search all pages for efficient awareness of more than 6000 of the most popular reusable and open source applications, functions, libraries, and FAQs.


The "RKT couplings" below include links to source code, updates, additional information, advice, FAQs, and overviews.


Home

Search all pages


Subjects

By activity
Professions, Sciences, Humanities, Business, ...

User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...

Text Strings
Conversions, tests, processing, manipulation,...

Math
Integer, Floating point, Matrix, Statistics, Boolean, ...

Processing
Algorithms, Memory, Process control, Debugging, ...

Stored Data
Data storage, Integrity, Encryption, Compression, ...

Communications
Networks, protocols, Interprocess, Remote, Client Server, ...

Hard World
Timing, Calendar and Clock, Audio, Video, Printer, Controls...

File System
Management, Filtering, File & Directory access, Viewers, ...

    

RocketLink!--> Man page versions: OpenBSD FreeBSD NetBSD Others



FSTAT(1)                   OpenBSD Reference Manual                   FSTAT(1)

NAME
     fstat - file status



SYNOPSIS
     fstat [-fnv] [-M core] [-N system] [-p pid] [-u user] [filename...]

DESCRIPTION
     fstat identifies open files.  A file is considered open by a process if
     it was explicitly opened, is the working directory, root directory, ac-
     tive pure text, or kernel trace file for that process.  If no options are
     specified, fstat reports on all open files in the system.

     The options are as follows:

     -f      Restrict examination to files open in the same filesystems as the
             named file arguments, or to the filesystem containing the current
             directory if there are no additional filename arguments.  For ex-
             ample, to find all files open in the filesystem where the direc-
             tory /usr/src resides, type ``fstat -f /usr/src''.

     -M core
             Extract values associated with the name list from the specified
             core instead of the default /dev/kmem.

     -N system
             Extract the name list from the specified system instead of the
             default /bsd.

     -n      Numerical format.  Print the device number (maj,min) of the
             filesystem the file resides in rather than the mount point name;
             for special files, print the device number that the special de-
             vice refers to rather than the filename in /dev; and print the
             mode of the file in octal instead of symbolic form.

     -p -pid
             Report all files open by the specified process.

     -u -user
             Report all files open by the specified user.

     -v      Verbose mode.  Print error messages upon failures to locate par-
             ticular system data structures rather than silently ignoring
             them.  Most of these data structures are dynamically created or
             deleted and it is possible for them to disappear while fstat is
             running.  This is normal and  unavoidable since the rest of the
             system is running while fstat itself is running.

     filename ...
             Restrict reports to the specified files.

     The following fields are printed:

     USER   The username of the owner of the process (effective UID).

     CMD    The command name of the process.

     PID    The process ID.

     FD     The file number in the per-process open file table or one of the
            following special names:

                  text    - pure text inode
                  wd      - current working directory
                  root    - root inode
                  tr      - kernel trace file

            If the file number is followed by an asterisk (``*''), the file is
            not an inode, but rather a socket, FIFO, or there is an error.  In
            this case the remainder of the line doesn't correspond to the re-
            maining headers -- the format of the line is described later under
            Sockets.

     MOUNT  If the -n flag wasn't specified, this header is present and is the
            pathname that the filesystem the file resides in is mounted on.

     DEV    If the -n flag is specified, this header is present and is the ma-
            jor/minor number of the device that this file resides in.

     INUM   The inode number of the file.

     MODE   The mode of the file.  If the -n flag isn't specified, the mode is
            printed using a symbolic format (see strmode(3));  otherwise, the
            mode is printed as an octal number.

     SZ|DV  If the file is not a character or block special file, prints the
            size of the file in bytes.  Otherwise, if the -n flag is not spec-
            ified, prints the name of the special file as located in /dev. If
            that cannot be located, or the -n flag is specified, prints the
            major/minor device number that the special device refers to.

     R/W    This column describes the access mode that the file allows.  The
            letter ``r'' indicates open for reading; the letter ``w'' indi-
            cates open for writing.  This field is useful when trying to find
            the processes that are preventing a filesystem from being down-
            graded to read-only.

     NAME   If filename arguments are specified and the -f flag is not, then
            this field is present and is the name associated with the given
            file.  Normally the name cannot be determined since there is no
            mapping from an open file back to the directory entry that was
            used to open that file.  Also, since different directory entries
            may reference the same file (via ln(2)),  the name printed may not
            be the actual name that the process originally used to open that
            file.

SOCKETS
     The formatting of open sockets depends on the protocol domain.  In all
     cases the first field is the domain name, the second field is the socket
     type (stream, dgram, etc), and the third is the socket flags field (in
     hex).  The remaining fields are protocol dependent.  For TCP, it is the
     address of the tcpcb, and for UDP, the inpcb (socket pcb).  For Unix do-
     main sockets, it's the address of the socket pcb and the address of the
     connected pcb (if connected).  Otherwise the protocol number and address
     of the socket itself are printed.  The attempt is to make enough informa-
     tion available to permit further analysis without duplicating netstat(1).


     For example, the addresses mentioned above are the addresses which the
     ``netstat -A'' command would print for TCP, UDP, and Unix domain.  Note
     that since pipes are implemented using sockets, a pipe appears as a con-
     nected Unix domain stream socket.  A unidirectional Unix domain socket
     indicates the direction of flow with an arrow (``<-'' or ``->''), and a
     full duplex socket shows a double arrow (``<->'').

     For AF_INET sockets, fstat also attempts to print the internet address
     and port for the local end of a connection.  If the socket is connected,
     it also prints the remote internet address and port.  A ``*'' is used to
     indicate an INADDR_ANY binding.  In this case, the use of the arrow
     (``<--'' or ``-->'') indicates the direction the socket connection was
     created.

PIPES
     Every pipe is printed as an address which is the same for both sides of
     the pipe and a state that is built of the letters 'RWE'.  W - The pipe
     blocks waiting for the reader to read data.  R - The pipe blocks waiting
     for the writer to write data.  E - The pipe is in EOF state.

BUGS
     Since fstat takes a snapshot of the system, it is only correct for a very
     short period of time.

     Moreover, because DNS resolution and YP lookups cause many file descrip-
     tor changes, fstat does not attempt to translate the internet address and
     port numbers into symbolic names.

SEE ALSO
     netstat(1),  nfsstat(1),  ps(1),  systat(1),  iostat(8),  pstat(8),  vm-
     stat(8)

HISTORY
     The fstat command appeared in 4.3BSD-Tahoe.

OpenBSD 2.6                    February 25, 1994                             3

Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY
SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts
Institute of Technology, Free Software Foundation, FreeBSD Inc., and others.



(Corrections, notes, and links courtesy of RocketAware.com)


[Detailed Topics]
FreeBSD Sources for fstat(1)
OpenBSD sources for fstat(1)


[Overview Topics]

Up to: File Information - Obtaining file information (status, configuration, et al)


RocketLink!--> Man page versions: OpenBSD FreeBSD NetBSD Others






Rapid-Links: Search | About | Comments | Submit Path: RocketAware > fstat.1/
RocketAware.com is a service of Mib Software
Copyright 1999, Forrest J. Cavalier III. All Rights Reserved.
We welcome submissions and comments