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.7 2002/03/01 14:09:31 guus Exp $
28 #include <netinet/in.h>
30 #include <netinet/ip.h>
31 #include <netinet/tcp.h>
38 #include <sys/types.h>
41 #include <sys/ioctl.h>
42 /* SunOS really wants sys/socket.h BEFORE net/if.h,
43 and FreeBSD wants these lines below the rest. */
44 #include <arpa/inet.h>
45 #include <sys/socket.h>
54 #include "connection.h"
69 int addressfamily = AF_INET;
71 int seconds_till_retry = 5;
73 int tcp_socket[MAXSOCKETS];
74 int udp_socket[MAXSOCKETS];
75 int listen_sockets = 0;
79 int setup_listen_socket(sockaddr_t *sa)
89 if((nfd = socket(sa->sa.sa_family, SOCK_STREAM, IPPROTO_TCP)) < 0)
91 syslog(LOG_ERR, _("Creating metasocket failed: %s"), strerror(errno));
95 flags = fcntl(nfd, F_GETFL);
96 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
99 syslog(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", strerror(errno));
103 /* Optimize TCP settings */
106 setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
108 setsockopt(nfd, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
110 option = IPTOS_LOWDELAY;
111 setsockopt(nfd, SOL_IP, IP_TOS, &option, sizeof(option));
113 if(get_config_string(lookup_config(config_tree, "BindToInterface"), &interface))
115 memset(&ifr, 0, sizeof(ifr));
116 strncpy(ifr.ifr_ifrn.ifrn_name, interface, IFNAMSIZ);
117 if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr)))
120 syslog(LOG_ERR, _("Can't bind to interface %s: %s"), interface, strerror(errno));
126 if(bind(nfd, &sa->sa, SALEN(sa->sa)))
129 addrstr = sockaddr2hostname(sa);
130 syslog(LOG_ERR, _("Can't bind to %s/tcp: %s"), addrstr, strerror(errno));
138 syslog(LOG_ERR, _("System call `%s' failed: %s"), "listen", strerror(errno));
145 int setup_vpn_in_socket(sockaddr_t *sa)
155 if((nfd = socket(sa->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP)) < 0)
157 syslog(LOG_ERR, _("Creating UDP socket failed: %s"), strerror(errno));
161 flags = fcntl(nfd, F_GETFL);
162 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
165 syslog(LOG_ERR, _("System call `%s' failed: %s"), "fcntl", strerror(errno));
170 setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
172 if(get_config_string(lookup_config(config_tree, "BindToInterface"), &interface))
174 memset(&ifr, 0, sizeof(ifr));
175 strncpy(ifr.ifr_ifrn.ifrn_name, interface, IFNAMSIZ);
176 if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr)))
179 syslog(LOG_ERR, _("Can't bind to interface %s: %s"), interface, strerror(errno));
185 if(bind(nfd, &sa->sa, SALEN(sa->sa)))
188 addrstr = sockaddr2hostname(sa);
189 syslog(LOG_ERR, _("Can't bind to %s/udp: %s"), addrstr, strerror(errno));
197 void retry_outgoing(outgoing_t *outgoing)
201 outgoing->timeout += 5;
202 if(outgoing->timeout > maxtimeout)
203 outgoing->timeout = maxtimeout;
206 event->handler = (event_handler_t)setup_outgoing_connection;
207 event->time = now + outgoing->timeout;
208 event->data = outgoing;
211 if(debug_lvl >= DEBUG_CONNECTIONS)
212 syslog(LOG_NOTICE, _("Trying to re-establish outgoing connection in %d seconds"), outgoing->timeout);
216 int setup_outgoing_socket(connection_t *c)
220 if(debug_lvl >= DEBUG_CONNECTIONS)
221 syslog(LOG_INFO, _("Trying to connect to %s (%s)"), c->name, c->hostname);
223 c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
227 syslog(LOG_ERR, _("Creating socket for %s failed: %s"), c->hostname, strerror(errno));
231 /* Optimize TCP settings */
235 setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
237 option = IPTOS_LOWDELAY;
238 setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option));
243 if(connect(c->socket, &c->address.sa, SALEN(c->address.sa)) == -1)
246 syslog(LOG_ERR, _("Error while connecting to %s (%s): %s"), c->name, c->hostname, strerror(errno));
250 if(debug_lvl >= DEBUG_CONNECTIONS)
251 syslog(LOG_INFO, _("Connected to %s (%s)"), c->name, c->hostname);
257 void finish_connecting(connection_t *c)
260 if(debug_lvl >= DEBUG_CONNECTIONS)
261 syslog(LOG_INFO, _("Connected to %s (%s)"), c->name, c->hostname);
263 c->last_ping_time = now;
269 void do_outgoing_connection(connection_t *c)
271 char *address, *port;
272 int option, result, flags;
277 if(!c->outgoing->cfg)
279 if(debug_lvl >= DEBUG_CONNECTIONS)
280 syslog(LOG_ERR, _("Could not set up a meta connection to %s"), c->name);
281 c->status.remove = 1;
283 retry_outgoing(c->outgoing);
287 get_config_string(c->outgoing->cfg, &address);
289 if(!get_config_string(lookup_config(c->config_tree, "Port"), &port))
290 asprintf(&port, "655");
292 c->outgoing->ai = str2addrinfo(address, port, SOCK_STREAM);
296 c->outgoing->aip = c->outgoing->ai;
297 c->outgoing->cfg = lookup_config_next(c->config_tree, c->outgoing->cfg);
300 if(!c->outgoing->aip)
302 freeaddrinfo(c->outgoing->ai);
303 c->outgoing->ai = NULL;
307 memcpy(&c->address, c->outgoing->aip->ai_addr, c->outgoing->aip->ai_addrlen);
308 c->outgoing->aip = c->outgoing->aip->ai_next;
313 c->hostname = sockaddr2hostname(&c->address);
315 if(debug_lvl >= DEBUG_CONNECTIONS)
316 syslog(LOG_INFO, _("Trying to connect to %s (%s)"), c->name, c->hostname);
318 c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
322 if(debug_lvl >= DEBUG_CONNECTIONS)
323 syslog(LOG_ERR, _("Creating socket for %s failed: %s"), c->hostname, strerror(errno));
328 /* Optimize TCP settings */
332 setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
334 option = IPTOS_LOWDELAY;
335 setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option));
340 flags = fcntl(c->socket, F_GETFL);
342 if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0)
344 syslog(LOG_ERR, _("fcntl for %s: %s"), c->hostname, strerror(errno));
349 result = connect(c->socket, &c->address.sa, SALEN(c->address.sa));
353 if(errno == EINPROGRESS)
355 c->status.connecting = 1;
361 if(debug_lvl >= DEBUG_CONNECTIONS)
362 syslog(LOG_ERR, _("%s: %s"), c->hostname, strerror(errno));
367 finish_connecting(c);
372 void setup_outgoing_connection(outgoing_t *outgoing)
377 n = lookup_node(outgoing->name);
382 if(debug_lvl >= DEBUG_CONNECTIONS)
383 syslog(LOG_INFO, _("Already connected to %s"), outgoing->name);
384 n->connection->outgoing = outgoing;
388 c = new_connection();
389 c->name = xstrdup(outgoing->name);
390 c->outcipher = myself->connection->outcipher;
391 c->outdigest = myself->connection->outdigest;
392 c->outmaclength = myself->connection->outmaclength;
393 c->outcompression = myself->connection->outcompression;
395 init_configuration(&c->config_tree);
396 read_connection_config(c);
398 outgoing->cfg = lookup_config(c->config_tree, "Address");
402 syslog(LOG_ERR, _("No address specified for %s"), c->name);
404 free(outgoing->name);
409 c->outgoing = outgoing;
410 c->last_ping_time = now;
414 do_outgoing_connection(c);
418 accept a new tcp connect and create a
421 int handle_new_meta_connection(int sock)
425 int fd, len = sizeof(sa);
427 if((fd = accept(sock, &sa.sa, &len)) < 0)
429 syslog(LOG_ERR, _("Accepting a new connection failed: %s"), strerror(errno));
433 c = new_connection();
434 c->outcipher = myself->connection->outcipher;
435 c->outdigest = myself->connection->outdigest;
436 c->outmaclength = myself->connection->outmaclength;
437 c->outcompression = myself->connection->outcompression;
440 c->hostname = sockaddr2hostname(&sa);
442 c->last_ping_time = now;
444 if(debug_lvl >= DEBUG_CONNECTIONS)
445 syslog(LOG_NOTICE, _("Connection from %s"), c->hostname);
449 c->allow_request = ID;
455 void try_outgoing_connections(void)
457 static config_t *cfg = NULL;
459 outgoing_t *outgoing;
461 for(cfg = lookup_config(config_tree, "ConnectTo"); cfg; cfg = lookup_config_next(config_tree, cfg))
463 get_config_string(cfg, &name);
467 syslog(LOG_ERR, _("Invalid name for outgoing connection in %s line %d"), cfg->file, cfg->line);
472 outgoing = xmalloc_and_zero(sizeof(*outgoing));
473 outgoing->name = name;
474 setup_outgoing_connection(outgoing);