1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1983, 1990, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" 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.
|
|
|
|
.\" 4. Neither the name of the University nor the names of its contributors
|
|
|
|
.\" 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.
|
|
|
|
.\"
|
|
|
|
.\" @(#)accept.2 8.2 (Berkeley) 12/11/93
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
2013-10-01 21:17:18 +00:00
|
|
|
.Dd October 1, 2013
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dt ACCEPT 2
|
2001-07-10 13:41:46 +00:00
|
|
|
.Os
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh NAME
|
2014-01-11 22:00:16 +00:00
|
|
|
.Nm accept ,
|
|
|
|
.Nm accept4
|
1994-05-27 05:00:24 +00:00
|
|
|
.Nd accept a connection on a socket
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In sys/types.h
|
|
|
|
.In sys/socket.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
2003-12-24 18:52:41 +00:00
|
|
|
.Fn accept "int s" "struct sockaddr * restrict addr" "socklen_t * restrict addrlen"
|
2013-05-01 20:10:21 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn accept4 "int s" "struct sockaddr * restrict addr" "socklen_t * restrict addrlen" "int flags"
|
1994-05-27 05:00:24 +00: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
|
2004-06-23 00:20:46 +00:00
|
|
|
system call extracts the first connection request on the
|
|
|
|
queue of pending connections, creates a new socket,
|
|
|
|
and allocates a new file descriptor for the socket which
|
|
|
|
inherits the state of the
|
|
|
|
.Dv O_NONBLOCK
|
2013-03-26 22:46:56 +00:00
|
|
|
and
|
|
|
|
.Dv O_ASYNC
|
|
|
|
properties and the destination of
|
|
|
|
.Dv SIGIO
|
|
|
|
and
|
|
|
|
.Dv SIGURG
|
|
|
|
signals from the original socket
|
2004-06-23 00:20:46 +00:00
|
|
|
.Fa s .
|
|
|
|
.Pp
|
2013-05-01 20:10:21 +00:00
|
|
|
The
|
|
|
|
.Fn accept4
|
|
|
|
system call is similar,
|
|
|
|
but the
|
|
|
|
.Dv O_NONBLOCK
|
|
|
|
property of the new socket is instead determined by the
|
|
|
|
.Dv SOCK_NONBLOCK
|
|
|
|
flag in the
|
|
|
|
.Fa flags
|
|
|
|
argument,
|
|
|
|
the
|
|
|
|
.Dv O_ASYNC
|
|
|
|
property is cleared,
|
|
|
|
the signal destination is cleared
|
|
|
|
and the close-on-exec flag on the new file descriptor can be set via the
|
|
|
|
.Dv SOCK_CLOEXEC
|
|
|
|
flag in the
|
|
|
|
.Fa flags
|
|
|
|
argument.
|
|
|
|
.Pp
|
2004-06-23 00:20:46 +00:00
|
|
|
If no pending connections are
|
|
|
|
present on the queue, and the original socket
|
|
|
|
is not marked as non-blocking,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fn accept
|
|
|
|
blocks the caller until a connection is present.
|
2004-06-23 00:20:46 +00:00
|
|
|
If the original socket
|
|
|
|
is marked non-blocking and no pending
|
2000-05-11 05:06:00 +00:00
|
|
|
connections are present on the queue,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fn accept
|
|
|
|
returns an error as described below.
|
|
|
|
The accepted socket
|
|
|
|
may not be used
|
2004-07-02 23:52:20 +00:00
|
|
|
to accept more connections.
|
|
|
|
The original socket
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fa s
|
|
|
|
remains open.
|
|
|
|
.Pp
|
|
|
|
The argument
|
|
|
|
.Fa addr
|
2002-12-19 09:40:28 +00:00
|
|
|
is a result argument that is filled-in with
|
1994-05-27 05:00:24 +00:00
|
|
|
the address of the connecting entity,
|
|
|
|
as known to the communications layer.
|
|
|
|
The exact format of the
|
|
|
|
.Fa addr
|
2002-12-19 09:40:28 +00:00
|
|
|
argument is determined by the domain in which the communication
|
1994-05-27 05:00:24 +00:00
|
|
|
is occurring.
|
2003-09-05 15:41:52 +00:00
|
|
|
A null pointer may be specified for
|
|
|
|
.Fa addr
|
|
|
|
if the address information is not desired;
|
|
|
|
in this case,
|
|
|
|
.Fa addrlen
|
|
|
|
is not used and should also be null.
|
|
|
|
Otherwise, the
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fa addrlen
|
2002-12-19 09:40:28 +00:00
|
|
|
argument
|
|
|
|
is a value-result argument; it should initially contain the
|
1994-05-27 05:00:24 +00:00
|
|
|
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
|
2000-05-11 05:06:00 +00:00
|
|
|
.Dv SOCK_STREAM .
|
1994-05-27 05:00:24 +00:00
|
|
|
.Pp
|
|
|
|
It is possible to
|
|
|
|
.Xr select 2
|
|
|
|
a socket for the purposes of doing an
|
|
|
|
.Fn accept
|
|
|
|
by selecting it for read.
|
|
|
|
.Pp
|
|
|
|
For certain protocols which require an explicit confirmation,
|
|
|
|
such as
|
|
|
|
.Tn ISO
|
|
|
|
or
|
|
|
|
.Tn DATAKIT ,
|
|
|
|
.Fn accept
|
|
|
|
can be thought of
|
|
|
|
as merely dequeueing the next connection
|
|
|
|
request and not implying confirmation.
|
|
|
|
Confirmation can be implied by a normal read or write on the new
|
|
|
|
file descriptor, and rejection can be implied by closing the
|
|
|
|
new socket.
|
2002-05-08 18:19:01 +00:00
|
|
|
.Pp
|
|
|
|
For some applications, performance may be enhanced by using an
|
|
|
|
.Xr accept_filter 9
|
|
|
|
to pre-process incoming connections.
|
2009-11-02 07:21:13 +00:00
|
|
|
.Pp
|
2013-10-01 21:17:18 +00:00
|
|
|
When using
|
|
|
|
.Fn accept ,
|
|
|
|
portable programs should not rely on the
|
2009-11-02 07:21:13 +00:00
|
|
|
.Dv O_NONBLOCK
|
2013-03-26 22:46:56 +00:00
|
|
|
and
|
|
|
|
.Dv O_ASYNC
|
|
|
|
properties and the signal destination being inherited,
|
|
|
|
but should set them explicitly using
|
2013-10-01 21:17:18 +00:00
|
|
|
.Xr fcntl 2 ;
|
|
|
|
.Fn accept4
|
|
|
|
sets these properties consistently,
|
|
|
|
but may not be fully portable across
|
|
|
|
.Ux
|
|
|
|
platforms.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh RETURN VALUES
|
2013-05-01 20:10:21 +00:00
|
|
|
These calls return \-1 on error.
|
|
|
|
If they succeed, they return a non-negative
|
1994-05-27 05:00:24 +00:00
|
|
|
integer that is a descriptor for the accepted socket.
|
|
|
|
.Sh ERRORS
|
|
|
|
The
|
|
|
|
.Fn accept
|
2013-05-01 20:10:21 +00:00
|
|
|
and
|
|
|
|
.Fn accept4
|
|
|
|
system calls will fail if:
|
2000-05-04 13:09:25 +00:00
|
|
|
.Bl -tag -width Er
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Bq Er EBADF
|
|
|
|
The descriptor is invalid.
|
1999-04-29 20:32:54 +00:00
|
|
|
.It Bq Er EINTR
|
|
|
|
The
|
|
|
|
.Fn accept
|
|
|
|
operation was interrupted.
|
1998-01-11 17:07:20 +00:00
|
|
|
.It Bq Er EMFILE
|
|
|
|
The per-process descriptor table is full.
|
|
|
|
.It Bq Er ENFILE
|
|
|
|
The system file table is full.
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Bq Er ENOTSOCK
|
|
|
|
The descriptor references a file, not a socket.
|
1998-11-16 03:49:39 +00:00
|
|
|
.It Bq Er EINVAL
|
2000-05-11 05:06:00 +00:00
|
|
|
.Xr listen 2
|
1998-11-16 03:49:39 +00:00
|
|
|
has not been called on the socket descriptor.
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Bq Er EFAULT
|
|
|
|
The
|
|
|
|
.Fa addr
|
2002-12-19 09:40:28 +00:00
|
|
|
argument is not in a writable part of the
|
1994-05-27 05:00:24 +00:00
|
|
|
user address space.
|
|
|
|
.It Bq Er EWOULDBLOCK
|
|
|
|
The socket is marked non-blocking and no connections
|
|
|
|
are present to be accepted.
|
2001-02-25 22:12:40 +00:00
|
|
|
.It Bq Er ECONNABORTED
|
2001-02-25 23:56:41 +00:00
|
|
|
A connection arrived, but it was closed while waiting
|
|
|
|
on the listen queue.
|
1994-05-27 05:00:24 +00:00
|
|
|
.El
|
2013-05-01 20:10:21 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn accept4
|
|
|
|
system call will also fail if:
|
|
|
|
.Bl -tag -width Er
|
|
|
|
.It Bq Er EINVAL
|
|
|
|
The
|
|
|
|
.Fa flags
|
|
|
|
argument is invalid.
|
|
|
|
.El
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr bind 2 ,
|
|
|
|
.Xr connect 2 ,
|
1997-03-24 01:22:01 +00:00
|
|
|
.Xr getpeername 2 ,
|
2008-06-20 14:47:06 +00:00
|
|
|
.Xr getsockname 2 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Xr listen 2 ,
|
|
|
|
.Xr select 2 ,
|
2002-05-29 15:45:54 +00:00
|
|
|
.Xr socket 2 ,
|
|
|
|
.Xr accept_filter 9
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
1996-08-22 22:05:59 +00:00
|
|
|
.Fn accept
|
2002-12-18 09:22:32 +00:00
|
|
|
system call appeared in
|
1994-05-27 05:00:24 +00:00
|
|
|
.Bx 4.2 .
|
2013-05-01 20:10:21 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn accept4
|
|
|
|
system call appeared in
|
|
|
|
.Fx 10.0 .
|