refactor DHT for new service API
[oweals/gnunet.git] / src / cadet / gnunet-service-cadet_tunnel.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2013 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 #include "platform.h"
22 #include "gnunet_util_lib.h"
23
24 #include "gnunet_signatures.h"
25 #include "gnunet_statistics_service.h"
26
27 #include "cadet_protocol.h"
28 #include "cadet_path.h"
29
30 #include "gnunet-service-cadet_tunnel.h"
31 #include "gnunet-service-cadet_connection.h"
32 #include "gnunet-service-cadet_channel.h"
33 #include "gnunet-service-cadet_peer.h"
34
35 #define LOG(level, ...) GNUNET_log_from(level,"cadet-tun",__VA_ARGS__)
36 #define LOG2(level, ...) GNUNET_log_from_nocheck(level,"cadet-tun",__VA_ARGS__)
37
38 #define REKEY_WAIT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 5)
39
40 #if !defined(GNUNET_CULL_LOGGING)
41 #define DUMP_KEYS_TO_STDERR GNUNET_YES
42 #else
43 #define DUMP_KEYS_TO_STDERR GNUNET_YES
44 #endif
45
46 #define MIN_TUNNEL_BUFFER       8
47 #define MAX_TUNNEL_BUFFER       64
48 #define MAX_SKIPPED_KEYS        64
49 #define MAX_KEY_GAP             256
50 #define AX_HEADER_SIZE (sizeof (uint32_t) * 2\
51                         + sizeof (struct GNUNET_CRYPTO_EcdhePublicKey))
52
53
54 /******************************************************************************/
55 /********************************   STRUCTS  **********************************/
56 /******************************************************************************/
57
58 struct CadetTChannel
59 {
60   struct CadetTChannel *next;
61   struct CadetTChannel *prev;
62   struct CadetChannel *ch;
63 };
64
65
66 /**
67  * Connection list and metadata.
68  */
69 struct CadetTConnection
70 {
71   /**
72    * Next in DLL.
73    */
74   struct CadetTConnection *next;
75
76   /**
77    * Prev in DLL.
78    */
79   struct CadetTConnection *prev;
80
81   /**
82    * Connection handle.
83    */
84   struct CadetConnection *c;
85
86   /**
87    * Creation time, to keep oldest connection alive.
88    */
89   struct GNUNET_TIME_Absolute created;
90
91   /**
92    * Connection throughput, to keep fastest connection alive.
93    */
94   uint32_t throughput;
95 };
96
97
98 /**
99  * Encryption systems possible.
100  */
101 enum CadetTunnelEncryption
102 {
103   /**
104    * Default Axolotl system.
105    */
106   CADET_Axolotl
107
108 };
109
110 /**
111  * Struct to old keys for skipped messages while advancing the Axolotl ratchet.
112  */
113 struct CadetTunnelSkippedKey
114 {
115   /**
116    * DLL next.
117    */
118   struct CadetTunnelSkippedKey *next;
119
120   /**
121    * DLL prev.
122    */
123   struct CadetTunnelSkippedKey *prev;
124
125   /**
126    * When was this key stored (for timeout).
127    */
128   struct GNUNET_TIME_Absolute timestamp;
129
130   /**
131    * Header key.
132    */
133   struct GNUNET_CRYPTO_SymmetricSessionKey HK;
134
135   /**
136    * Message key.
137    */
138   struct GNUNET_CRYPTO_SymmetricSessionKey MK;
139
140   /**
141    * Key number for a given HK.
142    */
143   unsigned int Kn;
144 };
145
146
147 /**
148  * Axolotl data, according to https://github.com/trevp/axolotl/wiki .
149  */
150 struct CadetTunnelAxolotl
151 {
152   /**
153    * A (double linked) list of stored message keys and associated header keys
154    * for "skipped" messages, i.e. messages that have not been
155    * received despite the reception of more recent messages, (head).
156    */
157   struct CadetTunnelSkippedKey *skipped_head;
158
159   /**
160    * Skipped messages' keys DLL, tail.
161    */
162   struct CadetTunnelSkippedKey *skipped_tail;
163
164   /**
165    * Elements in @a skipped_head <-> @a skipped_tail.
166    */
167   unsigned int skipped;
168
169   /**
170    * 32-byte root key which gets updated by DH ratchet.
171    */
172   struct GNUNET_CRYPTO_SymmetricSessionKey RK;
173
174   /**
175    * 32-byte header key (send).
176    */
177   struct GNUNET_CRYPTO_SymmetricSessionKey HKs;
178
179   /**
180    * 32-byte header key (recv)
181    */
182   struct GNUNET_CRYPTO_SymmetricSessionKey HKr;
183
184   /**
185    * 32-byte next header key (send).
186    */
187   struct GNUNET_CRYPTO_SymmetricSessionKey NHKs;
188
189   /**
190    * 32-byte next header key (recv).
191    */
192   struct GNUNET_CRYPTO_SymmetricSessionKey NHKr;
193
194   /**
195    * 32-byte chain keys (used for forward-secrecy updating, send).
196    */
197   struct GNUNET_CRYPTO_SymmetricSessionKey CKs;
198
199   /**
200    * 32-byte chain keys (used for forward-secrecy updating, recv).
201    */
202   struct GNUNET_CRYPTO_SymmetricSessionKey CKr;
203
204   /**
205    * ECDH for key exchange (A0 / B0).
206    */
207   struct GNUNET_CRYPTO_EcdhePrivateKey *kx_0;
208
209   /**
210    * ECDH Ratchet key (send).
211    */
212   struct GNUNET_CRYPTO_EcdhePrivateKey *DHRs;
213
214   /**
215    * ECDH Ratchet key (recv).
216    */
217   struct GNUNET_CRYPTO_EcdhePublicKey DHRr;
218
219   /**
220    * Message number (reset to 0 with each new ratchet, next message to send).
221    */
222   uint32_t Ns;
223
224   /**
225    * Message number (reset to 0 with each new ratchet, next message to recv).
226    */
227   uint32_t Nr;
228
229   /**
230    * Previous message numbers (# of msgs sent under prev ratchet)
231    */
232   uint32_t PNs;
233
234   /**
235    * True (#GNUNET_YES) if we have to send a new ratchet key in next msg.
236    */
237   int ratchet_flag;
238
239   /**
240    * Number of messages recieved since our last ratchet advance.
241    * - If this counter = 0, we cannot send a new ratchet key in next msg.
242    * - If this counter > 0, we can (but don't yet have to) send a new key.
243    */
244   unsigned int ratchet_allowed;
245
246   /**
247    * Number of messages recieved since our last ratchet advance.
248    * - If this counter = 0, we cannot send a new ratchet key in next msg.
249    * - If this counter > 0, we can (but don't yet have to) send a new key.
250    */
251   unsigned int ratchet_counter;
252
253   /**
254    * When does this ratchet expire and a new one is triggered.
255    */
256   struct GNUNET_TIME_Absolute ratchet_expiration;
257 };
258
259 /**
260  * Struct containing all information regarding a tunnel to a peer.
261  */
262 struct CadetTunnel
263 {
264   /**
265    * Endpoint of the tunnel.
266    */
267   struct CadetPeer *peer;
268
269   /**
270    * Type of encryption used in the tunnel.
271    */
272   enum CadetTunnelEncryption enc_type;
273
274   /**
275    * Axolotl info.
276    */
277   struct CadetTunnelAxolotl *ax;
278
279   /**
280    * State of the tunnel connectivity.
281    */
282   enum CadetTunnelCState cstate;
283
284   /**
285    * State of the tunnel encryption.
286    */
287   enum CadetTunnelEState estate;
288
289   /**
290    * Peer's ephemeral key, to recreate @c e_key and @c d_key when own ephemeral
291    * key changes.
292    */
293   struct GNUNET_CRYPTO_EcdhePublicKey peers_ephemeral_key;
294
295   /**
296    * Encryption ("our") key. It is only "confirmed" if kx_ctx is NULL.
297    */
298   struct GNUNET_CRYPTO_SymmetricSessionKey e_key;
299
300   /**
301    * Decryption ("their") key. It is only "confirmed" if kx_ctx is NULL.
302    */
303   struct GNUNET_CRYPTO_SymmetricSessionKey d_key;
304
305   /**
306    * Task to start the rekey process.
307    */
308   struct GNUNET_SCHEDULER_Task *rekey_task;
309
310   /**
311    * Paths that are actively used to reach the destination peer.
312    */
313   struct CadetTConnection *connection_head;
314   struct CadetTConnection *connection_tail;
315
316   /**
317    * Next connection number.
318    */
319   uint32_t next_cid;
320
321   /**
322    * Channels inside this tunnel.
323    */
324   struct CadetTChannel *channel_head;
325   struct CadetTChannel *channel_tail;
326
327   /**
328    * Channel ID for the next created channel.
329    */
330   CADET_ChannelNumber next_chid;
331
332   /**
333    * Destroy flag: if true, destroy on last message.
334    */
335   struct GNUNET_SCHEDULER_Task * destroy_task;
336
337   /**
338    * Queued messages, to transmit once tunnel gets connected.
339    */
340   struct CadetTunnelDelayed *tq_head;
341   struct CadetTunnelDelayed *tq_tail;
342
343   /**
344    * Task to trim connections if too many are present.
345    */
346   struct GNUNET_SCHEDULER_Task * trim_connections_task;
347
348   /**
349    * Ephemeral message in the queue (to avoid queueing more than one).
350    */
351   struct CadetConnectionQueue *ephm_h;
352
353   /**
354    * Pong message in the queue.
355    */
356   struct CadetConnectionQueue *pong_h;
357 };
358
359
360 /**
361  * Struct used to save messages in a non-ready tunnel to send once connected.
362  */
363 struct CadetTunnelDelayed
364 {
365   /**
366    * DLL
367    */
368   struct CadetTunnelDelayed *next;
369   struct CadetTunnelDelayed *prev;
370
371   /**
372    * Tunnel.
373    */
374   struct CadetTunnel *t;
375
376   /**
377    * Tunnel queue given to the channel to cancel request. Update on send_queued.
378    */
379   struct CadetTunnelQueue *tq;
380
381   /**
382    * Message to send.
383    */
384   /* struct GNUNET_MessageHeader *msg; */
385 };
386
387
388 /**
389  * Handle for messages queued but not yet sent.
390  */
391 struct CadetTunnelQueue
392 {
393   /**
394    * Connection queue handle, to cancel if necessary.
395    */
396   struct CadetConnectionQueue *cq;
397
398   /**
399    * Handle in case message hasn't been given to a connection yet.
400    */
401   struct CadetTunnelDelayed *tqd;
402
403   /**
404    * Continuation to call once sent.
405    */
406   GCT_sent cont;
407
408   /**
409    * Closure for @c cont.
410    */
411   void *cont_cls;
412 };
413
414
415 /******************************************************************************/
416 /*******************************   GLOBALS  ***********************************/
417 /******************************************************************************/
418
419 /**
420  * Global handle to the statistics service.
421  */
422 extern struct GNUNET_STATISTICS_Handle *stats;
423
424 /**
425  * Local peer own ID (memory efficient handle).
426  */
427 extern GNUNET_PEER_Id myid;
428
429 /**
430  * Local peer own ID (full value).
431  */
432 extern struct GNUNET_PeerIdentity my_full_id;
433
434
435 /**
436  * Don't try to recover tunnels if shutting down.
437  */
438 extern int shutting_down;
439
440
441 /**
442  * Set of all tunnels, in order to trigger a new exchange on rekey.
443  * Indexed by peer's ID.
444  */
445 static struct GNUNET_CONTAINER_MultiPeerMap *tunnels;
446
447 /**
448  * Own Peer ID private key.
449  */
450 const static struct GNUNET_CRYPTO_EddsaPrivateKey *id_key;
451
452
453 /********************************  AXOLOTL ************************************/
454
455 /**
456  * How many messages are needed to trigger a ratchet advance.
457  */
458 static unsigned long long ratchet_messages;
459
460 /**
461  * How long until we trigger a ratched advance.
462  */
463 static struct GNUNET_TIME_Relative ratchet_time;
464
465
466 /******************************************************************************/
467 /********************************   STATIC  ***********************************/
468 /******************************************************************************/
469
470 /**
471  * Get string description for tunnel connectivity state.
472  *
473  * @param cs Tunnel state.
474  *
475  * @return String representation.
476  */
477 static const char *
478 cstate2s (enum CadetTunnelCState cs)
479 {
480   static char buf[32];
481
482   switch (cs)
483   {
484     case CADET_TUNNEL_NEW:
485       return "CADET_TUNNEL_NEW";
486     case CADET_TUNNEL_SEARCHING:
487       return "CADET_TUNNEL_SEARCHING";
488     case CADET_TUNNEL_WAITING:
489       return "CADET_TUNNEL_WAITING";
490     case CADET_TUNNEL_READY:
491       return "CADET_TUNNEL_READY";
492     case CADET_TUNNEL_SHUTDOWN:
493       return "CADET_TUNNEL_SHUTDOWN";
494     default:
495       SPRINTF (buf, "%u (UNKNOWN STATE)", cs);
496       return buf;
497   }
498   return "";
499 }
500
501
502 /**
503  * Get string description for tunnel encryption state.
504  *
505  * @param es Tunnel state.
506  *
507  * @return String representation.
508  */
509 static const char *
510 estate2s (enum CadetTunnelEState es)
511 {
512   static char buf[32];
513
514   switch (es)
515   {
516     case CADET_TUNNEL_KEY_UNINITIALIZED:
517       return "CADET_TUNNEL_KEY_UNINITIALIZED";
518     case CADET_TUNNEL_KEY_SENT:
519       return "CADET_TUNNEL_KEY_SENT";
520     case CADET_TUNNEL_KEY_PING:
521       return "CADET_TUNNEL_KEY_PING";
522     case CADET_TUNNEL_KEY_OK:
523       return "CADET_TUNNEL_KEY_OK";
524     case CADET_TUNNEL_KEY_REKEY:
525       return "CADET_TUNNEL_KEY_REKEY";
526     default:
527       SPRINTF (buf, "%u (UNKNOWN STATE)", es);
528       return buf;
529   }
530   return "";
531 }
532
533
534 /**
535  * @brief Check if tunnel is ready to send traffic.
536  *
537  * Tunnel must be connected and with encryption correctly set up.
538  *
539  * @param t Tunnel to check.
540  *
541  * @return #GNUNET_YES if ready, #GNUNET_NO otherwise
542  */
543 static int
544 is_ready (struct CadetTunnel *t)
545 {
546   int ready;
547   int conn_ok;
548   int enc_ok;
549
550   conn_ok = CADET_TUNNEL_READY == t->cstate;
551   enc_ok = CADET_TUNNEL_KEY_OK == t->estate
552            || CADET_TUNNEL_KEY_REKEY == t->estate
553            || (CADET_TUNNEL_KEY_PING == t->estate
554                && CADET_Axolotl == t->enc_type);
555   ready = conn_ok && enc_ok;
556   ready = ready || GCT_is_loopback (t);
557   return ready;
558 }
559
560
561 /**
562  * Get the channel's buffer. ONLY FOR NON-LOOPBACK CHANNELS!!
563  *
564  * @param tch Tunnel's channel handle.
565  *
566  * @return Amount of messages the channel can still buffer towards the client.
567  */
568 static unsigned int
569 get_channel_buffer (const struct CadetTChannel *tch)
570 {
571   int fwd;
572
573   /* If channel is incoming, is terminal in the FWD direction and fwd is YES */
574   fwd = GCCH_is_terminal (tch->ch, GNUNET_YES);
575
576   return GCCH_get_buffer (tch->ch, fwd);
577 }
578
579
580 /**
581  * Get the channel's allowance status.
582  *
583  * @param tch Tunnel's channel handle.
584  *
585  * @return #GNUNET_YES if we allowed the client to send data to us.
586  */
587 static int
588 get_channel_allowed (const struct CadetTChannel *tch)
589 {
590   int fwd;
591
592   /* If channel is outgoing, is origin in the FWD direction and fwd is YES */
593   fwd = GCCH_is_origin (tch->ch, GNUNET_YES);
594
595   return GCCH_get_allowed (tch->ch, fwd);
596 }
597
598
599 /**
600  * Get the connection's buffer.
601  *
602  * @param tc Tunnel's connection handle.
603  *
604  * @return Amount of messages the connection can still buffer.
605  */
606 static unsigned int
607 get_connection_buffer (const struct CadetTConnection *tc)
608 {
609   int fwd;
610
611   /* If connection is outgoing, is origin in the FWD direction and fwd is YES */
612   fwd = GCC_is_origin (tc->c, GNUNET_YES);
613
614   return GCC_get_buffer (tc->c, fwd);
615 }
616
617
618 /**
619  * Get the connection's allowance.
620  *
621  * @param tc Tunnel's connection handle.
622  *
623  * @return Amount of messages we have allowed the next peer to send us.
624  */
625 static unsigned int
626 get_connection_allowed (const struct CadetTConnection *tc)
627 {
628   int fwd;
629
630   /* If connection is outgoing, is origin in the FWD direction and fwd is YES */
631   fwd = GCC_is_origin (tc->c, GNUNET_YES);
632
633   return GCC_get_allowed (tc->c, fwd);
634 }
635
636
637 /**
638  * Create a new Axolotl ephemeral (ratchet) key.
639  *
640  * @param t Tunnel.
641  */
642 static void
643 new_ephemeral (struct CadetTunnel *t)
644 {
645   GNUNET_free_non_null (t->ax->DHRs);
646   t->ax->DHRs = GNUNET_CRYPTO_ecdhe_key_create();
647   #if DUMP_KEYS_TO_STDERR
648   {
649     struct GNUNET_CRYPTO_EcdhePublicKey pub;
650     GNUNET_CRYPTO_ecdhe_key_get_public (t->ax->DHRs, &pub);
651     LOG (GNUNET_ERROR_TYPE_DEBUG, "  new DHRs generated: pub  %s\n",
652         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &pub));
653   }
654   #endif
655 }
656
657
658 /**
659  * Calculate HMAC.
660  *
661  * @param plaintext Content to HMAC.
662  * @param size Size of @c plaintext.
663  * @param iv Initialization vector for the message.
664  * @param key Key to use.
665  * @param hmac[out] Destination to store the HMAC.
666  */
667 static void
668 t_hmac (const void *plaintext, size_t size,
669         uint32_t iv, const struct GNUNET_CRYPTO_SymmetricSessionKey *key,
670         struct GNUNET_CADET_Hash *hmac)
671 {
672   static const char ctx[] = "cadet authentication key";
673   struct GNUNET_CRYPTO_AuthKey auth_key;
674   struct GNUNET_HashCode hash;
675
676 #if DUMP_KEYS_TO_STDERR
677   LOG (GNUNET_ERROR_TYPE_INFO, "  HMAC %u bytes with key %s\n", size,
678        GNUNET_i2s ((struct GNUNET_PeerIdentity *) key));
679 #endif
680   GNUNET_CRYPTO_hmac_derive_key (&auth_key, key,
681                                  &iv, sizeof (iv),
682                                  key, sizeof (*key),
683                                  ctx, sizeof (ctx),
684                                  NULL);
685   /* Two step: CADET_Hash is only 256 bits, HashCode is 512. */
686   GNUNET_CRYPTO_hmac (&auth_key, plaintext, size, &hash);
687   GNUNET_memcpy (hmac, &hash, sizeof (*hmac));
688 }
689
690
691 /**
692  * Perform a HMAC.
693  *
694  * @param key Key to use.
695  * @param hash[out] Resulting HMAC.
696  * @param source Source key material (data to HMAC).
697  * @param len Length of @a source.
698  */
699 static void
700 t_ax_hmac_hash (struct GNUNET_CRYPTO_SymmetricSessionKey *key,
701                 struct GNUNET_HashCode *hash,
702                 void *source, unsigned int len)
703 {
704   static const char ctx[] = "axolotl HMAC-HASH";
705   struct GNUNET_CRYPTO_AuthKey auth_key;
706
707   GNUNET_CRYPTO_hmac_derive_key (&auth_key, key,
708                                  ctx, sizeof (ctx),
709                                  NULL);
710   GNUNET_CRYPTO_hmac (&auth_key, source, len, hash);
711 }
712
713
714 /**
715  * Derive a key from a HMAC-HASH.
716  *
717  * @param key Key to use for the HMAC.
718  * @param out Key to generate.
719  * @param source Source key material (data to HMAC).
720  * @param len Length of @a source.
721  */
722 static void
723 t_hmac_derive_key (struct GNUNET_CRYPTO_SymmetricSessionKey *key,
724                    struct GNUNET_CRYPTO_SymmetricSessionKey *out,
725                    void *source, unsigned int len)
726 {
727   static const char ctx[] = "axolotl derive key";
728   struct GNUNET_HashCode h;
729
730   t_ax_hmac_hash (key, &h, source, len);
731   GNUNET_CRYPTO_kdf (out, sizeof (*out), ctx, sizeof (ctx),
732                      &h, sizeof (h), NULL);
733 }
734
735
736 /**
737  * Encrypt data with the axolotl tunnel key.
738  *
739  * @param t Tunnel whose key to use.
740  * @param dst Destination for the encrypted data.
741  * @param src Source of the plaintext. Can overlap with @c dst.
742  * @param size Size of the plaintext.
743  *
744  * @return Size of the encrypted data.
745  */
746 static int
747 t_ax_encrypt (struct CadetTunnel *t, void *dst, const void *src, size_t size)
748 {
749   struct GNUNET_CRYPTO_SymmetricSessionKey MK;
750   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
751   struct CadetTunnelAxolotl *ax;
752   size_t out_size;
753
754   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_ax_encrypt start\n");
755
756   ax = t->ax;
757
758   ax->ratchet_counter++;
759   if (GNUNET_YES == ax->ratchet_allowed
760       && (ratchet_messages <= ax->ratchet_counter
761           || 0 == GNUNET_TIME_absolute_get_remaining (ax->ratchet_expiration).rel_value_us))
762   {
763     ax->ratchet_flag = GNUNET_YES;
764   }
765
766   if (GNUNET_YES == ax->ratchet_flag)
767   {
768     /* Advance ratchet */
769     struct GNUNET_CRYPTO_SymmetricSessionKey keys[3];
770     struct GNUNET_HashCode dh;
771     struct GNUNET_HashCode hmac;
772     static const char ctx[] = "axolotl ratchet";
773
774     new_ephemeral (t);
775     ax->HKs = ax->NHKs;
776
777     /* RK, NHKs, CKs = KDF( HMAC-HASH(RK, DH(DHRs, DHRr)) ) */
778     GNUNET_CRYPTO_ecc_ecdh (ax->DHRs, &ax->DHRr, &dh);
779     t_ax_hmac_hash (&ax->RK, &hmac, &dh, sizeof (dh));
780     GNUNET_CRYPTO_kdf (keys, sizeof (keys), ctx, sizeof (ctx),
781                        &hmac, sizeof (hmac), NULL);
782     ax->RK = keys[0];
783     ax->NHKs = keys[1];
784     ax->CKs = keys[2];
785
786     ax->PNs = ax->Ns;
787     ax->Ns = 0;
788     ax->ratchet_flag = GNUNET_NO;
789     ax->ratchet_allowed = GNUNET_NO;
790     ax->ratchet_counter = 0;
791     ax->ratchet_expiration =
792       GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(), ratchet_time);
793   }
794
795   t_hmac_derive_key (&ax->CKs, &MK, "0", 1);
796   GNUNET_CRYPTO_symmetric_derive_iv (&iv, &MK, NULL, 0, NULL);
797
798   #if DUMP_KEYS_TO_STDERR
799   LOG (GNUNET_ERROR_TYPE_DEBUG, "  CKs: %s\n",
800        GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->CKs));
801   LOG (GNUNET_ERROR_TYPE_INFO, "  AX_ENC with key %u: %s\n", ax->Ns,
802        GNUNET_i2s ((struct GNUNET_PeerIdentity *) &MK));
803   #endif
804
805   out_size = GNUNET_CRYPTO_symmetric_encrypt (src, size, &MK, &iv, dst);
806
807   t_hmac_derive_key (&ax->CKs, &ax->CKs, "1", 1);
808
809   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_ax_encrypt end\n");
810
811   return out_size;
812 }
813
814
815 /**
816  * Decrypt data with the axolotl tunnel key.
817  *
818  * @param t Tunnel whose key to use.
819  * @param dst Destination for the decrypted data.
820  * @param src Source of the ciphertext. Can overlap with @c dst.
821  * @param size Size of the ciphertext.
822  *
823  * @return Size of the decrypted data.
824  */
825 static int
826 t_ax_decrypt (struct CadetTunnel *t, void *dst, const void *src, size_t size)
827 {
828   struct GNUNET_CRYPTO_SymmetricSessionKey MK;
829   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
830   struct CadetTunnelAxolotl *ax;
831   size_t out_size;
832
833   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_ax_decrypt start\n");
834
835   ax = t->ax;
836
837   t_hmac_derive_key (&ax->CKr, &MK, "0", 1);
838   GNUNET_CRYPTO_symmetric_derive_iv (&iv, &MK, NULL, 0, NULL);
839
840   #if DUMP_KEYS_TO_STDERR
841   LOG (GNUNET_ERROR_TYPE_DEBUG, "  CKr: %s\n",
842        GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->CKr));
843   LOG (GNUNET_ERROR_TYPE_INFO, "  AX_DEC with key %u: %s\n", ax->Nr,
844        GNUNET_i2s ((struct GNUNET_PeerIdentity *) &MK));
845   #endif
846
847   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
848   out_size = GNUNET_CRYPTO_symmetric_decrypt (src, size, &MK, &iv, dst);
849   GNUNET_assert (out_size == size);
850
851   t_hmac_derive_key (&ax->CKr, &ax->CKr, "1", 1);
852
853   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_ax_decrypt end\n");
854
855   return out_size;
856 }
857
858
859 /**
860  * Encrypt header with the axolotl header key.
861  *
862  * @param t Tunnel whose key to use.
863  * @param msg Message whose header to encrypt.
864  */
865 static void
866 t_h_encrypt (struct CadetTunnel *t, struct GNUNET_CADET_AX *msg)
867 {
868   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
869   struct CadetTunnelAxolotl *ax;
870   size_t out_size;
871
872   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_h_encrypt start\n");
873
874   ax = t->ax;
875   GNUNET_CRYPTO_symmetric_derive_iv (&iv, &ax->HKs, NULL, 0, NULL);
876
877   #if DUMP_KEYS_TO_STDERR
878   LOG (GNUNET_ERROR_TYPE_INFO, "  AX_ENC_H with key %s\n",
879        GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->HKs));
880   #endif
881
882   out_size = GNUNET_CRYPTO_symmetric_encrypt (&msg->Ns, AX_HEADER_SIZE,
883                                               &ax->HKs, &iv, &msg->Ns);
884
885   GNUNET_assert (AX_HEADER_SIZE == out_size);
886
887   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_ax_encrypt end\n");
888 }
889
890
891 /**
892  * Decrypt header with the current axolotl header key.
893  *
894  * @param t Tunnel whose current ax HK to use.
895  * @param src Message whose header to decrypt.
896  * @param dst Where to decrypt header to.
897  */
898 static void
899 t_h_decrypt (struct CadetTunnel *t, const struct GNUNET_CADET_AX *src,
900              struct GNUNET_CADET_AX *dst)
901 {
902   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
903   struct CadetTunnelAxolotl *ax;
904   size_t out_size;
905
906   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_h_decrypt start\n");
907
908   ax = t->ax;
909   GNUNET_CRYPTO_symmetric_derive_iv (&iv, &ax->HKr, NULL, 0, NULL);
910
911   #if DUMP_KEYS_TO_STDERR
912   LOG (GNUNET_ERROR_TYPE_INFO, "  AX_DEC_H with key %s\n",
913        GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->HKr));
914   #endif
915
916   out_size = GNUNET_CRYPTO_symmetric_decrypt (&src->Ns, AX_HEADER_SIZE,
917                                               &ax->HKr, &iv, &dst->Ns);
918
919   GNUNET_assert (AX_HEADER_SIZE == out_size);
920
921   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_h_decrypt end\n");
922 }
923
924
925 /**
926  * Decrypt and verify data with the appropriate tunnel key and verify that the
927  * data has not been altered since it was sent by the remote peer.
928  *
929  * @param t Tunnel whose key to use.
930  * @param dst Destination for the plaintext.
931  * @param src Source of the message. Can overlap with @c dst.
932  * @param size Size of the message.
933  *
934  * @return Size of the decrypted data, -1 if an error was encountered.
935  */
936 static int
937 try_old_ax_keys (struct CadetTunnel *t, void *dst,
938                  const struct GNUNET_CADET_AX *src, size_t size)
939 {
940   struct CadetTunnelSkippedKey *key;
941   struct GNUNET_CADET_Hash *hmac;
942   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
943   struct GNUNET_CADET_AX plaintext_header;
944   struct GNUNET_CRYPTO_SymmetricSessionKey *valid_HK;
945   size_t esize;
946   size_t res;
947   size_t len;
948   unsigned int N;
949
950   LOG (GNUNET_ERROR_TYPE_DEBUG, "Trying old keys\n");
951   hmac = &plaintext_header.hmac;
952   esize = size - sizeof (struct GNUNET_CADET_AX);
953
954   /* Find a correct Header Key */
955   for (key = t->ax->skipped_head; NULL != key; key = key->next)
956   {
957     #if DUMP_KEYS_TO_STDERR
958     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Trying hmac with key %s\n",
959          GNUNET_i2s ((struct GNUNET_PeerIdentity *) &key->HK));
960     #endif
961     t_hmac (&src->Ns, AX_HEADER_SIZE + esize, 0, &key->HK, hmac);
962     if (0 == memcmp (hmac, &src->hmac, sizeof (*hmac)))
963     {
964       LOG (GNUNET_ERROR_TYPE_DEBUG, "  hmac correct\n");
965       valid_HK = &key->HK;
966       break;
967     }
968   }
969   if (NULL == key)
970     return -1;
971
972   /* Should've been checked in -cadet_connection.c handle_cadet_encrypted. */
973   GNUNET_assert (size > sizeof (struct GNUNET_CADET_AX));
974   len = size - sizeof (struct GNUNET_CADET_AX);
975   GNUNET_assert (len >= sizeof (struct GNUNET_MessageHeader));
976
977   /* Decrypt header */
978   GNUNET_CRYPTO_symmetric_derive_iv (&iv, &key->HK, NULL, 0, NULL);
979   res = GNUNET_CRYPTO_symmetric_decrypt (&src->Ns, AX_HEADER_SIZE,
980                                          &key->HK, &iv, &plaintext_header.Ns);
981   GNUNET_assert (AX_HEADER_SIZE == res);
982   LOG (GNUNET_ERROR_TYPE_DEBUG, "  Message %u, previous: %u\n",
983        ntohl (plaintext_header.Ns), ntohl (plaintext_header.PNs));
984
985   /* Find the correct Message Key */
986   N = ntohl (plaintext_header.Ns);
987   while (NULL != key && N != key->Kn)
988     key = key->next;
989   if (NULL == key || 0 != memcmp (&key->HK, valid_HK, sizeof (*valid_HK)))
990     return -1;
991
992   #if DUMP_KEYS_TO_STDERR
993   LOG (GNUNET_ERROR_TYPE_INFO, "  AX_DEC_H with skipped key %s\n",
994        GNUNET_i2s ((struct GNUNET_PeerIdentity *) &key->HK));
995   LOG (GNUNET_ERROR_TYPE_INFO, "  AX_DEC with skipped key %u: %s\n",
996        key->Kn, GNUNET_i2s ((struct GNUNET_PeerIdentity *) &key->MK));
997   #endif
998
999   /* Decrypt payload */
1000   GNUNET_CRYPTO_symmetric_derive_iv (&iv, &key->MK, NULL, 0, NULL);
1001   res = GNUNET_CRYPTO_symmetric_decrypt (&src[1], len, &key->MK, &iv, dst);
1002
1003   /* Remove key */
1004   GNUNET_CONTAINER_DLL_remove (t->ax->skipped_head, t->ax->skipped_tail, key);
1005   t->ax->skipped--;
1006   GNUNET_free (key); /* GNUNET_free overwrites memory with 0xbaadf00d */
1007
1008   return res;
1009 }
1010
1011
1012 /**
1013  * Delete a key from the list of skipped keys.
1014  *
1015  * @param t Tunnel to delete from.
1016  * @param HKr Header Key to use.
1017  */
1018 static void
1019 store_skipped_key (struct CadetTunnel *t,
1020                    const struct GNUNET_CRYPTO_SymmetricSessionKey *HKr)
1021 {
1022   struct CadetTunnelSkippedKey *key;
1023
1024   key = GNUNET_new (struct CadetTunnelSkippedKey);
1025   key->timestamp = GNUNET_TIME_absolute_get ();
1026   key->Kn = t->ax->Nr;
1027   key->HK = t->ax->HKr;
1028   t_hmac_derive_key (&t->ax->CKr, &key->MK, "0", 1);
1029   #if DUMP_KEYS_TO_STDERR
1030   LOG (GNUNET_ERROR_TYPE_DEBUG, "    storing MK for Nr %u: %s\n",
1031        key->Kn, GNUNET_i2s ((struct GNUNET_PeerIdentity *) &key->MK));
1032   LOG (GNUNET_ERROR_TYPE_DEBUG, "    for CKr: %s\n",
1033        GNUNET_i2s ((struct GNUNET_PeerIdentity *) &t->ax->CKr));
1034   #endif
1035   t_hmac_derive_key (&t->ax->CKr, &t->ax->CKr, "1", 1);
1036   GNUNET_CONTAINER_DLL_insert (t->ax->skipped_head, t->ax->skipped_tail, key);
1037   t->ax->Nr++;
1038   t->ax->skipped++;
1039 }
1040
1041
1042 /**
1043  * Delete a key from the list of skipped keys.
1044  *
1045  * @param t Tunnel to delete from.
1046  * @param key Key to delete.
1047  */
1048 static void
1049 delete_skipped_key (struct CadetTunnel *t, struct CadetTunnelSkippedKey *key)
1050 {
1051   GNUNET_CONTAINER_DLL_remove (t->ax->skipped_head, t->ax->skipped_tail, key);
1052   GNUNET_free (key);
1053   t->ax->skipped--;
1054 }
1055
1056
1057 /**
1058  * Stage skipped AX keys and calculate the message key.
1059  *
1060  * Stores each HK and MK for skipped messages.
1061  *
1062  * @param t Tunnel where to stage the keys.
1063  * @param HKr Header key.
1064  * @param Np Received meesage number.
1065  *
1066  * @return GNUNET_OK if keys were stored.
1067  *         GNUNET_SYSERR if an error ocurred (Np not expected).
1068  */
1069 static int
1070 store_ax_keys (struct CadetTunnel *t,
1071                const struct GNUNET_CRYPTO_SymmetricSessionKey *HKr,
1072                uint32_t Np)
1073 {
1074   int gap;
1075
1076
1077   gap = Np - t->ax->Nr;
1078   LOG (GNUNET_ERROR_TYPE_INFO, "Storing keys [%u, %u)\n", t->ax->Nr, Np);
1079   if (MAX_KEY_GAP < gap)
1080   {
1081     /* Avoid DoS (forcing peer to do 2*33 chain HMAC operations) */
1082     /* TODO: start new key exchange on return */
1083     GNUNET_break_op (0);
1084     LOG (GNUNET_ERROR_TYPE_WARNING, "Got message %u, expected %u+\n",
1085          Np, t->ax->Nr);
1086     return GNUNET_SYSERR;
1087   }
1088   if (0 > gap)
1089   {
1090     /* Delayed message: don't store keys, flag to try old keys. */
1091     return GNUNET_SYSERR;
1092   }
1093
1094   while (t->ax->Nr < Np)
1095     store_skipped_key (t, HKr);
1096
1097   while (t->ax->skipped > MAX_SKIPPED_KEYS)
1098     delete_skipped_key (t, t->ax->skipped_tail);
1099
1100   return GNUNET_OK;
1101 }
1102
1103
1104 /**
1105  * Decrypt and verify data with the appropriate tunnel key and verify that the
1106  * data has not been altered since it was sent by the remote peer.
1107  *
1108  * @param t Tunnel whose key to use.
1109  * @param dst Destination for the plaintext.
1110  * @param src Source of the message. Can overlap with @c dst.
1111  * @param size Size of the message.
1112  *
1113  * @return Size of the decrypted data, -1 if an error was encountered.
1114  */
1115 static int
1116 t_ax_decrypt_and_validate (struct CadetTunnel *t, void *dst,
1117                            const struct GNUNET_CADET_AX *src, size_t size)
1118 {
1119   struct CadetTunnelAxolotl *ax;
1120   struct GNUNET_CADET_Hash msg_hmac;
1121   struct GNUNET_HashCode hmac;
1122   struct GNUNET_CADET_AX plaintext_header;
1123   uint32_t Np;
1124   uint32_t PNp;
1125   size_t esize;
1126   size_t osize;
1127
1128   ax = t->ax;
1129   esize = size - sizeof (struct GNUNET_CADET_AX);
1130
1131   if (NULL == ax)
1132     return -1;
1133
1134   /* Try current HK */
1135   t_hmac (&src->Ns, AX_HEADER_SIZE + esize, 0, &ax->HKr, &msg_hmac);
1136   if (0 != memcmp (&msg_hmac, &src->hmac, sizeof (msg_hmac)))
1137   {
1138     static const char ctx[] = "axolotl ratchet";
1139     struct GNUNET_CRYPTO_SymmetricSessionKey keys[3]; /* RKp, NHKp, CKp */
1140     struct GNUNET_CRYPTO_SymmetricSessionKey HK;
1141     struct GNUNET_HashCode dh;
1142     struct GNUNET_CRYPTO_EcdhePublicKey *DHRp;
1143
1144     /* Try Next HK */
1145     LOG (GNUNET_ERROR_TYPE_DEBUG, "  trying next HK\n");
1146     t_hmac (&src->Ns, AX_HEADER_SIZE + esize, 0, &ax->NHKr, &msg_hmac);
1147     if (0 != memcmp (&msg_hmac, &src->hmac, sizeof (msg_hmac)))
1148     {
1149       /* Try the skipped keys, if that fails, we're out of luck. */
1150       return try_old_ax_keys (t, dst, src, size);
1151     }
1152     LOG (GNUNET_ERROR_TYPE_INFO, "next HK worked\n");
1153
1154     HK = ax->HKr;
1155     ax->HKr = ax->NHKr;
1156     t_h_decrypt (t, src, &plaintext_header);
1157     Np = ntohl (plaintext_header.Ns);
1158     PNp = ntohl (plaintext_header.PNs);
1159     DHRp = &plaintext_header.DHRs;
1160     store_ax_keys (t, &HK, PNp);
1161
1162     /* RKp, NHKp, CKp = KDF (HMAC-HASH (RK, DH (DHRp, DHRs))) */
1163     GNUNET_CRYPTO_ecc_ecdh (ax->DHRs, DHRp, &dh);
1164     t_ax_hmac_hash (&ax->RK, &hmac, &dh, sizeof (dh));
1165     GNUNET_CRYPTO_kdf (keys, sizeof (keys), ctx, sizeof (ctx),
1166                        &hmac, sizeof (hmac), NULL);
1167
1168     /* Commit "purported" keys */
1169     ax->RK = keys[0];
1170     ax->NHKr = keys[1];
1171     ax->CKr = keys[2];
1172     ax->DHRr = *DHRp;
1173     ax->Nr = 0;
1174     ax->ratchet_allowed = GNUNET_YES;
1175   }
1176   else
1177   {
1178     LOG (GNUNET_ERROR_TYPE_DEBUG, "current HK\n");
1179     t_h_decrypt (t, src, &plaintext_header);
1180     Np = ntohl (plaintext_header.Ns);
1181     PNp = ntohl (plaintext_header.PNs);
1182   }
1183   LOG (GNUNET_ERROR_TYPE_INFO, "  got AX Nr %u\n", Np);
1184   if (Np != ax->Nr)
1185     if (GNUNET_OK != store_ax_keys (t, &ax->HKr, Np))
1186       /* Try the skipped keys, if that fails, we're out of luck. */
1187       return try_old_ax_keys (t, dst, src, size);
1188
1189   osize = t_ax_decrypt (t, dst, &src[1], esize);
1190   ax->Nr = Np + 1;
1191
1192   if (osize != esize)
1193   {
1194     GNUNET_break_op (0);
1195     return -1;
1196   }
1197
1198   return osize;
1199 }
1200
1201
1202 /**
1203  * Pick a connection on which send the next data message.
1204  *
1205  * @param t Tunnel on which to send the message.
1206  *
1207  * @return The connection on which to send the next message.
1208  */
1209 static struct CadetConnection *
1210 tunnel_get_connection (struct CadetTunnel *t)
1211 {
1212   struct CadetTConnection *iter;
1213   struct CadetConnection *best;
1214   unsigned int qn;
1215   unsigned int lowest_q;
1216
1217   LOG (GNUNET_ERROR_TYPE_DEBUG, "tunnel_get_connection %s\n", GCT_2s (t));
1218   best = NULL;
1219   lowest_q = UINT_MAX;
1220   for (iter = t->connection_head; NULL != iter; iter = iter->next)
1221   {
1222     LOG (GNUNET_ERROR_TYPE_DEBUG, "  connection %s: %u\n",
1223          GCC_2s (iter->c), GCC_get_state (iter->c));
1224     if (CADET_CONNECTION_READY == GCC_get_state (iter->c))
1225     {
1226       qn = GCC_get_qn (iter->c, GCC_is_origin (iter->c, GNUNET_YES));
1227       LOG (GNUNET_ERROR_TYPE_DEBUG, "    q_n %u, \n", qn);
1228       if (qn < lowest_q)
1229       {
1230         best = iter->c;
1231         lowest_q = qn;
1232       }
1233     }
1234   }
1235   LOG (GNUNET_ERROR_TYPE_DEBUG, " selected: connection %s\n", GCC_2s (best));
1236   return best;
1237 }
1238
1239
1240 /**
1241  * Callback called when a queued message is sent.
1242  *
1243  * Calculates the average time and connection packet tracking.
1244  *
1245  * @param cls Closure (TunnelQueue handle).
1246  * @param c Connection this message was on.
1247  * @param q Connection queue handle (unused).
1248  * @param type Type of message sent.
1249  * @param fwd Was this a FWD going message?
1250  * @param size Size of the message.
1251  */
1252 static void
1253 tun_message_sent (void *cls,
1254               struct CadetConnection *c,
1255               struct CadetConnectionQueue *q,
1256               uint16_t type, int fwd, size_t size)
1257 {
1258   struct CadetTunnelQueue *qt = cls;
1259   struct CadetTunnel *t;
1260
1261   LOG (GNUNET_ERROR_TYPE_DEBUG, "tun_message_sent\n");
1262
1263   GNUNET_assert (NULL != qt->cont);
1264   t = NULL == c ? NULL : GCC_get_tunnel (c);
1265   qt->cont (qt->cont_cls, t, qt, type, size);
1266   GNUNET_free (qt);
1267 }
1268
1269
1270 static unsigned int
1271 count_queued_data (const struct CadetTunnel *t)
1272 {
1273   struct CadetTunnelDelayed *iter;
1274   unsigned int count;
1275
1276   for (count = 0, iter = t->tq_head; iter != NULL; iter = iter->next)
1277     count++;
1278
1279   return count;
1280 }
1281
1282 /**
1283  * Delete a queued message: either was sent or the channel was destroyed
1284  * before the tunnel's key exchange had a chance to finish.
1285  *
1286  * @param tqd Delayed queue handle.
1287  */
1288 static void
1289 unqueue_data (struct CadetTunnelDelayed *tqd)
1290 {
1291   GNUNET_CONTAINER_DLL_remove (tqd->t->tq_head, tqd->t->tq_tail, tqd);
1292   GNUNET_free (tqd);
1293 }
1294
1295
1296 /**
1297  * Cache a message to be sent once tunnel is online.
1298  *
1299  * @param t Tunnel to hold the message.
1300  * @param msg Message itself (copy will be made).
1301  */
1302 static struct CadetTunnelDelayed *
1303 queue_data (struct CadetTunnel *t, const struct GNUNET_MessageHeader *msg)
1304 {
1305   struct CadetTunnelDelayed *tqd;
1306   uint16_t size = ntohs (msg->size);
1307
1308   LOG (GNUNET_ERROR_TYPE_DEBUG, "queue data on Tunnel %s\n", GCT_2s (t));
1309
1310   GNUNET_assert (GNUNET_NO == is_ready (t));
1311
1312   tqd = GNUNET_malloc (sizeof (struct CadetTunnelDelayed) + size);
1313
1314   tqd->t = t;
1315   GNUNET_memcpy (&tqd[1], msg, size);
1316   GNUNET_CONTAINER_DLL_insert_tail (t->tq_head, t->tq_tail, tqd);
1317   return tqd;
1318 }
1319
1320
1321 /**
1322  * Sends an already built message on a tunnel, encrypting it and
1323  * choosing the best connection.
1324  *
1325  * @param message Message to send. Function modifies it.
1326  * @param t Tunnel on which this message is transmitted.
1327  * @param c Connection to use (autoselect if NULL).
1328  * @param force Force the tunnel to take the message (buffer overfill).
1329  * @param cont Continuation to call once message is really sent.
1330  * @param cont_cls Closure for @c cont.
1331  * @param existing_q In case this a transmission of previously queued data,
1332  *                   this should be TunnelQueue given to the client.
1333  *                   Otherwise, NULL.
1334  * @return Handle to cancel message.
1335  *         NULL if @c cont is NULL or an error happens and message is dropped.
1336  */
1337 static struct CadetTunnelQueue *
1338 send_prebuilt_message (const struct GNUNET_MessageHeader *message,
1339                        struct CadetTunnel *t,
1340                        struct CadetConnection *c,
1341                        int force,
1342                        GCT_sent cont,
1343                        void *cont_cls,
1344                        struct CadetTunnelQueue *existing_q)
1345 {
1346   struct GNUNET_MessageHeader *msg;
1347   struct GNUNET_CADET_AX *ax_msg;
1348   struct CadetTunnelQueue *tq;
1349   size_t size = ntohs (message->size);
1350   char cbuf[sizeof (struct GNUNET_CADET_AX) + size] GNUNET_ALIGN;
1351   size_t esize;
1352   uint32_t mid;
1353   uint16_t type;
1354   int fwd;
1355
1356   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMT Send on Tunnel %s\n", GCT_2s (t));
1357
1358   if (GNUNET_NO == is_ready (t))
1359   {
1360     struct CadetTunnelDelayed *tqd;
1361     /* A non null existing_q indicates sending of queued data.
1362      * Should only happen after tunnel becomes ready.
1363      */
1364     GNUNET_assert (NULL == existing_q);
1365     tqd = queue_data (t, message);
1366     if (NULL == cont)
1367       return NULL;
1368     tq = GNUNET_new (struct CadetTunnelQueue);
1369     tq->tqd = tqd;
1370     tqd->tq = tq;
1371     tq->cont = cont;
1372     tq->cont_cls = cont_cls;
1373     return tq;
1374   }
1375
1376   GNUNET_assert (GNUNET_NO == GCT_is_loopback (t));
1377
1378   GNUNET_assert (CADET_Axolotl == t->enc_type);
1379   ax_msg = (struct GNUNET_CADET_AX *) cbuf;
1380   msg = &ax_msg->header;
1381   msg->size = htons (sizeof (struct GNUNET_CADET_AX) + size);
1382   msg->type = htons (GNUNET_MESSAGE_TYPE_CADET_AX);
1383   esize = t_ax_encrypt (t, &ax_msg[1], message, size);
1384   ax_msg->Ns = htonl (t->ax->Ns++);
1385   ax_msg->PNs = htonl (t->ax->PNs);
1386   GNUNET_CRYPTO_ecdhe_key_get_public (t->ax->DHRs, &ax_msg->DHRs);
1387   t_h_encrypt (t, ax_msg);
1388   t_hmac (&ax_msg->Ns, AX_HEADER_SIZE + esize, 0, &t->ax->HKs, &ax_msg->hmac);
1389   GNUNET_assert (esize == size);
1390
1391   if (NULL == c)
1392     c = tunnel_get_connection (t);
1393   if (NULL == c)
1394   {
1395     /* Why is tunnel 'ready'? Should have been queued! */
1396     if (NULL != t->destroy_task)
1397     {
1398       GNUNET_break (0);
1399       GCT_debug (t, GNUNET_ERROR_TYPE_WARNING);
1400     }
1401     return NULL; /* Drop... */
1402   }
1403
1404   mid = 0;
1405   type = ntohs (message->type);
1406   switch (type)
1407   {
1408     case GNUNET_MESSAGE_TYPE_CADET_DATA:
1409     case GNUNET_MESSAGE_TYPE_CADET_DATA_ACK:
1410       if (GNUNET_MESSAGE_TYPE_CADET_DATA == type)
1411         mid = ntohl (((struct GNUNET_CADET_Data *) message)->mid);
1412       else
1413         mid = ntohl (((struct GNUNET_CADET_DataACK *) message)->mid);
1414       /* Fall thru */
1415     case GNUNET_MESSAGE_TYPE_CADET_KEEPALIVE:
1416     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_CREATE:
1417     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY:
1418     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_ACK:
1419     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_NACK:
1420       break;
1421     default:
1422       GNUNET_break (0);
1423       LOG (GNUNET_ERROR_TYPE_ERROR, "type %s not valid\n", GC_m2s (type));
1424   }
1425   LOG (GNUNET_ERROR_TYPE_DEBUG, "type %s\n", GC_m2s (type));
1426
1427   fwd = GCC_is_origin (c, GNUNET_YES);
1428
1429   if (NULL == cont)
1430   {
1431     GNUNET_break (NULL == GCC_send_prebuilt_message (msg, type, mid, c, fwd,
1432                                                      force, NULL, NULL));
1433     return NULL;
1434   }
1435   if (NULL == existing_q)
1436   {
1437     tq = GNUNET_new (struct CadetTunnelQueue); /* FIXME valgrind: leak*/
1438   }
1439   else
1440   {
1441     tq = existing_q;
1442     tq->tqd = NULL;
1443   }
1444   tq->cq = GCC_send_prebuilt_message (msg, type, mid, c, fwd, force,
1445                                       &tun_message_sent, tq);
1446   GNUNET_assert (NULL != tq->cq);
1447   tq->cont = cont;
1448   tq->cont_cls = cont_cls;
1449
1450   return tq;
1451 }
1452
1453
1454 /**
1455  * Send all cached messages that we can, tunnel is online.
1456  *
1457  * @param t Tunnel that holds the messages. Cannot be loopback.
1458  */
1459 static void
1460 send_queued_data (struct CadetTunnel *t)
1461 {
1462   struct CadetTunnelDelayed *tqd;
1463   struct CadetTunnelDelayed *next;
1464   unsigned int room;
1465
1466   LOG (GNUNET_ERROR_TYPE_INFO, "Send queued data, tunnel %s\n", GCT_2s (t));
1467
1468   if (GCT_is_loopback (t))
1469   {
1470     GNUNET_break (0);
1471     return;
1472   }
1473
1474   if (GNUNET_NO == is_ready (t))
1475   {
1476     LOG (GNUNET_ERROR_TYPE_WARNING, "  not ready yet: %s/%s\n",
1477          estate2s (t->estate), cstate2s (t->cstate));
1478     return;
1479   }
1480
1481   room = GCT_get_connections_buffer (t);
1482   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer space: %u\n", room);
1483   LOG (GNUNET_ERROR_TYPE_DEBUG, "  tq head: %p\n", t->tq_head);
1484   for (tqd = t->tq_head; NULL != tqd && room > 0; tqd = next)
1485   {
1486     LOG (GNUNET_ERROR_TYPE_DEBUG, " sending queued data\n");
1487     next = tqd->next;
1488     room--;
1489     send_prebuilt_message ((struct GNUNET_MessageHeader *) &tqd[1],
1490                            tqd->t, NULL, GNUNET_YES,
1491                            NULL != tqd->tq ? tqd->tq->cont : NULL,
1492                            NULL != tqd->tq ? tqd->tq->cont_cls : NULL,
1493                            tqd->tq);
1494     unqueue_data (tqd);
1495   }
1496   LOG (GNUNET_ERROR_TYPE_DEBUG, "GCT_send_queued_data end\n", GCP_2s (t->peer));
1497 }
1498
1499
1500 /**
1501  * @brief Resend the AX KX until we complete the handshake.
1502  *
1503  * @param cls Closure (tunnel).
1504  */
1505 static void
1506 ax_kx_resend (void *cls)
1507 {
1508   struct CadetTunnel *t = cls;
1509
1510   t->rekey_task = NULL;
1511   if (CADET_TUNNEL_KEY_OK == t->estate)
1512   {
1513     /* Should have been canceled on estate change */
1514     GNUNET_break (0);
1515     return;
1516   }
1517
1518   GCT_send_ax_kx (t, CADET_TUNNEL_KEY_SENT >= t->estate);
1519 }
1520
1521
1522 /**
1523  * Callback called when a queued message is sent.
1524  *
1525  * @param cls Closure.
1526  * @param c Connection this message was on.
1527  * @param type Type of message sent.
1528  * @param fwd Was this a FWD going message?
1529  * @param size Size of the message.
1530  */
1531 static void
1532 ephm_sent (void *cls,
1533            struct CadetConnection *c,
1534            struct CadetConnectionQueue *q,
1535            uint16_t type, int fwd, size_t size)
1536 {
1537   struct CadetTunnel *t = cls;
1538   LOG (GNUNET_ERROR_TYPE_DEBUG, "ephemeral sent %s\n", GC_m2s (type));
1539
1540   t->ephm_h = NULL;
1541
1542   if (CADET_TUNNEL_KEY_OK == t->estate)
1543     return;
1544
1545   if (CADET_Axolotl == t->enc_type)
1546   {
1547     if (NULL != t->rekey_task)
1548     {
1549       GNUNET_break (0);
1550       GCT_debug (t, GNUNET_ERROR_TYPE_WARNING);
1551       GNUNET_SCHEDULER_cancel (t->rekey_task);
1552     }
1553     t->rekey_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
1554                                                   &ax_kx_resend, t);
1555   }
1556 }
1557
1558
1559 /**
1560  * Sends key exchange message on a tunnel, choosing the best connection.
1561  * Should not be called on loopback tunnels.
1562  *
1563  * @param t Tunnel on which this message is transmitted.
1564  * @param message Message to send. Function modifies it.
1565  *
1566  * @return Handle to the message in the connection queue.
1567  */
1568 static struct CadetConnectionQueue *
1569 send_kx (struct CadetTunnel *t,
1570          const struct GNUNET_MessageHeader *message)
1571 {
1572   struct CadetConnection *c;
1573   struct GNUNET_CADET_KX *msg;
1574   size_t size = ntohs (message->size);
1575   char cbuf[sizeof (struct GNUNET_CADET_KX) + size];
1576   uint16_t type;
1577   int fwd;
1578   GCC_sent cont;
1579
1580   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMT KX on Tunnel %s\n", GCT_2s (t));
1581
1582   /* Avoid loopback. */
1583   if (GCT_is_loopback (t))
1584   {
1585     GNUNET_break (0);
1586     return NULL;
1587   }
1588   type = ntohs (message->type);
1589
1590   /* Even if tunnel is "being destroyed", send anyway.
1591    * Could be a response to a rekey initiated by remote peer,
1592    * who is trying to create a new channel!
1593    */
1594
1595   /* Must have a connection, or be looking for one. */
1596   if (NULL == t->connection_head)
1597   {
1598     LOG (GNUNET_ERROR_TYPE_DEBUG, "%s with no connection\n", GC_m2s (type));
1599     if (CADET_TUNNEL_SEARCHING != t->cstate)
1600     {
1601       GNUNET_break (0);
1602       GCT_debug (t, GNUNET_ERROR_TYPE_ERROR);
1603     }
1604     return NULL;
1605   }
1606
1607   msg = (struct GNUNET_CADET_KX *) cbuf;
1608   msg->header.type = htons (GNUNET_MESSAGE_TYPE_CADET_KX);
1609   msg->header.size = htons (sizeof (struct GNUNET_CADET_KX) + size);
1610   c = tunnel_get_connection (t);
1611   if (NULL == c)
1612   {
1613     if (NULL == t->destroy_task && CADET_TUNNEL_READY == t->cstate)
1614     {
1615       GNUNET_break (0);
1616       GCT_debug (t, GNUNET_ERROR_TYPE_ERROR);
1617     }
1618     return NULL;
1619   }
1620   switch (type)
1621   {
1622     case GNUNET_MESSAGE_TYPE_CADET_AX_KX:
1623       GNUNET_assert (NULL == t->ephm_h);
1624       cont = &ephm_sent;
1625       break;
1626     default:
1627       LOG (GNUNET_ERROR_TYPE_DEBUG, "unkown type %s\n", GC_m2s (type));
1628       GNUNET_assert (0);
1629   }
1630   GNUNET_memcpy (&msg[1], message, size);
1631
1632   fwd = GCC_is_origin (c, GNUNET_YES);
1633
1634   return GCC_send_prebuilt_message (&msg->header, type, 0, c,
1635                                     fwd, GNUNET_YES,
1636                                     cont, t);
1637 }
1638
1639
1640 /**
1641  * Called only on shutdown, destroy every tunnel.
1642  *
1643  * @param cls Closure (unused).
1644  * @param key Current public key.
1645  * @param value Value in the hash map (tunnel).
1646  *
1647  * @return #GNUNET_YES, so we should continue to iterate,
1648  */
1649 static int
1650 destroy_iterator (void *cls,
1651                 const struct GNUNET_PeerIdentity *key,
1652                 void *value)
1653 {
1654   struct CadetTunnel *t = value;
1655
1656   LOG (GNUNET_ERROR_TYPE_DEBUG,
1657        "GCT_shutdown destroying tunnel at %p\n", t);
1658   GCT_destroy (t);
1659   return GNUNET_YES;
1660 }
1661
1662
1663 /**
1664  * Notify remote peer that we don't know a channel he is talking about,
1665  * probably CHANNEL_DESTROY was missed.
1666  *
1667  * @param t Tunnel on which to notify.
1668  * @param gid ID of the channel.
1669  */
1670 static void
1671 send_channel_destroy (struct CadetTunnel *t, unsigned int gid)
1672 {
1673   struct GNUNET_CADET_ChannelManage msg;
1674
1675   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY);
1676   msg.header.size = htons (sizeof (msg));
1677   msg.chid = htonl (gid);
1678
1679   LOG (GNUNET_ERROR_TYPE_DEBUG,
1680        "WARNING destroying unknown channel %u on tunnel %s\n",
1681        gid, GCT_2s (t));
1682   send_prebuilt_message (&msg.header, t, NULL, GNUNET_YES, NULL, NULL, NULL);
1683 }
1684
1685
1686 /**
1687  * Demultiplex data per channel and call appropriate channel handler.
1688  *
1689  * @param t Tunnel on which the data came.
1690  * @param msg Data message.
1691  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1692  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1693  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1694  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1695  */
1696 static void
1697 handle_data (struct CadetTunnel *t,
1698              const struct GNUNET_CADET_Data *msg,
1699              int fwd)
1700 {
1701   struct CadetChannel *ch;
1702   char buf[128];
1703   size_t size;
1704   uint16_t type;
1705
1706   /* Check size */
1707   size = ntohs (msg->header.size);
1708   if (size <
1709       sizeof (struct GNUNET_CADET_Data) +
1710       sizeof (struct GNUNET_MessageHeader))
1711   {
1712     GNUNET_break (0);
1713     return;
1714   }
1715   type = ntohs (msg[1].header.type);
1716   LOG (GNUNET_ERROR_TYPE_DEBUG, " payload of type %s\n", GC_m2s (type));
1717   SPRINTF (buf, "# received payload of type %hu", type);
1718   GNUNET_STATISTICS_update (stats, buf, 1, GNUNET_NO);
1719
1720
1721   /* Check channel */
1722   ch = GCT_get_channel (t, ntohl (msg->chid));
1723   if (NULL == ch)
1724   {
1725     GNUNET_STATISTICS_update (stats, "# data on unknown channel",
1726                               1, GNUNET_NO);
1727     LOG (GNUNET_ERROR_TYPE_DEBUG, "channel 0x%X unknown\n", ntohl (msg->chid));
1728     send_channel_destroy (t, ntohl (msg->chid));
1729     return;
1730   }
1731
1732   GCCH_handle_data (ch, msg, fwd);
1733 }
1734
1735
1736 /**
1737  * Demultiplex data ACKs per channel and update appropriate channel buffer info.
1738  *
1739  * @param t Tunnel on which the DATA ACK came.
1740  * @param msg DATA ACK message.
1741  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1742  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1743  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1744  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1745  */
1746 static void
1747 handle_data_ack (struct CadetTunnel *t,
1748                  const struct GNUNET_CADET_DataACK *msg,
1749                  int fwd)
1750 {
1751   struct CadetChannel *ch;
1752   size_t size;
1753
1754   /* Check size */
1755   size = ntohs (msg->header.size);
1756   if (size != sizeof (struct GNUNET_CADET_DataACK))
1757   {
1758     GNUNET_break (0);
1759     return;
1760   }
1761
1762   /* Check channel */
1763   ch = GCT_get_channel (t, ntohl (msg->chid));
1764   if (NULL == ch)
1765   {
1766     GNUNET_STATISTICS_update (stats, "# data ack on unknown channel",
1767                               1, GNUNET_NO);
1768     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1769          ntohl (msg->chid));
1770     return;
1771   }
1772
1773   GCCH_handle_data_ack (ch, msg, fwd);
1774 }
1775
1776
1777 /**
1778  * Handle channel create.
1779  *
1780  * @param t Tunnel on which the message came.
1781  * @param msg ChannelCreate message.
1782  */
1783 static void
1784 handle_ch_create (struct CadetTunnel *t,
1785                   const struct GNUNET_CADET_ChannelCreate *msg)
1786 {
1787   struct CadetChannel *ch;
1788   size_t size;
1789
1790   /* Check size */
1791   size = ntohs (msg->header.size);
1792   if (size != sizeof (struct GNUNET_CADET_ChannelCreate))
1793   {
1794     GNUNET_break_op (0);
1795     return;
1796   }
1797
1798   /* Check channel */
1799   ch = GCT_get_channel (t, ntohl (msg->chid));
1800   if (NULL != ch && ! GCT_is_loopback (t))
1801   {
1802     /* Probably a retransmission, safe to ignore */
1803     LOG (GNUNET_ERROR_TYPE_DEBUG, "   already exists...\n");
1804   }
1805   ch = GCCH_handle_create (t, msg);
1806   if (NULL != ch)
1807     GCT_add_channel (t, ch);
1808 }
1809
1810
1811
1812 /**
1813  * Handle channel NACK: check correctness and call channel handler for NACKs.
1814  *
1815  * @param t Tunnel on which the NACK came.
1816  * @param msg NACK message.
1817  */
1818 static void
1819 handle_ch_nack (struct CadetTunnel *t,
1820                 const struct GNUNET_CADET_ChannelManage *msg)
1821 {
1822   struct CadetChannel *ch;
1823   size_t size;
1824
1825   /* Check size */
1826   size = ntohs (msg->header.size);
1827   if (size != sizeof (struct GNUNET_CADET_ChannelManage))
1828   {
1829     GNUNET_break (0);
1830     return;
1831   }
1832
1833   /* Check channel */
1834   ch = GCT_get_channel (t, ntohl (msg->chid));
1835   if (NULL == ch)
1836   {
1837     GNUNET_STATISTICS_update (stats, "# channel NACK on unknown channel",
1838                               1, GNUNET_NO);
1839     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1840          ntohl (msg->chid));
1841     return;
1842   }
1843
1844   GCCH_handle_nack (ch);
1845 }
1846
1847
1848 /**
1849  * Handle a CHANNEL ACK (SYNACK/ACK).
1850  *
1851  * @param t Tunnel on which the CHANNEL ACK came.
1852  * @param msg CHANNEL ACK message.
1853  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1854  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1855  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1856  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1857  */
1858 static void
1859 handle_ch_ack (struct CadetTunnel *t,
1860                const struct GNUNET_CADET_ChannelManage *msg,
1861                int fwd)
1862 {
1863   struct CadetChannel *ch;
1864   size_t size;
1865
1866   /* Check size */
1867   size = ntohs (msg->header.size);
1868   if (size != sizeof (struct GNUNET_CADET_ChannelManage))
1869   {
1870     GNUNET_break (0);
1871     return;
1872   }
1873
1874   /* Check channel */
1875   ch = GCT_get_channel (t, ntohl (msg->chid));
1876   if (NULL == ch)
1877   {
1878     GNUNET_STATISTICS_update (stats, "# channel ack on unknown channel",
1879                               1, GNUNET_NO);
1880     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1881          ntohl (msg->chid));
1882     return;
1883   }
1884
1885   GCCH_handle_ack (ch, msg, fwd);
1886 }
1887
1888
1889 /**
1890  * Handle a channel destruction message.
1891  *
1892  * @param t Tunnel on which the message came.
1893  * @param msg Channel destroy message.
1894  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1895  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1896  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1897  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1898  */
1899 static void
1900 handle_ch_destroy (struct CadetTunnel *t,
1901                    const struct GNUNET_CADET_ChannelManage *msg,
1902                    int fwd)
1903 {
1904   struct CadetChannel *ch;
1905   size_t size;
1906
1907   /* Check size */
1908   size = ntohs (msg->header.size);
1909   if (size != sizeof (struct GNUNET_CADET_ChannelManage))
1910   {
1911     GNUNET_break (0);
1912     return;
1913   }
1914
1915   /* Check channel */
1916   ch = GCT_get_channel (t, ntohl (msg->chid));
1917   if (NULL == ch)
1918   {
1919     /* Probably a retransmission, safe to ignore */
1920     return;
1921   }
1922
1923   GCCH_handle_destroy (ch, msg, fwd);
1924 }
1925
1926
1927 /**
1928  * Free Axolotl data.
1929  *
1930  * @param t Tunnel.
1931  */
1932 static void
1933 destroy_ax (struct CadetTunnel *t)
1934 {
1935   if (NULL == t->ax)
1936     return;
1937
1938   GNUNET_free_non_null (t->ax->DHRs);
1939   GNUNET_free_non_null (t->ax->kx_0);
1940   while (NULL != t->ax->skipped_head)
1941     delete_skipped_key (t, t->ax->skipped_head);
1942   GNUNET_assert (0 == t->ax->skipped);
1943
1944   GNUNET_free (t->ax);
1945   t->ax = NULL;
1946
1947   if (NULL != t->rekey_task)
1948   {
1949     GNUNET_SCHEDULER_cancel (t->rekey_task);
1950     t->rekey_task = NULL;
1951   }
1952   if (NULL != t->ephm_h)
1953   {
1954     GCC_cancel (t->ephm_h);
1955     t->ephm_h = NULL;
1956   }
1957 }
1958
1959
1960 /**
1961  * Handle Axolotl handshake.
1962  *
1963  * @param t Tunnel this message came on.
1964  * @param msg Key eXchange Pong message.
1965  */
1966 static void
1967 handle_kx_ax (struct CadetTunnel *t, const struct GNUNET_CADET_AX_KX *msg)
1968 {
1969   struct CadetTunnelAxolotl *ax;
1970   struct GNUNET_HashCode key_material[3];
1971   struct GNUNET_CRYPTO_SymmetricSessionKey keys[5];
1972   const char salt[] = "CADET Axolotl salt";
1973   const struct GNUNET_PeerIdentity *pid;
1974   int am_I_alice;
1975
1976   LOG (GNUNET_ERROR_TYPE_INFO, "<== {     AX_KX} on %s\n", GCT_2s (t));
1977
1978   if (NULL == t->ax)
1979   {
1980     /* Something is wrong if ax is NULL. Whose fault it is? */
1981     GNUNET_break (CADET_Axolotl == t->enc_type);
1982     return;
1983   }
1984   ax = t->ax;
1985
1986   pid = GCT_get_destination (t);
1987   if (0 > GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, pid))
1988     am_I_alice = GNUNET_YES;
1989   else if (0 < GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, pid))
1990     am_I_alice = GNUNET_NO;
1991   else
1992   {
1993     GNUNET_break_op (0);
1994     return;
1995   }
1996
1997   if (0 != (GNUNET_CADET_AX_KX_FLAG_FORCE_REPLY & ntohl (msg->flags)))
1998   {
1999     if (NULL != t->rekey_task)
2000     {
2001       GNUNET_SCHEDULER_cancel (t->rekey_task);
2002       t->rekey_task = NULL;
2003     }
2004     GCT_send_ax_kx (t, GNUNET_NO);
2005   }
2006
2007   if (0 == memcmp (&ax->DHRr, &msg->ratchet_key, sizeof(msg->ratchet_key)))
2008   {
2009     LOG (GNUNET_ERROR_TYPE_INFO, " known ratchet key, exit\n");
2010     return;
2011   }
2012
2013   LOG (GNUNET_ERROR_TYPE_INFO, " is Alice? %s\n", am_I_alice ? "YES" : "NO");
2014
2015   ax->DHRr = msg->ratchet_key;
2016
2017   /* ECDH A B0 */
2018   if (GNUNET_YES == am_I_alice)
2019   {
2020     GNUNET_CRYPTO_eddsa_ecdh (id_key,              /* A */
2021                               &msg->ephemeral_key, /* B0 */
2022                               &key_material[0]);
2023   }
2024   else
2025   {
2026     GNUNET_CRYPTO_ecdh_eddsa (ax->kx_0,            /* B0 */
2027                               &pid->public_key,    /* A */
2028                               &key_material[0]);
2029   }
2030
2031   /* ECDH A0 B */
2032   if (GNUNET_YES == am_I_alice)
2033   {
2034     GNUNET_CRYPTO_ecdh_eddsa (ax->kx_0,            /* A0 */
2035                               &pid->public_key,    /* B */
2036                               &key_material[1]);
2037   }
2038   else
2039   {
2040     GNUNET_CRYPTO_eddsa_ecdh (id_key,              /* A */
2041                               &msg->ephemeral_key, /* B0 */
2042                               &key_material[1]);
2043
2044
2045   }
2046
2047   /* ECDH A0 B0 */
2048   /* (This is the triple-DH, we could probably safely skip this,
2049      as A0/B0 are already in the key material.) */
2050   GNUNET_CRYPTO_ecc_ecdh (ax->kx_0,             /* A0 or B0 */
2051                           &msg->ephemeral_key,  /* B0 or A0 */
2052                           &key_material[2]);
2053
2054   #if DUMP_KEYS_TO_STDERR
2055   {
2056     unsigned int i;
2057     for (i = 0; i < 3; i++)
2058       LOG (GNUNET_ERROR_TYPE_INFO, "km[%u]: %s\n",
2059            i, GNUNET_h2s (&key_material[i]));
2060   }
2061   #endif
2062
2063   /* KDF */
2064   GNUNET_CRYPTO_kdf (keys, sizeof (keys),
2065                      salt, sizeof (salt),
2066                      &key_material, sizeof (key_material), NULL);
2067
2068   if (0 == memcmp (&ax->RK, &keys[0], sizeof(ax->RK)))
2069   {
2070     LOG (GNUNET_ERROR_TYPE_INFO, " known handshake key, exit\n");
2071     return;
2072   }
2073   ax->RK = keys[0];
2074   if (GNUNET_YES == am_I_alice)
2075   {
2076     ax->HKr = keys[1];
2077     ax->NHKs = keys[2];
2078     ax->NHKr = keys[3];
2079     ax->CKr = keys[4];
2080     ax->ratchet_flag = GNUNET_YES;
2081   }
2082   else
2083   {
2084     ax->HKs = keys[1];
2085     ax->NHKr = keys[2];
2086     ax->NHKs = keys[3];
2087     ax->CKs = keys[4];
2088     ax->ratchet_flag = GNUNET_NO;
2089     ax->ratchet_allowed = GNUNET_NO;
2090     ax->ratchet_counter = 0;
2091     ax->ratchet_expiration =
2092       GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(), ratchet_time);
2093   }
2094   ax->PNs = 0;
2095   ax->Nr = 0;
2096   ax->Ns = 0;
2097   GCT_change_estate (t, CADET_TUNNEL_KEY_PING);
2098   send_queued_data (t);
2099 }
2100
2101
2102 /**
2103  * Demultiplex by message type and call appropriate handler for a message
2104  * towards a channel of a local tunnel.
2105  *
2106  * @param t Tunnel this message came on.
2107  * @param msgh Message header.
2108  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
2109  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
2110  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
2111  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
2112  */
2113 static void
2114 handle_decrypted (struct CadetTunnel *t,
2115                   const struct GNUNET_MessageHeader *msgh,
2116                   int fwd)
2117 {
2118   uint16_t type;
2119   char buf[256];
2120
2121   type = ntohs (msgh->type);
2122   LOG (GNUNET_ERROR_TYPE_DEBUG, "<-- %s on %s\n", GC_m2s (type), GCT_2s (t));
2123   SPRINTF (buf, "# received encrypted of type %hu (%s)", type, GC_m2s (type));
2124   GNUNET_STATISTICS_update (stats, buf, 1, GNUNET_NO);
2125
2126   switch (type)
2127   {
2128     case GNUNET_MESSAGE_TYPE_CADET_KEEPALIVE:
2129       /* Do nothing, connection aleady got updated. */
2130       GNUNET_STATISTICS_update (stats, "# keepalives received", 1, GNUNET_NO);
2131       break;
2132
2133     case GNUNET_MESSAGE_TYPE_CADET_DATA:
2134       /* Don't send hop ACK, wait for client to ACK */
2135       handle_data (t, (struct GNUNET_CADET_Data *) msgh, fwd);
2136       break;
2137
2138     case GNUNET_MESSAGE_TYPE_CADET_DATA_ACK:
2139       handle_data_ack (t, (struct GNUNET_CADET_DataACK *) msgh, fwd);
2140       break;
2141
2142     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_CREATE:
2143       handle_ch_create (t, (struct GNUNET_CADET_ChannelCreate *) msgh);
2144       break;
2145
2146     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_NACK:
2147       handle_ch_nack (t, (struct GNUNET_CADET_ChannelManage *) msgh);
2148       break;
2149
2150     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_ACK:
2151       handle_ch_ack (t, (struct GNUNET_CADET_ChannelManage *) msgh, fwd);
2152       break;
2153
2154     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY:
2155       handle_ch_destroy (t, (struct GNUNET_CADET_ChannelManage *) msgh, fwd);
2156       break;
2157
2158     default:
2159       GNUNET_break_op (0);
2160       LOG (GNUNET_ERROR_TYPE_WARNING,
2161            "end-to-end message not known (%u)\n",
2162            ntohs (msgh->type));
2163       GCT_debug (t, GNUNET_ERROR_TYPE_WARNING);
2164   }
2165 }
2166
2167
2168 /******************************************************************************/
2169 /********************************    API    ***********************************/
2170 /******************************************************************************/
2171 /**
2172  * Decrypt old format and demultiplex by message type. Call appropriate handler
2173  * for a message towards a channel of a local tunnel.
2174  *
2175  * @param t Tunnel this message came on.
2176  * @param msg Message header.
2177  */
2178 void
2179 GCT_handle_encrypted (struct CadetTunnel *t,
2180                       const struct GNUNET_MessageHeader *msg)
2181 {
2182   uint16_t size = ntohs (msg->size);
2183   char cbuf [size];
2184   int decrypted_size;
2185   uint16_t type;
2186   const struct GNUNET_MessageHeader *msgh;
2187   unsigned int off;
2188
2189   type = ntohs (msg->type);
2190   switch (type)
2191   {
2192   case GNUNET_MESSAGE_TYPE_CADET_AX:
2193     {
2194       const struct GNUNET_CADET_AX *emsg;
2195
2196       GNUNET_STATISTICS_update (stats, "# received Axolotl", 1, GNUNET_NO);
2197       emsg = (const struct GNUNET_CADET_AX *) msg;
2198       decrypted_size = t_ax_decrypt_and_validate (t, cbuf, emsg, size);
2199     }
2200     break;
2201   default:
2202     GNUNET_break_op (0);
2203     return;
2204   }
2205
2206   if (-1 == decrypted_size)
2207   {
2208     GNUNET_break_op (0);
2209     GNUNET_STATISTICS_update (stats, "# unable to decrypt", 1, GNUNET_NO);
2210     LOG (GNUNET_ERROR_TYPE_WARNING, "Wrong crypto on tunnel %s\n", GCT_2s (t));
2211     GCT_debug (t, GNUNET_ERROR_TYPE_WARNING);
2212     return;
2213   }
2214   GCT_change_estate (t, CADET_TUNNEL_KEY_OK);
2215
2216   /* FIXME: this is bad, as the structs returned from
2217      this loop may be unaligned, see util's MST for
2218      how to do this right. */
2219   off = 0;
2220   while (off + sizeof (struct GNUNET_MessageHeader) <= decrypted_size)
2221   {
2222     uint16_t msize;
2223
2224     msgh = (const struct GNUNET_MessageHeader *) &cbuf[off];
2225     msize = ntohs (msgh->size);
2226     if (msize < sizeof (struct GNUNET_MessageHeader))
2227     {
2228       GNUNET_break_op (0);
2229       return;
2230     }
2231     if (off + msize < decrypted_size)
2232     {
2233       GNUNET_break_op (0);
2234       return;
2235     }
2236     handle_decrypted (t, msgh, GNUNET_SYSERR);
2237     off += msize;
2238   }
2239 }
2240
2241
2242 /**
2243  * Demultiplex an encapsulated KX message by message type.
2244  *
2245  * @param t Tunnel on which the message came.
2246  * @param message Payload of KX message.
2247  *
2248  * FIXME: not needed anymore
2249  *  - substitute with call to kx_ax
2250  *  - eliminate encapsulation
2251  */
2252 void
2253 GCT_handle_kx (struct CadetTunnel *t,
2254                const struct GNUNET_MessageHeader *message)
2255 {
2256   uint16_t type;
2257   char buf[256];
2258
2259   type = ntohs (message->type);
2260   LOG (GNUNET_ERROR_TYPE_DEBUG, "kx message received: %s\n", GC_m2s (type));
2261   sprintf (buf, "# received KX of type %hu (%s)", type, GC_m2s (type));
2262   GNUNET_STATISTICS_update (stats, buf, 1, GNUNET_NO);
2263   switch (type)
2264   {
2265     case GNUNET_MESSAGE_TYPE_CADET_AX_KX:
2266       handle_kx_ax (t, (const struct GNUNET_CADET_AX_KX *) message);
2267       break;
2268     default:
2269       GNUNET_break_op (0);
2270       LOG (GNUNET_ERROR_TYPE_WARNING, "kx message %s unknown\n", GC_m2s (type));
2271   }
2272 }
2273
2274 /**
2275  * Initialize the tunnel subsystem.
2276  *
2277  * @param c Configuration handle.
2278  * @param key ECC private key, to derive all other keys and do crypto.
2279  */
2280 void
2281 GCT_init (const struct GNUNET_CONFIGURATION_Handle *c,
2282           const struct GNUNET_CRYPTO_EddsaPrivateKey *key)
2283 {
2284   unsigned int expected_overhead;
2285
2286   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
2287
2288   expected_overhead = 0;
2289   expected_overhead += sizeof (struct GNUNET_CADET_AX);
2290   expected_overhead += sizeof (struct GNUNET_CADET_Data);
2291   expected_overhead += sizeof (struct GNUNET_CADET_ACK);
2292   GNUNET_assert (GNUNET_CONSTANTS_CADET_P2P_OVERHEAD == expected_overhead);
2293
2294   if (GNUNET_OK !=
2295       GNUNET_CONFIGURATION_get_value_number (c,
2296                                              "CADET",
2297                                              "RATCHET_MESSAGES",
2298                                              &ratchet_messages))
2299   {
2300     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
2301                                "CADET",
2302                                "RATCHET_MESSAGES",
2303                                "USING DEFAULT");
2304     ratchet_messages = 64;
2305   }
2306   if (GNUNET_OK !=
2307       GNUNET_CONFIGURATION_get_value_time (c,
2308                                            "CADET",
2309                                            "RATCHET_TIME",
2310                                            &ratchet_time))
2311   {
2312     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
2313                                "CADET", "RATCHET_TIME", "USING DEFAULT");
2314     ratchet_time = GNUNET_TIME_UNIT_HOURS;
2315   }
2316
2317
2318   id_key = key;
2319   tunnels = GNUNET_CONTAINER_multipeermap_create (128, GNUNET_YES);
2320 }
2321
2322
2323 /**
2324  * Shut down the tunnel subsystem.
2325  */
2326 void
2327 GCT_shutdown (void)
2328 {
2329   LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down tunnels\n");
2330   GNUNET_CONTAINER_multipeermap_iterate (tunnels, &destroy_iterator, NULL);
2331   GNUNET_CONTAINER_multipeermap_destroy (tunnels);
2332 }
2333
2334
2335 /**
2336  * Create a tunnel.
2337  *
2338  * @param destination Peer this tunnel is towards.
2339  */
2340 struct CadetTunnel *
2341 GCT_new (struct CadetPeer *destination)
2342 {
2343   struct CadetTunnel *t;
2344
2345   t = GNUNET_new (struct CadetTunnel);
2346   t->next_chid = 0;
2347   t->peer = destination;
2348
2349   if (GNUNET_OK !=
2350       GNUNET_CONTAINER_multipeermap_put (tunnels, GCP_get_id (destination), t,
2351                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2352   {
2353     GNUNET_break (0);
2354     GNUNET_free (t);
2355     return NULL;
2356   }
2357   t->ax = GNUNET_new (struct CadetTunnelAxolotl);
2358   new_ephemeral (t);
2359   t->ax->kx_0 = GNUNET_CRYPTO_ecdhe_key_create ();
2360   return t;
2361 }
2362
2363
2364 /**
2365  * Change the tunnel's connection state.
2366  *
2367  * @param t Tunnel whose connection state to change.
2368  * @param cstate New connection state.
2369  */
2370 void
2371 GCT_change_cstate (struct CadetTunnel* t, enum CadetTunnelCState cstate)
2372 {
2373   if (NULL == t)
2374     return;
2375   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s cstate %s => %s\n",
2376        GCP_2s (t->peer), cstate2s (t->cstate), cstate2s (cstate));
2377   if (myid != GCP_get_short_id (t->peer) &&
2378       CADET_TUNNEL_READY != t->cstate &&
2379       CADET_TUNNEL_READY == cstate)
2380   {
2381     t->cstate = cstate;
2382     if (CADET_TUNNEL_KEY_OK == t->estate)
2383     {
2384       LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered send queued data\n");
2385       send_queued_data (t);
2386     }
2387     else if (CADET_TUNNEL_KEY_UNINITIALIZED == t->estate)
2388     {
2389       LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered kx\n");
2390       GCT_send_ax_kx (t, GNUNET_NO);
2391     }
2392     else
2393     {
2394       LOG (GNUNET_ERROR_TYPE_DEBUG, "estate %s\n", estate2s (t->estate));
2395     }
2396   }
2397   t->cstate = cstate;
2398
2399   if (CADET_TUNNEL_READY == cstate
2400       && CONNECTIONS_PER_TUNNEL <= GCT_count_connections (t))
2401   {
2402     LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered stop dht\n");
2403     GCP_stop_search (t->peer);
2404   }
2405 }
2406
2407
2408 /**
2409  * Change the tunnel encryption state.
2410  *
2411  * If the encryption state changes to OK, stop the rekey task.
2412  *
2413  * @param t Tunnel whose encryption state to change, or NULL.
2414  * @param state New encryption state.
2415  */
2416 void
2417 GCT_change_estate (struct CadetTunnel* t, enum CadetTunnelEState state)
2418 {
2419   enum CadetTunnelEState old;
2420
2421   if (NULL == t)
2422     return;
2423
2424   old = t->estate;
2425   t->estate = state;
2426   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s estate was %s\n",
2427        GCP_2s (t->peer), estate2s (old));
2428   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s estate is now %s\n",
2429        GCP_2s (t->peer), estate2s (t->estate));
2430
2431   if (CADET_TUNNEL_KEY_OK != old && CADET_TUNNEL_KEY_OK == t->estate)
2432   {
2433     if (NULL != t->rekey_task)
2434     {
2435       GNUNET_SCHEDULER_cancel (t->rekey_task);
2436       t->rekey_task = NULL;
2437     }
2438     /* Send queued data if tunnel is not loopback */
2439     if (myid != GCP_get_short_id (t->peer))
2440       send_queued_data (t);
2441   }
2442 }
2443
2444
2445 /**
2446  * @brief Check if tunnel has too many connections, and remove one if necessary.
2447  *
2448  * Currently this means the newest connection, unless it is a direct one.
2449  * Implemented as a task to avoid freeing a connection that is in the middle
2450  * of being created/processed.
2451  *
2452  * @param cls Closure (Tunnel to check).
2453  */
2454 static void
2455 trim_connections (void *cls)
2456 {
2457   struct CadetTunnel *t = cls;
2458
2459   t->trim_connections_task = NULL;
2460   if (GCT_count_connections (t) > 2 * CONNECTIONS_PER_TUNNEL)
2461   {
2462     struct CadetTConnection *iter;
2463     struct CadetTConnection *c;
2464
2465     for (c = iter = t->connection_head; NULL != iter; iter = iter->next)
2466     {
2467       if ((iter->created.abs_value_us > c->created.abs_value_us)
2468           && GNUNET_NO == GCC_is_direct (iter->c))
2469       {
2470         c = iter;
2471       }
2472     }
2473     if (NULL != c)
2474     {
2475       LOG (GNUNET_ERROR_TYPE_DEBUG, "Too many connections on tunnel %s\n",
2476            GCT_2s (t));
2477       LOG (GNUNET_ERROR_TYPE_DEBUG, "Destroying connection %s\n",
2478            GCC_2s (c->c));
2479       GCC_destroy (c->c);
2480     }
2481     else
2482     {
2483       GNUNET_break (0);
2484     }
2485   }
2486 }
2487
2488
2489 /**
2490  * Add a connection to a tunnel.
2491  *
2492  * @param t Tunnel.
2493  * @param c Connection.
2494  */
2495 void
2496 GCT_add_connection (struct CadetTunnel *t, struct CadetConnection *c)
2497 {
2498   struct CadetTConnection *aux;
2499
2500   GNUNET_assert (NULL != c);
2501
2502   LOG (GNUNET_ERROR_TYPE_DEBUG, "add connection %s\n", GCC_2s (c));
2503   LOG (GNUNET_ERROR_TYPE_DEBUG, " to tunnel %s\n", GCT_2s (t));
2504   for (aux = t->connection_head; aux != NULL; aux = aux->next)
2505     if (aux->c == c)
2506       return;
2507
2508   aux = GNUNET_new (struct CadetTConnection);
2509   aux->c = c;
2510   aux->created = GNUNET_TIME_absolute_get ();
2511
2512   GNUNET_CONTAINER_DLL_insert (t->connection_head, t->connection_tail, aux);
2513
2514   if (CADET_TUNNEL_SEARCHING == t->cstate)
2515     GCT_change_cstate (t, CADET_TUNNEL_WAITING);
2516
2517   if (NULL != t->trim_connections_task)
2518     t->trim_connections_task = GNUNET_SCHEDULER_add_now (&trim_connections, t);
2519 }
2520
2521
2522 /**
2523  * Remove a connection from a tunnel.
2524  *
2525  * @param t Tunnel.
2526  * @param c Connection.
2527  */
2528 void
2529 GCT_remove_connection (struct CadetTunnel *t,
2530                        struct CadetConnection *c)
2531 {
2532   struct CadetTConnection *aux;
2533   struct CadetTConnection *next;
2534   unsigned int conns;
2535
2536   LOG (GNUNET_ERROR_TYPE_DEBUG, "Removing connection %s from tunnel %s\n",
2537        GCC_2s (c), GCT_2s (t));
2538   for (aux = t->connection_head; aux != NULL; aux = next)
2539   {
2540     next = aux->next;
2541     if (aux->c == c)
2542     {
2543       GNUNET_CONTAINER_DLL_remove (t->connection_head, t->connection_tail, aux);
2544       GNUNET_free (aux);
2545     }
2546   }
2547
2548   conns = GCT_count_connections (t);
2549   if (0 == conns
2550       && NULL == t->destroy_task
2551       && CADET_TUNNEL_SHUTDOWN != t->cstate
2552       && GNUNET_NO == shutting_down)
2553   {
2554     if (0 == GCT_count_any_connections (t))
2555       GCT_change_cstate (t, CADET_TUNNEL_SEARCHING);
2556     else
2557       GCT_change_cstate (t, CADET_TUNNEL_WAITING);
2558   }
2559
2560   /* Start new connections if needed */
2561   if (CONNECTIONS_PER_TUNNEL > conns
2562       && CADET_TUNNEL_SHUTDOWN != t->cstate
2563       && GNUNET_NO == shutting_down)
2564   {
2565     LOG (GNUNET_ERROR_TYPE_DEBUG, "  too few connections, getting new ones\n");
2566     GCP_connect (t->peer); /* Will change cstate to WAITING when possible */
2567     return;
2568   }
2569
2570   /* If not marked as ready, no change is needed */
2571   if (CADET_TUNNEL_READY != t->cstate)
2572     return;
2573
2574   /* Check if any connection is ready to maintain cstate */
2575   for (aux = t->connection_head; aux != NULL; aux = aux->next)
2576     if (CADET_CONNECTION_READY == GCC_get_state (aux->c))
2577       return;
2578 }
2579
2580
2581 /**
2582  * Add a channel to a tunnel.
2583  *
2584  * @param t Tunnel.
2585  * @param ch Channel.
2586  */
2587 void
2588 GCT_add_channel (struct CadetTunnel *t, struct CadetChannel *ch)
2589 {
2590   struct CadetTChannel *aux;
2591
2592   GNUNET_assert (NULL != ch);
2593
2594   LOG (GNUNET_ERROR_TYPE_DEBUG, "Adding channel %p to tunnel %p\n", ch, t);
2595
2596   for (aux = t->channel_head; aux != NULL; aux = aux->next)
2597   {
2598     LOG (GNUNET_ERROR_TYPE_DEBUG, "  already there %p\n", aux->ch);
2599     if (aux->ch == ch)
2600       return;
2601   }
2602
2603   aux = GNUNET_new (struct CadetTChannel);
2604   aux->ch = ch;
2605   LOG (GNUNET_ERROR_TYPE_DEBUG,
2606        " adding %p to %p\n", aux, t->channel_head);
2607   GNUNET_CONTAINER_DLL_insert_tail (t->channel_head,
2608                                     t->channel_tail,
2609                                     aux);
2610
2611   if (NULL != t->destroy_task)
2612   {
2613     GNUNET_SCHEDULER_cancel (t->destroy_task);
2614     t->destroy_task = NULL;
2615     LOG (GNUNET_ERROR_TYPE_DEBUG, " undo destroy!\n");
2616   }
2617 }
2618
2619
2620 /**
2621  * Remove a channel from a tunnel.
2622  *
2623  * @param t Tunnel.
2624  * @param ch Channel.
2625  */
2626 void
2627 GCT_remove_channel (struct CadetTunnel *t, struct CadetChannel *ch)
2628 {
2629   struct CadetTChannel *aux;
2630
2631   LOG (GNUNET_ERROR_TYPE_DEBUG, "Removing channel %p from tunnel %p\n", ch, t);
2632   for (aux = t->channel_head; aux != NULL; aux = aux->next)
2633   {
2634     if (aux->ch == ch)
2635     {
2636       LOG (GNUNET_ERROR_TYPE_DEBUG, " found! %s\n", GCCH_2s (ch));
2637       GNUNET_CONTAINER_DLL_remove (t->channel_head,
2638                                    t->channel_tail,
2639                                    aux);
2640       GNUNET_free (aux);
2641       return;
2642     }
2643   }
2644 }
2645
2646
2647 /**
2648  * Search for a channel by global ID.
2649  *
2650  * @param t Tunnel containing the channel.
2651  * @param chid Public channel number.
2652  *
2653  * @return channel handler, NULL if doesn't exist
2654  */
2655 struct CadetChannel *
2656 GCT_get_channel (struct CadetTunnel *t, CADET_ChannelNumber chid)
2657 {
2658   struct CadetTChannel *iter;
2659
2660   if (NULL == t)
2661     return NULL;
2662
2663   for (iter = t->channel_head; NULL != iter; iter = iter->next)
2664   {
2665     if (GCCH_get_id (iter->ch) == chid)
2666       break;
2667   }
2668
2669   return NULL == iter ? NULL : iter->ch;
2670 }
2671
2672
2673 /**
2674  * @brief Destroy a tunnel and free all resources.
2675  *
2676  * Should only be called a while after the tunnel has been marked as destroyed,
2677  * in case there is a new channel added to the same peer shortly after marking
2678  * the tunnel. This way we avoid a new public key handshake.
2679  *
2680  * @param cls Closure (tunnel to destroy).
2681  */
2682 static void
2683 delayed_destroy (void *cls)
2684 {
2685   struct CadetTunnel *t = cls;
2686   struct CadetTConnection *iter;
2687
2688   t->destroy_task = NULL;
2689   LOG (GNUNET_ERROR_TYPE_DEBUG,
2690        "delayed destroying tunnel %p\n",
2691        t);
2692   t->cstate = CADET_TUNNEL_SHUTDOWN;
2693   for (iter = t->connection_head; NULL != iter; iter = iter->next)
2694   {
2695     GCC_send_destroy (iter->c);
2696   }
2697   GCT_destroy (t);
2698 }
2699
2700
2701 /**
2702  * Tunnel is empty: destroy it.
2703  *
2704  * Notifies all connections about the destruction.
2705  *
2706  * @param t Tunnel to destroy.
2707  */
2708 void
2709 GCT_destroy_empty (struct CadetTunnel *t)
2710 {
2711   if (GNUNET_YES == shutting_down)
2712     return; /* Will be destroyed immediately anyway */
2713
2714   if (NULL != t->destroy_task)
2715   {
2716     LOG (GNUNET_ERROR_TYPE_WARNING,
2717          "Tunnel %s is already scheduled for destruction. Tunnel debug dump:\n",
2718          GCT_2s (t));
2719     GCT_debug (t, GNUNET_ERROR_TYPE_WARNING);
2720     GNUNET_break (0);
2721     /* should never happen, tunnel can only become empty once, and the
2722      * task identifier should be NO_TASK (cleaned when the tunnel was created
2723      * or became un-empty)
2724      */
2725     return;
2726   }
2727
2728   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s empty: scheduling destruction\n",
2729        GCT_2s (t));
2730
2731   // FIXME make delay a config option
2732   t->destroy_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
2733                                                   &delayed_destroy, t);
2734   LOG (GNUNET_ERROR_TYPE_DEBUG, "Scheduled destroy of %p as %p\n",
2735        t, t->destroy_task);
2736 }
2737
2738
2739 /**
2740  * Destroy tunnel if empty (no more channels).
2741  *
2742  * @param t Tunnel to destroy if empty.
2743  */
2744 void
2745 GCT_destroy_if_empty (struct CadetTunnel *t)
2746 {
2747   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s destroy if empty\n", GCT_2s (t));
2748   if (0 < GCT_count_channels (t))
2749     return;
2750
2751   GCT_destroy_empty (t);
2752 }
2753
2754
2755 /**
2756  * Destroy the tunnel.
2757  *
2758  * This function does not generate any warning traffic to clients or peers.
2759  *
2760  * Tasks:
2761  * Cancel messages belonging to this tunnel queued to neighbors.
2762  * Free any allocated resources linked to the tunnel.
2763  *
2764  * @param t The tunnel to destroy.
2765  */
2766 void
2767 GCT_destroy (struct CadetTunnel *t)
2768 {
2769   struct CadetTConnection *iter_c;
2770   struct CadetTConnection *next_c;
2771   struct CadetTChannel *iter_ch;
2772   struct CadetTChannel *next_ch;
2773   unsigned int keepalives_queued;
2774
2775   if (NULL == t)
2776     return;
2777
2778   LOG (GNUNET_ERROR_TYPE_DEBUG,
2779        "destroying tunnel %s\n",
2780        GCP_2s (t->peer));
2781   GNUNET_break (GNUNET_YES ==
2782                 GNUNET_CONTAINER_multipeermap_remove (tunnels,
2783                                                       GCP_get_id (t->peer), t));
2784
2785   for (iter_c = t->connection_head; NULL != iter_c; iter_c = next_c)
2786   {
2787     next_c = iter_c->next;
2788     GCC_destroy (iter_c->c);
2789   }
2790   for (iter_ch = t->channel_head; NULL != iter_ch; iter_ch = next_ch)
2791   {
2792     next_ch = iter_ch->next;
2793     GCCH_destroy (iter_ch->ch);
2794     /* Should only happen on shutdown, but it's ok. */
2795   }
2796   keepalives_queued = 0;
2797   while (NULL != t->tq_head)
2798   {
2799     /* Should have been cleaned by destuction of channel. */
2800     struct GNUNET_MessageHeader *mh;
2801     uint16_t type;
2802
2803     mh = (struct GNUNET_MessageHeader *) &t->tq_head[1];
2804     type = ntohs (mh->type);
2805     if (0 == keepalives_queued && GNUNET_MESSAGE_TYPE_CADET_KEEPALIVE == type)
2806     {
2807       keepalives_queued = 1;
2808       LOG (GNUNET_ERROR_TYPE_DEBUG,
2809            "one keepalive left behind on tunnel shutdown\n");
2810     }
2811     else if (GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY == type)
2812     {
2813       LOG (GNUNET_ERROR_TYPE_WARNING,
2814            "tunnel destroyed before a CHANNEL_DESTROY was sent to peer\n");
2815     }
2816     else
2817     {
2818       GNUNET_break (0);
2819       LOG (GNUNET_ERROR_TYPE_ERROR,
2820            "message left behind on tunnel shutdown: %s\n",
2821            GC_m2s (type));
2822     }
2823     unqueue_data (t->tq_head);
2824   }
2825
2826
2827   if (NULL != t->destroy_task)
2828   {
2829     LOG (GNUNET_ERROR_TYPE_DEBUG,
2830          "cancelling dest: %p\n",
2831          t->destroy_task);
2832     GNUNET_SCHEDULER_cancel (t->destroy_task);
2833     t->destroy_task = NULL;
2834   }
2835
2836   if (NULL != t->trim_connections_task)
2837   {
2838     LOG (GNUNET_ERROR_TYPE_DEBUG, "cancelling trim: %p\n",
2839          t->trim_connections_task);
2840     GNUNET_SCHEDULER_cancel (t->trim_connections_task);
2841     t->trim_connections_task = NULL;
2842   }
2843
2844   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
2845   GCP_set_tunnel (t->peer, NULL);
2846
2847   if (NULL != t->rekey_task)
2848   {
2849     GNUNET_SCHEDULER_cancel (t->rekey_task);
2850     t->rekey_task = NULL;
2851   }
2852   if (NULL != t->ax)
2853     destroy_ax (t);
2854
2855   GNUNET_free (t);
2856 }
2857
2858
2859 /**
2860  * @brief Use the given path for the tunnel.
2861  * Update the next and prev hops (and RCs).
2862  * (Re)start the path refresh in case the tunnel is locally owned.
2863  *
2864  * @param t Tunnel to update.
2865  * @param p Path to use.
2866  *
2867  * @return Connection created.
2868  */
2869 struct CadetConnection *
2870 GCT_use_path (struct CadetTunnel *t, struct CadetPeerPath *path)
2871 {
2872   struct CadetConnection *c;
2873   struct GNUNET_CADET_Hash cid;
2874   unsigned int own_pos;
2875
2876   if (NULL == t || NULL == path)
2877   {
2878     GNUNET_break (0);
2879     return NULL;
2880   }
2881
2882   if (CADET_TUNNEL_SHUTDOWN == t->cstate)
2883   {
2884     GNUNET_break (0);
2885     return NULL;
2886   }
2887
2888   for (own_pos = 0; own_pos < path->length; own_pos++)
2889   {
2890     if (path->peers[own_pos] == myid)
2891       break;
2892   }
2893   if (own_pos >= path->length)
2894   {
2895     GNUNET_break_op (0);
2896     return NULL;
2897   }
2898
2899   GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_NONCE, &cid, sizeof (cid));
2900   c = GCC_new (&cid, t, path, own_pos);
2901   if (NULL == c)
2902   {
2903     /* Path was flawed */
2904     return NULL;
2905   }
2906   GCT_add_connection (t, c);
2907   return c;
2908 }
2909
2910
2911 /**
2912  * Count all created connections of a tunnel. Not necessarily ready connections!
2913  *
2914  * @param t Tunnel on which to count.
2915  *
2916  * @return Number of connections created, either being established or ready.
2917  */
2918 unsigned int
2919 GCT_count_any_connections (struct CadetTunnel *t)
2920 {
2921   struct CadetTConnection *iter;
2922   unsigned int count;
2923
2924   if (NULL == t)
2925     return 0;
2926
2927   for (count = 0, iter = t->connection_head; NULL != iter; iter = iter->next)
2928     count++;
2929
2930   return count;
2931 }
2932
2933
2934 /**
2935  * Count established (ready) connections of a tunnel.
2936  *
2937  * @param t Tunnel on which to count.
2938  *
2939  * @return Number of connections.
2940  */
2941 unsigned int
2942 GCT_count_connections (struct CadetTunnel *t)
2943 {
2944   struct CadetTConnection *iter;
2945   unsigned int count;
2946
2947   if (NULL == t)
2948     return 0;
2949
2950   for (count = 0, iter = t->connection_head; NULL != iter; iter = iter->next)
2951     if (CADET_CONNECTION_READY == GCC_get_state (iter->c))
2952       count++;
2953
2954   return count;
2955 }
2956
2957
2958 /**
2959  * Count channels of a tunnel.
2960  *
2961  * @param t Tunnel on which to count.
2962  *
2963  * @return Number of channels.
2964  */
2965 unsigned int
2966 GCT_count_channels (struct CadetTunnel *t)
2967 {
2968   struct CadetTChannel *iter;
2969   unsigned int count;
2970
2971   for (count = 0, iter = t->channel_head;
2972        NULL != iter;
2973        iter = iter->next, count++) /* skip */;
2974
2975   return count;
2976 }
2977
2978
2979 /**
2980  * Get the connectivity state of a tunnel.
2981  *
2982  * @param t Tunnel.
2983  *
2984  * @return Tunnel's connectivity state.
2985  */
2986 enum CadetTunnelCState
2987 GCT_get_cstate (struct CadetTunnel *t)
2988 {
2989   if (NULL == t)
2990   {
2991     GNUNET_assert (0);
2992     return (enum CadetTunnelCState) -1;
2993   }
2994   return t->cstate;
2995 }
2996
2997
2998 /**
2999  * Get the encryption state of a tunnel.
3000  *
3001  * @param t Tunnel.
3002  *
3003  * @return Tunnel's encryption state.
3004  */
3005 enum CadetTunnelEState
3006 GCT_get_estate (struct CadetTunnel *t)
3007 {
3008   if (NULL == t)
3009   {
3010     GNUNET_break (0);
3011     return (enum CadetTunnelEState) -1;
3012   }
3013   return t->estate;
3014 }
3015
3016 /**
3017  * Get the maximum buffer space for a tunnel towards a local client.
3018  *
3019  * @param t Tunnel.
3020  *
3021  * @return Biggest buffer space offered by any channel in the tunnel.
3022  */
3023 unsigned int
3024 GCT_get_channels_buffer (struct CadetTunnel *t)
3025 {
3026   struct CadetTChannel *iter;
3027   unsigned int buffer;
3028   unsigned int ch_buf;
3029
3030   if (NULL == t->channel_head)
3031   {
3032     /* Probably getting buffer for a channel create/handshake. */
3033     LOG (GNUNET_ERROR_TYPE_DEBUG, "  no channels, allow max\n");
3034     return MIN_TUNNEL_BUFFER;
3035   }
3036
3037   buffer = 0;
3038   for (iter = t->channel_head; NULL != iter; iter = iter->next)
3039   {
3040     ch_buf = get_channel_buffer (iter);
3041     if (ch_buf > buffer)
3042       buffer = ch_buf;
3043   }
3044   if (MIN_TUNNEL_BUFFER > buffer)
3045     return MIN_TUNNEL_BUFFER;
3046
3047   if (MAX_TUNNEL_BUFFER < buffer)
3048   {
3049     GNUNET_break (0);
3050     return MAX_TUNNEL_BUFFER;
3051   }
3052   return buffer;
3053 }
3054
3055
3056 /**
3057  * Get the total buffer space for a tunnel for P2P traffic.
3058  *
3059  * @param t Tunnel.
3060  *
3061  * @return Buffer space offered by all connections in the tunnel.
3062  */
3063 unsigned int
3064 GCT_get_connections_buffer (struct CadetTunnel *t)
3065 {
3066   struct CadetTConnection *iter;
3067   unsigned int buffer;
3068
3069   if (GNUNET_NO == is_ready (t))
3070   {
3071     if (count_queued_data (t) >= 3)
3072       return 0;
3073     else
3074       return 1;
3075   }
3076
3077   buffer = 0;
3078   for (iter = t->connection_head; NULL != iter; iter = iter->next)
3079   {
3080     if (GCC_get_state (iter->c) != CADET_CONNECTION_READY)
3081     {
3082       continue;
3083     }
3084     buffer += get_connection_buffer (iter);
3085   }
3086
3087   return buffer;
3088 }
3089
3090
3091 /**
3092  * Get the tunnel's destination.
3093  *
3094  * @param t Tunnel.
3095  *
3096  * @return ID of the destination peer.
3097  */
3098 const struct GNUNET_PeerIdentity *
3099 GCT_get_destination (struct CadetTunnel *t)
3100 {
3101   return GCP_get_id (t->peer);
3102 }
3103
3104
3105 /**
3106  * Get the tunnel's next free global channel ID.
3107  *
3108  * @param t Tunnel.
3109  *
3110  * @return GID of a channel free to use.
3111  */
3112 CADET_ChannelNumber
3113 GCT_get_next_chid (struct CadetTunnel *t)
3114 {
3115   CADET_ChannelNumber chid;
3116   CADET_ChannelNumber mask;
3117   int result;
3118
3119   /* Set bit 30 depending on the ID relationship. Bit 31 is always 0 for GID.
3120    * If our ID is bigger or loopback tunnel, start at 0, bit 30 = 0
3121    * If peer's ID is bigger, start at 0x4... bit 30 = 1
3122    */
3123   result = GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, GCP_get_id (t->peer));
3124   if (0 > result)
3125     mask = 0x40000000;
3126   else
3127     mask = 0x0;
3128   t->next_chid |= mask;
3129
3130   while (NULL != GCT_get_channel (t, t->next_chid))
3131   {
3132     LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel %u exists...\n", t->next_chid);
3133     t->next_chid = (t->next_chid + 1) & ~GNUNET_CADET_LOCAL_CHANNEL_ID_CLI;
3134     t->next_chid |= mask;
3135   }
3136   chid = t->next_chid;
3137   t->next_chid = (t->next_chid + 1) & ~GNUNET_CADET_LOCAL_CHANNEL_ID_CLI;
3138   t->next_chid |= mask;
3139
3140   return chid;
3141 }
3142
3143
3144 /**
3145  * Send ACK on one or more channels due to buffer in connections.
3146  *
3147  * @param t Channel which has some free buffer space.
3148  */
3149 void
3150 GCT_unchoke_channels (struct CadetTunnel *t)
3151 {
3152   struct CadetTChannel *iter;
3153   unsigned int buffer;
3154   unsigned int channels = GCT_count_channels (t);
3155   unsigned int choked_n;
3156   struct CadetChannel *choked[channels];
3157
3158   LOG (GNUNET_ERROR_TYPE_DEBUG, "GCT_unchoke_channels on %s\n", GCT_2s (t));
3159   LOG (GNUNET_ERROR_TYPE_DEBUG, " head: %p\n", t->channel_head);
3160   if (NULL != t->channel_head)
3161     LOG (GNUNET_ERROR_TYPE_DEBUG, " head ch: %p\n", t->channel_head->ch);
3162
3163   if (NULL != t->tq_head)
3164     send_queued_data (t);
3165
3166   /* Get buffer space */
3167   buffer = GCT_get_connections_buffer (t);
3168   if (0 == buffer)
3169   {
3170     return;
3171   }
3172
3173   /* Count and remember choked channels */
3174   choked_n = 0;
3175   for (iter = t->channel_head; NULL != iter; iter = iter->next)
3176   {
3177     if (GNUNET_NO == get_channel_allowed (iter))
3178     {
3179       choked[choked_n++] = iter->ch;
3180     }
3181   }
3182
3183   /* Unchoke random channels */
3184   while (0 < buffer && 0 < choked_n)
3185   {
3186     unsigned int r = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
3187                                                choked_n);
3188     GCCH_allow_client (choked[r], GCCH_is_origin (choked[r], GNUNET_YES));
3189     choked_n--;
3190     buffer--;
3191     choked[r] = choked[choked_n];
3192   }
3193 }
3194
3195
3196 /**
3197  * Send ACK on one or more connections due to buffer space to the client.
3198  *
3199  * Iterates all connections of the tunnel and sends ACKs appropriately.
3200  *
3201  * @param t Tunnel.
3202  */
3203 void
3204 GCT_send_connection_acks (struct CadetTunnel *t)
3205 {
3206   struct CadetTConnection *iter;
3207   uint32_t allowed;
3208   uint32_t to_allow;
3209   uint32_t allow_per_connection;
3210   unsigned int cs;
3211   unsigned int buffer;
3212
3213   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel send connection ACKs on %s\n",
3214        GCT_2s (t));
3215
3216   if (NULL == t)
3217   {
3218     GNUNET_break (0);
3219     return;
3220   }
3221
3222   if (CADET_TUNNEL_READY != t->cstate)
3223     return;
3224
3225   buffer = GCT_get_channels_buffer (t);
3226   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer %u\n", buffer);
3227
3228   /* Count connections, how many messages are already allowed */
3229   cs = GCT_count_connections (t);
3230   for (allowed = 0, iter = t->connection_head; NULL != iter; iter = iter->next)
3231   {
3232     allowed += get_connection_allowed (iter);
3233   }
3234   LOG (GNUNET_ERROR_TYPE_DEBUG, "  allowed %u\n", allowed);
3235
3236   /* Make sure there is no overflow */
3237   if (allowed > buffer)
3238     return;
3239
3240   /* Authorize connections to send more data */
3241   to_allow = buffer - allowed;
3242
3243   for (iter = t->connection_head;
3244        NULL != iter && to_allow > 0;
3245        iter = iter->next)
3246   {
3247     if (CADET_CONNECTION_READY != GCC_get_state (iter->c)
3248         || get_connection_allowed (iter) > 64 / 3)
3249     {
3250       continue;
3251     }
3252     GNUNET_assert(cs != 0);
3253     allow_per_connection = to_allow/cs;
3254     to_allow -= allow_per_connection;
3255     cs--;
3256     GCC_allow (iter->c, allow_per_connection,
3257                GCC_is_origin (iter->c, GNUNET_NO));
3258   }
3259
3260   if (0 != to_allow)
3261   {
3262     /* Since we don't allow if it's allowed to send 64/3, this can happen. */
3263     LOG (GNUNET_ERROR_TYPE_DEBUG, "  reminding to_allow: %u\n", to_allow);
3264   }
3265 }
3266
3267
3268 /**
3269  * Cancel a previously sent message while it's in the queue.
3270  *
3271  * ONLY can be called before the continuation given to the send function
3272  * is called. Once the continuation is called, the message is no longer in the
3273  * queue.
3274  *
3275  * @param q Handle to the queue.
3276  */
3277 void
3278 GCT_cancel (struct CadetTunnelQueue *q)
3279 {
3280   if (NULL != q->cq)
3281   {
3282     GNUNET_assert (NULL == q->tqd);
3283     GCC_cancel (q->cq);
3284     /* tun_message_sent() will be called and free q */
3285   }
3286   else if (NULL != q->tqd)
3287   {
3288     unqueue_data (q->tqd);
3289     q->tqd = NULL;
3290     if (NULL != q->cont)
3291       q->cont (q->cont_cls, NULL, q, 0, 0);
3292     GNUNET_free (q);
3293   }
3294   else
3295   {
3296     GNUNET_break (0);
3297   }
3298 }
3299
3300
3301 /**
3302  * Check if the tunnel has queued traffic.
3303  *
3304  * @param t Tunnel to check.
3305  *
3306  * @return #GNUNET_YES if there is queued traffic
3307  *         #GNUNET_NO otherwise
3308  */
3309 int
3310 GCT_has_queued_traffic (struct CadetTunnel *t)
3311 {
3312   return (NULL != t->tq_head) ? GNUNET_YES : GNUNET_NO;
3313 }
3314
3315
3316 /**
3317  * Sends an already built message on a tunnel, encrypting it and
3318  * choosing the best connection if not provided.
3319  *
3320  * @param message Message to send. Function modifies it.
3321  * @param t Tunnel on which this message is transmitted.
3322  * @param c Connection to use (autoselect if NULL).
3323  * @param force Force the tunnel to take the message (buffer overfill).
3324  * @param cont Continuation to call once message is really sent.
3325  * @param cont_cls Closure for @c cont.
3326  *
3327  * @return Handle to cancel message. NULL if @c cont is NULL.
3328  */
3329 struct CadetTunnelQueue *
3330 GCT_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
3331                            struct CadetTunnel *t, struct CadetConnection *c,
3332                            int force, GCT_sent cont, void *cont_cls)
3333 {
3334   return send_prebuilt_message (message, t, c, force, cont, cont_cls, NULL);
3335 }
3336
3337
3338 /**
3339  * Send an Axolotl KX message.
3340  *
3341  * @param t Tunnel on which to send it.
3342  * @param force_reply Force the other peer to reply with a KX message.
3343  */
3344 void
3345 GCT_send_ax_kx (struct CadetTunnel *t, int force_reply)
3346 {
3347   struct GNUNET_CADET_AX_KX msg;
3348   enum GNUNET_CADET_AX_KX_Flags flags;
3349
3350   LOG (GNUNET_ERROR_TYPE_INFO, "==> {     AX_KX} on %s\n", GCT_2s (t));
3351   if (NULL != t->ephm_h)
3352   {
3353     LOG (GNUNET_ERROR_TYPE_INFO, "     already queued\n");
3354     return;
3355   }
3356
3357   msg.header.size = htons (sizeof (msg));
3358   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_AX_KX);
3359   flags = GNUNET_CADET_AX_KX_FLAG_NONE;
3360   if (force_reply)
3361     flags |= GNUNET_CADET_AX_KX_FLAG_FORCE_REPLY;
3362   msg.flags = htonl (flags);
3363   GNUNET_CRYPTO_ecdhe_key_get_public (t->ax->kx_0, &msg.ephemeral_key);
3364   GNUNET_CRYPTO_ecdhe_key_get_public (t->ax->DHRs, &msg.ratchet_key);
3365
3366   t->ephm_h = send_kx (t, &msg.header);
3367   if (CADET_TUNNEL_KEY_UNINITIALIZED == t->estate)
3368     GCT_change_estate (t, CADET_TUNNEL_KEY_SENT);
3369 }
3370
3371
3372 /**
3373  * Is the tunnel directed towards the local peer?
3374  *
3375  * @param t Tunnel.
3376  *
3377  * @return #GNUNET_YES if it is loopback.
3378  */
3379 int
3380 GCT_is_loopback (const struct CadetTunnel *t)
3381 {
3382   return (myid == GCP_get_short_id (t->peer));
3383 }
3384
3385
3386 /**
3387  * Is the tunnel this path already?
3388  *
3389  * @param t Tunnel.
3390  * @param p Path.
3391  *
3392  * @return #GNUNET_YES a connection uses this path.
3393  */
3394 int
3395 GCT_is_path_used (const struct CadetTunnel *t, const struct CadetPeerPath *p)
3396 {
3397   struct CadetTConnection *iter;
3398
3399   for (iter = t->connection_head; NULL != iter; iter = iter->next)
3400     if (path_equivalent (GCC_get_path (iter->c), p))
3401       return GNUNET_YES;
3402
3403   return GNUNET_NO;
3404 }
3405
3406
3407 /**
3408  * Get a cost of a path for a tunnel considering existing connections.
3409  *
3410  * @param t Tunnel.
3411  * @param path Candidate path.
3412  *
3413  * @return Cost of the path (path length + number of overlapping nodes)
3414  */
3415 unsigned int
3416 GCT_get_path_cost (const struct CadetTunnel *t,
3417                    const struct CadetPeerPath *path)
3418 {
3419   struct CadetTConnection *iter;
3420   const struct CadetPeerPath *aux;
3421   unsigned int overlap;
3422   unsigned int i;
3423   unsigned int j;
3424
3425   if (NULL == path)
3426     return 0;
3427
3428   overlap = 0;
3429   GNUNET_assert (NULL != t);
3430
3431   for (i = 0; i < path->length; i++)
3432   {
3433     for (iter = t->connection_head; NULL != iter; iter = iter->next)
3434     {
3435       aux = GCC_get_path (iter->c);
3436       if (NULL == aux)
3437         continue;
3438
3439       for (j = 0; j < aux->length; j++)
3440       {
3441         if (path->peers[i] == aux->peers[j])
3442         {
3443           overlap++;
3444           break;
3445         }
3446       }
3447     }
3448   }
3449   return path->length + overlap;
3450 }
3451
3452
3453 /**
3454  * Get the static string for the peer this tunnel is directed.
3455  *
3456  * @param t Tunnel.
3457  *
3458  * @return Static string the destination peer's ID.
3459  */
3460 const char *
3461 GCT_2s (const struct CadetTunnel *t)
3462 {
3463   if (NULL == t)
3464     return "(NULL)";
3465
3466   return GCP_2s (t->peer);
3467 }
3468
3469
3470 /******************************************************************************/
3471 /*****************************    INFO/DEBUG    *******************************/
3472 /******************************************************************************/
3473
3474 static void
3475 ax_debug (const struct CadetTunnelAxolotl *ax, enum GNUNET_ErrorType level)
3476 {
3477   struct GNUNET_CRYPTO_EcdhePublicKey pub;
3478   struct CadetTunnelSkippedKey *iter;
3479
3480   LOG2 (level, "TTT  RK  \t %s\n",
3481         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->RK));
3482
3483   LOG2 (level, "TTT  HKs \t %s\n",
3484         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->HKs));
3485   LOG2 (level, "TTT  HKr \t %s\n",
3486         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->HKr));
3487   LOG2 (level, "TTT  NHKs\t %s\n",
3488         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->NHKs));
3489   LOG2 (level, "TTT  NHKr\t %s\n",
3490         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->NHKr));
3491
3492   LOG2 (level, "TTT  CKs \t %s\n",
3493         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->CKs));
3494   LOG2 (level, "TTT  CKr \t %s\n",
3495         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->CKr));
3496
3497   GNUNET_CRYPTO_ecdhe_key_get_public (ax->DHRs, &pub);
3498   LOG2 (level, "TTT  DHRs\t %s\n",
3499         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &pub));
3500   LOG2 (level, "TTT  DHRr\t %s\n",
3501         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->DHRr));
3502
3503   LOG2 (level, "TTT  Nr\t %u\tNs\t%u\n", ax->Nr, ax->Ns);
3504   LOG2 (level, "TTT  PNs\t %u\tSkipped\t%u\n", ax->PNs, ax->skipped);
3505   LOG2 (level, "TTT  Ratchet\t%u\n", ax->ratchet_flag);
3506
3507   for (iter = ax->skipped_head; NULL != iter; iter = iter->next)
3508   {
3509     LOG2 (level, "TTT    HK\t %s\n",
3510           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &iter->HK));
3511     LOG2 (level, "TTT    MK\t %s\n",
3512           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &iter->MK));
3513   }
3514 }
3515
3516 /**
3517  * Log all possible info about the tunnel state.
3518  *
3519  * @param t Tunnel to debug.
3520  * @param level Debug level to use.
3521  */
3522 void
3523 GCT_debug (const struct CadetTunnel *t, enum GNUNET_ErrorType level)
3524 {
3525   struct CadetTChannel *iterch;
3526   struct CadetTConnection *iterc;
3527   int do_log;
3528
3529   do_log = GNUNET_get_log_call_status (level & (~GNUNET_ERROR_TYPE_BULK),
3530                                        "cadet-tun",
3531                                        __FILE__, __FUNCTION__, __LINE__);
3532   if (0 == do_log)
3533     return;
3534
3535   LOG2 (level, "TTT DEBUG TUNNEL TOWARDS %s\n", GCT_2s (t));
3536   LOG2 (level, "TTT  cstate %s, estate %s\n",
3537        cstate2s (t->cstate), estate2s (t->estate));
3538 #if DUMP_KEYS_TO_STDERR
3539   if (CADET_Axolotl == t->enc_type)
3540   {
3541     ax_debug (t->ax, level);
3542   }
3543   else
3544   {
3545     LOG2 (level, "TTT  peers EPHM:\t %s\n",
3546           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &t->peers_ephemeral_key));
3547     LOG2 (level, "TTT  ENC key:\t %s\n",
3548           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &t->e_key));
3549     LOG2 (level, "TTT  DEC key:\t %s\n",
3550           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &t->d_key));
3551   }
3552 #endif
3553   LOG2 (level, "TTT  tq_head %p, tq_tail %p\n", t->tq_head, t->tq_tail);
3554   LOG2 (level, "TTT  destroy %p\n", t->destroy_task);
3555
3556   LOG2 (level, "TTT  channels:\n");
3557   for (iterch = t->channel_head; NULL != iterch; iterch = iterch->next)
3558   {
3559     GCCH_debug (iterch->ch, level);
3560   }
3561
3562   LOG2 (level, "TTT  connections:\n");
3563   for (iterc = t->connection_head; NULL != iterc; iterc = iterc->next)
3564   {
3565     GCC_debug (iterc->c, level);
3566   }
3567
3568   LOG2 (level, "TTT DEBUG TUNNEL END\n");
3569 }
3570
3571
3572 /**
3573  * Iterate all tunnels.
3574  *
3575  * @param iter Iterator.
3576  * @param cls Closure for @c iter.
3577  */
3578 void
3579 GCT_iterate_all (GNUNET_CONTAINER_PeerMapIterator iter, void *cls)
3580 {
3581   GNUNET_CONTAINER_multipeermap_iterate (tunnels, iter, cls);
3582 }
3583
3584
3585 /**
3586  * Count all tunnels.
3587  *
3588  * @return Number of tunnels to remote peers kept by this peer.
3589  */
3590 unsigned int
3591 GCT_count_all (void)
3592 {
3593   return GNUNET_CONTAINER_multipeermap_size (tunnels);
3594 }
3595
3596
3597 /**
3598  * Iterate all connections of a tunnel.
3599  *
3600  * @param t Tunnel whose connections to iterate.
3601  * @param iter Iterator.
3602  * @param cls Closure for @c iter.
3603  */
3604 void
3605 GCT_iterate_connections (struct CadetTunnel *t, GCT_conn_iter iter, void *cls)
3606 {
3607   struct CadetTConnection *ct;
3608
3609   for (ct = t->connection_head; NULL != ct; ct = ct->next)
3610     iter (cls, ct->c);
3611 }
3612
3613
3614 /**
3615  * Iterate all channels of a tunnel.
3616  *
3617  * @param t Tunnel whose channels to iterate.
3618  * @param iter Iterator.
3619  * @param cls Closure for @c iter.
3620  */
3621 void
3622 GCT_iterate_channels (struct CadetTunnel *t, GCT_chan_iter iter, void *cls)
3623 {
3624   struct CadetTChannel *cht;
3625
3626   for (cht = t->channel_head; NULL != cht; cht = cht->next)
3627     iter (cls, cht->ch);
3628 }