mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Adopt socketpair implementation from perl. For now, always use it.
svn:r389
This commit is contained in:
parent
5d9cfb7164
commit
2cb4f7a473
@ -134,9 +134,9 @@ AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/poll.h sy
|
|||||||
|
|
||||||
dnl These headers are not essential
|
dnl These headers are not essential
|
||||||
|
|
||||||
AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/wait.h)
|
AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/wait.h netinet/in.h arpa/inet.h)
|
||||||
|
|
||||||
AC_CHECK_FUNCS(gettimeofday ftime)
|
AC_CHECK_FUNCS(gettimeofday ftime socketpair)
|
||||||
|
|
||||||
dnl In case we aren't given a working stdint.h, we'll need to grow our own.
|
dnl In case we aren't given a working stdint.h, we'll need to grow our own.
|
||||||
dnl Watch out.
|
dnl Watch out.
|
||||||
|
@ -18,6 +18,15 @@
|
|||||||
#ifdef HAVE_FCNTL_H
|
#ifdef HAVE_FCNTL_H
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_SYS_SOCKET_H
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_NETINET_IN_H
|
||||||
|
#include <netinet/in.h>
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_ARPA_INET_H
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_SYS_TYPES_H
|
#ifdef HAVE_SYS_TYPES_H
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#endif
|
#endif
|
||||||
@ -25,6 +34,8 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
@ -147,3 +158,96 @@ void spawn_exit()
|
|||||||
exit(0);
|
exit(0);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Fake socket pair over TCP. Code adapted from perl 5.8.0's util.c */
|
||||||
|
int
|
||||||
|
tor_socketpair(int family, int type, int protocol, int fd[2])
|
||||||
|
{
|
||||||
|
#ifdef HAVE_SOCKETPAIR_XXX
|
||||||
|
/* For testing purposes, we never fall back to real socketpairs. */
|
||||||
|
return socketpair(family, type, protocol, fd);
|
||||||
|
#else
|
||||||
|
int listener = -1;
|
||||||
|
int connector = -1;
|
||||||
|
int acceptor = -1;
|
||||||
|
struct sockaddr_in listen_addr;
|
||||||
|
struct sockaddr_in connect_addr;
|
||||||
|
size_t size;
|
||||||
|
|
||||||
|
if (protocol
|
||||||
|
#ifdef AF_UNIX
|
||||||
|
|| family != AF_UNIX
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
|
errno = EAFNOSUPPORT;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (!fd) {
|
||||||
|
errno = EINVAL;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
listener = socket(AF_INET, type, 0);
|
||||||
|
if (listener == -1)
|
||||||
|
return -1;
|
||||||
|
memset (&listen_addr, 0, sizeof (listen_addr));
|
||||||
|
listen_addr.sin_family = AF_INET;
|
||||||
|
listen_addr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
|
||||||
|
listen_addr.sin_port = 0; /* kernel choses port. */
|
||||||
|
if (bind(listener, (struct sockaddr *) &listen_addr, sizeof (listen_addr))
|
||||||
|
== -1)
|
||||||
|
goto tidy_up_and_fail;
|
||||||
|
if (listen(listener, 1) == -1)
|
||||||
|
goto tidy_up_and_fail;
|
||||||
|
|
||||||
|
connector = socket(AF_INET, type, 0);
|
||||||
|
if (connector == -1)
|
||||||
|
goto tidy_up_and_fail;
|
||||||
|
/* We want to find out the port number to connect to. */
|
||||||
|
size = sizeof (connect_addr);
|
||||||
|
if (getsockname(listener, (struct sockaddr *) &connect_addr, &size) == -1)
|
||||||
|
goto tidy_up_and_fail;
|
||||||
|
if (size != sizeof (connect_addr))
|
||||||
|
goto abort_tidy_up_and_fail;
|
||||||
|
if (connect(connector, (struct sockaddr *) &connect_addr,
|
||||||
|
sizeof (connect_addr)) == -1)
|
||||||
|
goto tidy_up_and_fail;
|
||||||
|
|
||||||
|
size = sizeof (listen_addr);
|
||||||
|
acceptor = accept(listener, (struct sockaddr *) &listen_addr, &size);
|
||||||
|
if (acceptor == -1)
|
||||||
|
goto tidy_up_and_fail;
|
||||||
|
if (size != sizeof(listen_addr))
|
||||||
|
goto abort_tidy_up_and_fail;
|
||||||
|
close(listener);
|
||||||
|
/* Now check we are talking to ourself by matching port and host on the
|
||||||
|
two sockets. */
|
||||||
|
if (getsockname(connector, (struct sockaddr *) &connect_addr, &size) == -1)
|
||||||
|
goto tidy_up_and_fail;
|
||||||
|
if (size != sizeof (connect_addr)
|
||||||
|
|| listen_addr.sin_family != connect_addr.sin_family
|
||||||
|
|| listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr
|
||||||
|
|| listen_addr.sin_port != connect_addr.sin_port) {
|
||||||
|
goto abort_tidy_up_and_fail;
|
||||||
|
}
|
||||||
|
fd[0] = connector;
|
||||||
|
fd[1] = acceptor;
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
abort_tidy_up_and_fail:
|
||||||
|
errno = ECONNABORTED; /* I hope this is portable and appropriate. */
|
||||||
|
tidy_up_and_fail:
|
||||||
|
{
|
||||||
|
int save_errno = errno;
|
||||||
|
if (listener != -1)
|
||||||
|
close(listener);
|
||||||
|
if (connector != -1)
|
||||||
|
close(connector);
|
||||||
|
if (acceptor != -1)
|
||||||
|
close(acceptor);
|
||||||
|
errno = save_errno;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
@ -52,4 +52,6 @@ void set_socket_nonblocking(int socket);
|
|||||||
int spawn_func(int (*func)(void *), void *data);
|
int spawn_func(int (*func)(void *), void *data);
|
||||||
void spawn_exit();
|
void spawn_exit();
|
||||||
|
|
||||||
|
int tor_socketpair(int family, int type, int protocol, int fd[2]);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -361,7 +361,7 @@ static int dns_spawn_worker(void) {
|
|||||||
int fd[2];
|
int fd[2];
|
||||||
connection_t *conn;
|
connection_t *conn;
|
||||||
|
|
||||||
if(socketpair(AF_UNIX, SOCK_STREAM, 0, fd) < 0) {
|
if(tor_socketpair(AF_UNIX, SOCK_STREAM, 0, fd) < 0) {
|
||||||
perror("socketpair");
|
perror("socketpair");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user