xref: /netbsd-src/lib/libc/sys/getsockopt.2 (revision 3b01aba77a7a698587faaae455bbfe740923c1f5)
1.\"	$NetBSD: getsockopt.2,v 1.19 2001/05/19 17:23:39 jdolecek Exp $
2.\"
3.\" Copyright (c) 1983, 1991, 1993
4.\"	The Regents of the University of California.  All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\" 3. All advertising materials mentioning features or use of this software
15.\"    must display the following acknowledgement:
16.\"	This product includes software developed by the University of
17.\"	California, Berkeley and its contributors.
18.\" 4. Neither the name of the University nor the names of its contributors
19.\"    may be used to endorse or promote products derived from this software
20.\"    without specific prior written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32.\" SUCH DAMAGE.
33.\"
34.\"     @(#)getsockopt.2	8.4 (Berkeley) 5/2/95
35.\"
36.Dd May 2, 1995
37.Dt GETSOCKOPT 2
38.Os
39.Sh NAME
40.Nm getsockopt ,
41.Nm setsockopt
42.Nd get and set options on sockets
43.Sh LIBRARY
44.Lb libc
45.Sh SYNOPSIS
46.Fd #include <sys/types.h>
47.Fd #include <sys/socket.h>
48.Ft int
49.Fn getsockopt "int s" "int level" "int optname" "void *optval" "socklen_t *optlen"
50.Ft int
51.Fn setsockopt "int s" "int level" "int optname" "const void *optval" "socklen_t optlen"
52.Sh DESCRIPTION
53.Fn getsockopt
54and
55.Fn setsockopt
56manipulate the
57.Em options
58associated with a socket.  Options may exist at multiple
59protocol levels; they are always present at the uppermost
60.Dq socket
61level.
62.Pp
63When manipulating socket options the level at which the
64option resides and the name of the option must be specified.
65To manipulate options at the socket level,
66.Fa level
67is specified as
68.Dv SOL_SOCKET .
69To manipulate options at any
70other level the protocol number of the appropriate protocol
71controlling the option is supplied.  For example,
72to indicate that an option is to be interpreted by the
73.Tn TCP
74protocol,
75.Fa level
76should be set to the protocol number of
77.Tn TCP ;
78see
79.Xr getprotoent 3 .
80.Pp
81The parameters
82.Fa optval
83and
84.Fa optlen
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.  For
91.Fn getsockopt ,
92.Fa optlen
93is a value-result parameter, initially containing the
94size of the buffer pointed to by
95.Fa optval ,
96and modified on return to indicate the actual size of
97the value returned.  If no option value is
98to be supplied or returned,
99.Fa optval
100may be NULL.
101.Pp
102.Fa optname
103and any specified options are passed uninterpreted to the appropriate
104protocol module for interpretation.
105The include file
106.Ao Pa sys/socket.h Ac
107contains definitions for
108socket level options, described below.
109Options at other protocol levels vary in format and
110name; consult the appropriate entries in
111section
1124 of the manual.
113.Pp
114Most socket-level options utilize an
115.Fa int
116parameter for
117.Fa optval .
118For
119.Fn setsockopt ,
120the parameter should be non-zero to enable a boolean option,
121or zero if the option is to be disabled.
122.Dv SO_LINGER
123uses a
124.Fa struct linger
125parameter, defined in
126.Ao Pa sys/socket.h Ac ,
127which specifies the desired state of the option and the
128linger interval (see below).
129.Dv SO_SNDTIMEO
130and
131.Dv SO_RCVTIMEO
132use a
133.Fa struct timeval
134parameter, defined in
135.Ao Pa sys/time.h Ac .
136.Pp
137The following options are recognized at the socket level.
138Except as noted, each may be examined with
139.Fn getsockopt
140and set with
141.Fn setsockopt .
142.Bl -column SO_OOBINLINE -offset indent
143.It Dv SO_DEBUG Ta "enables recording of debugging information"
144.It Dv SO_REUSEADDR Ta "enables local address reuse"
145.It Dv SO_REUSEPORT Ta "enables duplicate address and port bindings"
146.It Dv SO_KEEPALIVE Ta "enables keep connections alive"
147.It Dv SO_DONTROUTE Ta "enables routing bypass for outgoing messages"
148.It Dv SO_LINGER  Ta "linger on close if data present"
149.It Dv SO_BROADCAST Ta "enables permission to transmit broadcast messages"
150.It Dv SO_OOBINLINE Ta "enables reception of out-of-band data in band"
151.It Dv SO_SNDBUF Ta "set buffer size for output"
152.It Dv SO_RCVBUF Ta "set buffer size for input"
153.It Dv SO_SNDLOWAT Ta "set minimum count for output"
154.It Dv SO_RCVLOWAT Ta "set minimum count for input"
155.It Dv SO_SNDTIMEO Ta "set timeout value for output"
156.It Dv SO_RCVTIMEO Ta "set timeout value for input"
157.It Dv SO_TIMESTAMP Ta "enables reception of a timestamp with datagrams"
158.It Dv SO_TYPE Ta "get the type of the socket (get only)"
159.It Dv SO_ERROR Ta "get and clear error on the socket (get only)"
160.El
161.Pp
162.Dv SO_DEBUG
163enables debugging in the underlying protocol modules.
164.Dv SO_REUSEADDR
165indicates that the rules used in validating addresses supplied
166in a
167.Xr bind 2
168call should allow reuse of local addresses.
169.Dv SO_REUSEPORT
170allows completely duplicate bindings by multiple processes
171if they all set
172.Dv SO_REUSEPORT
173before binding the port.
174This option permits multiple instances of a program to each
175receive UDP/IP multicast or broadcast datagrams destined for the bound port.
176.Dv SO_KEEPALIVE
177enables the
178periodic transmission of messages on a connected socket.  Should the
179connected party fail to respond to these messages, the connection is
180considered broken and processes using the socket are notified via a
181.Dv SIGPIPE
182signal when attempting to send data.
183.Dv SO_DONTROUTE
184indicates that outgoing messages should
185bypass the standard routing facilities.  Instead, messages are directed
186to the appropriate network interface according to the network portion
187of the destination address.
188.Pp
189.Dv SO_LINGER
190controls the action taken when unsent messages
191are queued on socket and a
192.Xr close 2
193is performed.
194If the socket promises reliable delivery of data and
195.Dv SO_LINGER is 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, measured in
200seconds, termed the linger interval, is specified 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 limit on these values.
237.Pp
238.Dv SO_SNDLOWAT
239is an option to set the minimum count for output operations.
240Most output operations process all of the data supplied
241by the call, delivering data to the protocol for transmission
242and blocking as necessary for flow control.
243Nonblocking output operations will process as much data as permitted
244subject to flow control without blocking, but will process no data
245if flow control does not allow the smaller of the low water mark value
246or the entire request to be processed.
247A
248.Xr select 2
249or
250.Xr poll 2
251operation testing the ability to write to a socket will return true
252only if the low water mark amount could be processed.
253The default value for
254.Dv SO_SNDLOWAT
255is set to a convenient size for network efficiency, often 1024.
256.Dv SO_RCVLOWAT
257is an option to set the minimum count for input operations.
258In general, receive calls will block until any (non-zero) amount of data
259is received, then return with the smaller of the amount available or the amount
260requested.
261The default value for
262.Dv SO_RCVLOWAT
263is 1.
264If
265.Dv SO_RCVLOWAT
266is set to a larger value, blocking receive calls normally
267wait until they have received the smaller of the low water mark value
268or the requested amount.
269Receive calls may still return less than the low water mark if an error
270occurs, a signal is caught, or the type of data next in the receive queue
271is different than that returned.
272.Pp
273.Dv SO_SNDTIMEO
274is an option to set a timeout value for output operations.
275It accepts a
276.Fa struct timeval
277parameter with the number of seconds and microseconds
278used to limit waits for output operations to complete.
279If a send operation has blocked for this much time,
280it returns with a partial count
281or with the error
282.Er EAGAIN
283if no data were sent.
284In the current implementation, this timer is restarted each time additional
285data are delivered to the protocol,
286implying that the limit applies to output portions ranging in size
287from the low water mark to the high water mark for output.
288.Dv SO_RCVTIMEO
289is an option to set a timeout value for input operations.
290It accepts a
291.Fa struct timeval
292parameter with the number of seconds and microseconds
293used to limit waits for input operations to complete.
294In the current implementation, this timer is restarted each time additional
295data are received by the protocol,
296and thus the limit is in effect an inactivity timer.
297If a receive operation has been blocked for this much time without
298receiving additional data, it returns with a short count
299or with the error
300.Er EAGAIN
301if no data were received.
302.Pp
303If the
304.Dv SO_TIMESTAMP
305option is enabled on a
306.Dv SOCK_DGRAM
307socket, the
308.Xr recvmsg 2
309call will return a timestamp corresponding to when the datagram was
310received.
311The msg_control field in the msghdr structure points to a buffer
312that contains a cmsghdr structure followed by a struct timeval.
313The cmsghdr fields have the following values:
314.Bd -literal
315cmsg_len = sizeof(struct timeval)
316cmsg_level = SOL_SOCKET
317cmsg_type = SCM_TIMESTAMP
318.Ed
319.Pp
320Finally,
321.Dv SO_TYPE
322and
323.Dv SO_ERROR
324are options used only with
325.Fn getsockopt .
326.Dv SO_TYPE
327returns the type of the socket, such as
328.Dv SOCK_STREAM ;
329it is useful for servers that inherit sockets on startup.
330.Dv SO_ERROR
331returns any pending error on the socket and clears
332the error status.
333It may be used to check for asynchronous errors on connected
334datagram sockets or for other asynchronous errors.
335.Sh RETURN VALUES
336A 0 is returned if the call succeeds, -1 if it fails.
337.Sh ERRORS
338The call succeeds unless:
339.Bl -tag -width Er
340.It Bq Er EBADF
341The argument
342.Fa s
343is not a valid descriptor.
344.It Bq Er ENOTSOCK
345The argument
346.Fa s
347is a file, not a socket.
348.It Bq Er ENOPROTOOPT
349The option is unknown at the level indicated.
350.It Bq Er EFAULT
351The address pointed to by
352.Fa optval
353is not in a valid part of the process address space.
354For
355.Fn getsockopt ,
356this error may also be returned if
357.Fa optlen
358is not in a valid part of the process address space.
359.El
360.Sh SEE ALSO
361.Xr ioctl 2 ,
362.Xr socket 2 ,
363.Xr select 2 ,
364.Xr poll 2 ,
365.Xr getprotoent 3 ,
366.Xr protocols 5
367.Sh BUGS
368Several of the socket options should be handled at lower levels of the system.
369.Sh HISTORY
370The
371.Fn getsockopt
372system call appeared in
373.Bx 4.2 .
374