- fix "broken connection" notifications
[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_enc.h"
34 #include "mesh_enc.h"
35 #include "gnunet-service-mesh_connection.h"
36 #include "gnunet-service-mesh_peer.h"
37 #include "gnunet-service-mesh_tunnel.h"
38 #include "gnunet-service-mesh_channel.h"
39
40
41 #define LOG(level, ...) GNUNET_log_from (level,"mesh-con",__VA_ARGS__)
42
43 #define MESH_MAX_POLL_TIME      GNUNET_TIME_relative_multiply (\
44                                   GNUNET_TIME_UNIT_MINUTES,\
45                                   10)
46 #define AVG_MSGS                32
47
48
49 /******************************************************************************/
50 /********************************   STRUCTS  **********************************/
51 /******************************************************************************/
52
53 /**
54  * Struct to encapsulate all the Flow Control information to a peer to which
55  * we are directly connected (on a core level).
56  */
57 struct MeshFlowControl
58 {
59   /**
60    * Connection this controls.
61    */
62   struct MeshConnection *c;
63
64   /**
65    * How many messages are in the queue on this connection.
66    */
67   unsigned int queue_n;
68
69   /**
70    * How many messages do we accept in the queue.
71    */
72   unsigned int queue_max;
73
74   /**
75    * Next ID to use.
76    */
77   uint32_t next_pid;
78
79   /**
80    * ID of the last packet sent towards the peer.
81    */
82   uint32_t last_pid_sent;
83
84   /**
85    * ID of the last packet received from the peer.
86    */
87   uint32_t last_pid_recv;
88
89   /**
90    * Last ACK sent to the peer (peer can't send more than this PID).
91    */
92   uint32_t last_ack_sent;
93
94   /**
95    * Last ACK sent towards the origin (for traffic towards leaf node).
96    */
97   uint32_t last_ack_recv;
98
99   /**
100    * Task to poll the peer in case of a lost ACK causes stall.
101    */
102   GNUNET_SCHEDULER_TaskIdentifier poll_task;
103
104   /**
105    * How frequently to poll for ACKs.
106    */
107   struct GNUNET_TIME_Relative poll_time;
108 };
109
110 /**
111  * Keep a record of the last messages sent on this connection.
112  */
113 struct MeshConnectionPerformance
114 {
115   /**
116    * Circular buffer for storing measurements.
117    */
118   double usecsperbyte[AVG_MSGS];
119
120   /**
121    * Running average of @c usecsperbyte.
122    */
123   double avg;
124
125   /**
126    * How many values of @c usecsperbyte are valid.
127    */
128   uint16_t size;
129
130   /**
131    * Index of the next "free" position in @c usecsperbyte.
132    */
133   uint16_t idx;
134 };
135
136
137 /**
138  * Struct containing all information regarding a connection to a peer.
139  */
140 struct MeshConnection
141 {
142   /**
143    * Tunnel this connection is part of.
144    */
145   struct MeshTunnel3 *t;
146
147   /**
148    * Flow control information for traffic fwd.
149    */
150   struct MeshFlowControl fwd_fc;
151
152   /**
153    * Flow control information for traffic bck.
154    */
155   struct MeshFlowControl bck_fc;
156
157   /**
158    * Measure connection performance on the endpoint.
159    */
160   struct MeshConnectionPerformance *perf;
161
162   /**
163    * ID of the connection.
164    */
165   struct GNUNET_HashCode id;
166
167   /**
168    * State of the connection.
169    */
170   enum MeshConnectionState state;
171
172   /**
173    * Path being used for the tunnel.
174    */
175   struct MeshPeerPath *path;
176
177   /**
178    * Position of the local peer in the path.
179    */
180   unsigned int own_pos;
181
182   /**
183    * Task to keep the used paths alive at the owner,
184    * time tunnel out on all the other peers.
185    */
186   GNUNET_SCHEDULER_TaskIdentifier fwd_maintenance_task;
187
188   /**
189    * Task to keep the used paths alive at the destination,
190    * time tunnel out on all the other peers.
191    */
192   GNUNET_SCHEDULER_TaskIdentifier bck_maintenance_task;
193
194   /**
195    * Pending message count.
196    */
197   int pending_messages;
198
199   /**
200    * Destroy flag: if true, destroy on last message.
201    */
202   int destroy;
203 };
204
205 /******************************************************************************/
206 /*******************************   GLOBALS  ***********************************/
207 /******************************************************************************/
208
209 /**
210  * Global handle to the statistics service.
211  */
212 extern struct GNUNET_STATISTICS_Handle *stats;
213
214 /**
215  * Local peer own ID (memory efficient handle).
216  */
217 extern GNUNET_PEER_Id myid;
218
219 /**
220  * Local peer own ID (full value).
221  */
222 extern struct GNUNET_PeerIdentity my_full_id;
223
224 /**
225  * Connections known, indexed by cid (MeshConnection).
226  */
227 static struct GNUNET_CONTAINER_MultiHashMap *connections;
228
229 /**
230  * How many connections are we willing to maintain.
231  * Local connections are always allowed, even if there are more connections than max.
232  */
233 static unsigned long long max_connections;
234
235 /**
236  * How many messages *in total* are we willing to queue, divide by number of
237  * connections to get connection queue size.
238  */
239 static unsigned long long max_msgs_queue;
240
241 /**
242  * How often to send path keepalives. Paths timeout after 4 missed.
243  */
244 static struct GNUNET_TIME_Relative refresh_connection_time;
245
246
247 /******************************************************************************/
248 /********************************   STATIC  ***********************************/
249 /******************************************************************************/
250
251 #if 0 // avoid compiler warning for unused static function
252 static void
253 fc_debug (struct MeshFlowControl *fc)
254 {
255   LOG (GNUNET_ERROR_TYPE_DEBUG, "    IN: %u/%u\n",
256               fc->last_pid_recv, fc->last_ack_sent);
257   LOG (GNUNET_ERROR_TYPE_DEBUG, "    OUT: %u/%u\n",
258               fc->last_pid_sent, fc->last_ack_recv);
259   LOG (GNUNET_ERROR_TYPE_DEBUG, "    QUEUE: %u/%u\n",
260               fc->queue_n, fc->queue_max);
261 }
262
263 static void
264 connection_debug (struct MeshConnection *c)
265 {
266   if (NULL == c)
267   {
268     LOG (GNUNET_ERROR_TYPE_DEBUG, "*** DEBUG NULL CONNECTION ***\n");
269     return;
270   }
271   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connection %s:%X\n",
272               peer2s (c->t->peer), GNUNET_h2s (&c->id));
273   LOG (GNUNET_ERROR_TYPE_DEBUG, "  state: %u, pending msgs: %u\n",
274               c->state, c->pending_messages);
275   LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD FC\n");
276   fc_debug (&c->fwd_fc);
277   LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK FC\n");
278   fc_debug (&c->bck_fc);
279 }
280 #endif
281
282 /**
283  * Get string description for tunnel state.
284  *
285  * @param s Tunnel state.
286  *
287  * @return String representation.
288  */
289 static const char *
290 GMC_state2s (enum MeshConnectionState s)
291 {
292   switch (s)
293   {
294     case MESH_CONNECTION_NEW:
295       return "MESH_CONNECTION_NEW";
296     case MESH_CONNECTION_SENT:
297       return "MESH_CONNECTION_SENT";
298     case MESH_CONNECTION_ACK:
299       return "MESH_CONNECTION_ACK";
300     case MESH_CONNECTION_READY:
301       return "MESH_CONNECTION_READY";
302     default:
303       return "MESH_CONNECTION_STATE_ERROR";
304   }
305 }
306
307
308 /**
309  * Initialize a Flow Control structure to the initial state.
310  *
311  * @param fc Flow Control structure to initialize.
312  */
313 static void
314 fc_init (struct MeshFlowControl *fc)
315 {
316   fc->next_pid = 0;
317   fc->last_pid_sent = (uint32_t) -1; /* Next (expected) = 0 */
318   fc->last_pid_recv = (uint32_t) -1;
319   fc->last_ack_sent = (uint32_t) 0;
320   fc->last_ack_recv = (uint32_t) 0;
321   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
322   fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
323   fc->queue_n = 0;
324   fc->queue_max = (max_msgs_queue / max_connections) + 1;
325 }
326
327
328 /**
329  * Find a connection.
330  *
331  * @param cid Connection ID.
332  */
333 static struct MeshConnection *
334 connection_get (const struct GNUNET_HashCode *cid)
335 {
336   return GNUNET_CONTAINER_multihashmap_get (connections, cid);
337 }
338
339
340 static void
341 connection_change_state (struct MeshConnection* c,
342                          enum MeshConnectionState state)
343 {
344   LOG (GNUNET_ERROR_TYPE_DEBUG,
345               "Connection %s state was %s\n",
346               GNUNET_h2s (&c->id), GMC_state2s (c->state));
347   LOG (GNUNET_ERROR_TYPE_DEBUG,
348               "Connection %s state is now %s\n",
349               GNUNET_h2s (&c->id), GMC_state2s (state));
350   c->state = state;
351 }
352
353
354 /**
355  * Callback called when a queued message is sent.
356  *
357  * Calculates the average time 
358  *
359  * @param cls Closure.
360  * @param c Connection this message was on.
361  * @param type Type of message sent.
362  * @param fwd Was this a FWD going message?
363  * @param size Size of the message.
364  * @param wait Time spent waiting for core (only the time for THIS message)
365  */
366 static void 
367 message_sent (void *cls,
368               struct MeshConnection *c, uint16_t type,
369               int fwd, size_t size,
370               struct GNUNET_TIME_Relative wait)
371 {
372   struct MeshConnectionPerformance *p;
373   struct MeshFlowControl *fc;
374   double usecsperbyte;
375
376   if (NULL == c->perf)
377     return; /* Only endpoints are interested in this. */
378
379   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  message sent!\n");
380   p = c->perf;
381   usecsperbyte = ((double) wait.rel_value_us) / size;
382   if (p->size == AVG_MSGS)
383   {
384     /* Array is full. Substract oldest value, add new one and store. */
385     p->avg -= (p->usecsperbyte[p->idx] / AVG_MSGS);
386     p->usecsperbyte[p->idx] = usecsperbyte;
387     p->avg += (p->usecsperbyte[p->idx] / AVG_MSGS);
388   }
389   else
390   {
391     /* Array not yet full. Add current value to avg and store. */
392     p->usecsperbyte[p->idx] = usecsperbyte;
393     p->avg *= p->size;
394     p->avg += p->usecsperbyte[p->idx];
395     p->size++;
396     p->avg /= p->size;
397   }
398   p->idx = (p->idx + 1) % AVG_MSGS;
399
400   fc = fwd ? &c->fwd_fc : &c->bck_fc;
401   LOG (GNUNET_ERROR_TYPE_DEBUG, "!  Q_N- %p %u\n", fc, fc->queue_n);
402   fc->queue_n--;
403   c->pending_messages--;
404   if (GNUNET_YES == c->destroy && 0 == c->pending_messages)
405   {
406     LOG (GNUNET_ERROR_TYPE_DEBUG, "!  destroying connection!\n");
407     GMC_destroy (c);
408   }
409   /* Send ACK if needed, after accounting for sent ID in fc->queue_n */
410   switch (type)
411   {
412     case GNUNET_MESSAGE_TYPE_MESH_FWD:
413     case GNUNET_MESSAGE_TYPE_MESH_BCK:
414       fc->last_pid_sent++;
415       LOG (GNUNET_ERROR_TYPE_DEBUG, "!   accounting pid %u\n", fc->last_pid_sent);
416 //       send_ack (c, ch, fwd);
417       break;
418     default:
419       break;
420   }
421 //   if (NULL != c->t)
422 //   {
423 //     c->t->pending_messages--;
424 //     if (GNUNET_YES == c->t->destroy && 0 == t->pending_messages)
425 //     {
426 //       LOG (GNUNET_ERROR_TYPE_DEBUG, "*  destroying tunnel!\n");
427 //       GMT_destroy (c->t);
428 //     }
429 //   }
430 }
431
432
433 /**
434  * Get the previous hop in a connection
435  *
436  * @param c Connection.
437  *
438  * @return Previous peer in the connection.
439  */
440 static struct MeshPeer *
441 get_prev_hop (struct MeshConnection *c)
442 {
443   GNUNET_PEER_Id id;
444
445   if (0 == c->own_pos || c->path->length < 2)
446     id = c->path->peers[0];
447   else
448     id = c->path->peers[c->own_pos - 1];
449
450   return GMP_get_short (id);
451 }
452
453
454 /**
455  * Get the next hop in a connection
456  *
457  * @param c Connection.
458  *
459  * @return Next peer in the connection.
460  */
461 static struct MeshPeer *
462 get_next_hop (struct MeshConnection *c)
463 {
464   GNUNET_PEER_Id id;
465
466   if ((c->path->length - 1) == c->own_pos || c->path->length < 2)
467     id = c->path->peers[c->path->length - 1];
468   else
469     id = c->path->peers[c->own_pos + 1];
470
471   return GMP_get_short (id);
472 }
473
474
475 /**
476  * Get the hop in a connection.
477  *
478  * @param c Connection.
479  * @param fwd Next hop?
480  *
481  * @return Next peer in the connection.
482  */
483 static struct MeshPeer *
484 get_hop (struct MeshConnection *c, int fwd)
485 {
486   if (fwd)
487     return get_next_hop (c);
488   return get_prev_hop (c);
489 }
490
491
492 /**
493  * Send an ACK informing the predecessor about the available buffer space.
494  *
495  * Note that for fwd ack, the FWD mean forward *traffic* (root->dest),
496  * the ACK itself goes "back" (dest->root).
497  *
498  * @param c Connection on which to send the ACK.
499  * @param buffer How much space free to advertise?
500  * @param fwd Is this FWD ACK? (Going dest->owner)
501  */
502 static void
503 connection_send_ack (struct MeshConnection *c, unsigned int buffer, int fwd)
504 {
505   struct MeshFlowControl *next_fc;
506   struct MeshFlowControl *prev_fc;
507   struct GNUNET_MESH_ACK msg;
508   uint32_t ack;
509   int delta;
510
511   next_fc = fwd ? &c->fwd_fc : &c->bck_fc;
512   prev_fc = fwd ? &c->bck_fc : &c->fwd_fc;
513
514   LOG (GNUNET_ERROR_TYPE_DEBUG,
515               "connection send %s ack on %s\n",
516               fwd ? "FWD" : "BCK", GNUNET_h2s (&c->id));
517
518   /* Check if we need to transmit the ACK */
519   if (prev_fc->last_ack_sent - prev_fc->last_pid_recv > 3)
520   {
521     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, buffer > 3\n");
522     LOG (GNUNET_ERROR_TYPE_DEBUG,
523                 "  last pid recv: %u, last ack sent: %u\n",
524                 prev_fc->last_pid_recv, prev_fc->last_ack_sent);
525     return;
526   }
527
528   /* Ok, ACK might be necessary, what PID to ACK? */
529   delta = next_fc->queue_max - next_fc->queue_n;
530   ack = prev_fc->last_pid_recv + delta;
531   LOG (GNUNET_ERROR_TYPE_DEBUG, " ACK %u\n", ack);
532   LOG (GNUNET_ERROR_TYPE_DEBUG,
533               " last pid %u, last ack %u, qmax %u, q %u\n",
534               prev_fc->last_pid_recv, prev_fc->last_ack_sent,
535               next_fc->queue_max, next_fc->queue_n);
536   if (ack == prev_fc->last_ack_sent)
537   {
538     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not sending FWD ACK, not needed\n");
539     return;
540   }
541
542   prev_fc->last_ack_sent = ack;
543
544   /* Build ACK message and send on connection */
545   msg.header.size = htons (sizeof (msg));
546   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_ACK);
547   msg.ack = htonl (ack);
548   msg.cid = c->id;
549
550   GMC_send_prebuilt_message (&msg.header, c, NULL, !fwd);
551 }
552
553
554 /**
555  * Sends a CONNECTION ACK message in reponse to a received CONNECTION_CREATE
556  * or a first CONNECTION_ACK directed to us.
557  *
558  * @param connection Connection to confirm.
559  * @param fwd Is this a fwd ACK? (First is bck (SYNACK), second is fwd (ACK))
560  */
561 static void
562 send_connection_ack (struct MeshConnection *connection, int fwd)
563 {
564   struct MeshTunnel3 *t;
565
566   t = connection->t;
567   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send connection ack\n");
568   GMP_queue_add (get_hop (connection, fwd), NULL,
569                  GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK,
570                  sizeof (struct GNUNET_MESH_ConnectionACK),
571                  connection, NULL, fwd,
572                  &message_sent, NULL);
573   if (MESH_TUNNEL3_NEW == GMT_get_state (t))
574     GMT_change_state (t, MESH_TUNNEL3_WAITING);
575   if (MESH_CONNECTION_READY != connection->state)
576     connection_change_state (connection, MESH_CONNECTION_SENT);
577 }
578
579
580 /**
581  * Send keepalive packets for a connection.
582  *
583  * @param c Connection to keep alive..
584  * @param fwd Is this a FWD keepalive? (owner -> dest).
585  */
586 static void
587 connection_keepalive (struct MeshConnection *c, int fwd)
588 {
589   struct GNUNET_MESH_ConnectionKeepAlive *msg;
590   size_t size = sizeof (struct GNUNET_MESH_ConnectionKeepAlive);
591   char cbuf[size];
592   uint16_t type;
593
594   type = fwd ? GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE :
595                GNUNET_MESSAGE_TYPE_MESH_BCK_KEEPALIVE;
596
597   LOG (GNUNET_ERROR_TYPE_DEBUG,
598        "sending %s keepalive for connection %s[%d]\n",
599        fwd ? "FWD" : "BCK", GMT_2s (c->t), c->id);
600
601   msg = (struct GNUNET_MESH_ConnectionKeepAlive *) cbuf;
602   msg->header.size = htons (size);
603   msg->header.type = htons (type);
604   msg->cid = c->id;
605
606   GMC_send_prebuilt_message (&msg->header, c, NULL, fwd);
607 }
608
609
610 /**
611  * Send CONNECTION_{CREATE/ACK} packets for a connection.
612  *
613  * @param c Connection for which to send the message.
614  * @param fwd If GNUNET_YES, send CREATE, otherwise send ACK.
615  */
616 static void
617 connection_recreate (struct MeshConnection *c, int fwd)
618 {
619   LOG (GNUNET_ERROR_TYPE_DEBUG, "sending connection recreate\n");
620   if (fwd)
621     GMC_send_create (c);
622   else
623     send_connection_ack (c, GNUNET_NO);
624 }
625
626
627 /**
628  * Generic connection timer management.
629  * Depending on the role of the peer in the connection will send the
630  * appropriate message (build or keepalive)
631  *
632  * @param c Conncetion to maintain.
633  * @param fwd Is FWD?
634  */
635 static void
636 connection_maintain (struct MeshConnection *c, int fwd)
637 {
638   if (MESH_TUNNEL3_SEARCHING == GMT_get_state (c->t))
639   {
640     /* TODO DHT GET with RO_BART */
641     return;
642   }
643   switch (c->state)
644   {
645     case MESH_CONNECTION_NEW:
646       GNUNET_break (0);
647     case MESH_CONNECTION_SENT:
648       connection_recreate (c, fwd);
649       break;
650     case MESH_CONNECTION_READY:
651       connection_keepalive (c, fwd);
652       break;
653     default:
654       break;
655   }
656 }
657
658
659 static void
660 connection_fwd_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
661 {
662   struct MeshConnection *c = cls;
663
664   c->fwd_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
665   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
666     return;
667
668   connection_maintain (c, GNUNET_YES);
669   c->fwd_maintenance_task = GNUNET_SCHEDULER_add_delayed (refresh_connection_time,
670                                                           &connection_fwd_keepalive,
671                                                           c);
672 }
673
674
675 static void
676 connection_bck_keepalive (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
677 {
678   struct MeshConnection *c = cls;
679
680   c->bck_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
681   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
682     return;
683
684   connection_maintain (c, GNUNET_NO);
685   c->bck_maintenance_task = GNUNET_SCHEDULER_add_delayed (refresh_connection_time,
686                                                           &connection_bck_keepalive,
687                                                           c);
688 }
689
690
691 /**
692  * @brief Re-initiate traffic on this connection if necessary.
693  *
694  * Check if there is traffic queued towards this peer
695  * and the core transmit handle is NULL (traffic was stalled).
696  * If so, call core tmt rdy.
697  *
698  * @param c Connection on which initiate traffic.
699  * @param fwd Is this about fwd traffic?
700  */
701 static void
702 connection_unlock_queue (struct MeshConnection *c, int fwd)
703 {
704   struct MeshPeer *peer;
705
706   LOG (GNUNET_ERROR_TYPE_DEBUG,
707               "connection_unlock_queue %s on %s\n",
708               fwd ? "FWD" : "BCK", GNUNET_h2s (&c->id));
709
710   if (GMC_is_terminal (c, fwd))
711   {
712     LOG (GNUNET_ERROR_TYPE_DEBUG, " is terminal!\n");
713     return;
714   }
715
716   peer = get_hop (c, fwd);
717   GMP_queue_unlock (peer, c);
718 }
719
720
721 /**
722  * Cancel all transmissions that belong to a certain connection.
723  *
724  * @param c Connection which to cancel.
725  * @param fwd Cancel fwd traffic?
726  */
727 static void
728 connection_cancel_queues (struct MeshConnection *c, int fwd)
729 {
730
731   struct MeshFlowControl *fc;
732   struct MeshPeer *peer;
733
734   if (NULL == c)
735   {
736     GNUNET_break (0);
737     return;
738   }
739
740   peer = get_hop (c, fwd);
741   GMP_queue_cancel (peer, c);
742
743   fc = fwd ? &c->fwd_fc : &c->bck_fc;
744   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
745   {
746     GNUNET_SCHEDULER_cancel (fc->poll_task);
747     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
748   }
749 }
750
751
752 /**
753  * Function called if a connection has been stalled for a while,
754  * possibly due to a missed ACK. Poll the neighbor about its ACK status.
755  *
756  * @param cls Closure (poll ctx).
757  * @param tc TaskContext.
758  */
759 static void
760 connection_poll (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
761 {
762   struct MeshFlowControl *fc = cls;
763   struct GNUNET_MESH_Poll msg;
764   struct MeshConnection *c;
765
766   fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
767   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
768   {
769     return;
770   }
771
772   c = fc->c;
773   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** Polling!\n");
774   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** connection [%X]\n",
775               GNUNET_h2s (&c->id));
776   LOG (GNUNET_ERROR_TYPE_DEBUG, " ***   %s\n",
777               fc == &c->fwd_fc ? "FWD" : "BCK");
778
779   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_POLL);
780   msg.header.size = htons (sizeof (msg));
781   LOG (GNUNET_ERROR_TYPE_DEBUG, " *** pid (%u)!\n", fc->last_pid_sent);
782   GMC_send_prebuilt_message (&msg.header, c, NULL, fc == &c->fwd_fc);
783   fc->poll_time = GNUNET_TIME_STD_BACKOFF (fc->poll_time);
784   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
785                                                 &connection_poll, fc);
786 }
787
788
789 /**
790  * Timeout function due to lack of keepalive/traffic from the owner.
791  * Destroys connection if called.
792  *
793  * @param cls Closure (connection to destroy).
794  * @param tc TaskContext.
795  */
796 static void
797 connection_fwd_timeout (void *cls,
798                         const struct GNUNET_SCHEDULER_TaskContext *tc)
799 {
800   struct MeshConnection *c = cls;
801
802   c->fwd_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
803   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
804     return;
805   LOG (GNUNET_ERROR_TYPE_DEBUG,
806               "Connection %s[%X] FWD timed out. Destroying.\n",
807               GMT_2s (c->t),
808               c->id);
809
810   if (GMC_is_origin (c, GNUNET_YES)) /* If local, leave. */
811     return;
812
813   GMC_destroy (c);
814 }
815
816
817 /**
818  * Timeout function due to lack of keepalive/traffic from the destination.
819  * Destroys connection if called.
820  *
821  * @param cls Closure (connection to destroy).
822  * @param tc TaskContext
823  */
824 static void
825 connection_bck_timeout (void *cls,
826                         const struct GNUNET_SCHEDULER_TaskContext *tc)
827 {
828   struct MeshConnection *c = cls;
829
830   c->bck_maintenance_task = GNUNET_SCHEDULER_NO_TASK;
831   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
832     return;
833
834   LOG (GNUNET_ERROR_TYPE_DEBUG,
835               "Connection %s[%X] FWD timed out. Destroying.\n",
836               GMT_2s (c->t), c->id);
837
838   if (GMC_is_origin (c, GNUNET_NO)) /* If local, leave. */
839     return;
840
841   GMC_destroy (c);
842 }
843
844
845 /**
846  * Resets the connection timeout task, some other message has done the
847  * task's job.
848  * - For the first peer on the direction this means to send
849  *   a keepalive or a path confirmation message (either create or ACK).
850  * - For all other peers, this means to destroy the connection,
851  *   due to lack of activity.
852  * Starts the tiemout if no timeout was running (connection just created).
853  *
854  * @param c Connection whose timeout to reset.
855  * @param fwd Is this forward?
856  *
857  * TODO use heap to improve efficiency of scheduler.
858  */
859 static void
860 connection_reset_timeout (struct MeshConnection *c, int fwd)
861 {
862   GNUNET_SCHEDULER_TaskIdentifier *ti;
863   GNUNET_SCHEDULER_Task f;
864
865   ti = fwd ? &c->fwd_maintenance_task : &c->bck_maintenance_task;
866
867   if (GNUNET_SCHEDULER_NO_TASK != *ti)
868     GNUNET_SCHEDULER_cancel (*ti);
869
870   if (GMC_is_origin (c, fwd)) /* Endpoint */
871   {
872     f  = fwd ? &connection_fwd_keepalive : &connection_bck_keepalive;
873     *ti = GNUNET_SCHEDULER_add_delayed (refresh_connection_time, f, c);
874   }
875   else /* Relay */
876   {
877     struct GNUNET_TIME_Relative delay;
878
879     delay = GNUNET_TIME_relative_multiply (refresh_connection_time, 4);
880     f  = fwd ? &connection_fwd_timeout : &connection_bck_timeout;
881     *ti = GNUNET_SCHEDULER_add_delayed (delay, f, c);
882   }
883 }
884
885
886 /**
887  * Add the connection to the list of both neighbors.
888  *
889  * @param c Connection.
890  */
891 static void
892 register_neighbors (struct MeshConnection *c)
893 {
894   struct MeshPeer *peer;
895
896   peer = get_next_hop (c);
897   if (GNUNET_NO == GMP_is_neighbor (peer))
898   {
899     GMC_destroy (c);
900     return;
901   }
902   GMP_add_connection (peer, c);
903   peer = get_prev_hop (c);
904   if (GNUNET_NO == GMP_is_neighbor (peer))
905   {
906     GMC_destroy (c);
907     return;
908   }
909   GMP_add_connection (peer, c);
910 }
911
912
913 /**
914  * Remove the connection from the list of both neighbors.
915  *
916  * @param c Connection.
917  */
918 static void
919 unregister_neighbors (struct MeshConnection *c)
920 {
921   struct MeshPeer *peer;
922
923   peer = get_next_hop (c);
924   GMP_remove_connection (peer, c);
925
926   peer = get_prev_hop (c);
927   GMP_remove_connection (peer, c);
928
929 }
930
931
932 /******************************************************************************/
933 /********************************    API    ***********************************/
934 /******************************************************************************/
935
936 /**
937  * Core handler for connection creation.
938  *
939  * @param cls Closure (unused).
940  * @param peer Sender (neighbor).
941  * @param message Message.
942  *
943  * @return GNUNET_OK to keep the connection open,
944  *         GNUNET_SYSERR to close it (signal serious error)
945  */
946 int
947 GMC_handle_create (void *cls, const struct GNUNET_PeerIdentity *peer,
948                    const struct GNUNET_MessageHeader *message)
949 {
950   struct GNUNET_MESH_ConnectionCreate *msg;
951   struct GNUNET_PeerIdentity *id;
952   struct GNUNET_HashCode *cid;
953   struct MeshPeerPath *path;
954   struct MeshPeer *dest_peer;
955   struct MeshPeer *orig_peer;
956   struct MeshConnection *c;
957   unsigned int own_pos;
958   uint16_t size;
959   uint16_t i;
960
961   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
962   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received a connection create msg\n");
963
964   /* Check size */
965   size = ntohs (message->size);
966   if (size < sizeof (struct GNUNET_MESH_ConnectionCreate))
967   {
968     GNUNET_break_op (0);
969     return GNUNET_OK;
970   }
971
972   /* Calculate hops */
973   size -= sizeof (struct GNUNET_MESH_ConnectionCreate);
974   if (size % sizeof (struct GNUNET_PeerIdentity))
975   {
976     GNUNET_break_op (0);
977     return GNUNET_OK;
978   }
979   size /= sizeof (struct GNUNET_PeerIdentity);
980   if (1 > size)
981   {
982     GNUNET_break_op (0);
983     return GNUNET_OK;
984   }
985   LOG (GNUNET_ERROR_TYPE_DEBUG, "    path has %u hops.\n", size);
986
987   /* Get parameters */
988   msg = (struct GNUNET_MESH_ConnectionCreate *) message;
989   cid = &msg->cid;
990   id = (struct GNUNET_PeerIdentity *) &msg[1];
991   LOG (GNUNET_ERROR_TYPE_DEBUG,
992               "    connection %s (%s).\n",
993               GNUNET_h2s (cid), GNUNET_i2s (id));
994
995   /* Create connection */
996   c = connection_get (cid);
997   if (NULL == c)
998   {
999     /* Create path */
1000     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Creating path...\n");
1001     path = path_new (size);
1002     own_pos = 0;
1003     for (i = 0; i < size; i++)
1004     {
1005       LOG (GNUNET_ERROR_TYPE_DEBUG, "  ... adding %s\n",
1006                   GNUNET_i2s (&id[i]));
1007       path->peers[i] = GNUNET_PEER_intern (&id[i]);
1008       if (path->peers[i] == myid)
1009         own_pos = i;
1010     }
1011     if (own_pos == 0 && path->peers[own_pos] != myid)
1012     {
1013       /* create path: self not found in path through self */
1014       GNUNET_break_op (0);
1015       path_destroy (path);
1016       GMC_destroy (c);
1017       return GNUNET_OK;
1018     }
1019     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Own position: %u\n", own_pos);
1020     GMP_add_path_to_all (path, GNUNET_NO);
1021         LOG (GNUNET_ERROR_TYPE_DEBUG, "  Creating connection\n");
1022     c = GMC_new (cid, NULL, path_duplicate (path), own_pos);
1023     if (NULL == c)
1024       return GNUNET_OK;
1025     connection_reset_timeout (c, GNUNET_YES);
1026   }
1027   else
1028   {
1029     path = NULL;
1030   }
1031   if (MESH_CONNECTION_NEW == c->state)
1032     connection_change_state (c, MESH_CONNECTION_SENT);
1033
1034   /* Remember peers */
1035   dest_peer = GMP_get (&id[size - 1]);
1036   orig_peer = GMP_get (&id[0]);
1037
1038   /* Is it a connection to us? */
1039   if (c->own_pos == size - 1)
1040   {
1041     LOG (GNUNET_ERROR_TYPE_DEBUG, "  It's for us!\n");
1042     GMP_add_path_to_origin (orig_peer, path, GNUNET_YES);
1043
1044     GMP_add_tunnel (orig_peer);
1045     GMP_add_connection (orig_peer, c);
1046     if (MESH_TUNNEL3_NEW == GMT_get_state (c->t))
1047       GMT_change_state (c->t,  MESH_TUNNEL3_WAITING);
1048
1049     send_connection_ack (c, GNUNET_NO);
1050     if (MESH_CONNECTION_SENT == c->state)
1051       connection_change_state (c, MESH_CONNECTION_ACK);
1052
1053     /* Keep tunnel alive in direction dest->owner*/
1054     connection_reset_timeout (c, GNUNET_NO);
1055   }
1056   else
1057   {
1058     /* It's for somebody else! Retransmit. */
1059     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Retransmitting.\n");
1060     GMP_add_path (dest_peer, path_duplicate (path), GNUNET_NO);
1061     GMP_add_path_to_origin (orig_peer, path, GNUNET_NO);
1062     GMC_send_prebuilt_message (message, c, NULL, GNUNET_YES);
1063   }
1064   return GNUNET_OK;
1065 }
1066
1067
1068 /**
1069  * Core handler for path confirmations.
1070  *
1071  * @param cls closure
1072  * @param message message
1073  * @param peer peer identity this notification is about
1074  *
1075  * @return GNUNET_OK to keep the connection open,
1076  *         GNUNET_SYSERR to close it (signal serious error)
1077  */
1078 int
1079 GMC_handle_confirm (void *cls, const struct GNUNET_PeerIdentity *peer,
1080                     const struct GNUNET_MessageHeader *message)
1081 {
1082   struct GNUNET_MESH_ConnectionACK *msg;
1083   struct MeshConnection *c;
1084   struct MeshPeerPath *p;
1085   struct MeshPeer *pi;
1086   int fwd;
1087
1088   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1089   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received a connection ACK msg\n");
1090   msg = (struct GNUNET_MESH_ConnectionACK *) message;
1091   LOG (GNUNET_ERROR_TYPE_DEBUG, "  on connection %s\n",
1092               GNUNET_h2s (&msg->cid));
1093   c = connection_get (&msg->cid);
1094   if (NULL == c)
1095   {
1096     GNUNET_STATISTICS_update (stats, "# control on unknown connection",
1097                               1, GNUNET_NO);
1098     LOG (GNUNET_ERROR_TYPE_DEBUG, "  don't know the connection!\n");
1099     return GNUNET_OK;
1100   }
1101
1102
1103   LOG (GNUNET_ERROR_TYPE_DEBUG, "  via peer %s\n",
1104               GNUNET_i2s (peer));
1105   pi = GMP_get (peer);
1106   if (get_next_hop (c) == pi)
1107   {
1108     LOG (GNUNET_ERROR_TYPE_DEBUG, "  SYNACK\n");
1109     fwd = GNUNET_NO;
1110     if (MESH_CONNECTION_SENT == c->state)
1111       connection_change_state (c, MESH_CONNECTION_ACK);
1112   }
1113   else if (get_prev_hop (c) == pi)
1114   {
1115     LOG (GNUNET_ERROR_TYPE_DEBUG, "  ACK\n");
1116     fwd = GNUNET_YES;
1117     connection_change_state (c, MESH_CONNECTION_READY);
1118   }
1119   else
1120   {
1121     GNUNET_break_op (0);
1122     return GNUNET_OK;
1123   }
1124   connection_reset_timeout (c, fwd);
1125
1126   /* Add path to peers? */
1127   p = c->path;
1128   if (NULL != p)
1129   {
1130     GMP_add_path_to_all (p, GNUNET_YES);
1131   }
1132   else
1133   {
1134     GNUNET_break (0);
1135   }
1136
1137   /* Message for us as creator? */
1138   if (GMC_is_origin (c, GNUNET_YES))
1139   {
1140     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Connection (SYN)ACK for us!\n");
1141     connection_change_state (c, MESH_CONNECTION_READY);
1142     GMT_change_state (c->t, MESH_TUNNEL3_READY);
1143     send_connection_ack (c, GNUNET_YES);
1144     GMT_send_queued_data (c->t, GNUNET_YES);
1145     return GNUNET_OK;
1146   }
1147
1148   /* Message for us as destination? */
1149   if (GMC_is_terminal (c, GNUNET_YES))
1150   {
1151     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Connection ACK for us!\n");
1152     connection_change_state (c, MESH_CONNECTION_READY);
1153     GMT_change_state (c->t, MESH_TUNNEL3_READY);
1154     GMT_send_queued_data (c->t, GNUNET_NO);
1155     return GNUNET_OK;
1156   }
1157
1158   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1159   GMC_send_prebuilt_message (message, c, NULL, fwd);
1160   return GNUNET_OK;
1161 }
1162
1163
1164 /**
1165  * Is traffic coming from this sender 'FWD' traffic?
1166  *
1167  * @param c Connection to check.
1168  * @param sender Peer identity of neighbor.
1169  *
1170  * @return GNUNET_YES in case the sender is the 'prev' hop and therefore
1171  *         the traffic is 'FWD'. GNUNET_NO for BCK. GNUNET_SYSERR for errors.
1172  */
1173 int 
1174 is_fwd (const struct MeshConnection *c,
1175         const struct GNUNET_PeerIdentity *sender)
1176 {
1177   GNUNET_PEER_Id id;
1178
1179   id = GNUNET_PEER_search (sender);
1180   if (GMP_get_short_id (get_prev_hop (c)) == id)
1181     return GNUNET_YES;
1182
1183   if (GMP_get_short_id (get_next_hop (c)) == id)
1184     return GNUNET_NO;
1185
1186   GNUNET_break (0);
1187   return GNUNET_SYSERR;
1188 }
1189
1190
1191 /**
1192  * Core handler for notifications of broken paths
1193  *
1194  * @param cls Closure (unused).
1195  * @param id Peer identity of sending neighbor.
1196  * @param message Message.
1197  *
1198  * @return GNUNET_OK to keep the connection open,
1199  *         GNUNET_SYSERR to close it (signal serious error)
1200  */
1201 int
1202 GMC_handle_broken (void* cls,
1203                    const struct GNUNET_PeerIdentity* id,
1204                    const struct GNUNET_MessageHeader* message)
1205 {
1206   struct GNUNET_MESH_ConnectionBroken *msg;
1207   struct MeshConnection *c;
1208   int fwd;
1209
1210   LOG (GNUNET_ERROR_TYPE_DEBUG,
1211               "Received a CONNECTION BROKEN msg from %s\n", GNUNET_i2s (id));
1212   msg = (struct GNUNET_MESH_ConnectionBroken *) message;
1213   LOG (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
1214               GNUNET_i2s (&msg->peer1));
1215   LOG (GNUNET_ERROR_TYPE_DEBUG, "  regarding %s\n",
1216               GNUNET_i2s (&msg->peer2));
1217   c = connection_get (&msg->cid);
1218   if (NULL == c)
1219   {
1220     GNUNET_break_op (0);
1221     return GNUNET_OK;
1222   }
1223
1224   fwd = is_fwd (c, id);
1225   connection_cancel_queues (c, !fwd);
1226   if (GMC_is_terminal (c, fwd))
1227   {
1228     if (0 < c->pending_messages)
1229       c->destroy = GNUNET_YES;
1230     else
1231       GMC_destroy (c);
1232   }
1233   else
1234   {
1235     GMC_send_prebuilt_message (message, c, NULL, fwd);
1236     c->destroy = GNUNET_YES;
1237   }
1238
1239   return GNUNET_OK;
1240
1241 }
1242
1243
1244 /**
1245  * Core handler for tunnel destruction
1246  *
1247  * @param cls Closure (unused).
1248  * @param peer Peer identity of sending neighbor.
1249  * @param message Message.
1250  *
1251  * @return GNUNET_OK to keep the connection open,
1252  *         GNUNET_SYSERR to close it (signal serious error)
1253  */
1254 int
1255 GMC_handle_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
1256                     const struct GNUNET_MessageHeader *message)
1257 {
1258   struct GNUNET_MESH_ConnectionDestroy *msg;
1259   struct MeshConnection *c;
1260   int fwd;
1261
1262   msg = (struct GNUNET_MESH_ConnectionDestroy *) message;
1263   LOG (GNUNET_ERROR_TYPE_DEBUG,
1264               "Got a CONNECTION DESTROY message from %s\n",
1265               GNUNET_i2s (peer));
1266   LOG (GNUNET_ERROR_TYPE_DEBUG,
1267               "  for connection %s\n",
1268               GNUNET_h2s (&msg->cid));
1269   c = connection_get (&msg->cid);
1270   if (NULL == c)
1271   {
1272     /* Probably already got the message from another path,
1273      * destroyed the tunnel and retransmitted to children.
1274      * Safe to ignore.
1275      */
1276     GNUNET_STATISTICS_update (stats, "# control on unknown tunnel",
1277                               1, GNUNET_NO);
1278     return GNUNET_OK;
1279   }
1280   fwd = is_fwd (c, peer);
1281   if (GNUNET_SYSERR == fwd)
1282   {
1283     GNUNET_break_op (0);
1284     return GNUNET_OK;
1285   }
1286   GMC_send_prebuilt_message (message, c, NULL, fwd);
1287   c->destroy = GNUNET_YES;
1288
1289   return GNUNET_OK;
1290 }
1291
1292 /**
1293  * Generic handler for mesh network encrypted traffic.
1294  *
1295  * @param peer Peer identity this notification is about.
1296  * @param message Encrypted message.
1297  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
1298  *
1299  * @return GNUNET_OK to keep the connection open,
1300  *         GNUNET_SYSERR to close it (signal serious error)
1301  */
1302 static int
1303 handle_mesh_encrypted (const struct GNUNET_PeerIdentity *peer,
1304                        const struct GNUNET_MESH_Encrypted *msg,
1305                        int fwd)
1306 {
1307   struct MeshConnection *c;
1308   struct MeshTunnel3 *t;
1309   struct MeshPeer *neighbor;
1310   struct MeshFlowControl *fc;
1311   uint32_t pid;
1312   uint32_t ttl;
1313   uint16_t type;
1314   size_t size;
1315
1316   /* Check size */
1317   size = ntohs (msg->header.size);
1318   if (size <
1319       sizeof (struct GNUNET_MESH_Encrypted) +
1320       sizeof (struct GNUNET_MessageHeader))
1321   {
1322     GNUNET_break_op (0);
1323     return GNUNET_OK;
1324   }
1325   type = ntohs (msg->header.type);
1326   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1327   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a %s message from %s\n",
1328               GNUNET_MESH_DEBUG_M2S (type), GNUNET_i2s (peer));
1329
1330   /* Check connection */
1331   c = connection_get (&msg->cid);
1332   if (NULL == c)
1333   {
1334     GNUNET_STATISTICS_update (stats, "# unknown connection", 1, GNUNET_NO);
1335     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING connection unknown\n");
1336     return GNUNET_OK;
1337   }
1338   t = c->t;
1339   fc = fwd ? &c->bck_fc : &c->fwd_fc;
1340
1341   /* Check if origin is as expected */
1342   neighbor = get_hop (c, !fwd);
1343   if (GNUNET_PEER_search (peer) != GMP_get_short_id (neighbor))
1344   {
1345     GNUNET_break_op (0);
1346     return GNUNET_OK;
1347   }
1348
1349   /* Check PID */
1350   pid = ntohl (msg->pid);
1351   if (GMC_is_pid_bigger (pid, fc->last_ack_sent))
1352   {
1353     GNUNET_STATISTICS_update (stats, "# unsolicited message", 1, GNUNET_NO);
1354     LOG (GNUNET_ERROR_TYPE_DEBUG,
1355                 "WARNING Received PID %u, (prev %u), ACK %u\n",
1356                 pid, fc->last_pid_recv, fc->last_ack_sent);
1357     return GNUNET_OK;
1358   }
1359   if (GNUNET_NO == GMC_is_pid_bigger (pid, fc->last_pid_recv))
1360   {
1361     GNUNET_STATISTICS_update (stats, "# duplicate PID", 1, GNUNET_NO);
1362     LOG (GNUNET_ERROR_TYPE_DEBUG,
1363                 " Pid %u not expected (%u+), dropping!\n",
1364                 pid, fc->last_pid_recv + 1);
1365     return GNUNET_OK;
1366   }
1367   if (MESH_CONNECTION_SENT == c->state)
1368     connection_change_state (c, MESH_CONNECTION_READY);
1369   connection_reset_timeout (c, fwd);
1370   fc->last_pid_recv = pid;
1371
1372   /* Is this message for us? */
1373   if (GMC_is_terminal (c, fwd))
1374   {
1375     size_t dsize = size - sizeof (struct GNUNET_MESH_Encrypted);
1376     char cbuf[dsize];
1377     struct GNUNET_MessageHeader *msgh;
1378     unsigned int off;
1379
1380     /* TODO signature verification */
1381     LOG (GNUNET_ERROR_TYPE_DEBUG, "  message for us!\n");
1382     GNUNET_STATISTICS_update (stats, "# messages received", 1, GNUNET_NO);
1383
1384     fc->last_pid_recv = pid;
1385     tunnel_decrypt (t, cbuf, &msg[1], dsize, msg->iv, fwd);
1386     off = 0;
1387     while (off < dsize)
1388     {
1389       msgh = (struct GNUNET_MessageHeader *) &cbuf[off];
1390       handle_decrypted (t, msgh, fwd);
1391       off += ntohs (msgh->size);
1392     }
1393     send_ack (c, NULL, fwd);
1394     return GNUNET_OK;
1395   }
1396
1397   /* Message not for us: forward to next hop */
1398   LOG (GNUNET_ERROR_TYPE_DEBUG, "  not for us, retransmitting...\n");
1399   ttl = ntohl (msg->ttl);
1400   LOG (GNUNET_ERROR_TYPE_DEBUG, "   ttl: %u\n", ttl);
1401   if (ttl == 0)
1402   {
1403     GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO);
1404     LOG (GNUNET_ERROR_TYPE_WARNING, " TTL is 0, DROPPING!\n");
1405     send_ack (c, NULL, fwd);
1406     return GNUNET_OK;
1407   }
1408   GNUNET_STATISTICS_update (stats, "# messages forwarded", 1, GNUNET_NO);
1409
1410   GMC_send_prebuilt_message (&msg->header, c, NULL, fwd);
1411
1412   return GNUNET_OK;
1413 }
1414
1415
1416 /**
1417  * Core handler for mesh network traffic going orig->dest.
1418  *
1419  * @param cls Closure (unused).
1420  * @param message Message received.
1421  * @param peer Peer who sent the message.
1422  *
1423  * @return GNUNET_OK to keep the connection open,
1424  *         GNUNET_SYSERR to close it (signal serious error)
1425  */
1426 int
1427 GMC_handle_fwd (void *cls, const struct GNUNET_PeerIdentity *peer,
1428                 const struct GNUNET_MessageHeader *message)
1429 {
1430   return handle_mesh_encrypted (peer,
1431                                 (struct GNUNET_MESH_Encrypted *)message,
1432                                 GNUNET_YES);
1433 }
1434
1435 /**
1436  * Core handler for mesh network traffic going dest->orig.
1437  *
1438  * @param cls Closure (unused).
1439  * @param message Message received.
1440  * @param peer Peer who sent the message.
1441  *
1442  * @return GNUNET_OK to keep the connection open,
1443  *         GNUNET_SYSERR to close it (signal serious error)
1444  */
1445 int
1446 GMC_handle_bck (void *cls, const struct GNUNET_PeerIdentity *peer,
1447                 const struct GNUNET_MessageHeader *message)
1448 {
1449   return handle_mesh_encrypted (peer,
1450                                 (struct GNUNET_MESH_Encrypted *)message,
1451                                 GNUNET_NO);
1452 }
1453
1454
1455 /**
1456  * Core handler for mesh network traffic point-to-point acks.
1457  *
1458  * @param cls closure
1459  * @param message message
1460  * @param peer peer identity this notification is about
1461  *
1462  * @return GNUNET_OK to keep the connection open,
1463  *         GNUNET_SYSERR to close it (signal serious error)
1464  */
1465 int
1466 GMC_handle_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
1467                 const struct GNUNET_MessageHeader *message)
1468 {
1469   struct GNUNET_MESH_ACK *msg;
1470   struct MeshConnection *c;
1471   struct MeshFlowControl *fc;
1472   GNUNET_PEER_Id id;
1473   uint32_t ack;
1474   int fwd;
1475
1476   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1477   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK packet from %s!\n",
1478               GNUNET_i2s (peer));
1479   msg = (struct GNUNET_MESH_ACK *) message;
1480
1481   c = connection_get (&msg->cid);
1482
1483   if (NULL == c)
1484   {
1485     GNUNET_STATISTICS_update (stats, "# ack on unknown connection", 1,
1486                               GNUNET_NO);
1487     return GNUNET_OK;
1488   }
1489
1490   /* Is this a forward or backward ACK? */
1491   id = GNUNET_PEER_search (peer);
1492   if (GMP_get_short_id (get_next_hop (c)) == id)
1493   {
1494     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
1495     fc = &c->fwd_fc;
1496     fwd = GNUNET_YES;
1497   }
1498   else if (GMP_get_short_id (get_prev_hop (c)) == id)
1499   {
1500     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
1501     fc = &c->bck_fc;
1502     fwd = GNUNET_NO;
1503   }
1504   else
1505   {
1506     GNUNET_break_op (0);
1507     return GNUNET_OK;
1508   }
1509
1510   ack = ntohl (msg->ack);
1511   LOG (GNUNET_ERROR_TYPE_DEBUG, "  ACK %u (was %u)\n",
1512               ack, fc->last_ack_recv);
1513   if (GMC_is_pid_bigger (ack, fc->last_ack_recv))
1514     fc->last_ack_recv = ack;
1515
1516   /* Cancel polling if the ACK is big enough. */
1517   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task &&
1518       GMC_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
1519   {
1520     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Cancel poll\n");
1521     GNUNET_SCHEDULER_cancel (fc->poll_task);
1522     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
1523     fc->poll_time = GNUNET_TIME_UNIT_SECONDS;
1524   }
1525
1526   connection_unlock_queue (c, fwd);
1527
1528   return GNUNET_OK;
1529 }
1530
1531
1532 /**
1533  * Core handler for mesh network traffic point-to-point ack polls.
1534  *
1535  * @param cls closure
1536  * @param message message
1537  * @param peer peer identity this notification is about
1538  *
1539  * @return GNUNET_OK to keep the connection open,
1540  *         GNUNET_SYSERR to close it (signal serious error)
1541  */
1542 int
1543 GMC_handle_poll (void *cls, const struct GNUNET_PeerIdentity *peer,
1544                  const struct GNUNET_MessageHeader *message)
1545 {
1546   struct GNUNET_MESH_Poll *msg;
1547   struct MeshConnection *c;
1548   struct MeshFlowControl *fc;
1549   GNUNET_PEER_Id id;
1550   uint32_t pid;
1551   int fwd;
1552
1553   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\n");
1554   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got a POLL packet from %s!\n",
1555               GNUNET_i2s (peer));
1556
1557   msg = (struct GNUNET_MESH_Poll *) message;
1558
1559   c = connection_get (&msg->cid);
1560
1561   if (NULL == c)
1562   {
1563     GNUNET_STATISTICS_update (stats, "# poll on unknown connection", 1,
1564                               GNUNET_NO);
1565     GNUNET_break_op (0);
1566     return GNUNET_OK;
1567   }
1568
1569   /* Is this a forward or backward ACK?
1570    * Note: a poll should never be needed in a loopback case,
1571    * since there is no possiblility of packet loss there, so
1572    * this way of discerining FWD/BCK should not be a problem.
1573    */
1574   id = GNUNET_PEER_search (peer);
1575   if (GMP_get_short_id (get_next_hop (c)) == id)
1576   {
1577     LOG (GNUNET_ERROR_TYPE_DEBUG, "  FWD ACK\n");
1578     fc = &c->fwd_fc;
1579   }
1580   else if (GMP_get_short_id (get_prev_hop (c)) == id)
1581   {
1582     LOG (GNUNET_ERROR_TYPE_DEBUG, "  BCK ACK\n");
1583     fc = &c->bck_fc;
1584   }
1585   else
1586   {
1587     GNUNET_break_op (0);
1588     return GNUNET_OK;
1589   }
1590
1591   pid = ntohl (msg->pid);
1592   LOG (GNUNET_ERROR_TYPE_DEBUG, "  PID %u, OLD %u\n",
1593               pid, fc->last_pid_recv);
1594   fc->last_pid_recv = pid;
1595   fwd = fc == &c->fwd_fc;
1596   send_ack (c, NULL, fwd);
1597
1598   return GNUNET_OK;
1599 }
1600
1601
1602 /**
1603  * Core handler for mesh keepalives.
1604  *
1605  * @param cls closure
1606  * @param message message
1607  * @param peer peer identity this notification is about
1608  * @return GNUNET_OK to keep the connection open,
1609  *         GNUNET_SYSERR to close it (signal serious error)
1610  *
1611  * TODO: Check who we got this from, to validate route.
1612  */
1613 int
1614 GMC_handle_keepalive (void *cls, const struct GNUNET_PeerIdentity *peer,
1615                       const struct GNUNET_MessageHeader *message)
1616 {
1617   struct GNUNET_MESH_ConnectionKeepAlive *msg;
1618   struct MeshConnection *c;
1619   struct MeshPeer *neighbor;
1620   int fwd;
1621
1622   msg = (struct GNUNET_MESH_ConnectionKeepAlive *) message;
1623   LOG (GNUNET_ERROR_TYPE_DEBUG, "got a keepalive packet from %s\n",
1624               GNUNET_i2s (peer));
1625
1626   c = connection_get (&msg->cid);
1627   if (NULL == c)
1628   {
1629     GNUNET_STATISTICS_update (stats, "# keepalive on unknown connection", 1,
1630                               GNUNET_NO);
1631     return GNUNET_OK;
1632   }
1633
1634   fwd = GNUNET_MESSAGE_TYPE_MESH_FWD_KEEPALIVE == ntohs (message->type) ?
1635         GNUNET_YES : GNUNET_NO;
1636
1637   /* Check if origin is as expected */
1638   neighbor = get_hop (c, fwd);
1639   if (GNUNET_PEER_search (peer) != GMP_get_short_id (neighbor))
1640   {
1641     GNUNET_break_op (0);
1642     return GNUNET_OK;
1643   }
1644
1645   connection_change_state (c, MESH_CONNECTION_READY);
1646   connection_reset_timeout (c, fwd);
1647
1648   if (GMC_is_terminal (c, fwd))
1649     return GNUNET_OK;
1650
1651   GNUNET_STATISTICS_update (stats, "# keepalives forwarded", 1, GNUNET_NO);
1652   GMC_send_prebuilt_message (message, c, NULL, fwd);
1653
1654   return GNUNET_OK;
1655 }
1656
1657
1658 /**
1659  * Send an ACK on the appropriate connection/channel, depending on
1660  * the direction and the position of the peer.
1661  *
1662  * @param c Which connection to send the hop-by-hop ACK.
1663  * @param ch Channel, if any.
1664  * @param fwd Is this a fwd ACK? (will go dest->root)
1665  */
1666 void
1667 GMC_send_ack (struct MeshConnection *c, struct MeshChannel *ch, int fwd)
1668 {
1669   unsigned int buffer;
1670
1671   LOG (GNUNET_ERROR_TYPE_DEBUG,
1672               "send ack %s on %p %p\n",
1673               fwd ? "FWD" : "BCK", c, ch);
1674   if (NULL == c || GMC_is_terminal (c, fwd))
1675   {
1676     struct MeshTunnel3 *t;
1677     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from all connections\n");
1678     t = (NULL == c) ? GMCH_get_tunnel (ch) : GMC_get_tunnel (c);
1679     buffer = GMT_get_buffer (t, fwd);
1680   }
1681   else
1682   {
1683     LOG (GNUNET_ERROR_TYPE_DEBUG, "  getting from one connection\n");
1684     buffer = GMC_get_buffer (c, fwd);
1685   }
1686   LOG (GNUNET_ERROR_TYPE_DEBUG, "  buffer available: %u\n", buffer);
1687
1688   if ( (NULL != ch && GMCH_is_origin (ch, fwd)) ||
1689        (NULL != c && GMC_is_origin (c, fwd)) )
1690   {
1691     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on channel...\n");
1692     if (0 < buffer)
1693     {
1694       GNUNET_assert (NULL != ch);
1695       LOG (GNUNET_ERROR_TYPE_DEBUG, "  really sending!\n");
1696       send_local_ack (ch, fwd);
1697     }
1698   }
1699   else if (NULL == c)
1700   {
1701     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on all connections\n");
1702     GNUNET_assert (NULL != ch);
1703     channel_send_connections_ack (ch, buffer, fwd);
1704   }
1705   else
1706   {
1707     LOG (GNUNET_ERROR_TYPE_DEBUG, "  sending on connection\n");
1708     connection_send_ack (c, buffer, fwd);
1709   }
1710 }
1711
1712
1713 /**
1714  * Initialize the connections subsystem
1715  *
1716  * @param c Configuration handle.
1717  */
1718 void
1719 GMC_init (const struct GNUNET_CONFIGURATION_Handle *c)
1720 {
1721   if (GNUNET_OK !=
1722       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_MSGS_QUEUE",
1723                                              &max_msgs_queue))
1724   {
1725     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
1726                                "MESH", "MAX_MSGS_QUEUE", "MISSING");
1727     GNUNET_SCHEDULER_shutdown ();
1728     return;
1729   }
1730
1731   if (GNUNET_OK !=
1732       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_CONNECTIONS",
1733                                              &max_connections))
1734   {
1735     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
1736                                "MESH", "MAX_CONNECTIONS", "MISSING");
1737     GNUNET_SCHEDULER_shutdown ();
1738     return;
1739   }
1740
1741   if (GNUNET_OK !=
1742       GNUNET_CONFIGURATION_get_value_time (c, "MESH", "REFRESH_CONNECTION_TIME",
1743                                            &refresh_connection_time))
1744   {
1745     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
1746                                "MESH", "REFRESH_CONNECTION_TIME", "MISSING");
1747     GNUNET_SCHEDULER_shutdown ();
1748     return;
1749   }
1750   connections = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_YES);
1751 }
1752
1753 /**
1754  * Shut down the connections subsystem.
1755  */
1756 void
1757 GMC_shutdown (void)
1758 {
1759 }
1760
1761
1762 struct MeshConnection *
1763 GMC_new (const struct GNUNET_HashCode *cid,
1764          struct MeshTunnel3 *t,
1765          struct MeshPeerPath *p,
1766          unsigned int own_pos)
1767 {
1768   struct MeshConnection *c;
1769
1770   c = GNUNET_new (struct MeshConnection);
1771   c->id = *cid;
1772   GNUNET_CONTAINER_multihashmap_put (connections, &c->id, c,
1773                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1774   fc_init (&c->fwd_fc);
1775   fc_init (&c->bck_fc);
1776   c->fwd_fc.c = c;
1777   c->bck_fc.c = c;
1778
1779   c->t = t;
1780   if (own_pos > p->length - 1)
1781   {
1782     GNUNET_break (0);
1783     GMC_destroy (c);
1784     return NULL;
1785   }
1786   c->own_pos = own_pos;
1787   c->path = p;
1788
1789   if (0 == own_pos)
1790   {
1791     c->fwd_maintenance_task =
1792             GNUNET_SCHEDULER_add_delayed (refresh_connection_time,
1793                                           &connection_fwd_keepalive, c);
1794   }
1795   register_neighbors (c);
1796   return c;
1797 }
1798
1799
1800 void
1801 GMC_destroy (struct MeshConnection *c)
1802 {
1803   if (NULL == c)
1804     return;
1805
1806   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroying connection %s\n",
1807        GNUNET_h2s (&c->id));
1808
1809   /* Cancel all traffic */
1810   connection_cancel_queues (c, GNUNET_YES);
1811   connection_cancel_queues (c, GNUNET_NO);
1812
1813   /* Cancel maintainance task (keepalive/timeout) */
1814   if (GNUNET_SCHEDULER_NO_TASK != c->fwd_maintenance_task)
1815     GNUNET_SCHEDULER_cancel (c->fwd_maintenance_task);
1816   if (GNUNET_SCHEDULER_NO_TASK != c->bck_maintenance_task)
1817     GNUNET_SCHEDULER_cancel (c->bck_maintenance_task);
1818
1819   /* Unregister from neighbors */
1820   unregister_neighbors (c);
1821
1822   /* Delete */
1823   GNUNET_STATISTICS_update (stats, "# connections", -1, GNUNET_NO);
1824   GMT_remove_connection (c->t, c);
1825   GNUNET_free (c);
1826 }
1827
1828 /**
1829  * Get the connection ID.
1830  *
1831  * @param c Connection to get the ID from.
1832  *
1833  * @return ID of the connection.
1834  */
1835 const struct GNUNET_HashCode *
1836 GMC_get_id (const struct MeshConnection *c)
1837 {
1838   return &c->id;
1839 }
1840
1841
1842 /**
1843  * Get the connection path.
1844  *
1845  * @param c Connection to get the path from.
1846  *
1847  * @return path used by the connection.
1848  */
1849 const struct MeshPeerPath *
1850 GMC_get_path (const struct MeshConnection *c)
1851 {
1852   return c->path;
1853 }
1854
1855
1856 /**
1857  * Get the connection state.
1858  *
1859  * @param c Connection to get the state from.
1860  *
1861  * @return state of the connection.
1862  */
1863 enum MeshConnectionState
1864 GMC_get_state (const struct MeshConnection *c)
1865 {
1866   return c->state;
1867 }
1868
1869 /**
1870  * Get the connection tunnel.
1871  *
1872  * @param c Connection to get the tunnel from.
1873  *
1874  * @return tunnel of the connection.
1875  */
1876 struct MeshTunnel3 *
1877 GMC_get_tunnel (const struct MeshConnection *c)
1878 {
1879   return c->t;
1880 }
1881
1882
1883 /**
1884  * Get free buffer space in a connection.
1885  *
1886  * @param c Connection.
1887  * @param fwd Is query about FWD traffic?
1888  *
1889  * @return Free buffer space [0 - max_msgs_queue/max_connections]
1890  */
1891 unsigned int
1892 GMC_get_buffer (struct MeshConnection *c, int fwd)
1893 {
1894   struct MeshFlowControl *fc;
1895
1896   fc = fwd ? &c->fwd_fc : &c->bck_fc;
1897
1898   return (fc->queue_max - fc->queue_n);
1899 }
1900
1901 /**
1902  * Get messages queued in a connection.
1903  *
1904  * @param c Connection.
1905  * @param fwd Is query about FWD traffic?
1906  *
1907  * @return Number of messages queued.
1908  */
1909 unsigned int
1910 GMC_get_qn (struct MeshConnection *c, int fwd)
1911 {
1912   struct MeshFlowControl *fc;
1913
1914   fc = fwd ? &c->fwd_fc : &c->bck_fc;
1915
1916   return fc->queue_n;
1917 }
1918
1919
1920 /**
1921  * Send a notification that a connection is broken.
1922  *
1923  * @param c Connection that is broken.
1924  * @param id1 Peer that has disconnected.
1925  * @param id2 Peer that has disconnected.
1926  * @param fwd Direction towards which to send it.
1927  */
1928 static void
1929 send_broken (struct MeshConnection *c,
1930              const struct GNUNET_PeerIdentity *id1,
1931              const struct GNUNET_PeerIdentity *id2,
1932              int fwd)
1933 {
1934   struct GNUNET_MESH_ConnectionBroken msg;
1935
1936   msg.header.size = htons (sizeof (struct GNUNET_MESH_ConnectionBroken));
1937   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN);
1938   msg.cid = c->id;
1939   msg.peer1 = *id1;
1940   msg.peer2 = *id2;
1941   GMC_send_prebuilt_message (&msg.header, c, NULL, fwd);
1942 }
1943
1944 /**
1945  * Notify other peers on a connection of a broken link. Mark connections
1946  * to destroy after all traffic has been sent.
1947  *
1948  * @param c Connection on which there has been a disconnection.
1949  * @param peer Peer that disconnected.
1950  */
1951 void
1952 GMC_notify_broken (struct MeshConnection *c,
1953                    struct MeshPeer *peer)
1954 {
1955   int fwd;
1956
1957   fwd = peer == get_prev_hop (c);
1958
1959   connection_cancel_queues (c, !fwd);
1960   if (GMC_is_terminal (c, fwd))
1961   {
1962     /* Local shutdown, no one to notify about this. */
1963     GMC_destroy (c);
1964     return;
1965   }
1966
1967   send_broken (c, &my_full_id, GMP_get_id (peer), fwd);
1968
1969   /* Connection will have at least one pending message
1970    * (the one we just scheduled), so no point in checking whether to
1971    * destroy immediately. */
1972   c->destroy = GNUNET_YES;
1973
1974   return;
1975 }
1976
1977
1978 /**
1979  * Is this peer the first one on the connection?
1980  *
1981  * @param c Connection.
1982  * @param fwd Is this about fwd traffic?
1983  *
1984  * @return GNUNET_YES if origin, GNUNET_NO if relay/terminal.
1985  */
1986 int
1987 GMC_is_origin (struct MeshConnection *c, int fwd)
1988 {
1989   if (!fwd && c->path->length - 1 == c->own_pos )
1990     return GNUNET_YES;
1991   if (fwd && 0 == c->own_pos)
1992     return GNUNET_YES;
1993   return GNUNET_NO;
1994 }
1995
1996
1997 /**
1998  * Is this peer the last one on the connection?
1999  *
2000  * @param c Connection.
2001  * @param fwd Is this about fwd traffic?
2002  *            Note that the ROOT is the terminal for BCK traffic!
2003  *
2004  * @return GNUNET_YES if terminal, GNUNET_NO if relay/origin.
2005  */
2006 int
2007 GMC_is_terminal (struct MeshConnection *c, int fwd)
2008 {
2009   return GMC_is_origin (c, !fwd);
2010 }
2011
2012
2013 /**
2014  * See if we are allowed to send by the next hop in the given direction.
2015  *
2016  * @param c Connection.
2017  * @param fwd Is this about fwd traffic?
2018  *
2019  * @return GNUNET_YES in case it's OK.
2020  */
2021 int
2022 GMC_is_sendable (struct MeshConnection *c, int fwd)
2023 {
2024   struct MeshFlowControl *fc;
2025
2026   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2027   if (GMC_is_pid_bigger (fc->last_ack_recv, fc->last_pid_sent))
2028     return GNUNET_YES;
2029   return GNUNET_NO;
2030 }
2031
2032 /**
2033  * Sends an already built message on a connection, properly registering
2034  * all used resources.
2035  *
2036  * @param message Message to send. Function makes a copy of it.
2037  *                If message is not hop-by-hop, decrements TTL of copy.
2038  * @param c Connection on which this message is transmitted.
2039  * @param ch Channel on which this message is transmitted, or NULL.
2040  * @param fwd Is this a fwd message?
2041  */
2042 void
2043 GMC_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2044                            struct MeshConnection *c,
2045                            struct MeshChannel *ch,
2046                            int fwd)
2047 {
2048   struct MeshFlowControl *fc;
2049   void *data;
2050   size_t size;
2051   uint16_t type;
2052   int droppable;
2053
2054   size = ntohs (message->size);
2055   data = GNUNET_malloc (size);
2056   memcpy (data, message, size);
2057   type = ntohs (message->type);
2058   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send %s (%u) on connection %s\n",
2059               GNUNET_MESH_DEBUG_M2S (type), size, GNUNET_h2s (&c->id));
2060
2061   droppable = GNUNET_YES;
2062   switch (type)
2063   {
2064     struct GNUNET_MESH_Encrypted *emsg;
2065     struct GNUNET_MESH_ACK       *amsg;
2066     struct GNUNET_MESH_Poll      *pmsg;
2067     struct GNUNET_MESH_ConnectionDestroy *dmsg;
2068     struct GNUNET_MESH_ConnectionBroken  *bmsg;
2069     uint32_t ttl;
2070
2071     case GNUNET_MESSAGE_TYPE_MESH_FWD:
2072     case GNUNET_MESSAGE_TYPE_MESH_BCK:
2073       emsg = (struct GNUNET_MESH_Encrypted *) data;
2074       ttl = ntohl (emsg->ttl);
2075       if (0 == ttl)
2076       {
2077         GNUNET_break_op (0);
2078         return;
2079       }
2080       emsg->cid = c->id;
2081       emsg->ttl = htonl (ttl - 1);
2082       emsg->pid = htonl (fwd ? c->fwd_fc.next_pid++ : c->bck_fc.next_pid++);
2083       LOG (GNUNET_ERROR_TYPE_DEBUG, " pid %u\n", ntohl (emsg->pid));
2084       break;
2085
2086     case GNUNET_MESSAGE_TYPE_MESH_ACK:
2087       amsg = (struct GNUNET_MESH_ACK *) data;
2088       amsg->cid = c->id;
2089       LOG (GNUNET_ERROR_TYPE_DEBUG, " ack %u\n", ntohl (amsg->ack));
2090       droppable = GNUNET_NO;
2091       break;
2092
2093     case GNUNET_MESSAGE_TYPE_MESH_POLL:
2094       pmsg = (struct GNUNET_MESH_Poll *) data;
2095       pmsg->cid = c->id;
2096       pmsg->pid = htonl (fwd ? c->fwd_fc.last_pid_sent : c->bck_fc.last_pid_sent);
2097       LOG (GNUNET_ERROR_TYPE_DEBUG, " poll %u\n", ntohl (pmsg->pid));
2098       droppable = GNUNET_NO;
2099       break;
2100
2101     case GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY:
2102       dmsg = (struct GNUNET_MESH_ConnectionDestroy *) data;
2103       dmsg->cid = c->id;
2104       dmsg->reserved = 0;
2105       break;
2106
2107     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN:
2108       bmsg = (struct GNUNET_MESH_ConnectionBroken *) data;
2109       bmsg->cid = c->id;
2110       bmsg->reserved = 0;
2111       break;
2112
2113     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE:
2114     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK:
2115       break;
2116
2117     default:
2118       GNUNET_break (0);
2119   }
2120
2121   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2122   if (fc->queue_n >= fc->queue_max && droppable)
2123   {
2124     GNUNET_STATISTICS_update (stats, "# messages dropped (buffer full)",
2125                               1, GNUNET_NO);
2126     GNUNET_break (0);
2127     LOG (GNUNET_ERROR_TYPE_DEBUG,
2128                 "queue full: %u/%u\n",
2129                 fc->queue_n, fc->queue_max);
2130     return; /* Drop this message */
2131   }
2132
2133   LOG (GNUNET_ERROR_TYPE_DEBUG, "last pid %u\n", fc->last_pid_sent);
2134   LOG (GNUNET_ERROR_TYPE_DEBUG, "     ack %u\n", fc->last_ack_recv);
2135   LOG (GNUNET_ERROR_TYPE_DEBUG, "  Q_N+ %p %u\n", fc, fc->queue_n);
2136   if (GMC_is_pid_bigger (fc->last_pid_sent + 1, fc->last_ack_recv))
2137   {
2138     GMC_start_poll (c, fwd);
2139   }
2140   fc->queue_n++;
2141   c->pending_messages++;
2142
2143   GMP_queue_add (get_hop (c, fwd), data, type, size, c, ch, fwd,
2144                  &message_sent, NULL);
2145 }
2146
2147
2148 /**
2149  * Sends a CREATE CONNECTION message for a path to a peer.
2150  * Changes the connection and tunnel states if necessary.
2151  *
2152  * @param connection Connection to create.
2153  */
2154 void
2155 GMC_send_create (struct MeshConnection *connection)
2156 {
2157 enum MeshTunnel3State state;
2158   size_t size;
2159
2160   size = sizeof (struct GNUNET_MESH_ConnectionCreate);
2161   size += connection->path->length * sizeof (struct GNUNET_PeerIdentity);
2162   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send connection create\n");
2163   GMP_queue_add (get_next_hop (connection), NULL,
2164                  GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE,
2165                  size, connection, NULL,
2166                  GNUNET_YES, &message_sent, NULL);
2167   state = GMT_get_state (connection->t);
2168   if (MESH_TUNNEL3_SEARCHING == state || MESH_TUNNEL3_NEW == state)
2169     GMT_change_state (connection->t, MESH_TUNNEL3_WAITING);
2170   if (MESH_CONNECTION_NEW == connection->state)
2171     connection_change_state (connection, MESH_CONNECTION_SENT);
2172 }
2173
2174
2175 /**
2176  * Send a message to all peers in this connection that the connection
2177  * is no longer valid.
2178  *
2179  * If some peer should not receive the message, it should be zero'ed out
2180  * before calling this function.
2181  *
2182  * @param c The connection whose peers to notify.
2183  */
2184 void
2185 GMC_send_destroy (struct MeshConnection *c)
2186 {
2187   struct GNUNET_MESH_ConnectionDestroy msg;
2188
2189   if (GNUNET_YES == c->destroy)
2190     return;
2191
2192   msg.header.size = htons (sizeof (msg));
2193   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);;
2194   msg.cid = c->id;
2195   LOG (GNUNET_ERROR_TYPE_DEBUG,
2196               "  sending connection destroy for connection %s\n",
2197               GNUNET_h2s (&c->id));
2198
2199   if (GNUNET_NO == GMC_is_terminal (c, GNUNET_YES))
2200     GMC_send_prebuilt_message (&msg.header, c, NULL, GNUNET_YES);
2201   if (GNUNET_NO == GMC_is_terminal (c, GNUNET_NO))
2202     GMC_send_prebuilt_message (&msg.header, c, NULL, GNUNET_NO);
2203   c->destroy = GNUNET_YES;
2204 }
2205
2206
2207 /**
2208  * @brief Start a polling timer for the connection.
2209  *
2210  * When a neighbor does not accept more traffic on the connection it could be
2211  * caused by a simple congestion or by a lost ACK. Polling enables to check
2212  * for the lastest ACK status for a connection.
2213  *
2214  * @param c Connection.
2215  * @param fwd Should we poll in the FWD direction?
2216  */
2217 void
2218 GMC_start_poll (struct MeshConnection *c, int fwd)
2219 {
2220   struct MeshFlowControl *fc;
2221
2222   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2223   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
2224   {
2225     return;
2226   }
2227   fc->poll_task = GNUNET_SCHEDULER_add_delayed (fc->poll_time,
2228                                                 &connection_poll,
2229                                                 fc);
2230 }
2231
2232
2233 /**
2234  * @brief Stop polling a connection for ACKs.
2235  *
2236  * Once we have enough ACKs for future traffic, polls are no longer necessary.
2237  *
2238  * @param c Connection.
2239  * @param fwd Should we stop the poll in the FWD direction?
2240  */
2241 void
2242 GMC_stop_poll (struct MeshConnection *c, int fwd)
2243 {
2244   struct MeshFlowControl *fc;
2245
2246   fc = fwd ? &c->fwd_fc : &c->bck_fc;
2247   if (GNUNET_SCHEDULER_NO_TASK != fc->poll_task)
2248   {
2249     GNUNET_SCHEDULER_cancel (fc->poll_task);
2250     fc->poll_task = GNUNET_SCHEDULER_NO_TASK;
2251   }
2252 }