2002-02-18 16:25:19 +00:00
|
|
|
/*
|
|
|
|
net_socket.c -- Handle various kinds of sockets.
|
2006-04-26 13:52:58 +00:00
|
|
|
Copyright (C) 1998-2005 Ivo Timmermans,
|
2010-02-02 21:49:21 +00:00
|
|
|
2000-2010 Guus Sliepen <guus@tinc-vpn.org>
|
2009-09-25 19:14:56 +00:00
|
|
|
2006 Scott Lamb <slamb@slamb.org>
|
2009-09-24 21:29:46 +00:00
|
|
|
2009 Florian Forster <octo@verplant.org>
|
2002-02-18 16:25:19 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2009-09-24 22:01:00 +00:00
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2002-02-18 16:25:19 +00:00
|
|
|
*/
|
|
|
|
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "system.h"
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2007-05-18 10:05:26 +00:00
|
|
|
#include "splay_tree.h"
|
2002-02-18 16:25:19 +00:00
|
|
|
#include "conf.h"
|
|
|
|
#include "connection.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "logger.h"
|
2002-02-18 16:25:19 +00:00
|
|
|
#include "meta.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "netutl.h"
|
|
|
|
#include "protocol.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "xalloc.h"
|
2002-04-18 20:09:05 +00:00
|
|
|
|
2009-05-27 12:20:24 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
2006-01-13 11:21:59 +00:00
|
|
|
/* Needed on Mac OS/X */
|
|
|
|
#ifndef SOL_TCP
|
|
|
|
#define SOL_TCP IPPROTO_TCP
|
|
|
|
#endif
|
|
|
|
|
2003-06-11 19:27:35 +00:00
|
|
|
int addressfamily = AF_UNSPEC;
|
2002-02-18 16:25:19 +00:00
|
|
|
int maxtimeout = 900;
|
|
|
|
int seconds_till_retry = 5;
|
2010-11-13 18:05:49 +00:00
|
|
|
int udp_rcvbuf = 0;
|
|
|
|
int udp_sndbuf = 0;
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-03-18 22:47:20 +00:00
|
|
|
listen_socket_t listen_socket[MAXSOCKETS];
|
2002-06-13 16:12:40 +00:00
|
|
|
int listen_sockets;
|
2009-01-20 12:12:41 +00:00
|
|
|
list_t *outgoing_list = NULL;
|
2002-02-26 23:26:41 +00:00
|
|
|
|
2002-02-18 16:25:19 +00:00
|
|
|
/* Setup sockets */
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
static void configure_tcp(connection_t *c) {
|
2006-01-13 11:21:59 +00:00
|
|
|
int option;
|
|
|
|
|
|
|
|
#ifdef O_NONBLOCK
|
2006-01-19 17:13:18 +00:00
|
|
|
int flags = fcntl(c->socket, F_GETFL);
|
2006-01-13 11:21:59 +00:00
|
|
|
|
2006-01-19 17:13:18 +00:00
|
|
|
if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "fcntl for %s: %s", c->hostname, strerror(errno));
|
2006-01-13 11:21:59 +00:00
|
|
|
}
|
2007-05-17 19:15:48 +00:00
|
|
|
#elif defined(WIN32)
|
|
|
|
unsigned long arg = 1;
|
|
|
|
|
|
|
|
if(ioctlsocket(c->socket, FIONBIO, &arg) != 0) {
|
2009-10-24 23:40:07 +00:00
|
|
|
logger(LOG_ERR, "ioctlsocket for %s: %d", c->hostname, sockstrerror(sockerrno));
|
2007-05-17 19:15:48 +00:00
|
|
|
}
|
2006-01-13 11:21:59 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(SOL_TCP) && defined(TCP_NODELAY)
|
|
|
|
option = 1;
|
2010-11-12 15:15:29 +00:00
|
|
|
setsockopt(c->socket, SOL_TCP, TCP_NODELAY, (void *)&option, sizeof option);
|
2006-01-13 11:21:59 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(SOL_IP) && defined(IP_TOS) && defined(IPTOS_LOWDELAY)
|
|
|
|
option = IPTOS_LOWDELAY;
|
2010-11-12 15:15:29 +00:00
|
|
|
setsockopt(c->socket, SOL_IP, IP_TOS, (void *)&option, sizeof option);
|
2006-01-13 11:21:59 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-09-24 22:14:03 +00:00
|
|
|
static bool bind_to_interface(int sd) {
|
2009-05-27 12:20:24 +00:00
|
|
|
char *iface;
|
|
|
|
|
|
|
|
#if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
|
|
|
|
struct ifreq ifr;
|
|
|
|
int status;
|
|
|
|
#endif /* defined(SOL_SOCKET) && defined(SO_BINDTODEVICE) */
|
|
|
|
|
|
|
|
if(!get_config_string (lookup_config (config_tree, "BindToInterface"), &iface))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
#if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
|
|
strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ);
|
|
|
|
ifr.ifr_ifrn.ifrn_name[IFNAMSIZ - 1] = 0;
|
|
|
|
|
2010-05-01 13:39:59 +00:00
|
|
|
status = setsockopt(sd, SOL_SOCKET, SO_BINDTODEVICE, (void *)&ifr, sizeof(ifr));
|
2009-05-27 12:20:24 +00:00
|
|
|
if(status) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Can't bind to interface %s: %s", iface,
|
2009-05-27 12:20:24 +00:00
|
|
|
strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#else /* if !defined(SOL_SOCKET) || !defined(SO_BINDTODEVICE) */
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_WARNING, "%s not supported on this platform", "BindToInterface");
|
2009-05-27 12:20:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
2009-09-24 22:14:03 +00:00
|
|
|
}
|
2009-05-27 12:20:24 +00:00
|
|
|
|
2009-09-24 22:14:03 +00:00
|
|
|
static bool bind_to_address(connection_t *c) {
|
2009-05-27 12:20:24 +00:00
|
|
|
char *node;
|
|
|
|
struct addrinfo *ai_list;
|
|
|
|
struct addrinfo *ai_ptr;
|
|
|
|
struct addrinfo ai_hints;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
assert(c->socket >= 0);
|
|
|
|
|
|
|
|
node = NULL;
|
|
|
|
if(!get_config_string(lookup_config(config_tree, "BindToAddress"),
|
|
|
|
&node))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
assert(node != NULL);
|
|
|
|
|
|
|
|
memset(&ai_hints, 0, sizeof(ai_hints));
|
|
|
|
ai_hints.ai_family = c->address.sa.sa_family;
|
|
|
|
/* We're called from `do_outgoing_connection' only. */
|
|
|
|
ai_hints.ai_socktype = SOCK_STREAM;
|
|
|
|
ai_hints.ai_protocol = IPPROTO_TCP;
|
|
|
|
|
|
|
|
ai_list = NULL;
|
|
|
|
|
|
|
|
status = getaddrinfo(node, /* service = */ NULL,
|
|
|
|
&ai_hints, &ai_list);
|
|
|
|
if(status) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_WARNING, "Error looking up %s port %s: %s",
|
|
|
|
node, "any", gai_strerror(status));
|
2011-05-29 19:35:31 +00:00
|
|
|
free(node);
|
2009-05-27 12:20:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
assert(ai_list != NULL);
|
|
|
|
|
|
|
|
status = -1;
|
|
|
|
for(ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next) {
|
|
|
|
status = bind(c->socket,
|
|
|
|
ai_list->ai_addr, ai_list->ai_addrlen);
|
|
|
|
if(!status)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(status) {
|
2009-10-24 23:40:07 +00:00
|
|
|
logger(LOG_ERR, "Can't bind to %s/tcp: %s", node, sockstrerror(sockerrno));
|
2009-05-27 12:20:24 +00:00
|
|
|
} else ifdebug(CONNECTIONS) {
|
|
|
|
logger(LOG_DEBUG, "Successfully bound outgoing "
|
|
|
|
"TCP socket to %s", node);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(node);
|
|
|
|
freeaddrinfo(ai_list);
|
|
|
|
|
|
|
|
return status ? false : true;
|
2009-09-24 22:14:03 +00:00
|
|
|
}
|
2009-05-27 12:20:24 +00:00
|
|
|
|
2009-09-24 22:14:03 +00:00
|
|
|
int setup_listen_socket(const sockaddr_t *sa) {
|
2003-12-20 19:47:53 +00:00
|
|
|
int nfd;
|
2002-09-09 21:25:28 +00:00
|
|
|
char *addrstr;
|
|
|
|
int option;
|
2003-07-18 13:45:06 +00:00
|
|
|
char *iface;
|
2002-09-09 19:40:12 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
nfd = socket(sa->sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
if(nfd < 0) {
|
2009-10-24 23:40:07 +00:00
|
|
|
ifdebug(STATUS) logger(LOG_ERR, "Creating metasocket failed: %s", sockstrerror(sockerrno));
|
2002-09-09 21:25:28 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Optimize TCP settings */
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
option = 1;
|
2010-11-12 15:15:29 +00:00
|
|
|
setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, (void *)&option, sizeof option);
|
2002-03-01 15:14:29 +00:00
|
|
|
|
2008-12-11 20:49:14 +00:00
|
|
|
#if defined(SOL_IPV6) && defined(IPV6_V6ONLY)
|
|
|
|
if(sa->sa.sa_family == AF_INET6)
|
2010-05-01 13:39:59 +00:00
|
|
|
setsockopt(nfd, SOL_IPV6, IPV6_V6ONLY, (void *)&option, sizeof option);
|
2008-12-11 20:49:14 +00:00
|
|
|
#endif
|
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
if(get_config_string
|
2003-07-18 13:45:06 +00:00
|
|
|
(lookup_config(config_tree, "BindToInterface"), &iface)) {
|
2002-03-01 15:14:29 +00:00
|
|
|
#if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
|
2003-12-20 19:47:53 +00:00
|
|
|
struct ifreq ifr;
|
|
|
|
|
2008-12-11 15:56:18 +00:00
|
|
|
memset(&ifr, 0, sizeof ifr);
|
2003-07-18 13:45:06 +00:00
|
|
|
strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2010-11-12 15:15:29 +00:00
|
|
|
if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, (void *)&ifr, sizeof ifr)) {
|
2003-07-29 22:59:01 +00:00
|
|
|
closesocket(nfd);
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Can't bind to interface %s: %s", iface,
|
2009-10-24 23:40:07 +00:00
|
|
|
strerror(sockerrno));
|
2002-09-09 21:25:28 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2002-03-01 15:14:29 +00:00
|
|
|
#else
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_WARNING, "%s not supported on this platform", "BindToInterface");
|
2002-02-18 16:25:19 +00:00
|
|
|
#endif
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
|
2003-07-29 22:59:01 +00:00
|
|
|
closesocket(nfd);
|
2002-09-09 21:25:28 +00:00
|
|
|
addrstr = sockaddr2hostname(sa);
|
2009-10-24 23:40:07 +00:00
|
|
|
logger(LOG_ERR, "Can't bind to %s/tcp: %s", addrstr, sockstrerror(sockerrno));
|
2002-09-09 21:25:28 +00:00
|
|
|
free(addrstr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(listen(nfd, 3)) {
|
2003-07-29 22:59:01 +00:00
|
|
|
closesocket(nfd);
|
2009-10-24 23:40:07 +00:00
|
|
|
logger(LOG_ERR, "System call `%s' failed: %s", "listen", sockstrerror(sockerrno));
|
2002-09-09 21:25:28 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nfd;
|
2002-02-18 16:25:19 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
int setup_vpn_in_socket(const sockaddr_t *sa) {
|
2003-12-20 19:47:53 +00:00
|
|
|
int nfd;
|
2002-09-09 21:25:28 +00:00
|
|
|
char *addrstr;
|
|
|
|
int option;
|
|
|
|
|
|
|
|
nfd = socket(sa->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP);
|
|
|
|
|
|
|
|
if(nfd < 0) {
|
2009-10-24 23:40:07 +00:00
|
|
|
logger(LOG_ERR, "Creating UDP socket failed: %s", sockstrerror(sockerrno));
|
2002-09-09 21:25:28 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-07-28 22:06:09 +00:00
|
|
|
#ifdef O_NONBLOCK
|
2003-12-20 19:47:53 +00:00
|
|
|
{
|
|
|
|
int flags = fcntl(nfd, F_GETFL);
|
|
|
|
|
|
|
|
if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0) {
|
|
|
|
closesocket(nfd);
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "System call `%s' failed: %s", "fcntl",
|
2003-12-20 19:47:53 +00:00
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
2007-05-17 19:15:48 +00:00
|
|
|
#elif defined(WIN32)
|
|
|
|
{
|
|
|
|
unsigned long arg = 1;
|
|
|
|
if(ioctlsocket(nfd, FIONBIO, &arg) != 0) {
|
|
|
|
closesocket(nfd);
|
2009-10-24 23:40:07 +00:00
|
|
|
logger(LOG_ERR, "Call to `%s' failed: %s", "ioctlsocket", sockstrerror(sockerrno));
|
2007-05-17 19:15:48 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2003-07-28 22:06:09 +00:00
|
|
|
#endif
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
option = 1;
|
2010-11-12 15:15:29 +00:00
|
|
|
setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, (void *)&option, sizeof option);
|
2002-03-01 15:14:29 +00:00
|
|
|
|
2010-11-13 18:05:49 +00:00
|
|
|
if(udp_rcvbuf && setsockopt(nfd, SOL_SOCKET, SO_RCVBUF, (void *)&udp_rcvbuf, sizeof(udp_rcvbuf)))
|
2010-11-13 20:34:59 +00:00
|
|
|
logger(LOG_WARNING, "Can't set UDP SO_RCVBUF to %i: %s", udp_rcvbuf, strerror(errno));
|
2010-11-13 18:05:49 +00:00
|
|
|
|
|
|
|
if(udp_sndbuf && setsockopt(nfd, SOL_SOCKET, SO_SNDBUF, (void *)&udp_sndbuf, sizeof(udp_sndbuf)))
|
2010-11-13 20:34:59 +00:00
|
|
|
logger(LOG_WARNING, "Can't set UDP SO_SNDBUF to %i: %s", udp_sndbuf, strerror(errno));
|
2010-11-13 18:05:49 +00:00
|
|
|
|
2010-02-02 21:22:27 +00:00
|
|
|
#if defined(IPPROTO_IPV6) && defined(IPV6_V6ONLY)
|
2008-12-11 20:49:14 +00:00
|
|
|
if(sa->sa.sa_family == AF_INET6)
|
2010-05-01 13:39:59 +00:00
|
|
|
setsockopt(nfd, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&option, sizeof option);
|
2010-02-02 21:22:27 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(IP_DONTFRAG) && !defined(IP_DONTFRAGMENT)
|
|
|
|
#define IP_DONTFRAGMENT IP_DONTFRAG
|
2008-12-11 20:49:14 +00:00
|
|
|
#endif
|
|
|
|
|
2003-12-20 19:47:53 +00:00
|
|
|
#if defined(SOL_IP) && defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO)
|
2009-03-09 12:48:54 +00:00
|
|
|
if(myself->options & OPTION_PMTU_DISCOVERY) {
|
|
|
|
option = IP_PMTUDISC_DO;
|
2010-05-01 13:39:59 +00:00
|
|
|
setsockopt(nfd, SOL_IP, IP_MTU_DISCOVER, (void *)&option, sizeof(option));
|
2003-12-20 21:09:33 +00:00
|
|
|
}
|
2009-10-24 20:32:35 +00:00
|
|
|
#elif defined(IPPROTO_IP) && defined(IP_DONTFRAGMENT)
|
|
|
|
if(myself->options & OPTION_PMTU_DISCOVERY) {
|
|
|
|
option = 1;
|
2010-05-01 13:39:59 +00:00
|
|
|
setsockopt(nfd, IPPROTO_IP, IP_DONTFRAGMENT, (void *)&option, sizeof(option));
|
2009-10-24 20:32:35 +00:00
|
|
|
}
|
2010-02-02 21:22:27 +00:00
|
|
|
#else
|
|
|
|
#warning No way to disable IPv4 fragmentation
|
2003-12-20 21:09:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(SOL_IPV6) && defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DO)
|
2009-03-09 12:48:54 +00:00
|
|
|
if(myself->options & OPTION_PMTU_DISCOVERY) {
|
|
|
|
option = IPV6_PMTUDISC_DO;
|
2010-05-01 13:39:59 +00:00
|
|
|
setsockopt(nfd, SOL_IPV6, IPV6_MTU_DISCOVER, (void *)&option, sizeof(option));
|
2003-12-20 19:47:53 +00:00
|
|
|
}
|
2010-02-02 21:22:27 +00:00
|
|
|
#elif defined(IPPROTO_IPV6) && defined(IPV6_DONTFRAG)
|
|
|
|
if(myself->options & OPTION_PMTU_DISCOVERY) {
|
|
|
|
option = 1;
|
2010-05-01 13:39:59 +00:00
|
|
|
setsockopt(nfd, IPPROTO_IPV6, IPV6_DONTFRAG, (void *)&option, sizeof(option));
|
2010-02-02 21:22:27 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
#warning No way to disable IPv6 fragmentation
|
2003-12-20 19:47:53 +00:00
|
|
|
#endif
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-05-27 12:20:24 +00:00
|
|
|
if (!bind_to_interface(nfd)) {
|
|
|
|
closesocket(nfd);
|
|
|
|
return -1;
|
2002-03-01 11:18:34 +00:00
|
|
|
}
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
|
2003-07-29 22:59:01 +00:00
|
|
|
closesocket(nfd);
|
2002-09-09 21:25:28 +00:00
|
|
|
addrstr = sockaddr2hostname(sa);
|
2009-10-24 23:40:07 +00:00
|
|
|
logger(LOG_ERR, "Can't bind to %s/udp: %s", addrstr, sockstrerror(sockerrno));
|
2002-09-09 21:25:28 +00:00
|
|
|
free(addrstr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nfd;
|
2009-05-27 12:20:24 +00:00
|
|
|
} /* int setup_vpn_in_socket */
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2007-05-17 22:09:55 +00:00
|
|
|
static void retry_outgoing_handler(int fd, short events, void *data) {
|
2007-05-19 13:34:32 +00:00
|
|
|
setup_outgoing_connection(data);
|
2007-05-17 22:09:55 +00:00
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-17 22:09:55 +00:00
|
|
|
void retry_outgoing(outgoing_t *outgoing) {
|
2002-09-09 21:25:28 +00:00
|
|
|
outgoing->timeout += 5;
|
|
|
|
|
|
|
|
if(outgoing->timeout > maxtimeout)
|
|
|
|
outgoing->timeout = maxtimeout;
|
|
|
|
|
2007-05-17 22:09:55 +00:00
|
|
|
timeout_set(&outgoing->ev, retry_outgoing_handler, outgoing);
|
|
|
|
event_add(&outgoing->ev, &(struct timeval){outgoing->timeout, 0});
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-07-12 17:41:48 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_NOTICE,
|
2009-09-24 22:54:07 +00:00
|
|
|
"Trying to re-establish outgoing connection in %d seconds",
|
2002-09-09 21:25:28 +00:00
|
|
|
outgoing->timeout);
|
2002-02-18 16:25:19 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void finish_connecting(connection_t *c) {
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_INFO, "Connected to %s (%s)", c->name, c->hostname);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2006-01-13 11:21:59 +00:00
|
|
|
configure_tcp(c);
|
2004-11-10 21:56:31 +00:00
|
|
|
|
2007-05-18 09:34:06 +00:00
|
|
|
c->last_ping_time = time(NULL);
|
2007-05-17 23:04:02 +00:00
|
|
|
c->status.connecting = false;
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
send_id(c);
|
2002-02-18 16:25:19 +00:00
|
|
|
}
|
|
|
|
|
2011-05-29 19:53:21 +00:00
|
|
|
bool do_outgoing_connection(connection_t *c) {
|
2009-12-23 18:49:38 +00:00
|
|
|
char *address, *port, *space;
|
2006-08-08 13:44:19 +00:00
|
|
|
int result;
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2009-10-20 20:14:47 +00:00
|
|
|
if(!c->outgoing) {
|
|
|
|
logger(LOG_ERR, "do_outgoing_connection() for %s called without c->outgoing", c->name);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
begin:
|
|
|
|
if(!c->outgoing->ai) {
|
|
|
|
if(!c->outgoing->cfg) {
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_ERR, "Could not set up a meta connection to %s",
|
2002-09-09 21:25:28 +00:00
|
|
|
c->name);
|
|
|
|
retry_outgoing(c->outgoing);
|
2007-05-19 13:34:32 +00:00
|
|
|
c->outgoing = NULL;
|
|
|
|
connection_del(c);
|
2011-05-29 19:53:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get_config_string(c->outgoing->cfg, &address);
|
|
|
|
|
2009-12-23 18:49:38 +00:00
|
|
|
space = strchr(address, ' ');
|
|
|
|
if(space) {
|
|
|
|
port = xstrdup(space + 1);
|
|
|
|
*space = 0;
|
|
|
|
} else {
|
|
|
|
if(!get_config_string(lookup_config(c->config_tree, "Port"), &port))
|
|
|
|
port = xstrdup("655");
|
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
c->outgoing->ai = str2addrinfo(address, port, SOCK_STREAM);
|
|
|
|
free(address);
|
|
|
|
free(port);
|
|
|
|
|
|
|
|
c->outgoing->aip = c->outgoing->ai;
|
|
|
|
c->outgoing->cfg = lookup_config_next(c->config_tree, c->outgoing->cfg);
|
|
|
|
}
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
if(!c->outgoing->aip) {
|
2008-12-11 15:21:40 +00:00
|
|
|
if(c->outgoing->ai)
|
|
|
|
freeaddrinfo(c->outgoing->ai);
|
2002-09-09 21:25:28 +00:00
|
|
|
c->outgoing->ai = NULL;
|
|
|
|
goto begin;
|
|
|
|
}
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2003-12-12 19:52:25 +00:00
|
|
|
memcpy(&c->address, c->outgoing->aip->ai_addr, c->outgoing->aip->ai_addrlen);
|
2002-09-09 21:25:28 +00:00
|
|
|
c->outgoing->aip = c->outgoing->aip->ai_next;
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
if(c->hostname)
|
|
|
|
free(c->hostname);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
c->hostname = sockaddr2hostname(&c->address);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_INFO, "Trying to connect to %s (%s)", c->name,
|
2002-09-09 21:25:28 +00:00
|
|
|
c->hostname);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
if(c->socket == -1) {
|
2009-10-24 23:40:07 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_ERR, "Creating socket for %s failed: %s", c->hostname, sockstrerror(sockerrno));
|
2002-09-09 21:25:28 +00:00
|
|
|
goto begin;
|
|
|
|
}
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2008-12-11 20:49:14 +00:00
|
|
|
#if defined(SOL_IPV6) && defined(IPV6_V6ONLY)
|
|
|
|
int option = 1;
|
|
|
|
if(c->address.sa.sa_family == AF_INET6)
|
2010-05-01 13:39:59 +00:00
|
|
|
setsockopt(c->socket, SOL_IPV6, IPV6_V6ONLY, (void *)&option, sizeof option);
|
2008-12-11 20:49:14 +00:00
|
|
|
#endif
|
|
|
|
|
2009-05-27 12:20:24 +00:00
|
|
|
bind_to_interface(c->socket);
|
|
|
|
bind_to_address(c);
|
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
/* Optimize TCP settings */
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2006-01-13 11:21:59 +00:00
|
|
|
configure_tcp(c);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
/* Connect */
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
result = connect(c->socket, &c->address.sa, SALEN(c->address.sa));
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
if(result == -1) {
|
2009-10-24 23:40:07 +00:00
|
|
|
if(sockinprogress(sockerrno)) {
|
2003-07-22 20:55:21 +00:00
|
|
|
c->status.connecting = true;
|
2011-05-29 19:53:21 +00:00
|
|
|
return true;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2003-07-29 22:59:01 +00:00
|
|
|
closesocket(c->socket);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2009-10-24 23:40:07 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_ERR, "%s: %s", c->hostname, sockstrerror(sockerrno));
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
goto begin;
|
|
|
|
}
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
finish_connecting(c);
|
2002-02-18 16:25:19 +00:00
|
|
|
|
2011-05-29 19:53:21 +00:00
|
|
|
return true;
|
2002-02-18 16:25:19 +00:00
|
|
|
}
|
|
|
|
|
2011-05-28 01:56:06 +00:00
|
|
|
static void handle_meta_write(int sock, short events, void *data) {
|
2009-09-29 12:55:29 +00:00
|
|
|
ifdebug(META) logger(LOG_DEBUG, "handle_meta_write() called");
|
2011-05-14 17:20:56 +00:00
|
|
|
|
|
|
|
connection_t *c = data;
|
|
|
|
|
|
|
|
size_t outlen = write(c->socket, c->outbuf.data + c->outbuf.offset, c->outbuf.len - c->outbuf.offset);
|
|
|
|
if(outlen <= 0) {
|
|
|
|
logger(LOG_ERR, "Onoes, outlen = %zd (%s)", outlen, strerror(errno));
|
|
|
|
terminate_connection(c, c->status.active);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer_read(&c->outbuf, outlen);
|
2011-05-22 11:15:27 +00:00
|
|
|
if(!c->outbuf.len && event_initialized(&c->outevent))
|
2011-05-14 17:20:56 +00:00
|
|
|
event_del(&c->outevent);
|
2007-05-19 22:23:02 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void setup_outgoing_connection(outgoing_t *outgoing) {
|
2002-09-09 21:25:28 +00:00
|
|
|
connection_t *c;
|
|
|
|
node_t *n;
|
|
|
|
|
2011-05-22 11:15:27 +00:00
|
|
|
if(event_initialized(&outgoing->ev))
|
|
|
|
event_del(&outgoing->ev);
|
2009-10-20 20:14:47 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
n = lookup_node(outgoing->name);
|
|
|
|
|
|
|
|
if(n)
|
|
|
|
if(n->connection) {
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_INFO, "Already connected to %s", outgoing->name);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
n->connection->outgoing = outgoing;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
c = new_connection();
|
|
|
|
c->name = xstrdup(outgoing->name);
|
|
|
|
c->outcipher = myself->connection->outcipher;
|
|
|
|
c->outdigest = myself->connection->outdigest;
|
|
|
|
c->outmaclength = myself->connection->outmaclength;
|
|
|
|
c->outcompression = myself->connection->outcompression;
|
|
|
|
|
|
|
|
init_configuration(&c->config_tree);
|
|
|
|
read_connection_config(c);
|
|
|
|
|
|
|
|
outgoing->cfg = lookup_config(c->config_tree, "Address");
|
|
|
|
|
|
|
|
if(!outgoing->cfg) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "No address specified for %s", c->name);
|
2002-09-09 21:25:28 +00:00
|
|
|
free_connection(c);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
c->outgoing = outgoing;
|
2007-05-18 09:34:06 +00:00
|
|
|
c->last_ping_time = time(NULL);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-17 21:47:27 +00:00
|
|
|
connection_add(c);
|
|
|
|
|
2011-05-29 19:53:21 +00:00
|
|
|
if (do_outgoing_connection(c)) {
|
|
|
|
event_set(&c->inevent, c->socket, EV_READ | EV_PERSIST, handle_meta_connection_data, c);
|
|
|
|
event_set(&c->outevent, c->socket, EV_WRITE | EV_PERSIST, handle_meta_write, c);
|
|
|
|
event_add(&c->inevent, NULL);
|
|
|
|
}
|
2002-02-18 16:25:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
accept a new tcp connect and create a
|
|
|
|
new connection
|
|
|
|
*/
|
2007-05-18 10:00:00 +00:00
|
|
|
void handle_new_meta_connection(int sock, short events, void *data) {
|
2002-09-09 21:25:28 +00:00
|
|
|
connection_t *c;
|
|
|
|
sockaddr_t sa;
|
2006-03-19 13:06:21 +00:00
|
|
|
int fd;
|
2008-12-11 15:56:18 +00:00
|
|
|
socklen_t len = sizeof sa;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
|
|
|
fd = accept(sock, &sa.sa, &len);
|
|
|
|
|
|
|
|
if(fd < 0) {
|
2009-10-24 23:40:07 +00:00
|
|
|
logger(LOG_ERR, "Accepting a new connection failed: %s", sockstrerror(sockerrno));
|
2007-05-17 20:20:10 +00:00
|
|
|
return;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sockaddrunmap(&sa);
|
|
|
|
|
|
|
|
c = new_connection();
|
2007-05-17 19:15:48 +00:00
|
|
|
c->name = xstrdup("<unknown>");
|
2002-09-09 21:25:28 +00:00
|
|
|
c->outcipher = myself->connection->outcipher;
|
|
|
|
c->outdigest = myself->connection->outdigest;
|
|
|
|
c->outmaclength = myself->connection->outmaclength;
|
|
|
|
c->outcompression = myself->connection->outcompression;
|
|
|
|
|
|
|
|
c->address = sa;
|
|
|
|
c->hostname = sockaddr2hostname(&sa);
|
|
|
|
c->socket = fd;
|
2007-05-18 09:34:06 +00:00
|
|
|
c->last_ping_time = time(NULL);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Connection from %s", c->hostname);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
event_set(&c->inevent, c->socket, EV_READ | EV_PERSIST, handle_meta_connection_data, c);
|
2011-05-14 17:20:56 +00:00
|
|
|
event_set(&c->outevent, c->socket, EV_WRITE | EV_PERSIST, handle_meta_write, c);
|
2007-05-19 22:23:02 +00:00
|
|
|
event_add(&c->inevent, NULL);
|
2007-05-17 20:20:10 +00:00
|
|
|
|
2006-01-13 11:21:59 +00:00
|
|
|
configure_tcp(c);
|
2004-11-10 21:56:31 +00:00
|
|
|
|
2002-09-09 21:25:28 +00:00
|
|
|
connection_add(c);
|
|
|
|
|
|
|
|
c->allow_request = ID;
|
|
|
|
send_id(c);
|
2002-02-18 16:25:19 +00:00
|
|
|
}
|
|
|
|
|
2011-05-28 01:56:06 +00:00
|
|
|
static void free_outgoing(outgoing_t *outgoing) {
|
2009-01-20 12:12:41 +00:00
|
|
|
if(outgoing->ai)
|
|
|
|
freeaddrinfo(outgoing->ai);
|
|
|
|
|
|
|
|
if(outgoing->name)
|
|
|
|
free(outgoing->name);
|
|
|
|
|
|
|
|
free(outgoing);
|
|
|
|
}
|
|
|
|
|
2009-09-24 22:14:03 +00:00
|
|
|
void try_outgoing_connections(void) {
|
2002-09-09 21:25:28 +00:00
|
|
|
static config_t *cfg = NULL;
|
|
|
|
char *name;
|
|
|
|
outgoing_t *outgoing;
|
2009-01-20 12:12:41 +00:00
|
|
|
|
|
|
|
outgoing_list = list_alloc((list_action_t)free_outgoing);
|
|
|
|
|
2005-05-04 15:51:45 +00:00
|
|
|
for(cfg = lookup_config(config_tree, "ConnectTo"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
|
2002-09-09 21:25:28 +00:00
|
|
|
get_config_string(cfg, &name);
|
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
if(!check_id(name)) {
|
2003-07-12 17:41:48 +00:00
|
|
|
logger(LOG_ERR,
|
2009-09-24 22:54:07 +00:00
|
|
|
"Invalid name for outgoing connection in %s line %d",
|
2002-09-09 21:25:28 +00:00
|
|
|
cfg->file, cfg->line);
|
|
|
|
free(name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-12-11 15:56:18 +00:00
|
|
|
outgoing = xmalloc_and_zero(sizeof *outgoing);
|
2002-09-09 21:25:28 +00:00
|
|
|
outgoing->name = name;
|
2009-01-20 12:12:41 +00:00
|
|
|
list_insert_tail(outgoing_list, outgoing);
|
2002-09-09 21:25:28 +00:00
|
|
|
setup_outgoing_connection(outgoing);
|
|
|
|
}
|
2002-02-18 16:25:19 +00:00
|
|
|
}
|