In
Unix
Unix (, ; trademarked as UNIX) is a family of multitasking, multi-user computer operating systems that derive from the original AT&T Unix, whose development started in 1969 at the Bell Labs research center by Ken Thompson, Dennis Ritchie, a ...
and
Unix-like
A Unix-like (sometimes referred to as UN*X, *nix or *NIX) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Uni ...
computer operating systems, a file descriptor (FD, less frequently fildes) is a process-unique identifier (
handle
A handle is a part of, or an attachment to, an object that allows it to be grasped and object manipulation, manipulated by hand. The design of each type of handle involves substantial ergonomics, ergonomic issues, even where these are dealt wi ...
) for a
file or other
input/output
In computing, input/output (I/O, i/o, or informally io or IO) is the communication between an information processing system, such as a computer, and the outside world, such as another computer system, peripherals, or a human operator. Inputs a ...
resource
''Resource'' refers to all the materials available in our environment which are Technology, technologically accessible, Economics, economically feasible and Culture, culturally Sustainability, sustainable and help us to satisfy our needs and want ...
, such as a
pipe or
network socket.
File descriptors typically have non-negative
integer
An integer is the number zero (0), a positive natural number (1, 2, 3, ...), or the negation of a positive natural number (−1, −2, −3, ...). The negations or additive inverses of the positive natural numbers are referred to as negative in ...
values, with negative values being reserved to indicate "no value" or error conditions.
File descriptors are a part of the
POSIX
The Portable Operating System Interface (POSIX; ) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. POSIX defines application programming interfaces (APIs), along with comm ...
API
An application programming interface (API) is a connection between computers or between computer programs. It is a type of software interface, offering a service to other pieces of software. A document or standard that describes how to build ...
. Each Unix
process
A process is a series or set of activities that interact to produce a result; it may occur once-only or be recurrent or periodic.
Things called a process include:
Business and management
* Business process, activities that produce a specific s ...
(except perhaps
daemons) should have three standard POSIX file descriptors, corresponding to the three
standard streams
In computer programming, standard streams are preconnected input and output communication channels between a computer program and its environment when it begins execution. The three input/output (I/O) connections are called standard input (stdin), ...
:
Overview

