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