2.9
[glibc/nacl-glibc.git] / sysdeps / mach / hurd / recv.c
blob0cf6b7ce5843f4834a536f100fc3f336643c3783
1 /* Copyright (C) 1994,1997,2001,2005 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <errno.h>
20 #include <sys/socket.h>
21 #include <hurd.h>
22 #include <hurd/fd.h>
23 #include <hurd/socket.h>
24 #include <string.h>
26 /* Read N bytes into BUF from socket FD.
27 Returns the number read or -1 for errors. */
29 ssize_t
30 __recv (fd, buf, n, flags)
31 int fd;
32 void *buf;
33 size_t n;
34 int flags;
36 error_t err;
37 mach_port_t addrport;
38 char *bufp = buf;
39 mach_msg_type_number_t nread = n;
40 mach_port_t *ports;
41 mach_msg_type_number_t nports = 0;
42 char *cdata = NULL;
43 mach_msg_type_number_t clen = 0;
45 if (err = HURD_DPORT_USE (fd, __socket_recv (port, &addrport,
46 flags, &bufp, &nread,
47 &ports, &nports,
48 &cdata, &clen,
49 &flags,
50 n)))
51 return __hurd_sockfail (fd, flags, err);
53 __mach_port_deallocate (__mach_task_self (), addrport);
54 __vm_deallocate (__mach_task_self (), (vm_address_t) cdata, clen);
56 if (bufp != buf)
58 memcpy (buf, bufp, nread);
59 __vm_deallocate (__mach_task_self (), (vm_address_t) bufp, nread);
62 return nread;
64 weak_alias (__recv, recv)