1 /* Copyright (C) 2001-2024 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 <https://www.gnu.org/licenses/>. */
20 #include <sys/socket.h>
25 #include <hurd/ifsock.h>
26 #include <hurd/socket.h>
27 #include <sysdep-cancel.h>
28 #include "hurd/hurdsocket.h"
30 /* Send a message described MESSAGE on socket FD.
31 Returns the number of bytes sent, or -1 for errors. */
33 __libc_sendmsg (int fd
, const struct msghdr
*message
, int flags
)
37 mach_port_t
*ports
= NULL
;
38 mach_msg_type_number_t nports
= 0;
40 struct sockaddr_un
*addr
= message
->msg_name
;
41 socklen_t addr_len
= message
->msg_namelen
;
42 addr_port_t aport
= MACH_PORT_NULL
;
47 } data
= { .ptr
= NULL
};
49 mach_msg_type_number_t len
;
55 /* Find the total number of bytes to be written. */
57 for (i
= 0; i
< message
->msg_iovlen
; i
++)
59 if (message
->msg_iov
[i
].iov_len
> 0)
61 /* As an optimization, if we only have a single non-empty
62 iovec, we set DATA and LEN from it. */
64 data
.ptr
= message
->msg_iov
[i
].iov_base
;
68 len
+= message
->msg_iov
[i
].iov_len
;
77 /* Allocate a temporary buffer to hold the data. For small
78 amounts of data, we allocate a buffer on the stack. Larger
79 amounts of data are stored in a page-aligned buffer. The
80 limit of 2048 bytes is inspired by the MiG stubs. */
83 err
= __vm_allocate (__mach_task_self (), &data
.addr
, len
, 1);
85 return __hurd_fail (err
);
91 /* Copy the data into DATA. */
94 for (i
= 0; i
< len
; i
++)
96 #define min(a, b) ((a) > (b) ? (b) : (a))
97 size_t copy
= min (message
->msg_iov
[i
].iov_len
, to_copy
);
99 buf
= __mempcpy (buf
, message
->msg_iov
[i
].iov_base
, copy
);
107 /* Allocate enough room for ports. */
108 cmsg
= CMSG_FIRSTHDR (message
);
109 for (; cmsg
; cmsg
= CMSG_NXTHDR ((struct msghdr
*) message
, cmsg
))
110 if (cmsg
->cmsg_level
== SOL_SOCKET
&& cmsg
->cmsg_type
== SCM_RIGHTS
)
111 nports
+= (cmsg
->cmsg_len
- CMSG_ALIGN (sizeof (struct cmsghdr
)))
115 ports
= __alloca (nports
* sizeof (mach_port_t
));
118 for (cmsg
= CMSG_FIRSTHDR (message
);
120 cmsg
= CMSG_NXTHDR ((struct msghdr
*) message
, cmsg
))
122 if (cmsg
->cmsg_level
== SOL_SOCKET
&& cmsg
->cmsg_type
== SCM_RIGHTS
)
124 /* SCM_RIGHTS support: send FDs. */
125 fds
= (int *) CMSG_DATA (cmsg
);
126 nfds
= (cmsg
->cmsg_len
- CMSG_ALIGN (sizeof (struct cmsghdr
)))
129 for (i
= 0; i
< nfds
; i
++)
134 err
= __io_restrict_auth (port
, &ports
[nports
],
138 /* We do not currently have flags to pass. */
151 if (addr
->sun_family
== AF_LOCAL
)
153 char *name
= _hurd_sun_path_dupa (addr
, addr_len
);
154 /* For the local domain, we must look up the name as a file
155 and talk to it with the ifsock protocol. */
156 file_t file
= __file_name_lookup (name
, 0, 0);
157 if (file
== MACH_PORT_NULL
)
162 err
= __ifsock_getsockaddr (file
, &aport
);
163 __mach_port_deallocate (__mach_task_self (), file
);
164 if (err
== MIG_BAD_ID
|| err
== EOPNOTSUPP
)
165 /* The file did not grok the ifsock protocol. */
174 err
= HURD_DPORT_USE_CANCEL (fd
,
177 err
= __socket_create_address (port
,
185 int cancel_oldtype
= LIBC_CANCEL_ASYNC();
186 err
= __socket_send (port
, aport
,
187 flags
, data
.ptr
, len
,
189 MACH_MSG_TYPE_COPY_SEND
,
191 message
->msg_control
,
192 message
->msg_controllen
,
194 LIBC_CANCEL_RESET (cancel_oldtype
);
195 if (MACH_PORT_VALID (aport
))
196 __mach_port_deallocate (__mach_task_self (),
204 for (i
= 0; i
< nports
; i
++)
205 __mach_port_deallocate (__mach_task_self (), ports
[i
]);
208 __vm_deallocate (__mach_task_self (), data
.addr
, len
);
211 return err
? __hurd_sockfail (fd
, flags
, err
) : amount
;
213 return __hurd_fail (err
);
216 weak_alias (__libc_sendmsg
, sendmsg
)
217 weak_alias (__libc_sendmsg
, __sendmsg
)