Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / mach / hurd / sendmsg.c
blob2ef6a0fa09d163f663ef9991221286b849ebf8ad
1 /* Copyright (C) 2001-2014 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 License as
6 published by the Free Software Foundation; either version 2.1 of the
7 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; see the file COPYING.LIB. If
16 not, see <http://www.gnu.org/licenses/>. */
18 #include <errno.h>
19 #include <string.h>
20 #include <sys/socket.h>
21 #include <sys/un.h>
23 #include <hurd.h>
24 #include <hurd/fd.h>
25 #include <hurd/ifsock.h>
26 #include <hurd/socket.h>
28 /* Send a message described MESSAGE on socket FD.
29 Returns the number of bytes sent, or -1 for errors. */
30 ssize_t
31 __libc_sendmsg (int fd, const struct msghdr *message, int flags)
33 error_t err = 0;
34 struct sockaddr_un *addr = message->msg_name;
35 socklen_t addr_len = message->msg_namelen;
36 addr_port_t aport = MACH_PORT_NULL;
37 union
39 char *ptr;
40 vm_address_t addr;
41 } data = { .ptr = NULL };
42 char data_buf[2048];
43 mach_msg_type_number_t len;
44 mach_msg_type_number_t amount;
45 int dealloc = 0;
46 int i;
48 /* Find the total number of bytes to be written. */
49 len = 0;
50 for (i = 0; i < message->msg_iovlen; i++)
52 if (message->msg_iov[i].iov_len > 0)
54 /* As an optimization, if we only have a single non-empty
55 iovec, we set DATA and LEN from it. */
56 if (len == 0)
57 data.ptr = message->msg_iov[i].iov_base;
58 else
59 data.ptr = NULL;
61 len += message->msg_iov[i].iov_len;
65 if (data.ptr == NULL)
67 size_t to_copy;
68 char *buf;
70 /* Allocate a temporary buffer to hold the data. For small
71 amounts of data, we allocate a buffer on the stack. Larger
72 amounts of data are stored in a page-aligned buffer. The
73 limit of 2048 bytes is inspired by the MiG stubs. */
74 if (len > 2048)
76 err = __vm_allocate (__mach_task_self (), &data.addr, len, 1);
77 if (err)
79 __set_errno (err);
80 return -1;
82 dealloc = 1;
84 else
85 data.ptr = data_buf;
87 /* Copy the data into DATA. */
88 to_copy = len;
89 buf = data.ptr;
90 for (i = 0; i < len; i++)
92 #define min(a, b) ((a) > (b) ? (b) : (a))
93 size_t copy = min (message->msg_iov[i].iov_len, to_copy);
95 buf = __mempcpy (buf, message->msg_iov[i].iov_base, copy);
97 to_copy -= copy;
98 if (to_copy == 0)
99 break;
103 if (addr)
105 if (addr->sun_family == AF_LOCAL)
107 /* For the local domain, we must look up the name as a file
108 and talk to it with the ifsock protocol. */
109 file_t file = __file_name_lookup (addr->sun_path, 0, 0);
110 if (file == MACH_PORT_NULL)
112 if (dealloc)
113 __vm_deallocate (__mach_task_self (), data.addr, len);
114 return -1;
116 err = __ifsock_getsockaddr (file, &aport);
117 __mach_port_deallocate (__mach_task_self (), file);
118 if (err == MIG_BAD_ID || err == EOPNOTSUPP)
119 /* The file did not grok the ifsock protocol. */
120 err = ENOTSOCK;
121 if (err)
123 if (dealloc)
124 __vm_deallocate (__mach_task_self (), data.addr, len);
125 return __hurd_fail (err);
128 else
129 err = EIEIO;
132 err = HURD_DPORT_USE (fd,
134 if (err)
135 err = __socket_create_address (port,
136 addr->sun_family,
137 (char *) addr,
138 addr_len,
139 &aport);
140 if (! err)
142 /* Send the data. */
143 err = __socket_send (port, aport,
144 flags, data.ptr, len,
145 NULL,
146 MACH_MSG_TYPE_COPY_SEND, 0,
147 message->msg_control,
148 message->msg_controllen,
149 &amount);
150 __mach_port_deallocate (__mach_task_self (),
151 aport);
153 err;
154 }));
156 if (dealloc)
157 __vm_deallocate (__mach_task_self (), data.addr, len);
159 return err ? __hurd_sockfail (fd, flags, err) : amount;
162 weak_alias (__libc_sendmsg, sendmsg)
163 weak_alias (__libc_sendmsg, __sendmsg)