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