Correct BSD License clause numbering from 1-2-4 to 1-2-3.
[dragonfly.git] / lib / libc / sys / getsockopt.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 .\"     @(#)getsockopt.2        8.4 (Berkeley) 5/2/95
29 .\" $FreeBSD: src/lib/libc/sys/getsockopt.2,v 1.12.2.11 2002/01/09 17:44:15 yar Exp $
30 .\" $DragonFly: src/lib/libc/sys/getsockopt.2,v 1.5 2007/07/14 21:48:15 swildner Exp $
31 .\"
32 .Dd May 2, 1995
33 .Dt GETSOCKOPT 2
34 .Os
35 .Sh NAME
36 .Nm getsockopt ,
37 .Nm setsockopt
38 .Nd get and set options on sockets
39 .Sh LIBRARY
40 .Lb libc
41 .Sh SYNOPSIS
42 .In sys/types.h
43 .In sys/socket.h
44 .Ft int
45 .Fn getsockopt "int s" "int level" "int optname" "void *optval" "socklen_t *optlen"
46 .Ft int
47 .Fn setsockopt "int s" "int level" "int optname" "const void *optval" "socklen_t optlen"
48 .Sh DESCRIPTION
49 .Fn Getsockopt
50 and
51 .Fn setsockopt
52 manipulate the
53 .Em options
54 associated with a socket.  Options may exist at multiple
55 protocol levels; they are always present at the uppermost
56 .Dq socket
57 level.
58 .Pp
59 When manipulating socket options the level at which the
60 option resides and the name of the option must be specified.
61 To manipulate options at the socket level,
62 .Fa level
63 is specified as
64 .Dv SOL_SOCKET .
65 To manipulate options at any
66 other level the protocol number of the appropriate protocol
67 controlling the option is supplied.  For example,
68 to indicate that an option is to be interpreted by the
69 .Tn TCP
70 protocol,
71 .Fa level
72 should be set to the protocol number of
73 .Tn TCP ;
74 see
75 .Xr getprotoent 3 .
76 .Pp
77 The parameters
78 .Fa optval
79 and
80 .Fa optlen
81 are used to access option values for
82 .Fn setsockopt .
83 For
84 .Fn getsockopt
85 they identify a buffer in which the value for the
86 requested option(s) are to be returned.  For
87 .Fn getsockopt ,
88 .Fa optlen
89 is a value-result parameter, initially containing the
90 size of the buffer pointed to by
91 .Fa optval ,
92 and modified on return to indicate the actual size of
93 the value returned.  If no option value is
94 to be supplied or returned,
95 .Fa optval
96 may be NULL.
97 .Pp
98 .Fa Optname
99 and any specified options are passed uninterpreted to the appropriate
100 protocol module for interpretation.
101 The include file
102 .In sys/socket.h
103 contains definitions for
104 socket level options, described below.
105 Options at other protocol levels vary in format and
106 name; consult the appropriate entries in
107 section
108 4 of the manual.
109 .Pp
110 Most socket-level options utilize an
111 .Fa int
112 parameter for
113 .Fa optval .
114 For
115 .Fn setsockopt ,
116 the parameter should be non-zero to enable a boolean option,
117 or zero if the option is to be disabled.
118 .Dv SO_LINGER
119 uses a
120 .Fa struct linger
121 parameter, defined in
122 .In sys/socket.h ,
123 which specifies the desired state of the option and the
124 linger interval (see below).
125 .Dv SO_SNDTIMEO
126 and
127 .Dv SO_RCVTIMEO
128 use a
129 .Fa struct timeval
130 parameter, defined in
131 .In sys/time.h .
132 .Pp
133 The following options are recognized at the socket level.
134 Except as noted, each may be examined with
135 .Fn getsockopt
136 and set with
137 .Fn setsockopt .
138 .Bl -column SO_ACCEPTFILTER -offset indent
139 .It Dv SO_DEBUG Ta "enables recording of debugging information"
140 .It Dv SO_REUSEADDR Ta "enables local address reuse"
141 .It Dv SO_REUSEPORT Ta "enables duplicate address and port bindings"
142 .It Dv SO_KEEPALIVE Ta "enables keep connections alive"
143 .It Dv SO_DONTROUTE Ta "enables routing bypass for outgoing messages"
144 .It Dv SO_LINGER  Ta "linger on close if data present"
145 .It Dv SO_BROADCAST Ta "enables permission to transmit broadcast messages"
146 .It Dv SO_OOBINLINE Ta "enables reception of out-of-band data in band"
147 .It Dv SO_SNDBUF Ta "set buffer size for output"
148 .It Dv SO_RCVBUF Ta "set buffer size for input"
149 .It Dv SO_SNDLOWAT Ta "set minimum count for output"
150 .It Dv SO_RCVLOWAT Ta "set minimum count for input"
151 .It Dv SO_SNDTIMEO Ta "set timeout value for output"
152 .It Dv SO_RCVTIMEO Ta "set timeout value for input"
153 .It Dv SO_ACCEPTFILTER Ta "set accept filter on listening socket"
154 .It Dv SO_TYPE Ta "get the type of the socket (get only)"
155 .It Dv SO_ERROR Ta "get and clear error on the socket (get only)"
156 .El
157 .Pp
158 .Dv SO_DEBUG
159 enables debugging in the underlying protocol modules.
160 .Dv SO_REUSEADDR
161 indicates that the rules used in validating addresses supplied
162 in a
163 .Xr bind 2
164 call should allow reuse of local addresses.
165 .Dv SO_REUSEPORT
166 allows completely duplicate bindings by multiple processes
167 if they all set
168 .Dv SO_REUSEPORT
169 before binding the port.
170 This option permits multiple instances of a program to each
171 receive UDP/IP multicast or broadcast datagrams destined for the bound port.
172 .Dv SO_KEEPALIVE
173 enables the
174 periodic transmission of messages on a connected socket.  Should the
175 connected party fail to respond to these messages, the connection is
176 considered broken and processes using the socket are notified via a
177 .Dv SIGPIPE
178 signal when attempting to send data.
179 .Dv SO_DONTROUTE
180 indicates that outgoing messages should
181 bypass the standard routing facilities.  Instead, messages are directed
182 to the appropriate network interface according to the network portion
183 of the destination address.
184 .Pp
185 .Dv SO_LINGER
186 controls the action taken when unsent messages
187 are queued on socket and a
188 .Xr close 2
189 is performed.
190 If the socket promises reliable delivery of data and
191 .Dv SO_LINGER
192 is set,
193 the system will block the process on the
194 .Xr close 2
195 attempt until it is able to transmit the data or until it decides it
196 is unable to deliver the information (a timeout period, termed the
197 linger interval, is specified in seconds in the
198 .Fn setsockopt
199 call when
200 .Dv SO_LINGER
201 is requested).
202 If
203 .Dv SO_LINGER
204 is disabled and a
205 .Xr close 2
206 is issued, the system will process the close in a manner that allows
207 the process to continue as quickly as possible.
208 .Pp
209 The option
210 .Dv SO_BROADCAST
211 requests permission to send broadcast datagrams
212 on the socket.
213 Broadcast was a privileged operation in earlier versions of the system.
214 With protocols that support out-of-band data, the
215 .Dv SO_OOBINLINE
216 option
217 requests that out-of-band data be placed in the normal data input queue
218 as received; it will then be accessible with
219 .Xr recv 2
220 or
221 .Xr read 2
222 calls without the
223 .Dv MSG_OOB
224 flag.
225 Some protocols always behave as if this option is set.
226 .Dv SO_SNDBUF
227 and
228 .Dv SO_RCVBUF
229 are options to adjust the normal
230 buffer sizes allocated for output and input buffers, respectively.
231 The buffer size may be increased for high-volume connections,
232 or may be decreased to limit the possible backlog of incoming data.
233 The system places an absolute maximum on these values, which is accessible
234 through the
235 .Xr sysctl 3
236 MIB variable
237 .Va kern.ipc.maxsockbuf .
238 .Pp
239 .Dv SO_SNDLOWAT
240 is an option to set the minimum count for output operations.
241 Most output operations process all of the data supplied
242 by the call, delivering data to the protocol for transmission
243 and blocking as necessary for flow control.
244 Nonblocking output operations will process as much data as permitted
245 subject to flow control without blocking, but will process no data
246 if flow control does not allow the smaller of the low water mark value
247 or the entire request to be processed.
248 A
249 .Xr select 2
250 operation testing the ability to write to a socket will return true
251 only if the low water mark amount could be processed.
252 The default value for
253 .Dv SO_SNDLOWAT
254 is set to a convenient size for network efficiency, often 1024.
255 .Dv SO_RCVLOWAT
256 is an option to set the minimum count for input operations.
257 In general, receive calls will block until any (non-zero) amount of data
258 is received, then return with the smaller of the amount available or the amount
259 requested.
260 The default value for
261 .Dv SO_RCVLOWAT
262 is 1.
263 If
264 .Dv SO_RCVLOWAT
265 is set to a larger value, blocking receive calls normally
266 wait until they have received the smaller of the low water mark value
267 or the requested amount.
268 Receive calls may still return less than the low water mark if an error
269 occurs, a signal is caught, or the type of data next in the receive queue
270 is different from that which was returned.
271 .Pp
272 .Dv SO_SNDTIMEO
273 is an option to set a timeout value for output operations.
274 It accepts a
275 .Fa struct timeval
276 parameter with the number of seconds and microseconds
277 used to limit waits for output operations to complete.
278 If a send operation has blocked for this much time,
279 it returns with a partial count
280 or with the error
281 .Er EWOULDBLOCK
282 if no data were sent.
283 In the current implementation, this timer is restarted each time additional
284 data are delivered to the protocol,
285 implying that the limit applies to output portions ranging in size
286 from the low water mark to the high water mark for output.
287 .Dv SO_RCVTIMEO
288 is an option to set a timeout value for input operations.
289 It accepts a
290 .Fa struct timeval
291 parameter with the number of seconds and microseconds
292 used to limit waits for input operations to complete.
293 In the current implementation, this timer is restarted each time additional
294 data are received by the protocol,
295 and thus the limit is in effect an inactivity timer.
296 If a receive operation has been blocked for this much time without
297 receiving additional data, it returns with a short count
298 or with the error
299 .Er EWOULDBLOCK
300 if no data were received.
301 .Pp
302 .Dv SO_ACCEPTFILTER
303 places an
304 .Xr accept_filter 9
305 on the socket,
306 which will filter incoming connections
307 on a listening stream socket before being presented for
308 .Xr accept 2 .
309 Once more,
310 .Xr listen 2
311 must be called on the socket before
312 trying to install the filter on it,
313 or else the
314 .Fn setsockopt
315 call will fail.
316 .Bd -literal
317 struct  accept_filter_arg {
318         char    af_name[16];
319         char    af_arg[256-16];
320 };
321 .Ed
322 .Pp
323 .Fa optval
324 should point to a
325 .Fa struct accept_filter_arg
326 that will select and configure the
327 .Xr accept_filter 9 .
328 .Fa af_name
329 should be filled with the name of the accept filter
330 that the application wishes to place on the listening socket.
331 .Fa af_arg
332 is an optional parameter that can be passed to the accept
333 filter specified by
334 .Fa af_name
335 to provide additional configuration options at attach time.
336 Passing in an
337 .Fa optval
338 of NULL will remove the filter.
339 .Pp
340 Finally,
341 .Dv SO_TYPE
342 and
343 .Dv SO_ERROR
344 are options used only with
345 .Fn getsockopt .
346 .Dv SO_TYPE
347 returns the type of the socket, such as
348 .Dv SOCK_STREAM ;
349 it is useful for servers that inherit sockets on startup.
350 .Dv SO_ERROR
351 returns any pending error on the socket and clears
352 the error status.
353 It may be used to check for asynchronous errors on connected
354 datagram sockets or for other asynchronous errors.
355 .Sh RETURN VALUES
356 .Rv -std
357 .Sh ERRORS
358 The call succeeds unless:
359 .Bl -tag -width Er
360 .It Bq Er EBADF
361 The argument
362 .Fa s
363 is not a valid descriptor.
364 .It Bq Er ENOTSOCK
365 The argument
366 .Fa s
367 is a file, not a socket.
368 .It Bq Er ENOPROTOOPT
369 The option is unknown at the level indicated.
370 .It Bq Er EFAULT
371 The address pointed to by
372 .Fa optval
373 is not in a valid part of the process address space.
374 For
375 .Fn getsockopt ,
376 this error may also be returned if
377 .Fa optlen
378 is not in a valid part of the process address space.
379 .It Bq Er EINVAL
380 Installing an
381 .Xr accept_filter 9
382 on a non-listening socket was attempted.
383 .El
384 .Sh SEE ALSO
385 .Xr ioctl 2 ,
386 .Xr socket 2 ,
387 .Xr getprotoent 3 ,
388 .Xr sysctl 3 ,
389 .Xr protocols 5 ,
390 .Xr sysctl 8 ,
391 .Xr accept_filter 9
392 .Sh HISTORY
393 The
394 .Fn getsockopt
395 system call appeared in
396 .Bx 4.2 .
397 .Sh BUGS
398 Several of the socket options should be handled at lower levels of the system.