clean up for configs
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_peer.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 #include "platform.h"
23 #include "gnunet_util_lib.h"
24
25 #include "gnunet_core_service.h"
26 #include "gnunet_statistics_service.h"
27
28 #include "mesh_protocol.h"
29
30 #include "gnunet-service-mesh_peer.h"
31 #include "gnunet-service-mesh_dht.h"
32 #include "gnunet-service-mesh_connection.h"
33 #include "gnunet-service-mesh_tunnel.h"
34 #include "mesh_path.h"
35
36 #define LOG(level, ...) GNUNET_log_from (level,"mesh-p2p",__VA_ARGS__)
37
38 /******************************************************************************/
39 /********************************   STRUCTS  **********************************/
40 /******************************************************************************/
41
42 /**
43  * Struct containing info about a queued transmission to this peer
44  */
45 struct MeshPeerQueue
46 {
47     /**
48       * DLL next
49       */
50   struct MeshPeerQueue *next;
51
52     /**
53       * DLL previous
54       */
55   struct MeshPeerQueue *prev;
56
57     /**
58      * Peer this transmission is directed to.
59      */
60   struct MeshPeer *peer;
61
62     /**
63      * Connection this message belongs to.
64      */
65   struct MeshConnection *c;
66
67     /**
68      * Is FWD in c?
69      */
70   int fwd;
71
72     /**
73      * Pointer to info stucture used as cls.
74      */
75   void *cls;
76
77     /**
78      * Type of message
79      */
80   uint16_t type;
81
82     /**
83      * Size of the message
84      */
85   size_t size;
86
87     /**
88      * Set when this message starts waiting for CORE.
89      */
90   struct GNUNET_TIME_Absolute start_waiting;
91
92     /**
93      * Function to call on sending.
94      */
95   GMP_sent callback;
96
97     /**
98      * Closure for callback.
99      */
100   void *callback_cls;
101 };
102
103 /**
104  * Struct containing all information regarding a given peer
105  */
106 struct MeshPeer
107 {
108     /**
109      * ID of the peer
110      */
111   GNUNET_PEER_Id id;
112
113     /**
114      * Last time we heard from this peer
115      */
116   struct GNUNET_TIME_Absolute last_contact;
117
118     /**
119      * Paths to reach the peer, ordered by ascending hop count
120      */
121   struct MeshPeerPath *path_head;
122
123     /**
124      * Paths to reach the peer, ordered by ascending hop count
125      */
126   struct MeshPeerPath *path_tail;
127
128     /**
129      * Handle to stop the DHT search for paths to this peer
130      */
131   struct GMD_search_handle *search_h;
132
133     /**
134      * Tunnel to this peer, if any.
135      */
136   struct MeshTunnel3 *tunnel;
137
138     /**
139      * Connections that go through this peer, indexed by tid;
140      */
141   struct GNUNET_CONTAINER_MultiHashMap *connections;
142
143     /**
144      * Handle for queued transmissions
145      */
146   struct GNUNET_CORE_TransmitHandle *core_transmit;
147
148   /**
149    * Transmission queue to core DLL head
150    */
151   struct MeshPeerQueue *queue_head;
152
153   /**
154    * Transmission queue to core DLL tail
155    */
156   struct MeshPeerQueue *queue_tail;
157
158   /**
159    * How many messages are in the queue to this peer.
160    */
161   unsigned int queue_n;
162 };
163
164
165 /******************************************************************************/
166 /*******************************   GLOBALS  ***********************************/
167 /******************************************************************************/
168
169 /**
170  * Global handle to the statistics service.
171  */
172 extern struct GNUNET_STATISTICS_Handle *stats;
173
174 /**
175  * Local peer own ID (full value).
176  */
177 extern struct GNUNET_PeerIdentity my_full_id;
178
179 /**
180  * Local peer own ID (short)
181  */
182 extern GNUNET_PEER_Id myid;
183
184 /**
185  * Peers known, indexed by PeerIdentity (MeshPeer).
186  */
187 static struct GNUNET_CONTAINER_MultiPeerMap *peers;
188
189 /**
190  * How many peers do we want to remember?
191  */
192 static unsigned long long max_peers;
193
194 /**
195  * Percentage of messages that will be dropped (for test purposes only).
196  */
197 static unsigned long long drop_percent;
198
199 /**
200  * Handle to communicate with core.
201  */
202 static struct GNUNET_CORE_Handle *core_handle;
203
204
205 /******************************************************************************/
206 /***************************** CORE CALLBACKS *********************************/
207 /******************************************************************************/
208
209
210 /**
211  * Iterator to notify all connections of a broken link. Mark connections
212  * to destroy after all traffic has been sent.
213  *
214  * @param cls Closure (peer disconnected).
215  * @param key Current key code (peer id).
216  * @param value Value in the hash map (connection).
217  *
218  * @return #GNUNET_YES to continue to iterate.
219  */
220 static int
221 notify_broken (void *cls,
222                const struct GNUNET_HashCode *key,
223                void *value)
224 {
225   struct MeshPeer *peer = cls;
226   struct MeshConnection *c = value;
227
228   LOG (GNUNET_ERROR_TYPE_DEBUG, "  notifying %s due to %s\n",
229        GMC_2s (c), GMP_2s (peer));
230   GMC_notify_broken (c, peer);
231
232   return GNUNET_YES;
233 }
234
235
236 /**
237  * Remove the direct path to the peer.
238  *
239  * @param peer Peer to remove the direct path from.
240  *
241  */
242 static struct MeshPeerPath *
243 pop_direct_path (struct MeshPeer *peer)
244 {
245   struct MeshPeerPath *iter;
246
247   for (iter = peer->path_head; NULL != iter; iter = iter->next)
248   {
249     if (2 <= iter->length)
250     {
251       GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, iter);
252       return iter;
253     }
254   }
255   return NULL;
256 }
257
258
259
260 /**
261  * Method called whenever a given peer connects.
262  *
263  * @param cls closure
264  * @param peer peer identity this notification is about
265  */
266 static void
267 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
268 {
269   struct MeshPeer *mp;
270   struct MeshPeerPath *path;
271
272   LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer connected\n");
273   LOG (GNUNET_ERROR_TYPE_DEBUG, "     %s\n", GNUNET_i2s (&my_full_id));
274   mp = GMP_get (peer);
275   if (myid == mp->id)
276   {
277     LOG (GNUNET_ERROR_TYPE_DEBUG, "     (self)\n");
278     path = path_new (1);
279   }
280   else
281   {
282     LOG (GNUNET_ERROR_TYPE_DEBUG, "     %s\n", GNUNET_i2s (peer));
283     path = path_new (2);
284     path->peers[1] = mp->id;
285     GNUNET_PEER_change_rc (mp->id, 1);
286     GNUNET_STATISTICS_update (stats, "# peers", 1, GNUNET_NO);
287   }
288   path->peers[0] = myid;
289   GNUNET_PEER_change_rc (myid, 1);
290   GMP_add_path (mp, path, GNUNET_YES);
291
292   mp->connections = GNUNET_CONTAINER_multihashmap_create (32, GNUNET_YES);
293   return;
294 }
295
296
297 /**
298  * Method called whenever a peer disconnects.
299  *
300  * @param cls closure
301  * @param peer peer identity this notification is about
302  */
303 static void
304 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
305 {
306   struct MeshPeer *p;
307   struct MeshPeerPath *direct_path;
308
309   LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer disconnected\n");
310   p = GNUNET_CONTAINER_multipeermap_get (peers, peer);
311   if (NULL == p)
312   {
313     GNUNET_break (0);
314     return;
315   }
316   if (myid == p->id)
317     LOG (GNUNET_ERROR_TYPE_DEBUG, "     (self: %s)\n", GMP_2s (p));
318   else
319     LOG (GNUNET_ERROR_TYPE_DEBUG, "     %s\n", GMP_2s (p));
320
321   direct_path = pop_direct_path (p);
322   GNUNET_CONTAINER_multihashmap_iterate (p->connections, &notify_broken, p);
323   GNUNET_CONTAINER_multihashmap_destroy (p->connections);
324   p->connections = NULL;
325   if (NULL != p->core_transmit)
326     {
327       GNUNET_CORE_notify_transmit_ready_cancel (p->core_transmit);
328       p->core_transmit = NULL;
329     }
330   GNUNET_STATISTICS_update (stats, "# peers", -1, GNUNET_NO);
331
332   path_destroy (direct_path);
333   return;
334 }
335
336
337 /**
338  * Functions to handle messages from core
339  */
340 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
341   {&GMC_handle_create, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE,
342     0},
343   {&GMC_handle_confirm, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK,
344     sizeof (struct GNUNET_MESH_ConnectionACK)},
345   {&GMC_handle_broken, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN,
346     sizeof (struct GNUNET_MESH_ConnectionBroken)},
347   {&GMC_handle_destroy, GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY,
348     sizeof (struct GNUNET_MESH_ConnectionDestroy)},
349   {&GMC_handle_keepalive, GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE,
350     sizeof (struct GNUNET_MESH_ConnectionKeepAlive)},
351   {&GMC_handle_ack, GNUNET_MESSAGE_TYPE_MESH_ACK,
352     sizeof (struct GNUNET_MESH_ACK)},
353   {&GMC_handle_poll, GNUNET_MESSAGE_TYPE_MESH_POLL,
354     sizeof (struct GNUNET_MESH_Poll)},
355   {&GMC_handle_encrypted, GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED, 0},
356   {&GMC_handle_kx, GNUNET_MESSAGE_TYPE_MESH_KX, 0},
357   {NULL, 0, 0}
358 };
359
360
361 /**
362  * To be called on core init/fail.
363  *
364  * @param cls Closure (config)
365  * @param identity the public identity of this peer
366  */
367 static void
368 core_init (void *cls,
369            const struct GNUNET_PeerIdentity *identity)
370 {
371   const struct GNUNET_CONFIGURATION_Handle *c = cls;
372   static int i = 0;
373
374   LOG (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
375   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)))
376   {
377     LOG (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
378     LOG (GNUNET_ERROR_TYPE_ERROR, " core id %s\n", GNUNET_i2s (identity));
379     LOG (GNUNET_ERROR_TYPE_ERROR, " my id %s\n", GNUNET_i2s (&my_full_id));
380     GNUNET_CORE_disconnect (core_handle);
381     core_handle = GNUNET_CORE_connect (c, /* Main configuration */
382                                        NULL,      /* Closure passed to MESH functions */
383                                        &core_init,        /* Call core_init once connected */
384                                        &core_connect,     /* Handle connects */
385                                        &core_disconnect,  /* remove peers on disconnects */
386                                        NULL,      /* Don't notify about all incoming messages */
387                                        GNUNET_NO, /* For header only in notification */
388                                        NULL,      /* Don't notify about all outbound messages */
389                                        GNUNET_NO, /* For header-only out notification */
390                                        core_handlers);    /* Register these handlers */
391     if (10 < i++)
392       GNUNET_abort();
393   }
394   GML_start ();
395   return;
396 }
397
398 /**
399   * Core callback to write a pre-constructed data packet to core buffer
400   *
401   * @param cls Closure (MeshTransmissionDescriptor with data in "data" member).
402   * @param size Number of bytes available in buf.
403   * @param buf Where the to write the message.
404   *
405   * @return number of bytes written to buf
406   */
407 static size_t
408 send_core_data_raw (void *cls, size_t size, void *buf)
409 {
410   struct GNUNET_MessageHeader *msg = cls;
411   size_t total_size;
412
413   GNUNET_assert (NULL != msg);
414   total_size = ntohs (msg->size);
415
416   if (total_size > size)
417   {
418     GNUNET_break (0);
419     return 0;
420   }
421   memcpy (buf, msg, total_size);
422   GNUNET_free (cls);
423   return total_size;
424 }
425
426
427 /**
428  * Function to send a create connection message to a peer.
429  *
430  * @param c Connection to create.
431  * @param size number of bytes available in buf
432  * @param buf where the callee should write the message
433  * @return number of bytes written to buf
434  */
435 static size_t
436 send_core_connection_create (struct MeshConnection *c, size_t size, void *buf)
437 {
438   struct GNUNET_MESH_ConnectionCreate *msg;
439   struct GNUNET_PeerIdentity *peer_ptr;
440   const struct MeshPeerPath *p = GMC_get_path (c);
441   size_t size_needed;
442   int i;
443
444   if (NULL == p)
445     return 0;
446
447   LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending CONNECTION CREATE...\n");
448   size_needed =
449       sizeof (struct GNUNET_MESH_ConnectionCreate) +
450       p->length * sizeof (struct GNUNET_PeerIdentity);
451
452   if (size < size_needed || NULL == buf)
453   {
454     GNUNET_break (0);
455     return 0;
456   }
457   msg = (struct GNUNET_MESH_ConnectionCreate *) buf;
458   msg->header.size = htons (size_needed);
459   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE);
460   msg->cid = *GMC_get_id (c);
461
462   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
463   for (i = 0; i < p->length; i++)
464   {
465     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
466   }
467
468   LOG (GNUNET_ERROR_TYPE_DEBUG,
469        "CONNECTION CREATE (%u bytes long) sent!\n",
470        size_needed);
471   return size_needed;
472 }
473
474
475 /**
476  * Creates a path ack message in buf and frees all unused resources.
477  *
478  * @param c Connection to send an ACK on.
479  * @param size number of bytes available in buf
480  * @param buf where the callee should write the message
481  *
482  * @return number of bytes written to buf
483  */
484 static size_t
485 send_core_connection_ack (struct MeshConnection *c, size_t size, void *buf)
486 {
487   struct GNUNET_MESH_ConnectionACK *msg = buf;
488
489   LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending CONNECTION ACK...\n");
490   if (sizeof (struct GNUNET_MESH_ConnectionACK) > size)
491   {
492     GNUNET_break (0);
493     return 0;
494   }
495   msg->header.size = htons (sizeof (struct GNUNET_MESH_ConnectionACK));
496   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK);
497   msg->cid = *GMC_get_id (c);
498   msg->reserved = 0;
499
500   /* TODO add signature */
501
502   LOG (GNUNET_ERROR_TYPE_DEBUG, "CONNECTION ACK sent!\n");
503   return sizeof (struct GNUNET_MESH_ConnectionACK);
504 }
505
506
507 /******************************************************************************/
508 /********************************   STATIC  ***********************************/
509 /******************************************************************************/
510
511 /**
512  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
513  *
514  * @param cls closure
515  * @param key current key code
516  * @param value value in the hash map
517  * @return #GNUNET_YES if we should continue to iterate,
518  *         #GNUNET_NO if not.
519  */
520 static int
521 shutdown_tunnel (void *cls,
522                  const struct GNUNET_PeerIdentity *key,
523                  void *value)
524 {
525   struct MeshPeer *p = value;
526   struct MeshTunnel3 *t = p->tunnel;
527
528   if (NULL != t)
529     GMT_destroy (t);
530   return GNUNET_YES;
531 }
532
533
534
535 /**
536  * Destroy the peer_info and free any allocated resources linked to it
537  *
538  * @param peer The peer_info to destroy.
539  *
540  * @return GNUNET_OK on success
541  */
542 static int
543 peer_destroy (struct MeshPeer *peer)
544 {
545   struct GNUNET_PeerIdentity id;
546   struct MeshPeerPath *p;
547   struct MeshPeerPath *nextp;
548
549   GNUNET_PEER_resolve (peer->id, &id);
550   GNUNET_PEER_change_rc (peer->id, -1);
551
552   LOG (GNUNET_ERROR_TYPE_WARNING, "destroying peer %s\n", GNUNET_i2s (&id));
553
554   if (GNUNET_YES !=
555     GNUNET_CONTAINER_multipeermap_remove (peers, &id, peer))
556   {
557     GNUNET_break (0);
558     LOG (GNUNET_ERROR_TYPE_WARNING, " not in peermap!!\n");
559   }
560   if (NULL != peer->search_h)
561   {
562     GMD_search_stop (peer->search_h);
563   }
564   p = peer->path_head;
565   while (NULL != p)
566   {
567     nextp = p->next;
568     GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, p);
569     path_destroy (p);
570     p = nextp;
571   }
572   GMT_destroy_empty (peer->tunnel);
573   GNUNET_free (peer);
574   return GNUNET_OK;
575 }
576
577
578 /**
579  * Returns if peer is used (has a tunnel or is neighbor).
580  *
581  * @param peer Peer to check.
582  *
583  * @return #GNUNET_YES if peer is in use.
584  */
585 static int
586 peer_is_used (struct MeshPeer *peer)
587 {
588   struct MeshPeerPath *p;
589
590   if (NULL != peer->tunnel)
591     return GNUNET_YES;
592
593   for (p = peer->path_head; NULL != p; p = p->next)
594   {
595     if (p->length < 3)
596       return GNUNET_YES;
597   }
598     return GNUNET_NO;
599 }
600
601
602 /**
603  * Iterator over all the peers to get the oldest timestamp.
604  *
605  * @param cls Closure (unsued).
606  * @param key ID of the peer.
607  * @param value Peer_Info of the peer.
608  */
609 static int
610 peer_get_oldest (void *cls,
611                  const struct GNUNET_PeerIdentity *key,
612                  void *value)
613 {
614   struct MeshPeer *p = value;
615   struct GNUNET_TIME_Absolute *abs = cls;
616
617   /* Don't count active peers */
618   if (GNUNET_YES == peer_is_used (p))
619     return GNUNET_YES;
620
621   if (abs->abs_value_us < p->last_contact.abs_value_us)
622     abs->abs_value_us = p->last_contact.abs_value_us;
623
624   return GNUNET_YES;
625 }
626
627
628 /**
629  * Iterator over all the peers to remove the oldest entry.
630  *
631  * @param cls Closure (unsued).
632  * @param key ID of the peer.
633  * @param value Peer_Info of the peer.
634  */
635 static int
636 peer_timeout (void *cls,
637               const struct GNUNET_PeerIdentity *key,
638               void *value)
639 {
640   struct MeshPeer *p = value;
641   struct GNUNET_TIME_Absolute *abs = cls;
642
643   LOG (GNUNET_ERROR_TYPE_WARNING,
644        "peer %s timeout\n", GNUNET_i2s (key));
645
646   if (p->last_contact.abs_value_us == abs->abs_value_us &&
647       GNUNET_NO == peer_is_used (p))
648   {
649     peer_destroy (p);
650     return GNUNET_NO;
651   }
652     return GNUNET_YES;
653 }
654
655
656 /**
657  * Delete oldest unused peer.
658  */
659 static void
660 peer_delete_oldest (void)
661 {
662   struct GNUNET_TIME_Absolute abs;
663
664   abs = GNUNET_TIME_UNIT_FOREVER_ABS;
665
666   GNUNET_CONTAINER_multipeermap_iterate (peers,
667                                          &peer_get_oldest,
668                                          &abs);
669   GNUNET_CONTAINER_multipeermap_iterate (peers,
670                                          &peer_timeout,
671                                          &abs);
672 }
673
674
675 /**
676  * Choose the best (yet unused) path towards a peer,
677  * considering the tunnel properties.
678  *
679  * @param peer The destination peer.
680  *
681  * @return Best current known path towards the peer, if any.
682  */
683 static struct MeshPeerPath *
684 peer_get_best_path (const struct MeshPeer *peer)
685 {
686   struct MeshPeerPath *best_p;
687   struct MeshPeerPath *p;
688   unsigned int best_cost;
689   unsigned int cost;
690
691   best_cost = UINT_MAX;
692   best_p = NULL;
693   for (p = peer->path_head; NULL != p; p = p->next)
694   {
695     if (GNUNET_YES == GMT_is_path_used (peer->tunnel, p))
696       continue; /* If path is already in use, skip it. */
697
698     if (GNUNET_NO == path_is_valid (p))
699       continue; /* Don't use invalid paths. */
700
701     if ((cost = GMT_get_path_cost (peer->tunnel, p)) < best_cost)
702     {
703       best_cost = cost;
704       best_p = p;
705     }
706   }
707   return best_p;
708 }
709
710
711 static int
712 queue_is_sendable (struct MeshPeerQueue *q)
713 {
714   /* Is PID-independent? */
715   switch (q->type)
716   {
717     case GNUNET_MESSAGE_TYPE_MESH_ACK:
718     case GNUNET_MESSAGE_TYPE_MESH_POLL:
719     case GNUNET_MESSAGE_TYPE_MESH_KX:
720     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE:
721     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK:
722     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY:
723     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN:
724     case GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE:
725       return GNUNET_YES;
726
727     case GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED:
728       break;
729
730     default:
731       GNUNET_break (0);
732   }
733
734   if (GMC_is_sendable (q->c, q->fwd))
735     return GNUNET_YES;
736
737   return GNUNET_NO;
738 }
739
740
741 /**
742  * Get first sendable message.
743  *
744  * @param peer The destination peer.
745  *
746  * @return Best current known path towards the peer, if any.
747  */
748 static struct MeshPeerQueue *
749 peer_get_first_message (const struct MeshPeer *peer)
750 {
751   struct MeshPeerQueue *q;
752
753   for (q = peer->queue_head; NULL != q; q = q->next)
754   {
755     if (queue_is_sendable (q))
756       return q;
757   }
758
759   return NULL;
760 }
761
762
763 /**
764  * Function to process paths received for a new peer addition. The recorded
765  * paths form the initial tunnel, which can be optimized later.
766  * Called on each result obtained for the DHT search.
767  *
768  * @param cls closure
769  * @param path
770  */
771 static void
772 search_handler (void *cls, const struct MeshPeerPath *path)
773 {
774   struct MeshPeer *peer = cls;
775   unsigned int connection_count;
776
777   GMP_add_path_to_all (path, GNUNET_NO);
778
779   /* Count connections */
780   connection_count = GMT_count_connections (peer->tunnel);
781
782   /* If we already have 3 (or more (?!)) connections, it's enough */
783   if (3 <= connection_count)
784     return;
785
786   if (MESH_TUNNEL3_SEARCHING == GMT_get_cstate (peer->tunnel))
787   {
788     LOG (GNUNET_ERROR_TYPE_DEBUG, " ... connect!\n");
789     GMP_connect (peer);
790   }
791   return;
792 }
793
794
795 /**
796  * Core callback to write a queued packet to core buffer
797  *
798  * @param cls Closure (peer info).
799  * @param size Number of bytes available in buf.
800  * @param buf Where the to write the message.
801  *
802  * @return number of bytes written to buf
803  */
804 static size_t
805 queue_send (void *cls, size_t size, void *buf)
806 {
807   struct MeshPeer *peer = cls;
808   struct MeshConnection *c;
809   struct MeshPeerQueue *queue;
810   const struct GNUNET_PeerIdentity *dst_id;
811   size_t data_size;
812
813   peer->core_transmit = NULL;
814   LOG (GNUNET_ERROR_TYPE_DEBUG, "* Queue send towards %s (max %u)\n",
815        GMP_2s (peer), size);
816
817   if (NULL == buf || 0 == size)
818   {
819     LOG (GNUNET_ERROR_TYPE_DEBUG, "* Buffer size 0.\n");
820     return 0;
821   }
822
823   /* Initialize */
824   queue = peer_get_first_message (peer);
825   if (NULL == queue)
826   {
827     GNUNET_break (0); /* Core tmt_rdy should've been canceled */
828     return 0;
829   }
830   c = queue->c;
831
832   dst_id = GNUNET_PEER_resolve2 (peer->id);
833   LOG (GNUNET_ERROR_TYPE_DEBUG, "*   on connection %s\n", GMC_2s (c));
834   /* Check if buffer size is enough for the message */
835   if (queue->size > size)
836   {
837       LOG (GNUNET_ERROR_TYPE_DEBUG, "*   not enough room, reissue\n");
838       peer->core_transmit =
839           GNUNET_CORE_notify_transmit_ready (core_handle,
840                                              GNUNET_NO,
841                                              0,
842                                              GNUNET_TIME_UNIT_FOREVER_REL,
843                                              dst_id,
844                                              queue->size,
845                                              &queue_send,
846                                              peer);
847       return 0;
848   }
849   LOG (GNUNET_ERROR_TYPE_DEBUG, "*   size %u ok\n", queue->size);
850
851   /* Fill buf */
852   switch (queue->type)
853   {
854     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY:
855     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN:
856     case GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE:
857     case GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED:
858     case GNUNET_MESSAGE_TYPE_MESH_KX:
859     case GNUNET_MESSAGE_TYPE_MESH_ACK:
860     case GNUNET_MESSAGE_TYPE_MESH_POLL:
861       LOG (GNUNET_ERROR_TYPE_DEBUG,
862                   "*   raw: %s\n",
863                   GM_m2s (queue->type));
864       data_size = send_core_data_raw (queue->cls, size, buf);
865       break;
866     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE:
867       LOG (GNUNET_ERROR_TYPE_DEBUG, "*   path create\n");
868       if (GMC_is_origin (c, GNUNET_YES))
869         data_size = send_core_connection_create (queue->c, size, buf);
870       else
871         data_size = send_core_data_raw (queue->cls, size, buf);
872       break;
873     case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK:
874       LOG (GNUNET_ERROR_TYPE_DEBUG, "*   path ack\n");
875       if (GMC_is_origin (c, GNUNET_NO) ||
876           GMC_is_origin (c, GNUNET_YES))
877         data_size = send_core_connection_ack (queue->c, size, buf);
878       else
879         data_size = send_core_data_raw (queue->cls, size, buf);
880       break;
881     case GNUNET_MESSAGE_TYPE_MESH_DATA:
882     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
883     case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY:
884       /* This should be encapsulted */
885       GNUNET_break (0);
886       data_size = 0;
887       break;
888     default:
889       GNUNET_break (0);
890       LOG (GNUNET_ERROR_TYPE_WARNING, "*   type unknown: %u\n", queue->type);
891       data_size = 0;
892   }
893
894   if (0 < drop_percent &&
895       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 101) < drop_percent)
896   {
897     LOG (GNUNET_ERROR_TYPE_WARNING,
898                 "Dropping message of type %s\n",
899                 GM_m2s (queue->type));
900     data_size = 0;
901   }
902
903   /* Free queue, but cls was freed by send_core_* */
904   GMP_queue_destroy (queue, GNUNET_NO);
905
906   /* If more data in queue, send next */
907   queue = peer_get_first_message (peer);
908   if (NULL != queue)
909   {
910     LOG (GNUNET_ERROR_TYPE_DEBUG, "*   more data!\n");
911     if (NULL == peer->core_transmit)
912     {
913       peer->core_transmit =
914           GNUNET_CORE_notify_transmit_ready(core_handle,
915                                             0,
916                                             0,
917                                             GNUNET_TIME_UNIT_FOREVER_REL,
918                                             dst_id,
919                                             queue->size,
920                                             &queue_send,
921                                             peer);
922       queue->start_waiting = GNUNET_TIME_absolute_get ();
923     }
924     else
925     {
926       LOG (GNUNET_ERROR_TYPE_DEBUG,
927                   "*   tmt rdy called somewhere else\n");
928     }
929 //     GMC_start_poll (); FIXME needed?
930   }
931   else
932   {
933 //     GMC_stop_poll(); FIXME needed?
934   }
935
936   LOG (GNUNET_ERROR_TYPE_DEBUG, "*  Return %d\n", data_size);
937   return data_size;
938 }
939
940
941 /******************************************************************************/
942 /********************************    API    ***********************************/
943 /******************************************************************************/
944
945
946 /**
947  * Free a transmission that was already queued with all resources
948  * associated to the request.
949  *
950  * @param queue Queue handler to cancel.
951  * @param clear_cls Is it necessary to free associated cls?
952  */
953 void
954 GMP_queue_destroy (struct MeshPeerQueue *queue, int clear_cls)
955 {
956   struct MeshPeer *peer;
957
958   peer = queue->peer;
959   GNUNET_assert (NULL != queue->c);
960
961   if (GNUNET_YES == clear_cls)
962   {
963     LOG (GNUNET_ERROR_TYPE_DEBUG, "#   queue destroy type %s\n",
964                 GM_m2s (queue->type));
965     switch (queue->type)
966     {
967       case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_DESTROY:
968         LOG (GNUNET_ERROR_TYPE_INFO, "destroying a DESTROY message\n");
969         /* fall through */
970       case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_ACK:
971       case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_CREATE:
972       case GNUNET_MESSAGE_TYPE_MESH_CONNECTION_BROKEN:
973       case GNUNET_MESSAGE_TYPE_MESH_KEEPALIVE:
974       case GNUNET_MESSAGE_TYPE_MESH_KX:
975       case GNUNET_MESSAGE_TYPE_MESH_ENCRYPTED:
976       case GNUNET_MESSAGE_TYPE_MESH_ACK:
977       case GNUNET_MESSAGE_TYPE_MESH_POLL:
978         GNUNET_free_non_null (queue->cls);
979         break;
980
981       default:
982         GNUNET_break (0);
983         LOG (GNUNET_ERROR_TYPE_ERROR, "#   type %s unknown!\n",
984                     GM_m2s (queue->type));
985     }
986   }
987   GNUNET_CONTAINER_DLL_remove (peer->queue_head, peer->queue_tail, queue);
988
989   if (queue->type != GNUNET_MESSAGE_TYPE_MESH_ACK &&
990       queue->type != GNUNET_MESSAGE_TYPE_MESH_POLL)
991   {
992     peer->queue_n--;
993   }
994
995   if (NULL != queue->callback)
996   {
997     LOG (GNUNET_ERROR_TYPE_DEBUG, "#   Calling callback\n");
998     queue->callback (queue->callback_cls,
999                      queue->c, queue->type,
1000                      queue->fwd, queue->size,
1001                      GNUNET_TIME_absolute_get_duration (queue->start_waiting));
1002   }
1003
1004   GNUNET_free (queue);
1005 }
1006
1007
1008 /**
1009  * @brief Queue and pass message to core when possible.
1010  *
1011  * @param peer Peer towards which to queue the message.
1012  * @param cls Closure (@c type dependant). It will be used by queue_send to
1013  *            build the message to be sent if not already prebuilt.
1014  * @param type Type of the message, 0 for a raw message.
1015  * @param size Size of the message.
1016  * @param c Connection this message belongs to (cannot be NULL).
1017  * @param fwd Is this a message going root->dest? (FWD ACK are NOT FWD!)
1018  * @param cont Continuation to be called once CORE has taken the message.
1019  * @param cont_cls Closure for @c cont.
1020  *
1021  * @return Handle to cancel the message before it is sent. Once cont is called
1022  *         message has been sent and therefore the handle is no longer valid.
1023  */
1024 struct MeshPeerQueue *
1025 GMP_queue_add (struct MeshPeer *peer, void *cls, uint16_t type, size_t size,
1026                struct MeshConnection *c, int fwd,
1027                GMP_sent cont, void *cont_cls)
1028 {
1029   struct MeshPeerQueue *queue;
1030   int priority;
1031   int call_core;
1032
1033   LOG (GNUNET_ERROR_TYPE_DEBUG,
1034        "queue add %s %s towards %s (size %u) on c %p (%s)\n",
1035        GM_f2s (fwd),  GM_m2s (type), GMP_2s(peer),
1036        size, c, GMC_2s (c));
1037   GNUNET_assert (NULL != c);
1038
1039   if (NULL == peer->connections)
1040   {
1041     /* We are not connected to this peer, ignore request. */
1042     LOG (GNUNET_ERROR_TYPE_DEBUG, "WARNING %s not a neighbor\n", GMP_2s (peer));
1043     GNUNET_STATISTICS_update (stats, "# messages dropped due to wrong hop", 1,
1044                               GNUNET_NO);
1045     return NULL;
1046   }
1047
1048   priority = 0;
1049
1050   if (GNUNET_MESSAGE_TYPE_MESH_POLL == type ||
1051       GNUNET_MESSAGE_TYPE_MESH_ACK == type)
1052   {
1053     priority = 100;
1054   }
1055
1056   LOG (GNUNET_ERROR_TYPE_DEBUG, "priority %d\n", priority);
1057
1058   call_core = GMC_is_sendable (c, fwd);
1059   queue = GNUNET_malloc (sizeof (struct MeshPeerQueue));
1060   queue->cls = cls;
1061   queue->type = type;
1062   queue->size = size;
1063   queue->peer = peer;
1064   queue->c = c;
1065   queue->fwd = fwd;
1066   queue->callback = cont;
1067   queue->callback_cls = cont_cls;
1068   if (100 > priority)
1069   {
1070     GNUNET_CONTAINER_DLL_insert_tail (peer->queue_head, peer->queue_tail, queue);
1071     peer->queue_n++;
1072   }
1073   else
1074   {
1075     GNUNET_CONTAINER_DLL_insert (peer->queue_head, peer->queue_tail, queue);
1076     call_core = GNUNET_YES;
1077   }
1078
1079   if (NULL == peer->core_transmit && GNUNET_YES == call_core)
1080   {
1081     LOG (GNUNET_ERROR_TYPE_DEBUG,
1082                 "calling core tmt rdy towards %s for %u bytes\n",
1083                 GMP_2s (peer), size);
1084     peer->core_transmit =
1085         GNUNET_CORE_notify_transmit_ready (core_handle,
1086                                            0,
1087                                            0,
1088                                            GNUNET_TIME_UNIT_FOREVER_REL,
1089                                            GNUNET_PEER_resolve2 (peer->id),
1090                                            size,
1091                                            &queue_send,
1092                                            peer);
1093     queue->start_waiting = GNUNET_TIME_absolute_get ();
1094   }
1095   else
1096   {
1097     LOG (GNUNET_ERROR_TYPE_DEBUG,
1098                 "core tmt rdy towards %s already called\n",
1099                 GMP_2s (peer));
1100
1101   }
1102   return queue;
1103 }
1104
1105
1106 /**
1107  * Cancel all queued messages to a peer that belong to a certain connection.
1108  *
1109  * @param peer Peer towards whom to cancel.
1110  * @param c Connection whose queued messages to cancel. Might be destroyed by
1111  *          the sent continuation call.
1112  */
1113 void
1114 GMP_queue_cancel (struct MeshPeer *peer, struct MeshConnection *c)
1115 {
1116   struct MeshPeerQueue *q;
1117   struct MeshPeerQueue *next;
1118   struct MeshPeerQueue *prev;
1119
1120   for (q = peer->queue_head; NULL != q; q = next)
1121   {
1122     prev = q->prev;
1123     if (q->c == c)
1124     {
1125       LOG (GNUNET_ERROR_TYPE_DEBUG, "GMP_cancel_queue %s\n", GM_m2s (q->type));
1126       GMP_queue_destroy (q, GNUNET_YES);
1127
1128       /* Get next from prev, q->next might be already freed:
1129        * queue destroy -> callback -> GMC_destroy -> cancel_queues -> here
1130        */
1131       if (NULL == prev)
1132         next = peer->queue_head;
1133       else
1134         next = prev->next;
1135     }
1136     else
1137     {
1138       next = q->next;
1139     }
1140   }
1141   if (NULL == peer->queue_head)
1142   {
1143     if (NULL != peer->core_transmit)
1144     {
1145       GNUNET_CORE_notify_transmit_ready_cancel (peer->core_transmit);
1146       peer->core_transmit = NULL;
1147     }
1148   }
1149 }
1150
1151
1152 /**
1153  * Get the first transmittable message for a connection.
1154  *
1155  * @param peer Neighboring peer.
1156  * @param c Connection.
1157  *
1158  * @return First transmittable message.
1159  */
1160 static struct MeshPeerQueue *
1161 connection_get_first_message (struct MeshPeer *peer, struct MeshConnection *c)
1162 {
1163   struct MeshPeerQueue *q;
1164
1165   for (q = peer->queue_head; NULL != q; q = q->next)
1166   {
1167     if (q->c != c)
1168       continue;
1169     if (queue_is_sendable (q))
1170     {
1171       LOG (GNUNET_ERROR_TYPE_DEBUG, "  sendable!!\n");
1172       return q;
1173     }
1174     LOG (GNUNET_ERROR_TYPE_DEBUG, "  not sendable\n");
1175   }
1176
1177   return NULL;
1178 }
1179
1180
1181 void
1182 GMP_queue_unlock (struct MeshPeer *peer, struct MeshConnection *c)
1183 {
1184   struct MeshPeerQueue *q;
1185   size_t size;
1186
1187   if (NULL != peer->core_transmit)
1188   {
1189     LOG (GNUNET_ERROR_TYPE_DEBUG, "  already unlocked!\n");
1190     return; /* Already unlocked */
1191   }
1192
1193   q = connection_get_first_message (peer, c);
1194   if (NULL == q)
1195   {
1196     LOG (GNUNET_ERROR_TYPE_DEBUG, "  queue empty!\n");
1197     return; /* Nothing to transmit */
1198   }
1199
1200   size = q->size;
1201   peer->core_transmit =
1202       GNUNET_CORE_notify_transmit_ready (core_handle,
1203                                          GNUNET_NO,
1204                                          0,
1205                                          GNUNET_TIME_UNIT_FOREVER_REL,
1206                                          GNUNET_PEER_resolve2 (peer->id),
1207                                          size,
1208                                          &queue_send,
1209                                          peer);
1210 }
1211
1212
1213 /**
1214  * Initialize the peer subsystem.
1215  *
1216  * @param c Configuration.
1217  */
1218 void
1219 GMP_init (const struct GNUNET_CONFIGURATION_Handle *c)
1220 {
1221   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
1222   peers = GNUNET_CONTAINER_multipeermap_create (128, GNUNET_NO);
1223   if (GNUNET_OK !=
1224       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "MAX_PEERS",
1225                                              &max_peers))
1226   {
1227     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1228                                "MESH", "MAX_PEERS", "USING DEFAULT");
1229     max_peers = 1000;
1230   }
1231
1232   if (GNUNET_OK !=
1233       GNUNET_CONFIGURATION_get_value_number (c, "MESH", "DROP_PERCENT",
1234                                              &drop_percent))
1235   {
1236     drop_percent = 0;
1237   }
1238   else
1239   {
1240     LOG (GNUNET_ERROR_TYPE_WARNING,
1241                 "\n***************************************\n"
1242                 "Mesh is running with drop mode enabled.\n"
1243                 "This is NOT a good idea!\n"
1244                 "Remove the DROP_PERCENT option from your configuration.\n"
1245                 "***************************************\n");
1246   }
1247
1248   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
1249                                      NULL,      /* Closure passed to MESH functions */
1250                                      &core_init,        /* Call core_init once connected */
1251                                      &core_connect,     /* Handle connects */
1252                                      &core_disconnect,  /* remove peers on disconnects */
1253                                      NULL,      /* Don't notify about all incoming messages */
1254                                      GNUNET_NO, /* For header only in notification */
1255                                      NULL,      /* Don't notify about all outbound messages */
1256                                      GNUNET_NO, /* For header-only out notification */
1257                                      core_handlers);    /* Register these handlers */
1258   if (NULL == core_handle)
1259   {
1260     GNUNET_break (0);
1261     GNUNET_SCHEDULER_shutdown ();
1262     return;
1263   }
1264 }
1265
1266 /**
1267  * Shut down the peer subsystem.
1268  */
1269 void
1270 GMP_shutdown (void)
1271 {
1272   GNUNET_CONTAINER_multipeermap_iterate (peers, &shutdown_tunnel, NULL);
1273
1274   if (core_handle != NULL)
1275   {
1276     GNUNET_CORE_disconnect (core_handle);
1277     core_handle = NULL;
1278   }
1279   GNUNET_PEER_change_rc (myid, -1);
1280 }
1281
1282 /**
1283  * Retrieve the MeshPeer stucture associated with the peer, create one
1284  * and insert it in the appropriate structures if the peer is not known yet.
1285  *
1286  * @param peer_id Full identity of the peer.
1287  *
1288  * @return Existing or newly created peer structure.
1289  */
1290 struct MeshPeer *
1291 GMP_get (const struct GNUNET_PeerIdentity *peer_id)
1292 {
1293   struct MeshPeer *peer;
1294
1295   peer = GNUNET_CONTAINER_multipeermap_get (peers, peer_id);
1296   if (NULL == peer)
1297   {
1298     peer = GNUNET_new (struct MeshPeer);
1299     if (GNUNET_CONTAINER_multipeermap_size (peers) > max_peers)
1300     {
1301       peer_delete_oldest ();
1302     }
1303         GNUNET_CONTAINER_multipeermap_put (peers, peer_id, peer,
1304                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1305         peer->id = GNUNET_PEER_intern (peer_id);
1306   }
1307   peer->last_contact = GNUNET_TIME_absolute_get();
1308
1309   return peer;
1310 }
1311
1312
1313 /**
1314  * Retrieve the MeshPeer stucture associated with the peer, create one
1315  * and insert it in the appropriate structures if the peer is not known yet.
1316  *
1317  * @param peer Short identity of the peer.
1318  *
1319  * @return Existing or newly created peer structure.
1320  */
1321 struct MeshPeer *
1322 GMP_get_short (const GNUNET_PEER_Id peer)
1323 {
1324   return GMP_get (GNUNET_PEER_resolve2 (peer));
1325 }
1326
1327
1328 /**
1329  * Try to establish a new connection to this peer (in its tunnel).
1330  * If the peer doesn't have any path to it yet, try to get one.
1331  * If the peer already has some path, send a CREATE CONNECTION towards it.
1332  *
1333  * @param peer Peer to connect to.
1334  */
1335 void
1336 GMP_connect (struct MeshPeer *peer)
1337 {
1338   struct MeshTunnel3 *t;
1339   struct MeshPeerPath *p;
1340   struct MeshConnection *c;
1341   int rerun_search;
1342
1343   LOG (GNUNET_ERROR_TYPE_DEBUG, "peer_connect towards %s\n", GMP_2s (peer));
1344   t = peer->tunnel;
1345   c = NULL;
1346   rerun_search = GNUNET_NO;
1347
1348   if (NULL != peer->path_head)
1349   {
1350     LOG (GNUNET_ERROR_TYPE_DEBUG, "  some path exists\n");
1351     p = peer_get_best_path (peer);
1352     if (NULL != p)
1353     {
1354       LOG (GNUNET_ERROR_TYPE_DEBUG, "  %u hops\n", p->length);
1355       c = GMT_use_path (t, p);
1356       if (NULL == c)
1357       {
1358         /* This case can happen when the path includes a first hop that is
1359          * not yet known to be connected.
1360          *
1361          * This happens quite often during testing when running mesh
1362          * under valgrind: core connect notifications come very late and the
1363          * DHT result has already come and created a valid path.
1364          * In this case, the peer->connections hashmap will be NULL and
1365          * tunnel_use_path will not be able to create a connection from that
1366          * path.
1367          *
1368          * Re-running the DHT GET should give core time to callback.
1369          *
1370          * GMT_use_path -> GMC_new -> register_neighbors takes care of
1371          * updating statistics about this issue.
1372          */
1373         rerun_search = GNUNET_YES;
1374       }
1375       else
1376       {
1377         GMC_send_create (c);
1378         return;
1379       }
1380     }
1381     else
1382     {
1383       LOG (GNUNET_ERROR_TYPE_DEBUG, "  but is NULL, all paths are in use\n");
1384     }
1385   }
1386
1387   if (NULL != peer->search_h && GNUNET_YES == rerun_search)
1388   {
1389     GMD_search_stop (peer->search_h);
1390     peer->search_h = NULL;
1391     LOG (GNUNET_ERROR_TYPE_DEBUG,
1392          "  Stopping DHT GET for peer %s\n",
1393          GMP_2s (peer));
1394   }
1395
1396   if (NULL == peer->search_h)
1397   {
1398     const struct GNUNET_PeerIdentity *id;
1399
1400     id = GNUNET_PEER_resolve2 (peer->id);
1401     LOG (GNUNET_ERROR_TYPE_DEBUG,
1402                 "  Starting DHT GET for peer %s\n", GMP_2s (peer));
1403     peer->search_h = GMD_search (id, &search_handler, peer);
1404     if (MESH_TUNNEL3_NEW == GMT_get_cstate (t))
1405       GMT_change_cstate (t, MESH_TUNNEL3_SEARCHING);
1406   }
1407 }
1408
1409
1410 /**
1411  * Set tunnel.
1412  *
1413  * @param peer Peer.
1414  * @param t Tunnel.
1415  */
1416 void
1417 GMP_set_tunnel (struct MeshPeer *peer, struct MeshTunnel3 *t)
1418 {
1419   peer->tunnel = t;
1420 }
1421
1422
1423 /**
1424  * Chech whether there is a direct (core level)  connection to peer.
1425  *
1426  * @param peer Peer to check.
1427  *
1428  * @return #GNUNET_YES if there is a direct connection.
1429  */
1430 int
1431 GMP_is_neighbor (const struct MeshPeer *peer)
1432 {
1433   struct MeshPeerPath *path;
1434
1435   if (NULL == peer->connections)
1436     return GNUNET_NO;
1437
1438   for (path = peer->path_head; NULL != path; path = path->next)
1439   {
1440     if (3 > path->length)
1441       return GNUNET_YES;
1442   }
1443
1444   GNUNET_break (0); /* Is not a neighbor but connections is not NULL */
1445   return GNUNET_NO;
1446 }
1447
1448
1449 /**
1450  * Create and initialize a new tunnel towards a peer, in case it has none.
1451  * In case the peer already has a tunnel, nothing is done.
1452  *
1453  * Does not generate any traffic, just creates the local data structures.
1454  *
1455  * @param peer Peer towards which to create the tunnel.
1456  */
1457 void
1458 GMP_add_tunnel (struct MeshPeer *peer)
1459 {
1460   if (NULL != peer->tunnel)
1461     return;
1462   peer->tunnel = GMT_new (peer);
1463 }
1464
1465
1466 /**
1467  * Add a connection to a neighboring peer.
1468  *
1469  * Store that the peer is the first hop of the connection in one
1470  * direction and that on peer disconnect the connection must be
1471  * notified and destroyed, for it will no longer be valid.
1472  *
1473  * @param peer Peer to add connection to.
1474  * @param c Connection to add.
1475  *
1476  * @return GNUNET_OK on success.
1477  */
1478 int
1479 GMP_add_connection (struct MeshPeer *peer,
1480                     struct MeshConnection *c)
1481 {
1482   int result;
1483   LOG (GNUNET_ERROR_TYPE_DEBUG, "adding connection %s\n", GMC_2s (c));
1484   LOG (GNUNET_ERROR_TYPE_DEBUG, "to peer %s\n", GMP_2s (peer));
1485
1486   if (NULL == peer->connections)
1487   {
1488     GNUNET_break (0);
1489     LOG (GNUNET_ERROR_TYPE_DEBUG,
1490          "Peer %s is not a neighbor!\n",
1491          GMP_2s (peer));
1492     return GNUNET_SYSERR;
1493   }
1494   LOG (GNUNET_ERROR_TYPE_DEBUG,
1495        "peer %s ok, has %u connections.\n",
1496        GMP_2s (peer), GNUNET_CONTAINER_multihashmap_size (peer->connections));
1497   result = GNUNET_CONTAINER_multihashmap_put (peer->connections,
1498                                               GMC_get_id (c),
1499                                               c,
1500                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1501   LOG (GNUNET_ERROR_TYPE_DEBUG,
1502        " now has %u connections.\n",
1503        GNUNET_CONTAINER_multihashmap_size (peer->connections));
1504   LOG (GNUNET_ERROR_TYPE_DEBUG, "result %u\n", result);
1505
1506   return result;
1507 }
1508
1509
1510 /**
1511  * Add the path to the peer and update the path used to reach it in case this
1512  * is the shortest.
1513  *
1514  * @param peer Destination peer to add the path to.
1515  * @param path New path to add. Last peer must be the peer in arg 1.
1516  *             Path will be either used of freed if already known.
1517  * @param trusted Do we trust that this path is real?
1518  *
1519  * @return path if path was taken, pointer to existing duplicate if exists
1520  *         NULL on error.
1521  */
1522 struct MeshPeerPath *
1523 GMP_add_path (struct MeshPeer *peer, struct MeshPeerPath *path,
1524               int trusted)
1525 {
1526   struct MeshPeerPath *aux;
1527   unsigned int l;
1528   unsigned int l2;
1529
1530   LOG (GNUNET_ERROR_TYPE_DEBUG, "adding path [%u] to peer %s\n",
1531        path->length, GMP_2s (peer));
1532
1533   if ((NULL == peer) || (NULL == path))
1534   {
1535     GNUNET_break (0);
1536     path_destroy (path);
1537     return NULL;
1538   }
1539   if (path->peers[path->length - 1] != peer->id)
1540   {
1541     GNUNET_break (0);
1542     path_destroy (path);
1543     return NULL;
1544   }
1545   if (2 >= path->length && GNUNET_NO == trusted)
1546   {
1547     /* Only allow CORE to tell us about direct paths */
1548     path_destroy (path);
1549     return NULL;
1550   }
1551   for (l = 1; l < path->length; l++)
1552   {
1553     if (path->peers[l] == myid)
1554     {
1555       LOG (GNUNET_ERROR_TYPE_DEBUG, "shortening path by %u\n", l);
1556       for (l2 = 0; l2 < path->length - l; l2++)
1557       {
1558         path->peers[l2] = path->peers[l + l2];
1559       }
1560       path->length -= l;
1561       l = 1;
1562       path->peers = GNUNET_realloc (path->peers,
1563                                     path->length * sizeof (GNUNET_PEER_Id));
1564     }
1565   }
1566
1567   LOG (GNUNET_ERROR_TYPE_DEBUG, "adding path [%u]\n", path->length);
1568
1569   l = path_get_length (path);
1570   if (0 == l)
1571   {
1572     path_destroy (path);
1573     return NULL;
1574   }
1575
1576   GNUNET_assert (peer->id == path->peers[path->length - 1]);
1577   for (aux = peer->path_head; aux != NULL; aux = aux->next)
1578   {
1579     l2 = path_get_length (aux);
1580     if (l2 > l)
1581     {
1582       LOG (GNUNET_ERROR_TYPE_DEBUG, "  added\n");
1583       GNUNET_CONTAINER_DLL_insert_before (peer->path_head,
1584                                           peer->path_tail, aux, path);
1585       return path;
1586     }
1587     else
1588     {
1589       if (l2 == l && memcmp (path->peers, aux->peers, l) == 0)
1590       {
1591         LOG (GNUNET_ERROR_TYPE_DEBUG, "  already known\n");
1592         path_destroy (path);
1593         return aux;
1594       }
1595     }
1596   }
1597   GNUNET_CONTAINER_DLL_insert_tail (peer->path_head, peer->path_tail,
1598                                     path);
1599   LOG (GNUNET_ERROR_TYPE_DEBUG, "  added last\n");
1600   return path;
1601 }
1602
1603
1604 /**
1605  * Add the path to the origin peer and update the path used to reach it in case
1606  * this is the shortest.
1607  * The path is given in peer_info -> destination, therefore we turn the path
1608  * upside down first.
1609  *
1610  * @param peer Peer to add the path to, being the origin of the path.
1611  * @param path New path to add after being inversed.
1612  *             Path will be either used or freed.
1613  * @param trusted Do we trust that this path is real?
1614  *
1615  * @return path if path was taken, pointer to existing duplicate if exists
1616  *         NULL on error.
1617  */
1618 struct MeshPeerPath *
1619 GMP_add_path_to_origin (struct MeshPeer *peer,
1620                         struct MeshPeerPath *path,
1621                         int trusted)
1622 {
1623   if (NULL == path)
1624     return NULL;
1625   path_invert (path);
1626   return GMP_add_path (peer, path, trusted);
1627 }
1628
1629
1630 /**
1631  * Adds a path to the info of all the peers in the path
1632  *
1633  * @param p Path to process.
1634  * @param confirmed Whether we know if the path works or not.
1635  */
1636 void
1637 GMP_add_path_to_all (const struct MeshPeerPath *p, int confirmed)
1638 {
1639   unsigned int i;
1640
1641   /* TODO: invert and add */
1642   for (i = 0; i < p->length && p->peers[i] != myid; i++) /* skip'em */ ;
1643   for (i++; i < p->length; i++)
1644   {
1645     struct MeshPeer *aux;
1646     struct MeshPeerPath *copy;
1647
1648     aux = GMP_get_short (p->peers[i]);
1649     copy = path_duplicate (p);
1650     copy->length = i + 1;
1651     GMP_add_path (aux, copy, p->length < 3 ? GNUNET_NO : confirmed);
1652   }
1653 }
1654
1655
1656 /**
1657  * Remove any path to the peer that has the extact same peers as the one given.
1658  *
1659  * @param peer Peer to remove the path from.
1660  * @param path Path to remove. Is always destroyed .
1661  */
1662 void
1663 GMP_remove_path (struct MeshPeer *peer, struct MeshPeerPath *path)
1664 {
1665   struct MeshPeerPath *iter;
1666   struct MeshPeerPath *next;
1667
1668   GNUNET_assert (myid == path->peers[0]);
1669   GNUNET_assert (peer->id == path->peers[path->length - 1]);
1670
1671   for (iter = peer->path_head; NULL != iter; iter = next)
1672   {
1673     next = iter->next;
1674     if (0 == memcmp (path->peers, iter->peers,
1675                      sizeof (GNUNET_PEER_Id) * path->length))
1676     {
1677       GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, iter);
1678       path_destroy (iter);
1679       if (path == iter)
1680         return;
1681     }
1682   }
1683   path_destroy (path);
1684 }
1685
1686
1687 /**
1688  * Remove a connection from a neighboring peer.
1689  *
1690  * @param peer Peer to remove connection from.
1691  * @param c Connection to remove.
1692  *
1693  * @return GNUNET_OK on success.
1694  */
1695 int
1696 GMP_remove_connection (struct MeshPeer *peer,
1697                        const struct MeshConnection *c)
1698 {
1699   LOG (GNUNET_ERROR_TYPE_DEBUG, "removing connection %s\n", GMC_2s (c));
1700   LOG (GNUNET_ERROR_TYPE_DEBUG, "from peer %s\n", GMP_2s (peer));
1701
1702   if (NULL == peer || NULL == peer->connections)
1703   {
1704     LOG (GNUNET_ERROR_TYPE_DEBUG,
1705          "Peer %s is not a neighbor!\n",
1706          GMP_2s (peer));
1707     return GNUNET_SYSERR;
1708   }
1709   LOG (GNUNET_ERROR_TYPE_DEBUG,
1710        "peer %s ok, has %u connections.\n",
1711        GMP_2s (peer), GNUNET_CONTAINER_multihashmap_size (peer->connections));
1712
1713   return GNUNET_CONTAINER_multihashmap_remove (peer->connections,
1714                                                GMC_get_id (c),
1715                                                c);
1716 }
1717
1718 /**
1719  * Start the DHT search for new paths towards the peer: we don't have
1720  * enough good connections.
1721  *
1722  * @param peer Destination peer.
1723  */
1724 void
1725 GMP_start_search (struct MeshPeer *peer)
1726 {
1727   if (NULL != peer->search_h)
1728   {
1729     GNUNET_break (0);
1730     return;
1731   }
1732
1733   peer->search_h = GMD_search (GMP_get_id (peer), &search_handler, peer);
1734 }
1735
1736
1737 /**
1738  * Stop the DHT search for new paths towards the peer: we already have
1739  * enough good connections.
1740  *
1741  * @param peer Destination peer.
1742  */
1743 void
1744 GMP_stop_search (struct MeshPeer *peer)
1745 {
1746   if (NULL == peer->search_h)
1747   {
1748     GNUNET_break (0);
1749     return;
1750   }
1751
1752   GMD_search_stop (peer->search_h);
1753   peer->search_h = NULL;
1754 }
1755
1756
1757 /**
1758  * Get the Full ID of a peer.
1759  *
1760  * @param peer Peer to get from.
1761  *
1762  * @return Full ID of peer.
1763  */
1764 const struct GNUNET_PeerIdentity *
1765 GMP_get_id (const struct MeshPeer *peer)
1766 {
1767   return GNUNET_PEER_resolve2 (peer->id);
1768 }
1769
1770
1771 /**
1772  * Get the Short ID of a peer.
1773  *
1774  * @param peer Peer to get from.
1775  *
1776  * @return Short ID of peer.
1777  */
1778 GNUNET_PEER_Id
1779 GMP_get_short_id (const struct MeshPeer *peer)
1780 {
1781   return peer->id;
1782 }
1783
1784
1785 /**
1786  * Get the tunnel towards a peer.
1787  *
1788  * @param peer Peer to get from.
1789  *
1790  * @return Tunnel towards peer.
1791  */
1792 struct MeshTunnel3 *
1793 GMP_get_tunnel (const struct MeshPeer *peer)
1794 {
1795   GNUNET_assert (NULL != peer->tunnel);
1796   return peer->tunnel;
1797 }
1798
1799
1800 /**
1801  * Get the static string for a peer ID.
1802  *
1803  * @param peer Peer.
1804  *
1805  * @return Static string for it's ID.
1806  */
1807 const char *
1808 GMP_2s (const struct MeshPeer *peer)
1809 {
1810   if (NULL == peer)
1811     return "(NULL)";
1812   return GNUNET_i2s (GNUNET_PEER_resolve2 (peer->id));
1813 }