1 /* Copyright (C) 1992-2015 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, see
16 <http://www.gnu.org/licenses/>. */
20 #include <sys/socket.h>
25 #include <hurd/socket.h>
27 /* Create two new sockets, of type TYPE in domain DOMAIN and using
28 protocol PROTOCOL, which are connected to each other, and put file
29 descriptors for them in FDS[0] and FDS[1]. If PROTOCOL is zero,
30 one will be chosen automatically. Returns 0 on success, -1 for errors. */
32 __socketpair (int domain
, int type
, int protocol
, int fds
[2])
35 socket_t server
, sock1
, sock2
;
39 return __hurd_fail (EINVAL
);
41 /* Find the domain's socket server. */
42 server
= _hurd_socket_server (domain
, 0);
43 if (server
== MACH_PORT_NULL
)
46 /* Create two sockets and connect them together. */
48 err
= __socket_create (server
, type
, protocol
, &sock1
);
49 if (err
== MACH_SEND_INVALID_DEST
|| err
== MIG_SERVER_DIED
50 || err
== MIG_BAD_ID
|| err
== EOPNOTSUPP
)
52 /* On the first use of the socket server during the operation,
53 allow for the old server port dying. */
54 server
= _hurd_socket_server (domain
, 1);
55 if (server
== MACH_PORT_NULL
)
57 err
= __socket_create (server
, type
, protocol
, &sock1
);
60 return __hurd_fail (err
);
61 if (err
= __socket_create (server
, type
, protocol
, &sock2
))
63 __mach_port_deallocate (__mach_task_self (), sock1
);
64 return __hurd_fail (err
);
66 if (err
= __socket_connect2 (sock1
, sock2
))
68 __mach_port_deallocate (__mach_task_self (), sock1
);
69 __mach_port_deallocate (__mach_task_self (), sock2
);
70 return __hurd_fail (err
);
73 /* Put the sockets into file descriptors. */
75 d1
= _hurd_intern_fd (sock1
, O_IGNORE_CTTY
, 1);
78 __mach_port_deallocate (__mach_task_self (), sock2
);
81 d2
= _hurd_intern_fd (sock2
, O_IGNORE_CTTY
, 1);
86 return __hurd_fail (err
);
94 weak_alias (__socketpair
, socketpair
)