Fix cleanup issues and some leak
[oweals/gnunet.git] / src / cadet / gnunet-service-cadet-new_channel.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2001-2017 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file cadet/gnunet-service-cadet-new_channel.c
22  * @brief logical links between CADET clients
23  * @author Bartlomiej Polot
24  * @author Christian Grothoff
25  *
26  * TODO:
27  * - Congestion/flow control:
28  *   + estimate max bandwidth using bursts and use to for CONGESTION CONTROL!
29  *     (and figure out how/where to use this!)
30  *   + figure out flow control without ACKs (unreliable traffic!)
31  * - revisit handling of 'unbuffered' traffic!
32  *   (need to push down through tunnel into connection selection)
33  * - revisit handling of 'buffered' traffic: 4 is a rather small buffer; maybe
34  *   reserve more bits in 'options' to allow for buffer size control?
35  */
36 #include "platform.h"
37 #include "gnunet_util_lib.h"
38 #include "cadet.h"
39 #include "gnunet_statistics_service.h"
40 #include "gnunet-service-cadet-new.h"
41 #include "gnunet-service-cadet-new_channel.h"
42 #include "gnunet-service-cadet-new_connection.h"
43 #include "gnunet-service-cadet-new_tunnels.h"
44 #include "gnunet-service-cadet-new_peer.h"
45 #include "gnunet-service-cadet-new_paths.h"
46
47 #define LOG(level,...) GNUNET_log_from (level,"cadet-chn",__VA_ARGS__)
48
49 /**
50  * How long do we initially wait before retransmitting?
51  */
52 #define CADET_INITIAL_RETRANSMIT_TIME GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 250)
53
54 /**
55  * How long do we wait before dropping state about incoming
56  * connection to closed port?
57  */
58 #define TIMEOUT_CLOSED_PORT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30)
59
60 /**
61  * How long do we wait at least before retransmitting ever?
62  */
63 #define MIN_RTT_DELAY GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 75)
64
65 /**
66  * Maximum message ID into the future we accept for out-of-order messages.
67  * If the message is more than this into the future, we drop it.  This is
68  * important both to detect values that are actually in the past, as well
69  * as to limit adversarially triggerable memory consumption.
70  *
71  * Note that right now we have "max_pending_messages = 4" hard-coded in
72  * the logic below, so a value of 4 would suffice here. But we plan to
73  * allow larger windows in the future...
74  */
75 #define MAX_OUT_OF_ORDER_DISTANCE 1024
76
77
78 /**
79  * All the states a channel can be in.
80  */
81 enum CadetChannelState
82 {
83   /**
84    * Uninitialized status, should never appear in operation.
85    */
86   CADET_CHANNEL_NEW,
87
88   /**
89    * Channel is to a port that is not open, we're waiting for the
90    * port to be opened.
91    */
92   CADET_CHANNEL_LOOSE,
93
94   /**
95    * CHANNEL_OPEN message sent, waiting for CHANNEL_OPEN_ACK.
96    */
97   CADET_CHANNEL_OPEN_SENT,
98
99   /**
100    * Connection confirmed, ready to carry traffic.
101    */
102   CADET_CHANNEL_READY
103 };
104
105
106 /**
107  * Info needed to retry a message in case it gets lost.
108  * Note that we DO use this structure also for unreliable
109  * messages.
110  */
111 struct CadetReliableMessage
112 {
113   /**
114    * Double linked list, FIFO style
115    */
116   struct CadetReliableMessage *next;
117
118   /**
119    * Double linked list, FIFO style
120    */
121   struct CadetReliableMessage *prev;
122
123   /**
124    * Which channel is this message in?
125    */
126   struct CadetChannel *ch;
127
128   /**
129    * Entry in the tunnels queue for this message, NULL if it has left
130    * the tunnel.  Used to cancel transmission in case we receive an
131    * ACK in time.
132    */
133   struct CadetTunnelQueueEntry *qe;
134
135   /**
136    * Data message we are trying to send.
137    */
138   struct GNUNET_CADET_ChannelAppDataMessage *data_message;
139
140   /**
141    * How soon should we retry if we fail to get an ACK?
142    * Messages in the queue are sorted by this value.
143    */
144   struct GNUNET_TIME_Absolute next_retry;
145
146   /**
147    * How long do we wait for an ACK after transmission?
148    * Use for the back-off calculation.
149    */
150   struct GNUNET_TIME_Relative retry_delay;
151
152   /**
153    * Time when we first successfully transmitted the message
154    * (that is, set @e num_transmissions to 1).
155    */
156   struct GNUNET_TIME_Absolute first_transmission_time;
157
158   /**
159    * Identifier of the connection that this message took when it
160    * was first transmitted.  Only useful if @e num_transmissions is 1.
161    */
162   struct GNUNET_CADET_ConnectionTunnelIdentifier connection_taken;
163
164   /**
165    * How often was this message transmitted?  #GNUNET_SYSERR if there
166    * was an error transmitting the message, #GNUNET_NO if it was not
167    * yet transmitted ever, otherwise the number of (re) transmissions.
168    */
169   int num_transmissions;
170
171 };
172
173
174 /**
175  * List of received out-of-order data messages.
176  */
177 struct CadetOutOfOrderMessage
178 {
179   /**
180    * Double linked list, FIFO style
181    */
182   struct CadetOutOfOrderMessage *next;
183
184   /**
185    * Double linked list, FIFO style
186    */
187   struct CadetOutOfOrderMessage *prev;
188
189   /**
190    * ID of the message (messages up to this point needed
191    * before we give this one to the client).
192    */
193   struct ChannelMessageIdentifier mid;
194
195   /**
196    * The envelope with the payload of the out-of-order message
197    */
198   struct GNUNET_MQ_Envelope *env;
199
200 };
201
202
203 /**
204  * Client endpoint of a `struct CadetChannel`.  A channel may be a
205  * loopback channel, in which case it has two of these endpoints.
206  * Note that flow control also is required in both directions.
207  */
208 struct CadetChannelClient
209 {
210   /**
211    * Client handle.  Not by itself sufficient to designate
212    * the client endpoint, as the same client handle may
213    * be used for both the owner and the destination, and
214    * we thus also need the channel ID to identify the client.
215    */
216   struct CadetClient *c;
217
218   /**
219    * Head of DLL of messages received out of order or while client was unready.
220    */
221   struct CadetOutOfOrderMessage *head_recv;
222
223   /**
224    * Tail DLL of messages received out of order or while client was unready.
225    */
226   struct CadetOutOfOrderMessage *tail_recv;
227
228   /**
229    * Local tunnel number for this client.
230    * (if owner >= #GNUNET_CADET_LOCAL_CHANNEL_ID_CLI,
231    *  otherwise < #GNUNET_CADET_LOCAL_CHANNEL_ID_CLI)
232    */
233   struct GNUNET_CADET_ClientChannelNumber ccn;
234
235   /**
236    * Number of entries currently in @a head_recv DLL.
237    */
238   unsigned int num_recv;
239
240   /**
241    * Can we send data to the client?
242    */
243   int client_ready;
244
245 };
246
247
248 /**
249  * Struct containing all information regarding a channel to a remote client.
250  */
251 struct CadetChannel
252 {
253   /**
254    * Tunnel this channel is in.
255    */
256   struct CadetTunnel *t;
257
258   /**
259    * Client owner of the tunnel, if any.
260    * (Used if this channel represends the initiating end of the tunnel.)
261    */
262   struct CadetChannelClient *owner;
263
264   /**
265    * Client destination of the tunnel, if any.
266    * (Used if this channel represents the listening end of the tunnel.)
267    */
268   struct CadetChannelClient *dest;
269
270   /**
271    * Last entry in the tunnel's queue relating to control messages
272    * (#GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN or
273    * #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN_ACK).  Used to cancel
274    * transmission in case we receive updated information.
275    */
276   struct CadetTunnelQueueEntry *last_control_qe;
277
278   /**
279    * Head of DLL of messages sent and not yet ACK'd.
280    */
281   struct CadetReliableMessage *head_sent;
282
283   /**
284    * Tail of DLL of messages sent and not yet ACK'd.
285    */
286   struct CadetReliableMessage *tail_sent;
287
288   /**
289    * Task to resend/poll in case no ACK is received.
290    */
291   struct GNUNET_SCHEDULER_Task *retry_control_task;
292
293   /**
294    * Task to resend/poll in case no ACK is received.
295    */
296   struct GNUNET_SCHEDULER_Task *retry_data_task;
297
298   /**
299    * Last time the channel was used
300    */
301   struct GNUNET_TIME_Absolute timestamp;
302
303   /**
304    * Destination port of the channel.
305    */
306   struct GNUNET_HashCode port;
307
308   /**
309    * Counter for exponential backoff.
310    */
311   struct GNUNET_TIME_Relative retry_time;
312
313   /**
314    * Bitfield of already-received messages past @e mid_recv.
315    */
316   uint64_t mid_futures;
317
318   /**
319    * Next MID expected for incoming traffic.
320    */
321   struct ChannelMessageIdentifier mid_recv;
322
323   /**
324    * Next MID to use for outgoing traffic.
325    */
326   struct ChannelMessageIdentifier mid_send;
327
328   /**
329    * Total (reliable) messages pending ACK for this channel.
330    */
331   unsigned int pending_messages;
332
333   /**
334    * Maximum (reliable) messages pending ACK for this channel
335    * before we throttle the client.
336    */
337   unsigned int max_pending_messages;
338
339   /**
340    * Number identifying this channel in its tunnel.
341    */
342   struct GNUNET_CADET_ChannelTunnelNumber ctn;
343
344   /**
345    * Channel state.
346    */
347   enum CadetChannelState state;
348
349   /**
350    * Count how many ACKs we skipped, used to prevent long
351    * sequences of ACK skipping.
352    */
353   unsigned int skip_ack_series;
354
355   /**
356    * Is the tunnel bufferless (minimum latency)?
357    */
358   int nobuffer;
359
360   /**
361    * Is the tunnel reliable?
362    */
363   int reliable;
364
365   /**
366    * Is the tunnel out-of-order?
367    */
368   int out_of_order;
369
370   /**
371    * Is this channel a loopback channel, where the destination is us again?
372    */
373   int is_loopback;
374
375   /**
376    * Flag to signal the destruction of the channel.  If this is set to
377    * #GNUNET_YES the channel will be destroyed once the queue is
378    * empty.
379    */
380   int destroy;
381
382 };
383
384
385 /**
386  * Get the static string for identification of the channel.
387  *
388  * @param ch Channel.
389  *
390  * @return Static string with the channel IDs.
391  */
392 const char *
393 GCCH_2s (const struct CadetChannel *ch)
394 {
395   static char buf[128];
396
397   GNUNET_snprintf (buf,
398                    sizeof (buf),
399                    "Channel %s:%s ctn:%X(%X/%X)",
400                    (GNUNET_YES == ch->is_loopback)
401                    ? "loopback"
402                    : GNUNET_i2s (GCP_get_id (GCT_get_destination (ch->t))),
403                    GNUNET_h2s (&ch->port),
404                    ch->ctn,
405                    (NULL == ch->owner) ? 0 : ntohl (ch->owner->ccn.channel_of_client),
406                    (NULL == ch->dest) ? 0 : ntohl (ch->dest->ccn.channel_of_client));
407   return buf;
408 }
409
410
411 /**
412  * Get the channel's public ID.
413  *
414  * @param ch Channel.
415  *
416  * @return ID used to identify the channel with the remote peer.
417  */
418 struct GNUNET_CADET_ChannelTunnelNumber
419 GCCH_get_id (const struct CadetChannel *ch)
420 {
421   return ch->ctn;
422 }
423
424
425 /**
426  * Release memory associated with @a ccc
427  *
428  * @param ccc data structure to clean up
429  */
430 static void
431 free_channel_client (struct CadetChannelClient *ccc)
432 {
433   struct CadetOutOfOrderMessage *com;
434
435   while (NULL != (com = ccc->head_recv))
436   {
437     GNUNET_CONTAINER_DLL_remove (ccc->head_recv,
438                                  ccc->tail_recv,
439                                  com);
440     ccc->num_recv--;
441     GNUNET_MQ_discard (com->env);
442     GNUNET_free (com);
443   }
444   GNUNET_free (ccc);
445 }
446
447
448 /**
449  * Destroy the given channel.
450  *
451  * @param ch channel to destroy
452  */
453 static void
454 channel_destroy (struct CadetChannel *ch)
455 {
456   struct CadetReliableMessage *crm;
457
458   while (NULL != (crm = ch->head_sent))
459   {
460     GNUNET_assert (ch == crm->ch);
461     if (NULL != crm->qe)
462     {
463       GCT_send_cancel (crm->qe);
464       crm->qe = NULL;
465     }
466     GNUNET_CONTAINER_DLL_remove (ch->head_sent,
467                                  ch->tail_sent,
468                                  crm);
469     GNUNET_free (crm->data_message);
470     GNUNET_free (crm);
471   }
472   if (NULL != ch->owner)
473   {
474     free_channel_client (ch->owner);
475     ch->owner = NULL;
476   }
477   if (NULL != ch->dest)
478   {
479     free_channel_client (ch->dest);
480     ch->dest = NULL;
481   }
482   if (NULL != ch->last_control_qe)
483   {
484     GCT_send_cancel (ch->last_control_qe);
485     ch->last_control_qe = NULL;
486   }
487   if (NULL != ch->retry_data_task)
488   {
489     GNUNET_SCHEDULER_cancel (ch->retry_data_task);
490     ch->retry_data_task = NULL;
491   }
492   if (NULL != ch->retry_control_task)
493   {
494     GNUNET_SCHEDULER_cancel (ch->retry_control_task);
495     ch->retry_control_task = NULL;
496   }
497   if (GNUNET_NO == ch->is_loopback)
498   {
499     GCT_remove_channel (ch->t,
500                         ch,
501                         ch->ctn);
502     ch->t = NULL;
503   }
504   GNUNET_free (ch);
505 }
506
507
508 /**
509  * Send a channel create message.
510  *
511  * @param cls Channel for which to send.
512  */
513 static void
514 send_channel_open (void *cls);
515
516
517 /**
518  * Function called once the tunnel confirms that we sent the
519  * create message.  Delays for a bit until we retry.
520  *
521  * @param cls our `struct CadetChannel`.
522  * @param cid identifier of the connection within the tunnel, NULL
523  *            if transmission failed
524  */
525 static void
526 channel_open_sent_cb (void *cls,
527                       const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid)
528 {
529   struct CadetChannel *ch = cls;
530
531   GNUNET_assert (NULL != ch->last_control_qe);
532   ch->last_control_qe = NULL;
533   ch->retry_time = GNUNET_TIME_STD_BACKOFF (ch->retry_time);
534   LOG (GNUNET_ERROR_TYPE_DEBUG,
535        "Sent CADET_CHANNEL_OPEN on %s, retrying in %s\n",
536        GCCH_2s (ch),
537        GNUNET_STRINGS_relative_time_to_string (ch->retry_time,
538                                                GNUNET_YES));
539   ch->retry_control_task
540     = GNUNET_SCHEDULER_add_delayed (ch->retry_time,
541                                     &send_channel_open,
542                                     ch);
543 }
544
545
546 /**
547  * Send a channel open message.
548  *
549  * @param cls Channel for which to send.
550  */
551 static void
552 send_channel_open (void *cls)
553 {
554   struct CadetChannel *ch = cls;
555   struct GNUNET_CADET_ChannelOpenMessage msgcc;
556   uint32_t options;
557
558   ch->retry_control_task = NULL;
559   LOG (GNUNET_ERROR_TYPE_DEBUG,
560        "Sending CHANNEL_OPEN message for %s\n",
561        GCCH_2s (ch));
562   options = 0;
563   if (ch->nobuffer)
564     options |= GNUNET_CADET_OPTION_NOBUFFER;
565   if (ch->reliable)
566     options |= GNUNET_CADET_OPTION_RELIABLE;
567   if (ch->out_of_order)
568     options |= GNUNET_CADET_OPTION_OUT_OF_ORDER;
569   msgcc.header.size = htons (sizeof (msgcc));
570   msgcc.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN);
571   msgcc.opt = htonl (options);
572   msgcc.port = ch->port;
573   msgcc.ctn = ch->ctn;
574   ch->state = CADET_CHANNEL_OPEN_SENT;
575   if (NULL != ch->last_control_qe)
576     GCT_send_cancel (ch->last_control_qe);
577   ch->last_control_qe = GCT_send (ch->t,
578                                   &msgcc.header,
579                                   &channel_open_sent_cb,
580                                   ch);
581   GNUNET_assert (NULL == ch->retry_control_task);
582 }
583
584
585 /**
586  * Function called once and only once after a channel was bound
587  * to its tunnel via #GCT_add_channel() is ready for transmission.
588  * Note that this is only the case for channels that this peer
589  * initiates, as for incoming channels we assume that they are
590  * ready for transmission immediately upon receiving the open
591  * message.  Used to bootstrap the #GCT_send() process.
592  *
593  * @param ch the channel for which the tunnel is now ready
594  */
595 void
596 GCCH_tunnel_up (struct CadetChannel *ch)
597 {
598   GNUNET_assert (NULL == ch->retry_control_task);
599   LOG (GNUNET_ERROR_TYPE_DEBUG,
600        "Tunnel up, sending CHANNEL_OPEN on %s now\n",
601        GCCH_2s (ch));
602   ch->retry_control_task
603     = GNUNET_SCHEDULER_add_now (&send_channel_open,
604                                 ch);
605 }
606
607
608 /**
609  * Create a new channel.
610  *
611  * @param owner local client owning the channel
612  * @param ccn local number of this channel at the @a owner
613  * @param destination peer to which we should build the channel
614  * @param port desired port at @a destination
615  * @param options options for the channel
616  * @return handle to the new channel
617  */
618 struct CadetChannel *
619 GCCH_channel_local_new (struct CadetClient *owner,
620                         struct GNUNET_CADET_ClientChannelNumber ccn,
621                         struct CadetPeer *destination,
622                         const struct GNUNET_HashCode *port,
623                         uint32_t options)
624 {
625   struct CadetChannel *ch;
626   struct CadetChannelClient *ccco;
627
628   ccco = GNUNET_new (struct CadetChannelClient);
629   ccco->c = owner;
630   ccco->ccn = ccn;
631   ccco->client_ready = GNUNET_YES;
632
633   ch = GNUNET_new (struct CadetChannel);
634   ch->mid_recv.mid = htonl (1); /* The OPEN_ACK counts as message 0! */
635   ch->nobuffer = (0 != (options & GNUNET_CADET_OPTION_NOBUFFER));
636   ch->reliable = (0 != (options & GNUNET_CADET_OPTION_RELIABLE));
637   ch->out_of_order = (0 != (options & GNUNET_CADET_OPTION_OUT_OF_ORDER));
638   ch->max_pending_messages = (ch->nobuffer) ? 1 : 4; /* FIXME: 4!? Do not hardcode! */
639   ch->owner = ccco;
640   ch->port = *port;
641   if (0 == memcmp (&my_full_id,
642                    GCP_get_id (destination),
643                    sizeof (struct GNUNET_PeerIdentity)))
644   {
645     struct CadetClient *c;
646
647     ch->is_loopback = GNUNET_YES;
648     c = GNUNET_CONTAINER_multihashmap_get (open_ports,
649                                            port);
650     if (NULL == c)
651     {
652       /* port closed, wait for it to possibly open */
653       ch->state = CADET_CHANNEL_LOOSE;
654       (void) GNUNET_CONTAINER_multihashmap_put (loose_channels,
655                                                 port,
656                                                 ch,
657                                                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
658       LOG (GNUNET_ERROR_TYPE_DEBUG,
659            "Created loose incoming loopback channel to port %s\n",
660            GNUNET_h2s (&ch->port));
661     }
662     else
663     {
664       GCCH_bind (ch,
665                  c);
666     }
667   }
668   else
669   {
670     ch->t = GCP_get_tunnel (destination,
671                             GNUNET_YES);
672     ch->retry_time = CADET_INITIAL_RETRANSMIT_TIME;
673     ch->ctn = GCT_add_channel (ch->t,
674                                ch);
675   }
676   GNUNET_STATISTICS_update (stats,
677                             "# channels",
678                             1,
679                             GNUNET_NO);
680   LOG (GNUNET_ERROR_TYPE_DEBUG,
681        "Created channel to port %s at peer %s for %s using %s\n",
682        GNUNET_h2s (port),
683        GCP_2s (destination),
684        GSC_2s (owner),
685        (GNUNET_YES == ch->is_loopback) ? "loopback" : GCT_2s (ch->t));
686   return ch;
687 }
688
689
690 /**
691  * We had an incoming channel to a port that is closed.
692  * It has not been opened for a while, drop it.
693  *
694  * @param cls the channel to drop
695  */
696 static void
697 timeout_closed_cb (void *cls)
698 {
699   struct CadetChannel *ch = cls;
700
701   ch->retry_control_task = NULL;
702   LOG (GNUNET_ERROR_TYPE_DEBUG,
703        "Closing incoming channel to port %s from peer %s due to timeout\n",
704        GNUNET_h2s (&ch->port),
705        GCP_2s (GCT_get_destination (ch->t)));
706   channel_destroy (ch);
707 }
708
709
710 /**
711  * Create a new channel based on a request coming in over the network.
712  *
713  * @param t tunnel to the remote peer
714  * @param ctn identifier of this channel in the tunnel
715  * @param port desired local port
716  * @param options options for the channel
717  * @return handle to the new channel
718  */
719 struct CadetChannel *
720 GCCH_channel_incoming_new (struct CadetTunnel *t,
721                            struct GNUNET_CADET_ChannelTunnelNumber ctn,
722                            const struct GNUNET_HashCode *port,
723                            uint32_t options)
724 {
725   struct CadetChannel *ch;
726   struct CadetClient *c;
727
728   ch = GNUNET_new (struct CadetChannel);
729   ch->port = *port;
730   ch->t = t;
731   ch->ctn = ctn;
732   ch->retry_time = CADET_INITIAL_RETRANSMIT_TIME;
733   ch->nobuffer = (0 != (options & GNUNET_CADET_OPTION_NOBUFFER));
734   ch->reliable = (0 != (options & GNUNET_CADET_OPTION_RELIABLE));
735   ch->out_of_order = (0 != (options & GNUNET_CADET_OPTION_OUT_OF_ORDER));
736   ch->max_pending_messages = (ch->nobuffer) ? 1 : 4; /* FIXME: 4!? Do not hardcode! */
737   GNUNET_STATISTICS_update (stats,
738                             "# channels",
739                             1,
740                             GNUNET_NO);
741
742   c = GNUNET_CONTAINER_multihashmap_get (open_ports,
743                                          port);
744   if (NULL == c)
745   {
746     /* port closed, wait for it to possibly open */
747     ch->state = CADET_CHANNEL_LOOSE;
748     (void) GNUNET_CONTAINER_multihashmap_put (loose_channels,
749                                               port,
750                                               ch,
751                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
752     ch->retry_control_task
753       = GNUNET_SCHEDULER_add_delayed (TIMEOUT_CLOSED_PORT,
754                                       &timeout_closed_cb,
755                                       ch);
756     LOG (GNUNET_ERROR_TYPE_DEBUG,
757          "Created loose incoming channel to port %s from peer %s\n",
758          GNUNET_h2s (&ch->port),
759          GCP_2s (GCT_get_destination (ch->t)));
760   }
761   else
762   {
763     GCCH_bind (ch,
764                c);
765   }
766   GNUNET_STATISTICS_update (stats,
767                             "# channels",
768                             1,
769                             GNUNET_NO);
770   return ch;
771 }
772
773
774 /**
775  * Function called once the tunnel confirms that we sent the
776  * ACK message.  Just remembers it was sent, we do not expect
777  * ACKs for ACKs ;-).
778  *
779  * @param cls our `struct CadetChannel`.
780  * @param cid identifier of the connection within the tunnel, NULL
781  *            if transmission failed
782  */
783 static void
784 send_ack_cb (void *cls,
785              const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid)
786 {
787   struct CadetChannel *ch = cls;
788
789   GNUNET_assert (NULL != ch->last_control_qe);
790   ch->last_control_qe = NULL;
791 }
792
793
794 /**
795  * Compute and send the current #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_APP_DATA_ACK to the other peer.
796  *
797  * @param ch channel to send the #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_APP_DATA_ACK for
798  */
799 static void
800 send_channel_data_ack (struct CadetChannel *ch)
801 {
802   struct GNUNET_CADET_ChannelDataAckMessage msg;
803
804   if (GNUNET_NO == ch->reliable)
805     return; /* no ACKs */
806   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CHANNEL_APP_DATA_ACK);
807   msg.header.size = htons (sizeof (msg));
808   msg.ctn = ch->ctn;
809   msg.mid.mid = htonl (ntohl (ch->mid_recv.mid));
810   msg.futures = GNUNET_htonll (ch->mid_futures);
811   LOG (GNUNET_ERROR_TYPE_DEBUG,
812        "Sending DATA_ACK %u:%llX via %s\n",
813        (unsigned int) ntohl (msg.mid.mid),
814        (unsigned long long) ch->mid_futures,
815        GCCH_2s (ch));
816   if (NULL != ch->last_control_qe)
817     GCT_send_cancel (ch->last_control_qe);
818   ch->last_control_qe = GCT_send (ch->t,
819                                   &msg.header,
820                                   &send_ack_cb,
821                                   ch);
822 }
823
824
825 /**
826  * Send our initial #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN_ACK to the client confirming that the
827  * connection is up.
828  *
829  * @param cls the `struct CadetChannel`
830  */
831 static void
832 send_open_ack (void *cls)
833 {
834   struct CadetChannel *ch = cls;
835   struct GNUNET_CADET_ChannelManageMessage msg;
836
837   LOG (GNUNET_ERROR_TYPE_DEBUG,
838        "Sending CHANNEL_OPEN_ACK on %s\n",
839        GCCH_2s (ch));
840   ch->retry_control_task = NULL;
841   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN_ACK);
842   msg.header.size = htons (sizeof (msg));
843   msg.reserved = htonl (0);
844   msg.ctn = ch->ctn;
845   if (NULL != ch->last_control_qe)
846     GCT_send_cancel (ch->last_control_qe);
847   ch->last_control_qe = GCT_send (ch->t,
848                                   &msg.header,
849                                   &send_ack_cb,
850                                   ch);
851 }
852
853
854 /**
855  * We got a #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN message again for
856  * this channel.  If the binding was successful, (re)transmit the
857  * #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN_ACK.
858  *
859  * @param ch channel that got the duplicate open
860  * @param cti identifier of the connection that delivered the message
861  */
862 void
863 GCCH_handle_duplicate_open (struct CadetChannel *ch,
864                             const struct GNUNET_CADET_ConnectionTunnelIdentifier *cti)
865 {
866   if (NULL == ch->dest)
867   {
868     LOG (GNUNET_ERROR_TYPE_DEBUG,
869          "Ignoring duplicate CHANNEL_OPEN on %s: port is closed\n",
870          GCCH_2s (ch));
871     return;
872   }
873   if (NULL != ch->retry_control_task)
874   {
875     LOG (GNUNET_ERROR_TYPE_DEBUG,
876          "Ignoring duplicate CHANNEL_OPEN on %s: control message is pending\n",
877          GCCH_2s (ch));
878     return;
879   }
880   LOG (GNUNET_ERROR_TYPE_DEBUG,
881        "Retransmitting CHANNEL_OPEN_ACK on %s\n",
882        GCCH_2s (ch));
883   ch->retry_control_task
884     = GNUNET_SCHEDULER_add_now (&send_open_ack,
885                                 ch);
886 }
887
888
889 /**
890  * Send a #GNUNET_MESSAGE_TYPE_CADET_LOCAL_ACK to the client to solicit more messages.
891  *
892  * @param ch channel the ack is for
893  * @param to_owner #GNUNET_YES to send to owner,
894  *                 #GNUNET_NO to send to dest
895  */
896 static void
897 send_ack_to_client (struct CadetChannel *ch,
898                     int to_owner)
899 {
900   struct GNUNET_MQ_Envelope *env;
901   struct GNUNET_CADET_LocalAck *ack;
902   struct CadetChannelClient *ccc;
903
904   ccc = (GNUNET_YES == to_owner) ? ch->owner : ch->dest;
905   if (NULL == ccc)
906   {
907     /* This can happen if we are just getting ACKs after
908        our local client already disconnected. */
909     GNUNET_assert (GNUNET_YES == ch->destroy);
910     return;
911   }
912   env = GNUNET_MQ_msg (ack,
913                        GNUNET_MESSAGE_TYPE_CADET_LOCAL_ACK);
914   ack->ccn = ccc->ccn;
915   LOG (GNUNET_ERROR_TYPE_DEBUG,
916        "Sending CADET_LOCAL_ACK to %s (%s) at ccn %X (%u/%u pending)\n",
917        GSC_2s (ccc->c),
918        (GNUNET_YES == to_owner) ? "owner" : "dest",
919        ntohl (ack->ccn.channel_of_client),
920        ch->pending_messages,
921        ch->max_pending_messages);
922   GSC_send_to_client (ccc->c,
923                       env);
924 }
925
926
927 /**
928  * A client is bound to the port that we have a channel
929  * open to.  Send the acknowledgement for the connection
930  * request and establish the link with the client.
931  *
932  * @param ch open incoming channel
933  * @param c client listening on the respective port
934  */
935 void
936 GCCH_bind (struct CadetChannel *ch,
937            struct CadetClient *c)
938 {
939   uint32_t options;
940   struct CadetChannelClient *cccd;
941
942   LOG (GNUNET_ERROR_TYPE_DEBUG,
943        "Binding %s from %s to port %s of %s\n",
944        GCCH_2s (ch),
945        GCT_2s (ch->t),
946        GNUNET_h2s (&ch->port),
947        GSC_2s (c));
948   if (NULL != ch->retry_control_task)
949   {
950     /* there might be a timeout task here */
951     GNUNET_SCHEDULER_cancel (ch->retry_control_task);
952     ch->retry_control_task = NULL;
953   }
954   options = 0;
955   if (ch->nobuffer)
956     options |= GNUNET_CADET_OPTION_NOBUFFER;
957   if (ch->reliable)
958     options |= GNUNET_CADET_OPTION_RELIABLE;
959   if (ch->out_of_order)
960     options |= GNUNET_CADET_OPTION_OUT_OF_ORDER;
961   cccd = GNUNET_new (struct CadetChannelClient);
962   GNUNET_assert (NULL == ch->dest);
963   ch->dest = cccd;
964   cccd->c = c;
965   cccd->client_ready = GNUNET_YES;
966   cccd->ccn = GSC_bind (c,
967                         ch,
968                         (GNUNET_YES == ch->is_loopback)
969                         ? GCP_get (&my_full_id,
970                                    GNUNET_YES)
971                         : GCT_get_destination (ch->t),
972                         &ch->port,
973                         options);
974   GNUNET_assert (ntohl (cccd->ccn.channel_of_client) <
975                  GNUNET_CADET_LOCAL_CHANNEL_ID_CLI);
976   ch->mid_recv.mid = htonl (1); /* The OPEN counts as message 0! */
977   if (GNUNET_YES == ch->is_loopback)
978   {
979     ch->state = CADET_CHANNEL_OPEN_SENT;
980     GCCH_handle_channel_open_ack (ch,
981                                   NULL);
982   }
983   else
984   {
985     /* notify other peer that we accepted the connection */
986     ch->state = CADET_CHANNEL_READY;
987     ch->retry_control_task
988       = GNUNET_SCHEDULER_add_now (&send_open_ack,
989                                   ch);
990   }
991   /* give client it's initial supply of ACKs */
992   GNUNET_assert (ntohl (cccd->ccn.channel_of_client) <
993                  GNUNET_CADET_LOCAL_CHANNEL_ID_CLI);
994   for (unsigned int i=0;i<ch->max_pending_messages;i++)
995     send_ack_to_client (ch,
996                         GNUNET_NO);
997 }
998
999
1000 /**
1001  * One of our clients has disconnected, tell the other one that we
1002  * are finished. Done asynchronously to avoid concurrent modification
1003  * issues if this is the same client.
1004  *
1005  * @param cls the `struct CadetChannel` where one of the ends is now dead
1006  */
1007 static void
1008 signal_remote_destroy_cb (void *cls)
1009 {
1010   struct CadetChannel *ch = cls;
1011   struct CadetChannelClient *ccc;
1012
1013   /* Find which end is left... */
1014   ccc = (NULL != ch->owner) ? ch->owner : ch->dest;
1015   GSC_handle_remote_channel_destroy (ccc->c,
1016                                      ccc->ccn,
1017                                      ch);
1018   channel_destroy (ch);
1019 }
1020
1021
1022 /**
1023  * Destroy locally created channel.  Called by the local client, so no
1024  * need to tell the client.
1025  *
1026  * @param ch channel to destroy
1027  * @param c client that caused the destruction
1028  * @param ccn client number of the client @a c
1029  */
1030 void
1031 GCCH_channel_local_destroy (struct CadetChannel *ch,
1032                             struct CadetClient *c,
1033                             struct GNUNET_CADET_ClientChannelNumber ccn)
1034 {
1035   LOG (GNUNET_ERROR_TYPE_DEBUG,
1036        "%s asks for destruction of %s\n",
1037        GSC_2s (c),
1038        GCCH_2s (ch));
1039   GNUNET_assert (NULL != c);
1040   if ( (NULL != ch->owner) &&
1041        (c == ch->owner->c) &&
1042        (ccn.channel_of_client == ch->owner->ccn.channel_of_client) )
1043   {
1044     free_channel_client (ch->owner);
1045     ch->owner = NULL;
1046   }
1047   else if ( (NULL != ch->dest) &&
1048             (c == ch->dest->c) &&
1049             (ccn.channel_of_client == ch->dest->ccn.channel_of_client) )
1050   {
1051     free_channel_client (ch->dest);
1052     ch->dest = NULL;
1053   }
1054   else
1055   {
1056     GNUNET_assert (0);
1057   }
1058
1059   if (GNUNET_YES == ch->destroy)
1060   {
1061     /* other end already destroyed, with the local client gone, no need
1062        to finish transmissions, just destroy immediately. */
1063     channel_destroy (ch);
1064     return;
1065   }
1066   if ( (NULL != ch->head_sent) &&
1067        ( (NULL != ch->owner) ||
1068          (NULL != ch->dest) ) )
1069   {
1070     /* Wait for other end to destroy us as well,
1071        and otherwise allow send queue to be transmitted first */
1072     ch->destroy = GNUNET_YES;
1073     return;
1074   }
1075   if ( (GNUNET_YES == ch->is_loopback) &&
1076        ( (NULL != ch->owner) ||
1077          (NULL != ch->dest) ) )
1078   {
1079     if (NULL != ch->retry_control_task)
1080       GNUNET_SCHEDULER_cancel (ch->retry_control_task);
1081     ch->retry_control_task
1082       = GNUNET_SCHEDULER_add_now (&signal_remote_destroy_cb,
1083                                   ch);
1084     return;
1085   }
1086   if (GNUNET_NO == ch->is_loopback)
1087   {
1088     /* If the we ever sent the CHANNEL_CREATE, we need to send a destroy message. */
1089     switch (ch->state)
1090     {
1091     case CADET_CHANNEL_NEW:
1092       /* We gave up on a channel that we created as a client to a remote
1093          target, but that never went anywhere. Nothing to do here. */
1094       break;
1095     case CADET_CHANNEL_LOOSE:
1096       GSC_drop_loose_channel (&ch->port,
1097                               ch);
1098       break;
1099     default:
1100       GCT_send_channel_destroy (ch->t,
1101                                 ch->ctn);
1102     }
1103   }
1104   /* Nothing left to do, just finish destruction */
1105   channel_destroy (ch);
1106 }
1107
1108
1109 /**
1110  * We got an acknowledgement for the creation of the channel
1111  * (the port is open on the other side). Begin transmissions.
1112  *
1113  * @param ch channel to destroy
1114  * @param cti identifier of the connection that delivered the message
1115  */
1116 void
1117 GCCH_handle_channel_open_ack (struct CadetChannel *ch,
1118                               const struct GNUNET_CADET_ConnectionTunnelIdentifier *cti)
1119 {
1120   switch (ch->state)
1121   {
1122   case CADET_CHANNEL_NEW:
1123     /* this should be impossible */
1124     GNUNET_break (0);
1125     break;
1126   case CADET_CHANNEL_LOOSE:
1127     /* This makes no sense. */
1128     GNUNET_break_op (0);
1129     break;
1130   case CADET_CHANNEL_OPEN_SENT:
1131     if (NULL == ch->owner)
1132     {
1133       /* We're not the owner, wrong direction! */
1134       GNUNET_break_op (0);
1135       return;
1136     }
1137     LOG (GNUNET_ERROR_TYPE_DEBUG,
1138          "Received CHANNEL_OPEN_ACK for waiting %s, entering READY state\n",
1139          GCCH_2s (ch));
1140     if (NULL != ch->retry_control_task) /* can be NULL if ch->is_loopback */
1141     {
1142       GNUNET_SCHEDULER_cancel (ch->retry_control_task);
1143       ch->retry_control_task = NULL;
1144     }
1145     ch->state = CADET_CHANNEL_READY;
1146     /* On first connect, send client as many ACKs as we allow messages
1147        to be buffered! */
1148     for (unsigned int i=0;i<ch->max_pending_messages;i++)
1149       send_ack_to_client (ch,
1150                           GNUNET_YES);
1151     break;
1152   case CADET_CHANNEL_READY:
1153     /* duplicate ACK, maybe we retried the CREATE. Ignore. */
1154     LOG (GNUNET_ERROR_TYPE_DEBUG,
1155          "Received duplicate channel OPEN_ACK for %s\n",
1156          GCCH_2s (ch));
1157     GNUNET_STATISTICS_update (stats,
1158                               "# duplicate CREATE_ACKs",
1159                               1,
1160                               GNUNET_NO);
1161     break;
1162   }
1163 }
1164
1165
1166 /**
1167  * Test if element @a e1 comes before element @a e2.
1168  *
1169  * @param cls closure, to a flag where we indicate duplicate packets
1170  * @param m1 a message of to sort
1171  * @param m2 another message to sort
1172  * @return #GNUNET_YES if @e1 < @e2, otherwise #GNUNET_NO
1173  */
1174 static int
1175 is_before (void *cls,
1176            struct CadetOutOfOrderMessage *m1,
1177            struct CadetOutOfOrderMessage *m2)
1178 {
1179   int *duplicate = cls;
1180   uint32_t v1 = ntohl (m1->mid.mid);
1181   uint32_t v2 = ntohl (m2->mid.mid);
1182   uint32_t delta;
1183
1184   delta = v2 - v1;
1185   if (0 == delta)
1186     *duplicate = GNUNET_YES;
1187   if (delta > (uint32_t) INT_MAX)
1188   {
1189     /* in overflow range, we can safely assume we wrapped around */
1190     return GNUNET_NO;
1191   }
1192   else
1193   {
1194     /* result is small, thus v2 > v1, thus m1 < m2 */
1195     return GNUNET_YES;
1196   }
1197 }
1198
1199
1200 /**
1201  * We got payload data for a channel.  Pass it on to the client
1202  * and send an ACK to the other end (once flow control allows it!)
1203  *
1204  * @param ch channel that got data
1205  * @param cti identifier of the connection that delivered the message
1206  * @param msg message that was received
1207  */
1208 void
1209 GCCH_handle_channel_plaintext_data (struct CadetChannel *ch,
1210                                     const struct GNUNET_CADET_ConnectionTunnelIdentifier *cti,
1211                                     const struct GNUNET_CADET_ChannelAppDataMessage *msg)
1212 {
1213   struct GNUNET_MQ_Envelope *env;
1214   struct GNUNET_CADET_LocalData *ld;
1215   struct CadetChannelClient *ccc;
1216   size_t payload_size;
1217   struct CadetOutOfOrderMessage *com;
1218   int duplicate;
1219   uint32_t mid_min;
1220   uint32_t mid_max;
1221   uint32_t mid_msg;
1222   uint32_t delta;
1223
1224   GNUNET_assert (GNUNET_NO == ch->is_loopback);
1225   if ( (GNUNET_YES == ch->destroy) &&
1226        (NULL == ch->owner) &&
1227        (NULL == ch->dest) )
1228   {
1229     /* This client is gone, but we still have messages to send to
1230        the other end (which is why @a ch is not yet dead).  However,
1231        we cannot pass messages to our client anymore. */
1232     LOG (GNUNET_ERROR_TYPE_DEBUG,
1233          "Dropping incoming payload on %s as this end is already closed\n",
1234          GCCH_2s (ch));
1235     /* send back DESTROY notification to stop further retransmissions! */
1236     GCT_send_channel_destroy (ch->t,
1237                               ch->ctn);
1238     return;
1239   }
1240   payload_size = ntohs (msg->header.size) - sizeof (*msg);
1241   env = GNUNET_MQ_msg_extra (ld,
1242                              payload_size,
1243                              GNUNET_MESSAGE_TYPE_CADET_LOCAL_DATA);
1244   ld->ccn = (NULL == ch->dest) ? ch->owner->ccn : ch->dest->ccn;
1245   GNUNET_memcpy (&ld[1],
1246                  &msg[1],
1247                  payload_size);
1248   ccc = (NULL != ch->owner) ? ch->owner : ch->dest;
1249   if ( (GNUNET_YES == ccc->client_ready) &&
1250        ( (GNUNET_YES == ch->out_of_order) ||
1251          (msg->mid.mid == ch->mid_recv.mid) ) )
1252   {
1253     LOG (GNUNET_ERROR_TYPE_DEBUG,
1254          "Giving %u bytes of payload with MID %u from %s to client %s\n",
1255          (unsigned int) payload_size,
1256          ntohl (msg->mid.mid),
1257          GCCH_2s (ch),
1258          GSC_2s (ccc->c));
1259     ccc->client_ready = GNUNET_NO;
1260     GSC_send_to_client (ccc->c,
1261                         env);
1262     ch->mid_recv.mid = htonl (1 + ntohl (ch->mid_recv.mid));
1263     ch->mid_futures >>= 1;
1264     send_channel_data_ack (ch);
1265     return;
1266   }
1267
1268   if (GNUNET_YES == ch->reliable)
1269   {
1270     /* check if message ought to be dropped because it is ancient/too distant/duplicate */
1271     mid_min = ntohl (ch->mid_recv.mid);
1272     mid_max = mid_min + ch->max_pending_messages;
1273     mid_msg = ntohl (msg->mid.mid);
1274     if ( ( (uint32_t) (mid_msg - mid_min) > ch->max_pending_messages) ||
1275          ( (uint32_t) (mid_max - mid_msg) > ch->max_pending_messages) )
1276     {
1277       LOG (GNUNET_ERROR_TYPE_DEBUG,
1278            "%s at %u drops ancient or far-future message %u\n",
1279            GCCH_2s (ch),
1280            (unsigned int) mid_min,
1281            ntohl (msg->mid.mid));
1282
1283       GNUNET_STATISTICS_update (stats,
1284                                 "# duplicate DATA (ancient or future)",
1285                                 1,
1286                                 GNUNET_NO);
1287       GNUNET_MQ_discard (env);
1288       send_channel_data_ack (ch);
1289       return;
1290     }
1291     /* mark bit for future ACKs */
1292     delta = mid_msg - mid_min - 1; /* overflow/underflow are OK here */
1293     if (delta < 64)
1294     {
1295       if (0 != (ch->mid_futures & (1LLU << delta)))
1296       {
1297         /* Duplicate within the queue, drop also */
1298         LOG (GNUNET_ERROR_TYPE_DEBUG,
1299              "Duplicate payload of %u bytes on %s (mid %u) dropped\n",
1300              (unsigned int) payload_size,
1301              GCCH_2s (ch),
1302              ntohl (msg->mid.mid));
1303         GNUNET_STATISTICS_update (stats,
1304                                   "# duplicate DATA",
1305                                   1,
1306                                   GNUNET_NO);
1307         GNUNET_MQ_discard (env);
1308         send_channel_data_ack (ch);
1309         return;
1310       }
1311       ch->mid_futures |= (1LLU << delta);
1312       LOG (GNUNET_ERROR_TYPE_DEBUG,
1313            "Marked bit %llX for mid %u (base: %u); now: %llX\n",
1314            (1LLU << delta),
1315            mid_msg,
1316            mid_min,
1317            ch->mid_futures);
1318     }
1319   }
1320   else /* ! ch->reliable */
1321   {
1322     /* Channel is unreliable, so we do not ACK. But we also cannot
1323        allow buffering everything, so check if we have space... */
1324     if (ccc->num_recv >= ch->max_pending_messages)
1325     {
1326       struct CadetOutOfOrderMessage *drop;
1327
1328       /* Yep, need to drop. Drop the oldest message in
1329          the buffer. */
1330       LOG (GNUNET_ERROR_TYPE_DEBUG,
1331            "Queue full due slow client on %s, dropping oldest message\n",
1332            GCCH_2s (ch));
1333       GNUNET_STATISTICS_update (stats,
1334                                 "# messages dropped due to slow client",
1335                                 1,
1336                                 GNUNET_NO);
1337       drop = ccc->head_recv;
1338       GNUNET_CONTAINER_DLL_remove (ccc->head_recv,
1339                                    ccc->tail_recv,
1340                                    drop);
1341       ccc->num_recv--;
1342       GNUNET_MQ_discard (drop->env);
1343       GNUNET_free (drop);
1344     }
1345   }
1346
1347   /* Insert message into sorted out-of-order queue */
1348   com = GNUNET_new (struct CadetOutOfOrderMessage);
1349   com->mid = msg->mid;
1350   com->env = env;
1351   duplicate = GNUNET_NO;
1352   GNUNET_CONTAINER_DLL_insert_sorted (struct CadetOutOfOrderMessage,
1353                                       is_before,
1354                                       &duplicate,
1355                                       ccc->head_recv,
1356                                       ccc->tail_recv,
1357                                       com);
1358   ccc->num_recv++;
1359   if (GNUNET_YES == duplicate)
1360   {
1361     /* Duplicate within the queue, drop also (this is not covered by
1362        the case above if "delta" >= 64, which could be the case if
1363        max_pending_messages is also >= 64 or if our client is unready
1364        and we are seeing retransmissions of the message our client is
1365        blocked on. */
1366     LOG (GNUNET_ERROR_TYPE_DEBUG,
1367          "Duplicate payload of %u bytes on %s (mid %u) dropped\n",
1368          (unsigned int) payload_size,
1369          GCCH_2s (ch),
1370          ntohl (msg->mid.mid));
1371     GNUNET_STATISTICS_update (stats,
1372                               "# duplicate DATA",
1373                               1,
1374                               GNUNET_NO);
1375     GNUNET_CONTAINER_DLL_remove (ccc->head_recv,
1376                                  ccc->tail_recv,
1377                                  com);
1378     ccc->num_recv--;
1379     GNUNET_MQ_discard (com->env);
1380     GNUNET_free (com);
1381     send_channel_data_ack (ch);
1382     return;
1383   }
1384   LOG (GNUNET_ERROR_TYPE_DEBUG,
1385        "Queued %s payload of %u bytes on %s-%X(%p) (mid %u, need %u first)\n",
1386        (GNUNET_YES == ccc->client_ready)
1387        ? "out-of-order"
1388        : "client-not-ready",
1389        (unsigned int) payload_size,
1390        GCCH_2s (ch),
1391        ntohl (ccc->ccn.channel_of_client),
1392        ccc,
1393        ntohl (msg->mid.mid),
1394        ntohl (ch->mid_recv.mid));
1395   /* NOTE: this ACK we _could_ skip, as the packet is out-of-order and
1396      the sender may already be transmitting the previous one.  Needs
1397      experimental evaluation to see if/when this ACK helps or
1398      hurts. (We might even want another option.) */
1399   send_channel_data_ack (ch);
1400 }
1401
1402
1403 /**
1404  * Function called once the tunnel has sent one of our messages.
1405  * If the message is unreliable, simply frees the `crm`. If the
1406  * message was reliable, calculate retransmission time and
1407  * wait for ACK (or retransmit).
1408  *
1409  * @param cls the `struct CadetReliableMessage` that was sent
1410  * @param cid identifier of the connection within the tunnel, NULL
1411  *            if transmission failed
1412  */
1413 static void
1414 data_sent_cb (void *cls,
1415               const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid);
1416
1417
1418 /**
1419  * We need to retry a transmission, the last one took too long to
1420  * be acknowledged.
1421  *
1422  * @param cls the `struct CadetChannel` where we need to retransmit
1423  */
1424 static void
1425 retry_transmission (void *cls)
1426 {
1427   struct CadetChannel *ch = cls;
1428   struct CadetReliableMessage *crm = ch->head_sent;
1429
1430   ch->retry_data_task = NULL;
1431   GNUNET_assert (NULL == crm->qe);
1432   LOG (GNUNET_ERROR_TYPE_DEBUG,
1433        "Retrying transmission on %s of message %u\n",
1434        GCCH_2s (ch),
1435        (unsigned int) ntohl (crm->data_message->mid.mid));
1436   crm->qe = GCT_send (ch->t,
1437                       &crm->data_message->header,
1438                       &data_sent_cb,
1439                       crm);
1440   GNUNET_assert (NULL == ch->retry_data_task);
1441 }
1442
1443
1444 /**
1445  * We got an PLAINTEXT_DATA_ACK for a message in our queue, remove it from
1446  * the queue and tell our client that it can send more.
1447  *
1448  * @param ch the channel that got the PLAINTEXT_DATA_ACK
1449  * @param cti identifier of the connection that delivered the message
1450  * @param crm the message that got acknowledged
1451  */
1452 static void
1453 handle_matching_ack (struct CadetChannel *ch,
1454                      const struct GNUNET_CADET_ConnectionTunnelIdentifier *cti,
1455                      struct CadetReliableMessage *crm)
1456 {
1457   GNUNET_CONTAINER_DLL_remove (ch->head_sent,
1458                                ch->tail_sent,
1459                                crm);
1460   ch->pending_messages--;
1461   GNUNET_assert (ch->pending_messages < ch->max_pending_messages);
1462   LOG (GNUNET_ERROR_TYPE_DEBUG,
1463        "Received DATA_ACK on %s for message %u (%u ACKs pending)\n",
1464        GCCH_2s (ch),
1465        (unsigned int) ntohl (crm->data_message->mid.mid),
1466        ch->pending_messages);
1467   if (NULL != crm->qe)
1468   {
1469     GCT_send_cancel (crm->qe);
1470     crm->qe = NULL;
1471   }
1472   if ( (1 == crm->num_transmissions) &&
1473        (NULL != cti) )
1474   {
1475     GCC_ack_observed (cti);
1476     if (0 == memcmp (cti,
1477                      &crm->connection_taken,
1478                      sizeof (struct GNUNET_CADET_ConnectionTunnelIdentifier)))
1479     {
1480       GCC_latency_observed (cti,
1481                             GNUNET_TIME_absolute_get_duration (crm->first_transmission_time));
1482     }
1483   }
1484   GNUNET_free (crm->data_message);
1485   GNUNET_free (crm);
1486   send_ack_to_client (ch,
1487                       (NULL == ch->owner)
1488                       ? GNUNET_NO
1489                       : GNUNET_YES);
1490 }
1491
1492
1493 /**
1494  * We got an acknowledgement for payload data for a channel.
1495  * Possibly resume transmissions.
1496  *
1497  * @param ch channel that got the ack
1498  * @param cti identifier of the connection that delivered the message
1499  * @param ack details about what was received
1500  */
1501 void
1502 GCCH_handle_channel_plaintext_data_ack (struct CadetChannel *ch,
1503                                         const struct GNUNET_CADET_ConnectionTunnelIdentifier *cti,
1504                                         const struct GNUNET_CADET_ChannelDataAckMessage *ack)
1505 {
1506   struct CadetReliableMessage *crm;
1507   struct CadetReliableMessage *crmn;
1508   int found;
1509   uint32_t mid_base;
1510   uint64_t mid_mask;
1511   unsigned int delta;
1512
1513   GNUNET_break (GNUNET_NO == ch->is_loopback);
1514   if (GNUNET_NO == ch->reliable)
1515   {
1516     /* not expecting ACKs on unreliable channel, odd */
1517     GNUNET_break_op (0);
1518     return;
1519   }
1520   /* mid_base is the MID of the next message that the
1521      other peer expects (i.e. that is missing!), everything
1522      LOWER (but excluding mid_base itself) was received. */
1523   mid_base = ntohl (ack->mid.mid);
1524   mid_mask = GNUNET_htonll (ack->futures);
1525   found = GNUNET_NO;
1526   for (crm = ch->head_sent;
1527         NULL != crm;
1528        crm = crmn)
1529   {
1530     crmn = crm->next;
1531     delta = (unsigned int) (ntohl (crm->data_message->mid.mid) - mid_base);
1532     if (delta >= UINT_MAX - ch->max_pending_messages)
1533     {
1534       /* overflow, means crm was a bit in the past, so this ACK counts for it. */
1535       LOG (GNUNET_ERROR_TYPE_DEBUG,
1536            "Got DATA_ACK with base %u satisfying past message %u on %s\n",
1537            (unsigned int) mid_base,
1538            ntohl (crm->data_message->mid.mid),
1539            GCCH_2s (ch));
1540       handle_matching_ack (ch,
1541                            cti,
1542                            crm);
1543       found = GNUNET_YES;
1544       continue;
1545     }
1546     delta--;
1547     if (delta >= 64)
1548       continue;
1549     LOG (GNUNET_ERROR_TYPE_DEBUG,
1550          "Testing bit %llX for mid %u (base: %u)\n",
1551          (1LLU << delta),
1552          ntohl (crm->data_message->mid.mid),
1553          mid_base);
1554     if (0 != (mid_mask & (1LLU << delta)))
1555     {
1556       LOG (GNUNET_ERROR_TYPE_DEBUG,
1557            "Got DATA_ACK with mask for %u on %s\n",
1558            ntohl (crm->data_message->mid.mid),
1559            GCCH_2s (ch));
1560       handle_matching_ack (ch,
1561                            cti,
1562                            crm);
1563       found = GNUNET_YES;
1564     }
1565   }
1566   if (GNUNET_NO == found)
1567   {
1568     /* ACK for message we already dropped, might have been a
1569        duplicate ACK? Ignore. */
1570     LOG (GNUNET_ERROR_TYPE_DEBUG,
1571          "Duplicate DATA_ACK on %s, ignoring\n",
1572          GCCH_2s (ch));
1573     GNUNET_STATISTICS_update (stats,
1574                               "# duplicate DATA_ACKs",
1575                               1,
1576                               GNUNET_NO);
1577     return;
1578   }
1579   if (NULL != ch->retry_data_task)
1580   {
1581     GNUNET_SCHEDULER_cancel (ch->retry_data_task);
1582     ch->retry_data_task = NULL;
1583   }
1584   if ( (NULL != ch->head_sent) &&
1585        (NULL == ch->head_sent->qe) )
1586     ch->retry_data_task
1587       = GNUNET_SCHEDULER_add_at (ch->head_sent->next_retry,
1588                                  &retry_transmission,
1589                                  ch);
1590 }
1591
1592
1593 /**
1594  * Destroy channel, based on the other peer closing the
1595  * connection.  Also needs to remove this channel from
1596  * the tunnel.
1597  *
1598  * @param ch channel to destroy
1599  * @param cti identifier of the connection that delivered the message,
1600  *            NULL if we are simulating receiving a destroy due to shutdown
1601  */
1602 void
1603 GCCH_handle_remote_destroy (struct CadetChannel *ch,
1604                             const struct GNUNET_CADET_ConnectionTunnelIdentifier *cti)
1605 {
1606   struct CadetChannelClient *ccc;
1607
1608   GNUNET_assert (GNUNET_NO == ch->is_loopback);
1609   LOG (GNUNET_ERROR_TYPE_DEBUG,
1610        "Received remote channel DESTROY for %s\n",
1611        GCCH_2s (ch));
1612   if (GNUNET_YES == ch->destroy)
1613   {
1614     /* Local client already gone, this is instant-death. */
1615     channel_destroy (ch);
1616     return;
1617   }
1618   ccc = (NULL != ch->owner) ? ch->owner : ch->dest;
1619   if (NULL != ccc->head_recv)
1620   {
1621     LOG (GNUNET_ERROR_TYPE_WARNING,
1622          "Lost end of transmission due to remote shutdown on %s\n",
1623          GCCH_2s (ch));
1624     /* FIXME: change API to notify client about truncated transmission! */
1625   }
1626   ch->destroy = GNUNET_YES;
1627   GSC_handle_remote_channel_destroy (ccc->c,
1628                                      ccc->ccn,
1629                                      ch);
1630   channel_destroy (ch);
1631 }
1632
1633
1634 /**
1635  * Test if element @a e1 comes before element @a e2.
1636  *
1637  * @param cls closure, to a flag where we indicate duplicate packets
1638  * @param crm1 an element of to sort
1639  * @param crm2 another element to sort
1640  * @return #GNUNET_YES if @e1 < @e2, otherwise #GNUNET_NO
1641  */
1642 static int
1643 cmp_crm_by_next_retry (void *cls,
1644                        struct CadetReliableMessage *crm1,
1645                        struct CadetReliableMessage *crm2)
1646 {
1647   if (crm1->next_retry.abs_value_us <
1648       crm2->next_retry.abs_value_us)
1649     return GNUNET_YES;
1650   return GNUNET_NO;
1651 }
1652
1653
1654 /**
1655  * Function called once the tunnel has sent one of our messages.
1656  * If the message is unreliable, simply frees the `crm`. If the
1657  * message was reliable, calculate retransmission time and
1658  * wait for ACK (or retransmit).
1659  *
1660  * @param cls the `struct CadetReliableMessage` that was sent
1661  * @param cid identifier of the connection within the tunnel, NULL
1662  *            if transmission failed
1663  */
1664 static void
1665 data_sent_cb (void *cls,
1666               const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid)
1667 {
1668   struct CadetReliableMessage *crm = cls;
1669   struct CadetChannel *ch = crm->ch;
1670
1671   GNUNET_assert (GNUNET_NO == ch->is_loopback);
1672   GNUNET_assert (NULL != crm->qe);
1673   crm->qe = NULL;
1674   GNUNET_CONTAINER_DLL_remove (ch->head_sent,
1675                                ch->tail_sent,
1676                                crm);
1677   if (GNUNET_NO == ch->reliable)
1678   {
1679     GNUNET_free (crm->data_message);
1680     GNUNET_free (crm);
1681     ch->pending_messages--;
1682     send_ack_to_client (ch,
1683                         (NULL == ch->owner)
1684                         ? GNUNET_NO
1685                         : GNUNET_YES);
1686     return;
1687   }
1688   if (NULL == cid)
1689   {
1690     /* There was an error sending. */
1691     crm->num_transmissions = GNUNET_SYSERR;
1692   }
1693   else if (GNUNET_SYSERR != crm->num_transmissions)
1694   {
1695     /* Increment transmission counter, and possibly store @a cid
1696        if this was the first transmission. */
1697     crm->num_transmissions++;
1698     if (1 == crm->num_transmissions)
1699     {
1700       crm->first_transmission_time = GNUNET_TIME_absolute_get ();
1701       crm->connection_taken = *cid;
1702       GCC_ack_expected (cid);
1703     }
1704   }
1705   if ( (0 == crm->retry_delay.rel_value_us) &&
1706        (NULL != cid) )
1707   {
1708     struct CadetConnection *cc = GCC_lookup (cid);
1709
1710     if (NULL != cc)
1711       crm->retry_delay = GCC_get_metrics (cc)->aged_latency;
1712     else
1713       crm->retry_delay = ch->retry_time;
1714   }
1715   crm->retry_delay = GNUNET_TIME_STD_BACKOFF (crm->retry_delay);
1716   crm->retry_delay = GNUNET_TIME_relative_max (crm->retry_delay,
1717                                                MIN_RTT_DELAY);
1718   crm->next_retry = GNUNET_TIME_relative_to_absolute (crm->retry_delay);
1719
1720   GNUNET_CONTAINER_DLL_insert_sorted (struct CadetReliableMessage,
1721                                       cmp_crm_by_next_retry,
1722                                       NULL,
1723                                       ch->head_sent,
1724                                       ch->tail_sent,
1725                                       crm);
1726   LOG (GNUNET_ERROR_TYPE_DEBUG,
1727        "Message %u sent, next transmission on %s in %s\n",
1728        (unsigned int) ntohl (crm->data_message->mid.mid),
1729        GCCH_2s (ch),
1730        GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_remaining (ch->head_sent->next_retry),
1731                                                GNUNET_YES));
1732   if (NULL == ch->head_sent->qe)
1733   {
1734     if (NULL != ch->retry_data_task)
1735       GNUNET_SCHEDULER_cancel (ch->retry_data_task);
1736     ch->retry_data_task
1737       = GNUNET_SCHEDULER_add_at (ch->head_sent->next_retry,
1738                                  &retry_transmission,
1739                                  ch);
1740   }
1741 }
1742
1743
1744 /**
1745  * Handle data given by a client.
1746  *
1747  * Check whether the client is allowed to send in this tunnel, save if
1748  * channel is reliable and send an ACK to the client if there is still
1749  * buffer space in the tunnel.
1750  *
1751  * @param ch Channel.
1752  * @param sender_ccn ccn of the sender
1753  * @param buf payload to transmit.
1754  * @param buf_len number of bytes in @a buf
1755  * @return #GNUNET_OK if everything goes well,
1756  *         #GNUNET_SYSERR in case of an error.
1757  */
1758 int
1759 GCCH_handle_local_data (struct CadetChannel *ch,
1760                         struct GNUNET_CADET_ClientChannelNumber sender_ccn,
1761                         const char *buf,
1762                         size_t buf_len)
1763 {
1764   struct CadetReliableMessage *crm;
1765
1766   if (ch->pending_messages > ch->max_pending_messages)
1767   {
1768     GNUNET_break (0);
1769     return GNUNET_SYSERR;
1770   }
1771   if (GNUNET_YES == ch->destroy)
1772   {
1773     /* we are going down, drop messages */
1774     return GNUNET_OK;
1775   }
1776   ch->pending_messages++;
1777
1778   if (GNUNET_YES == ch->is_loopback)
1779   {
1780     struct CadetChannelClient *receiver;
1781     struct GNUNET_MQ_Envelope *env;
1782     struct GNUNET_CADET_LocalData *ld;
1783     int to_owner;
1784
1785     env = GNUNET_MQ_msg_extra (ld,
1786                                buf_len,
1787                                GNUNET_MESSAGE_TYPE_CADET_LOCAL_DATA);
1788     if ( (NULL != ch->owner) &&
1789          (sender_ccn.channel_of_client ==
1790           ch->owner->ccn.channel_of_client) )
1791     {
1792       receiver = ch->dest;
1793       to_owner = GNUNET_NO;
1794     }
1795     else if ( (NULL != ch->dest) &&
1796               (sender_ccn.channel_of_client ==
1797                ch->dest->ccn.channel_of_client) )
1798     {
1799       receiver = ch->owner;
1800       to_owner = GNUNET_YES;
1801     }
1802     else
1803     {
1804       GNUNET_break (0);
1805       return GNUNET_SYSERR;
1806     }
1807     ld->ccn = receiver->ccn;
1808     GNUNET_memcpy (&ld[1],
1809                    buf,
1810                    buf_len);
1811     if (GNUNET_YES == receiver->client_ready)
1812     {
1813       GSC_send_to_client (receiver->c,
1814                           env);
1815       send_ack_to_client (ch,
1816                           to_owner);
1817     }
1818     else
1819     {
1820       struct CadetOutOfOrderMessage *oom;
1821
1822       oom = GNUNET_new (struct CadetOutOfOrderMessage);
1823       oom->env = env;
1824       GNUNET_CONTAINER_DLL_insert_tail (receiver->head_recv,
1825                                         receiver->tail_recv,
1826                                         oom);
1827       receiver->num_recv++;
1828     }
1829     return GNUNET_OK;
1830   }
1831
1832   /* Everything is correct, send the message. */
1833   crm = GNUNET_malloc (sizeof (*crm));
1834   crm->ch = ch;
1835   crm->data_message = GNUNET_malloc (sizeof (struct GNUNET_CADET_ChannelAppDataMessage)
1836                                      + buf_len);
1837   crm->data_message->header.size = htons (sizeof (struct GNUNET_CADET_ChannelAppDataMessage) + buf_len);
1838   crm->data_message->header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CHANNEL_APP_DATA);
1839   ch->mid_send.mid = htonl (ntohl (ch->mid_send.mid) + 1);
1840   crm->data_message->mid = ch->mid_send;
1841   crm->data_message->ctn = ch->ctn;
1842   GNUNET_memcpy (&crm->data_message[1],
1843                  buf,
1844                  buf_len);
1845   GNUNET_CONTAINER_DLL_insert_tail (ch->head_sent,
1846                                     ch->tail_sent,
1847                                     crm);
1848   LOG (GNUNET_ERROR_TYPE_DEBUG,
1849        "Sending message %u from local client to %s with %u bytes\n",
1850        ntohl (crm->data_message->mid.mid),
1851        GCCH_2s (ch),
1852        buf_len);
1853   if (NULL != ch->retry_data_task)
1854   {
1855     GNUNET_SCHEDULER_cancel (ch->retry_data_task);
1856     ch->retry_data_task = NULL;
1857   }
1858   crm->qe = GCT_send (ch->t,
1859                       &crm->data_message->header,
1860                       &data_sent_cb,
1861                       crm);
1862   GNUNET_assert (NULL == ch->retry_data_task);
1863   return GNUNET_OK;
1864 }
1865
1866
1867 /**
1868  * Handle ACK from client on local channel.  Means the client is ready
1869  * for more data, see if we have any for it.
1870  *
1871  * @param ch channel to destroy
1872  * @param client_ccn ccn of the client sending the ack
1873  */
1874 void
1875 GCCH_handle_local_ack (struct CadetChannel *ch,
1876                        struct GNUNET_CADET_ClientChannelNumber client_ccn)
1877 {
1878   struct CadetChannelClient *ccc;
1879   struct CadetOutOfOrderMessage *com;
1880
1881   if ( (NULL != ch->owner) &&
1882        (ch->owner->ccn.channel_of_client == client_ccn.channel_of_client) )
1883     ccc = ch->owner;
1884   else if ( (NULL != ch->dest) &&
1885             (ch->dest->ccn.channel_of_client == client_ccn.channel_of_client) )
1886     ccc = ch->dest;
1887   else
1888     GNUNET_assert (0);
1889   ccc->client_ready = GNUNET_YES;
1890   com = ccc->head_recv;
1891   if (NULL == com)
1892   {
1893     LOG (GNUNET_ERROR_TYPE_DEBUG,
1894          "Got LOCAL_ACK, %s-%X ready to receive more data, but none pending on %s-%X(%p)!\n",
1895          GSC_2s (ccc->c),
1896          ntohl (client_ccn.channel_of_client),
1897          GCCH_2s (ch),
1898          ntohl (ccc->ccn.channel_of_client),
1899          ccc);
1900     return; /* none pending */
1901   }
1902   if (GNUNET_YES == ch->is_loopback)
1903   {
1904     int to_owner;
1905
1906     /* Messages are always in-order, just send */
1907     GNUNET_CONTAINER_DLL_remove (ccc->head_recv,
1908                                  ccc->tail_recv,
1909                                  com);
1910     ccc->num_recv--;
1911     GSC_send_to_client (ccc->c,
1912                         com->env);
1913     /* Notify sender that we can receive more */
1914     if (ccc->ccn.channel_of_client ==
1915         ch->owner->ccn.channel_of_client)
1916     {
1917       to_owner = GNUNET_NO;
1918     }
1919     else
1920     {
1921       GNUNET_assert (ccc->ccn.channel_of_client ==
1922                      ch->dest->ccn.channel_of_client);
1923       to_owner = GNUNET_YES;
1924     }
1925     send_ack_to_client (ch,
1926                         to_owner);
1927     GNUNET_free (com);
1928     return;
1929   }
1930
1931   if ( (com->mid.mid != ch->mid_recv.mid) &&
1932        (GNUNET_NO == ch->out_of_order) &&
1933        (GNUNET_YES == ch->reliable) )
1934   {
1935     LOG (GNUNET_ERROR_TYPE_DEBUG,
1936          "Got LOCAL_ACK, %s-%X ready to receive more data (but next one is out-of-order %u vs. %u)!\n",
1937          GSC_2s (ccc->c),
1938          ntohl (ccc->ccn.channel_of_client),
1939          ntohl (com->mid.mid),
1940          ntohl (ch->mid_recv.mid));
1941     return; /* missing next one in-order */
1942   }
1943
1944   LOG (GNUNET_ERROR_TYPE_DEBUG,
1945        "Got LOCAL_ACK, giving payload message %u to %s-%X on %s\n",
1946        ntohl (com->mid.mid),
1947        GSC_2s (ccc->c),
1948        ntohl (ccc->ccn.channel_of_client),
1949        GCCH_2s (ch));
1950
1951   /* all good, pass next message to client */
1952   GNUNET_CONTAINER_DLL_remove (ccc->head_recv,
1953                                ccc->tail_recv,
1954                                com);
1955   ccc->num_recv--;
1956   /* FIXME: if unreliable, this is not aggressive
1957      enough, as it would be OK to have lost some! */
1958
1959   ch->mid_recv.mid = htonl (1 + ntohl (com->mid.mid));
1960   ch->mid_futures >>= 1; /* equivalent to division by 2 */
1961   ccc->client_ready = GNUNET_NO;
1962   GSC_send_to_client (ccc->c,
1963                       com->env);
1964   GNUNET_free (com);
1965   send_channel_data_ack (ch);
1966   if (NULL != ccc->head_recv)
1967     return;
1968   if (GNUNET_NO == ch->destroy)
1969     return;
1970   GCT_send_channel_destroy (ch->t,
1971                             ch->ctn);
1972   channel_destroy (ch);
1973 }
1974
1975
1976 #define LOG2(level, ...) GNUNET_log_from_nocheck(level,"cadet-chn",__VA_ARGS__)
1977
1978
1979 /**
1980  * Log channel info.
1981  *
1982  * @param ch Channel.
1983  * @param level Debug level to use.
1984  */
1985 void
1986 GCCH_debug (struct CadetChannel *ch,
1987             enum GNUNET_ErrorType level)
1988 {
1989   int do_log;
1990
1991   do_log = GNUNET_get_log_call_status (level & (~GNUNET_ERROR_TYPE_BULK),
1992                                        "cadet-chn",
1993                                        __FILE__, __FUNCTION__, __LINE__);
1994   if (0 == do_log)
1995     return;
1996
1997   if (NULL == ch)
1998   {
1999     LOG2 (level, "CHN *** DEBUG NULL CHANNEL ***\n");
2000     return;
2001   }
2002   LOG2 (level,
2003         "CHN %s:%X (%p)\n",
2004         GCT_2s (ch->t),
2005         ch->ctn,
2006         ch);
2007   if (NULL != ch->owner)
2008   {
2009     LOG2 (level,
2010           "CHN origin %s ready %s local-id: %u\n",
2011           GSC_2s (ch->owner->c),
2012           ch->owner->client_ready ? "YES" : "NO",
2013           ntohl (ch->owner->ccn.channel_of_client));
2014   }
2015   if (NULL != ch->dest)
2016   {
2017     LOG2 (level,
2018           "CHN destination %s ready %s local-id: %u\n",
2019           GSC_2s (ch->dest->c),
2020           ch->dest->client_ready ? "YES" : "NO",
2021           ntohl (ch->dest->ccn.channel_of_client));
2022   }
2023   LOG2 (level,
2024         "CHN  Message IDs recv: %d (%LLX), send: %d\n",
2025         ntohl (ch->mid_recv.mid),
2026         (unsigned long long) ch->mid_futures,
2027         ntohl (ch->mid_send.mid));
2028 }
2029
2030
2031
2032 /* end of gnunet-service-cadet-new_channel.c */