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