]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/recv.2
This commit was generated by cvs2svn to compensate for changes in r42788,
[FreeBSD/FreeBSD.git] / lib / libc / sys / recv.2
1 .\" Copyright (c) 1983, 1990, 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 .\"     @(#)recv.2      8.3 (Berkeley) 2/21/94
33 .\"
34 .Dd February 21, 1994
35 .Dt RECV 2
36 .Os BSD 4.3r
37 .Sh NAME
38 .Nm recv ,
39 .Nm recvfrom ,
40 .Nm recvmsg
41 .Nd receive a message from a socket
42 .Sh SYNOPSIS
43 .Fd #include <sys/types.h>
44 .Fd #include <sys/socket.h>
45 .Ft ssize_t
46 .Fn recv "int s" "void *buf" "size_t len" "int flags"
47 .Ft ssize_t
48 .Fn recvfrom "int s" "void *buf" "size_t len" "int flags" "struct sockaddr *from" "int *fromlen"
49 .Ft ssize_t
50 .Fn recvmsg "int s" "struct msghdr *msg" "int flags"
51 .Sh DESCRIPTION
52 .Fn Recvfrom
53 and
54 .Fn recvmsg
55 are used to receive messages from a socket,
56 and may be used to receive data on a socket whether or not
57 it is connection-oriented.
58 .Pp
59 If
60 .Fa from
61 is non-nil, and the socket is not connection-oriented,
62 the source address of the message is filled in.
63 .Fa Fromlen
64 is a value-result parameter, initialized to the size of
65 the buffer associated with
66 .Fa from ,
67 and modified on return to indicate the actual size of the
68 address stored there.
69 .Pp
70 The 
71 .Fn recv
72 call is normally used only on a 
73 .Em connected
74 socket (see
75 .Xr connect 2 )
76 and is identical to
77 .Fn recvfrom
78 with a nil
79 .Fa from
80 parameter.
81 As it is redundant, it may not be supported in future releases.
82 .Pp
83 All three routines return the length of the message on successful
84 completion.
85 If a message is too long to fit in the supplied buffer,
86 excess bytes may be discarded depending on the type of socket
87 the message is received from (see
88 .Xr socket 2 ) .
89 .Pp
90 If no messages are available at the socket, the
91 receive call waits for a message to arrive, unless
92 the socket is nonblocking (see
93 .Xr fcntl 2 )
94 in which case the value
95 -1 is returned and the external variable
96 .Va errno
97 set to
98 .Er EAGAIN .
99 The receive calls normally return any data available,
100 up to the requested amount,
101 rather than waiting for receipt of the full amount requested;
102 this behavior is affected by the socket-level options
103 .Dv SO_RCVLOWAT
104 and
105 .Dv SO_RCVTIMEO
106 described in
107 .Xr getsockopt 2 .
108 .Pp
109 The
110 .Xr select 2
111 call may be used to determine when more data arrive.
112 .Pp
113 The
114 .Fa flags
115 argument to a recv call is formed by 
116 .Em or Ap ing
117 one or more of the values:
118 .Bl -column MSG_WAITALL -offset indent
119 .It Dv MSG_OOB Ta process out-of-band data
120 .It Dv MSG_PEEK Ta peek at incoming message
121 .It Dv MSG_WAITALL Ta wait for full request or error
122 .El
123 The
124 .Dv MSG_OOB
125 flag requests receipt of out-of-band data
126 that would not be received in the normal data stream.
127 Some protocols place expedited data at the head of the normal
128 data queue, and thus this flag cannot be used with such protocols.
129 The MSG_PEEK flag causes the receive operation to return data
130 from the beginning of the receive queue without removing that
131 data from the queue.
132 Thus, a subsequent receive call will return the same data.
133 The MSG_WAITALL flag requests that the operation block until
134 the full request is satisfied.
135 However, the call may still return less data than requested
136 if a signal is caught, an error or disconnect occurs,
137 or the next data to be received is of a different type than that returned.
138 .Pp
139 The
140 .Fn recvmsg
141 call uses a 
142 .Fa msghdr
143 structure to minimize the number of directly supplied parameters.
144 This structure has the following form, as defined in
145 .Ao Pa sys/socket.h Ac :
146 .Pp
147 .Bd -literal
148 struct msghdr {
149         caddr_t msg_name;       /* optional address */
150         u_int   msg_namelen;    /* size of address */
151         struct  iovec *msg_iov; /* scatter/gather array */
152         u_int   msg_iovlen;     /* # elements in msg_iov */
153         caddr_t msg_control;    /* ancillary data, see below */
154         u_int   msg_controllen; /* ancillary data buffer len */
155         int     msg_flags;      /* flags on received message */
156 };
157 .Ed
158 .Pp
159 Here
160 .Fa msg_name
161 and
162 .Fa msg_namelen
163 specify the destination address if the socket is unconnected;
164 .Fa msg_name
165 may be given as a null pointer if no names are desired or required.
166 .Fa Msg_iov
167 and
168 .Fa msg_iovlen
169 describe scatter gather locations, as discussed in
170 .Xr read 2 .
171 .Fa Msg_control ,
172 which has length
173 .Fa msg_controllen ,
174 points to a buffer for other protocol control related messages
175 or other miscellaneous ancillary data.
176 The messages are of the form:
177 .Bd -literal
178 struct cmsghdr {
179         u_int   cmsg_len;       /* data byte count, including hdr */
180         int     cmsg_level;     /* originating protocol */
181         int     cmsg_type;      /* protocol-specific type */
182 /* followed by
183         u_char  cmsg_data[]; */
184 };
185 .Ed
186 As an example, one could use this to learn of changes in the data-stream
187 in XNS/SPP, or in ISO, to obtain user-connection-request data by requesting
188 a recvmsg with no data buffer provided immediately after an
189 .Fn accept
190 call.
191 .Pp
192 Open file descriptors are now passed as ancillary data for
193 .Dv AF_UNIX
194 domain sockets, with
195 .Fa cmsg_level
196 set to
197 .Dv SOL_SOCKET
198 and
199 .Fa cmsg_type
200 set to
201 .Dv SCM_RIGHTS .
202 .Pp
203 Process credentials can also be passed as ancillary data for
204 .Dv AF_UNIX
205 domain sockets using a
206 .Fa cmsg_type
207 of
208 .Dv SCM_CREDS.
209 In this case,
210 .Fa cmsg_data
211 should be a structure of type
212 .Fa cmsgcred ,
213 which is defined in
214 .Ao Pa sys/socket.h Ac
215 as follows:
216 .Pp
217 .Bd -literal
218 struct cmsgcred {
219         pid_t   cmcred_pid;             /* PID of sending process */
220         uid_t   cmcred_uid;             /* real UID of sending process */
221         uid_t   cmcred_euid;            /* effective UID of sending process */
222         gid_t   cmcred_gid;             /* real GID of sending process */
223         short   cmcred_ngroups;         /* number or groups */
224         gid_t   cmcred_groups[CMGROUP_MAX];     /* groups */
225 };
226 .Ed
227 .Pp
228 The kernel will fill in the credential information of the sending process
229 and deliver it to the receiver.
230 .Pp
231 The
232 .Fa msg_flags
233 field is set on return according to the message received.
234 .Dv MSG_EOR
235 indicates end-of-record;
236 the data returned completed a record (generally used with sockets of type
237 .Dv SOCK_SEQPACKET ) .
238 .Dv MSG_TRUNC
239 indicates that
240 the trailing portion of a datagram was discarded because the datagram
241 was larger than the buffer supplied.
242 .Dv MSG_CTRUNC
243 indicates that some
244 control data were discarded due to lack of space in the buffer
245 for ancillary data.
246 .Dv MSG_OOB
247 is returned to indicate that expedited or out-of-band data were received.
248 .Pp
249 .Sh RETURN VALUES
250 These calls return the number of bytes received, or -1
251 if an error occurred.
252 .Sh ERRORS
253 The calls fail if:
254 .Bl -tag -width ENOTCONNAA
255 .It Bq Er EBADF
256 The argument
257 .Fa s
258 is an invalid descriptor.
259 .It Bq Er ENOTCONN
260 The socket is associated with a connection-oriented protocol
261 and has not been connected (see
262 .Xr connect 2
263 and
264 .Xr accept 2 ).
265 .It Bq Er ENOTSOCK
266 The argument
267 .Fa s
268 does not refer to a socket.
269 .It Bq Er EAGAIN
270 The socket is marked non-blocking, and the receive operation
271 would block, or
272 a receive timeout had been set,
273 and the timeout expired before data were received.
274 .It Bq Er EINTR
275 The receive was interrupted by delivery of a signal before
276 any data were available.
277 .It Bq Er EFAULT
278 The receive buffer pointer(s) point outside the process's
279 address space.
280 .El
281 .Sh SEE ALSO
282 .Xr fcntl 2 ,
283 .Xr getsockopt 2 ,
284 .Xr read 2 ,
285 .Xr select 2 ,
286 .Xr socket 2
287 .Sh HISTORY
288 The
289 .Fn recv
290 function call appeared in
291 .Bx 4.2 .