2019-10-27 15:28:13 +03:00
|
|
|
.\" $NetBSD: accept.2,v 1.34 2019/10/27 12:28:13 pgoyette Exp $
|
1995-02-27 15:31:34 +03:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1983, 1990, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
.\"
|
|
|
|
.\" 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.
|
2003-08-07 20:42:00 +04:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
.\"
|
1995-02-27 15:31:34 +03:00
|
|
|
.\" @(#)accept.2 8.2 (Berkeley) 12/11/93
|
1993-03-21 12:45:37 +03:00
|
|
|
.\"
|
2019-10-27 15:28:13 +03:00
|
|
|
.Dd October 27, 2019
|
1993-03-21 12:45:37 +03:00
|
|
|
.Dt ACCEPT 2
|
1999-03-22 22:44:33 +03:00
|
|
|
.Os
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh NAME
|
2011-06-26 20:42:39 +04:00
|
|
|
.Nm accept ,
|
2017-02-08 21:01:24 +03:00
|
|
|
.Nm accept4 ,
|
2011-06-26 20:42:39 +04:00
|
|
|
.Nm paccept
|
1993-03-21 12:45:37 +03:00
|
|
|
.Nd accept a connection on a socket
|
1999-12-03 00:42:35 +03:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh SYNOPSIS
|
2003-04-16 17:34:34 +04:00
|
|
|
.In sys/socket.h
|
1993-03-21 12:45:37 +03:00
|
|
|
.Ft int
|
2001-10-23 00:59:02 +04:00
|
|
|
.Fn accept "int s" "struct sockaddr * restrict addr" "socklen_t * restrict addrlen"
|
2011-06-26 20:42:39 +04:00
|
|
|
.Ft int
|
2017-02-08 21:01:24 +03:00
|
|
|
.Fn accept4 "int s" "struct sockaddr * restrict addr" "socklen_t * restrict addrlen" "int flags"
|
|
|
|
.Ft int
|
2011-06-26 20:42:39 +04:00
|
|
|
.Fn paccept "int s" "struct sockaddr * restrict addr" "socklen_t * restrict addrlen" "const sigset_t * restrict sigmask" "int flags"
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The argument
|
|
|
|
.Fa s
|
|
|
|
is a socket that has been created with
|
|
|
|
.Xr socket 2 ,
|
|
|
|
bound to an address with
|
|
|
|
.Xr bind 2 ,
|
|
|
|
and is listening for connections after a
|
|
|
|
.Xr listen 2 .
|
|
|
|
The
|
|
|
|
.Fn accept
|
2019-10-27 15:28:13 +03:00
|
|
|
function
|
2002-10-01 22:10:43 +04:00
|
|
|
extracts the first connection request on the queue of pending
|
|
|
|
connections, creates a new socket with the same properties of
|
1993-03-21 12:45:37 +03:00
|
|
|
.Fa s
|
|
|
|
and allocates a new file descriptor
|
2002-10-01 22:10:43 +04:00
|
|
|
for the socket.
|
|
|
|
If no pending connections are
|
1993-03-21 12:45:37 +03:00
|
|
|
present on the queue, and the socket is not marked
|
|
|
|
as non-blocking,
|
|
|
|
.Fn accept
|
|
|
|
blocks the caller until a connection is present.
|
|
|
|
If the socket is marked non-blocking and no pending
|
2001-09-16 05:38:59 +04:00
|
|
|
connections are present on the queue,
|
1993-03-21 12:45:37 +03:00
|
|
|
.Fn accept
|
|
|
|
returns an error as described below.
|
|
|
|
The accepted socket
|
|
|
|
may not be used
|
2002-10-01 22:10:43 +04:00
|
|
|
to accept more connections.
|
|
|
|
The original socket
|
1993-03-21 12:45:37 +03:00
|
|
|
.Fa s
|
|
|
|
remains open.
|
|
|
|
.Pp
|
|
|
|
The argument
|
|
|
|
.Fa addr
|
|
|
|
is a result parameter that is filled in with
|
|
|
|
the address of the connecting entity,
|
|
|
|
as known to the communications layer.
|
|
|
|
The exact format of the
|
|
|
|
.Fa addr
|
|
|
|
parameter is determined by the domain in which the communication
|
|
|
|
is occurring.
|
2001-09-16 05:38:59 +04:00
|
|
|
The
|
1993-03-21 12:45:37 +03:00
|
|
|
.Fa addrlen
|
|
|
|
is a value-result parameter; it should initially contain the
|
|
|
|
amount of space pointed to by
|
|
|
|
.Fa addr ;
|
|
|
|
on return it will contain the actual length (in bytes) of the
|
|
|
|
address returned.
|
|
|
|
This call
|
|
|
|
is used with connection-based socket types, currently with
|
2001-09-16 05:38:59 +04:00
|
|
|
.Dv SOCK_STREAM .
|
1993-03-21 12:45:37 +03:00
|
|
|
.Pp
|
|
|
|
It is possible to
|
|
|
|
.Xr select 2
|
1998-07-28 13:43:30 +04:00
|
|
|
or
|
|
|
|
.Xr poll 2
|
1993-03-21 12:45:37 +03:00
|
|
|
a socket for the purposes of doing an
|
|
|
|
.Fn accept
|
1998-07-28 13:43:30 +04:00
|
|
|
by selecting or polling it for read.
|
1993-03-21 12:45:37 +03:00
|
|
|
.Pp
|
|
|
|
For certain protocols which require an explicit confirmation,
|
|
|
|
such as
|
|
|
|
.Tn ISO
|
|
|
|
or
|
|
|
|
.Tn DATAKIT ,
|
|
|
|
.Fn accept
|
|
|
|
can be thought of
|
1994-01-11 02:54:08 +03:00
|
|
|
as merely dequeuing the next connection
|
1993-03-21 12:45:37 +03:00
|
|
|
request and not implying confirmation.
|
|
|
|
Confirmation can be implied by a normal read or write on the new
|
1994-01-11 02:54:08 +03:00
|
|
|
file descriptor, and rejection can be implied by closing the
|
1993-03-21 12:45:37 +03:00
|
|
|
new socket.
|
|
|
|
.Pp
|
|
|
|
One can obtain user connection request data without confirming
|
2001-09-16 05:38:59 +04:00
|
|
|
the connection by issuing a
|
1993-03-21 12:45:37 +03:00
|
|
|
.Xr recvmsg 2
|
|
|
|
call with an
|
|
|
|
.Fa msg_iovlen
|
|
|
|
of 0 and a non-zero
|
|
|
|
.Fa msg_controllen ,
|
|
|
|
or by issuing a
|
|
|
|
.Xr getsockopt 2
|
|
|
|
request.
|
|
|
|
Similarly, one can provide user connection rejection information
|
|
|
|
by issuing a
|
|
|
|
.Xr sendmsg 2
|
|
|
|
call with providing only the control information,
|
|
|
|
or by calling
|
|
|
|
.Xr setsockopt 2 .
|
2011-06-26 20:42:39 +04:00
|
|
|
.Pp
|
|
|
|
The
|
2017-02-08 21:01:24 +03:00
|
|
|
.Fn accept4
|
|
|
|
function is equivalent to paccept with sigmask
|
|
|
|
.Dv NULL .
|
|
|
|
.Pp
|
|
|
|
The
|
2011-06-26 20:42:39 +04:00
|
|
|
.Fn paccept
|
|
|
|
function behaves exactly like
|
|
|
|
.Fn accept ,
|
|
|
|
but it also allows to set the following
|
|
|
|
.Fa flags
|
|
|
|
on the returned file descriptor:
|
2013-08-03 00:13:09 +04:00
|
|
|
.Bl -tag -width SOCK_NOSIGPIPEXX -offset indent
|
2011-06-26 20:42:39 +04:00
|
|
|
.It Dv SOCK_CLOEXEC
|
|
|
|
Set the close on exec property.
|
|
|
|
.It Dv SOCK_NONBLOCK
|
|
|
|
Sets non-blocking I/O.
|
2013-08-02 18:10:46 +04:00
|
|
|
.It Dv SOCK_NOSIGPIPE
|
2013-08-03 00:13:09 +04:00
|
|
|
Return
|
|
|
|
.Er EPIPE
|
|
|
|
instead of raising
|
|
|
|
.Dv SIGPIPE .
|
2011-06-26 20:42:39 +04:00
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
It can also temporarily replace the signal mask of the calling thread if
|
|
|
|
.Fa sigmask
|
2011-06-27 12:21:07 +04:00
|
|
|
is a
|
|
|
|
.Pf non- Dv NULL
|
|
|
|
pointer, then the
|
2011-06-26 20:42:39 +04:00
|
|
|
.Fn paccept
|
|
|
|
function shall replace the signal mask of the caller by the set of
|
|
|
|
signals pointed to by
|
|
|
|
.Fa sigmask
|
|
|
|
before waiting for a connection, and shall restore the signal mask
|
|
|
|
of the calling thread before returning.
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh RETURN VALUES
|
2011-06-27 12:21:07 +04:00
|
|
|
The
|
2011-06-26 20:42:39 +04:00
|
|
|
.Fn accept
|
|
|
|
and
|
2011-06-27 12:21:07 +04:00
|
|
|
.Fn paccept
|
|
|
|
calls return \-1 on error.
|
2011-06-26 20:42:39 +04:00
|
|
|
If they succeed, they return a non-negative
|
1993-03-21 12:45:37 +03:00
|
|
|
integer that is a descriptor for the accepted socket.
|
2011-06-02 05:04:18 +04:00
|
|
|
.Sh COMPATIBILITY
|
2011-06-26 20:42:39 +04:00
|
|
|
The
|
|
|
|
.Fn accept
|
|
|
|
implementation makes the new file descriptor inherit file flags
|
2011-06-02 05:04:18 +04:00
|
|
|
(like
|
|
|
|
.Dv O_NONBLOCK )
|
|
|
|
from the listening socket.
|
|
|
|
It's a traditional behaviour for BSD derivative systems.
|
|
|
|
On the other hand, there are implementations which don't do so.
|
|
|
|
Linux is an example of such implementations.
|
|
|
|
Portable programs should not rely on either of the behaviours.
|
2017-02-08 21:01:24 +03:00
|
|
|
The
|
|
|
|
.Pp
|
|
|
|
.Fn accept4
|
|
|
|
function is compatible with the Linux implementation.
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh ERRORS
|
|
|
|
The
|
|
|
|
.Fn accept
|
2017-05-09 09:41:56 +03:00
|
|
|
function will fail if:
|
1993-11-30 00:24:57 +03:00
|
|
|
.Bl -tag -width Er
|
2006-11-18 02:59:33 +03:00
|
|
|
.It Bq Er EAGAIN
|
|
|
|
The socket is marked non-blocking and no connections
|
|
|
|
are present to be accepted.
|
1993-03-21 12:45:37 +03:00
|
|
|
.It Bq Er EBADF
|
|
|
|
The descriptor is invalid.
|
2006-11-18 02:59:33 +03:00
|
|
|
.It Bq Er ECONNABORTED
|
|
|
|
A connection has been aborted.
|
|
|
|
.It Bq Er EFAULT
|
|
|
|
The
|
|
|
|
.Fa addr
|
|
|
|
parameter is not in a writable part of the
|
|
|
|
user address space.
|
|
|
|
.It Bq Er EINTR
|
|
|
|
The
|
|
|
|
.Fn accept
|
|
|
|
call has been interrupted by a signal.
|
1999-06-26 08:12:45 +04:00
|
|
|
.It Bq Er EINVAL
|
|
|
|
The socket has not been set up to accept connections (using
|
|
|
|
.Xr bind 2
|
|
|
|
and
|
2001-09-16 06:13:26 +04:00
|
|
|
.Xr listen 2 ) .
|
2006-11-18 02:59:33 +03:00
|
|
|
.It Bq Er EMFILE
|
|
|
|
The per-process descriptor table is full.
|
|
|
|
.It Bq Er ENFILE
|
|
|
|
The system file table is full.
|
1993-03-21 12:45:37 +03:00
|
|
|
.It Bq Er ENOTSOCK
|
|
|
|
The descriptor references a file, not a socket.
|
|
|
|
.It Bq Er EOPNOTSUPP
|
|
|
|
The referenced socket is not of type
|
2001-09-16 05:38:59 +04:00
|
|
|
.Dv SOCK_STREAM .
|
1993-03-21 12:45:37 +03:00
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr bind 2 ,
|
|
|
|
.Xr connect 2 ,
|
|
|
|
.Xr listen 2 ,
|
1999-02-18 03:58:49 +03:00
|
|
|
.Xr poll 2 ,
|
1993-03-21 12:45:37 +03:00
|
|
|
.Xr select 2 ,
|
|
|
|
.Xr socket 2
|
|
|
|
.Sh HISTORY
|
|
|
|
The
|
1993-11-25 03:38:17 +03:00
|
|
|
.Fn accept
|
2001-09-16 05:38:59 +04:00
|
|
|
function appeared in
|
1993-03-21 12:45:37 +03:00
|
|
|
.Bx 4.2 .
|
2011-06-26 20:42:39 +04:00
|
|
|
The
|
2017-02-08 21:01:24 +03:00
|
|
|
.Fn accept4
|
|
|
|
function matches Linux semantics and appeared in
|
|
|
|
.Nx 8.0 .
|
|
|
|
The
|
2012-03-19 13:34:36 +04:00
|
|
|
.Fn paccept
|
2011-06-26 20:42:39 +04:00
|
|
|
function is inspired from Linux and appeared in
|
|
|
|
.Nx 6.0 .
|