- improve handling of duplicate connection_create
[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     return GNUNET_SYSERR;
1151
1152   GMP_add_connection (next_peer, c);
1153   GMP_add_connection (prev_peer, c);
1154
1155   return GNUNET_OK;
1156 }
1157
1158
1159 /**
1160  * Remove the connection from the list of both neighbors.
1161  *
1162  * @param c Connection.
1163  */
1164 static void
1165 unregister_neighbors (struct MeshConnection *c)
1166 {
1167   struct MeshPeer *peer;
1168
1169   peer = get_next_hop (c);
1170   GMP_remove_connection (peer, c);
1171
1172   peer = get_prev_hop (c);
1173   GMP_remove_connection (peer, c);
1174
1175 }
1176
1177
1178 /**
1179  * Bind the connection to the peer and the tunnel to that peer.
1180  *
1181  * If the peer has no tunnel, create one. Update tunnel and connection
1182  * data structres to reflect new status.
1183  *
1184  * @param c Connection.
1185  * @param peer Peer.
1186  */
1187 static void
1188 add_to_peer (struct MeshConnection *c, struct MeshPeer *peer)
1189 {
1190   GMP_add_tunnel (peer);
1191   c->t = GMP_get_tunnel (peer);
1192   GMT_add_connection (c->t, c);
1193 }
1194
1195 /******************************************************************************/
1196 /********************************    API    ***********************************/
1197 /******************************************************************************/
1198
1199 /**
1200  * Core handler for connection creation.
1201  *
1202  * @param cls Closure (unused).
1203  * @param peer Sender (neighbor).
1204  * @param message Message.
1205  *
1206  * @return GNUNET_OK to keep the connection open,
1207  *         GNUNET_SYSERR to close it (signal serious error)
1208  */
1209 int
1210 GMC_handle_create (void *cls, const struct GNUNET_PeerIdentity *peer,
1211                    const struct GNUNET_MessageHeader *message)
1212 {
1213   struct GNUNET_MESH_ConnectionCreate *msg;
1214   struct GNUNET_PeerIdentity *id;
1215   struct GNUNET_HashCode *cid;
1216   struct MeshPeerPath *path;
1217   struct MeshPeer *dest_peer;
1218   struct MeshPeer *orig_peer;
1219   struct MeshConnection *c;
1220   unsigned int own_pos;
1221   uint16_t size;
1222   uint16_t i;
1223
1224   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1225   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received a connection create msg\n");
1226
1227   /* Check size */
1228   size = ntohs (message->size);
1229   if (size < sizeof (struct GNUNET_MESH_ConnectionCreate))
1230   {
1231     GNUNET_break_op (0);
1232     return GNUNET_OK;
1233   }
1234
1235   /* Calculate hops */
1236   size -= sizeof (struct GNUNET_MESH_ConnectionCreate);
1237   if (size % sizeof (struct GNUNET_PeerIdentity))
1238   {
1239     GNUNET_break_op (0);
1240     return GNUNET_OK;
1241   }
1242   size /= sizeof (struct GNUNET_PeerIdentity);
1243   if (1 > size)
1244   {
1245     GNUNET_break_op (0);
1246     return GNUNET_OK;
1247   }
1248   LOG (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
1249
1250   /* Get parameters */
1251   msg = (struct GNUNET_MESH_ConnectionCreate *) message;
1252   cid = &msg->cid;
1253   id = (struct GNUNET_PeerIdentity *) &msg[1];
1254   LOG (GNUNET_ERROR_TYPE_DEBUG,
1255               "    connection %s (%s).\n",
1256               GNUNET_h2s (cid), GNUNET_i2s (id));
1257
1258   /* Create connection */
1259   c = connection_get (cid);
1260   if (NULL == c)
1261   {
1262     /* Create path */
1263     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
1264     path = path_new (size);
1265     own_pos = 0;
1266     for (i = 0; i < size; i++)
1267     {
1268       LOG (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
1269                   GNUNET_i2s (&id[i]));
1270       path->peers[i] = GNUNET_PEER_intern (&id[i]);
1271       if (path->peers[i] == myid)
1272         own_pos = i;
1273     }
1274     if (own_pos == 0 && 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 GNUNET_OK;
1280     }
1281     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
1282     GMP_add_path_to_all (path, GNUNET_NO);
1283         LOG (GNUNET_ERROR_TYPE_DEBUG, "  Creating connection\n");
1284     c = GMC_new (cid, NULL, path_duplicate (path), own_pos);
1285     if (NULL == c)
1286     {
1287       path_destroy (path);
1288       return GNUNET_OK;
1289     }
1290     connection_reset_timeout (c, GNUNET_YES);
1291   }
1292   else
1293   {
1294     path = path_duplicate (c->path);
1295   }
1296   if (MESH_CONNECTION_NEW == c->state)
1297     connection_change_state (c, MESH_CONNECTION_SENT);
1298
1299   /* Remember peers */
1300   dest_peer = GMP_get (&id[size - 1]);
1301   orig_peer = GMP_get (&id[0]);
1302
1303   /* Is it a connection to us? */
1304   if (c->own_pos == size - 1)
1305   {
1306     LOG (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
1307     GMP_add_path_to_origin (orig_peer, path_duplicate (path), GNUNET_YES);
1308
1309     add_to_peer (c, orig_peer);
1310     if (MESH_TUNNEL3_NEW == GMT_get_cstate (c->t))
1311       GMT_change_cstate (c->t,  MESH_TUNNEL3_WAITING);
1312
1313     send_connection_ack (c, GNUNET_NO);
1314     if (MESH_CONNECTION_SENT == c->state)
1315       connection_change_state (c, MESH_CONNECTION_ACK);
1316
1317     /* Keep tunnel alive in direction dest->owner*/
1318     if (GNUNET_SCHEDULER_NO_TASK == c->bck_maintenance_task)
1319     {
1320       c->bck_maintenance_task =
1321         GNUNET_SCHEDULER_add_delayed (create_connection_time,
1322                                       &connection_bck_keepalive, c);
1323     }
1324   }
1325   else
1326   {
1327     /* It's for somebody else! Retransmit. */
1328     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
1329     GMP_add_path (dest_peer, path_duplicate (path), GNUNET_NO);
1330     GMP_add_path_to_origin (orig_peer, path_duplicate (path), GNUNET_NO);
1331     GMC_send_prebuilt_message (message, c, GNUNET_YES, GNUNET_YES, NULL, NULL);
1332   }
1333   path_destroy (path);
1334   return GNUNET_OK;
1335 }
1336
1337
1338 /**
1339  * Core handler for path confirmations.
1340  *
1341  * @param cls closure
1342  * @param message message
1343  * @param peer peer identity this notification is about
1344  *
1345  * @return GNUNET_OK to keep the connection open,
1346  *         GNUNET_SYSERR to close it (signal serious error)
1347  */
1348 int
1349 GMC_handle_confirm (void *cls, const struct GNUNET_PeerIdentity *peer,
1350                     const struct GNUNET_MessageHeader *message)
1351 {
1352   struct GNUNET_MESH_ConnectionACK *msg;
1353   struct MeshConnection *c;
1354   struct MeshPeerPath *p;
1355   struct MeshPeer *pi;
1356   enum MeshConnectionState oldstate;
1357   int fwd;
1358
1359   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1360   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received a connection ACK msg\n");
1361   msg = (struct GNUNET_MESH_ConnectionACK *) message;
1362   LOG (GNUNET_ERROR_TYPE_DEBUG, "  on connection %s\n",
1363               GNUNET_h2s (&msg->cid));
1364   c = connection_get (&msg->cid);
1365   if (NULL == c)
1366   {
1367     GNUNET_STATISTICS_update (stats, "# control on unknown connection",
1368                               1, GNUNET_NO);
1369     LOG (GNUNET_ERROR_TYPE_DEBUG, "  don't know the connection!\n");
1370     return GNUNET_OK;
1371   }
1372
1373   oldstate = c->state;
1374   LOG (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n", GNUNET_i2s (peer));
1375   pi = GMP_get (peer);
1376   if (get_next_hop (c) == pi)
1377   {
1378     LOG (GNUNET_ERROR_TYPE_DEBUG, "  SYNACK\n");
1379     fwd = GNUNET_NO;
1380     if (MESH_CONNECTION_SENT == oldstate)
1381       connection_change_state (c, MESH_CONNECTION_ACK);
1382   }
1383   else if (get_prev_hop (c) == pi)
1384   {
1385     LOG (GNUNET_ERROR_TYPE_DEBUG, "  ACK\n");
1386     fwd = GNUNET_YES;
1387     connection_change_state (c, MESH_CONNECTION_READY);
1388   }
1389   else
1390   {
1391     GNUNET_break_op (0);
1392     return GNUNET_OK;
1393   }
1394
1395   connection_reset_timeout (c, fwd);
1396
1397   /* Add path to peers? */
1398   p = c->path;
1399   if (NULL != p)
1400   {
1401     GMP_add_path_to_all (p, GNUNET_YES);
1402   }
1403   else
1404   {
1405     GNUNET_break (0);
1406   }
1407
1408   /* Message for us as creator? */
1409   if (GMC_is_origin (c, GNUNET_YES))
1410   {
1411     if (GNUNET_NO != fwd)
1412     {
1413       GNUNET_break_op (0);
1414       return GNUNET_OK;
1415     }
1416     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Connection (SYN)ACK for us!\n");
1417
1418     /* If just created, cancel the short timeout and start a long one */
1419     if (MESH_CONNECTION_SENT == oldstate)
1420       connection_reset_timeout (c, GNUNET_YES);
1421
1422     /* Change connection state */
1423     connection_change_state (c, MESH_CONNECTION_READY);
1424     send_connection_ack (c, GNUNET_YES);
1425
1426     /* Change tunnel state, trigger KX */
1427     if (MESH_TUNNEL3_WAITING == GMT_get_cstate (c->t))
1428       GMT_change_cstate (c->t, MESH_TUNNEL3_READY);
1429
1430     return GNUNET_OK;
1431   }
1432
1433   /* Message for us as destination? */
1434   if (GMC_is_terminal (c, GNUNET_YES))
1435   {
1436     if (GNUNET_YES != fwd)
1437     {
1438       GNUNET_break_op (0);
1439       return GNUNET_OK;
1440     }
1441     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Connection ACK for us!\n");
1442
1443     /* If just created, cancel the short timeout and start a long one */
1444     if (MESH_CONNECTION_ACK == oldstate)
1445       connection_reset_timeout (c, GNUNET_NO);
1446
1447     /* Change tunnel state */
1448     if (MESH_TUNNEL3_WAITING == GMT_get_cstate (c->t))
1449       GMT_change_cstate (c->t, MESH_TUNNEL3_READY);
1450
1451     return GNUNET_OK;
1452   }
1453
1454   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1455   GMC_send_prebuilt_message (message, c, fwd, GNUNET_YES, NULL, NULL);
1456   return GNUNET_OK;
1457 }
1458
1459
1460 /**
1461  * Core handler for notifications of broken paths
1462  *
1463  * @param cls Closure (unused).
1464  * @param id Peer identity of sending neighbor.
1465  * @param message Message.
1466  *
1467  * @return GNUNET_OK to keep the connection open,
1468  *         GNUNET_SYSERR to close it (signal serious error)
1469  */
1470 int
1471 GMC_handle_broken (void* cls,
1472                    const struct GNUNET_PeerIdentity* id,
1473                    const struct GNUNET_MessageHeader* message)
1474 {
1475   struct GNUNET_MESH_ConnectionBroken *msg;
1476   struct MeshConnection *c;
1477   int fwd;
1478
1479   LOG (GNUNET_ERROR_TYPE_DEBUG,
1480               "Received a CONNECTION BROKEN msg from %s\n", GNUNET_i2s (id));
1481   msg = (struct GNUNET_MESH_ConnectionBroken *) message;
1482   LOG (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
1483               GNUNET_i2s (&msg->peer1));
1484   LOG (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
1485               GNUNET_i2s (&msg->peer2));
1486   c = connection_get (&msg->cid);
1487   if (NULL == c)
1488   {
1489     GNUNET_break_op (0);
1490     return GNUNET_OK;
1491   }
1492
1493   fwd = is_fwd (c, id);
1494   connection_cancel_queues (c, !fwd);
1495   if (GMC_is_terminal (c, fwd))
1496   {
1497     if (0 < c->pending_messages)
1498       c->destroy = GNUNET_YES;
1499     else
1500       GMC_destroy (c);
1501   }
1502   else
1503   {
1504     GMC_send_prebuilt_message (message, c, fwd, GNUNET_YES, NULL, NULL);
1505     c->destroy = GNUNET_YES;
1506   }
1507
1508   return GNUNET_OK;
1509
1510 }
1511
1512
1513 /**
1514  * Core handler for tunnel destruction
1515  *
1516  * @param cls Closure (unused).
1517  * @param peer Peer identity of sending neighbor.
1518  * @param message Message.
1519  *
1520  * @return GNUNET_OK to keep the connection open,
1521  *         GNUNET_SYSERR to close it (signal serious error)
1522  */
1523 int
1524 GMC_handle_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
1525                     const struct GNUNET_MessageHeader *message)
1526 {
1527   struct GNUNET_MESH_ConnectionDestroy *msg;
1528   struct MeshConnection *c;
1529   int fwd;
1530
1531   msg = (struct GNUNET_MESH_ConnectionDestroy *) message;
1532   LOG (GNUNET_ERROR_TYPE_DEBUG,
1533               "Got a CONNECTION DESTROY message from %s\n",
1534               GNUNET_i2s (peer));
1535   LOG (GNUNET_ERROR_TYPE_DEBUG,
1536               "  for connection %s\n",
1537               GNUNET_h2s (&msg->cid));
1538   c = connection_get (&msg->cid);
1539   if (NULL == c)
1540   {
1541     /* Probably already got the message from another path,
1542      * destroyed the tunnel and retransmitted to children.
1543      * Safe to ignore.
1544      */
1545     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel",
1546                               1, GNUNET_NO);
1547     LOG (GNUNET_ERROR_TYPE_DEBUG, "  connection unknown: already destroyed?\n");
1548     return GNUNET_OK;
1549   }
1550   fwd = is_fwd (c, peer);
1551   if (GNUNET_SYSERR == fwd)
1552   {
1553     GNUNET_break_op (0);
1554     return GNUNET_OK;
1555   }
1556   GMC_send_prebuilt_message (message, c, fwd, GNUNET_YES, NULL, NULL);
1557   c->destroy = GNUNET_YES;
1558   c->state = MESH_CONNECTION_DESTROYED;
1559
1560   return GNUNET_OK;
1561 }
1562
1563 /**
1564  * Generic handler for mesh network encrypted traffic.
1565  *
1566  * @param peer Peer identity this notification is about.
1567  * @param msg Encrypted message.
1568  *
1569  * @return GNUNET_OK to keep the connection open,
1570  *         GNUNET_SYSERR to close it (signal serious error)
1571  */
1572 static int
1573 handle_mesh_encrypted (const struct GNUNET_PeerIdentity *peer,
1574                        const struct GNUNET_MESH_Encrypted *msg)
1575 {
1576   struct MeshConnection *c;
1577   struct MeshPeer *neighbor;
1578   struct MeshFlowControl *fc;
1579   GNUNET_PEER_Id peer_id;
1580   uint32_t pid;
1581   uint32_t ttl;
1582   uint16_t type;
1583   size_t size;
1584   int fwd;
1585
1586   /* Check size */
1587   size = ntohs (msg->header.size);
1588   if (size <
1589       sizeof (struct GNUNET_MESH_Encrypted) +
1590       sizeof (struct GNUNET_MessageHeader))
1591   {
1592     GNUNET_break_op (0);
1593     return GNUNET_OK;
1594   }
1595   type = ntohs (msg->header.type);
1596   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1597   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a %s message (#%u) from %s\n",
1598        GM_m2s (type), ntohl (msg->pid), GNUNET_i2s (peer));
1599
1600   /* Check connection */
1601   c = connection_get (&msg->cid);
1602   if (NULL == c)
1603   {
1604     GNUNET_STATISTICS_update (stats, "# unknown connection", 1, GNUNET_NO);
1605     LOG (GNUNET_ERROR_TYPE_DEBUG,
1606          "WARNING connection %s unknown\n",
1607          GNUNET_h2s (&msg->cid));
1608     return GNUNET_OK;
1609   }
1610
1611   /* Check if origin is as expected */
1612   neighbor = get_prev_hop (c);
1613   peer_id = GNUNET_PEER_search (peer);
1614   if (peer_id == GMP_get_short_id (neighbor))
1615   {
1616     fwd = GNUNET_YES;
1617   }
1618   else
1619   {
1620     neighbor = get_next_hop (c);
1621     if (peer_id == GMP_get_short_id (neighbor))
1622     {
1623       fwd = GNUNET_NO;
1624     }
1625     else
1626     {
1627       /* Unexpected peer sending traffic on a connection. */
1628       GNUNET_break_op (0);
1629       return GNUNET_OK;
1630     }
1631   }
1632
1633   /* Check PID */
1634   fc = fwd ? &c->bck_fc : &c->fwd_fc;
1635   pid = ntohl (msg->pid);
1636   if (GM_is_pid_bigger (pid, fc->last_ack_sent))
1637   {
1638     GNUNET_STATISTICS_update (stats, "# unsolicited message", 1, GNUNET_NO);
1639     LOG (GNUNET_ERROR_TYPE_DEBUG,
1640                 "WARNING Received PID %u, (prev %u), ACK %u\n",
1641                 pid, fc->last_pid_recv, fc->last_ack_sent);
1642     return GNUNET_OK;
1643   }
1644   if (GNUNET_NO == GM_is_pid_bigger (pid, fc->last_pid_recv))
1645   {
1646     GNUNET_STATISTICS_update (stats, "# duplicate PID", 1, GNUNET_NO);
1647     LOG (GNUNET_ERROR_TYPE_DEBUG,
1648                 " Pid %u not expected (%u+), dropping!\n",
1649                 pid, fc->last_pid_recv + 1);
1650     return GNUNET_OK;
1651   }
1652   if (MESH_CONNECTION_SENT == c->state || MESH_CONNECTION_ACK == c->state)
1653     connection_change_state (c, MESH_CONNECTION_READY);
1654   connection_reset_timeout (c, fwd);
1655   fc->last_pid_recv = pid;
1656
1657   /* Is this message for us? */
1658   if (GMC_is_terminal (c, fwd))
1659   {
1660     /* TODO signature verification */
1661     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
1662     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
1663
1664     if (NULL == c->t)
1665     {
1666       GNUNET_break (0);
1667       return GNUNET_OK;
1668     }
1669     fc->last_pid_recv = pid;
1670     GMT_handle_encrypted (c->t, msg);
1671     GMC_send_ack (c, fwd, GNUNET_NO);
1672     return GNUNET_OK;
1673   }
1674
1675   /* Message not for us: forward to next hop */
1676   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1677   ttl = ntohl (msg->ttl);
1678   LOG (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
1679   if (ttl == 0)
1680   {
1681     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
1682     LOG (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
1683     GMC_send_ack (c, fwd, GNUNET_NO);
1684     return GNUNET_OK;
1685   }
1686
1687   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
1688   GMC_send_prebuilt_message (&msg->header, c, fwd, GNUNET_NO, NULL, NULL);
1689
1690   return GNUNET_OK;
1691 }
1692
1693 /**
1694  * Generic handler for mesh network encrypted traffic.
1695  *
1696  * @param peer Peer identity this notification is about.
1697  * @param msg Encrypted message.
1698  *
1699  * @return GNUNET_OK to keep the connection open,
1700  *         GNUNET_SYSERR to close it (signal serious error)
1701  */
1702 static int
1703 handle_mesh_kx (const struct GNUNET_PeerIdentity *peer,
1704                 const struct GNUNET_MESH_KX *msg)
1705 {
1706   struct MeshConnection *c;
1707   struct MeshPeer *neighbor;
1708   GNUNET_PEER_Id peer_id;
1709   size_t size;
1710   uint16_t type;
1711   int fwd;
1712
1713   /* Check size */
1714   size = ntohs (msg->header.size);
1715   if (size <
1716       sizeof (struct GNUNET_MESH_Encrypted) +
1717       sizeof (struct GNUNET_MessageHeader))
1718   {
1719     GNUNET_break_op (0);
1720     return GNUNET_OK;
1721   }
1722   type = ntohs (msg->header.type);
1723   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1724   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a %s message from %s\n",
1725               GM_m2s (type), GNUNET_i2s (peer));
1726
1727   /* Check connection */
1728   c = connection_get (&msg->cid);
1729   if (NULL == c)
1730   {
1731     GNUNET_STATISTICS_update (stats, "# unknown connection", 1, GNUNET_NO);
1732     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING connection unknown\n");
1733     return GNUNET_OK;
1734   }
1735
1736   /* Check if origin is as expected */
1737   neighbor = get_prev_hop (c);
1738   peer_id = GNUNET_PEER_search (peer);
1739   if (peer_id == GMP_get_short_id (neighbor))
1740   {
1741     fwd = GNUNET_YES;
1742   }
1743   else
1744   {
1745     neighbor = get_next_hop (c);
1746     if (peer_id == GMP_get_short_id (neighbor))
1747     {
1748       fwd = GNUNET_NO;
1749     }
1750     else
1751     {
1752       /* Unexpected peer sending traffic on a connection. */
1753       GNUNET_break_op (0);
1754       return GNUNET_OK;
1755     }
1756   }
1757
1758   /* Count as connection confirmation. */
1759   if (MESH_CONNECTION_SENT == c->state || MESH_CONNECTION_ACK == c->state)
1760     connection_change_state (c, MESH_CONNECTION_READY);
1761   connection_reset_timeout (c, fwd);
1762   if (NULL != c->t)
1763   {
1764     if (MESH_TUNNEL3_WAITING == GMT_get_cstate (c->t))
1765       GMT_change_cstate (c->t, MESH_TUNNEL3_READY);
1766   }
1767
1768   /* Is this message for us? */
1769   if (GMC_is_terminal (c, fwd))
1770   {
1771     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
1772     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
1773     if (NULL == c->t)
1774     {
1775       GNUNET_break (0);
1776       return GNUNET_OK;
1777     }
1778     GMT_handle_kx (c->t, &msg[1].header);
1779     return GNUNET_OK;
1780   }
1781
1782   /* Message not for us: forward to next hop */
1783   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1784   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
1785   GMC_send_prebuilt_message (&msg->header, c, fwd, GNUNET_NO, NULL, NULL);
1786
1787   return GNUNET_OK;
1788 }
1789
1790
1791 /**
1792  * Core handler for encrypted mesh network traffic (channel mgmt, data).
1793  *
1794  * @param cls Closure (unused).
1795  * @param message Message received.
1796  * @param peer Peer who sent the message.
1797  *
1798  * @return GNUNET_OK to keep the connection open,
1799  *         GNUNET_SYSERR to close it (signal serious error)
1800  */
1801 int
1802 GMC_handle_encrypted (void *cls, const struct GNUNET_PeerIdentity *peer,
1803                       const struct GNUNET_MessageHeader *message)
1804 {
1805   return handle_mesh_encrypted (peer,
1806                                 (struct GNUNET_MESH_Encrypted *)message);
1807 }
1808
1809
1810 /**
1811  * Core handler for key exchange traffic (ephemeral key, ping, pong).
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_kx (void *cls, const struct GNUNET_PeerIdentity *peer,
1822                const struct GNUNET_MessageHeader *message)
1823 {
1824   return handle_mesh_kx (peer,
1825                          (struct GNUNET_MESH_KX *) message);
1826 }
1827
1828
1829 /**
1830  * Core handler for mesh network traffic point-to-point acks.
1831  *
1832  * @param cls closure
1833  * @param message message
1834  * @param peer peer identity this notification is about
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_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
1841                 const struct GNUNET_MessageHeader *message)
1842 {
1843   struct GNUNET_MESH_ACK *msg;
1844   struct MeshConnection *c;
1845   struct MeshFlowControl *fc;
1846   GNUNET_PEER_Id id;
1847   uint32_t ack;
1848   int fwd;
1849
1850   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1851   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
1852               GNUNET_i2s (peer));
1853   msg = (struct GNUNET_MESH_ACK *) message;
1854
1855   c = connection_get (&msg->cid);
1856
1857   if (NULL == c)
1858   {
1859     GNUNET_STATISTICS_update (stats, "# ack on unknown connection", 1,
1860                               GNUNET_NO);
1861     return GNUNET_OK;
1862   }
1863
1864   /* Is this a forward or backward ACK? */
1865   id = GNUNET_PEER_search (peer);
1866   if (GMP_get_short_id (get_next_hop (c)) == id)
1867   {
1868     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
1869     fc = &c->fwd_fc;
1870     fwd = GNUNET_YES;
1871   }
1872   else if (GMP_get_short_id (get_prev_hop (c)) == id)
1873   {
1874     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
1875     fc = &c->bck_fc;
1876     fwd = GNUNET_NO;
1877   }
1878   else
1879   {
1880     GNUNET_break_op (0);
1881     return GNUNET_OK;
1882   }
1883
1884   ack = ntohl (msg->ack);
1885   LOG (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u (was %u)\n",
1886               ack, fc->last_ack_recv);
1887   if (GM_is_pid_bigger (ack, fc->last_ack_recv))
1888     fc->last_ack_recv = ack;
1889
1890   /* Cancel polling if the ACK is big enough. */
1891   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task &&
1892       GM_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
1893   {
1894     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Cancel poll\n");
1895     GNUNET_SCHEDULER_cancel (fc->poll_task);
1896     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
1897     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
1898   }
1899
1900   connection_unlock_queue (c, fwd);
1901
1902   return GNUNET_OK;
1903 }
1904
1905
1906 /**
1907  * Core handler for mesh network traffic point-to-point ack polls.
1908  *
1909  * @param cls closure
1910  * @param message message
1911  * @param peer peer identity this notification is about
1912  *
1913  * @return GNUNET_OK to keep the connection open,
1914  *         GNUNET_SYSERR to close it (signal serious error)
1915  */
1916 int
1917 GMC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
1918                  const struct GNUNET_MessageHeader *message)
1919 {
1920   struct GNUNET_MESH_Poll *msg;
1921   struct MeshConnection *c;
1922   struct MeshFlowControl *fc;
1923   GNUNET_PEER_Id id;
1924   uint32_t pid;
1925   int fwd;
1926
1927   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1928   LOG (GNUNET_ERROR_TYPE_DEBUG,
1929        "Got a POLL packet from %s!\n",
1930        GNUNET_i2s (peer));
1931
1932   msg = (struct GNUNET_MESH_Poll *) message;
1933
1934   c = connection_get (&msg->cid);
1935
1936   if (NULL == c)
1937   {
1938     GNUNET_STATISTICS_update (stats, "# poll on unknown connection", 1,
1939                               GNUNET_NO);
1940     GNUNET_break_op (0);
1941     return GNUNET_OK;
1942   }
1943
1944   /* Is this a forward or backward ACK?
1945    * Note: a poll should never be needed in a loopback case,
1946    * since there is no possiblility of packet loss there, so
1947    * this way of discerining FWD/BCK should not be a problem.
1948    */
1949   id = GNUNET_PEER_search (peer);
1950   if (GMP_get_short_id (get_next_hop (c)) == id)
1951   {
1952     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD FC\n");
1953     fc = &c->fwd_fc;
1954   }
1955   else if (GMP_get_short_id (get_prev_hop (c)) == id)
1956   {
1957     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK FC\n");
1958     fc = &c->bck_fc;
1959   }
1960   else
1961   {
1962     GNUNET_break_op (0);
1963     return GNUNET_OK;
1964   }
1965
1966   pid = ntohl (msg->pid);
1967   LOG (GNUNET_ERROR_TYPE_DEBUG, "  PID %u, OLD %u\n", pid, fc->last_pid_recv);
1968   fc->last_pid_recv = pid;
1969   fwd = fc == &c->bck_fc;
1970   GMC_send_ack (c, fwd, GNUNET_YES);
1971
1972   return GNUNET_OK;
1973 }
1974
1975
1976 /**
1977  * Core handler for mesh keepalives.
1978  *
1979  * @param cls closure
1980  * @param message message
1981  * @param peer peer identity this notification is about
1982  * @return GNUNET_OK to keep the connection open,
1983  *         GNUNET_SYSERR to close it (signal serious error)
1984  *
1985  * TODO: Check who we got this from, to validate route.
1986  */
1987 int
1988 GMC_handle_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
1989                       const struct GNUNET_MessageHeader *message)
1990 {
1991   struct GNUNET_MESH_ConnectionKeepAlive *msg;
1992   struct MeshConnection *c;
1993   struct MeshPeer *neighbor;
1994   GNUNET_PEER_Id peer_id;
1995   int fwd;
1996
1997   msg = (struct GNUNET_MESH_ConnectionKeepAlive *) message;
1998   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
1999               GNUNET_i2s (peer));
2000
2001   c = connection_get (&msg->cid);
2002   if (NULL == c)
2003   {
2004     GNUNET_STATISTICS_update (stats, "# keepalive on unknown connection", 1,
2005                               GNUNET_NO);
2006     return GNUNET_OK;
2007   }
2008
2009   /* Check if origin is as expected TODO refactor and reuse */
2010   peer_id = GNUNET_PEER_search (peer);
2011   neighbor = get_prev_hop (c);
2012   if (peer_id == GMP_get_short_id (neighbor))
2013   {
2014     fwd = GNUNET_YES;
2015   }
2016   else
2017   {
2018     neighbor = get_next_hop (c);
2019     if (peer_id == GMP_get_short_id (neighbor))
2020     {
2021       fwd = GNUNET_NO;
2022     }
2023     else
2024     {
2025       GNUNET_break_op (0);
2026       return GNUNET_OK;
2027     }
2028   }
2029
2030   connection_change_state (c, MESH_CONNECTION_READY);
2031   connection_reset_timeout (c, fwd);
2032
2033   if (GMC_is_terminal (c, fwd))
2034     return GNUNET_OK;
2035
2036   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
2037   GMC_send_prebuilt_message (message, c, fwd, GNUNET_YES, NULL, NULL);
2038
2039   return GNUNET_OK;
2040 }
2041
2042
2043 /**
2044  * Send an ACK on the appropriate connection/channel, depending on
2045  * the direction and the position of the peer.
2046  *
2047  * @param c Which connection to send the hop-by-hop ACK.
2048  * @param fwd Is this a fwd ACK? (will go dest->root).
2049  * @param force Send the ACK even if suboptimal (e.g. requested by POLL).
2050  */
2051 void
2052 GMC_send_ack (struct MeshConnection *c, int fwd, int force)
2053 {
2054   unsigned int buffer;
2055
2056   LOG (GNUNET_ERROR_TYPE_DEBUG,
2057        "GMC send %s ACK on %s\n",
2058        GM_f2s (fwd), GMC_2s (c));
2059
2060   if (NULL == c)
2061   {
2062     GNUNET_break (0);
2063     return;
2064   }
2065
2066   if (GNUNET_NO != c->destroy)
2067   {
2068     LOG (GNUNET_ERROR_TYPE_DEBUG, "  being destroyed, why bother...\n");
2069     return;
2070   }
2071
2072   /* Get available buffer space */
2073   if (GMC_is_terminal (c, fwd))
2074   {
2075     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from all channels\n");
2076     buffer = GMT_get_channels_buffer (c->t);
2077   }
2078   else
2079   {
2080     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from one connection\n");
2081     buffer = GMC_get_buffer (c, fwd);
2082   }
2083   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer available: %u\n", buffer);
2084   if (0 == buffer && GNUNET_NO == force)
2085     return;
2086
2087   /* Send available buffer space */
2088   if (GMC_is_origin (c, fwd))
2089   {
2090     GNUNET_assert (NULL != c->t);
2091     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on channels...\n");
2092     GMT_unchoke_channels (c->t);
2093   }
2094   else
2095   {
2096     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on connection\n");
2097     send_ack (c, buffer, fwd, force);
2098   }
2099 }
2100
2101
2102 /**
2103  * Initialize the connections subsystem
2104  *
2105  * @param c Configuration handle.
2106  */
2107 void
2108 GMC_init (const struct GNUNET_CONFIGURATION_Handle *c)
2109 {
2110   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
2111   if (GNUNET_OK !=
2112       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
2113                                              &max_msgs_queue))
2114   {
2115     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2116                                "MESH", "MAX_MSGS_QUEUE", "MISSING");
2117     GNUNET_SCHEDULER_shutdown ();
2118     return;
2119   }
2120
2121   if (GNUNET_OK !=
2122       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_CONNECTIONS",
2123                                              &max_connections))
2124   {
2125     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2126                                "MESH", "MAX_CONNECTIONS", "MISSING");
2127     GNUNET_SCHEDULER_shutdown ();
2128     return;
2129   }
2130
2131   if (GNUNET_OK !=
2132       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_CONNECTION_TIME",
2133                                            &refresh_connection_time))
2134   {
2135     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
2136                                "MESH", "REFRESH_CONNECTION_TIME", "MISSING");
2137     GNUNET_SCHEDULER_shutdown ();
2138     return;
2139   }
2140   create_connection_time = GNUNET_TIME_UNIT_SECONDS;
2141   connections = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_YES);
2142 }
2143
2144
2145 /**
2146  * Destroy each connection on shutdown.
2147  *
2148  * @param cls Closure (unused).
2149  * @param key Current key code (CID, unused).
2150  * @param value Value in the hash map (connection)
2151  *
2152  * @return #GNUNET_YES, because we should continue to iterate,
2153  */
2154 static int
2155 shutdown_iterator (void *cls,
2156                    const struct GNUNET_HashCode *key,
2157                    void *value)
2158 {
2159   struct MeshConnection *c = value;
2160
2161   GMC_destroy (c);
2162   return GNUNET_YES;
2163 }
2164
2165
2166 /**
2167  * Shut down the connections subsystem.
2168  */
2169 void
2170 GMC_shutdown (void)
2171 {
2172   GNUNET_CONTAINER_multihashmap_iterate (connections, &shutdown_iterator, NULL);
2173   GNUNET_CONTAINER_multihashmap_destroy (connections);
2174   connections = NULL;
2175 }
2176
2177
2178 struct MeshConnection *
2179 GMC_new (const struct GNUNET_HashCode *cid,
2180          struct MeshTunnel3 *t,
2181          struct MeshPeerPath *p,
2182          unsigned int own_pos)
2183 {
2184   struct MeshConnection *c;
2185
2186   c = GNUNET_new (struct MeshConnection);
2187   c->id = *cid;
2188   GNUNET_CONTAINER_multihashmap_put (connections, &c->id, c,
2189                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
2190   fc_init (&c->fwd_fc);
2191   fc_init (&c->bck_fc);
2192   c->fwd_fc.c = c;
2193   c->bck_fc.c = c;
2194
2195   c->t = t;
2196   if (own_pos > p->length - 1)
2197   {
2198     GNUNET_break (0);
2199     GMC_destroy (c);
2200     return NULL;
2201   }
2202   c->own_pos = own_pos;
2203   c->path = p;
2204
2205   if (0 == own_pos)
2206   {
2207     c->fwd_maintenance_task =
2208       GNUNET_SCHEDULER_add_delayed (create_connection_time,
2209                                     &connection_fwd_keepalive, c);
2210   }
2211   if (GNUNET_OK != register_neighbors (c))
2212   {
2213     GMC_destroy (c);
2214     return NULL;
2215   }
2216
2217   return c;
2218 }
2219
2220
2221 void
2222 GMC_destroy (struct MeshConnection *c)
2223 {
2224   if (NULL == c)
2225     return;
2226
2227   if (2 == c->destroy) /* cancel queues -> GMP_queue_cancel -> q_destroy -> */
2228     return;            /* -> message_sent -> GMC_destroy. Don't loop. */
2229   c->destroy = 2;
2230
2231   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying connection %s\n", GMC_2s (c));
2232   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc's f: %p, b: %p\n",
2233        &c->fwd_fc, &c->bck_fc);
2234   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc tasks f: %u, b: %u\n",
2235        c->fwd_fc.poll_task, c->bck_fc.poll_task);
2236
2237   /* Cancel all traffic */
2238   connection_cancel_queues (c, GNUNET_YES);
2239   connection_cancel_queues (c, GNUNET_NO);
2240
2241   LOG (GNUNET_ERROR_TYPE_DEBUG, " fc tasks f: %u, b: %u\n",
2242        c->fwd_fc.poll_task, c->bck_fc.poll_task);
2243
2244   /* Cancel maintainance task (keepalive/timeout) */
2245   if (NULL != c->fwd_fc.poll_msg)
2246   {
2247     GMC_cancel (c->fwd_fc.poll_msg);
2248     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL msg FWD canceled\n");
2249   }
2250   if (NULL != c->bck_fc.poll_msg)
2251   {
2252     GMC_cancel (c->bck_fc.poll_msg);
2253     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL msg BCK canceled\n");
2254   }
2255
2256   /* Unregister from neighbors */
2257   unregister_neighbors (c);
2258
2259   /* Delete */
2260   GNUNET_STATISTICS_update (stats, "# connections", -1, GNUNET_NO);
2261   if (NULL != c->t)
2262     GMT_remove_connection (c->t, c);
2263
2264   if (GNUNET_NO == GMC_is_origin (c, GNUNET_YES))
2265     path_destroy (c->path);
2266   if (GNUNET_SCHEDULER_NO_TASK != c->fwd_maintenance_task)
2267     GNUNET_SCHEDULER_cancel (c->fwd_maintenance_task);
2268   if (GNUNET_SCHEDULER_NO_TASK != c->bck_maintenance_task)
2269     GNUNET_SCHEDULER_cancel (c->bck_maintenance_task);
2270   if (GNUNET_SCHEDULER_NO_TASK != c->fwd_fc.poll_task)
2271   {
2272     GNUNET_SCHEDULER_cancel (c->fwd_fc.poll_task);
2273     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL FWD canceled\n");
2274   }
2275   if (GNUNET_SCHEDULER_NO_TASK != c->bck_fc.poll_task)
2276   {
2277     GNUNET_SCHEDULER_cancel (c->bck_fc.poll_task);
2278     LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL BCK canceled\n");
2279   }
2280
2281   GNUNET_break (GNUNET_YES ==
2282                 GNUNET_CONTAINER_multihashmap_remove (connections, &c->id, c));
2283
2284   GNUNET_free (c);
2285 }
2286
2287 /**
2288  * Get the connection ID.
2289  *
2290  * @param c Connection to get the ID from.
2291  *
2292  * @return ID of the connection.
2293  */
2294 const struct GNUNET_HashCode *
2295 GMC_get_id (const struct MeshConnection *c)
2296 {
2297   return &c->id;
2298 }
2299
2300
2301 /**
2302  * Get the connection path.
2303  *
2304  * @param c Connection to get the path from.
2305  *
2306  * @return path used by the connection.
2307  */
2308 const struct MeshPeerPath *
2309 GMC_get_path (const struct MeshConnection *c)
2310 {
2311   if (GNUNET_NO == c->destroy)
2312     return c->path;
2313   return NULL;
2314 }
2315
2316
2317 /**
2318  * Get the connection state.
2319  *
2320  * @param c Connection to get the state from.
2321  *
2322  * @return state of the connection.
2323  */
2324 enum MeshConnectionState
2325 GMC_get_state (const struct MeshConnection *c)
2326 {
2327   return c->state;
2328 }
2329
2330 /**
2331  * Get the connection tunnel.
2332  *
2333  * @param c Connection to get the tunnel from.
2334  *
2335  * @return tunnel of the connection.
2336  */
2337 struct MeshTunnel3 *
2338 GMC_get_tunnel (const struct MeshConnection *c)
2339 {
2340   return c->t;
2341 }
2342
2343
2344 /**
2345  * Get free buffer space in a connection.
2346  *
2347  * @param c Connection.
2348  * @param fwd Is query about FWD traffic?
2349  *
2350  * @return Free buffer space [0 - max_msgs_queue/max_connections]
2351  */
2352 unsigned int
2353 GMC_get_buffer (struct MeshConnection *c, int fwd)
2354 {
2355   struct MeshFlowControl *fc;
2356
2357   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2358
2359   return (fc->queue_max - fc->queue_n);
2360 }
2361
2362 /**
2363  * Get how many messages have we allowed to send to us from a direction.
2364  *
2365  * @param c Connection.
2366  * @param fwd Are we asking about traffic from FWD (BCK messages)?
2367  *
2368  * @return last_ack_sent - last_pid_recv
2369  */
2370 unsigned int
2371 GMC_get_allowed (struct MeshConnection *c, int fwd)
2372 {
2373   struct MeshFlowControl *fc;
2374
2375   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2376   if (GM_is_pid_bigger(fc->last_pid_recv, fc->last_ack_sent))
2377   {
2378     return 0;
2379   }
2380   return (fc->last_ack_sent - fc->last_pid_recv);
2381 }
2382
2383 /**
2384  * Get messages queued in a connection.
2385  *
2386  * @param c Connection.
2387  * @param fwd Is query about FWD traffic?
2388  *
2389  * @return Number of messages queued.
2390  */
2391 unsigned int
2392 GMC_get_qn (struct MeshConnection *c, int fwd)
2393 {
2394   struct MeshFlowControl *fc;
2395
2396   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2397
2398   return fc->queue_n;
2399 }
2400
2401
2402 /**
2403  * Allow the connection to advertise a buffer of the given size.
2404  *
2405  * The connection will send an @c fwd ACK message (so: in direction !fwd)
2406  * allowing up to last_pid_recv + buffer.
2407  *
2408  * @param c Connection.
2409  * @param buffer How many more messages the connection can accept.
2410  * @param fwd Is this about FWD traffic? (The ack will go dest->root).
2411  */
2412 void
2413 GMC_allow (struct MeshConnection *c, unsigned int buffer, int fwd)
2414 {
2415   send_ack (c, buffer, fwd, GNUNET_NO);
2416 }
2417
2418
2419 /**
2420  * Notify other peers on a connection of a broken link. Mark connections
2421  * to destroy after all traffic has been sent.
2422  *
2423  * @param c Connection on which there has been a disconnection.
2424  * @param peer Peer that disconnected.
2425  */
2426 void
2427 GMC_notify_broken (struct MeshConnection *c,
2428                    struct MeshPeer *peer)
2429 {
2430   int fwd;
2431
2432   LOG (GNUNET_ERROR_TYPE_DEBUG,
2433        " notify broken on %s due to %s disconnect\n",
2434        GMC_2s (c), GMP_2s (peer));
2435
2436   fwd = peer == get_prev_hop (c);
2437
2438   if (GNUNET_YES == GMC_is_terminal (c, fwd))
2439   {
2440     /* Local shutdown, no one to notify about this. */
2441     GMC_destroy (c);
2442     return;
2443   }
2444   if (GNUNET_NO == c->destroy)
2445     send_broken (c, &my_full_id, GMP_get_id (peer), fwd);
2446
2447   /* Connection will have at least one pending message
2448    * (the one we just scheduled), so no point in checking whether to
2449    * destroy immediately. */
2450   c->destroy = GNUNET_YES;
2451   c->state = MESH_CONNECTION_DESTROYED;
2452
2453   /**
2454    * Cancel all queues, if no message is left, connection will be destroyed.
2455    */
2456   connection_cancel_queues (c, !fwd);
2457
2458   return;
2459 }
2460
2461
2462 /**
2463  * Is this peer the first one on the connection?
2464  *
2465  * @param c Connection.
2466  * @param fwd Is this about fwd traffic?
2467  *
2468  * @return #GNUNET_YES if origin, #GNUNET_NO if relay/terminal.
2469  */
2470 int
2471 GMC_is_origin (struct MeshConnection *c, int fwd)
2472 {
2473   if (!fwd && c->path->length - 1 == c->own_pos )
2474     return GNUNET_YES;
2475   if (fwd && 0 == c->own_pos)
2476     return GNUNET_YES;
2477   return GNUNET_NO;
2478 }
2479
2480
2481 /**
2482  * Is this peer the last one on the connection?
2483  *
2484  * @param c Connection.
2485  * @param fwd Is this about fwd traffic?
2486  *            Note that the ROOT is the terminal for BCK traffic!
2487  *
2488  * @return #GNUNET_YES if terminal, #GNUNET_NO if relay/origin.
2489  */
2490 int
2491 GMC_is_terminal (struct MeshConnection *c, int fwd)
2492 {
2493   return GMC_is_origin (c, !fwd);
2494 }
2495
2496
2497 /**
2498  * See if we are allowed to send by the next hop in the given direction.
2499  *
2500  * @param c Connection.
2501  * @param fwd Is this about fwd traffic?
2502  *
2503  * @return #GNUNET_YES in case it's OK to send.
2504  */
2505 int
2506 GMC_is_sendable (struct MeshConnection *c, int fwd)
2507 {
2508   struct MeshFlowControl *fc;
2509
2510   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2511   if (GM_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
2512     return GNUNET_YES;
2513   return GNUNET_NO;
2514 }
2515
2516 /**
2517  * Sends an already built message on a connection, properly registering
2518  * all used resources.
2519  *
2520  * @param message Message to send. Function makes a copy of it.
2521  *                If message is not hop-by-hop, decrements TTL of copy.
2522  * @param c Connection on which this message is transmitted.
2523  * @param fwd Is this a fwd message?
2524  * @param force Force the connection to accept the message (buffer overfill).
2525  * @param cont Continuation called once message is sent. Can be NULL.
2526  * @param cont_cls Closure for @c cont.
2527  *
2528  * @return Handle to cancel the message before it's sent.
2529  *         NULL on error or if @c cont is NULL.
2530  *         Invalid on @c cont call.
2531  */
2532 struct MeshConnectionQueue *
2533 GMC_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2534                            struct MeshConnection *c, int fwd, int force,
2535                            GMC_sent cont, void *cont_cls)
2536 {
2537   struct MeshFlowControl *fc;
2538   struct MeshConnectionQueue *q;
2539   void *data;
2540   size_t size;
2541   uint16_t type;
2542   int droppable;
2543
2544   size = ntohs (message->size);
2545   data = GNUNET_malloc (size);
2546   memcpy (data, message, size);
2547   type = ntohs (message->type);
2548   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send %s (%u bytes) on connection %s\n",
2549               GM_m2s (type), size, GMC_2s (c));
2550
2551   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2552   droppable = GNUNET_NO == force;
2553   switch (type)
2554   {
2555     struct GNUNET_MESH_Encrypted *emsg;
2556     struct GNUNET_MESH_KX        *kmsg;
2557     struct GNUNET_MESH_ACK       *amsg;
2558     struct GNUNET_MESH_Poll      *pmsg;
2559     struct GNUNET_MESH_ConnectionDestroy *dmsg;
2560     struct GNUNET_MESH_ConnectionBroken  *bmsg;
2561     uint32_t ttl;
2562
2563     case GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED:
2564       emsg = (struct GNUNET_MESH_Encrypted *) data;
2565       ttl = ntohl (emsg->ttl);
2566       if (0 == ttl)
2567       {
2568         GNUNET_break_op (0);
2569         GNUNET_free (data);
2570         return NULL;
2571       }
2572       emsg->cid = c->id;
2573       emsg->ttl = htonl (ttl - 1);
2574       emsg->pid = htonl (fc->next_pid++);
2575       LOG (GNUNET_ERROR_TYPE_DEBUG, "  Q_N+ %p %u\n", fc, fc->queue_n);
2576       if (GNUNET_YES == droppable)
2577       {
2578         fc->queue_n++;
2579         LOG (GNUNET_ERROR_TYPE_DEBUG, "pid %u\n", ntohl (emsg->pid));
2580         LOG (GNUNET_ERROR_TYPE_DEBUG, "last pid sent %u\n", fc->last_pid_sent);
2581         LOG (GNUNET_ERROR_TYPE_DEBUG, "     ack recv %u\n", fc->last_ack_recv);
2582       }
2583       else
2584       {
2585         LOG (GNUNET_ERROR_TYPE_DEBUG, "  not droppable, Q_N stays the same\n");
2586       }
2587       if (GM_is_pid_bigger (fc->last_pid_sent + 1, fc->last_ack_recv))
2588       {
2589         GMC_start_poll (c, fwd);
2590       }
2591       break;
2592
2593     case GNUNET_MESSAGE_TYPE_MESH_KX:
2594       kmsg = (struct GNUNET_MESH_KX *) data;
2595       kmsg->cid = c->id;
2596       break;
2597
2598     case GNUNET_MESSAGE_TYPE_MESH_ACK:
2599       amsg = (struct GNUNET_MESH_ACK *) data;
2600       amsg->cid = c->id;
2601       LOG (GNUNET_ERROR_TYPE_DEBUG, " ack %u\n", ntohl (amsg->ack));
2602       droppable = GNUNET_NO;
2603       break;
2604
2605     case GNUNET_MESSAGE_TYPE_MESH_POLL:
2606       pmsg = (struct GNUNET_MESH_Poll *) data;
2607       pmsg->cid = c->id;
2608       LOG (GNUNET_ERROR_TYPE_DEBUG, " poll %u\n", ntohl (pmsg->pid));
2609       droppable = GNUNET_NO;
2610       break;
2611
2612     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY:
2613       dmsg = (struct GNUNET_MESH_ConnectionDestroy *) data;
2614       dmsg->cid = c->id;
2615       dmsg->reserved = 0;
2616       break;
2617
2618     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN:
2619       bmsg = (struct GNUNET_MESH_ConnectionBroken *) data;
2620       bmsg->cid = c->id;
2621       bmsg->reserved = 0;
2622       break;
2623
2624     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE:
2625     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK:
2626     case GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE:
2627       break;
2628
2629     default:
2630       GNUNET_break (0);
2631       GNUNET_free (data);
2632       return NULL;
2633   }
2634
2635   if (fc->queue_n > fc->queue_max && droppable)
2636   {
2637     GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
2638                               1, GNUNET_NO);
2639     GNUNET_break (0);
2640     LOG (GNUNET_ERROR_TYPE_DEBUG,
2641                 "queue full: %u/%u\n",
2642                 fc->queue_n, fc->queue_max);
2643     if (GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED == type)
2644     {
2645       fc->queue_n--;
2646       fc->next_pid--;
2647     }
2648     GNUNET_free (data);
2649     return NULL; /* Drop this message */
2650   }
2651
2652   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %p %u\n", c, c->pending_messages);
2653   c->pending_messages++;
2654
2655   q = GNUNET_new (struct MeshConnectionQueue);
2656   q->forced = !droppable;
2657   q->q = GMP_queue_add (get_hop (c, fwd), data, type, size, c, fwd,
2658                         &message_sent, q);
2659   if (NULL == q->q)
2660   {
2661     GNUNET_break (0);
2662     GNUNET_free (data);
2663     GNUNET_free (q);
2664     return NULL;
2665   }
2666   q->cont = cont;
2667   q->cont_cls = cont_cls;
2668   return q;
2669 }
2670
2671
2672 /**
2673  * Cancel a previously sent message while it's in the queue.
2674  *
2675  * ONLY can be called before the continuation given to the send function
2676  * is called. Once the continuation is called, the message is no longer in the
2677  * queue.
2678  *
2679  * @param q Handle to the queue.
2680  */
2681 void
2682 GMC_cancel (struct MeshConnectionQueue *q)
2683 {
2684   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  GMC cancel message\n");
2685
2686   /* queue destroy calls message_sent, which calls q->cont and frees q */
2687   GMP_queue_destroy (q->q, GNUNET_YES);
2688 }
2689
2690
2691 /**
2692  * Sends a CREATE CONNECTION message for a path to a peer.
2693  * Changes the connection and tunnel states if necessary.
2694  *
2695  * @param connection Connection to create.
2696  */
2697 void
2698 GMC_send_create (struct MeshConnection *connection)
2699 {
2700   enum MeshTunnel3CState state;
2701   size_t size;
2702
2703   size = sizeof (struct GNUNET_MESH_ConnectionCreate);
2704   size += connection->path->length * sizeof (struct GNUNET_PeerIdentity);
2705
2706   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send connection create\n");
2707   LOG (GNUNET_ERROR_TYPE_DEBUG, "  C_P+ %p %u (create)\n",
2708        connection, connection->pending_messages);
2709   connection->pending_messages++;
2710
2711   GMP_queue_add (get_next_hop (connection), NULL,
2712                  GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE,
2713                  size, connection, GNUNET_YES, &message_sent, NULL);
2714
2715   state = GMT_get_cstate (connection->t);
2716   if (MESH_TUNNEL3_SEARCHING == state || MESH_TUNNEL3_NEW == state)
2717     GMT_change_cstate (connection->t, MESH_TUNNEL3_WAITING);
2718   if (MESH_CONNECTION_NEW == connection->state)
2719     connection_change_state (connection, MESH_CONNECTION_SENT);
2720 }
2721
2722
2723 /**
2724  * Send a message to all peers in this connection that the connection
2725  * is no longer valid.
2726  *
2727  * If some peer should not receive the message, it should be zero'ed out
2728  * before calling this function.
2729  *
2730  * @param c The connection whose peers to notify.
2731  */
2732 void
2733 GMC_send_destroy (struct MeshConnection *c)
2734 {
2735   struct GNUNET_MESH_ConnectionDestroy msg;
2736
2737   if (GNUNET_YES == c->destroy)
2738     return;
2739
2740   msg.header.size = htons (sizeof (msg));
2741   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY);;
2742   msg.cid = c->id;
2743   LOG (GNUNET_ERROR_TYPE_DEBUG,
2744               "  sending connection destroy for connection %s\n",
2745               GMC_2s (c));
2746
2747   if (GNUNET_NO == GMC_is_terminal (c, GNUNET_YES))
2748     GMC_send_prebuilt_message (&msg.header, c,
2749                                GNUNET_YES, GNUNET_YES, NULL, NULL);
2750   if (GNUNET_NO == GMC_is_terminal (c, GNUNET_NO))
2751     GMC_send_prebuilt_message (&msg.header, c,
2752                                GNUNET_NO, GNUNET_YES, NULL, NULL);
2753   c->destroy = GNUNET_YES;
2754   c->state = MESH_CONNECTION_DESTROYED;
2755 }
2756
2757
2758 /**
2759  * @brief Start a polling timer for the connection.
2760  *
2761  * When a neighbor does not accept more traffic on the connection it could be
2762  * caused by a simple congestion or by a lost ACK. Polling enables to check
2763  * for the lastest ACK status for a connection.
2764  *
2765  * @param c Connection.
2766  * @param fwd Should we poll in the FWD direction?
2767  */
2768 void
2769 GMC_start_poll (struct MeshConnection *c, int fwd)
2770 {
2771   struct MeshFlowControl *fc;
2772
2773   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2774   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL %s requested\n",
2775        GM_f2s (fwd));
2776   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task || NULL != fc->poll_msg)
2777   {
2778     LOG (GNUNET_ERROR_TYPE_DEBUG, " ***   not needed (%u, %p)\n",
2779          fc->poll_task, fc->poll_msg);
2780     return;
2781   }
2782   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** POLL started on request\n");
2783   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
2784                                                 &connection_poll,
2785                                                 fc);
2786 }
2787
2788
2789 /**
2790  * @brief Stop polling a connection for ACKs.
2791  *
2792  * Once we have enough ACKs for future traffic, polls are no longer necessary.
2793  *
2794  * @param c Connection.
2795  * @param fwd Should we stop the poll in the FWD direction?
2796  */
2797 void
2798 GMC_stop_poll (struct MeshConnection *c, int fwd)
2799 {
2800   struct MeshFlowControl *fc;
2801
2802   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2803   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
2804   {
2805     GNUNET_SCHEDULER_cancel (fc->poll_task);
2806     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
2807   }
2808 }
2809
2810 /**
2811  * Get a (static) string for a connection.
2812  *
2813  * @param c Connection.
2814  */
2815 const char *
2816 GMC_2s (struct MeshConnection *c)
2817 {
2818   if (NULL == c)
2819     return "NULL";
2820
2821   if (NULL != c->t)
2822   {
2823     static char buf[128];
2824
2825     sprintf (buf, "%s (->%s)", GNUNET_h2s (&c->id), GMT_2s (c->t));
2826     return buf;
2827   }
2828   return GNUNET_h2s (&c->id);
2829 }