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