- refactor kx sending, unify under send_kx
[oweals/gnunet.git] / src / cadet / gnunet-service-cadet_connection.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2001-2013 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file cadet/gnunet-service-cadet_connection.c
23  * @brief GNUnet CADET service connection handling
24  * @author Bartlomiej Polot
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29
30 #include "gnunet_statistics_service.h"
31
32 #include "cadet_path.h"
33 #include "cadet_protocol.h"
34 #include "cadet.h"
35 #include "gnunet-service-cadet_connection.h"
36 #include "gnunet-service-cadet_peer.h"
37 #include "gnunet-service-cadet_tunnel.h"
38
39
40 #define LOG(level, ...) GNUNET_log_from (level,"cadet-con",__VA_ARGS__)
41 #define LOG2(level, ...) GNUNET_log_from_nocheck(level,"cadet-con",__VA_ARGS__)
42
43
44 #define CADET_MAX_POLL_TIME      GNUNET_TIME_relative_multiply (\
45                                   GNUNET_TIME_UNIT_MINUTES,\
46                                   10)
47 #define AVG_MSGS                32
48
49
50 /******************************************************************************/
51 /********************************   STRUCTS  **********************************/
52 /******************************************************************************/
53
54 /**
55  * Struct to encapsulate all the Flow Control information to a peer to which
56  * we are directly connected (on a core level).
57  */
58 struct CadetFlowControl
59 {
60   /**
61    * Connection this controls.
62    */
63   struct CadetConnection *c;
64
65   /**
66    * How many messages are in the queue on this connection.
67    */
68   unsigned int queue_n;
69
70   /**
71    * How many messages do we accept in the queue.
72    */
73   unsigned int queue_max;
74
75   /**
76    * ID of the last packet sent towards the peer.
77    */
78   uint32_t last_pid_sent;
79
80   /**
81    * ID of the last packet received from the peer.
82    */
83   uint32_t last_pid_recv;
84
85   /**
86    * Bitmap of past 32 messages received:
87    * - LSB being @c last_pid_recv.
88    * - MSB being @c last_pid_recv - 31 (mod UINTMAX).
89    */
90   uint32_t recv_bitmap;
91
92   /**
93    * Last ACK sent to the peer (peer can't send more than this PID).
94    */
95   uint32_t last_ack_sent;
96
97   /**
98    * Last ACK sent towards the origin (for traffic towards leaf node).
99    */
100   uint32_t last_ack_recv;
101
102   /**
103    * Task to poll the peer in case of a lost ACK causes stall.
104    */
105   struct GNUNET_SCHEDULER_Task * poll_task;
106
107   /**
108    * How frequently to poll for ACKs.
109    */
110   struct GNUNET_TIME_Relative poll_time;
111
112   /**
113    * Queued poll message, to cancel if not necessary anymore (got ACK).
114    */
115   struct CadetConnectionQueue *poll_msg;
116
117   /**
118    * Queued poll message, to cancel if not necessary anymore (got ACK).
119    */
120   struct CadetConnectionQueue *ack_msg;
121 };
122
123 /**
124  * Keep a record of the last messages sent on this connection.
125  */
126 struct CadetConnectionPerformance
127 {
128   /**
129    * Circular buffer for storing measurements.
130    */
131   double usecsperbyte[AVG_MSGS];
132
133   /**
134    * Running average of @c usecsperbyte.
135    */
136   double avg;
137
138   /**
139    * How many values of @c usecsperbyte are valid.
140    */
141   uint16_t size;
142
143   /**
144    * Index of the next "free" position in @c usecsperbyte.
145    */
146   uint16_t idx;
147 };
148
149
150 /**
151  * Struct containing all information regarding a connection to a peer.
152  */
153 struct CadetConnection
154 {
155   /**
156    * Tunnel this connection is part of.
157    */
158   struct CadetTunnel *t;
159
160   /**
161    * Flow control information for traffic fwd.
162    */
163   struct CadetFlowControl fwd_fc;
164
165   /**
166    * Flow control information for traffic bck.
167    */
168   struct CadetFlowControl bck_fc;
169
170   /**
171    * Measure connection performance on the endpoint.
172    */
173   struct CadetConnectionPerformance *perf;
174
175   /**
176    * ID of the connection.
177    */
178   struct GNUNET_CADET_Hash id;
179
180   /**
181    * State of the connection.
182    */
183   enum CadetConnectionState state;
184
185   /**
186    * Path being used for the tunnel. At the origin of the connection
187    * it's a pointer to the destination's path pool, otherwise just a copy.
188    */
189   struct CadetPeerPath *path;
190
191   /**
192    * Position of the local peer in the path.
193    */
194   unsigned int own_pos;
195
196   /**
197    * Task to keep the used paths alive at the owner,
198    * time tunnel out on all the other peers.
199    */
200   struct GNUNET_SCHEDULER_Task * fwd_maintenance_task;
201
202   /**
203    * Task to keep the used paths alive at the destination,
204    * time tunnel out on all the other peers.
205    */
206   struct GNUNET_SCHEDULER_Task * bck_maintenance_task;
207
208   /**
209    * Queue handle for maintainance traffic. One handle for FWD and BCK since
210    * one peer never needs to maintain both directions (no loopback connections).
211    */
212   struct CadetPeerQueue *maintenance_q;
213
214   /**
215    * Counter to do exponential backoff when creating a connection (max 64).
216    */
217   unsigned short create_retry;
218
219   /**
220    * Pending message count.
221    */
222   unsigned int pending_messages;
223
224   /**
225    * Destroy flag: if true, destroy on last message.
226    */
227   int destroy;
228 };
229
230 /**
231  * Handle for messages queued but not yet sent.
232  */
233 struct CadetConnectionQueue
234 {
235   /**
236    * Peer queue handle, to cancel if necessary.
237    */
238   struct CadetPeerQueue *q;
239
240   /**
241    * Was this a forced message? (Do not account for it)
242    */
243   int forced;
244
245   /**
246    * Continuation to call once sent.
247    */
248   GCC_sent cont;
249
250   /**
251    * Closure for @c cont.
252    */
253   void *cont_cls;
254 };
255
256 /******************************************************************************/
257 /*******************************   GLOBALS  ***********************************/
258 /******************************************************************************/
259
260 /**
261  * Global handle to the statistics service.
262  */
263 extern struct GNUNET_STATISTICS_Handle *stats;
264
265 /**
266  * Local peer own ID (memory efficient handle).
267  */
268 extern GNUNET_PEER_Id myid;
269
270 /**
271  * Local peer own ID (full value).
272  */
273 extern struct GNUNET_PeerIdentity my_full_id;
274
275 /**
276  * Connections known, indexed by cid (CadetConnection).
277  */
278 static struct GNUNET_CONTAINER_MultiHashMap *connections;
279
280 /**
281  * How many connections are we willing to maintain.
282  * Local connections are always allowed, even if there are more connections than max.
283  */
284 static unsigned long long max_connections;
285
286 /**
287  * How many messages *in total* are we willing to queue, divide by number of
288  * connections to get connection queue size.
289  */
290 static unsigned long long max_msgs_queue;
291
292 /**
293  * How often to send path keepalives. Paths timeout after 4 missed.
294  */
295 static struct GNUNET_TIME_Relative refresh_connection_time;
296
297 /**
298  * How often to send path create / ACKs.
299  */
300 static struct GNUNET_TIME_Relative create_connection_time;
301
302
303 /******************************************************************************/
304 /********************************   STATIC  ***********************************/
305 /******************************************************************************/
306
307 #if 0 // avoid compiler warning for unused static function
308 static void
309 fc_debug (struct CadetFlowControl *fc)
310 {
311   LOG (GNUNET_ERROR_TYPE_DEBUG, "    IN: %u/%u\n",
312               fc->last_pid_recv, fc->last_ack_sent);
313   LOG (GNUNET_ERROR_TYPE_DEBUG, "    OUT: %u/%u\n",
314               fc->last_pid_sent, fc->last_ack_recv);
315   LOG (GNUNET_ERROR_TYPE_DEBUG, "    QUEUE: %u/%u\n",
316               fc->queue_n, fc->queue_max);
317 }
318
319 static void
320 connection_debug (struct CadetConnection *c)
321 {
322   if (NULL == c)
323   {
324     LOG (GNUNET_ERROR_TYPE_DEBUG, "*** DEBUG NULL CONNECTION ***\n");
325     return;
326   }
327   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connection %s:%X\n",
328               peer2s (c->t->peer), GCC_2s (c));
329   LOG (GNUNET_ERROR_TYPE_DEBUG, "  state: %u, pending msgs: %u\n",
330               c->state, c->pending_messages);
331   LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD FC\n");
332   fc_debug (&c->fwd_fc);
333   LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK FC\n");
334   fc_debug (&c->bck_fc);
335 }
336 #endif
337
338
339 /**
340  * Schedule next keepalive task, taking in consideration
341  * the connection state and number of retries.
342  *
343  * @param c Connection for which to schedule the next keepalive.
344  * @param fwd Direction for the next keepalive.
345  */
346 static void
347 schedule_next_keepalive (struct CadetConnection *c, int fwd);
348
349
350 /**
351  * Resets the connection timeout task, some other message has done the
352  * task's job.
353  * - For the first peer on the direction this means to send
354  *   a keepalive or a path confirmation message (either create or ACK).
355  * - For all other peers, this means to destroy the connection,
356  *   due to lack of activity.
357  * Starts the timeout if no timeout was running (connection just created).
358  *
359  * @param c Connection whose timeout to reset.
360  * @param fwd Is this forward?
361  */
362 static void
363 connection_reset_timeout (struct CadetConnection *c, int fwd);
364
365
366 /**
367  * Get string description for tunnel state. Reentrant.
368  *
369  * @param s Tunnel state.
370  *
371  * @return String representation.
372  */
373 static const char *
374 GCC_state2s (enum CadetConnectionState s)
375 {
376   switch (s)
377   {
378     case CADET_CONNECTION_NEW:
379       return "CADET_CONNECTION_NEW";
380     case CADET_CONNECTION_SENT:
381       return "CADET_CONNECTION_SENT";
382     case CADET_CONNECTION_ACK:
383       return "CADET_CONNECTION_ACK";
384     case CADET_CONNECTION_READY:
385       return "CADET_CONNECTION_READY";
386     case CADET_CONNECTION_DESTROYED:
387       return "CADET_CONNECTION_DESTROYED";
388     case CADET_CONNECTION_BROKEN:
389       return "CADET_CONNECTION_BROKEN";
390     default:
391       GNUNET_break (0);
392       LOG (GNUNET_ERROR_TYPE_ERROR, " conn state %u unknown!\n", s);
393       return "CADET_CONNECTION_STATE_ERROR";
394   }
395 }
396
397
398 /**
399  * Initialize a Flow Control structure to the initial state.
400  *
401  * @param fc Flow Control structure to initialize.
402  */
403 static void
404 fc_init (struct CadetFlowControl *fc)
405 {
406   fc->last_pid_sent = (uint32_t) -1; /* Next (expected) = 0 */
407   fc->last_pid_recv = (uint32_t) -1;
408   fc->last_ack_sent = (uint32_t) 0;
409   fc->last_ack_recv = (uint32_t) 0;
410   fc->poll_task = NULL;
411   fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
412   fc->queue_n = 0;
413   fc->queue_max = (max_msgs_queue / max_connections) + 1;
414 }
415
416
417 /**
418  * Find a connection.
419  *
420  * @param cid Connection ID.
421  */
422 static struct CadetConnection *
423 connection_get (const struct GNUNET_CADET_Hash *cid)
424 {
425   return GNUNET_CONTAINER_multihashmap_get (connections, GC_h2hc (cid));
426 }
427
428
429 static void
430 connection_change_state (struct CadetConnection* c,
431                          enum CadetConnectionState state)
432 {
433   LOG (GNUNET_ERROR_TYPE_DEBUG,
434        "Connection %s state %s -> %s\n",
435        GCC_2s (c), GCC_state2s (c->state), GCC_state2s (state));
436   if (CADET_CONNECTION_DESTROYED <= c->state) /* Destroyed or broken. */
437   {
438     LOG (GNUNET_ERROR_TYPE_DEBUG, "state not changing anymore\n");
439     return;
440   }
441   c->state = state;
442   if (CADET_CONNECTION_READY == state)
443     c->create_retry = 1;
444 }
445
446
447 /**
448  * Callback called when a queued ACK message is sent.
449  *
450  * @param cls Closure (FC).
451  * @param c Connection this message was on.
452  * @param q Queue handler this call invalidates.
453  * @param type Type of message sent.
454  * @param fwd Was this a FWD going message?
455  * @param size Size of the message.
456  */
457 static void
458 ack_sent (void *cls,
459           struct CadetConnection *c,
460           struct CadetConnectionQueue *q,
461           uint16_t type, int fwd, size_t size)
462 {
463   struct CadetFlowControl *fc = cls;
464
465   fc->ack_msg = NULL;
466 }
467
468
469 /**
470  * Send an ACK on the connection, informing the predecessor about
471  * the available buffer space. Should not be called in case the peer
472  * is origin (no predecessor) in the @c fwd direction.
473  *
474  * Note that for fwd ack, the FWD mean forward *traffic* (root->dest),
475  * the ACK itself goes "back" (dest->root).
476  *
477  * @param c Connection on which to send the ACK.
478  * @param buffer How much space free to advertise?
479  * @param fwd Is this FWD ACK? (Going dest -> root)
480  * @param force Don't optimize out.
481  */
482 static void
483 send_ack (struct CadetConnection *c, unsigned int buffer, int fwd, int force)
484 {
485   struct CadetFlowControl *next_fc;
486   struct CadetFlowControl *prev_fc;
487   struct GNUNET_CADET_ACK msg;
488   uint32_t ack;
489   int delta;
490
491   /* If origin, there is no connection to send ACKs. Wrong function! */
492   if (GCC_is_origin (c, fwd))
493   {
494     LOG (GNUNET_ERROR_TYPE_DEBUG, "connection %s is origin in %s\n",
495          GCC_2s (c), GC_f2s (fwd));
496     GNUNET_break (0);
497     return;
498   }
499
500   next_fc = fwd ? &c->fwd_fc : &c->bck_fc;
501   prev_fc = fwd ? &c->bck_fc : &c->fwd_fc;
502
503   LOG (GNUNET_ERROR_TYPE_DEBUG, "connection send %s ack on %s\n",
504        GC_f2s (fwd), GCC_2s (c));
505
506   /* Check if we need to transmit the ACK. */
507   delta = prev_fc->last_ack_sent - prev_fc->last_pid_recv;
508   if (3 < delta && buffer < delta && GNUNET_NO == force)
509   {
510     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, buffer > 3\n");
511     LOG (GNUNET_ERROR_TYPE_DEBUG,
512          "  last pid recv: %u, last ack sent: %u\n",
513          prev_fc->last_pid_recv, prev_fc->last_ack_sent);
514     return;
515   }
516
517   /* Ok, ACK might be necessary, what PID to ACK? */
518   ack = prev_fc->last_pid_recv + buffer;
519   LOG (GNUNET_ERROR_TYPE_DEBUG, " ACK %u\n", ack);
520   LOG (GNUNET_ERROR_TYPE_DEBUG,
521        " last pid %u, last ack %u, qmax %u, q %u\n",
522        prev_fc->last_pid_recv, prev_fc->last_ack_sent,
523        next_fc->queue_max, next_fc->queue_n);
524   if (ack == prev_fc->last_ack_sent && GNUNET_NO == force)
525   {
526     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not sending FWD ACK, not needed\n");
527     return;
528   }
529
530   /* Check if message is already in queue */
531   if (NULL != prev_fc->ack_msg)
532   {
533     if (GC_is_pid_bigger (ack, prev_fc->last_ack_sent))
534     {
535       LOG (GNUNET_ERROR_TYPE_DEBUG, " canceling old ACK\n");
536       GCC_cancel (prev_fc->ack_msg);
537       /* GCC_cancel triggers ack_sent(), which clears fc->ack_msg */
538     }
539     else
540     {
541       LOG (GNUNET_ERROR_TYPE_DEBUG, " same ACK already in queue\n");
542       return;
543     }
544   }
545
546   prev_fc->last_ack_sent = ack;
547
548   /* Build ACK message and send on connection */
549   msg.header.size = htons (sizeof (msg));
550   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_ACK);
551   msg.ack = htonl (ack);
552   msg.cid = c->id;
553
554   prev_fc->ack_msg = GCC_send_prebuilt_message (&msg.header, 0, ack, c,
555                                                 !fwd, GNUNET_YES,
556                                                 &ack_sent, prev_fc);
557   GNUNET_assert (NULL != prev_fc->ack_msg);
558 }
559
560
561 /**
562  * Callback called when a connection queued message is sent.
563  *
564  * Calculates the average time and connection packet tracking.
565  *
566  * @param cls Closure (ConnectionQueue Handle).
567  * @param c Connection this message was on.
568  * @param sent Was it really sent? (Could have been canceled)
569  * @param type Type of message sent.
570  * @param pid Packet ID, or 0 if not applicable (create, destroy, etc).
571  * @param fwd Was this a FWD going message?
572  * @param size Size of the message.
573  * @param wait Time spent waiting for core (only the time for THIS message)
574  *
575  * @return #GNUNET_YES if connection was destroyed, #GNUNET_NO otherwise.
576  */
577 static int
578 conn_message_sent (void *cls,
579                    struct CadetConnection *c, int sent,
580                    uint16_t type, uint32_t pid, int fwd, size_t size,
581                    struct GNUNET_TIME_Relative wait)
582 {
583   struct CadetConnectionPerformance *p;
584   struct CadetFlowControl *fc;
585   struct CadetConnectionQueue *q = cls;
586   double usecsperbyte;
587   int forced;
588
589   LOG (GNUNET_ERROR_TYPE_DEBUG, "connection message_sent\n");
590
591   fc = fwd ? &c->fwd_fc : &c->bck_fc;
592   LOG (GNUNET_ERROR_TYPE_DEBUG, " %ssent %s %s pid %u\n",
593        sent ? "" : "not ", GC_f2s (fwd), GC_m2s (type), pid);
594   if (NULL != q)
595   {
596     forced = q->forced;
597     if (NULL != q->cont)
598     {
599       LOG (GNUNET_ERROR_TYPE_DEBUG, " calling cont\n");
600       q->cont (q->cont_cls, c, q, type, fwd, size);
601     }
602     GNUNET_free (q);
603   }
604   else if (type == GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED)
605   {
606     /* If NULL == q and ENCRYPTED == type, message must have been ch_mngmnt */
607     forced = GNUNET_YES;
608   }
609   else
610   {
611     forced = GNUNET_NO;
612   }
613   if (NULL == c)
614   {
615     if (type != GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN
616         && type != GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY)
617     {
618       LOG (GNUNET_ERROR_TYPE_ERROR, "Message %s sent on NULL connection!\n",
619            GC_m2s (type));
620     }
621     return GNUNET_NO;
622   }
623   LOG (GNUNET_ERROR_TYPE_DEBUG, " C_P- %p %u\n", c, c->pending_messages);
624   c->pending_messages--;
625   if (GNUNET_YES == c->destroy && 0 == c->pending_messages)
626   {
627     LOG (GNUNET_ERROR_TYPE_DEBUG, "!  destroying connection!\n");
628     GCC_destroy (c);
629     return GNUNET_YES;
630   }
631   /* Send ACK if needed, after accounting for sent ID in fc->queue_n */
632   switch (type)
633   {
634     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
635     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
636       c->maintenance_q = NULL;
637       /* Don't trigger a keepalive for sent ACKs, only SYN and SYNACKs */
638       if (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE == type || !fwd)
639         schedule_next_keepalive (c, fwd);
640       break;
641
642     case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
643       if (GNUNET_YES == sent)
644       {
645         GNUNET_assert (NULL != q);
646         fc->last_pid_sent = pid; // FIXME
647         GCC_send_ack (c, fwd, GNUNET_NO);
648         connection_reset_timeout (c, fwd);
649       }
650
651       LOG (GNUNET_ERROR_TYPE_DEBUG, "!  Q_N- %p %u\n", fc, fc->queue_n);
652       if (GNUNET_NO == forced)
653       {
654         fc->queue_n--;
655         LOG (GNUNET_ERROR_TYPE_DEBUG,
656             "!   accounting pid %u\n",
657             fc->last_pid_sent);
658       }
659       else
660       {
661         LOG (GNUNET_ERROR_TYPE_DEBUG,
662              "!   forced, Q_N not accounting pid %u\n",
663              fc->last_pid_sent);
664       }
665       break;
666
667     case GNUNET_MESSAGE_TYPE_CADET_KX:
668       if (GNUNET_YES == sent)
669         connection_reset_timeout (c, fwd);
670       break;
671
672     case GNUNET_MESSAGE_TYPE_CADET_POLL:
673       fc->poll_msg = NULL;
674       break;
675
676     case GNUNET_MESSAGE_TYPE_CADET_ACK:
677       fc->ack_msg = NULL;
678       break;
679
680     default:
681       break;
682   }
683   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  message sent!\n");
684
685   if (NULL == c->perf)
686     return GNUNET_NO; /* Only endpoints are interested in timing. */
687
688   p = c->perf;
689   usecsperbyte = ((double) wait.rel_value_us) / size;
690   if (p->size == AVG_MSGS)
691   {
692     /* Array is full. Substract oldest value, add new one and store. */
693     p->avg -= (p->usecsperbyte[p->idx] / AVG_MSGS);
694     p->usecsperbyte[p->idx] = usecsperbyte;
695     p->avg += (p->usecsperbyte[p->idx] / AVG_MSGS);
696   }
697   else
698   {
699     /* Array not yet full. Add current value to avg and store. */
700     p->usecsperbyte[p->idx] = usecsperbyte;
701     p->avg *= p->size;
702     p->avg += p->usecsperbyte[p->idx];
703     p->size++;
704     p->avg /= p->size;
705   }
706   p->idx = (p->idx + 1) % AVG_MSGS;
707   return GNUNET_NO;
708 }
709
710
711 /**
712  * Get the previous hop in a connection
713  *
714  * @param c Connection.
715  *
716  * @return Previous peer in the connection.
717  */
718 static struct CadetPeer *
719 get_prev_hop (const struct CadetConnection *c)
720 {
721   GNUNET_PEER_Id id;
722
723   if (NULL == c->path)
724     return NULL;
725
726   LOG (GNUNET_ERROR_TYPE_DEBUG, " get prev hop %s [%u/%u]\n",
727        GCC_2s (c), c->own_pos, c->path->length);
728   if (0 == c->own_pos || c->path->length < 2)
729     id = c->path->peers[0];
730   else
731     id = c->path->peers[c->own_pos - 1];
732
733   LOG (GNUNET_ERROR_TYPE_DEBUG, "  ID: %s (%u)\n",
734        GNUNET_i2s (GNUNET_PEER_resolve2 (id)), id);
735
736   return GCP_get_short (id);
737 }
738
739
740 /**
741  * Get the next hop in a connection
742  *
743  * @param c Connection.
744  *
745  * @return Next peer in the connection.
746  */
747 static struct CadetPeer *
748 get_next_hop (const struct CadetConnection *c)
749 {
750   GNUNET_PEER_Id id;
751
752   if (NULL == c->path)
753     return NULL;
754
755   LOG (GNUNET_ERROR_TYPE_DEBUG, " get next hop %s [%u/%u]\n",
756        GCC_2s (c), c->own_pos, c->path->length);
757   if ((c->path->length - 1) == c->own_pos || c->path->length < 2)
758     id = c->path->peers[c->path->length - 1];
759   else
760     id = c->path->peers[c->own_pos + 1];
761
762   LOG (GNUNET_ERROR_TYPE_DEBUG, "  ID: %s (%u)\n",
763        GNUNET_i2s (GNUNET_PEER_resolve2 (id)), id);
764
765   return GCP_get_short (id);
766 }
767
768
769 /**
770  * Get the hop in a connection.
771  *
772  * @param c Connection.
773  * @param fwd Next in the FWD direction?
774  *
775  * @return Next peer in the connection.
776  */
777 static struct CadetPeer *
778 get_hop (struct CadetConnection *c, int fwd)
779 {
780   if (fwd)
781     return get_next_hop (c);
782   return get_prev_hop (c);
783 }
784
785
786 /**
787  * Get a bit mask for a message received out-of-order.
788  *
789  * @param last_pid_recv Last PID we received prior to the out-of-order.
790  * @param ooo_pid PID of the out-of-order message.
791  */
792 static uint32_t
793 get_recv_bitmask (uint32_t last_pid_recv, uint32_t ooo_pid)
794 {
795   return 1 << (last_pid_recv - ooo_pid);
796 }
797
798
799 /**
800  * Check is an out-of-order message is ok:
801  * - at most 31 messages behind.
802  * - not duplicate.
803  *
804  * @param last_pid_recv Last in-order PID received.
805  */
806 static int
807 is_ooo_ok (uint32_t last_pid_recv, uint32_t ooo_pid, uint32_t ooo_bitmap)
808 {
809   uint32_t mask;
810
811   if (GC_is_pid_bigger (last_pid_recv - 31, ooo_pid))
812     return GNUNET_NO;
813
814   mask = get_recv_bitmask (last_pid_recv, ooo_pid);
815   if (0 != (ooo_bitmap & mask))
816     return GNUNET_NO;
817
818   return GNUNET_YES;
819 }
820
821
822 /**
823  * Is traffic coming from this sender 'FWD' traffic?
824  *
825  * @param c Connection to check.
826  * @param sender Peer identity of neighbor.
827  *
828  * @return #GNUNET_YES in case the sender is the 'prev' hop and therefore
829  *         the traffic is 'FWD'.
830  *         #GNUNET_NO for BCK.
831  *         #GNUNET_SYSERR for errors.
832  */
833 static int
834 is_fwd (const struct CadetConnection *c,
835         const struct GNUNET_PeerIdentity *sender)
836 {
837   GNUNET_PEER_Id id;
838
839   id = GNUNET_PEER_search (sender);
840   if (GCP_get_short_id (get_prev_hop (c)) == id)
841     return GNUNET_YES;
842
843   if (GCP_get_short_id (get_next_hop (c)) == id)
844     return GNUNET_NO;
845
846   GNUNET_break (0);
847   return GNUNET_SYSERR;
848 }
849
850
851 /**
852  * Sends a CONNECTION ACK message in reponse to a received CONNECTION_CREATE
853  * or a first CONNECTION_ACK directed to us.
854  *
855  * @param connection Connection to confirm.
856  * @param fwd Should we send it FWD? (root->dest)
857  *            (First (~SYNACK) goes BCK, second (~ACK) goes FWD)
858  */
859 static void
860 send_connection_ack (struct CadetConnection *connection, int fwd)
861 {
862   struct CadetTunnel *t;
863
864   t = connection->t;
865   LOG (GNUNET_ERROR_TYPE_INFO, "---> {%14s ACK} on connection %s\n",
866        GC_f2s (!fwd), GCC_2s (connection));
867   GCP_queue_add (get_hop (connection, fwd), NULL,
868                  GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK, 0, 0,
869                  sizeof (struct GNUNET_CADET_ConnectionACK),
870                  connection, fwd, &conn_message_sent, NULL);
871   connection->pending_messages++;
872   if (CADET_TUNNEL_NEW == GCT_get_cstate (t))
873     GCT_change_cstate (t, CADET_TUNNEL_WAITING);
874   if (CADET_CONNECTION_READY != connection->state)
875     connection_change_state (connection, CADET_CONNECTION_SENT);
876 }
877
878
879 /**
880  * Send a notification that a connection is broken.
881  *
882  * @param c Connection that is broken.
883  * @param id1 Peer that has disconnected.
884  * @param id2 Peer that has disconnected.
885  * @param fwd Direction towards which to send it.
886  */
887 static void
888 send_broken (struct CadetConnection *c,
889              const struct GNUNET_PeerIdentity *id1,
890              const struct GNUNET_PeerIdentity *id2,
891              int fwd)
892 {
893   struct GNUNET_CADET_ConnectionBroken msg;
894
895   msg.header.size = htons (sizeof (struct GNUNET_CADET_ConnectionBroken));
896   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN);
897   msg.cid = c->id;
898   msg.peer1 = *id1;
899   msg.peer2 = *id2;
900   GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg.header, 0, 0, c, fwd,
901                                                     GNUNET_YES, NULL, NULL));
902 }
903
904
905 /**
906  * Send a notification that a connection is broken, when a connection
907  * isn't even known to the local peer or soon to be destroyed.
908  *
909  * @param connection_id Connection ID.
910  * @param id1 Peer that has disconnected, probably local peer.
911  * @param id2 Peer that has disconnected can be NULL if unknown.
912  * @param peer Peer to notify (neighbor who sent the connection).
913  */
914 static void
915 send_broken_unknown (const struct GNUNET_CADET_Hash *connection_id,
916                      const struct GNUNET_PeerIdentity *id1,
917                      const struct GNUNET_PeerIdentity *id2,
918                      const struct GNUNET_PeerIdentity *peer_id)
919 {
920   struct GNUNET_CADET_ConnectionBroken *msg;
921   struct CadetPeer *neighbor;
922
923   LOG (GNUNET_ERROR_TYPE_INFO, "---> BROKEN on unknown connection %s\n",
924        GNUNET_h2s (GC_h2hc (connection_id)));
925
926   msg = GNUNET_new (struct GNUNET_CADET_ConnectionBroken);
927   msg->header.size = htons (sizeof (struct GNUNET_CADET_ConnectionBroken));
928   msg->header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN);
929   msg->cid = *connection_id;
930   msg->peer1 = *id1;
931   if (NULL != id2)
932     msg->peer2 = *id2;
933   else
934     memset (&msg->peer2, 0, sizeof (msg->peer2));
935   neighbor = GCP_get (peer_id);
936   GCP_queue_add (neighbor, msg, GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN,
937                  0, 2, sizeof (struct GNUNET_CADET_ConnectionBroken),
938                  NULL, GNUNET_SYSERR, /* connection, fwd */
939                  NULL, NULL); /* continuation */
940 }
941
942
943 /**
944  * Send keepalive packets for a connection.
945  *
946  * @param c Connection to keep alive..
947  * @param fwd Is this a FWD keepalive? (owner -> dest).
948  */
949 static void
950 send_connection_keepalive (struct CadetConnection *c, int fwd)
951 {
952   struct GNUNET_MessageHeader msg;
953   struct CadetFlowControl *fc;
954
955   LOG (GNUNET_ERROR_TYPE_INFO, "keepalive %s for connection %s\n",
956        GC_f2s (fwd), GCC_2s (c));
957
958   fc = fwd ? &c->fwd_fc : &c->bck_fc;
959   if (0 < fc->queue_n)
960   {
961     LOG (GNUNET_ERROR_TYPE_INFO, "not sending keepalive, traffic in queue\n");
962     return;
963   }
964
965   GNUNET_STATISTICS_update (stats, "# keepalives sent", 1, GNUNET_NO);
966
967   GNUNET_assert (NULL != c->t);
968   msg.size = htons (sizeof (msg));
969   msg.type = htons (GNUNET_MESSAGE_TYPE_CADET_KEEPALIVE);
970
971   GNUNET_assert (NULL ==
972                  GCT_send_prebuilt_message (&msg, c->t, c,
973                                             GNUNET_NO, NULL, NULL));
974 }
975
976
977 /**
978  * Send CONNECTION_{CREATE/ACK} packets for a connection.
979  *
980  * @param c Connection for which to send the message.
981  * @param fwd If #GNUNET_YES, send CREATE, otherwise send ACK.
982  */
983 static void
984 connection_recreate (struct CadetConnection *c, int fwd)
985 {
986   LOG (GNUNET_ERROR_TYPE_DEBUG, "sending connection recreate\n");
987   if (fwd)
988     GCC_send_create (c);
989   else
990     send_connection_ack (c, GNUNET_NO);
991 }
992
993
994 /**
995  * Generic connection timer management.
996  * Depending on the role of the peer in the connection will send the
997  * appropriate message (build or keepalive)
998  *
999  * @param c Conncetion to maintain.
1000  * @param fwd Is FWD?
1001  */
1002 static void
1003 connection_maintain (struct CadetConnection *c, int fwd)
1004 {
1005   if (GNUNET_NO != c->destroy)
1006   {
1007     LOG (GNUNET_ERROR_TYPE_INFO, "not sending keepalive, being destroyed\n");
1008     return;
1009   }
1010
1011   if (NULL == c->t)
1012   {
1013     GNUNET_break (0);
1014     GCC_debug (c, GNUNET_ERROR_TYPE_ERROR);
1015     return;
1016   }
1017
1018   if (CADET_TUNNEL_SEARCHING == GCT_get_cstate (c->t))
1019   {
1020     /* If status is SEARCHING, why is there a connection? Should be WAITING */
1021     GNUNET_break (0);
1022     GCT_debug (c->t, GNUNET_ERROR_TYPE_ERROR);
1023     LOG (GNUNET_ERROR_TYPE_INFO, "not sending keepalive, tunnel SEARCHING\n");
1024     schedule_next_keepalive (c, fwd);
1025     return;
1026   }
1027   switch (c->state)
1028   {
1029     case CADET_CONNECTION_NEW:
1030       GNUNET_break (0);
1031       /* fall-through */
1032     case CADET_CONNECTION_SENT:
1033       connection_recreate (c, fwd);
1034       break;
1035     case CADET_CONNECTION_READY:
1036       send_connection_keepalive (c, fwd);
1037       break;
1038     default:
1039       break;
1040   }
1041 }
1042
1043
1044
1045 /**
1046  * Keep the connection alive.
1047  *
1048  * @param c Connection to keep alive.
1049  * @param fwd Direction.
1050  * @param shutdown Are we shutting down? (Don't send traffic)
1051  *                 Non-zero value for true, not necessarily GNUNET_YES.
1052  */
1053 static void
1054 connection_keepalive (struct CadetConnection *c, int fwd, int shutdown)
1055 {
1056   LOG (GNUNET_ERROR_TYPE_DEBUG, "%s keepalive for %s\n",
1057        GC_f2s (fwd), GCC_2s (c));
1058
1059   if (fwd)
1060     c->fwd_maintenance_task = NULL;
1061   else
1062     c->bck_maintenance_task = NULL;
1063
1064   if (GNUNET_NO != shutdown)
1065     return;
1066
1067   connection_maintain (c, fwd);
1068
1069   /* Next execution will be scheduled by message_sent or _maintain*/
1070 }
1071
1072
1073 /**
1074  * Keep the connection alive in the FWD direction.
1075  *
1076  * @param cls Closure (connection to keepalive).
1077  * @param tc TaskContext.
1078  */
1079 static void
1080 connection_fwd_keepalive (void *cls,
1081                           const struct GNUNET_SCHEDULER_TaskContext *tc)
1082 {
1083   connection_keepalive ((struct CadetConnection *) cls,
1084                         GNUNET_YES,
1085                         tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN);
1086 }
1087
1088
1089 /**
1090  * Keep the connection alive in the BCK direction.
1091  *
1092  * @param cls Closure (connection to keepalive).
1093  * @param tc TaskContext.
1094  */
1095 static void
1096 connection_bck_keepalive (void *cls,
1097                           const struct GNUNET_SCHEDULER_TaskContext *tc)
1098 {
1099   connection_keepalive ((struct CadetConnection *) cls,
1100                         GNUNET_NO,
1101                         tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN);
1102 }
1103
1104
1105 /**
1106  * Schedule next keepalive task, taking in consideration
1107  * the connection state and number of retries.
1108  *
1109  * If the peer is not the origin, do nothing.
1110  *
1111  * @param c Connection for which to schedule the next keepalive.
1112  * @param fwd Direction for the next keepalive.
1113  */
1114 static void
1115 schedule_next_keepalive (struct CadetConnection *c, int fwd)
1116 {
1117   struct GNUNET_TIME_Relative delay;
1118   struct GNUNET_SCHEDULER_Task * *task_id;
1119   GNUNET_SCHEDULER_TaskCallback keepalive_task;
1120
1121   if (GNUNET_NO == GCC_is_origin (c, fwd))
1122     return;
1123
1124   /* Calculate delay to use, depending on the state of the connection */
1125   if (CADET_CONNECTION_READY == c->state)
1126   {
1127     delay = refresh_connection_time;
1128   }
1129   else
1130   {
1131     if (1 > c->create_retry)
1132       c->create_retry = 1;
1133     delay = GNUNET_TIME_relative_multiply (create_connection_time,
1134                                            c->create_retry);
1135     if (c->create_retry < 64)
1136       c->create_retry *= 2;
1137   }
1138
1139   /* Select direction-dependent parameters */
1140   if (GNUNET_YES == fwd)
1141   {
1142     task_id = &c->fwd_maintenance_task;
1143     keepalive_task = &connection_fwd_keepalive;
1144   }
1145   else
1146   {
1147     task_id = &c->bck_maintenance_task;
1148     keepalive_task = &connection_bck_keepalive;
1149   }
1150
1151   /* Check that no one scheduled it before us */
1152   if (NULL != *task_id)
1153   {
1154     /* No need for a _break. It can happen for instance when sending a SYNACK
1155      * for a duplicate SYN: the first SYNACK scheduled the task. */
1156     GNUNET_SCHEDULER_cancel (*task_id);
1157   }
1158
1159   /* Schedule the task */
1160   *task_id = GNUNET_SCHEDULER_add_delayed (delay, keepalive_task, c);
1161   LOG (GNUNET_ERROR_TYPE_DEBUG, "next keepalive in %s\n",
1162        GNUNET_STRINGS_relative_time_to_string (delay, GNUNET_YES));
1163 }
1164
1165
1166 /**
1167  * @brief Re-initiate traffic on this connection if necessary.
1168  *
1169  * Check if there is traffic queued towards this peer
1170  * and the core transmit handle is NULL (traffic was stalled).
1171  * If so, call core tmt rdy.
1172  *
1173  * @param c Connection on which initiate traffic.
1174  * @param fwd Is this about fwd traffic?
1175  */
1176 static void
1177 connection_unlock_queue (struct CadetConnection *c, int fwd)
1178 {
1179   struct CadetPeer *peer;
1180
1181   LOG (GNUNET_ERROR_TYPE_DEBUG, "connection_unlock_queue %s on %s\n",
1182        GC_f2s (fwd), GCC_2s (c));
1183
1184   if (GCC_is_terminal (c, fwd))
1185   {
1186     LOG (GNUNET_ERROR_TYPE_DEBUG, " is terminal, can unlock!\n");
1187     return;
1188   }
1189
1190   peer = get_hop (c, fwd);
1191   GCP_queue_unlock (peer, c);
1192 }
1193
1194
1195 /**
1196  * Cancel all transmissions that belong to a certain connection.
1197  *
1198  * If the connection is scheduled for destruction and no more messages are left,
1199  * the connection will be destroyed by the continuation call.
1200  *
1201  * @param c Connection which to cancel. Might be destroyed during this call.
1202  * @param fwd Cancel fwd traffic?
1203  */
1204 static void
1205 connection_cancel_queues (struct CadetConnection *c, int fwd)
1206 {
1207   struct CadetFlowControl *fc;
1208   struct CadetPeer *peer;
1209
1210   LOG (GNUNET_ERROR_TYPE_DEBUG,
1211        " *** Cancel %s queues for connection %s\n",
1212        GC_f2s (fwd), GCC_2s (c));
1213   if (NULL == c)
1214   {
1215     GNUNET_break (0);
1216     return;
1217   }
1218
1219   fc = fwd ? &c->fwd_fc : &c->bck_fc;
1220   if (NULL != fc->poll_task)
1221   {
1222     GNUNET_SCHEDULER_cancel (fc->poll_task);
1223     fc->poll_task = NULL;
1224     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** Cancel POLL in ccq for fc %p\n", fc);
1225   }
1226   peer = get_hop (c, fwd);
1227   GCP_queue_cancel (peer, c);
1228 }
1229
1230
1231 /**
1232  * Function called if a connection has been stalled for a while,
1233  * possibly due to a missed ACK. Poll the neighbor about its ACK status.
1234  *
1235  * @param cls Closure (poll ctx).
1236  * @param tc TaskContext.
1237  */
1238 static void
1239 connection_poll (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1240
1241
1242 /**
1243  * Callback called when a queued POLL message is sent.
1244  *
1245  * @param cls Closure (FC).
1246  * @param c Connection this message was on.
1247  * @param q Queue handler this call invalidates.
1248  * @param type Type of message sent.
1249  * @param fwd Was this a FWD going message?
1250  * @param size Size of the message.
1251  */
1252 static void
1253 poll_sent (void *cls,
1254            struct CadetConnection *c,
1255            struct CadetConnectionQueue *q,
1256            uint16_t type, int fwd, size_t size)
1257 {
1258   struct CadetFlowControl *fc = cls;
1259
1260   if (2 == c->destroy)
1261   {
1262     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL canceled on shutdown\n");
1263     return;
1264   }
1265   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL sent for , scheduling new one!\n");
1266   fc->poll_msg = NULL;
1267   fc->poll_time = GNUNET_TIME_STD_BACKOFF (fc->poll_time);
1268   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
1269                                                 &connection_poll, fc);
1270   LOG (GNUNET_ERROR_TYPE_DEBUG, " task %u\n", fc->poll_task);
1271
1272 }
1273
1274 /**
1275  * Function called if a connection has been stalled for a while,
1276  * possibly due to a missed ACK. Poll the neighbor about its ACK status.
1277  *
1278  * @param cls Closure (poll ctx).
1279  * @param tc TaskContext.
1280  */
1281 static void
1282 connection_poll (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1283 {
1284   struct CadetFlowControl *fc = cls;
1285   struct GNUNET_CADET_Poll msg;
1286   struct CadetConnection *c;
1287
1288   fc->poll_task = NULL;
1289   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1290   {
1291     return;
1292   }
1293
1294   c = fc->c;
1295   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** Polling connection %s %s\n",
1296        GCC_2s (c), fc == &c->fwd_fc ? "FWD" : "BCK");
1297
1298   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_POLL);
1299   msg.header.size = htons (sizeof (msg));
1300   msg.pid = htonl (fc->last_pid_sent);
1301   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** last pid sent: %u!\n", fc->last_pid_sent);
1302   fc->poll_msg =
1303       GCC_send_prebuilt_message (&msg.header, 0, fc->last_pid_sent, c,
1304                                  fc == &c->fwd_fc, GNUNET_YES, &poll_sent, fc);
1305   GNUNET_assert (NULL != fc->poll_msg);
1306 }
1307
1308
1309 /**
1310  * Resend all queued messages for a connection on other connections of the
1311  * same tunnel, if possible. The connection WILL BE DESTROYED by this function.
1312  *
1313  * @param c Connection whose messages to resend.
1314  * @param fwd Resend fwd messages?
1315  */
1316 static void
1317 resend_messages_and_destroy (struct CadetConnection *c, int fwd)
1318 {
1319   struct GNUNET_MessageHeader *out_msg;
1320   struct CadetTunnel *t = c->t;
1321   struct CadetPeer *neighbor;
1322   unsigned int pending;
1323   int destroyed;
1324
1325   c->state = CADET_CONNECTION_DESTROYED;
1326   c->destroy = GNUNET_YES;
1327
1328   destroyed = GNUNET_NO;
1329   neighbor = get_hop (c, fwd);
1330   pending = c->pending_messages;
1331
1332   while (NULL != (out_msg = GCP_connection_pop (neighbor, c, &destroyed)))
1333   {
1334     if (NULL != t)
1335       GCT_resend_message (out_msg, t);
1336     GNUNET_free (out_msg);
1337   }
1338
1339   /* All pending messages should have been popped,
1340    * and the connection destroyed by the continuation.
1341    */
1342   if (GNUNET_YES != destroyed)
1343   {
1344     if (0 != pending)
1345     {
1346       GNUNET_break (0);
1347       GCC_debug (c, GNUNET_ERROR_TYPE_ERROR);
1348       if (NULL != t) GCT_debug (t, GNUNET_ERROR_TYPE_ERROR);
1349     }
1350     GCC_destroy (c);
1351   }
1352 }
1353
1354
1355 /**
1356  * Timeout function due to lack of keepalive/traffic from the owner.
1357  * Destroys connection if called.
1358  *
1359  * @param cls Closure (connection to destroy).
1360  * @param tc TaskContext.
1361  */
1362 static void
1363 connection_fwd_timeout (void *cls,
1364                         const struct GNUNET_SCHEDULER_TaskContext *tc)
1365 {
1366   struct CadetConnection *c = cls;
1367
1368   c->fwd_maintenance_task = NULL;
1369   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1370     return;
1371
1372   LOG (GNUNET_ERROR_TYPE_INFO, "Connection %s FWD timed out. Destroying.\n",
1373        GCC_2s (c));
1374   GCC_debug (c, GNUNET_ERROR_TYPE_DEBUG);
1375
1376   if (GCC_is_origin (c, GNUNET_YES)) /* If local, leave. */
1377   {
1378     GNUNET_break (0);
1379     return;
1380   }
1381
1382   /* If dest, salvage queued traffic. */
1383   if (GCC_is_origin (c, GNUNET_NO) && 0 < c->bck_fc.queue_n)
1384   {
1385     send_broken_unknown (&c->id, &my_full_id, NULL,
1386                          GCP_get_id( get_prev_hop (c)));
1387     resend_messages_and_destroy (c, GNUNET_NO);
1388     return;
1389   }
1390
1391   GCC_destroy (c);
1392 }
1393
1394
1395 /**
1396  * Timeout function due to lack of keepalive/traffic from the destination.
1397  * Destroys connection if called.
1398  *
1399  * FIXME refactor and merge with connection_fwd_timeout.
1400  *
1401  * @param cls Closure (connection to destroy).
1402  * @param tc TaskContext
1403  */
1404 static void
1405 connection_bck_timeout (void *cls,
1406                         const struct GNUNET_SCHEDULER_TaskContext *tc)
1407 {
1408   struct CadetConnection *c = cls;
1409
1410   c->bck_maintenance_task = NULL;
1411   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1412     return;
1413
1414   LOG (GNUNET_ERROR_TYPE_INFO, "Connection %s BCK timed out. Destroying.\n",
1415        GCC_2s (c));
1416
1417   if (GCC_is_origin (c, GNUNET_NO)) /* If local, leave. */
1418   {
1419     GNUNET_break (0);
1420     return;
1421   }
1422
1423   /* If dest, salvage queued traffic. */
1424   if (GCC_is_origin (c, GNUNET_YES) && 0 < c->fwd_fc.queue_n)
1425   {
1426     send_broken_unknown (&c->id, &my_full_id, NULL,
1427                          GCP_get_id( get_next_hop (c)));
1428     resend_messages_and_destroy (c, GNUNET_YES);
1429     return;
1430   }
1431
1432   GCC_destroy (c);
1433 }
1434
1435
1436 /**
1437  * Resets the connection timeout task, some other message has done the
1438  * task's job.
1439  * - For the first peer on the direction this means to send
1440  *   a keepalive or a path confirmation message (either create or ACK).
1441  * - For all other peers, this means to destroy the connection,
1442  *   due to lack of activity.
1443  * Starts the timeout if no timeout was running (connection just created).
1444  *
1445  * @param c Connection whose timeout to reset.
1446  * @param fwd Is this forward?
1447  *
1448  * TODO use heap to improve efficiency of scheduler.
1449  */
1450 static void
1451 connection_reset_timeout (struct CadetConnection *c, int fwd)
1452 {
1453   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connection %s reset timeout\n", GC_f2s (fwd));
1454
1455   if (GCC_is_origin (c, fwd)) /* Startpoint */
1456   {
1457     schedule_next_keepalive (c, fwd);
1458   }
1459   else /* Relay, endpoint. */
1460   {
1461     struct GNUNET_TIME_Relative delay;
1462     struct GNUNET_SCHEDULER_Task * *ti;
1463     GNUNET_SCHEDULER_TaskCallback f;
1464
1465     ti = fwd ? &c->fwd_maintenance_task : &c->bck_maintenance_task;
1466
1467     if (NULL != *ti)
1468       GNUNET_SCHEDULER_cancel (*ti);
1469     delay = GNUNET_TIME_relative_multiply (refresh_connection_time, 4);
1470     LOG (GNUNET_ERROR_TYPE_DEBUG, "  timing out in %s\n",
1471          GNUNET_STRINGS_relative_time_to_string (delay, GNUNET_NO));
1472     f = fwd ? &connection_fwd_timeout : &connection_bck_timeout;
1473     *ti = GNUNET_SCHEDULER_add_delayed (delay, f, c);
1474   }
1475 }
1476
1477
1478 /**
1479  * Add the connection to the list of both neighbors.
1480  *
1481  * @param c Connection.
1482  *
1483  * @return #GNUNET_OK if everything went fine
1484  *         #GNUNET_SYSERR if the was an error and @c c is malformed.
1485  */
1486 static int
1487 register_neighbors (struct CadetConnection *c)
1488 {
1489   struct CadetPeer *next_peer;
1490   struct CadetPeer *prev_peer;
1491
1492   next_peer = get_next_hop (c);
1493   prev_peer = get_prev_hop (c);
1494
1495   LOG (GNUNET_ERROR_TYPE_DEBUG, "register neighbors for connection %s\n",
1496        GCC_2s (c));
1497   path_debug (c->path);
1498   LOG (GNUNET_ERROR_TYPE_DEBUG, "own pos %u\n", c->own_pos);
1499   LOG (GNUNET_ERROR_TYPE_DEBUG, "putting connection %s to next peer %p\n",
1500        GCC_2s (c), next_peer);
1501   LOG (GNUNET_ERROR_TYPE_DEBUG, "next peer %p %s\n", next_peer, GCP_2s (next_peer));
1502   LOG (GNUNET_ERROR_TYPE_DEBUG, "putting connection %s to prev peer %p\n",
1503        GCC_2s (c), prev_peer);
1504   LOG (GNUNET_ERROR_TYPE_DEBUG, "prev peer %p %s\n", prev_peer, GCP_2s (prev_peer));
1505
1506   if (GNUNET_NO == GCP_is_neighbor (next_peer)
1507       || GNUNET_NO == GCP_is_neighbor (prev_peer))
1508   {
1509     if (GCC_is_origin (c, GNUNET_YES))
1510       GNUNET_STATISTICS_update (stats, "# local bad paths", 1, GNUNET_NO);
1511     GNUNET_STATISTICS_update (stats, "# bad paths", 1, GNUNET_NO);
1512
1513     LOG (GNUNET_ERROR_TYPE_DEBUG, "  register neighbors failed\n");
1514     LOG (GNUNET_ERROR_TYPE_DEBUG, "  prev: %s, neighbor?: %d\n",
1515          GCP_2s (prev_peer), GCP_is_neighbor (prev_peer));
1516     LOG (GNUNET_ERROR_TYPE_DEBUG, "  next: %s, neighbor?: %d\n",
1517          GCP_2s (next_peer), GCP_is_neighbor (next_peer));
1518     return GNUNET_SYSERR;
1519   }
1520
1521   GCP_add_connection (next_peer, c);
1522   GCP_add_connection (prev_peer, c);
1523
1524   return GNUNET_OK;
1525 }
1526
1527
1528 /**
1529  * Remove the connection from the list of both neighbors.
1530  *
1531  * @param c Connection.
1532  */
1533 static void
1534 unregister_neighbors (struct CadetConnection *c)
1535 {
1536   struct CadetPeer *peer;
1537
1538   peer = get_next_hop (c);
1539   if (GNUNET_OK != GCP_remove_connection (peer, c))
1540   {
1541     LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate: %u\n", c->state);
1542     if (NULL != c->t) GCT_debug (c->t, GNUNET_ERROR_TYPE_DEBUG);
1543   }
1544
1545   peer = get_prev_hop (c);
1546   if (GNUNET_OK != GCP_remove_connection (peer, c))
1547   {
1548     LOG (GNUNET_ERROR_TYPE_DEBUG, "  cstate: %u\n", c->state);
1549     if (NULL != c->t) GCT_debug (c->t, GNUNET_ERROR_TYPE_DEBUG);
1550   }
1551 }
1552
1553
1554 /**
1555  * Bind the connection to the peer and the tunnel to that peer.
1556  *
1557  * If the peer has no tunnel, create one. Update tunnel and connection
1558  * data structres to reflect new status.
1559  *
1560  * @param c Connection.
1561  * @param peer Peer.
1562  */
1563 static void
1564 add_to_peer (struct CadetConnection *c, struct CadetPeer *peer)
1565 {
1566   GCP_add_tunnel (peer);
1567   c->t = GCP_get_tunnel (peer);
1568   GCT_add_connection (c->t, c);
1569 }
1570
1571
1572
1573 /**
1574  * Iterator to compare each connection's path with the path of a new connection.
1575  *
1576  * If the connection conincides, the c member of path is set to the connection
1577  * and the destroy flag of the connection is set.
1578  *
1579  * @param cls Closure (new path).
1580  * @param c Connection in the tunnel to check.
1581  */
1582 static void
1583 check_path (void *cls, struct CadetConnection *c)
1584 {
1585   struct CadetConnection *new_conn = cls;
1586   struct CadetPeerPath *path = new_conn->path;
1587
1588   LOG (GNUNET_ERROR_TYPE_DEBUG, "  checking %s (%p), length %u\n",
1589        GCC_2s (c), c, c->path->length);
1590
1591   if (c != new_conn
1592       && c->destroy == GNUNET_NO
1593       && c->state != CADET_CONNECTION_BROKEN
1594       && c->state != CADET_CONNECTION_DESTROYED
1595       && path_equivalent (path, c->path))
1596   {
1597     new_conn->destroy = GNUNET_YES;
1598     new_conn->path->c = c;
1599     LOG (GNUNET_ERROR_TYPE_DEBUG, "  MATCH!\n");
1600   }
1601 }
1602
1603 /**
1604  * Finds out if this path is already being used by and existing connection.
1605  *
1606  * Checks the tunnel towards the first peer in the path to see if it contains
1607  * any connection with the same path.
1608  *
1609  * If the existing connection is ready, it is kept.
1610  * Otherwise if the sender has a smaller ID that ours, we accept it (and
1611  * the peer will eventually reject our attempt).
1612  *
1613  * @param path Path to check.
1614  *
1615  * @return GNUNET_YES if the tunnel has a connection with the same path,
1616  *         GNUNET_NO otherwise.
1617  */
1618 static int
1619 does_connection_exist (struct CadetConnection *conn)
1620 {
1621   struct CadetPeer *p;
1622   struct CadetTunnel *t;
1623   struct CadetConnection *c;
1624
1625   p = GCP_get_short (conn->path->peers[0]);
1626   t = GCP_get_tunnel (p);
1627   if (NULL == t)
1628     return GNUNET_NO;
1629
1630   LOG (GNUNET_ERROR_TYPE_DEBUG, "Checking for duplicates\n");
1631
1632   GCT_iterate_connections (t, &check_path, conn);
1633
1634   if (GNUNET_YES == conn->destroy)
1635   {
1636     c = conn->path->c;
1637     conn->destroy = GNUNET_NO;
1638     conn->path->c = conn;
1639     LOG (GNUNET_ERROR_TYPE_DEBUG, " found duplicate of %s\n", GCC_2s (conn));
1640     LOG (GNUNET_ERROR_TYPE_DEBUG, " duplicate: %s\n", GCC_2s (c));
1641     GCC_debug (c, GNUNET_ERROR_TYPE_DEBUG);
1642     if (CADET_CONNECTION_READY == c->state)
1643     {
1644       /* The other peer confirmed this connection,
1645        * they should not try to duplicate it. */
1646       GNUNET_break_op (0);
1647       return GNUNET_YES;
1648     }
1649
1650     if (GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, GCP_get_id (p)) > 0)
1651     {
1652       struct CadetPeer *neighbor;
1653
1654       LOG (GNUNET_ERROR_TYPE_DEBUG, " duplicate allowed (killing old)\n");
1655       if (GCC_is_origin (c, GNUNET_YES))
1656         neighbor = get_next_hop (c);
1657       else
1658         neighbor = get_prev_hop (c);
1659       send_broken_unknown (&c->id, &my_full_id, NULL,
1660                            GCP_get_id (neighbor));
1661       GCC_destroy (c);
1662       return GNUNET_NO;
1663     }
1664     else
1665       return GNUNET_YES;
1666   }
1667   else
1668   {
1669     LOG (GNUNET_ERROR_TYPE_DEBUG, " %s has no duplicates\n", GCC_2s (conn));
1670     return GNUNET_NO;
1671   }
1672 }
1673
1674
1675 /**
1676  * Log receipt of message on stderr (INFO level).
1677  *
1678  * @param message Message received.
1679  * @param peer Peer who sent the message.
1680  * @param hash Connection ID.
1681  */
1682 static void
1683 log_message (const struct GNUNET_MessageHeader *message,
1684              const struct GNUNET_PeerIdentity *peer,
1685              const struct GNUNET_CADET_Hash *hash)
1686 {
1687   uint16_t size;
1688
1689   size = ntohs (message->size);
1690   LOG (GNUNET_ERROR_TYPE_INFO, "\n");
1691   LOG (GNUNET_ERROR_TYPE_INFO, "\n");
1692   LOG (GNUNET_ERROR_TYPE_INFO, "<-- %s on connection %s from %s, %6u bytes\n",
1693        GC_m2s (ntohs (message->type)), GNUNET_h2s (GC_h2hc (hash)),
1694        GNUNET_i2s (peer), (unsigned int) size);
1695 }
1696
1697 /******************************************************************************/
1698 /********************************    API    ***********************************/
1699 /******************************************************************************/
1700
1701 /**
1702  * Core handler for connection creation.
1703  *
1704  * @param cls Closure (unused).
1705  * @param peer Sender (neighbor).
1706  * @param message Message.
1707  *
1708  * @return GNUNET_OK to keep the connection open,
1709  *         GNUNET_SYSERR to close it (signal serious error)
1710  */
1711 int
1712 GCC_handle_create (void *cls, const struct GNUNET_PeerIdentity *peer,
1713                    const struct GNUNET_MessageHeader *message)
1714 {
1715   struct GNUNET_CADET_ConnectionCreate *msg;
1716   struct GNUNET_PeerIdentity *id;
1717   struct GNUNET_CADET_Hash *cid;
1718   struct CadetPeerPath *path;
1719   struct CadetPeer *dest_peer;
1720   struct CadetPeer *orig_peer;
1721   struct CadetConnection *c;
1722   unsigned int own_pos;
1723   uint16_t size;
1724
1725   /* Check size */
1726   size = ntohs (message->size);
1727   if (size < sizeof (struct GNUNET_CADET_ConnectionCreate))
1728   {
1729     GNUNET_break_op (0);
1730     return GNUNET_OK;
1731   }
1732
1733   /* Calculate hops */
1734   size -= sizeof (struct GNUNET_CADET_ConnectionCreate);
1735   if (size % sizeof (struct GNUNET_PeerIdentity))
1736   {
1737     GNUNET_break_op (0);
1738     return GNUNET_OK;
1739   }
1740   if (0 != size % sizeof (struct GNUNET_PeerIdentity))
1741   {
1742     GNUNET_break_op (0);
1743     return GNUNET_OK;
1744   }
1745   size /= sizeof (struct GNUNET_PeerIdentity);
1746   if (1 > size)
1747   {
1748     GNUNET_break_op (0);
1749     return GNUNET_OK;
1750   }
1751   LOG (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
1752
1753   /* Get parameters */
1754   msg = (struct GNUNET_CADET_ConnectionCreate *) message;
1755   cid = &msg->cid;
1756   log_message (message, peer, cid);
1757   id = (struct GNUNET_PeerIdentity *) &msg[1];
1758   LOG (GNUNET_ERROR_TYPE_DEBUG, "    origin: %s\n", GNUNET_i2s (id));
1759
1760   /* Create connection */
1761   c = connection_get (cid);
1762   if (NULL == c)
1763   {
1764     path = path_build_from_peer_ids ((struct GNUNET_PeerIdentity *) &msg[1],
1765                                      size, myid, &own_pos);
1766     if (NULL == path)
1767       return GNUNET_OK;
1768
1769     if (0 == own_pos)
1770     {
1771       GNUNET_break_op (0);
1772       path_destroy (path);
1773       return GNUNET_OK;
1774     }
1775
1776     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
1777     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Creating connection\n");
1778     c = GCC_new (cid, NULL, path, own_pos);
1779     if (NULL == c)
1780     {
1781       if (path->length - 1 == own_pos)
1782       {
1783         /* If we are destination, why did the creation fail? */
1784         GNUNET_break (0);
1785         path_destroy (path);
1786         return GNUNET_OK;
1787       }
1788       send_broken_unknown (cid, &my_full_id,
1789                            GNUNET_PEER_resolve2 (path->peers[own_pos + 1]),
1790                            peer);
1791       path_destroy (path);
1792       return GNUNET_OK;
1793     }
1794     GCP_add_path_to_all (path, GNUNET_NO);
1795     connection_reset_timeout (c, GNUNET_YES);
1796   }
1797   else
1798   {
1799     path = path_duplicate (c->path);
1800   }
1801   if (CADET_CONNECTION_NEW == c->state)
1802     connection_change_state (c, CADET_CONNECTION_SENT);
1803
1804   /* Remember peers */
1805   dest_peer = GCP_get (&id[size - 1]);
1806   orig_peer = GCP_get (&id[0]);
1807
1808   /* Is it a connection to us? */
1809   if (c->own_pos == path->length - 1)
1810   {
1811     LOG (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
1812     GCP_add_path_to_origin (orig_peer, path_duplicate (path), GNUNET_YES);
1813
1814     add_to_peer (c, orig_peer);
1815     if (GNUNET_YES == does_connection_exist (c))
1816     {
1817       path_destroy (path);
1818       GCC_destroy (c);
1819       // FIXME use explicit duplicate
1820       send_broken_unknown (cid, &my_full_id, NULL, peer);
1821
1822       return GNUNET_OK;
1823     }
1824
1825     if (CADET_TUNNEL_NEW == GCT_get_cstate (c->t))
1826       GCT_change_cstate (c->t,  CADET_TUNNEL_WAITING);
1827
1828     send_connection_ack (c, GNUNET_NO);
1829     if (CADET_CONNECTION_SENT == c->state)
1830       connection_change_state (c, CADET_CONNECTION_ACK);
1831   }
1832   else
1833   {
1834     /* It's for somebody else! Retransmit. */
1835     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
1836     GCP_add_path (dest_peer, path_duplicate (path), GNUNET_NO);
1837     GCP_add_path_to_origin (orig_peer, path_duplicate (path), GNUNET_NO);
1838     GNUNET_assert (NULL == GCC_send_prebuilt_message (message, 0, 0, c,
1839                                                       GNUNET_YES, GNUNET_YES,
1840                                                       NULL, NULL));
1841   }
1842   path_destroy (path);
1843   return GNUNET_OK;
1844 }
1845
1846
1847 /**
1848  * Core handler for path confirmations.
1849  *
1850  * @param cls closure
1851  * @param message message
1852  * @param peer peer identity this notification is about
1853  *
1854  * @return GNUNET_OK to keep the connection open,
1855  *         GNUNET_SYSERR to close it (signal serious error)
1856  */
1857 int
1858 GCC_handle_confirm (void *cls, const struct GNUNET_PeerIdentity *peer,
1859                     const struct GNUNET_MessageHeader *message)
1860 {
1861   struct GNUNET_CADET_ConnectionACK *msg;
1862   struct CadetConnection *c;
1863   struct CadetPeerPath *p;
1864   struct CadetPeer *pi;
1865   enum CadetConnectionState oldstate;
1866   int fwd;
1867
1868   msg = (struct GNUNET_CADET_ConnectionACK *) message;
1869   log_message (message, peer, &msg->cid);
1870   c = connection_get (&msg->cid);
1871   if (NULL == c)
1872   {
1873     GNUNET_STATISTICS_update (stats, "# control on unknown connection",
1874                               1, GNUNET_NO);
1875     LOG (GNUNET_ERROR_TYPE_DEBUG, "  don't know the connection!\n");
1876     send_broken_unknown (&msg->cid, &my_full_id, NULL, peer);
1877     return GNUNET_OK;
1878   }
1879
1880   if (GNUNET_NO != c->destroy)
1881   {
1882     LOG (GNUNET_ERROR_TYPE_DEBUG, "  connection being destroyed\n");
1883     return GNUNET_OK;
1884   }
1885
1886   oldstate = c->state;
1887   LOG (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n", GNUNET_i2s (peer));
1888   pi = GCP_get (peer);
1889   if (get_next_hop (c) == pi)
1890   {
1891     LOG (GNUNET_ERROR_TYPE_DEBUG, "  SYNACK\n");
1892     fwd = GNUNET_NO;
1893     if (CADET_CONNECTION_SENT == oldstate)
1894       connection_change_state (c, CADET_CONNECTION_ACK);
1895   }
1896   else if (get_prev_hop (c) == pi)
1897   {
1898     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FINAL ACK\n");
1899     fwd = GNUNET_YES;
1900     connection_change_state (c, CADET_CONNECTION_READY);
1901   }
1902   else
1903   {
1904     GNUNET_break_op (0);
1905     return GNUNET_OK;
1906   }
1907
1908   connection_reset_timeout (c, fwd);
1909
1910   /* Add path to peers? */
1911   p = c->path;
1912   if (NULL != p)
1913   {
1914     GCP_add_path_to_all (p, GNUNET_YES);
1915   }
1916   else
1917   {
1918     GNUNET_break (0);
1919   }
1920
1921   /* Message for us as creator? */
1922   if (GCC_is_origin (c, GNUNET_YES))
1923   {
1924     if (GNUNET_NO != fwd)
1925     {
1926       GNUNET_break_op (0);
1927       return GNUNET_OK;
1928     }
1929     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Connection (SYN)ACK for us!\n");
1930
1931     /* If just created, cancel the short timeout and start a long one */
1932     if (CADET_CONNECTION_SENT == oldstate)
1933       connection_reset_timeout (c, GNUNET_YES);
1934
1935     /* Change connection state */
1936     connection_change_state (c, CADET_CONNECTION_READY);
1937     send_connection_ack (c, GNUNET_YES);
1938
1939     /* Change tunnel state, trigger KX */
1940     if (CADET_TUNNEL_WAITING == GCT_get_cstate (c->t))
1941       GCT_change_cstate (c->t, CADET_TUNNEL_READY);
1942
1943     return GNUNET_OK;
1944   }
1945
1946   /* Message for us as destination? */
1947   if (GCC_is_terminal (c, GNUNET_YES))
1948   {
1949     if (GNUNET_YES != fwd)
1950     {
1951       GNUNET_break_op (0);
1952       return GNUNET_OK;
1953     }
1954     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Connection ACK for us!\n");
1955
1956     /* If just created, cancel the short timeout and start a long one */
1957     if (CADET_CONNECTION_ACK == oldstate)
1958       connection_reset_timeout (c, GNUNET_NO);
1959
1960     /* Change tunnel state */
1961     if (CADET_TUNNEL_WAITING == GCT_get_cstate (c->t))
1962       GCT_change_cstate (c->t, CADET_TUNNEL_READY);
1963
1964     return GNUNET_OK;
1965   }
1966
1967   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1968   GNUNET_assert (NULL == GCC_send_prebuilt_message (message, 0, 0, c, fwd,
1969                                                     GNUNET_YES, NULL, NULL));
1970   return GNUNET_OK;
1971 }
1972
1973
1974 /**
1975  * Core handler for notifications of broken connections.
1976  *
1977  * @param cls Closure (unused).
1978  * @param id Peer identity of sending neighbor.
1979  * @param message Message.
1980  *
1981  * @return GNUNET_OK to keep the connection open,
1982  *         GNUNET_SYSERR to close it (signal serious error)
1983  */
1984 int
1985 GCC_handle_broken (void* cls,
1986                    const struct GNUNET_PeerIdentity* id,
1987                    const struct GNUNET_MessageHeader* message)
1988 {
1989   struct GNUNET_CADET_ConnectionBroken *msg;
1990   struct CadetConnection *c;
1991   struct CadetTunnel *t;
1992   int pending;
1993   int fwd;
1994
1995   msg = (struct GNUNET_CADET_ConnectionBroken *) message;
1996   log_message (message, id, &msg->cid);
1997   LOG (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
1998               GNUNET_i2s (&msg->peer1));
1999   LOG (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
2000               GNUNET_i2s (&msg->peer2));
2001   c = connection_get (&msg->cid);
2002   if (NULL == c)
2003   {
2004     LOG (GNUNET_ERROR_TYPE_DEBUG, "  duplicate CONNECTION_BROKEN\n");
2005     return GNUNET_OK;
2006   }
2007
2008   t = c->t;
2009
2010   fwd = is_fwd (c, id);
2011   c->destroy = GNUNET_YES;
2012   if (GCC_is_terminal (c, fwd))
2013   {
2014     struct CadetPeer *endpoint;
2015
2016     if (NULL == t)
2017     {
2018       /* A terminal connection should not have 't' set to NULL. */
2019       GNUNET_break (0);
2020       GCC_debug (c, GNUNET_ERROR_TYPE_ERROR);
2021       return GNUNET_OK;
2022     }
2023     endpoint = GCP_get_short (c->path->peers[c->path->length - 1]);
2024     path_invalidate (c->path);
2025     GCP_notify_broken_link (endpoint, &msg->peer1, &msg->peer2);
2026
2027     c->state = CADET_CONNECTION_BROKEN;
2028     GCT_remove_connection (t, c);
2029     c->t = NULL;
2030
2031     pending = c->pending_messages;
2032     if (0 < pending)
2033       resend_messages_and_destroy (c, !fwd);
2034     else
2035       GCC_destroy (c);
2036   }
2037   else
2038   {
2039     GNUNET_assert (NULL == GCC_send_prebuilt_message (message, 0, 0, c, fwd,
2040                                                       GNUNET_YES, NULL, NULL));
2041     connection_cancel_queues (c, !fwd);
2042   }
2043
2044   return GNUNET_OK;
2045 }
2046
2047
2048 /**
2049  * Core handler for tunnel destruction
2050  *
2051  * @param cls Closure (unused).
2052  * @param peer Peer identity of sending neighbor.
2053  * @param message Message.
2054  *
2055  * @return GNUNET_OK to keep the connection open,
2056  *         GNUNET_SYSERR to close it (signal serious error)
2057  */
2058 int
2059 GCC_handle_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
2060                     const struct GNUNET_MessageHeader *message)
2061 {
2062   struct GNUNET_CADET_ConnectionDestroy *msg;
2063   struct CadetConnection *c;
2064   int fwd;
2065
2066   msg = (struct GNUNET_CADET_ConnectionDestroy *) message;
2067   log_message (message, peer, &msg->cid);
2068   c = connection_get (&msg->cid);
2069   if (NULL == c)
2070   {
2071     /* Probably already got the message from another path,
2072      * destroyed the tunnel and retransmitted to children.
2073      * Safe to ignore.
2074      */
2075     GNUNET_STATISTICS_update (stats, "# control on unknown connection",
2076                               1, GNUNET_NO);
2077     LOG (GNUNET_ERROR_TYPE_DEBUG, "  connection unknown: already destroyed?\n");
2078     return GNUNET_OK;
2079   }
2080   fwd = is_fwd (c, peer);
2081   if (GNUNET_SYSERR == fwd)
2082   {
2083     GNUNET_break_op (0); /* FIXME */
2084     return GNUNET_OK;
2085   }
2086   if (GNUNET_NO == GCC_is_terminal (c, fwd))
2087     GNUNET_assert (NULL == GCC_send_prebuilt_message (message, 0, 0, c, fwd,
2088                                                       GNUNET_YES, NULL, NULL));
2089   else if (0 == c->pending_messages)
2090   {
2091     LOG (GNUNET_ERROR_TYPE_DEBUG, "  directly destroying connection!\n");
2092     GCC_destroy (c);
2093     return GNUNET_OK;
2094   }
2095   c->destroy = GNUNET_YES;
2096   c->state = CADET_CONNECTION_DESTROYED;
2097   if (NULL != c->t)
2098   {
2099     GCT_remove_connection (c->t, c);
2100     c->t = NULL;
2101   }
2102
2103   return GNUNET_OK;
2104 }
2105
2106
2107 /**
2108  * Check the message against internal state and test if it goes FWD or BCK.
2109  *
2110  * Updates the PID, state and timeout values for the connection.
2111  *
2112  * @param message Message to check. It must belong to an existing connection.
2113  * @param minimum_size The message cannot be smaller than this value.
2114  * @param cid Connection ID (even if @a c is NULL, the ID is still needed).
2115  * @param c Connection this message should belong. If NULL, check fails.
2116  * @param neighbor Neighbor that sent the message.
2117  */
2118 static int
2119 check_message (const struct GNUNET_MessageHeader *message,
2120                size_t minimum_size,
2121                const struct GNUNET_CADET_Hash* cid,
2122                struct CadetConnection *c,
2123                const struct GNUNET_PeerIdentity *neighbor,
2124                uint32_t pid)
2125 {
2126   GNUNET_PEER_Id neighbor_id;
2127   struct CadetFlowControl *fc;
2128   struct CadetPeer *hop;
2129   int fwd;
2130
2131   /* Check size */
2132   if (ntohs (message->size) < minimum_size)
2133   {
2134     GNUNET_break_op (0);
2135     return GNUNET_SYSERR;
2136   }
2137
2138   /* Check connection */
2139   if (NULL == c)
2140   {
2141     GNUNET_STATISTICS_update (stats, "# unknown connection", 1, GNUNET_NO);
2142     LOG (GNUNET_ERROR_TYPE_DEBUG, "%s on unknown connection %s\n",
2143          GC_m2s (ntohs (message->type)), GNUNET_h2s (GC_h2hc (cid)));
2144     send_broken_unknown (cid, &my_full_id, NULL, neighbor);
2145     return GNUNET_SYSERR;
2146   }
2147
2148   /* Check if origin is as expected */
2149   neighbor_id = GNUNET_PEER_search (neighbor);
2150   hop = get_prev_hop (c);
2151   if (neighbor_id == GCP_get_short_id (hop))
2152   {
2153     fwd = GNUNET_YES;
2154   }
2155   else
2156   {
2157     hop = get_next_hop (c);
2158     if (neighbor_id == GCP_get_short_id (hop))
2159     {
2160       fwd = GNUNET_NO;
2161     }
2162     else
2163     {
2164       /* Unexpected peer sending traffic on a connection. */
2165       GNUNET_break_op (0);
2166       return GNUNET_SYSERR;
2167     }
2168   }
2169
2170   /* Check PID */
2171   fc = fwd ? &c->bck_fc : &c->fwd_fc;
2172   LOG (GNUNET_ERROR_TYPE_DEBUG, " PID %u (expected %u - %u)\n",
2173        pid, fc->last_pid_recv + 1, fc->last_ack_sent);
2174   if (GC_is_pid_bigger (pid, fc->last_ack_sent))
2175   {
2176     GNUNET_break_op (0);
2177     GNUNET_STATISTICS_update (stats, "# unsolicited message", 1, GNUNET_NO);
2178     LOG (GNUNET_ERROR_TYPE_WARNING, "Received PID %u, (prev %u), ACK %u\n",
2179          pid, fc->last_pid_recv, fc->last_ack_sent);
2180     return GNUNET_SYSERR;
2181   }
2182   if (GC_is_pid_bigger (pid, fc->last_pid_recv))
2183   {
2184     unsigned int delta;
2185
2186     delta = pid - fc->last_pid_recv;
2187     fc->last_pid_recv = pid;
2188     fc->recv_bitmap <<= delta;
2189     fc->recv_bitmap |= 1;
2190   }
2191   else
2192   {
2193     GNUNET_STATISTICS_update (stats, "# out of order PID", 1, GNUNET_NO);
2194     if (GNUNET_NO == is_ooo_ok (fc->last_pid_recv, pid, fc->recv_bitmap))
2195     {
2196       LOG (GNUNET_ERROR_TYPE_WARNING, "PID %u not expected (%u+), dropping!\n",
2197            pid, fc->last_pid_recv - 31);
2198       return GNUNET_SYSERR;
2199     }
2200     fc->recv_bitmap |= get_recv_bitmask (fc->last_pid_recv, pid);
2201   }
2202
2203   /* Count as connection confirmation. */
2204   if (CADET_CONNECTION_SENT == c->state || CADET_CONNECTION_ACK == c->state)
2205   {
2206     connection_change_state (c, CADET_CONNECTION_READY);
2207     if (NULL != c->t)
2208     {
2209       if (CADET_TUNNEL_WAITING == GCT_get_cstate (c->t))
2210         GCT_change_cstate (c->t, CADET_TUNNEL_READY);
2211     }
2212   }
2213   connection_reset_timeout (c, fwd);
2214
2215   return fwd;
2216 }
2217
2218
2219 /**
2220  * Generic handler for cadet network encrypted traffic.
2221  *
2222  * @param peer Peer identity this notification is about.
2223  * @param msg Encrypted message.
2224  *
2225  * @return GNUNET_OK to keep the connection open,
2226  *         GNUNET_SYSERR to close it (signal serious error)
2227  */
2228 static int
2229 handle_cadet_encrypted (const struct GNUNET_PeerIdentity *peer,
2230                         const struct GNUNET_MessageHeader *message)
2231 {
2232   const struct GNUNET_CADET_Encrypted *msg;
2233   const struct GNUNET_CADET_Hash* cid;
2234   struct CadetConnection *c;
2235   size_t expected_size;
2236   uint32_t pid;
2237   uint32_t ttl;
2238   int fwd;
2239
2240   msg = (struct GNUNET_CADET_Encrypted *) message;
2241   cid = &msg->cid;
2242   log_message (message, peer, cid);
2243
2244   expected_size = sizeof (struct GNUNET_CADET_Encrypted)
2245                   + sizeof (struct GNUNET_MessageHeader);
2246   c = connection_get (cid);
2247   pid = ntohl (msg->pid);
2248   fwd = check_message (message, expected_size, cid, c, peer, pid);
2249
2250   /* If something went wrong, discard message. */
2251   if (GNUNET_SYSERR == fwd)
2252     return GNUNET_OK;
2253
2254   /* Is this message for us? */
2255   if (GCC_is_terminal (c, fwd))
2256   {
2257     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
2258
2259     if (NULL == c->t)
2260     {
2261       GNUNET_break (GNUNET_NO != c->destroy);
2262       return GNUNET_OK;
2263     }
2264     GCT_handle_encrypted (c->t, message);
2265     GCC_send_ack (c, fwd, GNUNET_NO);
2266     return GNUNET_OK;
2267   }
2268
2269   /* Message not for us: forward to next hop */
2270   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
2271   ttl = ntohl (msg->ttl);
2272   LOG (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
2273   if (ttl == 0)
2274   {
2275     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
2276     LOG (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
2277     GCC_send_ack (c, fwd, GNUNET_NO);
2278     return GNUNET_OK;
2279   }
2280
2281   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
2282   GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg->header, 0, 0, c, fwd,
2283                                                     GNUNET_NO, NULL, NULL));
2284
2285   return GNUNET_OK;
2286 }
2287
2288 /**
2289  * Generic handler for cadet network encrypted traffic.
2290  *
2291  * @param peer Peer identity this notification is about.
2292  * @param msg Encrypted message.
2293  *
2294  * @return GNUNET_OK to keep the connection open,
2295  *         GNUNET_SYSERR to close it (signal serious error)
2296  */
2297 static int
2298 handle_cadet_kx (const struct GNUNET_PeerIdentity *peer,
2299                  const struct GNUNET_CADET_KX *msg)
2300 {
2301   const struct GNUNET_CADET_Hash* cid;
2302   struct CadetConnection *c;
2303   size_t expected_size;
2304   int fwd;
2305
2306   cid = &msg->cid;
2307   log_message (&msg->header, peer, cid);
2308
2309   expected_size = sizeof (struct GNUNET_CADET_KX)
2310                   + sizeof (struct GNUNET_MessageHeader);
2311   c = connection_get (cid);
2312   fwd = check_message (&msg->header, expected_size, cid, c, peer, 0);
2313
2314   /* Is this message for us? */
2315   if (GCC_is_terminal (c, fwd))
2316   {
2317     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
2318     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
2319     if (NULL == c->t)
2320     {
2321       GNUNET_break (0);
2322       return GNUNET_OK;
2323     }
2324     GCT_handle_kx (c->t, &msg[1].header);
2325     return GNUNET_OK;
2326   }
2327
2328   /* Message not for us: forward to next hop */
2329   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
2330   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
2331   GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg->header, 0, 0, c, fwd,
2332                                                     GNUNET_NO, NULL, NULL));
2333
2334   return GNUNET_OK;
2335 }
2336
2337
2338 /**
2339  * Core handler for key exchange traffic (ephemeral key, ping, pong).
2340  *
2341  * @param cls Closure (unused).
2342  * @param message Message received.
2343  * @param peer Peer who sent the message.
2344  *
2345  * @return GNUNET_OK to keep the connection open,
2346  *         GNUNET_SYSERR to close it (signal serious error)
2347  */
2348 int
2349 GCC_handle_kx (void *cls, const struct GNUNET_PeerIdentity *peer,
2350                const struct GNUNET_MessageHeader *message)
2351 {
2352   return handle_cadet_kx (peer, (struct GNUNET_CADET_KX *) message);
2353 }
2354
2355
2356 /**
2357  * Core handler for encrypted cadet network traffic (channel mgmt, data).
2358  *
2359  * @param cls Closure (unused).
2360  * @param message Message received.
2361  * @param peer Peer who sent the message.
2362  *
2363  * @return GNUNET_OK to keep the connection open,
2364  *         GNUNET_SYSERR to close it (signal serious error)
2365  */
2366 int
2367 GCC_handle_encrypted (void *cls, const struct GNUNET_PeerIdentity *peer,
2368                       const struct GNUNET_MessageHeader *message)
2369 {
2370   return handle_cadet_encrypted (peer, message);
2371 }
2372
2373
2374 /**
2375  * Core handler for cadet network traffic point-to-point acks.
2376  *
2377  * @param cls closure
2378  * @param message message
2379  * @param peer peer identity this notification is about
2380  *
2381  * @return GNUNET_OK to keep the connection open,
2382  *         GNUNET_SYSERR to close it (signal serious error)
2383  */
2384 int
2385 GCC_handle_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
2386                 const struct GNUNET_MessageHeader *message)
2387 {
2388   struct GNUNET_CADET_ACK *msg;
2389   struct CadetConnection *c;
2390   struct CadetFlowControl *fc;
2391   GNUNET_PEER_Id id;
2392   uint32_t ack;
2393   int fwd;
2394
2395   msg = (struct GNUNET_CADET_ACK *) message;
2396   log_message (message, peer, &msg->cid);
2397   c = connection_get (&msg->cid);
2398   if (NULL == c)
2399   {
2400     GNUNET_STATISTICS_update (stats, "# ack on unknown connection", 1,
2401                               GNUNET_NO);
2402     send_broken_unknown (&msg->cid, &my_full_id, NULL, peer);
2403     return GNUNET_OK;
2404   }
2405
2406   /* Is this a forward or backward ACK? */
2407   id = GNUNET_PEER_search (peer);
2408   if (GCP_get_short_id (get_next_hop (c)) == id)
2409   {
2410     fc = &c->fwd_fc;
2411     fwd = GNUNET_YES;
2412   }
2413   else if (GCP_get_short_id (get_prev_hop (c)) == id)
2414   {
2415     fc = &c->bck_fc;
2416     fwd = GNUNET_NO;
2417   }
2418   else
2419   {
2420     GNUNET_break_op (0);
2421     return GNUNET_OK;
2422   }
2423
2424   ack = ntohl (msg->ack);
2425   LOG (GNUNET_ERROR_TYPE_DEBUG, " %s ACK %u (was %u)\n",
2426        GC_f2s (fwd), ack, fc->last_ack_recv);
2427   if (GC_is_pid_bigger (ack, fc->last_ack_recv))
2428     fc->last_ack_recv = ack;
2429
2430   /* Cancel polling if the ACK is big enough. */
2431   if (NULL != fc->poll_task &&
2432       GC_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
2433   {
2434     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Cancel poll\n");
2435     GNUNET_SCHEDULER_cancel (fc->poll_task);
2436     fc->poll_task = NULL;
2437     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
2438   }
2439
2440   connection_unlock_queue (c, fwd);
2441
2442   return GNUNET_OK;
2443 }
2444
2445
2446 /**
2447  * Core handler for cadet network traffic point-to-point ack polls.
2448  *
2449  * @param cls closure
2450  * @param message message
2451  * @param peer peer identity this notification is about
2452  *
2453  * @return GNUNET_OK to keep the connection open,
2454  *         GNUNET_SYSERR to close it (signal serious error)
2455  */
2456 int
2457 GCC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
2458                  const struct GNUNET_MessageHeader *message)
2459 {
2460   struct GNUNET_CADET_Poll *msg;
2461   struct CadetConnection *c;
2462   struct CadetFlowControl *fc;
2463   GNUNET_PEER_Id id;
2464   uint32_t pid;
2465   int fwd;
2466
2467   msg = (struct GNUNET_CADET_Poll *) message;
2468   log_message (message, peer, &msg->cid);
2469   c = connection_get (&msg->cid);
2470   if (NULL == c)
2471   {
2472     GNUNET_STATISTICS_update (stats, "# poll on unknown connection", 1,
2473                               GNUNET_NO);
2474     LOG (GNUNET_ERROR_TYPE_DEBUG, "POLL message on unknown connection %s!\n",
2475          GNUNET_h2s (GC_h2hc (&msg->cid)));
2476     send_broken_unknown (&msg->cid, &my_full_id, NULL, peer);
2477     return GNUNET_OK;
2478   }
2479
2480   /* Is this a forward or backward ACK?
2481    * Note: a poll should never be needed in a loopback case,
2482    * since there is no possiblility of packet loss there, so
2483    * this way of discerining FWD/BCK should not be a problem.
2484    */
2485   id = GNUNET_PEER_search (peer);
2486   if (GCP_get_short_id (get_next_hop (c)) == id)
2487   {
2488     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD FC\n");
2489     fc = &c->fwd_fc;
2490   }
2491   else if (GCP_get_short_id (get_prev_hop (c)) == id)
2492   {
2493     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK FC\n");
2494     fc = &c->bck_fc;
2495   }
2496   else
2497   {
2498     GNUNET_break_op (0);
2499     return GNUNET_OK;
2500   }
2501
2502   pid = ntohl (msg->pid);
2503   LOG (GNUNET_ERROR_TYPE_DEBUG, "  PID %u, OLD %u\n", pid, fc->last_pid_recv);
2504   fc->last_pid_recv = pid;
2505   fwd = fc == &c->bck_fc;
2506   GCC_send_ack (c, fwd, GNUNET_YES);
2507
2508   return GNUNET_OK;
2509 }
2510
2511
2512 /**
2513  * Send an ACK on the appropriate connection/channel, depending on
2514  * the direction and the position of the peer.
2515  *
2516  * @param c Which connection to send the hop-by-hop ACK.
2517  * @param fwd Is this a fwd ACK? (will go dest->root).
2518  * @param force Send the ACK even if suboptimal (e.g. requested by POLL).
2519  */
2520 void
2521 GCC_send_ack (struct CadetConnection *c, int fwd, int force)
2522 {
2523   unsigned int buffer;
2524
2525   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMC send %s ACK on %s\n",
2526        GC_f2s (fwd), GCC_2s (c));
2527
2528   if (NULL == c)
2529   {
2530     GNUNET_break (0);
2531     return;
2532   }
2533
2534   if (GNUNET_NO != c->destroy)
2535   {
2536     LOG (GNUNET_ERROR_TYPE_DEBUG, "  being destroyed, why bother...\n");
2537     return;
2538   }
2539
2540   /* Get available buffer space */
2541   if (GCC_is_terminal (c, fwd))
2542   {
2543     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from all channels\n");
2544     buffer = GCT_get_channels_buffer (c->t);
2545   }
2546   else
2547   {
2548     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from one connection\n");
2549     buffer = GCC_get_buffer (c, fwd);
2550   }
2551   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer available: %u\n", buffer);
2552   if (0 == buffer && GNUNET_NO == force)
2553     return;
2554
2555   /* Send available buffer space */
2556   if (GCC_is_origin (c, fwd))
2557   {
2558     GNUNET_assert (NULL != c->t);
2559     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on channels...\n");
2560     GCT_unchoke_channels (c->t);
2561   }
2562   else
2563   {
2564     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on connection\n");
2565     send_ack (c, buffer, fwd, force);
2566   }
2567 }
2568
2569
2570 /**
2571  * Initialize the connections subsystem
2572  *
2573  * @param c Configuration handle.
2574  */
2575 void
2576 GCC_init (const struct GNUNET_CONFIGURATION_Handle *c)
2577 {
2578   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
2579   if (GNUNET_OK !=
2580       GNUNET_CONFIGURATION_get_value_number (c, "CADET", "MAX_MSGS_QUEUE",
2581                                              &max_msgs_queue))
2582   {
2583     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2584                                "CADET", "MAX_MSGS_QUEUE", "MISSING");
2585     GNUNET_SCHEDULER_shutdown ();
2586     return;
2587   }
2588
2589   if (GNUNET_OK !=
2590       GNUNET_CONFIGURATION_get_value_number (c, "CADET", "MAX_CONNECTIONS",
2591                                              &max_connections))
2592   {
2593     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2594                                "CADET", "MAX_CONNECTIONS", "MISSING");
2595     GNUNET_SCHEDULER_shutdown ();
2596     return;
2597   }
2598
2599   if (GNUNET_OK !=
2600       GNUNET_CONFIGURATION_get_value_time (c, "CADET", "REFRESH_CONNECTION_TIME",
2601                                            &refresh_connection_time))
2602   {
2603     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2604                                "CADET", "REFRESH_CONNECTION_TIME", "MISSING");
2605     GNUNET_SCHEDULER_shutdown ();
2606     return;
2607   }
2608   create_connection_time = GNUNET_TIME_UNIT_SECONDS;
2609   connections = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_NO);
2610 }
2611
2612
2613 /**
2614  * Destroy each connection on shutdown.
2615  *
2616  * @param cls Closure (unused).
2617  * @param key Current key code (CID, unused).
2618  * @param value Value in the hash map (connection)
2619  *
2620  * @return #GNUNET_YES, because we should continue to iterate,
2621  */
2622 static int
2623 shutdown_iterator (void *cls,
2624                    const struct GNUNET_HashCode *key,
2625                    void *value)
2626 {
2627   struct CadetConnection *c = value;
2628
2629   GCC_destroy (c);
2630   return GNUNET_YES;
2631 }
2632
2633
2634 /**
2635  * Shut down the connections subsystem.
2636  */
2637 void
2638 GCC_shutdown (void)
2639 {
2640   GNUNET_CONTAINER_multihashmap_iterate (connections, &shutdown_iterator, NULL);
2641   GNUNET_CONTAINER_multihashmap_destroy (connections);
2642   connections = NULL;
2643 }
2644
2645
2646 /**
2647  * Create a connection.
2648  *
2649  * @param cid Connection ID (either created locally or imposed remotely).
2650  * @param t Tunnel this connection belongs to (or NULL);
2651  * @param path Path this connection has to use (copy is made).
2652  * @param own_pos Own position in the @c path path.
2653  *
2654  * @return Newly created connection, NULL in case of error (own id not in path).
2655  */
2656 struct CadetConnection *
2657 GCC_new (const struct GNUNET_CADET_Hash *cid,
2658          struct CadetTunnel *t,
2659          struct CadetPeerPath *path,
2660          unsigned int own_pos)
2661 {
2662   struct CadetConnection *c;
2663   struct CadetPeerPath *p;
2664
2665   p = path_duplicate (path);
2666   c = GNUNET_new (struct CadetConnection);
2667   c->id = *cid;
2668   GNUNET_assert (GNUNET_OK ==
2669                  GNUNET_CONTAINER_multihashmap_put (connections,
2670                                                     GCC_get_h (c), c,
2671                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
2672   fc_init (&c->fwd_fc);
2673   fc_init (&c->bck_fc);
2674   c->fwd_fc.c = c;
2675   c->bck_fc.c = c;
2676
2677   c->t = t;
2678   GNUNET_assert (own_pos <= p->length - 1);
2679   c->own_pos = own_pos;
2680   c->path = p;
2681   p->c = c;
2682
2683   if (GNUNET_OK != register_neighbors (c))
2684   {
2685     if (0 == own_pos)
2686     {
2687       path_invalidate (c->path);
2688       c->t = NULL;
2689       c->path = NULL;
2690     }
2691     GCC_destroy (c);
2692     return NULL;
2693   }
2694   LOG (GNUNET_ERROR_TYPE_INFO, "New connection %s\n", GCC_2s (c));
2695   return c;
2696 }
2697
2698
2699 void
2700 GCC_destroy (struct CadetConnection *c)
2701 {
2702   if (NULL == c)
2703   {
2704     GNUNET_break (0);
2705     return;
2706   }
2707
2708   if (2 == c->destroy) /* cancel queues -> GCP_queue_cancel -> q_destroy -> */
2709     return;            /* -> message_sent -> GCC_destroy. Don't loop. */
2710   c->destroy = 2;
2711
2712   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying connection %s\n", GCC_2s (c));
2713   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc's f: %p, b: %p\n",
2714        &c->fwd_fc, &c->bck_fc);
2715   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc tasks f: %u, b: %u\n",
2716        c->fwd_fc.poll_task, c->bck_fc.poll_task);
2717
2718   /* Cancel all traffic */
2719   if (NULL != c->path)
2720   {
2721     connection_cancel_queues (c, GNUNET_YES);
2722     connection_cancel_queues (c, GNUNET_NO);
2723     unregister_neighbors (c);
2724   }
2725
2726   /* Cancel maintainance task (keepalive/timeout) */
2727   if (NULL != c->fwd_fc.poll_msg)
2728   {
2729     GCC_cancel (c->fwd_fc.poll_msg);
2730     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL msg FWD canceled\n");
2731   }
2732   if (NULL != c->bck_fc.poll_msg)
2733   {
2734     GCC_cancel (c->bck_fc.poll_msg);
2735     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL msg BCK canceled\n");
2736   }
2737
2738   /* Delete from tunnel */
2739   if (NULL != c->t)
2740     GCT_remove_connection (c->t, c);
2741
2742   if (GNUNET_NO == GCC_is_origin (c, GNUNET_YES) && NULL != c->path)
2743     path_destroy (c->path);
2744   if (NULL != c->fwd_maintenance_task)
2745     GNUNET_SCHEDULER_cancel (c->fwd_maintenance_task);
2746   if (NULL != c->bck_maintenance_task)
2747     GNUNET_SCHEDULER_cancel (c->bck_maintenance_task);
2748   if (NULL != c->fwd_fc.poll_task)
2749   {
2750     GNUNET_SCHEDULER_cancel (c->fwd_fc.poll_task);
2751     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL FWD canceled\n");
2752   }
2753   if (NULL != c->bck_fc.poll_task)
2754   {
2755     GNUNET_SCHEDULER_cancel (c->bck_fc.poll_task);
2756     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL BCK canceled\n");
2757   }
2758
2759   GNUNET_break (GNUNET_YES ==
2760                 GNUNET_CONTAINER_multihashmap_remove (connections,
2761                                                       GCC_get_h (c), c));
2762
2763   GNUNET_STATISTICS_update (stats, "# connections", -1, GNUNET_NO);
2764   GNUNET_free (c);
2765 }
2766
2767 /**
2768  * Get the connection ID.
2769  *
2770  * @param c Connection to get the ID from.
2771  *
2772  * @return ID of the connection.
2773  */
2774 const struct GNUNET_CADET_Hash *
2775 GCC_get_id (const struct CadetConnection *c)
2776 {
2777   return &c->id;
2778 }
2779
2780
2781 /**
2782  * Get the connection ID.
2783  *
2784  * @param c Connection to get the ID from.
2785  *
2786  * @return ID of the connection.
2787  */
2788 const struct GNUNET_HashCode *
2789 GCC_get_h (const struct CadetConnection *c)
2790 {
2791   return GC_h2hc (&c->id);
2792 }
2793
2794
2795 /**
2796  * Get the connection path.
2797  *
2798  * @param c Connection to get the path from.
2799  *
2800  * @return path used by the connection.
2801  */
2802 const struct CadetPeerPath *
2803 GCC_get_path (const struct CadetConnection *c)
2804 {
2805   if (GNUNET_NO == c->destroy)
2806     return c->path;
2807   return NULL;
2808 }
2809
2810
2811 /**
2812  * Get the connection state.
2813  *
2814  * @param c Connection to get the state from.
2815  *
2816  * @return state of the connection.
2817  */
2818 enum CadetConnectionState
2819 GCC_get_state (const struct CadetConnection *c)
2820 {
2821   return c->state;
2822 }
2823
2824 /**
2825  * Get the connection tunnel.
2826  *
2827  * @param c Connection to get the tunnel from.
2828  *
2829  * @return tunnel of the connection.
2830  */
2831 struct CadetTunnel *
2832 GCC_get_tunnel (const struct CadetConnection *c)
2833 {
2834   return c->t;
2835 }
2836
2837
2838 /**
2839  * Get free buffer space in a connection.
2840  *
2841  * @param c Connection.
2842  * @param fwd Is query about FWD traffic?
2843  *
2844  * @return Free buffer space [0 - max_msgs_queue/max_connections]
2845  */
2846 unsigned int
2847 GCC_get_buffer (struct CadetConnection *c, int fwd)
2848 {
2849   struct CadetFlowControl *fc;
2850
2851   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2852
2853   return (fc->queue_max - fc->queue_n);
2854 }
2855
2856 /**
2857  * Get how many messages have we allowed to send to us from a direction.
2858  *
2859  * @param c Connection.
2860  * @param fwd Are we asking about traffic from FWD (BCK messages)?
2861  *
2862  * @return last_ack_sent - last_pid_recv
2863  */
2864 unsigned int
2865 GCC_get_allowed (struct CadetConnection *c, int fwd)
2866 {
2867   struct CadetFlowControl *fc;
2868
2869   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2870   if (CADET_CONNECTION_READY != c->state
2871       || GC_is_pid_bigger (fc->last_pid_recv, fc->last_ack_sent))
2872   {
2873     return 0;
2874   }
2875   return (fc->last_ack_sent - fc->last_pid_recv);
2876 }
2877
2878 /**
2879  * Get messages queued in a connection.
2880  *
2881  * @param c Connection.
2882  * @param fwd Is query about FWD traffic?
2883  *
2884  * @return Number of messages queued.
2885  */
2886 unsigned int
2887 GCC_get_qn (struct CadetConnection *c, int fwd)
2888 {
2889   struct CadetFlowControl *fc;
2890
2891   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2892
2893   return fc->queue_n;
2894 }
2895
2896
2897 /**
2898  * Get next PID to use.
2899  *
2900  * @param c Connection.
2901  * @param fwd Is query about FWD traffic?
2902  *
2903  * @return Last PID used + 1.
2904  */
2905 unsigned int
2906 GCC_get_pid (struct CadetConnection *c, int fwd)
2907 {
2908   struct CadetFlowControl *fc;
2909
2910   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2911
2912   return fc->last_pid_sent + 1;
2913 }
2914
2915
2916 /**
2917  * Allow the connection to advertise a buffer of the given size.
2918  *
2919  * The connection will send an @c fwd ACK message (so: in direction !fwd)
2920  * allowing up to last_pid_recv + buffer.
2921  *
2922  * @param c Connection.
2923  * @param buffer How many more messages the connection can accept.
2924  * @param fwd Is this about FWD traffic? (The ack will go dest->root).
2925  */
2926 void
2927 GCC_allow (struct CadetConnection *c, unsigned int buffer, int fwd)
2928 {
2929   LOG (GNUNET_ERROR_TYPE_DEBUG, "  allowing %s %u messages %s\n",
2930        GCC_2s (c), buffer, GC_f2s (fwd));
2931   send_ack (c, buffer, fwd, GNUNET_NO);
2932 }
2933
2934
2935 /**
2936  * Notify other peers on a connection of a broken link. Mark connections
2937  * to destroy after all traffic has been sent.
2938  *
2939  * @param c Connection on which there has been a disconnection.
2940  * @param peer Peer that disconnected.
2941  */
2942 void
2943 GCC_notify_broken (struct CadetConnection *c,
2944                    struct CadetPeer *peer)
2945 {
2946   struct CadetPeer *hop;
2947   int fwd;
2948
2949   LOG (GNUNET_ERROR_TYPE_DEBUG,
2950        " notify broken on %s due to %s disconnect\n",
2951        GCC_2s (c), GCP_2s (peer));
2952
2953   hop = get_prev_hop (c);
2954   if (NULL == hop)
2955   {
2956     /* Path was NULL, we should have deleted the connection. */
2957     GNUNET_break (0);
2958     return;
2959   }
2960
2961   fwd = (peer == hop);
2962   if (GNUNET_YES == GCC_is_terminal (c, fwd))
2963   {
2964     /* Local shutdown, no one to notify about this. */
2965     GCC_destroy (c);
2966     return;
2967   }
2968   if (GNUNET_NO == c->destroy)
2969     send_broken (c, &my_full_id, GCP_get_id (peer), fwd);
2970
2971   /* Connection will have at least one pending message
2972    * (the one we just scheduled), so no point in checking whether to
2973    * destroy immediately. */
2974   c->destroy = GNUNET_YES;
2975   c->state = CADET_CONNECTION_DESTROYED;
2976
2977   /**
2978    * Cancel all queues, if no message is left, connection will be destroyed.
2979    */
2980   connection_cancel_queues (c, !fwd);
2981
2982   return;
2983 }
2984
2985
2986 /**
2987  * Is this peer the first one on the connection?
2988  *
2989  * @param c Connection.
2990  * @param fwd Is this about fwd traffic?
2991  *
2992  * @return #GNUNET_YES if origin, #GNUNET_NO if relay/terminal.
2993  */
2994 int
2995 GCC_is_origin (struct CadetConnection *c, int fwd)
2996 {
2997   if (!fwd && c->path->length - 1 == c->own_pos )
2998     return GNUNET_YES;
2999   if (fwd && 0 == c->own_pos)
3000     return GNUNET_YES;
3001   return GNUNET_NO;
3002 }
3003
3004
3005 /**
3006  * Is this peer the last one on the connection?
3007  *
3008  * @param c Connection.
3009  * @param fwd Is this about fwd traffic?
3010  *            Note that the ROOT is the terminal for BCK traffic!
3011  *
3012  * @return #GNUNET_YES if terminal, #GNUNET_NO if relay/origin.
3013  */
3014 int
3015 GCC_is_terminal (struct CadetConnection *c, int fwd)
3016 {
3017   return GCC_is_origin (c, !fwd);
3018 }
3019
3020
3021 /**
3022  * See if we are allowed to send by the next hop in the given direction.
3023  *
3024  * @param c Connection.
3025  * @param fwd Is this about fwd traffic?
3026  *
3027  * @return #GNUNET_YES in case it's OK to send.
3028  */
3029 int
3030 GCC_is_sendable (struct CadetConnection *c, int fwd)
3031 {
3032   struct CadetFlowControl *fc;
3033
3034   LOG (GNUNET_ERROR_TYPE_DEBUG, " checking sendability of %s traffic on %s\n",
3035        GC_f2s (fwd), GCC_2s (c));
3036   if (NULL == c)
3037   {
3038     GNUNET_break (0);
3039     return GNUNET_YES;
3040   }
3041   fc = fwd ? &c->fwd_fc : &c->bck_fc;
3042   LOG (GNUNET_ERROR_TYPE_DEBUG,
3043        " last ack recv: %u, last pid sent: %u\n",
3044        fc->last_ack_recv, fc->last_pid_sent);
3045   if (GC_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
3046   {
3047     LOG (GNUNET_ERROR_TYPE_DEBUG, " sendable\n");
3048     return GNUNET_YES;
3049   }
3050   LOG (GNUNET_ERROR_TYPE_DEBUG, " not sendable\n");
3051   return GNUNET_NO;
3052 }
3053
3054
3055 /**
3056  * Check if this connection is a direct one (never trim a direct connection).
3057  *
3058  * @param c Connection.
3059  *
3060  * @return #GNUNET_YES in case it's a direct connection, #GNUNET_NO otherwise.
3061  */
3062 int
3063 GCC_is_direct (struct CadetConnection *c)
3064 {
3065   return (c->path->length == 2) ? GNUNET_YES : GNUNET_NO;
3066 }
3067
3068 /**
3069  * Sends an already built message on a connection, properly registering
3070  * all used resources.
3071  *
3072  * @param message Message to send. Function makes a copy of it.
3073  *                If message is not hop-by-hop, decrements TTL of copy.
3074  * @param payload_type Type of payload, in case the message is encrypted.
3075  * @param c Connection on which this message is transmitted.
3076  * @param fwd Is this a fwd message?
3077  * @param force Force the connection to accept the message (buffer overfill).
3078  * @param cont Continuation called once message is sent. Can be NULL.
3079  * @param cont_cls Closure for @c cont.
3080  *
3081  * @return Handle to cancel the message before it's sent.
3082  *         NULL on error or if @c cont is NULL.
3083  *         Invalid on @c cont call.
3084  */
3085 struct CadetConnectionQueue *
3086 GCC_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
3087                            uint16_t payload_type, uint32_t payload_id,
3088                            struct CadetConnection *c, int fwd, int force,
3089                            GCC_sent cont, void *cont_cls)
3090 {
3091   struct CadetFlowControl *fc;
3092   struct CadetConnectionQueue *q;
3093   void *data;
3094   size_t size;
3095   uint16_t type;
3096   int droppable;
3097
3098   size = ntohs (message->size);
3099   data = GNUNET_malloc (size);
3100   memcpy (data, message, size);
3101   type = ntohs (message->type);
3102   LOG (GNUNET_ERROR_TYPE_INFO, "--> %s (%s %9u) on connection %s (%u bytes)\n",
3103        GC_m2s (type), GC_m2s (payload_type), payload_id, GCC_2s (c), size);
3104
3105   fc = fwd ? &c->fwd_fc : &c->bck_fc;
3106   droppable = GNUNET_NO == force;
3107   switch (type)
3108   {
3109     struct GNUNET_CADET_Encrypted *emsg;
3110     struct GNUNET_CADET_KX        *kmsg;
3111     struct GNUNET_CADET_ACK       *amsg;
3112     struct GNUNET_CADET_Poll      *pmsg;
3113     struct GNUNET_CADET_ConnectionDestroy *dmsg;
3114     struct GNUNET_CADET_ConnectionBroken  *bmsg;
3115     uint32_t ttl;
3116
3117     case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
3118       emsg = (struct GNUNET_CADET_Encrypted *) data;
3119       ttl = ntohl (emsg->ttl);
3120       if (0 == ttl)
3121       {
3122         GNUNET_break_op (0);
3123         GNUNET_free (data);
3124         return NULL;
3125       }
3126       emsg->cid = c->id;
3127       emsg->ttl = htonl (ttl - 1);
3128       emsg->pid = htonl (0);
3129       LOG (GNUNET_ERROR_TYPE_DEBUG, "  Q_N+ %p %u\n", fc, fc->queue_n);
3130       LOG (GNUNET_ERROR_TYPE_DEBUG, "last pid sent %u\n", fc->last_pid_sent);
3131       LOG (GNUNET_ERROR_TYPE_DEBUG, "     ack recv %u\n", fc->last_ack_recv);
3132       if (GNUNET_YES == droppable)
3133       {
3134         fc->queue_n++;
3135       }
3136       else
3137       {
3138         LOG (GNUNET_ERROR_TYPE_DEBUG, "  not droppable, Q_N stays the same\n");
3139       }
3140       if (GC_is_pid_bigger (fc->last_pid_sent + 1, fc->last_ack_recv))
3141       {
3142         GCC_start_poll (c, fwd);
3143       }
3144       break;
3145
3146     case GNUNET_MESSAGE_TYPE_CADET_KX:
3147       kmsg = (struct GNUNET_CADET_KX *) data;
3148       kmsg->cid = c->id;
3149       break;
3150
3151     case GNUNET_MESSAGE_TYPE_CADET_ACK:
3152       amsg = (struct GNUNET_CADET_ACK *) data;
3153       amsg->cid = c->id;
3154       LOG (GNUNET_ERROR_TYPE_DEBUG, " ack %u\n", ntohl (amsg->ack));
3155       droppable = GNUNET_NO;
3156       break;
3157
3158     case GNUNET_MESSAGE_TYPE_CADET_POLL:
3159       pmsg = (struct GNUNET_CADET_Poll *) data;
3160       pmsg->cid = c->id;
3161       LOG (GNUNET_ERROR_TYPE_DEBUG, " poll %u\n", ntohl (pmsg->pid));
3162       droppable = GNUNET_NO;
3163       break;
3164
3165     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY:
3166       dmsg = (struct GNUNET_CADET_ConnectionDestroy *) data;
3167       dmsg->cid = c->id;
3168       break;
3169
3170     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN:
3171       bmsg = (struct GNUNET_CADET_ConnectionBroken *) data;
3172       bmsg->cid = c->id;
3173       break;
3174
3175     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
3176     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
3177       break;
3178
3179     default:
3180       GNUNET_break (0);
3181       GNUNET_free (data);
3182       return NULL;
3183   }
3184
3185   if (fc->queue_n > fc->queue_max && droppable)
3186   {
3187     GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
3188                               1, GNUNET_NO);
3189     GNUNET_break (0);
3190     LOG (GNUNET_ERROR_TYPE_DEBUG, "queue full: %u/%u\n",
3191          fc->queue_n, fc->queue_max);
3192     if (GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED == type)
3193     {
3194       fc->queue_n--;
3195     }
3196     GNUNET_free (data);
3197     return NULL; /* Drop this message */
3198   }
3199
3200   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %s %u\n",
3201        GCC_2s (c), c->pending_messages);
3202   c->pending_messages++;
3203
3204   q = GNUNET_new (struct CadetConnectionQueue);
3205   q->forced = !droppable;
3206   q->q = GCP_queue_add (get_hop (c, fwd), data, type, payload_type, payload_id,
3207                         size, c, fwd, &conn_message_sent, q);
3208   if (NULL == q->q)
3209   {
3210     LOG (GNUNET_ERROR_TYPE_DEBUG, "dropping msg on %s, NULL q\n", GCC_2s (c));
3211     GNUNET_free (data);
3212     GNUNET_free (q);
3213     return NULL;
3214   }
3215   q->cont = cont;
3216   q->cont_cls = cont_cls;
3217   return (NULL == cont) ? NULL : q;
3218 }
3219
3220
3221 /**
3222  * Cancel a previously sent message while it's in the queue.
3223  *
3224  * ONLY can be called before the continuation given to the send function
3225  * is called. Once the continuation is called, the message is no longer in the
3226  * queue.
3227  *
3228  * @param q Handle to the queue.
3229  */
3230 void
3231 GCC_cancel (struct CadetConnectionQueue *q)
3232 {
3233   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  GMC cancel message\n");
3234
3235   /* queue destroy calls message_sent, which calls q->cont and frees q */
3236   GCP_queue_destroy (q->q, GNUNET_YES, GNUNET_NO, 0);
3237 }
3238
3239
3240 /**
3241  * Sends a CREATE CONNECTION message for a path to a peer.
3242  * Changes the connection and tunnel states if necessary.
3243  *
3244  * @param connection Connection to create.
3245  */
3246 void
3247 GCC_send_create (struct CadetConnection *connection)
3248 {
3249   enum CadetTunnelCState state;
3250   size_t size;
3251
3252   size = sizeof (struct GNUNET_CADET_ConnectionCreate);
3253   size += connection->path->length * sizeof (struct GNUNET_PeerIdentity);
3254
3255   LOG (GNUNET_ERROR_TYPE_INFO, "---> %s on connection %s  (%u bytes)\n",
3256        GC_m2s (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE),
3257        GCC_2s (connection), size);
3258   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %p %u (create)\n",
3259        connection, connection->pending_messages);
3260   connection->pending_messages++;
3261
3262   connection->maintenance_q =
3263     GCP_queue_add (get_next_hop (connection), NULL,
3264                    GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE, 0, 0,
3265                    size, connection, GNUNET_YES, &conn_message_sent, NULL);
3266
3267   state = GCT_get_cstate (connection->t);
3268   if (CADET_TUNNEL_SEARCHING == state || CADET_TUNNEL_NEW == state)
3269     GCT_change_cstate (connection->t, CADET_TUNNEL_WAITING);
3270   if (CADET_CONNECTION_NEW == connection->state)
3271     connection_change_state (connection, CADET_CONNECTION_SENT);
3272 }
3273
3274
3275 /**
3276  * Send a message to all peers in this connection that the connection
3277  * is no longer valid.
3278  *
3279  * If some peer should not receive the message, it should be zero'ed out
3280  * before calling this function.
3281  *
3282  * @param c The connection whose peers to notify.
3283  */
3284 void
3285 GCC_send_destroy (struct CadetConnection *c)
3286 {
3287   struct GNUNET_CADET_ConnectionDestroy msg;
3288
3289   if (GNUNET_YES == c->destroy)
3290     return;
3291
3292   msg.header.size = htons (sizeof (msg));
3293   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY);
3294   msg.cid = c->id;
3295   LOG (GNUNET_ERROR_TYPE_DEBUG,
3296               "  sending connection destroy for connection %s\n",
3297               GCC_2s (c));
3298
3299   if (GNUNET_NO == GCC_is_terminal (c, GNUNET_YES))
3300     GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg.header, 0, 0, c,
3301                                                       GNUNET_YES, GNUNET_YES,
3302                                                       NULL, NULL));
3303   if (GNUNET_NO == GCC_is_terminal (c, GNUNET_NO))
3304     GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg.header, 0, 0, c,
3305                                                       GNUNET_NO, GNUNET_YES,
3306                                                       NULL, NULL));
3307   c->destroy = GNUNET_YES;
3308   c->state = CADET_CONNECTION_DESTROYED;
3309 }
3310
3311
3312 /**
3313  * @brief Start a polling timer for the connection.
3314  *
3315  * When a neighbor does not accept more traffic on the connection it could be
3316  * caused by a simple congestion or by a lost ACK. Polling enables to check
3317  * for the lastest ACK status for a connection.
3318  *
3319  * @param c Connection.
3320  * @param fwd Should we poll in the FWD direction?
3321  */
3322 void
3323 GCC_start_poll (struct CadetConnection *c, int fwd)
3324 {
3325   struct CadetFlowControl *fc;
3326
3327   fc = fwd ? &c->fwd_fc : &c->bck_fc;
3328   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL %s requested\n",
3329        GC_f2s (fwd));
3330   if (NULL != fc->poll_task || NULL != fc->poll_msg)
3331   {
3332     LOG (GNUNET_ERROR_TYPE_DEBUG, " ***   not needed (%u, %p)\n",
3333          fc->poll_task, fc->poll_msg);
3334     return;
3335   }
3336   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL started on request\n");
3337   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3338                                                 &connection_poll,
3339                                                 fc);
3340 }
3341
3342
3343 /**
3344  * @brief Stop polling a connection for ACKs.
3345  *
3346  * Once we have enough ACKs for future traffic, polls are no longer necessary.
3347  *
3348  * @param c Connection.
3349  * @param fwd Should we stop the poll in the FWD direction?
3350  */
3351 void
3352 GCC_stop_poll (struct CadetConnection *c, int fwd)
3353 {
3354   struct CadetFlowControl *fc;
3355
3356   fc = fwd ? &c->fwd_fc : &c->bck_fc;
3357   if (NULL != fc->poll_task)
3358   {
3359     GNUNET_SCHEDULER_cancel (fc->poll_task);
3360     fc->poll_task = NULL;
3361   }
3362 }
3363
3364 /**
3365  * Get a (static) string for a connection.
3366  *
3367  * @param c Connection.
3368  */
3369 const char *
3370 GCC_2s (const struct CadetConnection *c)
3371 {
3372   if (NULL == c)
3373     return "NULL";
3374
3375   if (NULL != c->t)
3376   {
3377     static char buf[128];
3378
3379     SPRINTF (buf, "%s (->%s)",
3380              GNUNET_h2s (GC_h2hc (GCC_get_id (c))), GCT_2s (c->t));
3381     return buf;
3382   }
3383   return GNUNET_h2s (GC_h2hc (&c->id));
3384 }
3385
3386
3387 /**
3388  * Log all possible info about the connection state.
3389  *
3390  * @param c Connection to debug.
3391  * @param level Debug level to use.
3392  */
3393 void
3394 GCC_debug (const struct CadetConnection *c, enum GNUNET_ErrorType level)
3395 {
3396   int do_log;
3397   char *s;
3398
3399   do_log = GNUNET_get_log_call_status (level & (~GNUNET_ERROR_TYPE_BULK),
3400                                        "cadet-con",
3401                                        __FILE__, __FUNCTION__, __LINE__);
3402   if (0 == do_log)
3403     return;
3404
3405   if (NULL == c)
3406   {
3407     LOG2 (level, "CCC DEBUG NULL CONNECTION\n");
3408     return;
3409   }
3410
3411   LOG2 (level, "CCC DEBUG CONNECTION %s\n", GCC_2s (c));
3412   s = path_2s (c->path);
3413   LOG2 (level, "CCC  path %s, own pos: %u\n", s, c->own_pos);
3414   GNUNET_free (s);
3415   LOG2 (level, "CCC  state: %s, destroy: %u\n",
3416         GCC_state2s (c->state), c->destroy);
3417   LOG2 (level, "CCC  pending messages: %u\n", c->pending_messages);
3418   if (NULL != c->perf)
3419     LOG2 (level, "CCC  us/byte: %f\n", c->perf->avg);
3420
3421   LOG2 (level, "CCC  FWD flow control:\n");
3422   LOG2 (level, "CCC   queue: %u/%u\n", c->fwd_fc.queue_n, c->fwd_fc.queue_max);
3423   LOG2 (level, "CCC   last PID sent: %5u, recv: %5u\n",
3424         c->fwd_fc.last_pid_sent, c->fwd_fc.last_pid_recv);
3425   LOG2 (level, "CCC   last ACK sent: %5u, recv: %5u\n",
3426         c->fwd_fc.last_ack_sent, c->fwd_fc.last_ack_recv);
3427   LOG2 (level, "CCC   recv PID bitmap: %X\n", c->fwd_fc.recv_bitmap);
3428   LOG2 (level, "CCC   POLL: task %d, msg  %p, msg_ack %p)\n",
3429         c->fwd_fc.poll_task, c->fwd_fc.poll_msg, c->fwd_fc.ack_msg);
3430
3431   LOG2 (level, "CCC  BCK flow control:\n");
3432   LOG2 (level, "CCC   queue: %u/%u\n", c->bck_fc.queue_n, c->bck_fc.queue_max);
3433   LOG2 (level, "CCC   last PID sent: %5u, recv: %5u\n",
3434         c->bck_fc.last_pid_sent, c->bck_fc.last_pid_recv);
3435   LOG2 (level, "CCC   last ACK sent: %5u, recv: %5u\n",
3436         c->bck_fc.last_ack_sent, c->bck_fc.last_ack_recv);
3437   LOG2 (level, "CCC   recv PID bitmap: %X\n", c->bck_fc.recv_bitmap);
3438   LOG2 (level, "CCC   POLL: task %d, msg  %p, msg_ack %p)\n",
3439         c->bck_fc.poll_task, c->bck_fc.poll_msg, c->bck_fc.ack_msg);
3440
3441   LOG2 (level, "CCC DEBUG CONNECTION END\n");
3442 }
3443