893892c033bedbb453453829ddd384a853ac45ed
[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.82 2000/11/25 13:33:30 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 #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 /*
696   Configure connection_t myself and set up the local sockets (listen only)
697 */
698 int setup_myself(void)
699 {
700   config_t const *cfg;
701   config_t *next;
702   subnet_t *net;
703 cp
704   myself = new_connection();
705
706   asprintf(&myself->hostname, "MYSELF"); /* FIXME? Do hostlookup on ourselves? */
707   myself->flags = 0;
708   myself->protocol_version = PROT_CURRENT;
709
710   if(!(cfg = get_config_val(config, config_name))) /* Not acceptable */
711     {
712       syslog(LOG_ERR, _("Name for tinc daemon required!"));
713       return -1;
714     }
715   else
716     asprintf(&myself->name, "%s", (char*)cfg->data.val);
717
718   if(check_id(myself->name))
719     {
720       syslog(LOG_ERR, _("Invalid name for myself!"));
721       return -1;
722     }
723 cp
724   if(!(cfg = get_config_val(config, config_privatekey)))
725     {
726       syslog(LOG_ERR, _("Private key for tinc daemon required!"));
727       return -1;
728     }
729   else
730     {
731       myself->rsa_key = RSA_new();
732       BN_hex2bn(&myself->rsa_key->d, cfg->data.ptr);
733       BN_hex2bn(&myself->rsa_key->e, "FFFF");
734     }
735
736   if(read_host_config(myself))
737     {
738       syslog(LOG_ERR, _("Cannot open host configuration file for myself!"));
739       return -1;
740     }
741 cp  
742   if(!(cfg = get_config_val(myself->config, config_publickey)))
743     {
744       syslog(LOG_ERR, _("Public key for tinc daemon required!"));
745       return -1;
746     }
747   else
748     {
749       BN_hex2bn(&myself->rsa_key->n, cfg->data.ptr);
750     }
751 /*
752   if(RSA_check_key(myself->rsa_key) != 1)
753     {
754       syslog(LOG_ERR, _("Invalid public/private keypair!"));
755       return -1;
756     }
757 */
758   if(!(cfg = get_config_val(myself->config, config_port)))
759     myself->port = 655;
760   else
761     myself->port = cfg->data.val;
762
763   if((cfg = get_config_val(myself->config, config_indirectdata)))
764     if(cfg->data.val == stupid_true)
765       myself->flags |= EXPORTINDIRECTDATA;
766
767   if((cfg = get_config_val(myself->config, config_tcponly)))
768     if(cfg->data.val == stupid_true)
769       myself->flags |= TCPONLY;
770
771 /* Read in all the subnets specified in the host configuration file */
772
773   for(next = myself->config; (cfg = get_config_val(next, config_subnet)); next = cfg->next)
774     {
775       net = new_subnet();
776       net->type = SUBNET_IPV4;
777       net->net.ipv4.address = cfg->data.ip->address;
778       net->net.ipv4.mask = cfg->data.ip->mask;
779       
780       /* Teach newbies what subnets are... */
781       
782       if((net->net.ipv4.address & net->net.ipv4.mask) != net->net.ipv4.address)
783         {
784           syslog(LOG_ERR, _("Network address and subnet mask do not match!"));
785           return -1;
786         }        
787       
788       subnet_add(myself, net);
789     }
790     
791   if((myself->meta_socket = setup_listen_meta_socket(myself->port)) < 0)
792     {
793       syslog(LOG_ERR, _("Unable to set up a listening TCP socket!"));
794       return -1;
795     }
796
797   if((myself->socket = setup_vpn_in_socket(myself->port)) < 0)
798     {
799       syslog(LOG_ERR, _("Unable to set up a listening UDP socket!"));
800       return -1;
801     }
802
803   /* Generate packet encryption key */
804
805   myself->cipher_pkttype = EVP_bf_cfb();
806
807   myself->cipher_pktkeylength = myself->cipher_pkttype->key_len + myself->cipher_pkttype->iv_len;
808
809   myself->cipher_pktkey = (char *)xmalloc(myself->cipher_pktkeylength);
810   RAND_bytes(myself->cipher_pktkey, myself->cipher_pktkeylength);
811
812   if(!(cfg = get_config_val(config, config_keyexpire)))
813     keylifetime = 3600;
814   else
815     keylifetime = cfg->data.val;
816     
817   keyexpires = time(NULL) + keylifetime;
818
819   /* Activate ourselves */
820   
821   myself->status.active = 1;
822
823   syslog(LOG_NOTICE, _("Ready: listening on port %hd"), myself->port);
824 cp
825   return 0;
826 }
827
828 RETSIGTYPE
829 sigalrm_handler(int a)
830 {
831   config_t const *cfg;
832 cp
833   cfg = get_config_val(upstreamcfg, config_connectto);
834
835   if(!cfg && upstreamcfg == config)
836     /* No upstream IP given, we're listen only. */
837     return;
838
839   while(cfg)
840     {
841       upstreamcfg = cfg->next;
842       if(!setup_outgoing_connection(cfg->data.ptr))   /* function returns 0 when there are no problems */
843         {
844           signal(SIGALRM, SIG_IGN);
845           return;
846         }
847       cfg = get_config_val(upstreamcfg, config_connectto); /* Or else we try the next ConnectTo line */
848     }
849
850   signal(SIGALRM, sigalrm_handler);
851   upstreamcfg = config;
852   seconds_till_retry += 5;
853   if(seconds_till_retry > MAXTIMEOUT)    /* Don't wait more than MAXTIMEOUT seconds. */
854     seconds_till_retry = MAXTIMEOUT;
855   syslog(LOG_ERR, _("Still failed to connect to other, will retry in %d seconds"),
856          seconds_till_retry);
857   alarm(seconds_till_retry);
858 cp
859 }
860
861 /*
862   setup all initial network connections
863 */
864 int setup_network_connections(void)
865 {
866   config_t const *cfg;
867 cp
868   init_connections();
869   init_subnets();
870
871   if((cfg = get_config_val(config, config_pingtimeout)) == NULL)
872     timeout = 60;
873   else
874     {
875       timeout = cfg->data.val;
876       if(timeout < 1)
877         {
878           timeout = 86400;
879         }
880      }
881
882   if(setup_tap_fd() < 0)
883     return -1;
884
885   /* Run tinc-up script to further initialize the tap interface */
886   execute_script("tinc-up");
887   
888   if(setup_myself() < 0)
889     return -1;
890
891   if(!(cfg = get_config_val(config, config_connectto)))
892     /* No upstream IP given, we're listen only. */
893     return 0;
894
895   while(cfg)
896     {
897       upstreamcfg = cfg->next;
898       if(!setup_outgoing_connection(cfg->data.ptr))   /* function returns 0 when there are no problems */
899         return 0;
900       cfg = get_config_val(upstreamcfg, config_connectto); /* Or else we try the next ConnectTo line */
901     }
902     
903   signal(SIGALRM, sigalrm_handler);
904   upstreamcfg = config;
905   seconds_till_retry = MAXTIMEOUT;
906   syslog(LOG_NOTICE, _("Trying to re-establish outgoing connection in %d seconds"), seconds_till_retry);
907   alarm(seconds_till_retry);
908 cp
909   return 0;
910 }
911
912 /*
913   close all open network connections
914 */
915 void close_network_connections(void)
916 {
917   rbl_t *rbl;
918   connection_t *p;
919 cp
920   RBL_FOREACH(connection_tree, rbl)
921     {
922       p = (connection_t *)rbl->data;
923       p->status.active = 0;
924       terminate_connection(p);
925     }
926
927   if(myself)
928     if(myself->status.active)
929       {
930         close(myself->meta_socket);
931         free_connection(myself);
932         myself = NULL;
933       }
934
935   close(tap_fd);
936
937   /* Execute tinc-down script right after shutting down the interface */
938   execute_script("tinc-down");
939
940   destroy_connection_tree();
941 cp
942   return;
943 }
944
945 /*
946   create a data (udp) socket
947   OBSOLETED: use only one listening socket for compatibility with non-Linux operating systems
948 */
949 int setup_vpn_connection(connection_t *cl)
950 {
951   int nfd, flags;
952   struct sockaddr_in a;
953   const int one = 1;
954 cp
955   if(debug_lvl >= DEBUG_TRAFFIC)
956     syslog(LOG_DEBUG, _("Opening UDP socket to %s"), cl->hostname);
957
958   nfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
959   if(nfd == -1)
960     {
961       syslog(LOG_ERR, _("Creating UDP socket failed: %m"));
962       return -1;
963     }
964
965   if(setsockopt(nfd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)))
966     {
967       close(nfd);
968       syslog(LOG_ERR, _("System call `%s' failed: %m"),
969              "setsockopt");
970       return -1;
971     }
972
973   flags = fcntl(nfd, F_GETFL);
974   if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
975     {
976       close(nfd);
977       syslog(LOG_ERR, _("System call `%s' failed: %m"),
978              "fcntl");
979       return -1;
980     }
981
982   memset(&a, 0, sizeof(a));
983   a.sin_family = AF_INET;
984   a.sin_port = htons(myself->port);
985   a.sin_addr.s_addr = htonl(INADDR_ANY);
986
987   if(bind(nfd, (struct sockaddr *)&a, sizeof(struct sockaddr)))
988     {
989       close(nfd);
990       syslog(LOG_ERR, _("Can't bind to port %hd/udp: %m"), myself->port);
991       return -1;
992     }
993
994   a.sin_family = AF_INET;
995   a.sin_port = htons(cl->port);
996   a.sin_addr.s_addr = htonl(cl->address);
997
998   if(connect(nfd, (struct sockaddr *)&a, sizeof(a)) == -1)
999     {
1000       close(nfd);
1001       syslog(LOG_ERR, _("Connecting to %s port %d failed: %m"),
1002              cl->hostname, cl->port);
1003       return -1;
1004     }
1005
1006   flags = fcntl(nfd, F_GETFL);
1007   if(fcntl(nfd, F_SETFL, flags | O_NONBLOCK) < 0)
1008     {
1009       close(nfd);
1010       syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m %s (%s)"), __FILE__, __LINE__, nfd,
1011              cl->name, cl->hostname);
1012       return -1;
1013     }
1014
1015   cl->socket = nfd;
1016   cl->status.dataopen = 1;
1017 cp
1018   return 0;
1019 }
1020
1021 /*
1022   handle an incoming tcp connect call and open
1023   a connection to it.
1024 */
1025 connection_t *create_new_connection(int sfd)
1026 {
1027   connection_t *p;
1028   struct sockaddr_in ci;
1029   int len = sizeof(ci);
1030 cp
1031   p = new_connection();
1032
1033   if(getpeername(sfd, (struct sockaddr *) &ci, (socklen_t *) &len) < 0)
1034     {
1035       syslog(LOG_ERR, _("System call `%s' failed: %m"),
1036              "getpeername");
1037       return NULL;
1038     }
1039
1040   p->name = unknown;
1041   p->address = ntohl(ci.sin_addr.s_addr);
1042   p->hostname = hostlookup(ci.sin_addr.s_addr);
1043   p->meta_socket = sfd;
1044   p->status.meta = 1;
1045   p->buffer = xmalloc(MAXBUFSIZE);
1046   p->buflen = 0;
1047   p->last_ping_time = time(NULL);
1048   
1049   if(debug_lvl >= DEBUG_CONNECTIONS)
1050     syslog(LOG_NOTICE, _("Connection from %s port %d"),
1051          p->hostname, htons(ci.sin_port));
1052
1053   p->allow_request = ID;
1054 cp
1055   return p;
1056 }
1057
1058 /*
1059   put all file descriptors in an fd_set array
1060 */
1061 void build_fdset(fd_set *fs)
1062 {
1063   rbl_t *rbl;
1064   connection_t *p;
1065 cp
1066   FD_ZERO(fs);
1067
1068   FD_SET(myself->socket, fs);
1069
1070   RBL_FOREACH(connection_tree, rbl)
1071     {
1072       p = (connection_t *)rbl->data;
1073       if(p->status.meta)
1074         FD_SET(p->meta_socket, fs);
1075     }
1076
1077   FD_SET(myself->meta_socket, fs);
1078   FD_SET(tap_fd, fs);
1079 cp
1080 }
1081
1082 /*
1083   receive incoming data from the listening
1084   udp socket and write it to the ethertap
1085   device after being decrypted
1086 */
1087 int handle_incoming_vpn_data(void)
1088 {
1089   vpn_packet_t pkt;
1090   int x, l = sizeof(x);
1091   int lenin;
1092   struct sockaddr_in from;
1093   socklen_t fromlen = sizeof(from);
1094   connection_t *cl;
1095 cp
1096   if(getsockopt(myself->socket, SOL_SOCKET, SO_ERROR, &x, &l) < 0)
1097     {
1098       syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%m"),
1099              __FILE__, __LINE__, myself->socket);
1100       return -1;
1101     }
1102   if(x)
1103     {
1104       syslog(LOG_ERR, _("Incoming data socket error: %s"), strerror(x));
1105       return -1;
1106     }
1107
1108   if((lenin = recvfrom(myself->socket, (char *) &(pkt.len), MTU, 0, (struct sockaddr *)&from, &fromlen)) <= 0)
1109     {
1110       syslog(LOG_ERR, _("Receiving packet failed: %m"));
1111       return -1;
1112     }
1113
1114   cl = lookup_connection(ntohl(from.sin_addr.s_addr), ntohs(from.sin_port));
1115   
1116   if(!cl)
1117     {
1118       syslog(LOG_WARNING, _("Received UDP packets on port %d from unknown source %lx:%d"), ntohl(from.sin_addr.s_addr), ntohs(from.sin_port));
1119       return 0;
1120     }
1121
1122   if(debug_lvl >= DEBUG_TRAFFIC)
1123     {
1124       syslog(LOG_DEBUG, _("Received packet of %d bytes from %s (%s)"), lenin,
1125              cl->name, cl->hostname);
1126     }
1127
1128 cp
1129   return xrecv(cl, &pkt);
1130 }
1131
1132 /*
1133   terminate a connection and notify the other
1134   end before closing the sockets
1135 */
1136 void terminate_connection(connection_t *cl)
1137 {
1138   connection_t *p;
1139   subnet_t *subnet;
1140   rbl_t *rbl;
1141 cp
1142   if(cl->status.remove)
1143     return;
1144
1145   cl->status.remove = 1;
1146
1147   if(debug_lvl >= DEBUG_CONNECTIONS)
1148     syslog(LOG_NOTICE, _("Closing connection with %s (%s)"),
1149            cl->name, cl->hostname);
1150  
1151   if(cl->socket)
1152     close(cl->socket);
1153   if(cl->status.meta)
1154     close(cl->meta_socket);
1155
1156   /* Find all connections that were lost because they were behind cl
1157      (the connection that was dropped). */
1158
1159   if(cl->status.meta)
1160     RBL_FOREACH(connection_tree, rbl)
1161       {
1162         p = (connection_t *)rbl->data;
1163         if(p->nexthop == cl && p != cl)
1164           terminate_connection(p);
1165       }
1166
1167   /* Inform others of termination if it was still active */
1168
1169   if(cl->status.active)
1170     RBL_FOREACH(connection_tree, rbl)
1171       {
1172         p = (connection_t *)rbl->data;
1173         if(p->status.meta && p->status.active && p!=cl)
1174           send_del_host(p, cl); /* Sounds like recursion, but p does not have a meta connection :) */
1175       }
1176
1177   /* Remove the associated subnets */
1178
1179   RBL_FOREACH(cl->subnet_tree, rbl)
1180     {
1181       subnet = (subnet_t *)rbl->data;
1182       subnet_del(subnet);
1183     }
1184
1185   /* Check if this was our outgoing connection */
1186     
1187   if(cl->status.outgoing && cl->status.active)
1188     {
1189       signal(SIGALRM, sigalrm_handler);
1190       seconds_till_retry = 5;
1191       alarm(seconds_till_retry);
1192       syslog(LOG_NOTICE, _("Trying to re-establish outgoing connection in 5 seconds"));
1193     }
1194
1195   /* Inactivate */
1196
1197   cl->status.active = 0;
1198 cp
1199 }
1200
1201 /*
1202   Check if the other end is active.
1203   If we have sent packets, but didn't receive any,
1204   then possibly the other end is dead. We send a
1205   PING request over the meta connection. If the other
1206   end does not reply in time, we consider them dead
1207   and close the connection.
1208 */
1209 void check_dead_connections(void)
1210 {
1211   time_t now;
1212   rbl_t *rbl;
1213   connection_t *cl;
1214 cp
1215   now = time(NULL);
1216
1217   RBL_FOREACH(connection_tree, rbl)
1218     {
1219       cl = (connection_t *)rbl->data;
1220       if(cl->status.active && cl->status.meta)
1221         {
1222           if(cl->last_ping_time + timeout < now)
1223             {
1224               if(cl->status.pinged)
1225                 {
1226                   if(debug_lvl >= DEBUG_PROTOCOL)
1227                     syslog(LOG_INFO, _("%s (%s) didn't respond to PING"),
1228                            cl->name, cl->hostname);
1229                   cl->status.timeout = 1;
1230                   terminate_connection(cl);
1231                 }
1232               else
1233                 {
1234                   send_ping(cl);
1235                 }
1236             }
1237         }
1238     }
1239 cp
1240 }
1241
1242 /*
1243   accept a new tcp connect and create a
1244   new connection
1245 */
1246 int handle_new_meta_connection()
1247 {
1248   connection_t *ncn;
1249   struct sockaddr client;
1250   int nfd, len = sizeof(client);
1251 cp
1252   if((nfd = accept(myself->meta_socket, &client, &len)) < 0)
1253     {
1254       syslog(LOG_ERR, _("Accepting a new connection failed: %m"));
1255       return -1;
1256     }
1257
1258   if(!(ncn = create_new_connection(nfd)))
1259     {
1260       shutdown(nfd, 2);
1261       close(nfd);
1262       syslog(LOG_NOTICE, _("Closed attempted connection"));
1263       return 0;
1264     }
1265
1266   connection_add(ncn);
1267 cp
1268   return 0;
1269 }
1270
1271 /*
1272   check all connections to see if anything
1273   happened on their sockets
1274 */
1275 void check_network_activity(fd_set *f)
1276 {
1277   connection_t *p;
1278   rbl_t *rbl;
1279 cp
1280   if(FD_ISSET(myself->socket, f))
1281     handle_incoming_vpn_data();
1282
1283   RBL_FOREACH(connection_tree, rbl)
1284     {
1285       p = (connection_t *)rbl->data;
1286
1287       if(p->status.remove)
1288         return;
1289
1290       if(p->status.meta)
1291         if(FD_ISSET(p->meta_socket, f))
1292           if(receive_meta(p) < 0)
1293             {
1294               terminate_connection(p);
1295               return;
1296             } 
1297     }
1298     
1299   if(FD_ISSET(myself->meta_socket, f))
1300     handle_new_meta_connection();
1301 cp
1302 }
1303
1304 /*
1305   read, encrypt and send data that is
1306   available through the ethertap device
1307 */
1308 void handle_tap_input(void)
1309 {
1310   vpn_packet_t vp;
1311   int lenin;
1312 cp  
1313   if(taptype == TAP_TYPE_TUNTAP)
1314     {
1315       if((lenin = read(tap_fd, vp.data, MTU)) <= 0)
1316         {
1317           syslog(LOG_ERR, _("Error while reading from tun/tap device: %m"));
1318           return;
1319         }
1320       vp.len = lenin;
1321     }
1322   else                  /* ethertap */
1323     {
1324       if((lenin = read(tap_fd, vp.data - 2, MTU)) <= 0)
1325         {
1326           syslog(LOG_ERR, _("Error while reading from ethertap device: %m"));
1327           return;
1328         }
1329       vp.len = lenin - 2;
1330     }
1331
1332   total_tap_in += lenin;
1333
1334   if(lenin < 32)
1335     {
1336       if(debug_lvl >= DEBUG_TRAFFIC)
1337         syslog(LOG_WARNING, _("Received short packet from tap device"));
1338       return;
1339     }
1340
1341   if(debug_lvl >= DEBUG_TRAFFIC)
1342     {
1343       syslog(LOG_DEBUG, _("Read packet of length %d from tap device"), vp.len);
1344     }
1345
1346   send_packet(ntohl(*((unsigned long*)(&vp.data[30]))), &vp);
1347 cp
1348 }
1349
1350 /*
1351   this is where it all happens...
1352 */
1353 void main_loop(void)
1354 {
1355   fd_set fset;
1356   struct timeval tv;
1357   int r;
1358   time_t last_ping_check;
1359   int t;
1360 cp
1361   last_ping_check = time(NULL);
1362
1363   for(;;)
1364     {
1365       tv.tv_sec = timeout;
1366       tv.tv_usec = 0;
1367
1368       prune_connection_tree();
1369       build_fdset(&fset);
1370
1371       if((r = select(FD_SETSIZE, &fset, NULL, NULL, &tv)) < 0)
1372         {
1373           if(errno != EINTR) /* because of alarm */
1374             {
1375               syslog(LOG_ERR, _("Error while waiting for input: %m"));
1376               return;
1377             }
1378         }
1379
1380       if(sighup)
1381         {
1382           syslog(LOG_INFO, _("Rereading configuration file and restarting in 5 seconds"));
1383           sighup = 0;
1384           close_network_connections();
1385           clear_config(&config);
1386
1387           if(read_server_config())
1388             {
1389               syslog(LOG_ERR, _("Unable to reread configuration file, exiting"));
1390               exit(0);
1391             }
1392
1393           sleep(5);
1394           
1395           if(setup_network_connections())
1396             return;
1397             
1398           continue;
1399         }
1400
1401       t = time(NULL);
1402
1403       /* Let's check if everybody is still alive */
1404
1405       if(last_ping_check + timeout < t)
1406         {
1407           check_dead_connections();
1408           last_ping_check = time(NULL);
1409
1410           /* Should we regenerate our key? */
1411
1412           if(keyexpires < t)
1413             {
1414               if(debug_lvl >= DEBUG_STATUS)
1415                 syslog(LOG_INFO, _("Regenerating symmetric key"));
1416                 
1417               RAND_bytes(myself->cipher_pktkey, myself->cipher_pktkeylength);
1418               send_key_changed(myself, NULL);
1419               keyexpires = time(NULL) + keylifetime;
1420             }
1421         }
1422
1423       if(r > 0)
1424         {
1425           check_network_activity(&fset);
1426
1427           /* local tap data */
1428           if(FD_ISSET(tap_fd, &fset))
1429             handle_tap_input();
1430         }
1431     }
1432 cp
1433 }