21645629619922fff0b9301c07a2da8fe7ef9afc
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_channel.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
22 #include "platform.h"
23 #include "gnunet_util_lib.h"
24
25 #include "gnunet_statistics_service.h"
26
27 #include "mesh.h"
28 #include "mesh_protocol.h"
29
30 #include "gnunet-service-mesh_channel.h"
31 #include "gnunet-service-mesh_local.h"
32 #include "gnunet-service-mesh_tunnel.h"
33 #include "gnunet-service-mesh_peer.h"
34
35 #define LOG(level, ...) GNUNET_log_from(level,"mesh-chn",__VA_ARGS__)
36
37 #define MESH_RETRANSMIT_TIME    GNUNET_TIME_relative_multiply(\
38                                     GNUNET_TIME_UNIT_MILLISECONDS, 250)
39 #define MESH_RETRANSMIT_MARGIN  4
40
41
42 /**
43  * All the states a connection can be in.
44  */
45 enum MeshChannelState
46 {
47   /**
48    * Uninitialized status, should never appear in operation.
49    */
50   MESH_CHANNEL_NEW,
51
52   /**
53    * Connection create message sent, waiting for ACK.
54    */
55   MESH_CHANNEL_SENT,
56
57   /**
58    * Connection confirmed, ready to carry traffic.
59    */
60   MESH_CHANNEL_READY,
61 };
62
63
64 /**
65  * Info holder for channel messages in queues.
66  */
67 struct MeshChannelQueue
68 {
69   /**
70    * Tunnel Queue.
71    */
72   struct MeshTunnel3Queue *tq;
73
74   /**
75    * Message type (DATA/DATA_ACK)
76    */
77   uint16_t type;
78
79   /**
80    * Message copy (for DATAs, to start retransmission timer)
81    */
82   struct MeshReliableMessage *copy;
83
84   /**
85    * Reliability (for DATA_ACKs, to access rel->ack_q)
86    */
87   struct MeshChannelReliability *rel;
88 };
89
90
91 /**
92  * Info needed to retry a message in case it gets lost.
93  */
94 struct MeshReliableMessage
95 {
96     /**
97      * Double linked list, FIFO style
98      */
99   struct MeshReliableMessage    *next;
100   struct MeshReliableMessage    *prev;
101
102     /**
103      * Type of message (payload, channel management).
104      */
105   int16_t type;
106
107     /**
108      * Tunnel Reliability queue this message is in.
109      */
110   struct MeshChannelReliability  *rel;
111
112     /**
113      * ID of the message (ACK needed to free)
114      */
115   uint32_t                      mid;
116
117   /**
118    * Tunnel Queue.
119    */
120   struct MeshChannelQueue       *chq;
121
122     /**
123      * When was this message issued (to calculate ACK delay)
124      */
125   struct GNUNET_TIME_Absolute   timestamp;
126
127   /* struct GNUNET_MESH_Data with payload */
128 };
129
130
131 /**
132  * Info about the traffic state for a client in a channel.
133  */
134 struct MeshChannelReliability
135 {
136     /**
137      * Channel this is about.
138      */
139   struct MeshChannel *ch;
140
141     /**
142      * DLL of messages sent and not yet ACK'd.
143      */
144   struct MeshReliableMessage        *head_sent;
145   struct MeshReliableMessage        *tail_sent;
146
147     /**
148      * DLL of messages received out of order.
149      */
150   struct MeshReliableMessage        *head_recv;
151   struct MeshReliableMessage        *tail_recv;
152
153     /**
154      * Messages received.
155      */
156   unsigned int                      n_recv;
157
158     /**
159      * Next MID to use for outgoing traffic.
160      */
161   uint32_t                          mid_send;
162
163     /**
164      * Next MID expected for incoming traffic.
165      */
166   uint32_t                          mid_recv;
167
168     /**
169      * Handle for queued unique data CREATE, DATA_ACK.
170      */
171   struct MeshChannelQueue           *uniq;
172
173     /**
174      * Can we send data to the client?
175      */
176   int                               client_ready;
177
178   /**
179    * Can the client send data to us?
180    */
181   int                               client_allowed;
182
183     /**
184      * Task to resend/poll in case no ACK is received.
185      */
186   GNUNET_SCHEDULER_TaskIdentifier   retry_task;
187
188     /**
189      * Counter for exponential backoff.
190      */
191   struct GNUNET_TIME_Relative       retry_timer;
192
193     /**
194      * How long does it usually take to get an ACK.
195      */
196   struct GNUNET_TIME_Relative       expected_delay;
197 };
198
199
200 /**
201  * Struct containing all information regarding a channel to a remote client.
202  */
203 struct MeshChannel
204 {
205     /**
206      * Tunnel this channel is in.
207      */
208   struct MeshTunnel3 *t;
209
210     /**
211      * Destination port of the channel.
212      */
213   uint32_t port;
214
215     /**
216      * Global channel number ( < GNUNET_MESH_LOCAL_CHANNEL_ID_CLI)
217      */
218   MESH_ChannelNumber gid;
219
220     /**
221      * Local tunnel number for root (owner) client.
222      * ( >= GNUNET_MESH_LOCAL_CHANNEL_ID_CLI or 0 )
223      */
224   MESH_ChannelNumber lid_root;
225
226     /**
227      * Local tunnel number for local destination clients (incoming number)
228      * ( >= GNUNET_MESH_LOCAL_CHANNEL_ID_SERV or 0).
229      */
230   MESH_ChannelNumber lid_dest;
231
232     /**
233      * Channel state.
234      */
235   enum MeshChannelState state;
236
237     /**
238      * Is the tunnel bufferless (minimum latency)?
239      */
240   int nobuffer;
241
242     /**
243      * Is the tunnel reliable?
244      */
245   int reliable;
246
247     /**
248      * Last time the channel was used
249      */
250   struct GNUNET_TIME_Absolute timestamp;
251
252     /**
253      * Client owner of the tunnel, if any
254      */
255   struct MeshClient *root;
256
257     /**
258      * Client destination of the tunnel, if any.
259      */
260   struct MeshClient *dest;
261
262     /**
263      * Flag to signal the destruction of the channel.
264      * If this is set GNUNET_YES the channel will be destroyed
265      * when the queue is empty.
266      */
267   int destroy;
268
269     /**
270      * Total (reliable) messages pending ACK for this channel.
271      */
272   unsigned int pending_messages;
273
274     /**
275      * Reliability data.
276      * Only present (non-NULL) at the owner of a tunnel.
277      */
278   struct MeshChannelReliability *root_rel;
279
280     /**
281      * Reliability data.
282      * Only present (non-NULL) at the destination of a tunnel.
283      */
284   struct MeshChannelReliability *dest_rel;
285
286 };
287
288
289 /******************************************************************************/
290 /*******************************   GLOBALS  ***********************************/
291 /******************************************************************************/
292
293 /**
294  * Global handle to the statistics service.
295  */
296 extern struct GNUNET_STATISTICS_Handle *stats;
297
298 /**
299  * Local peer own ID (memory efficient handle).
300  */
301 extern GNUNET_PEER_Id myid;
302
303
304 /******************************************************************************/
305 /********************************   STATIC  ***********************************/
306 /******************************************************************************/
307
308 /**
309  * Destroy a reliable message after it has been acknowledged, either by
310  * direct mid ACK or bitfield. Updates the appropriate data structures and
311  * timers and frees all memory.
312  *
313  * @param copy Message that is no longer needed: remote peer got it.
314  * @param update_time Is the timing information relevant?
315  *                    If this message is ACK in a batch the timing information
316  *                    is skewed by the retransmission, count only for the
317  *                    retransmitted message.
318  */
319 static int
320 rel_message_free (struct MeshReliableMessage *copy, int update_time);
321
322 /**
323  * send a channel create message.
324  *
325  * @param ch Channel for which to send.
326  */
327 static void
328 send_create (struct MeshChannel *ch);
329
330 /**
331  * Confirm we got a channel create, FWD ack.
332  *
333  * @param ch The channel to confirm.
334  * @param fwd Should we send a FWD ACK? (going dest->root)
335  */
336 static void
337 send_ack (struct MeshChannel *ch, int fwd);
338
339
340
341 /**
342  * Test if the channel is loopback: both root and dest are on the local peer.
343  *
344  * @param ch Channel to test.
345  *
346  * @return #GNUNET_YES if channel is loopback, #GNUNET_NO otherwise.
347  */
348 static int
349 is_loopback (const struct MeshChannel *ch)
350 {
351   if (NULL != ch->t)
352     return GMT_is_loopback (ch->t);
353
354   return (NULL != ch->root && NULL != ch->dest);
355 }
356
357
358 /**
359  * We have received a message out of order, or the client is not ready.
360  * Buffer it until we receive an ACK from the client or the missing
361  * message from the channel.
362  *
363  * @param msg Message to buffer (MUST be of type MESH_DATA).
364  * @param rel Reliability data to the corresponding direction.
365  */
366 static void
367 add_buffered_data (const struct GNUNET_MESH_Data *msg,
368                    struct MeshChannelReliability *rel)
369 {
370   struct MeshReliableMessage *copy;
371   struct MeshReliableMessage *prev;
372   uint32_t mid;
373   uint16_t size;
374
375   size = ntohs (msg->header.size);
376   mid = ntohl (msg->mid);
377
378   LOG (GNUNET_ERROR_TYPE_DEBUG, "add_buffered_data %u\n", mid);
379
380   copy = GNUNET_malloc (sizeof (*copy) + size);
381   copy->mid = mid;
382   copy->rel = rel;
383   copy->type = GNUNET_MESSAGE_TYPE_MESH_DATA;
384   memcpy (&copy[1], msg, size);
385
386   rel->n_recv++;
387
388   // FIXME do something better than O(n), although n < 64...
389   // FIXME start from the end (most messages are the latest ones)
390   for (prev = rel->head_recv; NULL != prev; prev = prev->next)
391   {
392     LOG (GNUNET_ERROR_TYPE_DEBUG, " prev %u\n", prev->mid);
393     if (GM_is_pid_bigger (prev->mid, mid))
394     {
395       LOG (GNUNET_ERROR_TYPE_DEBUG, " bingo!\n");
396       GNUNET_CONTAINER_DLL_insert_before (rel->head_recv, rel->tail_recv,
397                                           prev, copy);
398       return;
399     }
400   }
401     LOG (GNUNET_ERROR_TYPE_DEBUG, " insert at tail!\n");
402     GNUNET_CONTAINER_DLL_insert_tail (rel->head_recv, rel->tail_recv, copy);
403     LOG (GNUNET_ERROR_TYPE_DEBUG, "add_buffered_data END\n");
404 }
405
406
407 /**
408  * Add a destination client to a channel, initializing all data structures
409  * in the channel and the client.
410  *
411  * @param ch Channel to which add the destination.
412  * @param c Client which to add to the channel.
413  */
414 static void
415 add_destination (struct MeshChannel *ch, struct MeshClient *c)
416 {
417   if (NULL != ch->dest)
418   {
419     GNUNET_break (0);
420     return;
421   }
422
423   /* Assign local id as destination */
424   ch->lid_dest = GML_get_next_chid (c);
425
426   /* Store in client's hashmap */
427   GML_channel_add (c, ch->lid_dest, ch);
428
429   GNUNET_break (NULL == ch->dest_rel);
430   ch->dest_rel = GNUNET_new (struct MeshChannelReliability);
431   ch->dest_rel->ch = ch;
432   ch->dest_rel->expected_delay.rel_value_us = 0;
433   ch->dest_rel->retry_timer = MESH_RETRANSMIT_TIME;
434
435   ch->dest = c;
436 }
437
438
439 /**
440  * Set options in a channel, extracted from a bit flag field.
441  *
442  * @param ch Channel to set options to.
443  * @param options Bit array in host byte order.
444  */
445 static void
446 channel_set_options (struct MeshChannel *ch, uint32_t options)
447 {
448   ch->nobuffer = (options & GNUNET_MESH_OPTION_NOBUFFER) != 0 ?
449   GNUNET_YES : GNUNET_NO;
450   ch->reliable = (options & GNUNET_MESH_OPTION_RELIABLE) != 0 ?
451   GNUNET_YES : GNUNET_NO;
452 }
453
454
455 /**
456  * Get a bit flag field with the options of a channel.
457  *
458  * @param ch Channel to get options from.
459  *
460  * @return Bit array in host byte order.
461  */
462 static uint32_t
463 channel_get_options (struct MeshChannel *ch)
464 {
465   uint32_t options;
466
467   options = 0;
468   if (ch->nobuffer)
469     options |= GNUNET_MESH_OPTION_NOBUFFER;
470   if (ch->reliable)
471     options |= GNUNET_MESH_OPTION_RELIABLE;
472
473   return options;
474 }
475
476
477 /**
478  * Notify the destination client that a new incoming channel was created.
479  *
480  * @param ch Channel that was created.
481  */
482 static void
483 send_client_create (struct MeshChannel *ch)
484 {
485   uint32_t opt;
486
487   if (NULL == ch->dest)
488     return;
489
490   opt = 0;
491   opt |= GNUNET_YES == ch->reliable ? GNUNET_MESH_OPTION_RELIABLE : 0;
492   opt |= GNUNET_YES == ch->nobuffer ? GNUNET_MESH_OPTION_NOBUFFER : 0;
493   GML_send_channel_create (ch->dest, ch->lid_dest, ch->port, opt,
494                            GMT_get_destination (ch->t));
495
496 }
497
498
499 /**
500  * Send data to a client.
501  *
502  * If the client is ready, send directly, otherwise buffer while listening
503  * for a local ACK.
504  *
505  * @param ch Channel
506  * @param msg Message.
507  * @param fwd Is this a fwd (root->dest) message?
508  */
509 static void
510 send_client_data (struct MeshChannel *ch,
511                   const struct GNUNET_MESH_Data *msg,
512                   int fwd)
513 {
514   if (fwd)
515   {
516     if (ch->dest_rel->client_ready)
517       GML_send_data (ch->dest, msg, ch->lid_dest);
518     else
519       add_buffered_data (msg, ch->dest_rel);
520   }
521   else
522   {
523     if (ch->root_rel->client_ready)
524       GML_send_data (ch->root, msg, ch->lid_root);
525     else
526       add_buffered_data (msg, ch->root_rel);
527   }
528 }
529
530
531 /**
532  * Send a buffered message to the client, for in order delivery or
533  * as result of client ACK.
534  *
535  * @param ch Channel on which to empty the message buffer.
536  * @param c Client to send to.
537  * @param fwd Is this to send FWD data?.
538  */
539 static void
540 send_client_buffered_data (struct MeshChannel *ch,
541                            struct MeshClient *c,
542                            int fwd)
543 {
544   struct MeshReliableMessage *copy;
545   struct MeshChannelReliability *rel;
546
547   LOG (GNUNET_ERROR_TYPE_DEBUG, "send_buffered_data\n");
548   rel = fwd ? ch->dest_rel : ch->root_rel;
549   if (GNUNET_NO == rel->client_ready)
550   {
551     LOG (GNUNET_ERROR_TYPE_DEBUG, "client not ready\n");
552     return;
553   }
554
555   copy = rel->head_recv;
556   /* We never buffer channel management messages */
557   if (NULL != copy)
558   {
559     if (copy->mid == rel->mid_recv || GNUNET_NO == ch->reliable)
560     {
561       struct GNUNET_MESH_Data *msg = (struct GNUNET_MESH_Data *) &copy[1];
562
563       LOG (GNUNET_ERROR_TYPE_DEBUG,
564            " have %u! now expecting %u\n",
565            copy->mid, rel->mid_recv + 1);
566       send_client_data (ch, msg, fwd);
567       rel->n_recv--;
568       rel->mid_recv++;
569       GNUNET_CONTAINER_DLL_remove (rel->head_recv, rel->tail_recv, copy);
570       LOG (GNUNET_ERROR_TYPE_DEBUG, " COPYFREE RECV %p\n", copy);
571       GNUNET_free (copy);
572     }
573     else
574     {
575       LOG (GNUNET_ERROR_TYPE_DEBUG,
576            " reliable && don't have %u, next is %u\n",
577            rel->mid_recv,
578            copy->mid);
579       return;
580     }
581   }
582   LOG (GNUNET_ERROR_TYPE_DEBUG, "send_buffered_data END\n");
583 }
584
585
586 /**
587  * Allow a client to send more data.
588  *
589  * In case the client was already allowed to send data, do nothing.
590  *
591  * @param ch Channel.
592  * @param fwd Is this a FWD ACK? (FWD ACKs are sent to root)
593  */
594 static void
595 send_client_ack (struct MeshChannel *ch, int fwd)
596 {
597   struct MeshChannelReliability *rel = fwd ? ch->root_rel : ch->dest_rel;
598   struct MeshClient *c = fwd ? ch->root : ch->dest;
599
600   if (NULL == c)
601   {
602     GNUNET_break (GNUNET_NO != ch->destroy);
603     return;
604   }
605   LOG (GNUNET_ERROR_TYPE_DEBUG,
606        "  sending %s ack to client on channel %s\n",
607        GM_f2s (fwd), GMCH_2s (ch));
608
609   if (NULL == rel)
610   {
611     GNUNET_break (0);
612     return;
613   }
614
615   if (GNUNET_YES == rel->client_allowed)
616   {
617     LOG (GNUNET_ERROR_TYPE_DEBUG, "  already allowed\n");
618     return;
619   }
620   rel->client_allowed = GNUNET_YES;
621
622   GML_send_ack (c, fwd ? ch->lid_root : ch->lid_dest);
623 }
624
625
626 /**
627  * Notify the root that the destination rejected the channel.
628  *
629  * @param ch Rejected channel.
630  */
631 static void
632 send_client_nack (struct MeshChannel *ch)
633 {
634   if (NULL == ch->root)
635   {
636     GNUNET_break (0);
637     return;
638   }
639   GML_send_nack (ch->root, ch->lid_root);
640 }
641
642
643 /**
644  * We haven't received an ACK after a certain time: restransmit the message.
645  *
646  * @param cls Closure (MeshChannelReliability with the message to restransmit)
647  * @param tc TaskContext.
648  */
649 static void
650 channel_retransmit_message (void *cls,
651                             const struct GNUNET_SCHEDULER_TaskContext *tc)
652 {
653   struct MeshChannelReliability *rel = cls;
654   struct MeshReliableMessage *copy;
655   struct MeshChannel *ch;
656   struct GNUNET_MESH_Data *payload;
657   int fwd;
658
659   rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
660   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
661     return;
662
663   ch = rel->ch;
664   copy = rel->head_sent;
665   if (NULL == copy)
666   {
667     GNUNET_break (0);
668     return;
669   }
670
671   payload = (struct GNUNET_MESH_Data *) &copy[1];
672   fwd = (rel == ch->root_rel);
673
674   /* Message not found in the queue that we are going to use. */
675   LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! RETRANSMIT %u\n", copy->mid);
676
677   GMCH_send_prebuilt_message (&payload->header, ch, fwd, copy);
678   GNUNET_STATISTICS_update (stats, "# data retransmitted", 1, GNUNET_NO);
679 }
680
681
682 /**
683  * We haven't received an Channel ACK after a certain time: resend the CREATE.
684  *
685  * @param cls Closure (MeshChannelReliability of the channel to recreate)
686  * @param tc TaskContext.
687  */
688 static void
689 channel_recreate (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
690 {
691   struct MeshChannelReliability *rel = cls;
692
693   rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
694   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
695     return;
696
697   LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! RE-CREATE\n");
698   GNUNET_STATISTICS_update (stats, "# data retransmitted", 1, GNUNET_NO);
699
700   if (rel == rel->ch->root_rel)
701   {
702     send_create (rel->ch);
703   }
704   else if (rel == rel->ch->dest_rel)
705   {
706     send_ack (rel->ch, GNUNET_YES);
707   }
708   else
709   {
710     GNUNET_break (0);
711   }
712
713 }
714
715
716 /**
717  * Message has been sent: start retransmission timer.
718  *
719  * @param cls Closure (queue structure).
720  * @param t Tunnel.
721  * @param q Queue handler (no longer valid).
722  * @param type Type of message.
723  * @param size Size of the message.
724  */
725 static void
726 ch_message_sent (void *cls,
727                  struct MeshTunnel3 *t,
728                  struct MeshTunnel3Queue *q,
729                  uint16_t type, size_t size)
730 {
731   struct MeshChannelQueue *chq = cls;
732   struct MeshReliableMessage *copy = chq->copy;
733   struct MeshChannelReliability *rel;
734
735   switch (chq->type)
736   {
737     case GNUNET_MESSAGE_TYPE_MESH_DATA:
738       LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! SENT DATA MID %u\n", copy->mid);
739       GNUNET_assert (chq == copy->chq);
740       copy->timestamp = GNUNET_TIME_absolute_get ();
741       rel = copy->rel;
742       if (GNUNET_SCHEDULER_NO_TASK == rel->retry_task)
743       {
744         LOG (GNUNET_ERROR_TYPE_DEBUG, "!! scheduling retry in %s\n",
745              GNUNET_STRINGS_relative_time_to_string (rel->expected_delay,
746                                                      GNUNET_YES));
747         if (0 != rel->expected_delay.rel_value_us)
748         {
749           LOG (GNUNET_ERROR_TYPE_DEBUG, "!! delay != 0\n");
750           rel->retry_timer =
751           GNUNET_TIME_relative_multiply (rel->expected_delay,
752                                          MESH_RETRANSMIT_MARGIN);
753         }
754         else
755         {
756           LOG (GNUNET_ERROR_TYPE_DEBUG, "!! delay reset\n");
757           rel->retry_timer = MESH_RETRANSMIT_TIME;
758         }
759         LOG (GNUNET_ERROR_TYPE_DEBUG, "!! using delay %s\n",
760              GNUNET_STRINGS_relative_time_to_string (rel->retry_timer,
761                                                      GNUNET_NO));
762         rel->retry_task =
763             GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
764                                           &channel_retransmit_message, rel);
765       }
766       else
767       {
768         LOG (GNUNET_ERROR_TYPE_DEBUG, "!! retry task %u\n", rel->retry_task);
769       }
770       copy->chq = NULL;
771       break;
772
773
774     case GNUNET_MESSAGE_TYPE_MESH_DATA_ACK:
775     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
776     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_ACK:
777       LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! SENT %s\n", GM_m2s (chq->type));
778       rel = chq->rel;
779       GNUNET_assert (rel->uniq == chq);
780       rel->uniq = NULL;
781
782       if (MESH_CHANNEL_READY != rel->ch->state
783           && GNUNET_MESSAGE_TYPE_MESH_DATA_ACK != type)
784       {
785         GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == rel->retry_task);
786         LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! STD BACKOFF %s\n",
787              GNUNET_STRINGS_relative_time_to_string (rel->retry_timer,
788                                                      GNUNET_NO));
789         rel->retry_timer = GNUNET_TIME_STD_BACKOFF (rel->retry_timer);
790         rel->retry_task = GNUNET_SCHEDULER_add_delayed (rel->retry_timer,
791                                                         &channel_recreate, rel);
792       }
793       break;
794
795
796     default:
797       GNUNET_break (0);
798   }
799
800   GNUNET_free (chq);
801 }
802
803
804 /**
805  * send a channel create message.
806  *
807  * @param ch Channel for which to send.
808  */
809 static void
810 send_create (struct MeshChannel *ch)
811 {
812   struct GNUNET_MESH_ChannelCreate msgcc;
813
814   msgcc.header.size = htons (sizeof (msgcc));
815   msgcc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE);
816   msgcc.chid = htonl (ch->gid);
817   msgcc.port = htonl (ch->port);
818   msgcc.opt = htonl (channel_get_options (ch));
819
820   GMCH_send_prebuilt_message (&msgcc.header, ch, GNUNET_YES, NULL);
821 }
822
823
824 /**
825  * Confirm we got a channel create or FWD ack.
826  *
827  * @param ch The channel to confirm.
828  * @param fwd Should we send a FWD ACK? (going dest->root)
829  */
830 static void
831 send_ack (struct MeshChannel *ch, int fwd)
832 {
833   struct GNUNET_MESH_ChannelManage msg;
834
835   msg.header.size = htons (sizeof (msg));
836   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_ACK);
837   LOG (GNUNET_ERROR_TYPE_DEBUG,
838        "  sending channel %s ack for channel %s\n",
839        GM_f2s (fwd), GMCH_2s (ch));
840
841   msg.chid = htonl (ch->gid);
842   GMCH_send_prebuilt_message (&msg.header, ch, !fwd, NULL);
843 }
844
845
846 /**
847  * Send a message and don't keep any info about it: we won't need to cancel it
848  * or resend it.
849  *
850  * @param msg Header of the message to fire away.
851  * @param ch Channel on which the message should go.
852  * @param force Is this a forced (undroppable) message?
853  */
854 static void
855 fire_and_forget (const struct GNUNET_MessageHeader *msg,
856                  struct MeshChannel *ch,
857                  int force)
858 {
859   GNUNET_break (NULL == GMT_send_prebuilt_message (msg, ch->t, force,
860                                                    NULL, NULL));
861 }
862
863
864 /**
865  * Notify that a channel create didn't succeed.
866  *
867  * @param ch The channel to reject.
868  */
869 static void
870 send_nack (struct MeshChannel *ch)
871 {
872   struct GNUNET_MESH_ChannelManage msg;
873
874   msg.header.size = htons (sizeof (msg));
875   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_NACK);
876   LOG (GNUNET_ERROR_TYPE_DEBUG,
877        "  sending channel NACK for channel %s\n",
878        GMCH_2s (ch));
879
880   msg.chid = htonl (ch->gid);
881   GMCH_send_prebuilt_message (&msg.header, ch, GNUNET_NO, NULL);
882 }
883
884
885 /**
886  * Notify a client that the channel is no longer valid.
887  *
888  * @param ch Channel that is destroyed.
889  * @param local_only Should we avoid sending it to other peers?
890  */
891 static void
892 send_destroy (struct MeshChannel *ch, int local_only)
893 {
894   struct GNUNET_MESH_ChannelManage msg;
895
896   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY);
897   msg.header.size = htons (sizeof (msg));
898   msg.chid = htonl (ch->gid);
899
900   /* If root is not NULL, notify.
901    * If it's NULL, check lid_root. When a local destroy comes in, root
902    * is set to NULL but lid_root is left untouched. In this case, do nothing,
903    * the client is the one who reuqested the channel to be destroyed.
904    */
905   if (NULL != ch->root)
906     GML_send_channel_destroy (ch->root, ch->lid_root);
907   else if (0 == ch->lid_root && GNUNET_NO == local_only)
908     GMCH_send_prebuilt_message (&msg.header, ch, GNUNET_NO, NULL);
909
910   if (NULL != ch->dest)
911     GML_send_channel_destroy (ch->dest, ch->lid_dest);
912   else if (0 == ch->lid_dest && GNUNET_NO == local_only)
913     GMCH_send_prebuilt_message (&msg.header, ch, GNUNET_YES, NULL);
914 }
915
916
917 /**
918  * Destroy all reliable messages queued for a channel,
919  * during a channel destruction.
920  * Frees the reliability structure itself.
921  *
922  * @param rel Reliability data for a channel.
923  */
924 static void
925 channel_rel_free_all (struct MeshChannelReliability *rel)
926 {
927   struct MeshReliableMessage *copy;
928   struct MeshReliableMessage *next;
929
930   if (NULL == rel)
931     return;
932
933   for (copy = rel->head_recv; NULL != copy; copy = next)
934   {
935     next = copy->next;
936     GNUNET_CONTAINER_DLL_remove (rel->head_recv, rel->tail_recv, copy);
937     LOG (GNUNET_ERROR_TYPE_DEBUG, " COPYFREE BATCH RECV %p\n", copy);
938     GNUNET_break (NULL == copy->chq);
939     GNUNET_free (copy);
940   }
941   for (copy = rel->head_sent; NULL != copy; copy = next)
942   {
943     next = copy->next;
944     GNUNET_CONTAINER_DLL_remove (rel->head_sent, rel->tail_sent, copy);
945     LOG (GNUNET_ERROR_TYPE_DEBUG, " COPYFREE BATCH %p\n", copy);
946     if (NULL != copy->chq)
947     {
948       if (NULL != copy->chq->tq)
949       {
950         GMT_cancel (copy->chq->tq);
951         /* ch_message_sent will free copy->q */
952       }
953       else
954       {
955         GNUNET_free (copy->chq);
956         GNUNET_break (0);
957       }
958     }
959     GNUNET_free (copy);
960   }
961   if (NULL != rel->uniq && NULL != rel->uniq->tq)
962   {
963     GMT_cancel (rel->uniq->tq);
964     /* ch_message_sent is called freeing uniq */
965   }
966   if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
967   {
968     GNUNET_SCHEDULER_cancel (rel->retry_task);
969     rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
970   }
971   GNUNET_free (rel);
972 }
973
974
975 /**
976  * Mark future messages as ACK'd.
977  *
978  * @param rel Reliability data.
979  * @param msg DataACK message with a bitfield of future ACK'd messages.
980  */
981 static void
982 channel_rel_free_sent (struct MeshChannelReliability *rel,
983                        const struct GNUNET_MESH_DataACK *msg)
984 {
985   struct MeshReliableMessage *copy;
986   struct MeshReliableMessage *next;
987   uint64_t bitfield;
988   uint64_t mask;
989   uint32_t mid;
990   uint32_t target;
991   unsigned int i;
992
993   bitfield = msg->futures;
994   mid = ntohl (msg->mid);
995   LOG (GNUNET_ERROR_TYPE_DEBUG,
996               "!!! free_sent_reliable %u %llX\n",
997               mid, bitfield);
998   LOG (GNUNET_ERROR_TYPE_DEBUG,
999               " rel %p, head %p\n",
1000               rel, rel->head_sent);
1001   for (i = 0, copy = rel->head_sent;
1002        i < 64 && NULL != copy && 0 != bitfield;
1003        i++)
1004   {
1005     LOG (GNUNET_ERROR_TYPE_DEBUG,
1006                 " trying bit %u (mid %u)\n",
1007                 i, mid + i + 1);
1008     mask = 0x1LL << i;
1009     if (0 == (bitfield & mask))
1010      continue;
1011
1012     LOG (GNUNET_ERROR_TYPE_DEBUG, " set!\n");
1013     /* Bit was set, clear the bit from the bitfield */
1014     bitfield &= ~mask;
1015
1016     /* The i-th bit was set. Do we have that copy? */
1017     /* Skip copies with mid < target */
1018     target = mid + i + 1;
1019     LOG (GNUNET_ERROR_TYPE_DEBUG, " target %u\n", target);
1020     while (NULL != copy && GM_is_pid_bigger (target, copy->mid))
1021      copy = copy->next;
1022
1023     /* Did we run out of copies? (previously freed, it's ok) */
1024     if (NULL == copy)
1025     {
1026      LOG (GNUNET_ERROR_TYPE_DEBUG, "run out of copies...\n");
1027      return;
1028     }
1029
1030     /* Did we overshoot the target? (previously freed, it's ok) */
1031     if (GM_is_pid_bigger (copy->mid, target))
1032     {
1033      LOG (GNUNET_ERROR_TYPE_DEBUG, " next copy %u\n", copy->mid);
1034      continue;
1035     }
1036
1037     /* Now copy->mid == target, free it */
1038     next = copy->next;
1039     GNUNET_break (GNUNET_YES != rel_message_free (copy, GNUNET_YES));
1040     copy = next;
1041   }
1042   LOG (GNUNET_ERROR_TYPE_DEBUG, "free_sent_reliable END\n");
1043 }
1044
1045
1046 /**
1047  * Destroy a reliable message after it has been acknowledged, either by
1048  * direct mid ACK or bitfield. Updates the appropriate data structures and
1049  * timers and frees all memory.
1050  *
1051  * @param copy Message that is no longer needed: remote peer got it.
1052  * @param update_time Is the timing information relevant?
1053  *                    If this message is ACK in a batch the timing information
1054  *                    is skewed by the retransmission, count only for the
1055  *                    retransmitted message.
1056  *
1057  * @return #GNUNET_YES if channel was destroyed as a result of the call,
1058  *         #GNUNET_NO otherwise.
1059  */
1060 static int
1061 rel_message_free (struct MeshReliableMessage *copy, int update_time)
1062 {
1063   struct MeshChannelReliability *rel;
1064   struct GNUNET_TIME_Relative time;
1065
1066   rel = copy->rel;
1067   LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! Freeing %u\n", copy->mid);
1068   if (update_time)
1069   {
1070     time = GNUNET_TIME_absolute_get_duration (copy->timestamp);
1071     if (0 == rel->expected_delay.rel_value_us)
1072       rel->expected_delay = time;
1073     else
1074     {
1075       rel->expected_delay.rel_value_us *= 7;
1076       rel->expected_delay.rel_value_us += time.rel_value_us;
1077       rel->expected_delay.rel_value_us /= 8;
1078     }
1079     LOG (GNUNET_ERROR_TYPE_DEBUG, "!!!  took %s\n",
1080                 GNUNET_STRINGS_relative_time_to_string (time, GNUNET_NO));
1081     LOG (GNUNET_ERROR_TYPE_DEBUG, "!!!  new expected delay %s\n",
1082                 GNUNET_STRINGS_relative_time_to_string (rel->expected_delay,
1083                                                         GNUNET_NO));
1084     rel->retry_timer = rel->expected_delay;
1085   }
1086   else
1087   {
1088     LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! batch free, ignoring timing\n");
1089   }
1090   rel->ch->pending_messages--;
1091   if (NULL != copy->chq)
1092   {
1093     GMT_cancel (copy->chq->tq);
1094     /* copy->q is set to NULL by ch_message_sent */
1095   }
1096   GNUNET_CONTAINER_DLL_remove (rel->head_sent, rel->tail_sent, copy);
1097   LOG (GNUNET_ERROR_TYPE_DEBUG, " COPYFREE %p\n", copy);
1098   GNUNET_free (copy);
1099
1100   if (GNUNET_NO != rel->ch->destroy && 0 == rel->ch->pending_messages)
1101   {
1102     struct MeshTunnel3 *t = rel->ch->t;
1103     GMCH_destroy (rel->ch);
1104     GMT_destroy_if_empty (t);
1105     return GNUNET_YES;
1106   }
1107   return GNUNET_NO;
1108 }
1109
1110
1111 /**
1112  * Channel was ACK'd by remote peer, mark as ready and cancel retransmission.
1113  *
1114  * @param ch Channel to mark as ready.
1115  * @param fwd Was the ACK message a FWD ACK? (dest->root, SYNACK)
1116  */
1117 static void
1118 channel_confirm (struct MeshChannel *ch, int fwd)
1119 {
1120   struct MeshChannelReliability *rel;
1121   enum MeshChannelState oldstate;
1122
1123   rel = fwd ? ch->root_rel : ch->dest_rel;
1124   if (NULL == rel)
1125   {
1126     GNUNET_break (GNUNET_NO != ch->destroy);
1127     return;
1128   }
1129   LOG (GNUNET_ERROR_TYPE_DEBUG,
1130               "  channel confirm %s %s\n",
1131               GM_f2s (fwd), GMCH_2s (ch));
1132   oldstate = ch->state;
1133   ch->state = MESH_CHANNEL_READY;
1134
1135   rel->client_ready = GNUNET_YES;
1136   LOG (GNUNET_ERROR_TYPE_DEBUG,
1137        "  !! retry timer confirm %s\n",
1138        GNUNET_STRINGS_relative_time_to_string (rel->retry_timer, GNUNET_NO));
1139   rel->expected_delay = rel->retry_timer;
1140   if (GMT_get_connections_buffer (ch->t) > 0 || GMT_is_loopback (ch->t))
1141     send_client_ack (ch, fwd);
1142
1143   if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
1144   {
1145     GNUNET_SCHEDULER_cancel (rel->retry_task);
1146     rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
1147   }
1148   else if (NULL != rel->uniq)
1149   {
1150     GMT_cancel (rel->uniq->tq);
1151     /* ch_message_sent will free and NULL uniq */
1152   }
1153   else
1154   {
1155     if (GNUNET_NO == is_loopback (ch))
1156     {
1157       /* We SHOULD have been trying to retransmit this! */
1158       GNUNET_break (oldstate == MESH_CHANNEL_READY);
1159     }
1160   }
1161
1162   /* In case of a FWD ACK (SYNACK) send a BCK ACK (ACK). */
1163   if (GNUNET_YES == fwd)
1164     send_ack (ch, GNUNET_NO);
1165 }
1166
1167
1168 /**
1169  * Save a copy to retransmit in case it gets lost.
1170  *
1171  * Initializes all needed callbacks and timers.
1172  *
1173  * @param ch Channel this message goes on.
1174  * @param msg Message to copy.
1175  * @param fwd Is this fwd traffic?
1176  */
1177 static struct MeshReliableMessage *
1178 channel_save_copy (struct MeshChannel *ch,
1179                    const struct GNUNET_MessageHeader *msg,
1180                    int fwd)
1181 {
1182   struct MeshChannelReliability *rel;
1183   struct MeshReliableMessage *copy;
1184   uint32_t mid;
1185   uint16_t type;
1186   uint16_t size;
1187
1188   rel = fwd ? ch->root_rel : ch->dest_rel;
1189   mid = rel->mid_send - 1;
1190   type = ntohs (msg->type);
1191   size = ntohs (msg->size);
1192
1193   LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! SAVE %u %s\n", mid, GM_m2s (type));
1194   copy = GNUNET_malloc (sizeof (struct MeshReliableMessage) + size);
1195   LOG (GNUNET_ERROR_TYPE_DEBUG, "  at %p\n", copy);
1196   copy->mid = mid;
1197   copy->rel = rel;
1198   copy->type = type;
1199   memcpy (&copy[1], msg, size);
1200   GNUNET_CONTAINER_DLL_insert_tail (rel->head_sent, rel->tail_sent, copy);
1201   ch->pending_messages++;
1202
1203   return copy;
1204 }
1205
1206
1207 /**
1208  * Create a new channel.
1209  *
1210  * @param t Tunnel this channel is in.
1211  * @param owner Client that owns the channel, NULL for foreign channels.
1212  * @param lid_root Local ID for root client.
1213  *
1214  * @return A new initialized channel. NULL on error.
1215  */
1216 static struct MeshChannel *
1217 channel_new (struct MeshTunnel3 *t,
1218              struct MeshClient *owner,
1219              MESH_ChannelNumber lid_root)
1220 {
1221   struct MeshChannel *ch;
1222
1223   ch = GNUNET_new (struct MeshChannel);
1224   ch->root = owner;
1225   ch->lid_root = lid_root;
1226   ch->t = t;
1227
1228   GNUNET_STATISTICS_update (stats, "# channels", 1, GNUNET_NO);
1229
1230   if (NULL != owner)
1231   {
1232     ch->gid = GMT_get_next_chid (t);
1233     GML_channel_add (owner, lid_root, ch);
1234   }
1235   GMT_add_channel (t, ch);
1236
1237   return ch;
1238 }
1239
1240
1241 /**
1242  * Handle a loopback message: call the appropriate handler for the message type.
1243  *
1244  * @param ch Channel this message is on.
1245  * @param msgh Message header.
1246  * @param fwd Is this FWD traffic?
1247  */
1248 void
1249 handle_loopback (struct MeshChannel *ch,
1250                  const struct GNUNET_MessageHeader *msgh,
1251                  int fwd)
1252 {
1253   uint16_t type;
1254
1255   type = ntohs (msgh->type);
1256   LOG (GNUNET_ERROR_TYPE_DEBUG,
1257        "Loopback %s %s message!\n",
1258        GM_f2s (fwd), GM_m2s (type));
1259
1260   switch (type)
1261   {
1262     case GNUNET_MESSAGE_TYPE_MESH_DATA:
1263       /* Don't send hop ACK, wait for client to ACK */
1264       GMCH_handle_data (ch, (struct GNUNET_MESH_Data *) msgh, fwd);
1265       break;
1266
1267     case GNUNET_MESSAGE_TYPE_MESH_DATA_ACK:
1268       GMCH_handle_data_ack (ch, (struct GNUNET_MESH_DataACK *) msgh, fwd);
1269       break;
1270
1271     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
1272       GMCH_handle_create (ch->t,
1273                           (struct GNUNET_MESH_ChannelCreate *) msgh);
1274       break;
1275
1276     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_ACK:
1277       GMCH_handle_ack (ch,
1278                        (struct GNUNET_MESH_ChannelManage *) msgh,
1279                        fwd);
1280       break;
1281
1282     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_NACK:
1283       GMCH_handle_nack (ch);
1284       break;
1285
1286     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY:
1287       GMCH_handle_destroy (ch,
1288                            (struct GNUNET_MESH_ChannelManage *) msgh,
1289                            fwd);
1290       break;
1291
1292     default:
1293       GNUNET_break_op (0);
1294       LOG (GNUNET_ERROR_TYPE_DEBUG,
1295            "end-to-end message not known (%u)\n",
1296            ntohs (msgh->type));
1297   }
1298 }
1299
1300
1301
1302 /******************************************************************************/
1303 /********************************    API    ***********************************/
1304 /******************************************************************************/
1305
1306 /**
1307  * Destroy a channel and free all resources.
1308  *
1309  * @param ch Channel to destroy.
1310  */
1311 void
1312 GMCH_destroy (struct MeshChannel *ch)
1313 {
1314   struct MeshClient *c;
1315
1316   if (NULL == ch)
1317     return;
1318   if (2 == ch->destroy)
1319     return; /* recursive call */
1320   ch->destroy = 2;
1321
1322   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying channel %s:%u\n",
1323               GMT_2s (ch->t), ch->gid);
1324   GMCH_debug (ch);
1325
1326   c = ch->root;
1327   if (NULL != c)
1328   {
1329     GML_channel_remove (c, ch->lid_root, ch);
1330   }
1331
1332   c = ch->dest;
1333   if (NULL != c)
1334   {
1335     GML_channel_remove (c, ch->lid_dest, ch);
1336   }
1337
1338   channel_rel_free_all (ch->root_rel);
1339   channel_rel_free_all (ch->dest_rel);
1340
1341   GMT_remove_channel (ch->t, ch);
1342   GNUNET_STATISTICS_update (stats, "# channels", -1, GNUNET_NO);
1343
1344   GNUNET_free (ch);
1345 }
1346
1347
1348 /**
1349  * Get channel ID.
1350  *
1351  * @param ch Channel.
1352  *
1353  * @return ID
1354  */
1355 MESH_ChannelNumber
1356 GMCH_get_id (const struct MeshChannel *ch)
1357 {
1358   return ch->gid;
1359 }
1360
1361
1362 /**
1363  * Get the channel tunnel.
1364  *
1365  * @param ch Channel to get the tunnel from.
1366  *
1367  * @return tunnel of the channel.
1368  */
1369 struct MeshTunnel3 *
1370 GMCH_get_tunnel (const struct MeshChannel *ch)
1371 {
1372   return ch->t;
1373 }
1374
1375
1376 /**
1377  * Get free buffer space towards the client on a specific channel.
1378  *
1379  * @param ch Channel.
1380  * @param fwd Is query about FWD traffic?
1381  *
1382  * @return Free buffer space [0 - 64]
1383  */
1384 unsigned int
1385 GMCH_get_buffer (struct MeshChannel *ch, int fwd)
1386 {
1387   struct MeshChannelReliability *rel;
1388
1389   rel = fwd ? ch->dest_rel : ch->root_rel;
1390
1391   /* If rel is NULL it means that the end is not yet created,
1392    * most probably is a loopback channel at the point of sending
1393    * the ChannelCreate to itself.
1394    */
1395   if (NULL == rel)
1396     return 64;
1397
1398   return (64 - rel->n_recv);
1399 }
1400
1401
1402 /**
1403  * Get flow control status of end point: is client allow to send?
1404  *
1405  * @param ch Channel.
1406  * @param fwd Is query about FWD traffic? (Request root status).
1407  *
1408  * @return #GNUNET_YES if client is allowed to send us data.
1409  */
1410 int
1411 GMCH_get_allowed (struct MeshChannel *ch, int fwd)
1412 {
1413   struct MeshChannelReliability *rel;
1414
1415   rel = fwd ? ch->root_rel : ch->dest_rel;
1416
1417   if (NULL == rel)
1418   {
1419     /* Probably shutting down: root/dest NULL'ed to mark disconnection */
1420     GNUNET_break (GNUNET_NO != ch->destroy);
1421     return 0;
1422   }
1423
1424   return rel->client_allowed;
1425 }
1426
1427
1428 /**
1429  * Is the root client for this channel on this peer?
1430  *
1431  * @param ch Channel.
1432  * @param fwd Is this for fwd traffic?
1433  *
1434  * @return #GNUNET_YES in case it is.
1435  */
1436 int
1437 GMCH_is_origin (struct MeshChannel *ch, int fwd)
1438 {
1439   struct MeshClient *c;
1440
1441   c = fwd ? ch->root : ch->dest;
1442   return NULL != c;
1443 }
1444
1445
1446 /**
1447  * Is the destination client for this channel on this peer?
1448  *
1449  * @param ch Channel.
1450  * @param fwd Is this for fwd traffic?
1451  *
1452  * @return #GNUNET_YES in case it is.
1453  */
1454 int
1455 GMCH_is_terminal (struct MeshChannel *ch, int fwd)
1456 {
1457   struct MeshClient *c;
1458
1459   c = fwd ? ch->dest : ch->root;
1460   return NULL != c;
1461 }
1462
1463
1464 /**
1465  * Send an end-to-end ACK message for the most recent in-sequence payload.
1466  *
1467  * If channel is not reliable, do nothing.
1468  *
1469  * @param ch Channel this is about.
1470  * @param fwd Is for FWD traffic? (ACK dest->owner)
1471  */
1472 void
1473 GMCH_send_data_ack (struct MeshChannel *ch, int fwd)
1474 {
1475   struct GNUNET_MESH_DataACK msg;
1476   struct MeshChannelReliability *rel;
1477   struct MeshReliableMessage *copy;
1478   unsigned int delta;
1479   uint64_t mask;
1480   uint32_t ack;
1481
1482   if (GNUNET_NO == ch->reliable)
1483   {
1484     return;
1485   }
1486   rel = fwd ? ch->dest_rel : ch->root_rel;
1487   ack = rel->mid_recv - 1;
1488   LOG (GNUNET_ERROR_TYPE_DEBUG,
1489               " !! Send DATA_ACK for %u\n",
1490               ack);
1491
1492   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_DATA_ACK);
1493   msg.header.size = htons (sizeof (msg));
1494   msg.chid = htonl (ch->gid);
1495   msg.futures = 0;
1496   for (copy = rel->head_recv; NULL != copy; copy = copy->next)
1497   {
1498     if (copy->type != GNUNET_MESSAGE_TYPE_MESH_DATA)
1499     {
1500       LOG (GNUNET_ERROR_TYPE_DEBUG,
1501            "!!  Type %s, expected DATA\n",
1502            GM_m2s (copy->type));
1503       continue;
1504     }
1505     if (copy->mid == ack + 1)
1506     {
1507       ack++;
1508       continue;
1509     }
1510     delta = copy->mid - (ack + 1);
1511     if (63 < delta)
1512       break;
1513     mask = 0x1LL << delta;
1514     msg.futures |= mask;
1515     LOG (GNUNET_ERROR_TYPE_DEBUG,
1516          " !! setting bit for %u (delta %u) (%llX) -> %llX\n",
1517          copy->mid, delta, mask, msg.futures);
1518   }
1519   msg.mid = htonl (ack);
1520   LOG (GNUNET_ERROR_TYPE_DEBUG,
1521        "!!! ACK for %u, futures %llX\n",
1522        ack, msg.futures);
1523
1524   GMCH_send_prebuilt_message (&msg.header, ch, !fwd, NULL);
1525   LOG (GNUNET_ERROR_TYPE_DEBUG, "send_data_ack END\n");
1526 }
1527
1528
1529 /**
1530  * Allow a client to send us more data, in case it was choked.
1531  *
1532  * @param ch Channel.
1533  * @param fwd Is this about FWD traffic? (Root client).
1534  */
1535 void
1536 GMCH_allow_client (struct MeshChannel *ch, int fwd)
1537 {
1538   struct MeshChannelReliability *rel;
1539   unsigned int buffer;
1540
1541   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMCH allow\n");
1542
1543   if (MESH_CHANNEL_READY != ch->state)
1544   {
1545     LOG (GNUNET_ERROR_TYPE_DEBUG, " channel not ready yet!\n");
1546     return;
1547   }
1548
1549   if (GNUNET_YES == ch->reliable)
1550   {
1551     rel = fwd ? ch->root_rel : ch->dest_rel;
1552     if (NULL == rel)
1553     {
1554       GNUNET_break (GNUNET_NO != ch->destroy);
1555       return;
1556     }
1557     if (NULL != rel->head_sent)
1558     {
1559       if (64 <= rel->mid_send - rel->head_sent->mid)
1560       {
1561         LOG (GNUNET_ERROR_TYPE_DEBUG, " too big MID gap! Wait for ACK.\n");
1562         return;
1563       }
1564       else
1565         LOG (GNUNET_ERROR_TYPE_DEBUG, " gap ok: %u - %u\n",
1566              rel->head_sent->mid, rel->mid_send);
1567     }
1568     else
1569     {
1570       LOG (GNUNET_ERROR_TYPE_DEBUG, " head sent is NULL\n");
1571     }
1572   }
1573
1574   if (is_loopback (ch))
1575     buffer = GMCH_get_buffer (ch, fwd);
1576   else
1577     buffer = GMT_get_connections_buffer (ch->t);
1578
1579   if (0 == buffer)
1580   {
1581     LOG (GNUNET_ERROR_TYPE_DEBUG, " no buffer space.\n");
1582     return;
1583   }
1584
1585   LOG (GNUNET_ERROR_TYPE_DEBUG, " buffer space %u, allowing\n", buffer);
1586   send_client_ack (ch, fwd);
1587 }
1588
1589
1590 /**
1591  * Log channel info.
1592  *
1593  * @param ch Channel.
1594  */
1595 void
1596 GMCH_debug (struct MeshChannel *ch)
1597 {
1598   if (NULL == ch)
1599   {
1600     LOG (GNUNET_ERROR_TYPE_DEBUG, "*** DEBUG NULL CHANNEL ***\n");
1601     return;
1602   }
1603   LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel %s:%X (%p)\n",
1604               GMT_2s (ch->t), ch->gid, ch);
1605   LOG (GNUNET_ERROR_TYPE_DEBUG, "  root %p/%p\n",
1606               ch->root, ch->root_rel);
1607   if (NULL != ch->root)
1608   {
1609     LOG (GNUNET_ERROR_TYPE_DEBUG, "  cli %s\n", GML_2s (ch->root));
1610     LOG (GNUNET_ERROR_TYPE_DEBUG, "  ready %s\n",
1611                 ch->root_rel->client_ready ? "YES" : "NO");
1612     LOG (GNUNET_ERROR_TYPE_DEBUG, "  id %X\n", ch->lid_root);
1613   }
1614   LOG (GNUNET_ERROR_TYPE_DEBUG, "  dest %p/%p\n",
1615               ch->dest, ch->dest_rel);
1616   if (NULL != ch->dest)
1617   {
1618     LOG (GNUNET_ERROR_TYPE_DEBUG, "  cli %s\n", GML_2s (ch->dest));
1619     LOG (GNUNET_ERROR_TYPE_DEBUG, "  ready %s\n",
1620                 ch->dest_rel->client_ready ? "YES" : "NO");
1621     LOG (GNUNET_ERROR_TYPE_DEBUG, "  id %X\n", ch->lid_dest);
1622   }
1623 }
1624
1625
1626 /**
1627  * Handle an ACK given by a client.
1628  *
1629  * Mark client as ready and send him any buffered data we could have for him.
1630  *
1631  * @param ch Channel.
1632  * @param fwd Is this a "FWD ACK"? (FWD ACKs are sent by dest and go BCK)
1633  */
1634 void
1635 GMCH_handle_local_ack (struct MeshChannel *ch, int fwd)
1636 {
1637   struct MeshChannelReliability *rel;
1638   struct MeshClient *c;
1639
1640   rel = fwd ? ch->dest_rel : ch->root_rel;
1641   c   = fwd ? ch->dest     : ch->root;
1642
1643   rel->client_ready = GNUNET_YES;
1644   send_client_buffered_data (ch, c, fwd);
1645   if (is_loopback (ch))
1646   {
1647     unsigned int buffer;
1648
1649     buffer = GMCH_get_buffer (ch, fwd);
1650     if (0 < buffer)
1651       GMCH_allow_client (ch, fwd);
1652
1653     return;
1654   }
1655   GMT_send_connection_acks (ch->t);
1656 }
1657
1658
1659 /**
1660  * Handle data given by a client.
1661  *
1662  * Check whether the client is allowed to send in this tunnel, save if channel
1663  * is reliable and send an ACK to the client if there is still buffer space
1664  * in the tunnel.
1665  *
1666  * @param ch Channel.
1667  * @param c Client which sent the data.
1668  * @param message Message.
1669  * @param fwd Is this a FWD data?
1670  *
1671  * @return GNUNET_OK if everything goes well, GNUNET_SYSERR in case of en error.
1672  */
1673 int
1674 GMCH_handle_local_data (struct MeshChannel *ch,
1675                         struct MeshClient *c,
1676                         struct GNUNET_MessageHeader *message,
1677                         int fwd)
1678 {
1679   struct MeshChannelReliability *rel;
1680   struct GNUNET_MESH_Data *payload;
1681   size_t size = ntohs (message->size);
1682   uint16_t p2p_size = sizeof(struct GNUNET_MESH_Data) + size;
1683   unsigned char cbuf[p2p_size];
1684
1685   /* Is the client in the channel? */
1686   if ( !( (fwd &&
1687            ch->root == c)
1688          ||
1689           (!fwd &&
1690            ch->dest == c) ) )
1691   {
1692     GNUNET_break_op (0);
1693     return GNUNET_SYSERR;
1694   }
1695
1696   rel = fwd ? ch->root_rel : ch->dest_rel;
1697
1698   if (GNUNET_NO == rel->client_allowed)
1699   {
1700     GNUNET_break_op (0);
1701     return GNUNET_SYSERR;
1702   }
1703
1704   rel->client_allowed = GNUNET_NO;
1705
1706   /* Ok, everything is correct, send the message. */
1707   payload = (struct GNUNET_MESH_Data *) cbuf;
1708   payload->mid = htonl (rel->mid_send);
1709   rel->mid_send++;
1710   memcpy (&payload[1], message, size);
1711   payload->header.size = htons (p2p_size);
1712   payload->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_DATA);
1713   payload->chid = htonl (ch->gid);
1714   LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on channel...\n");
1715   GMCH_send_prebuilt_message (&payload->header, ch, fwd, NULL);
1716
1717   if (is_loopback (ch))
1718   {
1719     if (GMCH_get_buffer (ch, fwd) > 0)
1720       GMCH_allow_client (ch, fwd);
1721
1722     return GNUNET_OK;
1723   }
1724
1725   if (GMT_get_connections_buffer (ch->t) > 0)
1726   {
1727     GMCH_allow_client (ch, fwd);
1728   }
1729
1730   return GNUNET_OK;
1731 }
1732
1733
1734 /**
1735  * Handle a channel destroy requested by a client.
1736  *
1737  * Destroy the channel and the tunnel in case this was the last channel.
1738  *
1739  * @param ch Channel.
1740  * @param c Client that requested the destruction (to avoid notifying him).
1741  * @param is_root Is the request coming from root?
1742  */
1743 void
1744 GMCH_handle_local_destroy (struct MeshChannel *ch,
1745                            struct MeshClient *c,
1746                            int is_root)
1747 {
1748   struct MeshTunnel3 *t;
1749
1750   ch->destroy = GNUNET_YES;
1751   /* Cleanup after the tunnel */
1752   if (GNUNET_NO == is_root && c == ch->dest)
1753   {
1754     LOG (GNUNET_ERROR_TYPE_DEBUG, " Client %s is destination.\n", GML_2s (c));
1755     GML_client_delete_channel (c, ch, ch->lid_dest);
1756     ch->dest = NULL;
1757   }
1758   if (GNUNET_YES == is_root && c == ch->root)
1759   {
1760     LOG (GNUNET_ERROR_TYPE_DEBUG, " Client %s is owner.\n", GML_2s (c));
1761     GML_client_delete_channel (c, ch, ch->lid_root);
1762     ch->root = NULL;
1763   }
1764
1765   t = ch->t;
1766   send_destroy (ch, GNUNET_NO);
1767   if (0 == ch->pending_messages)
1768   {
1769     GMCH_destroy (ch);
1770     GMT_destroy_if_empty (t);
1771   }
1772 }
1773
1774
1775 /**
1776  * Handle a channel create requested by a client.
1777  *
1778  * Create the channel and the tunnel in case this was the first0 channel.
1779  *
1780  * @param c Client that requested the creation (will be the root).
1781  * @param msg Create Channel message.
1782  *
1783  * @return GNUNET_OK if everything went fine, GNUNET_SYSERR otherwise.
1784  */
1785 int
1786 GMCH_handle_local_create (struct MeshClient *c,
1787                           struct GNUNET_MESH_ChannelMessage *msg)
1788 {
1789   struct MeshChannel *ch;
1790   struct MeshTunnel3 *t;
1791   struct MeshPeer *peer;
1792   MESH_ChannelNumber chid;
1793
1794   LOG (GNUNET_ERROR_TYPE_DEBUG, "  towards %s:%u\n",
1795               GNUNET_i2s (&msg->peer), ntohl (msg->port));
1796   chid = ntohl (msg->channel_id);
1797
1798   /* Sanity check for duplicate channel IDs */
1799   if (NULL != GML_channel_get (c, chid))
1800   {
1801     GNUNET_break (0);
1802     return GNUNET_SYSERR;
1803   }
1804
1805   peer = GMP_get (&msg->peer);
1806   GMP_add_tunnel (peer);
1807   t = GMP_get_tunnel (peer);
1808
1809   if (GMP_get_short_id (peer) == myid)
1810   {
1811     GMT_change_cstate (t, MESH_TUNNEL3_READY);
1812   }
1813   else
1814   {
1815     /* FIXME change to a tunnel API, eliminate ch <-> peer connection */
1816     GMP_connect (peer);
1817   }
1818
1819   /* Create channel */
1820   ch = channel_new (t, c, chid);
1821   if (NULL == ch)
1822   {
1823     GNUNET_break (0);
1824     return GNUNET_SYSERR;
1825   }
1826   ch->port = ntohl (msg->port);
1827   channel_set_options (ch, ntohl (msg->opt));
1828
1829   /* In unreliable channels, we'll use the DLL to buffer BCK data */
1830   ch->root_rel = GNUNET_new (struct MeshChannelReliability);
1831   ch->root_rel->ch = ch;
1832   ch->root_rel->retry_timer = MESH_RETRANSMIT_TIME;
1833   ch->root_rel->expected_delay.rel_value_us = 0;
1834
1835   LOG (GNUNET_ERROR_TYPE_DEBUG, "CREATED CHANNEL %s\n", GMCH_2s (ch));
1836
1837   send_create (ch);
1838
1839   return GNUNET_OK;
1840 }
1841
1842
1843 /**
1844  * Handler for mesh network payload traffic.
1845  *
1846  * @param ch Channel for the message.
1847  * @param msg Unencryted data message.
1848  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1849  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1850  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1851  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1852  */
1853 void
1854 GMCH_handle_data (struct MeshChannel *ch,
1855                   const struct GNUNET_MESH_Data *msg,
1856                   int fwd)
1857 {
1858   struct MeshChannelReliability *rel;
1859   struct MeshClient *c;
1860   uint32_t mid;
1861
1862   /* If this is a remote (non-loopback) channel, find 'fwd'. */
1863   if (GNUNET_SYSERR == fwd)
1864   {
1865     if (is_loopback (ch))
1866     {
1867       /* It is a loopback channel after all... */
1868       GNUNET_break (0);
1869       return;
1870     }
1871     fwd = (NULL != ch->dest) ? GNUNET_YES : GNUNET_NO;
1872   }
1873
1874   /*  Initialize FWD/BCK data */
1875   c   = fwd ? ch->dest     : ch->root;
1876   rel = fwd ? ch->dest_rel : ch->root_rel;
1877
1878   if (NULL == c)
1879   {
1880     GNUNET_break (0);
1881     return;
1882   }
1883
1884   if (MESH_CHANNEL_READY != ch->state)
1885   {
1886     if (GNUNET_NO == fwd)
1887     {
1888       /* If we are the root, this means the other peer has sent traffic before
1889        * receiving our ACK. Even if the SYNACK goes missing, no traffic should
1890        * be sent before the ACK.
1891        */
1892       GNUNET_break_op (0);
1893       return;
1894     }
1895     /* If we are the dest, this means that the SYNACK got to the root but
1896      * the ACK went missing. Treat this as an ACK.
1897      */
1898     channel_confirm (ch, GNUNET_NO);
1899   }
1900
1901   GNUNET_STATISTICS_update (stats, "# data received", 1, GNUNET_NO);
1902
1903   mid = ntohl (msg->mid);
1904   LOG (GNUNET_ERROR_TYPE_DEBUG, "!! got mid %u\n", mid);
1905
1906   if (GNUNET_NO == ch->reliable ||
1907       ( !GM_is_pid_bigger (rel->mid_recv, mid) &&
1908         GM_is_pid_bigger (rel->mid_recv + 64, mid) ) )
1909   {
1910     LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! RECV %u\n", mid);
1911     if (GNUNET_YES == ch->reliable)
1912     {
1913       /* Is this the exact next expected messasge? */
1914       if (mid == rel->mid_recv)
1915       {
1916         LOG (GNUNET_ERROR_TYPE_DEBUG, "as expected\n");
1917         rel->mid_recv++;
1918         send_client_data (ch, msg, fwd);
1919       }
1920       else
1921       {
1922         LOG (GNUNET_ERROR_TYPE_DEBUG, "save for later\n");
1923         add_buffered_data (msg, rel);
1924       }
1925     }
1926     else
1927     {
1928       /* Tunnel is unreliable: send to clients directly */
1929       /* FIXME: accept Out Of Order traffic */
1930       rel->mid_recv = mid + 1;
1931       send_client_data (ch, msg, fwd);
1932     }
1933   }
1934   else
1935   {
1936     GNUNET_break_op (GM_is_pid_bigger (rel->mid_recv, mid));
1937     LOG (GNUNET_ERROR_TYPE_DEBUG,
1938                 " !!! MID %u not expected (%u - %u), dropping!\n",
1939                 mid, rel->mid_recv, rel->mid_recv + 63);
1940   }
1941
1942   GMCH_send_data_ack (ch, fwd);
1943 }
1944
1945
1946 /**
1947  * Handler for mesh network traffic end-to-end ACKs.
1948  *
1949  * @param ch Channel on which we got this message.
1950  * @param msg Data message.
1951  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
1952  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
1953  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
1954  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
1955  */
1956 void
1957 GMCH_handle_data_ack (struct MeshChannel *ch,
1958                       const struct GNUNET_MESH_DataACK *msg,
1959                       int fwd)
1960 {
1961   struct MeshChannelReliability *rel;
1962   struct MeshReliableMessage *copy;
1963   struct MeshReliableMessage *next;
1964   uint32_t ack;
1965   int work;
1966
1967   /* If this is a remote (non-loopback) channel, find 'fwd'. */
1968   if (GNUNET_SYSERR == fwd)
1969   {
1970     if (is_loopback (ch))
1971     {
1972       /* It is a loopback channel after all... */
1973       GNUNET_break (0);
1974       return;
1975     }
1976     /* Inverted: if message came 'FWD' is a 'BCK ACK'. */
1977     fwd = (NULL != ch->dest) ? GNUNET_NO : GNUNET_YES;
1978   }
1979
1980   ack = ntohl (msg->mid);
1981   LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! %s ACK %u\n",
1982        (GNUNET_YES == fwd) ? "FWD" : "BCK", ack);
1983
1984   if (GNUNET_YES == fwd)
1985   {
1986     rel = ch->root_rel;
1987   }
1988   else
1989   {
1990     rel = ch->dest_rel;
1991   }
1992   if (NULL == rel)
1993   {
1994     GNUNET_break_op (0);
1995     return;
1996   }
1997
1998   /* Free ACK'd copies: no need to retransmit those anymore */
1999   for (work = GNUNET_NO, copy = rel->head_sent; copy != NULL; copy = next)
2000   {
2001     if (GM_is_pid_bigger (copy->mid, ack))
2002     {
2003       LOG (GNUNET_ERROR_TYPE_DEBUG, "!!!  head %u, out!\n", copy->mid);
2004       channel_rel_free_sent (rel, msg);
2005       break;
2006     }
2007     work = GNUNET_YES;
2008     LOG (GNUNET_ERROR_TYPE_DEBUG, " !!  id %u\n", copy->mid);
2009     next = copy->next;
2010     if (GNUNET_YES == rel_message_free (copy, GNUNET_YES))
2011       return;
2012   }
2013
2014   /* ACK client if needed */
2015   GMCH_allow_client (ch, fwd);
2016
2017   /* If some message was free'd, update the retransmission delay */
2018   if (GNUNET_YES == work)
2019   {
2020     if (GNUNET_SCHEDULER_NO_TASK != rel->retry_task)
2021     {
2022       GNUNET_SCHEDULER_cancel (rel->retry_task);
2023       rel->retry_task = GNUNET_SCHEDULER_NO_TASK;
2024       if (NULL != rel->head_sent && NULL == rel->head_sent->chq)
2025       {
2026         struct GNUNET_TIME_Absolute new_target;
2027         struct GNUNET_TIME_Relative delay;
2028
2029         delay = GNUNET_TIME_relative_multiply (rel->retry_timer,
2030                                                MESH_RETRANSMIT_MARGIN);
2031         new_target = GNUNET_TIME_absolute_add (rel->head_sent->timestamp,
2032                                                delay);
2033         delay = GNUNET_TIME_absolute_get_remaining (new_target);
2034         rel->retry_task =
2035             GNUNET_SCHEDULER_add_delayed (delay,
2036                                           &channel_retransmit_message,
2037                                           rel);
2038       }
2039     }
2040     else /* work was done but no task was pending? shouldn't happen! */
2041     {
2042       GNUNET_break (0);
2043     }
2044   }
2045 }
2046
2047
2048 /**
2049  * Handler for channel create messages.
2050  *
2051  * Does not have fwd parameter because it's always 'FWD': channel is incoming.
2052  *
2053  * @param t Tunnel this channel will be in.
2054  * @param msg Channel crate message.
2055  */
2056 struct MeshChannel *
2057 GMCH_handle_create (struct MeshTunnel3 *t,
2058                     const struct GNUNET_MESH_ChannelCreate *msg)
2059 {
2060   MESH_ChannelNumber chid;
2061   struct MeshChannel *ch;
2062   struct MeshClient *c;
2063   int new_channel;
2064
2065   chid = ntohl (msg->chid);
2066   ch = GMT_get_channel (t, chid);
2067   if (NULL == ch)
2068   {
2069     /* Create channel */
2070     ch = channel_new (t, NULL, 0);
2071     ch->gid = chid;
2072     channel_set_options (ch, ntohl (msg->opt));
2073     new_channel = GNUNET_YES;
2074   }
2075   else
2076   {
2077     new_channel = GNUNET_NO;
2078   }
2079
2080   if (GNUNET_YES == new_channel || GMT_is_loopback (t))
2081   {
2082     /* Find a destination client */
2083     ch->port = ntohl (msg->port);
2084     LOG (GNUNET_ERROR_TYPE_DEBUG, "   port %u\n", ch->port);
2085     c = GML_client_get_by_port (ch->port);
2086     if (NULL == c)
2087     {
2088       LOG (GNUNET_ERROR_TYPE_DEBUG, "  no client has port registered\n");
2089       if (is_loopback (ch))
2090       {
2091         LOG (GNUNET_ERROR_TYPE_DEBUG, "  loopback: destroy on handler\n");
2092         send_nack (ch);
2093       }
2094       else
2095       {
2096         LOG (GNUNET_ERROR_TYPE_DEBUG, "  not loopback: destroy now\n");
2097         send_nack (ch);
2098         GMCH_destroy (ch);
2099       }
2100       return NULL;
2101     }
2102     else
2103     {
2104       LOG (GNUNET_ERROR_TYPE_DEBUG, "  client %p has port registered\n", c);
2105     }
2106
2107     add_destination (ch, c);
2108     if (GNUNET_YES == ch->reliable)
2109       LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! Reliable\n");
2110     else
2111       LOG (GNUNET_ERROR_TYPE_DEBUG, "!!! Not Reliable\n");
2112
2113     send_client_create (ch);
2114     ch->state =  MESH_CHANNEL_SENT;
2115   }
2116   else
2117   {
2118     LOG (GNUNET_ERROR_TYPE_DEBUG, "  duplicate create channel\n");
2119   }
2120   send_ack (ch, GNUNET_YES);
2121
2122   return ch;
2123 }
2124
2125
2126 /**
2127  * Handler for channel NACK messages.
2128  *
2129  * NACK messages always go dest -> root, no need for 'fwd' or 'msg' parameter.
2130  *
2131  * @param ch Channel.
2132  */
2133 void
2134 GMCH_handle_nack (struct MeshChannel *ch)
2135 {
2136   send_client_nack (ch);
2137   GMCH_destroy (ch);
2138 }
2139
2140
2141 /**
2142  * Handler for channel ack messages.
2143  *
2144  * @param ch Channel.
2145  * @param msg Message.
2146  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
2147  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
2148  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
2149  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
2150  */
2151 void
2152 GMCH_handle_ack (struct MeshChannel *ch,
2153                  const struct GNUNET_MESH_ChannelManage *msg,
2154                  int fwd)
2155 {
2156   /* If this is a remote (non-loopback) channel, find 'fwd'. */
2157   if (GNUNET_SYSERR == fwd)
2158   {
2159     if (is_loopback (ch))
2160     {
2161       /* It is a loopback channel after all... */
2162       GNUNET_break (0);
2163       return;
2164     }
2165     fwd = (NULL != ch->dest) ? GNUNET_YES : GNUNET_NO;
2166   }
2167
2168   channel_confirm (ch, !fwd);
2169 }
2170
2171
2172 /**
2173  * Handler for channel destroy messages.
2174  *
2175  * @param ch Channel to be destroyed of.
2176  * @param msg Message.
2177  * @param fwd Is this message fwd? This only is meaningful in loopback channels.
2178  *            #GNUNET_YES if message is FWD on the respective channel (loopback)
2179  *            #GNUNET_NO if message is BCK on the respective channel (loopback)
2180  *            #GNUNET_SYSERR if message on a one-ended channel (remote)
2181  */
2182 void
2183 GMCH_handle_destroy (struct MeshChannel *ch,
2184                      const struct GNUNET_MESH_ChannelManage *msg,
2185                      int fwd)
2186 {
2187   struct MeshTunnel3 *t;
2188
2189   /* If this is a remote (non-loopback) channel, find 'fwd'. */
2190   if (GNUNET_SYSERR == fwd)
2191   {
2192     if (is_loopback (ch))
2193     {
2194       /* It is a loopback channel after all... */
2195       GNUNET_break (0);
2196       return;
2197     }
2198     fwd = (NULL != ch->dest) ? GNUNET_YES : GNUNET_NO;
2199   }
2200
2201   GMCH_debug (ch);
2202   if ( (fwd && NULL == ch->dest) || (!fwd && NULL == ch->root) )
2203   {
2204     /* Not for us (don't destroy twice a half-open loopback channel) */
2205     return;
2206   }
2207
2208   t = ch->t;
2209   send_destroy (ch, GNUNET_YES);
2210   GMCH_destroy (ch);
2211   GMT_destroy_if_empty (t);
2212 }
2213
2214
2215 /**
2216  * Sends an already built message on a channel.
2217  *
2218  * If the channel is on a loopback tunnel, notifies the appropriate destination
2219  * client locally.
2220  *
2221  * On a normal channel passes the message to the tunnel for encryption and
2222  * sending on a connection.
2223  *
2224  * This function DOES NOT save the message for retransmission.
2225  *
2226  * @param message Message to send. Function makes a copy of it.
2227  * @param ch Channel on which this message is transmitted.
2228  * @param fwd Is this a fwd message?
2229  * @param existing_copy This is a retransmission, don't save a copy.
2230  */
2231 void
2232 GMCH_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2233                             struct MeshChannel *ch, int fwd,
2234                             void *existing_copy)
2235 {
2236   struct MeshChannelQueue *chq;
2237   uint16_t type;
2238
2239   type = ntohs (message->type);
2240   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMCH Send %s %s on channel %s\n",
2241        GM_f2s (fwd), GM_m2s (type),
2242        GMCH_2s (ch));
2243
2244   if (GMT_is_loopback (ch->t))
2245   {
2246     handle_loopback (ch, message, fwd);
2247     return;
2248   }
2249
2250   switch (type)
2251   {
2252     case GNUNET_MESSAGE_TYPE_MESH_DATA:
2253
2254       if (GNUNET_YES == ch->reliable)
2255       {
2256         chq = GNUNET_new (struct MeshChannelQueue);
2257         chq->type = type;
2258         if (NULL == existing_copy)
2259           chq->copy = channel_save_copy (ch, message, fwd);
2260         else
2261         {
2262           chq->copy = (struct MeshReliableMessage *) existing_copy;
2263           if (NULL != chq->copy->chq)
2264           {
2265             /* Last retransmission was queued but not yet sent!
2266              * This retransmission was scheduled by a ch_message_sent which
2267              * followed a very fast RTT, so the tiny delay made the
2268              * retransmission function to execute before the previous
2269              * retransmitted message even had a chance to leave the peer.
2270              * Cancel this message and wait until the pending
2271              * retransmission leaves the peer and ch_message_sent starts
2272              * the timer for the next one.
2273              */
2274             GNUNET_free (chq);
2275             LOG (GNUNET_ERROR_TYPE_DEBUG,
2276                  "  exisitng copy not yet transmitted!\n");
2277             return;
2278           }
2279           LOG (GNUNET_ERROR_TYPE_DEBUG,
2280                "  using existing copy: %p {r:%p q:%p t:%u}\n",
2281                existing_copy,
2282                chq->copy->rel, chq->copy->chq, chq->copy->type);
2283         }
2284         LOG (GNUNET_ERROR_TYPE_DEBUG, "  new chq: %p\n", chq);
2285             chq->copy->chq = chq;
2286             chq->tq = GMT_send_prebuilt_message (message, ch->t,
2287                                           NULL != existing_copy,
2288                                           &ch_message_sent, chq);
2289         /* q itself is stored in copy */
2290         GNUNET_assert (NULL != chq->tq || GNUNET_NO != ch->destroy);
2291       }
2292       else
2293       {
2294         fire_and_forget (message, ch, GNUNET_NO);
2295       }
2296       break;
2297
2298
2299     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_ACK:
2300       if (GNUNET_YES == fwd)
2301       {
2302         /* BCK ACK (going FWD) is just a response for a SYNACK, don't keep*/
2303         fire_and_forget (message, ch, GNUNET_YES);
2304         break;
2305       }
2306       /* fall-trough */
2307     case GNUNET_MESSAGE_TYPE_MESH_DATA_ACK:
2308     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
2309       chq = GNUNET_new (struct MeshChannelQueue);
2310       chq->type = type;
2311       chq->rel = fwd ? ch->root_rel : ch->dest_rel;
2312       if (NULL != chq->rel->uniq)
2313       {
2314         if (NULL != chq->rel->uniq->tq)
2315         {
2316           GMT_cancel (chq->rel->uniq->tq);
2317           /* ch_message_sent is called, freeing and NULLing uniq */
2318         }
2319         else
2320         {
2321           GNUNET_break (0);
2322           GNUNET_free (chq->rel->uniq);
2323         }
2324       }
2325       chq->tq = GMT_send_prebuilt_message (message, ch->t, GNUNET_YES,
2326                                            &ch_message_sent, chq);
2327       if (NULL != chq->tq)
2328       {
2329         GNUNET_break (0);
2330         GNUNET_free (chq);
2331         chq = NULL;
2332       }
2333       chq->rel->uniq = chq;
2334       break;
2335
2336
2337     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY:
2338     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_NACK:
2339       fire_and_forget (message, ch, GNUNET_YES);
2340       break;
2341
2342
2343     default:
2344       GNUNET_break (0);
2345       LOG (GNUNET_ERROR_TYPE_DEBUG, "type %s unknown!\n", GM_m2s (type));
2346       fire_and_forget (message, ch, GNUNET_YES);
2347   }
2348 }
2349
2350
2351 /**
2352  * Get the static string for identification of the channel.
2353  *
2354  * @param ch Channel.
2355  *
2356  * @return Static string with the channel IDs.
2357  */
2358 const char *
2359 GMCH_2s (const struct MeshChannel *ch)
2360 {
2361   static char buf[64];
2362
2363   if (NULL == ch)
2364     return "(NULL Channel)";
2365
2366   sprintf (buf, "%s:%u gid:%X (%X / %X)",
2367            GMT_2s (ch->t), ch->port, ch->gid, ch->lid_root, ch->lid_dest);
2368
2369   return buf;
2370 }