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