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