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