2 net.c -- most of the network code
3 Copyright (C) 1998-2005 Ivo Timmermans,
4 2000-2010 Guus Sliepen <guus@tinc-vpn.org>
5 2006 Scott Lamb <slamb@slamb.org>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include "splay_tree.h"
27 #include "connection.h"
39 int contradicting_add_edge = 0;
40 int contradicting_del_edge = 0;
42 /* Purge edges and subnets of unreachable nodes. Use carefully. */
45 splay_node_t *nnode, *nnext, *enode, *enext, *snode, *snext;
50 ifdebug(PROTOCOL) logger(LOG_DEBUG, "Purging unreachable nodes");
52 /* Remove all edges and subnets owned by unreachable nodes. */
54 for(nnode = node_tree->head; nnode; nnode = nnext) {
58 if(!n->status.reachable) {
59 ifdebug(SCARY_THINGS) logger(LOG_DEBUG, "Purging node %s (%s)", n->name,
62 for(snode = n->subnet_tree->head; snode; snode = snext) {
65 send_del_subnet(broadcast, s);
70 for(enode = n->edge_tree->head; enode; enode = enext) {
74 send_del_edge(broadcast, e);
80 /* Check if anyone else claims to have an edge to an unreachable node. If not, delete node. */
82 for(nnode = node_tree->head; nnode; nnode = nnext) {
86 if(!n->status.reachable) {
87 for(enode = edge_weight_tree->head; enode; enode = enext) {
95 if(!enode && (!strictsubnets || !n->subnet_tree->head))
96 /* in strictsubnets mode do not delete nodes with subnets */
103 Terminate a connection:
105 - Remove associated edge and tell other connections about it if report = true
106 - Check if we need to retry making an outgoing connection
107 - Deactivate the host
109 void terminate_connection(connection_t *c, bool report) {
110 ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Closing connection with %s (%s)",
111 c->name, c->hostname);
113 c->status.active = false;
116 c->node->connection = NULL;
119 closesocket(c->socket);
122 if(report && !tunnelserver)
123 send_del_edge(broadcast, c->edge);
127 /* Run MST and SSSP algorithms */
131 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
133 if(report && !c->node->status.reachable) {
135 e = lookup_edge(c->node, myself);
138 send_del_edge(broadcast, e);
144 /* Check if this was our outgoing connection */
147 retry_outgoing(c->outgoing);
153 Check if the other end is active.
154 If we have sent packets, but didn't receive any,
155 then possibly the other end is dead. We send a
156 PING request over the meta connection. If the other
157 end does not reply in time, we consider them dead
158 and close the connection.
160 static void timeout_handler(int fd, short events, void *event) {
161 splay_node_t *node, *next;
163 time_t now = time(NULL);
165 for(node = connection_tree->head; node; node = next) {
169 if(c->last_ping_time + pingtimeout < now) {
170 if(c->status.active) {
171 if(c->status.pinged) {
172 ifdebug(CONNECTIONS) logger(LOG_INFO, "%s (%s) didn't respond to PING in %ld seconds",
173 c->name, c->hostname, now - c->last_ping_time);
174 terminate_connection(c, true);
176 } else if(c->last_ping_time + pinginterval < now) {
180 if(c->status.connecting) {
182 logger(LOG_WARNING, "Timeout while connecting to %s (%s)", c->name, c->hostname);
183 c->status.connecting = false;
184 closesocket(c->socket);
185 do_outgoing_connection(c);
187 ifdebug(CONNECTIONS) logger(LOG_WARNING, "Timeout from %s (%s) during authentication", c->name, c->hostname);
188 terminate_connection(c, false);
195 if(contradicting_del_edge && contradicting_add_edge) {
196 logger(LOG_WARNING, "Possible node with same Name as us!");
198 if(rand() % 3 == 0) {
199 logger(LOG_ERR, "Shutting down, check configuration of all nodes for duplicate Names!");
200 event_loopexit(NULL);
204 contradicting_add_edge = 0;
205 contradicting_del_edge = 0;
208 event_add(event, &(struct timeval){pingtimeout, 0});
211 void handle_meta_connection_data(int fd, short events, void *data) {
212 connection_t *c = data;
214 socklen_t len = sizeof result;
216 if(c->status.connecting) {
217 c->status.connecting = false;
219 getsockopt(c->socket, SOL_SOCKET, SO_ERROR, &result, &len);
222 finish_connecting(c);
224 ifdebug(CONNECTIONS) logger(LOG_DEBUG,
225 "Error while connecting to %s (%s): %s",
226 c->name, c->hostname, sockstrerror(result));
227 closesocket(c->socket);
228 do_outgoing_connection(c);
233 if (!receive_meta(c)) {
234 terminate_connection(c, c->status.active);
239 static void sigterm_handler(int signal, short events, void *data) {
240 logger(LOG_NOTICE, "Got %s signal", strsignal(signal));
241 event_loopexit(NULL);
244 static void sighup_handler(int signal, short events, void *data) {
245 logger(LOG_NOTICE, "Got %s signal", strsignal(signal));
246 reload_configuration();
249 int reload_configuration(void) {
251 splay_node_t *node, *next;
254 static time_t last_config_check = 0;
256 /* Reread our own configuration file */
258 exit_configuration(&config_tree);
259 init_configuration(&config_tree);
261 if(!read_server_config()) {
262 logger(LOG_ERR, "Unable to reread configuration file, exitting.");
263 event_loopexit(NULL);
267 /* Close connections to hosts that have a changed or deleted host config file */
269 for(node = connection_tree->head; node; node = next) {
274 free(c->outgoing->name);
276 freeaddrinfo(c->outgoing->ai);
281 xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
282 if(stat(fname, &s) || s.st_mtime > last_config_check)
283 terminate_connection(c, c->status.active);
287 last_config_check = time(NULL);
289 /* If StrictSubnet is set, expire deleted Subnets and read new ones in */
295 for(node = subnet_tree->head; node; node = node->next) {
302 for(node = subnet_tree->head; node; node = next) {
305 if(subnet->expires == 1) {
306 send_del_subnet(broadcast, subnet);
307 if(subnet->owner->status.reachable)
308 subnet_update(subnet->owner, subnet, false);
309 subnet_del(subnet->owner, subnet);
310 } else if(subnet->expires == -1) {
313 send_add_subnet(broadcast, subnet);
314 if(subnet->owner->status.reachable)
315 subnet_update(subnet->owner, subnet, true);
320 /* Try to make outgoing connections */
322 try_outgoing_connections();
331 for(node = connection_tree->head; node; node = node->next) {
334 if(c->outgoing && !c->node) {
335 if(timeout_initialized(&c->outgoing->ev))
336 event_del(&c->outgoing->ev);
337 if(c->status.connecting)
339 c->outgoing->timeout = 0;
340 do_outgoing_connection(c);
346 this is where it all happens...
348 int main_loop(void) {
349 struct event timeout_event;
350 struct event sighup_event;
351 struct event sigterm_event;
352 struct event sigquit_event;
354 timeout_set(&timeout_event, timeout_handler, &timeout_event);
355 event_add(&timeout_event, &(struct timeval){pingtimeout, 0});
358 signal_set(&sighup_event, SIGHUP, sighup_handler, NULL);
359 signal_add(&sighup_event, NULL);
362 signal_set(&sigterm_event, SIGTERM, sigterm_handler, NULL);
363 signal_add(&sigterm_event, NULL);
366 signal_set(&sigquit_event, SIGQUIT, sigterm_handler, NULL);
367 signal_add(&sigquit_event, NULL);
370 if(event_loop(0) < 0) {
371 logger(LOG_ERR, "Error while waiting for input: %s", strerror(errno));
375 signal_del(&sighup_event);
376 signal_del(&sigterm_event);
377 signal_del(&sigquit_event);
378 event_del(&timeout_event);