In the traditional implementation of Unix, file descriptors index into a per-process maintained by the kernel, that in turn indexes into a system-wide table of files opened by all processes, called the . This table records the ''mode'' with which the file (or other resource) has been opened: for reading, writing, appending, and possibly other modes. It also indexes into a third table called the
inode table that describes the actual underlying files.
To perform input or output, the process passes the file descriptor to the kernel through a
system call
In computing, a system call (syscall) is the programmatic way in which a computer program requests a service from the operating system on which it is executed. This may include hardware-related services (for example, accessing a hard disk drive ...
, and the kernel will access the file on behalf of the process. The process does not have direct access to the file or inode tables.
On
Linux
Linux ( ) is a family of open source Unix-like operating systems based on the Linux kernel, an kernel (operating system), operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically package manager, pac ...
, the set of file descriptors open in a process can be accessed under the path
/proc/PID/fd/
, where PID is the
process identifier
In computing, the process identifier (a.k.a. process ID or PID) is a number used by most operating system kernel (operating system), kernels—such as those of Unix, macOS and Windows—to uniquely identify an active Process (computing), process. ...
. File descriptor
/proc/PID/fd/0
is
stdin
,
/proc/PID/fd/1
is
stdout
, and
/proc/PID/fd/2
is
stderr
. As a shortcut to these, any running process can also access ''its own'' file descriptors through the folders
/proc/self/fd
and
/dev/fd
.
In
Unix-like
A Unix-like (sometimes referred to as UN*X, *nix or *NIX) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Uni ...
systems, file descriptors can refer to any
Unix file type named in a file system. As well as regular files, this includes
directories,
block and
character devices (also called "special files"),
Unix domain sockets, and
named pipes. File descriptors can also refer to other objects that do not normally exist in the file system, such as
anonymous pipes and
network sockets.
The FILE data structure in the
C standard I/O library usually includes a low level file descriptor for the object in question on Unix-like systems. The overall data structure provides additional abstraction and is instead known as a ''file
handle
A handle is a part of, or an attachment to, an object that allows it to be grasped and object manipulation, manipulated by hand. The design of each type of handle involves substantial ergonomics, ergonomic issues, even where these are dealt wi ...
.''
Operations on file descriptors
The following lists typical operations on file descriptors on modern
Unix-like
A Unix-like (sometimes referred to as UN*X, *nix or *NIX) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Uni ...
systems. Most of these functions are declared in the
header, but some are in the
header instead.
Creating file descriptors
*
*
*
*
*
*
* (Linux)
* (Linux)
* (Linux)
* (Linux)
* (Linux)
* (Linux)
* (Linux)
* (Linux)
* (with flag CLONE_PIDFD, Linux)
* (Linux)
* (Linux)
* (BSD)
* (kFreeBSD)
Deriving file descriptors
*
*
Operations on a single file descriptor
*
*,
*,
*,
*,
*, (also used for sending FDs to other processes over a Unix domain socket)
*,
*,
*
*
*
*
*
*
*
*
*, (Linux)
*, (Linux)
* (Linux)
* (Linux)
* (Linux)
* (Linux)
* (kFreeBSD)
* (with P_PIDFD ID type, Linux)
* (stdio function:converts file descriptor to FILE*)
* (stdio function: prints to file descriptor)
Operations on multiple file descriptors
*
,
*
,
*, , (Linux, takes a single epoll filedescriptor to wait on many other file descriptors)
*
(for Linux)
*
(for BSD-based systems).
*
*
, (for Linux)
* (for Linux)
Operations on the file descriptor table
The function is used to perform various operations on a file descriptor, depending on the command argument passed to it. There are commands to get and set attributes associated with a file descriptor, including and .
*
* (BSD and Solaris only; deletes all file descriptors greater than or equal to specified number)
* (for Linux)
* (duplicates an existing file descriptor guaranteeing to be the lowest number available file descriptor)
*, (Close fd1 if necessary, and make file descriptor fd1 point to the open file of fd2)
*
Operations that modify process state
* (sets the process's current working directory based on a directory file descriptor)
* (maps ranges of a file into the process's address space)
File locking
*
* and
*
Sockets
*
*
*
* (creates a new file descriptor for an incoming connection)
*
*
*
*
* (shuts down one or both halves of a full duplex connection)
Miscellaneous
*
(a large collection of miscellaneous operations on a single file descriptor, often associated with a device)
at
suffix operations
A series of new operations has been added to many modern Unix-like systems, as well as numerous C libraries, to be standardized in a future version of
POSIX
The Portable Operating System Interface (POSIX; ) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. POSIX defines application programming interfaces (APIs), along with comm ...
. The
at
suffix signifies that the function takes an additional first argument supplying a file descriptor from which
relative paths are resolved, the forms lacking the
at
suffix thus becoming equivalent to passing a file descriptor corresponding to the current
working directory
In computing, the working directory of a process is a directory of a hierarchical file system, if any, dynamically associated with the process. It is sometimes called the current working directory (CWD), e.g. the BSD getcwd function, or just c ...
. The purpose of these new operations is to defend against a certain class of
TOCTOU attacks.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
File descriptors as capabilities
Unix file descriptors behave in many ways as
capabilities. They can be passed between processes across
Unix domain sockets using the
sendmsg()
system call. Note, however, that what is actually passed is a reference to an "open file description" that has mutable state (the file offset, and the file status and access flags). This complicates the secure use of file descriptors as capabilities, since when programs share access to the same open file description, they can interfere with each other's use of it by changing its offset or whether it is blocking or non-blocking, for example.
In operating systems that are specifically designed as capability systems, there is very rarely any mutable state associated with a capability itself.
A Unix process' file descriptor table is an example of a
C-list.
See also
*
fuser (Unix)
*
lsof
*
File Control Block (FCB) - an alternative scheme in CP/M and early versions of DOS
References
{{Computer files
POSIX
Unix file system technology
de:Handle#Datei-Handle