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