implemented AX dectyption and racheting
[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     LOG (GNUNET_ERROR_TYPE_WARNING, "Size %u < %u\n",
2136          ntohs (message->size), minimum_size);
2137     return GNUNET_SYSERR;
2138   }
2139
2140   /* Check connection */
2141   if (NULL == c)
2142   {
2143     GNUNET_STATISTICS_update (stats, "# unknown connection", 1, GNUNET_NO);
2144     LOG (GNUNET_ERROR_TYPE_DEBUG, "%s on unknown connection %s\n",
2145          GC_m2s (ntohs (message->type)), GNUNET_h2s (GC_h2hc (cid)));
2146     send_broken_unknown (cid, &my_full_id, NULL, neighbor);
2147     return GNUNET_SYSERR;
2148   }
2149
2150   /* Check if origin is as expected */
2151   neighbor_id = GNUNET_PEER_search (neighbor);
2152   hop = get_prev_hop (c);
2153   if (neighbor_id == GCP_get_short_id (hop))
2154   {
2155     fwd = GNUNET_YES;
2156   }
2157   else
2158   {
2159     hop = get_next_hop (c);
2160     if (neighbor_id == GCP_get_short_id (hop))
2161     {
2162       fwd = GNUNET_NO;
2163     }
2164     else
2165     {
2166       /* Unexpected peer sending traffic on a connection. */
2167       GNUNET_break_op (0);
2168       return GNUNET_SYSERR;
2169     }
2170   }
2171
2172   /* Check PID for payload messages */
2173   if (GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED == ntohs (message->type))
2174   {
2175     fc = fwd ? &c->bck_fc : &c->fwd_fc;
2176     LOG (GNUNET_ERROR_TYPE_DEBUG, " PID %u (expected %u - %u)\n",
2177         pid, fc->last_pid_recv + 1, fc->last_ack_sent);
2178     if (GC_is_pid_bigger (pid, fc->last_ack_sent))
2179     {
2180       GNUNET_break_op (0);
2181       GNUNET_STATISTICS_update (stats, "# unsolicited message", 1, GNUNET_NO);
2182       LOG (GNUNET_ERROR_TYPE_WARNING, "Received PID %u, (prev %u), ACK %u\n",
2183           pid, fc->last_pid_recv, fc->last_ack_sent);
2184       return GNUNET_SYSERR;
2185     }
2186     if (GC_is_pid_bigger (pid, fc->last_pid_recv))
2187     {
2188       unsigned int delta;
2189
2190       delta = pid - fc->last_pid_recv;
2191       fc->last_pid_recv = pid;
2192       fc->recv_bitmap <<= delta;
2193       fc->recv_bitmap |= 1;
2194     }
2195     else
2196     {
2197       GNUNET_STATISTICS_update (stats, "# out of order PID", 1, GNUNET_NO);
2198       if (GNUNET_NO == is_ooo_ok (fc->last_pid_recv, pid, fc->recv_bitmap))
2199       {
2200         LOG (GNUNET_ERROR_TYPE_WARNING, "PID %u unexpected (%u+), dropping!\n",
2201              pid, fc->last_pid_recv - 31);
2202         return GNUNET_SYSERR;
2203       }
2204       fc->recv_bitmap |= get_recv_bitmask (fc->last_pid_recv, pid);
2205     }
2206   }
2207
2208   /* Count as connection confirmation. */
2209   if (CADET_CONNECTION_SENT == c->state || CADET_CONNECTION_ACK == c->state)
2210   {
2211     connection_change_state (c, CADET_CONNECTION_READY);
2212     if (NULL != c->t)
2213     {
2214       if (CADET_TUNNEL_WAITING == GCT_get_cstate (c->t))
2215         GCT_change_cstate (c->t, CADET_TUNNEL_READY);
2216     }
2217   }
2218   connection_reset_timeout (c, fwd);
2219
2220   return fwd;
2221 }
2222
2223
2224 /**
2225  * Generic handler for cadet network encrypted traffic.
2226  *
2227  * @param peer Peer identity this notification is about.
2228  * @param msg Encrypted message.
2229  *
2230  * @return GNUNET_OK to keep the connection open,
2231  *         GNUNET_SYSERR to close it (signal serious error)
2232  */
2233 static int
2234 handle_cadet_encrypted (const struct GNUNET_PeerIdentity *peer,
2235                         const struct GNUNET_MessageHeader *message)
2236 {
2237   const struct GNUNET_CADET_Encrypted *msg;
2238   const struct GNUNET_CADET_Hash* cid;
2239   struct CadetConnection *c;
2240   size_t minumum_size;
2241   size_t overhead;
2242   uint32_t pid;
2243   uint32_t ttl;
2244   int fwd;
2245
2246   msg = (struct GNUNET_CADET_Encrypted *) message;
2247   cid = &msg->cid;
2248   log_message (message, peer, cid);
2249
2250   if (GNUNET_MESSAGE_TYPE_CADET_AX == ntohs (message->type))
2251     overhead = sizeof (struct GNUNET_CADET_AX);
2252   else
2253     overhead = sizeof (struct GNUNET_CADET_Encrypted);
2254   minumum_size = sizeof (struct GNUNET_MessageHeader) + overhead;
2255   c = connection_get (cid);
2256   pid = ntohl (msg->pid);
2257   fwd = check_message (message, minumum_size, cid, c, peer, pid);
2258
2259   /* If something went wrong, discard message. */
2260   if (GNUNET_SYSERR == fwd)
2261     return GNUNET_OK;
2262
2263   /* Is this message for us? */
2264   if (GCC_is_terminal (c, fwd))
2265   {
2266     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
2267
2268     if (NULL == c->t)
2269     {
2270       GNUNET_break (GNUNET_NO != c->destroy);
2271       return GNUNET_OK;
2272     }
2273     GCT_handle_encrypted (c->t, message);
2274     GCC_send_ack (c, fwd, GNUNET_NO);
2275     return GNUNET_OK;
2276   }
2277
2278   /* Message not for us: forward to next hop */
2279   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
2280   ttl = ntohl (msg->ttl);
2281   LOG (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
2282   if (ttl == 0)
2283   {
2284     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
2285     LOG (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
2286     GCC_send_ack (c, fwd, GNUNET_NO);
2287     return GNUNET_OK;
2288   }
2289
2290   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
2291   GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg->header, 0, 0, c, fwd,
2292                                                     GNUNET_NO, NULL, NULL));
2293
2294   return GNUNET_OK;
2295 }
2296
2297 /**
2298  * Generic handler for cadet network encrypted traffic.
2299  *
2300  * @param peer Peer identity this notification is about.
2301  * @param msg Encrypted message.
2302  *
2303  * @return GNUNET_OK to keep the connection open,
2304  *         GNUNET_SYSERR to close it (signal serious error)
2305  */
2306 static int
2307 handle_cadet_kx (const struct GNUNET_PeerIdentity *peer,
2308                  const struct GNUNET_CADET_KX *msg)
2309 {
2310   const struct GNUNET_CADET_Hash* cid;
2311   struct CadetConnection *c;
2312   size_t expected_size;
2313   int fwd;
2314
2315   cid = &msg->cid;
2316   log_message (&msg->header, peer, cid);
2317
2318   expected_size = sizeof (struct GNUNET_CADET_KX)
2319                   + sizeof (struct GNUNET_MessageHeader);
2320   c = connection_get (cid);
2321   fwd = check_message (&msg->header, expected_size, cid, c, peer, 0);
2322
2323   /* If something went wrong, discard message. */
2324   if (GNUNET_SYSERR == fwd)
2325     return GNUNET_OK;
2326
2327   /* Is this message for us? */
2328   if (GCC_is_terminal (c, fwd))
2329   {
2330     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
2331     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
2332     if (NULL == c->t)
2333     {
2334       GNUNET_break (0);
2335       return GNUNET_OK;
2336     }
2337     GCT_handle_kx (c->t, &msg[1].header);
2338     return GNUNET_OK;
2339   }
2340
2341   /* Message not for us: forward to next hop */
2342   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
2343   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
2344   GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg->header, 0, 0, c, fwd,
2345                                                     GNUNET_NO, NULL, NULL));
2346
2347   return GNUNET_OK;
2348 }
2349
2350
2351 /**
2352  * Core handler for key exchange traffic (ephemeral key, ping, pong).
2353  *
2354  * @param cls Closure (unused).
2355  * @param message Message received.
2356  * @param peer Peer who sent the message.
2357  *
2358  * @return GNUNET_OK to keep the connection open,
2359  *         GNUNET_SYSERR to close it (signal serious error)
2360  */
2361 int
2362 GCC_handle_kx (void *cls, const struct GNUNET_PeerIdentity *peer,
2363                const struct GNUNET_MessageHeader *message)
2364 {
2365   return handle_cadet_kx (peer, (struct GNUNET_CADET_KX *) message);
2366 }
2367
2368
2369 /**
2370  * Core handler for encrypted cadet network traffic (channel mgmt, data).
2371  *
2372  * @param cls Closure (unused).
2373  * @param message Message received.
2374  * @param peer Peer who sent the message.
2375  *
2376  * @return GNUNET_OK to keep the connection open,
2377  *         GNUNET_SYSERR to close it (signal serious error)
2378  */
2379 int
2380 GCC_handle_encrypted (void *cls, const struct GNUNET_PeerIdentity *peer,
2381                       const struct GNUNET_MessageHeader *message)
2382 {
2383   return handle_cadet_encrypted (peer, message);
2384 }
2385
2386
2387 /**
2388  * Core handler for cadet network traffic point-to-point acks.
2389  *
2390  * @param cls closure
2391  * @param message message
2392  * @param peer peer identity this notification is about
2393  *
2394  * @return GNUNET_OK to keep the connection open,
2395  *         GNUNET_SYSERR to close it (signal serious error)
2396  */
2397 int
2398 GCC_handle_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
2399                 const struct GNUNET_MessageHeader *message)
2400 {
2401   struct GNUNET_CADET_ACK *msg;
2402   struct CadetConnection *c;
2403   struct CadetFlowControl *fc;
2404   GNUNET_PEER_Id id;
2405   uint32_t ack;
2406   int fwd;
2407
2408   msg = (struct GNUNET_CADET_ACK *) message;
2409   log_message (message, peer, &msg->cid);
2410   c = connection_get (&msg->cid);
2411   if (NULL == c)
2412   {
2413     GNUNET_STATISTICS_update (stats, "# ack on unknown connection", 1,
2414                               GNUNET_NO);
2415     send_broken_unknown (&msg->cid, &my_full_id, NULL, peer);
2416     return GNUNET_OK;
2417   }
2418
2419   /* Is this a forward or backward ACK? */
2420   id = GNUNET_PEER_search (peer);
2421   if (GCP_get_short_id (get_next_hop (c)) == id)
2422   {
2423     fc = &c->fwd_fc;
2424     fwd = GNUNET_YES;
2425   }
2426   else if (GCP_get_short_id (get_prev_hop (c)) == id)
2427   {
2428     fc = &c->bck_fc;
2429     fwd = GNUNET_NO;
2430   }
2431   else
2432   {
2433     GNUNET_break_op (0);
2434     return GNUNET_OK;
2435   }
2436
2437   ack = ntohl (msg->ack);
2438   LOG (GNUNET_ERROR_TYPE_DEBUG, " %s ACK %u (was %u)\n",
2439        GC_f2s (fwd), ack, fc->last_ack_recv);
2440   if (GC_is_pid_bigger (ack, fc->last_ack_recv))
2441     fc->last_ack_recv = ack;
2442
2443   /* Cancel polling if the ACK is big enough. */
2444   if (NULL != fc->poll_task &&
2445       GC_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
2446   {
2447     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Cancel poll\n");
2448     GNUNET_SCHEDULER_cancel (fc->poll_task);
2449     fc->poll_task = NULL;
2450     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
2451   }
2452
2453   connection_unlock_queue (c, fwd);
2454
2455   return GNUNET_OK;
2456 }
2457
2458
2459 /**
2460  * Core handler for cadet network traffic point-to-point ack polls.
2461  *
2462  * @param cls closure
2463  * @param message message
2464  * @param peer peer identity this notification is about
2465  *
2466  * @return GNUNET_OK to keep the connection open,
2467  *         GNUNET_SYSERR to close it (signal serious error)
2468  */
2469 int
2470 GCC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
2471                  const struct GNUNET_MessageHeader *message)
2472 {
2473   struct GNUNET_CADET_Poll *msg;
2474   struct CadetConnection *c;
2475   struct CadetFlowControl *fc;
2476   GNUNET_PEER_Id id;
2477   uint32_t pid;
2478   int fwd;
2479
2480   msg = (struct GNUNET_CADET_Poll *) message;
2481   log_message (message, peer, &msg->cid);
2482   c = connection_get (&msg->cid);
2483   if (NULL == c)
2484   {
2485     GNUNET_STATISTICS_update (stats, "# poll on unknown connection", 1,
2486                               GNUNET_NO);
2487     LOG (GNUNET_ERROR_TYPE_DEBUG, "POLL message on unknown connection %s!\n",
2488          GNUNET_h2s (GC_h2hc (&msg->cid)));
2489     send_broken_unknown (&msg->cid, &my_full_id, NULL, peer);
2490     return GNUNET_OK;
2491   }
2492
2493   /* Is this a forward or backward ACK?
2494    * Note: a poll should never be needed in a loopback case,
2495    * since there is no possiblility of packet loss there, so
2496    * this way of discerining FWD/BCK should not be a problem.
2497    */
2498   id = GNUNET_PEER_search (peer);
2499   if (GCP_get_short_id (get_next_hop (c)) == id)
2500   {
2501     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD FC\n");
2502     fc = &c->fwd_fc;
2503   }
2504   else if (GCP_get_short_id (get_prev_hop (c)) == id)
2505   {
2506     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK FC\n");
2507     fc = &c->bck_fc;
2508   }
2509   else
2510   {
2511     GNUNET_break_op (0);
2512     return GNUNET_OK;
2513   }
2514
2515   pid = ntohl (msg->pid);
2516   LOG (GNUNET_ERROR_TYPE_DEBUG, "  PID %u, OLD %u\n", pid, fc->last_pid_recv);
2517   fc->last_pid_recv = pid;
2518   fwd = fc == &c->bck_fc;
2519   GCC_send_ack (c, fwd, GNUNET_YES);
2520
2521   return GNUNET_OK;
2522 }
2523
2524
2525 /**
2526  * Send an ACK on the appropriate connection/channel, depending on
2527  * the direction and the position of the peer.
2528  *
2529  * @param c Which connection to send the hop-by-hop ACK.
2530  * @param fwd Is this a fwd ACK? (will go dest->root).
2531  * @param force Send the ACK even if suboptimal (e.g. requested by POLL).
2532  */
2533 void
2534 GCC_send_ack (struct CadetConnection *c, int fwd, int force)
2535 {
2536   unsigned int buffer;
2537
2538   LOG (GNUNET_ERROR_TYPE_DEBUG, "GMC send %s ACK on %s\n",
2539        GC_f2s (fwd), GCC_2s (c));
2540
2541   if (NULL == c)
2542   {
2543     GNUNET_break (0);
2544     return;
2545   }
2546
2547   if (GNUNET_NO != c->destroy)
2548   {
2549     LOG (GNUNET_ERROR_TYPE_DEBUG, "  being destroyed, why bother...\n");
2550     return;
2551   }
2552
2553   /* Get available buffer space */
2554   if (GCC_is_terminal (c, fwd))
2555   {
2556     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from all channels\n");
2557     buffer = GCT_get_channels_buffer (c->t);
2558   }
2559   else
2560   {
2561     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from one connection\n");
2562     buffer = GCC_get_buffer (c, fwd);
2563   }
2564   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer available: %u\n", buffer);
2565   if (0 == buffer && GNUNET_NO == force)
2566     return;
2567
2568   /* Send available buffer space */
2569   if (GCC_is_origin (c, fwd))
2570   {
2571     GNUNET_assert (NULL != c->t);
2572     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on channels...\n");
2573     GCT_unchoke_channels (c->t);
2574   }
2575   else
2576   {
2577     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on connection\n");
2578     send_ack (c, buffer, fwd, force);
2579   }
2580 }
2581
2582
2583 /**
2584  * Initialize the connections subsystem
2585  *
2586  * @param c Configuration handle.
2587  */
2588 void
2589 GCC_init (const struct GNUNET_CONFIGURATION_Handle *c)
2590 {
2591   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
2592   if (GNUNET_OK !=
2593       GNUNET_CONFIGURATION_get_value_number (c, "CADET", "MAX_MSGS_QUEUE",
2594                                              &max_msgs_queue))
2595   {
2596     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2597                                "CADET", "MAX_MSGS_QUEUE", "MISSING");
2598     GNUNET_SCHEDULER_shutdown ();
2599     return;
2600   }
2601
2602   if (GNUNET_OK !=
2603       GNUNET_CONFIGURATION_get_value_number (c, "CADET", "MAX_CONNECTIONS",
2604                                              &max_connections))
2605   {
2606     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2607                                "CADET", "MAX_CONNECTIONS", "MISSING");
2608     GNUNET_SCHEDULER_shutdown ();
2609     return;
2610   }
2611
2612   if (GNUNET_OK !=
2613       GNUNET_CONFIGURATION_get_value_time (c, "CADET", "REFRESH_CONNECTION_TIME",
2614                                            &refresh_connection_time))
2615   {
2616     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2617                                "CADET", "REFRESH_CONNECTION_TIME", "MISSING");
2618     GNUNET_SCHEDULER_shutdown ();
2619     return;
2620   }
2621   create_connection_time = GNUNET_TIME_UNIT_SECONDS;
2622   connections = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_NO);
2623 }
2624
2625
2626 /**
2627  * Destroy each connection on shutdown.
2628  *
2629  * @param cls Closure (unused).
2630  * @param key Current key code (CID, unused).
2631  * @param value Value in the hash map (connection)
2632  *
2633  * @return #GNUNET_YES, because we should continue to iterate,
2634  */
2635 static int
2636 shutdown_iterator (void *cls,
2637                    const struct GNUNET_HashCode *key,
2638                    void *value)
2639 {
2640   struct CadetConnection *c = value;
2641
2642   GCC_destroy (c);
2643   return GNUNET_YES;
2644 }
2645
2646
2647 /**
2648  * Shut down the connections subsystem.
2649  */
2650 void
2651 GCC_shutdown (void)
2652 {
2653   GNUNET_CONTAINER_multihashmap_iterate (connections, &shutdown_iterator, NULL);
2654   GNUNET_CONTAINER_multihashmap_destroy (connections);
2655   connections = NULL;
2656 }
2657
2658
2659 /**
2660  * Create a connection.
2661  *
2662  * @param cid Connection ID (either created locally or imposed remotely).
2663  * @param t Tunnel this connection belongs to (or NULL);
2664  * @param path Path this connection has to use (copy is made).
2665  * @param own_pos Own position in the @c path path.
2666  *
2667  * @return Newly created connection, NULL in case of error (own id not in path).
2668  */
2669 struct CadetConnection *
2670 GCC_new (const struct GNUNET_CADET_Hash *cid,
2671          struct CadetTunnel *t,
2672          struct CadetPeerPath *path,
2673          unsigned int own_pos)
2674 {
2675   struct CadetConnection *c;
2676   struct CadetPeerPath *p;
2677
2678   p = path_duplicate (path);
2679   c = GNUNET_new (struct CadetConnection);
2680   c->id = *cid;
2681   GNUNET_assert (GNUNET_OK ==
2682                  GNUNET_CONTAINER_multihashmap_put (connections,
2683                                                     GCC_get_h (c), c,
2684                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
2685   fc_init (&c->fwd_fc);
2686   fc_init (&c->bck_fc);
2687   c->fwd_fc.c = c;
2688   c->bck_fc.c = c;
2689
2690   c->t = t;
2691   GNUNET_assert (own_pos <= p->length - 1);
2692   c->own_pos = own_pos;
2693   c->path = p;
2694   p->c = c;
2695
2696   if (GNUNET_OK != register_neighbors (c))
2697   {
2698     if (0 == own_pos)
2699     {
2700       path_invalidate (c->path);
2701       c->t = NULL;
2702       c->path = NULL;
2703     }
2704     GCC_destroy (c);
2705     return NULL;
2706   }
2707   LOG (GNUNET_ERROR_TYPE_INFO, "New connection %s\n", GCC_2s (c));
2708   return c;
2709 }
2710
2711
2712 void
2713 GCC_destroy (struct CadetConnection *c)
2714 {
2715   if (NULL == c)
2716   {
2717     GNUNET_break (0);
2718     return;
2719   }
2720
2721   if (2 == c->destroy) /* cancel queues -> GCP_queue_cancel -> q_destroy -> */
2722     return;            /* -> message_sent -> GCC_destroy. Don't loop. */
2723   c->destroy = 2;
2724
2725   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying connection %s\n", GCC_2s (c));
2726   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc's f: %p, b: %p\n",
2727        &c->fwd_fc, &c->bck_fc);
2728   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc tasks f: %u, b: %u\n",
2729        c->fwd_fc.poll_task, c->bck_fc.poll_task);
2730
2731   /* Cancel all traffic */
2732   if (NULL != c->path)
2733   {
2734     connection_cancel_queues (c, GNUNET_YES);
2735     connection_cancel_queues (c, GNUNET_NO);
2736     unregister_neighbors (c);
2737   }
2738
2739   /* Cancel maintainance task (keepalive/timeout) */
2740   if (NULL != c->fwd_fc.poll_msg)
2741   {
2742     GCC_cancel (c->fwd_fc.poll_msg);
2743     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL msg FWD canceled\n");
2744   }
2745   if (NULL != c->bck_fc.poll_msg)
2746   {
2747     GCC_cancel (c->bck_fc.poll_msg);
2748     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL msg BCK canceled\n");
2749   }
2750
2751   /* Delete from tunnel */
2752   if (NULL != c->t)
2753     GCT_remove_connection (c->t, c);
2754
2755   if (GNUNET_NO == GCC_is_origin (c, GNUNET_YES) && NULL != c->path)
2756     path_destroy (c->path);
2757   if (NULL != c->fwd_maintenance_task)
2758     GNUNET_SCHEDULER_cancel (c->fwd_maintenance_task);
2759   if (NULL != c->bck_maintenance_task)
2760     GNUNET_SCHEDULER_cancel (c->bck_maintenance_task);
2761   if (NULL != c->fwd_fc.poll_task)
2762   {
2763     GNUNET_SCHEDULER_cancel (c->fwd_fc.poll_task);
2764     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL FWD canceled\n");
2765   }
2766   if (NULL != c->bck_fc.poll_task)
2767   {
2768     GNUNET_SCHEDULER_cancel (c->bck_fc.poll_task);
2769     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL BCK canceled\n");
2770   }
2771
2772   GNUNET_break (GNUNET_YES ==
2773                 GNUNET_CONTAINER_multihashmap_remove (connections,
2774                                                       GCC_get_h (c), c));
2775
2776   GNUNET_STATISTICS_update (stats, "# connections", -1, GNUNET_NO);
2777   GNUNET_free (c);
2778 }
2779
2780 /**
2781  * Get the connection ID.
2782  *
2783  * @param c Connection to get the ID from.
2784  *
2785  * @return ID of the connection.
2786  */
2787 const struct GNUNET_CADET_Hash *
2788 GCC_get_id (const struct CadetConnection *c)
2789 {
2790   return &c->id;
2791 }
2792
2793
2794 /**
2795  * Get the connection ID.
2796  *
2797  * @param c Connection to get the ID from.
2798  *
2799  * @return ID of the connection.
2800  */
2801 const struct GNUNET_HashCode *
2802 GCC_get_h (const struct CadetConnection *c)
2803 {
2804   return GC_h2hc (&c->id);
2805 }
2806
2807
2808 /**
2809  * Get the connection path.
2810  *
2811  * @param c Connection to get the path from.
2812  *
2813  * @return path used by the connection.
2814  */
2815 const struct CadetPeerPath *
2816 GCC_get_path (const struct CadetConnection *c)
2817 {
2818   if (GNUNET_NO == c->destroy)
2819     return c->path;
2820   return NULL;
2821 }
2822
2823
2824 /**
2825  * Get the connection state.
2826  *
2827  * @param c Connection to get the state from.
2828  *
2829  * @return state of the connection.
2830  */
2831 enum CadetConnectionState
2832 GCC_get_state (const struct CadetConnection *c)
2833 {
2834   return c->state;
2835 }
2836
2837 /**
2838  * Get the connection tunnel.
2839  *
2840  * @param c Connection to get the tunnel from.
2841  *
2842  * @return tunnel of the connection.
2843  */
2844 struct CadetTunnel *
2845 GCC_get_tunnel (const struct CadetConnection *c)
2846 {
2847   return c->t;
2848 }
2849
2850
2851 /**
2852  * Get free buffer space in a connection.
2853  *
2854  * @param c Connection.
2855  * @param fwd Is query about FWD traffic?
2856  *
2857  * @return Free buffer space [0 - max_msgs_queue/max_connections]
2858  */
2859 unsigned int
2860 GCC_get_buffer (struct CadetConnection *c, int fwd)
2861 {
2862   struct CadetFlowControl *fc;
2863
2864   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2865
2866   return (fc->queue_max - fc->queue_n);
2867 }
2868
2869 /**
2870  * Get how many messages have we allowed to send to us from a direction.
2871  *
2872  * @param c Connection.
2873  * @param fwd Are we asking about traffic from FWD (BCK messages)?
2874  *
2875  * @return last_ack_sent - last_pid_recv
2876  */
2877 unsigned int
2878 GCC_get_allowed (struct CadetConnection *c, int fwd)
2879 {
2880   struct CadetFlowControl *fc;
2881
2882   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2883   if (CADET_CONNECTION_READY != c->state
2884       || GC_is_pid_bigger (fc->last_pid_recv, fc->last_ack_sent))
2885   {
2886     return 0;
2887   }
2888   return (fc->last_ack_sent - fc->last_pid_recv);
2889 }
2890
2891 /**
2892  * Get messages queued in a connection.
2893  *
2894  * @param c Connection.
2895  * @param fwd Is query about FWD traffic?
2896  *
2897  * @return Number of messages queued.
2898  */
2899 unsigned int
2900 GCC_get_qn (struct CadetConnection *c, int fwd)
2901 {
2902   struct CadetFlowControl *fc;
2903
2904   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2905
2906   return fc->queue_n;
2907 }
2908
2909
2910 /**
2911  * Get next PID to use.
2912  *
2913  * @param c Connection.
2914  * @param fwd Is query about FWD traffic?
2915  *
2916  * @return Last PID used + 1.
2917  */
2918 unsigned int
2919 GCC_get_pid (struct CadetConnection *c, int fwd)
2920 {
2921   struct CadetFlowControl *fc;
2922
2923   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2924
2925   return fc->last_pid_sent + 1;
2926 }
2927
2928
2929 /**
2930  * Allow the connection to advertise a buffer of the given size.
2931  *
2932  * The connection will send an @c fwd ACK message (so: in direction !fwd)
2933  * allowing up to last_pid_recv + buffer.
2934  *
2935  * @param c Connection.
2936  * @param buffer How many more messages the connection can accept.
2937  * @param fwd Is this about FWD traffic? (The ack will go dest->root).
2938  */
2939 void
2940 GCC_allow (struct CadetConnection *c, unsigned int buffer, int fwd)
2941 {
2942   LOG (GNUNET_ERROR_TYPE_DEBUG, "  allowing %s %u messages %s\n",
2943        GCC_2s (c), buffer, GC_f2s (fwd));
2944   send_ack (c, buffer, fwd, GNUNET_NO);
2945 }
2946
2947
2948 /**
2949  * Notify other peers on a connection of a broken link. Mark connections
2950  * to destroy after all traffic has been sent.
2951  *
2952  * @param c Connection on which there has been a disconnection.
2953  * @param peer Peer that disconnected.
2954  */
2955 void
2956 GCC_notify_broken (struct CadetConnection *c,
2957                    struct CadetPeer *peer)
2958 {
2959   struct CadetPeer *hop;
2960   int fwd;
2961
2962   LOG (GNUNET_ERROR_TYPE_DEBUG,
2963        " notify broken on %s due to %s disconnect\n",
2964        GCC_2s (c), GCP_2s (peer));
2965
2966   hop = get_prev_hop (c);
2967   if (NULL == hop)
2968   {
2969     /* Path was NULL, we should have deleted the connection. */
2970     GNUNET_break (0);
2971     return;
2972   }
2973
2974   fwd = (peer == hop);
2975   if (GNUNET_YES == GCC_is_terminal (c, fwd))
2976   {
2977     /* Local shutdown, no one to notify about this. */
2978     GCC_destroy (c);
2979     return;
2980   }
2981   if (GNUNET_NO == c->destroy)
2982     send_broken (c, &my_full_id, GCP_get_id (peer), fwd);
2983
2984   /* Connection will have at least one pending message
2985    * (the one we just scheduled), so no point in checking whether to
2986    * destroy immediately. */
2987   c->destroy = GNUNET_YES;
2988   c->state = CADET_CONNECTION_DESTROYED;
2989
2990   /**
2991    * Cancel all queues, if no message is left, connection will be destroyed.
2992    */
2993   connection_cancel_queues (c, !fwd);
2994
2995   return;
2996 }
2997
2998
2999 /**
3000  * Is this peer the first one on the connection?
3001  *
3002  * @param c Connection.
3003  * @param fwd Is this about fwd traffic?
3004  *
3005  * @return #GNUNET_YES if origin, #GNUNET_NO if relay/terminal.
3006  */
3007 int
3008 GCC_is_origin (struct CadetConnection *c, int fwd)
3009 {
3010   if (!fwd && c->path->length - 1 == c->own_pos )
3011     return GNUNET_YES;
3012   if (fwd && 0 == c->own_pos)
3013     return GNUNET_YES;
3014   return GNUNET_NO;
3015 }
3016
3017
3018 /**
3019  * Is this peer the last one on the connection?
3020  *
3021  * @param c Connection.
3022  * @param fwd Is this about fwd traffic?
3023  *            Note that the ROOT is the terminal for BCK traffic!
3024  *
3025  * @return #GNUNET_YES if terminal, #GNUNET_NO if relay/origin.
3026  */
3027 int
3028 GCC_is_terminal (struct CadetConnection *c, int fwd)
3029 {
3030   return GCC_is_origin (c, !fwd);
3031 }
3032
3033
3034 /**
3035  * See if we are allowed to send by the next hop in the given direction.
3036  *
3037  * @param c Connection.
3038  * @param fwd Is this about fwd traffic?
3039  *
3040  * @return #GNUNET_YES in case it's OK to send.
3041  */
3042 int
3043 GCC_is_sendable (struct CadetConnection *c, int fwd)
3044 {
3045   struct CadetFlowControl *fc;
3046
3047   LOG (GNUNET_ERROR_TYPE_DEBUG, " checking sendability of %s traffic on %s\n",
3048        GC_f2s (fwd), GCC_2s (c));
3049   if (NULL == c)
3050   {
3051     GNUNET_break (0);
3052     return GNUNET_YES;
3053   }
3054   fc = fwd ? &c->fwd_fc : &c->bck_fc;
3055   LOG (GNUNET_ERROR_TYPE_DEBUG,
3056        " last ack recv: %u, last pid sent: %u\n",
3057        fc->last_ack_recv, fc->last_pid_sent);
3058   if (GC_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
3059   {
3060     LOG (GNUNET_ERROR_TYPE_DEBUG, " sendable\n");
3061     return GNUNET_YES;
3062   }
3063   LOG (GNUNET_ERROR_TYPE_DEBUG, " not sendable\n");
3064   return GNUNET_NO;
3065 }
3066
3067
3068 /**
3069  * Check if this connection is a direct one (never trim a direct connection).
3070  *
3071  * @param c Connection.
3072  *
3073  * @return #GNUNET_YES in case it's a direct connection, #GNUNET_NO otherwise.
3074  */
3075 int
3076 GCC_is_direct (struct CadetConnection *c)
3077 {
3078   return (c->path->length == 2) ? GNUNET_YES : GNUNET_NO;
3079 }
3080
3081 /**
3082  * Sends an already built message on a connection, properly registering
3083  * all used resources.
3084  *
3085  * @param message Message to send. Function makes a copy of it.
3086  *                If message is not hop-by-hop, decrements TTL of copy.
3087  * @param payload_type Type of payload, in case the message is encrypted.
3088  * @param c Connection on which this message is transmitted.
3089  * @param fwd Is this a fwd message?
3090  * @param force Force the connection to accept the message (buffer overfill).
3091  * @param cont Continuation called once message is sent. Can be NULL.
3092  * @param cont_cls Closure for @c cont.
3093  *
3094  * @return Handle to cancel the message before it's sent.
3095  *         NULL on error or if @c cont is NULL.
3096  *         Invalid on @c cont call.
3097  */
3098 struct CadetConnectionQueue *
3099 GCC_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
3100                            uint16_t payload_type, uint32_t payload_id,
3101                            struct CadetConnection *c, int fwd, int force,
3102                            GCC_sent cont, void *cont_cls)
3103 {
3104   struct CadetFlowControl *fc;
3105   struct CadetConnectionQueue *q;
3106   void *data;
3107   size_t size;
3108   uint16_t type;
3109   int droppable;
3110
3111   size = ntohs (message->size);
3112   data = GNUNET_malloc (size);
3113   memcpy (data, message, size);
3114   type = ntohs (message->type);
3115   LOG (GNUNET_ERROR_TYPE_INFO, "--> %s (%s %4u) on connection %s (%u bytes)\n",
3116        GC_m2s (type), GC_m2s (payload_type), payload_id, GCC_2s (c), size);
3117
3118   fc = fwd ? &c->fwd_fc : &c->bck_fc;
3119   droppable = GNUNET_NO == force;
3120   switch (type)
3121   {
3122     struct GNUNET_CADET_AX        *axmsg;
3123     struct GNUNET_CADET_Encrypted *emsg;
3124     struct GNUNET_CADET_KX        *kmsg;
3125     struct GNUNET_CADET_ACK       *amsg;
3126     struct GNUNET_CADET_Poll      *pmsg;
3127     struct GNUNET_CADET_ConnectionDestroy *dmsg;
3128     struct GNUNET_CADET_ConnectionBroken  *bmsg;
3129     uint32_t ttl;
3130
3131     case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
3132       emsg = (struct GNUNET_CADET_Encrypted *) data;
3133       ttl = ntohl (emsg->ttl);
3134       if (0 == ttl)
3135       {
3136         GNUNET_break_op (0);
3137         GNUNET_free (data);
3138         return NULL;
3139       }
3140       emsg->cid = c->id;
3141       emsg->ttl = htonl (ttl - 1);
3142       LOG (GNUNET_ERROR_TYPE_DEBUG, "  Q_N+ %p %u\n", fc, fc->queue_n);
3143       LOG (GNUNET_ERROR_TYPE_DEBUG, "last pid sent %u\n", fc->last_pid_sent);
3144       LOG (GNUNET_ERROR_TYPE_DEBUG, "     ack recv %u\n", fc->last_ack_recv);
3145       if (GNUNET_YES == droppable)
3146       {
3147         fc->queue_n++;
3148       }
3149       else
3150       {
3151         LOG (GNUNET_ERROR_TYPE_DEBUG, "  not droppable, Q_N stays the same\n");
3152       }
3153       if (GC_is_pid_bigger (fc->last_pid_sent + 1, fc->last_ack_recv))
3154       {
3155         GCC_start_poll (c, fwd);
3156       }
3157       break;
3158     case GNUNET_MESSAGE_TYPE_CADET_AX:
3159       axmsg = (struct GNUNET_CADET_AX *) data;
3160       axmsg->cid = c->id;
3161       LOG (GNUNET_ERROR_TYPE_DEBUG, "  Q_N+ %p %u\n", fc, fc->queue_n);
3162       LOG (GNUNET_ERROR_TYPE_DEBUG, "last pid sent %u\n", fc->last_pid_sent);
3163       LOG (GNUNET_ERROR_TYPE_DEBUG, "     ack recv %u\n", fc->last_ack_recv);
3164       break;
3165
3166     case GNUNET_MESSAGE_TYPE_CADET_KX:
3167       kmsg = (struct GNUNET_CADET_KX *) data;
3168       kmsg->cid = c->id;
3169       break;
3170
3171     case GNUNET_MESSAGE_TYPE_CADET_ACK:
3172       amsg = (struct GNUNET_CADET_ACK *) data;
3173       amsg->cid = c->id;
3174       LOG (GNUNET_ERROR_TYPE_DEBUG, " ack %u\n", ntohl (amsg->ack));
3175       droppable = GNUNET_NO;
3176       break;
3177
3178     case GNUNET_MESSAGE_TYPE_CADET_POLL:
3179       pmsg = (struct GNUNET_CADET_Poll *) data;
3180       pmsg->cid = c->id;
3181       LOG (GNUNET_ERROR_TYPE_DEBUG, " poll %u\n", ntohl (pmsg->pid));
3182       droppable = GNUNET_NO;
3183       break;
3184
3185     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY:
3186       dmsg = (struct GNUNET_CADET_ConnectionDestroy *) data;
3187       dmsg->cid = c->id;
3188       break;
3189
3190     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN:
3191       bmsg = (struct GNUNET_CADET_ConnectionBroken *) data;
3192       bmsg->cid = c->id;
3193       break;
3194
3195     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
3196     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
3197       break;
3198
3199     default:
3200       GNUNET_break (0);
3201       GNUNET_free (data);
3202       return NULL;
3203   }
3204
3205   if (fc->queue_n > fc->queue_max && droppable)
3206   {
3207     GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
3208                               1, GNUNET_NO);
3209     GNUNET_break (0);
3210     LOG (GNUNET_ERROR_TYPE_DEBUG, "queue full: %u/%u\n",
3211          fc->queue_n, fc->queue_max);
3212     if (GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED == type)
3213     {
3214       fc->queue_n--;
3215     }
3216     GNUNET_free (data);
3217     return NULL; /* Drop this message */
3218   }
3219
3220   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %s %u\n",
3221        GCC_2s (c), c->pending_messages);
3222   c->pending_messages++;
3223
3224   q = GNUNET_new (struct CadetConnectionQueue);
3225   q->forced = !droppable;
3226   q->q = GCP_queue_add (get_hop (c, fwd), data, type, payload_type, payload_id,
3227                         size, c, fwd, &conn_message_sent, q);
3228   if (NULL == q->q)
3229   {
3230     LOG (GNUNET_ERROR_TYPE_DEBUG, "dropping msg on %s, NULL q\n", GCC_2s (c));
3231     GNUNET_free (data);
3232     GNUNET_free (q);
3233     return NULL;
3234   }
3235   q->cont = cont;
3236   q->cont_cls = cont_cls;
3237   return (NULL == cont) ? NULL : q;
3238 }
3239
3240
3241 /**
3242  * Cancel a previously sent message while it's in the queue.
3243  *
3244  * ONLY can be called before the continuation given to the send function
3245  * is called. Once the continuation is called, the message is no longer in the
3246  * queue.
3247  *
3248  * @param q Handle to the queue.
3249  */
3250 void
3251 GCC_cancel (struct CadetConnectionQueue *q)
3252 {
3253   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  GMC cancel message\n");
3254
3255   /* queue destroy calls message_sent, which calls q->cont and frees q */
3256   GCP_queue_destroy (q->q, GNUNET_YES, GNUNET_NO, 0);
3257 }
3258
3259
3260 /**
3261  * Sends a CREATE CONNECTION message for a path to a peer.
3262  * Changes the connection and tunnel states if necessary.
3263  *
3264  * @param connection Connection to create.
3265  */
3266 void
3267 GCC_send_create (struct CadetConnection *connection)
3268 {
3269   enum CadetTunnelCState state;
3270   size_t size;
3271
3272   size = sizeof (struct GNUNET_CADET_ConnectionCreate);
3273   size += connection->path->length * sizeof (struct GNUNET_PeerIdentity);
3274
3275   LOG (GNUNET_ERROR_TYPE_INFO, "---> %s on connection %s  (%u bytes)\n",
3276        GC_m2s (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE),
3277        GCC_2s (connection), size);
3278   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %p %u (create)\n",
3279        connection, connection->pending_messages);
3280   connection->pending_messages++;
3281
3282   connection->maintenance_q =
3283     GCP_queue_add (get_next_hop (connection), NULL,
3284                    GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE, 0, 0,
3285                    size, connection, GNUNET_YES, &conn_message_sent, NULL);
3286
3287   state = GCT_get_cstate (connection->t);
3288   if (CADET_TUNNEL_SEARCHING == state || CADET_TUNNEL_NEW == state)
3289     GCT_change_cstate (connection->t, CADET_TUNNEL_WAITING);
3290   if (CADET_CONNECTION_NEW == connection->state)
3291     connection_change_state (connection, CADET_CONNECTION_SENT);
3292 }
3293
3294
3295 /**
3296  * Send a message to all peers in this connection that the connection
3297  * is no longer valid.
3298  *
3299  * If some peer should not receive the message, it should be zero'ed out
3300  * before calling this function.
3301  *
3302  * @param c The connection whose peers to notify.
3303  */
3304 void
3305 GCC_send_destroy (struct CadetConnection *c)
3306 {
3307   struct GNUNET_CADET_ConnectionDestroy msg;
3308
3309   if (GNUNET_YES == c->destroy)
3310     return;
3311
3312   msg.header.size = htons (sizeof (msg));
3313   msg.header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY);
3314   msg.cid = c->id;
3315   LOG (GNUNET_ERROR_TYPE_DEBUG,
3316               "  sending connection destroy for connection %s\n",
3317               GCC_2s (c));
3318
3319   if (GNUNET_NO == GCC_is_terminal (c, GNUNET_YES))
3320     GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg.header, 0, 0, c,
3321                                                       GNUNET_YES, GNUNET_YES,
3322                                                       NULL, NULL));
3323   if (GNUNET_NO == GCC_is_terminal (c, GNUNET_NO))
3324     GNUNET_assert (NULL == GCC_send_prebuilt_message (&msg.header, 0, 0, c,
3325                                                       GNUNET_NO, GNUNET_YES,
3326                                                       NULL, NULL));
3327   c->destroy = GNUNET_YES;
3328   c->state = CADET_CONNECTION_DESTROYED;
3329 }
3330
3331
3332 /**
3333  * @brief Start a polling timer for the connection.
3334  *
3335  * When a neighbor does not accept more traffic on the connection it could be
3336  * caused by a simple congestion or by a lost ACK. Polling enables to check
3337  * for the lastest ACK status for a connection.
3338  *
3339  * @param c Connection.
3340  * @param fwd Should we poll in the FWD direction?
3341  */
3342 void
3343 GCC_start_poll (struct CadetConnection *c, int fwd)
3344 {
3345   struct CadetFlowControl *fc;
3346
3347   fc = fwd ? &c->fwd_fc : &c->bck_fc;
3348   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL %s requested\n",
3349        GC_f2s (fwd));
3350   if (NULL != fc->poll_task || NULL != fc->poll_msg)
3351   {
3352     LOG (GNUNET_ERROR_TYPE_DEBUG, " ***   not needed (%u, %p)\n",
3353          fc->poll_task, fc->poll_msg);
3354     return;
3355   }
3356   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL started on request\n");
3357   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
3358                                                 &connection_poll,
3359                                                 fc);
3360 }
3361
3362
3363 /**
3364  * @brief Stop polling a connection for ACKs.
3365  *
3366  * Once we have enough ACKs for future traffic, polls are no longer necessary.
3367  *
3368  * @param c Connection.
3369  * @param fwd Should we stop the poll in the FWD direction?
3370  */
3371 void
3372 GCC_stop_poll (struct CadetConnection *c, int fwd)
3373 {
3374   struct CadetFlowControl *fc;
3375
3376   fc = fwd ? &c->fwd_fc : &c->bck_fc;
3377   if (NULL != fc->poll_task)
3378   {
3379     GNUNET_SCHEDULER_cancel (fc->poll_task);
3380     fc->poll_task = NULL;
3381   }
3382 }
3383
3384 /**
3385  * Get a (static) string for a connection.
3386  *
3387  * @param c Connection.
3388  */
3389 const char *
3390 GCC_2s (const struct CadetConnection *c)
3391 {
3392   if (NULL == c)
3393     return "NULL";
3394
3395   if (NULL != c->t)
3396   {
3397     static char buf[128];
3398
3399     SPRINTF (buf, "%s (->%s)",
3400              GNUNET_h2s (GC_h2hc (GCC_get_id (c))), GCT_2s (c->t));
3401     return buf;
3402   }
3403   return GNUNET_h2s (GC_h2hc (&c->id));
3404 }
3405
3406
3407 /**
3408  * Log all possible info about the connection state.
3409  *
3410  * @param c Connection to debug.
3411  * @param level Debug level to use.
3412  */
3413 void
3414 GCC_debug (const struct CadetConnection *c, enum GNUNET_ErrorType level)
3415 {
3416   int do_log;
3417   char *s;
3418
3419   do_log = GNUNET_get_log_call_status (level & (~GNUNET_ERROR_TYPE_BULK),
3420                                        "cadet-con",
3421                                        __FILE__, __FUNCTION__, __LINE__);
3422   if (0 == do_log)
3423     return;
3424
3425   if (NULL == c)
3426   {
3427     LOG2 (level, "CCC DEBUG NULL CONNECTION\n");
3428     return;
3429   }
3430
3431   LOG2 (level, "CCC DEBUG CONNECTION %s\n", GCC_2s (c));
3432   s = path_2s (c->path);
3433   LOG2 (level, "CCC  path %s, own pos: %u\n", s, c->own_pos);
3434   GNUNET_free (s);
3435   LOG2 (level, "CCC  state: %s, destroy: %u\n",
3436         GCC_state2s (c->state), c->destroy);
3437   LOG2 (level, "CCC  pending messages: %u\n", c->pending_messages);
3438   if (NULL != c->perf)
3439     LOG2 (level, "CCC  us/byte: %f\n", c->perf->avg);
3440
3441   LOG2 (level, "CCC  FWD flow control:\n");
3442   LOG2 (level, "CCC   queue: %u/%u\n", c->fwd_fc.queue_n, c->fwd_fc.queue_max);
3443   LOG2 (level, "CCC   last PID sent: %5u, recv: %5u\n",
3444         c->fwd_fc.last_pid_sent, c->fwd_fc.last_pid_recv);
3445   LOG2 (level, "CCC   last ACK sent: %5u, recv: %5u\n",
3446         c->fwd_fc.last_ack_sent, c->fwd_fc.last_ack_recv);
3447   LOG2 (level, "CCC   recv PID bitmap: %X\n", c->fwd_fc.recv_bitmap);
3448   LOG2 (level, "CCC   POLL: task %d, msg  %p, msg_ack %p)\n",
3449         c->fwd_fc.poll_task, c->fwd_fc.poll_msg, c->fwd_fc.ack_msg);
3450
3451   LOG2 (level, "CCC  BCK flow control:\n");
3452   LOG2 (level, "CCC   queue: %u/%u\n", c->bck_fc.queue_n, c->bck_fc.queue_max);
3453   LOG2 (level, "CCC   last PID sent: %5u, recv: %5u\n",
3454         c->bck_fc.last_pid_sent, c->bck_fc.last_pid_recv);
3455   LOG2 (level, "CCC   last ACK sent: %5u, recv: %5u\n",
3456         c->bck_fc.last_ack_sent, c->bck_fc.last_ack_recv);
3457   LOG2 (level, "CCC   recv PID bitmap: %X\n", c->bck_fc.recv_bitmap);
3458   LOG2 (level, "CCC   POLL: task %d, msg  %p, msg_ack %p)\n",
3459         c->bck_fc.poll_task, c->bck_fc.poll_msg, c->bck_fc.ack_msg);
3460
3461   LOG2 (level, "CCC DEBUG CONNECTION END\n");
3462 }
3463