Read the PEM file pointed to by the configuration directive
[oweals/tinc.git] / src / net.c
1 /*
2     net.c -- most of the network code
3     Copyright (C) 1998,1999,2000 Ivo Timmermans <itimmermans@bigfoot.com>,
4                             2000 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.83 2000/11/30 20:08:41 zarq 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 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <sys/signal.h>
33 #include <sys/time.h>
34 #include <sys/types.h>
35 #include <syslog.h>
36 #include <unistd.h>
37 #include <sys/ioctl.h>
38 /* SunOS really wants sys/socket.h BEFORE net/if.h,
39    and FreeBSD wants these lines below the rest. */
40 #include <arpa/inet.h>
41 #include <sys/socket.h>
42 #include <net/if.h>
43
44 #ifdef HAVE_OPENSSL_RAND_H
45 # include <openssl/rand.h>
46 #else
47 # include <rand.h>
48 #endif
49
50 #ifdef HAVE_OPENSSL_EVP_H
51 # include <openssl/evp.h>
52 #else
53 # include <evp.h>
54 #endif
55
56 #ifdef HAVE_OPENSSL_ERR_H
57 # include <openssl/err.h>
58 #else
59 # include <err.h>
60 #endif
61
62 #ifdef HAVE_TUNTAP
63 #include LINUX_IF_TUN_H
64 #endif
65
66 #include <utils.h>
67 #include <xalloc.h>
68
69 #include "conf.h"
70 #include "connection.h"
71 #include "list.h"
72 #include "meta.h"
73 #include "net.h"
74 #include "netutl.h"
75 #include "process.h"
76 #include "protocol.h"
77 #include "subnet.h"
78
79 #include "system.h"
80
81 int tap_fd = -1;
82 int taptype = TAP_TYPE_ETHERTAP;
83 int total_tap_in = 0;
84 int total_tap_out = 0;
85 int total_socket_in = 0;
86 int total_socket_out = 0;
87
88 config_t *upstreamcfg;
89 static int seconds_till_retry;
90
91 int keylifetime = 0;
92 int keyexpires = 0;
93
94 char *unknown = NULL;
95
96 subnet_t mymac;
97
98 int xsend(connection_t *cl, vpn_packet_t *inpkt)
99 {
100   vpn_packet_t outpkt;
101   int outlen, outpad;
102   EVP_CIPHER_CTX ctx;
103   struct sockaddr_in to;
104   socklen_t tolen = sizeof(to);
105 cp
106   outpkt.len = inpkt->len;
107   
108   /* Encrypt the packet */
109   
110   EVP_EncryptInit(&ctx, cl->cipher_pkttype, cl->cipher_pktkey, cl->cipher_pktkey + cl->cipher_pkttype->key_len);
111   EVP_EncryptUpdate(&ctx, outpkt.data, &outlen, inpkt->data, inpkt->len);
112   EVP_EncryptFinal(&ctx, outpkt.data + outlen, &outpad);
113   outlen += outpad + 2;
114
115 /* Bypass
116   outlen = outpkt.len + 2;
117   memcpy(&outpkt, inpkt, outlen);
118 */  
119
120   if(debug_lvl >= DEBUG_TRAFFIC)
121     syslog(LOG_ERR, _("Sending packet of %d bytes to %s (%s)"),
122            outlen, cl->name, cl->hostname);
123
124   total_socket_out += outlen;
125
126   to.sin_family = AF_INET;
127   to.sin_addr.s_addr = htonl(cl->address);
128   to.sin_port = htons(cl->port);
129
130   if((sendto(myself->socket, (char *) &(outpkt.len), outlen, 0, (const struct sockaddr *)&to, tolen)) < 0)
131     {
132       syslog(LOG_ERR, _("Error sending packet to %s (%s): %m"),
133              cl->name, cl->hostname);
134       return -1;
135     }
136 cp
137   return 0;
138 }
139
140 int xrecv(connection_t *cl, vpn_packet_t *inpkt)
141 {
142   vpn_packet_t outpkt;
143   int outlen, outpad;
144   EVP_CIPHER_CTX ctx;
145 cp
146   outpkt.len = inpkt->len;
147
148   /* Decrypt the packet */
149
150   EVP_DecryptInit(&ctx, myself->cipher_pkttype, myself->cipher_pktkey, myself->cipher_pktkey + myself->cipher_pkttype->key_len);
151   EVP_DecryptUpdate(&ctx, outpkt.data, &outlen, inpkt->data, inpkt->len + 8);
152   EVP_DecryptFinal(&ctx, outpkt.data + outlen, &outpad);
153   outlen += outpad;
154
155 /* Bypass
156   outlen = outpkt.len+2;
157   memcpy(&outpkt, inpkt, outlen);
158 */
159      
160   if(debug_lvl >= DEBUG_TRAFFIC)
161     syslog(LOG_ERR, _("Writing packet of %d bytes to tap device"),
162            outpkt.len, outlen);
163
164   /* Fix mac address */
165
166   memcpy(outpkt.data, mymac.net.mac.address.x, 6);
167
168   if(taptype == TAP_TYPE_TUNTAP)
169     {
170       if(write(tap_fd, outpkt.data, outpkt.len) < 0)
171         syslog(LOG_ERR, _("Can't write to tun/tap device: %m"));
172       else
173         total_tap_out += outpkt.len;
174     }
175   else  /* ethertap */
176     {
177       if(write(tap_fd, outpkt.data - 2, outpkt.len + 2) < 0)
178         syslog(LOG_ERR, _("Can't write to ethertap device: %m"));
179       else
180         total_tap_out += outpkt.len + 2;
181     }
182 cp
183   return 0;
184 }
185
186 /*
187   add the given packet of size s to the
188   queue q, be it the send or receive queue
189 */
190 void add_queue(packet_queue_t **q, void *packet, size_t s)
191 {
192   queue_element_t *e;
193 cp
194   e = xmalloc(sizeof(*e));
195   e->packet = xmalloc(s);
196   memcpy(e->packet, packet, s);
197
198   if(!*q)
199     {
200       *q = xmalloc(sizeof(**q));
201       (*q)->head = (*q)->tail = NULL;
202     }
203
204   e->next = NULL;                       /* We insert at the tail */
205
206   if((*q)->tail)                        /* Do we have a tail? */
207     {
208       (*q)->tail->next = e;
209       e->prev = (*q)->tail;
210     }
211   else                                  /* No tail -> no head too */
212     {
213       (*q)->head = e;
214       e->prev = NULL;
215     }
216
217   (*q)->tail = e;
218 cp
219 }
220
221 /* Remove a queue element */
222 void del_queue(packet_queue_t **q, queue_element_t *e)
223 {
224 cp
225   free(e->packet);
226
227   if(e->next)                           /* There is a successor, so we are not tail */
228     {
229       if(e->prev)                       /* There is a predecessor, so we are not head */
230         {
231           e->next->prev = e->prev;
232           e->prev->next = e->next;
233         }
234       else                              /* We are head */
235         {
236           e->next->prev = NULL;
237           (*q)->head = e->next;
238         }
239     }
240   else                                  /* We are tail (or all alone!) */
241     {          
242       if(e->prev)                       /* We are not alone :) */
243         {
244           e->prev->next = NULL;
245           (*q)->tail = e->prev;
246         }
247       else                              /* Adieu */
248         {
249           free(*q);
250           *q = NULL;
251         }
252     }
253     
254   free(e);
255 cp
256 }
257
258 /*
259   flush a queue by calling function for
260   each packet, and removing it when that
261   returned a zero exit code
262 */
263 void flush_queue(connection_t *cl, packet_queue_t **pq,
264                  int (*function)(connection_t*,vpn_packet_t*))
265 {
266   queue_element_t *p, *next = NULL;
267 cp
268   for(p = (*pq)->head; p != NULL; )
269     {
270       next = p->next;
271
272       if(!function(cl, p->packet))
273         del_queue(pq, p);
274         
275       p = next;
276     }
277
278   if(debug_lvl >= DEBUG_TRAFFIC)
279     syslog(LOG_DEBUG, _("Queue flushed"));
280 cp
281 }
282
283 /*
284   flush the send&recv queues
285   void because nothing goes wrong here, packets
286   remain in the queue if something goes wrong
287 */
288 void flush_queues(connection_t *cl)
289 {
290 cp
291   if(cl->sq)
292     {
293       if(debug_lvl >= DEBUG_TRAFFIC)
294         syslog(LOG_DEBUG, _("Flushing send queue for %s (%s)"),
295                cl->name, cl->hostname);
296       flush_queue(cl, &(cl->sq), xsend);
297     }
298
299   if(cl->rq)
300     {
301       if(debug_lvl >=  DEBUG_TRAFFIC)
302         syslog(LOG_DEBUG, _("Flushing receive queue for %s (%s)"),
303                cl->name, cl->hostname);
304       flush_queue(cl, &(cl->rq), xrecv);
305     }
306 cp
307 }
308
309 /*
310   send a packet to the given vpn ip.
311 */
312 int send_packet(ip_t to, vpn_packet_t *packet)
313 {
314   connection_t *cl;
315   subnet_t *subnet;
316 cp
317   if((subnet = lookup_subnet_ipv4(to)) == NULL)
318     {
319       if(debug_lvl >= DEBUG_TRAFFIC)
320         {
321           syslog(LOG_NOTICE, _("Trying to look up %d.%d.%d.%d in connection list failed!"),
322                  IP_ADDR_V(to));
323         }
324
325       return -1;
326     }
327
328   cl = subnet->owner;
329     
330   if(cl == myself)
331     {
332       if(debug_lvl >= DEBUG_TRAFFIC)
333         {
334           syslog(LOG_NOTICE, _("Packet with destination %d.%d.%d.%d is looping back to us!"),
335                  IP_ADDR_V(to));
336         }
337
338       return -1;
339     }
340
341   /* If we ourselves have indirectdata flag set, we should send only to our uplink! */
342
343   /* FIXME - check for indirection and reprogram it The Right Way(tm) this time. */
344   
345   if(!cl->status.validkey)
346     {
347 /* FIXME: Don't queue until everything else is fixed.
348       if(debug_lvl >= DEBUG_TRAFFIC)
349         syslog(LOG_INFO, _("No valid key known yet for %s (%s), queueing packet"),
350                cl->name, cl->hostname);
351       add_queue(&(cl->sq), packet, packet->len + 2);
352 */
353       if(!cl->status.waitingforkey)
354         send_req_key(myself, cl);                       /* Keys should be sent to the host running the tincd */
355       return 0;
356     }
357
358   if(!cl->status.active)
359     {
360 /* FIXME: Don't queue until everything else is fixed.
361       if(debug_lvl >= DEBUG_TRAFFIC)
362         syslog(LOG_INFO, _("%s (%s) is not ready, queueing packet"),
363                cl->name, cl->hostname);
364       add_queue(&(cl->sq), packet, packet->len + 2);
365 */
366       return 0; /* We don't want to mess up, do we? */
367     }
368
369   /* can we send it? can we? can we? huh? */
370 cp
371   return xsend(cl, packet);
372 }
373
374 /*
375   open the local ethertap device
376 */
377 int setup_tap_fd(void)
378 {
379   int nfd;
380   const char *tapfname;
381   config_t const *cfg;
382 #ifdef HAVE_LINUX
383  #ifdef HAVE_TUNTAP
384   struct ifreq ifr;
385  #endif
386 #endif
387
388 cp  
389   if((cfg = get_config_val(config, config_tapdevice)))
390     tapfname = cfg->data.ptr;
391   else
392    {
393 #ifdef HAVE_LINUX
394  #ifdef HAVE_TUNTAP
395       tapfname = "/dev/misc/net/tun";
396  #else
397       tapfname = "/dev/tap0";
398  #endif
399 #endif
400 #ifdef HAVE_FREEBSD
401       tapfname = "/dev/tap0";
402 #endif
403 #ifdef HAVE_SOLARIS
404       tapfname = "/dev/tun";
405 #endif
406    }
407 cp
408   if((nfd = open(tapfname, O_RDWR | O_NONBLOCK)) < 0)
409     {
410       syslog(LOG_ERR, _("Could not open %s: %m"), tapfname);
411       return -1;
412     }
413 cp
414   tap_fd = nfd;
415
416   taptype = TAP_TYPE_ETHERTAP;
417
418   /* Set default MAC address for ethertap devices */
419   
420   mymac.type = SUBNET_MAC;
421   mymac.net.mac.address.x[0] = 0xfe;
422   mymac.net.mac.address.x[1] = 0xfd;
423   mymac.net.mac.address.x[2] = 0x00;
424   mymac.net.mac.address.x[3] = 0x00;
425   mymac.net.mac.address.x[4] = 0x00;
426   mymac.net.mac.address.x[5] = 0x00;
427
428 #ifdef HAVE_LINUX
429  #ifdef HAVE_TUNTAP
430   /* Ok now check if this is an old ethertap or a new tun/tap thingie */
431   memset(&ifr, 0, sizeof(ifr));
432 cp
433   ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
434   if (netname)
435     strncpy(ifr.ifr_name, netname, IFNAMSIZ);
436 cp
437   if (!ioctl(tap_fd, TUNSETIFF, (void *) &ifr))
438   {
439     syslog(LOG_INFO, _("%s is a new style tun/tap device"), tapfname);
440     taptype = TAP_TYPE_TUNTAP;
441   }
442  #endif
443 #endif
444 #ifdef HAVE_FREEBSD
445  taptype = TAP_TYPE_TUNTAP;
446 #endif
447 cp
448   return 0;
449 }
450
451 /*
452   set up the socket that we listen on for incoming
453   (tcp) connections
454 */
455 int setup_listen_meta_socket(int port)
456 {
457   int nfd, flags;
458   struct sockaddr_in a;
459   const int one = 1;
460   config_t const *cfg;
461 cp
462   if((nfd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
463     {
464       syslog(LOG_ERR, _("Creating metasocket failed: %m"));
465       return -1;
466     }
467
468   if(setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)))
469     {
470       close(nfd);
471       syslog(LOG_ERR, _("System call `%s' failed: %m"),
472              "setsockopt");
473       return -1;
474     }
475
476   if(setsockopt(nfd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one)))
477     {
478       close(nfd);
479       syslog(LOG_ERR, _("System call `%s' failed: %m"),
480              "setsockopt");
481       return -1;
482     }
483
484   flags = fcntl(nfd, F_GETFL);
485   if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
486     {
487       close(nfd);
488       syslog(LOG_ERR, _("System call `%s' failed: %m"),
489              "fcntl");
490       return -1;
491     }
492
493   if((cfg = get_config_val(config, config_interface)))
494     {
495       if(setsockopt(nfd, SOL_SOCKET, SO_KEEPALIVE, cfg->data.ptr, strlen(cfg->data.ptr)))
496         {
497           close(nfd);
498           syslog(LOG_ERR, _("Unable to bind listen socket to interface %s: %m"), cfg->data.ptr);
499           return -1;
500         }
501     }
502
503   memset(&a, 0, sizeof(a));
504   a.sin_family = AF_INET;
505   a.sin_port = htons(port);
506   
507   if((cfg = get_config_val(config, config_interfaceip)))
508     a.sin_addr.s_addr = htonl(cfg->data.ip->address);
509   else
510     a.sin_addr.s_addr = htonl(INADDR_ANY);
511
512   if(bind(nfd, (struct sockaddr *)&a, sizeof(struct sockaddr)))
513     {
514       close(nfd);
515       syslog(LOG_ERR, _("Can't bind to port %hd/tcp: %m"), port);
516       return -1;
517     }
518
519   if(listen(nfd, 3))
520     {
521       close(nfd);
522       syslog(LOG_ERR, _("System call `%s' failed: %m"),
523              "listen");
524       return -1;
525     }
526 cp
527   return nfd;
528 }
529
530 /*
531   setup the socket for incoming encrypted
532   data (the udp part)
533 */
534 int setup_vpn_in_socket(int port)
535 {
536   int nfd, flags;
537   struct sockaddr_in a;
538   const int one = 1;
539 cp
540   if((nfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0)
541     {
542       close(nfd);
543       syslog(LOG_ERR, _("Creating socket failed: %m"));
544       return -1;
545     }
546
547   if(setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)))
548     {
549       close(nfd);
550       syslog(LOG_ERR, _("System call `%s' failed: %m"),
551              "setsockopt");
552       return -1;
553     }
554
555   flags = fcntl(nfd, F_GETFL);
556   if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
557     {
558       close(nfd);
559       syslog(LOG_ERR, _("System call `%s' failed: %m"),
560              "fcntl");
561       return -1;
562     }
563
564   memset(&a, 0, sizeof(a));
565   a.sin_family = AF_INET;
566   a.sin_port = htons(port);
567   a.sin_addr.s_addr = htonl(INADDR_ANY);
568
569   if(bind(nfd, (struct sockaddr *)&a, sizeof(struct sockaddr)))
570     {
571       close(nfd);
572       syslog(LOG_ERR, _("Can't bind to port %hd/udp: %m"), port);
573       return -1;
574     }
575 cp
576   return nfd;
577 }
578
579 /*
580   setup an outgoing meta (tcp) socket
581 */
582 int setup_outgoing_meta_socket(connection_t *cl)
583 {
584   int flags;
585   struct sockaddr_in a;
586   config_t const *cfg;
587 cp
588   if(debug_lvl >= DEBUG_CONNECTIONS)
589     syslog(LOG_INFO, _("Trying to connect to %s"), cl->hostname);
590
591   if((cfg = get_config_val(cl->config, config_port)) == NULL)
592     cl->port = 655;
593   else
594     cl->port = cfg->data.val;
595
596   cl->meta_socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
597   if(cl->meta_socket == -1)
598     {
599       syslog(LOG_ERR, _("Creating socket for %s port %d failed: %m"),
600              cl->hostname, cl->port);
601       return -1;
602     }
603
604   a.sin_family = AF_INET;
605   a.sin_port = htons(cl->port);
606   a.sin_addr.s_addr = htonl(cl->address);
607
608   if(connect(cl->meta_socket, (struct sockaddr *)&a, sizeof(a)) == -1)
609     {
610       close(cl->meta_socket);
611       syslog(LOG_ERR, _("%s port %hd: %m"), cl->hostname, cl->port);
612       return -1;
613     }
614
615   flags = fcntl(cl->meta_socket, F_GETFL);
616   if(fcntl(cl->meta_socket, F_SETFL, flags | O_NONBLOCK) < 0)
617     {
618       close(cl->meta_socket);
619       syslog(LOG_ERR, _("fcntl for %s port %d: %m"),
620              cl->hostname, cl->port);
621       return -1;
622     }
623
624   if(debug_lvl >= DEBUG_CONNECTIONS)
625     syslog(LOG_INFO, _("Connected to %s port %hd"),
626          cl->hostname, cl->port);
627
628   cl->status.meta = 1;
629 cp
630   return 0;
631 }
632
633 /*
634   Setup an outgoing meta connection.
635 */
636 int setup_outgoing_connection(char *name)
637 {
638   connection_t *ncn;
639   struct hostent *h;
640   config_t const *cfg;
641 cp
642   if(check_id(name))
643     {
644       syslog(LOG_ERR, _("Invalid name for outgoing connection"));
645       return -1;
646     }
647
648   ncn = new_connection();
649   asprintf(&ncn->name, "%s", name);
650     
651   if(read_host_config(ncn))
652     {
653       syslog(LOG_ERR, _("Error reading host configuration file for %s"));
654       free_connection(ncn);
655       return -1;
656     }
657     
658   if(!(cfg = get_config_val(ncn->config, config_address)))
659     {
660       syslog(LOG_ERR, _("No address specified for %s"));
661       free_connection(ncn);
662       return -1;
663     }
664     
665   if(!(h = gethostbyname(cfg->data.ptr)))
666     {
667       syslog(LOG_ERR, _("Error looking up `%s': %m"), cfg->data.ptr);
668       free_connection(ncn);
669       return -1;
670     }
671
672   ncn->address = ntohl(*((ip_t*)(h->h_addr_list[0])));
673   ncn->hostname = hostlookup(htonl(ncn->address));
674   
675   if(setup_outgoing_meta_socket(ncn) < 0)
676     {
677       syslog(LOG_ERR, _("Could not set up a meta connection to %s"),
678              ncn->hostname);
679       free_connection(ncn);
680       return -1;
681     }
682
683   ncn->status.outgoing = 1;
684   ncn->buffer = xmalloc(MAXBUFSIZE);
685   ncn->buflen = 0;
686   ncn->last_ping_time = time(NULL);
687
688   connection_add(ncn);
689
690   send_id(ncn);
691 cp
692   return 0;
693 }
694
695 int read_rsa_private_key(RSA **key, const char *file)
696 {
697   FILE *fp;
698
699   if((fp = fopen(file, "r")) == NULL)
700     {
701       syslog(LOG_ERR, _("Error reading file `%s': %m"),
702              file);
703       return -1;
704     }
705   PEM_read_RSAPrivateKey(fp, key, NULL, NULL);
706 }
707
708 int read_rsa_keys(void)
709 {
710   config_t const *cfg;
711
712   if(!(cfg = get_config_val(config, config_privatekey)))
713     {
714       syslog(LOG_ERR, _("Private key for tinc daemon required!"));
715       return -1;
716     }
717
718   myself->rsa_key = RSA_new();
719   return read_rsa_private_key(&(myself->rsa_key), cfg->data.ptr);
720 }
721
722 /*
723   Configure connection_t myself and set up the local sockets (listen only)
724 */
725 int setup_myself(void)
726 {
727   config_t const *cfg;
728   config_t *next;
729   subnet_t *net;
730 cp
731   myself = new_connection();
732
733   asprintf(&myself->hostname, "MYSELF"); /* FIXME? Do hostlookup on ourselves? */
734   myself->flags = 0;
735   myself->protocol_version = PROT_CURRENT;
736
737   if(!(cfg = get_config_val(config, config_name))) /* Not acceptable */
738     {
739       syslog(LOG_ERR, _("Name for tinc daemon required!"));
740       return -1;
741     }
742   else
743     asprintf(&myself->name, "%s", (char*)cfg->data.val);
744
745   if(check_id(myself->name))
746     {
747       syslog(LOG_ERR, _("Invalid name for myself!"));
748       return -1;
749     }
750 cp
751   if(read_rsa_keys())
752     return -1;
753
754   if(read_host_config(myself))
755     {
756       syslog(LOG_ERR, _("Cannot open host configuration file for myself!"));
757       return -1;
758     }
759 cp  
760   if(!(cfg = get_config_val(myself->config, config_publickey)))
761     {
762       syslog(LOG_ERR, _("Public key for tinc daemon required!"));
763       return -1;
764     }
765   else
766     {
767       BN_hex2bn(&myself->rsa_key->n, cfg->data.ptr);
768     }
769 /*
770   if(RSA_check_key(myself->rsa_key) != 1)
771     {
772       syslog(LOG_ERR, _("Invalid public/private keypair!"));
773       return -1;
774     }
775 */
776   if(!(cfg = get_config_val(myself->config, config_port)))
777     myself->port = 655;
778   else
779     myself->port = cfg->data.val;
780
781   if((cfg = get_config_val(myself->config, config_indirectdata)))
782     if(cfg->data.val == stupid_true)
783       myself->flags |= EXPORTINDIRECTDATA;
784
785   if((cfg = get_config_val(myself->config, config_tcponly)))
786     if(cfg->data.val == stupid_true)
787       myself->flags |= TCPONLY;
788
789 /* Read in all the subnets specified in the host configuration file */
790
791   for(next = myself->config; (cfg = get_config_val(next, config_subnet)); next = cfg->next)
792     {
793       net = new_subnet();
794       net->type = SUBNET_IPV4;
795       net->net.ipv4.address = cfg->data.ip->address;
796       net->net.ipv4.mask = cfg->data.ip->mask;
797       
798       /* Teach newbies what subnets are... */
799       
800       if((net->net.ipv4.address & net->net.ipv4.mask) != net->net.ipv4.address)
801         {
802           syslog(LOG_ERR, _("Network address and subnet mask do not match!"));
803           return -1;
804         }        
805       
806       subnet_add(myself, net);
807     }
808     
809   if((myself->meta_socket = setup_listen_meta_socket(myself->port)) < 0)
810     {
811       syslog(LOG_ERR, _("Unable to set up a listening TCP socket!"));
812       return -1;
813     }
814
815   if((myself->socket = setup_vpn_in_socket(myself->port)) < 0)
816     {
817       syslog(LOG_ERR, _("Unable to set up a listening UDP socket!"));
818       return -1;
819     }
820
821   /* Generate packet encryption key */
822
823   myself->cipher_pkttype = EVP_bf_cfb();
824
825   myself->cipher_pktkeylength = myself->cipher_pkttype->key_len + myself->cipher_pkttype->iv_len;
826
827   myself->cipher_pktkey = (char *)xmalloc(myself->cipher_pktkeylength);
828   RAND_bytes(myself->cipher_pktkey, myself->cipher_pktkeylength);
829
830   if(!(cfg = get_config_val(config, config_keyexpire)))
831     keylifetime = 3600;
832   else
833     keylifetime = cfg->data.val;
834     
835   keyexpires = time(NULL) + keylifetime;
836
837   /* Activate ourselves */
838   
839   myself->status.active = 1;
840
841   syslog(LOG_NOTICE, _("Ready: listening on port %hd"), myself->port);
842 cp
843   return 0;
844 }
845
846 RETSIGTYPE
847 sigalrm_handler(int a)
848 {
849   config_t const *cfg;
850 cp
851   cfg = get_config_val(upstreamcfg, config_connectto);
852
853   if(!cfg && upstreamcfg == config)
854     /* No upstream IP given, we're listen only. */
855     return;
856
857   while(cfg)
858     {
859       upstreamcfg = cfg->next;
860       if(!setup_outgoing_connection(cfg->data.ptr))   /* function returns 0 when there are no problems */
861         {
862           signal(SIGALRM, SIG_IGN);
863           return;
864         }
865       cfg = get_config_val(upstreamcfg, config_connectto); /* Or else we try the next ConnectTo line */
866     }
867
868   signal(SIGALRM, sigalrm_handler);
869   upstreamcfg = config;
870   seconds_till_retry += 5;
871   if(seconds_till_retry > MAXTIMEOUT)    /* Don't wait more than MAXTIMEOUT seconds. */
872     seconds_till_retry = MAXTIMEOUT;
873   syslog(LOG_ERR, _("Still failed to connect to other, will retry in %d seconds"),
874          seconds_till_retry);
875   alarm(seconds_till_retry);
876 cp
877 }
878
879 /*
880   setup all initial network connections
881 */
882 int setup_network_connections(void)
883 {
884   config_t const *cfg;
885 cp
886   init_connections();
887   init_subnets();
888
889   if((cfg = get_config_val(config, config_pingtimeout)) == NULL)
890     timeout = 60;
891   else
892     {
893       timeout = cfg->data.val;
894       if(timeout < 1)
895         {
896           timeout = 86400;
897         }
898      }
899
900   if(setup_tap_fd() < 0)
901     return -1;
902
903   /* Run tinc-up script to further initialize the tap interface */
904   execute_script("tinc-up");
905   
906   if(setup_myself() < 0)
907     return -1;
908
909   if(!(cfg = get_config_val(config, config_connectto)))
910     /* No upstream IP given, we're listen only. */
911     return 0;
912
913   while(cfg)
914     {
915       upstreamcfg = cfg->next;
916       if(!setup_outgoing_connection(cfg->data.ptr))   /* function returns 0 when there are no problems */
917         return 0;
918       cfg = get_config_val(upstreamcfg, config_connectto); /* Or else we try the next ConnectTo line */
919     }
920     
921   signal(SIGALRM, sigalrm_handler);
922   upstreamcfg = config;
923   seconds_till_retry = MAXTIMEOUT;
924   syslog(LOG_NOTICE, _("Trying to re-establish outgoing connection in %d seconds"), seconds_till_retry);
925   alarm(seconds_till_retry);
926 cp
927   return 0;
928 }
929
930 /*
931   close all open network connections
932 */
933 void close_network_connections(void)
934 {
935   rbl_t *rbl;
936   connection_t *p;
937 cp
938   RBL_FOREACH(connection_tree, rbl)
939     {
940       p = (connection_t *)rbl->data;
941       p->status.active = 0;
942       terminate_connection(p);
943     }
944
945   if(myself)
946     if(myself->status.active)
947       {
948         close(myself->meta_socket);
949         free_connection(myself);
950         myself = NULL;
951       }
952
953   close(tap_fd);
954
955   /* Execute tinc-down script right after shutting down the interface */
956   execute_script("tinc-down");
957
958   destroy_connection_tree();
959 cp
960   return;
961 }
962
963 /*
964   create a data (udp) socket
965   OBSOLETED: use only one listening socket for compatibility with non-Linux operating systems
966 */
967 int setup_vpn_connection(connection_t *cl)
968 {
969   int nfd, flags;
970   struct sockaddr_in a;
971   const int one = 1;
972 cp
973   if(debug_lvl >= DEBUG_TRAFFIC)
974     syslog(LOG_DEBUG, _("Opening UDP socket to %s"), cl->hostname);
975
976   nfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
977   if(nfd == -1)
978     {
979       syslog(LOG_ERR, _("Creating UDP socket failed: %m"));
980       return -1;
981     }
982
983   if(setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)))
984     {
985       close(nfd);
986       syslog(LOG_ERR, _("System call `%s' failed: %m"),
987              "setsockopt");
988       return -1;
989     }
990
991   flags = fcntl(nfd, F_GETFL);
992   if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
993     {
994       close(nfd);
995       syslog(LOG_ERR, _("System call `%s' failed: %m"),
996              "fcntl");
997       return -1;
998     }
999
1000   memset(&a, 0, sizeof(a));
1001   a.sin_family = AF_INET;
1002   a.sin_port = htons(myself->port);
1003   a.sin_addr.s_addr = htonl(INADDR_ANY);
1004
1005   if(bind(nfd, (struct sockaddr *)&a, sizeof(struct sockaddr)))
1006     {
1007       close(nfd);
1008       syslog(LOG_ERR, _("Can't bind to port %hd/udp: %m"), myself->port);
1009       return -1;
1010     }
1011
1012   a.sin_family = AF_INET;
1013   a.sin_port = htons(cl->port);
1014   a.sin_addr.s_addr = htonl(cl->address);
1015
1016   if(connect(nfd, (struct sockaddr *)&a, sizeof(a)) == -1)
1017     {
1018       close(nfd);
1019       syslog(LOG_ERR, _("Connecting to %s port %d failed: %m"),
1020              cl->hostname, cl->port);
1021       return -1;
1022     }
1023
1024   flags = fcntl(nfd, F_GETFL);
1025   if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
1026     {
1027       close(nfd);
1028       syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m %s (%s)"), __FILE__, __LINE__, nfd,
1029              cl->name, cl->hostname);
1030       return -1;
1031     }
1032
1033   cl->socket = nfd;
1034   cl->status.dataopen = 1;
1035 cp
1036   return 0;
1037 }
1038
1039 /*
1040   handle an incoming tcp connect call and open
1041   a connection to it.
1042 */
1043 connection_t *create_new_connection(int sfd)
1044 {
1045   connection_t *p;
1046   struct sockaddr_in ci;
1047   int len = sizeof(ci);
1048 cp
1049   p = new_connection();
1050
1051   if(getpeername(sfd, (struct sockaddr *) &ci, (socklen_t *) &len) < 0)
1052     {
1053       syslog(LOG_ERR, _("System call `%s' failed: %m"),
1054              "getpeername");
1055       return NULL;
1056     }
1057
1058   p->name = unknown;
1059   p->address = ntohl(ci.sin_addr.s_addr);
1060   p->hostname = hostlookup(ci.sin_addr.s_addr);
1061   p->meta_socket = sfd;
1062   p->status.meta = 1;
1063   p->buffer = xmalloc(MAXBUFSIZE);
1064   p->buflen = 0;
1065   p->last_ping_time = time(NULL);
1066   
1067   if(debug_lvl >= DEBUG_CONNECTIONS)
1068     syslog(LOG_NOTICE, _("Connection from %s port %d"),
1069          p->hostname, htons(ci.sin_port));
1070
1071   p->allow_request = ID;
1072 cp
1073   return p;
1074 }
1075
1076 /*
1077   put all file descriptors in an fd_set array
1078 */
1079 void build_fdset(fd_set *fs)
1080 {
1081   rbl_t *rbl;
1082   connection_t *p;
1083 cp
1084   FD_ZERO(fs);
1085
1086   FD_SET(myself->socket, fs);
1087
1088   RBL_FOREACH(connection_tree, rbl)
1089     {
1090       p = (connection_t *)rbl->data;
1091       if(p->status.meta)
1092         FD_SET(p->meta_socket, fs);
1093     }
1094
1095   FD_SET(myself->meta_socket, fs);
1096   FD_SET(tap_fd, fs);
1097 cp
1098 }
1099
1100 /*
1101   receive incoming data from the listening
1102   udp socket and write it to the ethertap
1103   device after being decrypted
1104 */
1105 int handle_incoming_vpn_data(void)
1106 {
1107   vpn_packet_t pkt;
1108   int x, l = sizeof(x);
1109   int lenin;
1110   struct sockaddr_in from;
1111   socklen_t fromlen = sizeof(from);
1112   connection_t *cl;
1113 cp
1114   if(getsockopt(myself->socket, SOL_SOCKET, SO_ERROR, &x, &l) < 0)
1115     {
1116       syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m"),
1117              __FILE__, __LINE__, myself->socket);
1118       return -1;
1119     }
1120   if(x)
1121     {
1122       syslog(LOG_ERR, _("Incoming data socket error: %s"), strerror(x));
1123       return -1;
1124     }
1125
1126   if((lenin = recvfrom(myself->socket, (char *) &(pkt.len), MTU, 0, (struct sockaddr *)&from, &fromlen)) <= 0)
1127     {
1128       syslog(LOG_ERR, _("Receiving packet failed: %m"));
1129       return -1;
1130     }
1131
1132   cl = lookup_connection(ntohl(from.sin_addr.s_addr), ntohs(from.sin_port));
1133   
1134   if(!cl)
1135     {
1136       syslog(LOG_WARNING, _("Received UDP packets on port %d from unknown source %lx:%d"), ntohl(from.sin_addr.s_addr), ntohs(from.sin_port));
1137       return 0;
1138     }
1139
1140   if(debug_lvl >= DEBUG_TRAFFIC)
1141     {
1142       syslog(LOG_DEBUG, _("Received packet of %d bytes from %s (%s)"), lenin,
1143              cl->name, cl->hostname);
1144     }
1145
1146 cp
1147   return xrecv(cl, &pkt);
1148 }
1149
1150 /*
1151   terminate a connection and notify the other
1152   end before closing the sockets
1153 */
1154 void terminate_connection(connection_t *cl)
1155 {
1156   connection_t *p;
1157   subnet_t *subnet;
1158   rbl_t *rbl;
1159 cp
1160   if(cl->status.remove)
1161     return;
1162
1163   cl->status.remove = 1;
1164
1165   if(debug_lvl >= DEBUG_CONNECTIONS)
1166     syslog(LOG_NOTICE, _("Closing connection with %s (%s)"),
1167            cl->name, cl->hostname);
1168  
1169   if(cl->socket)
1170     close(cl->socket);
1171   if(cl->status.meta)
1172     close(cl->meta_socket);
1173
1174   /* Find all connections that were lost because they were behind cl
1175      (the connection that was dropped). */
1176
1177   if(cl->status.meta)
1178     RBL_FOREACH(connection_tree, rbl)
1179       {
1180         p = (connection_t *)rbl->data;
1181         if(p->nexthop == cl && p != cl)
1182           terminate_connection(p);
1183       }
1184
1185   /* Inform others of termination if it was still active */
1186
1187   if(cl->status.active)
1188     RBL_FOREACH(connection_tree, rbl)
1189       {
1190         p = (connection_t *)rbl->data;
1191         if(p->status.meta && p->status.active && p!=cl)
1192           send_del_host(p, cl); /* Sounds like recursion, but p does not have a meta connection :) */
1193       }
1194
1195   /* Remove the associated subnets */
1196
1197   RBL_FOREACH(cl->subnet_tree, rbl)
1198     {
1199       subnet = (subnet_t *)rbl->data;
1200       subnet_del(subnet);
1201     }
1202
1203   /* Check if this was our outgoing connection */
1204     
1205   if(cl->status.outgoing && cl->status.active)
1206     {
1207       signal(SIGALRM, sigalrm_handler);
1208       seconds_till_retry = 5;
1209       alarm(seconds_till_retry);
1210       syslog(LOG_NOTICE, _("Trying to re-establish outgoing connection in 5 seconds"));
1211     }
1212
1213   /* Inactivate */
1214
1215   cl->status.active = 0;
1216 cp
1217 }
1218
1219 /*
1220   Check if the other end is active.
1221   If we have sent packets, but didn't receive any,
1222   then possibly the other end is dead. We send a
1223   PING request over the meta connection. If the other
1224   end does not reply in time, we consider them dead
1225   and close the connection.
1226 */
1227 void check_dead_connections(void)
1228 {
1229   time_t now;
1230   rbl_t *rbl;
1231   connection_t *cl;
1232 cp
1233   now = time(NULL);
1234
1235   RBL_FOREACH(connection_tree, rbl)
1236     {
1237       cl = (connection_t *)rbl->data;
1238       if(cl->status.active && cl->status.meta)
1239         {
1240           if(cl->last_ping_time + timeout < now)
1241             {
1242               if(cl->status.pinged)
1243                 {
1244                   if(debug_lvl >= DEBUG_PROTOCOL)
1245                     syslog(LOG_INFO, _("%s (%s) didn't respond to PING"),
1246                            cl->name, cl->hostname);
1247                   cl->status.timeout = 1;
1248                   terminate_connection(cl);
1249                 }
1250               else
1251                 {
1252                   send_ping(cl);
1253                 }
1254             }
1255         }
1256     }
1257 cp
1258 }
1259
1260 /*
1261   accept a new tcp connect and create a
1262   new connection
1263 */
1264 int handle_new_meta_connection()
1265 {
1266   connection_t *ncn;
1267   struct sockaddr client;
1268   int nfd, len = sizeof(client);
1269 cp
1270   if((nfd = accept(myself->meta_socket, &client, &len)) < 0)
1271     {
1272       syslog(LOG_ERR, _("Accepting a new connection failed: %m"));
1273       return -1;
1274     }
1275
1276   if(!(ncn = create_new_connection(nfd)))
1277     {
1278       shutdown(nfd, 2);
1279       close(nfd);
1280       syslog(LOG_NOTICE, _("Closed attempted connection"));
1281       return 0;
1282     }
1283
1284   connection_add(ncn);
1285 cp
1286   return 0;
1287 }
1288
1289 /*
1290   check all connections to see if anything
1291   happened on their sockets
1292 */
1293 void check_network_activity(fd_set *f)
1294 {
1295   connection_t *p;
1296   rbl_t *rbl;
1297 cp
1298   if(FD_ISSET(myself->socket, f))
1299     handle_incoming_vpn_data();
1300
1301   RBL_FOREACH(connection_tree, rbl)
1302     {
1303       p = (connection_t *)rbl->data;
1304
1305       if(p->status.remove)
1306         return;
1307
1308       if(p->status.meta)
1309         if(FD_ISSET(p->meta_socket, f))
1310           if(receive_meta(p) < 0)
1311             {
1312               terminate_connection(p);
1313               return;
1314             } 
1315     }
1316     
1317   if(FD_ISSET(myself->meta_socket, f))
1318     handle_new_meta_connection();
1319 cp
1320 }
1321
1322 /*
1323   read, encrypt and send data that is
1324   available through the ethertap device
1325 */
1326 void handle_tap_input(void)
1327 {
1328   vpn_packet_t vp;
1329   int lenin;
1330 cp  
1331   if(taptype == TAP_TYPE_TUNTAP)
1332     {
1333       if((lenin = read(tap_fd, vp.data, MTU)) <= 0)
1334         {
1335           syslog(LOG_ERR, _("Error while reading from tun/tap device: %m"));
1336           return;
1337         }
1338       vp.len = lenin;
1339     }
1340   else                  /* ethertap */
1341     {
1342       if((lenin = read(tap_fd, vp.data - 2, MTU)) <= 0)
1343         {
1344           syslog(LOG_ERR, _("Error while reading from ethertap device: %m"));
1345           return;
1346         }
1347       vp.len = lenin - 2;
1348     }
1349
1350   total_tap_in += lenin;
1351
1352   if(lenin < 32)
1353     {
1354       if(debug_lvl >= DEBUG_TRAFFIC)
1355         syslog(LOG_WARNING, _("Received short packet from tap device"));
1356       return;
1357     }
1358
1359   if(debug_lvl >= DEBUG_TRAFFIC)
1360     {
1361       syslog(LOG_DEBUG, _("Read packet of length %d from tap device"), vp.len);
1362     }
1363
1364   send_packet(ntohl(*((unsigned long*)(&vp.data[30]))), &vp);
1365 cp
1366 }
1367
1368 /*
1369   this is where it all happens...
1370 */
1371 void main_loop(void)
1372 {
1373   fd_set fset;
1374   struct timeval tv;
1375   int r;
1376   time_t last_ping_check;
1377   int t;
1378 cp
1379   last_ping_check = time(NULL);
1380
1381   for(;;)
1382     {
1383       tv.tv_sec = timeout;
1384       tv.tv_usec = 0;
1385
1386       prune_connection_tree();
1387       build_fdset(&fset);
1388
1389       if((r = select(FD_SETSIZE, &fset, NULL, NULL, &tv)) < 0)
1390         {
1391           if(errno != EINTR) /* because of alarm */
1392             {
1393               syslog(LOG_ERR, _("Error while waiting for input: %m"));
1394               return;
1395             }
1396         }
1397
1398       if(sighup)
1399         {
1400           syslog(LOG_INFO, _("Rereading configuration file and restarting in 5 seconds"));
1401           sighup = 0;
1402           close_network_connections();
1403           clear_config(&config);
1404
1405           if(read_server_config())
1406             {
1407               syslog(LOG_ERR, _("Unable to reread configuration file, exiting"));
1408               exit(0);
1409             }
1410
1411           sleep(5);
1412           
1413           if(setup_network_connections())
1414             return;
1415             
1416           continue;
1417         }
1418
1419       t = time(NULL);
1420
1421       /* Let's check if everybody is still alive */
1422
1423       if(last_ping_check + timeout < t)
1424         {
1425           check_dead_connections();
1426           last_ping_check = time(NULL);
1427
1428           /* Should we regenerate our key? */
1429
1430           if(keyexpires < t)
1431             {
1432               if(debug_lvl >= DEBUG_STATUS)
1433                 syslog(LOG_INFO, _("Regenerating symmetric key"));
1434                 
1435               RAND_bytes(myself->cipher_pktkey, myself->cipher_pktkeylength);
1436               send_key_changed(myself, NULL);
1437               keyexpires = time(NULL) + keylifetime;
1438             }
1439         }
1440
1441       if(r > 0)
1442         {
1443           check_network_activity(&fset);
1444
1445           /* local tap data */
1446           if(FD_ISSET(tap_fd, &fset))
1447             handle_tap_input();
1448         }
1449     }
1450 cp
1451 }