- fixes
[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_statistics_service.h"
25
26 #include "mesh_protocol_enc.h"
27
28 #include "gnunet-service-mesh_tunnel.h"
29 #include "gnunet-service-mesh_connection.h"
30 #include "gnunet-service-mesh_channel.h"
31 #include "gnunet-service-mesh_peer.h"
32 #include "mesh_path.h"
33
34 #define LOG(level, ...) GNUNET_log_from(level,"mesh-tun",__VA_ARGS__)
35
36
37 /******************************************************************************/
38 /********************************   STRUCTS  **********************************/
39 /******************************************************************************/
40
41 struct MeshTChannel
42 {
43   struct MeshTChannel *next;
44   struct MeshTChannel *prev;
45   struct MeshChannel *ch;
46 };
47
48 struct MeshTConnection
49 {
50   struct MeshTConnection *next;
51   struct MeshTConnection *prev;
52   struct MeshConnection *c;
53 };
54
55 /**
56  * Struct containing all information regarding a tunnel to a peer.
57  */
58 struct MeshTunnel3
59 {
60     /**
61      * Endpoint of the tunnel.
62      */
63   struct MeshPeer *peer;
64
65     /**
66      * State of the tunnel.
67      */
68   enum MeshTunnel3State state;
69
70   /**
71    * Local peer ephemeral private key
72    */
73   struct GNUNET_CRYPTO_EddsaPrivateKey *my_eph_key;
74
75   /**
76    * Local peer ephemeral public key
77    */
78   struct GNUNET_CRYPTO_EddsaPublicKey *my_eph;
79
80   /**
81    * Remote peer's public key.
82    */
83   struct GNUNET_CRYPTO_EddsaPublicKey *peers_eph;
84
85   /**
86    * Encryption ("our") key.
87    */
88   struct GNUNET_CRYPTO_SymmetricSessionKey e_key;
89
90   /**
91    * Decryption ("their") key.
92    */
93   struct GNUNET_CRYPTO_SymmetricSessionKey d_key;
94
95   /**
96    * Paths that are actively used to reach the destination peer.
97    */
98   struct MeshTConnection *connection_head;
99   struct MeshTConnection *connection_tail;
100
101   /**
102    * Next connection number.
103    */
104   uint32_t next_cid;
105
106   /**
107    * Channels inside this tunnel.
108    */
109   struct MeshTChannel *channel_head;
110   struct MeshTChannel *channel_tail;
111
112   /**
113    * Channel ID for the next created channel.
114    */
115   MESH_ChannelNumber next_chid;
116
117   /**
118    * Pending message count.
119    */
120   int pending_messages;
121
122   /**
123    * Destroy flag: if true, destroy on last message.
124    */
125   int destroy;
126
127   /**
128    * Queued messages, to transmit once tunnel gets connected.
129    */
130   struct MeshTunnelQueue *tq_head;
131   struct MeshTunnelQueue *tq_tail;
132 };
133
134
135 /**
136  * Struct used to queue messages in a tunnel.
137  */
138 struct MeshTunnelQueue
139 {
140   /**
141    * DLL
142    */
143   struct MeshTunnelQueue *next;
144   struct MeshTunnelQueue *prev;
145
146   /**
147    * Channel.
148    */
149   struct MeshChannel *ch;
150
151   /**
152    * Message to send.
153    */
154   /* struct GNUNET_MessageHeader *msg; */
155 };
156
157 /******************************************************************************/
158 /*******************************   GLOBALS  ***********************************/
159 /******************************************************************************/
160
161 /**
162  * Global handle to the statistics service.
163  */
164 extern struct GNUNET_STATISTICS_Handle *stats;
165
166 /**
167  * Local peer own ID (memory efficient handle).
168  */
169 extern GNUNET_PEER_Id myid;
170
171 /**
172  * Local peer own ID (full value).
173  */
174 extern struct GNUNET_PeerIdentity my_full_id;
175
176 /**
177  * Default TTL for payload packets.
178  */
179 static unsigned long long default_ttl;
180
181 /**
182  * Own private key.
183  */
184 const static struct GNUNET_CRYPTO_EddsaPrivateKey *my_private_key;
185
186
187 /******************************************************************************/
188 /********************************   STATIC  ***********************************/
189 /******************************************************************************/
190
191 /**
192  * Get string description for tunnel state.
193  *
194  * @param s Tunnel state.
195  *
196  * @return String representation.
197  */
198 static const char *
199 GMT_state2s (enum MeshTunnel3State s)
200 {
201   static char buf[128];
202
203   switch (s)
204   {
205     case MESH_TUNNEL3_NEW:
206       return "MESH_TUNNEL3_NEW";
207     case MESH_TUNNEL3_SEARCHING:
208       return "MESH_TUNNEL3_SEARCHING";
209     case MESH_TUNNEL3_WAITING:
210       return "MESH_TUNNEL3_WAITING";
211     case MESH_TUNNEL3_READY:
212       return "MESH_TUNNEL3_READY";
213     case MESH_TUNNEL3_RECONNECTING:
214       return "MESH_TUNNEL3_RECONNECTING";
215
216     default:
217       sprintf (buf, "%u (UNKNOWN STATE)", s);
218       return buf;
219   }
220 }
221
222 /**
223  * Pick a connection on which send the next data message.
224  *
225  * @param t Tunnel on which to send the message.
226  * @param fwd Is this a fwd message?
227  *
228  * @return The connection on which to send the next message.
229  */
230 static struct MeshConnection *
231 tunnel_get_connection (struct MeshTunnel3 *t, int fwd)
232 {
233   struct MeshTConnection *iter;
234   struct MeshConnection *best;
235   unsigned int qn;
236   unsigned int lowest_q;
237
238   LOG (GNUNET_ERROR_TYPE_DEBUG, "tunnel_get_connection %s\n", GMP_2s (t->peer));
239   best = NULL;
240   lowest_q = UINT_MAX;
241   for (iter = t->connection_head; NULL != iter; iter = iter->next)
242   {
243     LOG (GNUNET_ERROR_TYPE_DEBUG, "  connection %s: %u\n",
244          GNUNET_h2s (GMC_get_id (iter->c)), GMC_get_state (iter->c));
245     if (MESH_CONNECTION_READY == GMC_get_state (iter->c))
246     {
247       qn = GMC_get_qn (iter->c, fwd);
248       LOG (GNUNET_ERROR_TYPE_DEBUG, "    q_n %u, \n", qn);
249       if (qn < lowest_q)
250       {
251         best = iter->c;
252         lowest_q = qn;
253       }
254     }
255   }
256   return best;
257 }
258
259
260 void
261 handle_data (struct MeshTunnel3 *t,
262              const struct GNUNET_MESH_Data *msg,
263              int fwd)
264 {
265   struct MeshChannel *ch;
266   uint16_t type;
267   size_t size;
268
269   /* Check size */
270   size = ntohs (msg->header.size);
271   if (size <
272       sizeof (struct GNUNET_MESH_Data) +
273       sizeof (struct GNUNET_MessageHeader))
274   {
275     GNUNET_break (0);
276     return;
277   }
278   type = ntohs (msg->header.type);
279   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a %s message\n",
280               GNUNET_MESH_DEBUG_M2S (type));
281   LOG (GNUNET_ERROR_TYPE_DEBUG, " payload of type %s\n",
282               GNUNET_MESH_DEBUG_M2S (ntohs (msg[1].header.type)));
283
284   /* Check channel */
285   ch = GMT_get_channel (t, ntohl (msg->chid));
286   if (NULL == ch)
287   {
288     GNUNET_STATISTICS_update (stats, "# data on unknown channel",
289                               1, GNUNET_NO);
290     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
291          ntohl (msg->chid));
292     return;
293   }
294
295   GMT_change_state (t, MESH_TUNNEL3_READY);
296   GMCH_handle_data (ch, msg, fwd);
297 }
298
299 void
300 handle_data_ack (struct MeshTunnel3 *t,
301                  const struct GNUNET_MESH_DataACK *msg,
302                  int fwd)
303 {
304   struct MeshChannel *ch;
305   size_t size;
306
307   /* Check size */
308   size = ntohs (msg->header.size);
309   if (size != sizeof (struct GNUNET_MESH_DataACK))
310   {
311     GNUNET_break (0);
312     return;
313   }
314
315   /* Check channel */
316   ch = GMT_get_channel (t, ntohl (msg->chid));
317   if (NULL == ch)
318   {
319     GNUNET_STATISTICS_update (stats, "# data ack on unknown channel",
320                               1, GNUNET_NO);
321     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
322          ntohl (msg->chid));
323     return;
324   }
325
326   GMCH_handle_data_ack (ch, msg, fwd);
327 }
328
329 void
330 handle_ch_create (struct MeshTunnel3 *t,
331                   const struct GNUNET_MESH_ChannelCreate *msg,
332                   int fwd)
333 {
334   struct MeshTChannel *tch;
335   struct MeshChannel *ch;
336   size_t size;
337
338   /* Check size */
339   size = ntohs (msg->header.size);
340   if (size != sizeof (struct GNUNET_MESH_ChannelCreate))
341   {
342     GNUNET_break (0);
343     return;
344   }
345
346   /* Check channel */
347   ch = GMT_get_channel (t, ntohl (msg->chid));
348   if (NULL != ch)
349   {
350     /* Probably a retransmission, safe to ignore */
351     LOG (GNUNET_ERROR_TYPE_DEBUG, "   already exists...\n");
352   }
353   else
354   {
355     ch = GMCH_handle_create (msg, fwd);
356   }
357
358   tch = GNUNET_new (struct MeshTChannel);
359   tch->ch = ch;
360   GNUNET_CONTAINER_DLL_insert (t->channel_head, t->channel_tail, tch);
361 }
362
363 void
364 handle_ch_ack (struct MeshTunnel3 *t,
365                const struct GNUNET_MESH_ChannelManage *msg,
366                int fwd)
367 {
368   struct MeshChannel *ch;
369   size_t size;
370
371   /* Check size */
372   size = ntohs (msg->header.size);
373   if (size != sizeof (struct GNUNET_MESH_ChannelManage))
374   {
375     GNUNET_break (0);
376     return;
377   }
378
379   /* Check channel */
380   ch = GMT_get_channel (t, ntohl (msg->chid));
381   if (NULL == ch)
382   {
383     GNUNET_STATISTICS_update (stats, "# channel ack on unknown channel",
384                               1, GNUNET_NO);
385     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING channel %u unknown\n",
386          ntohl (msg->chid));
387     return;
388   }
389
390   GMCH_handle_ack (ch, msg, fwd);
391 }
392
393 void
394 handle_ch_destroy (struct MeshTunnel3 *t,
395                    const struct GNUNET_MESH_ChannelManage *msg,
396                    int fwd)
397 {
398   struct MeshChannel *ch;
399   size_t size;
400
401   /* Check size */
402   size = ntohs (msg->header.size);
403   if (size != sizeof (struct GNUNET_MESH_ChannelManage))
404   {
405     GNUNET_break (0);
406     return;
407   }
408
409   /* Check channel */
410   ch = GMT_get_channel (t, ntohl (msg->chid));
411   if (NULL == ch)
412   {
413     /* Probably a retransmission, safe to ignore */
414     return;
415   }
416
417   GMCH_handle_destroy (ch, msg, fwd);
418 }
419
420 /******************************************************************************/
421 /********************************    API    ***********************************/
422 /******************************************************************************/
423
424 /**
425  * Demultiplex by message type and call appropriate handler for a message
426  * towards a channel of a local tunnel.
427  *
428  * @param t Tunnel this message came on.
429  * @param msgh Message header.
430  * @param fwd Is this message fwd?
431  */
432 void
433 GMT_handle_decrypted (struct MeshTunnel3 *t,
434                       const struct GNUNET_MessageHeader *msgh,
435                       int fwd)
436 {
437   uint16_t type;
438
439   type = ntohs (msgh->type);
440   LOG (GNUNET_ERROR_TYPE_DEBUG,
441        "Got a %s message!\n",
442        GNUNET_MESH_DEBUG_M2S (type));
443
444   switch (type)
445   {
446     case GNUNET_MESSAGE_TYPE_MESH_DATA:
447       /* Don't send hop ACK, wait for client to ACK */
448       handle_data (t, (struct GNUNET_MESH_Data *) msgh, fwd);
449       break;
450
451     case GNUNET_MESSAGE_TYPE_MESH_DATA_ACK:
452       handle_data_ack (t, (struct GNUNET_MESH_DataACK *) msgh, fwd);
453       break;
454
455     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
456       handle_ch_create (t,
457                         (struct GNUNET_MESH_ChannelCreate *) msgh,
458                         fwd);
459       break;
460
461     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_ACK:
462       handle_ch_ack (t,
463                      (struct GNUNET_MESH_ChannelManage *) msgh,
464                      fwd);
465       break;
466
467     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY:
468       handle_ch_destroy (t,
469                          (struct GNUNET_MESH_ChannelManage *) msgh,
470                          fwd);
471       break;
472
473     default:
474       GNUNET_break_op (0);
475       LOG (GNUNET_ERROR_TYPE_DEBUG,
476            "end-to-end message not known (%u)\n",
477            ntohs (msgh->type));
478   }
479 }
480
481
482 /**
483  * Cache a message to be sent once tunnel is online.
484  *
485  * @param t Tunnel to hold the message.
486  * @param ch Channel the message is about.
487  * @param msg Message itself (copy will be made).
488  * @param fwd Is this fwd?
489  */
490 void
491 GMT_queue_data (struct MeshTunnel3 *t,
492                 struct MeshChannel *ch,
493                 struct GNUNET_MessageHeader *msg,
494                 int fwd)
495 {
496   struct MeshTunnelQueue *tq;
497   uint16_t size = ntohs (msg->size);
498
499   tq = GNUNET_malloc (sizeof (struct MeshTunnelQueue) + size);
500
501   tq->ch = ch;
502   memcpy (&tq[1], msg, size);
503   GNUNET_CONTAINER_DLL_insert_tail (t->tq_head, t->tq_tail, tq);
504
505   if (MESH_TUNNEL3_READY == t->state)
506     GMT_send_queued_data (t, fwd);
507 }
508
509
510 /**
511  * Send all cached messages that we can, tunnel is online.
512  *
513  * @param t Tunnel that holds the messages.
514  * @param fwd Is this fwd?
515  */
516 void
517 GMT_send_queued_data (struct MeshTunnel3 *t, int fwd)
518 {
519   struct MeshTunnelQueue *tq;
520   struct MeshTunnelQueue *next;
521   unsigned int room;
522
523   LOG (GNUNET_ERROR_TYPE_DEBUG,
524               "GMT_send_queued_data on tunnel %s\n",
525               GMP_2s (t->peer));
526   room = GMT_get_buffer (t, fwd);
527   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer space: %u\n", room);
528   for (tq = t->tq_head; NULL != tq && room > 0; tq = next)
529   {
530     next = tq->next;
531     room--;
532     GNUNET_CONTAINER_DLL_remove (t->tq_head, t->tq_tail, tq);
533     GMCH_send_prebuilt_message ((struct GNUNET_MessageHeader *) &tq[1],
534                                 tq->ch, fwd);
535
536     GNUNET_free (tq);
537   }
538 }
539
540
541 /**
542  * Initialize the tunnel subsystem.
543  *
544  * @param c Configuration handle.
545  * @param id Peer identity.
546  * @param key ECC private key, to derive all other keys and do crypto.
547  */
548 void
549 GMT_init (const struct GNUNET_CONFIGURATION_Handle *c,
550           const struct GNUNET_CRYPTO_EddsaPrivateKey *key)
551 {
552   if (GNUNET_OK !=
553       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DEFAULT_TTL",
554                                              &default_ttl))
555   {
556     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
557                                "MESH", "DEFAULT_TTL", "USING DEFAULT");
558     default_ttl = 64;
559   }
560   my_private_key = key;
561 }
562
563
564 /**
565  * Shut down the tunnel subsystem.
566  */
567 void
568 GMT_shutdown (void)
569 {
570   GNUNET_PEER_change_rc (myid, -1);
571 }
572
573
574 /**
575  * Create a tunnel.
576  */
577 struct MeshTunnel3 *
578 GMT_new (void)
579 {
580   struct MeshTunnel3 *t;
581
582   t = GNUNET_new (struct MeshTunnel3);
583   t->next_chid = 0;
584 //   if (GNUNET_OK !=
585 //       GNUNET_CONTAINER_multihashmap_put (tunnels, tid, t,
586 //                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
587 //   {
588 //     GNUNET_break (0);
589 //     tunnel_destroy (t);
590 //     return NULL;
591 //   }
592
593 //   char salt[] = "salt";
594 //   GNUNET_CRYPTO_kdf (&t->e_key, sizeof (struct GNUNET_CRYPTO_SymmetricSessionKey),
595 //                      salt, sizeof (salt),
596 //                      &t->e_key, sizeof (struct GNUNET_CRYPTO_SymmetricSessionKey),
597 //                      &my_full_id, sizeof (struct GNUNET_PeerIdentity),
598 //                      GNUNET_PEER_resolve2 (t->peer->id), sizeof (struct GNUNET_PeerIdentity),
599 //                      NULL);
600 //   GNUNET_CRYPTO_kdf (&t->d_key, sizeof (struct GNUNET_CRYPTO_SymmetricSessionKey),
601 //                      salt, sizeof (salt),
602 //                      &t->d_key, sizeof (struct GNUNET_CRYPTO_SymmetricSessionKey),
603 //                      GNUNET_PEER_resolve2 (t->peer->id), sizeof (struct GNUNET_PeerIdentity),
604 //                      &my_full_id, sizeof (struct GNUNET_PeerIdentity),
605 //                      NULL);
606
607   return t;
608 }
609
610
611
612 /**
613  * Change the tunnel state.
614  *
615  * @param t Tunnel whose state to change.
616  * @param state New state.
617  */
618 void
619 GMT_change_state (struct MeshTunnel3* t, enum MeshTunnel3State state)
620 {
621   if (NULL == t)
622     return;
623   LOG (GNUNET_ERROR_TYPE_DEBUG,
624               "Tunnel %s state was %s\n",
625               GMP_2s (t->peer),
626               GMT_state2s (t->state));
627   LOG (GNUNET_ERROR_TYPE_DEBUG,
628               "Tunnel %s state is now %s\n",
629               GMP_2s (t->peer),
630               GMT_state2s (state));
631   t->state = state;
632   if (MESH_TUNNEL3_READY == state && 3 <= GMT_count_connections (t))
633   {
634     GMP_stop_search (t->peer);
635   }
636 }
637
638
639 /**
640  * Add a connection to a tunnel.
641  *
642  * @param t Tunnel.
643  * @param c Connection.
644  */
645 void
646 GMT_add_connection (struct MeshTunnel3 *t, struct MeshConnection *c)
647 {
648   struct MeshTConnection *aux;
649
650   for (aux = t->connection_head; aux != NULL; aux = aux->next)
651     if (aux->c == c)
652       return;
653
654   aux = GNUNET_new (struct MeshTConnection);
655   aux->c = c;
656   GNUNET_CONTAINER_DLL_insert_tail (t->connection_head, t->connection_tail, aux);
657 }
658
659
660 /**
661  * Remove a connection from a tunnel.
662  *
663  * @param t Tunnel.
664  * @param c Connection.
665  */
666 void
667 GMT_remove_connection (struct MeshTunnel3 *t, struct MeshConnection *c)
668 {
669   struct MeshTConnection *aux;
670
671   for (aux = t->connection_head; aux != NULL; aux = aux->next)
672     if (aux->c == c)
673     {
674       GNUNET_CONTAINER_DLL_remove (t->connection_head, t->connection_tail, aux);
675       GNUNET_free (aux);
676       return;
677     }
678 }
679
680
681 /**
682  * Add a channel to a tunnel.
683  *
684  * @param t Tunnel.
685  * @param ch Channel.
686  */
687 void
688 GMT_add_channel (struct MeshTunnel3 *t, struct MeshChannel *ch)
689 {
690   struct MeshTChannel *aux;
691
692   for (aux = t->channel_head; aux != NULL; aux = aux->next)
693     if (aux->ch == ch)
694       return;
695
696   aux = GNUNET_new (struct MeshTChannel);
697   aux->ch = ch;
698   GNUNET_CONTAINER_DLL_insert_tail (t->channel_head, t->channel_tail, aux);
699 }
700
701
702 /**
703  * Remove a channel from a tunnel.
704  *
705  * @param t Tunnel.
706  * @param ch Channel.
707  */
708 void
709 GMT_remove_channel (struct MeshTunnel3 *t, struct MeshChannel *ch)
710 {
711   struct MeshTChannel *aux;
712
713   for (aux = t->channel_head; aux != NULL; aux = aux->next)
714     if (aux->ch == ch)
715     {
716       GNUNET_CONTAINER_DLL_remove (t->channel_head, t->channel_tail, aux);
717       GNUNET_free (aux);
718       return;
719     }
720 }
721
722
723 /**
724  * Search for a channel by global ID.
725  *
726  * @param t Tunnel containing the channel.
727  * @param chid Public channel number.
728  *
729  * @return channel handler, NULL if doesn't exist
730  */
731 struct MeshChannel *
732 GMT_get_channel (struct MeshTunnel3 *t, MESH_ChannelNumber chid)
733 {
734   struct MeshTChannel *iter;
735
736   if (NULL == t)
737     return NULL;
738
739   for (iter = t->channel_head; NULL != iter; iter = iter->next)
740   {
741     if (GMCH_get_id (iter->ch) == chid)
742       break;
743   }
744
745   return NULL == iter ? NULL : iter->ch;
746 }
747
748
749 /**
750  * Tunnel is empty: destroy it.
751  *
752  * Notifies all connections about the destruction.
753  *
754  * @param t Tunnel to destroy.
755  */
756 void
757 GMT_destroy_empty (struct MeshTunnel3 *t)
758 {
759   struct MeshTConnection *iter;
760
761   for (iter = t->connection_head; NULL != iter; iter = iter->next)
762   {
763     GMC_send_destroy (iter->c);
764   }
765
766   if (0 == t->pending_messages)
767     GMT_destroy (t);
768   else
769     t->destroy = GNUNET_YES;
770 }
771
772
773 /**
774  * Destroy tunnel if empty (no more channels).
775  *
776  * @param t Tunnel to destroy if empty.
777  */
778 void
779 GMT_destroy_if_empty (struct MeshTunnel3 *t)
780 {
781   if (1 < GMT_count_channels (t))
782     return;
783
784   GMT_destroy_empty (t);
785 }
786
787
788 /**
789  * Destroy the tunnel.
790  *
791  * This function does not generate any warning traffic to clients or peers.
792  *
793  * Tasks:
794  * Cancel messages belonging to this tunnel queued to neighbors.
795  * Free any allocated resources linked to the tunnel.
796  *
797  * @param t The tunnel to destroy.
798  */
799 void
800 GMT_destroy (struct MeshTunnel3 *t)
801 {
802   struct MeshTConnection *iter;
803   struct MeshTConnection *next;
804
805   if (NULL == t)
806     return;
807
808   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying tunnel %s\n", GMP_2s (t->peer));
809
810 //   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &t->id, t))
811 //     GNUNET_break (0);
812
813   for (iter = t->connection_head; NULL != iter; iter = next)
814   {
815     next = iter->next;
816     GMC_destroy (iter->c);
817     GNUNET_free (iter);
818   }
819
820   GNUNET_STATISTICS_update (stats, "# tunnels", -1, GNUNET_NO);
821   GMP_set_tunnel (t->peer, NULL);
822
823   GNUNET_free (t);
824 }
825
826
827 /**
828  * Notifies a tunnel that a connection has broken that affects at least
829  * some of its peers. Sends a notification towards the root of the tree.
830  * In case the peer is the owner of the tree, notifies the client that owns
831  * the tunnel and tries to reconnect.
832  *
833  * FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME
834  *
835  * @param t Tunnel affected.
836  * @param p1 Peer that got disconnected from p2.
837  * @param p2 Peer that got disconnected from p1.
838  *
839  * @return Short ID of the peer disconnected (either p1 or p2).
840  *         0 if the tunnel remained unaffected.
841  */
842 GNUNET_PEER_Id
843 GMT_notify_connection_broken (struct MeshTunnel3* t,
844                               GNUNET_PEER_Id p1, GNUNET_PEER_Id p2)
845 {
846 //   if (myid != p1 && myid != p2) FIXME
847 //   {
848 //     return;
849 //   }
850 //
851 //   if (tree_get_predecessor (t->tree) != 0)
852 //   {
853 //     /* We are the peer still connected, notify owner of the disconnection. */
854 //     struct GNUNET_MESH_PathBroken msg;
855 //     struct GNUNET_PeerIdentity neighbor;
856 //
857 //     msg.header.size = htons (sizeof (msg));
858 //     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN);
859 //     GNUNET_PEER_resolve (t->id.oid, &msg.oid);
860 //     msg.tid = htonl (t->id.tid);
861 //     msg.peer1 = my_full_id;
862 //     GNUNET_PEER_resolve (pid, &msg.peer2);
863 //     GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &neighbor);
864 //     send_prebuilt_message (&msg.header, &neighbor, t);
865 //   }
866   return 0;
867 }
868
869 /**
870  * @brief Use the given path for the tunnel.
871  * Update the next and prev hops (and RCs).
872  * (Re)start the path refresh in case the tunnel is locally owned.
873  *
874  * @param t Tunnel to update.
875  * @param p Path to use.
876  *
877  * @return Connection created.
878  */
879 struct MeshConnection *
880 GMT_use_path (struct MeshTunnel3 *t, struct MeshPeerPath *p)
881 {
882   struct MeshConnection *c;
883   struct GNUNET_HashCode cid;
884   unsigned int own_pos;
885
886   if (NULL == t || NULL == p)
887   {
888     GNUNET_break (0);
889     return NULL;
890   }
891
892   for (own_pos = 0; own_pos < p->length; own_pos++)
893   {
894     if (p->peers[own_pos] == myid)
895       break;
896   }
897   if (own_pos > p->length - 1)
898   {
899     GNUNET_break (0);
900     return NULL;
901   }
902
903   GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_NONCE, &cid);
904   c = GMC_new (&cid, t, p, own_pos);
905   GMT_add_connection (t, c);
906   return c;
907 }
908
909
910 /**
911  * FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME
912  * Encrypt data with the tunnel key.
913  * Make static?
914  *
915  * @param t Tunnel whose key to use.
916  * @param dst Destination for the encrypted data.
917  * @param src Source of the plaintext.
918  * @param size Size of the plaintext.
919  * @param iv Initialization Vector to use.
920  * @param fwd Is this a fwd message?
921  */
922 void
923 GMT_encrypt (struct MeshTunnel3 *t,
924              void *dst, const void *src,
925              size_t size, uint64_t iv, int fwd)
926 {
927   memcpy (dst, src, size);
928 }
929
930
931 /**
932  * FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME
933  * Decrypt data with the tunnel key.
934  * Make static?
935  *
936  * @param t Tunnel whose key to use.
937  * @param dst Destination for the plaintext.
938  * @param src Source of the encrypted data.
939  * @param size Size of the encrypted data.
940  * @param iv Initialization Vector to use.
941  * @param fwd Is this a fwd message?
942  */
943 void
944 GMT_decrypt (struct MeshTunnel3 *t,
945              void *dst, const void *src,
946              size_t size, uint64_t iv, int fwd)
947 {
948   memcpy (dst, src, size);
949 }
950
951
952 /**
953  * Count established (ready) connections of a tunnel.
954  *
955  * @param t Tunnel on which to count.
956  *
957  * @return Number of connections.
958  */
959 unsigned int
960 GMT_count_connections (struct MeshTunnel3 *t)
961 {
962   struct MeshTConnection *iter;
963   unsigned int count;
964
965   for (count = 0, iter = t->connection_head;
966        NULL != iter;
967        iter = iter->next, count++);
968
969   return count;
970 }
971
972 /**
973  * Count channels of a tunnel.
974  *
975  * @param t Tunnel on which to count.
976  *
977  * @return Number of channels.
978  */
979 unsigned int
980 GMT_count_channels (struct MeshTunnel3 *t)
981 {
982   struct MeshTChannel *iter;
983   unsigned int count;
984
985   for (count = 0, iter = t->channel_head;
986        NULL != iter;
987   iter = iter->next, count++);
988
989   return count;
990 }
991
992
993 /**
994  * Get the state of a tunnel.
995  *
996  * @param t Tunnel.
997  *
998  * @return Tunnel's state.
999  */
1000 enum MeshTunnel3State
1001 GMT_get_state (struct MeshTunnel3 *t)
1002 {
1003   if (NULL == t)
1004     return (enum MeshTunnel3State) -1;
1005   return t->state;
1006 }
1007
1008 /**
1009  * Get the total buffer space for a tunnel.
1010  *
1011  * @param t Tunnel.
1012  * @param fwd Is this for FWD traffic?
1013  *
1014  * @return Buffer space offered by all connections in the tunnel.
1015  */
1016 unsigned int
1017 GMT_get_buffer (struct MeshTunnel3 *t, int fwd)
1018 {
1019   struct MeshTConnection *iter;
1020   unsigned int buffer;
1021
1022   iter = t->connection_head;
1023   buffer = 0;
1024
1025   /* If terminal, return biggest channel buffer */
1026   if (NULL == iter || GMC_is_terminal (iter->c, fwd))
1027   {
1028     struct MeshTChannel *iter_ch;
1029     unsigned int ch_buf;
1030
1031     if (NULL == t->channel_head)
1032       return 64;
1033
1034     for (iter_ch = t->channel_head; NULL != iter_ch; iter_ch = iter_ch->next)
1035     {
1036       ch_buf = GMCH_get_buffer (iter_ch->ch, fwd);
1037       if (ch_buf > buffer)
1038         buffer = ch_buf;
1039     }
1040     return buffer;
1041   }
1042
1043   /* If not terminal, return sum of connection buffers */
1044   while (NULL != iter)
1045   {
1046     if (GMC_get_state (iter->c) != MESH_CONNECTION_READY)
1047     {
1048       iter = iter->next;
1049       continue;
1050     }
1051
1052     buffer += GMC_get_buffer (iter->c, fwd);
1053     iter = iter->next;
1054   }
1055
1056   return buffer;
1057 }
1058
1059
1060 /**
1061  * Get the tunnel's destination.
1062  *
1063  * @param t Tunnel.
1064  *
1065  * @return ID of the destination peer.
1066  */
1067 const struct GNUNET_PeerIdentity *
1068 GMT_get_destination (struct MeshTunnel3 *t)
1069 {
1070   return GMP_get_id (t->peer);
1071 }
1072
1073
1074 /**
1075  * Get the tunnel's next free global channel ID.
1076  *
1077  * @param t Tunnel.
1078  *
1079  * @return GID of a channel free to use.
1080  */
1081 MESH_ChannelNumber
1082 GMT_get_next_chid (struct MeshTunnel3 *t)
1083 {
1084   MESH_ChannelNumber chid;
1085
1086   while (NULL != GMT_get_channel (t, t->next_chid))
1087   {
1088     LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel %u exists...\n", t->next_chid);
1089     t->next_chid = (t->next_chid + 1) & ~GNUNET_MESH_LOCAL_CHANNEL_ID_CLI;
1090   }
1091   chid = t->next_chid;
1092   t->next_chid = (t->next_chid + 1) & ~GNUNET_MESH_LOCAL_CHANNEL_ID_CLI;
1093
1094   return chid;
1095 }
1096
1097
1098 /**
1099  * Sends an already built message on a tunnel, encrypting it and
1100  * choosing the best connection.
1101  *
1102  * @param message Message to send. Function modifies it.
1103  * @param t Tunnel on which this message is transmitted.
1104  * @param ch Channel on which this message is transmitted.
1105  * @param fwd Is this a fwd message?
1106  */
1107 void
1108 GMT_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
1109                            struct MeshTunnel3 *t,
1110                            struct MeshChannel *ch,
1111                            int fwd)
1112 {
1113   struct MeshConnection *c;
1114   struct GNUNET_MESH_Encrypted *msg;
1115   size_t size = ntohs (message->size);
1116   char *cbuf[sizeof (struct GNUNET_MESH_Encrypted) + size];
1117   uint64_t iv;
1118   uint16_t type;
1119
1120   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send on Tunnel %s\n", GMP_2s (t->peer));
1121
1122   iv = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_NONCE, UINT64_MAX);
1123   msg = (struct GNUNET_MESH_Encrypted *) cbuf;
1124   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED);
1125   msg->header.size = htons (sizeof (struct GNUNET_MESH_Encrypted) + size);
1126   msg->iv = GNUNET_htonll (iv);
1127   GMT_encrypt (t, &msg[1], message, size, iv, fwd);
1128   c = tunnel_get_connection (t, fwd);
1129   if (NULL == c)
1130   {
1131     GNUNET_break (GNUNET_YES == t->destroy);
1132     return;
1133   }
1134   type = ntohs (message->type);
1135   switch (type)
1136   {
1137     case GNUNET_MESSAGE_TYPE_MESH_FWD:
1138     case GNUNET_MESSAGE_TYPE_MESH_BCK:
1139     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
1140     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY:
1141       msg->cid = *GMC_get_id (c);
1142       msg->ttl = htonl (default_ttl);
1143       break;
1144     default:
1145       LOG (GNUNET_ERROR_TYPE_DEBUG, "unkown type %s\n",
1146            GNUNET_MESH_DEBUG_M2S (type));
1147       GNUNET_break (0);
1148   }
1149   msg->reserved = 0;
1150
1151   GMC_send_prebuilt_message (&msg->header, c, ch, fwd);
1152 }
1153
1154 /**
1155  * Is the tunnel directed towards the local peer?
1156  *
1157  * @param t Tunnel.
1158  *
1159  * @return GNUNET_YES if it is loopback.
1160  */
1161 int
1162 GMT_is_loopback (const struct MeshTunnel3 *t)
1163 {
1164   return (myid == GMP_get_short_id(t->peer));
1165 }
1166
1167
1168 /**
1169  * Get the static string for the peer this tunnel is directed.
1170  *
1171  * @param t Tunnel.
1172  *
1173  * @return Static string the destination peer's ID.
1174  */
1175 const char *
1176 GMT_2s (const struct MeshTunnel3 *t)
1177 {
1178   return GMP_2s (t->peer);
1179 }