- More s/vertex/edge/g
[tinc] / src / net.c
1 /*
2     net.c -- most of the network code
3     Copyright (C) 1998-2001 Ivo Timmermans <itimmermans@bigfoot.com>,
4                   2000,2001 Guus Sliepen <guus@sliepen.warande.net>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: net.c,v 1.35.4.141 2001/10/28 10:16:18 guus Exp $
21 */
22
23 #include "config.h"
24
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <netdb.h>
28 #include <netinet/in.h>
29 #ifdef HAVE_LINUX
30  #include <netinet/ip.h>
31  #include <netinet/tcp.h>
32 #endif
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <sys/signal.h>
37 #include <sys/time.h>
38 #include <sys/types.h>
39 #include <syslog.h>
40 #include <unistd.h>
41 #include <sys/ioctl.h>
42 /* SunOS really wants sys/socket.h BEFORE net/if.h,
43    and FreeBSD wants these lines below the rest. */
44 #include <arpa/inet.h>
45 #include <sys/socket.h>
46 #include <net/if.h>
47
48 #include <openssl/rand.h>
49 #include <openssl/evp.h>
50 #include <openssl/pem.h>
51
52 #ifndef HAVE_RAND_PSEUDO_BYTES
53 #define RAND_pseudo_bytes RAND_bytes
54 #endif
55
56 #include <utils.h>
57 #include <xalloc.h>
58 #include <avl_tree.h>
59 #include <list.h>
60
61 #include "conf.h"
62 #include "connection.h"
63 #include "meta.h"
64 #include "net.h"
65 #include "netutl.h"
66 #include "process.h"
67 #include "protocol.h"
68 #include "subnet.h"
69 #include "process.h"
70 #include "route.h"
71 #include "device.h"
72
73 #include "system.h"
74
75 int maxtimeout = 900;
76 int seconds_till_retry = 5;
77
78 int tcp_socket = -1;
79 int udp_socket = -1;
80
81 int keylifetime = 0;
82 int keyexpires = 0;
83
84 /* VPN packet I/O */
85
86 void receive_udppacket(node_t *n, vpn_packet_t *inpkt)
87 {
88   vpn_packet_t outpkt;
89   int outlen, outpad;
90   EVP_CIPHER_CTX ctx;
91 cp
92   /* Decrypt the packet */
93
94   EVP_DecryptInit(&ctx, myself->cipher, myself->key, myself->key + myself->cipher->key_len);
95   EVP_DecryptUpdate(&ctx, outpkt.salt, &outlen, inpkt->salt, inpkt->len);
96   EVP_DecryptFinal(&ctx, outpkt.salt + outlen, &outpad);
97   outlen += outpad;
98   outpkt.len = outlen - sizeof(outpkt.salt);
99
100   receive_packet(n, &outpkt);
101 cp
102 }
103
104 void receive_tcppacket(connection_t *c, char *buffer, int len)
105 {
106   vpn_packet_t outpkt;
107 cp
108   outpkt.len = len;
109   memcpy(outpkt.data, buffer, len);
110
111   receive_packet(c->node, &outpkt);
112 cp
113 }
114
115 void receive_packet(node_t *n, vpn_packet_t *packet)
116 {
117 cp
118   if(debug_lvl >= DEBUG_TRAFFIC)
119     syslog(LOG_DEBUG, _("Received packet of %d bytes from %s (%s)"), packet->len, n->name, n->hostname);
120
121   route_incoming(n, packet);
122 cp
123 }
124
125 void send_udppacket(node_t *n, vpn_packet_t *inpkt)
126 {
127   vpn_packet_t outpkt;
128   int outlen, outpad;
129   EVP_CIPHER_CTX ctx;
130   struct sockaddr_in to;
131   socklen_t tolen = sizeof(to);
132   vpn_packet_t *copy;
133 cp
134   if(!n->status.validkey)
135     {
136       if(debug_lvl >= DEBUG_TRAFFIC)
137         syslog(LOG_INFO, _("No valid key known yet for %s (%s), queueing packet"),
138                n->name, n->hostname);
139
140       /* Since packet is on the stack of handle_tap_input(),
141          we have to make a copy of it first. */
142
143       copy = xmalloc(sizeof(vpn_packet_t));
144       memcpy(copy, inpkt, sizeof(vpn_packet_t));
145
146       list_insert_tail(n->queue, copy);
147
148       if(!n->status.waitingforkey)
149         send_req_key(n->nexthop->connection, myself, n);
150       return;
151     }
152
153   /* Encrypt the packet. */
154
155   RAND_pseudo_bytes(inpkt->salt, sizeof(inpkt->salt));
156
157   EVP_EncryptInit(&ctx, n->cipher, n->key, n->key + n->cipher->key_len);
158   EVP_EncryptUpdate(&ctx, outpkt.salt, &outlen, inpkt->salt, inpkt->len + sizeof(inpkt->salt));
159   EVP_EncryptFinal(&ctx, outpkt.salt + outlen, &outpad);
160   outlen += outpad;
161
162   to.sin_family = AF_INET;
163   to.sin_addr.s_addr = htonl(n->address);
164   to.sin_port = htons(n->port);
165
166   if((sendto(udp_socket, (char *) outpkt.salt, outlen, 0, (const struct sockaddr *)&to, tolen)) < 0)
167     {
168       syslog(LOG_ERR, _("Error sending packet to %s (%s): %m"),
169              n->name, n->hostname);
170       return;
171     }
172 cp
173 }
174
175 /*
176   send a packet to the given vpn ip.
177 */
178 void send_packet(node_t *n, vpn_packet_t *packet)
179 {
180 cp
181   if(debug_lvl >= DEBUG_TRAFFIC)
182     syslog(LOG_ERR, _("Sending packet of %d bytes to %s (%s)"),
183            packet->len, n->name, n->hostname);
184
185   if(n == myself)
186     {
187       if(debug_lvl >= DEBUG_TRAFFIC)
188         {
189           syslog(LOG_NOTICE, _("Packet is looping back to us!"));
190         }
191
192       return;
193     }
194
195   if(!n->status.active)
196     {
197       if(debug_lvl >= DEBUG_TRAFFIC)
198         syslog(LOG_INFO, _("%s (%s) is not active, dropping packet"),
199                n->name, n->hostname);
200
201       return;
202     }
203 /* FIXME
204   if(n->via == myself)
205     via = n->nexthop;
206   else
207     via = n->via;
208
209   if(via != n && debug_lvl >= DEBUG_TRAFFIC)
210     syslog(LOG_ERR, _("Sending packet to %s via %s (%s)"),
211            n->name, via->name, via->hostname);
212
213   if((myself->options | via->options) & OPTION_TCPONLY)
214     {
215       if(send_tcppacket(via->connection, packet))
216         terminate_connection(via->connection, 1);
217     }
218   else
219     send_udppacket(via, packet);
220 */
221 }
222
223 /* Broadcast a packet to all active direct connections */
224
225 void broadcast_packet(node_t *from, vpn_packet_t *packet)
226 {
227   avl_node_t *node;
228   connection_t *c;
229 cp
230   if(debug_lvl >= DEBUG_TRAFFIC)
231     syslog(LOG_INFO, _("Broadcasting packet of %d bytes from %s (%s)"),
232            packet->len, from->name, from->hostname);
233
234   for(node = connection_tree->head; node; node = node->next)
235     {
236       c = (connection_t *)node->data;
237       if(c->status.active && c != from->nexthop->connection)
238         send_packet(c->node, packet);
239     }
240 cp
241 }
242
243 void flush_queue(node_t *n)
244 {
245   list_node_t *node, *next;
246 cp
247   if(debug_lvl >= DEBUG_TRAFFIC)
248     syslog(LOG_INFO, _("Flushing queue for %s (%s)"), n->name, n->hostname);
249
250   for(node = n->queue->head; node; node = next)
251     {
252       next = node->next;
253       send_udppacket(n, (vpn_packet_t *)node->data);
254       list_delete_node(n->queue, node);
255     }
256 cp
257 }
258
259 /* Setup sockets */
260
261 int setup_listen_socket(int port)
262 {
263   int nfd, flags;
264   struct sockaddr_in a;
265   int option;
266   char *interface;
267   char *address;
268   ip_mask_t *ipmask;
269 cp
270   if((nfd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
271     {
272       syslog(LOG_ERR, _("Creating metasocket failed: %m"));
273       return -1;
274     }
275
276   flags = fcntl(nfd, F_GETFL);
277   if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
278     {
279       close(nfd);
280       syslog(LOG_ERR, _("System call `%s' failed: %m"),
281              "fcntl");
282       return -1;
283     }
284
285   /* Optimize TCP settings */
286
287   option = 1;
288   setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option));
289   setsockopt(nfd, SOL_SOCKET, SO_KEEPALIVE, &option, sizeof(option));
290 #ifdef HAVE_LINUX
291   setsockopt(nfd, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
292
293   option = IPTOS_LOWDELAY;
294   setsockopt(nfd, SOL_IP, IP_TOS, &option, sizeof(option));
295
296   if(get_config_string(lookup_config(config_tree, "BindToInterface"), &interface))
297     if(setsockopt(nfd, SOL_SOCKET, SO_BINDTODEVICE, interface, strlen(interface)))
298       {
299         close(nfd);
300         syslog(LOG_ERR, _("Can't bind to interface %s: %m"), interface);
301         return -1;
302       }
303 #endif
304
305   memset(&a, 0, sizeof(a));
306   a.sin_family = AF_INET;
307   a.sin_addr.s_addr = htonl(INADDR_ANY);
308   a.sin_port = htons(port);
309
310   if(get_config_string(lookup_config(config_tree, "BindToAddress"), &address))
311     {
312       ipmask = strtoip(address);
313       if(ipmask)
314       {
315         a.sin_addr.s_addr = htonl(ipmask->address);
316         free(ipmask);
317       }
318     }
319
320   if(bind(nfd, (struct sockaddr *)&a, sizeof(struct sockaddr)))
321     {
322       close(nfd);
323       syslog(LOG_ERR, _("Can't bind to port %hd/tcp: %m"), port);
324       return -1;
325     }
326
327   if(listen(nfd, 3))
328     {
329       close(nfd);
330       syslog(LOG_ERR, _("System call `%s' failed: %m"),
331              "listen");
332       return -1;
333     }
334 cp
335   return nfd;
336 }
337
338 int setup_vpn_in_socket(int port)
339 {
340   int nfd, flags;
341   struct sockaddr_in a;
342   const int one = 1;
343 cp
344   if((nfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0)
345     {
346       close(nfd);
347       syslog(LOG_ERR, _("Creating socket failed: %m"));
348       return -1;
349     }
350
351   setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
352
353   flags = fcntl(nfd, F_GETFL);
354   if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
355     {
356       close(nfd);
357       syslog(LOG_ERR, _("System call `%s' failed: %m"),
358              "fcntl");
359       return -1;
360     }
361
362   memset(&a, 0, sizeof(a));
363   a.sin_family = AF_INET;
364   a.sin_port = htons(port);
365   a.sin_addr.s_addr = htonl(INADDR_ANY);
366
367   if(bind(nfd, (struct sockaddr *)&a, sizeof(struct sockaddr)))
368     {
369       close(nfd);
370       syslog(LOG_ERR, _("Can't bind to port %hd/udp: %m"), port);
371       return -1;
372     }
373 cp
374   return nfd;
375 }
376
377 int setup_outgoing_socket(connection_t *c)
378 {
379   int flags;
380   struct sockaddr_in a;
381   int option;
382 cp
383   if(debug_lvl >= DEBUG_CONNECTIONS)
384     syslog(LOG_INFO, _("Trying to connect to %s (%s)"), c->name, c->hostname);
385
386   c->socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
387
388   if(c->socket == -1)
389     {
390       syslog(LOG_ERR, _("Creating socket for %s port %d failed: %m"),
391              c->hostname, c->port);
392       return -1;
393     }
394
395   /* Bind first to get a fix on our source port???
396
397   a.sin_family = AF_INET;
398   a.sin_port = htons(0);
399   a.sin_addr.s_addr = htonl(INADDR_ANY);
400
401   if(bind(c->socket, (struct sockaddr *)&a, sizeof(struct sockaddr)))
402     {
403       close(c->socket);
404       syslog(LOG_ERR, _("System call `%s' failed: %m"), "bind");
405       return -1;
406     }
407
408   */
409
410   /* Optimize TCP settings?
411
412   option = 1;
413   setsockopt(c->socket, SOL_SOCKET, SO_KEEPALIVE, &option, sizeof(option));
414 #ifdef HAVE_LINUX
415   setsockopt(c->socket, SOL_TCP, TCP_NODELAY, &option, sizeof(option));
416
417   option = IPTOS_LOWDELAY;
418   setsockopt(c->socket, SOL_IP, IP_TOS, &option, sizeof(option));
419 #endif
420
421   */
422
423   /* Connect */
424
425   a.sin_family = AF_INET;
426   a.sin_port = htons(c->port);
427   a.sin_addr.s_addr = htonl(c->address);
428
429   if(connect(c->socket, (struct sockaddr *)&a, sizeof(a)) == -1)
430     {
431       close(c->socket);
432       syslog(LOG_ERR, _("%s port %hd: %m"), c->hostname, c->port);
433       return -1;
434     }
435
436   flags = fcntl(c->socket, F_GETFL);
437
438   if(fcntl(c->socket, F_SETFL, flags | O_NONBLOCK) < 0)
439     {
440       close(c->socket);
441       syslog(LOG_ERR, _("fcntl for %s port %d: %m"),
442              c->hostname, c->port);
443       return -1;
444     }
445
446   if(debug_lvl >= DEBUG_CONNECTIONS)
447     syslog(LOG_INFO, _("Connected to %s port %hd"),
448          c->hostname, c->port);
449 cp
450   return 0;
451 }
452
453 int setup_outgoing_connection(char *name)
454 {
455   connection_t *c;
456   struct hostent *h;
457 cp
458   c = new_connection();
459   c->name = xstrdup(name);
460
461   init_configuration(&c->config_tree);
462   read_connection_config(c);
463   
464   if(!get_config_string(lookup_config(c->config_tree, "Address"), &c->hostname))
465     {
466       syslog(LOG_ERR, _("No address specified for %s"), c->name);
467       free_connection(c);
468       return -1;
469     }
470
471   if(!get_config_port(lookup_config(c->config_tree, "Port"), &c->port))
472     {
473       syslog(LOG_ERR, _("No port specified for %s"), c->name);
474       free_connection(c);
475       return -1;
476     }
477
478   if(!(h = gethostbyname(c->hostname)))
479     {
480       syslog(LOG_ERR, _("Error looking up `%s': %m"), c->hostname);
481       free_connection(c);
482       return -1;
483     }
484
485   c->address = ntohl(*((ipv4_t*)(h->h_addr_list[0])));
486   c->hostname = hostlookup(htonl(c->address));
487
488   if(setup_outgoing_socket(c) < 0)
489     {
490       syslog(LOG_ERR, _("Could not set up a meta connection to %s (%s)"),
491              c->name, c->hostname);
492       free_connection(c);
493       return -1;
494     }
495
496   c->status.outgoing = 1;
497   c->last_ping_time = time(NULL);
498
499   connection_add(c);
500
501   send_id(c);
502 cp
503   return 0;
504 }
505
506 int read_rsa_public_key(connection_t *c)
507 {
508   FILE *fp;
509   char *fname;
510   char *key;
511   void *result;
512 cp
513   if(!c->rsa_key)
514     c->rsa_key = RSA_new();
515
516   /* First, check for simple PublicKey statement */
517
518   if(get_config_string(lookup_config(c->config_tree, "PublicKey"), &key))
519     {
520       BN_hex2bn(&c->rsa_key->n, key);
521       BN_hex2bn(&c->rsa_key->e, "FFFF");
522       return 0;
523     }
524
525   /* Else, check for PublicKeyFile statement and read it */
526
527   if(get_config_string(lookup_config(c->config_tree, "PublicKeyFile"), &fname))
528     {
529       if(is_safe_path(fname))
530         {
531           if((fp = fopen(fname, "r")) == NULL)
532             {
533               syslog(LOG_ERR, _("Error reading RSA public key file `%s': %m"),
534                      fname);
535               return -1;
536             }
537           result = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
538           fclose(fp);
539           if(!result)
540             {
541               syslog(LOG_ERR, _("Reading RSA public key file `%s' failed: %m"),
542                      fname);
543               return -1;
544             }
545           return 0;
546         }
547       else
548         return -1;
549     }
550
551   /* Else, check if a harnessed public key is in the config file */
552
553   result = NULL;
554
555   asprintf(&fname, "%s/hosts/%s", confbase, c->name);
556   if((fp = fopen(fname, "r")))
557     {
558       result = PEM_read_RSAPublicKey(fp, &c->rsa_key, NULL, NULL);
559       fclose(fp);
560       free(fname);
561     }
562
563   free(fname);
564
565   if(result)
566     return 0;
567   else
568     {
569       syslog(LOG_ERR, _("No public key for %s specified!"), c->name);
570       return -1;
571     }
572 }
573
574 int read_rsa_private_key(void)
575 {
576   FILE *fp;
577   void *result;
578   char *fname, *key;
579 cp
580   if(!myself->connection->rsa_key)
581     myself->connection->rsa_key = RSA_new();
582
583   if(get_config_string(lookup_config(config_tree, "PrivateKey"), &key))
584     {
585       BN_hex2bn(&myself->connection->rsa_key->d, key);
586       BN_hex2bn(&myself->connection->rsa_key->e, "FFFF");
587     }
588   else if(get_config_string(lookup_config(config_tree, "PrivateKeyFile"), &fname))
589     {
590       if((fp = fopen(fname, "r")) == NULL)
591         {
592           syslog(LOG_ERR, _("Error reading RSA private key file `%s': %m"),
593                  fname);
594           return -1;
595         }
596       result = PEM_read_RSAPrivateKey(fp, &myself->connection->rsa_key, NULL, NULL);
597       fclose(fp);
598       if(!result)
599         {
600           syslog(LOG_ERR, _("Reading RSA private key file `%s' failed: %m"),
601                  fname);
602           return -1;
603         }
604     }
605   else
606     {
607       syslog(LOG_ERR, _("No private key for tinc daemon specified!"));
608       return -1;
609     }
610 cp
611   return 0;
612 }
613
614 /*
615   Configure node_t myself and set up the local sockets (listen only)
616 */
617 int setup_myself(void)
618 {
619   config_t *cfg;
620   subnet_t *subnet;
621   char *name, *mode;
622   int choice;
623 cp
624   myself = new_node();
625   myself->connection = new_connection();
626   init_configuration(&myself->connection->config_tree);
627
628   asprintf(&myself->hostname, _("MYSELF"));
629   asprintf(&myself->connection->hostname, _("MYSELF"));
630
631   myself->connection->options = 0;
632   myself->connection->protocol_version = PROT_CURRENT;
633
634   if(!get_config_string(lookup_config(config_tree, "Name"), &name)) /* Not acceptable */
635     {
636       syslog(LOG_ERR, _("Name for tinc daemon required!"));
637       return -1;
638     }
639
640   if(check_id(name))
641     {
642       syslog(LOG_ERR, _("Invalid name for myself!"));
643       free(name);
644       return -1;
645     }
646
647   myself->name = name;
648   myself->connection->name = xstrdup(name);
649
650 cp
651   if(read_rsa_private_key())
652     return -1;
653
654   if(read_connection_config(myself->connection))
655     {
656       syslog(LOG_ERR, _("Cannot open host configuration file for myself!"));
657       return -1;
658     }
659
660   if(read_rsa_public_key(myself->connection))
661     return -1;
662 cp
663
664 /*
665   if(RSA_check_key(rsa_key) != 1)
666     {
667       syslog(LOG_ERR, _("Invalid public/private keypair!"));
668       return -1;
669     }
670 */
671   if(!get_config_port(lookup_config(myself->connection->config_tree, "Port"), &myself->port))
672     myself->port = 655;
673
674   myself->connection->port = myself->port;
675
676 /* Read in all the subnets specified in the host configuration file */
677
678   cfg = lookup_config(myself->connection->config_tree, "Subnet");
679
680   while(cfg)
681     {
682       if(!get_config_subnet(cfg, &subnet))
683         return -1;
684
685       subnet_add(myself, subnet);
686
687       cfg = lookup_config_next(myself->connection->config_tree, cfg);
688     }
689
690 cp
691   /* Check some options */
692
693   if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice))
694     if(choice)
695       myself->options |= OPTION_INDIRECT;
696
697   if(get_config_bool(lookup_config(config_tree, "TCPOnly"), &choice))
698     if(choice)
699       myself->options |= OPTION_TCPONLY;
700
701   if(get_config_bool(lookup_config(myself->connection->config_tree, "IndirectData"), &choice))
702     if(choice)
703       myself->options |= OPTION_INDIRECT;
704
705   if(get_config_bool(lookup_config(myself->connection->config_tree, "TCPOnly"), &choice))
706     if(choice)
707       myself->options |= OPTION_TCPONLY;
708
709   if(myself->options & OPTION_TCPONLY)
710     myself->options |= OPTION_INDIRECT;
711
712   if(get_config_string(lookup_config(config_tree, "Mode"), &mode))
713     {
714       if(!strcasecmp(mode, "router"))
715         routing_mode = RMODE_ROUTER;
716       else if (!strcasecmp(mode, "switch"))
717         routing_mode = RMODE_SWITCH;
718       else if (!strcasecmp(mode, "hub"))
719         routing_mode = RMODE_HUB;
720       else
721         {
722           syslog(LOG_ERR, _("Invalid routing mode!"));
723           return -1;
724         }
725     }
726   else
727     routing_mode = RMODE_ROUTER;
728
729 cp
730   /* Open sockets */
731   
732   if((tcp_socket = setup_listen_socket(myself->port)) < 0)
733     {
734       syslog(LOG_ERR, _("Unable to set up a listening TCP socket!"));
735       return -1;
736     }
737
738   if((udp_socket = setup_vpn_in_socket(myself->port)) < 0)
739     {
740       syslog(LOG_ERR, _("Unable to set up a listening UDP socket!"));
741       return -1;
742     }
743 cp
744   /* Generate packet encryption key */
745
746   myself->cipher = EVP_bf_cbc();
747
748   myself->keylength = myself->cipher->key_len + myself->cipher->iv_len;
749
750   myself->key = (char *)xmalloc(myself->keylength);
751   RAND_pseudo_bytes(myself->key, myself->keylength);
752
753   if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime))
754     keylifetime = 3600;
755
756   keyexpires = time(NULL) + keylifetime;
757 cp
758   /* Done */
759
760   myself->nexthop = myself;
761   myself->via = myself;
762   myself->status.active = 1;
763   node_add(myself);
764
765   syslog(LOG_NOTICE, _("Ready: listening on port %hd"), myself->port);
766 cp
767   return 0;
768 }
769
770 /*
771   setup all initial network connections
772 */
773 int setup_network_connections(void)
774 {
775 cp
776   init_connections();
777   init_subnets();
778   init_nodes();
779   init_edges();
780
781   if(get_config_int(lookup_config(config_tree, "PingTimeout"), &timeout))
782     {
783       if(timeout < 1)
784         {
785           timeout = 86400;
786         }
787     }
788   else
789     timeout = 60;
790
791   if(setup_device() < 0)
792     return -1;
793
794   /* Run tinc-up script to further initialize the tap interface */
795   execute_script("tinc-up");
796
797   if(setup_myself() < 0)
798     return -1;
799
800   signal(SIGALRM, try_outgoing_connections);
801   alarm(5);
802 cp
803   return 0;
804 }
805
806 /*
807   close all open network connections
808 */
809 void close_network_connections(void)
810 {
811   avl_node_t *node, *next;
812   connection_t *c;
813 cp
814   for(node = connection_tree->head; node; node = next)
815     {
816       next = node->next;
817       c = (connection_t *)node->data;
818       c->status.outgoing = 0;
819       terminate_connection(c, 0);
820     }
821
822 //  terminate_connection(myself, 0);
823
824 //  destroy_trees();
825
826   execute_script("tinc-down");
827
828   close_device();
829 cp
830   return;
831 }
832
833 /*
834   handle an incoming tcp connect call and open
835   a connection to it.
836 */
837 connection_t *create_new_connection(int sfd)
838 {
839   connection_t *c;
840   struct sockaddr_in ci;
841   int len = sizeof(ci);
842 cp
843   c = new_connection();
844
845   if(getpeername(sfd, (struct sockaddr *) &ci, (socklen_t *) &len) < 0)
846     {
847       syslog(LOG_ERR, _("System call `%s' failed: %m"),
848              "getpeername");
849       close(sfd);
850       return NULL;
851     }
852
853   c->address = ntohl(ci.sin_addr.s_addr);
854   c->hostname = hostlookup(ci.sin_addr.s_addr);
855   c->port = htons(ci.sin_port);                         /* This one will be overwritten later */
856   c->socket = sfd;
857   c->last_ping_time = time(NULL);
858
859   if(debug_lvl >= DEBUG_CONNECTIONS)
860     syslog(LOG_NOTICE, _("Connection from %s port %d"),
861          c->hostname, htons(ci.sin_port));
862
863   c->allow_request = ID;
864 cp
865   return c;
866 }
867
868 /*
869   put all file descriptors in an fd_set array
870 */
871 void build_fdset(fd_set *fs)
872 {
873   avl_node_t *node;
874   connection_t *c;
875 cp
876   FD_ZERO(fs);
877
878   for(node = connection_tree->head; node; node = node->next)
879     {
880       c = (connection_t *)node->data;
881       FD_SET(c->socket, fs);
882     }
883
884   FD_SET(tcp_socket, fs);
885   FD_SET(udp_socket, fs);
886   FD_SET(device_fd, fs);
887 cp
888 }
889
890 /*
891   receive incoming data from the listening
892   udp socket and write it to the ethertap
893   device after being decrypted
894 */
895 void handle_incoming_vpn_data(void)
896 {
897   vpn_packet_t pkt;
898   int x, l = sizeof(x);
899   struct sockaddr_in from;
900   socklen_t fromlen = sizeof(from);
901   node_t *n;
902 cp
903   if(getsockopt(udp_socket, SOL_SOCKET, SO_ERROR, &x, &l) < 0)
904     {
905       syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m"),
906              __FILE__, __LINE__, udp_socket);
907       return;
908     }
909   if(x)
910     {
911       syslog(LOG_ERR, _("Incoming data socket error: %s"), strerror(x));
912       return;
913     }
914
915   if((pkt.len = recvfrom(udp_socket, (char *) pkt.salt, MTU, 0, (struct sockaddr *)&from, &fromlen)) <= 0)
916     {
917       syslog(LOG_ERR, _("Receiving packet failed: %m"));
918       return;
919     }
920
921   n = lookup_node_udp(ntohl(from.sin_addr.s_addr), ntohs(from.sin_port));
922
923   if(!n)
924     {
925       syslog(LOG_WARNING, _("Received UDP packets on port %hd from unknown source %x:%hd"), myself->port, ntohl(from.sin_addr.s_addr), ntohs(from.sin_port));
926       return;
927     }
928 /*
929   if(n->connection)
930     n->connection->last_ping_time = time(NULL);
931 */
932   receive_udppacket(n, &pkt);
933 cp
934 }
935
936 /*
937   Terminate a connection:
938   - Close the sockets
939   - Remove associated hosts and subnets
940   - Deactivate the host
941   - Since it might still be referenced, put it on the prune list.
942   - If report == 1, then send DEL_HOST messages to the other tinc daemons.
943 */
944 void terminate_connection(connection_t *c, int report)
945 {
946   /* Needs a serious rewrite. */
947 }
948
949 /*
950   Check if the other end is active.
951   If we have sent packets, but didn't receive any,
952   then possibly the other end is dead. We send a
953   PING request over the meta connection. If the other
954   end does not reply in time, we consider them dead
955   and close the connection.
956 */
957 void check_dead_connections(void)
958 {
959   time_t now;
960   avl_node_t *node, *next;
961   connection_t *c;
962 cp
963   now = time(NULL);
964
965   for(node = connection_tree->head; node; node = next)
966     {
967       next = node->next;
968       c = (connection_t *)node->data;
969       if(c->last_ping_time + timeout < now)
970         {
971           if(c->status.active)
972             {
973               if(c->status.pinged)
974                 {
975                   if(debug_lvl >= DEBUG_PROTOCOL)
976                     syslog(LOG_INFO, _("%s (%s) didn't respond to PING"),
977                            c->name, c->hostname);
978                   c->status.timeout = 1;
979                   terminate_connection(c, 1);
980                 }
981               else
982                 {
983                   send_ping(c);
984                 }
985             }
986           else
987             {
988               if(debug_lvl >= DEBUG_CONNECTIONS)
989                 syslog(LOG_WARNING, _("Timeout from %s (%s) during authentication"),
990                        c->name, c->hostname);
991               terminate_connection(c, 0);
992             }
993         }
994     }
995 cp
996 }
997
998 /*
999   accept a new tcp connect and create a
1000   new connection
1001 */
1002 int handle_new_meta_connection()
1003 {
1004   connection_t *new;
1005   struct sockaddr client;
1006   int fd, len = sizeof(client);
1007 cp
1008   if((fd = accept(tcp_socket, &client, &len)) < 0)
1009     {
1010       syslog(LOG_ERR, _("Accepting a new connection failed: %m"));
1011       return -1;
1012     }
1013
1014   if(!(new = create_new_connection(fd)))
1015     {
1016       shutdown(fd, 2);
1017       close(fd);
1018       syslog(LOG_NOTICE, _("Closed attempted connection"));
1019       return 0;
1020     }
1021
1022   connection_add(new);
1023
1024   send_id(new);
1025 cp
1026   return 0;
1027 }
1028
1029 void randomized_alarm(int seconds)
1030 {
1031   unsigned char r;
1032   RAND_pseudo_bytes(&r, 1);
1033   alarm((seconds * (int)r) / 128 + 1);
1034 }
1035
1036 /* This function is severely fucked up.
1037    We want to redesign it so the following rules apply:
1038    
1039    - Try all ConnectTo's in a row:
1040      - if a connect() fails, try next one immediately,
1041      - if it works, wait 5 seconds or so.
1042    - If none of them were succesful, increase delay and retry.
1043    - If all were succesful, don't try anymore.
1044 */
1045
1046 RETSIGTYPE
1047 try_outgoing_connections(int a)
1048 {
1049   static config_t *cfg = NULL;
1050   static int retry = 0;
1051   char *name;
1052 cp
1053   if(!cfg)
1054     cfg = lookup_config(config_tree, "ConnectTo");
1055
1056   if(!cfg)
1057     return;
1058
1059   while(cfg)
1060     {
1061       get_config_string(cfg, &name);
1062       cfg = lookup_config_next(config_tree, cfg);  /* Next time skip to next ConnectTo line */
1063
1064       if(!setup_outgoing_connection(name))   /* function returns 0 when there are no problems */
1065         retry = 1;
1066
1067     }
1068
1069   get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout);
1070
1071   if(retry)
1072     {
1073       seconds_till_retry += 5;
1074       if(seconds_till_retry > maxtimeout)    /* Don't wait more than MAXTIMEOUT seconds. */
1075         seconds_till_retry = maxtimeout;
1076
1077       syslog(LOG_ERR, _("Failed to setup all outgoing connections, will retry in %d seconds"),
1078         seconds_till_retry);
1079   
1080       /* Randomize timeout to avoid global synchronisation effects */
1081       randomized_alarm(seconds_till_retry);
1082     }
1083   else
1084     {
1085       seconds_till_retry = 5;
1086     }
1087 cp
1088 }
1089
1090 /*
1091   check all connections to see if anything
1092   happened on their sockets
1093 */
1094 void check_network_activity(fd_set *f)
1095 {
1096   connection_t *c;
1097   avl_node_t *node;
1098 cp
1099   if(FD_ISSET(udp_socket, f))
1100     handle_incoming_vpn_data();
1101
1102   for(node = connection_tree->head; node; node = node->next)
1103     {
1104       c = (connection_t *)node->data;
1105
1106       if(c->status.remove)
1107         return;
1108
1109       if(FD_ISSET(c->socket, f))
1110         if(receive_meta(c) < 0)
1111           {
1112             terminate_connection(c, c->status.active);
1113             return;
1114           }
1115     }
1116
1117   if(FD_ISSET(tcp_socket, f))
1118     handle_new_meta_connection();
1119 cp
1120 }
1121
1122 /*
1123   this is where it all happens...
1124 */
1125 void main_loop(void)
1126 {
1127   fd_set fset;
1128   struct timeval tv;
1129   int r;
1130   time_t last_ping_check;
1131   int t;
1132   vpn_packet_t packet;
1133 cp
1134   last_ping_check = time(NULL);
1135
1136   for(;;)
1137     {
1138       tv.tv_sec = timeout;
1139       tv.tv_usec = 0;
1140
1141       build_fdset(&fset);
1142
1143       if((r = select(FD_SETSIZE, &fset, NULL, NULL, &tv)) < 0)
1144         {
1145           if(errno != EINTR) /* because of alarm */
1146             {
1147               syslog(LOG_ERR, _("Error while waiting for input: %m"));
1148               return;
1149             }
1150         }
1151
1152       if(sighup)
1153         {
1154           syslog(LOG_INFO, _("Rereading configuration file and restarting in 5 seconds"));
1155           sighup = 0;
1156           close_network_connections();
1157           exit_configuration(&config_tree);
1158
1159           if(read_server_config())
1160             {
1161               syslog(LOG_ERR, _("Unable to reread configuration file, exiting"));
1162               exit(1);
1163             }
1164
1165           sleep(5);
1166
1167           if(setup_network_connections())
1168             return;
1169
1170           continue;
1171         }
1172
1173       t = time(NULL);
1174
1175       /* Let's check if everybody is still alive */
1176
1177       if(last_ping_check + timeout < t)
1178         {
1179           check_dead_connections();
1180           last_ping_check = time(NULL);
1181
1182           /* Should we regenerate our key? */
1183
1184           if(keyexpires < t)
1185             {
1186               if(debug_lvl >= DEBUG_STATUS)
1187                 syslog(LOG_INFO, _("Regenerating symmetric key"));
1188
1189               RAND_pseudo_bytes(myself->key, myself->keylength);
1190               send_key_changed(myself->connection, myself);
1191               keyexpires = time(NULL) + keylifetime;
1192             }
1193         }
1194
1195       if(r > 0)
1196         {
1197           check_network_activity(&fset);
1198
1199           /* local tap data */
1200           if(FD_ISSET(device_fd, &fset))
1201             {
1202               if(read_packet(&packet))
1203                 return;
1204               else
1205                 route_outgoing(&packet);
1206             }
1207         }
1208     }
1209 cp
1210 }