2 net_socket.c -- Handle various kinds of sockets.
3 Copyright (C) 1998-2002 Ivo Timmermans <itimmermans@bigfoot.com>,
4 2000-2002 Guus Sliepen <guus@sliepen.warande.net>
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.
20 $Id: net_socket.c,v 1.1.2.13 2002/06/08 12:57:10 guus Exp $
28 #include <netinet/in.h>
29 #ifdef HAVE_NETINET_IP_H
30 #include <netinet/ip.h>
32 #ifdef HAVE_NETINET_TCP_H
33 #include <netinet/tcp.h>
40 #include <sys/types.h>
43 #include <sys/ioctl.h>
44 /* SunOS really wants sys/socket.h BEFORE net/if.h,
45 and FreeBSD wants these lines below the rest. */
46 #include <arpa/inet.h>
47 #include <sys/socket.h>
56 #include "connection.h"
71 #ifndef HAVE_RAND_PSEUDO_BYTES
72 #define RAND_pseudo_bytes RAND_bytes
75 int addressfamily = AF_INET;
77 int seconds_till_retry = 5;
79 listen_socket_t listen_socket[MAXSOCKETS];
80 int listen_sockets = 0;
84 int setup_listen_socket(sockaddr_t *sa)
89 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
94 if((nfd = socket(sa->sa.sa_family, SOCK_STREAM, IPPROTO_TCP)) < 0)
96 syslog(LOG_ERR, _("Creating metasocket failed: %s"), strerror(errno));
100 flags = fcntl(nfd, F_GETFL);
101 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
104 syslog(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", strerror(errno));
108 /* Optimize TCP settings */
111 setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
113 #if defined(SOL_TCP) && defined(TCP_NODELAY)
114 setsockopt(nfd, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
117 #if defined(SOL_IP) && defined(IP_TOS) && defined(IPTOS_LOWDELAY)
118 option = IPTOS_LOWDELAY;
119 setsockopt(nfd, SOL_IP, IP_TOS, &option, sizeof(option));
122 if(get_config_string(lookup_config(config_tree, "BindToInterface"), &interface))
124 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
125 memset(&ifr, 0, sizeof(ifr));
126 strncpy(ifr.ifr_ifrn.ifrn_name, interface, IFNAMSIZ);
127 if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr)))
130 syslog(LOG_ERR, _("Can't bind to interface %s: %s"), interface, strerror(errno));
134 syslog(LOG_WARNING, _("BindToDevice not supported on this platform"));
138 if(bind(nfd, &sa->sa, SALEN(sa->sa)))
141 addrstr = sockaddr2hostname(sa);
142 syslog(LOG_ERR, _("Can't bind to %s/tcp: %s"), addrstr, strerror(errno));
150 syslog(LOG_ERR, _("System call `%s' failed: %s"), "listen", strerror(errno));
157 int setup_vpn_in_socket(sockaddr_t *sa)
162 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
167 if((nfd = socket(sa->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP)) < 0)
169 syslog(LOG_ERR, _("Creating UDP socket failed: %s"), strerror(errno));
173 flags = fcntl(nfd, F_GETFL);
174 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
177 syslog(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", strerror(errno));
182 setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
184 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
185 if(get_config_string(lookup_config(config_tree, "BindToInterface"), &interface))
187 memset(&ifr, 0, sizeof(ifr));
188 strncpy(ifr.ifr_ifrn.ifrn_name, interface, IFNAMSIZ);
189 if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr)))
192 syslog(LOG_ERR, _("Can't bind to interface %s: %s"), interface, strerror(errno));
198 if(bind(nfd, &sa->sa, SALEN(sa->sa)))
201 addrstr = sockaddr2hostname(sa);
202 syslog(LOG_ERR, _("Can't bind to %s/udp: %s"), addrstr, strerror(errno));
210 void retry_outgoing(outgoing_t *outgoing)
214 outgoing->timeout += 5;
215 if(outgoing->timeout > maxtimeout)
216 outgoing->timeout = maxtimeout;
219 event->handler = (event_handler_t)setup_outgoing_connection;
220 event->time = now + outgoing->timeout;
221 event->data = outgoing;
224 if(debug_lvl >= DEBUG_CONNECTIONS)
225 syslog(LOG_NOTICE, _("Trying to re-establish outgoing connection in %d seconds"), outgoing->timeout);
229 int setup_outgoing_socket(connection_t *c)
233 if(debug_lvl >= DEBUG_CONNECTIONS)
234 syslog(LOG_INFO, _("Trying to connect to %s (%s)"), c->name, c->hostname);
236 c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
240 syslog(LOG_ERR, _("Creating socket for %s failed: %s"), c->hostname, strerror(errno));
244 /* Optimize TCP settings */
246 #if defined(SOL_TCP) && defined(TCP_NODELAY)
248 setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
251 #if defined(SOL_IP) && defined(IP_TOS)
252 option = IPTOS_LOWDELAY;
253 setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option));
258 if(connect(c->socket, &c->address.sa, SALEN(c->address.sa)) == -1)
261 syslog(LOG_ERR, _("Error while connecting to %s (%s): %s"), c->name, c->hostname, strerror(errno));
265 if(debug_lvl >= DEBUG_CONNECTIONS)
266 syslog(LOG_INFO, _("Connected to %s (%s)"), c->name, c->hostname);
272 void finish_connecting(connection_t *c)
275 if(debug_lvl >= DEBUG_CONNECTIONS)
276 syslog(LOG_INFO, _("Connected to %s (%s)"), c->name, c->hostname);
278 c->last_ping_time = now;
284 void do_outgoing_connection(connection_t *c)
286 char *address, *port;
287 int option, result, flags;
292 if(!c->outgoing->cfg)
294 if(debug_lvl >= DEBUG_CONNECTIONS)
295 syslog(LOG_ERR, _("Could not set up a meta connection to %s"), c->name);
296 c->status.remove = 1;
297 retry_outgoing(c->outgoing);
301 get_config_string(c->outgoing->cfg, &address);
303 if(!get_config_string(lookup_config(c->config_tree, "Port"), &port))
304 asprintf(&port, "655");
306 c->outgoing->ai = str2addrinfo(address, port, SOCK_STREAM);
310 c->outgoing->aip = c->outgoing->ai;
311 c->outgoing->cfg = lookup_config_next(c->config_tree, c->outgoing->cfg);
314 if(!c->outgoing->aip)
316 freeaddrinfo(c->outgoing->ai);
317 c->outgoing->ai = NULL;
321 memcpy(&c->address, c->outgoing->aip->ai_addr, c->outgoing->aip->ai_addrlen);
322 c->outgoing->aip = c->outgoing->aip->ai_next;
327 c->hostname = sockaddr2hostname(&c->address);
329 if(debug_lvl >= DEBUG_CONNECTIONS)
330 syslog(LOG_INFO, _("Trying to connect to %s (%s)"), c->name, c->hostname);
332 c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
336 if(debug_lvl >= DEBUG_CONNECTIONS)
337 syslog(LOG_ERR, _("Creating socket for %s failed: %s"), c->hostname, strerror(errno));
342 /* Optimize TCP settings */
344 #if defined(SOL_TCP) && defined(TCP_NODELAY)
346 setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
349 #if defined(SOL_IP) && defined(IP_TOS)
350 option = IPTOS_LOWDELAY;
351 setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option));
356 flags = fcntl(c->socket, F_GETFL);
358 if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0)
360 syslog(LOG_ERR, _("fcntl for %s: %s"), c->hostname, strerror(errno));
365 result = connect(c->socket, &c->address.sa, SALEN(c->address.sa));
369 if(errno == EINPROGRESS)
371 c->status.connecting = 1;
377 if(debug_lvl >= DEBUG_CONNECTIONS)
378 syslog(LOG_ERR, _("%s: %s"), c->hostname, strerror(errno));
383 finish_connecting(c);
388 void setup_outgoing_connection(outgoing_t *outgoing)
393 n = lookup_node(outgoing->name);
398 if(debug_lvl >= DEBUG_CONNECTIONS)
399 syslog(LOG_INFO, _("Already connected to %s"), outgoing->name);
400 n->connection->outgoing = outgoing;
404 c = new_connection();
405 c->name = xstrdup(outgoing->name);
406 c->outcipher = myself->connection->outcipher;
407 c->outdigest = myself->connection->outdigest;
408 c->outmaclength = myself->connection->outmaclength;
409 c->outcompression = myself->connection->outcompression;
411 init_configuration(&c->config_tree);
412 read_connection_config(c);
414 outgoing->cfg = lookup_config(c->config_tree, "Address");
418 syslog(LOG_ERR, _("No address specified for %s"), c->name);
420 free(outgoing->name);
425 c->outgoing = outgoing;
426 c->last_ping_time = now;
430 do_outgoing_connection(c);
434 accept a new tcp connect and create a
437 int handle_new_meta_connection(int sock)
441 int fd, len = sizeof(sa);
443 if((fd = accept(sock, &sa.sa, &len)) < 0)
445 syslog(LOG_ERR, _("Accepting a new connection failed: %s"), strerror(errno));
451 c = new_connection();
452 c->outcipher = myself->connection->outcipher;
453 c->outdigest = myself->connection->outdigest;
454 c->outmaclength = myself->connection->outmaclength;
455 c->outcompression = myself->connection->outcompression;
458 c->hostname = sockaddr2hostname(&sa);
460 c->last_ping_time = now;
462 if(debug_lvl >= DEBUG_CONNECTIONS)
463 syslog(LOG_NOTICE, _("Connection from %s"), c->hostname);
467 c->allow_request = ID;
473 void try_outgoing_connections(void)
475 static config_t *cfg = NULL;
477 outgoing_t *outgoing;
479 for(cfg = lookup_config(config_tree, "ConnectTo"); cfg; cfg = lookup_config_next(config_tree, cfg))
481 get_config_string(cfg, &name);
485 syslog(LOG_ERR, _("Invalid name for outgoing connection in %s line %d"), cfg->file, cfg->line);
490 outgoing = xmalloc_and_zero(sizeof(*outgoing));
491 outgoing->name = name;
492 setup_outgoing_connection(outgoing);