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