1.\" $NetBSD: getsockopt.2,v 1.27 2003/04/16 13:34:52 wiz 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 October 22, 2001 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.In sys/socket.h 47.Ft int 48.Fn getsockopt "int s" "int level" "int optname" "void * restrict optval" "socklen_t * restrict 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. 58Options 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. 72For example, to 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. 91For 92.Fn getsockopt , 93.Fa optlen 94is a value-result parameter, 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 to be supplied or returned, 100.Fa optval 101may be NULL. 102.Pp 103.Fa optname 104and any specified options are passed uninterpreted to the appropriate 105protocol module for interpretation. 106The include file 107.Ao Pa sys/socket.h Ac 108contains definitions for 109socket level options, described below. 110Options at other protocol levels vary in format and 111name; consult the appropriate entries in 112section 1134 of the manual. 114.Pp 115Most socket-level options use an 116.Fa int 117parameter for 118.Fa optval . 119For 120.Fn setsockopt , 121the parameter should be non-zero to enable a boolean option, 122or zero if the option is to be disabled. 123.Dv SO_LINGER 124uses a 125.Fa struct linger 126parameter, defined in 127.Ao Pa sys/socket.h Ac , 128which specifies the desired state of the option and the 129linger interval (see below). 130.Dv SO_SNDTIMEO 131and 132.Dv SO_RCVTIMEO 133use a 134.Fa struct timeval 135parameter, defined in 136.Ao Pa sys/time.h Ac . 137.Pp 138The following options are recognized at the socket level. 139Except as noted, each may be examined with 140.Fn getsockopt 141and set with 142.Fn setsockopt . 143.Bl -column SO_OOBINLINE -offset indent 144.It Dv SO_DEBUG Ta "enables recording of debugging information" 145.It Dv SO_REUSEADDR Ta "enables local address reuse" 146.It Dv SO_REUSEPORT Ta "enables duplicate address and port bindings" 147.It Dv SO_KEEPALIVE Ta "enables keep connections alive" 148.It Dv SO_DONTROUTE Ta "enables routing bypass for outgoing messages" 149.It Dv SO_LINGER Ta "linger on close if data present" 150.It Dv SO_BROADCAST Ta "enables permission to transmit broadcast messages" 151.It Dv SO_OOBINLINE Ta "enables reception of out-of-band data in band" 152.It Dv SO_SNDBUF Ta "set buffer size for output" 153.It Dv SO_RCVBUF Ta "set buffer size for input" 154.It Dv SO_SNDLOWAT Ta "set minimum count for output" 155.It Dv SO_RCVLOWAT Ta "set minimum count for input" 156.It Dv SO_SNDTIMEO Ta "set timeout value for output" 157.It Dv SO_RCVTIMEO Ta "set timeout value for input" 158.It Dv SO_TIMESTAMP Ta "enables reception of a timestamp with datagrams" 159.It Dv SO_TYPE Ta "get the type of the socket (get only)" 160.It Dv SO_ERROR Ta "get and clear error on the socket (get only)" 161.El 162.Pp 163.Dv SO_DEBUG 164enables debugging in the underlying protocol modules. 165.Dv SO_REUSEADDR 166indicates that the rules used in validating addresses supplied 167in a 168.Xr bind 2 169call should allow reuse of local addresses. 170.Dv SO_REUSEPORT 171allows completely duplicate bindings by multiple processes 172if they all set 173.Dv SO_REUSEPORT 174before binding the port. 175This option permits multiple instances of a program to each 176receive UDP/IP multicast or broadcast datagrams destined for the bound port. 177.Dv SO_KEEPALIVE 178enables the 179periodic transmission of messages on a connected socket. 180Should the connected party fail to respond to these messages, the connection 181is considered broken and processes using the socket are notified via a 182.Dv SIGPIPE 183signal when attempting to send data. 184.Dv SO_DONTROUTE 185indicates that outgoing messages should 186bypass the standard routing facilities. 187Instead, messages are directed to the appropriate network interface 188according to the network portion of the destination address. 189.Pp 190.Dv SO_LINGER 191controls the action taken when unsent messages 192are queued on socket and a 193.Xr close 2 194is performed. 195If the socket promises reliable delivery of data and 196.Dv SO_LINGER 197is set, the system will block the process on the 198.Xr close 2 199attempt until it is able to transmit the data or until it decides it 200is unable to deliver the information (a timeout period, measured in 201seconds, termed the linger interval, is specified in the 202.Fn setsockopt 203call when 204.Dv SO_LINGER 205is requested). 206If 207.Dv SO_LINGER 208is disabled and a 209.Xr close 2 210is issued, the system will process the close in a manner that allows 211the process to continue as quickly as possible. 212.Pp 213The option 214.Dv SO_BROADCAST 215requests permission to send broadcast datagrams 216on the socket. 217Broadcast was a privileged operation in earlier versions of the system. 218With protocols that support out-of-band data, the 219.Dv SO_OOBINLINE 220option 221requests that out-of-band data be placed in the normal data input queue 222as received; it will then be accessible with 223.Xr recv 2 224or 225.Xr read 2 226calls without the 227.Dv MSG_OOB 228flag. 229Some protocols always behave as if this option is set. 230.Dv SO_SNDBUF 231and 232.Dv SO_RCVBUF 233are options to adjust the normal 234buffer sizes allocated for output and input buffers, respectively. 235The buffer size may be increased for high-volume connections, 236or may be decreased to limit the possible backlog of incoming data. 237The system places an absolute limit on these values. 238.Pp 239.Dv SO_SNDLOWAT 240is an option to set the minimum count for output operations. 241Most output operations process all of the data supplied 242by the call, delivering data to the protocol for transmission 243and blocking as necessary for flow control. 244Nonblocking output operations will process as much data as permitted 245subject to flow control without blocking, but will process no data 246if flow control does not allow the smaller of the low water mark value 247or the entire request to be processed. 248A 249.Xr select 2 250or 251.Xr poll 2 252operation testing the ability to write to a socket will return true 253only if the low water mark amount could be processed. 254The default value for 255.Dv SO_SNDLOWAT 256is set to a convenient size for network efficiency, often 1024. 257.Dv SO_RCVLOWAT 258is an option to set the minimum count for input operations. 259In general, receive calls will block until any (non-zero) amount of data 260is received, then return with the smaller of the amount available or the amount 261requested. 262The default value for 263.Dv SO_RCVLOWAT 264is 1. 265If 266.Dv SO_RCVLOWAT 267is set to a larger value, blocking receive calls normally 268wait until they have received the smaller of the low water mark value 269or the requested amount. 270Receive calls may still return less than the low water mark if an error 271occurs, a signal is caught, or the type of data next in the receive queue 272is different than that returned. 273.Pp 274.Dv SO_SNDTIMEO 275is an option to set a timeout value for output operations. 276It accepts a 277.Fa struct timeval 278parameter with the number of seconds and microseconds 279used to limit waits for output operations to complete. 280If a send operation has blocked for this much time, 281it returns with a partial count 282or with the error 283.Er EAGAIN 284if no data were sent. 285In the current implementation, this timer is restarted each time additional 286data are delivered to the protocol, 287implying that the limit applies to output portions ranging in size 288from the low water mark to the high water mark for output. 289.Dv SO_RCVTIMEO 290is an option to set a timeout value for input operations. 291It accepts a 292.Fa struct timeval 293parameter with the number of seconds and microseconds 294used to limit waits for input operations to complete. 295In the current implementation, this timer is restarted each time additional 296data are received by the protocol, 297and thus the limit is in effect an inactivity timer. 298If a receive operation has been blocked for this much time without 299receiving additional data, it returns with a short count 300or with the error 301.Er EAGAIN 302if no data were received. 303.Pp 304If the 305.Dv SO_TIMESTAMP 306option is enabled on a 307.Dv SOCK_DGRAM 308socket, the 309.Xr recvmsg 2 310call will return a timestamp corresponding to when the datagram was 311received. 312The msg_control field in the msghdr structure points to a buffer 313that contains a cmsghdr structure followed by a struct timeval. 314The cmsghdr fields have the following values: 315.Bd -literal 316cmsg_len = sizeof(struct timeval) 317cmsg_level = SOL_SOCKET 318cmsg_type = SCM_TIMESTAMP 319.Ed 320.Pp 321Finally, 322.Dv SO_TYPE 323and 324.Dv SO_ERROR 325are options used only with 326.Fn getsockopt . 327.Dv SO_TYPE 328returns the type of the socket, such as 329.Dv SOCK_STREAM ; 330it is useful for servers that inherit sockets on startup. 331.Dv SO_ERROR 332returns any pending error on the socket and clears 333the error status. 334It may be used to check for asynchronous errors on connected 335datagram sockets or for other asynchronous errors. 336.Sh RETURN VALUES 337A 0 is returned if the call succeeds, -1 if it fails. 338.Sh ERRORS 339The call succeeds unless: 340.Bl -tag -width Er 341.It Bq Er EBADF 342The argument 343.Fa s 344is not a valid descriptor. 345.It Bq Er ENOTSOCK 346The argument 347.Fa s 348is a file, not a socket. 349.It Bq Er ENOPROTOOPT 350The option is unknown at the level indicated. 351.It Bq Er EFAULT 352The address pointed to by 353.Fa optval 354is not in a valid part of the process address space. 355For 356.Fn getsockopt , 357this error may also be returned if 358.Fa optlen 359is not in a valid part of the process address space. 360.El 361.Sh SEE ALSO 362.Xr ioctl 2 , 363.Xr poll 2 , 364.Xr select 2 , 365.Xr socket 2 , 366.Xr getprotoent 3 , 367.Xr protocols 5 368.Sh HISTORY 369The 370.Fn getsockopt 371system call appeared in 372.Bx 4.2 . 373.Sh BUGS 374Several of the socket options should be handled at lower levels of the system. 375