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