2 net.c -- most of the network code
3 Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "connection.h"
27 #include "meshlink_internal.h"
34 /* Purge edges of unreachable nodes. Use carefully. */
38 logger(DEBUG_PROTOCOL, LOG_DEBUG, "Purging unreachable nodes");
40 /* Remove all edges owned by unreachable nodes. */
42 for splay_each(node_t, n, mesh->nodes) {
43 if(!n->status.reachable) {
44 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Purging node %s (%s)", n->name, n->hostname);
46 for splay_each(edge_t, e, n->edge_tree) {
47 send_del_edge(mesh->everyone, e);
53 /* Check if anyone else claims to have an edge to an unreachable node. If not, delete node. */
55 for splay_each(node_t, n, mesh->nodes) {
56 if(!n->status.reachable) {
57 for splay_each(edge_t, e, mesh->edges)
65 Terminate a connection:
67 - Remove the edge representing this connection
69 - Check if we need to retry making an outgoing connection
71 void terminate_connection(connection_t *c, bool report) {
72 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Closing connection with %s (%s)", c->name, c->hostname);
74 c->status.active = false;
76 if(c->node && c->node->connection == c)
77 c->node->connection = NULL;
81 send_del_edge(mesh->everyone, c->edge);
86 /* Run MST and SSSP algorithms */
90 /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
92 if(report && !c->node->status.reachable) {
94 e = lookup_edge(c->node, mesh->self);
96 send_del_edge(mesh->everyone, e);
102 outgoing_t *outgoing = c->outgoing;
105 /* Check if this was our outgoing connection */
108 do_outgoing_connection(mesh, outgoing);
111 /* Clean up dead proxy processes */
113 while(waitpid(-1, NULL, WNOHANG) > 0);
118 Check if the other end is active.
119 If we have sent packets, but didn't receive any,
120 then possibly the other end is dead. We send a
121 PING request over the meta connection. If the other
122 end does not reply in time, we consider them dead
123 and close the connection.
125 static void timeout_handler(event_loop_t *loop, void *data) {
126 for list_each(connection_t, c, mesh->connections) {
127 if(c->last_ping_time + mesh->pingtimeout <= mesh->loop.now.tv_sec) {
128 if(c->status.active) {
129 if(c->status.pinged) {
130 logger(DEBUG_CONNECTIONS, LOG_INFO, "%s (%s) didn't respond to PING in %ld seconds", c->name, c->hostname, (long)mesh->loop.now.tv_sec - c->last_ping_time);
131 } else if(c->last_ping_time + mesh->pinginterval <= mesh->loop.now.tv_sec) {
138 if(c->status.connecting)
139 logger(DEBUG_CONNECTIONS, LOG_WARNING, "Timeout while connecting to %s (%s)", c->name, c->hostname);
141 logger(DEBUG_CONNECTIONS, LOG_WARNING, "Timeout from %s (%s) during authentication", c->name, c->hostname);
143 terminate_connection(c, c->status.active);
147 timeout_set(&mesh->loop, data, &(struct timeval){mesh->pingtimeout, rand() % 100000});
150 static void periodic_handler(event_loop_t *loop, void *data) {
151 /* Check if there are too many contradicting ADD_EDGE and DEL_EDGE messages.
152 This usually only happens when another node has the same Name as this node.
153 If so, sleep for a short while to prevent a storm of contradicting messages.
156 if(mesh->contradicting_del_edge > 100 && mesh->contradicting_add_edge > 100) {
157 logger(DEBUG_ALWAYS, LOG_WARNING, "Possible node with same Name as us! Sleeping %d seconds.", mesh->sleeptime);
158 usleep(mesh->sleeptime * 1000000LL);
159 mesh->sleeptime *= 2;
160 if(mesh->sleeptime < 0)
161 mesh->sleeptime = 3600;
163 mesh->sleeptime /= 2;
164 if(mesh->sleeptime < 10)
165 mesh->sleeptime = 10;
168 mesh->contradicting_add_edge = 0;
169 mesh->contradicting_del_edge = 0;
171 /* If AutoConnect is set, check if we need to make or break connections. */
173 if(autoconnect && mesh->nodes->count > 1) {
174 /* Count number of active connections */
176 for list_each(connection_t, c, mesh->connections) {
181 if(nc < autoconnect) {
182 /* Not enough active connections, try to add one.
183 Choose a random node, if we don't have a connection to it,
184 and we are not already trying to make one, create an
185 outgoing connection to this node.
187 int r = rand() % mesh->nodes->count;
190 for splay_each(node_t, n, mesh->nodes) {
199 for list_each(outgoing_t, outgoing, mesh->outgoings) {
200 if(!strcmp(outgoing->name, n->name)) {
207 logger(DEBUG_CONNECTIONS, LOG_INFO, "Autoconnecting to %s", n->name);
208 outgoing_t *outgoing = xzalloc(sizeof *outgoing);
209 outgoing->name = xstrdup(n->name);
210 list_insert_tail(mesh->outgoings, outgoing);
211 setup_outgoing_connection(mesh, outgoing);
215 } else if(nc > autoconnect) {
216 /* Too many active connections, try to remove one.
217 Choose a random outgoing connection to a node
218 that has at least one other connection.
223 for list_each(connection_t, c, mesh->connections) {
224 if(!c->status.active)
230 if(!c->outgoing || !c->node || c->node->edge_tree->count < 2)
233 logger(DEBUG_CONNECTIONS, LOG_INFO, "Autodisconnecting from %s", c->name);
234 list_delete(mesh->outgoings, c->outgoing);
236 terminate_connection(c, c->status.active);
241 if(nc >= autoconnect) {
242 /* If we have enough active connections,
243 remove any pending outgoing connections.
245 for list_each(outgoing_t, o, mesh->outgoings) {
247 for list_each(connection_t, c, mesh->connections) {
248 if(c->outgoing == o) {
254 logger(DEBUG_CONNECTIONS, LOG_INFO, "Cancelled outgoing connection to %s", o->name);
255 list_delete_node(mesh->outgoings, node);
261 timeout_set(&mesh->loop, data, &(struct timeval){5, rand() % 100000});
264 void handle_meta_connection_data(connection_t *c) {
265 if (!receive_meta(c)) {
266 terminate_connection(c, c->status.active);
271 int reload_configuration(void) {
272 char filename[PATH_MAX];
274 /* Reread our own configuration file */
276 exit_configuration(&mesh->config);
277 init_configuration(&mesh->config);
279 if(!read_server_config(mesh)) {
280 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to reread configuration file.");
284 snprintf(filename, PATH_MAX,"%s" SLASH "hosts" SLASH "%s", mesh->confbase, mesh->self->name);
285 read_config_file(mesh->config, filename);
287 /* Parse some options that are allowed to be changed while tinc is running */
289 setup_myself_reloadable(mesh);
291 /* Try to make outgoing connections */
293 try_outgoing_connections(mesh);
295 /* Close connections to hosts that have a changed or deleted host config file */
297 for list_each(connection_t, c, mesh->connections) {
298 snprintf(filename, PATH_MAX,"%s" SLASH "hosts" SLASH "%s", mesh->confbase, c->name);
300 if(stat(filename, &s) || s.st_mtime > mesh->last_config_check) {
301 logger(DEBUG_CONNECTIONS, LOG_INFO, "Host config file of %s has been changed", c->name);
302 terminate_connection(c, c->status.active);
306 mesh->last_config_check = mesh->loop.now.tv_sec;
312 /* Reset the reconnection timers for all outgoing connections */
313 for list_each(outgoing_t, outgoing, mesh->outgoings) {
314 outgoing->timeout = 0;
316 timeout_set(&mesh->loop, &outgoing->ev, &(struct timeval){0, 0});
319 /* Check for outgoing connections that are in progress, and reset their ping timers */
320 for list_each(connection_t, c, mesh->connections) {
321 if(c->outgoing && !c->node)
322 c->last_ping_time = 0;
325 /* Kick the ping timeout handler */
326 timeout_set(&mesh->loop, &mesh->pingtimer, &(struct timeval){0, 0});
330 this is where it all happens...
332 int main_loop(void) {
333 timeout_add(&mesh->loop, &mesh->pingtimer, timeout_handler, &mesh->pingtimer, &(struct timeval){mesh->pingtimeout, rand() % 100000});
334 timeout_add(&mesh->loop, &mesh->periodictimer, periodic_handler, &mesh->periodictimer, &(struct timeval){mesh->pingtimeout, rand() % 100000});
336 if(!event_loop_run(&mesh->loop)) {
337 logger(DEBUG_ALWAYS, LOG_ERR, "Error while waiting for input: %s", strerror(errno));
341 timeout_del(&mesh->loop, &mesh->periodictimer);
342 timeout_del(&mesh->loop, &mesh->pingtimer);