]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/listen.2
libc: Fix most issues reported by mandoc
[FreeBSD/FreeBSD.git] / lib / libc / sys / listen.2
1 .\" Copyright (c) 1983, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     From: @(#)listen.2      8.2 (Berkeley) 12/11/93
29 .\" $FreeBSD$
30 .\"
31 .Dd April 14, 2020
32 .Dt LISTEN 2
33 .Os
34 .Sh NAME
35 .Nm listen
36 .Nd listen for connections on a socket
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In sys/socket.h
41 .Ft int
42 .Fn listen "int s" "int backlog"
43 .Sh DESCRIPTION
44 To accept connections, a socket
45 is first created with
46 .Xr socket 2 ,
47 a willingness to accept incoming connections and
48 a queue limit for incoming connections are specified with
49 .Fn listen ,
50 and then the connections are
51 accepted with
52 .Xr accept 2 .
53 The
54 .Fn listen
55 system call applies only to sockets of type
56 .Dv SOCK_STREAM
57 or
58 .Dv SOCK_SEQPACKET .
59 .Pp
60 The
61 .Fa backlog
62 argument defines the maximum length the queue of
63 pending connections may grow to.
64 The real maximum queue length will be 1.5 times more than the value
65 specified in the
66 .Fa backlog
67 argument.
68 A subsequent
69 .Fn listen
70 system call on the listening socket allows the caller to change the maximum
71 queue length using a new
72 .Fa backlog
73 argument.
74 If a connection
75 request arrives with the queue full the client may
76 receive an error with an indication of
77 .Er ECONNREFUSED ,
78 or, in the case of TCP, the connection will be
79 silently dropped.
80 .Pp
81 Current queue lengths of listening sockets can be queried using
82 .Xr netstat 1
83 command.
84 .Pp
85 Note that before
86 .Fx 4.5
87 and the introduction of the syncache,
88 the
89 .Fa backlog
90 argument also determined the length of the incomplete
91 connection queue, which held TCP sockets in the process
92 of completing TCP's 3-way handshake.
93 These incomplete connections
94 are now held entirely in the syncache, which is unaffected by
95 queue lengths.
96 Inflated
97 .Fa backlog
98 values to help handle denial
99 of service attacks are no longer necessary.
100 .Pp
101 The
102 .Xr sysctl 3
103 MIB variable
104 .Va kern.ipc.soacceptqueue
105 specifies a hard limit on
106 .Fa backlog ;
107 if a value greater than
108 .Va kern.ipc.soacceptqueue
109 or less than zero is specified,
110 .Fa backlog
111 is silently forced to
112 .Va kern.ipc.soacceptqueue .
113 .Pp
114 If the listen queue overflows, the kernel will emit a LOG_DEBUG syslog message.
115 The
116 .Xr sysctl 3
117 MIB variable
118 .Va kern.ipc.sooverinterval
119 specifies a per-socket limit on how often the kernel will emit these messages.
120 .Sh INTERACTION WITH ACCEPT FILTERS
121 When accept filtering is used on a socket, a second queue will
122 be used to hold sockets that have connected, but have not yet
123 met their accept filtering criteria.
124 Once the criteria has been
125 met, these sockets will be moved over into the completed connection
126 queue to be
127 .Xr accept 2 Ns ed .
128 If this secondary queue is full and a
129 new connection comes in, the oldest socket which has not yet met
130 its accept filter criteria will be terminated.
131 .Pp
132 This secondary queue, like the primary listen queue, is sized
133 according to the
134 .Fa backlog
135 argument.
136 .Sh RETURN VALUES
137 .Rv -std listen
138 .Sh ERRORS
139 The
140 .Fn listen
141 system call
142 will fail if:
143 .Bl -tag -width Er
144 .It Bq Er EBADF
145 The argument
146 .Fa s
147 is not a valid descriptor.
148 .It Bq Er EDESTADDRREQ
149 The socket is not bound to a local address, and the protocol does not
150 support listening on an unbound socket.
151 .It Bq Er EINVAL
152 The socket is already connected, or in the process of being connected.
153 .It Bq Er ENOTSOCK
154 The argument
155 .Fa s
156 is not a socket.
157 .It Bq Er EOPNOTSUPP
158 The socket is not of a type that supports the operation
159 .Fn listen .
160 .El
161 .Sh SEE ALSO
162 .Xr netstat 1 ,
163 .Xr accept 2 ,
164 .Xr connect 2 ,
165 .Xr socket 2 ,
166 .Xr sysctl 3 ,
167 .Xr sysctl 8 ,
168 .Xr accept_filter 9
169 .Sh HISTORY
170 The
171 .Fn listen
172 system call appeared in
173 .Bx 4.2 .
174 The ability to configure the maximum
175 .Fa backlog
176 at run-time, and to use a negative
177 .Fa backlog
178 to request the maximum allowable value, was introduced in
179 .Fx 2.2 .
180 The
181 .Va kern.ipc.somaxconn
182 .Xr sysctl 3
183 has been replaced with
184 .Va kern.ipc.soacceptqueue
185 in
186 .Fx 10.0
187 to prevent confusion about its actual functionality.
188 The original
189 .Xr sysctl 3
190 .Va kern.ipc.somaxconn
191 is still available but hidden from a
192 .Xr sysctl 3
193 -a output so that existing applications and scripts continue to work.