2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan Metzmacher 2009
6 ** NOTE! The following LGPL license applies to the tsocket
7 ** library. This does NOT imply that all of Samba is released
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 3 of the License, or (at your option) any later version.
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 #include "system/filesys.h"
26 #include "system/network.h"
28 #include "tsocket_internal.h"
30 static int tsocket_bsd_error_from_errno(int ret
,
48 if (sys_errno
== EINTR
) {
53 if (sys_errno
== EINPROGRESS
) {
58 if (sys_errno
== EAGAIN
) {
64 if (sys_errno
== EWOULDBLOCK
) {
73 static int tsocket_bsd_common_prepare_fd(int fd
, bool high_fd
)
86 /* first make a fd >= 3 */
96 for (i
=0; i
<num_fds
; i
++) {
105 /* fd should be nonblocking. */
108 #define FLAG_TO_SET O_NONBLOCK
111 #define FLAG_TO_SET O_NDELAY
113 #define FLAG_TO_SET FNDELAY
117 if ((flags
= fcntl(fd
, F_GETFL
)) == -1) {
121 flags
|= FLAG_TO_SET
;
122 if (fcntl(fd
, F_SETFL
, flags
) == -1) {
128 /* fd should be closed on exec() */
130 result
= flags
= fcntl(fd
, F_GETFD
, 0);
133 result
= fcntl(fd
, F_SETFD
, flags
);
150 static ssize_t
tsocket_bsd_pending(int fd
)
156 ret
= ioctl(fd
, FIONREAD
, &value
);
162 /* this should not be reached */
175 * if no data is available check if the socket is in error state. For
176 * dgram sockets it's the way to return ICMP error messages of
177 * connected sockets to the caller.
179 ret
= getsockopt(fd
, SOL_SOCKET
, SO_ERROR
, &error
, &len
);
190 static const struct tsocket_address_ops tsocket_address_bsd_ops
;
192 struct tsocket_address_bsd
{
193 socklen_t sa_socklen
;
196 struct sockaddr_in in
;
198 struct sockaddr_in6 in6
;
200 struct sockaddr_un un
;
201 struct sockaddr_storage ss
;
205 int _tsocket_address_bsd_from_sockaddr(TALLOC_CTX
*mem_ctx
,
208 struct tsocket_address
**_addr
,
209 const char *location
)
211 struct tsocket_address
*addr
;
212 struct tsocket_address_bsd
*bsda
;
214 if (sa_socklen
< sizeof(sa
->sa_family
)) {
219 switch (sa
->sa_family
) {
221 if (sa_socklen
> sizeof(struct sockaddr_un
)) {
222 sa_socklen
= sizeof(struct sockaddr_un
);
226 if (sa_socklen
< sizeof(struct sockaddr_in
)) {
230 sa_socklen
= sizeof(struct sockaddr_in
);
234 if (sa_socklen
< sizeof(struct sockaddr_in6
)) {
238 sa_socklen
= sizeof(struct sockaddr_in6
);
242 errno
= EAFNOSUPPORT
;
246 if (sa_socklen
> sizeof(struct sockaddr_storage
)) {
251 addr
= tsocket_address_create(mem_ctx
,
252 &tsocket_address_bsd_ops
,
254 struct tsocket_address_bsd
,
263 memcpy(&bsda
->u
.ss
, sa
, sa_socklen
);
265 bsda
->sa_socklen
= sa_socklen
;
266 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
267 bsda
->u
.sa
.sa_len
= bsda
->sa_socklen
;
274 ssize_t
tsocket_address_bsd_sockaddr(const struct tsocket_address
*addr
,
278 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
279 struct tsocket_address_bsd
);
286 if (sa_socklen
< bsda
->sa_socklen
) {
291 if (sa_socklen
> bsda
->sa_socklen
) {
292 memset(sa
, 0, sa_socklen
);
293 sa_socklen
= bsda
->sa_socklen
;
296 memcpy(sa
, &bsda
->u
.ss
, sa_socklen
);
297 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
298 sa
->sa_len
= sa_socklen
;
303 bool tsocket_address_is_inet(const struct tsocket_address
*addr
, const char *fam
)
305 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
306 struct tsocket_address_bsd
);
312 switch (bsda
->u
.sa
.sa_family
) {
314 if (strcasecmp(fam
, "ip") == 0) {
318 if (strcasecmp(fam
, "ipv4") == 0) {
325 if (strcasecmp(fam
, "ip") == 0) {
329 if (strcasecmp(fam
, "ipv6") == 0) {
340 int _tsocket_address_inet_from_strings(TALLOC_CTX
*mem_ctx
,
344 struct tsocket_address
**_addr
,
345 const char *location
)
347 struct addrinfo hints
;
348 struct addrinfo
*result
= NULL
;
354 * we use SOCKET_STREAM here to get just one result
355 * back from getaddrinfo().
357 hints
.ai_socktype
= SOCK_STREAM
;
358 hints
.ai_flags
= AI_NUMERICHOST
| AI_NUMERICSERV
;
360 if (strcasecmp(fam
, "ip") == 0) {
361 hints
.ai_family
= AF_UNSPEC
;
369 } else if (strcasecmp(fam
, "ipv4") == 0) {
370 hints
.ai_family
= AF_INET
;
375 } else if (strcasecmp(fam
, "ipv6") == 0) {
376 hints
.ai_family
= AF_INET6
;
382 errno
= EAFNOSUPPORT
;
386 snprintf(port_str
, sizeof(port_str
) - 1, "%u", port
);
388 ret
= getaddrinfo(addr
, port_str
, &hints
, &result
);
399 if (result
->ai_socktype
!= SOCK_STREAM
) {
405 ret
= _tsocket_address_bsd_from_sockaddr(mem_ctx
,
413 freeaddrinfo(result
);
418 char *tsocket_address_inet_addr_string(const struct tsocket_address
*addr
,
421 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
422 struct tsocket_address_bsd
);
423 char addr_str
[INET6_ADDRSTRLEN
+1];
431 switch (bsda
->u
.sa
.sa_family
) {
433 str
= inet_ntop(bsda
->u
.in
.sin_family
,
434 &bsda
->u
.in
.sin_addr
,
435 addr_str
, sizeof(addr_str
));
439 str
= inet_ntop(bsda
->u
.in6
.sin6_family
,
440 &bsda
->u
.in6
.sin6_addr
,
441 addr_str
, sizeof(addr_str
));
453 return talloc_strdup(mem_ctx
, str
);
456 uint16_t tsocket_address_inet_port(const struct tsocket_address
*addr
)
458 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
459 struct tsocket_address_bsd
);
467 switch (bsda
->u
.sa
.sa_family
) {
469 port
= ntohs(bsda
->u
.in
.sin_port
);
473 port
= ntohs(bsda
->u
.in6
.sin6_port
);
484 int tsocket_address_inet_set_port(struct tsocket_address
*addr
,
487 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
488 struct tsocket_address_bsd
);
495 switch (bsda
->u
.sa
.sa_family
) {
497 bsda
->u
.in
.sin_port
= htons(port
);
501 bsda
->u
.in6
.sin6_port
= htons(port
);
512 bool tsocket_address_is_unix(const struct tsocket_address
*addr
)
514 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
515 struct tsocket_address_bsd
);
521 switch (bsda
->u
.sa
.sa_family
) {
529 int _tsocket_address_unix_from_path(TALLOC_CTX
*mem_ctx
,
531 struct tsocket_address
**_addr
,
532 const char *location
)
534 struct sockaddr_un un
;
542 if (strlen(path
) > sizeof(un
.sun_path
)-1) {
543 errno
= ENAMETOOLONG
;
548 un
.sun_family
= AF_UNIX
;
549 strncpy(un
.sun_path
, path
, sizeof(un
.sun_path
)-1);
551 ret
= _tsocket_address_bsd_from_sockaddr(mem_ctx
,
552 (struct sockaddr
*)p
,
560 char *tsocket_address_unix_path(const struct tsocket_address
*addr
,
563 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
564 struct tsocket_address_bsd
);
572 switch (bsda
->u
.sa
.sa_family
) {
574 str
= bsda
->u
.un
.sun_path
;
581 return talloc_strdup(mem_ctx
, str
);
584 static char *tsocket_address_bsd_string(const struct tsocket_address
*addr
,
587 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
588 struct tsocket_address_bsd
);
591 const char *prefix
= NULL
;
594 switch (bsda
->u
.sa
.sa_family
) {
596 return talloc_asprintf(mem_ctx
, "unix:%s",
597 bsda
->u
.un
.sun_path
);
611 addr_str
= tsocket_address_inet_addr_string(addr
, mem_ctx
);
616 port
= tsocket_address_inet_port(addr
);
618 str
= talloc_asprintf(mem_ctx
, "%s:%s:%u",
619 prefix
, addr_str
, port
);
620 talloc_free(addr_str
);
625 static struct tsocket_address
*tsocket_address_bsd_copy(const struct tsocket_address
*addr
,
627 const char *location
)
629 struct tsocket_address_bsd
*bsda
= talloc_get_type(addr
->private_data
,
630 struct tsocket_address_bsd
);
631 struct tsocket_address
*copy
;
634 ret
= _tsocket_address_bsd_from_sockaddr(mem_ctx
,
646 static const struct tsocket_address_ops tsocket_address_bsd_ops
= {
648 .string
= tsocket_address_bsd_string
,
649 .copy
= tsocket_address_bsd_copy
,
656 struct tevent_fd
*fde
;
658 void *readable_private
;
659 void (*readable_handler
)(void *private_data
);
660 void *writeable_private
;
661 void (*writeable_handler
)(void *private_data
);
664 static void tdgram_bsd_fde_handler(struct tevent_context
*ev
,
665 struct tevent_fd
*fde
,
669 struct tdgram_bsd
*bsds
= talloc_get_type_abort(private_data
,
672 if (flags
& TEVENT_FD_WRITE
) {
673 bsds
->writeable_handler(bsds
->writeable_private
);
676 if (flags
& TEVENT_FD_READ
) {
677 if (!bsds
->readable_handler
) {
678 TEVENT_FD_NOT_READABLE(bsds
->fde
);
681 bsds
->readable_handler(bsds
->readable_private
);
686 static int tdgram_bsd_set_readable_handler(struct tdgram_bsd
*bsds
,
687 struct tevent_context
*ev
,
688 void (*handler
)(void *private_data
),
696 if (!bsds
->readable_handler
) {
699 bsds
->readable_handler
= NULL
;
700 bsds
->readable_private
= NULL
;
705 /* read and write must use the same tevent_context */
706 if (bsds
->event_ptr
!= ev
) {
707 if (bsds
->readable_handler
|| bsds
->writeable_handler
) {
711 bsds
->event_ptr
= NULL
;
712 TALLOC_FREE(bsds
->fde
);
715 if (tevent_fd_get_flags(bsds
->fde
) == 0) {
716 TALLOC_FREE(bsds
->fde
);
718 bsds
->fde
= tevent_add_fd(ev
, bsds
,
719 bsds
->fd
, TEVENT_FD_READ
,
720 tdgram_bsd_fde_handler
,
727 /* cache the event context we're running on */
728 bsds
->event_ptr
= ev
;
729 } else if (!bsds
->readable_handler
) {
730 TEVENT_FD_READABLE(bsds
->fde
);
733 bsds
->readable_handler
= handler
;
734 bsds
->readable_private
= private_data
;
739 static int tdgram_bsd_set_writeable_handler(struct tdgram_bsd
*bsds
,
740 struct tevent_context
*ev
,
741 void (*handler
)(void *private_data
),
749 if (!bsds
->writeable_handler
) {
752 bsds
->writeable_handler
= NULL
;
753 bsds
->writeable_private
= NULL
;
754 TEVENT_FD_NOT_WRITEABLE(bsds
->fde
);
759 /* read and write must use the same tevent_context */
760 if (bsds
->event_ptr
!= ev
) {
761 if (bsds
->readable_handler
|| bsds
->writeable_handler
) {
765 bsds
->event_ptr
= NULL
;
766 TALLOC_FREE(bsds
->fde
);
769 if (tevent_fd_get_flags(bsds
->fde
) == 0) {
770 TALLOC_FREE(bsds
->fde
);
772 bsds
->fde
= tevent_add_fd(ev
, bsds
,
773 bsds
->fd
, TEVENT_FD_WRITE
,
774 tdgram_bsd_fde_handler
,
781 /* cache the event context we're running on */
782 bsds
->event_ptr
= ev
;
783 } else if (!bsds
->writeable_handler
) {
784 TEVENT_FD_WRITEABLE(bsds
->fde
);
787 bsds
->writeable_handler
= handler
;
788 bsds
->writeable_private
= private_data
;
793 struct tdgram_bsd_recvfrom_state
{
794 struct tdgram_context
*dgram
;
798 struct tsocket_address
*src
;
801 static int tdgram_bsd_recvfrom_destructor(struct tdgram_bsd_recvfrom_state
*state
)
803 struct tdgram_bsd
*bsds
= tdgram_context_data(state
->dgram
,
806 tdgram_bsd_set_readable_handler(bsds
, NULL
, NULL
, NULL
);
811 static void tdgram_bsd_recvfrom_handler(void *private_data
);
813 static struct tevent_req
*tdgram_bsd_recvfrom_send(TALLOC_CTX
*mem_ctx
,
814 struct tevent_context
*ev
,
815 struct tdgram_context
*dgram
)
817 struct tevent_req
*req
;
818 struct tdgram_bsd_recvfrom_state
*state
;
819 struct tdgram_bsd
*bsds
= tdgram_context_data(dgram
, struct tdgram_bsd
);
822 req
= tevent_req_create(mem_ctx
, &state
,
823 struct tdgram_bsd_recvfrom_state
);
828 state
->dgram
= dgram
;
833 talloc_set_destructor(state
, tdgram_bsd_recvfrom_destructor
);
835 if (bsds
->fd
== -1) {
836 tevent_req_error(req
, ENOTCONN
);
841 * this is a fast path, not waiting for the
842 * socket to become explicit readable gains
843 * about 10%-20% performance in benchmark tests.
845 tdgram_bsd_recvfrom_handler(req
);
846 if (!tevent_req_is_in_progress(req
)) {
850 ret
= tdgram_bsd_set_readable_handler(bsds
, ev
,
851 tdgram_bsd_recvfrom_handler
,
854 tevent_req_error(req
, errno
);
861 tevent_req_post(req
, ev
);
865 static void tdgram_bsd_recvfrom_handler(void *private_data
)
867 struct tevent_req
*req
= talloc_get_type_abort(private_data
,
869 struct tdgram_bsd_recvfrom_state
*state
= tevent_req_data(req
,
870 struct tdgram_bsd_recvfrom_state
);
871 struct tdgram_context
*dgram
= state
->dgram
;
872 struct tdgram_bsd
*bsds
= tdgram_context_data(dgram
, struct tdgram_bsd
);
873 struct tsocket_address_bsd
*bsda
;
878 ret
= tsocket_bsd_pending(bsds
->fd
);
883 err
= tsocket_bsd_error_from_errno(ret
, errno
, &retry
);
888 if (tevent_req_error(req
, err
)) {
892 state
->buf
= talloc_array(state
, uint8_t, ret
);
893 if (tevent_req_nomem(state
->buf
, req
)) {
898 state
->src
= tsocket_address_create(state
,
899 &tsocket_address_bsd_ops
,
901 struct tsocket_address_bsd
,
902 __location__
"bsd_recvfrom");
903 if (tevent_req_nomem(state
->src
, req
)) {
908 bsda
->sa_socklen
= sizeof(bsda
->u
.ss
);
909 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
910 bsda
->u
.sa
.sa_len
= bsda
->sa_socklen
;
913 ret
= recvfrom(bsds
->fd
, state
->buf
, state
->len
, 0,
914 &bsda
->u
.sa
, &bsda
->sa_socklen
);
915 err
= tsocket_bsd_error_from_errno(ret
, errno
, &retry
);
920 if (tevent_req_error(req
, err
)) {
925 * Some systems (FreeBSD, see bug #7115) return too much
926 * bytes in tsocket_bsd_pending()/ioctl(fd, FIONREAD, ...),
927 * the return value includes some IP/UDP header bytes,
928 * while recvfrom() just returns the payload.
930 state
->buf
= talloc_realloc(state
, state
->buf
, uint8_t, ret
);
931 if (tevent_req_nomem(state
->buf
, req
)) {
936 tevent_req_done(req
);
939 static ssize_t
tdgram_bsd_recvfrom_recv(struct tevent_req
*req
,
943 struct tsocket_address
**src
)
945 struct tdgram_bsd_recvfrom_state
*state
= tevent_req_data(req
,
946 struct tdgram_bsd_recvfrom_state
);
949 ret
= tsocket_simple_int_recv(req
, perrno
);
951 *buf
= talloc_move(mem_ctx
, &state
->buf
);
954 *src
= talloc_move(mem_ctx
, &state
->src
);
958 tevent_req_received(req
);
962 struct tdgram_bsd_sendto_state
{
963 struct tdgram_context
*dgram
;
967 const struct tsocket_address
*dst
;
972 static int tdgram_bsd_sendto_destructor(struct tdgram_bsd_sendto_state
*state
)
974 struct tdgram_bsd
*bsds
= tdgram_context_data(state
->dgram
,
977 tdgram_bsd_set_writeable_handler(bsds
, NULL
, NULL
, NULL
);
982 static void tdgram_bsd_sendto_handler(void *private_data
);
984 static struct tevent_req
*tdgram_bsd_sendto_send(TALLOC_CTX
*mem_ctx
,
985 struct tevent_context
*ev
,
986 struct tdgram_context
*dgram
,
989 const struct tsocket_address
*dst
)
991 struct tevent_req
*req
;
992 struct tdgram_bsd_sendto_state
*state
;
993 struct tdgram_bsd
*bsds
= tdgram_context_data(dgram
, struct tdgram_bsd
);
996 req
= tevent_req_create(mem_ctx
, &state
,
997 struct tdgram_bsd_sendto_state
);
1002 state
->dgram
= dgram
;
1008 talloc_set_destructor(state
, tdgram_bsd_sendto_destructor
);
1010 if (bsds
->fd
== -1) {
1011 tevent_req_error(req
, ENOTCONN
);
1016 * this is a fast path, not waiting for the
1017 * socket to become explicit writeable gains
1018 * about 10%-20% performance in benchmark tests.
1020 tdgram_bsd_sendto_handler(req
);
1021 if (!tevent_req_is_in_progress(req
)) {
1025 ret
= tdgram_bsd_set_writeable_handler(bsds
, ev
,
1026 tdgram_bsd_sendto_handler
,
1029 tevent_req_error(req
, errno
);
1036 tevent_req_post(req
, ev
);
1040 static void tdgram_bsd_sendto_handler(void *private_data
)
1042 struct tevent_req
*req
= talloc_get_type_abort(private_data
,
1044 struct tdgram_bsd_sendto_state
*state
= tevent_req_data(req
,
1045 struct tdgram_bsd_sendto_state
);
1046 struct tdgram_context
*dgram
= state
->dgram
;
1047 struct tdgram_bsd
*bsds
= tdgram_context_data(dgram
, struct tdgram_bsd
);
1048 struct sockaddr
*sa
= NULL
;
1049 socklen_t sa_socklen
= 0;
1055 struct tsocket_address_bsd
*bsda
=
1056 talloc_get_type(state
->dst
->private_data
,
1057 struct tsocket_address_bsd
);
1060 sa_socklen
= bsda
->sa_socklen
;
1063 ret
= sendto(bsds
->fd
, state
->buf
, state
->len
, 0, sa
, sa_socklen
);
1064 err
= tsocket_bsd_error_from_errno(ret
, errno
, &retry
);
1069 if (tevent_req_error(req
, err
)) {
1075 tevent_req_done(req
);
1078 static ssize_t
tdgram_bsd_sendto_recv(struct tevent_req
*req
, int *perrno
)
1080 struct tdgram_bsd_sendto_state
*state
= tevent_req_data(req
,
1081 struct tdgram_bsd_sendto_state
);
1084 ret
= tsocket_simple_int_recv(req
, perrno
);
1089 tevent_req_received(req
);
1093 struct tdgram_bsd_disconnect_state
{
1097 static struct tevent_req
*tdgram_bsd_disconnect_send(TALLOC_CTX
*mem_ctx
,
1098 struct tevent_context
*ev
,
1099 struct tdgram_context
*dgram
)
1101 struct tdgram_bsd
*bsds
= tdgram_context_data(dgram
, struct tdgram_bsd
);
1102 struct tevent_req
*req
;
1103 struct tdgram_bsd_disconnect_state
*state
;
1108 req
= tevent_req_create(mem_ctx
, &state
,
1109 struct tdgram_bsd_disconnect_state
);
1114 if (bsds
->fd
== -1) {
1115 tevent_req_error(req
, ENOTCONN
);
1119 TALLOC_FREE(bsds
->fde
);
1120 ret
= close(bsds
->fd
);
1122 err
= tsocket_bsd_error_from_errno(ret
, errno
, &dummy
);
1123 if (tevent_req_error(req
, err
)) {
1127 tevent_req_done(req
);
1129 tevent_req_post(req
, ev
);
1133 static int tdgram_bsd_disconnect_recv(struct tevent_req
*req
,
1138 ret
= tsocket_simple_int_recv(req
, perrno
);
1140 tevent_req_received(req
);
1144 static const struct tdgram_context_ops tdgram_bsd_ops
= {
1147 .recvfrom_send
= tdgram_bsd_recvfrom_send
,
1148 .recvfrom_recv
= tdgram_bsd_recvfrom_recv
,
1150 .sendto_send
= tdgram_bsd_sendto_send
,
1151 .sendto_recv
= tdgram_bsd_sendto_recv
,
1153 .disconnect_send
= tdgram_bsd_disconnect_send
,
1154 .disconnect_recv
= tdgram_bsd_disconnect_recv
,
1157 static int tdgram_bsd_destructor(struct tdgram_bsd
*bsds
)
1159 TALLOC_FREE(bsds
->fde
);
1160 if (bsds
->fd
!= -1) {
1167 static int tdgram_bsd_dgram_socket(const struct tsocket_address
*local
,
1168 const struct tsocket_address
*remote
,
1170 TALLOC_CTX
*mem_ctx
,
1171 struct tdgram_context
**_dgram
,
1172 const char *location
)
1174 struct tsocket_address_bsd
*lbsda
=
1175 talloc_get_type_abort(local
->private_data
,
1176 struct tsocket_address_bsd
);
1177 struct tsocket_address_bsd
*rbsda
= NULL
;
1178 struct tdgram_context
*dgram
;
1179 struct tdgram_bsd
*bsds
;
1182 bool do_bind
= false;
1183 bool do_reuseaddr
= false;
1184 bool do_ipv6only
= false;
1185 bool is_inet
= false;
1186 int sa_fam
= lbsda
->u
.sa
.sa_family
;
1189 rbsda
= talloc_get_type_abort(remote
->private_data
,
1190 struct tsocket_address_bsd
);
1193 switch (lbsda
->u
.sa
.sa_family
) {
1199 if (lbsda
->u
.un
.sun_path
[0] != 0) {
1200 do_reuseaddr
= true;
1205 if (lbsda
->u
.in
.sin_port
!= 0) {
1206 do_reuseaddr
= true;
1209 if (lbsda
->u
.in
.sin_addr
.s_addr
!= INADDR_ANY
) {
1216 if (lbsda
->u
.in6
.sin6_port
!= 0) {
1217 do_reuseaddr
= true;
1220 if (memcmp(&in6addr_any
,
1221 &lbsda
->u
.in6
.sin6_addr
,
1222 sizeof(in6addr_any
)) != 0) {
1234 if (!do_bind
&& is_inet
&& rbsda
) {
1235 sa_fam
= rbsda
->u
.sa
.sa_family
;
1238 do_ipv6only
= false;
1248 fd
= socket(sa_fam
, SOCK_DGRAM
, 0);
1253 fd
= tsocket_bsd_common_prepare_fd(fd
, true);
1258 dgram
= tdgram_context_create(mem_ctx
,
1264 int saved_errno
= errno
;
1266 errno
= saved_errno
;
1271 talloc_set_destructor(bsds
, tdgram_bsd_destructor
);
1277 ret
= setsockopt(fd
, IPPROTO_IPV6
, IPV6_V6ONLY
,
1278 (const void *)&val
, sizeof(val
));
1280 int saved_errno
= errno
;
1282 errno
= saved_errno
;
1291 ret
= setsockopt(fd
, SOL_SOCKET
, SO_BROADCAST
,
1292 (const void *)&val
, sizeof(val
));
1294 int saved_errno
= errno
;
1296 errno
= saved_errno
;
1304 ret
= setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
1305 (const void *)&val
, sizeof(val
));
1307 int saved_errno
= errno
;
1309 errno
= saved_errno
;
1315 ret
= bind(fd
, &lbsda
->u
.sa
, lbsda
->sa_socklen
);
1317 int saved_errno
= errno
;
1319 errno
= saved_errno
;
1325 if (rbsda
->u
.sa
.sa_family
!= sa_fam
) {
1331 ret
= connect(fd
, &rbsda
->u
.sa
, rbsda
->sa_socklen
);
1333 int saved_errno
= errno
;
1335 errno
= saved_errno
;
1344 int _tdgram_inet_udp_socket(const struct tsocket_address
*local
,
1345 const struct tsocket_address
*remote
,
1346 TALLOC_CTX
*mem_ctx
,
1347 struct tdgram_context
**dgram
,
1348 const char *location
)
1350 struct tsocket_address_bsd
*lbsda
=
1351 talloc_get_type_abort(local
->private_data
,
1352 struct tsocket_address_bsd
);
1355 switch (lbsda
->u
.sa
.sa_family
) {
1367 ret
= tdgram_bsd_dgram_socket(local
, remote
, false,
1368 mem_ctx
, dgram
, location
);
1373 int _tdgram_unix_socket(const struct tsocket_address
*local
,
1374 const struct tsocket_address
*remote
,
1375 TALLOC_CTX
*mem_ctx
,
1376 struct tdgram_context
**dgram
,
1377 const char *location
)
1379 struct tsocket_address_bsd
*lbsda
=
1380 talloc_get_type_abort(local
->private_data
,
1381 struct tsocket_address_bsd
);
1384 switch (lbsda
->u
.sa
.sa_family
) {
1392 ret
= tdgram_bsd_dgram_socket(local
, remote
, false,
1393 mem_ctx
, dgram
, location
);
1398 struct tstream_bsd
{
1402 struct tevent_fd
*fde
;
1404 void *readable_private
;
1405 void (*readable_handler
)(void *private_data
);
1406 void *writeable_private
;
1407 void (*writeable_handler
)(void *private_data
);
1410 static void tstream_bsd_fde_handler(struct tevent_context
*ev
,
1411 struct tevent_fd
*fde
,
1415 struct tstream_bsd
*bsds
= talloc_get_type_abort(private_data
,
1416 struct tstream_bsd
);
1418 if (flags
& TEVENT_FD_WRITE
) {
1419 bsds
->writeable_handler(bsds
->writeable_private
);
1422 if (flags
& TEVENT_FD_READ
) {
1423 if (!bsds
->readable_handler
) {
1424 if (bsds
->writeable_handler
) {
1425 bsds
->writeable_handler(bsds
->writeable_private
);
1428 TEVENT_FD_NOT_READABLE(bsds
->fde
);
1431 bsds
->readable_handler(bsds
->readable_private
);
1436 static int tstream_bsd_set_readable_handler(struct tstream_bsd
*bsds
,
1437 struct tevent_context
*ev
,
1438 void (*handler
)(void *private_data
),
1446 if (!bsds
->readable_handler
) {
1449 bsds
->readable_handler
= NULL
;
1450 bsds
->readable_private
= NULL
;
1455 /* read and write must use the same tevent_context */
1456 if (bsds
->event_ptr
!= ev
) {
1457 if (bsds
->readable_handler
|| bsds
->writeable_handler
) {
1461 bsds
->event_ptr
= NULL
;
1462 TALLOC_FREE(bsds
->fde
);
1465 if (tevent_fd_get_flags(bsds
->fde
) == 0) {
1466 TALLOC_FREE(bsds
->fde
);
1468 bsds
->fde
= tevent_add_fd(ev
, bsds
,
1469 bsds
->fd
, TEVENT_FD_READ
,
1470 tstream_bsd_fde_handler
,
1477 /* cache the event context we're running on */
1478 bsds
->event_ptr
= ev
;
1479 } else if (!bsds
->readable_handler
) {
1480 TEVENT_FD_READABLE(bsds
->fde
);
1483 bsds
->readable_handler
= handler
;
1484 bsds
->readable_private
= private_data
;
1489 static int tstream_bsd_set_writeable_handler(struct tstream_bsd
*bsds
,
1490 struct tevent_context
*ev
,
1491 void (*handler
)(void *private_data
),
1499 if (!bsds
->writeable_handler
) {
1502 bsds
->writeable_handler
= NULL
;
1503 bsds
->writeable_private
= NULL
;
1504 TEVENT_FD_NOT_WRITEABLE(bsds
->fde
);
1509 /* read and write must use the same tevent_context */
1510 if (bsds
->event_ptr
!= ev
) {
1511 if (bsds
->readable_handler
|| bsds
->writeable_handler
) {
1515 bsds
->event_ptr
= NULL
;
1516 TALLOC_FREE(bsds
->fde
);
1519 if (tevent_fd_get_flags(bsds
->fde
) == 0) {
1520 TALLOC_FREE(bsds
->fde
);
1522 bsds
->fde
= tevent_add_fd(ev
, bsds
,
1524 TEVENT_FD_READ
| TEVENT_FD_WRITE
,
1525 tstream_bsd_fde_handler
,
1532 /* cache the event context we're running on */
1533 bsds
->event_ptr
= ev
;
1534 } else if (!bsds
->writeable_handler
) {
1535 uint16_t flags
= tevent_fd_get_flags(bsds
->fde
);
1536 flags
|= TEVENT_FD_READ
| TEVENT_FD_WRITE
;
1537 tevent_fd_set_flags(bsds
->fde
, flags
);
1540 bsds
->writeable_handler
= handler
;
1541 bsds
->writeable_private
= private_data
;
1546 static ssize_t
tstream_bsd_pending_bytes(struct tstream_context
*stream
)
1548 struct tstream_bsd
*bsds
= tstream_context_data(stream
,
1549 struct tstream_bsd
);
1552 if (bsds
->fd
== -1) {
1557 ret
= tsocket_bsd_pending(bsds
->fd
);
1562 struct tstream_bsd_readv_state
{
1563 struct tstream_context
*stream
;
1565 struct iovec
*vector
;
1571 static int tstream_bsd_readv_destructor(struct tstream_bsd_readv_state
*state
)
1573 struct tstream_bsd
*bsds
= tstream_context_data(state
->stream
,
1574 struct tstream_bsd
);
1576 tstream_bsd_set_readable_handler(bsds
, NULL
, NULL
, NULL
);
1581 static void tstream_bsd_readv_handler(void *private_data
);
1583 static struct tevent_req
*tstream_bsd_readv_send(TALLOC_CTX
*mem_ctx
,
1584 struct tevent_context
*ev
,
1585 struct tstream_context
*stream
,
1586 struct iovec
*vector
,
1589 struct tevent_req
*req
;
1590 struct tstream_bsd_readv_state
*state
;
1591 struct tstream_bsd
*bsds
= tstream_context_data(stream
, struct tstream_bsd
);
1594 req
= tevent_req_create(mem_ctx
, &state
,
1595 struct tstream_bsd_readv_state
);
1600 state
->stream
= stream
;
1601 /* we make a copy of the vector so that we can modify it */
1602 state
->vector
= talloc_array(state
, struct iovec
, count
);
1603 if (tevent_req_nomem(state
->vector
, req
)) {
1606 memcpy(state
->vector
, vector
, sizeof(struct iovec
)*count
);
1607 state
->count
= count
;
1610 talloc_set_destructor(state
, tstream_bsd_readv_destructor
);
1612 if (bsds
->fd
== -1) {
1613 tevent_req_error(req
, ENOTCONN
);
1618 * this is a fast path, not waiting for the
1619 * socket to become explicit readable gains
1620 * about 10%-20% performance in benchmark tests.
1622 tstream_bsd_readv_handler(req
);
1623 if (!tevent_req_is_in_progress(req
)) {
1627 ret
= tstream_bsd_set_readable_handler(bsds
, ev
,
1628 tstream_bsd_readv_handler
,
1631 tevent_req_error(req
, errno
);
1638 tevent_req_post(req
, ev
);
1642 static void tstream_bsd_readv_handler(void *private_data
)
1644 struct tevent_req
*req
= talloc_get_type_abort(private_data
,
1646 struct tstream_bsd_readv_state
*state
= tevent_req_data(req
,
1647 struct tstream_bsd_readv_state
);
1648 struct tstream_context
*stream
= state
->stream
;
1649 struct tstream_bsd
*bsds
= tstream_context_data(stream
, struct tstream_bsd
);
1654 ret
= readv(bsds
->fd
, state
->vector
, state
->count
);
1656 /* propagate end of file */
1657 tevent_req_error(req
, EPIPE
);
1660 err
= tsocket_bsd_error_from_errno(ret
, errno
, &retry
);
1665 if (tevent_req_error(req
, err
)) {
1672 if (ret
< state
->vector
[0].iov_len
) {
1674 base
= (uint8_t *)state
->vector
[0].iov_base
;
1676 state
->vector
[0].iov_base
= (void *)base
;
1677 state
->vector
[0].iov_len
-= ret
;
1680 ret
-= state
->vector
[0].iov_len
;
1686 * there're maybe some empty vectors at the end
1687 * which we need to skip, otherwise we would get
1688 * ret == 0 from the readv() call and return EPIPE
1690 while (state
->count
> 0) {
1691 if (state
->vector
[0].iov_len
> 0) {
1698 if (state
->count
> 0) {
1699 /* we have more to read */
1703 tevent_req_done(req
);
1706 static int tstream_bsd_readv_recv(struct tevent_req
*req
,
1709 struct tstream_bsd_readv_state
*state
= tevent_req_data(req
,
1710 struct tstream_bsd_readv_state
);
1713 ret
= tsocket_simple_int_recv(req
, perrno
);
1718 tevent_req_received(req
);
1722 struct tstream_bsd_writev_state
{
1723 struct tstream_context
*stream
;
1725 struct iovec
*vector
;
1731 static int tstream_bsd_writev_destructor(struct tstream_bsd_writev_state
*state
)
1733 struct tstream_bsd
*bsds
= tstream_context_data(state
->stream
,
1734 struct tstream_bsd
);
1736 tstream_bsd_set_writeable_handler(bsds
, NULL
, NULL
, NULL
);
1741 static void tstream_bsd_writev_handler(void *private_data
);
1743 static struct tevent_req
*tstream_bsd_writev_send(TALLOC_CTX
*mem_ctx
,
1744 struct tevent_context
*ev
,
1745 struct tstream_context
*stream
,
1746 const struct iovec
*vector
,
1749 struct tevent_req
*req
;
1750 struct tstream_bsd_writev_state
*state
;
1751 struct tstream_bsd
*bsds
= tstream_context_data(stream
, struct tstream_bsd
);
1754 req
= tevent_req_create(mem_ctx
, &state
,
1755 struct tstream_bsd_writev_state
);
1760 state
->stream
= stream
;
1761 /* we make a copy of the vector so that we can modify it */
1762 state
->vector
= talloc_array(state
, struct iovec
, count
);
1763 if (tevent_req_nomem(state
->vector
, req
)) {
1766 memcpy(state
->vector
, vector
, sizeof(struct iovec
)*count
);
1767 state
->count
= count
;
1770 talloc_set_destructor(state
, tstream_bsd_writev_destructor
);
1772 if (bsds
->fd
== -1) {
1773 tevent_req_error(req
, ENOTCONN
);
1778 * this is a fast path, not waiting for the
1779 * socket to become explicit writeable gains
1780 * about 10%-20% performance in benchmark tests.
1782 tstream_bsd_writev_handler(req
);
1783 if (!tevent_req_is_in_progress(req
)) {
1787 ret
= tstream_bsd_set_writeable_handler(bsds
, ev
,
1788 tstream_bsd_writev_handler
,
1791 tevent_req_error(req
, errno
);
1798 tevent_req_post(req
, ev
);
1802 static void tstream_bsd_writev_handler(void *private_data
)
1804 struct tevent_req
*req
= talloc_get_type_abort(private_data
,
1806 struct tstream_bsd_writev_state
*state
= tevent_req_data(req
,
1807 struct tstream_bsd_writev_state
);
1808 struct tstream_context
*stream
= state
->stream
;
1809 struct tstream_bsd
*bsds
= tstream_context_data(stream
, struct tstream_bsd
);
1814 ret
= writev(bsds
->fd
, state
->vector
, state
->count
);
1816 /* propagate end of file */
1817 tevent_req_error(req
, EPIPE
);
1820 err
= tsocket_bsd_error_from_errno(ret
, errno
, &retry
);
1825 if (tevent_req_error(req
, err
)) {
1832 if (ret
< state
->vector
[0].iov_len
) {
1834 base
= (uint8_t *)state
->vector
[0].iov_base
;
1836 state
->vector
[0].iov_base
= (void *)base
;
1837 state
->vector
[0].iov_len
-= ret
;
1840 ret
-= state
->vector
[0].iov_len
;
1846 * there're maybe some empty vectors at the end
1847 * which we need to skip, otherwise we would get
1848 * ret == 0 from the writev() call and return EPIPE
1850 while (state
->count
> 0) {
1851 if (state
->vector
[0].iov_len
> 0) {
1858 if (state
->count
> 0) {
1859 /* we have more to read */
1863 tevent_req_done(req
);
1866 static int tstream_bsd_writev_recv(struct tevent_req
*req
, int *perrno
)
1868 struct tstream_bsd_writev_state
*state
= tevent_req_data(req
,
1869 struct tstream_bsd_writev_state
);
1872 ret
= tsocket_simple_int_recv(req
, perrno
);
1877 tevent_req_received(req
);
1881 struct tstream_bsd_disconnect_state
{
1885 static struct tevent_req
*tstream_bsd_disconnect_send(TALLOC_CTX
*mem_ctx
,
1886 struct tevent_context
*ev
,
1887 struct tstream_context
*stream
)
1889 struct tstream_bsd
*bsds
= tstream_context_data(stream
, struct tstream_bsd
);
1890 struct tevent_req
*req
;
1891 struct tstream_bsd_disconnect_state
*state
;
1896 req
= tevent_req_create(mem_ctx
, &state
,
1897 struct tstream_bsd_disconnect_state
);
1902 if (bsds
->fd
== -1) {
1903 tevent_req_error(req
, ENOTCONN
);
1907 TALLOC_FREE(bsds
->fde
);
1908 ret
= close(bsds
->fd
);
1910 err
= tsocket_bsd_error_from_errno(ret
, errno
, &dummy
);
1911 if (tevent_req_error(req
, err
)) {
1915 tevent_req_done(req
);
1917 tevent_req_post(req
, ev
);
1921 static int tstream_bsd_disconnect_recv(struct tevent_req
*req
,
1926 ret
= tsocket_simple_int_recv(req
, perrno
);
1928 tevent_req_received(req
);
1932 static const struct tstream_context_ops tstream_bsd_ops
= {
1935 .pending_bytes
= tstream_bsd_pending_bytes
,
1937 .readv_send
= tstream_bsd_readv_send
,
1938 .readv_recv
= tstream_bsd_readv_recv
,
1940 .writev_send
= tstream_bsd_writev_send
,
1941 .writev_recv
= tstream_bsd_writev_recv
,
1943 .disconnect_send
= tstream_bsd_disconnect_send
,
1944 .disconnect_recv
= tstream_bsd_disconnect_recv
,
1947 static int tstream_bsd_destructor(struct tstream_bsd
*bsds
)
1949 TALLOC_FREE(bsds
->fde
);
1950 if (bsds
->fd
!= -1) {
1957 int _tstream_bsd_existing_socket(TALLOC_CTX
*mem_ctx
,
1959 struct tstream_context
**_stream
,
1960 const char *location
)
1962 struct tstream_context
*stream
;
1963 struct tstream_bsd
*bsds
;
1965 stream
= tstream_context_create(mem_ctx
,
1975 talloc_set_destructor(bsds
, tstream_bsd_destructor
);
1981 struct tstream_bsd_connect_state
{
1983 struct tevent_fd
*fde
;
1984 struct tstream_conext
*stream
;
1985 struct tsocket_address
*local
;
1988 static int tstream_bsd_connect_destructor(struct tstream_bsd_connect_state
*state
)
1990 TALLOC_FREE(state
->fde
);
1991 if (state
->fd
!= -1) {
1999 static void tstream_bsd_connect_fde_handler(struct tevent_context
*ev
,
2000 struct tevent_fd
*fde
,
2002 void *private_data
);
2004 static struct tevent_req
*tstream_bsd_connect_send(TALLOC_CTX
*mem_ctx
,
2005 struct tevent_context
*ev
,
2007 const struct tsocket_address
*local
,
2008 const struct tsocket_address
*remote
)
2010 struct tevent_req
*req
;
2011 struct tstream_bsd_connect_state
*state
;
2012 struct tsocket_address_bsd
*lbsda
=
2013 talloc_get_type_abort(local
->private_data
,
2014 struct tsocket_address_bsd
);
2015 struct tsocket_address_bsd
*lrbsda
= NULL
;
2016 struct tsocket_address_bsd
*rbsda
=
2017 talloc_get_type_abort(remote
->private_data
,
2018 struct tsocket_address_bsd
);
2022 bool do_bind
= false;
2023 bool do_reuseaddr
= false;
2024 bool do_ipv6only
= false;
2025 bool is_inet
= false;
2026 int sa_fam
= lbsda
->u
.sa
.sa_family
;
2028 req
= tevent_req_create(mem_ctx
, &state
,
2029 struct tstream_bsd_connect_state
);
2036 talloc_set_destructor(state
, tstream_bsd_connect_destructor
);
2038 /* give the wrappers a chance to report an error */
2039 if (sys_errno
!= 0) {
2040 tevent_req_error(req
, sys_errno
);
2044 switch (lbsda
->u
.sa
.sa_family
) {
2046 if (lbsda
->u
.un
.sun_path
[0] != 0) {
2047 do_reuseaddr
= true;
2052 if (lbsda
->u
.in
.sin_port
!= 0) {
2053 do_reuseaddr
= true;
2056 if (lbsda
->u
.in
.sin_addr
.s_addr
!= INADDR_ANY
) {
2063 if (lbsda
->u
.in6
.sin6_port
!= 0) {
2064 do_reuseaddr
= true;
2067 if (memcmp(&in6addr_any
,
2068 &lbsda
->u
.in6
.sin6_addr
,
2069 sizeof(in6addr_any
)) != 0) {
2077 tevent_req_error(req
, EINVAL
);
2081 if (!do_bind
&& is_inet
) {
2082 sa_fam
= rbsda
->u
.sa
.sa_family
;
2085 do_ipv6only
= false;
2096 state
->local
= tsocket_address_create(state
,
2097 &tsocket_address_bsd_ops
,
2099 struct tsocket_address_bsd
,
2100 __location__
"bsd_connect");
2101 if (tevent_req_nomem(state
->local
, req
)) {
2105 ZERO_STRUCTP(lrbsda
);
2106 lrbsda
->sa_socklen
= sizeof(lrbsda
->u
.ss
);
2107 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
2108 lrbsda
->u
.sa
.sa_len
= lrbsda
->sa_socklen
;
2112 state
->fd
= socket(sa_fam
, SOCK_STREAM
, 0);
2113 if (state
->fd
== -1) {
2114 tevent_req_error(req
, errno
);
2118 state
->fd
= tsocket_bsd_common_prepare_fd(state
->fd
, true);
2119 if (state
->fd
== -1) {
2120 tevent_req_error(req
, errno
);
2128 ret
= setsockopt(state
->fd
, IPPROTO_IPV6
, IPV6_V6ONLY
,
2129 (const void *)&val
, sizeof(val
));
2131 tevent_req_error(req
, errno
);
2140 ret
= setsockopt(state
->fd
, SOL_SOCKET
, SO_REUSEADDR
,
2141 (const void *)&val
, sizeof(val
));
2143 tevent_req_error(req
, errno
);
2149 ret
= bind(state
->fd
, &lbsda
->u
.sa
, lbsda
->sa_socklen
);
2151 tevent_req_error(req
, errno
);
2156 if (rbsda
->u
.sa
.sa_family
!= sa_fam
) {
2157 tevent_req_error(req
, EINVAL
);
2161 ret
= connect(state
->fd
, &rbsda
->u
.sa
, rbsda
->sa_socklen
);
2162 err
= tsocket_bsd_error_from_errno(ret
, errno
, &retry
);
2167 if (tevent_req_error(req
, err
)) {
2171 if (!state
->local
) {
2172 tevent_req_done(req
);
2176 ret
= getsockname(state
->fd
, &lrbsda
->u
.sa
, &lrbsda
->sa_socklen
);
2178 tevent_req_error(req
, errno
);
2182 tevent_req_done(req
);
2186 state
->fde
= tevent_add_fd(ev
, state
,
2188 TEVENT_FD_READ
| TEVENT_FD_WRITE
,
2189 tstream_bsd_connect_fde_handler
,
2191 if (tevent_req_nomem(state
->fde
, req
)) {
2198 tevent_req_post(req
, ev
);
2202 static void tstream_bsd_connect_fde_handler(struct tevent_context
*ev
,
2203 struct tevent_fd
*fde
,
2207 struct tevent_req
*req
= talloc_get_type_abort(private_data
,
2209 struct tstream_bsd_connect_state
*state
= tevent_req_data(req
,
2210 struct tstream_bsd_connect_state
);
2211 struct tsocket_address_bsd
*lrbsda
= NULL
;
2214 socklen_t len
= sizeof(error
);
2218 ret
= getsockopt(state
->fd
, SOL_SOCKET
, SO_ERROR
, &error
, &len
);
2225 err
= tsocket_bsd_error_from_errno(ret
, errno
, &retry
);
2230 if (tevent_req_error(req
, err
)) {
2234 if (!state
->local
) {
2235 tevent_req_done(req
);
2239 lrbsda
= talloc_get_type_abort(state
->local
->private_data
,
2240 struct tsocket_address_bsd
);
2242 ret
= getsockname(state
->fd
, &lrbsda
->u
.sa
, &lrbsda
->sa_socklen
);
2244 tevent_req_error(req
, errno
);
2248 tevent_req_done(req
);
2251 static int tstream_bsd_connect_recv(struct tevent_req
*req
,
2253 TALLOC_CTX
*mem_ctx
,
2254 struct tstream_context
**stream
,
2255 struct tsocket_address
**local
,
2256 const char *location
)
2258 struct tstream_bsd_connect_state
*state
= tevent_req_data(req
,
2259 struct tstream_bsd_connect_state
);
2262 ret
= tsocket_simple_int_recv(req
, perrno
);
2264 ret
= _tstream_bsd_existing_socket(mem_ctx
,
2272 TALLOC_FREE(state
->fde
);
2276 *local
= talloc_move(mem_ctx
, &state
->local
);
2281 tevent_req_received(req
);
2285 struct tevent_req
* tstream_inet_tcp_connect_send(TALLOC_CTX
*mem_ctx
,
2286 struct tevent_context
*ev
,
2287 const struct tsocket_address
*local
,
2288 const struct tsocket_address
*remote
)
2290 struct tsocket_address_bsd
*lbsda
=
2291 talloc_get_type_abort(local
->private_data
,
2292 struct tsocket_address_bsd
);
2293 struct tevent_req
*req
;
2296 switch (lbsda
->u
.sa
.sa_family
) {
2308 req
= tstream_bsd_connect_send(mem_ctx
, ev
, sys_errno
, local
, remote
);
2313 int _tstream_inet_tcp_connect_recv(struct tevent_req
*req
,
2315 TALLOC_CTX
*mem_ctx
,
2316 struct tstream_context
**stream
,
2317 struct tsocket_address
**local
,
2318 const char *location
)
2320 return tstream_bsd_connect_recv(req
, perrno
,
2321 mem_ctx
, stream
, local
,
2325 struct tevent_req
* tstream_unix_connect_send(TALLOC_CTX
*mem_ctx
,
2326 struct tevent_context
*ev
,
2327 const struct tsocket_address
*local
,
2328 const struct tsocket_address
*remote
)
2330 struct tsocket_address_bsd
*lbsda
=
2331 talloc_get_type_abort(local
->private_data
,
2332 struct tsocket_address_bsd
);
2333 struct tevent_req
*req
;
2336 switch (lbsda
->u
.sa
.sa_family
) {
2344 req
= tstream_bsd_connect_send(mem_ctx
, ev
, sys_errno
, local
, remote
);
2349 int _tstream_unix_connect_recv(struct tevent_req
*req
,
2351 TALLOC_CTX
*mem_ctx
,
2352 struct tstream_context
**stream
,
2353 const char *location
)
2355 return tstream_bsd_connect_recv(req
, perrno
,
2356 mem_ctx
, stream
, NULL
,
2360 int _tstream_unix_socketpair(TALLOC_CTX
*mem_ctx1
,
2361 struct tstream_context
**_stream1
,
2362 TALLOC_CTX
*mem_ctx2
,
2363 struct tstream_context
**_stream2
,
2364 const char *location
)
2370 struct tstream_context
*stream1
= NULL
;
2371 struct tstream_context
*stream2
= NULL
;
2373 ret
= socketpair(AF_UNIX
, SOCK_STREAM
, 0, fds
);
2380 fd1
= tsocket_bsd_common_prepare_fd(fd1
, true);
2382 int sys_errno
= errno
;
2388 fd2
= tsocket_bsd_common_prepare_fd(fd2
, true);
2390 int sys_errno
= errno
;
2396 ret
= _tstream_bsd_existing_socket(mem_ctx1
,
2401 int sys_errno
= errno
;
2408 ret
= _tstream_bsd_existing_socket(mem_ctx2
,
2413 int sys_errno
= errno
;
2414 talloc_free(stream1
);
2420 *_stream1
= stream1
;
2421 *_stream2
= stream2
;