- use tunnel encryption state to select decryption key
[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_break (0);
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   LOG (GNUNET_ERROR_TYPE_DEBUG, "  on connection %s\n", GMC_2s (c));
1703
1704   /* Check if origin is as expected */
1705   neighbor = get_prev_hop (c);
1706   peer_id = GNUNET_PEER_search (peer);
1707   if (peer_id == GMP_get_short_id (neighbor))
1708   {
1709     fwd = GNUNET_YES;
1710   }
1711   else
1712   {
1713     neighbor = get_next_hop (c);
1714     if (peer_id == GMP_get_short_id (neighbor))
1715     {
1716       fwd = GNUNET_NO;
1717     }
1718     else
1719     {
1720       /* Unexpected peer sending traffic on a connection. */
1721       GNUNET_break_op (0);
1722       return GNUNET_OK;
1723     }
1724   }
1725
1726   /* Check PID */
1727   fc = fwd ? &c->bck_fc : &c->fwd_fc;
1728   pid = ntohl (msg->pid);
1729   if (GM_is_pid_bigger (pid, fc->last_ack_sent))
1730   {
1731     GNUNET_STATISTICS_update (stats, "# unsolicited message", 1, GNUNET_NO);
1732     LOG (GNUNET_ERROR_TYPE_DEBUG,
1733                 "WARNING Received PID %u, (prev %u), ACK %u\n",
1734                 pid, fc->last_pid_recv, fc->last_ack_sent);
1735     return GNUNET_OK;
1736   }
1737   if (GNUNET_NO == GM_is_pid_bigger (pid, fc->last_pid_recv))
1738   {
1739     GNUNET_STATISTICS_update (stats, "# duplicate PID", 1, GNUNET_NO);
1740     LOG (GNUNET_ERROR_TYPE_DEBUG,
1741                 " Pid %u not expected (%u+), dropping!\n",
1742                 pid, fc->last_pid_recv + 1);
1743     return GNUNET_OK;
1744   }
1745   if (MESH_CONNECTION_SENT == c->state || MESH_CONNECTION_ACK == c->state)
1746     connection_change_state (c, MESH_CONNECTION_READY);
1747   connection_reset_timeout (c, fwd);
1748   fc->last_pid_recv = pid;
1749
1750   /* Is this message for us? */
1751   if (GMC_is_terminal (c, fwd))
1752   {
1753     /* TODO signature verification */
1754     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
1755     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
1756
1757     if (NULL == c->t)
1758     {
1759       GNUNET_break (0);
1760       return GNUNET_OK;
1761     }
1762     fc->last_pid_recv = pid;
1763     GMT_handle_encrypted (c->t, msg);
1764     GMC_send_ack (c, fwd, GNUNET_NO);
1765     return GNUNET_OK;
1766   }
1767
1768   /* Message not for us: forward to next hop */
1769   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1770   ttl = ntohl (msg->ttl);
1771   LOG (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
1772   if (ttl == 0)
1773   {
1774     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
1775     LOG (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
1776     GMC_send_ack (c, fwd, GNUNET_NO);
1777     return GNUNET_OK;
1778   }
1779
1780   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
1781   GMC_send_prebuilt_message (&msg->header, c, fwd, GNUNET_NO, NULL, NULL);
1782
1783   return GNUNET_OK;
1784 }
1785
1786 /**
1787  * Generic handler for mesh network encrypted traffic.
1788  *
1789  * @param peer Peer identity this notification is about.
1790  * @param msg Encrypted message.
1791  *
1792  * @return GNUNET_OK to keep the connection open,
1793  *         GNUNET_SYSERR to close it (signal serious error)
1794  */
1795 static int
1796 handle_mesh_kx (const struct GNUNET_PeerIdentity *peer,
1797                 const struct GNUNET_MESH_KX *msg)
1798 {
1799   struct MeshConnection *c;
1800   struct MeshPeer *neighbor;
1801   GNUNET_PEER_Id peer_id;
1802   size_t size;
1803   uint16_t type;
1804   int fwd;
1805
1806   /* Check size */
1807   size = ntohs (msg->header.size);
1808   if (size <
1809       sizeof (struct GNUNET_MESH_Encrypted) +
1810       sizeof (struct GNUNET_MessageHeader))
1811   {
1812     GNUNET_break_op (0);
1813     return GNUNET_OK;
1814   }
1815   type = ntohs (msg->header.type);
1816   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1817   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a %s message from %s\n",
1818        GM_m2s (type), GNUNET_i2s (peer));
1819
1820   /* Check connection */
1821   c = connection_get (&msg->cid);
1822   if (NULL == c)
1823   {
1824     GNUNET_STATISTICS_update (stats, "# unknown connection", 1, GNUNET_NO);
1825     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING kx on unknown connection %s\n",
1826          GNUNET_h2s (&msg->cid));
1827     return GNUNET_OK;
1828   }
1829   LOG (GNUNET_ERROR_TYPE_DEBUG, " on connection %s\n", GMC_2s (c));
1830
1831   /* Check if origin is as expected */
1832   neighbor = get_prev_hop (c);
1833   peer_id = GNUNET_PEER_search (peer);
1834   if (peer_id == GMP_get_short_id (neighbor))
1835   {
1836     fwd = GNUNET_YES;
1837   }
1838   else
1839   {
1840     neighbor = get_next_hop (c);
1841     if (peer_id == GMP_get_short_id (neighbor))
1842     {
1843       fwd = GNUNET_NO;
1844     }
1845     else
1846     {
1847       /* Unexpected peer sending traffic on a connection. */
1848       GNUNET_break_op (0);
1849       return GNUNET_OK;
1850     }
1851   }
1852
1853   /* Count as connection confirmation. */
1854   if (MESH_CONNECTION_SENT == c->state || MESH_CONNECTION_ACK == c->state)
1855   {
1856     connection_change_state (c, MESH_CONNECTION_READY);
1857     if (NULL != c->t)
1858     {
1859       if (MESH_TUNNEL3_WAITING == GMT_get_cstate (c->t))
1860         GMT_change_cstate (c->t, MESH_TUNNEL3_READY);
1861     }
1862   }
1863   connection_reset_timeout (c, fwd);
1864
1865   /* Is this message for us? */
1866   if (GMC_is_terminal (c, fwd))
1867   {
1868     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
1869     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
1870     if (NULL == c->t)
1871     {
1872       GNUNET_break (0);
1873       return GNUNET_OK;
1874     }
1875     GMT_handle_kx (c->t, &msg[1].header);
1876     return GNUNET_OK;
1877   }
1878
1879   /* Message not for us: forward to next hop */
1880   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1881   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
1882   GMC_send_prebuilt_message (&msg->header, c, fwd, GNUNET_NO, NULL, NULL);
1883
1884   return GNUNET_OK;
1885 }
1886
1887
1888 /**
1889  * Core handler for encrypted mesh network traffic (channel mgmt, data).
1890  *
1891  * @param cls Closure (unused).
1892  * @param message Message received.
1893  * @param peer Peer who sent the message.
1894  *
1895  * @return GNUNET_OK to keep the connection open,
1896  *         GNUNET_SYSERR to close it (signal serious error)
1897  */
1898 int
1899 GMC_handle_encrypted (void *cls, const struct GNUNET_PeerIdentity *peer,
1900                       const struct GNUNET_MessageHeader *message)
1901 {
1902   return handle_mesh_encrypted (peer,
1903                                 (struct GNUNET_MESH_Encrypted *)message);
1904 }
1905
1906
1907 /**
1908  * Core handler for key exchange traffic (ephemeral key, ping, pong).
1909  *
1910  * @param cls Closure (unused).
1911  * @param message Message received.
1912  * @param peer Peer who sent the message.
1913  *
1914  * @return GNUNET_OK to keep the connection open,
1915  *         GNUNET_SYSERR to close it (signal serious error)
1916  */
1917 int
1918 GMC_handle_kx (void *cls, const struct GNUNET_PeerIdentity *peer,
1919                const struct GNUNET_MessageHeader *message)
1920 {
1921   return handle_mesh_kx (peer,
1922                          (struct GNUNET_MESH_KX *) message);
1923 }
1924
1925
1926 /**
1927  * Core handler for mesh network traffic point-to-point acks.
1928  *
1929  * @param cls closure
1930  * @param message message
1931  * @param peer peer identity this notification is about
1932  *
1933  * @return GNUNET_OK to keep the connection open,
1934  *         GNUNET_SYSERR to close it (signal serious error)
1935  */
1936 int
1937 GMC_handle_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
1938                 const struct GNUNET_MessageHeader *message)
1939 {
1940   struct GNUNET_MESH_ACK *msg;
1941   struct MeshConnection *c;
1942   struct MeshFlowControl *fc;
1943   GNUNET_PEER_Id id;
1944   uint32_t ack;
1945   int fwd;
1946
1947   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1948   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
1949               GNUNET_i2s (peer));
1950   msg = (struct GNUNET_MESH_ACK *) message;
1951
1952   c = connection_get (&msg->cid);
1953
1954   if (NULL == c)
1955   {
1956     GNUNET_STATISTICS_update (stats, "# ack on unknown connection", 1,
1957                               GNUNET_NO);
1958     return GNUNET_OK;
1959   }
1960
1961   /* Is this a forward or backward ACK? */
1962   id = GNUNET_PEER_search (peer);
1963   if (GMP_get_short_id (get_next_hop (c)) == id)
1964   {
1965     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
1966     fc = &c->fwd_fc;
1967     fwd = GNUNET_YES;
1968   }
1969   else if (GMP_get_short_id (get_prev_hop (c)) == id)
1970   {
1971     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
1972     fc = &c->bck_fc;
1973     fwd = GNUNET_NO;
1974   }
1975   else
1976   {
1977     GNUNET_break_op (0);
1978     return GNUNET_OK;
1979   }
1980
1981   ack = ntohl (msg->ack);
1982   LOG (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u (was %u)\n",
1983               ack, fc->last_ack_recv);
1984   if (GM_is_pid_bigger (ack, fc->last_ack_recv))
1985     fc->last_ack_recv = ack;
1986
1987   /* Cancel polling if the ACK is big enough. */
1988   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task &&
1989       GM_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
1990   {
1991     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Cancel poll\n");
1992     GNUNET_SCHEDULER_cancel (fc->poll_task);
1993     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
1994     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
1995   }
1996
1997   connection_unlock_queue (c, fwd);
1998
1999   return GNUNET_OK;
2000 }
2001
2002
2003 /**
2004  * Core handler for mesh network traffic point-to-point ack polls.
2005  *
2006  * @param cls closure
2007  * @param message message
2008  * @param peer peer identity this notification is about
2009  *
2010  * @return GNUNET_OK to keep the connection open,
2011  *         GNUNET_SYSERR to close it (signal serious error)
2012  */
2013 int
2014 GMC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
2015                  const struct GNUNET_MessageHeader *message)
2016 {
2017   struct GNUNET_MESH_Poll *msg;
2018   struct MeshConnection *c;
2019   struct MeshFlowControl *fc;
2020   GNUNET_PEER_Id id;
2021   uint32_t pid;
2022   int fwd;
2023
2024   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
2025   LOG (GNUNET_ERROR_TYPE_DEBUG,
2026        "Got a POLL message from %s!\n",
2027        GNUNET_i2s (peer));
2028
2029   msg = (struct GNUNET_MESH_Poll *) message;
2030
2031   c = connection_get (&msg->cid);
2032
2033   if (NULL == c)
2034   {
2035     GNUNET_STATISTICS_update (stats, "# poll on unknown connection", 1,
2036                               GNUNET_NO);
2037     LOG (GNUNET_ERROR_TYPE_DEBUG,
2038          "WARNING POLL message on unknown connection %s!\n",
2039          GNUNET_h2s (&msg->cid));
2040     return GNUNET_OK;
2041   }
2042
2043   /* Is this a forward or backward ACK?
2044    * Note: a poll should never be needed in a loopback case,
2045    * since there is no possiblility of packet loss there, so
2046    * this way of discerining FWD/BCK should not be a problem.
2047    */
2048   id = GNUNET_PEER_search (peer);
2049   if (GMP_get_short_id (get_next_hop (c)) == id)
2050   {
2051     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD FC\n");
2052     fc = &c->fwd_fc;
2053   }
2054   else if (GMP_get_short_id (get_prev_hop (c)) == id)
2055   {
2056     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK FC\n");
2057     fc = &c->bck_fc;
2058   }
2059   else
2060   {
2061     GNUNET_break_op (0);
2062     return GNUNET_OK;
2063   }
2064
2065   pid = ntohl (msg->pid);
2066   LOG (GNUNET_ERROR_TYPE_DEBUG, "  PID %u, OLD %u\n", pid, fc->last_pid_recv);
2067   fc->last_pid_recv = pid;
2068   fwd = fc == &c->bck_fc;
2069   GMC_send_ack (c, fwd, GNUNET_YES);
2070
2071   return GNUNET_OK;
2072 }
2073
2074
2075 /**
2076  * Core handler for mesh keepalives.
2077  *
2078  * @param cls closure
2079  * @param message message
2080  * @param peer peer identity this notification is about
2081  * @return GNUNET_OK to keep the connection open,
2082  *         GNUNET_SYSERR to close it (signal serious error)
2083  *
2084  * TODO: Check who we got this from, to validate route.
2085  */
2086 int
2087 GMC_handle_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
2088                       const struct GNUNET_MessageHeader *message)
2089 {
2090   struct GNUNET_MESH_ConnectionKeepAlive *msg;
2091   struct MeshConnection *c;
2092   struct MeshPeer *neighbor;
2093   GNUNET_PEER_Id peer_id;
2094   int fwd;
2095
2096   msg = (struct GNUNET_MESH_ConnectionKeepAlive *) message;
2097   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
2098               GNUNET_i2s (peer));
2099
2100   c = connection_get (&msg->cid);
2101   if (NULL == c)
2102   {
2103     GNUNET_STATISTICS_update (stats, "# keepalive on unknown connection", 1,
2104                               GNUNET_NO);
2105     return GNUNET_OK;
2106   }
2107
2108   /* Check if origin is as expected TODO refactor and reuse */
2109   peer_id = GNUNET_PEER_search (peer);
2110   neighbor = get_prev_hop (c);
2111   if (peer_id == GMP_get_short_id (neighbor))
2112   {
2113     fwd = GNUNET_YES;
2114   }
2115   else
2116   {
2117     neighbor = get_next_hop (c);
2118     if (peer_id == GMP_get_short_id (neighbor))
2119     {
2120       fwd = GNUNET_NO;
2121     }
2122     else
2123     {
2124       GNUNET_break_op (0);
2125       return GNUNET_OK;
2126     }
2127   }
2128
2129   connection_change_state (c, MESH_CONNECTION_READY);
2130   connection_reset_timeout (c, fwd);
2131
2132   if (GMC_is_terminal (c, fwd))
2133     return GNUNET_OK;
2134
2135   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
2136   GMC_send_prebuilt_message (message, c, fwd, GNUNET_YES, NULL, NULL);
2137
2138   return GNUNET_OK;
2139 }
2140
2141
2142 /**
2143  * Send an ACK on the appropriate connection/channel, depending on
2144  * the direction and the position of the peer.
2145  *
2146  * @param c Which connection to send the hop-by-hop ACK.
2147  * @param fwd Is this a fwd ACK? (will go dest->root).
2148  * @param force Send the ACK even if suboptimal (e.g. requested by POLL).
2149  */
2150 void
2151 GMC_send_ack (struct MeshConnection *c, int fwd, int force)
2152 {
2153   unsigned int buffer;
2154
2155   LOG (GNUNET_ERROR_TYPE_DEBUG,
2156        "GMC send %s ACK on %s\n",
2157        GM_f2s (fwd), GMC_2s (c));
2158
2159   if (NULL == c)
2160   {
2161     GNUNET_break (0);
2162     return;
2163   }
2164
2165   if (GNUNET_NO != c->destroy)
2166   {
2167     LOG (GNUNET_ERROR_TYPE_DEBUG, "  being destroyed, why bother...\n");
2168     return;
2169   }
2170
2171   /* Get available buffer space */
2172   if (GMC_is_terminal (c, fwd))
2173   {
2174     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from all channels\n");
2175     buffer = GMT_get_channels_buffer (c->t);
2176   }
2177   else
2178   {
2179     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from one connection\n");
2180     buffer = GMC_get_buffer (c, fwd);
2181   }
2182   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer available: %u\n", buffer);
2183   if (0 == buffer && GNUNET_NO == force)
2184     return;
2185
2186   /* Send available buffer space */
2187   if (GMC_is_origin (c, fwd))
2188   {
2189     GNUNET_assert (NULL != c->t);
2190     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on channels...\n");
2191     GMT_unchoke_channels (c->t);
2192   }
2193   else
2194   {
2195     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on connection\n");
2196     send_ack (c, buffer, fwd, force);
2197   }
2198 }
2199
2200
2201 /**
2202  * Initialize the connections subsystem
2203  *
2204  * @param c Configuration handle.
2205  */
2206 void
2207 GMC_init (const struct GNUNET_CONFIGURATION_Handle *c)
2208 {
2209   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
2210   if (GNUNET_OK !=
2211       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
2212                                              &max_msgs_queue))
2213   {
2214     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2215                                "MESH", "MAX_MSGS_QUEUE", "MISSING");
2216     GNUNET_SCHEDULER_shutdown ();
2217     return;
2218   }
2219
2220   if (GNUNET_OK !=
2221       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_CONNECTIONS",
2222                                              &max_connections))
2223   {
2224     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2225                                "MESH", "MAX_CONNECTIONS", "MISSING");
2226     GNUNET_SCHEDULER_shutdown ();
2227     return;
2228   }
2229
2230   if (GNUNET_OK !=
2231       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_CONNECTION_TIME",
2232                                            &refresh_connection_time))
2233   {
2234     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2235                                "MESH", "REFRESH_CONNECTION_TIME", "MISSING");
2236     GNUNET_SCHEDULER_shutdown ();
2237     return;
2238   }
2239   create_connection_time = GNUNET_TIME_UNIT_SECONDS;
2240   connections = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_YES);
2241 }
2242
2243
2244 /**
2245  * Destroy each connection on shutdown.
2246  *
2247  * @param cls Closure (unused).
2248  * @param key Current key code (CID, unused).
2249  * @param value Value in the hash map (connection)
2250  *
2251  * @return #GNUNET_YES, because we should continue to iterate,
2252  */
2253 static int
2254 shutdown_iterator (void *cls,
2255                    const struct GNUNET_HashCode *key,
2256                    void *value)
2257 {
2258   struct MeshConnection *c = value;
2259
2260   GMC_destroy (c);
2261   return GNUNET_YES;
2262 }
2263
2264
2265 /**
2266  * Shut down the connections subsystem.
2267  */
2268 void
2269 GMC_shutdown (void)
2270 {
2271   GNUNET_CONTAINER_multihashmap_iterate (connections, &shutdown_iterator, NULL);
2272   GNUNET_CONTAINER_multihashmap_destroy (connections);
2273   connections = NULL;
2274 }
2275
2276
2277 struct MeshConnection *
2278 GMC_new (const struct GNUNET_HashCode *cid,
2279          struct MeshTunnel3 *t,
2280          struct MeshPeerPath *p,
2281          unsigned int own_pos)
2282 {
2283   struct MeshConnection *c;
2284
2285   c = GNUNET_new (struct MeshConnection);
2286   c->id = *cid;
2287   GNUNET_assert (GNUNET_OK ==
2288                  GNUNET_CONTAINER_multihashmap_put (connections,
2289                                                     &c->id, c,
2290                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
2291   fc_init (&c->fwd_fc);
2292   fc_init (&c->bck_fc);
2293   c->fwd_fc.c = c;
2294   c->bck_fc.c = c;
2295
2296   c->t = t;
2297   GNUNET_assert (own_pos <= p->length - 1);
2298   c->own_pos = own_pos;
2299   c->path = p;
2300
2301   if (GNUNET_OK != register_neighbors (c))
2302   {
2303     if (0 == own_pos)
2304     {
2305       GMT_remove_path (c->t, p);
2306       c->t = NULL;
2307       c->path = NULL;
2308     }
2309     GMC_destroy (c);
2310     return NULL;
2311   }
2312
2313   if (0 == own_pos)
2314   {
2315     c->fwd_maintenance_task =
2316       GNUNET_SCHEDULER_add_delayed (create_connection_time,
2317                                     &connection_fwd_keepalive, c);
2318   }
2319
2320   return c;
2321 }
2322
2323
2324 void
2325 GMC_destroy (struct MeshConnection *c)
2326 {
2327   if (NULL == c)
2328   {
2329     GNUNET_break (0);
2330     return;
2331   }
2332
2333   if (2 == c->destroy) /* cancel queues -> GMP_queue_cancel -> q_destroy -> */
2334     return;            /* -> message_sent -> GMC_destroy. Don't loop. */
2335   c->destroy = 2;
2336
2337   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying connection %s\n", GMC_2s (c));
2338   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc's f: %p, b: %p\n",
2339        &c->fwd_fc, &c->bck_fc);
2340   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc tasks f: %u, b: %u\n",
2341        c->fwd_fc.poll_task, c->bck_fc.poll_task);
2342
2343   /* Cancel all traffic */
2344   if (NULL != c->path)
2345   {
2346     connection_cancel_queues (c, GNUNET_YES);
2347     connection_cancel_queues (c, GNUNET_NO);
2348     unregister_neighbors (c);
2349   }
2350
2351   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc tasks f: %u, b: %u\n",
2352        c->fwd_fc.poll_task, c->bck_fc.poll_task);
2353
2354   /* Cancel maintainance task (keepalive/timeout) */
2355   if (NULL != c->fwd_fc.poll_msg)
2356   {
2357     GMC_cancel (c->fwd_fc.poll_msg);
2358     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL msg FWD canceled\n");
2359   }
2360   if (NULL != c->bck_fc.poll_msg)
2361   {
2362     GMC_cancel (c->bck_fc.poll_msg);
2363     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL msg BCK canceled\n");
2364   }
2365
2366   /* Delete from tunnel */
2367   if (NULL != c->t)
2368     GMT_remove_connection (c->t, c);
2369
2370   if (GNUNET_NO == GMC_is_origin (c, GNUNET_YES) && NULL != c->path)
2371     path_destroy (c->path);
2372   if (GNUNET_SCHEDULER_NO_TASK != c->fwd_maintenance_task)
2373     GNUNET_SCHEDULER_cancel (c->fwd_maintenance_task);
2374   if (GNUNET_SCHEDULER_NO_TASK != c->bck_maintenance_task)
2375     GNUNET_SCHEDULER_cancel (c->bck_maintenance_task);
2376   if (GNUNET_SCHEDULER_NO_TASK != c->fwd_fc.poll_task)
2377   {
2378     GNUNET_SCHEDULER_cancel (c->fwd_fc.poll_task);
2379     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL FWD canceled\n");
2380   }
2381   if (GNUNET_SCHEDULER_NO_TASK != c->bck_fc.poll_task)
2382   {
2383     GNUNET_SCHEDULER_cancel (c->bck_fc.poll_task);
2384     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL BCK canceled\n");
2385   }
2386
2387   GNUNET_break (GNUNET_YES ==
2388                 GNUNET_CONTAINER_multihashmap_remove (connections, &c->id, c));
2389
2390   GNUNET_STATISTICS_update (stats, "# connections", -1, GNUNET_NO);
2391   GNUNET_free (c);
2392 }
2393
2394 /**
2395  * Get the connection ID.
2396  *
2397  * @param c Connection to get the ID from.
2398  *
2399  * @return ID of the connection.
2400  */
2401 const struct GNUNET_HashCode *
2402 GMC_get_id (const struct MeshConnection *c)
2403 {
2404   return &c->id;
2405 }
2406
2407
2408 /**
2409  * Get the connection path.
2410  *
2411  * @param c Connection to get the path from.
2412  *
2413  * @return path used by the connection.
2414  */
2415 const struct MeshPeerPath *
2416 GMC_get_path (const struct MeshConnection *c)
2417 {
2418   if (GNUNET_NO == c->destroy)
2419     return c->path;
2420   return NULL;
2421 }
2422
2423
2424 /**
2425  * Get the connection state.
2426  *
2427  * @param c Connection to get the state from.
2428  *
2429  * @return state of the connection.
2430  */
2431 enum MeshConnectionState
2432 GMC_get_state (const struct MeshConnection *c)
2433 {
2434   return c->state;
2435 }
2436
2437 /**
2438  * Get the connection tunnel.
2439  *
2440  * @param c Connection to get the tunnel from.
2441  *
2442  * @return tunnel of the connection.
2443  */
2444 struct MeshTunnel3 *
2445 GMC_get_tunnel (const struct MeshConnection *c)
2446 {
2447   return c->t;
2448 }
2449
2450
2451 /**
2452  * Get free buffer space in a connection.
2453  *
2454  * @param c Connection.
2455  * @param fwd Is query about FWD traffic?
2456  *
2457  * @return Free buffer space [0 - max_msgs_queue/max_connections]
2458  */
2459 unsigned int
2460 GMC_get_buffer (struct MeshConnection *c, int fwd)
2461 {
2462   struct MeshFlowControl *fc;
2463
2464   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2465
2466   return (fc->queue_max - fc->queue_n);
2467 }
2468
2469 /**
2470  * Get how many messages have we allowed to send to us from a direction.
2471  *
2472  * @param c Connection.
2473  * @param fwd Are we asking about traffic from FWD (BCK messages)?
2474  *
2475  * @return last_ack_sent - last_pid_recv
2476  */
2477 unsigned int
2478 GMC_get_allowed (struct MeshConnection *c, int fwd)
2479 {
2480   struct MeshFlowControl *fc;
2481
2482   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2483   if (GM_is_pid_bigger(fc->last_pid_recv, fc->last_ack_sent))
2484   {
2485     return 0;
2486   }
2487   return (fc->last_ack_sent - fc->last_pid_recv);
2488 }
2489
2490 /**
2491  * Get messages queued in a connection.
2492  *
2493  * @param c Connection.
2494  * @param fwd Is query about FWD traffic?
2495  *
2496  * @return Number of messages queued.
2497  */
2498 unsigned int
2499 GMC_get_qn (struct MeshConnection *c, int fwd)
2500 {
2501   struct MeshFlowControl *fc;
2502
2503   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2504
2505   return fc->queue_n;
2506 }
2507
2508
2509 /**
2510  * Allow the connection to advertise a buffer of the given size.
2511  *
2512  * The connection will send an @c fwd ACK message (so: in direction !fwd)
2513  * allowing up to last_pid_recv + buffer.
2514  *
2515  * @param c Connection.
2516  * @param buffer How many more messages the connection can accept.
2517  * @param fwd Is this about FWD traffic? (The ack will go dest->root).
2518  */
2519 void
2520 GMC_allow (struct MeshConnection *c, unsigned int buffer, int fwd)
2521 {
2522   LOG (GNUNET_ERROR_TYPE_DEBUG, "  allowing %s %u messages %s\n",
2523        GMC_2s (c), buffer, GM_f2s (fwd));
2524   send_ack (c, buffer, fwd, GNUNET_NO);
2525 }
2526
2527
2528 /**
2529  * Notify other peers on a connection of a broken link. Mark connections
2530  * to destroy after all traffic has been sent.
2531  *
2532  * @param c Connection on which there has been a disconnection.
2533  * @param peer Peer that disconnected.
2534  */
2535 void
2536 GMC_notify_broken (struct MeshConnection *c,
2537                    struct MeshPeer *peer)
2538 {
2539   int fwd;
2540
2541   LOG (GNUNET_ERROR_TYPE_DEBUG,
2542        " notify broken on %s due to %s disconnect\n",
2543        GMC_2s (c), GMP_2s (peer));
2544
2545   fwd = peer == get_prev_hop (c);
2546
2547   if (GNUNET_YES == GMC_is_terminal (c, fwd))
2548   {
2549     /* Local shutdown, no one to notify about this. */
2550     GMC_destroy (c);
2551     return;
2552   }
2553   if (GNUNET_NO == c->destroy)
2554     send_broken (c, &my_full_id, GMP_get_id (peer), fwd);
2555
2556   /* Connection will have at least one pending message
2557    * (the one we just scheduled), so no point in checking whether to
2558    * destroy immediately. */
2559   c->destroy = GNUNET_YES;
2560   c->state = MESH_CONNECTION_DESTROYED;
2561
2562   /**
2563    * Cancel all queues, if no message is left, connection will be destroyed.
2564    */
2565   connection_cancel_queues (c, !fwd);
2566
2567   return;
2568 }
2569
2570
2571 /**
2572  * Is this peer the first one on the connection?
2573  *
2574  * @param c Connection.
2575  * @param fwd Is this about fwd traffic?
2576  *
2577  * @return #GNUNET_YES if origin, #GNUNET_NO if relay/terminal.
2578  */
2579 int
2580 GMC_is_origin (struct MeshConnection *c, int fwd)
2581 {
2582   if (!fwd && c->path->length - 1 == c->own_pos )
2583     return GNUNET_YES;
2584   if (fwd && 0 == c->own_pos)
2585     return GNUNET_YES;
2586   return GNUNET_NO;
2587 }
2588
2589
2590 /**
2591  * Is this peer the last one on the connection?
2592  *
2593  * @param c Connection.
2594  * @param fwd Is this about fwd traffic?
2595  *            Note that the ROOT is the terminal for BCK traffic!
2596  *
2597  * @return #GNUNET_YES if terminal, #GNUNET_NO if relay/origin.
2598  */
2599 int
2600 GMC_is_terminal (struct MeshConnection *c, int fwd)
2601 {
2602   return GMC_is_origin (c, !fwd);
2603 }
2604
2605
2606 /**
2607  * See if we are allowed to send by the next hop in the given direction.
2608  *
2609  * @param c Connection.
2610  * @param fwd Is this about fwd traffic?
2611  *
2612  * @return #GNUNET_YES in case it's OK to send.
2613  */
2614 int
2615 GMC_is_sendable (struct MeshConnection *c, int fwd)
2616 {
2617   struct MeshFlowControl *fc;
2618
2619   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2620   if (GM_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
2621     return GNUNET_YES;
2622   return GNUNET_NO;
2623 }
2624
2625 /**
2626  * Sends an already built message on a connection, properly registering
2627  * all used resources.
2628  *
2629  * @param message Message to send. Function makes a copy of it.
2630  *                If message is not hop-by-hop, decrements TTL of copy.
2631  * @param c Connection on which this message is transmitted.
2632  * @param fwd Is this a fwd message?
2633  * @param force Force the connection to accept the message (buffer overfill).
2634  * @param cont Continuation called once message is sent. Can be NULL.
2635  * @param cont_cls Closure for @c cont.
2636  *
2637  * @return Handle to cancel the message before it's sent.
2638  *         NULL on error or if @c cont is NULL.
2639  *         Invalid on @c cont call.
2640  */
2641 struct MeshConnectionQueue *
2642 GMC_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2643                            struct MeshConnection *c, int fwd, int force,
2644                            GMC_sent cont, void *cont_cls)
2645 {
2646   struct MeshFlowControl *fc;
2647   struct MeshConnectionQueue *q;
2648   void *data;
2649   size_t size;
2650   uint16_t type;
2651   int droppable;
2652
2653   size = ntohs (message->size);
2654   data = GNUNET_malloc (size);
2655   memcpy (data, message, size);
2656   type = ntohs (message->type);
2657   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send %s (%u bytes) on connection %s\n",
2658        GM_m2s (type), size, GMC_2s (c));
2659
2660   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2661   droppable = GNUNET_NO == force;
2662   switch (type)
2663   {
2664     struct GNUNET_MESH_Encrypted *emsg;
2665     struct GNUNET_MESH_KX        *kmsg;
2666     struct GNUNET_MESH_ACK       *amsg;
2667     struct GNUNET_MESH_Poll      *pmsg;
2668     struct GNUNET_MESH_ConnectionDestroy *dmsg;
2669     struct GNUNET_MESH_ConnectionBroken  *bmsg;
2670     uint32_t ttl;
2671
2672     case GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED:
2673       emsg = (struct GNUNET_MESH_Encrypted *) data;
2674       ttl = ntohl (emsg->ttl);
2675       if (0 == ttl)
2676       {
2677         GNUNET_break_op (0);
2678         GNUNET_free (data);
2679         return NULL;
2680       }
2681       emsg->cid = c->id;
2682       emsg->ttl = htonl (ttl - 1);
2683       emsg->pid = htonl (fc->next_pid++);
2684       LOG (GNUNET_ERROR_TYPE_DEBUG, "  Q_N+ %p %u\n", fc, fc->queue_n);
2685       if (GNUNET_YES == droppable)
2686       {
2687         fc->queue_n++;
2688         LOG (GNUNET_ERROR_TYPE_DEBUG, "pid %u\n", ntohl (emsg->pid));
2689         LOG (GNUNET_ERROR_TYPE_DEBUG, "last pid sent %u\n", fc->last_pid_sent);
2690         LOG (GNUNET_ERROR_TYPE_DEBUG, "     ack recv %u\n", fc->last_ack_recv);
2691       }
2692       else
2693       {
2694         LOG (GNUNET_ERROR_TYPE_DEBUG, "  not droppable, Q_N stays the same\n");
2695       }
2696       if (GM_is_pid_bigger (fc->last_pid_sent + 1, fc->last_ack_recv))
2697       {
2698         GMC_start_poll (c, fwd);
2699       }
2700       break;
2701
2702     case GNUNET_MESSAGE_TYPE_MESH_KX:
2703       kmsg = (struct GNUNET_MESH_KX *) data;
2704       kmsg->cid = c->id;
2705       break;
2706
2707     case GNUNET_MESSAGE_TYPE_MESH_ACK:
2708       amsg = (struct GNUNET_MESH_ACK *) data;
2709       amsg->cid = c->id;
2710       LOG (GNUNET_ERROR_TYPE_DEBUG, " ack %u\n", ntohl (amsg->ack));
2711       droppable = GNUNET_NO;
2712       break;
2713
2714     case GNUNET_MESSAGE_TYPE_MESH_POLL:
2715       pmsg = (struct GNUNET_MESH_Poll *) data;
2716       pmsg->cid = c->id;
2717       LOG (GNUNET_ERROR_TYPE_DEBUG, " poll %u\n", ntohl (pmsg->pid));
2718       droppable = GNUNET_NO;
2719       break;
2720
2721     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY:
2722       dmsg = (struct GNUNET_MESH_ConnectionDestroy *) data;
2723       dmsg->cid = c->id;
2724       dmsg->reserved = 0;
2725       break;
2726
2727     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN:
2728       bmsg = (struct GNUNET_MESH_ConnectionBroken *) data;
2729       bmsg->cid = c->id;
2730       bmsg->reserved = 0;
2731       break;
2732
2733     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE:
2734     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK:
2735     case GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE:
2736       break;
2737
2738     default:
2739       GNUNET_break (0);
2740       GNUNET_free (data);
2741       return NULL;
2742   }
2743
2744   if (fc->queue_n > fc->queue_max && droppable)
2745   {
2746     GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
2747                               1, GNUNET_NO);
2748     GNUNET_break (0);
2749     LOG (GNUNET_ERROR_TYPE_DEBUG,
2750                 "queue full: %u/%u\n",
2751                 fc->queue_n, fc->queue_max);
2752     if (GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED == type)
2753     {
2754       fc->queue_n--;
2755       fc->next_pid--;
2756     }
2757     GNUNET_free (data);
2758     return NULL; /* Drop this message */
2759   }
2760
2761   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %p %u\n", c, c->pending_messages);
2762   c->pending_messages++;
2763
2764   q = GNUNET_new (struct MeshConnectionQueue);
2765   q->forced = !droppable;
2766   q->q = GMP_queue_add (get_hop (c, fwd), data, type, size, c, fwd,
2767                         &message_sent, q);
2768   if (NULL == q->q)
2769   {
2770     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING dropping msg on %s\n", GMC_2s (c));
2771     GNUNET_free (data);
2772     GNUNET_free (q);
2773     return NULL;
2774   }
2775   q->cont = cont;
2776   q->cont_cls = cont_cls;
2777   return q;
2778 }
2779
2780
2781 /**
2782  * Cancel a previously sent message while it's in the queue.
2783  *
2784  * ONLY can be called before the continuation given to the send function
2785  * is called. Once the continuation is called, the message is no longer in the
2786  * queue.
2787  *
2788  * @param q Handle to the queue.
2789  */
2790 void
2791 GMC_cancel (struct MeshConnectionQueue *q)
2792 {
2793   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  GMC cancel message\n");
2794
2795   /* queue destroy calls message_sent, which calls q->cont and frees q */
2796   GMP_queue_destroy (q->q, GNUNET_YES);
2797 }
2798
2799
2800 /**
2801  * Sends a CREATE CONNECTION message for a path to a peer.
2802  * Changes the connection and tunnel states if necessary.
2803  *
2804  * @param connection Connection to create.
2805  */
2806 void
2807 GMC_send_create (struct MeshConnection *connection)
2808 {
2809   enum MeshTunnel3CState state;
2810   size_t size;
2811
2812   size = sizeof (struct GNUNET_MESH_ConnectionCreate);
2813   size += connection->path->length * sizeof (struct GNUNET_PeerIdentity);
2814
2815   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send connection create\n");
2816   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %p %u (create)\n",
2817        connection, connection->pending_messages);
2818   connection->pending_messages++;
2819
2820   GMP_queue_add (get_next_hop (connection), NULL,
2821                  GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE,
2822                  size, connection, GNUNET_YES, &message_sent, NULL);
2823
2824   state = GMT_get_cstate (connection->t);
2825   if (MESH_TUNNEL3_SEARCHING == state || MESH_TUNNEL3_NEW == state)
2826     GMT_change_cstate (connection->t, MESH_TUNNEL3_WAITING);
2827   if (MESH_CONNECTION_NEW == connection->state)
2828     connection_change_state (connection, MESH_CONNECTION_SENT);
2829 }
2830
2831
2832 /**
2833  * Send a message to all peers in this connection that the connection
2834  * is no longer valid.
2835  *
2836  * If some peer should not receive the message, it should be zero'ed out
2837  * before calling this function.
2838  *
2839  * @param c The connection whose peers to notify.
2840  */
2841 void
2842 GMC_send_destroy (struct MeshConnection *c)
2843 {
2844   struct GNUNET_MESH_ConnectionDestroy msg;
2845
2846   if (GNUNET_YES == c->destroy)
2847     return;
2848
2849   msg.header.size = htons (sizeof (msg));
2850   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY);;
2851   msg.cid = c->id;
2852   LOG (GNUNET_ERROR_TYPE_DEBUG,
2853               "  sending connection destroy for connection %s\n",
2854               GMC_2s (c));
2855
2856   if (GNUNET_NO == GMC_is_terminal (c, GNUNET_YES))
2857     GMC_send_prebuilt_message (&msg.header, c,
2858                                GNUNET_YES, GNUNET_YES, NULL, NULL);
2859   if (GNUNET_NO == GMC_is_terminal (c, GNUNET_NO))
2860     GMC_send_prebuilt_message (&msg.header, c,
2861                                GNUNET_NO, GNUNET_YES, NULL, NULL);
2862   c->destroy = GNUNET_YES;
2863   c->state = MESH_CONNECTION_DESTROYED;
2864 }
2865
2866
2867 /**
2868  * @brief Start a polling timer for the connection.
2869  *
2870  * When a neighbor does not accept more traffic on the connection it could be
2871  * caused by a simple congestion or by a lost ACK. Polling enables to check
2872  * for the lastest ACK status for a connection.
2873  *
2874  * @param c Connection.
2875  * @param fwd Should we poll in the FWD direction?
2876  */
2877 void
2878 GMC_start_poll (struct MeshConnection *c, int fwd)
2879 {
2880   struct MeshFlowControl *fc;
2881
2882   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2883   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL %s requested\n",
2884        GM_f2s (fwd));
2885   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task || NULL != fc->poll_msg)
2886   {
2887     LOG (GNUNET_ERROR_TYPE_DEBUG, " ***   not needed (%u, %p)\n",
2888          fc->poll_task, fc->poll_msg);
2889     return;
2890   }
2891   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL started on request\n");
2892   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
2893                                                 &connection_poll,
2894                                                 fc);
2895 }
2896
2897
2898 /**
2899  * @brief Stop polling a connection for ACKs.
2900  *
2901  * Once we have enough ACKs for future traffic, polls are no longer necessary.
2902  *
2903  * @param c Connection.
2904  * @param fwd Should we stop the poll in the FWD direction?
2905  */
2906 void
2907 GMC_stop_poll (struct MeshConnection *c, int fwd)
2908 {
2909   struct MeshFlowControl *fc;
2910
2911   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2912   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
2913   {
2914     GNUNET_SCHEDULER_cancel (fc->poll_task);
2915     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
2916   }
2917 }
2918
2919 /**
2920  * Get a (static) string for a connection.
2921  *
2922  * @param c Connection.
2923  */
2924 const char *
2925 GMC_2s (struct MeshConnection *c)
2926 {
2927   if (NULL == c)
2928     return "NULL";
2929
2930   if (NULL != c->t)
2931   {
2932     static char buf[128];
2933
2934     sprintf (buf, "%s (->%s)", GNUNET_h2s (&c->id), GMT_2s (c->t));
2935     return buf;
2936   }
2937   return GNUNET_h2s (&c->id);
2938 }