Remove checkpoint tracing.
[tinc] / src / net_socket.c
1 /*
2     net_socket.c -- Handle various kinds of sockets.
3     Copyright (C) 1998-2005 Ivo Timmermans,
4                   2000-2009 Guus Sliepen <guus@tinc-vpn.org>
5                   2009      Florian Forster <octo@verplant.org>
6
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.
11
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.
16
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.
20 */
21
22 #include "system.h"
23
24 #include "avl_tree.h"
25 #include "conf.h"
26 #include "connection.h"
27 #include "event.h"
28 #include "logger.h"
29 #include "meta.h"
30 #include "net.h"
31 #include "netutl.h"
32 #include "protocol.h"
33 #include "utils.h"
34 #include "xalloc.h"
35
36 #include <assert.h>
37
38 #ifdef WSAEINPROGRESS
39 #define EINPROGRESS WSAEINPROGRESS
40 #endif
41
42 /* Needed on Mac OS/X */
43 #ifndef SOL_TCP
44 #define SOL_TCP IPPROTO_TCP
45 #endif
46
47 int addressfamily = AF_UNSPEC;
48 int maxtimeout = 900;
49 int seconds_till_retry = 5;
50
51 listen_socket_t listen_socket[MAXSOCKETS];
52 int listen_sockets;
53 list_t *outgoing_list = NULL;
54
55 /* Setup sockets */
56
57 static void configure_tcp(connection_t *c) {
58         int option;
59
60 #ifdef O_NONBLOCK
61         int flags = fcntl(c->socket, F_GETFL);
62
63         if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0) {
64                 logger(LOG_ERR, _("fcntl for %s: %s"), c->hostname, strerror(errno));
65         }
66 #elif defined(WIN32)
67         unsigned long arg = 1;
68
69         if(ioctlsocket(c->socket, FIONBIO, &arg) != 0) {
70                 logger(LOG_ERR, _("ioctlsocket for %s: WSA error %d"), c->hostname, WSAGetLastError());
71         }
72 #endif
73
74 #if defined(SOL_TCP) && defined(TCP_NODELAY)
75         option = 1;
76         setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
77 #endif
78
79 #if defined(SOL_IP) && defined(IP_TOS) && defined(IPTOS_LOWDELAY)
80         option = IPTOS_LOWDELAY;
81         setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option));
82 #endif
83 }
84
85 static bool bind_to_interface(int sd) {
86         char *iface;
87
88 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
89         struct ifreq ifr;
90         int status;
91 #endif /* defined(SOL_SOCKET) && defined(SO_BINDTODEVICE) */
92
93         if(!get_config_string (lookup_config (config_tree, "BindToInterface"), &iface))
94                 return true;
95
96 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
97         memset(&ifr, 0, sizeof(ifr));
98         strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ);
99         ifr.ifr_ifrn.ifrn_name[IFNAMSIZ - 1] = 0;
100
101         status = setsockopt(sd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr));
102         if(status) {
103                 logger(LOG_ERR, _("Can't bind to interface %s: %s"), iface,
104                                 strerror(errno));
105                 return false;
106         }
107 #else /* if !defined(SOL_SOCKET) || !defined(SO_BINDTODEVICE) */
108         logger(LOG_WARNING, _("%s not supported on this platform"), "BindToInterface");
109 #endif
110
111         return true;
112 }
113
114 static bool bind_to_address(connection_t *c) {
115         char *node;
116         struct addrinfo *ai_list;
117         struct addrinfo *ai_ptr;
118         struct addrinfo ai_hints;
119         int status;
120
121         assert(c != NULL);
122         assert(c->socket >= 0);
123
124         node = NULL;
125         if(!get_config_string(lookup_config(config_tree, "BindToAddress"),
126                                 &node))
127                 return true;
128
129         assert(node != NULL);
130
131         memset(&ai_hints, 0, sizeof(ai_hints));
132         ai_hints.ai_family = c->address.sa.sa_family;
133         /* We're called from `do_outgoing_connection' only. */
134         ai_hints.ai_socktype = SOCK_STREAM;
135         ai_hints.ai_protocol = IPPROTO_TCP;
136
137         ai_list = NULL;
138
139         status = getaddrinfo(node, /* service = */ NULL,
140                         &ai_hints, &ai_list);
141         if(status) {
142                 free(node);
143                 logger(LOG_WARNING, _("Error looking up %s port %s: %s"),
144                                 node, _("any"), gai_strerror(status));
145                 return false;
146         }
147         assert(ai_list != NULL);
148
149         status = -1;
150         for(ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next) {
151                 status = bind(c->socket,
152                                 ai_list->ai_addr, ai_list->ai_addrlen);
153                 if(!status)
154                         break;
155         }
156
157
158         if(status) {
159                 logger(LOG_ERR, _("Can't bind to %s/tcp: %s"), node,
160                                 strerror(errno));
161         } else ifdebug(CONNECTIONS) {
162                 logger(LOG_DEBUG, "Successfully bound outgoing "
163                                 "TCP socket to %s", node);
164         }
165
166         free(node);
167         freeaddrinfo(ai_list);
168
169         return status ? false : true;
170 }
171
172 int setup_listen_socket(const sockaddr_t *sa) {
173         int nfd;
174         char *addrstr;
175         int option;
176         char *iface;
177
178         nfd = socket(sa->sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
179
180         if(nfd < 0) {
181                 ifdebug(STATUS) logger(LOG_ERR, _("Creating metasocket failed: %s"), strerror(errno));
182                 return -1;
183         }
184
185         /* Optimize TCP settings */
186
187         option = 1;
188         setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
189
190 #if defined(SOL_IPV6) && defined(IPV6_V6ONLY)
191         if(sa->sa.sa_family == AF_INET6)
192                 setsockopt(nfd, SOL_IPV6, IPV6_V6ONLY, &option, sizeof option);
193 #endif
194
195         if(get_config_string
196            (lookup_config(config_tree, "BindToInterface"), &iface)) {
197 #if defined(SOL_SOCKET) && defined(SO_BINDTODEVICE)
198                 struct ifreq ifr;
199
200                 memset(&ifr, 0, sizeof(ifr));
201                 strncpy(ifr.ifr_ifrn.ifrn_name, iface, IFNAMSIZ);
202
203                 if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, &ifr, sizeof(ifr))) {
204                         closesocket(nfd);
205                         logger(LOG_ERR, _("Can't bind to interface %s: %s"), iface,
206                                    strerror(errno));
207                         return -1;
208                 }
209 #else
210                 logger(LOG_WARNING, _("%s not supported on this platform"), "BindToInterface");
211 #endif
212         }
213
214         if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
215                 closesocket(nfd);
216                 addrstr = sockaddr2hostname(sa);
217                 logger(LOG_ERR, _("Can't bind to %s/tcp: %s"), addrstr,
218                            strerror(errno));
219                 free(addrstr);
220                 return -1;
221         }
222
223         if(listen(nfd, 3)) {
224                 closesocket(nfd);
225                 logger(LOG_ERR, _("System call `%s' failed: %s"), "listen",
226                            strerror(errno));
227                 return -1;
228         }
229
230         return nfd;
231 }
232
233 int setup_vpn_in_socket(const sockaddr_t *sa) {
234         int nfd;
235         char *addrstr;
236         int option;
237
238         nfd = socket(sa->sa.sa_family, SOCK_DGRAM, IPPROTO_UDP);
239
240         if(nfd < 0) {
241                 logger(LOG_ERR, _("Creating UDP socket failed: %s"), strerror(errno));
242                 return -1;
243         }
244
245 #ifdef O_NONBLOCK
246         {
247                 int flags = fcntl(nfd, F_GETFL);
248
249                 if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0) {
250                         closesocket(nfd);
251                         logger(LOG_ERR, _("System call `%s' failed: %s"), "fcntl",
252                                    strerror(errno));
253                         return -1;
254                 }
255         }
256 #elif defined(WIN32)
257         {
258                 unsigned long arg = 1;
259                 if(ioctlsocket(nfd, FIONBIO, &arg) != 0) {
260                         closesocket(nfd);
261                         logger(LOG_ERR, _("Call to `%s' failed: WSA error %d"), "ioctlsocket",
262                                 WSAGetLastError());
263                         return -1;
264                 }
265         }
266 #endif
267
268         option = 1;
269         setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
270
271 #if defined(SOL_IPV6) && defined(IPV6_V6ONLY)
272         if(sa->sa.sa_family == AF_INET6)
273                 setsockopt(nfd, SOL_IPV6, IPV6_V6ONLY, &option, sizeof option);
274 #endif
275
276 #if defined(SOL_IP) && defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DO)
277         if(myself->options & OPTION_PMTU_DISCOVERY) {
278                 option = IP_PMTUDISC_DO;
279                 setsockopt(nfd, SOL_IP, IP_MTU_DISCOVER, &option, sizeof(option));
280         }
281 #endif
282
283 #if defined(SOL_IPV6) && defined(IPV6_MTU_DISCOVER) && defined(IPV6_PMTUDISC_DO)
284         if(myself->options & OPTION_PMTU_DISCOVERY) {
285                 option = IPV6_PMTUDISC_DO;
286                 setsockopt(nfd, SOL_IPV6, IPV6_MTU_DISCOVER, &option, sizeof(option));
287         }
288 #endif
289
290         if (!bind_to_interface(nfd)) {
291                 closesocket(nfd);
292                 return -1;
293         }
294
295         if(bind(nfd, &sa->sa, SALEN(sa->sa))) {
296                 closesocket(nfd);
297                 addrstr = sockaddr2hostname(sa);
298                 logger(LOG_ERR, _("Can't bind to %s/udp: %s"), addrstr,
299                            strerror(errno));
300                 free(addrstr);
301                 return -1;
302         }
303
304         return nfd;
305 } /* int setup_vpn_in_socket */
306
307 void retry_outgoing(outgoing_t *outgoing) {
308         event_t *event;
309
310         outgoing->timeout += 5;
311
312         if(outgoing->timeout > maxtimeout)
313                 outgoing->timeout = maxtimeout;
314
315         event = new_event();
316         event->handler = (event_handler_t) setup_outgoing_connection;
317         event->time = now + outgoing->timeout;
318         event->data = outgoing;
319         event_add(event);
320
321         ifdebug(CONNECTIONS) logger(LOG_NOTICE,
322                            _("Trying to re-establish outgoing connection in %d seconds"),
323                            outgoing->timeout);
324 }
325
326 void finish_connecting(connection_t *c) {
327         ifdebug(CONNECTIONS) logger(LOG_INFO, _("Connected to %s (%s)"), c->name, c->hostname);
328
329         configure_tcp(c);
330
331         c->last_ping_time = now;
332
333         send_id(c);
334 }
335
336 void do_outgoing_connection(connection_t *c) {
337         char *address, *port;
338         int result;
339
340 begin:
341         if(!c->outgoing->ai) {
342                 if(!c->outgoing->cfg) {
343                         ifdebug(CONNECTIONS) logger(LOG_ERR, _("Could not set up a meta connection to %s"),
344                                            c->name);
345                         c->status.remove = true;
346                         retry_outgoing(c->outgoing);
347                         return;
348                 }
349
350                 get_config_string(c->outgoing->cfg, &address);
351
352                 if(!get_config_string(lookup_config(c->config_tree, "Port"), &port))
353                         xasprintf(&port, "655");
354
355                 c->outgoing->ai = str2addrinfo(address, port, SOCK_STREAM);
356                 free(address);
357                 free(port);
358
359                 c->outgoing->aip = c->outgoing->ai;
360                 c->outgoing->cfg = lookup_config_next(c->config_tree, c->outgoing->cfg);
361         }
362
363         if(!c->outgoing->aip) {
364                 if(c->outgoing->ai)
365                         freeaddrinfo(c->outgoing->ai);
366                 c->outgoing->ai = NULL;
367                 goto begin;
368         }
369
370         memcpy(&c->address, c->outgoing->aip->ai_addr, c->outgoing->aip->ai_addrlen);
371         c->outgoing->aip = c->outgoing->aip->ai_next;
372
373         if(c->hostname)
374                 free(c->hostname);
375
376         c->hostname = sockaddr2hostname(&c->address);
377
378         ifdebug(CONNECTIONS) logger(LOG_INFO, _("Trying to connect to %s (%s)"), c->name,
379                            c->hostname);
380
381         c->socket = socket(c->address.sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
382
383         if(c->socket == -1) {
384                 ifdebug(CONNECTIONS) logger(LOG_ERR, _("Creating socket for %s failed: %s"), c->hostname,
385                                    strerror(errno));
386
387                 goto begin;
388         }
389
390 #if defined(SOL_IPV6) && defined(IPV6_V6ONLY)
391         int option = 1;
392         if(c->address.sa.sa_family == AF_INET6)
393                 setsockopt(c->socket, SOL_IPV6, IPV6_V6ONLY, &option, sizeof option);
394 #endif
395
396         bind_to_interface(c->socket);
397         bind_to_address(c);
398
399         /* Optimize TCP settings */
400
401         configure_tcp(c);
402
403         /* Connect */
404
405         result = connect(c->socket, &c->address.sa, SALEN(c->address.sa));
406
407         if(result == -1) {
408                 if(errno == EINPROGRESS
409 #if defined(WIN32) && !defined(O_NONBLOCK)
410                    || WSAGetLastError() == WSAEWOULDBLOCK
411 #endif
412                 ) {
413                         c->status.connecting = true;
414                         return;
415                 }
416
417                 closesocket(c->socket);
418
419                 ifdebug(CONNECTIONS) logger(LOG_ERR, _("%s: %s"), c->hostname, strerror(errno));
420
421                 goto begin;
422         }
423
424         finish_connecting(c);
425
426         return;
427 }
428
429 void setup_outgoing_connection(outgoing_t *outgoing) {
430         connection_t *c;
431         node_t *n;
432
433         n = lookup_node(outgoing->name);
434
435         if(n)
436                 if(n->connection) {
437                         ifdebug(CONNECTIONS) logger(LOG_INFO, _("Already connected to %s"), outgoing->name);
438
439                         n->connection->outgoing = outgoing;
440                         return;
441                 }
442
443         c = new_connection();
444         c->name = xstrdup(outgoing->name);
445         c->outcipher = myself->connection->outcipher;
446         c->outdigest = myself->connection->outdigest;
447         c->outmaclength = myself->connection->outmaclength;
448         c->outcompression = myself->connection->outcompression;
449
450         init_configuration(&c->config_tree);
451         read_connection_config(c);
452
453         outgoing->cfg = lookup_config(c->config_tree, "Address");
454
455         if(!outgoing->cfg) {
456                 logger(LOG_ERR, _("No address specified for %s"), c->name);
457                 free_connection(c);
458                 return;
459         }
460
461         c->outgoing = outgoing;
462         c->last_ping_time = now;
463
464         connection_add(c);
465
466         do_outgoing_connection(c);
467 }
468
469 /*
470   accept a new tcp connect and create a
471   new connection
472 */
473 bool handle_new_meta_connection(int sock) {
474         connection_t *c;
475         sockaddr_t sa;
476         int fd;
477         socklen_t len = sizeof(sa);
478
479         fd = accept(sock, &sa.sa, &len);
480
481         if(fd < 0) {
482                 logger(LOG_ERR, _("Accepting a new connection failed: %s"),
483                            strerror(errno));
484                 return false;
485         }
486
487         sockaddrunmap(&sa);
488
489         c = new_connection();
490         c->name = xstrdup("<unknown>");
491         c->outcipher = myself->connection->outcipher;
492         c->outdigest = myself->connection->outdigest;
493         c->outmaclength = myself->connection->outmaclength;
494         c->outcompression = myself->connection->outcompression;
495
496         c->address = sa;
497         c->hostname = sockaddr2hostname(&sa);
498         c->socket = fd;
499         c->last_ping_time = now;
500
501         ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection from %s"), c->hostname);
502
503         configure_tcp(c);
504
505         connection_add(c);
506
507         c->allow_request = ID;
508         send_id(c);
509
510         return true;
511 }
512
513 void free_outgoing(outgoing_t *outgoing) {
514         if(outgoing->ai)
515                 freeaddrinfo(outgoing->ai);
516
517         if(outgoing->name)
518                 free(outgoing->name);
519
520         free(outgoing);
521 }
522
523 void try_outgoing_connections(void) {
524         static config_t *cfg = NULL;
525         char *name;
526         outgoing_t *outgoing;
527         connection_t *c;
528         avl_node_t *node;
529         
530         if(outgoing_list) {
531                 for(node = connection_tree->head; node; node = node->next) {
532                         c = node->data;
533                         c->outgoing = NULL;
534                 }
535
536                 list_delete_list(outgoing_list);
537         }
538
539         outgoing_list = list_alloc((list_action_t)free_outgoing);
540                         
541         for(cfg = lookup_config(config_tree, "ConnectTo"); cfg; cfg = lookup_config_next(config_tree, cfg)) {
542                 get_config_string(cfg, &name);
543
544                 if(!check_id(name)) {
545                         logger(LOG_ERR,
546                                    _("Invalid name for outgoing connection in %s line %d"),
547                                    cfg->file, cfg->line);
548                         free(name);
549                         continue;
550                 }
551
552                 outgoing = xmalloc_and_zero(sizeof(*outgoing));
553                 outgoing->name = name;
554                 list_insert_tail(outgoing_list, outgoing);
555                 setup_outgoing_connection(outgoing);
556         }
557 }