- don't complain about AX messages pre-KX
[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
1579   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMT KX on Tunnel %s\n", GCT_2s (t));
1580
1581   /* Avoid loopback. */
1582   if (GCT_is_loopback (t))
1583   {
1584     GNUNET_break (0);
1585     return NULL;
1586   }
1587   type = ntohs (message->type);
1588
1589   /* Even if tunnel is "being destroyed", send anyway.
1590    * Could be a response to a rekey initiated by remote peer,
1591    * who is trying to create a new channel!
1592    */
1593
1594   /* Must have a connection, or be looking for one. */
1595   if (NULL == t->connection_head)
1596   {
1597     LOG (GNUNET_ERROR_TYPE_DEBUG, "%s with no connection\n", GC_m2s (type));
1598     if (CADET_TUNNEL_SEARCHING != t->cstate)
1599     {
1600       GNUNET_break (0);
1601       GCT_debug (t, GNUNET_ERROR_TYPE_ERROR);
1602     }
1603     return NULL;
1604   }
1605
1606   msg = (struct GNUNET_CADET_KX *) cbuf;
1607   msg->header.type = htons (GNUNET_MESSAGE_TYPE_CADET_KX);
1608   msg->header.size = htons (sizeof (struct GNUNET_CADET_KX) + size);
1609   c = tunnel_get_connection (t);
1610   if (NULL == c)
1611   {
1612     if (NULL == t->destroy_task && CADET_TUNNEL_READY == t->cstate)
1613     {
1614       GNUNET_break (0);
1615       GCT_debug (t, GNUNET_ERROR_TYPE_ERROR);
1616     }
1617     return NULL;
1618   }
1619   switch (type)
1620   {
1621     case GNUNET_MESSAGE_TYPE_CADET_AX_KX:
1622       GNUNET_assert (NULL == t->ephm_h);
1623       break;
1624     default:
1625       LOG (GNUNET_ERROR_TYPE_DEBUG, "unkown type %s\n", GC_m2s (type));
1626       GNUNET_assert (0);
1627   }
1628   GNUNET_memcpy (&msg[1], message, size);
1629
1630   fwd = GCC_is_origin (c, GNUNET_YES);
1631
1632   return GCC_send_prebuilt_message (&msg->header, type, 0, c,
1633                                     fwd, GNUNET_YES,
1634                                     &ephm_sent, t);
1635 }
1636
1637
1638 /**
1639  * Called only on shutdown, destroy every tunnel.
1640  *
1641  * @param cls Closure (unused).
1642  * @param key Current public key.
1643  * @param value Value in the hash map (tunnel).
1644  *
1645  * @return #GNUNET_YES, so we should continue to iterate,
1646  */
1647 static int
1648 destroy_iterator (void *cls,
1649                 const struct GNUNET_PeerIdentity *key,
1650                 void *value)
1651 {
1652   struct CadetTunnel *t = value;
1653
1654   LOG (GNUNET_ERROR_TYPE_DEBUG,
1655        "GCT_shutdown destroying tunnel at %p\n", t);
1656   GCT_destroy (t);
1657   return GNUNET_YES;
1658 }
1659
1660
1661 /**
1662  * Notify remote peer that we don't know a channel he is talking about,
1663  * probably CHANNEL_DESTROY was missed.
1664  *
1665  * @param t Tunnel on which to notify.
1666  * @param gid ID of the channel.
1667  */
1668 static void
1669 send_channel_destroy (struct CadetTunnel *t, unsigned int gid)
1670 {
1671   struct GNUNET_CADET_ChannelManage msg;
1672
1673   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY);
1674   msg.header.size = htons (sizeof (msg));
1675   msg.chid = htonl (gid);
1676
1677   LOG (GNUNET_ERROR_TYPE_DEBUG,
1678        "WARNING destroying unknown channel %u on tunnel %s\n",
1679        gid, GCT_2s (t));
1680   send_prebuilt_message (&msg.header, t, NULL, GNUNET_YES, NULL, NULL, NULL);
1681 }
1682
1683
1684 /**
1685  * Demultiplex data per channel and call appropriate channel handler.
1686  *
1687  * @param t Tunnel on which the data came.
1688  * @param msg Data message.
1689  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1690  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1691  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1692  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1693  */
1694 static void
1695 handle_data (struct CadetTunnel *t,
1696              const struct GNUNET_CADET_Data *msg,
1697              int fwd)
1698 {
1699   struct CadetChannel *ch;
1700   char buf[128];
1701   size_t size;
1702   uint16_t type;
1703
1704   /* Check size */
1705   size = ntohs (msg->header.size);
1706   if (size <
1707       sizeof (struct GNUNET_CADET_Data) +
1708       sizeof (struct GNUNET_MessageHeader))
1709   {
1710     GNUNET_break (0);
1711     return;
1712   }
1713   type = ntohs (msg[1].header.type);
1714   LOG (GNUNET_ERROR_TYPE_DEBUG, " payload of type %s\n", GC_m2s (type));
1715   SPRINTF (buf, "# received payload of type %hu", type);
1716   GNUNET_STATISTICS_update (stats, buf, 1, GNUNET_NO);
1717
1718
1719   /* Check channel */
1720   ch = GCT_get_channel (t, ntohl (msg->chid));
1721   if (NULL == ch)
1722   {
1723     GNUNET_STATISTICS_update (stats, "# data on unknown channel",
1724                               1, GNUNET_NO);
1725     LOG (GNUNET_ERROR_TYPE_DEBUG, "channel 0x%X unknown\n", ntohl (msg->chid));
1726     send_channel_destroy (t, ntohl (msg->chid));
1727     return;
1728   }
1729
1730   GCCH_handle_data (ch, msg, fwd);
1731 }
1732
1733
1734 /**
1735  * Demultiplex data ACKs per channel and update appropriate channel buffer info.
1736  *
1737  * @param t Tunnel on which the DATA ACK came.
1738  * @param msg DATA ACK message.
1739  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1740  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1741  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1742  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1743  */
1744 static void
1745 handle_data_ack (struct CadetTunnel *t,
1746                  const struct GNUNET_CADET_DataACK *msg,
1747                  int fwd)
1748 {
1749   struct CadetChannel *ch;
1750   size_t size;
1751
1752   /* Check size */
1753   size = ntohs (msg->header.size);
1754   if (size != sizeof (struct GNUNET_CADET_DataACK))
1755   {
1756     GNUNET_break (0);
1757     return;
1758   }
1759
1760   /* Check channel */
1761   ch = GCT_get_channel (t, ntohl (msg->chid));
1762   if (NULL == ch)
1763   {
1764     GNUNET_STATISTICS_update (stats, "# data ack on unknown channel",
1765                               1, GNUNET_NO);
1766     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1767          ntohl (msg->chid));
1768     return;
1769   }
1770
1771   GCCH_handle_data_ack (ch, msg, fwd);
1772 }
1773
1774
1775 /**
1776  * Handle channel create.
1777  *
1778  * @param t Tunnel on which the message came.
1779  * @param msg ChannelCreate message.
1780  */
1781 static void
1782 handle_ch_create (struct CadetTunnel *t,
1783                   const struct GNUNET_CADET_ChannelCreate *msg)
1784 {
1785   struct CadetChannel *ch;
1786   size_t size;
1787
1788   /* Check size */
1789   size = ntohs (msg->header.size);
1790   if (size != sizeof (struct GNUNET_CADET_ChannelCreate))
1791   {
1792     GNUNET_break_op (0);
1793     return;
1794   }
1795
1796   /* Check channel */
1797   ch = GCT_get_channel (t, ntohl (msg->chid));
1798   if (NULL != ch && ! GCT_is_loopback (t))
1799   {
1800     /* Probably a retransmission, safe to ignore */
1801     LOG (GNUNET_ERROR_TYPE_DEBUG, "   already exists...\n");
1802   }
1803   ch = GCCH_handle_create (t, msg);
1804   if (NULL != ch)
1805     GCT_add_channel (t, ch);
1806 }
1807
1808
1809
1810 /**
1811  * Handle channel NACK: check correctness and call channel handler for NACKs.
1812  *
1813  * @param t Tunnel on which the NACK came.
1814  * @param msg NACK message.
1815  */
1816 static void
1817 handle_ch_nack (struct CadetTunnel *t,
1818                 const struct GNUNET_CADET_ChannelManage *msg)
1819 {
1820   struct CadetChannel *ch;
1821   size_t size;
1822
1823   /* Check size */
1824   size = ntohs (msg->header.size);
1825   if (size != sizeof (struct GNUNET_CADET_ChannelManage))
1826   {
1827     GNUNET_break (0);
1828     return;
1829   }
1830
1831   /* Check channel */
1832   ch = GCT_get_channel (t, ntohl (msg->chid));
1833   if (NULL == ch)
1834   {
1835     GNUNET_STATISTICS_update (stats, "# channel NACK on unknown channel",
1836                               1, GNUNET_NO);
1837     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1838          ntohl (msg->chid));
1839     return;
1840   }
1841
1842   GCCH_handle_nack (ch);
1843 }
1844
1845
1846 /**
1847  * Handle a CHANNEL ACK (SYNACK/ACK).
1848  *
1849  * @param t Tunnel on which the CHANNEL ACK came.
1850  * @param msg CHANNEL ACK message.
1851  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1852  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1853  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1854  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1855  */
1856 static void
1857 handle_ch_ack (struct CadetTunnel *t,
1858                const struct GNUNET_CADET_ChannelManage *msg,
1859                int fwd)
1860 {
1861   struct CadetChannel *ch;
1862   size_t size;
1863
1864   /* Check size */
1865   size = ntohs (msg->header.size);
1866   if (size != sizeof (struct GNUNET_CADET_ChannelManage))
1867   {
1868     GNUNET_break (0);
1869     return;
1870   }
1871
1872   /* Check channel */
1873   ch = GCT_get_channel (t, ntohl (msg->chid));
1874   if (NULL == ch)
1875   {
1876     GNUNET_STATISTICS_update (stats, "# channel ack on unknown channel",
1877                               1, GNUNET_NO);
1878     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1879          ntohl (msg->chid));
1880     return;
1881   }
1882
1883   GCCH_handle_ack (ch, msg, fwd);
1884 }
1885
1886
1887 /**
1888  * Handle a channel destruction message.
1889  *
1890  * @param t Tunnel on which the message came.
1891  * @param msg Channel destroy message.
1892  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1893  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1894  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1895  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1896  */
1897 static void
1898 handle_ch_destroy (struct CadetTunnel *t,
1899                    const struct GNUNET_CADET_ChannelManage *msg,
1900                    int fwd)
1901 {
1902   struct CadetChannel *ch;
1903   size_t size;
1904
1905   /* Check size */
1906   size = ntohs (msg->header.size);
1907   if (size != sizeof (struct GNUNET_CADET_ChannelManage))
1908   {
1909     GNUNET_break (0);
1910     return;
1911   }
1912
1913   /* Check channel */
1914   ch = GCT_get_channel (t, ntohl (msg->chid));
1915   if (NULL == ch)
1916   {
1917     /* Probably a retransmission, safe to ignore */
1918     return;
1919   }
1920
1921   GCCH_handle_destroy (ch, msg, fwd);
1922 }
1923
1924
1925 /**
1926  * Free Axolotl data.
1927  *
1928  * @param t Tunnel.
1929  */
1930 static void
1931 destroy_ax (struct CadetTunnel *t)
1932 {
1933   if (NULL == t->ax)
1934     return;
1935
1936   GNUNET_free_non_null (t->ax->DHRs);
1937   GNUNET_free_non_null (t->ax->kx_0);
1938   while (NULL != t->ax->skipped_head)
1939     delete_skipped_key (t, t->ax->skipped_head);
1940   GNUNET_assert (0 == t->ax->skipped);
1941
1942   GNUNET_free (t->ax);
1943   t->ax = NULL;
1944
1945   if (NULL != t->rekey_task)
1946   {
1947     GNUNET_SCHEDULER_cancel (t->rekey_task);
1948     t->rekey_task = NULL;
1949   }
1950   if (NULL != t->ephm_h)
1951   {
1952     GCC_cancel (t->ephm_h);
1953     t->ephm_h = NULL;
1954   }
1955 }
1956
1957
1958 /**
1959  * Handle Axolotl handshake.
1960  *
1961  * @param t Tunnel this message came on.
1962  * @param msg Key eXchange Pong message.
1963  */
1964 static void
1965 handle_kx_ax (struct CadetTunnel *t, const struct GNUNET_CADET_AX_KX *msg)
1966 {
1967   struct CadetTunnelAxolotl *ax;
1968   struct GNUNET_HashCode key_material[3];
1969   struct GNUNET_CRYPTO_SymmetricSessionKey keys[5];
1970   const char salt[] = "CADET Axolotl salt";
1971   const struct GNUNET_PeerIdentity *pid;
1972   int am_I_alice;
1973
1974   LOG (GNUNET_ERROR_TYPE_INFO, "<== {     AX_KX} on %s\n", GCT_2s (t));
1975
1976   if (NULL == t->ax)
1977   {
1978     /* Something is wrong if ax is NULL. Whose fault it is? */
1979     GNUNET_break (CADET_Axolotl == t->enc_type);
1980     return;
1981   }
1982   ax = t->ax;
1983
1984   pid = GCT_get_destination (t);
1985   if (0 > GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, pid))
1986     am_I_alice = GNUNET_YES;
1987   else if (0 < GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, pid))
1988     am_I_alice = GNUNET_NO;
1989   else
1990   {
1991     GNUNET_break_op (0);
1992     return;
1993   }
1994
1995   if (0 != (GNUNET_CADET_AX_KX_FLAG_FORCE_REPLY & ntohl (msg->flags)))
1996   {
1997     if (NULL != t->rekey_task)
1998     {
1999       GNUNET_SCHEDULER_cancel (t->rekey_task);
2000       t->rekey_task = NULL;
2001     }
2002     GCT_send_ax_kx (t, GNUNET_NO);
2003   }
2004
2005   if (0 == memcmp (&ax->DHRr, &msg->ratchet_key, sizeof(msg->ratchet_key)))
2006   {
2007     LOG (GNUNET_ERROR_TYPE_INFO, " known ratchet key, exit\n");
2008     return;
2009   }
2010
2011   LOG (GNUNET_ERROR_TYPE_INFO, " is Alice? %s\n", am_I_alice ? "YES" : "NO");
2012
2013   ax->DHRr = msg->ratchet_key;
2014
2015   /* ECDH A B0 */
2016   if (GNUNET_YES == am_I_alice)
2017   {
2018     GNUNET_CRYPTO_eddsa_ecdh (id_key,              /* A */
2019                               &msg->ephemeral_key, /* B0 */
2020                               &key_material[0]);
2021   }
2022   else
2023   {
2024     GNUNET_CRYPTO_ecdh_eddsa (ax->kx_0,            /* B0 */
2025                               &pid->public_key,    /* A */
2026                               &key_material[0]);
2027   }
2028
2029   /* ECDH A0 B */
2030   if (GNUNET_YES == am_I_alice)
2031   {
2032     GNUNET_CRYPTO_ecdh_eddsa (ax->kx_0,            /* A0 */
2033                               &pid->public_key,    /* B */
2034                               &key_material[1]);
2035   }
2036   else
2037   {
2038     GNUNET_CRYPTO_eddsa_ecdh (id_key,              /* A */
2039                               &msg->ephemeral_key, /* B0 */
2040                               &key_material[1]);
2041
2042
2043   }
2044
2045   /* ECDH A0 B0 */
2046   /* (This is the triple-DH, we could probably safely skip this,
2047      as A0/B0 are already in the key material.) */
2048   GNUNET_CRYPTO_ecc_ecdh (ax->kx_0,             /* A0 or B0 */
2049                           &msg->ephemeral_key,  /* B0 or A0 */
2050                           &key_material[2]);
2051
2052   #if DUMP_KEYS_TO_STDERR
2053   {
2054     unsigned int i;
2055     for (i = 0; i < 3; i++)
2056       LOG (GNUNET_ERROR_TYPE_INFO, "km[%u]: %s\n",
2057            i, GNUNET_h2s (&key_material[i]));
2058   }
2059   #endif
2060
2061   /* KDF */
2062   GNUNET_CRYPTO_kdf (keys, sizeof (keys),
2063                      salt, sizeof (salt),
2064                      &key_material, sizeof (key_material), NULL);
2065
2066   if (0 == memcmp (&ax->RK, &keys[0], sizeof(ax->RK)))
2067   {
2068     LOG (GNUNET_ERROR_TYPE_INFO, " known handshake key, exit\n");
2069     return;
2070   }
2071   ax->RK = keys[0];
2072   if (GNUNET_YES == am_I_alice)
2073   {
2074     ax->HKr = keys[1];
2075     ax->NHKs = keys[2];
2076     ax->NHKr = keys[3];
2077     ax->CKr = keys[4];
2078     ax->ratchet_flag = GNUNET_YES;
2079   }
2080   else
2081   {
2082     ax->HKs = keys[1];
2083     ax->NHKr = keys[2];
2084     ax->NHKs = keys[3];
2085     ax->CKs = keys[4];
2086     ax->ratchet_flag = GNUNET_NO;
2087     ax->ratchet_allowed = GNUNET_NO;
2088     ax->ratchet_counter = 0;
2089     ax->ratchet_expiration =
2090       GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(), ratchet_time);
2091   }
2092   ax->PNs = 0;
2093   ax->Nr = 0;
2094   ax->Ns = 0;
2095   GCT_change_estate (t, CADET_TUNNEL_KEY_PING);
2096   send_queued_data (t);
2097 }
2098
2099
2100 /**
2101  * Demultiplex by message type and call appropriate handler for a message
2102  * towards a channel of a local tunnel.
2103  *
2104  * @param t Tunnel this message came on.
2105  * @param msgh Message header.
2106  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
2107  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
2108  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
2109  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
2110  */
2111 static void
2112 handle_decrypted (struct CadetTunnel *t,
2113                   const struct GNUNET_MessageHeader *msgh,
2114                   int fwd)
2115 {
2116   uint16_t type;
2117   char buf[256];
2118
2119   type = ntohs (msgh->type);
2120   LOG (GNUNET_ERROR_TYPE_DEBUG, "<-- %s on %s\n", GC_m2s (type), GCT_2s (t));
2121   SPRINTF (buf, "# received encrypted of type %hu (%s)", type, GC_m2s (type));
2122   GNUNET_STATISTICS_update (stats, buf, 1, GNUNET_NO);
2123
2124   switch (type)
2125   {
2126     case GNUNET_MESSAGE_TYPE_CADET_KEEPALIVE:
2127       /* Do nothing, connection aleady got updated. */
2128       GNUNET_STATISTICS_update (stats, "# keepalives received", 1, GNUNET_NO);
2129       break;
2130
2131     case GNUNET_MESSAGE_TYPE_CADET_DATA:
2132       /* Don't send hop ACK, wait for client to ACK */
2133       handle_data (t, (struct GNUNET_CADET_Data *) msgh, fwd);
2134       break;
2135
2136     case GNUNET_MESSAGE_TYPE_CADET_DATA_ACK:
2137       handle_data_ack (t, (struct GNUNET_CADET_DataACK *) msgh, fwd);
2138       break;
2139
2140     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_CREATE:
2141       handle_ch_create (t, (struct GNUNET_CADET_ChannelCreate *) msgh);
2142       break;
2143
2144     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_NACK:
2145       handle_ch_nack (t, (struct GNUNET_CADET_ChannelManage *) msgh);
2146       break;
2147
2148     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_ACK:
2149       handle_ch_ack (t, (struct GNUNET_CADET_ChannelManage *) msgh, fwd);
2150       break;
2151
2152     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY:
2153       handle_ch_destroy (t, (struct GNUNET_CADET_ChannelManage *) msgh, fwd);
2154       break;
2155
2156     default:
2157       GNUNET_break_op (0);
2158       LOG (GNUNET_ERROR_TYPE_WARNING,
2159            "end-to-end message not known (%u)\n",
2160            ntohs (msgh->type));
2161       GCT_debug (t, GNUNET_ERROR_TYPE_WARNING);
2162   }
2163 }
2164
2165
2166 /******************************************************************************/
2167 /********************************    API    ***********************************/
2168 /******************************************************************************/
2169 /**
2170  * Decrypt old format and demultiplex by message type. Call appropriate handler
2171  * for a message towards a channel of a local tunnel.
2172  *
2173  * @param t Tunnel this message came on.
2174  * @param msg Message header.
2175  */
2176 void
2177 GCT_handle_encrypted (struct CadetTunnel *t,
2178                       const struct GNUNET_MessageHeader *msg)
2179 {
2180   uint16_t size = ntohs (msg->size);
2181   char cbuf [size];
2182   int decrypted_size;
2183   uint16_t type;
2184   const struct GNUNET_MessageHeader *msgh;
2185   unsigned int off;
2186
2187   type = ntohs (msg->type);
2188   switch (type)
2189   {
2190   case GNUNET_MESSAGE_TYPE_CADET_AX:
2191     {
2192       const struct GNUNET_CADET_AX *emsg;
2193
2194       GNUNET_STATISTICS_update (stats, "# received Axolotl", 1, GNUNET_NO);
2195       emsg = (const struct GNUNET_CADET_AX *) msg;
2196       decrypted_size = t_ax_decrypt_and_validate (t, cbuf, emsg, size);
2197     }
2198     break;
2199   default:
2200     GNUNET_break_op (0);
2201     return;
2202   }
2203
2204   if (-1 == decrypted_size)
2205   {
2206     GNUNET_STATISTICS_update (stats, "# unable to decrypt", 1, GNUNET_NO);
2207     if (CADET_TUNNEL_KEY_PING <= t->estate)
2208     {
2209       GNUNET_break_op (0);
2210       LOG (GNUNET_ERROR_TYPE_WARNING, "Wrong crypto, tunnel %s\n", GCT_2s (t));
2211       GCT_debug (t, GNUNET_ERROR_TYPE_WARNING);
2212     }
2213     return;
2214   }
2215   GCT_change_estate (t, CADET_TUNNEL_KEY_OK);
2216
2217   /* FIXME: this is bad, as the structs returned from
2218      this loop may be unaligned, see util's MST for
2219      how to do this right. */
2220   off = 0;
2221   while (off + sizeof (struct GNUNET_MessageHeader) <= decrypted_size)
2222   {
2223     uint16_t msize;
2224
2225     msgh = (const struct GNUNET_MessageHeader *) &cbuf[off];
2226     msize = ntohs (msgh->size);
2227     if (msize < sizeof (struct GNUNET_MessageHeader))
2228     {
2229       GNUNET_break_op (0);
2230       return;
2231     }
2232     if (off + msize < decrypted_size)
2233     {
2234       GNUNET_break_op (0);
2235       return;
2236     }
2237     handle_decrypted (t, msgh, GNUNET_SYSERR);
2238     off += msize;
2239   }
2240 }
2241
2242
2243 /**
2244  * Demultiplex an encapsulated KX message by message type.
2245  *
2246  * @param t Tunnel on which the message came.
2247  * @param message Payload of KX message.
2248  *
2249  * FIXME: not needed anymore
2250  *  - substitute with call to kx_ax
2251  *  - eliminate encapsulation
2252  */
2253 void
2254 GCT_handle_kx (struct CadetTunnel *t,
2255                const struct GNUNET_MessageHeader *message)
2256 {
2257   uint16_t type;
2258   char buf[256];
2259
2260   type = ntohs (message->type);
2261   LOG (GNUNET_ERROR_TYPE_DEBUG, "kx message received: %s\n", GC_m2s (type));
2262   sprintf (buf, "# received KX of type %hu (%s)", type, GC_m2s (type));
2263   GNUNET_STATISTICS_update (stats, buf, 1, GNUNET_NO);
2264   switch (type)
2265   {
2266     case GNUNET_MESSAGE_TYPE_CADET_AX_KX:
2267       handle_kx_ax (t, (const struct GNUNET_CADET_AX_KX *) message);
2268       break;
2269     default:
2270       GNUNET_break_op (0);
2271       LOG (GNUNET_ERROR_TYPE_WARNING, "kx message %s unknown\n", GC_m2s (type));
2272   }
2273 }
2274
2275 /**
2276  * Initialize the tunnel subsystem.
2277  *
2278  * @param c Configuration handle.
2279  * @param key ECC private key, to derive all other keys and do crypto.
2280  */
2281 void
2282 GCT_init (const struct GNUNET_CONFIGURATION_Handle *c,
2283           const struct GNUNET_CRYPTO_EddsaPrivateKey *key)
2284 {
2285   unsigned int expected_overhead;
2286
2287   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
2288
2289   expected_overhead = 0;
2290   expected_overhead += sizeof (struct GNUNET_CADET_AX);
2291   expected_overhead += sizeof (struct GNUNET_CADET_Data);
2292   expected_overhead += sizeof (struct GNUNET_CADET_ACK);
2293   GNUNET_assert (GNUNET_CONSTANTS_CADET_P2P_OVERHEAD == expected_overhead);
2294
2295   if (GNUNET_OK !=
2296       GNUNET_CONFIGURATION_get_value_number (c,
2297                                              "CADET",
2298                                              "RATCHET_MESSAGES",
2299                                              &ratchet_messages))
2300   {
2301     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
2302                                "CADET",
2303                                "RATCHET_MESSAGES",
2304                                "USING DEFAULT");
2305     ratchet_messages = 64;
2306   }
2307   if (GNUNET_OK !=
2308       GNUNET_CONFIGURATION_get_value_time (c,
2309                                            "CADET",
2310                                            "RATCHET_TIME",
2311                                            &ratchet_time))
2312   {
2313     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
2314                                "CADET", "RATCHET_TIME", "USING DEFAULT");
2315     ratchet_time = GNUNET_TIME_UNIT_HOURS;
2316   }
2317
2318
2319   id_key = key;
2320   tunnels = GNUNET_CONTAINER_multipeermap_create (128, GNUNET_YES);
2321 }
2322
2323
2324 /**
2325  * Shut down the tunnel subsystem.
2326  */
2327 void
2328 GCT_shutdown (void)
2329 {
2330   LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down tunnels\n");
2331   GNUNET_CONTAINER_multipeermap_iterate (tunnels, &destroy_iterator, NULL);
2332   GNUNET_CONTAINER_multipeermap_destroy (tunnels);
2333 }
2334
2335
2336 /**
2337  * Create a tunnel.
2338  *
2339  * @param destination Peer this tunnel is towards.
2340  */
2341 struct CadetTunnel *
2342 GCT_new (struct CadetPeer *destination)
2343 {
2344   struct CadetTunnel *t;
2345
2346   t = GNUNET_new (struct CadetTunnel);
2347   t->next_chid = 0;
2348   t->peer = destination;
2349
2350   if (GNUNET_OK !=
2351       GNUNET_CONTAINER_multipeermap_put (tunnels, GCP_get_id (destination), t,
2352                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2353   {
2354     GNUNET_break (0);
2355     GNUNET_free (t);
2356     return NULL;
2357   }
2358   t->ax = GNUNET_new (struct CadetTunnelAxolotl);
2359   new_ephemeral (t);
2360   t->ax->kx_0 = GNUNET_CRYPTO_ecdhe_key_create ();
2361   return t;
2362 }
2363
2364
2365 /**
2366  * Change the tunnel's connection state.
2367  *
2368  * @param t Tunnel whose connection state to change.
2369  * @param cstate New connection state.
2370  */
2371 void
2372 GCT_change_cstate (struct CadetTunnel* t, enum CadetTunnelCState cstate)
2373 {
2374   if (NULL == t)
2375     return;
2376   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s cstate %s => %s\n",
2377        GCP_2s (t->peer), cstate2s (t->cstate), cstate2s (cstate));
2378   if (myid != GCP_get_short_id (t->peer) &&
2379       CADET_TUNNEL_READY != t->cstate &&
2380       CADET_TUNNEL_READY == cstate)
2381   {
2382     t->cstate = cstate;
2383     if (CADET_TUNNEL_KEY_OK == t->estate)
2384     {
2385       LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered send queued data\n");
2386       send_queued_data (t);
2387     }
2388     else if (CADET_TUNNEL_KEY_UNINITIALIZED == t->estate)
2389     {
2390       LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered kx\n");
2391       GCT_send_ax_kx (t, GNUNET_NO);
2392     }
2393     else
2394     {
2395       LOG (GNUNET_ERROR_TYPE_DEBUG, "estate %s\n", estate2s (t->estate));
2396     }
2397   }
2398   t->cstate = cstate;
2399
2400   if (CADET_TUNNEL_READY == cstate
2401       && CONNECTIONS_PER_TUNNEL <= GCT_count_connections (t))
2402   {
2403     LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered stop dht\n");
2404     GCP_stop_search (t->peer);
2405   }
2406 }
2407
2408
2409 /**
2410  * Change the tunnel encryption state.
2411  *
2412  * If the encryption state changes to OK, stop the rekey task.
2413  *
2414  * @param t Tunnel whose encryption state to change, or NULL.
2415  * @param state New encryption state.
2416  */
2417 void
2418 GCT_change_estate (struct CadetTunnel* t, enum CadetTunnelEState state)
2419 {
2420   enum CadetTunnelEState old;
2421
2422   if (NULL == t)
2423     return;
2424
2425   old = t->estate;
2426   t->estate = state;
2427   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s estate was %s\n",
2428        GCP_2s (t->peer), estate2s (old));
2429   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s estate is now %s\n",
2430        GCP_2s (t->peer), estate2s (t->estate));
2431
2432   if (CADET_TUNNEL_KEY_OK != old && CADET_TUNNEL_KEY_OK == t->estate)
2433   {
2434     if (NULL != t->rekey_task)
2435     {
2436       GNUNET_SCHEDULER_cancel (t->rekey_task);
2437       t->rekey_task = NULL;
2438     }
2439     /* Send queued data if tunnel is not loopback */
2440     if (myid != GCP_get_short_id (t->peer))
2441       send_queued_data (t);
2442   }
2443 }
2444
2445
2446 /**
2447  * @brief Check if tunnel has too many connections, and remove one if necessary.
2448  *
2449  * Currently this means the newest connection, unless it is a direct one.
2450  * Implemented as a task to avoid freeing a connection that is in the middle
2451  * of being created/processed.
2452  *
2453  * @param cls Closure (Tunnel to check).
2454  */
2455 static void
2456 trim_connections (void *cls)
2457 {
2458   struct CadetTunnel *t = cls;
2459
2460   t->trim_connections_task = NULL;
2461   if (GCT_count_connections (t) > 2 * CONNECTIONS_PER_TUNNEL)
2462   {
2463     struct CadetTConnection *iter;
2464     struct CadetTConnection *c;
2465
2466     for (c = iter = t->connection_head; NULL != iter; iter = iter->next)
2467     {
2468       if ((iter->created.abs_value_us > c->created.abs_value_us)
2469           && GNUNET_NO == GCC_is_direct (iter->c))
2470       {
2471         c = iter;
2472       }
2473     }
2474     if (NULL != c)
2475     {
2476       LOG (GNUNET_ERROR_TYPE_DEBUG, "Too many connections on tunnel %s\n",
2477            GCT_2s (t));
2478       LOG (GNUNET_ERROR_TYPE_DEBUG, "Destroying connection %s\n",
2479            GCC_2s (c->c));
2480       GCC_destroy (c->c);
2481     }
2482     else
2483     {
2484       GNUNET_break (0);
2485     }
2486   }
2487 }
2488
2489
2490 /**
2491  * Add a connection to a tunnel.
2492  *
2493  * @param t Tunnel.
2494  * @param c Connection.
2495  */
2496 void
2497 GCT_add_connection (struct CadetTunnel *t, struct CadetConnection *c)
2498 {
2499   struct CadetTConnection *aux;
2500
2501   GNUNET_assert (NULL != c);
2502
2503   LOG (GNUNET_ERROR_TYPE_DEBUG, "add connection %s\n", GCC_2s (c));
2504   LOG (GNUNET_ERROR_TYPE_DEBUG, " to tunnel %s\n", GCT_2s (t));
2505   for (aux = t->connection_head; aux != NULL; aux = aux->next)
2506     if (aux->c == c)
2507       return;
2508
2509   aux = GNUNET_new (struct CadetTConnection);
2510   aux->c = c;
2511   aux->created = GNUNET_TIME_absolute_get ();
2512
2513   GNUNET_CONTAINER_DLL_insert (t->connection_head, t->connection_tail, aux);
2514
2515   if (CADET_TUNNEL_SEARCHING == t->cstate)
2516     GCT_change_cstate (t, CADET_TUNNEL_WAITING);
2517
2518   if (NULL != t->trim_connections_task)
2519     t->trim_connections_task = GNUNET_SCHEDULER_add_now (&trim_connections, t);
2520 }
2521
2522
2523 /**
2524  * Remove a connection from a tunnel.
2525  *
2526  * @param t Tunnel.
2527  * @param c Connection.
2528  */
2529 void
2530 GCT_remove_connection (struct CadetTunnel *t,
2531                        struct CadetConnection *c)
2532 {
2533   struct CadetTConnection *aux;
2534   struct CadetTConnection *next;
2535   unsigned int conns;
2536
2537   LOG (GNUNET_ERROR_TYPE_DEBUG, "Removing connection %s from tunnel %s\n",
2538        GCC_2s (c), GCT_2s (t));
2539   for (aux = t->connection_head; aux != NULL; aux = next)
2540   {
2541     next = aux->next;
2542     if (aux->c == c)
2543     {
2544       GNUNET_CONTAINER_DLL_remove (t->connection_head, t->connection_tail, aux);
2545       GNUNET_free (aux);
2546     }
2547   }
2548
2549   conns = GCT_count_connections (t);
2550   if (0 == conns
2551       && NULL == t->destroy_task
2552       && CADET_TUNNEL_SHUTDOWN != t->cstate
2553       && GNUNET_NO == shutting_down)
2554   {
2555     if (0 == GCT_count_any_connections (t))
2556       GCT_change_cstate (t, CADET_TUNNEL_SEARCHING);
2557     else
2558       GCT_change_cstate (t, CADET_TUNNEL_WAITING);
2559   }
2560
2561   /* Start new connections if needed */
2562   if (CONNECTIONS_PER_TUNNEL > conns
2563       && CADET_TUNNEL_SHUTDOWN != t->cstate
2564       && GNUNET_NO == shutting_down)
2565   {
2566     LOG (GNUNET_ERROR_TYPE_DEBUG, "  too few connections, getting new ones\n");
2567     GCP_connect (t->peer); /* Will change cstate to WAITING when possible */
2568     return;
2569   }
2570
2571   /* If not marked as ready, no change is needed */
2572   if (CADET_TUNNEL_READY != t->cstate)
2573     return;
2574
2575   /* Check if any connection is ready to maintain cstate */
2576   for (aux = t->connection_head; aux != NULL; aux = aux->next)
2577     if (CADET_CONNECTION_READY == GCC_get_state (aux->c))
2578       return;
2579 }
2580
2581
2582 /**
2583  * Add a channel to a tunnel.
2584  *
2585  * @param t Tunnel.
2586  * @param ch Channel.
2587  */
2588 void
2589 GCT_add_channel (struct CadetTunnel *t, struct CadetChannel *ch)
2590 {
2591   struct CadetTChannel *aux;
2592
2593   GNUNET_assert (NULL != ch);
2594
2595   LOG (GNUNET_ERROR_TYPE_DEBUG, "Adding channel %p to tunnel %p\n", ch, t);
2596
2597   for (aux = t->channel_head; aux != NULL; aux = aux->next)
2598   {
2599     LOG (GNUNET_ERROR_TYPE_DEBUG, "  already there %p\n", aux->ch);
2600     if (aux->ch == ch)
2601       return;
2602   }
2603
2604   aux = GNUNET_new (struct CadetTChannel);
2605   aux->ch = ch;
2606   LOG (GNUNET_ERROR_TYPE_DEBUG,
2607        " adding %p to %p\n", aux, t->channel_head);
2608   GNUNET_CONTAINER_DLL_insert_tail (t->channel_head,
2609                                     t->channel_tail,
2610                                     aux);
2611
2612   if (NULL != t->destroy_task)
2613   {
2614     GNUNET_SCHEDULER_cancel (t->destroy_task);
2615     t->destroy_task = NULL;
2616     LOG (GNUNET_ERROR_TYPE_DEBUG, " undo destroy!\n");
2617   }
2618 }
2619
2620
2621 /**
2622  * Remove a channel from a tunnel.
2623  *
2624  * @param t Tunnel.
2625  * @param ch Channel.
2626  */
2627 void
2628 GCT_remove_channel (struct CadetTunnel *t, struct CadetChannel *ch)
2629 {
2630   struct CadetTChannel *aux;
2631
2632   LOG (GNUNET_ERROR_TYPE_DEBUG, "Removing channel %p from tunnel %p\n", ch, t);
2633   for (aux = t->channel_head; aux != NULL; aux = aux->next)
2634   {
2635     if (aux->ch == ch)
2636     {
2637       LOG (GNUNET_ERROR_TYPE_DEBUG, " found! %s\n", GCCH_2s (ch));
2638       GNUNET_CONTAINER_DLL_remove (t->channel_head,
2639                                    t->channel_tail,
2640                                    aux);
2641       GNUNET_free (aux);
2642       return;
2643     }
2644   }
2645 }
2646
2647
2648 /**
2649  * Search for a channel by global ID.
2650  *
2651  * @param t Tunnel containing the channel.
2652  * @param chid Public channel number.
2653  *
2654  * @return channel handler, NULL if doesn't exist
2655  */
2656 struct CadetChannel *
2657 GCT_get_channel (struct CadetTunnel *t, CADET_ChannelNumber chid)
2658 {
2659   struct CadetTChannel *iter;
2660
2661   if (NULL == t)
2662     return NULL;
2663
2664   for (iter = t->channel_head; NULL != iter; iter = iter->next)
2665   {
2666     if (GCCH_get_id (iter->ch) == chid)
2667       break;
2668   }
2669
2670   return NULL == iter ? NULL : iter->ch;
2671 }
2672
2673
2674 /**
2675  * @brief Destroy a tunnel and free all resources.
2676  *
2677  * Should only be called a while after the tunnel has been marked as destroyed,
2678  * in case there is a new channel added to the same peer shortly after marking
2679  * the tunnel. This way we avoid a new public key handshake.
2680  *
2681  * @param cls Closure (tunnel to destroy).
2682  */
2683 static void
2684 delayed_destroy (void *cls)
2685 {
2686   struct CadetTunnel *t = cls;
2687   struct CadetTConnection *iter;
2688
2689   t->destroy_task = NULL;
2690   LOG (GNUNET_ERROR_TYPE_DEBUG,
2691        "delayed destroying tunnel %p\n",
2692        t);
2693   t->cstate = CADET_TUNNEL_SHUTDOWN;
2694   for (iter = t->connection_head; NULL != iter; iter = iter->next)
2695   {
2696     GCC_send_destroy (iter->c);
2697   }
2698   GCT_destroy (t);
2699 }
2700
2701
2702 /**
2703  * Tunnel is empty: destroy it.
2704  *
2705  * Notifies all connections about the destruction.
2706  *
2707  * @param t Tunnel to destroy.
2708  */
2709 void
2710 GCT_destroy_empty (struct CadetTunnel *t)
2711 {
2712   if (GNUNET_YES == shutting_down)
2713     return; /* Will be destroyed immediately anyway */
2714
2715   if (NULL != t->destroy_task)
2716   {
2717     LOG (GNUNET_ERROR_TYPE_WARNING,
2718          "Tunnel %s is already scheduled for destruction. Tunnel debug dump:\n",
2719          GCT_2s (t));
2720     GCT_debug (t, GNUNET_ERROR_TYPE_WARNING);
2721     GNUNET_break (0);
2722     /* should never happen, tunnel can only become empty once, and the
2723      * task identifier should be NO_TASK (cleaned when the tunnel was created
2724      * or became un-empty)
2725      */
2726     return;
2727   }
2728
2729   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s empty: scheduling destruction\n",
2730        GCT_2s (t));
2731
2732   // FIXME make delay a config option
2733   t->destroy_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
2734                                                   &delayed_destroy, t);
2735   LOG (GNUNET_ERROR_TYPE_DEBUG, "Scheduled destroy of %p as %p\n",
2736        t, t->destroy_task);
2737 }
2738
2739
2740 /**
2741  * Destroy tunnel if empty (no more channels).
2742  *
2743  * @param t Tunnel to destroy if empty.
2744  */
2745 void
2746 GCT_destroy_if_empty (struct CadetTunnel *t)
2747 {
2748   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s destroy if empty\n", GCT_2s (t));
2749   if (0 < GCT_count_channels (t))
2750     return;
2751
2752   GCT_destroy_empty (t);
2753 }
2754
2755
2756 /**
2757  * Destroy the tunnel.
2758  *
2759  * This function does not generate any warning traffic to clients or peers.
2760  *
2761  * Tasks:
2762  * Cancel messages belonging to this tunnel queued to neighbors.
2763  * Free any allocated resources linked to the tunnel.
2764  *
2765  * @param t The tunnel to destroy.
2766  */
2767 void
2768 GCT_destroy (struct CadetTunnel *t)
2769 {
2770   struct CadetTConnection *iter_c;
2771   struct CadetTConnection *next_c;
2772   struct CadetTChannel *iter_ch;
2773   struct CadetTChannel *next_ch;
2774   unsigned int keepalives_queued;
2775
2776   if (NULL == t)
2777     return;
2778
2779   LOG (GNUNET_ERROR_TYPE_DEBUG,
2780        "destroying tunnel %s\n",
2781        GCP_2s (t->peer));
2782   GNUNET_break (GNUNET_YES ==
2783                 GNUNET_CONTAINER_multipeermap_remove (tunnels,
2784                                                       GCP_get_id (t->peer), t));
2785
2786   for (iter_c = t->connection_head; NULL != iter_c; iter_c = next_c)
2787   {
2788     next_c = iter_c->next;
2789     GCC_destroy (iter_c->c);
2790   }
2791   for (iter_ch = t->channel_head; NULL != iter_ch; iter_ch = next_ch)
2792   {
2793     next_ch = iter_ch->next;
2794     GCCH_destroy (iter_ch->ch);
2795     /* Should only happen on shutdown, but it's ok. */
2796   }
2797   keepalives_queued = 0;
2798   while (NULL != t->tq_head)
2799   {
2800     /* Should have been cleaned by destuction of channel. */
2801     struct GNUNET_MessageHeader *mh;
2802     uint16_t type;
2803
2804     mh = (struct GNUNET_MessageHeader *) &t->tq_head[1];
2805     type = ntohs (mh->type);
2806     if (0 == keepalives_queued && GNUNET_MESSAGE_TYPE_CADET_KEEPALIVE == type)
2807     {
2808       keepalives_queued = 1;
2809       LOG (GNUNET_ERROR_TYPE_DEBUG,
2810            "one keepalive left behind on tunnel shutdown\n");
2811     }
2812     else if (GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY == type)
2813     {
2814       LOG (GNUNET_ERROR_TYPE_WARNING,
2815            "tunnel destroyed before a CHANNEL_DESTROY was sent to peer\n");
2816     }
2817     else
2818     {
2819       GNUNET_break (0);
2820       LOG (GNUNET_ERROR_TYPE_ERROR,
2821            "message left behind on tunnel shutdown: %s\n",
2822            GC_m2s (type));
2823     }
2824     unqueue_data (t->tq_head);
2825   }
2826
2827
2828   if (NULL != t->destroy_task)
2829   {
2830     LOG (GNUNET_ERROR_TYPE_DEBUG,
2831          "cancelling dest: %p\n",
2832          t->destroy_task);
2833     GNUNET_SCHEDULER_cancel (t->destroy_task);
2834     t->destroy_task = NULL;
2835   }
2836
2837   if (NULL != t->trim_connections_task)
2838   {
2839     LOG (GNUNET_ERROR_TYPE_DEBUG, "cancelling trim: %p\n",
2840          t->trim_connections_task);
2841     GNUNET_SCHEDULER_cancel (t->trim_connections_task);
2842     t->trim_connections_task = NULL;
2843   }
2844
2845   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
2846   GCP_set_tunnel (t->peer, NULL);
2847
2848   if (NULL != t->rekey_task)
2849   {
2850     GNUNET_SCHEDULER_cancel (t->rekey_task);
2851     t->rekey_task = NULL;
2852   }
2853   if (NULL != t->ax)
2854     destroy_ax (t);
2855
2856   GNUNET_free (t);
2857 }
2858
2859
2860 /**
2861  * @brief Use the given path for the tunnel.
2862  * Update the next and prev hops (and RCs).
2863  * (Re)start the path refresh in case the tunnel is locally owned.
2864  *
2865  * @param t Tunnel to update.
2866  * @param p Path to use.
2867  *
2868  * @return Connection created.
2869  */
2870 struct CadetConnection *
2871 GCT_use_path (struct CadetTunnel *t, struct CadetPeerPath *path)
2872 {
2873   struct CadetConnection *c;
2874   struct GNUNET_CADET_Hash cid;
2875   unsigned int own_pos;
2876
2877   if (NULL == t || NULL == path)
2878   {
2879     GNUNET_break (0);
2880     return NULL;
2881   }
2882
2883   if (CADET_TUNNEL_SHUTDOWN == t->cstate)
2884   {
2885     GNUNET_break (0);
2886     return NULL;
2887   }
2888
2889   for (own_pos = 0; own_pos < path->length; own_pos++)
2890   {
2891     if (path->peers[own_pos] == myid)
2892       break;
2893   }
2894   if (own_pos >= path->length)
2895   {
2896     GNUNET_break_op (0);
2897     return NULL;
2898   }
2899
2900   GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_NONCE, &cid, sizeof (cid));
2901   c = GCC_new (&cid, t, path, own_pos);
2902   if (NULL == c)
2903   {
2904     /* Path was flawed */
2905     return NULL;
2906   }
2907   GCT_add_connection (t, c);
2908   return c;
2909 }
2910
2911
2912 /**
2913  * Count all created connections of a tunnel. Not necessarily ready connections!
2914  *
2915  * @param t Tunnel on which to count.
2916  *
2917  * @return Number of connections created, either being established or ready.
2918  */
2919 unsigned int
2920 GCT_count_any_connections (struct CadetTunnel *t)
2921 {
2922   struct CadetTConnection *iter;
2923   unsigned int count;
2924
2925   if (NULL == t)
2926     return 0;
2927
2928   for (count = 0, iter = t->connection_head; NULL != iter; iter = iter->next)
2929     count++;
2930
2931   return count;
2932 }
2933
2934
2935 /**
2936  * Count established (ready) connections of a tunnel.
2937  *
2938  * @param t Tunnel on which to count.
2939  *
2940  * @return Number of connections.
2941  */
2942 unsigned int
2943 GCT_count_connections (struct CadetTunnel *t)
2944 {
2945   struct CadetTConnection *iter;
2946   unsigned int count;
2947
2948   if (NULL == t)
2949     return 0;
2950
2951   for (count = 0, iter = t->connection_head; NULL != iter; iter = iter->next)
2952     if (CADET_CONNECTION_READY == GCC_get_state (iter->c))
2953       count++;
2954
2955   return count;
2956 }
2957
2958
2959 /**
2960  * Count channels of a tunnel.
2961  *
2962  * @param t Tunnel on which to count.
2963  *
2964  * @return Number of channels.
2965  */
2966 unsigned int
2967 GCT_count_channels (struct CadetTunnel *t)
2968 {
2969   struct CadetTChannel *iter;
2970   unsigned int count;
2971
2972   for (count = 0, iter = t->channel_head;
2973        NULL != iter;
2974        iter = iter->next, count++) /* skip */;
2975
2976   return count;
2977 }
2978
2979
2980 /**
2981  * Get the connectivity state of a tunnel.
2982  *
2983  * @param t Tunnel.
2984  *
2985  * @return Tunnel's connectivity state.
2986  */
2987 enum CadetTunnelCState
2988 GCT_get_cstate (struct CadetTunnel *t)
2989 {
2990   if (NULL == t)
2991   {
2992     GNUNET_assert (0);
2993     return (enum CadetTunnelCState) -1;
2994   }
2995   return t->cstate;
2996 }
2997
2998
2999 /**
3000  * Get the encryption state of a tunnel.
3001  *
3002  * @param t Tunnel.
3003  *
3004  * @return Tunnel's encryption state.
3005  */
3006 enum CadetTunnelEState
3007 GCT_get_estate (struct CadetTunnel *t)
3008 {
3009   if (NULL == t)
3010   {
3011     GNUNET_break (0);
3012     return (enum CadetTunnelEState) -1;
3013   }
3014   return t->estate;
3015 }
3016
3017 /**
3018  * Get the maximum buffer space for a tunnel towards a local client.
3019  *
3020  * @param t Tunnel.
3021  *
3022  * @return Biggest buffer space offered by any channel in the tunnel.
3023  */
3024 unsigned int
3025 GCT_get_channels_buffer (struct CadetTunnel *t)
3026 {
3027   struct CadetTChannel *iter;
3028   unsigned int buffer;
3029   unsigned int ch_buf;
3030
3031   if (NULL == t->channel_head)
3032   {
3033     /* Probably getting buffer for a channel create/handshake. */
3034     LOG (GNUNET_ERROR_TYPE_DEBUG, "  no channels, allow max\n");
3035     return MIN_TUNNEL_BUFFER;
3036   }
3037
3038   buffer = 0;
3039   for (iter = t->channel_head; NULL != iter; iter = iter->next)
3040   {
3041     ch_buf = get_channel_buffer (iter);
3042     if (ch_buf > buffer)
3043       buffer = ch_buf;
3044   }
3045   if (MIN_TUNNEL_BUFFER > buffer)
3046     return MIN_TUNNEL_BUFFER;
3047
3048   if (MAX_TUNNEL_BUFFER < buffer)
3049   {
3050     GNUNET_break (0);
3051     return MAX_TUNNEL_BUFFER;
3052   }
3053   return buffer;
3054 }
3055
3056
3057 /**
3058  * Get the total buffer space for a tunnel for P2P traffic.
3059  *
3060  * @param t Tunnel.
3061  *
3062  * @return Buffer space offered by all connections in the tunnel.
3063  */
3064 unsigned int
3065 GCT_get_connections_buffer (struct CadetTunnel *t)
3066 {
3067   struct CadetTConnection *iter;
3068   unsigned int buffer;
3069
3070   if (GNUNET_NO == is_ready (t))
3071   {
3072     if (count_queued_data (t) >= 3)
3073       return 0;
3074     else
3075       return 1;
3076   }
3077
3078   buffer = 0;
3079   for (iter = t->connection_head; NULL != iter; iter = iter->next)
3080   {
3081     if (GCC_get_state (iter->c) != CADET_CONNECTION_READY)
3082     {
3083       continue;
3084     }
3085     buffer += get_connection_buffer (iter);
3086   }
3087
3088   return buffer;
3089 }
3090
3091
3092 /**
3093  * Get the tunnel's destination.
3094  *
3095  * @param t Tunnel.
3096  *
3097  * @return ID of the destination peer.
3098  */
3099 const struct GNUNET_PeerIdentity *
3100 GCT_get_destination (struct CadetTunnel *t)
3101 {
3102   return GCP_get_id (t->peer);
3103 }
3104
3105
3106 /**
3107  * Get the tunnel's next free global channel ID.
3108  *
3109  * @param t Tunnel.
3110  *
3111  * @return GID of a channel free to use.
3112  */
3113 CADET_ChannelNumber
3114 GCT_get_next_chid (struct CadetTunnel *t)
3115 {
3116   CADET_ChannelNumber chid;
3117   CADET_ChannelNumber mask;
3118   int result;
3119
3120   /* Set bit 30 depending on the ID relationship. Bit 31 is always 0 for GID.
3121    * If our ID is bigger or loopback tunnel, start at 0, bit 30 = 0
3122    * If peer's ID is bigger, start at 0x4... bit 30 = 1
3123    */
3124   result = GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, GCP_get_id (t->peer));
3125   if (0 > result)
3126     mask = 0x40000000;
3127   else
3128     mask = 0x0;
3129   t->next_chid |= mask;
3130
3131   while (NULL != GCT_get_channel (t, t->next_chid))
3132   {
3133     LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel %u exists...\n", t->next_chid);
3134     t->next_chid = (t->next_chid + 1) & ~GNUNET_CADET_LOCAL_CHANNEL_ID_CLI;
3135     t->next_chid |= mask;
3136   }
3137   chid = t->next_chid;
3138   t->next_chid = (t->next_chid + 1) & ~GNUNET_CADET_LOCAL_CHANNEL_ID_CLI;
3139   t->next_chid |= mask;
3140
3141   return chid;
3142 }
3143
3144
3145 /**
3146  * Send ACK on one or more channels due to buffer in connections.
3147  *
3148  * @param t Channel which has some free buffer space.
3149  */
3150 void
3151 GCT_unchoke_channels (struct CadetTunnel *t)
3152 {
3153   struct CadetTChannel *iter;
3154   unsigned int buffer;
3155   unsigned int channels = GCT_count_channels (t);
3156   unsigned int choked_n;
3157   struct CadetChannel *choked[channels];
3158
3159   LOG (GNUNET_ERROR_TYPE_DEBUG, "GCT_unchoke_channels on %s\n", GCT_2s (t));
3160   LOG (GNUNET_ERROR_TYPE_DEBUG, " head: %p\n", t->channel_head);
3161   if (NULL != t->channel_head)
3162     LOG (GNUNET_ERROR_TYPE_DEBUG, " head ch: %p\n", t->channel_head->ch);
3163
3164   if (NULL != t->tq_head)
3165     send_queued_data (t);
3166
3167   /* Get buffer space */
3168   buffer = GCT_get_connections_buffer (t);
3169   if (0 == buffer)
3170   {
3171     return;
3172   }
3173
3174   /* Count and remember choked channels */
3175   choked_n = 0;
3176   for (iter = t->channel_head; NULL != iter; iter = iter->next)
3177   {
3178     if (GNUNET_NO == get_channel_allowed (iter))
3179     {
3180       choked[choked_n++] = iter->ch;
3181     }
3182   }
3183
3184   /* Unchoke random channels */
3185   while (0 < buffer && 0 < choked_n)
3186   {
3187     unsigned int r = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
3188                                                choked_n);
3189     GCCH_allow_client (choked[r], GCCH_is_origin (choked[r], GNUNET_YES));
3190     choked_n--;
3191     buffer--;
3192     choked[r] = choked[choked_n];
3193   }
3194 }
3195
3196
3197 /**
3198  * Send ACK on one or more connections due to buffer space to the client.
3199  *
3200  * Iterates all connections of the tunnel and sends ACKs appropriately.
3201  *
3202  * @param t Tunnel.
3203  */
3204 void
3205 GCT_send_connection_acks (struct CadetTunnel *t)
3206 {
3207   struct CadetTConnection *iter;
3208   uint32_t allowed;
3209   uint32_t to_allow;
3210   uint32_t allow_per_connection;
3211   unsigned int cs;
3212   unsigned int buffer;
3213
3214   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel send connection ACKs on %s\n",
3215        GCT_2s (t));
3216
3217   if (NULL == t)
3218   {
3219     GNUNET_break (0);
3220     return;
3221   }
3222
3223   if (CADET_TUNNEL_READY != t->cstate)
3224     return;
3225
3226   buffer = GCT_get_channels_buffer (t);
3227   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer %u\n", buffer);
3228
3229   /* Count connections, how many messages are already allowed */
3230   cs = GCT_count_connections (t);
3231   for (allowed = 0, iter = t->connection_head; NULL != iter; iter = iter->next)
3232   {
3233     allowed += get_connection_allowed (iter);
3234   }
3235   LOG (GNUNET_ERROR_TYPE_DEBUG, "  allowed %u\n", allowed);
3236
3237   /* Make sure there is no overflow */
3238   if (allowed > buffer)
3239     return;
3240
3241   /* Authorize connections to send more data */
3242   to_allow = buffer - allowed;
3243
3244   for (iter = t->connection_head;
3245        NULL != iter && to_allow > 0;
3246        iter = iter->next)
3247   {
3248     if (CADET_CONNECTION_READY != GCC_get_state (iter->c)
3249         || get_connection_allowed (iter) > 64 / 3)
3250     {
3251       continue;
3252     }
3253     GNUNET_assert(cs != 0);
3254     allow_per_connection = to_allow/cs;
3255     to_allow -= allow_per_connection;
3256     cs--;
3257     GCC_allow (iter->c, allow_per_connection,
3258                GCC_is_origin (iter->c, GNUNET_NO));
3259   }
3260
3261   if (0 != to_allow)
3262   {
3263     /* Since we don't allow if it's allowed to send 64/3, this can happen. */
3264     LOG (GNUNET_ERROR_TYPE_DEBUG, "  reminding to_allow: %u\n", to_allow);
3265   }
3266 }
3267
3268
3269 /**
3270  * Cancel a previously sent message while it's in the queue.
3271  *
3272  * ONLY can be called before the continuation given to the send function
3273  * is called. Once the continuation is called, the message is no longer in the
3274  * queue.
3275  *
3276  * @param q Handle to the queue.
3277  */
3278 void
3279 GCT_cancel (struct CadetTunnelQueue *q)
3280 {
3281   if (NULL != q->cq)
3282   {
3283     GNUNET_assert (NULL == q->tqd);
3284     GCC_cancel (q->cq);
3285     /* tun_message_sent() will be called and free q */
3286   }
3287   else if (NULL != q->tqd)
3288   {
3289     unqueue_data (q->tqd);
3290     q->tqd = NULL;
3291     if (NULL != q->cont)
3292       q->cont (q->cont_cls, NULL, q, 0, 0);
3293     GNUNET_free (q);
3294   }
3295   else
3296   {
3297     GNUNET_break (0);
3298   }
3299 }
3300
3301
3302 /**
3303  * Check if the tunnel has queued traffic.
3304  *
3305  * @param t Tunnel to check.
3306  *
3307  * @return #GNUNET_YES if there is queued traffic
3308  *         #GNUNET_NO otherwise
3309  */
3310 int
3311 GCT_has_queued_traffic (struct CadetTunnel *t)
3312 {
3313   return (NULL != t->tq_head) ? GNUNET_YES : GNUNET_NO;
3314 }
3315
3316
3317 /**
3318  * Sends an already built message on a tunnel, encrypting it and
3319  * choosing the best connection if not provided.
3320  *
3321  * @param message Message to send. Function modifies it.
3322  * @param t Tunnel on which this message is transmitted.
3323  * @param c Connection to use (autoselect if NULL).
3324  * @param force Force the tunnel to take the message (buffer overfill).
3325  * @param cont Continuation to call once message is really sent.
3326  * @param cont_cls Closure for @c cont.
3327  *
3328  * @return Handle to cancel message. NULL if @c cont is NULL.
3329  */
3330 struct CadetTunnelQueue *
3331 GCT_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
3332                            struct CadetTunnel *t, struct CadetConnection *c,
3333                            int force, GCT_sent cont, void *cont_cls)
3334 {
3335   return send_prebuilt_message (message, t, c, force, cont, cont_cls, NULL);
3336 }
3337
3338
3339 /**
3340  * Send an Axolotl KX message.
3341  *
3342  * @param t Tunnel on which to send it.
3343  * @param force_reply Force the other peer to reply with a KX message.
3344  */
3345 void
3346 GCT_send_ax_kx (struct CadetTunnel *t, int force_reply)
3347 {
3348   struct GNUNET_CADET_AX_KX msg;
3349   enum GNUNET_CADET_AX_KX_Flags flags;
3350
3351   LOG (GNUNET_ERROR_TYPE_INFO, "==> {     AX_KX} on %s\n", GCT_2s (t));
3352   if (NULL != t->ephm_h)
3353   {
3354     LOG (GNUNET_ERROR_TYPE_INFO, "     already queued\n");
3355     return;
3356   }
3357
3358   msg.header.size = htons (sizeof (msg));
3359   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_AX_KX);
3360   flags = GNUNET_CADET_AX_KX_FLAG_NONE;
3361   if (force_reply)
3362     flags |= GNUNET_CADET_AX_KX_FLAG_FORCE_REPLY;
3363   msg.flags = htonl (flags);
3364   GNUNET_CRYPTO_ecdhe_key_get_public (t->ax->kx_0, &msg.ephemeral_key);
3365   GNUNET_CRYPTO_ecdhe_key_get_public (t->ax->DHRs, &msg.ratchet_key);
3366
3367   t->ephm_h = send_kx (t, &msg.header);
3368   if (CADET_TUNNEL_KEY_UNINITIALIZED == t->estate)
3369     GCT_change_estate (t, CADET_TUNNEL_KEY_SENT);
3370 }
3371
3372
3373 /**
3374  * Is the tunnel directed towards the local peer?
3375  *
3376  * @param t Tunnel.
3377  *
3378  * @return #GNUNET_YES if it is loopback.
3379  */
3380 int
3381 GCT_is_loopback (const struct CadetTunnel *t)
3382 {
3383   return (myid == GCP_get_short_id (t->peer));
3384 }
3385
3386
3387 /**
3388  * Is the tunnel this path already?
3389  *
3390  * @param t Tunnel.
3391  * @param p Path.
3392  *
3393  * @return #GNUNET_YES a connection uses this path.
3394  */
3395 int
3396 GCT_is_path_used (const struct CadetTunnel *t, const struct CadetPeerPath *p)
3397 {
3398   struct CadetTConnection *iter;
3399
3400   for (iter = t->connection_head; NULL != iter; iter = iter->next)
3401     if (path_equivalent (GCC_get_path (iter->c), p))
3402       return GNUNET_YES;
3403
3404   return GNUNET_NO;
3405 }
3406
3407
3408 /**
3409  * Get a cost of a path for a tunnel considering existing connections.
3410  *
3411  * @param t Tunnel.
3412  * @param path Candidate path.
3413  *
3414  * @return Cost of the path (path length + number of overlapping nodes)
3415  */
3416 unsigned int
3417 GCT_get_path_cost (const struct CadetTunnel *t,
3418                    const struct CadetPeerPath *path)
3419 {
3420   struct CadetTConnection *iter;
3421   const struct CadetPeerPath *aux;
3422   unsigned int overlap;
3423   unsigned int i;
3424   unsigned int j;
3425
3426   if (NULL == path)
3427     return 0;
3428
3429   overlap = 0;
3430   GNUNET_assert (NULL != t);
3431
3432   for (i = 0; i < path->length; i++)
3433   {
3434     for (iter = t->connection_head; NULL != iter; iter = iter->next)
3435     {
3436       aux = GCC_get_path (iter->c);
3437       if (NULL == aux)
3438         continue;
3439
3440       for (j = 0; j < aux->length; j++)
3441       {
3442         if (path->peers[i] == aux->peers[j])
3443         {
3444           overlap++;
3445           break;
3446         }
3447       }
3448     }
3449   }
3450   return path->length + overlap;
3451 }
3452
3453
3454 /**
3455  * Get the static string for the peer this tunnel is directed.
3456  *
3457  * @param t Tunnel.
3458  *
3459  * @return Static string the destination peer's ID.
3460  */
3461 const char *
3462 GCT_2s (const struct CadetTunnel *t)
3463 {
3464   if (NULL == t)
3465     return "(NULL)";
3466
3467   return GCP_2s (t->peer);
3468 }
3469
3470
3471 /******************************************************************************/
3472 /*****************************    INFO/DEBUG    *******************************/
3473 /******************************************************************************/
3474
3475 static void
3476 ax_debug (const struct CadetTunnelAxolotl *ax, enum GNUNET_ErrorType level)
3477 {
3478   struct GNUNET_CRYPTO_EcdhePublicKey pub;
3479   struct CadetTunnelSkippedKey *iter;
3480
3481   LOG2 (level, "TTT  RK  \t %s\n",
3482         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->RK));
3483
3484   LOG2 (level, "TTT  HKs \t %s\n",
3485         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->HKs));
3486   LOG2 (level, "TTT  HKr \t %s\n",
3487         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->HKr));
3488   LOG2 (level, "TTT  NHKs\t %s\n",
3489         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->NHKs));
3490   LOG2 (level, "TTT  NHKr\t %s\n",
3491         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->NHKr));
3492
3493   LOG2 (level, "TTT  CKs \t %s\n",
3494         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->CKs));
3495   LOG2 (level, "TTT  CKr \t %s\n",
3496         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->CKr));
3497
3498   GNUNET_CRYPTO_ecdhe_key_get_public (ax->DHRs, &pub);
3499   LOG2 (level, "TTT  DHRs\t %s\n",
3500         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &pub));
3501   LOG2 (level, "TTT  DHRr\t %s\n",
3502         GNUNET_i2s ((struct GNUNET_PeerIdentity *) &ax->DHRr));
3503
3504   LOG2 (level, "TTT  Nr\t %u\tNs\t%u\n", ax->Nr, ax->Ns);
3505   LOG2 (level, "TTT  PNs\t %u\tSkipped\t%u\n", ax->PNs, ax->skipped);
3506   LOG2 (level, "TTT  Ratchet\t%u\n", ax->ratchet_flag);
3507
3508   for (iter = ax->skipped_head; NULL != iter; iter = iter->next)
3509   {
3510     LOG2 (level, "TTT    HK\t %s\n",
3511           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &iter->HK));
3512     LOG2 (level, "TTT    MK\t %s\n",
3513           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &iter->MK));
3514   }
3515 }
3516
3517 /**
3518  * Log all possible info about the tunnel state.
3519  *
3520  * @param t Tunnel to debug.
3521  * @param level Debug level to use.
3522  */
3523 void
3524 GCT_debug (const struct CadetTunnel *t, enum GNUNET_ErrorType level)
3525 {
3526   struct CadetTChannel *iterch;
3527   struct CadetTConnection *iterc;
3528   int do_log;
3529
3530   do_log = GNUNET_get_log_call_status (level & (~GNUNET_ERROR_TYPE_BULK),
3531                                        "cadet-tun",
3532                                        __FILE__, __FUNCTION__, __LINE__);
3533   if (0 == do_log)
3534     return;
3535
3536   LOG2 (level, "TTT DEBUG TUNNEL TOWARDS %s\n", GCT_2s (t));
3537   LOG2 (level, "TTT  cstate %s, estate %s\n",
3538        cstate2s (t->cstate), estate2s (t->estate));
3539 #if DUMP_KEYS_TO_STDERR
3540   if (CADET_Axolotl == t->enc_type)
3541   {
3542     ax_debug (t->ax, level);
3543   }
3544   else
3545   {
3546     LOG2 (level, "TTT  peers EPHM:\t %s\n",
3547           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &t->peers_ephemeral_key));
3548     LOG2 (level, "TTT  ENC key:\t %s\n",
3549           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &t->e_key));
3550     LOG2 (level, "TTT  DEC key:\t %s\n",
3551           GNUNET_i2s ((struct GNUNET_PeerIdentity *) &t->d_key));
3552   }
3553 #endif
3554   LOG2 (level, "TTT  tq_head %p, tq_tail %p\n", t->tq_head, t->tq_tail);
3555   LOG2 (level, "TTT  destroy %p\n", t->destroy_task);
3556
3557   LOG2 (level, "TTT  channels:\n");
3558   for (iterch = t->channel_head; NULL != iterch; iterch = iterch->next)
3559   {
3560     GCCH_debug (iterch->ch, level);
3561   }
3562
3563   LOG2 (level, "TTT  connections:\n");
3564   for (iterc = t->connection_head; NULL != iterc; iterc = iterc->next)
3565   {
3566     GCC_debug (iterc->c, level);
3567   }
3568
3569   LOG2 (level, "TTT DEBUG TUNNEL END\n");
3570 }
3571
3572
3573 /**
3574  * Iterate all tunnels.
3575  *
3576  * @param iter Iterator.
3577  * @param cls Closure for @c iter.
3578  */
3579 void
3580 GCT_iterate_all (GNUNET_CONTAINER_PeerMapIterator iter, void *cls)
3581 {
3582   GNUNET_CONTAINER_multipeermap_iterate (tunnels, iter, cls);
3583 }
3584
3585
3586 /**
3587  * Count all tunnels.
3588  *
3589  * @return Number of tunnels to remote peers kept by this peer.
3590  */
3591 unsigned int
3592 GCT_count_all (void)
3593 {
3594   return GNUNET_CONTAINER_multipeermap_size (tunnels);
3595 }
3596
3597
3598 /**
3599  * Iterate all connections of a tunnel.
3600  *
3601  * @param t Tunnel whose connections to iterate.
3602  * @param iter Iterator.
3603  * @param cls Closure for @c iter.
3604  */
3605 void
3606 GCT_iterate_connections (struct CadetTunnel *t, GCT_conn_iter iter, void *cls)
3607 {
3608   struct CadetTConnection *ct;
3609
3610   for (ct = t->connection_head; NULL != ct; ct = ct->next)
3611     iter (cls, ct->c);
3612 }
3613
3614
3615 /**
3616  * Iterate all channels of a tunnel.
3617  *
3618  * @param t Tunnel whose channels to iterate.
3619  * @param iter Iterator.
3620  * @param cls Closure for @c iter.
3621  */
3622 void
3623 GCT_iterate_channels (struct CadetTunnel *t, GCT_chan_iter iter, void *cls)
3624 {
3625   struct CadetTChannel *cht;
3626
3627   for (cht = t->channel_head; NULL != cht; cht = cht->next)
3628     iter (cls, cht->ch);
3629 }