- dht debug path
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_tunnel.c
1 /*
2      This file is part of GNUnet.
3      (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 "mesh_protocol.h"
28 #include "mesh_path.h"
29
30 #include "gnunet-service-mesh_tunnel.h"
31 #include "gnunet-service-mesh_connection.h"
32 #include "gnunet-service-mesh_channel.h"
33 #include "gnunet-service-mesh_peer.h"
34
35 #define LOG(level, ...) GNUNET_log_from(level,"mesh-tun",__VA_ARGS__)
36
37 #define REKEY_WAIT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 5)
38
39 #define CONNECTIONS_PER_TUNNEL 3
40
41 /******************************************************************************/
42 /********************************   STRUCTS  **********************************/
43 /******************************************************************************/
44
45 struct MeshTChannel
46 {
47   struct MeshTChannel *next;
48   struct MeshTChannel *prev;
49   struct MeshChannel *ch;
50 };
51
52
53 /**
54  * Connection list and metadata.
55  */
56 struct MeshTConnection
57 {
58   /**
59    * Next in DLL.
60    */
61   struct MeshTConnection *next;
62
63   /**
64    * Prev in DLL.
65    */
66   struct MeshTConnection *prev;
67
68   /**
69    * Connection handle.
70    */
71   struct MeshConnection *c;
72
73   /**
74    * Creation time, to keep oldest connection alive.
75    */
76   struct GNUNET_TIME_Absolute created;
77
78   /**
79    * Connection throughput, to keep fastest connection alive.
80    */
81   uint32_t throughput;
82 };
83
84 /**
85  * Structure used during a Key eXchange.
86  */
87 struct MeshTunnelKXCtx
88 {
89   /**
90    * Decryption ("their") old key, for decrypting traffic sent by the
91    * other end before the key exchange started.
92    */
93   struct GNUNET_CRYPTO_SymmetricSessionKey d_key_old;
94
95   /**
96    * Challenge to send in a ping and expect in the pong.
97    */
98   uint32_t challenge;
99 };
100
101 /**
102  * Struct containing all information regarding a tunnel to a peer.
103  */
104 struct MeshTunnel3
105 {
106     /**
107      * Endpoint of the tunnel.
108      */
109   struct MeshPeer *peer;
110
111     /**
112      * State of the tunnel connectivity.
113      */
114   enum MeshTunnel3CState cstate;
115
116   /**
117    * State of the tunnel encryption.
118    */
119   enum MeshTunnel3EState estate;
120
121   /**
122    * Key eXchange context.
123    */
124   struct MeshTunnelKXCtx *kx_ctx;
125
126   /**
127    * Encryption ("our") key.
128    */
129   struct GNUNET_CRYPTO_SymmetricSessionKey e_key;
130
131   /**
132    * Decryption ("their") key.
133    */
134   struct GNUNET_CRYPTO_SymmetricSessionKey d_key;
135
136   /**
137    * Task to start the rekey process.
138    */
139   GNUNET_SCHEDULER_TaskIdentifier rekey_task;
140
141   /**
142    * Paths that are actively used to reach the destination peer.
143    */
144   struct MeshTConnection *connection_head;
145   struct MeshTConnection *connection_tail;
146
147   /**
148    * Next connection number.
149    */
150   uint32_t next_cid;
151
152   /**
153    * Channels inside this tunnel.
154    */
155   struct MeshTChannel *channel_head;
156   struct MeshTChannel *channel_tail;
157
158   /**
159    * Channel ID for the next created channel.
160    */
161   MESH_ChannelNumber next_chid;
162
163   /**
164    * Destroy flag: if true, destroy on last message.
165    */
166   GNUNET_SCHEDULER_TaskIdentifier destroy_task;
167
168   /**
169    * Queued messages, to transmit once tunnel gets connected.
170    */
171   struct MeshTunnelDelayed *tq_head;
172   struct MeshTunnelDelayed *tq_tail;
173 };
174
175
176 /**
177  * Struct used to save messages in a non-ready tunnel to send once connected.
178  */
179 struct MeshTunnelDelayed
180 {
181   /**
182    * DLL
183    */
184   struct MeshTunnelDelayed *next;
185   struct MeshTunnelDelayed *prev;
186
187   /**
188    * Tunnel.
189    */
190   struct MeshTunnel3 *t;
191
192   /**
193    * Tunnel queue given to the channel to cancel request. Update on send_queued.
194    */
195   struct MeshTunnel3Queue *tq;
196
197   /**
198    * Message to send.
199    */
200   /* struct GNUNET_MessageHeader *msg; */
201 };
202
203
204 /**
205  * Handle for messages queued but not yet sent.
206  */
207 struct MeshTunnel3Queue
208 {
209   /**
210    * Connection queue handle, to cancel if necessary.
211    */
212   struct MeshConnectionQueue *cq;
213
214   /**
215    * Handle in case message hasn't been given to a connection yet.
216    */
217   struct MeshTunnelDelayed *tqd;
218
219   /**
220    * Continuation to call once sent.
221    */
222   GMT_sent cont;
223
224   /**
225    * Closure for @c cont.
226    */
227   void *cont_cls;
228 };
229
230
231 /******************************************************************************/
232 /*******************************   GLOBALS  ***********************************/
233 /******************************************************************************/
234
235 /**
236  * Global handle to the statistics service.
237  */
238 extern struct GNUNET_STATISTICS_Handle *stats;
239
240 /**
241  * Local peer own ID (memory efficient handle).
242  */
243 extern GNUNET_PEER_Id myid;
244
245 /**
246  * Local peer own ID (full value).
247  */
248 extern struct GNUNET_PeerIdentity my_full_id;
249
250
251 /**
252  * Don't try to recover tunnels if shutting down.
253  */
254 extern int shutting_down;
255
256
257 /**
258  * Set of all tunnels, in order to trigger a new exchange on rekey.
259  * Indexed by peer's ID.
260  */
261 static struct GNUNET_CONTAINER_MultiPeerMap *tunnels;
262
263 /**
264  * Default TTL for payload packets.
265  */
266 static unsigned long long default_ttl;
267
268 /**
269  * Own private key.
270  */
271 const static struct GNUNET_CRYPTO_EddsaPrivateKey *my_private_key;
272
273 /**
274  * Own ephemeral private key.
275  */
276 static struct GNUNET_CRYPTO_EcdhePrivateKey *my_ephemeral_key;
277
278 /**
279  * Cached message used to perform a key exchange.
280  */
281 static struct GNUNET_MESH_KX_Ephemeral kx_msg;
282
283 /**
284  * Task to generate a new ephemeral key.
285  */
286 static GNUNET_SCHEDULER_TaskIdentifier rekey_task;
287
288 /**
289  * Rekey period.
290  */
291 static struct GNUNET_TIME_Relative rekey_period;
292
293 /******************************************************************************/
294 /********************************   STATIC  ***********************************/
295 /******************************************************************************/
296
297 /**
298  * Get string description for tunnel connectivity state.
299  *
300  * @param cs Tunnel state.
301  *
302  * @return String representation.
303  */
304 static const char *
305 cstate2s (enum MeshTunnel3CState cs)
306 {
307   static char buf[128];
308
309   switch (cs)
310   {
311     case MESH_TUNNEL3_NEW:
312       return "MESH_TUNNEL3_NEW";
313     case MESH_TUNNEL3_SEARCHING:
314       return "MESH_TUNNEL3_SEARCHING";
315     case MESH_TUNNEL3_WAITING:
316       return "MESH_TUNNEL3_WAITING";
317     case MESH_TUNNEL3_READY:
318       return "MESH_TUNNEL3_READY";
319
320     default:
321       sprintf (buf, "%u (UNKNOWN STATE)", cs);
322       return buf;
323   }
324   return "";
325 }
326
327
328 /**
329  * Get string description for tunnel encryption state.
330  *
331  * @param es Tunnel state.
332  *
333  * @return String representation.
334  */
335 static const char *
336 estate2s (enum MeshTunnel3EState es)
337 {
338   static char buf[128];
339
340   switch (es)
341   {
342     case MESH_TUNNEL3_KEY_UNINITIALIZED:
343       return "MESH_TUNNEL3_KEY_UNINITIALIZED";
344     case MESH_TUNNEL3_KEY_SENT:
345       return "MESH_TUNNEL3_KEY_SENT";
346     case MESH_TUNNEL3_KEY_PING:
347       return "MESH_TUNNEL3_KEY_PING";
348     case MESH_TUNNEL3_KEY_OK:
349       return "MESH_TUNNEL3_KEY_OK";
350
351     default:
352       sprintf (buf, "%u (UNKNOWN STATE)", es);
353       return buf;
354   }
355   return "";
356 }
357
358
359 /**
360  * @brief Check if tunnel is ready to send traffic.
361  *
362  * Tunnel must be connected and with encryption correctly set up.
363  *
364  * @param t Tunnel to check.
365  *
366  * @return #GNUNET_YES if ready, #GNUNET_NO otherwise
367  */
368 static int
369 is_ready (struct MeshTunnel3 *t)
370 {
371   int ready;
372
373   GMT_debug (t);
374   ready = (MESH_TUNNEL3_READY == t->cstate && MESH_TUNNEL3_KEY_OK == t->estate);
375   ready = ready || GMT_is_loopback (t);
376   return ready;
377 }
378
379
380 /**
381  * Ephemeral key message purpose size.
382  *
383  * @return Size of the part of the ephemeral key message that must be signed.
384  */
385 size_t
386 ephemeral_purpose_size (void)
387 {
388   return sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose) +
389          sizeof (struct GNUNET_TIME_AbsoluteNBO) +
390          sizeof (struct GNUNET_TIME_AbsoluteNBO) +
391          sizeof (struct GNUNET_CRYPTO_EcdhePublicKey) +
392          sizeof (struct GNUNET_PeerIdentity);
393 }
394
395
396 /**
397  * Size of the encrypted part of a ping message.
398  *
399  * @return Size of the encrypted part of a ping message.
400  */
401 size_t
402 ping_encryption_size (void)
403 {
404   return sizeof (struct GNUNET_PeerIdentity) + sizeof (uint32_t);
405 }
406
407
408 /**
409  * Get the channel's buffer. ONLY FOR NON-LOOPBACK CHANNELS!!
410  *
411  * @param tch Tunnel's channel handle.
412  *
413  * @return Amount of messages the channel can still buffer towards the client.
414  */
415 static unsigned int
416 get_channel_buffer (const struct MeshTChannel *tch)
417 {
418   int fwd;
419
420   /* If channel is outgoing, is origin in the FWD direction and fwd is YES */
421   fwd = GMCH_is_origin (tch->ch, GNUNET_YES);
422
423   return GMCH_get_buffer (tch->ch, fwd);
424 }
425
426
427 /**
428  * Get the channel's allowance status.
429  *
430  * @param tch Tunnel's channel handle.
431  *
432  * @return #GNUNET_YES if we allowed the client to send data to us.
433  */
434 static int
435 get_channel_allowed (const struct MeshTChannel *tch)
436 {
437   int fwd;
438
439   /* If channel is outgoing, is origin in the FWD direction and fwd is YES */
440   fwd = GMCH_is_origin (tch->ch, GNUNET_YES);
441
442   return GMCH_get_allowed (tch->ch, fwd);
443 }
444
445
446 /**
447  * Get the connection's buffer.
448  *
449  * @param tc Tunnel's connection handle.
450  *
451  * @return Amount of messages the connection can still buffer.
452  */
453 static unsigned int
454 get_connection_buffer (const struct MeshTConnection *tc)
455 {
456   int fwd;
457
458   /* If connection is outgoing, is origin in the FWD direction and fwd is YES */
459   fwd = GMC_is_origin (tc->c, GNUNET_YES);
460
461   return GMC_get_buffer (tc->c, fwd);
462 }
463
464
465 /**
466  * Get the connection's allowance.
467  *
468  * @param tc Tunnel's connection handle.
469  *
470  * @return Amount of messages we have allowed the next peer to send us.
471  */
472 static unsigned int
473 get_connection_allowed (const struct MeshTConnection *tc)
474 {
475   int fwd;
476
477   /* If connection is outgoing, is origin in the FWD direction and fwd is YES */
478   fwd = GMC_is_origin (tc->c, GNUNET_YES);
479
480   return GMC_get_allowed (tc->c, fwd);
481 }
482
483
484 /**
485  * Check that a ephemeral key message s well formed and correctly signed.
486  *
487  * @param t Tunnel on which the message came.
488  * @param msg The ephemeral key message.
489  *
490  * @return GNUNET_OK if message is fine, GNUNET_SYSERR otherwise.
491  */
492 int
493 check_ephemeral (struct MeshTunnel3 *t,
494                  const struct GNUNET_MESH_KX_Ephemeral *msg)
495 {
496   /* Check message size */
497   if (ntohs (msg->header.size) != sizeof (struct GNUNET_MESH_KX_Ephemeral))
498     return GNUNET_SYSERR;
499
500   /* Check signature size */
501   if (ntohl (msg->purpose.size) != ephemeral_purpose_size ())
502     return GNUNET_SYSERR;
503
504   /* Check origin */
505   if (0 != memcmp (&msg->origin_identity,
506                    GMP_get_id (t->peer),
507                    sizeof (struct GNUNET_PeerIdentity)))
508     return GNUNET_SYSERR;
509
510   /* Check signature */
511   if (GNUNET_OK !=
512       GNUNET_CRYPTO_eddsa_verify (GNUNET_SIGNATURE_PURPOSE_MESH_KX,
513                                   &msg->purpose,
514                                   &msg->signature,
515                                   &msg->origin_identity.public_key))
516     return GNUNET_SYSERR;
517
518   return GNUNET_OK;
519 }
520
521
522 /**
523  * Encrypt data with the tunnel key.
524  *
525  * @param t Tunnel whose key to use.
526  * @param dst Destination for the encrypted data.
527  * @param src Source of the plaintext. Can overlap with @c dst.
528  * @param size Size of the plaintext.
529  * @param iv Initialization Vector to use.
530  */
531 static int
532 t_encrypt (struct MeshTunnel3 *t,
533            void *dst, const void *src,
534            size_t size, uint32_t iv)
535 {
536   struct GNUNET_CRYPTO_SymmetricInitializationVector siv;
537   size_t out_size;
538
539   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_encrypt start\n");
540   GNUNET_CRYPTO_symmetric_derive_iv (&siv, &t->e_key, &iv, sizeof (iv), NULL);
541   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_encrypt IV derived\n");
542   out_size = GNUNET_CRYPTO_symmetric_encrypt (src, size, &t->e_key, &siv, dst);
543   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_encrypt end\n");
544
545   return out_size;
546 }
547
548
549 /**
550  * Decrypt data with the tunnel key.
551  *
552  * @param t Tunnel whose key to use.
553  * @param dst Destination for the plaintext.
554  * @param src Source of the encrypted data. Can overlap with @c dst.
555  * @param size Size of the encrypted data.
556  * @param iv Initialization Vector to use.
557  */
558 static int
559 t_decrypt (struct MeshTunnel3 *t,
560            void *dst, const void *src,
561            size_t size, uint32_t iv)
562 {
563   struct GNUNET_CRYPTO_SymmetricInitializationVector siv;
564   struct GNUNET_CRYPTO_SymmetricSessionKey *key;
565   size_t out_size;
566
567   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_decrypt start\n");
568   if (t->estate == MESH_TUNNEL3_KEY_OK || t->estate == MESH_TUNNEL3_KEY_PING)
569   {
570     key = &t->d_key;
571   }
572   else if (NULL != t->kx_ctx)
573   {
574     key = &t->kx_ctx->d_key_old;
575   }
576   else
577   {
578     GNUNET_STATISTICS_update (stats, "# non decryptable data", 1, GNUNET_NO);
579     LOG (GNUNET_ERROR_TYPE_DEBUG,
580          "WARNING got data on %s without a valid key\n",
581          GMT_2s (t));
582     GMT_debug (t);
583     return 0;
584   }
585
586   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_decrypt iv\n");
587   GNUNET_CRYPTO_symmetric_derive_iv (&siv, key, &iv, sizeof (iv), NULL);
588   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_decrypt iv done\n");
589   out_size = GNUNET_CRYPTO_symmetric_decrypt (src, size, key, &siv, dst);
590   LOG (GNUNET_ERROR_TYPE_DEBUG, "  t_decrypt end\n");
591
592   return out_size;
593 }
594
595
596 /**
597  * Create key material by doing ECDH on the local and remote ephemeral keys.
598  *
599  * @param key_material Where to store the key material.
600  * @param ephemeral_key Peer's public ephemeral key.
601  */
602 void
603 derive_key_material (struct GNUNET_HashCode *key_material,
604                      const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral_key)
605 {
606   if (GNUNET_OK !=
607       GNUNET_CRYPTO_ecc_ecdh (my_ephemeral_key,
608                               ephemeral_key,
609                               key_material))
610   {
611     GNUNET_break (0);
612   }
613 }
614
615 /**
616  * Create a symmetic key from the identities of both ends and the key material
617  * from ECDH.
618  *
619  * @param key Destination for the generated key.
620  * @param sender ID of the peer that will encrypt with @c key.
621  * @param receiver ID of the peer that will decrypt with @c key.
622  * @param key_material Hash created with ECDH with the ephemeral keys.
623  */
624 void
625 derive_symmertic (struct GNUNET_CRYPTO_SymmetricSessionKey *key,
626                   const struct GNUNET_PeerIdentity *sender,
627                   const struct GNUNET_PeerIdentity *receiver,
628                   const struct GNUNET_HashCode *key_material)
629 {
630   const char salt[] = "MESH kx salt";
631
632   GNUNET_CRYPTO_kdf (key, sizeof (struct GNUNET_CRYPTO_SymmetricSessionKey),
633                      salt, sizeof (salt),
634                      key_material, sizeof (struct GNUNET_HashCode),
635                      sender, sizeof (struct GNUNET_PeerIdentity),
636                      receiver, sizeof (struct GNUNET_PeerIdentity),
637                      NULL);
638 }
639
640 /**
641  * Pick a connection on which send the next data message.
642  *
643  * @param t Tunnel on which to send the message.
644  *
645  * @return The connection on which to send the next message.
646  */
647 static struct MeshConnection *
648 tunnel_get_connection (struct MeshTunnel3 *t)
649 {
650   struct MeshTConnection *iter;
651   struct MeshConnection *best;
652   unsigned int qn;
653   unsigned int lowest_q;
654
655   LOG (GNUNET_ERROR_TYPE_DEBUG, "tunnel_get_connection %s\n", GMT_2s (t));
656   best = NULL;
657   lowest_q = UINT_MAX;
658   for (iter = t->connection_head; NULL != iter; iter = iter->next)
659   {
660     LOG (GNUNET_ERROR_TYPE_DEBUG, "  connection %s: %u\n",
661          GMC_2s (iter->c), GMC_get_state (iter->c));
662     if (MESH_CONNECTION_READY == GMC_get_state (iter->c))
663     {
664       qn = GMC_get_qn (iter->c, GMC_is_origin (iter->c, GNUNET_YES));
665       LOG (GNUNET_ERROR_TYPE_DEBUG, "    q_n %u, \n", qn);
666       if (qn < lowest_q)
667       {
668         best = iter->c;
669         lowest_q = qn;
670       }
671     }
672   }
673   LOG (GNUNET_ERROR_TYPE_DEBUG, " selected: connection %s\n", GMC_2s (best));
674   return best;
675 }
676
677
678 /**
679  * Callback called when a queued message is sent.
680  *
681  * Calculates the average time and connection packet tracking.
682  *
683  * @param cls Closure (TunnelQueue handle).
684  * @param c Connection this message was on.
685  * @param q Connection queue handle (unused).
686  * @param type Type of message sent.
687  * @param fwd Was this a FWD going message?
688  * @param size Size of the message.
689  */
690 static void
691 message_sent (void *cls,
692               struct MeshConnection *c,
693               struct MeshConnectionQueue *q,
694               uint16_t type, int fwd, size_t size)
695 {
696   struct MeshTunnel3Queue *qt = cls;
697
698   GNUNET_assert (NULL != qt->cont);
699   qt->cont (qt->cont_cls, GMC_get_tunnel (c), qt, type, size);
700   GNUNET_free (qt);
701 }
702
703
704 /**
705  * Delete a queued message: either was sent or the channel was destroyed
706  * before the tunnel's key exchange had a chance to finish.
707  *
708  * @param tqd Delayed queue handle.
709  */
710 static void
711 unqueue_data (struct MeshTunnelDelayed *tqd)
712 {
713   GNUNET_CONTAINER_DLL_remove (tqd->t->tq_head, tqd->t->tq_tail, tqd);
714   GNUNET_free (tqd);
715 }
716
717
718 /**
719  * Cache a message to be sent once tunnel is online.
720  *
721  * @param t Tunnel to hold the message.
722  * @param msg Message itself (copy will be made).
723  */
724 static struct MeshTunnelDelayed *
725 queue_data (struct MeshTunnel3 *t, const struct GNUNET_MessageHeader *msg)
726 {
727   struct MeshTunnelDelayed *tqd;
728   uint16_t size = ntohs (msg->size);
729
730   LOG (GNUNET_ERROR_TYPE_DEBUG, "queue data on Tunnel %s\n", GMT_2s (t));
731
732   if (GNUNET_YES == is_ready (t))
733   {
734     GNUNET_break (0);
735     return NULL;
736   }
737
738   tqd = GNUNET_malloc (sizeof (struct MeshTunnelDelayed) + size);
739
740   tqd->t = t;
741   memcpy (&tqd[1], msg, size);
742   GNUNET_CONTAINER_DLL_insert_tail (t->tq_head, t->tq_tail, tqd);
743   return tqd;
744 }
745
746
747 /**
748  * Calculate HMAC.
749  *
750  * @param t Tunnel to get keys from.
751  * @param plaintext Content to HMAC.
752  * @param size Size of @c plaintext.
753  * @param iv Initialization vector for the message.
754  * @param outgoing Is this an outgoing message that we encrypted?
755  * @param hmac Destination to store the HMAC.
756  */
757 static void
758 t_hmac (struct MeshTunnel3 *t, const void *plaintext, size_t size, uint32_t iv,
759         int outgoing, struct GNUNET_MeshHash *hmac)
760 {
761   struct GNUNET_CRYPTO_AuthKey auth_key;
762   static const char ctx[] = "mesh authentication key";
763   struct GNUNET_CRYPTO_SymmetricSessionKey *key;
764   struct GNUNET_HashCode hash;
765
766   key = outgoing ? &t->e_key : &t->d_key;
767   GNUNET_CRYPTO_hmac_derive_key (&auth_key, key,
768                                  &iv, sizeof (iv),
769                                  key, sizeof (*key),
770                                  ctx, sizeof (ctx),
771                                  NULL);
772   GNUNET_CRYPTO_hmac (&auth_key, plaintext, size, &hash);
773   memcpy (hmac, &hash, sizeof (*hmac));
774 }
775
776
777 /**
778  * Sends an already built message on a tunnel, encrypting it and
779  * choosing the best connection.
780  *
781  * @param message Message to send. Function modifies it.
782  * @param t Tunnel on which this message is transmitted.
783  * @param c Connection to use (autoselect if NULL).
784  * @param force Force the tunnel to take the message (buffer overfill).
785  * @param cont Continuation to call once message is really sent.
786  * @param cont_cls Closure for @c cont.
787  * @param existing_q In case this a transmission of previously queued data,
788  *                   this should be TunnelQueue given to the client.
789  *                   Otherwise, NULL.
790  *
791  * @return Handle to cancel message. NULL if @c cont is NULL.
792  */
793 static struct MeshTunnel3Queue *
794 send_prebuilt_message (const struct GNUNET_MessageHeader *message,
795                        struct MeshTunnel3 *t, struct MeshConnection *c,
796                        int force, GMT_sent cont, void *cont_cls,
797                        struct MeshTunnel3Queue *existing_q)
798 {
799   struct MeshTunnel3Queue *tq;
800   struct GNUNET_MESH_Encrypted *msg;
801   size_t size = ntohs (message->size);
802   char cbuf[sizeof (struct GNUNET_MESH_Encrypted) + size];
803   uint32_t iv;
804   uint16_t type;
805   int fwd;
806
807   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMT Send on Tunnel %s\n", GMT_2s (t));
808
809   if (GNUNET_NO == is_ready (t))
810   {
811     struct MeshTunnelDelayed *tqd;
812     /* A non null existing_q indicates sending of queued data.
813      * Should only happen after tunnel becomes ready.
814      */
815     GNUNET_assert (NULL == existing_q);
816     tqd = queue_data (t, message);
817     if (NULL == cont)
818       return NULL;
819     tq = GNUNET_new (struct MeshTunnel3Queue);
820     tq->tqd = tqd;
821     tqd->tq = tq;
822     tq->cont = cont;
823     tq->cont_cls = cont_cls;
824     return tq;
825   }
826
827   GNUNET_assert (GNUNET_NO == GMT_is_loopback (t));
828
829   iv = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
830   msg = (struct GNUNET_MESH_Encrypted *) cbuf;
831   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED);
832   msg->iv = iv;
833   GNUNET_assert (t_encrypt (t, &msg[1], message, size, iv) == size);
834   t_hmac (t, &msg[1], size, iv, GNUNET_YES, &msg->hmac);
835   msg->header.size = htons (sizeof (struct GNUNET_MESH_Encrypted) + size);
836
837   if (NULL == c)
838     c = tunnel_get_connection (t);
839   if (NULL == c)
840   {
841     if (GNUNET_SCHEDULER_NO_TASK != t->destroy_task
842         || MESH_TUNNEL3_SEARCHING != t->cstate)
843     {
844       GNUNET_break (0);
845       GMT_debug (t);
846     }
847     return NULL;
848   }
849
850   type = ntohs (message->type);
851   switch (type)
852   {
853     case GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE:
854     case GNUNET_MESSAGE_TYPE_MESH_DATA:
855     case GNUNET_MESSAGE_TYPE_MESH_DATA_ACK:
856     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
857     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY:
858     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_ACK:
859     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_NACK:
860       msg->cid = *GMC_get_id (c);
861       msg->ttl = htonl (default_ttl);
862       break;
863     default:
864       LOG (GNUNET_ERROR_TYPE_DEBUG, "unkown type %s\n",
865            GM_m2s (type));
866       GNUNET_break (0);
867   }
868
869   fwd = GMC_is_origin (c, GNUNET_YES);
870
871   if (NULL == cont)
872   {
873     (void) GMC_send_prebuilt_message (&msg->header, c, fwd, force, NULL, NULL);
874     return NULL;
875   }
876   if (NULL == existing_q)
877   {
878     tq = GNUNET_new (struct MeshTunnel3Queue); /* FIXME valgrind: leak*/
879   }
880   else
881   {
882     tq = existing_q;
883     tq->tqd = NULL;
884   }
885   tq->cq = GMC_send_prebuilt_message (&msg->header, c, fwd, force,
886                                       &message_sent, tq);
887   tq->cont = cont;
888   tq->cont_cls = cont_cls;
889
890   return tq;
891 }
892
893
894 /**
895  * Send all cached messages that we can, tunnel is online.
896  *
897  * @param t Tunnel that holds the messages. Cannot be loopback.
898  */
899 static void
900 send_queued_data (struct MeshTunnel3 *t)
901 {
902   struct MeshTunnelDelayed *tqd;
903   struct MeshTunnelDelayed *next;
904   unsigned int room;
905
906   LOG (GNUNET_ERROR_TYPE_DEBUG,
907        "GMT_send_queued_data on tunnel %s\n",
908        GMT_2s (t));
909
910   if (GMT_is_loopback (t))
911   {
912     GNUNET_break (0);
913     return;
914   }
915
916   if (GNUNET_NO == is_ready (t))
917   {
918     LOG (GNUNET_ERROR_TYPE_DEBUG, "  not ready yet: %s/%s\n",
919          estate2s (t->estate), cstate2s (t->cstate));
920     return;
921   }
922
923   room = GMT_get_connections_buffer (t);
924   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer space: %u\n", room);
925   LOG (GNUNET_ERROR_TYPE_DEBUG, "  tq head: %p\n", t->tq_head);
926   for (tqd = t->tq_head; NULL != tqd && room > 0; tqd = next)
927   {
928     LOG (GNUNET_ERROR_TYPE_DEBUG, " sending queued data\n");
929     next = tqd->next;
930     room--;
931     send_prebuilt_message ((struct GNUNET_MessageHeader *) &tqd[1],
932                            tqd->t, NULL, GNUNET_YES,
933                            NULL != tqd->tq ? tqd->tq->cont : NULL,
934                            NULL != tqd->tq ? tqd->tq->cont_cls : NULL,
935                            tqd->tq);
936     unqueue_data (tqd);
937   }
938   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMT_send_queued_data end\n", GMP_2s (t->peer));
939 }
940
941
942 /**
943  * Sends key exchange message on a tunnel, choosing the best connection.
944  * Should not be called on loopback tunnels.
945  *
946  * @param t Tunnel on which this message is transmitted.
947  * @param message Message to send. Function modifies it.
948  */
949 static void
950 send_kx (struct MeshTunnel3 *t,
951          const struct GNUNET_MessageHeader *message)
952 {
953   struct MeshConnection *c;
954   struct GNUNET_MESH_KX *msg;
955   size_t size = ntohs (message->size);
956   char cbuf[sizeof (struct GNUNET_MESH_KX) + size];
957   uint16_t type;
958   int fwd;
959
960   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMT KX on Tunnel %s\n", GMT_2s (t));
961
962   /* Avoid loopback. */
963   if (GMT_is_loopback (t))
964   {
965     LOG (GNUNET_ERROR_TYPE_DEBUG, "  loopback!\n");
966     GNUNET_break (0);
967     return;
968   }
969
970   if (GNUNET_SCHEDULER_NO_TASK != t->destroy_task)
971   {
972     LOG (GNUNET_ERROR_TYPE_DEBUG, "  being destroyed, why bother\n");
973     return;
974   }
975
976   /* Must have a connection. */
977   if (NULL == t->connection_head)
978   {
979     GNUNET_break (MESH_TUNNEL3_SEARCHING == t->cstate);
980     GMT_debug (t);
981     return;
982   }
983
984   msg = (struct GNUNET_MESH_KX *) cbuf;
985   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_KX);
986   msg->header.size = htons (sizeof (struct GNUNET_MESH_KX) + size);
987   c = tunnel_get_connection (t);
988   if (NULL == c)
989   {
990     GNUNET_break (GNUNET_SCHEDULER_NO_TASK != t->destroy_task
991                   || MESH_TUNNEL3_READY != t->cstate);
992     GMT_debug (t);
993     return;
994   }
995   type = ntohs (message->type);
996   switch (type)
997   {
998     case GNUNET_MESSAGE_TYPE_MESH_KX_EPHEMERAL:
999     case GNUNET_MESSAGE_TYPE_MESH_KX_PING:
1000     case GNUNET_MESSAGE_TYPE_MESH_KX_PONG:
1001       memcpy (&msg[1], message, size);
1002       break;
1003     default:
1004       LOG (GNUNET_ERROR_TYPE_DEBUG, "unkown type %s\n",
1005            GM_m2s (type));
1006       GNUNET_break (0);
1007   }
1008
1009   fwd = GMC_is_origin (t->connection_head->c, GNUNET_YES);
1010   /* TODO save handle and cancel in case of a unneeded retransmission */
1011   GMC_send_prebuilt_message (&msg->header, c, fwd, GNUNET_YES, NULL, NULL);
1012 }
1013
1014
1015 /**
1016  * Send the ephemeral key on a tunnel.
1017  *
1018  * @param t Tunnel on which to send the key.
1019  */
1020 static void
1021 send_ephemeral (struct MeshTunnel3 *t)
1022 {
1023   LOG (GNUNET_ERROR_TYPE_INFO, "=> EPHM for %s\n", GMT_2s (t));
1024
1025   kx_msg.sender_status = htonl (t->estate);
1026   send_kx (t, &kx_msg.header);
1027 }
1028
1029 /**
1030  * Send a ping message on a tunnel.
1031  *
1032  * @param t Tunnel on which to send the ping.
1033  */
1034 static void
1035 send_ping (struct MeshTunnel3 *t)
1036 {
1037   struct GNUNET_MESH_KX_Ping msg;
1038
1039   LOG (GNUNET_ERROR_TYPE_INFO, "=> PING for %s\n", GMT_2s (t));
1040   msg.header.size = htons (sizeof (msg));
1041   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_KX_PING);
1042   msg.iv = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
1043   msg.target = *GMP_get_id (t->peer);
1044   msg.nonce = t->kx_ctx->challenge;
1045
1046   LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending %u\n", msg.nonce);
1047   LOG (GNUNET_ERROR_TYPE_DEBUG, "  towards %s\n", GNUNET_i2s (&msg.target));
1048   t_encrypt (t, &msg.target, &msg.target, ping_encryption_size(), msg.iv);
1049   LOG (GNUNET_ERROR_TYPE_DEBUG, "  e sending %u\n", msg.nonce);
1050   LOG (GNUNET_ERROR_TYPE_DEBUG, "  e towards %s\n", GNUNET_i2s (&msg.target));
1051
1052   send_kx (t, &msg.header);
1053 }
1054
1055
1056 /**
1057  * Send a pong message on a tunnel.
1058  *
1059  * @param t Tunnel on which to send the pong.
1060  * @param challenge Value sent in the ping that we have to send back.
1061  */
1062 static void
1063 send_pong (struct MeshTunnel3 *t, uint32_t challenge)
1064 {
1065   struct GNUNET_MESH_KX_Pong msg;
1066
1067   LOG (GNUNET_ERROR_TYPE_INFO, "=> PONG for %s\n", GMT_2s (t));
1068   msg.header.size = htons (sizeof (msg));
1069   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_KX_PONG);
1070   msg.iv = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
1071   msg.nonce = challenge;
1072   LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending %u\n", msg.nonce);
1073   t_encrypt (t, &msg.nonce, &msg.nonce, sizeof (msg.nonce), msg.iv);
1074   LOG (GNUNET_ERROR_TYPE_DEBUG, "  e sending %u\n", msg.nonce);
1075
1076   send_kx (t, &msg.header);
1077 }
1078
1079
1080 /**
1081  * Initiate a rekey with the remote peer.
1082  *
1083  * @param cls Closure (tunnel).
1084  * @param tc TaskContext.
1085  */
1086 static void
1087 rekey_tunnel (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1088 {
1089   struct MeshTunnel3 *t = cls;
1090
1091   t->rekey_task = GNUNET_SCHEDULER_NO_TASK;
1092
1093   LOG (GNUNET_ERROR_TYPE_DEBUG, "Re-key Tunnel %s\n", GMT_2s (t));
1094   if (NULL != tc && 0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
1095     return;
1096
1097   if (NULL == t->kx_ctx)
1098   {
1099     LOG (GNUNET_ERROR_TYPE_DEBUG, "  new kx ctx\n");
1100     t->kx_ctx = GNUNET_new (struct MeshTunnelKXCtx);
1101     t->kx_ctx->challenge =
1102         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
1103     t->kx_ctx->d_key_old = t->d_key;
1104     LOG (GNUNET_ERROR_TYPE_DEBUG, "  new challenge for %s: %u\n",
1105          GMT_2s (t), t->kx_ctx->challenge);
1106   }
1107   send_ephemeral (t);
1108   switch (t->estate)
1109   {
1110     case MESH_TUNNEL3_KEY_UNINITIALIZED:
1111       t->estate = MESH_TUNNEL3_KEY_SENT;
1112       break;
1113     case MESH_TUNNEL3_KEY_SENT:
1114       break;
1115     case MESH_TUNNEL3_KEY_PING:
1116     case MESH_TUNNEL3_KEY_OK:
1117       send_ping (t);
1118       t->estate = MESH_TUNNEL3_KEY_PING;
1119       break;
1120     default:
1121       LOG (GNUNET_ERROR_TYPE_DEBUG, "Unexpected state %u\n", t->estate);
1122   }
1123
1124   LOG (GNUNET_ERROR_TYPE_DEBUG, "  next call in %s\n",
1125        GNUNET_STRINGS_relative_time_to_string (REKEY_WAIT, GNUNET_YES));
1126   t->rekey_task = GNUNET_SCHEDULER_add_delayed (REKEY_WAIT, &rekey_tunnel, t);
1127 }
1128
1129
1130 /**
1131  * Out ephemeral key has changed, create new session key on all tunnels.
1132  *
1133  * @param cls Closure (size of the hashmap).
1134  * @param key Current public key.
1135  * @param value Value in the hash map (tunnel).
1136  *
1137  * @return #GNUNET_YES, so we should continue to iterate,
1138  */
1139 static int
1140 rekey_iterator (void *cls,
1141                 const struct GNUNET_PeerIdentity *key,
1142                 void *value)
1143 {
1144   struct MeshTunnel3 *t = value;
1145   struct GNUNET_TIME_Relative delay;
1146   long n = (long) cls;
1147   uint32_t r;
1148
1149   if (GNUNET_SCHEDULER_NO_TASK != t->rekey_task)
1150     return GNUNET_YES;
1151
1152   if (GNUNET_YES == GMT_is_loopback (t))
1153     return GNUNET_YES;
1154
1155   r = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, (uint32_t) n * 100);
1156   delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, r);
1157   t->rekey_task = GNUNET_SCHEDULER_add_delayed (delay, &rekey_tunnel, t);
1158
1159   return GNUNET_YES;
1160 }
1161
1162
1163 /**
1164  * Create a new ephemeral key and key message, schedule next rekeying.
1165  *
1166  * @param cls Closure (unused).
1167  * @param tc TaskContext.
1168  */
1169 static void
1170 rekey (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1171 {
1172   struct GNUNET_TIME_Absolute time;
1173   long n;
1174
1175   rekey_task = GNUNET_SCHEDULER_NO_TASK;
1176
1177   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
1178     return;
1179
1180   GNUNET_free_non_null (my_ephemeral_key);
1181   my_ephemeral_key = GNUNET_CRYPTO_ecdhe_key_create ();
1182
1183   time = GNUNET_TIME_absolute_get ();
1184   kx_msg.creation_time = GNUNET_TIME_absolute_hton (time);
1185   time = GNUNET_TIME_absolute_add (time, rekey_period);
1186   time = GNUNET_TIME_absolute_add (time, GNUNET_TIME_UNIT_MINUTES);
1187   kx_msg.expiration_time = GNUNET_TIME_absolute_hton (time);
1188   GNUNET_CRYPTO_ecdhe_key_get_public (my_ephemeral_key, &kx_msg.ephemeral_key);
1189
1190   GNUNET_assert (GNUNET_OK ==
1191                  GNUNET_CRYPTO_eddsa_sign (my_private_key,
1192                                            &kx_msg.purpose,
1193                                            &kx_msg.signature));
1194
1195   n = (long) GNUNET_CONTAINER_multipeermap_size (tunnels);
1196   GNUNET_CONTAINER_multipeermap_iterate (tunnels, &rekey_iterator, (void *) n);
1197
1198   rekey_task = GNUNET_SCHEDULER_add_delayed (rekey_period, &rekey, NULL);
1199 }
1200
1201
1202 /**
1203  * Called only on shutdown, destroy every tunnel.
1204  *
1205  * @param cls Closure (unused).
1206  * @param key Current public key.
1207  * @param value Value in the hash map (tunnel).
1208  *
1209  * @return #GNUNET_YES, so we should continue to iterate,
1210  */
1211 static int
1212 destroy_iterator (void *cls,
1213                 const struct GNUNET_PeerIdentity *key,
1214                 void *value)
1215 {
1216   struct MeshTunnel3 *t = value;
1217
1218   GMT_destroy (t);
1219   return GNUNET_YES;
1220 }
1221
1222
1223 /**
1224  * Notify remote peer that we don't know a channel he is talking about,
1225  * probably CHANNEL_DESTROY was missed.
1226  *
1227  * @param t Tunnel on which to notify.
1228  * @param gid ID of the channel.
1229  */
1230 static void
1231 send_channel_destroy (struct MeshTunnel3 *t, unsigned int gid)
1232 {
1233   struct GNUNET_MESH_ChannelManage msg;
1234
1235   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY);
1236   msg.header.size = htons (sizeof (msg));
1237   msg.chid = htonl (gid);
1238
1239   LOG (GNUNET_ERROR_TYPE_DEBUG,
1240        "WARNING destroying unknown channel %u on tunnel %s\n",
1241        gid, GMT_2s (t));
1242   send_prebuilt_message (&msg.header, t, NULL, GNUNET_YES, NULL, NULL, NULL);
1243 }
1244
1245
1246 /**
1247  * Demultiplex data per channel and call appropriate channel handler.
1248  *
1249  * @param t Tunnel on which the data came.
1250  * @param msg Data message.
1251  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1252  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1253  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1254  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1255  */
1256 static void
1257 handle_data (struct MeshTunnel3 *t,
1258              const struct GNUNET_MESH_Data *msg,
1259              int fwd)
1260 {
1261   struct MeshChannel *ch;
1262   size_t size;
1263
1264   /* Check size */
1265   size = ntohs (msg->header.size);
1266   if (size <
1267       sizeof (struct GNUNET_MESH_Data) +
1268       sizeof (struct GNUNET_MessageHeader))
1269   {
1270     GNUNET_break (0);
1271     return;
1272   }
1273   LOG (GNUNET_ERROR_TYPE_DEBUG, " payload of type %s\n",
1274               GM_m2s (ntohs (msg[1].header.type)));
1275
1276   /* Check channel */
1277   ch = GMT_get_channel (t, ntohl (msg->chid));
1278   if (NULL == ch)
1279   {
1280     GNUNET_STATISTICS_update (stats, "# data on unknown channel",
1281                               1, GNUNET_NO);
1282     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel 0x%X unknown\n",
1283          ntohl (msg->chid));
1284     send_channel_destroy (t, ntohl (msg->chid));
1285     return;
1286   }
1287
1288   GMCH_handle_data (ch, msg, fwd);
1289 }
1290
1291
1292 /**
1293  * Demultiplex data ACKs per channel and update appropriate channel buffer info.
1294  *
1295  * @param t Tunnel on which the DATA ACK came.
1296  * @param msg DATA ACK message.
1297  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1298  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1299  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1300  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1301  */
1302 static void
1303 handle_data_ack (struct MeshTunnel3 *t,
1304                  const struct GNUNET_MESH_DataACK *msg,
1305                  int fwd)
1306 {
1307   struct MeshChannel *ch;
1308   size_t size;
1309
1310   /* Check size */
1311   size = ntohs (msg->header.size);
1312   if (size != sizeof (struct GNUNET_MESH_DataACK))
1313   {
1314     GNUNET_break (0);
1315     return;
1316   }
1317
1318   /* Check channel */
1319   ch = GMT_get_channel (t, ntohl (msg->chid));
1320   if (NULL == ch)
1321   {
1322     GNUNET_STATISTICS_update (stats, "# data ack on unknown channel",
1323                               1, GNUNET_NO);
1324     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1325          ntohl (msg->chid));
1326     return;
1327   }
1328
1329   GMCH_handle_data_ack (ch, msg, fwd);
1330 }
1331
1332
1333 /**
1334  * Handle channel create.
1335  *
1336  * @param t Tunnel on which the data came.
1337  * @param msg Data message.
1338  */
1339 static void
1340 handle_ch_create (struct MeshTunnel3 *t,
1341                   const struct GNUNET_MESH_ChannelCreate *msg)
1342 {
1343   struct MeshChannel *ch;
1344   size_t size;
1345
1346   /* Check size */
1347   size = ntohs (msg->header.size);
1348   if (size != sizeof (struct GNUNET_MESH_ChannelCreate))
1349   {
1350     GNUNET_break (0);
1351     return;
1352   }
1353
1354   /* Check channel */
1355   ch = GMT_get_channel (t, ntohl (msg->chid));
1356   if (NULL != ch && ! GMT_is_loopback (t))
1357   {
1358     /* Probably a retransmission, safe to ignore */
1359     LOG (GNUNET_ERROR_TYPE_DEBUG, "   already exists...\n");
1360   }
1361   else
1362   {
1363     ch = GMCH_handle_create (t, msg);
1364   }
1365   if (NULL != ch)
1366     GMT_add_channel (t, ch);
1367 }
1368
1369
1370
1371 /**
1372  * Handle channel NACK: check correctness and call channel handler for NACKs.
1373  *
1374  * @param t Tunnel on which the NACK came.
1375  * @param msg NACK message.
1376  */
1377 static void
1378 handle_ch_nack (struct MeshTunnel3 *t,
1379                 const struct GNUNET_MESH_ChannelManage *msg)
1380 {
1381   struct MeshChannel *ch;
1382   size_t size;
1383
1384   /* Check size */
1385   size = ntohs (msg->header.size);
1386   if (size != sizeof (struct GNUNET_MESH_ChannelManage))
1387   {
1388     GNUNET_break (0);
1389     return;
1390   }
1391
1392   /* Check channel */
1393   ch = GMT_get_channel (t, ntohl (msg->chid));
1394   if (NULL == ch)
1395   {
1396     GNUNET_STATISTICS_update (stats, "# channel NACK on unknown channel",
1397                               1, GNUNET_NO);
1398     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1399          ntohl (msg->chid));
1400     return;
1401   }
1402
1403   GMCH_handle_nack (ch);
1404 }
1405
1406
1407 /**
1408  * Handle a CHANNEL ACK (SYNACK/ACK).
1409  *
1410  * @param t Tunnel on which the CHANNEL ACK came.
1411  * @param msg CHANNEL ACK message.
1412  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1413  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1414  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1415  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1416  */
1417 static void
1418 handle_ch_ack (struct MeshTunnel3 *t,
1419                const struct GNUNET_MESH_ChannelManage *msg,
1420                int fwd)
1421 {
1422   struct MeshChannel *ch;
1423   size_t size;
1424
1425   /* Check size */
1426   size = ntohs (msg->header.size);
1427   if (size != sizeof (struct GNUNET_MESH_ChannelManage))
1428   {
1429     GNUNET_break (0);
1430     return;
1431   }
1432
1433   /* Check channel */
1434   ch = GMT_get_channel (t, ntohl (msg->chid));
1435   if (NULL == ch)
1436   {
1437     GNUNET_STATISTICS_update (stats, "# channel ack on unknown channel",
1438                               1, GNUNET_NO);
1439     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
1440          ntohl (msg->chid));
1441     return;
1442   }
1443
1444   GMCH_handle_ack (ch, msg, fwd);
1445 }
1446
1447
1448
1449 /**
1450  * Handle a channel destruction message.
1451  *
1452  * @param t Tunnel on which the message came.
1453  * @param msg Channel destroy message.
1454  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1455  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1456  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1457  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1458  */
1459 static void
1460 handle_ch_destroy (struct MeshTunnel3 *t,
1461                    const struct GNUNET_MESH_ChannelManage *msg,
1462                    int fwd)
1463 {
1464   struct MeshChannel *ch;
1465   size_t size;
1466
1467   /* Check size */
1468   size = ntohs (msg->header.size);
1469   if (size != sizeof (struct GNUNET_MESH_ChannelManage))
1470   {
1471     GNUNET_break (0);
1472     return;
1473   }
1474
1475   /* Check channel */
1476   ch = GMT_get_channel (t, ntohl (msg->chid));
1477   if (NULL == ch)
1478   {
1479     /* Probably a retransmission, safe to ignore */
1480     return;
1481   }
1482
1483   GMCH_handle_destroy (ch, msg, fwd);
1484 }
1485
1486
1487 /**
1488  * The peer's ephemeral key has changed: update the symmetrical keys.
1489  *
1490  * @param t Tunnel this message came on.
1491  * @param msg Key eXchange message.
1492  */
1493 static void
1494 handle_ephemeral (struct MeshTunnel3 *t,
1495                   const struct GNUNET_MESH_KX_Ephemeral *msg)
1496 {
1497   struct GNUNET_HashCode km;
1498   LOG (GNUNET_ERROR_TYPE_INFO, "<= EPHM for %s\n", GMT_2s (t));
1499
1500   if (GNUNET_OK != check_ephemeral (t, msg))
1501   {
1502     GNUNET_break_op (0);
1503     return;
1504   }
1505   derive_key_material (&km, &msg->ephemeral_key);
1506   LOG (GNUNET_ERROR_TYPE_DEBUG, "  km is %s\n", GNUNET_h2s (&km));
1507   derive_symmertic (&t->e_key, &my_full_id, GMP_get_id (t->peer), &km);
1508   derive_symmertic (&t->d_key, GMP_get_id (t->peer), &my_full_id, &km);
1509   if (MESH_TUNNEL3_KEY_SENT == t->estate)
1510   {
1511     LOG (GNUNET_ERROR_TYPE_DEBUG, "  our key was sent, send ping\n");
1512     send_ping (t);
1513     t->estate = MESH_TUNNEL3_KEY_PING;
1514   }
1515 }
1516
1517
1518 /**
1519  * Peer wants to check our symmetrical keys by sending an encrypted challenge.
1520  * Answer with by retransmitting the challenge with the "opposite" key.
1521  *
1522  * @param t Tunnel this message came on.
1523  * @param msg Key eXchange Ping message.
1524  */
1525 static void
1526 handle_ping (struct MeshTunnel3 *t,
1527              const struct GNUNET_MESH_KX_Ping *msg)
1528 {
1529   struct GNUNET_MESH_KX_Ping res;
1530
1531   if (ntohs (msg->header.size) != sizeof (res))
1532   {
1533     GNUNET_break_op (0);
1534     return;
1535   }
1536
1537   LOG (GNUNET_ERROR_TYPE_INFO, "<= PING for %s\n", GMT_2s (t));
1538   t_decrypt (t, &res.target, &msg->target, ping_encryption_size (), msg->iv);
1539   if (0 != memcmp (&my_full_id, &res.target, sizeof (my_full_id)))
1540   {
1541     GNUNET_STATISTICS_update (stats, "# malformed PINGs", 1, GNUNET_NO);
1542     LOG (GNUNET_ERROR_TYPE_WARNING, "  malformed PING\n");
1543     LOG (GNUNET_ERROR_TYPE_DEBUG, "  e got %u\n", msg->nonce);
1544     LOG (GNUNET_ERROR_TYPE_DEBUG, "  e towards %s\n", GNUNET_i2s (&msg->target));
1545     LOG (GNUNET_ERROR_TYPE_DEBUG, "  got %u\n", res.nonce);
1546     LOG (GNUNET_ERROR_TYPE_DEBUG, "  towards %s\n", GNUNET_i2s (&res.target));
1547     return;
1548   }
1549
1550   send_pong (t, res.nonce);
1551 }
1552
1553
1554 /**
1555  * Peer has answer to our challenge.
1556  * If answer is successful, consider the key exchange finished and clean
1557  * up all related state.
1558  *
1559  * @param t Tunnel this message came on.
1560  * @param msg Key eXchange Pong message.
1561  */
1562 static void
1563 handle_pong (struct MeshTunnel3 *t,
1564              const struct GNUNET_MESH_KX_Pong *msg)
1565 {
1566   uint32_t challenge;
1567
1568   LOG (GNUNET_ERROR_TYPE_INFO, "<= PONG for %s\n", GMT_2s (t));
1569   if (GNUNET_SCHEDULER_NO_TASK == t->rekey_task)
1570   {
1571     GNUNET_STATISTICS_update (stats, "# duplicate PONG messages", 1, GNUNET_NO);
1572     return;
1573   }
1574   t_decrypt (t, &challenge, &msg->nonce, sizeof (uint32_t), msg->iv);
1575
1576   if (challenge != t->kx_ctx->challenge)
1577   {
1578     LOG (GNUNET_ERROR_TYPE_WARNING, "Wrong PONG challenge\n");
1579     LOG (GNUNET_ERROR_TYPE_DEBUG, "PONG: %u (e: %u). Expected: %u.\n",
1580          challenge, msg->nonce, t->kx_ctx->challenge);
1581     GNUNET_break_op (0);
1582     return;
1583   }
1584   GNUNET_SCHEDULER_cancel (t->rekey_task);
1585   t->rekey_task = GNUNET_SCHEDULER_NO_TASK;
1586   GNUNET_free (t->kx_ctx);
1587   t->kx_ctx = NULL;
1588   GMT_change_estate (t, MESH_TUNNEL3_KEY_OK);
1589 }
1590
1591
1592 /**
1593  * Demultiplex by message type and call appropriate handler for a message
1594  * towards a channel of a local tunnel.
1595  *
1596  * @param t Tunnel this message came on.
1597  * @param msgh Message header.
1598  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1599  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1600  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1601  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1602  */
1603 static void
1604 handle_decrypted (struct MeshTunnel3 *t,
1605                   const struct GNUNET_MessageHeader *msgh,
1606                   int fwd)
1607 {
1608   uint16_t type;
1609
1610   type = ntohs (msgh->type);
1611   LOG (GNUNET_ERROR_TYPE_INFO, "<= %s on %s\n", GM_m2s (type), GMT_2s (t));
1612
1613   switch (type)
1614   {
1615     case GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE:
1616       /* Do nothing, connection aleady got updated. */
1617       GNUNET_STATISTICS_update (stats, "# keepalives received", 1, GNUNET_NO);
1618       break;
1619
1620     case GNUNET_MESSAGE_TYPE_MESH_DATA:
1621       /* Don't send hop ACK, wait for client to ACK */
1622       handle_data (t, (struct GNUNET_MESH_Data *) msgh, fwd);
1623       break;
1624
1625     case GNUNET_MESSAGE_TYPE_MESH_DATA_ACK:
1626       handle_data_ack (t, (struct GNUNET_MESH_DataACK *) msgh, fwd);
1627       break;
1628
1629     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
1630       handle_ch_create (t,
1631                         (struct GNUNET_MESH_ChannelCreate *) msgh);
1632       break;
1633
1634     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_NACK:
1635       handle_ch_nack (t,
1636                       (struct GNUNET_MESH_ChannelManage *) msgh);
1637       break;
1638
1639     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_ACK:
1640       handle_ch_ack (t,
1641                      (struct GNUNET_MESH_ChannelManage *) msgh,
1642                      fwd);
1643       break;
1644
1645     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY:
1646       handle_ch_destroy (t,
1647                          (struct GNUNET_MESH_ChannelManage *) msgh,
1648                          fwd);
1649       break;
1650
1651     default:
1652       GNUNET_break_op (0);
1653       LOG (GNUNET_ERROR_TYPE_WARNING,
1654            "end-to-end message not known (%u)\n",
1655            ntohs (msgh->type));
1656       GMT_debug (t);
1657   }
1658 }
1659
1660 /******************************************************************************/
1661 /********************************    API    ***********************************/
1662 /******************************************************************************/
1663
1664 /**
1665  * Decrypt and demultiplex by message type. Call appropriate handler
1666  * for every message.
1667  *
1668  * @param t Tunnel this message came on.
1669  * @param msg Encrypted message.
1670  */
1671 void
1672 GMT_handle_encrypted (struct MeshTunnel3 *t,
1673                       const struct GNUNET_MESH_Encrypted *msg)
1674 {
1675   size_t size = ntohs (msg->header.size);
1676   size_t payload_size = size - sizeof (struct GNUNET_MESH_Encrypted);
1677   size_t decrypted_size;
1678   char cbuf [payload_size];
1679   struct GNUNET_MessageHeader *msgh;
1680   unsigned int off;
1681   struct GNUNET_MeshHash hmac;
1682
1683   decrypted_size = t_decrypt (t, cbuf, &msg[1], payload_size, msg->iv);
1684   t_hmac (t, &msg[1], payload_size, msg->iv, GNUNET_NO, &hmac);
1685   if (0 != memcmp (&hmac, &msg->hmac, sizeof (hmac)))
1686   {
1687     /* checksum failed */
1688     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1689                 "Failed checksum validation for a message on tunnel `%s'\n",
1690                 GMT_2s (t));
1691     GNUNET_STATISTICS_update (stats, "# wrong HMAC", 1, GNUNET_NO);
1692     return;
1693   }
1694   off = 0;
1695   while (off < decrypted_size)
1696   {
1697     msgh = (struct GNUNET_MessageHeader *) &cbuf[off];
1698     handle_decrypted (t, msgh, GNUNET_SYSERR);
1699     off += ntohs (msgh->size);
1700   }
1701 }
1702
1703
1704 /**
1705  * Demultiplex an encapsulated KX message by message type.
1706  *
1707  * @param t Tunnel on which the message came.
1708  * @param message Payload of KX message.
1709  */
1710 void
1711 GMT_handle_kx (struct MeshTunnel3 *t,
1712                const struct GNUNET_MessageHeader *message)
1713 {
1714   uint16_t type;
1715
1716   type = ntohs (message->type);
1717   LOG (GNUNET_ERROR_TYPE_DEBUG, "kx message received\n", type);
1718   switch (type)
1719   {
1720     case GNUNET_MESSAGE_TYPE_MESH_KX_EPHEMERAL:
1721       handle_ephemeral (t, (struct GNUNET_MESH_KX_Ephemeral *) message);
1722       break;
1723
1724     case GNUNET_MESSAGE_TYPE_MESH_KX_PING:
1725       handle_ping (t, (struct GNUNET_MESH_KX_Ping *) message);
1726       break;
1727
1728     case GNUNET_MESSAGE_TYPE_MESH_KX_PONG:
1729       handle_pong (t, (struct GNUNET_MESH_KX_Pong *) message);
1730       break;
1731
1732     default:
1733       GNUNET_break_op (0);
1734       LOG (GNUNET_ERROR_TYPE_DEBUG, "kx message not known (%u)\n", type);
1735   }
1736 }
1737
1738
1739 /**
1740  * Initialize the tunnel subsystem.
1741  *
1742  * @param c Configuration handle.
1743  * @param key ECC private key, to derive all other keys and do crypto.
1744  */
1745 void
1746 GMT_init (const struct GNUNET_CONFIGURATION_Handle *c,
1747           const struct GNUNET_CRYPTO_EddsaPrivateKey *key)
1748 {
1749   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
1750   if (GNUNET_OK !=
1751       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
1752                                              &default_ttl))
1753   {
1754     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1755                                "MESH", "DEFAULT_TTL", "USING DEFAULT");
1756     default_ttl = 64;
1757   }
1758   if (GNUNET_OK !=
1759       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REKEY_PERIOD",
1760                                            &rekey_period))
1761   {
1762     rekey_period = GNUNET_TIME_UNIT_DAYS;
1763   }
1764
1765   my_private_key = key;
1766   kx_msg.header.size = htons (sizeof (kx_msg));
1767   kx_msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_KX_EPHEMERAL);
1768   kx_msg.purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_MESH_KX);
1769   kx_msg.purpose.size = htonl (ephemeral_purpose_size ());
1770   kx_msg.origin_identity = my_full_id;
1771   rekey_task = GNUNET_SCHEDULER_add_now (&rekey, NULL);
1772
1773   tunnels = GNUNET_CONTAINER_multipeermap_create (128, GNUNET_YES);
1774 }
1775
1776
1777 /**
1778  * Shut down the tunnel subsystem.
1779  */
1780 void
1781 GMT_shutdown (void)
1782 {
1783   if (GNUNET_SCHEDULER_NO_TASK != rekey_task)
1784   {
1785     GNUNET_SCHEDULER_cancel (rekey_task);
1786     rekey_task = GNUNET_SCHEDULER_NO_TASK;
1787   }
1788   GNUNET_CONTAINER_multipeermap_iterate (tunnels, &destroy_iterator, NULL);
1789   GNUNET_CONTAINER_multipeermap_destroy (tunnels);
1790 }
1791
1792
1793 /**
1794  * Create a tunnel.
1795  *
1796  * @param destination Peer this tunnel is towards.
1797  */
1798 struct MeshTunnel3 *
1799 GMT_new (struct MeshPeer *destination)
1800 {
1801   struct MeshTunnel3 *t;
1802
1803   t = GNUNET_new (struct MeshTunnel3);
1804   t->next_chid = 0;
1805   t->peer = destination;
1806
1807   if (GNUNET_OK !=
1808       GNUNET_CONTAINER_multipeermap_put (tunnels, GMP_get_id (destination), t,
1809                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1810   {
1811     GNUNET_break (0);
1812     GNUNET_free (t);
1813     return NULL;
1814   }
1815   return t;
1816 }
1817
1818
1819 /**
1820  * Change the tunnel's connection state.
1821  *
1822  * @param t Tunnel whose connection state to change.
1823  * @param cstate New connection state.
1824  */
1825 void
1826 GMT_change_cstate (struct MeshTunnel3* t, enum MeshTunnel3CState cstate)
1827 {
1828   if (NULL == t)
1829     return;
1830   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s cstate %s => %s\n",
1831        GMP_2s (t->peer), cstate2s (t->cstate), cstate2s (cstate));
1832   if (myid != GMP_get_short_id (t->peer) &&
1833       MESH_TUNNEL3_READY != t->cstate &&
1834       MESH_TUNNEL3_READY == cstate)
1835   {
1836     t->cstate = cstate;
1837     if (MESH_TUNNEL3_KEY_OK == t->estate)
1838     {
1839       LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered send queued data\n");
1840       send_queued_data (t);
1841     }
1842     else if (MESH_TUNNEL3_KEY_UNINITIALIZED == t->estate)
1843     {
1844       LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered rekey\n");
1845       rekey_tunnel (t, NULL);
1846     }
1847   }
1848   t->cstate = cstate;
1849
1850   if (MESH_TUNNEL3_READY == cstate
1851       && CONNECTIONS_PER_TUNNEL <= GMT_count_connections (t))
1852   {
1853     LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate triggered stop dht\n");
1854     GMP_stop_search (t->peer);
1855   }
1856 }
1857
1858 /**
1859  * Change the tunnel encryption state.
1860  *
1861  * @param t Tunnel whose encryption state to change.
1862  * @param state New encryption state.
1863  */
1864 void
1865 GMT_change_estate (struct MeshTunnel3* t, enum MeshTunnel3EState state)
1866 {
1867   if (NULL == t)
1868     return;
1869   LOG (GNUNET_ERROR_TYPE_DEBUG,
1870        "Tunnel %s estate was %s\n",
1871        GMP_2s (t->peer), estate2s (t->estate));
1872   LOG (GNUNET_ERROR_TYPE_DEBUG,
1873        "Tunnel %s estate is now %s\n",
1874        GMP_2s (t->peer), estate2s (state));
1875   if (myid != GMP_get_short_id (t->peer) &&
1876       MESH_TUNNEL3_KEY_OK != t->estate && MESH_TUNNEL3_KEY_OK == state)
1877   {
1878     t->estate = state;
1879     send_queued_data (t);
1880     return;
1881   }
1882   t->estate = state;
1883 }
1884
1885
1886 /**
1887  * Check that the tunnel doesn't have too many connections,
1888  * remove one if necessary.
1889  *
1890  * For the time being, this means the newest connection.
1891  *
1892  * @param t Tunnel to check.
1893  */
1894 static void
1895 check_connection_count (struct MeshTunnel3 *t)
1896 {
1897   if (GMT_count_connections (t) > CONNECTIONS_PER_TUNNEL)
1898   {
1899     struct MeshTConnection *iter;
1900     struct MeshTConnection *c;
1901
1902     for (iter = t->connection_head; NULL != iter; iter = iter->next)
1903     {
1904       if (NULL == c || iter->created.abs_value_us > c->created.abs_value_us)
1905       {
1906         c = iter;
1907       }
1908     }
1909     if (NULL != c)
1910       GMC_destroy (c->c);
1911     else
1912       GNUNET_break (0);
1913   }
1914 }
1915
1916 /**
1917  * Add a connection to a tunnel.
1918  *
1919  * @param t Tunnel.
1920  * @param c Connection.
1921  */
1922 void
1923 GMT_add_connection (struct MeshTunnel3 *t, struct MeshConnection *c)
1924 {
1925   struct MeshTConnection *aux;
1926
1927   GNUNET_assert (NULL != c);
1928
1929   for (aux = t->connection_head; aux != NULL; aux = aux->next)
1930     if (aux->c == c)
1931       return;
1932
1933   aux = GNUNET_new (struct MeshTConnection);
1934   aux->c = c;
1935   aux->created = GNUNET_TIME_absolute_get ();
1936
1937   GNUNET_CONTAINER_DLL_insert (t->connection_head, t->connection_tail, aux);
1938
1939   check_connection_count (t);
1940 }
1941
1942
1943 /**
1944  * Mark a path as no longer valid for this tunnel: has been tried and failed.
1945  *
1946  * @param t Tunnel to update.
1947  * @param path Invalid path to remove. Is destroyed after removal.
1948  */
1949 void
1950 GMT_remove_path (struct MeshTunnel3 *t, struct MeshPeerPath *path)
1951 {
1952   GMP_remove_path (t->peer, path);
1953 }
1954
1955
1956 /**
1957  * Remove a connection from a tunnel.
1958  *
1959  * @param t Tunnel.
1960  * @param c Connection.
1961  */
1962 void
1963 GMT_remove_connection (struct MeshTunnel3 *t,
1964                        struct MeshConnection *c)
1965 {
1966   struct MeshTConnection *aux;
1967   struct MeshTConnection *next;
1968
1969   LOG (GNUNET_ERROR_TYPE_DEBUG, "Removing connection %s from tunnel %s\n",
1970        GMC_2s (c), GMT_2s (t));
1971   for (aux = t->connection_head; aux != NULL; aux = next)
1972   {
1973     next = aux->next;
1974     if (aux->c == c)
1975     {
1976       GNUNET_CONTAINER_DLL_remove (t->connection_head, t->connection_tail, aux);
1977       GNUNET_free (aux);
1978     }
1979   }
1980
1981   /* Start new connections if needed */
1982   if (NULL == t->connection_head
1983       && GNUNET_SCHEDULER_NO_TASK == t->destroy_task
1984       && MESH_TUNNEL3_SHUTDOWN != t->cstate
1985       && GNUNET_NO == shutting_down)
1986   {
1987     LOG (GNUNET_ERROR_TYPE_DEBUG, "  no more connections, getting new ones\n");
1988     t->cstate = MESH_TUNNEL3_SEARCHING;
1989     GMP_connect (t->peer);
1990     return;
1991   }
1992
1993   /* If not marked as ready, no change is needed */
1994   if (MESH_TUNNEL3_READY != t->cstate)
1995     return;
1996
1997   /* Check if any connection is ready to maintaing cstate */
1998   for (aux = t->connection_head; aux != NULL; aux = aux->next)
1999     if (MESH_CONNECTION_READY == GMC_get_state (aux->c))
2000       return;
2001
2002   t->cstate = MESH_TUNNEL3_WAITING;
2003 }
2004
2005
2006 /**
2007  * Add a channel to a tunnel.
2008  *
2009  * @param t Tunnel.
2010  * @param ch Channel.
2011  */
2012 void
2013 GMT_add_channel (struct MeshTunnel3 *t, struct MeshChannel *ch)
2014 {
2015   struct MeshTChannel *aux;
2016
2017   GNUNET_assert (NULL != ch);
2018
2019   LOG (GNUNET_ERROR_TYPE_DEBUG, "Adding channel %p to tunnel %p\n", ch, t);
2020
2021   for (aux = t->channel_head; aux != NULL; aux = aux->next)
2022   {
2023     LOG (GNUNET_ERROR_TYPE_DEBUG, "  already there %p\n", aux->ch);
2024     if (aux->ch == ch)
2025       return;
2026   }
2027
2028   aux = GNUNET_new (struct MeshTChannel);
2029   aux->ch = ch;
2030   LOG (GNUNET_ERROR_TYPE_DEBUG, " adding %p to %p\n", aux, t->channel_head);
2031   GNUNET_CONTAINER_DLL_insert_tail (t->channel_head, t->channel_tail, aux);
2032
2033   if (GNUNET_SCHEDULER_NO_TASK != t->destroy_task)
2034   {
2035     GNUNET_SCHEDULER_cancel (t->destroy_task);
2036     t->destroy_task = GNUNET_SCHEDULER_NO_TASK;
2037     LOG (GNUNET_ERROR_TYPE_DEBUG, " undo destroy!\n");
2038   }
2039 }
2040
2041
2042 /**
2043  * Remove a channel from a tunnel.
2044  *
2045  * @param t Tunnel.
2046  * @param ch Channel.
2047  */
2048 void
2049 GMT_remove_channel (struct MeshTunnel3 *t, struct MeshChannel *ch)
2050 {
2051   struct MeshTChannel *aux;
2052
2053   LOG (GNUNET_ERROR_TYPE_DEBUG, "Removing channel %p from tunnel %p\n", ch, t);
2054   for (aux = t->channel_head; aux != NULL; aux = aux->next)
2055   {
2056     if (aux->ch == ch)
2057     {
2058       LOG (GNUNET_ERROR_TYPE_DEBUG, " found! %s\n", GMCH_2s (ch));
2059       GNUNET_CONTAINER_DLL_remove (t->channel_head, t->channel_tail, aux);
2060       GNUNET_free (aux);
2061       return;
2062     }
2063   }
2064 }
2065
2066
2067 /**
2068  * Search for a channel by global ID.
2069  *
2070  * @param t Tunnel containing the channel.
2071  * @param chid Public channel number.
2072  *
2073  * @return channel handler, NULL if doesn't exist
2074  */
2075 struct MeshChannel *
2076 GMT_get_channel (struct MeshTunnel3 *t, MESH_ChannelNumber chid)
2077 {
2078   struct MeshTChannel *iter;
2079
2080   if (NULL == t)
2081     return NULL;
2082
2083   for (iter = t->channel_head; NULL != iter; iter = iter->next)
2084   {
2085     if (GMCH_get_id (iter->ch) == chid)
2086       break;
2087   }
2088
2089   return NULL == iter ? NULL : iter->ch;
2090 }
2091
2092
2093 /**
2094  * @brief Destroy a tunnel and free all resources.
2095  *
2096  * Should only be called a while after the tunnel has been marked as destroyed,
2097  * in case there is a new channel added to the same peer shortly after marking
2098  * the tunnel. This way we avoid a new public key handshake.
2099  *
2100  * @param cls Closure (tunnel to destroy).
2101  * @param tc Task context.
2102  */
2103 static void
2104 delayed_destroy (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2105 {
2106   struct MeshTunnel3 *t = cls;
2107   struct MeshTConnection *iter;
2108
2109   t->destroy_task = GNUNET_SCHEDULER_NO_TASK;
2110   t->cstate = MESH_TUNNEL3_SHUTDOWN;
2111
2112   for (iter = t->connection_head; NULL != iter; iter = iter->next)
2113   {
2114     GMC_send_destroy (iter->c);
2115   }
2116   GMT_destroy (t);
2117 }
2118
2119
2120 /**
2121  * Tunnel is empty: destroy it.
2122  *
2123  * Notifies all connections about the destruction.
2124  *
2125  * @param t Tunnel to destroy.
2126  */
2127 void
2128 GMT_destroy_empty (struct MeshTunnel3 *t)
2129 {
2130   if (GNUNET_SCHEDULER_NO_TASK != t->destroy_task)
2131   {
2132     LOG (GNUNET_ERROR_TYPE_DEBUG,
2133          "Tunnel %s is already scheduled for destruction\n",
2134          GMT_2s (t));
2135     GNUNET_break (0);
2136     /* should never happen, tunnel can only become empty once, and the
2137      * task identifier should be NO_TASK (cleaned when the tunnel was created
2138      * or became un-empty)
2139      */
2140     return;
2141   }
2142
2143   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel %s empty: destroying scheduled\n",
2144        GMT_2s (t));
2145
2146   t->destroy_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
2147                                                   &delayed_destroy, t);
2148 }
2149
2150
2151 /**
2152  * Destroy tunnel if empty (no more channels).
2153  *
2154  * @param t Tunnel to destroy if empty.
2155  */
2156 void
2157 GMT_destroy_if_empty (struct MeshTunnel3 *t)
2158 {
2159   if (1 < GMT_count_channels (t))
2160     return;
2161
2162   GMT_destroy_empty (t);
2163 }
2164
2165
2166 /**
2167  * Destroy the tunnel.
2168  *
2169  * This function does not generate any warning traffic to clients or peers.
2170  *
2171  * Tasks:
2172  * Cancel messages belonging to this tunnel queued to neighbors.
2173  * Free any allocated resources linked to the tunnel.
2174  *
2175  * @param t The tunnel to destroy.
2176  */
2177 void
2178 GMT_destroy (struct MeshTunnel3 *t)
2179 {
2180   struct MeshTConnection *iter_c;
2181   struct MeshTConnection *next_c;
2182   struct MeshTChannel *iter_ch;
2183   struct MeshTChannel *next_ch;
2184
2185   if (NULL == t)
2186     return;
2187
2188   if (GNUNET_SCHEDULER_NO_TASK != t->destroy_task)
2189   {
2190     GNUNET_SCHEDULER_cancel (t->destroy_task);
2191     t->destroy_task = GNUNET_SCHEDULER_NO_TASK;
2192   }
2193
2194   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying tunnel %s\n", GMP_2s (t->peer));
2195
2196   GNUNET_break (GNUNET_YES ==
2197                 GNUNET_CONTAINER_multipeermap_remove (tunnels,
2198                                                       GMP_get_id (t->peer), t));
2199
2200   for (iter_c = t->connection_head; NULL != iter_c; iter_c = next_c)
2201   {
2202     next_c = iter_c->next;
2203     GMC_destroy (iter_c->c);
2204   }
2205   for (iter_ch = t->channel_head; NULL != iter_ch; iter_ch = next_ch)
2206   {
2207     next_ch = iter_ch->next;
2208     GMCH_destroy (iter_ch->ch);
2209     /* Should only happen on shutdown, but it's ok. */
2210   }
2211
2212   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
2213   GMP_set_tunnel (t->peer, NULL);
2214
2215   if (GNUNET_SCHEDULER_NO_TASK != t->rekey_task)
2216   {
2217     GNUNET_SCHEDULER_cancel (t->rekey_task);
2218     t->rekey_task = GNUNET_SCHEDULER_NO_TASK;
2219     if (NULL != t->kx_ctx)
2220       GNUNET_free (t->kx_ctx);
2221     else
2222       GNUNET_break (0);
2223   }
2224
2225   GNUNET_free (t);
2226 }
2227
2228
2229 /**
2230  * @brief Use the given path for the tunnel.
2231  * Update the next and prev hops (and RCs).
2232  * (Re)start the path refresh in case the tunnel is locally owned.
2233  *
2234  * @param t Tunnel to update.
2235  * @param p Path to use.
2236  *
2237  * @return Connection created.
2238  */
2239 struct MeshConnection *
2240 GMT_use_path (struct MeshTunnel3 *t, struct MeshPeerPath *p)
2241 {
2242   struct MeshConnection *c;
2243   struct GNUNET_MeshHash cid;
2244   unsigned int own_pos;
2245
2246   if (NULL == t || NULL == p)
2247   {
2248     GNUNET_break (0);
2249     return NULL;
2250   }
2251
2252   if (MESH_TUNNEL3_SHUTDOWN == t->cstate)
2253   {
2254     GNUNET_break (0);
2255     return NULL;
2256   }
2257
2258   for (own_pos = 0; own_pos < p->length; own_pos++)
2259   {
2260     if (p->peers[own_pos] == myid)
2261       break;
2262   }
2263   if (own_pos >= p->length)
2264   {
2265     GNUNET_break_op (0);
2266     return NULL;
2267   }
2268
2269   GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_NONCE, &cid, sizeof (cid));
2270   c = GMC_new (&cid, t, p, own_pos);
2271   if (NULL == c)
2272   {
2273     /* Path was flawed */
2274     return NULL;
2275   }
2276   GMT_add_connection (t, c);
2277   return c;
2278 }
2279
2280
2281 /**
2282  * Count established (ready) connections of a tunnel.
2283  *
2284  * @param t Tunnel on which to count.
2285  *
2286  * @return Number of connections.
2287  */
2288 unsigned int
2289 GMT_count_connections (struct MeshTunnel3 *t)
2290 {
2291   struct MeshTConnection *iter;
2292   unsigned int count;
2293
2294   for (count = 0, iter = t->connection_head; NULL != iter; iter = iter->next)
2295     if (MESH_CONNECTION_DESTROYED != GMC_get_state (iter->c))
2296       count++;
2297
2298   return count;
2299 }
2300
2301 /**
2302  * Count channels of a tunnel.
2303  *
2304  * @param t Tunnel on which to count.
2305  *
2306  * @return Number of channels.
2307  */
2308 unsigned int
2309 GMT_count_channels (struct MeshTunnel3 *t)
2310 {
2311   struct MeshTChannel *iter;
2312   unsigned int count;
2313
2314   for (count = 0, iter = t->channel_head;
2315        NULL != iter;
2316        iter = iter->next, count++) /* skip */;
2317
2318   return count;
2319 }
2320
2321
2322 /**
2323  * Get the connectivity state of a tunnel.
2324  *
2325  * @param t Tunnel.
2326  *
2327  * @return Tunnel's connectivity state.
2328  */
2329 enum MeshTunnel3CState
2330 GMT_get_cstate (struct MeshTunnel3 *t)
2331 {
2332   if (NULL == t)
2333   {
2334     GNUNET_assert (0);
2335     return (enum MeshTunnel3CState) -1;
2336   }
2337   return t->cstate;
2338 }
2339
2340
2341 /**
2342  * Get the encryption state of a tunnel.
2343  *
2344  * @param t Tunnel.
2345  *
2346  * @return Tunnel's encryption state.
2347  */
2348 enum MeshTunnel3EState
2349 GMT_get_estate (struct MeshTunnel3 *t)
2350 {
2351   if (NULL == t)
2352   {
2353     GNUNET_assert (0);
2354     return (enum MeshTunnel3EState) -1;
2355   }
2356   return t->estate;
2357 }
2358
2359 /**
2360  * Get the maximum buffer space for a tunnel towards a local client.
2361  *
2362  * @param t Tunnel.
2363  *
2364  * @return Biggest buffer space offered by any channel in the tunnel.
2365  */
2366 unsigned int
2367 GMT_get_channels_buffer (struct MeshTunnel3 *t)
2368 {
2369   struct MeshTChannel *iter;
2370   unsigned int buffer;
2371   unsigned int ch_buf;
2372
2373   if (NULL == t->channel_head)
2374   {
2375     /* Probably getting buffer for a channel create/handshake. */
2376     return 64;
2377   }
2378
2379   buffer = 0;
2380   for (iter = t->channel_head; NULL != iter; iter = iter->next)
2381   {
2382     ch_buf = get_channel_buffer (iter);
2383     if (ch_buf > buffer)
2384       buffer = ch_buf;
2385   }
2386   return buffer;
2387 }
2388
2389
2390 /**
2391  * Get the total buffer space for a tunnel for P2P traffic.
2392  *
2393  * @param t Tunnel.
2394  *
2395  * @return Buffer space offered by all connections in the tunnel.
2396  */
2397 unsigned int
2398 GMT_get_connections_buffer (struct MeshTunnel3 *t)
2399 {
2400   struct MeshTConnection *iter;
2401   unsigned int buffer;
2402
2403   buffer = 0;
2404   for (iter = t->connection_head; NULL != iter; iter = iter->next)
2405   {
2406     if (GMC_get_state (iter->c) != MESH_CONNECTION_READY)
2407     {
2408       continue;
2409     }
2410     buffer += get_connection_buffer (iter);
2411   }
2412
2413   return buffer;
2414 }
2415
2416
2417 /**
2418  * Get the tunnel's destination.
2419  *
2420  * @param t Tunnel.
2421  *
2422  * @return ID of the destination peer.
2423  */
2424 const struct GNUNET_PeerIdentity *
2425 GMT_get_destination (struct MeshTunnel3 *t)
2426 {
2427   return GMP_get_id (t->peer);
2428 }
2429
2430
2431 /**
2432  * Get the tunnel's next free global channel ID.
2433  *
2434  * @param t Tunnel.
2435  *
2436  * @return GID of a channel free to use.
2437  */
2438 MESH_ChannelNumber
2439 GMT_get_next_chid (struct MeshTunnel3 *t)
2440 {
2441   MESH_ChannelNumber chid;
2442   MESH_ChannelNumber mask;
2443   int result;
2444
2445   /* Set bit 30 depending on the ID relationship. Bit 31 is always 0 for GID.
2446    * If our ID is bigger or loopback tunnel, start at 0, bit 30 = 0
2447    * If peer's ID is bigger, start at 0x4... bit 30 = 1
2448    */
2449   result = GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, GMP_get_id (t->peer));
2450   if (0 > result)
2451     mask = 0x4000000;
2452   else
2453     mask = 0x0;
2454
2455   while (NULL != GMT_get_channel (t, t->next_chid))
2456   {
2457     LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel %u exists...\n", t->next_chid);
2458     t->next_chid = (t->next_chid + 1) & ~GNUNET_MESH_LOCAL_CHANNEL_ID_CLI;
2459     t->next_chid |= mask;
2460   }
2461   chid = t->next_chid;
2462   t->next_chid = (t->next_chid + 1) & ~GNUNET_MESH_LOCAL_CHANNEL_ID_CLI;
2463   t->next_chid |= mask;
2464
2465   return chid;
2466 }
2467
2468
2469 /**
2470  * Send ACK on one or more channels due to buffer in connections.
2471  *
2472  * @param t Channel which has some free buffer space.
2473  */
2474 void
2475 GMT_unchoke_channels (struct MeshTunnel3 *t)
2476 {
2477   struct MeshTChannel *iter;
2478   unsigned int buffer;
2479   unsigned int channels = GMT_count_channels (t);
2480   unsigned int choked_n;
2481   struct MeshChannel *choked[channels];
2482
2483   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMT_unchoke_channels on %s\n", GMT_2s (t));
2484   LOG (GNUNET_ERROR_TYPE_DEBUG, " head: %p\n", t->channel_head);
2485   if (NULL != t->channel_head)
2486     LOG (GNUNET_ERROR_TYPE_DEBUG, " head ch: %p\n", t->channel_head->ch);
2487
2488   /* Get buffer space */
2489   buffer = GMT_get_connections_buffer (t);
2490   if (0 == buffer)
2491   {
2492     return;
2493   }
2494
2495   /* Count and remember choked channels */
2496   choked_n = 0;
2497   for (iter = t->channel_head; NULL != iter; iter = iter->next)
2498   {
2499     if (GNUNET_NO == get_channel_allowed (iter))
2500     {
2501       choked[choked_n++] = iter->ch;
2502     }
2503   }
2504
2505   /* Unchoke random channels */
2506   while (0 < buffer && 0 < choked_n)
2507   {
2508     unsigned int r = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
2509                                                choked_n);
2510     GMCH_allow_client (choked[r], GMCH_is_origin (choked[r], GNUNET_YES));
2511     choked_n--;
2512     buffer--;
2513     choked[r] = choked[choked_n];
2514   }
2515 }
2516
2517
2518 /**
2519  * Send ACK on one or more connections due to buffer space to the client.
2520  *
2521  * Iterates all connections of the tunnel and sends ACKs appropriately.
2522  *
2523  * @param t Tunnel.
2524  */
2525 void
2526 GMT_send_connection_acks (struct MeshTunnel3 *t)
2527 {
2528   struct MeshTConnection *iter;
2529   uint32_t allowed;
2530   uint32_t to_allow;
2531   uint32_t allow_per_connection;
2532   unsigned int cs;
2533   unsigned int buffer;
2534
2535   LOG (GNUNET_ERROR_TYPE_DEBUG, "Tunnel send connection ACKs on %s\n",
2536        GMT_2s (t));
2537
2538   if (NULL == t)
2539   {
2540     GNUNET_break (0);
2541     return;
2542   }
2543
2544   buffer = GMT_get_channels_buffer (t);
2545   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer %u\n", buffer);
2546
2547   /* Count connections, how many messages are already allowed */
2548   cs = GMT_count_connections (t);
2549   for (allowed = 0, iter = t->connection_head; NULL != iter; iter = iter->next)
2550   {
2551     allowed += get_connection_allowed (iter);
2552   }
2553   LOG (GNUNET_ERROR_TYPE_DEBUG, "  allowed %u\n", allowed);
2554
2555   /* Make sure there is no overflow */
2556   if (allowed > buffer)
2557   {
2558     return;
2559   }
2560
2561   /* Authorize connections to send more data */
2562   to_allow = buffer; /* - allowed; */
2563
2564   for (iter = t->connection_head;
2565        NULL != iter && to_allow > 0;
2566        iter = iter->next)
2567   {
2568     allow_per_connection = to_allow/cs;
2569     to_allow -= allow_per_connection;
2570     cs--;
2571     if (get_connection_allowed (iter) > 64 / 3)
2572     {
2573       continue;
2574     }
2575     GMC_allow (iter->c, allow_per_connection,
2576                GMC_is_origin (iter->c, GNUNET_NO));
2577   }
2578
2579   GNUNET_break (to_allow == 0);
2580 }
2581
2582
2583 /**
2584  * Cancel a previously sent message while it's in the queue.
2585  *
2586  * ONLY can be called before the continuation given to the send function
2587  * is called. Once the continuation is called, the message is no longer in the
2588  * queue.
2589  *
2590  * @param q Handle to the queue.
2591  */
2592 void
2593 GMT_cancel (struct MeshTunnel3Queue *q)
2594 {
2595   if (NULL != q->cq)
2596   {
2597     GMC_cancel (q->cq);
2598     /* message_sent() will be called and free q */
2599   }
2600   else if (NULL != q->tqd)
2601   {
2602     unqueue_data (q->tqd);
2603     q->tqd = NULL;
2604     if (NULL != q->cont)
2605       q->cont (q->cont_cls, NULL, q, 0, 0);
2606     GNUNET_free (q);
2607   }
2608   else
2609   {
2610     GNUNET_break (0);
2611   }
2612 }
2613
2614
2615 /**
2616  * Sends an already built message on a tunnel, encrypting it and
2617  * choosing the best connection if not provided.
2618  *
2619  * @param message Message to send. Function modifies it.
2620  * @param t Tunnel on which this message is transmitted.
2621  * @param c Connection to use (autoselect if NULL).
2622  * @param force Force the tunnel to take the message (buffer overfill).
2623  * @param cont Continuation to call once message is really sent.
2624  * @param cont_cls Closure for @c cont.
2625  *
2626  * @return Handle to cancel message. NULL if @c cont is NULL.
2627  */
2628 struct MeshTunnel3Queue *
2629 GMT_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2630                            struct MeshTunnel3 *t, struct MeshConnection *c,
2631                            int force, GMT_sent cont, void *cont_cls)
2632 {
2633   return send_prebuilt_message (message, t, c, force, cont, cont_cls, NULL);
2634 }
2635
2636
2637 /**
2638  * Is the tunnel directed towards the local peer?
2639  *
2640  * @param t Tunnel.
2641  *
2642  * @return #GNUNET_YES if it is loopback.
2643  */
2644 int
2645 GMT_is_loopback (const struct MeshTunnel3 *t)
2646 {
2647   return (myid == GMP_get_short_id (t->peer));
2648 }
2649
2650
2651 /**
2652  * Is the tunnel this path already?
2653  *
2654  * @param t Tunnel.
2655  * @param p Path.
2656  *
2657  * @return #GNUNET_YES a connection uses this path.
2658  */
2659 int
2660 GMT_is_path_used (const struct MeshTunnel3 *t, const struct MeshPeerPath *p)
2661 {
2662   struct MeshTConnection *iter;
2663
2664   for (iter = t->connection_head; NULL != iter; iter = iter->next)
2665     if (GMC_get_path (iter->c) == p)
2666       return GNUNET_YES;
2667
2668   return GNUNET_NO;
2669 }
2670
2671
2672 /**
2673  * Get a cost of a path for a tunnel considering existing connections.
2674  *
2675  * @param t Tunnel.
2676  * @param path Candidate path.
2677  *
2678  * @return Cost of the path (path length + number of overlapping nodes)
2679  */
2680 unsigned int
2681 GMT_get_path_cost (const struct MeshTunnel3 *t,
2682                    const struct MeshPeerPath *path)
2683 {
2684   struct MeshTConnection *iter;
2685   const struct MeshPeerPath *aux;
2686   unsigned int overlap;
2687   unsigned int i;
2688   unsigned int j;
2689
2690   if (NULL == path)
2691     return 0;
2692
2693   overlap = 0;
2694   GNUNET_assert (NULL != t);
2695
2696   for (i = 0; i < path->length; i++)
2697   {
2698     for (iter = t->connection_head; NULL != iter; iter = iter->next)
2699     {
2700       aux = GMC_get_path (iter->c);
2701       if (NULL == aux)
2702         continue;
2703
2704       for (j = 0; j < aux->length; j++)
2705       {
2706         if (path->peers[i] == aux->peers[j])
2707         {
2708           overlap++;
2709           break;
2710         }
2711       }
2712     }
2713   }
2714   return path->length + overlap;
2715 }
2716
2717
2718 /**
2719  * Get the static string for the peer this tunnel is directed.
2720  *
2721  * @param t Tunnel.
2722  *
2723  * @return Static string the destination peer's ID.
2724  */
2725 const char *
2726 GMT_2s (const struct MeshTunnel3 *t)
2727 {
2728   if (NULL == t)
2729     return "(NULL)";
2730
2731   return GMP_2s (t->peer);
2732 }
2733
2734
2735 /******************************************************************************/
2736 /*****************************    INFO/DEBUG    *******************************/
2737 /******************************************************************************/
2738
2739
2740 /**
2741  * Log all possible info about the tunnel state to stderr.
2742  *
2743  * @param t Tunnel to debug.
2744  */
2745 void
2746 GMT_debug (const struct MeshTunnel3 *t)
2747 {
2748   struct MeshTChannel *iterch;
2749   struct MeshTConnection *iterc;
2750
2751   LOG (GNUNET_ERROR_TYPE_DEBUG, "DEBUG TUNNEL TOWARDS %s\n", GMT_2s (t));
2752   LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate %s, estate %s\n",
2753        cstate2s (t->cstate), estate2s (t->estate));
2754   LOG (GNUNET_ERROR_TYPE_DEBUG, "  kx_ctx %p, rekey_task %u\n",
2755        t->kx_ctx, t->rekey_task);
2756   LOG (GNUNET_ERROR_TYPE_DEBUG, "  tq_head %p, tq_tail %p\n",
2757        t->tq_head, t->tq_tail);
2758   LOG (GNUNET_ERROR_TYPE_DEBUG, "  destroy %u\n", t->destroy_task);
2759
2760   LOG (GNUNET_ERROR_TYPE_DEBUG, "  channels:\n");
2761   for (iterch = t->channel_head; NULL != iterch; iterch = iterch->next)
2762   {
2763     LOG (GNUNET_ERROR_TYPE_DEBUG, "  - %s\n", GMCH_2s (iterch->ch));
2764   }
2765
2766   LOG (GNUNET_ERROR_TYPE_DEBUG, "  connections:\n");
2767   for (iterc = t->connection_head; NULL != iterc; iterc = iterc->next)
2768   {
2769     LOG (GNUNET_ERROR_TYPE_DEBUG, "  - %s [%u] buf: %u/%u (qn %u/%u)\n",
2770          GMC_2s (iterc->c), GMC_get_state (iterc->c),
2771          GMC_get_buffer (iterc->c, GNUNET_YES),
2772          GMC_get_buffer (iterc->c, GNUNET_NO),
2773          GMC_get_qn (iterc->c, GNUNET_YES),
2774          GMC_get_qn (iterc->c, GNUNET_NO));
2775   }
2776
2777   LOG (GNUNET_ERROR_TYPE_DEBUG, "DEBUG TUNNEL END\n");
2778 }
2779
2780
2781 /**
2782  * Iterate all tunnels.
2783  *
2784  * @param iter Iterator.
2785  * @param cls Closure for @c iter.
2786  */
2787 void
2788 GMT_iterate_all (GNUNET_CONTAINER_PeerMapIterator iter, void *cls)
2789 {
2790   GNUNET_CONTAINER_multipeermap_iterate (tunnels, iter, cls);
2791 }
2792
2793
2794 /**
2795  * Count all tunnels.
2796  *
2797  * @return Number of tunnels to remote peers kept by this peer.
2798  */
2799 unsigned int
2800 GMT_count_all (void)
2801 {
2802   return GNUNET_CONTAINER_multipeermap_size (tunnels);
2803 }
2804
2805
2806 /**
2807  * Iterate all connections of a tunnel.
2808  *
2809  * @param t Tunnel whose connections to iterate.
2810  * @param iter Iterator.
2811  * @param cls Closure for @c iter.
2812  */
2813 void
2814 GMT_iterate_connections (struct MeshTunnel3 *t, GMT_conn_iter iter, void *cls)
2815 {
2816   struct MeshTConnection *ct;
2817
2818   for (ct = t->connection_head; NULL != ct; ct = ct->next)
2819     iter (cls, ct->c);
2820 }
2821
2822
2823 /**
2824  * Iterate all channels of a tunnel.
2825  *
2826  * @param t Tunnel whose channels to iterate.
2827  * @param iter Iterator.
2828  * @param cls Closure for @c iter.
2829  */
2830 void
2831 GMT_iterate_channels (struct MeshTunnel3 *t, GMT_chan_iter iter, void *cls)
2832 {
2833   struct MeshTChannel *cht;
2834
2835   for (cht = t->channel_head; NULL != cht; cht = cht->next)
2836     iter (cls, cht->ch);
2837 }