c8c41d9f9f5d53c543f291ee08e1f50863d803c1
[tinc] / src / protocol.c
1 /*
2     protocol.c -- handle the meta-protocol
3     Copyright (C) 1999-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: protocol.c,v 1.28.4.114 2001/10/30 16:34:32 guus Exp $
21 */
22
23 #include "config.h"
24
25 #include <sys/types.h>
26
27 #include <stdlib.h>
28 #include <string.h>
29 #include <syslog.h>
30 #include <sys/socket.h>
31 #include <unistd.h>
32 #include <stdio.h>
33 #include <stdarg.h>
34 #include <errno.h>
35
36 #include <utils.h>
37 #include <xalloc.h>
38 #include <avl_tree.h>
39 #include <list.h>
40
41 #include <netinet/in.h>
42
43 #include <openssl/sha.h>
44 #include <openssl/rand.h>
45 #include <openssl/evp.h>
46
47 #ifndef HAVE_RAND_PSEUDO_BYTES
48 #define RAND_pseudo_bytes RAND_bytes
49 #endif
50
51 #include "conf.h"
52 #include "net.h"
53 #include "netutl.h"
54 #include "protocol.h"
55 #include "meta.h"
56 #include "connection.h"
57 #include "node.h"
58 #include "edge.h"
59 #include "graph.h"
60
61 #include "system.h"
62
63 int mykeyused = 0;
64
65 int check_id(char *id)
66 {
67   int i;
68
69   for (i = 0; i < strlen(id); i++)
70     if(!isalnum(id[i]) && id[i] != '_')
71       return -1;
72   
73   return 0;
74 }
75
76 /* Generic request routines - takes care of logging and error
77    detection as well */
78
79 int send_request(connection_t *c, const char *format, ...)
80 {
81   va_list args;
82   char buffer[MAXBUFSIZE];
83   int len, request;
84
85 cp
86   /* Use vsnprintf instead of vasprintf: faster, no memory
87      fragmentation, cleanup is automatic, and there is a limit on the
88      input buffer anyway */
89
90   va_start(args, format);
91   len = vsnprintf(buffer, MAXBUFSIZE, format, args);
92   request = va_arg(args, int);
93   va_end(args);
94
95   if(len < 0 || len > MAXBUFSIZE-1)
96     {
97       syslog(LOG_ERR, _("Output buffer overflow while sending %s to %s (%s)"), request_name[request], c->name, c->hostname);
98       return -1;
99     }
100
101   if(debug_lvl >= DEBUG_PROTOCOL)
102     {
103       if(debug_lvl >= DEBUG_META)
104         syslog(LOG_DEBUG, _("Sending %s to %s (%s): %s"), request_name[request], c->name, c->hostname, buffer);
105       else
106         syslog(LOG_DEBUG, _("Sending %s to %s (%s)"), request_name[request], c->name, c->hostname);
107     }
108
109   buffer[len++] = '\n';
110 cp
111   return send_meta(c, buffer, len);
112 }
113
114 int receive_request(connection_t *c)
115 {
116   int request;
117 cp
118   if(sscanf(c->buffer, "%d", &request) == 1)
119     {
120       if((request < 0) || (request >= LAST) || (request_handlers[request] == NULL))
121         {
122           if(debug_lvl >= DEBUG_META)
123             syslog(LOG_DEBUG, _("Unknown request from %s (%s): %s"),
124                    c->name, c->hostname, c->buffer);
125           else
126             syslog(LOG_ERR, _("Unknown request from %s (%s)"),
127                    c->name, c->hostname);
128                    
129           return -1;
130         }
131       else
132         {
133           if(debug_lvl >= DEBUG_PROTOCOL)
134             {
135               if(debug_lvl >= DEBUG_META)
136                 syslog(LOG_DEBUG, _("Got %s from %s (%s): %s"),
137                        request_name[request], c->name, c->hostname, c->buffer);
138               else
139                 syslog(LOG_DEBUG, _("Got %s from %s (%s)"),
140                        request_name[request], c->name, c->hostname);
141             }
142         }
143
144       if((c->allow_request != ALL) && (c->allow_request != request))
145         {
146           syslog(LOG_ERR, _("Unauthorized request from %s (%s)"), c->name, c->hostname);
147           return -1;
148         }
149
150       if(request_handlers[request](c))
151         /* Something went wrong. Probably scriptkiddies. Terminate. */
152         {
153           syslog(LOG_ERR, _("Error while processing %s from %s (%s)"),
154                  request_name[request], c->name, c->hostname);
155           return -1;
156         }
157     }
158   else
159     {
160       syslog(LOG_ERR, _("Bogus data received from %s (%s)"),
161              c->name, c->hostname);
162       return -1;
163     }
164 cp
165   return 0;
166 }
167
168 /* The authentication protocol is described in detail in doc/SECURITY2,
169    the rest will be described in doc/PROTOCOL. */
170
171 int send_id(connection_t *c)
172 {
173 cp
174   return send_request(c, "%d %s %d", ID, myself->connection->name, myself->connection->protocol_version);
175 }
176
177 int id_h(connection_t *c)
178 {
179   char name[MAX_STRING_SIZE];
180 int bla;
181 cp
182   if(sscanf(c->buffer, "%*d "MAX_STRING" %d", name, &c->protocol_version) != 2)
183     {
184        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "ID", c->name, c->hostname);
185        return -1;
186     }
187
188   /* Check if identity is a valid name */
189
190   if(check_id(name))
191     {
192       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ID", c->name, c->hostname, "invalid name");
193       return -1;
194     }
195
196   /* If we set c->name in advance, make sure we are connected to the right host */
197   
198   if(c->name)
199     {
200       if(strcmp(c->name, name))
201         {
202           syslog(LOG_ERR, _("Peer %s is %s instead of %s"), c->hostname, name, c->name);
203           return -1;
204         }
205     }
206   else
207     c->name = xstrdup(name);
208
209   /* Check if version matches */
210
211   if(c->protocol_version != myself->connection->protocol_version)
212     {
213       syslog(LOG_ERR, _("Peer %s (%s) uses incompatible version %d"),
214              c->name, c->hostname, c->protocol_version);
215       return -1;
216     }
217   
218   if(bypass_security)
219     {
220       if(!c->config_tree)
221         init_configuration(&c->config_tree);
222       c->allow_request = ACK;
223       return send_ack(c);
224     }
225
226   if(!c->config_tree)
227     {
228       init_configuration(&c->config_tree);
229
230       if((bla = read_connection_config(c)))
231         {
232           syslog(LOG_ERR, _("Peer %s had unknown identity (%s)"), c->hostname, c->name);
233           return -1;
234         }
235
236       if(read_rsa_public_key(c))
237         {
238           return -1;
239         }
240     }
241
242   c->allow_request = METAKEY;
243 cp
244   return send_metakey(c);
245 }
246
247 int send_metakey(connection_t *c)
248 {
249   char *buffer;
250   int len, x;
251 cp
252   len = RSA_size(c->rsa_key);
253
254   /* Allocate buffers for the meta key */
255
256   buffer = xmalloc(len*2+1);
257
258   if(!c->outkey)
259     c->outkey = xmalloc(len);
260     
261   if(!c->outctx)
262     c->outctx = xmalloc(sizeof(*c->outctx));
263 cp
264   /* Copy random data to the buffer */
265
266   RAND_bytes(c->outkey, len);
267
268   /* The message we send must be smaller than the modulus of the RSA key.
269      By definition, for a key of k bits, the following formula holds:
270      
271        2^(k-1) <= modulus < 2^(k)
272      
273      Where ^ means "to the power of", not "xor".
274      This means that to be sure, we must choose our message < 2^(k-1).
275      This can be done by setting the most significant bit to zero.
276   */
277   
278   c->outkey[0] &= 0x7F;
279   
280   if(debug_lvl >= DEBUG_SCARY_THINGS)
281     {
282       bin2hex(c->outkey, buffer, len);
283       buffer[len*2] = '\0';
284       syslog(LOG_DEBUG, _("Generated random meta key (unencrypted): %s"), buffer);
285     }
286
287   /* Encrypt the random data
288   
289      We do not use one of the PKCS padding schemes here.
290      This is allowed, because we encrypt a totally random string
291      with a length equal to that of the modulus of the RSA key.
292   */
293   
294   if(RSA_public_encrypt(len, c->outkey, buffer, c->rsa_key, RSA_NO_PADDING) != len)
295     {
296       syslog(LOG_ERR, _("Error during encryption of meta key for %s (%s)"), c->name, c->hostname);
297       free(buffer);
298       return -1;
299     }
300 cp
301   /* Convert the encrypted random data to a hexadecimal formatted string */
302
303   bin2hex(buffer, buffer, len);
304   buffer[len*2] = '\0';
305
306   /* Send the meta key */
307
308   x = send_request(c, "%d %s", METAKEY, buffer);
309   free(buffer);
310
311   /* Further outgoing requests are encrypted with the key we just generated */
312
313   EVP_EncryptInit(c->outctx, EVP_bf_cfb(),
314                   c->outkey + len - EVP_bf_cfb()->key_len,
315                   c->outkey + len - EVP_bf_cfb()->key_len - EVP_bf_cfb()->iv_len);
316
317   c->status.encryptout = 1;
318 cp
319   return x;
320 }
321
322 int metakey_h(connection_t *c)
323 {
324   char buffer[MAX_STRING_SIZE];
325   int len;
326 cp
327   if(sscanf(c->buffer, "%*d "MAX_STRING, buffer) != 1)
328     {
329        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "METAKEY", c->name, c->hostname);
330        return -1;
331     }
332
333   len = RSA_size(myself->connection->rsa_key);
334
335   /* Check if the length of the meta key is all right */
336
337   if(strlen(buffer) != len*2)
338     {
339       syslog(LOG_ERR, _("Possible intruder %s (%s): %s"), c->name, c->hostname, "wrong keylength");
340       return -1;
341     }
342
343   /* Allocate buffers for the meta key */
344
345   if(!c->inkey)
346     c->inkey = xmalloc(len);
347
348   if(!c->inctx)
349     c->inctx = xmalloc(sizeof(*c->inctx));
350
351   /* Convert the challenge from hexadecimal back to binary */
352
353   hex2bin(buffer,buffer,len);
354
355   /* Decrypt the meta key */
356   
357   if(RSA_private_decrypt(len, buffer, c->inkey, myself->connection->rsa_key, RSA_NO_PADDING) != len)    /* See challenge() */
358     {
359       syslog(LOG_ERR, _("Error during encryption of meta key for %s (%s)"), c->name, c->hostname);
360       return -1;
361     }
362
363   if(debug_lvl >= DEBUG_SCARY_THINGS)
364     {
365       bin2hex(c->inkey, buffer, len);
366       buffer[len*2] = '\0';
367       syslog(LOG_DEBUG, _("Received random meta key (unencrypted): %s"), buffer);
368     }
369
370   /* All incoming requests will now be encrypted. */
371
372   EVP_DecryptInit(c->inctx, EVP_bf_cfb(),
373                   c->inkey + len - EVP_bf_cfb()->key_len,
374                   c->inkey + len - EVP_bf_cfb()->key_len - EVP_bf_cfb()->iv_len);
375   
376   c->status.decryptin = 1;
377
378   c->allow_request = CHALLENGE;
379 cp
380   return send_challenge(c);
381 }
382
383 int send_challenge(connection_t *c)
384 {
385   char *buffer;
386   int len, x;
387 cp
388   /* CHECKME: what is most reasonable value for len? */
389
390   len = RSA_size(c->rsa_key);
391
392   /* Allocate buffers for the challenge */
393
394   buffer = xmalloc(len*2+1);
395
396   if(c->hischallenge)
397     free(c->hischallenge);
398     
399   c->hischallenge = xmalloc(len);
400 cp
401   /* Copy random data to the buffer */
402
403   RAND_bytes(c->hischallenge, len);
404
405 cp
406   /* Convert to hex */
407
408   bin2hex(c->hischallenge, buffer, len);
409   buffer[len*2] = '\0';
410
411 cp
412   /* Send the challenge */
413
414   x = send_request(c, "%d %s", CHALLENGE, buffer);
415   free(buffer);
416 cp
417   return x;
418 }
419
420 int challenge_h(connection_t *c)
421 {
422   char buffer[MAX_STRING_SIZE];
423   int len;
424 cp
425   if(sscanf(c->buffer, "%*d "MAX_STRING, buffer) != 1)
426     {
427        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "CHALLENGE", c->name, c->hostname);
428        return -1;
429     }
430
431   len = RSA_size(myself->connection->rsa_key);
432
433   /* Check if the length of the challenge is all right */
434
435   if(strlen(buffer) != len*2)
436     {
437       syslog(LOG_ERR, _("Possible intruder %s (%s): %s"), c->name, c->hostname, "wrong challenge length");
438       return -1;
439     }
440
441   /* Allocate buffers for the challenge */
442
443   if(!c->mychallenge)
444     c->mychallenge = xmalloc(len);
445
446   /* Convert the challenge from hexadecimal back to binary */
447
448   hex2bin(buffer,c->mychallenge,len);
449
450   c->allow_request = CHAL_REPLY;
451
452   /* Rest is done by send_chal_reply() */
453 cp
454   return send_chal_reply(c);
455 }
456
457 int send_chal_reply(connection_t *c)
458 {
459   char hash[SHA_DIGEST_LENGTH*2+1];
460 cp
461   /* Calculate the hash from the challenge we received */
462
463   SHA1(c->mychallenge, RSA_size(myself->connection->rsa_key), hash);
464
465   /* Convert the hash to a hexadecimal formatted string */
466
467   bin2hex(hash,hash,SHA_DIGEST_LENGTH);
468   hash[SHA_DIGEST_LENGTH*2] = '\0';
469
470   /* Send the reply */
471
472 cp
473   return send_request(c, "%d %s", CHAL_REPLY, hash);
474 }
475
476 int chal_reply_h(connection_t *c)
477 {
478   char hishash[MAX_STRING_SIZE];
479   char myhash[SHA_DIGEST_LENGTH];
480 cp
481   if(sscanf(c->buffer, "%*d "MAX_STRING, hishash) != 1)
482     {
483        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "CHAL_REPLY", c->name, c->hostname);
484        return -1;
485     }
486
487   /* Check if the length of the hash is all right */
488
489   if(strlen(hishash) != SHA_DIGEST_LENGTH*2)
490     {
491       syslog(LOG_ERR, _("Possible intruder %s (%s): %s"), c->name, c->hostname, _("wrong challenge reply length"));
492       return -1;
493     }
494
495   /* Convert the hash to binary format */
496
497   hex2bin(hishash, hishash, SHA_DIGEST_LENGTH);
498
499   /* Calculate the hash from the challenge we sent */
500
501   SHA1(c->hischallenge, RSA_size(c->rsa_key), myhash);
502
503   /* Verify the incoming hash with the calculated hash */
504
505   if(memcmp(hishash, myhash, SHA_DIGEST_LENGTH))
506     {
507       syslog(LOG_ERR, _("Possible intruder %s (%s): %s"), c->name, c->hostname, _("wrong challenge reply"));
508       if(debug_lvl >= DEBUG_SCARY_THINGS)
509         {
510           bin2hex(myhash, hishash, SHA_DIGEST_LENGTH);
511           hishash[SHA_DIGEST_LENGTH*2] = '\0';
512           syslog(LOG_DEBUG, _("Expected challenge reply: %s"), hishash);
513         }
514       return -1;
515     }
516
517   /* Identity has now been positively verified.
518      Send an acknowledgement with the rest of the information needed.
519    */
520
521   c->allow_request = ACK;
522 cp
523   return send_ack(c);
524 }
525
526 int send_ack(connection_t *c)
527 {
528   /* ACK message contains rest of the information the other end needs
529      to create node_t and edge_t structures. */
530
531   struct timeval now;
532
533   /* Estimate weight */
534   
535   gettimeofday(&now, NULL);
536   c->estimated_weight = (now.tv_sec - c->start.tv_sec) * 1000 + (now.tv_usec - c->start.tv_usec) / 1000;
537 cp
538   return send_request(c, "%d %hd %d", ACK, myself->port, c->estimated_weight);
539 }
540
541 int ack_h(connection_t *c)
542 {
543   port_t port;
544   int weight;
545   node_t *n;
546   subnet_t *s;
547   edge_t *e;
548   connection_t *other;
549   avl_node_t *node, *node2;
550 cp
551   if(sscanf(c->buffer, "%*d %hd %d", &port, &weight) != 2)
552     {
553        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "ACK", c->name, c->hostname);
554        return -1;
555     }
556
557   /* Check if we already have a node_t for him */
558
559   n = lookup_node(c->name);
560   
561   if(!n)
562     {
563       n = new_node();
564       n->name = xstrdup(c->name);
565       n->address = c->address;
566       n->hostname = xstrdup(c->hostname);
567       n->port = port;
568
569       /* FIXME: Also check if no other tinc daemon uses the same IP and port for UDP traffic */
570
571       node_add(n);
572     }
573   else
574     {
575       if(n->connection)
576         {
577           /* Oh dear, we already have a connection to this node. */
578           syslog(LOG_DEBUG, _("Established a second connection with %s (%s), closing old connection"), n->name, n->hostname);
579           terminate_connection(n->connection, 0);
580         }
581           
582       /* FIXME: check if information in existing node matches that of the other end of this connection */
583     }
584   
585   n->connection = c;
586   c->node = n;
587   
588   /* Check some options
589   
590   if((cfg = get_config_val(c->config, config_indirectdata)))
591     {
592       if(cfg->data.val == stupid_true)
593         c->options |= OPTION_INDIRECT;
594     }
595
596   if((cfg = get_config_val(c->config, config_tcponly)))
597     {
598       if(cfg->data.val == stupid_true)
599         c->options |= OPTION_TCPONLY;
600     }
601
602   if((myself->options | c->options) & OPTION_INDIRECT)
603     c->via = myself;
604   else
605     c->via = c;
606
607   */
608
609   /* Create an edge_t for this connection */
610
611   c->edge = new_edge();
612   
613   c->edge->from = myself;
614   c->edge->to = n;
615   c->edge->weight = (weight + c->estimated_weight) / 2;
616   c->edge->connection = c;
617
618   edge_add(c->edge);
619
620   /* Activate this connection */
621
622   c->allow_request = ALL;
623   c->status.active = 1;
624   c->node->cipher = EVP_bf_cbc();
625   c->node->keylength = c->node->cipher->key_len + c->node->cipher->iv_len;
626
627   if(debug_lvl >= DEBUG_CONNECTIONS)
628     syslog(LOG_NOTICE, _("Connection with %s (%s) activated"), c->name, c->hostname);
629
630 cp
631   /* Send him our subnets */
632   
633   for(node = myself->subnet_tree->head; node; node = node->next)
634     {
635       s = (subnet_t *)node->data;
636       send_add_subnet(c, s);
637     }
638
639   /* And send him all known nodes and their subnets */
640   
641   for(node = node_tree->head; node; node = node->next)
642     {
643       n = (node_t *)node->data;
644
645       if(n == c->node || n == myself)
646         continue;
647
648       send_add_node(c, n);
649
650       for(node2 = c->node->subnet_tree->head; node2; node2 = node2->next)
651         {
652           s = (subnet_t *)node2->data;
653           send_add_subnet(c, s);
654         }
655     }
656
657   /* Send all known edges */
658
659   for(node = edge_tree->head; node; node = node->next)
660     {
661       e = (edge_t *)node->data;
662
663       if(e == c->edge)
664         continue;
665
666       send_add_edge(c, e);
667     }
668
669   /* Notify others of this connection */
670
671   for(node = connection_tree->head; node; node = node->next)
672     {
673       other = (connection_t *)node->data;
674
675       if(other == c)
676         continue;
677       
678       send_add_node(other, c->node);
679       send_add_edge(other, c->edge);
680     }
681
682   /* Run MST and SSSP algorithms */
683   
684   mst_kruskal();
685   sssp_bfs();
686 cp
687   return 0;
688 }
689
690
691
692 /* Address and subnet information exchange */
693
694 int send_add_subnet(connection_t *c, subnet_t *subnet)
695 {
696   int x;
697   char *netstr;
698 cp
699   x = send_request(c, "%d %s %s", ADD_SUBNET,
700                       subnet->owner->name, netstr = net2str(subnet));
701   free(netstr);
702 cp
703   return x;
704 }
705
706 int add_subnet_h(connection_t *c)
707 {
708   char subnetstr[MAX_STRING_SIZE];
709   char name[MAX_STRING_SIZE];
710   node_t *owner;
711   connection_t *other;
712   subnet_t *s;
713   avl_node_t *node;
714 cp
715   if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING, name, subnetstr) != 2)
716     {
717       syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "ADD_SUBNET", c->name, c->hostname);
718       return -1;
719     }
720
721   /* Check if owner name is a valid */
722
723   if(check_id(name))
724     {
725       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_SUBNET", c->name, c->hostname, _("invalid name"));
726       return -1;
727     }
728
729   /* Check if subnet string is valid */
730
731   if(!(s = str2net(subnetstr)))
732     {
733       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_SUBNET", c->name, c->hostname, _("invalid subnet string"));
734       return -1;
735     }
736
737   /* Check if the owner of the new subnet is in the connection list */
738
739   if(!(owner = lookup_node(name)))
740     {
741       syslog(LOG_ERR, _("Got ADD_SUBNET from %s (%s) for %s which is not in our connection list"),
742              name, c->name, c->hostname);
743       return -1;
744     }
745
746   /* If everything is correct, add the subnet to the list of the owner */
747
748   subnet_add(owner, s);
749
750   /* Tell the rest */
751   
752   for(node = connection_tree->head; node; node = node->next)
753     {
754       other = (connection_t *)node->data;
755       if(other->status.active && other != c)
756         send_add_subnet(other, s);
757     }
758 cp
759   return 0;
760 }
761
762 int send_del_subnet(connection_t *c, subnet_t *s)
763 {
764   int x;
765   char *netstr;
766 cp
767   x = send_request(c, "%d %s %s", DEL_SUBNET, s->owner->name, netstr = net2str(s));
768   free(netstr);
769 cp
770   return x;
771 }
772
773 int del_subnet_h(connection_t *c)
774 {
775   char subnetstr[MAX_STRING_SIZE];
776   char name[MAX_STRING_SIZE];
777   node_t *owner;
778   connection_t *other;
779   subnet_t *s, *find;
780   avl_node_t *node;
781 cp
782   if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING, name, subnetstr) != 3)
783     {
784       syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "DEL_SUBNET", c->name, c->hostname);
785       return -1;
786     }
787
788   /* Check if owner name is a valid */
789
790   if(check_id(name))
791     {
792       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_SUBNET", c->name, c->hostname, _("invalid name"));
793       return -1;
794     }
795
796   /* Check if subnet string is valid */
797
798   if(!(s = str2net(subnetstr)))
799     {
800       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_SUBNET", c->name, c->hostname, _("invalid subnet string"));
801       return -1;
802     }
803
804   /* Check if the owner of the new subnet is in the connection list */
805
806   if(!(owner = lookup_node(name)))
807     {
808       syslog(LOG_ERR, _("Got %s from %s (%s) for %s which is not in our connection list"),
809              "DEL_SUBNET", c->name, c->hostname, name);
810       return -1;
811     }
812
813   /* If everything is correct, delete the subnet from the list of the owner */
814
815   find = lookup_subnet(owner, s);
816   
817   if(!find)
818     {
819       syslog(LOG_ERR, _("Got %s from %s (%s) for %s which does not appear in his subnet tree"),
820              "DEL_SUBNET", c->name, c->hostname, name);
821       return -1;
822     }
823   
824   subnet_del(owner, s);
825
826   /* Tell the rest */
827   
828   for(node = connection_tree->head; node; node = node->next)
829     {
830       other = (connection_t *)node->data;
831       if(other->status.active && other != c)
832         send_del_subnet(other, s);
833     }
834 cp
835   return 0;
836 }
837
838 /* New and closed connections notification */
839
840 int send_add_node(connection_t *c, node_t *n)
841 {
842 cp
843   return send_request(c, "%d %s %lx:%d", ADD_NODE,
844                       n->name, n->address, n->port);
845 }
846
847 int add_node_h(connection_t *c)
848 {
849   connection_t *other;
850   node_t *n;
851   char name[MAX_STRING_SIZE];
852   ipv4_t address;
853   port_t port;
854   avl_node_t *node;
855 cp
856   if(sscanf(c->buffer, "%*d "MAX_STRING" %lx:%hd", name, &address, &port) != 3)
857     {
858        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "ADD_NODE", c->name, c->hostname);
859        return -1;
860     }
861
862   /* Check if identity is a valid name */
863
864   if(check_id(name))
865     {
866       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_NODE", c->name, c->hostname, _("invalid name"));
867       return -1;
868     }
869
870   /* Check if node already exists */
871   
872   n = lookup_node(name);
873   
874   if(n)
875     {
876       /* Check if it matches */
877
878       if(n->address != address || n->port != port)
879         syslog(LOG_DEBUG, _("Got %s from %s (%s) for %s which does not match existing entry"), "ADD_NODE", c->name, c->hostname, n->name);
880
881       return 0;
882     }
883   else
884     {
885       n = new_node();
886       n->name = xstrdup(name);
887       n->address = address;
888       n->port = port;
889       node_add(n);
890     }
891
892   /* Tell the rest about the new node */
893
894   for(node = connection_tree->head; node; node = node->next)
895     {
896       other = (connection_t *)node->data;
897       if(other->status.active && other !=c)
898         send_add_node(other, n);
899     }
900
901 cp
902   return 0;
903 }
904
905 int send_del_node(connection_t *c, node_t *n)
906 {
907 cp
908   return send_request(c, "%d %s %lx:%d", DEL_NODE,
909                       n->name, n->address, n->port);
910 }
911
912 int del_node_h(connection_t *c)
913 {
914   node_t *n;
915   edge_t *e;
916   char name[MAX_STRING_SIZE];
917   ipv4_t address;
918   port_t port;
919   connection_t *other;
920   avl_node_t *node, *next;
921 cp
922   if(sscanf(c->buffer, "%*d "MAX_STRING" %lx:%hd", name, &address, &port) != 3)
923     {
924       syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "DEL_NODE",
925              c->name, c->hostname);
926       return -1;
927     }
928
929   /* Check if identity is a valid name */
930
931   if(check_id(name))
932     {
933       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_NODE", c->name, c->hostname, _("invalid name"));
934       return -1;
935     }
936
937   /* Check if somebody tries to delete ourself */
938
939   if(!strcmp(name, myself->name))
940     {
941       syslog(LOG_ERR, _("Got %s from %s (%s) for ourself!"), "DEL_NODE",
942              c->name, c->hostname);
943       return -1;
944     }
945
946   /* Check if the deleted host exists */
947
948   n = lookup_node(name);
949
950   if(!n)
951     {
952       syslog(LOG_WARNING, _("Got %s from %s (%s) for %s which does not exist"), "DEL_NODE", c->name, c->hostname, n->name);
953       return 0;
954     }
955   
956   /* Check if the rest matches */
957   
958   if(address != n->address || port != n->port)
959     {
960       syslog(LOG_WARNING, _("Got %s from %s (%s) for %s which does not match existing entry"), "DEL_NODE", c->name, c->hostname, n->name);
961     }
962
963   /* Tell the rest about the deleted node */
964
965   for(node = connection_tree->head; node; node = node->next)
966     {
967       other = (connection_t *)node->data;
968       if(other->status.active && other != c)
969         send_del_node(other, n);
970     }
971
972   /* Delete all edges associated with the node */
973
974   for(node = n->edge_tree->head; node; node = next)
975     {
976       next = node->next;
977       e = (edge_t *)node->data;
978       edge_del(e);
979     }
980
981   /* Delete the node */
982   
983   node_del(n);
984
985   mst_kruskal();
986   sssp_bfs();
987 cp
988   return 0;
989 }
990
991 /* Edges */
992
993 int send_add_edge(connection_t *c, edge_t *e)
994 {
995 cp
996   return send_request(c, "%d %s %s %lx %d", ADD_NODE,
997                       e->from->name, e->to->name, e->options, e->weight);
998 }
999
1000 int add_edge_h(connection_t *c)
1001 {
1002   connection_t *other;
1003   edge_t *e;
1004   node_t *from, *to;
1005   char from_name[MAX_STRING_SIZE];
1006   char to_name[MAX_STRING_SIZE];
1007   long int options;
1008   int weight;
1009   avl_node_t *node;
1010 cp
1011   if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING" %lx %d", from_name, to_name, &options, &weight) != 4)
1012     {
1013        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "ADD_EDGE", c->name, c->hostname);
1014        return -1;
1015     }
1016
1017   /* Check if names are valid */
1018
1019   if(check_id(from_name))
1020     {
1021       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_EDGE", c->name, c->hostname, _("invalid name"));
1022       return -1;
1023     }
1024
1025   if(check_id(to_name))
1026     {
1027       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_EDGE", c->name, c->hostname, _("invalid name"));
1028       return -1;
1029     }
1030
1031   /* Lookup nodes */
1032
1033   from = lookup_node(from_name);
1034   
1035   if(!from)
1036     {
1037       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_EDGE", c->name, c->hostname, _("unknown node"));
1038       return -1;
1039     }
1040
1041   to = lookup_node(to_name);
1042   
1043   if(!to)
1044     {
1045       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_EDGE", c->name, c->hostname, _("unknown node"));
1046       return -1;
1047     }
1048
1049   /* Check if edge already exists */
1050   
1051   e = lookup_edge(from, to);
1052   
1053   if(e)
1054     {
1055       if(e->weight != weight || e->options != options)
1056         {
1057           syslog(LOG_ERR, _("Got %s from %s (%s) which does not match existing entry"), "ADD_EDGE", c->name, c->hostname);
1058           return -1;
1059         }
1060       
1061       return 0;
1062     }
1063   else
1064     {
1065       e = new_edge();
1066       e->from = from;
1067       e->to = to;
1068       e->options = options;
1069       e->weight = weight;
1070       edge_add(e);
1071     }
1072
1073   /* Tell the rest about the new edge */
1074
1075   for(node = connection_tree->head; node; node = node->next)
1076     {
1077       other = (connection_t *)node->data;
1078       if(other->status.active && other != c)
1079         send_add_edge(other, e);
1080     }
1081
1082   /* Run MST before or after we tell the rest? */
1083
1084   mst_kruskal();
1085   sssp_bfs();
1086 cp
1087   return 0;
1088 }
1089
1090 int send_del_edge(connection_t *c, edge_t *e)
1091 {
1092 cp
1093   return send_request(c, "%d %s %s %lx %d", DEL_EDGE,
1094                       e->from->name, e->to->name, e->options, e->weight);
1095 }
1096
1097 int del_edge_h(connection_t *c)
1098 {
1099   edge_t *e;
1100   char from_name[MAX_STRING_SIZE];
1101   char to_name[MAX_STRING_SIZE];
1102   node_t *from, *to;
1103   long int options;
1104   int weight;
1105   connection_t *other;
1106   avl_node_t *node;
1107 cp
1108   if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING" %lx %d", from_name, to_name, &options, &weight) != 4)
1109     {
1110       syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "DEL_EDGE",
1111              c->name, c->hostname);
1112       return -1;
1113     }
1114
1115   /* Check if names are valid */
1116
1117   if(check_id(from_name))
1118     {
1119       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_EDGE", c->name, c->hostname, _("invalid name"));
1120       return -1;
1121     }
1122
1123   if(check_id(to_name))
1124     {
1125       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_EDGE", c->name, c->hostname, _("invalid name"));
1126       return -1;
1127     }
1128
1129   /* Lookup nodes */
1130
1131   from = lookup_node(from_name);
1132   
1133   if(!from)
1134     {
1135       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_EDGE", c->name, c->hostname, _("unknown node"));
1136       return -1;
1137     }
1138
1139   to = lookup_node(to_name);
1140   
1141   if(!to)
1142     {
1143       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_EDGE", c->name, c->hostname, _("unknown node"));
1144       return -1;
1145     }
1146
1147   /* Check if edge exists */
1148   
1149   e = lookup_edge(from, to);
1150   
1151   if(e)
1152     {
1153       if(e->weight != weight || e->options != options)
1154         {
1155           syslog(LOG_ERR, _("Got %s from %s (%s) which does not match existing entry"), "ADD_EDGE", c->name, c->hostname);
1156           return -1;
1157         }
1158     }
1159   else
1160     {
1161       syslog(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_EDGE", c->name, c->hostname, _("unknown edge"));
1162       return -1;
1163     }
1164
1165   /* Tell the rest about the deleted edge */
1166
1167   for(node = connection_tree->head; node; node = node->next)
1168     {
1169       other = (connection_t *)node->data;
1170       if(other->status.active && other != c)
1171         send_del_edge(other, e);
1172     }
1173
1174   /* Delete the edge */
1175   
1176   edge_del(e);
1177
1178   /* Run MST before or after we tell the rest? */
1179
1180   mst_kruskal();
1181   sssp_bfs();
1182 cp
1183   return 0;
1184 }
1185
1186
1187 /* Status and error notification routines */
1188
1189 int send_status(connection_t *c, int statusno, char *statusstring)
1190 {
1191 cp
1192   if(!statusstring)
1193     statusstring = status_text[statusno];
1194 cp
1195   return send_request(c, "%d %d %s", STATUS, statusno, statusstring);
1196 }
1197
1198 int status_h(connection_t *c)
1199 {
1200   int statusno;
1201   char statusstring[MAX_STRING_SIZE];
1202 cp
1203   if(sscanf(c->buffer, "%*d %d "MAX_STRING, &statusno, statusstring) != 2)
1204     {
1205        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "STATUS",
1206               c->name, c->hostname);
1207        return -1;
1208     }
1209
1210   if(debug_lvl >= DEBUG_STATUS)
1211     {
1212       syslog(LOG_NOTICE, _("Status message from %s (%s): %s: %s"),
1213              c->name, c->hostname, status_text[statusno], statusstring);
1214     }
1215
1216 cp
1217   return 0;
1218 }
1219
1220 int send_error(connection_t *c, int err, char *errstring)
1221 {
1222 cp
1223   if(!errstring)
1224     errstring = strerror(err);
1225   return send_request(c, "%d %d %s", ERROR, err, errstring);
1226 }
1227
1228 int error_h(connection_t *c)
1229 {
1230   int err;
1231   char errorstring[MAX_STRING_SIZE];
1232 cp
1233   if(sscanf(c->buffer, "%*d %d "MAX_STRING, &err, errorstring) != 2)
1234     {
1235        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "ERROR",
1236               c->name, c->hostname);
1237        return -1;
1238     }
1239
1240   if(debug_lvl >= DEBUG_ERROR)
1241     {
1242       syslog(LOG_NOTICE, _("Error message from %s (%s): %s: %s"),
1243              c->name, c->hostname, strerror(err), errorstring);
1244     }
1245
1246   terminate_connection(c, c->status.active);
1247 cp
1248   return 0;
1249 }
1250
1251 int send_termreq(connection_t *c)
1252 {
1253 cp
1254   return send_request(c, "%d", TERMREQ);
1255 }
1256
1257 int termreq_h(connection_t *c)
1258 {
1259 cp
1260   terminate_connection(c, c->status.active);
1261 cp
1262   return 0;
1263 }
1264
1265 int send_ping(connection_t *c)
1266 {
1267   char salt[SALTLEN*2+1];
1268 cp
1269   c->status.pinged = 1;
1270   c->last_ping_time = time(NULL);
1271   RAND_pseudo_bytes(salt, SALTLEN);
1272   bin2hex(salt, salt, SALTLEN);
1273   salt[SALTLEN*2] = '\0';
1274 cp
1275   return send_request(c, "%d %s", PING, salt);
1276 }
1277
1278 int ping_h(connection_t *c)
1279 {
1280 cp
1281   return send_pong(c);
1282 }
1283
1284 int send_pong(connection_t *c)
1285 {
1286   char salt[SALTLEN*2+1];
1287 cp
1288   RAND_pseudo_bytes(salt, SALTLEN);
1289   bin2hex(salt, salt, SALTLEN);
1290   salt[SALTLEN*2] = '\0';
1291 cp
1292   return send_request(c, "%d %s", PONG, salt);
1293 }
1294
1295 int pong_h(connection_t *c)
1296 {
1297 cp
1298   c->status.pinged = 0;
1299 cp
1300   return 0;
1301 }
1302
1303 /* Key exchange */
1304
1305 int send_key_changed(connection_t *c, node_t *n)
1306 {
1307   connection_t *other;
1308   avl_node_t *node;
1309 cp
1310   /* Only send this message if some other daemon requested our key previously.
1311      This reduces unnecessary key_changed broadcasts.
1312   */
1313
1314   if(n == myself && !mykeyused)
1315     return 0;
1316
1317   for(node = connection_tree->head; node; node = node->next)
1318     {
1319       other = (connection_t *)node->data;
1320       if(other != c && other->status.active)
1321         send_request(other, "%d %s", KEY_CHANGED, n->name);
1322     }
1323 cp
1324   return 0;
1325 }
1326
1327 int key_changed_h(connection_t *c)
1328 {
1329   char name[MAX_STRING_SIZE];
1330   node_t *n;
1331 cp
1332   if(sscanf(c->buffer, "%*d "MAX_STRING, name) != 1)
1333     {
1334       syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "KEY_CHANGED",
1335              c->name, c->hostname);
1336       return -1;
1337     }
1338
1339   n = lookup_node(name);
1340
1341   if(!n)
1342     {
1343       syslog(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist"), "KEY_CHANGED",
1344              c->name, c->hostname, name);
1345       return -1;
1346     }
1347
1348   n->status.validkey = 0;
1349   n->status.waitingforkey = 0;
1350
1351   send_key_changed(c, n);
1352 cp
1353   return 0;
1354 }
1355
1356 int send_req_key(connection_t *c, node_t *from, node_t *to)
1357 {
1358 cp
1359   return send_request(c, "%d %s %s", REQ_KEY,
1360                       from->name, to->name);
1361 }
1362
1363 int req_key_h(connection_t *c)
1364 {
1365   char from_name[MAX_STRING_SIZE];
1366   char to_name[MAX_STRING_SIZE];
1367   node_t *from, *to;
1368   char key[MAX_STRING_SIZE];
1369 cp
1370   if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING, from_name, to_name) != 2)
1371     {
1372        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "REQ_KEY",
1373               c->name, c->hostname);
1374        return -1;
1375     }
1376
1377   from = lookup_node(from_name);
1378
1379   if(!from)
1380     {
1381       syslog(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist in our connection list"), "REQ_KEY",
1382              c->name, c->hostname, from_name);
1383       return -1;
1384     }
1385
1386   to = lookup_node(to_name);
1387   
1388   if(!to)
1389     {
1390       syslog(LOG_ERR, _("Got %s from %s (%s) destination %s which does not exist in our connection list"), "REQ_KEY",
1391              c->name, c->hostname, to_name);
1392       return -1;
1393     }
1394
1395   /* Check if this key request is for us */
1396
1397   if(to == myself)      /* Yes, send our own key back */
1398     {
1399       bin2hex(myself->key, key, myself->keylength);
1400       key[myself->keylength * 2] = '\0';
1401       send_ans_key(c, myself, from, key);
1402       mykeyused = 1;
1403     }
1404   else
1405     {
1406       if(to->status.validkey)   /* Proxy keys */
1407         {
1408           bin2hex(to->key, key, to->keylength);
1409           key[to->keylength * 2] = '\0';
1410           send_ans_key(c, to, from, key);
1411         }
1412       else
1413         send_req_key(to->nexthop->connection, from, to);
1414     }
1415
1416 cp
1417   return 0;
1418 }
1419
1420 int send_ans_key(connection_t *c, node_t *from, node_t *to, char *key)
1421 {
1422 cp
1423   return send_request(c, "%d %s %s %s", ANS_KEY,
1424                       from->name, to->name, key);
1425 }
1426
1427 int ans_key_h(connection_t *c)
1428 {
1429   char from_name[MAX_STRING_SIZE];
1430   char to_name[MAX_STRING_SIZE];
1431   char key[MAX_STRING_SIZE];
1432   int keylength;
1433   node_t *from, *to;
1434 cp
1435   if(sscanf(c->buffer, "%*d "MAX_STRING" "MAX_STRING" "MAX_STRING, from_name, to_name, key) != 3)
1436     {
1437        syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "ANS_KEY",
1438               c->name, c->hostname);
1439        return -1;
1440     }
1441
1442   from = lookup_node(from_name);
1443
1444   if(!from)
1445     {
1446       syslog(LOG_ERR, _("Got %s from %s (%s) origin %s which does not exist in our connection list"), "ANS_KEY",
1447              c->name, c->hostname, from_name);
1448       return -1;
1449     }
1450
1451   to = lookup_node(to_name);
1452
1453   if(!to)
1454     {
1455       syslog(LOG_ERR, _("Got %s from %s (%s) destination %s which does not exist in our connection list"), "ANS_KEY",
1456              c->name, c->hostname, to_name);
1457       return -1;
1458     }
1459
1460   /* Check correctness of packet key */
1461
1462   keylength = strlen(key);
1463
1464   if(keylength != from->keylength * 2)
1465     {
1466       syslog(LOG_ERR, _("Got bad %s from %s (%s) origin %s: %s"), "ANS_KEY",
1467              c->name, c->hostname, from->name, _("invalid key length"));
1468       return -1;
1469     }
1470
1471   /* Forward it if necessary */
1472
1473   if(to != myself)
1474     {
1475       send_ans_key(to->nexthop->connection, from, to, key);
1476     }
1477
1478   /* Update our copy of the origin's packet key */
1479
1480   if(from->key)
1481     free(from->key);
1482
1483   from->key = xstrdup(key);
1484   keylength /= 2;
1485   hex2bin(from->key, from->key, keylength);
1486   from->key[keylength] = '\0';
1487
1488   from->status.validkey = 1;
1489   from->status.waitingforkey = 0;
1490   
1491   flush_queue(from);
1492 cp
1493   return 0;
1494 }
1495
1496 int send_tcppacket(connection_t *c, vpn_packet_t *packet)
1497 {
1498   int x;
1499 cp  
1500   /* Evil hack. */
1501
1502   x = send_request(c, "%d %hd", PACKET, packet->len);
1503
1504   if(x)
1505     return x;
1506 cp
1507   return send_meta(c, packet->data, packet->len);
1508 }
1509
1510 int tcppacket_h(connection_t *c)
1511 {
1512   short int len;
1513 cp  
1514   if(sscanf(c->buffer, "%*d %hd", &len) != 1)
1515     {
1516       syslog(LOG_ERR, _("Got bad %s from %s (%s)"), "PACKET", c->name, c->hostname);
1517       return -1;
1518     }
1519
1520   /* Set reqlen to len, this will tell receive_meta() that a tcppacket is coming. */
1521
1522   c->tcplen = len;
1523 cp
1524   return 0;
1525 }
1526
1527 /* Jumptable for the request handlers */
1528
1529 int (*request_handlers[])(connection_t*) = {
1530   id_h, metakey_h, challenge_h, chal_reply_h, ack_h,
1531   status_h, error_h, termreq_h,
1532   ping_h, pong_h,
1533   add_node_h, del_node_h,
1534   add_subnet_h, del_subnet_h,
1535   add_edge_h, del_edge_h,
1536   key_changed_h, req_key_h, ans_key_h,
1537   tcppacket_h,
1538 };
1539
1540 /* Request names */
1541
1542 char (*request_name[]) = {
1543   "ID", "METAKEY", "CHALLENGE", "CHAL_REPLY", "ACK",
1544   "STATUS", "ERROR", "TERMREQ",
1545   "PING", "PONG",
1546   "ADD_NODE", "DEL_NODE",
1547   "ADD_SUBNET", "DEL_SUBNET",
1548   "ADD_EDGE", "DEL_EDGE",
1549   "KEY_CHANGED", "REQ_KEY", "ANS_KEY",
1550   "PACKET",
1551 };
1552
1553 /* Status strings */
1554
1555 char (*status_text[]) = {
1556   "Warning",
1557 };
1558
1559 /* Error strings */
1560
1561 char (*error_text[]) = {
1562   "Error",
1563 };