]> git.meshlink.io Git - meshlink/blob - src/net_socket.c
Add assert() calls to the library.
[meshlink] / src / net_socket.c
1 /*
2     net_socket.c -- Handle various kinds of sockets.
3     Copyright (C) 2014-2017 Guus Sliepen <guus@meshlink.io>
4
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.
9
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.
14
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.
18 */
19
20 #include "system.h"
21
22 #include "conf.h"
23 #include "connection.h"
24 #include "list.h"
25 #include "logger.h"
26 #include "meshlink_internal.h"
27 #include "meta.h"
28 #include "net.h"
29 #include "netutl.h"
30 #include "protocol.h"
31 #include "utils.h"
32 #include "xalloc.h"
33
34 /* Needed on Mac OS/X */
35 #ifndef SOL_TCP
36 #define SOL_TCP IPPROTO_TCP
37 #endif
38
39 #ifndef MSG_NOSIGNAL
40 #define MSG_NOSIGNAL 0
41 #endif
42
43 static const int max_connection_burst = 100;
44
45 /* Setup sockets */
46
47 static void configure_tcp(connection_t *c) {
48 #ifdef O_NONBLOCK
49         int flags = fcntl(c->socket, F_GETFL);
50
51         if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0) {
52                 logger(c->mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "fcntl", strerror(errno));
53         }
54
55 #elif defined(WIN32)
56         unsigned long arg = 1;
57
58         if(ioctlsocket(c->socket, FIONBIO, &arg) != 0) {
59                 logger(c->mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "ioctlsocket", sockstrerror(sockerrno));
60         }
61
62 #endif
63
64 #if defined(SOL_TCP) && defined(TCP_NODELAY)
65         int nodelay = 1;
66         setsockopt(c->socket, SOL_TCP, TCP_NODELAY, (void *)&nodelay, sizeof(nodelay));
67 #endif
68
69 #if defined(IP_TOS) && defined(IPTOS_LOWDELAY)
70         int lowdelay = IPTOS_LOWDELAY;
71         setsockopt(c->socket, IPPROTO_IP, IP_TOS, (void *)&lowdelay, sizeof(lowdelay));
72 #endif
73 }
74
75 static bool bind_to_address(meshlink_handle_t *mesh, connection_t *c) {
76         int s = -1;
77
78         for(int i = 0; i < mesh->listen_sockets && mesh->listen_socket[i].bindto; i++) {
79                 if(mesh->listen_socket[i].sa.sa.sa_family != c->address.sa.sa_family) {
80                         continue;
81                 }
82
83                 if(s >= 0) {
84                         return false;
85                 }
86
87                 s = i;
88         }
89
90         if(s < 0) {
91                 return false;
92         }
93
94         sockaddr_t sa = mesh->listen_socket[s].sa;
95
96         if(sa.sa.sa_family == AF_INET) {
97                 sa.in.sin_port = 0;
98         } else if(sa.sa.sa_family == AF_INET6) {
99                 sa.in6.sin6_port = 0;
100         }
101
102         if(bind(c->socket, &sa.sa, SALEN(sa.sa))) {
103                 logger(mesh, MESHLINK_WARNING, "Can't bind outgoing socket: %s", strerror(errno));
104                 return false;
105         }
106
107         return true;
108 }
109
110 int setup_listen_socket(const sockaddr_t *sa) {
111         int nfd;
112         char *addrstr;
113         int option;
114
115         nfd = socket(sa->sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
116
117         if(nfd < 0) {
118                 logger(NULL, MESHLINK_ERROR, "Creating metasocket failed: %s", sockstrerror(sockerrno));
119                 return -1;
120         }
121
122 #ifdef FD_CLOEXEC
123         fcntl(nfd, F_SETFD, FD_CLOEXEC);
124 #endif
125
126         /* Optimize TCP settings */
127
128         option = 1;
129         setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, (void *)&option, sizeof(option));
130
131 #if defined(IPV6_V6ONLY)
132
133         if(sa->sa.sa_family == AF_INET6) {
134                 setsockopt(nfd, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&option, sizeof(option));
135         }
136
137 #else
138 #warning IPV6_V6ONLY not defined
139 #endif
140
141         if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
142                 closesocket(nfd);
143                 addrstr = sockaddr2hostname(sa);
144                 logger(NULL, MESHLINK_ERROR, "Can't bind to %s/tcp: %s", addrstr, sockstrerror(sockerrno));
145                 free(addrstr);
146                 return -1;
147         }
148
149         if(listen(nfd, 3)) {
150                 closesocket(nfd);
151                 logger(NULL, MESHLINK_ERROR, "System call `%s' failed: %s", "listen", sockstrerror(sockerrno));
152                 return -1;
153         }
154
155         return nfd;
156 }
157
158 int setup_vpn_in_socket(meshlink_handle_t *mesh, const sockaddr_t *sa) {
159         int nfd;
160         char *addrstr;
161         int option;
162
163         nfd = socket(sa->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP);
164
165         if(nfd < 0) {
166                 logger(mesh, MESHLINK_ERROR, "Creating UDP socket failed: %s", sockstrerror(sockerrno));
167                 return -1;
168         }
169
170 #ifdef FD_CLOEXEC
171         fcntl(nfd, F_SETFD, FD_CLOEXEC);
172 #endif
173
174 #ifdef O_NONBLOCK
175         {
176                 int flags = fcntl(nfd, F_GETFL);
177
178                 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0) {
179                         closesocket(nfd);
180                         logger(mesh, MESHLINK_ERROR, "System call `%s' failed: %s", "fcntl",
181                                strerror(errno));
182                         return -1;
183                 }
184         }
185 #elif defined(WIN32)
186         {
187                 unsigned long arg = 1;
188
189                 if(ioctlsocket(nfd, FIONBIO, &arg) != 0) {
190                         closesocket(nfd);
191                         logger(mesh, MESHLINK_ERROR, "Call to `%s' failed: %s", "ioctlsocket", sockstrerror(sockerrno));
192                         return -1;
193                 }
194         }
195 #endif
196
197         option = 1;
198         setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, (void *)&option, sizeof(option));
199         setsockopt(nfd, SOL_SOCKET, SO_BROADCAST, (void *)&option, sizeof(option));
200
201 #if defined(IPV6_V6ONLY)
202
203         if(sa->sa.sa_family == AF_INET6) {
204                 setsockopt(nfd, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&option, sizeof(option));
205         }
206
207 #endif
208
209 #if defined(IP_DONTFRAG) && !defined(IP_DONTFRAGMENT)
210 #define IP_DONTFRAGMENT IP_DONTFRAG
211 #endif
212
213 #if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO)
214         option = IP_PMTUDISC_DO;
215         setsockopt(nfd, IPPROTO_IP, IP_MTU_DISCOVER, (void *)&option, sizeof(option));
216 #elif defined(IP_DONTFRAGMENT)
217         option = 1;
218         setsockopt(nfd, IPPROTO_IP, IP_DONTFRAGMENT, (void *)&option, sizeof(option));
219 #endif
220
221 #if defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DO)
222         option = IPV6_PMTUDISC_DO;
223         setsockopt(nfd, IPPROTO_IPV6, IPV6_MTU_DISCOVER, (void *)&option, sizeof(option));
224 #elif defined(IPV6_DONTFRAG)
225         option = 1;
226         setsockopt(nfd, IPPROTO_IPV6, IPV6_DONTFRAG, (void *)&option, sizeof(option));
227 #endif
228
229         if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
230                 closesocket(nfd);
231                 addrstr = sockaddr2hostname(sa);
232                 logger(mesh, MESHLINK_ERROR, "Can't bind to %s/udp: %s", addrstr, sockstrerror(sockerrno));
233                 free(addrstr);
234                 return -1;
235         }
236
237         return nfd;
238 } /* int setup_vpn_in_socket */
239
240 static void retry_outgoing_handler(event_loop_t *loop, void *data) {
241         assert(data);
242
243         meshlink_handle_t *mesh = loop->data;
244         outgoing_t *outgoing = data;
245         setup_outgoing_connection(mesh, outgoing);
246 }
247
248 void retry_outgoing(meshlink_handle_t *mesh, outgoing_t *outgoing) {
249         outgoing->timeout += 5;
250
251         if(outgoing->timeout > mesh->maxtimeout) {
252                 outgoing->timeout = mesh->maxtimeout;
253         }
254
255         timeout_add(&mesh->loop, &outgoing->ev, retry_outgoing_handler, outgoing, &(struct timeval) {
256                 outgoing->timeout, rand() % 100000
257         });
258
259         logger(mesh, MESHLINK_INFO, "Trying to re-establish outgoing connection in %d seconds", outgoing->timeout);
260 }
261
262 void finish_connecting(meshlink_handle_t *mesh, connection_t *c) {
263         logger(mesh, MESHLINK_INFO, "Connected to %s", c->name);
264
265         c->last_ping_time = mesh->loop.now.tv_sec;
266         c->status.connecting = false;
267
268         send_id(mesh, c);
269 }
270
271 static void handle_meta_write(meshlink_handle_t *mesh, connection_t *c) {
272         if(c->outbuf.len <= c->outbuf.offset) {
273                 return;
274         }
275
276         ssize_t outlen = send(c->socket, c->outbuf.data + c->outbuf.offset, c->outbuf.len - c->outbuf.offset, MSG_NOSIGNAL);
277
278         if(outlen <= 0) {
279                 if(!errno || errno == EPIPE) {
280                         logger(mesh, MESHLINK_INFO, "Connection closed by %s", c->name);
281                 } else if(sockwouldblock(sockerrno)) {
282                         logger(mesh, MESHLINK_DEBUG, "Sending %lu bytes to %s would block", (unsigned long)(c->outbuf.len - c->outbuf.offset), c->name);
283                         return;
284                 } else {
285                         logger(mesh, MESHLINK_ERROR, "Could not send %lu bytes of data to %s: %s", (unsigned long)(c->outbuf.len - c->outbuf.offset), c->name, strerror(errno));
286                 }
287
288                 terminate_connection(mesh, c, c->status.active);
289                 return;
290         }
291
292         buffer_read(&c->outbuf, outlen);
293
294         if(!c->outbuf.len) {
295                 io_set(&mesh->loop, &c->io, IO_READ);
296         }
297 }
298
299 static void handle_meta_io(event_loop_t *loop, void *data, int flags) {
300         meshlink_handle_t *mesh = loop->data;
301         connection_t *c = data;
302
303         if(c->status.connecting) {
304                 c->status.connecting = false;
305
306                 int result;
307                 socklen_t len = sizeof(result);
308                 getsockopt(c->socket, SOL_SOCKET, SO_ERROR, (void *)&result, &len);
309
310                 if(!result) {
311                         finish_connecting(mesh, c);
312                 } else {
313                         logger(mesh, MESHLINK_DEBUG, "Error while connecting to %s: %s", c->name, sockstrerror(result));
314                         terminate_connection(mesh, c, false);
315                         return;
316                 }
317         }
318
319         if(flags & IO_WRITE) {
320                 handle_meta_write(mesh, c);
321         } else {
322                 handle_meta_connection_data(mesh, c);
323         }
324 }
325
326 // Find edges pointing to this node, and use them to build a list of unique, known addresses.
327 static struct addrinfo *get_known_addresses(node_t *n) {
328         struct addrinfo *ai = NULL;
329
330         for splay_each(edge_t, e, n->edge_tree) {
331                 if(!e->reverse) {
332                         continue;
333                 }
334
335                 bool found = false;
336
337                 for(struct addrinfo *aip = ai; aip; aip = aip->ai_next) {
338                         if(!sockaddrcmp(&e->reverse->address, (sockaddr_t *)aip->ai_addr)) {
339                                 found = true;
340                                 break;
341                         }
342                 }
343
344                 if(found) {
345                         continue;
346                 }
347
348                 // Create a new struct addrinfo, and put it at the head of the list.
349                 struct addrinfo *nai = xzalloc(sizeof(*nai) + SALEN(e->reverse->address.sa));
350                 nai->ai_next = ai;
351                 ai = nai;
352
353                 ai->ai_family = e->reverse->address.sa.sa_family;
354                 ai->ai_socktype = SOCK_STREAM;
355                 ai->ai_protocol = IPPROTO_TCP;
356                 ai->ai_addrlen = SALEN(e->reverse->address.sa);
357                 ai->ai_addr = (struct sockaddr *)(nai + 1);
358                 memcpy(ai->ai_addr, &e->reverse->address, ai->ai_addrlen);
359         }
360
361         return ai;
362 }
363
364 // Build a list of recently seen addresses.
365 static struct addrinfo *get_recent_addresses(node_t *n) {
366         struct addrinfo *ai = NULL;
367         struct addrinfo *aip;
368
369         for(int i = 0; i < 5; i++) {
370                 if(!n->recent[i].sa.sa_family) {
371                         break;
372                 }
373
374                 // Create a new struct addrinfo, and put it at the end of the list.
375                 struct addrinfo *nai = xzalloc(sizeof(*nai) + SALEN(n->recent[i].sa));
376
377                 if(!ai) {
378                         ai = nai;
379                 } else {
380                         aip->ai_next = nai;
381                 }
382
383                 aip = nai;
384
385                 nai->ai_family = n->recent[i].sa.sa_family;
386                 nai->ai_socktype = SOCK_STREAM;
387                 nai->ai_protocol = IPPROTO_TCP;
388                 nai->ai_addrlen = SALEN(n->recent[i].sa);
389                 nai->ai_addr = (struct sockaddr *)(nai + 1);
390                 memcpy(nai->ai_addr, &n->recent[i], nai->ai_addrlen);
391         }
392
393         return ai;
394 }
395
396 // Free struct addrinfo list from get_known_addresses().
397 static void free_known_addresses(struct addrinfo *ai) {
398         for(struct addrinfo *aip = ai, *next; aip; aip = next) {
399                 next = aip->ai_next;
400                 free(aip);
401         }
402 }
403
404 static struct addrinfo *get_canonical_address(node_t *n) {
405         if(!n->canonical_address) {
406                 return false;
407         }
408
409         char *address = xstrdup(n->canonical_address);
410         char *port = strchr(address, ' ');
411
412         if(!port) {
413                 free(address);
414                 return false;
415         }
416
417         *port++ = 0;
418
419         struct addrinfo *ai = str2addrinfo(address, port, SOCK_STREAM);
420         free(address);
421
422         return ai;
423 }
424
425 static bool get_next_outgoing_address(meshlink_handle_t *mesh, outgoing_t *outgoing) {
426         (void)mesh;
427
428         bool start = false;
429
430         if(outgoing->state == OUTGOING_START) {
431                 start = true;
432                 outgoing->state = OUTGOING_CANONICAL;
433         }
434
435         if(outgoing->state == OUTGOING_CANONICAL) {
436                 if(!outgoing->aip) {
437                         outgoing->ai = get_canonical_address(outgoing->node);
438                         outgoing->aip = outgoing->ai;
439                 } else {
440                         outgoing->aip = outgoing->aip->ai_next;
441                 }
442
443                 if(outgoing->aip) {
444                         return true;
445                 }
446
447                 freeaddrinfo(outgoing->ai);
448                 outgoing->ai = NULL;
449                 outgoing->aip = NULL;
450                 outgoing->state = OUTGOING_RECENT;
451         }
452
453         if(outgoing->state == OUTGOING_RECENT) {
454                 if(!outgoing->aip) {
455                         outgoing->ai = get_recent_addresses(outgoing->node);
456                         outgoing->aip = outgoing->ai;
457                 } else {
458                         outgoing->aip = outgoing->aip->ai_next;
459                 }
460
461                 if(outgoing->aip) {
462                         return true;
463                 }
464
465                 free_known_addresses(outgoing->ai);
466                 outgoing->ai = NULL;
467                 outgoing->aip = NULL;
468                 outgoing->state = OUTGOING_KNOWN;
469         }
470
471         if(outgoing->state == OUTGOING_KNOWN) {
472                 if(!outgoing->aip) {
473                         outgoing->ai = get_known_addresses(outgoing->node);
474                         outgoing->aip = outgoing->ai;
475                 } else {
476                         outgoing->aip = outgoing->aip->ai_next;
477                 }
478
479                 if(outgoing->aip) {
480                         return true;
481                 }
482
483                 free_known_addresses(outgoing->ai);
484                 outgoing->ai = NULL;
485                 outgoing->aip = NULL;
486                 outgoing->state = OUTGOING_END;
487         }
488
489         if(start) {
490                 outgoing->state = OUTGOING_NO_KNOWN_ADDRESSES;
491         }
492
493         return false;
494 }
495
496 bool do_outgoing_connection(meshlink_handle_t *mesh, outgoing_t *outgoing) {
497         struct addrinfo *proxyai = NULL;
498         int result;
499
500 begin:
501
502         if(!get_next_outgoing_address(mesh, outgoing)) {
503                 if(outgoing->state == OUTGOING_NO_KNOWN_ADDRESSES) {
504                         logger(mesh, MESHLINK_ERROR, "No known addresses for %s", outgoing->node->name);
505                 } else {
506                         logger(mesh, MESHLINK_ERROR, "Could not set up a meta connection to %s", outgoing->node->name);
507                         retry_outgoing(mesh, outgoing);
508                 }
509
510                 return false;
511         }
512
513         connection_t *c = new_connection();
514         c->outgoing = outgoing;
515
516         memcpy(&c->address, outgoing->aip->ai_addr, outgoing->aip->ai_addrlen);
517
518         char *hostname = sockaddr2hostname(&c->address);
519
520         logger(mesh, MESHLINK_INFO, "Trying to connect to %s at %s", outgoing->node->name, hostname);
521
522         if(!mesh->proxytype) {
523                 c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
524                 configure_tcp(c);
525         } else {
526                 proxyai = str2addrinfo(mesh->proxyhost, mesh->proxyport, SOCK_STREAM);
527
528                 if(!proxyai) {
529                         free_connection(c);
530                         free(hostname);
531                         goto begin;
532                 }
533
534                 logger(mesh, MESHLINK_INFO, "Using proxy at %s port %s", mesh->proxyhost, mesh->proxyport);
535                 c->socket = socket(proxyai->ai_family, SOCK_STREAM, IPPROTO_TCP);
536                 configure_tcp(c);
537         }
538
539         if(c->socket == -1) {
540                 logger(mesh, MESHLINK_ERROR, "Creating socket for %s at %s failed: %s", c->name, hostname, sockstrerror(sockerrno));
541                 free_connection(c);
542                 free(hostname);
543                 goto begin;
544         }
545
546         free(hostname);
547
548 #ifdef FD_CLOEXEC
549         fcntl(c->socket, F_SETFD, FD_CLOEXEC);
550 #endif
551
552 #if defined(IPV6_V6ONLY)
553
554         if(c->address.sa.sa_family == AF_INET6) {
555                 static const int option = 1;
556                 setsockopt(c->socket, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&option, sizeof(option));
557         }
558
559 #endif
560
561         bind_to_address(mesh, c);
562
563         /* Connect */
564
565         if(!mesh->proxytype) {
566                 result = connect(c->socket, &c->address.sa, SALEN(c->address.sa));
567         } else {
568                 result = connect(c->socket, proxyai->ai_addr, proxyai->ai_addrlen);
569                 freeaddrinfo(proxyai);
570         }
571
572         if(result == -1 && !sockinprogress(sockerrno)) {
573                 logger(mesh, MESHLINK_ERROR, "Could not connect to %s: %s", outgoing->node->name, sockstrerror(sockerrno));
574                 free_connection(c);
575
576                 goto begin;
577         }
578
579         /* Now that there is a working socket, fill in the rest and register this connection. */
580
581         c->status.connecting = true;
582         c->status.initiator = true;
583         c->name = xstrdup(outgoing->node->name);
584         c->last_ping_time = mesh->loop.now.tv_sec;
585
586         connection_add(mesh, c);
587
588         io_add(&mesh->loop, &c->io, handle_meta_io, c, c->socket, IO_READ | IO_WRITE);
589
590         return true;
591 }
592
593 void setup_outgoing_connection(meshlink_handle_t *mesh, outgoing_t *outgoing) {
594         timeout_del(&mesh->loop, &outgoing->ev);
595
596         if(outgoing->node->connection) {
597                 logger(mesh, MESHLINK_INFO, "Already connected to %s", outgoing->node->name);
598
599                 outgoing->node->connection->outgoing = outgoing;
600                 return;
601         }
602
603
604         if(outgoing->ai) {
605                 if(outgoing->state == OUTGOING_RECENT || outgoing->state == OUTGOING_KNOWN) {
606                         free_known_addresses(outgoing->ai);
607                 } else {
608                         freeaddrinfo(outgoing->ai);
609                 }
610         }
611
612         outgoing->state = OUTGOING_START;
613
614         if(outgoing->node->status.blacklisted) {
615                 return;
616         }
617
618         if(mesh->connection_try_cb) {
619                 mesh->connection_try_cb(mesh, (meshlink_node_t *)outgoing->node);
620         }
621
622         do_outgoing_connection(mesh, outgoing);
623 }
624
625 /// Delayed close of a filedescriptor.
626 static void tarpit(meshlink_handle_t *mesh, int fd) {
627         if(!fd) {
628                 return;
629         }
630
631         if(mesh->pits[mesh->next_pit]) {
632                 closesocket(mesh->pits[mesh->next_pit]);
633         }
634
635         mesh->pits[mesh->next_pit++] = fd;
636
637         if(mesh->next_pit >= (int)(sizeof mesh->pits / sizeof mesh->pits[0])) {
638                 mesh->next_pit = 0;
639         }
640 }
641
642 /*
643   accept a new tcp connect and create a
644   new connection
645 */
646 void handle_new_meta_connection(event_loop_t *loop, void *data, int flags) {
647         (void)flags;
648         meshlink_handle_t *mesh = loop->data;
649         listen_socket_t *l = data;
650         connection_t *c;
651         sockaddr_t sa;
652         int fd;
653         socklen_t len = sizeof(sa);
654
655         memset(&sa, 0, sizeof(sa));
656
657         fd = accept(l->tcp.fd, &sa.sa, &len);
658
659         if(fd < 0) {
660                 if(errno == EINVAL) { // TODO: check if Windows agrees
661                         event_loop_stop(loop);
662                         return;
663                 }
664
665                 logger(mesh, MESHLINK_ERROR, "Accepting a new connection failed: %s", sockstrerror(sockerrno));
666                 return;
667         }
668
669         sockaddrunmap(&sa);
670
671         /* Rate limit incoming connections to max_connection_burst/second. */
672
673         if(mesh->loop.now.tv_sec != mesh->connection_burst_time) {
674                 mesh->connection_burst_time = mesh->loop.now.tv_sec;
675                 mesh->connection_burst = 0;
676         }
677
678         if(mesh->connection_burst >= max_connection_burst) {
679                 tarpit(mesh, fd);
680                 return;
681         }
682
683         mesh->connection_burst++;
684
685         // Accept the new connection
686
687         c = new_connection();
688         c->name = xstrdup("<unknown>");
689
690         c->address = sa;
691         c->socket = fd;
692         c->last_ping_time = mesh->loop.now.tv_sec;
693
694         char *hostname = sockaddr2hostname(&sa);
695         logger(mesh, MESHLINK_INFO, "Connection from %s", hostname);
696         free(hostname);
697
698         io_add(&mesh->loop, &c->io, handle_meta_io, c, c->socket, IO_READ);
699
700         configure_tcp(c);
701
702         connection_add(mesh, c);
703
704         c->allow_request = ID;
705         send_id(mesh, c);
706 }
707
708 static void free_outgoing(outgoing_t *outgoing) {
709         meshlink_handle_t *mesh = outgoing->node->mesh;
710
711         timeout_del(&mesh->loop, &outgoing->ev);
712
713         if(outgoing->ai) {
714                 if(outgoing->state == OUTGOING_RECENT || outgoing->state == OUTGOING_KNOWN) {
715                         free_known_addresses(outgoing->ai);
716                 } else {
717                         freeaddrinfo(outgoing->ai);
718                 }
719         }
720
721         free(outgoing);
722 }
723
724 void init_outgoings(meshlink_handle_t *mesh) {
725         mesh->outgoings = list_alloc((list_action_t)free_outgoing);
726 }
727
728 void exit_outgoings(meshlink_handle_t *mesh) {
729         if(mesh->outgoings) {
730                 list_delete_list(mesh->outgoings);
731                 mesh->outgoings = NULL;
732         }
733 }