xref: /freebsd-12.1/lib/libc/sys/getsockopt.2 (revision 7b1c2c4e)
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$
30.\"
31.Dd May 9, 2018
32.Dt GETSOCKOPT 2
33.Os
34.Sh NAME
35.Nm getsockopt ,
36.Nm setsockopt
37.Nd get and set options on sockets
38.Sh LIBRARY
39.Lb libc
40.Sh SYNOPSIS
41.In sys/types.h
42.In sys/socket.h
43.Ft int
44.Fn getsockopt "int s" "int level" "int optname" "void * restrict optval" "socklen_t * restrict optlen"
45.Ft int
46.Fn setsockopt "int s" "int level" "int optname" "const void *optval" "socklen_t optlen"
47.Sh DESCRIPTION
48The
49.Fn getsockopt
50and
51.Fn setsockopt
52system calls
53manipulate the
54.Em options
55associated with a socket.
56Options may exist at multiple
57protocol levels; they are always present at the uppermost
58.Dq socket
59level.
60.Pp
61When manipulating socket options the level at which the
62option resides and the name of the option must be specified.
63To manipulate options at the socket level,
64.Fa level
65is specified as
66.Dv SOL_SOCKET .
67To manipulate options at any
68other level the protocol number of the appropriate protocol
69controlling the option is supplied.
70For example,
71to indicate that an option is to be interpreted by the
72.Tn TCP
73protocol,
74.Fa level
75should be set to the protocol number of
76.Tn TCP ;
77see
78.Xr getprotoent 3 .
79.Pp
80The
81.Fa optval
82and
83.Fa optlen
84arguments
85are used to access option values for
86.Fn setsockopt .
87For
88.Fn getsockopt
89they identify a buffer in which the value for the
90requested option(s) are to be returned.
91For
92.Fn getsockopt ,
93.Fa optlen
94is a value-result argument, initially containing the
95size of the buffer pointed to by
96.Fa optval ,
97and modified on return to indicate the actual size of
98the value returned.
99If no option value is
100to be supplied or returned,
101.Fa optval
102may be NULL.
103.Pp
104The
105.Fa optname
106argument
107and any specified options are passed uninterpreted to the appropriate
108protocol module for interpretation.
109The include file
110.In sys/socket.h
111contains definitions for
112socket level options, described below.
113Options at other protocol levels vary in format and
114name; consult the appropriate entries in
115section
1164 of the manual.
117.Pp
118Most socket-level options utilize an
119.Vt int
120argument for
121.Fa optval .
122For
123.Fn setsockopt ,
124the argument should be non-zero to enable a boolean option,
125or zero if the option is to be disabled.
126.Dv SO_LINGER
127uses a
128.Vt "struct linger"
129argument, defined in
130.In sys/socket.h ,
131which specifies the desired state of the option and the
132linger interval (see below).
133.Dv SO_SNDTIMEO
134and
135.Dv SO_RCVTIMEO
136use a
137.Vt "struct timeval"
138argument, defined in
139.In sys/time.h .
140.Pp
141The following options are recognized at the socket level.
142For protocol-specific options, see protocol manual pages,
143e.g.
144.Xr ip 4
145or
146.Xr tcp 4 .
147Except as noted, each may be examined with
148.Fn getsockopt
149and set with
150.Fn setsockopt .
151.Bl -column SO_ACCEPTFILTER -offset indent
152.It Dv SO_DEBUG Ta "enables recording of debugging information"
153.It Dv SO_REUSEADDR Ta "enables local address reuse"
154.It Dv SO_REUSEPORT Ta "enables duplicate address and port bindings"
155.It Dv SO_REUSEPORT_LB Ta "enables duplicate address and port bindings with load balancing"
156.It Dv SO_KEEPALIVE Ta "enables keep connections alive"
157.It Dv SO_DONTROUTE Ta "enables routing bypass for outgoing messages"
158.It Dv SO_LINGER  Ta "linger on close if data present"
159.It Dv SO_BROADCAST Ta "enables permission to transmit broadcast messages"
160.It Dv SO_OOBINLINE Ta "enables reception of out-of-band data in band"
161.It Dv SO_SNDBUF Ta "set buffer size for output"
162.It Dv SO_RCVBUF Ta "set buffer size for input"
163.It Dv SO_SNDLOWAT Ta "set minimum count for output"
164.It Dv SO_RCVLOWAT Ta "set minimum count for input"
165.It Dv SO_SNDTIMEO Ta "set timeout value for output"
166.It Dv SO_RCVTIMEO Ta "set timeout value for input"
167.It Dv SO_ACCEPTFILTER Ta "set accept filter on listening socket"
168.It Dv SO_NOSIGPIPE Ta
169controls generation of
170.Dv SIGPIPE
171for the socket
172.It Dv SO_TIMESTAMP Ta "enables reception of a timestamp with datagrams"
173.It Dv SO_BINTIME Ta "enables reception of a timestamp with datagrams"
174.It Dv SO_ACCEPTCONN Ta "get listening status of the socket (get only)"
175.It Dv SO_TYPE Ta "get the type of the socket (get only)"
176.It Dv SO_PROTOCOL Ta "get the protocol number for the socket (get only)"
177.It Dv SO_PROTOTYPE Ta "SunOS alias for the Linux SO_PROTOCOL (get only)"
178.It Dv SO_ERROR Ta "get and clear error on the socket (get only)"
179.It Dv SO_SETFIB Ta "set the associated FIB (routing table) for the socket (set only)"
180.El
181.Pp
182The following options are recognized in
183.Fx :
184.Bl -column SO_LISTENINCQLEN -offset indent
185.It Dv SO_LABEL Ta "get MAC label of the socket (get only)"
186.It Dv SO_PEERLABEL Ta "get socket's peer's MAC label (get only)"
187.It Dv SO_LISTENQLIMIT Ta "get backlog limit of the socket (get only)"
188.It Dv SO_LISTENQLEN Ta "get complete queue length of the socket (get only)"
189.It Dv SO_LISTENINCQLEN Ta "get incomplete queue length of the socket (get only)"
190.It Dv SO_USER_COOKIE Ta "set the 'so_user_cookie' value for the socket (uint32_t, set only)"
191.It Dv SO_TS_CLOCK Ta "set specific format of timestamp returned by SO_TIMESTAMP"
192.It Dv SO_MAX_PACING_RATE Ta "set the maximum transmit rate in bytes per second for the socket"
193.El
194.Pp
195.Dv SO_DEBUG
196enables debugging in the underlying protocol modules.
197.Pp
198.Dv SO_REUSEADDR
199indicates that the rules used in validating addresses supplied
200in a
201.Xr bind 2
202system call should allow reuse of local addresses.
203.Pp
204.Dv SO_REUSEPORT
205allows completely duplicate bindings by multiple processes
206if they all set
207.Dv SO_REUSEPORT
208before binding the port.
209This option permits multiple instances of a program to each
210receive UDP/IP multicast or broadcast datagrams destined for the bound port.
211.Pp
212.Dv SO_REUSEPORT_LB
213allows completely duplicate bindings by multiple processes
214if they all set
215.Dv SO_REUSEPORT_LB
216before binding the port.
217Incoming TCP and UDP connections are distributed among the sharing
218processes based on a hash function of local port number, foreign IP
219address and port number. A maximum of 256 processes can share one socket.
220.Pp
221.Dv SO_KEEPALIVE
222enables the
223periodic transmission of messages on a connected socket.
224Should the
225connected party fail to respond to these messages, the connection is
226considered broken and processes using the socket are notified via a
227.Dv SIGPIPE
228signal when attempting to send data.
229.Pp
230.Dv SO_DONTROUTE
231indicates that outgoing messages should
232bypass the standard routing facilities.
233Instead, messages are directed
234to the appropriate network interface according to the network portion
235of the destination address.
236.Pp
237.Dv SO_LINGER
238controls the action taken when unsent messages
239are queued on socket and a
240.Xr close 2
241is performed.
242If the socket promises reliable delivery of data and
243.Dv SO_LINGER
244is set,
245the system will block the process on the
246.Xr close 2
247attempt until it is able to transmit the data or until it decides it
248is unable to deliver the information (a timeout period, termed the
249linger interval, is specified in seconds in the
250.Fn setsockopt
251system call when
252.Dv SO_LINGER
253is requested).
254If
255.Dv SO_LINGER
256is disabled and a
257.Xr close 2
258is issued, the system will process the close in a manner that allows
259the process to continue as quickly as possible.
260.Pp
261The option
262.Dv SO_BROADCAST
263requests permission to send broadcast datagrams
264on the socket.
265Broadcast was a privileged operation in earlier versions of the system.
266.Pp
267With protocols that support out-of-band data, the
268.Dv SO_OOBINLINE
269option
270requests that out-of-band data be placed in the normal data input queue
271as received; it will then be accessible with
272.Xr recv 2
273or
274.Xr read 2
275calls without the
276.Dv MSG_OOB
277flag.
278Some protocols always behave as if this option is set.
279.Pp
280.Dv SO_SNDBUF
281and
282.Dv SO_RCVBUF
283are options to adjust the normal
284buffer sizes allocated for output and input buffers, respectively.
285The buffer size may be increased for high-volume connections,
286or may be decreased to limit the possible backlog of incoming data.
287The system places an absolute maximum on these values, which is accessible
288through the
289.Xr sysctl 3
290MIB variable
291.Dq Li kern.ipc.maxsockbuf .
292.Pp
293.Dv SO_SNDLOWAT
294is an option to set the minimum count for output operations.
295Most output operations process all of the data supplied
296by the call, delivering data to the protocol for transmission
297and blocking as necessary for flow control.
298Nonblocking output operations will process as much data as permitted
299subject to flow control without blocking, but will process no data
300if flow control does not allow the smaller of the low water mark value
301or the entire request to be processed.
302A
303.Xr select 2
304operation testing the ability to write to a socket will return true
305only if the low water mark amount could be processed.
306The default value for
307.Dv SO_SNDLOWAT
308is set to a convenient size for network efficiency, often 1024.
309.Pp
310.Dv SO_RCVLOWAT
311is an option to set the minimum count for input operations.
312In general, receive calls will block until any (non-zero) amount of data
313is received, then return with the smaller of the amount available or the amount
314requested.
315The default value for
316.Dv SO_RCVLOWAT
317is 1.
318If
319.Dv SO_RCVLOWAT
320is set to a larger value, blocking receive calls normally
321wait until they have received the smaller of the low water mark value
322or the requested amount.
323Receive calls may still return less than the low water mark if an error
324occurs, a signal is caught, or the type of data next in the receive queue
325is different from that which was returned.
326.Pp
327.Dv SO_SNDTIMEO
328is an option to set a timeout value for output operations.
329It accepts a
330.Vt "struct timeval"
331argument with the number of seconds and microseconds
332used to limit waits for output operations to complete.
333If a send operation has blocked for this much time,
334it returns with a partial count
335or with the error
336.Er EWOULDBLOCK
337if no data were sent.
338In the current implementation, this timer is restarted each time additional
339data are delivered to the protocol,
340implying that the limit applies to output portions ranging in size
341from the low water mark to the high water mark for output.
342.Pp
343.Dv SO_RCVTIMEO
344is an option to set a timeout value for input operations.
345It accepts a
346.Vt "struct timeval"
347argument with the number of seconds and microseconds
348used to limit waits for input operations to complete.
349In the current implementation, this timer is restarted each time additional
350data are received by the protocol,
351and thus the limit is in effect an inactivity timer.
352If a receive operation has been blocked for this much time without
353receiving additional data, it returns with a short count
354or with the error
355.Er EWOULDBLOCK
356if no data were received.
357.Pp
358.Dv SO_SETFIB
359can be used to over-ride the default FIB (routing table) for the given socket.
360The value must be from 0 to one less than the number returned from
361the sysctl
362.Em net.fibs .
363.Pp
364.Dv SO_USER_COOKIE
365can be used to set the uint32_t so_user_cookie field in the socket.
366The value is an uint32_t, and can be used in the kernel code that
367manipulates traffic related to the socket.
368The default value for the field is 0.
369As an example, the value can be used as the skipto target or
370pipe number in
371.Nm ipfw/dummynet .
372.Pp
373.Dv SO_ACCEPTFILTER
374places an
375.Xr accept_filter 9
376on the socket,
377which will filter incoming connections
378on a listening stream socket before being presented for
379.Xr accept 2 .
380Once more,
381.Xr listen 2
382must be called on the socket before
383trying to install the filter on it,
384or else the
385.Fn setsockopt
386system call will fail.
387.Bd -literal
388struct  accept_filter_arg {
389        char    af_name[16];
390        char    af_arg[256-16];
391};
392.Ed
393.Pp
394The
395.Fa optval
396argument
397should point to a
398.Fa struct accept_filter_arg
399that will select and configure the
400.Xr accept_filter 9 .
401The
402.Fa af_name
403argument
404should be filled with the name of the accept filter
405that the application wishes to place on the listening socket.
406The optional argument
407.Fa af_arg
408can be passed to the accept
409filter specified by
410.Fa af_name
411to provide additional configuration options at attach time.
412Passing in an
413.Fa optval
414of NULL will remove the filter.
415.Pp
416The
417.Dv SO_NOSIGPIPE
418option controls generation of the
419.Dv SIGPIPE
420signal normally sent
421when writing to a connected socket where the other end has been
422closed returns with the error
423.Er EPIPE .
424.Pp
425If the
426.Dv SO_TIMESTAMP
427or
428.Dv SO_BINTIME
429option is enabled on a
430.Dv SOCK_DGRAM
431socket, the
432.Xr recvmsg 2
433call will return a timestamp corresponding to when the datagram was received.
434The
435.Va msg_control
436field in the
437.Vt msghdr
438structure points to a buffer that contains a
439.Vt cmsghdr
440structure followed by a
441.Vt "struct timeval"
442for
443.Dv SO_TIMESTAMP
444and
445.Vt "struct bintime"
446for
447.Dv SO_BINTIME .
448The
449.Vt cmsghdr
450fields have the following values for TIMESTAMP by default:
451.Bd -literal
452     cmsg_len = CMSG_LEN(sizeof(struct timeval));
453     cmsg_level = SOL_SOCKET;
454     cmsg_type = SCM_TIMESTAMP;
455.Ed
456.Pp
457and for
458.Dv SO_BINTIME :
459.Bd -literal
460     cmsg_len = CMSG_LEN(sizeof(struct bintime));
461     cmsg_level = SOL_SOCKET;
462     cmsg_type = SCM_BINTIME;
463.Ed
464.Pp
465Additional timestamp types are available by following
466.Dv SO_TIMESTAMP
467with
468.Dv SO_TS_CLOCK ,
469which requests a specific timestamp format to be returned instead of
470.Dv SCM_TIMESTAMP when
471.Dv SO_TIMESTAMP is enabled.
472These
473.Dv SO_TS_CLOCK
474values are recognized in
475.Fx :
476.Bl -column SO_TS_CLOCK -offset indent
477.It Dv SO_TS_REALTIME_MICRO Ta "realtime (SCM_TIMESTAMP, struct timeval), default"
478.It Dv SO_TS_BINTIME Ta "realtime (SCM_BINTIME, struct bintime)"
479.It Dv SO_TS_REALTIME Ta "realtime (SCM_REALTIME, struct timespec)"
480.It Dv SO_TS_MONOTONIC Ta "monotonic time (SCM_MONOTONIC, struct timespec)"
481.El
482.Pp
483.Dv SO_ACCEPTCONN ,
484.Dv SO_TYPE ,
485.Dv SO_PROTOCOL
486(and its alias
487.Dv SO_PROTOTYPE )
488and
489.Dv SO_ERROR
490are options used only with
491.Fn getsockopt .
492.Dv SO_ACCEPTCONN
493returns whether the socket is currently accepting connections,
494that is, whether or not the
495.Xr listen 2
496system call was invoked on the socket.
497.Dv SO_TYPE
498returns the type of the socket, such as
499.Dv SOCK_STREAM ;
500it is useful for servers that inherit sockets on startup.
501.Dv SO_PROTOCOL
502returns the protocol number for the socket, for
503.Dv AF_INET
504and
505.Dv AF_INET6
506address families.
507.Dv SO_ERROR
508returns any pending error on the socket and clears
509the error status.
510It may be used to check for asynchronous errors on connected
511datagram sockets or for other asynchronous errors.
512.Pp
513Finally,
514.Dv SO_LABEL
515returns the MAC label of the socket.
516.Dv SO_PEERLABEL
517returns the MAC label of the socket's peer.
518Note that your kernel must be compiled with MAC support.
519See
520.Xr mac 3
521for more information.
522.Dv SO_LISTENQLIMIT
523returns the maximal number of queued connections, as set by
524.Xr listen 2 .
525.Dv SO_LISTENQLEN
526returns the number of unaccepted complete connections.
527.Dv SO_LISTENINCQLEN
528returns the number of unaccepted incomplete connections.
529.Pp
530.Dv SO_MAX_PACING_RATE
531instruct the socket and underlying network adapter layers to limit the
532transfer rate to the given unsigned 32-bit value in bytes per second.
533.Sh RETURN VALUES
534.Rv -std
535.Sh ERRORS
536The call succeeds unless:
537.Bl -tag -width Er
538.It Bq Er EBADF
539The argument
540.Fa s
541is not a valid descriptor.
542.It Bq Er ENOTSOCK
543The argument
544.Fa s
545is a file, not a socket.
546.It Bq Er ENOPROTOOPT
547The option is unknown at the level indicated.
548.It Bq Er EFAULT
549The address pointed to by
550.Fa optval
551is not in a valid part of the process address space.
552For
553.Fn getsockopt ,
554this error may also be returned if
555.Fa optlen
556is not in a valid part of the process address space.
557.It Bq Er EINVAL
558Installing an
559.Xr accept_filter 9
560on a non-listening socket was attempted.
561.It Bq Er ENOMEM
562A memory allocation failed that was required to service the request.
563.El
564.Sh SEE ALSO
565.Xr ioctl 2 ,
566.Xr listen 2 ,
567.Xr recvmsg 2 ,
568.Xr socket 2 ,
569.Xr getprotoent 3 ,
570.Xr mac 3 ,
571.Xr sysctl 3 ,
572.Xr ip 4 ,
573.Xr ip6 4 ,
574.Xr sctp 4 ,
575.Xr tcp 4 ,
576.Xr protocols 5 ,
577.Xr sysctl 8 ,
578.Xr accept_filter 9 ,
579.Xr bintime 9
580.Sh HISTORY
581The
582.Fn getsockopt
583and
584.Fn setsockopt
585system calls appeared in
586.Bx 4.2 .
587.Sh BUGS
588Several of the socket options should be handled at lower levels of the system.
589