1 .\" $NetBSD: recv.2,v 1.36 2013/07/14 14:29:09 njoly Exp $
3 .\" Copyright (c) 1983, 1990, 1991, 1993
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
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.
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
30 .\" @(#)recv.2 8.3 (Berkeley) 2/21/94
40 .Nd receive a message from a socket
46 .Fn recv "int s" "void *buf" "size_t len" "int flags"
48 .Fn recvfrom "int s" "void * restrict buf" "size_t len" "int flags" "struct sockaddr * restrict from" "socklen_t * restrict fromlen"
50 .Fn recvmsg "int s" "struct msghdr *msg" "int flags"
52 .Fn recvmmsg "int s" "struct mmsghdr *mmsg" "unsigned int vlen" "unsigned int flags" "struct timespec *timeout"
58 are used to receive messages from a socket,
59 and may be used to receive data on a socket whether or not
60 it is connection-oriented.
64 is non-nil, and the socket is not connection-oriented,
65 the source address of the message is filled in.
67 is a value-result parameter, initialized to the size of
68 the buffer associated with
70 and modified on return to indicate the actual size of the
75 call be used to receive multiple messages in the same call using an array of
77 elements with the following form, as defined in
78 .Ao Pa sys/socket.h Ac :
82 struct msghdr msg_hdr; /* the message to be sent */
83 unsigned int msg_len; /* number of bytes received */
89 member contains the number of bytes received for each
94 elements, which is limited to
96 If there is an error, a number fewer than
98 may be returned, and the error may be retrieved using
108 call will wait for one message, and set
117 will return if that time is exceeded.
121 call is normally used only on a
130 As it is redundant, it may not be supported in future releases.
136 routines return the length of the message on successful
139 returns the number of messages received.
140 If a message is too long to fit in the supplied buffer,
141 excess bytes may be discarded depending on the type of socket
142 the message is received from (see
145 If no messages are available at the socket, the
146 receive call waits for a message to arrive, unless
147 the socket is nonblocking (see
149 in which case the value
150 \-1 is returned and the external variable
154 If no data is available and the remote peer was shut down,
156 The receive calls normally return any data available,
157 up to the requested amount,
158 rather than waiting for receipt of the full amount requested;
159 this behavior is affected by the socket-level options
170 call may be used to determine when more data arrive.
174 argument to a recv call is formed by
176 one or more of the values:
177 .Bl -column MSG_CMSG_CLOEXEC -offset indent
178 .It Dv MSG_CMSG_CLOEXEC Ta set the close on exec property for passed file descriptors
179 .It Dv MSG_OOB Ta process out-of-band data
180 .It Dv MSG_PEEK Ta peek at incoming message
181 .It Dv MSG_WAITALL Ta wait for full request or error
185 flag requests receipt of out-of-band data
186 that would not be received in the normal data stream.
187 Some protocols place expedited data at the head of the normal
188 data queue, and thus this flag cannot be used with such protocols.
191 flag causes the receive operation to return data
192 from the beginning of the receive queue without removing that
194 Thus, a subsequent receive call will return the same data.
197 flag requests that the operation block until
198 the full request is satisfied.
199 However, the call may still return less data than requested
200 if a signal is caught, an error or disconnect occurs,
201 or the next data to be received is of a different type than that returned.
207 structure to minimize the number of directly supplied parameters.
208 This structure has the following form, as defined in
209 .Ao Pa sys/socket.h Ac :
213 void *msg_name; /* optional address */
214 socklen_t msg_namelen; /* size of address */
215 struct iovec *msg_iov; /* scatter/gather array */
216 int msg_iovlen; /* # elements in msg_iov */
217 void *msg_control; /* ancillary data, see below */
218 socklen_t msg_controllen; /* ancillary data buffer len */
219 int msg_flags; /* flags on received message */
227 specify the source address if the socket is unconnected;
229 may be given as a null pointer if no names are desired or required.
230 If the socket is connected,
238 describe scatter gather locations, as discussed in
243 points to a buffer for other protocol control related messages
244 or other miscellaneous ancillary data.
245 The messages are of the form:
248 socklen_t cmsg_len; /* data byte count, including hdr */
249 int cmsg_level; /* originating protocol */
250 int cmsg_type; /* protocol-specific type */
252 u_char cmsg_data[]; */
255 As an example, one could use this to learn of changes in the data-stream
256 in XNS/SPP, or in ISO, to obtain user-connection-request data by requesting
257 a recvmsg with no data buffer provided immediately after an
261 Open file descriptors are now passed as ancillary data for
274 field is set on return according to the message received.
276 indicates end-of-record;
277 the data returned completed a record (generally used with sockets of type
278 .Dv SOCK_SEQPACKET ) .
281 the trailing portion of a datagram was discarded because the datagram
282 was larger than the buffer supplied.
285 control data were discarded due to lack of space in the buffer
288 is returned to indicate that expedited or out-of-band data were received.
295 calls return the number of bytes received, or \-1
296 if an error occurred.
297 For connected sockets whose remote peer was shut down,
298 0 is returned when no more data is available.
301 calls return the number of messages received, or \-1
302 if an error occurred.
307 The socket is marked non-blocking, and the receive operation
309 a receive timeout had been set,
310 and the timeout expired before data were received.
314 is an invalid descriptor.
316 The receive buffer pointer(s) point outside the process's
319 The receive was interrupted by delivery of a signal before
320 any data were available.
322 The total length of the I/O is more than can be expressed by the ssize_t
325 The socket is associated with a connection-oriented protocol
326 and has not been connected (see
333 does not refer to a socket.
344 structure is less than or equal to 0
358 function call appeared in
362 function call appeared in