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