2 net_socket.c -- Handle various kinds of sockets.
3 Copyright (C) 1998-2005 Ivo Timmermans,
4 2000-2006 Guus Sliepen <guus@tinc-vpn.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 #include "connection.h"
38 #define EINPROGRESS WSAEINPROGRESS
41 /* Needed on Mac OS/X */
43 #define SOL_TCP IPPROTO_TCP
46 int addressfamily = AF_UNSPEC;
48 int seconds_till_retry = 5;
50 listen_socket_t listen_socket[MAXSOCKETS];
55 static void configure_tcp(connection_t *c)
60 int flags = fcntl(c->socket, F_GETFL);
62 if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0) {
63 logger(LOG_ERR, _("fcntl for %s: %s"), c->hostname, strerror(errno));
67 #if defined(SOL_TCP) && defined(TCP_NODELAY)
69 setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
72 #if defined(SOL_IP) && defined(IP_TOS) && defined(IPTOS_LOWDELAY)
73 option = IPTOS_LOWDELAY;
74 setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option));
78 int setup_listen_socket(const sockaddr_t *sa)
87 nfd = socket(sa->sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
90 ifdebug(STATUS) logger(LOG_ERR, _("Creating metasocket failed: %s"), strerror(errno));
94 /* Optimize TCP settings */
97 setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
100 (lookup_config(config_tree, "BindToInterface"), &iface)) {
101 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
104 memset(&ifr, 0, sizeof(ifr));
105 strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ);
107 if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr))) {
109 logger(LOG_ERR, _("Can't bind to interface %s: %s"), iface,
114 logger(LOG_WARNING, _("BindToInterface not supported on this platform"));
118 if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
120 addrstr = sockaddr2hostname(sa);
121 logger(LOG_ERR, _("Can't bind to %s/tcp: %s"), addrstr,
129 logger(LOG_ERR, _("System call `%s' failed: %s"), "listen",
137 int setup_vpn_in_socket(const sockaddr_t *sa)
145 nfd = socket(sa->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP);
148 logger(LOG_ERR, _("Creating UDP socket failed: %s"), strerror(errno));
154 int flags = fcntl(nfd, F_GETFL);
156 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0) {
158 logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl",
166 setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
168 #if defined(SOL_IP) && defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO)
172 if(get_config_bool(lookup_config(myself->connection->config_tree, "PMTUDiscovery"), &choice) && choice) {
173 option = IP_PMTUDISC_DO;
174 setsockopt(nfd, SOL_IP, IP_MTU_DISCOVER, &option, sizeof(option));
179 #if defined(SOL_IPV6) && defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DO)
183 if(get_config_bool(lookup_config(myself->connection->config_tree, "PMTUDiscovery"), &choice) && choice) {
184 option = IPV6_PMTUDISC_DO;
185 setsockopt(nfd, SOL_IPV6, IPV6_MTU_DISCOVER, &option, sizeof(option));
190 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
195 if(get_config_string(lookup_config(config_tree, "BindToInterface"), &iface)) {
196 memset(&ifr, 0, sizeof(ifr));
197 strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ);
199 if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr))) {
201 logger(LOG_ERR, _("Can't bind to interface %s: %s"), iface,
209 if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
211 addrstr = sockaddr2hostname(sa);
212 logger(LOG_ERR, _("Can't bind to %s/udp: %s"), addrstr,
221 void retry_outgoing(outgoing_t *outgoing)
227 outgoing->timeout += 5;
229 if(outgoing->timeout > maxtimeout)
230 outgoing->timeout = maxtimeout;
233 event->handler = (event_handler_t) setup_outgoing_connection;
234 event->time = now + outgoing->timeout;
235 event->data = outgoing;
238 ifdebug(CONNECTIONS) logger(LOG_NOTICE,
239 _("Trying to re-establish outgoing connection in %d seconds"),
243 void finish_connecting(connection_t *c)
247 ifdebug(CONNECTIONS) logger(LOG_INFO, _("Connected to %s (%s)"), c->name, c->hostname);
251 c->last_ping_time = now;
256 void do_outgoing_connection(connection_t *c)
258 char *address, *port;
264 if(!c->outgoing->ai) {
265 if(!c->outgoing->cfg) {
266 ifdebug(CONNECTIONS) logger(LOG_ERR, _("Could not set up a meta connection to %s"),
268 c->status.remove = true;
269 retry_outgoing(c->outgoing);
273 get_config_string(c->outgoing->cfg, &address);
275 if(!get_config_string(lookup_config(c->config_tree, "Port"), &port))
276 asprintf(&port, "655");
278 c->outgoing->ai = str2addrinfo(address, port, SOCK_STREAM);
282 c->outgoing->aip = c->outgoing->ai;
283 c->outgoing->cfg = lookup_config_next(c->config_tree, c->outgoing->cfg);
286 if(!c->outgoing->aip) {
287 freeaddrinfo(c->outgoing->ai);
288 c->outgoing->ai = NULL;
292 memcpy(&c->address, c->outgoing->aip->ai_addr, c->outgoing->aip->ai_addrlen);
293 c->outgoing->aip = c->outgoing->aip->ai_next;
298 c->hostname = sockaddr2hostname(&c->address);
300 ifdebug(CONNECTIONS) logger(LOG_INFO, _("Trying to connect to %s (%s)"), c->name,
303 c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
305 if(c->socket == -1) {
306 ifdebug(CONNECTIONS) logger(LOG_ERR, _("Creating socket for %s failed: %s"), c->hostname,
312 /* Optimize TCP settings */
318 result = connect(c->socket, &c->address.sa, SALEN(c->address.sa));
321 if(errno == EINPROGRESS) {
322 c->status.connecting = true;
326 closesocket(c->socket);
328 ifdebug(CONNECTIONS) logger(LOG_ERR, _("%s: %s"), c->hostname, strerror(errno));
333 finish_connecting(c);
338 void setup_outgoing_connection(outgoing_t *outgoing)
345 n = lookup_node(outgoing->name);
349 ifdebug(CONNECTIONS) logger(LOG_INFO, _("Already connected to %s"), outgoing->name);
351 n->connection->outgoing = outgoing;
355 c = new_connection();
356 c->name = xstrdup(outgoing->name);
357 c->outcipher = myself->connection->outcipher;
358 c->outdigest = myself->connection->outdigest;
359 c->outmaclength = myself->connection->outmaclength;
360 c->outcompression = myself->connection->outcompression;
362 init_configuration(&c->config_tree);
363 read_connection_config(c);
365 outgoing->cfg = lookup_config(c->config_tree, "Address");
368 logger(LOG_ERR, _("No address specified for %s"), c->name);
370 free(outgoing->name);
375 c->outgoing = outgoing;
376 c->last_ping_time = now;
380 do_outgoing_connection(c);
384 accept a new tcp connect and create a
387 bool handle_new_meta_connection(int sock)
392 socklen_t len = sizeof(sa);
396 fd = accept(sock, &sa.sa, &len);
399 logger(LOG_ERR, _("Accepting a new connection failed: %s"),
406 c = new_connection();
408 c->outcipher = myself->connection->outcipher;
409 c->outdigest = myself->connection->outdigest;
410 c->outmaclength = myself->connection->outmaclength;
411 c->outcompression = myself->connection->outcompression;
414 c->hostname = sockaddr2hostname(&sa);
416 c->last_ping_time = now;
418 ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection from %s"), c->hostname);
424 c->allow_request = ID;
430 void try_outgoing_connections(void)
432 static config_t *cfg = NULL;
434 outgoing_t *outgoing;
438 for(cfg = lookup_config(config_tree, "ConnectTo"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
439 get_config_string(cfg, &name);
441 if(!check_id(name)) {
443 _("Invalid name for outgoing connection in %s line %d"),
444 cfg->file, cfg->line);
449 outgoing = xmalloc_and_zero(sizeof(*outgoing));
450 outgoing->name = name;
451 setup_outgoing_connection(outgoing);