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