socat(1) socat(1)
NAME
socat - Multipurpose relay (SOcket CAT)
SYNOPSIS
socat [options]
socat -V
socat -h[h[h]] | -?[?[?]]
filan
procan
DESCRIPTION
Socat is a command line based utility that establishes two bidirec‐
tional byte streams and transfers data between them. Because the
streams can be constructed from a large set of different types of data
sinks and sources (see address types), and because lots of address op‐
tions may be applied to the streams, socat can be used for many differ‐
ent purposes.
Filan is a utility that prints information about its active file de‐
scriptors to stdout. It has been written for debugging socat, but might
be useful for other purposes too. Use the -h option to find more infos.
Procan is a utility that prints information about process parameters to
stdout. It has been written to better understand some UNIX process
properties and for debugging socat, but might be useful for other pur‐
poses too.
The life cycle of a socat instance typically consists of four phases.
In the init phase, the command line options are parsed and logging is
initialized.
During the open phase, socat opens the first address and afterwards the
second address. These steps are usually blocking; thus, especially for
complex address types like socks, connection requests or authentication
dialogs must be completed before the next step is started.
In the transfer phase, socat watches both streams’ read and write file
descriptors via select() , and, when data is available on one side and
can be written to the other side, socat reads it, performs newline
character conversions if required, and writes the data to the write
file descriptor of the other stream, then continues waiting for more
data in both directions.
When one of the streams effectively reaches EOF, the closing phase be‐
gins. Socat transfers the EOF condition to the other stream, i.e. tries
to shutdown only its write stream, giving it a chance to terminate
gracefully. For a defined time socat continues to transfer data in the
other direction, but then closes all remaining channels and terminates.
OPTIONS
Socat provides some command line options that modify the behaviour of
the program. They have nothing to do with so called address options
that are used as parts of address specifications.
-V Print version and available feature information to stdout, and
exit.
-h | -?
Print a help text to stdout describing command line options and
available address types, and exit.
-hh | -??
Like -h, plus a list of the short names of all available address
options. Some options are platform dependend, so this output is
helpful for checking the particular implementation.
-hhh | -???
Like -hh, plus a list of all available address option names.
-d Without this option, only fatal and error messages are gener‐
ated; applying this option also prints warning messages. See DI‐
AGNOSTICS for more information.
-d -d Prints fatal, error, warning, and notice messages.
-d -d -d
Prints fatal, error, warning, notice, and info messages.
-d -d -d -d
Prints fatal, error, warning, notice, info, and debug messages.
-D Logs information about file descriptors before starting the
transfer phase.
-ly[]
Writes messages to syslog instead of stderr; severity as defined
with -d option. With optional , the syslog type can be
selected, default is "daemon". Third party libraries might not
obey this option.
-lf
Writes messages to [filename] instead of stderr. Some
third party libraries, in particular libwrap, might not obey
this option.
-ls Writes messages to stderr (this is the default). Some third
party libraries might not obey this option, in particular lib‐
wrap appears to only log to syslog.
-lp
Overrides the program name printed in error messages and used
for constructing environment variable names.
-lu Extends the timestamp of error messages to microsecond resolu‐
tion. Does not work when logging to syslog.
-lm[]
Mixed log mode. During startup messages are printed to stderr;
when socat starts the transfer phase loop or daemon mode (i.e.
after opening all streams and before starting data transfer, or,
with listening sockets with fork option, before the first accept
call), it switches logging to syslog. With optional ,
the syslog type can be selected, default is "daemon".
-lh Adds hostname to log messages. Uses the value from environment
variable HOSTNAME or the value retrieved with uname() if HOST‐
NAME is not set.
-v Writes the transferred data not only to their target streams,
but also to stderr. The output format is text with some conver‐
sions for readability, and prefixed with "> " or "< " indicating
flow directions.
-x Writes the transferred data not only to their target streams,
but also to stderr. The output format is hexadecimal, prefixed
with "> " or "< " indicating flow directions. Can be combined
with -v .
-r
Dumps the raw (binary) data flowing from left to right address
to the given file.
-R
Dumps the raw (binary) data flowing from right to left address
to the given file.
-b
Sets the data transfer block [size_t]. At most
bytes are transferred per step. Default is 8192 bytes.
-s By default, socat terminates when an error occurred to prevent
the process from running when some option could not be applied.
With this option, socat is sloppy with errors and tries to con‐
tinue. Even with this option, socat will exit on fatals, and
will abort connection attempts when security checks failed.
-t
When one channel has reached EOF, the write part of the other
channel is shut down. Then, socat waits [timeval] sec‐
onds before terminating. Default is 0.5 seconds. This timeout
only applies to addresses where write and read part can be
closed independently. When during the timeout interval the read
part gives EOF, socat terminates without awaiting the timeout.
-T
Total inactivity timeout: when socat is already in the transfer
loop and nothing has happened for [timeval] seconds
(no data arrived, no interrupt occurred...) then it terminates.
Useful with protocols like UDP that cannot transfer EOF.
-u Uses unidirectional mode. The first address is only used for
reading, and the second address is only used for writing (exam‐
ple).
-U Uses unidirectional mode in reverse direction. The first address
is only used for writing, and the second address is only used
for reading.
-g During address option parsing, don’t check if the option is con‐
sidered useful in the given address environment. Use it if you
want to force, e.g., appliance of a socket option to a serial
device.
-L
If lockfile exists, exits with error. If lockfile does not ex‐
ist, creates it and continues, unlinks lockfile on exit.
-W
If lockfile exists, waits until it disappears. When lockfile
does not exist, creates it and continues, unlinks lockfile on
exit.
-4 Use IP version 4 in case that the addresses do not implicitly or
explicitly specify a version; this is the default.
-6 Use IP version 6 in case that the addresses do not implicitly or
explicitly specify a version.
ADDRESS SPECIFICATIONS
With the address command line arguments, the user gives socat instruc‐
tions and the necessary information for establishing the byte streams.
An address specification usually consists of an address type keyword,
zero or more required address parameters separated by ’:’ from the key‐
word and from each other, and zero or more address options separated by
’,’.
The keyword specifies the address type (e.g., TCP4, OPEN, EXEC). For
some keywords there exist synonyms (’-’ for STDIO, TCP for TCP4). Key‐
words are case insensitive. For a few special address types, the key‐
word may be omitted: Address specifications starting with a number are
assumed to be FD (raw file descriptor) addresses; if a ’/’ is found be‐
fore the first ’:’ or ’,’, GOPEN (generic file open) is assumed.
The required number and type of address parameters depend on the ad‐
dress type. E.g., TCP4 requires a server specification (name or ad‐
dress), and a port specification (number or service name).
Zero or more address options may be given with each address. They in‐
fluence the address in some ways. Options consist of an option keyword
or an option keyword and a value, separated by ’=’. Option keywords are
case insensitive. For filtering the options that are useful with an
address type, each option is member of one option group. For each ad‐
dress type there is a set of option groups allowed. Only options be‐
longing to one of these address groups may be used (except with option
-g).
Address specifications following the above schema are also called sin‐
gle address specifications. Two single addresses can be combined with
"!!" to form a dual type address for one channel. Here, the first ad‐
dress is used by socat for reading data, and the second address for
writing data. There is no way to specify an option only once for being
applied to both single addresses.
Usually, addresses are opened in read/write mode. When an address is
part of a dual address specification, or when option -u or -U is used,
an address might be used only for reading or for writing. Considering
this is important with some address types.
With socat version 1.5.0 and higher, the lexical analysis tries to han‐
dle quotes and parenthesis meaningfully and allows escaping of special
characters. If one of the characters ( { [ ’ is found, the correspond‐
ing closing character - ) } ] ’ - is looked for; they may also be
nested. Within these constructs, socats special characters and strings
: , !! are not handled specially. All those characters and strings can
be escaped with \ or within ""
ADDRESS TYPES
This section describes the available address types with their keywords,
parameters, and semantics.
CREATE:
Opens with creat() and uses the file descriptor for
writing. This address type requires write-only context, because
a file opened with creat cannot be read from.
Flags like O_LARGEFILE cannot be applied. If you need them use
OPEN with options create,create.
must be a valid existing or not existing path. If
is a named pipe, creat() might block; if
refers to a socket, this is an error.
Option groups: FD,REG,NAMED
Useful options: mode, user, group, unlink-early, unlink-late,
append
See also: OPEN, GOPEN
EXEC:
Forks a sub process that establishes communication with its par‐
ent process and invokes the specified program with execvp() .
is a simple command with arguments separated by
single spaces. If the program name contains a ’/’, the part af‐
ter the last ’/’ is taken as ARGV[0]. If the program name is a
relative path, the execvp() semantics for finding the program
via $PATH apply. After successful program start, socat writes
data to stdin of the process and reads from its stdout using a
UNIX domain socket generated by socketpair() per default. (exam‐
ple)
Option groups: FD,SOCKET,EXEC,FORK,TERMIOS
Useful options: path, fdin, fdout, chroot, su, su-d, nofork,
pty, stderr, ctty, setsid, pipes, login, sigint, sigquit
See also: SYSTEM
FD:
Uses the file descriptor . It must already exist as valid
UN*X file descriptor.
Option groups: FD (TERMIOS,REG,SOCKET)
See also: STDIO, STDIN, STDOUT, STDERR
GOPEN:
(Generic open) This address type tries to handle any file system
entry except directories usefully. may be a relative
or absolute path. If it already exists, its type is checked. In
case of a UNIX domain socket, socat connects; if connecting
fails, socat assumes a datagram socket and uses sendto() calls.
If the entry is not a socket, socat opens it applying the O_AP‐
PEND flag. If it does not exist, it is opened with flag O_CREAT
as a regular file (example).
Option groups: FD,REG,SOCKET,NAMED,OPEN
See also: OPEN, CREATE, UNIX-CONNECT
IP-SENDTO::
Opens a raw IP socket. Depending on host specification or option
pf, IP protocol version 4 or 6 is used. It uses to
send packets to [IP address] and receives packets from
host, ignores packets from other hosts. Protocol 255 uses the
raw socket with the IP header being part of the data.
Option groups: FD,SOCKET,IP4,IP6
Useful options: pf, ttl
See also: IP4-SENDTO, IP6-SENDTO, IP-RECVFROM, IP-RECV,
UDP-SENDTO, UNIX-SENDTO
INTERFACE:
Communicates with a network connected on an interface using raw
packets including link level data. is the name of
the network interface. Currently only available on Linux. Op‐
tion groups: FD,SOCKET
Useful options: pf, type
See also: ip-recv
IP4-SENDTO::
Like IP-SENDTO, but always uses IPv4.
Option groups: FD,SOCKET,IP4
IP6-SENDTO::
Like IP-SENDTO, but always uses IPv6.
Option groups: FD,SOCKET,IP6
IP-DATAGRAM::
Sends outgoing data to the specified address which may in par‐
ticular be a broadcast or multicast address. Packets arriving on
the local socket are checked if their source addresses match
RANGE or TCPWRAP options. This address type can for example be
used for implementing symmetric or asymmetric broadcast or mul‐
ticast communications.
Option groups: FD, SOCKET, IP4, IP6, RANGE
Useful options: bind, range, tcpwrap, broadcast, ip-multi‐
cast-loop, ip-multicast-ttl, ip-multicast-if, ip-add-membership,
ip-add-source-membership, ttl, tos, pf
See also: IP4-DATAGRAM, IP6-DATAGRAM, IP-SENDTO, IP-RECVFROM,
IP-RECV, UDP-DATAGRAM
IP4-DATAGRAM::
Like IP-DATAGRAM, but always uses IPv4. (example)
Option groups: FD,SOCKET,IP4,RANGE
IP6-DATAGRAM::
Like IP-DATAGRAM, but always uses IPv6. Please note that IPv6
does not know broadcasts.
Option groups: FD,SOCKET,IP6,RANGE
IP-RECVFROM:
Opens a raw IP socket of . Depending on option pf, IP
protocol version 4 or 6 is used. It receives one packet from an
unspecified peer and may send one or more answer packets to that
peer. This mode is particularly useful with fork option where
each arriving packet - from arbitrary peers - is handled by its
own sub process. This allows a behaviour similar to typical UDP
based servers like ntpd or named.
Please note that the reply packets might be fetched as incoming
traffic when sender and receiver IP address are identical be‐
cause there is no port number to distinguish the sockets.
This address works well with IP-SENDTO address peers (see
above). Protocol 255 uses the raw socket with the IP header be‐
ing part of the data.
See the note about RECVFROM addresses.
Option groups: FD,SOCKET,IP4,IP6,CHILD,RANGE
Useful options: pf, fork, range, ttl, broadcast
See also: IP4-RECVFROM, IP6-RECVFROM, IP-SENDTO, IP-RECV,
UDP-RECVFROM, UNIX-RECVFROM
IP4-RECVFROM:
Like IP-RECVFROM, but always uses IPv4.
Option groups: FD,SOCKET,IP4,CHILD,RANGE
IP6-RECVFROM:
Like IP-RECVFROM, but always uses IPv6.
Option groups: FD,SOCKET,IP6,CHILD,RANGE
IP-RECV:
Opens a raw IP socket of . Depending on option pf, IP
protocol version 4 or 6 is used. It receives packets from multi‐
ple unspecified peers and merges the data. No replies are pos‐
sible. It can be, e.g., addressed by socat IP-SENDTO address
peers. Protocol 255 uses the raw socket with the IP header be‐
ing part of the data.
Option groups: FD,SOCKET,IP4,IP6,RANGE
Useful options: pf, range
See also: IP4-RECV, IP6-RECV, IP-SENDTO, IP-RECVFROM, UDP-RECV,
UNIX-RECV
IP4-RECV:
Like IP-RECV, but always uses IPv4.
Option groups: FD,SOCKET,IP4,RANGE
IP6-RECV:
Like IP-RECV, but always uses IPv6.
Option groups: FD,SOCKET,IP6,RANGE
OPEN:
Opens using the open() system call (example). This
operation fails on UNIX domain sockets.
Note: This address type is rarely useful in bidirectional mode.
Option groups: FD,REG,NAMED,OPEN
Useful options: creat, excl, noatime, nofollow, append, rdonly,
wronly, lock, readbytes, ignoreeof
See also: CREATE, GOPEN, UNIX-CONNECT
OPENSSL::
Tries to establish a SSL connection to [TCP service] on
[IP address] using TCP/IP version 4 or 6 depending on ad‐
dress specification, name resolution, or option pf.
NOTE: Up to version 1.7.2.4 the server certificate was only
checked for validity against the system certificate store or
cafile or capath, but not for match with the server’s name or
its IP address. Since version 1.7.3.0 socat checks the peer
certificate for match with the parameter or the value of
the openssl-commonname option. Socat tries to match it against
the certificates subject commonName, and the certificates exten‐
sion subjectAltName DNS names. Wildcards in the certificate are
supported.
Option groups: FD,SOCKET,IP4,IP6,TCP,OPENSSL,RETRY
Useful options: cipher, verify, commonname, cafile, capath, cer‐
tificate, key, compress, bind, pf, connect-timeout, sourceport,
retry
See also: OPENSSL-LISTEN, TCP
OPENSSL-LISTEN:
Listens on tcp [TCP service]. The IP version is 4 or the
one specified with pf. When a connection is accepted, this ad‐
dress behaves as SSL server.
Note: You probably want to use the certificate option with this
address.
NOTE: The client certificate is only checked for validity
against cafile or capath, but not for match with the client’s
name or its IP address!
Option groups: FD,SOCKET,IP4,IP6,TCP,LIS‐
TEN,OPENSSL,CHILD,RANGE,RETRY
Useful options: pf, cipher, verify, commonname, cafile, capath,
certificate, key, compress, fork, bind, range, tcpwrap, su,
reuseaddr, retry
See also: OPENSSL, TCP-LISTEN
OPENSSL-DTLS-CLIENT::
Tries to establish a DTLS connection to [UDP service] on
[IP address] using UDP/IP version 4 or 6 depending on ad‐
dress specification, name resolution, or option pf.
Socat checks the peer certificates subjectAltName or commonName
against the addresses option openssl-commonname or the host
name. Wildcards in the certificate are supported.
Use socat option -b to make datagrams small enough to fit with
overhead on the network. Use option -T to prevent indefinite
hanging when peer went down quietly.
Option groups: FD,SOCKET,IP4,IP6,OPENSSL,RETRY
Useful options: cipher, verify, commonname, cafile, capath, cer‐
tificate, key, compress, bind, pf, sourceport, retry
See also: OPENSSL-DTLS-SERVER, OPENSSL-CONNECT, UDP-CONNECT
OPENSSL-DTLS-SERVER:
Listens on UDP [UDP service]. The IP version is 4 or the
one specified with pf. When a connection is accepted, this ad‐
dress behaves as DTLS server.
Note: You probably want to use the certificate option with this
address.
NOTE: The client certificate is only checked for validity
against cafile or capath, but not for match with the client’s
name or its IP address! Use socat option -b to make datagrams
small enough to fit with overhead on the network. Use option -T
to prevent indefinite hanging when peer went down quietly.
Option groups: FD,SOCKET,IP4,IP6,LIS‐
TEN,OPENSSL,CHILD,RANGE,RETRY
Useful options: pf, cipher, verify, commonname, cafile, capath,
certificate, key, compress, fork, bind, range, tcpwrap, su,
reuseaddr, retry
See also: OPENSSL-DTLS-CLIENT, OPENSSL-LISTEN, UDP-LISTEN
PIPE:
If already exists, it is opened. If it does not ex‐
ist, a named pipe is created and opened. Beginning with socat
version 1.4.3, the named pipe is removed when the address is
closed (but see option unlink-close
Note: When a pipe is used for both reading and writing, it works
as echo service.
Note: When a pipe is used for both reading and writing, and so‐
cat tries to write more bytes than the pipe can buffer (Linux
2.4: 2048 bytes), socat might block. Consider using socat op‐
tion, e.g., -b 2048
Option groups: FD,NAMED,OPEN
Useful options: rdonly, nonblock, group, user, mode, un‐
link-early
See also: unnamed pipe
PIPE Creates an unnamed pipe and uses it for reading and writing. It
works as an echo, because everything written to it appeares im‐
mediately as read data.
Note: When socat tries to write more bytes than the pipe can
queue (Linux 2.4: 2048 bytes), socat might block. Consider,
e.g., using option -b 2048
Option groups: FD
See also: named pipe
PROXY:::
Connects to an HTTP proxy server on port 8080 using TCP/IP ver‐
sion 4 or 6 depending on address specification, name resolution,
or option pf, and sends a CONNECT request for hostname:port. If
the proxy grants access and succeeds to connect to the target,
data transfer between socat and the target can start. Note that
the traffic need not be HTTP but can be an arbitrary protocol.
Option groups: FD,SOCKET,IP4,IP6,TCP,HTTP,RETRY
Useful options: proxyport, ignorecr, proxyauth, resolve, crnl,
bind, connect-timeout, mss, sourceport, retry
See also: SOCKS, TCP
PTY Generates a pseudo terminal (pty) and uses its master side. An‐
other process may open the pty’s slave side using it like a se‐
rial line or terminal. (example). If both the ptmx and the
openpty mechanisms are available, ptmx is used (POSIX).
Option groups: FD,NAMED,PTY,TERMIOS
Useful options: link, openpty, wait-slave, mode, user, group
See also: UNIX-LISTEN, PIPE, EXEC, SYSTEM
READLINE
Uses GNU readline and history on stdio to allow editing and
reusing input lines (example).
Due to licensing restrictions the readline feature is disabled
in Debian. See BUGS.
You can use STDIO instead.
SCTP-CONNECT::
Establishes an SCTP stream connection to the specified
[IP address] and [TCP service] using IP version 4 or 6
depending on address specification, name resolution, or option
pf.
Option groups: FD,SOCKET,IP4,IP6,SCTP,CHILD,RETRY
Useful options: bind, pf, connect-timeout, tos, mtudiscover,
sctp-maxseg, sctp-nodelay, nonblock, sourceport, retry, read‐
bytes
See also: SCTP4-CONNECT, SCTP6-CONNECT, SCTP-LISTEN, TCP-CONNECT
SCTP4-CONNECT::
Like SCTP-CONNECT, but only supports IPv4 protocol.
Option groups: FD,SOCKET,IP4,SCTP,CHILD,RETRY
SCTP6-CONNECT::
Like SCTP-CONNECT, but only supports IPv6 protocol.
Option groups: FD,SOCKET,IP6,SCTP,CHILD,RETRY
SCTP-LISTEN:
Listens on [TCP service] and accepts an SCTP connection.
The IP version is 4 or the one specified with address option pf,
socat option (-4, -6), or environment variable SOCAT_DE‐
FAULT_LISTEN_IP. Note that opening this address usually blocks
until a client connects.
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP4,IP6,SCTP,RETRY
Useful options: crnl, fork, bind, range, tcpwrap, pf, max-chil‐
dren, backlog, accept-timeout, sctp-maxseg, sctp-nodelay, su,
reuseaddr, retry, cool-write
See also: SCTP4-LISTEN, SCTP6-LISTEN, TCP-LISTEN, SCTP-CONNECT
SCTP4-LISTEN:
Like SCTP-LISTEN, but only supports IPv4 protocol.
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP4,SCTP,RETRY
SCTP6-LISTEN:
Like SCTP-LISTEN, but only supports IPv6 protocol.
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP6,SCTP,RETRY
SOCKET-CONNECT:::
Creates a stream socket using the first and second given socket
parameters and SOCK_STREAM (see man socket(2)) and connects to
the remote-address. The two socket parameters have to be speci‐
fied by int numbers. Consult your OS documentation and include
files to find the appropriate values. The remote-address must be
the data representation of a sockaddr structure without sa_fam‐
ily and (BSD) sa_len components.
Please note that you can - beyond the options of the specified
groups - also use options of higher level protocols when you ap‐
ply socat option -g.
Option groups: FD,SOCKET,CHILD,RETRY
Useful options: bind, setsockopt,
See also: TCP, UDP-CONNECT, UNIX-CONNECT, SOCKET-LISTEN,
SOCKET-SENDTO
SOCKET-DATAGRAM::::
Creates a datagram socket using the first three given socket pa‐
rameters (see man socket(2)) and sends outgoing data to the re‐
mote-address. The three socket parameters have to be specified
by int numbers. Consult your OS documentation and include files
to find the appropriate values. The remote-address must be the
data representation of a sockaddr structure without sa_family
and (BSD) sa_len components.
Please note that you can - beyond the options of the specified
groups - also use options of higher level protocols when you ap‐
ply socat option -g.
Option groups: FD,SOCKET,RANGE
Useful options: bind, range, setsockopt,
See also: UDP-DATAGRAM, IP-DATAGRAM, SOCKET-SENDTO, SOCKET-RECV,
SOCKET-RECVFROM
SOCKET-LISTEN:::
Creates a stream socket using the first and second given socket
parameters and SOCK_STREAM (see man socket(2)) and waits for in‐
coming connections on local-address. The two socket parameters
have to be specified by int numbers. Consult your OS documenta‐
tion and include files to find the appropriate values. The lo‐
cal-address must be the data representation of a sockaddr struc‐
ture without sa_family and (BSD) sa_len components.
Please note that you can - beyond the options of the specified
groups - also use options of higher level protocols when you ap‐
ply socat option -g.
Option groups: FD,SOCKET,LISTEN,RANGE,CHILD,RETRY
Useful options: setsockopt, setsockopt-listen,
See also: TCP, UDP-CONNECT, UNIX-CONNECT, SOCKET-LISTEN,
SOCKET-SENDTO, SOCKET-SENDTO
SOCKET-RECV::::
Creates a socket using the three given socket parameters (see
man socket(2)) and binds it to . Receives arriv‐
ing data. The three parameters have to be specified by int num‐
bers. Consult your OS documentation and include files to find
the appropriate values. The local-address must be the data rep‐
resentation of a sockaddr structure without sa_family and (BSD)
sa_len components.
Option groups: FD,SOCKET,RANGE
Useful options: range, setsockopt, setsockopt-listen
See also: UDP-RECV, IP-RECV, UNIX-RECV, SOCKET-DATAGRAM,
SOCKET-SENDTO, SOCKET-RECVFROM
SOCKET-RECVFROM::::
Creates a socket using the three given socket parameters (see
man socket(2)) and binds it to . Receives arriv‐
ing data and sends replies back to the sender. The first three
parameters have to be specified as int numbers. Consult your OS
documentation and include files to find the appropriate values.
The local-address must be the data representation of a sockaddr
structure without sa_family and (BSD) sa_len components.
See the note about RECVFROM addresses.
Option groups: FD,SOCKET,CHILD,RANGE
Useful options: fork, range, setsockopt, setsockopt-listen
See also: UDP-RECVFROM, IP-RECVFROM, UNIX-RECVFROM, SOCKET-DATA‐
GRAM, SOCKET-SENDTO, SOCKET-RECV
SOCKET-SENDTO::::
Creates a socket using the three given socket parameters (see
man socket(2)). Sends outgoing data to the given address and re‐
ceives replies. The three parameters have to be specified as
int numbers. Consult your OS documentation and include files to
find the appropriate values. The remote-address must be the data
representation of a sockaddr structure without sa_family and
(BSD) sa_len components.
Option groups: FD,SOCKET
Useful options: bind, setsockopt, setsockopt-listen
See also: UDP-SENDTO, IP-SENDTO, UNIX-SENDTO, SOCKET-DATAGRAM,
SOCKET-RECV SOCKET-RECVFROM
SOCKS4:::
Connects via [IP address] to [IPv4 ad‐
dress] on [TCP service], using socks version 4 protocol
over IP version 4 or 6 depending on address specification, name
resolution, or option pf (example).
Option groups: FD,SOCKET,IP4,IP6,TCP,SOCKS4,RETRY
Useful options: socksuser, socksport, sourceport, pf, retry
See also: SOCKS4A, PROXY, TCP
SOCKS4A:::
like SOCKS4, but uses socks protocol version 4a, thus leaving
host name resolution to the socks server.
Option groups: FD,SOCKET,IP4,IP6,TCP,SOCKS4,RETRY
STDERR Uses file descriptor 2.
Option groups: FD (TERMIOS,REG,SOCKET)
See also: FD
STDIN Uses file descriptor 0.
Option groups: FD (TERMIOS,REG,SOCKET)
Useful options: readbytes
See also: FD
STDIO Uses file descriptor 0 for reading, and 1 for writing.
Option groups: FD (TERMIOS,REG,SOCKET)
Useful options: readbytes
See also: FD
STDOUT Uses file descriptor 1.
Option groups: FD (TERMIOS,REG,SOCKET)
See also: FD
SYSTEM:
Forks a sub process that establishes communication with its par‐
ent process and invokes the specified program with system() .
Please note that [string] must not contain ’,’
or "!!", and that shell meta characters may have to be pro‐
tected. After successful program start, socat writes data to
stdin of the process and reads from its stdout.
Option groups: FD,SOCKET,EXEC,FORK,TERMIOS
Useful options: path, fdin, fdout, chroot, su, su-d, nofork,
pty, stderr, ctty, setsid, pipes, sigint, sigquit
See also: EXEC
TCP::
Connects to [TCP service] on [IP address] using
TCP/IP version 4 or 6 depending on address specification, name
resolution, or option pf.
Option groups: FD,SOCKET,IP4,IP6,TCP,RETRY
Useful options: crnl, bind, pf, connect-timeout, tos, mtudis‐
cover, mss, nodelay, nonblock, sourceport, retry, readbytes
See also: TCP4, TCP6, TCP-LISTEN, UDP, SCTP-CONNECT, UNIX-CON‐
NECT
TCP4::
Like TCP, but only supports IPv4 protocol (example).
Option groups: FD,SOCKET,IP4,TCP,RETRY
TCP6::
Like TCP, but only supports IPv6 protocol.
Option groups: FD,SOCKET,IP6,TCP,RETRY
TCP-LISTEN:
Listens on [TCP service] and accepts a TCP/IP connection.
The IP version is 4 or the one specified with address option pf,
socat option (-4, -6), or environment variable SOCAT_DE‐
FAULT_LISTEN_IP. Note that opening this address usually blocks
until a client connects.
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP4,IP6,TCP,RETRY
Useful options: crnl, fork, bind, range, tcpwrap, pf, max-chil‐
dren, backlog, accept-timeout, mss, su, reuseaddr, retry,
cool-write
See also: TCP4-LISTEN, TCP6-LISTEN, UDP-LISTEN, SCTP-LISTEN,
UNIX-LISTEN, OPENSSL-LISTEN, TCP-CONNECT
TCP4-LISTEN:
Like TCP-LISTEN, but only supports IPv4 protocol (example).
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP4,TCP,RETRY
TCP6-LISTEN:
Like TCP-LISTEN, but only supports IPv6 protocol.
Additional useful option: ipv6only
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP6,TCP,RETRY
TUN[:/]
Creates a Linux TUN/TAP device and optionally assignes it the
address and netmask given by the parameters. The resulting net‐
work interface is almost ready for use by other processes; socat
serves its "wire side". This address requires read and write ac‐
cess to the tunnel cloning device, usually /dev/net/tun , as
well as permission to set some ioctl()s. Option iff-up is re‐
quired to immediately activate the interface!
Note: If you intend to transfer packets between two Socat "wire
sides" you need a protocol that keeps packet boundaries,
e.g.UDP; TCP might work with option nodelay.
Option groups: FD,NAMED,OPEN,TUN
Useful options: iff-up, tun-device, tun-name, tun-type,
iff-no-pi
See also: ip-recv
UDP::
Connects to [UDP service] on [IP address] using
UDP/IP version 4 or 6 depending on address specification, name
resolution, or option pf.
Please note that, due to UDP protocol properties, no real con‐
nection is established; data has to be sent for `connecting’ to
the server, and no end-of-file condition can be transported.
Option groups: FD,SOCKET,IP4,IP6
Useful options: ttl, tos, bind, sourceport, pf
See also: UDP4, UDP6, UDP-LISTEN, TCP, IP
UDP4::
Like UDP, but only supports IPv4 protocol.
Option groups: FD,SOCKET,IP4
UDP6::
Like UDP, but only supports IPv6 protocol.
Option groups: FD,SOCKET,IP6
UDP-DATAGRAM::
Sends outgoing data to the specified address which may in par‐
ticular be a broadcast or multicast address. Packets arriving on
the local socket are checked for the correct remote port only
when option sourceport is used (this is a change with Socat ver‐
sion 1.7.4.0) and if their source addresses match RANGE or TCP‐
WRAP options. This address type can for example be used for im‐
plementing symmetric or asymmetric broadcast or multicast commu‐
nications.
Option groups: FD,SOCKET,IP4,IP6,RANGE
Useful options: bind, range, tcpwrap, broadcast, ip-multi‐
cast-loop, ip-multicast-ttl, ip-multicast-if, ip-add-membership,
ip-add-source-membership, ttl, tos, sourceport, pf
See also: UDP4-DATAGRAM, UDP6-DATAGRAM, UDP-SENDTO,
UDP-RECVFROM, UDP-RECV, UDP-CONNECT, UDP-LISTEN, IP-DATAGRAM
UDP4-DATAGRAM::
Like UDP-DATAGRAM, but only supports IPv4 protocol (example1,
example2).
Option groups: FD,SOCKET,IP4, RANGE
UDP6-DATAGRAM::
Like UDP-DATAGRAM, but only supports IPv6 protocol.
Option groups: FD,SOCKET,IP6,RANGE
UDP-LISTEN:
Waits for a UDP/IP packet arriving on [UDP service] and
`connects’ back to sender. The accepted IP version is 4 or the
one specified with option pf. Please note that, due to UDP pro‐
tocol properties, no real connection is established; data has to
arrive from the peer first, and no end-of-file condition can be
transported. Note that opening this address usually blocks until
a client connects.
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP4,IP6
Useful options: fork, bind, range, pf
See also: UDP, UDP4-LISTEN, UDP6-LISTEN, TCP-LISTEN
UDP4-LISTEN:
Like UDP-LISTEN, but only support IPv4 protocol.
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP4
UDP6-LISTEN:
Like UDP-LISTEN, but only support IPv6 protocol.
Option groups: FD,SOCKET,LISTEN,CHILD,RANGE,IP6
UDP-SENDTO::
Communicates with the specified peer socket, defined by
[UDP service] on [IP address], using UDP/IP version 4 or
6 depending on address specification, name resolution, or option
pf. It sends packets to and receives packets from that peer
socket only. This address effectively implements a datagram
client. It works well with socat UDP-RECVFROM and UDP-RECV ad‐
dress peers.
Option groups: FD,SOCKET,IP4,IP6
Useful options: ttl, tos, bind, sourceport, pf
See also: UDP4-SENDTO, UDP6-SENDTO, UDP-RECVFROM, UDP-RECV,
UDP-CONNECT, UDP-LISTEN, IP-SENDTO
UDP4-SENDTO::
Like UDP-SENDTO, but only supports IPv4 protocol.
Option groups: FD,SOCKET,IP4
UDP6-SENDTO::
Like UDP-SENDTO, but only supports IPv6 protocol.
Option groups: FD,SOCKET,IP6
UDP-RECVFROM:
Creates a UDP socket on [UDP service] using UDP/IP ver‐
sion 4 or 6 depending on option pf. It receives one packet from
an unspecified peer and may send one or more answer packets to
that peer. This mode is particularly useful with fork option
where each arriving packet - from arbitrary peers - is handled
by its own sub process. This allows a behaviour similar to typi‐
cal UDP based servers like ntpd or named. This address works
well with socat UDP-SENDTO address peers.
Note: When the second address fails before entering the transfer
loop the packet is dropped. Use option retry or forever on the
second address to avoid data loss.
Option groups: FD,SOCKET,IP4,IP6,CHILD,RANGE
Useful options: fork, ttl, tos, bind, sourceport, pf
See also: UDP4-RECVFROM, UDP6-RECVFROM, UDP-SENDTO, UDP-RECV,
UDP-CONNECT, UDP-LISTEN, IP-RECVFROM, UNIX-RECVFROM
UDP4-RECVFROM:
Like UDP-RECVFROM, but only supports IPv4 protocol.
Option groups: FD,SOCKET,IP4,CHILD,RANGE
UDP6-RECVFROM:
Like UDP-RECVFROM, but only supports IPv6 protocol.
Option groups: FD,SOCKET,IP6,CHILD,RANGE
UDP-RECV:
Creates a UDP socket on [UDP service] using UDP/IP ver‐
sion 4 or 6 depending on option pf. It receives packets from
multiple unspecified peers and merges the data. No replies are
possible. It works well with, e.g., socat UDP-SENDTO address
peers; it behaves similar to a syslog server.
Note: if you need the fork option, use UDP-RECVFROM in unidirec‐
tional mode (with option -u) instead.
Option groups: FD,SOCKET,IP4,IP6,RANGE
Useful options: pf, bind, sourceport, ttl, tos
See also: UDP4-RECV, UDP6-RECV, UDP-SENDTO, UDP-RECVFROM,
UDP-CONNECT, UDP-LISTEN, IP-RECV, UNIX-RECV
UDP4-RECV:
Like UDP-RECV, but only supports IPv4 protocol.
Option groups: FD,SOCKET,IP4,RANGE
UDP6-RECV:
Like UDP-RECV, but only supports IPv6 protocol.
Option groups: FD,SOCKET,IP6,RANGE
UNIX-CONNECT:
Connects to assuming it is a UNIX domain socket. If
does not exist, this is an error; if is
not a UNIX domain socket, this is an error; if is a
UNIX domain socket, but no process is listening, this is an er‐
ror.
Option groups: FD,SOCKET,NAMED,RETRY,UNIX
) Useful options: bind
See also: UNIX-LISTEN, UNIX-SENDTO, TCP
UNIX-LISTEN:
Listens on using a UNIX domain stream socket and ac‐
cepts a connection. If exists and is not a socket,
this is an error. If exists and is a UNIX domain
socket, binding to the address fails (use option unlink-early!).
Note that opening this address usually blocks until a client
connects. Beginning with socat version 1.4.3, the file system
entry is removed when this address is closed (but see option un‐
link-close) (example).
Option groups: FD,SOCKET,NAMED,LISTEN,CHILD,RETRY,UNIX
Useful options: fork, umask, mode, user, group, unlink-early
See also: UNIX-CONNECT, UNIX-RECVFROM, UNIX-RECV, TCP-LISTEN
UNIX-SENDTO:
Communicates with the specified peer socket, defined by [] assuming it is a UNIX domain datagram socket. It sends
packets to and receives packets from that peer socket only.
Please note that it might be necessary to bind the local socket
to an address (e.g. /tmp/sock1, which must not exist before).
This address type works well with socat UNIX-RECVFROM and
UNIX-RECV address peers.
Option groups: FD,SOCKET,NAMED,UNIX
Useful options: bind
See also: UNIX-RECVFROM, UNIX-RECV, UNIX-CONNECT, UDP-SENDTO,
IP-SENDTO
UNIX-RECVFROM:
Creates a UNIX domain datagram socket []. Receives
one packet and may send one or more answer packets to that peer.
This mode is particularly useful with fork option where each ar‐
riving packet - from arbitrary peers - is handled by its own sub
process. This address works well with socat UNIX-SENDTO address
peers.
Option groups: FD,SOCKET,NAMED,CHILD,UNIX
See the note about RECVFROM addresses.
Useful options: fork
See also: UNIX-SENDTO, UNIX-RECV, UNIX-LISTEN, UDP-RECVFROM,
IP-RECVFROM
UNIX-RECV:
Creates a UNIX domain datagram socket []. Receives
packets from multiple unspecified peers and merges the data. No
replies are possible. It can be, e.g., addressed by socat
UNIX-SENDTO address peers. It behaves similar to a syslog
server.
Option groups: FD,SOCKET,NAMED,UNIX
See also: UNIX-SENDTO, UNIX-RECVFROM, UNIX-LISTEN, UDP-RECV,
IP-RECV
UNIX-CLIENT:
Communicates with the specified peer socket, defined by [] assuming it is a UNIX domain socket. It first tries to
connect and, if that fails, assumes it is a datagram socket,
thus supporting both types.
Option groups: FD,SOCKET,NAMED,UNIX
Useful options: bind
See also: UNIX-CONNECT, UNIX-SENDTO, GOPEN
VSOCK-CONNECT::
Establishes a VSOCK stream connection to the specified
[VSOCK cid] and [VSOCK port].
Option groups: FD,SOCKET,CHILD,RETRY
Useful options: bind, pf, connect-timeout, retry, readbytes
See also: VSOCK-LISTEN,
VSOCK-LISTEN:
Listens on [VSOCK port] and accepts a VSOCK connection.
Note that opening this address usually blocks until a client
connects.
Option groups: FD,SOCKET,LISTEN,CHILD,RETRY
Useful options: fork, bind, pf, max-children, backlog, su,
reuseaddr, retry, cool-write
See also: VSOCK-CONNECT
ABSTRACT-CONNECT:
ABSTRACT-LISTEN:
ABSTRACT-SENDTO:
ABSTRACT-RECVFROM:
ABSTRACT-RECV:
ABSTRACT-CLIENT:
The ABSTRACT addresses are almost identical to the related UNIX
addresses except that they do not address file system based
sockets but an alternate UNIX domain address space. To achieve
this the socket address strings are prefixed with "\0" inter‐
nally. This feature is available (only?) on Linux. Option
groups are the same as with the related UNIX addresses, except
that the ABSTRACT addresses are not member of the NAMED group.
ADDRESS OPTIONS
Address options can be applied to address specifications to influence
the process of opening the addresses and the properties of the result‐
ing data channels.
For technical reasons not every option can be applied to every address
type; e.g., applying a socket option to a regular file will fail. To
catch most useless combinations as early as in the open phase, the con‐
cept of option groups was introduced. Each option belongs to one or
more option groups. Options can be used only with address types that
support at least one of their option groups (but see option -g).
Address options have data types that their values must conform to. Ev‐
ery address option consists of just a keyword or a keyword followed by
"=value", where value must conform to the options type. Some address
options manipulate parameters of system calls; e.g., option sync sets
the O_SYNC flag with the open() call. Other options cause a system or
library call; e.g., with option `ttl=value’ the setsockopt(fd, SOL_IP,
IP_TTL, value, sizeof(int)) call is applied. Other options set inter‐
nal socat variables that are used during data transfer; e.g., `crnl’
causes explicit character conversions. A few options have more complex
implementations; e.g., su-d (substuser-delayed) inquires some user and
group infos, stores them, and applies them later after a possible ch‐
root() call.
If multiple options are given to an address, their sequence in the ad‐
dress specification has (almost) no effect on the sequence of their ex‐
ecution/application. Instead, socat has built in an option phase model
that tries to bring the options in a useful order. Some options exist
in different forms (e.g., unlink, unlink-early, unlink-late) to control
the time of their execution.
If the same option is specified more than once within one address spec‐
ification, with equal or different values, the effect depends on the
kind of option. Options resulting in function calls like setsockopt()
cause multiple invocations. With options that set parameters for a re‐
quired call like open() or set internal flags, the value of the last
option occurrence is effective.
The existence or semantics of many options are system dependent. Socat
usually does NOT try to emulate missing libc or kernel features, it
just provides an interface to the underlying system. So, if an operat‐
ing system lacks a feature, the related option is simply not available
on this platform.
The following paragraphs introduce just the more common address op‐
tions. For a more comprehensive reference and to find information about
canonical option names, alias names, option phases, and platforms see
file xio.help.
FD option group
This option group contains options that are applied to a UN*X style
file descriptor, no matter how it was generated. Because all current
socat address types are file descriptor based, these options may be ap‐
plied to any address.
Note: Some of these options are also member of another option group,
that provides another, non-fd based mechanism. For these options, it
depends on the actual address type and its option groups which mecha‐
nism is used. The second, non-fd based mechanism is prioritized.
cloexec=
Sets the FD_CLOEXEC flag with the fcntl() system call to value
. If set, the file descriptor is closed on exec() family
function calls. Socat internally handles this flag for the fds
it controls, so in most cases there will be no need to apply
this option.
setlk Tries to set a discretionary write lock to the whole file using
the fcntl(fd, F_SETLK, ...) system call. If the file is already
locked, this call results in an error. On Linux, when the file
permissions for group are "S" (g-x,g+s), and the file system is
locally mounted with the "mand" option, the lock is mandatory,
i.e. prevents other processes from opening the file.
setlkw Tries to set a discretionary waiting write lock to the whole
file using the fcntl(fd, F_SETLKW, ...) system call. If the
file is already locked, this call blocks. See option setlk for
information about making this lock mandatory.
setlk-rd
Tries to set a discretionary read lock to the whole file using
the fcntl(fd, F_SETLK, ...) system call. If the file is already
write locked, this call results in an error. See option setlk
for information about making this lock mandatory.
setlkw-rd
Tries to set a discretionary waiting read lock to the whole file
using the fcntl(fd, F_SETLKW, ...) system call. If the file is
already write locked, this call blocks. See option setlk for
information about making this lock mandatory.
flock-ex
Tries to set a blocking exclusive advisory lock to the file us‐
ing the flock(fd, LOCK_EX) system call. Socat hangs in this call
if the file is locked by another process.
flock-ex-nb
Tries to set a nonblocking exclusive advisory lock to the file
using the flock(fd, LOCK_EX|LOCK_NB) system call. If the file is
already locked, this option results in an error.
flock-sh
Tries to set a blocking shared advisory lock to the file using
the flock(fd, LOCK_SH) system call. Socat hangs in this call if
the file is locked by another process.
flock-sh-nb
Tries to set a nonblocking shared advisory lock to the file us‐
ing the flock(fd, LOCK_SH|LOCK_NB) system call. If the file is
already locked, this option results in an error.
lock Sets a blocking lock on the file. Uses the setlk or flock mecha‐
nism depending on availability on the particular platform. If
both are available, the POSIX variant (setlkw) is used.
user=
Sets the (owner) of the stream. If the address is member
of the NAMED option group, socat uses the chown() system call
after opening the file or binding to the UNIX domain socket
(race condition!). Without filesystem entry, socat sets the
user of the stream using the fchown() system call. These calls
might require root privilege.
user-late=
Sets the owner of the fd to with the fchown() system call
after opening or connecting the channel. This is useful only on
file system entries.
group=
Sets the of the stream. If the address is member of the
NAMED option group, socat uses the chown() system call after
opening the file or binding to the UNIX domain socket (race con‐
dition!). Without filesystem entry, socat sets the group of the
stream with the fchown() system call. These calls might require
group membership or root privilege.
group-late=
Sets the group of the fd to with the fchown() system
call after opening or connecting the channel. This is useful
only on file system entries.
mode=
Sets the [mode_t] (permissions) of the stream. If the
address is member of the NAMED option group and uses the open()
or creat() call, the mode is applied with these. If the address
is member of the NAMED option group without using these system
calls, socat uses the chmod() system call after opening the
filesystem entry or binding to the UNIX domain socket (race con‐
dition!). Otherwise, socat sets the mode of the stream using
fchmod() . These calls might require ownership or root privi‐
lege.
perm-late=
Sets the permissions of the fd to value [mode_t] using
the fchmod() system call after opening or connecting the chan‐
nel. This is useful only on file system entries.
append=
Always writes data to the actual end of file. If the address is
member of the OPEN option group, socat uses the O_APPEND flag
with the open() system call (example). Otherwise, socat applies
the fcntl(fd, F_SETFL, O_APPEND) call.
nonblock=
Tries to open or use file in nonblocking mode. Its only effects
are that the connect() call of TCP addresses does not block, and
that opening a named pipe for reading does not block. If the
address is member of the OPEN option group, socat uses the
O_NONBLOCK flag with the open() system call. Otherwise, socat
applies the fcntl(fd, F_SETFL, O_NONBLOCK) call.
binary Opens the file in binary mode to avoid implicit line terminator
conversions (Cygwin).
text Opens the file in text mode to force implicit line terminator
conversions (Cygwin).
noinherit
Does not keep this file open in a spawned process (Cygwin).
cool-write
Takes it easy when write fails with EPIPE or ECONNRESET and logs
the message with notice level instead of error. This prevents
the log file from being filled with useless error messages when
socat is used as a high volume server or proxy where clients of‐
ten abort the connection.
This option is experimental.
end-close
Changes the (address dependent) method of ending a connection to
just close the file descriptors. This is useful when the connec‐
tion is to be reused by or shared with other processes (exam‐
ple).
Normally, socket connections will be ended with shutdown(2)
which terminates the socket even if it is shared by multiple
processes. close(2) "unlinks" the socket from the process but
keeps it active as long as there are still links from other pro‐
cesses.
Similarly, when an address of type EXEC or SYSTEM is ended, so‐
cat usually will explicitly kill the sub process. With this op‐
tion, it will just close the file descriptors.
shut-none
Changes the (address dependent) method of shutting down the
write part of a connection to not do anything.
shut-down
Changes the (address dependent) method of shutting down the
write part of a connection to shutdown(fd, SHUT_WR). Is only
useful with sockets.
shut-close
Changes the (address dependent) method of shutting down the
write part of a connection to close(fd).
shut-null
When one address indicates EOF, socat will send a zero sized
packet to the write channel of the other address to transfer the
EOF condition. This is useful with UDP and other datagram proto‐
cols. Has been tested against netcat and socat with option
null-eof.
null-eof
Normally socat will ignore empty (zero size payload) packets ar‐
riving on datagram sockets, so it survives port scans. With this
option socat interprets empty datagram packets as EOF indicator
(see shut-null).
ioctl-void=
Calls ioctl() with the request value as second argument and NULL
as third argument. This option allows utilizing ioctls that are
not explicitly implemented in socat.
ioctl-int=:
Calls ioctl() with the request value as second argument and the
integer value as third argument.
ioctl-intp=:
Calls ioctl() with the request value as second argument and a
pointer to the integer value as third argument.
ioctl-bin=:
Calls ioctl() with the request value as second argument and a
pointer to the given data value as third argument. This data
must be specified in form.
ioctl-string=:
Calls ioctl() with the request value as second argument and a
pointer to the given string as third argument. form.
NAMED option group
These options work on file system entries.
Please note that, with UNIX domain client addresses, this means the
bind entry, not the target/peer entry.
See also options user, group, and mode.
user-early=
Changes the (owner) of the file system entry before ac‐
cessing it, using the chown() system call. This call might re‐
quire root privilege.
group-early=
Changes the of the file system entry before accessing
it, using the chown() system call. This call might require group
membership or root privilege.
perm-early=
Changes the [mode_t] of the file system entry before ac‐
cessing it, using the chmod() system call. This call might re‐
quire ownership or root privilege.
umask=
Sets the umask of the process to [mode_t] before access‐
ing the file system entry (useful with UNIX domain sockets!).
This call might affect all further operations of the socat
process!
unlink-early
Unlinks (removes) the file before opening it and even before ap‐
plying user-early etc.
unlink Unlinks (removes) the file before accessing it, but after
user-early etc.
unlink-late
Unlinks (removes) the file after opening it to make it inacces‐
sible for other processes after a short race condition.
unlink-close
Removes the addresses file system entry when closing the ad‐
dress. For named pipes, UNIX domain sockets, and the symbolic
links of pty addresses, the default is 1; for created files,
opened files, and generic opened files the default is 0.
OPEN option group
The OPEN group options allow setting flags with the open() system call.
E.g., option `creat’ sets the O_CREAT flag.
See also options append and nonblock.
creat=
Creates the file if it does not exist (example).
dsync=
Blocks write() calls until metainfo is physically written to me‐
dia.
excl=
With option creat, if file exists this is an error.
largefile=
On 32 bit systems, allows a file larger than 2^31 bytes.
noatime
Sets the O_NOATIME options, so reads do not change the access
timestamp.
noctty=
Does not make this file the controlling terminal.
nofollow=
Does not follow symbolic links.
nshare=
Does not allow sharing this file with other processes.
rshare=
Does not allow other processes to open this file for writing.
rsync=
Blocks write() until metainfo is physically written to media.
sync=
Blocks write() until data is physically written to media.
rdonly=
Opens the file for reading only.
wronly=
Opens the file for writing only.
trunc Truncates the file to size 0 during opening it.
REG and BLK option group
These options are usually applied to a UN*X file descriptor, but their
semantics make sense only on a file supporting random access.
seek=
Applies the lseek(fd, , SEEK_SET) (or lseek64 ) system
call, thus positioning the file pointer absolutely to
[off_t or off64_t]. Please note that a missing value defaults to
1, not 0.
seek-cur=
Applies the lseek(fd, , SEEK_CUR) (or lseek64 ) system
call, thus positioning the file pointer [off_t or
off64_t] bytes relatively to its current position (which is usu‐
ally 0). Please note that a missing value defaults to 1, not 0.
seek-end=
Applies the lseek(fd,