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