- fix handling of path's on duplicate PATH_CREATE messages
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_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 mesh/gnunet-service-mesh_connection.c
23  * @brief GNUnet MESH 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 "mesh_path.h"
33 #include "mesh_protocol.h"
34 #include "mesh.h"
35 #include "gnunet-service-mesh_connection.h"
36 #include "gnunet-service-mesh_peer.h"
37 #include "gnunet-service-mesh_tunnel.h"
38
39
40 #define LOG(level, ...) GNUNET_log_from (level,"mesh-con",__VA_ARGS__)
41
42 #define MESH_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 MeshFlowControl
57 {
58   /**
59    * Connection this controls.
60    */
61   struct MeshConnection *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    * Next ID to use.
75    */
76   uint32_t next_pid;
77
78   /**
79    * ID of the last packet sent towards the peer.
80    */
81   uint32_t last_pid_sent;
82
83   /**
84    * ID of the last packet received from the peer.
85    */
86   uint32_t last_pid_recv;
87
88   /**
89    * Last ACK sent to the peer (peer can't send more than this PID).
90    */
91   uint32_t last_ack_sent;
92
93   /**
94    * Last ACK sent towards the origin (for traffic towards leaf node).
95    */
96   uint32_t last_ack_recv;
97
98   /**
99    * Task to poll the peer in case of a lost ACK causes stall.
100    */
101   GNUNET_SCHEDULER_TaskIdentifier poll_task;
102
103   /**
104    * How frequently to poll for ACKs.
105    */
106   struct GNUNET_TIME_Relative poll_time;
107
108   /**
109    * Queued poll message, to cancel if not necessary anymore (got ACK).
110    */
111   struct MeshConnectionQueue *poll_msg;
112
113   /**
114    * Queued poll message, to cancel if not necessary anymore (got ACK).
115    */
116   struct MeshConnectionQueue *ack_msg;
117 };
118
119 /**
120  * Keep a record of the last messages sent on this connection.
121  */
122 struct MeshConnectionPerformance
123 {
124   /**
125    * Circular buffer for storing measurements.
126    */
127   double usecsperbyte[AVG_MSGS];
128
129   /**
130    * Running average of @c usecsperbyte.
131    */
132   double avg;
133
134   /**
135    * How many values of @c usecsperbyte are valid.
136    */
137   uint16_t size;
138
139   /**
140    * Index of the next "free" position in @c usecsperbyte.
141    */
142   uint16_t idx;
143 };
144
145
146 /**
147  * Struct containing all information regarding a connection to a peer.
148  */
149 struct MeshConnection
150 {
151   /**
152    * Tunnel this connection is part of.
153    */
154   struct MeshTunnel3 *t;
155
156   /**
157    * Flow control information for traffic fwd.
158    */
159   struct MeshFlowControl fwd_fc;
160
161   /**
162    * Flow control information for traffic bck.
163    */
164   struct MeshFlowControl bck_fc;
165
166   /**
167    * Measure connection performance on the endpoint.
168    */
169   struct MeshConnectionPerformance *perf;
170
171   /**
172    * ID of the connection.
173    */
174   struct GNUNET_HashCode id;
175
176   /**
177    * State of the connection.
178    */
179   enum MeshConnectionState state;
180
181   /**
182    * Path being used for the tunnel.
183    */
184   struct MeshPeerPath *path;
185
186   /**
187    * Position of the local peer in the path.
188    */
189   unsigned int own_pos;
190
191   /**
192    * Task to keep the used paths alive at the owner,
193    * time tunnel out on all the other peers.
194    */
195   GNUNET_SCHEDULER_TaskIdentifier fwd_maintenance_task;
196
197   /**
198    * Task to keep the used paths alive at the destination,
199    * time tunnel out on all the other peers.
200    */
201   GNUNET_SCHEDULER_TaskIdentifier bck_maintenance_task;
202
203   /**
204    * Pending message count.
205    */
206   int pending_messages;
207
208   /**
209    * Destroy flag: if true, destroy on last message.
210    */
211   int destroy;
212 };
213
214 /**
215  * Handle for messages queued but not yet sent.
216  */
217 struct MeshConnectionQueue
218 {
219   /**
220    * Peer queue handle, to cancel if necessary.
221    */
222   struct MeshPeerQueue *q;
223
224   /**
225    * Continuation to call once sent.
226    */
227   GMC_sent cont;
228
229   /**
230    * Closure for @c cont.
231    */
232   void *cont_cls;
233 };
234
235 /******************************************************************************/
236 /*******************************   GLOBALS  ***********************************/
237 /******************************************************************************/
238
239 /**
240  * Global handle to the statistics service.
241  */
242 extern struct GNUNET_STATISTICS_Handle *stats;
243
244 /**
245  * Local peer own ID (memory efficient handle).
246  */
247 extern GNUNET_PEER_Id myid;
248
249 /**
250  * Local peer own ID (full value).
251  */
252 extern struct GNUNET_PeerIdentity my_full_id;
253
254 /**
255  * Connections known, indexed by cid (MeshConnection).
256  */
257 static struct GNUNET_CONTAINER_MultiHashMap *connections;
258
259 /**
260  * How many connections are we willing to maintain.
261  * Local connections are always allowed, even if there are more connections than max.
262  */
263 static unsigned long long max_connections;
264
265 /**
266  * How many messages *in total* are we willing to queue, divide by number of
267  * connections to get connection queue size.
268  */
269 static unsigned long long max_msgs_queue;
270
271 /**
272  * How often to send path keepalives. Paths timeout after 4 missed.
273  */
274 static struct GNUNET_TIME_Relative refresh_connection_time;
275
276 /**
277  * How often to send path create / ACKs.
278  */
279 static struct GNUNET_TIME_Relative create_connection_time;
280
281
282 /******************************************************************************/
283 /********************************   STATIC  ***********************************/
284 /******************************************************************************/
285
286 #if 0 // avoid compiler warning for unused static function
287 static void
288 fc_debug (struct MeshFlowControl *fc)
289 {
290   LOG (GNUNET_ERROR_TYPE_DEBUG, "    IN: %u/%u\n",
291               fc->last_pid_recv, fc->last_ack_sent);
292   LOG (GNUNET_ERROR_TYPE_DEBUG, "    OUT: %u/%u\n",
293               fc->last_pid_sent, fc->last_ack_recv);
294   LOG (GNUNET_ERROR_TYPE_DEBUG, "    QUEUE: %u/%u\n",
295               fc->queue_n, fc->queue_max);
296 }
297
298 static void
299 connection_debug (struct MeshConnection *c)
300 {
301   if (NULL == c)
302   {
303     LOG (GNUNET_ERROR_TYPE_DEBUG, "*** DEBUG NULL CONNECTION ***\n");
304     return;
305   }
306   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connection %s:%X\n",
307               peer2s (c->t->peer), GMC_2s (c));
308   LOG (GNUNET_ERROR_TYPE_DEBUG, "  state: %u, pending msgs: %u\n",
309               c->state, c->pending_messages);
310   LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD FC\n");
311   fc_debug (&c->fwd_fc);
312   LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK FC\n");
313   fc_debug (&c->bck_fc);
314 }
315 #endif
316
317 /**
318  * Get string description for tunnel state.
319  *
320  * @param s Tunnel state.
321  *
322  * @return String representation.
323  */
324 static const char *
325 GMC_state2s (enum MeshConnectionState s)
326 {
327   switch (s)
328   {
329     case MESH_CONNECTION_NEW:
330       return "MESH_CONNECTION_NEW";
331     case MESH_CONNECTION_SENT:
332       return "MESH_CONNECTION_SENT";
333     case MESH_CONNECTION_ACK:
334       return "MESH_CONNECTION_ACK";
335     case MESH_CONNECTION_READY:
336       return "MESH_CONNECTION_READY";
337     default:
338       return "MESH_CONNECTION_STATE_ERROR";
339   }
340 }
341
342
343 /**
344  * Initialize a Flow Control structure to the initial state.
345  *
346  * @param fc Flow Control structure to initialize.
347  */
348 static void
349 fc_init (struct MeshFlowControl *fc)
350 {
351   fc->next_pid = 0;
352   fc->last_pid_sent = (uint32_t) -1; /* Next (expected) = 0 */
353   fc->last_pid_recv = (uint32_t) -1;
354   fc->last_ack_sent = (uint32_t) 0;
355   fc->last_ack_recv = (uint32_t) 0;
356   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
357   fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
358   fc->queue_n = 0;
359   fc->queue_max = (max_msgs_queue / max_connections) + 1;
360 }
361
362
363 /**
364  * Find a connection.
365  *
366  * @param cid Connection ID.
367  */
368 static struct MeshConnection *
369 connection_get (const struct GNUNET_HashCode *cid)
370 {
371   return GNUNET_CONTAINER_multihashmap_get (connections, cid);
372 }
373
374
375 static void
376 connection_change_state (struct MeshConnection* c,
377                          enum MeshConnectionState state)
378 {
379   LOG (GNUNET_ERROR_TYPE_DEBUG,
380               "Connection %s state was %s\n",
381               GMC_2s (c), GMC_state2s (c->state));
382   LOG (GNUNET_ERROR_TYPE_DEBUG,
383               "Connection %s state is now %s\n",
384               GMC_2s (c), GMC_state2s (state));
385   c->state = state;
386 }
387
388
389 /**
390  * Callback called when a queued ACK message is sent.
391  *
392  * @param cls Closure (FC).
393  * @param c Connection this message was on.
394  * @param q Queue handler this call invalidates.
395  * @param type Type of message sent.
396  * @param fwd Was this a FWD going message?
397  * @param size Size of the message.
398  */
399 static void
400 ack_sent (void *cls,
401           struct MeshConnection *c,
402           struct MeshConnectionQueue *q,
403           uint16_t type, int fwd, size_t size)
404 {
405   struct MeshFlowControl *fc = cls;
406
407   fc->ack_msg = NULL;
408 }
409
410
411 /**
412  * Send an ACK on the connection, informing the predecessor about
413  * the available buffer space. Should not be called in case the peer
414  * is origin (no predecessor) in the @c fwd direction.
415  *
416  * Note that for fwd ack, the FWD mean forward *traffic* (root->dest),
417  * the ACK itself goes "back" (dest->root).
418  *
419  * @param c Connection on which to send the ACK.
420  * @param buffer How much space free to advertise?
421  * @param fwd Is this FWD ACK? (Going dest -> root)
422  * @param force Don't optimize out.
423  */
424 static void
425 send_ack (struct MeshConnection *c, unsigned int buffer, int fwd, int force)
426 {
427   struct MeshFlowControl *next_fc;
428   struct MeshFlowControl *prev_fc;
429   struct GNUNET_MESH_ACK msg;
430   uint32_t ack;
431   int delta;
432
433   /* If origin, there is no connection to send ACKs. Wrong function! */
434   if (GMC_is_origin (c, fwd))
435   {
436     GNUNET_break (0);
437     return;
438   }
439
440   next_fc = fwd ? &c->fwd_fc : &c->bck_fc;
441   prev_fc = fwd ? &c->bck_fc : &c->fwd_fc;
442
443   LOG (GNUNET_ERROR_TYPE_DEBUG,
444               "connection send %s ack on %s\n",
445               fwd ? "FWD" : "BCK", GMC_2s (c));
446
447   /* Check if we need to transmit the ACK. */
448   delta = prev_fc->last_ack_sent - prev_fc->last_pid_recv;
449   if (3 < delta && buffer < delta && GNUNET_NO == force)
450   {
451     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, buffer > 3\n");
452     LOG (GNUNET_ERROR_TYPE_DEBUG,
453          "  last pid recv: %u, last ack sent: %u\n",
454          prev_fc->last_pid_recv, prev_fc->last_ack_sent);
455     return;
456   }
457
458   /* Ok, ACK might be necessary, what PID to ACK? */
459   ack = prev_fc->last_pid_recv + buffer;
460   LOG (GNUNET_ERROR_TYPE_DEBUG, " ACK %u\n", ack);
461   LOG (GNUNET_ERROR_TYPE_DEBUG,
462        " last pid %u, last ack %u, qmax %u, q %u\n",
463        prev_fc->last_pid_recv, prev_fc->last_ack_sent,
464        next_fc->queue_max, next_fc->queue_n);
465   if (ack == prev_fc->last_ack_sent && GNUNET_NO == force)
466   {
467     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not sending FWD ACK, not needed\n");
468     return;
469   }
470
471   /* Check if message is already in queue */
472   if (NULL != prev_fc->ack_msg)
473   {
474     if (GMC_is_pid_bigger (ack, prev_fc->last_ack_sent))
475     {
476       LOG (GNUNET_ERROR_TYPE_DEBUG, " canceling old ACK\n");
477       GMC_cancel (prev_fc->ack_msg);
478       /* GMC_cancel triggers ack_sent(), which clears fc->ack_msg */
479     }
480     else
481     {
482       LOG (GNUNET_ERROR_TYPE_DEBUG, " same ACK already in queue\n");
483       return;
484     }
485   }
486
487   prev_fc->last_ack_sent = ack;
488
489   /* Build ACK message and send on connection */
490   msg.header.size = htons (sizeof (msg));
491   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ACK);
492   msg.ack = htonl (ack);
493   msg.cid = c->id;
494
495   prev_fc->ack_msg = GMC_send_prebuilt_message (&msg.header, c, !fwd,
496                                                 &ack_sent, prev_fc);
497 }
498
499
500 /**
501  * Callback called when a queued message is sent.
502  *
503  * Calculates the average time and connection packet tracking.
504  *
505  * @param cls Closure (ConnectionQueue Handle).
506  * @param c Connection this message was on.
507  * @param type Type of message sent.
508  * @param fwd Was this a FWD going message?
509  * @param size Size of the message.
510  * @param wait Time spent waiting for core (only the time for THIS message)
511  */
512 static void 
513 message_sent (void *cls,
514               struct MeshConnection *c, uint16_t type,
515               int fwd, size_t size,
516               struct GNUNET_TIME_Relative wait)
517 {
518   struct MeshConnectionPerformance *p;
519   struct MeshFlowControl *fc;
520   struct MeshConnectionQueue *q = cls;
521   double usecsperbyte;
522
523   fc = fwd ? &c->fwd_fc : &c->bck_fc;
524   LOG (GNUNET_ERROR_TYPE_DEBUG,
525        "!  sent %s %s\n",
526        fwd ? "FWD" : "BCK",
527        GNUNET_MESH_DEBUG_M2S (type));
528   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  C_P- %p %u\n", c, c->pending_messages);
529   if (NULL != q)
530   {
531     if (NULL != q->cont)
532     {
533       LOG (GNUNET_ERROR_TYPE_DEBUG, "!  calling cont\n");
534       q->cont (q->cont_cls, c, q, type, fwd, size);
535     }
536     GNUNET_free (q);
537   }
538   c->pending_messages--;
539   if (GNUNET_YES == c->destroy && 0 == c->pending_messages)
540   {
541     LOG (GNUNET_ERROR_TYPE_DEBUG, "!  destroying connection!\n");
542     GMC_destroy (c);
543     return;
544   }
545   /* Send ACK if needed, after accounting for sent ID in fc->queue_n */
546   switch (type)
547   {
548     case GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED:
549       fc->last_pid_sent++;
550       LOG (GNUNET_ERROR_TYPE_DEBUG, "!  Q_N- %p %u\n", fc, fc->queue_n);
551       fc->queue_n--;
552       LOG (GNUNET_ERROR_TYPE_DEBUG,
553            "!   accounting pid %u\n",
554            fc->last_pid_sent);
555       GMC_send_ack (c, fwd, GNUNET_NO);
556       break;
557
558     case GNUNET_MESSAGE_TYPE_MESH_POLL:
559       fc->poll_msg = NULL;
560       break;
561
562     case GNUNET_MESSAGE_TYPE_MESH_ACK:
563       fc->ack_msg = NULL;
564       break;
565
566     default:
567       break;
568   }
569   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  message sent!\n");
570
571   if (NULL == c->perf)
572     return; /* Only endpoints are interested in timing. */
573
574   p = c->perf;
575   usecsperbyte = ((double) wait.rel_value_us) / size;
576   if (p->size == AVG_MSGS)
577   {
578     /* Array is full. Substract oldest value, add new one and store. */
579     p->avg -= (p->usecsperbyte[p->idx] / AVG_MSGS);
580     p->usecsperbyte[p->idx] = usecsperbyte;
581     p->avg += (p->usecsperbyte[p->idx] / AVG_MSGS);
582   }
583   else
584   {
585     /* Array not yet full. Add current value to avg and store. */
586     p->usecsperbyte[p->idx] = usecsperbyte;
587     p->avg *= p->size;
588     p->avg += p->usecsperbyte[p->idx];
589     p->size++;
590     p->avg /= p->size;
591   }
592   p->idx = (p->idx + 1) % AVG_MSGS;
593 }
594
595
596 /**
597  * Get the previous hop in a connection
598  *
599  * @param c Connection.
600  *
601  * @return Previous peer in the connection.
602  */
603 static struct MeshPeer *
604 get_prev_hop (const struct MeshConnection *c)
605 {
606   GNUNET_PEER_Id id;
607
608   LOG (GNUNET_ERROR_TYPE_DEBUG, "Get prev hop, own pos %u\n", c->own_pos);
609   if (0 == c->own_pos || c->path->length < 2)
610     id = c->path->peers[0];
611   else
612     id = c->path->peers[c->own_pos - 1];
613
614   return GMP_get_short (id);
615 }
616
617
618 /**
619  * Get the next hop in a connection
620  *
621  * @param c Connection.
622  *
623  * @return Next peer in the connection.
624  */
625 static struct MeshPeer *
626 get_next_hop (const struct MeshConnection *c)
627 {
628   GNUNET_PEER_Id id;
629
630   if ((c->path->length - 1) == c->own_pos || c->path->length < 2)
631     id = c->path->peers[c->path->length - 1];
632   else
633     id = c->path->peers[c->own_pos + 1];
634
635   return GMP_get_short (id);
636 }
637
638
639 /**
640  * Get the hop in a connection.
641  *
642  * @param c Connection.
643  * @param fwd Next hop?
644  *
645  * @return Next peer in the connection.
646  */
647 static struct MeshPeer *
648 get_hop (struct MeshConnection *c, int fwd)
649 {
650   if (fwd)
651     return get_next_hop (c);
652   return get_prev_hop (c);
653 }
654
655
656 /**
657  * Is traffic coming from this sender 'FWD' traffic?
658  *
659  * @param c Connection to check.
660  * @param sender Peer identity of neighbor.
661  *
662  * @return #GNUNET_YES in case the sender is the 'prev' hop and therefore
663  *         the traffic is 'FWD'.
664  *         #GNUNET_NO for BCK.
665  *         #GNUNET_SYSERR for errors.
666  */
667 static int 
668 is_fwd (const struct MeshConnection *c,
669         const struct GNUNET_PeerIdentity *sender)
670 {
671   GNUNET_PEER_Id id;
672
673   id = GNUNET_PEER_search (sender);
674   if (GMP_get_short_id (get_prev_hop (c)) == id)
675     return GNUNET_YES;
676
677   if (GMP_get_short_id (get_next_hop (c)) == id)
678     return GNUNET_NO;
679
680   GNUNET_break (0);
681   return GNUNET_SYSERR;
682 }
683
684
685 /**
686  * Sends a CONNECTION ACK message in reponse to a received CONNECTION_CREATE
687  * or a first CONNECTION_ACK directed to us.
688  *
689  * @param connection Connection to confirm.
690  * @param fwd Should we send it FWD? (root->dest)
691  *            (First (~SYNACK) goes BCK, second (~ACK) goes FWD)
692  */
693 static void
694 send_connection_ack (struct MeshConnection *connection, int fwd)
695 {
696   struct MeshTunnel3 *t;
697
698   t = connection->t;
699   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send connection %s ACK\n",
700        !fwd ? "FWD" : "BCK");
701   GMP_queue_add (get_hop (connection, fwd), NULL,
702                  GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK,
703                  sizeof (struct GNUNET_MESH_ConnectionACK),
704                  connection, fwd, &message_sent, NULL);
705   connection->pending_messages++;
706   if (MESH_TUNNEL3_NEW == GMT_get_state (t))
707     GMT_change_state (t, MESH_TUNNEL3_WAITING);
708   if (MESH_CONNECTION_READY != connection->state)
709     connection_change_state (connection, MESH_CONNECTION_SENT);
710 }
711
712
713 /**
714  * Send a notification that a connection is broken.
715  *
716  * @param c Connection that is broken.
717  * @param id1 Peer that has disconnected.
718  * @param id2 Peer that has disconnected.
719  * @param fwd Direction towards which to send it.
720  */
721 static void
722 send_broken (struct MeshConnection *c,
723              const struct GNUNET_PeerIdentity *id1,
724              const struct GNUNET_PeerIdentity *id2,
725              int fwd)
726 {
727   struct GNUNET_MESH_ConnectionBroken msg;
728
729   msg.header.size = htons (sizeof (struct GNUNET_MESH_ConnectionBroken));
730   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN);
731   msg.cid = c->id;
732   msg.peer1 = *id1;
733   msg.peer2 = *id2;
734   GMC_send_prebuilt_message (&msg.header, c, fwd, NULL, NULL);
735 }
736
737
738
739 /**
740  * Send keepalive packets for a connection.
741  *
742  * @param c Connection to keep alive..
743  * @param fwd Is this a FWD keepalive? (owner -> dest).
744  * 
745  * FIXME use only one type, register in GMC_send_prebuilt_message()
746  */
747 static void
748 connection_keepalive (struct MeshConnection *c, int fwd)
749 {
750   struct GNUNET_MESH_ConnectionKeepAlive *msg;
751   size_t size = sizeof (struct GNUNET_MESH_ConnectionKeepAlive);
752   char cbuf[size];
753   uint16_t type;
754
755   type = fwd ? GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE :
756                GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE;
757
758   LOG (GNUNET_ERROR_TYPE_DEBUG,
759        "sending %s keepalive for connection %s]\n",
760        fwd ? "FWD" : "BCK", GMC_2s (c));
761
762   msg = (struct GNUNET_MESH_ConnectionKeepAlive *) cbuf;
763   msg->header.size = htons (size);
764   msg->header.type = htons (type);
765   msg->cid = c->id;
766
767   GMC_send_prebuilt_message (&msg->header, c, fwd, NULL, NULL);
768 }
769
770
771 /**
772  * Send CONNECTION_{CREATE/ACK} packets for a connection.
773  *
774  * @param c Connection for which to send the message.
775  * @param fwd If #GNUNET_YES, send CREATE, otherwise send ACK.
776  */
777 static void
778 connection_recreate (struct MeshConnection *c, int fwd)
779 {
780   LOG (GNUNET_ERROR_TYPE_DEBUG, "sending connection recreate\n");
781   if (fwd)
782     GMC_send_create (c);
783   else
784     send_connection_ack (c, GNUNET_NO);
785 }
786
787
788 /**
789  * Generic connection timer management.
790  * Depending on the role of the peer in the connection will send the
791  * appropriate message (build or keepalive)
792  *
793  * @param c Conncetion to maintain.
794  * @param fwd Is FWD?
795  */
796 static void
797 connection_maintain (struct MeshConnection *c, int fwd)
798 {
799   if (MESH_TUNNEL3_SEARCHING == GMT_get_state (c->t))
800   {
801     /* TODO DHT GET with RO_BART */
802     return;
803   }
804   switch (c->state)
805   {
806     case MESH_CONNECTION_NEW:
807       GNUNET_break (0);
808       /* fall-through */
809     case MESH_CONNECTION_SENT:
810       connection_recreate (c, fwd);
811       break;
812     case MESH_CONNECTION_READY:
813       connection_keepalive (c, fwd);
814       break;
815     default:
816       break;
817   }
818 }
819
820
821 static void
822 connection_fwd_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
823 {
824   struct MeshConnection *c = cls;
825   struct GNUNET_TIME_Relative delay;
826
827   c->fwd_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
828   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
829     return;
830
831   connection_maintain (c, GNUNET_YES);
832   delay = c->state == MESH_CONNECTION_READY ?
833           refresh_connection_time : create_connection_time;
834   c->fwd_maintenance_task = GNUNET_SCHEDULER_add_delayed (delay,
835                                                           &connection_fwd_keepalive,
836                                                           c);
837 }
838
839
840 static void
841 connection_bck_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
842 {
843   struct MeshConnection *c = cls;
844   struct GNUNET_TIME_Relative delay;
845
846   c->bck_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
847   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
848     return;
849
850   connection_maintain (c, GNUNET_NO);
851   delay = c->state == MESH_CONNECTION_READY ?
852           refresh_connection_time : create_connection_time;
853   c->bck_maintenance_task = GNUNET_SCHEDULER_add_delayed (delay,
854                                                           &connection_bck_keepalive,
855                                                           c);
856 }
857
858
859 /**
860  * @brief Re-initiate traffic on this connection if necessary.
861  *
862  * Check if there is traffic queued towards this peer
863  * and the core transmit handle is NULL (traffic was stalled).
864  * If so, call core tmt rdy.
865  *
866  * @param c Connection on which initiate traffic.
867  * @param fwd Is this about fwd traffic?
868  */
869 static void
870 connection_unlock_queue (struct MeshConnection *c, int fwd)
871 {
872   struct MeshPeer *peer;
873
874   LOG (GNUNET_ERROR_TYPE_DEBUG,
875               "connection_unlock_queue %s on %s\n",
876               fwd ? "FWD" : "BCK", GMC_2s (c));
877
878   if (GMC_is_terminal (c, fwd))
879   {
880     LOG (GNUNET_ERROR_TYPE_DEBUG, " is terminal!\n");
881     return;
882   }
883
884   peer = get_hop (c, fwd);
885   GMP_queue_unlock (peer, c);
886 }
887
888
889 /**
890  * Cancel all transmissions that belong to a certain connection.
891  * 
892  * If the connection is scheduled for destruction and no more messages are left,
893  * the connection will be destroyed by the continuation call.
894  *
895  * @param c Connection which to cancel. Might be destroyed during this call.
896  * @param fwd Cancel fwd traffic?
897  */
898 static void
899 connection_cancel_queues (struct MeshConnection *c, int fwd)
900 {
901   struct MeshFlowControl *fc;
902   struct MeshPeer *peer;
903
904   if (NULL == c)
905   {
906     GNUNET_break (0);
907     return;
908   }
909
910   fc = fwd ? &c->fwd_fc : &c->bck_fc;
911   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
912   {
913     GNUNET_SCHEDULER_cancel (fc->poll_task);
914     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
915   }
916   peer = get_hop (c, fwd);
917   GMP_queue_cancel (peer, c);
918 }
919
920
921 /**
922  * Function called if a connection has been stalled for a while,
923  * possibly due to a missed ACK. Poll the neighbor about its ACK status.
924  *
925  * @param cls Closure (poll ctx).
926  * @param tc TaskContext.
927  */
928 static void
929 connection_poll (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
930
931
932 /**
933  * Callback called when a queued POLL message is sent.
934  *
935  * @param cls Closure (FC).
936  * @param c Connection this message was on.
937  * @param q Queue handler this call invalidates.
938  * @param type Type of message sent.
939  * @param fwd Was this a FWD going message?
940  * @param size Size of the message.
941  */
942 static void
943 poll_sent (void *cls,
944            struct MeshConnection *c,
945            struct MeshConnectionQueue *q,
946            uint16_t type, int fwd, size_t size)
947 {
948   struct MeshFlowControl *fc = cls;
949
950   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL sent, scheduling new one!\n");
951   fc->poll_msg = NULL;
952   fc->poll_time = GNUNET_TIME_STD_BACKOFF (fc->poll_time);
953   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
954                                                 &connection_poll, fc);
955 }
956
957 /**
958  * Function called if a connection has been stalled for a while,
959  * possibly due to a missed ACK. Poll the neighbor about its ACK status.
960  *
961  * @param cls Closure (poll ctx).
962  * @param tc TaskContext.
963  */
964 static void
965 connection_poll (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
966 {
967   struct MeshFlowControl *fc = cls;
968   struct GNUNET_MESH_Poll msg;
969   struct MeshConnection *c;
970
971   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
972   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
973   {
974     return;
975   }
976
977   c = fc->c;
978   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** Polling!\n");
979   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** connection [%s]\n", GMC_2s (c));
980   LOG (GNUNET_ERROR_TYPE_DEBUG, " ***   %s\n",
981        fc == &c->fwd_fc ? "FWD" : "BCK");
982
983   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_POLL);
984   msg.header.size = htons (sizeof (msg));
985   msg.pid = htonl (fc->last_pid_sent);
986   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** last pid sent: %u!\n", fc->last_pid_sent);
987   fc->poll_msg = GMC_send_prebuilt_message (&msg.header, c, fc == &c->fwd_fc,
988                                             &poll_sent, fc);
989 }
990
991
992 /**
993  * Timeout function due to lack of keepalive/traffic from the owner.
994  * Destroys connection if called.
995  *
996  * @param cls Closure (connection to destroy).
997  * @param tc TaskContext.
998  */
999 static void
1000 connection_fwd_timeout (void *cls,
1001                         const struct GNUNET_SCHEDULER_TaskContext *tc)
1002 {
1003   struct MeshConnection *c = cls;
1004
1005   c->fwd_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
1006   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1007     return;
1008   LOG (GNUNET_ERROR_TYPE_DEBUG,
1009               "Connection %s[%X] FWD timed out. Destroying.\n",
1010               GMT_2s (c->t),
1011               c->id);
1012
1013   if (GMC_is_origin (c, GNUNET_YES)) /* If local, leave. */
1014     return;
1015
1016   GMC_destroy (c);
1017 }
1018
1019
1020 /**
1021  * Timeout function due to lack of keepalive/traffic from the destination.
1022  * Destroys connection if called.
1023  *
1024  * @param cls Closure (connection to destroy).
1025  * @param tc TaskContext
1026  */
1027 static void
1028 connection_bck_timeout (void *cls,
1029                         const struct GNUNET_SCHEDULER_TaskContext *tc)
1030 {
1031   struct MeshConnection *c = cls;
1032
1033   c->bck_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
1034   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1035     return;
1036
1037   LOG (GNUNET_ERROR_TYPE_DEBUG,
1038               "Connection %s[%X] FWD timed out. Destroying.\n",
1039               GMT_2s (c->t), c->id);
1040
1041   if (GMC_is_origin (c, GNUNET_NO)) /* If local, leave. */
1042     return;
1043
1044   GMC_destroy (c);
1045 }
1046
1047
1048 /**
1049  * Resets the connection timeout task, some other message has done the
1050  * task's job.
1051  * - For the first peer on the direction this means to send
1052  *   a keepalive or a path confirmation message (either create or ACK).
1053  * - For all other peers, this means to destroy the connection,
1054  *   due to lack of activity.
1055  * Starts the tiemout if no timeout was running (connection just created).
1056  *
1057  * @param c Connection whose timeout to reset.
1058  * @param fwd Is this forward?
1059  *
1060  * TODO use heap to improve efficiency of scheduler.
1061  */
1062 static void
1063 connection_reset_timeout (struct MeshConnection *c, int fwd)
1064 {
1065   GNUNET_SCHEDULER_TaskIdentifier *ti;
1066   GNUNET_SCHEDULER_Task f;
1067
1068   ti = fwd ? &c->fwd_maintenance_task : &c->bck_maintenance_task;
1069
1070   if (GNUNET_SCHEDULER_NO_TASK != *ti)
1071     GNUNET_SCHEDULER_cancel (*ti);
1072
1073   if (GMC_is_origin (c, fwd)) /* Startpoint */
1074   {
1075     f  = fwd ? &connection_fwd_keepalive : &connection_bck_keepalive;
1076     *ti = GNUNET_SCHEDULER_add_delayed (refresh_connection_time, f, c);
1077   }
1078   else /* Relay, endpoint. */
1079   {
1080     struct GNUNET_TIME_Relative delay;
1081
1082     delay = GNUNET_TIME_relative_multiply (refresh_connection_time, 4);
1083     f  = fwd ? &connection_fwd_timeout : &connection_bck_timeout;
1084     *ti = GNUNET_SCHEDULER_add_delayed (delay, f, c);
1085   }
1086 }
1087
1088
1089 /**
1090  * Add the connection to the list of both neighbors.
1091  *
1092  * @param c Connection.
1093  *
1094  * @return #GNUNET_OK if everything went fine
1095  *         #GNUNET_SYSERR if the was an error and @c c is malformed.
1096  */
1097 static int
1098 register_neighbors (struct MeshConnection *c)
1099 {
1100   struct MeshPeer *next_peer;
1101   struct MeshPeer *prev_peer;
1102
1103   next_peer = get_next_hop (c);
1104   prev_peer = get_prev_hop (c);
1105
1106   if (GNUNET_NO == GMP_is_neighbor (next_peer)
1107       || GNUNET_NO == GMP_is_neighbor (prev_peer))
1108     return GNUNET_SYSERR;
1109
1110   GMP_add_connection (next_peer, c);
1111   GMP_add_connection (prev_peer, c);
1112
1113   return GNUNET_OK;
1114 }
1115
1116
1117 /**
1118  * Remove the connection from the list of both neighbors.
1119  *
1120  * @param c Connection.
1121  */
1122 static void
1123 unregister_neighbors (struct MeshConnection *c)
1124 {
1125   struct MeshPeer *peer;
1126
1127   peer = get_next_hop (c);
1128   GMP_remove_connection (peer, c);
1129
1130   peer = get_prev_hop (c);
1131   GMP_remove_connection (peer, c);
1132
1133 }
1134
1135
1136 /**
1137  * Bind the connection to the peer and the tunnel to that peer.
1138  *
1139  * If the peer has no tunnel, create one. Update tunnel and connection
1140  * data structres to reflect new status.
1141  *
1142  * @param c Connection.
1143  * @param peer Peer.
1144  */
1145 static void
1146 add_to_peer (struct MeshConnection *c, struct MeshPeer *peer)
1147 {
1148   GMP_add_tunnel (peer);
1149   c->t = GMP_get_tunnel (peer);
1150   GMT_add_connection (c->t, c);
1151 }
1152
1153 /******************************************************************************/
1154 /********************************    API    ***********************************/
1155 /******************************************************************************/
1156
1157 /**
1158  * Core handler for connection creation.
1159  *
1160  * @param cls Closure (unused).
1161  * @param peer Sender (neighbor).
1162  * @param message Message.
1163  *
1164  * @return GNUNET_OK to keep the connection open,
1165  *         GNUNET_SYSERR to close it (signal serious error)
1166  */
1167 int
1168 GMC_handle_create (void *cls, const struct GNUNET_PeerIdentity *peer,
1169                    const struct GNUNET_MessageHeader *message)
1170 {
1171   struct GNUNET_MESH_ConnectionCreate *msg;
1172   struct GNUNET_PeerIdentity *id;
1173   struct GNUNET_HashCode *cid;
1174   struct MeshPeerPath *path;
1175   struct MeshPeer *dest_peer;
1176   struct MeshPeer *orig_peer;
1177   struct MeshConnection *c;
1178   unsigned int own_pos;
1179   uint16_t size;
1180   uint16_t i;
1181
1182   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1183   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received a connection create msg\n");
1184
1185   /* Check size */
1186   size = ntohs (message->size);
1187   if (size < sizeof (struct GNUNET_MESH_ConnectionCreate))
1188   {
1189     GNUNET_break_op (0);
1190     return GNUNET_OK;
1191   }
1192
1193   /* Calculate hops */
1194   size -= sizeof (struct GNUNET_MESH_ConnectionCreate);
1195   if (size % sizeof (struct GNUNET_PeerIdentity))
1196   {
1197     GNUNET_break_op (0);
1198     return GNUNET_OK;
1199   }
1200   size /= sizeof (struct GNUNET_PeerIdentity);
1201   if (1 > size)
1202   {
1203     GNUNET_break_op (0);
1204     return GNUNET_OK;
1205   }
1206   LOG (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
1207
1208   /* Get parameters */
1209   msg = (struct GNUNET_MESH_ConnectionCreate *) message;
1210   cid = &msg->cid;
1211   id = (struct GNUNET_PeerIdentity *) &msg[1];
1212   LOG (GNUNET_ERROR_TYPE_DEBUG,
1213               "    connection %s (%s).\n",
1214               GNUNET_h2s (cid), GNUNET_i2s (id));
1215
1216   /* Create connection */
1217   c = connection_get (cid);
1218   if (NULL == c)
1219   {
1220     /* Create path */
1221     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
1222     path = path_new (size);
1223     own_pos = 0;
1224     for (i = 0; i < size; i++)
1225     {
1226       LOG (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
1227                   GNUNET_i2s (&id[i]));
1228       path->peers[i] = GNUNET_PEER_intern (&id[i]);
1229       if (path->peers[i] == myid)
1230         own_pos = i;
1231     }
1232     if (own_pos == 0 && path->peers[own_pos] != myid)
1233     {
1234       /* create path: self not found in path through self */
1235       GNUNET_break_op (0);
1236       path_destroy (path);
1237       return GNUNET_OK;
1238     }
1239     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
1240     GMP_add_path_to_all (path, GNUNET_NO);
1241         LOG (GNUNET_ERROR_TYPE_DEBUG, "  Creating connection\n");
1242     c = GMC_new (cid, NULL, path_duplicate (path), own_pos);
1243     if (NULL == c)
1244     {
1245       path_destroy (path);
1246       return GNUNET_OK;
1247     }
1248     connection_reset_timeout (c, GNUNET_YES);
1249   }
1250   else
1251   {
1252     path = path_duplicate (c->path);
1253   }
1254   if (MESH_CONNECTION_NEW == c->state)
1255     connection_change_state (c, MESH_CONNECTION_SENT);
1256
1257   /* Remember peers */
1258   dest_peer = GMP_get (&id[size - 1]);
1259   orig_peer = GMP_get (&id[0]);
1260
1261   /* Is it a connection to us? */
1262   if (c->own_pos == size - 1)
1263   {
1264     LOG (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
1265     GMP_add_path_to_origin (orig_peer, path, GNUNET_YES);
1266
1267     add_to_peer (c, orig_peer);
1268     if (MESH_TUNNEL3_NEW == GMT_get_state (c->t))
1269       GMT_change_state (c->t,  MESH_TUNNEL3_WAITING);
1270
1271     send_connection_ack (c, GNUNET_NO);
1272     if (MESH_CONNECTION_SENT == c->state)
1273       connection_change_state (c, MESH_CONNECTION_ACK);
1274
1275     /* Keep tunnel alive in direction dest->owner*/
1276     c->bck_maintenance_task =
1277             GNUNET_SCHEDULER_add_delayed (create_connection_time,
1278                                           &connection_bck_keepalive, c);
1279   }
1280   else
1281   {
1282     /* It's for somebody else! Retransmit. */
1283     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
1284     GMP_add_path (dest_peer, path_duplicate (path), GNUNET_NO);
1285     GMP_add_path_to_origin (orig_peer, path_duplicate (path), GNUNET_NO);
1286     GMC_send_prebuilt_message (message, c, GNUNET_YES, NULL, NULL);
1287   }
1288   path_destroy (path);
1289   return GNUNET_OK;
1290 }
1291
1292
1293 /**
1294  * Core handler for path confirmations.
1295  *
1296  * @param cls closure
1297  * @param message message
1298  * @param peer peer identity this notification is about
1299  *
1300  * @return GNUNET_OK to keep the connection open,
1301  *         GNUNET_SYSERR to close it (signal serious error)
1302  */
1303 int
1304 GMC_handle_confirm (void *cls, const struct GNUNET_PeerIdentity *peer,
1305                     const struct GNUNET_MessageHeader *message)
1306 {
1307   struct GNUNET_MESH_ConnectionACK *msg;
1308   struct MeshConnection *c;
1309   struct MeshPeerPath *p;
1310   struct MeshPeer *pi;
1311   enum MeshConnectionState oldstate;
1312   int fwd;
1313
1314   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1315   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received a connection ACK msg\n");
1316   msg = (struct GNUNET_MESH_ConnectionACK *) message;
1317   LOG (GNUNET_ERROR_TYPE_DEBUG, "  on connection %s\n",
1318               GNUNET_h2s (&msg->cid));
1319   c = connection_get (&msg->cid);
1320   if (NULL == c)
1321   {
1322     GNUNET_STATISTICS_update (stats, "# control on unknown connection",
1323                               1, GNUNET_NO);
1324     LOG (GNUNET_ERROR_TYPE_DEBUG, "  don't know the connection!\n");
1325     return GNUNET_OK;
1326   }
1327
1328   oldstate = c->state;
1329   LOG (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n", GNUNET_i2s (peer));
1330   pi = GMP_get (peer);
1331   if (get_next_hop (c) == pi)
1332   {
1333     LOG (GNUNET_ERROR_TYPE_DEBUG, "  SYNACK\n");
1334     fwd = GNUNET_NO;
1335     if (MESH_CONNECTION_SENT == oldstate)
1336       connection_change_state (c, MESH_CONNECTION_ACK);
1337   }
1338   else if (get_prev_hop (c) == pi)
1339   {
1340     LOG (GNUNET_ERROR_TYPE_DEBUG, "  ACK\n");
1341     fwd = GNUNET_YES;
1342     connection_change_state (c, MESH_CONNECTION_READY);
1343   }
1344   else
1345   {
1346     GNUNET_break_op (0);
1347     return GNUNET_OK;
1348   }
1349
1350   connection_reset_timeout (c, fwd);
1351
1352   /* Add path to peers? */
1353   p = c->path;
1354   if (NULL != p)
1355   {
1356     GMP_add_path_to_all (p, GNUNET_YES);
1357   }
1358   else
1359   {
1360     GNUNET_break (0);
1361   }
1362
1363   /* Message for us as creator? */
1364   if (GMC_is_origin (c, GNUNET_YES))
1365   {
1366     if (GNUNET_NO != fwd)
1367     {
1368       GNUNET_break_op (0);
1369       return GNUNET_OK;
1370     }
1371     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Connection (SYN)ACK for us!\n");
1372
1373     /* If just created, cancel the short timeout and start a long one */
1374     if (MESH_CONNECTION_SENT == oldstate)
1375       connection_reset_timeout (c, GNUNET_YES);
1376
1377     /* Change connection and tunnel state */
1378     connection_change_state (c, MESH_CONNECTION_READY);
1379     if (MESH_TUNNEL3_WAITING == GMT_get_state (c->t))
1380       GMT_change_state (c->t, MESH_TUNNEL3_READY);
1381
1382     /* Send ACK (~TCP ACK)*/
1383     send_connection_ack (c, GNUNET_YES);
1384     return GNUNET_OK;
1385   }
1386
1387   /* Message for us as destination? */
1388   if (GMC_is_terminal (c, GNUNET_YES))
1389   {
1390     if (GNUNET_YES != fwd)
1391     {
1392       GNUNET_break_op (0);
1393       return GNUNET_OK;
1394     }
1395     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Connection ACK for us!\n");
1396
1397     /* If just created, cancel the short timeout and start a long one */
1398     if (MESH_CONNECTION_ACK == oldstate)
1399       connection_reset_timeout (c, GNUNET_NO);
1400
1401     /* Change tunnel state */
1402     if (MESH_TUNNEL3_WAITING == GMT_get_state (c->t))
1403       GMT_change_state (c->t, MESH_TUNNEL3_READY);
1404
1405     return GNUNET_OK;
1406   }
1407
1408   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1409   GMC_send_prebuilt_message (message, c, fwd, NULL, NULL);
1410   return GNUNET_OK;
1411 }
1412
1413
1414 /**
1415  * Core handler for notifications of broken paths
1416  *
1417  * @param cls Closure (unused).
1418  * @param id Peer identity of sending neighbor.
1419  * @param message Message.
1420  *
1421  * @return GNUNET_OK to keep the connection open,
1422  *         GNUNET_SYSERR to close it (signal serious error)
1423  */
1424 int
1425 GMC_handle_broken (void* cls,
1426                    const struct GNUNET_PeerIdentity* id,
1427                    const struct GNUNET_MessageHeader* message)
1428 {
1429   struct GNUNET_MESH_ConnectionBroken *msg;
1430   struct MeshConnection *c;
1431   int fwd;
1432
1433   LOG (GNUNET_ERROR_TYPE_DEBUG,
1434               "Received a CONNECTION BROKEN msg from %s\n", GNUNET_i2s (id));
1435   msg = (struct GNUNET_MESH_ConnectionBroken *) message;
1436   LOG (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
1437               GNUNET_i2s (&msg->peer1));
1438   LOG (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
1439               GNUNET_i2s (&msg->peer2));
1440   c = connection_get (&msg->cid);
1441   if (NULL == c)
1442   {
1443     GNUNET_break_op (0);
1444     return GNUNET_OK;
1445   }
1446
1447   fwd = is_fwd (c, id);
1448   connection_cancel_queues (c, !fwd);
1449   if (GMC_is_terminal (c, fwd))
1450   {
1451     if (0 < c->pending_messages)
1452       c->destroy = GNUNET_YES;
1453     else
1454       GMC_destroy (c);
1455   }
1456   else
1457   {
1458     GMC_send_prebuilt_message (message, c, fwd, NULL, NULL);
1459     c->destroy = GNUNET_YES;
1460   }
1461
1462   return GNUNET_OK;
1463
1464 }
1465
1466
1467 /**
1468  * Core handler for tunnel destruction
1469  *
1470  * @param cls Closure (unused).
1471  * @param peer Peer identity of sending neighbor.
1472  * @param message Message.
1473  *
1474  * @return GNUNET_OK to keep the connection open,
1475  *         GNUNET_SYSERR to close it (signal serious error)
1476  */
1477 int
1478 GMC_handle_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
1479                     const struct GNUNET_MessageHeader *message)
1480 {
1481   struct GNUNET_MESH_ConnectionDestroy *msg;
1482   struct MeshConnection *c;
1483   int fwd;
1484
1485   msg = (struct GNUNET_MESH_ConnectionDestroy *) message;
1486   LOG (GNUNET_ERROR_TYPE_DEBUG,
1487               "Got a CONNECTION DESTROY message from %s\n",
1488               GNUNET_i2s (peer));
1489   LOG (GNUNET_ERROR_TYPE_DEBUG,
1490               "  for connection %s\n",
1491               GNUNET_h2s (&msg->cid));
1492   c = connection_get (&msg->cid);
1493   if (NULL == c)
1494   {
1495     /* Probably already got the message from another path,
1496      * destroyed the tunnel and retransmitted to children.
1497      * Safe to ignore.
1498      */
1499     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel",
1500                               1, GNUNET_NO);
1501     return GNUNET_OK;
1502   }
1503   fwd = is_fwd (c, peer);
1504   if (GNUNET_SYSERR == fwd)
1505   {
1506     GNUNET_break_op (0);
1507     return GNUNET_OK;
1508   }
1509   GMC_send_prebuilt_message (message, c, fwd, NULL, NULL);
1510   c->destroy = GNUNET_YES;
1511
1512   return GNUNET_OK;
1513 }
1514
1515 /**
1516  * Generic handler for mesh network encrypted traffic.
1517  *
1518  * @param peer Peer identity this notification is about.
1519  * @param msg Encrypted message.
1520  *
1521  * @return GNUNET_OK to keep the connection open,
1522  *         GNUNET_SYSERR to close it (signal serious error)
1523  */
1524 static int
1525 handle_mesh_encrypted (const struct GNUNET_PeerIdentity *peer,
1526                        const struct GNUNET_MESH_Encrypted *msg)
1527 {
1528   struct MeshConnection *c;
1529   struct MeshPeer *neighbor;
1530   struct MeshFlowControl *fc;
1531   GNUNET_PEER_Id peer_id;
1532   uint32_t pid;
1533   uint32_t ttl;
1534   uint16_t type;
1535   size_t size;
1536   int fwd;
1537
1538   /* Check size */
1539   size = ntohs (msg->header.size);
1540   if (size <
1541       sizeof (struct GNUNET_MESH_Encrypted) +
1542       sizeof (struct GNUNET_MessageHeader))
1543   {
1544     GNUNET_break_op (0);
1545     return GNUNET_OK;
1546   }
1547   type = ntohs (msg->header.type);
1548   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1549   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a %s message (#%u) from %s\n",
1550        GNUNET_MESH_DEBUG_M2S (type), ntohl (msg->pid), GNUNET_i2s (peer));
1551
1552   /* Check connection */
1553   c = connection_get (&msg->cid);
1554   if (NULL == c)
1555   {
1556     GNUNET_STATISTICS_update (stats, "# unknown connection", 1, GNUNET_NO);
1557     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING connection unknown\n");
1558     return GNUNET_OK;
1559   }
1560
1561   /* Check if origin is as expected */
1562   neighbor = get_prev_hop (c);
1563   peer_id = GNUNET_PEER_search (peer);
1564   if (peer_id == GMP_get_short_id (neighbor))
1565   {
1566     fwd = GNUNET_YES;
1567   }
1568   else
1569   {
1570     neighbor = get_next_hop (c);
1571     if (peer_id == GMP_get_short_id (neighbor))
1572     {
1573       fwd = GNUNET_NO;
1574     }
1575     else
1576     {
1577       /* Unexpected peer sending traffic on a connection. */
1578       GNUNET_break_op (0);
1579       return GNUNET_OK;
1580     }
1581   }
1582
1583   /* Check PID */
1584   fc = fwd ? &c->bck_fc : &c->fwd_fc;
1585   pid = ntohl (msg->pid);
1586   if (GMC_is_pid_bigger (pid, fc->last_ack_sent))
1587   {
1588     GNUNET_STATISTICS_update (stats, "# unsolicited message", 1, GNUNET_NO);
1589     LOG (GNUNET_ERROR_TYPE_DEBUG,
1590                 "WARNING Received PID %u, (prev %u), ACK %u\n",
1591                 pid, fc->last_pid_recv, fc->last_ack_sent);
1592     return GNUNET_OK;
1593   }
1594   if (GNUNET_NO == GMC_is_pid_bigger (pid, fc->last_pid_recv))
1595   {
1596     GNUNET_STATISTICS_update (stats, "# duplicate PID", 1, GNUNET_NO);
1597     LOG (GNUNET_ERROR_TYPE_DEBUG,
1598                 " Pid %u not expected (%u+), dropping!\n",
1599                 pid, fc->last_pid_recv + 1);
1600     return GNUNET_OK;
1601   }
1602   if (MESH_CONNECTION_SENT == c->state || MESH_CONNECTION_ACK == c->state)
1603     connection_change_state (c, MESH_CONNECTION_READY);
1604   connection_reset_timeout (c, fwd);
1605   fc->last_pid_recv = pid;
1606
1607   /* Is this message for us? */
1608   if (GMC_is_terminal (c, fwd))
1609   {
1610     /* TODO signature verification */
1611     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
1612     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
1613
1614     if (NULL == c->t)
1615     {
1616       GNUNET_break (0);
1617       return GNUNET_OK;
1618     }
1619     fc->last_pid_recv = pid;
1620     GMT_handle_encrypted (c->t, msg);
1621     GMC_send_ack (c, fwd, GNUNET_NO);
1622     return GNUNET_OK;
1623   }
1624
1625   /* Message not for us: forward to next hop */
1626   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1627   ttl = ntohl (msg->ttl);
1628   LOG (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
1629   if (ttl == 0)
1630   {
1631     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
1632     LOG (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
1633     GMC_send_ack (c, fwd, GNUNET_NO);
1634     return GNUNET_OK;
1635   }
1636
1637   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
1638   GMC_send_prebuilt_message (&msg->header, c, fwd, NULL, NULL);
1639
1640   return GNUNET_OK;
1641 }
1642
1643 /**
1644  * Generic handler for mesh network encrypted traffic.
1645  *
1646  * @param peer Peer identity this notification is about.
1647  * @param msg Encrypted message.
1648  *
1649  * @return GNUNET_OK to keep the connection open,
1650  *         GNUNET_SYSERR to close it (signal serious error)
1651  */
1652 static int
1653 handle_mesh_kx (const struct GNUNET_PeerIdentity *peer,
1654                 const struct GNUNET_MESH_KX *msg)
1655 {
1656   struct MeshConnection *c;
1657   struct MeshPeer *neighbor;
1658   GNUNET_PEER_Id peer_id;
1659   size_t size;
1660   uint16_t type;
1661   int fwd;
1662
1663   /* Check size */
1664   size = ntohs (msg->header.size);
1665   if (size <
1666       sizeof (struct GNUNET_MESH_Encrypted) +
1667       sizeof (struct GNUNET_MessageHeader))
1668   {
1669     GNUNET_break_op (0);
1670     return GNUNET_OK;
1671   }
1672   type = ntohs (msg->header.type);
1673   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1674   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a %s message from %s\n",
1675               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
1676
1677   /* Check connection */
1678   c = connection_get (&msg->cid);
1679   if (NULL == c)
1680   {
1681     GNUNET_STATISTICS_update (stats, "# unknown connection", 1, GNUNET_NO);
1682     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING connection unknown\n");
1683     return GNUNET_OK;
1684   }
1685
1686   /* Check if origin is as expected */
1687   neighbor = get_prev_hop (c);
1688   peer_id = GNUNET_PEER_search (peer);
1689   if (peer_id == GMP_get_short_id (neighbor))
1690   {
1691     fwd = GNUNET_YES;
1692   }
1693   else
1694   {
1695     neighbor = get_next_hop (c);
1696     if (peer_id == GMP_get_short_id (neighbor))
1697     {
1698       fwd = GNUNET_NO;
1699     }
1700     else
1701     {
1702       /* Unexpected peer sending traffic on a connection. */
1703       GNUNET_break_op (0);
1704       return GNUNET_OK;
1705     }
1706   }
1707
1708   /* Count as connection confirmation. */
1709   if (MESH_CONNECTION_SENT == c->state || MESH_CONNECTION_ACK == c->state)
1710     connection_change_state (c, MESH_CONNECTION_READY);
1711   connection_reset_timeout (c, fwd);
1712   if (NULL != c->t)
1713   {
1714     if (MESH_TUNNEL3_WAITING == GMT_get_state (c->t))
1715       GMT_change_state (c->t, MESH_TUNNEL3_READY);
1716   }
1717
1718   /* Is this message for us? */
1719   if (GMC_is_terminal (c, fwd))
1720   {
1721     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
1722     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
1723     if (NULL == c->t)
1724     {
1725       GNUNET_break (0);
1726       return GNUNET_OK;
1727     }
1728     GMT_handle_kx (c->t, &msg[1].header);
1729     return GNUNET_OK;
1730   }
1731
1732   /* Message not for us: forward to next hop */
1733   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1734   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
1735   GMC_send_prebuilt_message (&msg->header, c, fwd, NULL, NULL);
1736
1737   return GNUNET_OK;
1738 }
1739
1740
1741 /**
1742  * Core handler for encrypted mesh network traffic (channel mgmt, data).
1743  *
1744  * @param cls Closure (unused).
1745  * @param message Message received.
1746  * @param peer Peer who sent the message.
1747  *
1748  * @return GNUNET_OK to keep the connection open,
1749  *         GNUNET_SYSERR to close it (signal serious error)
1750  */
1751 int
1752 GMC_handle_encrypted (void *cls, const struct GNUNET_PeerIdentity *peer,
1753                       const struct GNUNET_MessageHeader *message)
1754 {
1755   return handle_mesh_encrypted (peer,
1756                                 (struct GNUNET_MESH_Encrypted *)message);
1757 }
1758
1759
1760 /**
1761  * Core handler for key exchange traffic (ephemeral key, ping, pong).
1762  *
1763  * @param cls Closure (unused).
1764  * @param message Message received.
1765  * @param peer Peer who sent the message.
1766  *
1767  * @return GNUNET_OK to keep the connection open,
1768  *         GNUNET_SYSERR to close it (signal serious error)
1769  */
1770 int
1771 GMC_handle_kx (void *cls, const struct GNUNET_PeerIdentity *peer,
1772                const struct GNUNET_MessageHeader *message)
1773 {
1774   return handle_mesh_kx (peer,
1775                          (struct GNUNET_MESH_KX *) message);
1776 }
1777
1778
1779 /**
1780  * Core handler for mesh network traffic point-to-point acks.
1781  *
1782  * @param cls closure
1783  * @param message message
1784  * @param peer peer identity this notification is about
1785  *
1786  * @return GNUNET_OK to keep the connection open,
1787  *         GNUNET_SYSERR to close it (signal serious error)
1788  */
1789 int
1790 GMC_handle_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
1791                 const struct GNUNET_MessageHeader *message)
1792 {
1793   struct GNUNET_MESH_ACK *msg;
1794   struct MeshConnection *c;
1795   struct MeshFlowControl *fc;
1796   GNUNET_PEER_Id id;
1797   uint32_t ack;
1798   int fwd;
1799
1800   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1801   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
1802               GNUNET_i2s (peer));
1803   msg = (struct GNUNET_MESH_ACK *) message;
1804
1805   c = connection_get (&msg->cid);
1806
1807   if (NULL == c)
1808   {
1809     GNUNET_STATISTICS_update (stats, "# ack on unknown connection", 1,
1810                               GNUNET_NO);
1811     return GNUNET_OK;
1812   }
1813
1814   /* Is this a forward or backward ACK? */
1815   id = GNUNET_PEER_search (peer);
1816   if (GMP_get_short_id (get_next_hop (c)) == id)
1817   {
1818     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
1819     fc = &c->fwd_fc;
1820     fwd = GNUNET_YES;
1821   }
1822   else if (GMP_get_short_id (get_prev_hop (c)) == id)
1823   {
1824     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
1825     fc = &c->bck_fc;
1826     fwd = GNUNET_NO;
1827   }
1828   else
1829   {
1830     GNUNET_break_op (0);
1831     return GNUNET_OK;
1832   }
1833
1834   ack = ntohl (msg->ack);
1835   LOG (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u (was %u)\n",
1836               ack, fc->last_ack_recv);
1837   if (GMC_is_pid_bigger (ack, fc->last_ack_recv))
1838     fc->last_ack_recv = ack;
1839
1840   /* Cancel polling if the ACK is big enough. */
1841   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task &&
1842       GMC_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
1843   {
1844     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Cancel poll\n");
1845     GNUNET_SCHEDULER_cancel (fc->poll_task);
1846     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
1847     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
1848   }
1849
1850   connection_unlock_queue (c, fwd);
1851
1852   return GNUNET_OK;
1853 }
1854
1855
1856 /**
1857  * Core handler for mesh network traffic point-to-point ack polls.
1858  *
1859  * @param cls closure
1860  * @param message message
1861  * @param peer peer identity this notification is about
1862  *
1863  * @return GNUNET_OK to keep the connection open,
1864  *         GNUNET_SYSERR to close it (signal serious error)
1865  */
1866 int
1867 GMC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
1868                  const struct GNUNET_MessageHeader *message)
1869 {
1870   struct GNUNET_MESH_Poll *msg;
1871   struct MeshConnection *c;
1872   struct MeshFlowControl *fc;
1873   GNUNET_PEER_Id id;
1874   uint32_t pid;
1875   int fwd;
1876
1877   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1878   LOG (GNUNET_ERROR_TYPE_DEBUG,
1879        "Got a POLL packet from %s!\n",
1880        GNUNET_i2s (peer));
1881
1882   msg = (struct GNUNET_MESH_Poll *) message;
1883
1884   c = connection_get (&msg->cid);
1885
1886   if (NULL == c)
1887   {
1888     GNUNET_STATISTICS_update (stats, "# poll on unknown connection", 1,
1889                               GNUNET_NO);
1890     GNUNET_break_op (0);
1891     return GNUNET_OK;
1892   }
1893
1894   /* Is this a forward or backward ACK?
1895    * Note: a poll should never be needed in a loopback case,
1896    * since there is no possiblility of packet loss there, so
1897    * this way of discerining FWD/BCK should not be a problem.
1898    */
1899   id = GNUNET_PEER_search (peer);
1900   if (GMP_get_short_id (get_next_hop (c)) == id)
1901   {
1902     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD FC\n");
1903     fc = &c->fwd_fc;
1904   }
1905   else if (GMP_get_short_id (get_prev_hop (c)) == id)
1906   {
1907     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK FC\n");
1908     fc = &c->bck_fc;
1909   }
1910   else
1911   {
1912     GNUNET_break_op (0);
1913     return GNUNET_OK;
1914   }
1915
1916   pid = ntohl (msg->pid);
1917   LOG (GNUNET_ERROR_TYPE_DEBUG, "  PID %u, OLD %u\n", pid, fc->last_pid_recv);
1918   fc->last_pid_recv = pid;
1919   fwd = fc == &c->bck_fc;
1920   GMC_send_ack (c, fwd, GNUNET_YES);
1921
1922   return GNUNET_OK;
1923 }
1924
1925
1926 /**
1927  * Core handler for mesh keepalives.
1928  *
1929  * @param cls closure
1930  * @param message message
1931  * @param peer peer identity this notification is about
1932  * @return GNUNET_OK to keep the connection open,
1933  *         GNUNET_SYSERR to close it (signal serious error)
1934  *
1935  * TODO: Check who we got this from, to validate route.
1936  */
1937 int
1938 GMC_handle_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
1939                       const struct GNUNET_MessageHeader *message)
1940 {
1941   struct GNUNET_MESH_ConnectionKeepAlive *msg;
1942   struct MeshConnection *c;
1943   struct MeshPeer *neighbor;
1944   int fwd;
1945
1946   msg = (struct GNUNET_MESH_ConnectionKeepAlive *) message;
1947   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
1948               GNUNET_i2s (peer));
1949
1950   c = connection_get (&msg->cid);
1951   if (NULL == c)
1952   {
1953     GNUNET_STATISTICS_update (stats, "# keepalive on unknown connection", 1,
1954                               GNUNET_NO);
1955     return GNUNET_OK;
1956   }
1957
1958   fwd = GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE == ntohs (message->type) ?
1959         GNUNET_YES : GNUNET_NO;
1960
1961   /* Check if origin is as expected */
1962   neighbor = get_hop (c, fwd);
1963   if (GNUNET_PEER_search (peer) != GMP_get_short_id (neighbor))
1964   {
1965     GNUNET_break_op (0);
1966     return GNUNET_OK;
1967   }
1968
1969   connection_change_state (c, MESH_CONNECTION_READY);
1970   connection_reset_timeout (c, fwd);
1971
1972   if (GMC_is_terminal (c, fwd))
1973     return GNUNET_OK;
1974
1975   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
1976   GMC_send_prebuilt_message (message, c, fwd, NULL, NULL);
1977
1978   return GNUNET_OK;
1979 }
1980
1981
1982 /**
1983  * Send an ACK on the appropriate connection/channel, depending on
1984  * the direction and the position of the peer.
1985  *
1986  * @param c Which connection to send the hop-by-hop ACK.
1987  * @param fwd Is this a fwd ACK? (will go dest->root).
1988  * @param force Send the ACK even if suboptimal (e.g. requested by POLL).
1989  */
1990 void
1991 GMC_send_ack (struct MeshConnection *c, int fwd, int force)
1992 {
1993   unsigned int buffer;
1994
1995   LOG (GNUNET_ERROR_TYPE_DEBUG,
1996        "GMC send %s ACK on %s\n",
1997        fwd ? "FWD" : "BCK", GMC_2s (c));
1998
1999   if (NULL == c)
2000   {
2001     GNUNET_break (0);
2002     return;
2003   }
2004
2005   /* Get available buffer space */
2006   if (GMC_is_terminal (c, fwd))
2007   {
2008     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from all channels\n");
2009     buffer = GMT_get_channels_buffer (c->t);
2010   }
2011   else
2012   {
2013     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from one connection\n");
2014     buffer = GMC_get_buffer (c, fwd);
2015   }
2016   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer available: %u\n", buffer);
2017   if (0 == buffer && GNUNET_NO == force)
2018     return;
2019
2020   /* Send available buffer space */
2021   if (GMC_is_origin (c, fwd))
2022   {
2023     GNUNET_assert (NULL != c->t);
2024     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on channels...\n");
2025     GMT_unchoke_channels (c->t);
2026   }
2027   else
2028   {
2029     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on connection\n");
2030     send_ack (c, buffer, fwd, force);
2031   }
2032 }
2033
2034
2035 /**
2036  * Initialize the connections subsystem
2037  *
2038  * @param c Configuration handle.
2039  */
2040 void
2041 GMC_init (const struct GNUNET_CONFIGURATION_Handle *c)
2042 {
2043   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
2044   if (GNUNET_OK !=
2045       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
2046                                              &max_msgs_queue))
2047   {
2048     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2049                                "MESH", "MAX_MSGS_QUEUE", "MISSING");
2050     GNUNET_SCHEDULER_shutdown ();
2051     return;
2052   }
2053
2054   if (GNUNET_OK !=
2055       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_CONNECTIONS",
2056                                              &max_connections))
2057   {
2058     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2059                                "MESH", "MAX_CONNECTIONS", "MISSING");
2060     GNUNET_SCHEDULER_shutdown ();
2061     return;
2062   }
2063
2064   if (GNUNET_OK !=
2065       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_CONNECTION_TIME",
2066                                            &refresh_connection_time))
2067   {
2068     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2069                                "MESH", "REFRESH_CONNECTION_TIME", "MISSING");
2070     GNUNET_SCHEDULER_shutdown ();
2071     return;
2072   }
2073   create_connection_time = GNUNET_TIME_UNIT_SECONDS;
2074   connections = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_YES);
2075 }
2076
2077 /**
2078  * Shut down the connections subsystem.
2079  */
2080 void
2081 GMC_shutdown (void)
2082 {
2083   GNUNET_CONTAINER_multihashmap_destroy (connections);
2084   connections = NULL;
2085 }
2086
2087
2088 struct MeshConnection *
2089 GMC_new (const struct GNUNET_HashCode *cid,
2090          struct MeshTunnel3 *t,
2091          struct MeshPeerPath *p,
2092          unsigned int own_pos)
2093 {
2094   struct MeshConnection *c;
2095
2096   c = GNUNET_new (struct MeshConnection);
2097   c->id = *cid;
2098   GNUNET_CONTAINER_multihashmap_put (connections, &c->id, c,
2099                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
2100   fc_init (&c->fwd_fc);
2101   fc_init (&c->bck_fc);
2102   c->fwd_fc.c = c;
2103   c->bck_fc.c = c;
2104
2105   c->t = t;
2106   if (own_pos > p->length - 1)
2107   {
2108     GNUNET_break (0);
2109     GMC_destroy (c);
2110     return NULL;
2111   }
2112   c->own_pos = own_pos;
2113   c->path = p;
2114
2115   if (0 == own_pos)
2116   {
2117     c->fwd_maintenance_task =
2118             GNUNET_SCHEDULER_add_delayed (create_connection_time,
2119                                           &connection_fwd_keepalive, c);
2120   }
2121   if (GNUNET_OK != register_neighbors (c))
2122   {
2123     GMC_destroy (c);
2124     return NULL;
2125   }
2126
2127   return c;
2128 }
2129
2130
2131 void
2132 GMC_destroy (struct MeshConnection *c)
2133 {
2134   if (NULL == c)
2135     return;
2136
2137   if (2 == c->destroy) /* cancel queues -> GMP_queue_cancel -> q_destroy -> */
2138     return;            /* -> message_sent -> GMC_destroy. Don't loop. */
2139   c->destroy = 2;
2140
2141   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying connection %s\n", GMC_2s (c));
2142
2143   /* Cancel all traffic */
2144   connection_cancel_queues (c, GNUNET_YES);
2145   connection_cancel_queues (c, GNUNET_NO);
2146
2147   /* Cancel maintainance task (keepalive/timeout) */
2148   if (GNUNET_SCHEDULER_NO_TASK != c->fwd_maintenance_task)
2149     GNUNET_SCHEDULER_cancel (c->fwd_maintenance_task);
2150   if (GNUNET_SCHEDULER_NO_TASK != c->bck_maintenance_task)
2151     GNUNET_SCHEDULER_cancel (c->bck_maintenance_task);
2152   if (GNUNET_SCHEDULER_NO_TASK != c->fwd_fc.poll_task)
2153     GNUNET_SCHEDULER_cancel (c->fwd_fc.poll_task);
2154   if (GNUNET_SCHEDULER_NO_TASK != c->bck_fc.poll_task)
2155     GNUNET_SCHEDULER_cancel (c->bck_fc.poll_task);
2156   if (NULL != c->fwd_fc.poll_msg)
2157     GMC_cancel (c->fwd_fc.poll_msg);
2158   if (NULL != c->bck_fc.poll_msg)
2159     GMC_cancel (c->bck_fc.poll_msg);
2160
2161   /* Unregister from neighbors */
2162   unregister_neighbors (c);
2163
2164   /* Delete */
2165   GNUNET_STATISTICS_update (stats, "# connections", -1, GNUNET_NO);
2166   if (NULL != c->t)
2167     GMT_remove_connection (c->t, c);
2168
2169   if (GNUNET_NO == GMC_is_origin (c, GNUNET_YES))
2170     path_destroy (c->path);
2171
2172   GNUNET_break (GNUNET_YES ==
2173                 GNUNET_CONTAINER_multihashmap_remove (connections, &c->id, c));
2174
2175   GNUNET_free (c);
2176 }
2177
2178 /**
2179  * Get the connection ID.
2180  *
2181  * @param c Connection to get the ID from.
2182  *
2183  * @return ID of the connection.
2184  */
2185 const struct GNUNET_HashCode *
2186 GMC_get_id (const struct MeshConnection *c)
2187 {
2188   return &c->id;
2189 }
2190
2191
2192 /**
2193  * Get the connection path.
2194  *
2195  * @param c Connection to get the path from.
2196  *
2197  * @return path used by the connection.
2198  */
2199 const struct MeshPeerPath *
2200 GMC_get_path (const struct MeshConnection *c)
2201 {
2202   return c->path;
2203 }
2204
2205
2206 /**
2207  * Get the connection state.
2208  *
2209  * @param c Connection to get the state from.
2210  *
2211  * @return state of the connection.
2212  */
2213 enum MeshConnectionState
2214 GMC_get_state (const struct MeshConnection *c)
2215 {
2216   return c->state;
2217 }
2218
2219 /**
2220  * Get the connection tunnel.
2221  *
2222  * @param c Connection to get the tunnel from.
2223  *
2224  * @return tunnel of the connection.
2225  */
2226 struct MeshTunnel3 *
2227 GMC_get_tunnel (const struct MeshConnection *c)
2228 {
2229   return c->t;
2230 }
2231
2232
2233 /**
2234  * Get free buffer space in a connection.
2235  *
2236  * @param c Connection.
2237  * @param fwd Is query about FWD traffic?
2238  *
2239  * @return Free buffer space [0 - max_msgs_queue/max_connections]
2240  */
2241 unsigned int
2242 GMC_get_buffer (struct MeshConnection *c, int fwd)
2243 {
2244   struct MeshFlowControl *fc;
2245
2246   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2247
2248   return (fc->queue_max - fc->queue_n);
2249 }
2250
2251 /**
2252  * Get how many messages have we allowed to send to us from a direction.
2253  *
2254  * @param c Connection.
2255  * @param fwd Are we asking about traffic from FWD (BCK messages)?
2256  *
2257  * @return last_ack_sent - last_pid_recv
2258  */
2259 unsigned int
2260 GMC_get_allowed (struct MeshConnection *c, int fwd)
2261 {
2262   struct MeshFlowControl *fc;
2263
2264   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2265   if (GMC_is_pid_bigger(fc->last_pid_recv, fc->last_ack_sent))
2266   {
2267     return 0;
2268   }
2269   return (fc->last_ack_sent - fc->last_pid_recv);
2270 }
2271
2272 /**
2273  * Get messages queued in a connection.
2274  *
2275  * @param c Connection.
2276  * @param fwd Is query about FWD traffic?
2277  *
2278  * @return Number of messages queued.
2279  */
2280 unsigned int
2281 GMC_get_qn (struct MeshConnection *c, int fwd)
2282 {
2283   struct MeshFlowControl *fc;
2284
2285   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2286
2287   return fc->queue_n;
2288 }
2289
2290
2291 /**
2292  * Allow the connection to advertise a buffer of the given size.
2293  *
2294  * The connection will send an @c fwd ACK message (so: in direction !fwd)
2295  * allowing up to last_pid_recv + buffer.
2296  *
2297  * @param c Connection.
2298  * @param buffer How many more messages the connection can accept.
2299  * @param fwd Is this about FWD traffic? (The ack will go dest->root).
2300  */
2301 void
2302 GMC_allow (struct MeshConnection *c, unsigned int buffer, int fwd)
2303 {
2304   send_ack (c, buffer, fwd, GNUNET_NO);
2305 }
2306
2307
2308 /**
2309  * Notify other peers on a connection of a broken link. Mark connections
2310  * to destroy after all traffic has been sent.
2311  *
2312  * @param c Connection on which there has been a disconnection.
2313  * @param peer Peer that disconnected.
2314  */
2315 void
2316 GMC_notify_broken (struct MeshConnection *c,
2317                    struct MeshPeer *peer)
2318 {
2319   int fwd;
2320
2321   LOG (GNUNET_ERROR_TYPE_DEBUG,
2322        " notify broken on %s due to %s disconnect\n",
2323        GMC_2s (c), GMP_2s (peer));
2324
2325   fwd = peer == get_prev_hop (c);
2326
2327   if (GNUNET_YES == GMC_is_terminal (c, fwd))
2328   {
2329     /* Local shutdown, no one to notify about this. */
2330     GMC_destroy (c);
2331     return;
2332   }
2333   if (GNUNET_NO == c->destroy)
2334     send_broken (c, &my_full_id, GMP_get_id (peer), fwd);
2335
2336   /* Connection will have at least one pending message
2337    * (the one we just scheduled), so no point in checking whether to
2338    * destroy immediately. */
2339   c->destroy = GNUNET_YES;
2340
2341   /**
2342    * Cancel all queues, if no message is left, connection will be destroyed.
2343    */
2344   connection_cancel_queues (c, !fwd);
2345
2346   return;
2347 }
2348
2349
2350 /**
2351  * Is this peer the first one on the connection?
2352  *
2353  * @param c Connection.
2354  * @param fwd Is this about fwd traffic?
2355  *
2356  * @return #GNUNET_YES if origin, #GNUNET_NO if relay/terminal.
2357  */
2358 int
2359 GMC_is_origin (struct MeshConnection *c, int fwd)
2360 {
2361   if (!fwd && c->path->length - 1 == c->own_pos )
2362     return GNUNET_YES;
2363   if (fwd && 0 == c->own_pos)
2364     return GNUNET_YES;
2365   return GNUNET_NO;
2366 }
2367
2368
2369 /**
2370  * Is this peer the last one on the connection?
2371  *
2372  * @param c Connection.
2373  * @param fwd Is this about fwd traffic?
2374  *            Note that the ROOT is the terminal for BCK traffic!
2375  *
2376  * @return #GNUNET_YES if terminal, #GNUNET_NO if relay/origin.
2377  */
2378 int
2379 GMC_is_terminal (struct MeshConnection *c, int fwd)
2380 {
2381   return GMC_is_origin (c, !fwd);
2382 }
2383
2384
2385 /**
2386  * See if we are allowed to send by the next hop in the given direction.
2387  *
2388  * @param c Connection.
2389  * @param fwd Is this about fwd traffic?
2390  *
2391  * @return #GNUNET_YES in case it's OK to send.
2392  */
2393 int
2394 GMC_is_sendable (struct MeshConnection *c, int fwd)
2395 {
2396   struct MeshFlowControl *fc;
2397
2398   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2399   if (GMC_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
2400     return GNUNET_YES;
2401   return GNUNET_NO;
2402 }
2403
2404 /**
2405  * Sends an already built message on a connection, properly registering
2406  * all used resources.
2407  *
2408  * @param message Message to send. Function makes a copy of it.
2409  *                If message is not hop-by-hop, decrements TTL of copy.
2410  * @param c Connection on which this message is transmitted.
2411  * @param fwd Is this a fwd message?
2412  * @param cont Continuation called once message is sent. Can be NULL.
2413  * @param cont_cls Closure for @c cont.
2414  *
2415  * @return Handle to cancel the message before it's sent.
2416  *         NULL on error or if @c cont is NULL.
2417  *         Invalid on @c cont call.
2418  */
2419 struct MeshConnectionQueue *
2420 GMC_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2421                            struct MeshConnection *c, int fwd,
2422                            GMC_sent cont, void *cont_cls)
2423 {
2424   struct MeshFlowControl *fc;
2425   struct MeshConnectionQueue *q;
2426   void *data;
2427   size_t size;
2428   uint16_t type;
2429   int droppable;
2430
2431   size = ntohs (message->size);
2432   data = GNUNET_malloc (size);
2433   memcpy (data, message, size);
2434   type = ntohs (message->type);
2435   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send %s (%u bytes) on connection %s\n",
2436               GNUNET_MESH_DEBUG_M2S (type), size, GMC_2s (c));
2437
2438   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2439   droppable = GNUNET_YES;
2440   switch (type)
2441   {
2442     struct GNUNET_MESH_Encrypted *emsg;
2443     struct GNUNET_MESH_KX        *kmsg;
2444     struct GNUNET_MESH_ACK       *amsg;
2445     struct GNUNET_MESH_Poll      *pmsg;
2446     struct GNUNET_MESH_ConnectionDestroy *dmsg;
2447     struct GNUNET_MESH_ConnectionBroken  *bmsg;
2448     uint32_t ttl;
2449
2450     case GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED:
2451       emsg = (struct GNUNET_MESH_Encrypted *) data;
2452       ttl = ntohl (emsg->ttl);
2453       if (0 == ttl)
2454       {
2455         GNUNET_break_op (0);
2456         GNUNET_free (data);
2457         return NULL;
2458       }
2459       emsg->cid = c->id;
2460       emsg->ttl = htonl (ttl - 1);
2461       emsg->pid = htonl (fc->next_pid++);
2462       LOG (GNUNET_ERROR_TYPE_DEBUG, "  Q_N+ %p %u\n", fc, fc->queue_n);
2463       fc->queue_n++;
2464       LOG (GNUNET_ERROR_TYPE_DEBUG, "pid %u\n", ntohl (emsg->pid));
2465       LOG (GNUNET_ERROR_TYPE_DEBUG, "last pid sent %u\n", fc->last_pid_sent);
2466       LOG (GNUNET_ERROR_TYPE_DEBUG, "     ack recv %u\n", fc->last_ack_recv);
2467       if (GMC_is_pid_bigger (fc->last_pid_sent + 1, fc->last_ack_recv))
2468       {
2469         GMC_start_poll (c, fwd);
2470       }
2471       break;
2472
2473     case GNUNET_MESSAGE_TYPE_MESH_KX:
2474       kmsg = (struct GNUNET_MESH_KX *) data;
2475       kmsg->cid = c->id;
2476       break;
2477
2478     case GNUNET_MESSAGE_TYPE_MESH_ACK:
2479       amsg = (struct GNUNET_MESH_ACK *) data;
2480       amsg->cid = c->id;
2481       LOG (GNUNET_ERROR_TYPE_DEBUG, " ack %u\n", ntohl (amsg->ack));
2482       droppable = GNUNET_NO;
2483       break;
2484
2485     case GNUNET_MESSAGE_TYPE_MESH_POLL:
2486       pmsg = (struct GNUNET_MESH_Poll *) data;
2487       pmsg->cid = c->id;
2488       LOG (GNUNET_ERROR_TYPE_DEBUG, " poll %u\n", ntohl (pmsg->pid));
2489       droppable = GNUNET_NO;
2490       break;
2491
2492     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY:
2493       dmsg = (struct GNUNET_MESH_ConnectionDestroy *) data;
2494       dmsg->cid = c->id;
2495       dmsg->reserved = 0;
2496       break;
2497
2498     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN:
2499       bmsg = (struct GNUNET_MESH_ConnectionBroken *) data;
2500       bmsg->cid = c->id;
2501       bmsg->reserved = 0;
2502       break;
2503
2504     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE:
2505     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK:
2506       break;
2507
2508     default:
2509       GNUNET_break (0);
2510   }
2511
2512   if (fc->queue_n > fc->queue_max && droppable)
2513   {
2514     GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
2515                               1, GNUNET_NO);
2516     GNUNET_break (0);
2517     LOG (GNUNET_ERROR_TYPE_DEBUG,
2518                 "queue full: %u/%u\n",
2519                 fc->queue_n, fc->queue_max);
2520     if (GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED == type)
2521     {
2522       fc->queue_n--;
2523       fc->next_pid--;
2524     }
2525     GNUNET_free (data);
2526     return NULL; /* Drop this message */
2527   }
2528
2529   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %p %u\n", c, c->pending_messages);
2530   c->pending_messages++;
2531
2532   if (NULL == cont)
2533   {
2534     (void) GMP_queue_add (get_hop (c, fwd), data, type, size, c, fwd,
2535                           &message_sent, NULL);
2536     return NULL;
2537   }
2538
2539   q = GNUNET_new (struct MeshConnectionQueue);
2540   q->q = GMP_queue_add (get_hop (c, fwd), data, type, size, c, fwd,
2541                         &message_sent, q);
2542   if (NULL == q->q)
2543   {
2544     GNUNET_break (0);
2545     GNUNET_free (data);
2546     GNUNET_free (q);
2547     return NULL;
2548   }
2549   q->cont = cont;
2550   q->cont_cls = cont_cls;
2551   return q;
2552 }
2553
2554
2555 /**
2556  * Cancel a previously sent message while it's in the queue.
2557  *
2558  * ONLY can be called before the continuation given to the send function
2559  * is called. Once the continuation is called, the message is no longer in the
2560  * queue.
2561  *
2562  * @param q Handle to the queue.
2563  */
2564 void
2565 GMC_cancel (struct MeshConnectionQueue *q)
2566 {
2567   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  GMC cancel message\n");
2568
2569   /* queue destroy calls message_sent, which calls q->cont and frees q */
2570   GMP_queue_destroy (q->q, GNUNET_YES);
2571 }
2572
2573
2574 /**
2575  * Sends a CREATE CONNECTION message for a path to a peer.
2576  * Changes the connection and tunnel states if necessary.
2577  *
2578  * @param connection Connection to create.
2579  */
2580 void
2581 GMC_send_create (struct MeshConnection *connection)
2582 {
2583   enum MeshTunnel3State state;
2584   size_t size;
2585
2586   size = sizeof (struct GNUNET_MESH_ConnectionCreate);
2587   size += connection->path->length * sizeof (struct GNUNET_PeerIdentity);
2588   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send connection create\n");
2589   GMP_queue_add (get_next_hop (connection), NULL,
2590                  GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE,
2591                  size, connection, GNUNET_YES, &message_sent, NULL);
2592   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %p %u (create)\n",
2593        connection, connection->pending_messages);
2594   connection->pending_messages++;
2595   state = GMT_get_state (connection->t);
2596   if (MESH_TUNNEL3_SEARCHING == state || MESH_TUNNEL3_NEW == state)
2597     GMT_change_state (connection->t, MESH_TUNNEL3_WAITING);
2598   if (MESH_CONNECTION_NEW == connection->state)
2599     connection_change_state (connection, MESH_CONNECTION_SENT);
2600 }
2601
2602
2603 /**
2604  * Send a message to all peers in this connection that the connection
2605  * is no longer valid.
2606  *
2607  * If some peer should not receive the message, it should be zero'ed out
2608  * before calling this function.
2609  *
2610  * @param c The connection whose peers to notify.
2611  */
2612 void
2613 GMC_send_destroy (struct MeshConnection *c)
2614 {
2615   struct GNUNET_MESH_ConnectionDestroy msg;
2616
2617   if (GNUNET_YES == c->destroy)
2618     return;
2619
2620   msg.header.size = htons (sizeof (msg));
2621   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY);;
2622   msg.cid = c->id;
2623   LOG (GNUNET_ERROR_TYPE_DEBUG,
2624               "  sending connection destroy for connection %s\n",
2625               GMC_2s (c));
2626
2627   if (GNUNET_NO == GMC_is_terminal (c, GNUNET_YES))
2628     GMC_send_prebuilt_message (&msg.header, c, GNUNET_YES, NULL, NULL);
2629   if (GNUNET_NO == GMC_is_terminal (c, GNUNET_NO))
2630     GMC_send_prebuilt_message (&msg.header, c, GNUNET_NO, NULL, NULL);
2631   c->destroy = GNUNET_YES;
2632 }
2633
2634
2635 /**
2636  * @brief Start a polling timer for the connection.
2637  *
2638  * When a neighbor does not accept more traffic on the connection it could be
2639  * caused by a simple congestion or by a lost ACK. Polling enables to check
2640  * for the lastest ACK status for a connection.
2641  *
2642  * @param c Connection.
2643  * @param fwd Should we poll in the FWD direction?
2644  */
2645 void
2646 GMC_start_poll (struct MeshConnection *c, int fwd)
2647 {
2648   struct MeshFlowControl *fc;
2649
2650   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2651   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task && NULL != fc->poll_msg)
2652   {
2653     return;
2654   }
2655   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
2656                                                 &connection_poll,
2657                                                 fc);
2658 }
2659
2660
2661 /**
2662  * @brief Stop polling a connection for ACKs.
2663  *
2664  * Once we have enough ACKs for future traffic, polls are no longer necessary.
2665  *
2666  * @param c Connection.
2667  * @param fwd Should we stop the poll in the FWD direction?
2668  */
2669 void
2670 GMC_stop_poll (struct MeshConnection *c, int fwd)
2671 {
2672   struct MeshFlowControl *fc;
2673
2674   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2675   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
2676   {
2677     GNUNET_SCHEDULER_cancel (fc->poll_task);
2678     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
2679   }
2680 }
2681
2682 /**
2683  * Get a (static) string for a connection.
2684  *
2685  * @param c Connection.
2686  */
2687 const char *
2688 GMC_2s (struct MeshConnection *c)
2689 {
2690   if (NULL != c->t)
2691   {
2692     static char buf[128];
2693
2694     sprintf (buf, "%s (->%s)", GNUNET_h2s (&c->id), GMT_2s (c->t));
2695     return buf;
2696   }
2697   return GNUNET_h2s (&c->id);
2698 }