dfeeebd3b79a10e0c951ab342490d2b1b4df7f11
[oweals/gnunet.git] / src / cadet / gnunet-service-cadet_peer.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2013, 2015 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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file cadet/gnunet-service-cadet_peer.c
22  * @brief GNUnet CADET service connection handling
23  * @author Bartlomiej Polot
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27 #include "gnunet_signatures.h"
28 #include "gnunet_transport_service.h"
29 #include "gnunet_core_service.h"
30 #include "gnunet_statistics_service.h"
31 #include "cadet_protocol.h"
32 #include "gnunet-service-cadet_peer.h"
33 #include "gnunet-service-cadet_dht.h"
34 #include "gnunet-service-cadet_connection.h"
35 #include "gnunet-service-cadet_tunnel.h"
36 #include "cadet_path.h"
37
38 #define LOG(level, ...) GNUNET_log_from (level,"cadet-p2p",__VA_ARGS__)
39 #define LOG2(level, ...) GNUNET_log_from_nocheck(level,"cadet-p2p",__VA_ARGS__)
40
41
42 /******************************************************************************/
43 /********************************   STRUCTS  **********************************/
44 /******************************************************************************/
45
46 /**
47  * Struct containing info about a queued transmission to this peer
48  */
49 struct CadetPeerQueue
50 {
51   /**
52    * DLL next
53    */
54   struct CadetPeerQueue *next;
55
56   /**
57    * DLL previous
58    */
59   struct CadetPeerQueue *prev;
60
61   /**
62    * Peer this transmission is directed to.
63    */
64   struct CadetPeer *peer;
65
66   /**
67    * Connection this message belongs to.
68    */
69   struct CadetConnection *c;
70
71   /**
72    * Is FWD in c?
73    */
74   int fwd;
75
76   /**
77    * Pointer to info stucture used as cls.
78    */
79   void *cls;
80
81   /**
82    * Type of message
83    */
84   uint16_t type;
85
86   /**
87    * Type of message
88    */
89   uint16_t payload_type;
90
91   /**
92    * Type of message
93    */
94   uint32_t payload_id;
95
96   /**
97    * Size of the message
98    */
99   size_t size;
100
101   /**
102    * Set when this message starts waiting for CORE.
103    */
104   struct GNUNET_TIME_Absolute start_waiting;
105
106   /**
107    * Function to call on sending.
108    */
109   GCP_sent cont;
110
111   /**
112    * Closure for callback.
113    */
114   void *cont_cls;
115 };
116
117
118 /**
119  * Struct containing all information regarding a given peer
120  */
121 struct CadetPeer
122 {
123   /**
124    * ID of the peer
125    */
126   GNUNET_PEER_Id id;
127
128   /**
129    * Last time we heard from this peer
130    */
131   struct GNUNET_TIME_Absolute last_contact;
132
133   /**
134    * Paths to reach the peer, ordered by ascending hop count
135    */
136   struct CadetPeerPath *path_head;
137
138   /**
139    * Paths to reach the peer, ordered by ascending hop count
140    */
141   struct CadetPeerPath *path_tail;
142
143   /**
144    * Handle to stop the DHT search for paths to this peer
145    */
146   struct GCD_search_handle *search_h;
147
148   /**
149    * Handle to stop the DHT search for paths to this peer
150    */
151   struct GNUNET_SCHEDULER_Task *search_delayed;
152
153   /**
154    * Tunnel to this peer, if any.
155    */
156   struct CadetTunnel *tunnel;
157
158   /**
159    * Connections that go through this peer; indexed by tid.
160    */
161   struct GNUNET_CONTAINER_MultiHashMap *connections;
162
163   /**
164    * Handle for queued transmissions
165    */
166   struct GNUNET_CORE_TransmitHandle *core_transmit;
167
168   /**
169    * Timestamp
170    */
171   struct GNUNET_TIME_Absolute tmt_time;
172
173   /**
174    * Transmission queue to core DLL head
175    */
176   struct CadetPeerQueue *queue_head;
177
178   /**
179    * Transmission queue to core DLL tail
180    */
181   struct CadetPeerQueue *queue_tail;
182
183   /**
184    * How many messages are in the queue to this peer.
185    */
186   unsigned int queue_n;
187
188   /**
189    * Hello message.
190    */
191   struct GNUNET_HELLO_Message* hello;
192 };
193
194
195 /******************************************************************************/
196 /*******************************   GLOBALS  ***********************************/
197 /******************************************************************************/
198
199 /**
200  * Global handle to the statistics service.
201  */
202 extern struct GNUNET_STATISTICS_Handle *stats;
203
204 /**
205  * Local peer own ID (full value).
206  */
207 extern struct GNUNET_PeerIdentity my_full_id;
208
209 /**
210  * Local peer own ID (short)
211  */
212 extern GNUNET_PEER_Id myid;
213
214 /**
215  * Peers known, indexed by PeerIdentity, values of type `struct CadetPeer`.
216  */
217 static struct GNUNET_CONTAINER_MultiPeerMap *peers;
218
219 /**
220  * How many peers do we want to remember?
221  */
222 static unsigned long long max_peers;
223
224 /**
225  * Percentage of messages that will be dropped (for test purposes only).
226  */
227 static unsigned long long drop_percent;
228
229 /**
230  * Handle to communicate with core.
231  */
232 static struct GNUNET_CORE_Handle *core_handle;
233
234 /**
235  * Handle to try to start new connections.
236  */
237 static struct GNUNET_TRANSPORT_Handle *transport_handle;
238
239 /**
240  * Shutdown falg.
241  */
242 static int in_shutdown;
243
244
245 /******************************************************************************/
246 /*****************************     DEBUG      *********************************/
247 /******************************************************************************/
248
249 /**
250  * Log all kinds of info about the queueing status of a peer.
251  *
252  * @param p Peer whose queue to show.
253  * @param level Error level to use for logging.
254  */
255 static void
256 queue_debug (const struct CadetPeer *p, enum GNUNET_ErrorType level)
257 {
258   struct GNUNET_TIME_Relative core_wait_time;
259   struct CadetPeerQueue *q;
260   int do_log;
261
262   do_log = GNUNET_get_log_call_status (level & (~GNUNET_ERROR_TYPE_BULK),
263                                        "cadet-p2p",
264                                        __FILE__, __FUNCTION__, __LINE__);
265   if (0 == do_log)
266     return;
267
268   LOG2 (level, "QQQ Message queue towards %s\n", GCP_2s (p));
269   LOG2 (level, "QQQ  queue length: %u\n", p->queue_n);
270   LOG2 (level, "QQQ  core tmt rdy: %p\n", p->core_transmit);
271   if (NULL != p->core_transmit)
272   {
273     core_wait_time = GNUNET_TIME_absolute_get_duration (p->tmt_time);
274     LOG2 (level, "QQQ  core called %s ago\n",
275           GNUNET_STRINGS_relative_time_to_string (core_wait_time, GNUNET_NO));
276   }
277   for (q = p->queue_head; NULL != q; q = q->next)
278   {
279     LOG2 (level, "QQQ  - %s %s on %s\n",
280          GC_m2s (q->type), GC_f2s (q->fwd), GCC_2s (q->c));
281     LOG2 (level, "QQQ    payload %s, %u\n",
282          GC_m2s (q->payload_type), q->payload_id);
283     LOG2 (level, "QQQ    size: %u bytes\n", q->size);
284   }
285
286   LOG2 (level, "QQQ End queue towards %s\n", GCP_2s (p));
287 }
288
289
290 /**
291  * Log all kinds of info about a peer.
292  *
293  * @param peer Peer.
294  */
295 void
296 GCP_debug (const struct CadetPeer *p, enum GNUNET_ErrorType level)
297 {
298   struct CadetPeerPath *path;
299   unsigned int conns;
300   int do_log;
301
302   do_log = GNUNET_get_log_call_status (level & (~GNUNET_ERROR_TYPE_BULK),
303                                        "cadet-p2p",
304                                        __FILE__, __FUNCTION__, __LINE__);
305   if (0 == do_log)
306     return;
307
308   if (NULL == p)
309   {
310     LOG2 (level, "PPP DEBUG PEER NULL\n");
311     return;
312   }
313
314   LOG2 (level, "PPP DEBUG PEER %s\n", GCP_2s (p));
315   LOG2 (level, "PPP last contact %s\n",
316        GNUNET_STRINGS_absolute_time_to_string (p->last_contact));
317   for (path = p->path_head; NULL != path; path = path->next)
318   {
319     char *s;
320
321     s = path_2s (path);
322     LOG2 (level, "PPP path: %s\n", s);
323     GNUNET_free (s);
324   }
325
326   LOG2 (level, "PPP core transmit handle %p\n", p->core_transmit);
327   LOG2 (level, "PPP DHT GET handle %p\n", p->search_h);
328   conns = 0;
329   if (NULL != p->connections)
330     conns += GNUNET_CONTAINER_multihashmap_size (p->connections);
331   LOG2 (level, "PPP # connections over link to peer: %u\n", conns);
332   queue_debug (p, level);
333   LOG2 (level, "PPP DEBUG END\n");
334 }
335
336
337 /******************************************************************************/
338 /*****************************  CORE HELPERS  *********************************/
339 /******************************************************************************/
340
341
342 /**
343  * Iterator to notify all connections of a broken link. Mark connections
344  * to destroy after all traffic has been sent.
345  *
346  * @param cls Closure (disconnected peer).
347  * @param key Current key code (peer id).
348  * @param value Value in the hash map (connection).
349  *
350  * @return #GNUNET_YES to continue to iterate.
351  */
352 static int
353 notify_broken (void *cls,
354                const struct GNUNET_HashCode *key,
355                void *value)
356 {
357   struct CadetPeer *peer = cls;
358   struct CadetConnection *c = value;
359
360   LOG (GNUNET_ERROR_TYPE_DEBUG,
361        "Notifying %s due to %s disconnect\n",
362        GCC_2s (c), GCP_2s (peer));
363   GCC_neighbor_disconnected (c, peer);
364   return GNUNET_YES;
365 }
366
367
368 /**
369  * Remove the direct path to the peer.
370  *
371  * @param peer Peer to remove the direct path from.
372  *
373  */
374 static struct CadetPeerPath *
375 pop_direct_path (struct CadetPeer *peer)
376 {
377   struct CadetPeerPath *iter;
378
379   for (iter = peer->path_head; NULL != iter; iter = iter->next)
380   {
381     if (2 >= iter->length)
382     {
383       GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, iter);
384       return iter;
385     }
386   }
387   return NULL;
388 }
389
390
391 /******************************************************************************/
392 /***************************** CORE CALLBACKS *********************************/
393 /******************************************************************************/
394
395
396 /**
397  * Method called whenever a given peer connects.
398  *
399  * @param cls closure
400  * @param peer peer identity this notification is about
401  */
402 static void
403 core_connect (void *cls,
404               const struct GNUNET_PeerIdentity *peer)
405 {
406   struct CadetPeer *neighbor;
407   struct CadetPeerPath *path;
408   char own_id[16];
409
410   GCC_check_connections ();
411   GNUNET_snprintf (own_id,
412                    sizeof (own_id),
413                    "%s",
414                    GNUNET_i2s (&my_full_id));
415   neighbor = GCP_get (peer, GNUNET_YES);
416   if (myid == neighbor->id)
417   {
418     LOG (GNUNET_ERROR_TYPE_INFO,
419          "CONNECTED %s (self)\n",
420          own_id);
421     path = path_new (1);
422   }
423   else
424   {
425     LOG (GNUNET_ERROR_TYPE_INFO,
426          "CONNECTED %s <= %s\n",
427          own_id,
428          GNUNET_i2s (peer));
429     path = path_new (2);
430     path->peers[1] = neighbor->id;
431     GNUNET_PEER_change_rc (neighbor->id, 1);
432   }
433   path->peers[0] = myid;
434   GNUNET_PEER_change_rc (myid, 1);
435   GCP_add_path (neighbor, path, GNUNET_YES);
436
437   GNUNET_assert (NULL == neighbor->connections);
438   neighbor->connections = GNUNET_CONTAINER_multihashmap_create (16, GNUNET_NO);
439   GNUNET_assert (NULL != neighbor->connections);
440
441   GNUNET_STATISTICS_update (stats,
442                             "# peers",
443                             1,
444                             GNUNET_NO);
445
446   if ( (NULL != GCP_get_tunnel (neighbor)) &&
447        (0 > GNUNET_CRYPTO_cmp_peer_identity (&my_full_id, peer)) )
448     GCP_connect (neighbor);
449   GCC_check_connections ();
450 }
451
452
453 /**
454  * Method called whenever a peer disconnects.
455  *
456  * @param cls closure
457  * @param peer peer identity this notification is about
458  */
459 static void
460 core_disconnect (void *cls,
461                  const struct GNUNET_PeerIdentity *peer)
462 {
463   struct CadetPeer *p;
464   struct CadetPeerPath *direct_path;
465   char own_id[16];
466
467   GCC_check_connections ();
468   strncpy (own_id, GNUNET_i2s (&my_full_id), 16);
469   own_id[15] = '\0';
470   p = GNUNET_CONTAINER_multipeermap_get (peers, peer);
471   if (NULL == p)
472   {
473     GNUNET_break (GNUNET_YES == in_shutdown);
474     return;
475   }
476   if (myid == p->id)
477     LOG (GNUNET_ERROR_TYPE_INFO,
478          "DISCONNECTED %s (self)\n",
479          own_id);
480   else
481     LOG (GNUNET_ERROR_TYPE_INFO,
482          "DISCONNECTED %s <= %s\n",
483          own_id, GNUNET_i2s (peer));
484   direct_path = pop_direct_path (p);
485   GNUNET_CONTAINER_multihashmap_iterate (p->connections,
486                                          &notify_broken,
487                                          p);
488   GNUNET_CONTAINER_multihashmap_destroy (p->connections);
489   p->connections = NULL;
490   if (NULL != p->core_transmit)
491   {
492     GNUNET_CORE_notify_transmit_ready_cancel (p->core_transmit);
493     p->core_transmit = NULL;
494     p->tmt_time.abs_value_us = 0;
495   }
496   GNUNET_STATISTICS_update (stats,
497                             "# peers",
498                             -1,
499                             GNUNET_NO);
500   path_destroy (direct_path);
501   GCC_check_connections ();
502 }
503
504
505 /**
506  * Functions to handle messages from core
507  */
508 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
509   {&GCC_handle_create, GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE, 0},
510   {&GCC_handle_confirm, GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK,
511     sizeof (struct GNUNET_CADET_ConnectionACK)},
512   {&GCC_handle_broken, GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN,
513     sizeof (struct GNUNET_CADET_ConnectionBroken)},
514   {&GCC_handle_destroy, GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY,
515     sizeof (struct GNUNET_CADET_ConnectionDestroy)},
516   {&GCC_handle_ack, GNUNET_MESSAGE_TYPE_CADET_ACK,
517     sizeof (struct GNUNET_CADET_ACK)},
518   {&GCC_handle_poll, GNUNET_MESSAGE_TYPE_CADET_POLL,
519     sizeof (struct GNUNET_CADET_Poll)},
520   {&GCC_handle_kx, GNUNET_MESSAGE_TYPE_CADET_KX, 0},
521   {&GCC_handle_encrypted, GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED, 0},
522   {&GCC_handle_encrypted, GNUNET_MESSAGE_TYPE_CADET_AX, 0},
523   {NULL, 0, 0}
524 };
525
526
527 /**
528  * To be called on core init/fail.
529  *
530  * @param cls Closure (config)
531  * @param identity the public identity of this peer
532  */
533 static void
534 core_init (void *cls,
535            const struct GNUNET_PeerIdentity *identity)
536 {
537   const struct GNUNET_CONFIGURATION_Handle *c = cls;
538   static int i = 0;
539
540   LOG (GNUNET_ERROR_TYPE_DEBUG, "Core init\n");
541   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)))
542   {
543     LOG (GNUNET_ERROR_TYPE_ERROR, _("Wrong CORE service\n"));
544     LOG (GNUNET_ERROR_TYPE_ERROR, " core id %s\n", GNUNET_i2s (identity));
545     LOG (GNUNET_ERROR_TYPE_ERROR, " my id %s\n", GNUNET_i2s (&my_full_id));
546     GNUNET_CORE_disconnect (core_handle);
547     core_handle = GNUNET_CORE_connect (c, /* Main configuration */
548                                        NULL,      /* Closure passed to CADET functions */
549                                        &core_init,        /* Call core_init once connected */
550                                        &core_connect,     /* Handle connects */
551                                        &core_disconnect,  /* remove peers on disconnects */
552                                        NULL,      /* Don't notify about all incoming messages */
553                                        GNUNET_NO, /* For header only in notification */
554                                        NULL,      /* Don't notify about all outbound messages */
555                                        GNUNET_NO, /* For header-only out notification */
556                                        core_handlers);    /* Register these handlers */
557     if (10 < i++)
558       GNUNET_assert (0);
559   }
560   GML_start ();
561 }
562
563
564 /**
565   * Core callback to write a pre-constructed data packet to core buffer
566   *
567   * @param cls Closure (CadetTransmissionDescriptor with data in "data" member).
568   * @param size Number of bytes available in buf.
569   * @param buf Where the to write the message.
570   *
571   * @return number of bytes written to buf
572   */
573 static size_t
574 send_core_data_raw (void *cls, size_t size, void *buf)
575 {
576   struct GNUNET_MessageHeader *msg = cls;
577   size_t total_size;
578
579   GNUNET_assert (NULL != msg);
580   total_size = ntohs (msg->size);
581
582   if (total_size > size)
583   {
584     GNUNET_break (0);
585     return 0;
586   }
587   memcpy (buf, msg, total_size);
588   GNUNET_free (cls);
589   return total_size;
590 }
591
592
593 /**
594  * Function to send a create connection message to a peer.
595  *
596  * @param c Connection to create.
597  * @param size number of bytes available in buf
598  * @param buf where the callee should write the message
599  * @return number of bytes written to buf
600  */
601 static size_t
602 send_core_connection_create (struct CadetConnection *c, size_t size, void *buf)
603 {
604   struct GNUNET_CADET_ConnectionCreate *msg;
605   struct GNUNET_PeerIdentity *peer_ptr;
606   const struct CadetPeerPath *p = GCC_get_path (c);
607   size_t size_needed;
608   int i;
609
610   if (NULL == p)
611     return 0;
612
613   LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending CONNECTION CREATE...\n");
614   size_needed =
615       sizeof (struct GNUNET_CADET_ConnectionCreate) +
616       p->length * sizeof (struct GNUNET_PeerIdentity);
617
618   if (size < size_needed || NULL == buf)
619   {
620     GNUNET_break (0);
621     return 0;
622   }
623   msg = (struct GNUNET_CADET_ConnectionCreate *) buf;
624   msg->header.size = htons (size_needed);
625   msg->header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE);
626   msg->cid = *GCC_get_id (c);
627
628   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
629   for (i = 0; i < p->length; i++)
630   {
631     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
632   }
633
634   LOG (GNUNET_ERROR_TYPE_DEBUG,
635        "CONNECTION CREATE (%u bytes long) sent!\n",
636        size_needed);
637   return size_needed;
638 }
639
640
641 /**
642  * Creates a path ack message in buf and frees all unused resources.
643  *
644  * @param c Connection to send an ACK on.
645  * @param size number of bytes available in buf
646  * @param buf where the callee should write the message
647  *
648  * @return number of bytes written to buf
649  */
650 static size_t
651 send_core_connection_ack (struct CadetConnection *c, size_t size, void *buf)
652 {
653   struct GNUNET_CADET_ConnectionACK *msg = buf;
654
655   LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending CONNECTION ACK...\n");
656   if (sizeof (struct GNUNET_CADET_ConnectionACK) > size)
657   {
658     GNUNET_break (0);
659     return 0;
660   }
661   msg->header.size = htons (sizeof (struct GNUNET_CADET_ConnectionACK));
662   msg->header.type = htons (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK);
663   msg->cid = *GCC_get_id (c);
664
665   LOG (GNUNET_ERROR_TYPE_DEBUG, "CONNECTION ACK sent!\n");
666   return sizeof (struct GNUNET_CADET_ConnectionACK);
667 }
668
669
670 /******************************************************************************/
671 /********************************   STATIC  ***********************************/
672 /******************************************************************************/
673
674
675 /**
676  * Get priority for a queued message.
677  *
678  * @param q Queued message
679  *
680  * @return CORE priority to use.
681  */
682 static enum GNUNET_CORE_Priority
683 get_priority (struct CadetPeerQueue *q)
684 {
685   enum GNUNET_CORE_Priority low;
686   enum GNUNET_CORE_Priority high;
687
688   if (NULL == q)
689   {
690     GNUNET_break (0);
691     return GNUNET_CORE_PRIO_BACKGROUND;
692   }
693
694   /* Relayed traffic has lower priority, our own traffic has higher */
695   if (NULL == q->c || GNUNET_NO == GCC_is_origin (q->c, q->fwd))
696   {
697     low = GNUNET_CORE_PRIO_BEST_EFFORT;
698     high = GNUNET_CORE_PRIO_URGENT;
699   }
700   else
701   {
702     low = GNUNET_CORE_PRIO_URGENT;
703     high = GNUNET_CORE_PRIO_CRITICAL_CONTROL;
704   }
705
706   /* Bulky payload has lower priority, control traffic has higher. */
707   if (GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED == q->type
708       || GNUNET_MESSAGE_TYPE_CADET_AX == q->type)
709     return low;
710   else
711     return high;
712 }
713
714
715 /**
716  * Destroy the peer_info and free any allocated resources linked to it
717  *
718  * @param peer The peer_info to destroy.
719  * @return #GNUNET_OK on success
720  */
721 static int
722 peer_destroy (struct CadetPeer *peer)
723 {
724   struct GNUNET_PeerIdentity id;
725   struct CadetPeerPath *p;
726   struct CadetPeerPath *nextp;
727
728   GNUNET_PEER_resolve (peer->id, &id);
729   GNUNET_PEER_change_rc (peer->id, -1);
730
731   LOG (GNUNET_ERROR_TYPE_INFO,
732        "destroying peer %s\n",
733        GNUNET_i2s (&id));
734
735   if (GNUNET_YES != GNUNET_CONTAINER_multipeermap_remove (peers, &id, peer))
736   {
737     GNUNET_break (0);
738     LOG (GNUNET_ERROR_TYPE_WARNING, " peer not in peermap!!\n");
739   }
740   GCP_stop_search (peer);
741   p = peer->path_head;
742   while (NULL != p)
743   {
744     nextp = p->next;
745     GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, p);
746     path_destroy (p);
747     p = nextp;
748   }
749   if (NULL != peer->tunnel)
750     GCT_destroy_empty (peer->tunnel);
751   if (NULL != peer->connections)
752   {
753     GNUNET_assert (0 == GNUNET_CONTAINER_multihashmap_size (peer->connections));
754     GNUNET_CONTAINER_multihashmap_destroy (peer->connections);
755   }
756   if (NULL != peer->core_transmit)
757     GNUNET_CORE_notify_transmit_ready_cancel (peer->core_transmit);
758   GNUNET_free_non_null (peer->hello);
759   GNUNET_free (peer);
760   return GNUNET_OK;
761 }
762
763
764 /**
765  * Iterator over peer hash map entries to destroy the peer during in_shutdown.
766  *
767  * @param cls closure
768  * @param key current key code
769  * @param value value in the hash map
770  * @return #GNUNET_YES if we should continue to iterate,
771  *         #GNUNET_NO if not.
772  */
773 static int
774 shutdown_peer (void *cls,
775                const struct GNUNET_PeerIdentity *key,
776                void *value)
777 {
778   struct CadetPeer *p = value;
779   struct CadetTunnel *t = p->tunnel;
780   LOG (GNUNET_ERROR_TYPE_DEBUG, "  shutting down %s\n", GCP_2s (p));
781   if (NULL != t)
782     GCT_destroy (t);
783   p->tunnel = NULL;
784   peer_destroy (p);
785   return GNUNET_YES;
786 }
787
788
789
790 /**
791  * Check if peer is searching for a path (either active or delayed search).
792  *
793  * @param peer Peer to check
794  * @return #GNUNET_YES if there is a search active.
795  *         #GNUNET_NO otherwise.
796  */
797 static int
798 is_searching (const struct CadetPeer *peer)
799 {
800   return ( (NULL == peer->search_h) &&
801            (NULL == peer->search_delayed) ) ?
802     GNUNET_NO : GNUNET_YES;
803 }
804
805
806 /**
807  * @brief Start a search for a peer.
808  *
809  * @param cls Closure (Peer to search for).
810  * @param tc Task context.
811  */
812 static void
813 delayed_search (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
814 {
815   struct CadetPeer *peer = cls;
816
817   peer->search_delayed = NULL;
818   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
819     return;
820   GCC_check_connections ();
821   GCP_start_search (peer);
822   GCC_check_connections ();
823 }
824
825
826 /**
827  * Returns if peer is used (has a tunnel or is neighbor).
828  *
829  * @param peer Peer to check.
830  * @return #GNUNET_YES if peer is in use.
831  */
832 static int
833 peer_is_used (struct CadetPeer *peer)
834 {
835   struct CadetPeerPath *p;
836
837   if (NULL != peer->tunnel)
838     return GNUNET_YES;
839
840   for (p = peer->path_head; NULL != p; p = p->next)
841   {
842     if (p->length < 3)
843       return GNUNET_YES;
844   }
845     return GNUNET_NO;
846 }
847
848
849 /**
850  * Iterator over all the peers to get the oldest timestamp.
851  *
852  * @param cls Closure (unsued).
853  * @param key ID of the peer.
854  * @param value Peer_Info of the peer.
855  */
856 static int
857 peer_get_oldest (void *cls,
858                  const struct GNUNET_PeerIdentity *key,
859                  void *value)
860 {
861   struct CadetPeer *p = value;
862   struct GNUNET_TIME_Absolute *abs = cls;
863
864   /* Don't count active peers */
865   if (GNUNET_YES == peer_is_used (p))
866     return GNUNET_YES;
867
868   if (abs->abs_value_us < p->last_contact.abs_value_us)
869     abs->abs_value_us = p->last_contact.abs_value_us;
870
871   return GNUNET_YES;
872 }
873
874
875 /**
876  * Iterator over all the peers to remove the oldest entry.
877  *
878  * @param cls Closure (unsued).
879  * @param key ID of the peer.
880  * @param value Peer_Info of the peer.
881  */
882 static int
883 peer_timeout (void *cls,
884               const struct GNUNET_PeerIdentity *key,
885               void *value)
886 {
887   struct CadetPeer *p = value;
888   struct GNUNET_TIME_Absolute *abs = cls;
889
890   LOG (GNUNET_ERROR_TYPE_WARNING,
891        "peer %s timeout\n", GNUNET_i2s (key));
892
893   if (p->last_contact.abs_value_us == abs->abs_value_us &&
894       GNUNET_NO == peer_is_used (p))
895   {
896     peer_destroy (p);
897     return GNUNET_NO;
898   }
899     return GNUNET_YES;
900 }
901
902
903 /**
904  * Delete oldest unused peer.
905  */
906 static void
907 peer_delete_oldest (void)
908 {
909   struct GNUNET_TIME_Absolute abs;
910
911   abs = GNUNET_TIME_UNIT_FOREVER_ABS;
912
913   GNUNET_CONTAINER_multipeermap_iterate (peers,
914                                          &peer_get_oldest,
915                                          &abs);
916   GNUNET_CONTAINER_multipeermap_iterate (peers,
917                                          &peer_timeout,
918                                          &abs);
919 }
920
921
922 /**
923  * Choose the best (yet unused) path towards a peer,
924  * considering the tunnel properties.
925  *
926  * @param peer The destination peer.
927  * @return Best current known path towards the peer, if any.
928  */
929 static struct CadetPeerPath *
930 peer_get_best_path (const struct CadetPeer *peer)
931 {
932   struct CadetPeerPath *best_p;
933   struct CadetPeerPath *p;
934   unsigned int best_cost;
935   unsigned int cost;
936
937   best_cost = UINT_MAX;
938   best_p = NULL;
939   for (p = peer->path_head; NULL != p; p = p->next)
940   {
941     if (GNUNET_NO == path_is_valid (p))
942       continue; /* Don't use invalid paths. */
943     if (GNUNET_YES == GCT_is_path_used (peer->tunnel, p))
944       continue; /* If path is already in use, skip it. */
945
946     if ((cost = GCT_get_path_cost (peer->tunnel, p)) < best_cost)
947     {
948       best_cost = cost;
949       best_p = p;
950     }
951   }
952   return best_p;
953 }
954
955
956 /**
957  * Is this queue element sendable?
958  *
959  * - All management traffic is always sendable.
960  * - For payload traffic, check the connection flow control.
961  *
962  * @param q Queue element to inspect.
963  * @return #GNUNET_YES if it is sendable, #GNUNET_NO otherwise.
964  */
965 static int
966 queue_is_sendable (struct CadetPeerQueue *q)
967 {
968   /* Is PID-independent? */
969   switch (q->type)
970   {
971     case GNUNET_MESSAGE_TYPE_CADET_ACK:
972     case GNUNET_MESSAGE_TYPE_CADET_POLL:
973     case GNUNET_MESSAGE_TYPE_CADET_KX:
974     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
975     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
976     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY:
977     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN:
978       return GNUNET_YES;
979
980     case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
981     case GNUNET_MESSAGE_TYPE_CADET_AX:
982       break;
983
984     default:
985       GNUNET_break (0);
986   }
987
988   return GCC_is_sendable (q->c, q->fwd);
989 }
990
991
992 /**
993  * Get first sendable message.
994  *
995  * @param peer The destination peer.
996  *
997  * @return First transmittable message, if any. Otherwise, NULL.
998  */
999 static struct CadetPeerQueue *
1000 peer_get_first_message (const struct CadetPeer *peer)
1001 {
1002   struct CadetPeerQueue *q;
1003
1004   for (q = peer->queue_head; NULL != q; q = q->next)
1005   {
1006     LOG (GNUNET_ERROR_TYPE_DEBUG, "Checking q:%p on c:%s\n", q, GCC_2s (q->c));
1007     if (queue_is_sendable (q))
1008       return q;
1009   }
1010
1011   return NULL;
1012 }
1013
1014
1015 /**
1016  * Function to process paths received for a new peer addition. The recorded
1017  * paths form the initial tunnel, which can be optimized later.
1018  * Called on each result obtained for the DHT search.
1019  *
1020  * @param cls Closure (peer towards a path has been found).
1021  * @param path Path created from the DHT query. Will be freed afterwards.
1022  */
1023 static void
1024 search_handler (void *cls, const struct CadetPeerPath *path)
1025 {
1026   struct CadetPeer *peer = cls;
1027   unsigned int connection_count;
1028
1029   GCC_check_connections ();
1030   GCP_add_path_to_all (path, GNUNET_NO);
1031
1032   /* Count connections */
1033   connection_count = GCT_count_connections (peer->tunnel);
1034
1035   /* If we already have our minimum (or more) connections, it's enough */
1036   if (CONNECTIONS_PER_TUNNEL <= connection_count)
1037   {
1038     GCC_check_connections ();
1039     return;
1040   }
1041
1042   if (CADET_TUNNEL_SEARCHING == GCT_get_cstate (peer->tunnel))
1043   {
1044     LOG (GNUNET_ERROR_TYPE_DEBUG, " ... connect!\n");
1045     GCP_connect (peer);
1046   }
1047   GCC_check_connections ();
1048 }
1049
1050
1051 /**
1052  * Adjust core requested size to accomodate an ACK.
1053  *
1054  * @param message_size Requested size.
1055  *
1056  * @return Size enough to fit @c message_size and an ACK.
1057  */
1058 static size_t
1059 get_core_size (size_t message_size)
1060 {
1061   return message_size + sizeof (struct GNUNET_CADET_ACK);
1062 }
1063
1064
1065 /**
1066  * Fill a core buffer with the appropriate data for the queued message.
1067  *
1068  * @param queue Queue element for the message.
1069  * @param buf Core buffer to fill.
1070  * @param size Size remaining in @c buf.
1071  * @param[out] pid In case its an encrypted payload, set payload.
1072  *
1073  * @return Bytes written to @c buf.
1074  */
1075 static size_t
1076 fill_buf (struct CadetPeerQueue *queue, void *buf, size_t size, uint32_t *pid)
1077 {
1078   struct CadetConnection *c = queue->c;
1079   size_t msg_size;
1080
1081   switch (queue->type)
1082   {
1083     case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
1084       *pid = GCC_get_pid (queue->c, queue->fwd);
1085       LOG (GNUNET_ERROR_TYPE_DEBUG, "  otr payload ID %u\n", *pid);
1086       msg_size = send_core_data_raw (queue->cls, size, buf);
1087       ((struct GNUNET_CADET_Encrypted *) buf)->pid = htonl (*pid);
1088       break;
1089     case GNUNET_MESSAGE_TYPE_CADET_AX:
1090       *pid = GCC_get_pid (queue->c, queue->fwd);
1091       LOG (GNUNET_ERROR_TYPE_DEBUG, "  ax payload ID %u\n", *pid);
1092       msg_size = send_core_data_raw (queue->cls, size, buf);
1093       ((struct GNUNET_CADET_AX *) buf)->pid = htonl (*pid);
1094       break;
1095     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY:
1096     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN:
1097     case GNUNET_MESSAGE_TYPE_CADET_KX:
1098     case GNUNET_MESSAGE_TYPE_CADET_ACK:
1099     case GNUNET_MESSAGE_TYPE_CADET_POLL:
1100       LOG (GNUNET_ERROR_TYPE_DEBUG, "  raw %s\n", GC_m2s (queue->type));
1101       msg_size = send_core_data_raw (queue->cls, size, buf);
1102       break;
1103     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
1104       LOG (GNUNET_ERROR_TYPE_DEBUG, "  path create\n");
1105       if (GCC_is_origin (c, GNUNET_YES))
1106         msg_size = send_core_connection_create (c, size, buf);
1107       else
1108         msg_size = send_core_data_raw (queue->cls, size, buf);
1109       break;
1110     case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
1111       LOG (GNUNET_ERROR_TYPE_DEBUG, "  path ack\n");
1112       if (GCC_is_origin (c, GNUNET_NO) ||
1113           GCC_is_origin (c, GNUNET_YES))
1114       {
1115         msg_size = send_core_connection_ack (c, size, buf);
1116       }
1117       else
1118       {
1119         msg_size = send_core_data_raw (queue->cls, size, buf);
1120       }
1121       break;
1122     case GNUNET_MESSAGE_TYPE_CADET_DATA:
1123     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_CREATE:
1124     case GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY:
1125       /* This should be encapsulted */
1126       msg_size = 0;
1127       GNUNET_assert (0);
1128       break;
1129     default:
1130       GNUNET_break (0);
1131       LOG (GNUNET_ERROR_TYPE_WARNING, "  type unknown: %u\n", queue->type);
1132       msg_size = 0;
1133   }
1134
1135   GNUNET_assert (size >= msg_size);
1136
1137   return msg_size;
1138 }
1139
1140
1141 /**
1142  * Debug function should NEVER return true in production code, useful to
1143  * simulate losses for testcases.
1144  *
1145  * @param q Queue handle with info about the message.
1146  *
1147  * @return #GNUNET_YES or #GNUNET_NO with the decision to drop.
1148  */
1149 static int
1150 should_I_drop (struct CadetPeerQueue *q)
1151 {
1152   if (0 == drop_percent)
1153     return GNUNET_NO;
1154
1155   if (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 101) < drop_percent)
1156     return GNUNET_YES;
1157
1158   return GNUNET_NO;
1159 }
1160
1161
1162 /**
1163  * Core callback to write a queued packet to core buffer
1164  *
1165  * @param cls Closure (peer info).
1166  * @param size Number of bytes available in buf.
1167  * @param buf Where the to write the message.
1168  *
1169  * @return number of bytes written to buf
1170  */
1171 static size_t
1172 queue_send (void *cls, size_t size, void *buf)
1173 {
1174   struct CadetPeer *peer = cls;
1175   struct CadetConnection *c;
1176   struct CadetPeerQueue *queue;
1177   struct GNUNET_TIME_Relative core_wait_time;
1178   const char *wait_s;
1179   const struct GNUNET_PeerIdentity *dst_id;
1180   size_t msg_size;
1181   size_t total_size;
1182   size_t rest;
1183   char *dst;
1184   uint32_t pid;
1185
1186   GCC_check_connections ();
1187   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n");
1188   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n");
1189   LOG (GNUNET_ERROR_TYPE_DEBUG, "Queue send towards %s (max %u)\n",
1190        GCP_2s (peer), size);
1191
1192   /* Sanity checking */
1193   if (NULL == buf || 0 == size)
1194   {
1195     LOG (GNUNET_ERROR_TYPE_DEBUG, "  not allowed/\n");
1196     if (GNUNET_NO == in_shutdown)
1197     {
1198       queue = peer_get_first_message (peer);
1199       if (NULL == queue)
1200       {
1201         peer->core_transmit = NULL;
1202         peer->tmt_time.abs_value_us = 0;
1203         GCC_check_connections ();
1204         return 0;
1205       }
1206       dst_id = GNUNET_PEER_resolve2 (peer->id);
1207       peer->core_transmit =
1208           GNUNET_CORE_notify_transmit_ready (core_handle,
1209                                              GNUNET_NO, get_priority (queue),
1210                                              GNUNET_TIME_UNIT_FOREVER_REL,
1211                                              dst_id,
1212                                              get_core_size (queue->size),
1213                                              &queue_send,
1214                                              peer);
1215       peer->tmt_time = GNUNET_TIME_absolute_get ();
1216     }
1217     else
1218     {
1219       peer->core_transmit = NULL;
1220       peer->tmt_time.abs_value_us = 0;
1221     }
1222     GCC_check_connections ();
1223     return 0;
1224   }
1225
1226   /* Init */
1227   rest = size;
1228   total_size = 0;
1229   dst = (char *) buf;
1230   pid = 0;
1231   peer->core_transmit = NULL;
1232   queue = peer_get_first_message (peer);
1233   if (NULL == queue)
1234   {
1235     GNUNET_break (0); /* Core tmt_rdy should've been canceled */
1236     peer->tmt_time.abs_value_us = 0;
1237     return 0;
1238   }
1239   core_wait_time = GNUNET_TIME_absolute_get_duration (peer->tmt_time);
1240   wait_s = GNUNET_STRINGS_relative_time_to_string (core_wait_time, GNUNET_YES);
1241   if (core_wait_time.rel_value_us >= 1000000)
1242   {
1243     LOG (GNUNET_ERROR_TYPE_WARNING,
1244          " %s: core wait time %s (> 1 second) for %u bytes\n",
1245          GCP_2s (peer), wait_s, queue->size);
1246   }
1247   peer->tmt_time.abs_value_us = 0;
1248
1249   /* Copy all possible messages to the core buffer */
1250   while (NULL != queue && rest >= queue->size)
1251   {
1252     c = queue->c;
1253
1254     LOG (GNUNET_ERROR_TYPE_DEBUG, "  on conn %s %s\n",
1255          GCC_2s (c), GC_f2s(queue->fwd));
1256     LOG (GNUNET_ERROR_TYPE_DEBUG, "  size %u ok (%u/%u)\n",
1257          queue->size, total_size, size);
1258
1259     msg_size = fill_buf (queue, (void *) dst, size, &pid);
1260
1261     if (should_I_drop (queue))
1262     {
1263       LOG (GNUNET_ERROR_TYPE_WARNING, "DD %s (%s %u) on conn %s %s\n",
1264            GC_m2s (queue->type), GC_m2s (queue->payload_type),
1265            queue->payload_id, GCC_2s (c), GC_f2s (queue->fwd));
1266       msg_size = 0;
1267     }
1268     else
1269     {
1270       LOG (GNUNET_ERROR_TYPE_INFO,
1271            ">>> %s (%s %4u) on conn %s (%p) %s [%5u], after %s\n",
1272            GC_m2s (queue->type), GC_m2s (queue->payload_type),
1273            queue->payload_id, GCC_2s (c), c,
1274            GC_f2s (queue->fwd), msg_size, wait_s);
1275     }
1276     total_size += msg_size;
1277     rest -= msg_size;
1278     dst = &dst[msg_size];
1279     msg_size = 0;
1280
1281     /* Free queue, but cls was freed by send_core_* in fill_buf. */
1282     (void) GCP_queue_destroy (queue, GNUNET_NO, GNUNET_YES, pid);
1283
1284     /* Next! */
1285     queue = peer_get_first_message (peer);
1286   }
1287
1288   /* If more data in queue, send next */
1289   if (NULL != queue)
1290   {
1291     LOG (GNUNET_ERROR_TYPE_DEBUG, "  more data! (%u)\n", queue->size);
1292     if (NULL == peer->core_transmit)
1293     {
1294       dst_id = GNUNET_PEER_resolve2 (peer->id);
1295       peer->core_transmit =
1296           GNUNET_CORE_notify_transmit_ready (core_handle,
1297                                              GNUNET_NO, get_priority (queue),
1298                                              GNUNET_TIME_UNIT_FOREVER_REL,
1299                                              dst_id,
1300                                              get_core_size (queue->size),
1301                                              &queue_send,
1302                                              peer);
1303       peer->tmt_time = GNUNET_TIME_absolute_get ();
1304       queue->start_waiting = GNUNET_TIME_absolute_get ();
1305     }
1306     else
1307     {
1308       LOG (GNUNET_ERROR_TYPE_DEBUG, "*   tmt rdy called somewhere else\n");
1309     }
1310 //     GCC_start_poll (); FIXME needed?
1311   }
1312   else
1313   {
1314 //     GCC_stop_poll(); FIXME needed?
1315   }
1316
1317   LOG (GNUNET_ERROR_TYPE_DEBUG, "  return %d\n", total_size);
1318   queue_debug (peer, GNUNET_ERROR_TYPE_DEBUG);
1319   GCC_check_connections ();
1320   return total_size;
1321 }
1322
1323
1324 /******************************************************************************/
1325 /********************************    API    ***********************************/
1326 /******************************************************************************/
1327
1328
1329 /**
1330  * Free a transmission that was already queued with all resources
1331  * associated to the request.
1332  *
1333  * If connection was marked to be destroyed, and this was the last queued
1334  * message on it, the connection will be free'd as a result.
1335  *
1336  * @param queue Queue handler to cancel.
1337  * @param clear_cls Is it necessary to free associated cls?
1338  * @param sent Was it really sent? (Could have been canceled)
1339  * @param pid PID, if relevant (was sent and was a payload message).
1340  *
1341  * @return #GNUNET_YES if connection was destroyed as a result,
1342  *         #GNUNET_NO otherwise.
1343  */
1344 int
1345 GCP_queue_destroy (struct CadetPeerQueue *queue,
1346                    int clear_cls,
1347                    int sent,
1348                    uint32_t pid)
1349 {
1350   struct CadetPeer *peer;
1351   int connection_destroyed;
1352
1353   GCC_check_connections ();
1354   peer = queue->peer;
1355   LOG (GNUNET_ERROR_TYPE_DEBUG, "queue destroy %s\n", GC_m2s (queue->type));
1356   if (GNUNET_YES == clear_cls)
1357   {
1358     LOG (GNUNET_ERROR_TYPE_DEBUG, " free cls\n");
1359     switch (queue->type)
1360     {
1361       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY:
1362         LOG (GNUNET_ERROR_TYPE_INFO, "destroying a DESTROY message\n");
1363         /* fall through */
1364       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
1365       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
1366       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN:
1367       case GNUNET_MESSAGE_TYPE_CADET_KX:
1368       case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
1369       case GNUNET_MESSAGE_TYPE_CADET_AX:
1370       case GNUNET_MESSAGE_TYPE_CADET_ACK:
1371       case GNUNET_MESSAGE_TYPE_CADET_POLL:
1372         GNUNET_free_non_null (queue->cls);
1373         break;
1374
1375       default:
1376         GNUNET_break (0);
1377         LOG (GNUNET_ERROR_TYPE_ERROR, " type %s unknown!\n",
1378              GC_m2s (queue->type));
1379     }
1380   }
1381   GNUNET_CONTAINER_DLL_remove (peer->queue_head, peer->queue_tail, queue);
1382
1383   if (queue->type != GNUNET_MESSAGE_TYPE_CADET_ACK &&
1384       queue->type != GNUNET_MESSAGE_TYPE_CADET_POLL)
1385   {
1386     peer->queue_n--;
1387   }
1388
1389   if (NULL != queue->cont)
1390   {
1391     struct GNUNET_TIME_Relative wait_time;
1392
1393     wait_time = GNUNET_TIME_absolute_get_duration (queue->start_waiting);
1394     LOG (GNUNET_ERROR_TYPE_DEBUG, " calling callback, time elapsed %s\n",
1395          GNUNET_STRINGS_relative_time_to_string (wait_time, GNUNET_NO));
1396     connection_destroyed = queue->cont (queue->cont_cls,
1397                                         queue->c, sent, queue->type, pid,
1398                                         queue->fwd, queue->size, wait_time);
1399   }
1400   else
1401   {
1402     connection_destroyed = GNUNET_NO;
1403   }
1404
1405   if (NULL == peer_get_first_message (peer) && NULL != peer->core_transmit)
1406   {
1407     GNUNET_CORE_notify_transmit_ready_cancel (peer->core_transmit);
1408     peer->core_transmit = NULL;
1409     peer->tmt_time.abs_value_us = 0;
1410   }
1411
1412   GNUNET_free (queue);
1413   GCC_check_connections ();
1414   return connection_destroyed;
1415 }
1416
1417
1418 /**
1419  * @brief Queue and pass message to core when possible.
1420  *
1421  * @param peer Peer towards which to queue the message.
1422  * @param cls Closure (@c type dependant). It will be used by queue_send to
1423  *            build the message to be sent if not already prebuilt.
1424  * @param type Type of the message.
1425  * @param payload_type Type of the message's payload
1426  *                     0 if the message is a retransmission (unknown payload).
1427  *                     UINT16_MAX if the message does not have payload.
1428  * @param payload_id ID of the payload (MID, ACK #, etc)
1429  * @param size Size of the message.
1430  * @param c Connection this message belongs to (can be NULL).
1431  * @param fwd Is this a message going root->dest? (FWD ACK are NOT FWD!)
1432  * @param cont Continuation to be called once CORE has taken the message.
1433  * @param cont_cls Closure for @c cont.
1434  *
1435  * @return Handle to cancel the message before it is sent. Once cont is called
1436  *         message has been sent and therefore the handle is no longer valid.
1437  */
1438 struct CadetPeerQueue *
1439 GCP_queue_add (struct CadetPeer *peer,
1440                void *cls,
1441                uint16_t type,
1442                uint16_t payload_type,
1443                uint32_t payload_id,
1444                size_t size,
1445                struct CadetConnection *c,
1446                int fwd,
1447                GCP_sent cont,
1448                void *cont_cls)
1449 {
1450   struct CadetPeerQueue *q;
1451   int priority;
1452   int call_core;
1453
1454   GCC_check_connections ();
1455   LOG (GNUNET_ERROR_TYPE_DEBUG,
1456        "que %s (%s %4u) on conn %s (%p) %s towards %s (size %u)\n",
1457        GC_m2s (type), GC_m2s (payload_type), payload_id,
1458        GCC_2s (c), c, GC_f2s (fwd), GCP_2s (peer), size);
1459
1460   if (NULL == peer->connections)
1461   {
1462     /* We are not connected to this peer, ignore request. */
1463     LOG (GNUNET_ERROR_TYPE_INFO, "%s not a neighbor\n", GCP_2s (peer));
1464     GNUNET_STATISTICS_update (stats, "# messages dropped due to wrong hop", 1,
1465                               GNUNET_NO);
1466     return NULL;
1467   }
1468
1469   priority = 0;
1470
1471   if (GNUNET_MESSAGE_TYPE_CADET_POLL == type ||
1472       GNUNET_MESSAGE_TYPE_CADET_ACK == type)
1473   {
1474     priority = 100;
1475   }
1476
1477   LOG (GNUNET_ERROR_TYPE_DEBUG, "priority %d\n", priority);
1478
1479   call_core = (NULL == c || type == GNUNET_MESSAGE_TYPE_CADET_KX) ?
1480                GNUNET_YES : GCC_is_sendable (c, fwd);
1481   q = GNUNET_new (struct CadetPeerQueue);
1482   q->cls = cls;
1483   q->type = type;
1484   q->payload_type = payload_type;
1485   q->payload_id = payload_id;
1486   q->size = size;
1487   q->peer = peer;
1488   q->c = c;
1489   q->fwd = fwd;
1490   q->cont = cont;
1491   q->cont_cls = cont_cls;
1492   if (100 > priority)
1493   {
1494     GNUNET_CONTAINER_DLL_insert_tail (peer->queue_head, peer->queue_tail, q);
1495     peer->queue_n++;
1496   }
1497   else
1498   {
1499     GNUNET_CONTAINER_DLL_insert (peer->queue_head, peer->queue_tail, q);
1500     call_core = GNUNET_YES;
1501   }
1502
1503   q->start_waiting = GNUNET_TIME_absolute_get ();
1504   if (NULL == peer->core_transmit && GNUNET_YES == call_core)
1505   {
1506     LOG (GNUNET_ERROR_TYPE_DEBUG,
1507          "calling core tmt rdy towards %s for %u bytes\n",
1508          GCP_2s (peer), size);
1509     peer->core_transmit =
1510         GNUNET_CORE_notify_transmit_ready (core_handle,
1511                                            GNUNET_NO, get_priority (q),
1512                                            GNUNET_TIME_UNIT_FOREVER_REL,
1513                                            GNUNET_PEER_resolve2 (peer->id),
1514                                            get_core_size (size),
1515                                            &queue_send, peer);
1516     peer->tmt_time = GNUNET_TIME_absolute_get ();
1517   }
1518   else if (GNUNET_NO == call_core)
1519   {
1520     LOG (GNUNET_ERROR_TYPE_DEBUG, "core tmt rdy towards %s not needed\n",
1521          GCP_2s (peer));
1522
1523   }
1524   else
1525   {
1526     struct GNUNET_TIME_Relative elapsed;
1527     elapsed = GNUNET_TIME_absolute_get_duration (peer->tmt_time);
1528     LOG (GNUNET_ERROR_TYPE_DEBUG, "core tmt rdy towards %s already called %s\n",
1529          GCP_2s (peer),
1530          GNUNET_STRINGS_relative_time_to_string (elapsed, GNUNET_NO));
1531
1532   }
1533   queue_debug (peer, GNUNET_ERROR_TYPE_DEBUG);
1534   GCC_check_connections ();
1535   return q;
1536 }
1537
1538
1539 /**
1540  * Cancel all queued messages to a peer that belong to a certain connection.
1541  *
1542  * @param peer Peer towards whom to cancel.
1543  * @param c Connection whose queued messages to cancel. Might be destroyed by
1544  *          the sent continuation call.
1545  */
1546 void
1547 GCP_queue_cancel (struct CadetPeer *peer,
1548                   struct CadetConnection *c)
1549 {
1550   struct CadetPeerQueue *q;
1551   struct CadetPeerQueue *next;
1552   struct CadetPeerQueue *prev;
1553   int connection_destroyed;
1554
1555   GCC_check_connections ();
1556   connection_destroyed = GNUNET_NO;
1557   for (q = peer->queue_head; NULL != q; q = next)
1558   {
1559     prev = q->prev;
1560     if (q->c == c)
1561     {
1562       LOG (GNUNET_ERROR_TYPE_DEBUG,
1563            "GMP queue cancel %s\n",
1564            GC_m2s (q->type));
1565       GNUNET_assert (GNUNET_NO == connection_destroyed);
1566       if (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY == q->type)
1567       {
1568         q->c = NULL;
1569       }
1570       else
1571       {
1572         connection_destroyed = GCP_queue_destroy (q, GNUNET_YES, GNUNET_NO, 0);
1573       }
1574
1575       /* Get next from prev, q->next might be already freed:
1576        * queue destroy -> callback -> GCC_destroy -> cancel_queues -> here
1577        */
1578       if (NULL == prev)
1579         next = peer->queue_head;
1580       else
1581         next = prev->next;
1582     }
1583     else
1584     {
1585       next = q->next;
1586     }
1587   }
1588
1589   if ( (NULL == peer->queue_head) &&
1590        (NULL != peer->core_transmit) )
1591   {
1592     GNUNET_CORE_notify_transmit_ready_cancel (peer->core_transmit);
1593     peer->core_transmit = NULL;
1594     peer->tmt_time.abs_value_us = 0;
1595   }
1596   GCC_check_connections ();
1597 }
1598
1599
1600 /**
1601  * Get the first transmittable message for a connection.
1602  *
1603  * @param peer Neighboring peer.
1604  * @param c Connection.
1605  *
1606  * @return First transmittable message.
1607  */
1608 static struct CadetPeerQueue *
1609 connection_get_first_message (struct CadetPeer *peer, struct CadetConnection *c)
1610 {
1611   struct CadetPeerQueue *q;
1612
1613   for (q = peer->queue_head; NULL != q; q = q->next)
1614   {
1615     if (q->c != c)
1616       continue;
1617     if (queue_is_sendable (q))
1618     {
1619       LOG (GNUNET_ERROR_TYPE_DEBUG, "  sendable!!\n");
1620       return q;
1621     }
1622     LOG (GNUNET_ERROR_TYPE_DEBUG, "  not sendable\n");
1623   }
1624
1625   return NULL;
1626 }
1627
1628
1629 /**
1630  * Get the first message for a connection and unqueue it.
1631  *
1632  * Only tunnel (or higher) level messages are unqueued. Connection specific
1633  * messages are silently destroyed upon encounter.
1634  *
1635  * @param peer Neighboring peer.
1636  * @param c Connection.
1637  * @param destroyed[in/out] Was the connection destroyed (prev/as a result)?.
1638  *                          Can NOT be NULL.
1639  *
1640  * @return First message for this connection.
1641  */
1642 struct GNUNET_MessageHeader *
1643 GCP_connection_pop (struct CadetPeer *peer,
1644                     struct CadetConnection *c,
1645                     int *destroyed)
1646 {
1647   struct CadetPeerQueue *q;
1648   struct CadetPeerQueue *next;
1649   struct GNUNET_MessageHeader *msg;
1650   int dest;
1651
1652   GCC_check_connections ();
1653   GNUNET_assert (NULL != destroyed);
1654   LOG (GNUNET_ERROR_TYPE_DEBUG, "connection_pop on conn %p\n", c);
1655   for (q = peer->queue_head; NULL != q; q = next)
1656   {
1657     next = q->next;
1658     if (q->c != c)
1659       continue;
1660     LOG (GNUNET_ERROR_TYPE_DEBUG, " - queued: %s (%s %u), cont: %p\n",
1661          GC_m2s (q->type), GC_m2s (q->payload_type), q->payload_id,
1662          q->cont);
1663     switch (q->type)
1664     {
1665       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
1666       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
1667       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY:
1668       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN:
1669       case GNUNET_MESSAGE_TYPE_CADET_ACK:
1670       case GNUNET_MESSAGE_TYPE_CADET_POLL:
1671         dest = GCP_queue_destroy (q, GNUNET_YES, GNUNET_NO, 0);
1672         if (GNUNET_YES == dest)
1673         {
1674           GNUNET_break (GNUNET_NO == *destroyed);
1675           *destroyed = GNUNET_YES;
1676         }
1677         continue;
1678
1679       case GNUNET_MESSAGE_TYPE_CADET_KX:
1680       case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
1681       case GNUNET_MESSAGE_TYPE_CADET_AX:
1682       case GNUNET_MESSAGE_TYPE_CADET_AX_KX:
1683         msg = (struct GNUNET_MessageHeader *) q->cls;
1684         dest = GCP_queue_destroy (q, GNUNET_NO, GNUNET_NO, 0);
1685         if (GNUNET_YES == dest)
1686         {
1687           GNUNET_break (GNUNET_NO == *destroyed);
1688           *destroyed = GNUNET_YES;
1689         }
1690         return msg;
1691
1692       default:
1693         GNUNET_break (0);
1694         LOG (GNUNET_ERROR_TYPE_DEBUG, "Unknown message %s\n", GC_m2s (q->type));
1695     }
1696   }
1697   GCC_check_connections ();
1698   return NULL;
1699 }
1700
1701
1702 /**
1703  * Unlock a possibly locked queue for a connection.
1704  *
1705  * If there is a message that can be sent on this connection, call core for it.
1706  * Otherwise (if core transmit is already called or there is no sendable
1707  * message) do nothing.
1708  *
1709  * @param peer Peer who keeps the queue.
1710  * @param c Connection whose messages to unlock.
1711  */
1712 void
1713 GCP_queue_unlock (struct CadetPeer *peer, struct CadetConnection *c)
1714 {
1715   struct CadetPeerQueue *q;
1716   size_t size;
1717
1718   GCC_check_connections ();
1719   if (NULL != peer->core_transmit)
1720   {
1721     LOG (GNUNET_ERROR_TYPE_DEBUG, "  already unlocked!\n");
1722     return; /* Already unlocked */
1723   }
1724
1725   q = connection_get_first_message (peer, c);
1726   if (NULL == q)
1727   {
1728     LOG (GNUNET_ERROR_TYPE_DEBUG, "  queue empty!\n");
1729     return; /* Nothing to transmit */
1730   }
1731
1732   size = q->size;
1733   peer->core_transmit =
1734       GNUNET_CORE_notify_transmit_ready (core_handle,
1735                                          GNUNET_NO, get_priority (q),
1736                                          GNUNET_TIME_UNIT_FOREVER_REL,
1737                                          GNUNET_PEER_resolve2 (peer->id),
1738                                          get_core_size (size),
1739                                          &queue_send,
1740                                          peer);
1741   peer->tmt_time = GNUNET_TIME_absolute_get ();
1742   GCC_check_connections ();
1743 }
1744
1745
1746 /**
1747  * Initialize the peer subsystem.
1748  *
1749  * @param c Configuration.
1750  */
1751 void
1752 GCP_init (const struct GNUNET_CONFIGURATION_Handle *c)
1753 {
1754   LOG (GNUNET_ERROR_TYPE_DEBUG,
1755        "GCP_init\n");
1756   in_shutdown = GNUNET_NO;
1757   peers = GNUNET_CONTAINER_multipeermap_create (128, GNUNET_NO);
1758   if (GNUNET_OK !=
1759       GNUNET_CONFIGURATION_get_value_number (c, "CADET", "MAX_PEERS",
1760                                              &max_peers))
1761   {
1762     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1763                                "CADET", "MAX_PEERS", "USING DEFAULT");
1764     max_peers = 1000;
1765   }
1766
1767   if (GNUNET_OK !=
1768       GNUNET_CONFIGURATION_get_value_number (c, "CADET", "DROP_PERCENT",
1769                                              &drop_percent))
1770   {
1771     drop_percent = 0;
1772   }
1773   else
1774   {
1775     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1776     LOG (GNUNET_ERROR_TYPE_WARNING, "Cadet is running with DROP enabled.\n");
1777     LOG (GNUNET_ERROR_TYPE_WARNING, "This is NOT a good idea!\n");
1778     LOG (GNUNET_ERROR_TYPE_WARNING, "Remove DROP_PERCENT from config file.\n");
1779     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1780   }
1781
1782   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
1783                                      NULL,      /* Closure passed to CADET functions */
1784                                      &core_init,        /* Call core_init once connected */
1785                                      &core_connect,     /* Handle connects */
1786                                      &core_disconnect,  /* remove peers on disconnects */
1787                                      NULL,      /* Don't notify about all incoming messages */
1788                                      GNUNET_NO, /* For header only in notification */
1789                                      NULL,      /* Don't notify about all outbound messages */
1790                                      GNUNET_NO, /* For header-only out notification */
1791                                      core_handlers);    /* Register these handlers */
1792   if (GNUNET_YES !=
1793       GNUNET_CONFIGURATION_get_value_yesno (c, "CADET", "DISABLE_TRY_CONNECT"))
1794   {
1795     transport_handle = GNUNET_TRANSPORT_connect (c, &my_full_id, NULL, /* cls */
1796                                                  /* Notify callbacks */
1797                                                  NULL, NULL, NULL);
1798   }
1799   else
1800   {
1801     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1802     LOG (GNUNET_ERROR_TYPE_WARNING, "*  DISABLE TRYING CONNECT in config  *\n");
1803     LOG (GNUNET_ERROR_TYPE_WARNING, "*  Use this only for test purposes.  *\n");
1804     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1805     transport_handle = NULL;
1806   }
1807
1808
1809
1810   if (NULL == core_handle)
1811   {
1812     GNUNET_break (0);
1813     GNUNET_SCHEDULER_shutdown ();
1814     return;
1815   }
1816
1817 }
1818
1819
1820 /**
1821  * Shut down the peer subsystem.
1822  */
1823 void
1824 GCP_shutdown (void)
1825 {
1826   LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down peers\n");
1827   in_shutdown = GNUNET_YES;
1828   GNUNET_CONTAINER_multipeermap_iterate (peers,
1829                                          &shutdown_peer,
1830                                          NULL);
1831   if (NULL != core_handle)
1832   {
1833     GNUNET_CORE_disconnect (core_handle);
1834     core_handle = NULL;
1835   }
1836   if (NULL != transport_handle)
1837   {
1838     GNUNET_TRANSPORT_disconnect (transport_handle);
1839     transport_handle = NULL;
1840   }
1841   GNUNET_PEER_change_rc (myid, -1);
1842   GNUNET_CONTAINER_multipeermap_destroy (peers);
1843   peers = NULL;
1844 }
1845
1846
1847 /**
1848  * Retrieve the CadetPeer stucture associated with the peer. Optionally create
1849  * one and insert it in the appropriate structures if the peer is not known yet.
1850  *
1851  * @param peer_id Full identity of the peer.
1852  * @param create #GNUNET_YES if a new peer should be created if unknown.
1853  *               #GNUNET_NO otherwise.
1854  *
1855  * @return Existing or newly created peer structure.
1856  *         NULL if unknown and not requested @a create
1857  */
1858 struct CadetPeer *
1859 GCP_get (const struct GNUNET_PeerIdentity *peer_id, int create)
1860 {
1861   struct CadetPeer *peer;
1862
1863   peer = GNUNET_CONTAINER_multipeermap_get (peers, peer_id);
1864   if (NULL == peer)
1865   {
1866     peer = GNUNET_new (struct CadetPeer);
1867     if (GNUNET_CONTAINER_multipeermap_size (peers) > max_peers)
1868     {
1869       peer_delete_oldest ();
1870     }
1871     GNUNET_assert (GNUNET_OK ==
1872                    GNUNET_CONTAINER_multipeermap_put (peers,
1873                                                       peer_id,
1874                                                       peer,
1875                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
1876     peer->id = GNUNET_PEER_intern (peer_id);
1877   }
1878   peer->last_contact = GNUNET_TIME_absolute_get ();
1879
1880   return peer;
1881 }
1882
1883
1884 /**
1885  * Retrieve the CadetPeer stucture associated with the peer. Optionally create
1886  * one and insert it in the appropriate structures if the peer is not known yet.
1887  *
1888  * @param peer Short identity of the peer.
1889  * @param create #GNUNET_YES if a new peer should be created if unknown.
1890  *               #GNUNET_NO otherwise.
1891  *
1892  * @return Existing or newly created peer structure.
1893  *         NULL if unknown and not requested @a create
1894  */
1895 struct CadetPeer *
1896 GCP_get_short (const GNUNET_PEER_Id peer, int create)
1897 {
1898   return GCP_get (GNUNET_PEER_resolve2 (peer), create);
1899 }
1900
1901
1902 /**
1903  * Try to connect to a peer on transport level.
1904  *
1905  * @param cls Closure (peer).
1906  * @param tc TaskContext.
1907  */
1908 static void
1909 try_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1910 {
1911   struct CadetPeer *peer = cls;
1912
1913   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
1914     return;
1915
1916   GNUNET_TRANSPORT_try_connect (transport_handle,
1917                                 GNUNET_PEER_resolve2 (peer->id), NULL, NULL);
1918 }
1919
1920
1921 /**
1922  * Try to establish a new connection to this peer (in its tunnel).
1923  * If the peer doesn't have any path to it yet, try to get one.
1924  * If the peer already has some path, send a CREATE CONNECTION towards it.
1925  *
1926  * @param peer Peer to connect to.
1927  */
1928 void
1929 GCP_connect (struct CadetPeer *peer)
1930 {
1931   struct CadetTunnel *t;
1932   struct CadetPeerPath *path;
1933   struct CadetConnection *c;
1934   int rerun_search;
1935
1936   GCC_check_connections ();
1937   LOG (GNUNET_ERROR_TYPE_DEBUG, "peer_connect towards %s\n", GCP_2s (peer));
1938
1939   /* If we have a current hello, try to connect using it. */
1940   GCP_try_connect (peer);
1941
1942   t = peer->tunnel;
1943   c = NULL;
1944   rerun_search = GNUNET_NO;
1945
1946   if (NULL != peer->path_head)
1947   {
1948     LOG (GNUNET_ERROR_TYPE_DEBUG, "  some path exists\n");
1949     path = peer_get_best_path (peer);
1950     if (NULL != path)
1951     {
1952       char *s;
1953
1954       s = path_2s (path);
1955       LOG (GNUNET_ERROR_TYPE_DEBUG, "  path to use: %s\n", s);
1956       GNUNET_free (s);
1957
1958       c = GCT_use_path (t, path);
1959       if (NULL == c)
1960       {
1961         /* This case can happen when the path includes a first hop that is
1962          * not yet known to be connected.
1963          *
1964          * This happens quite often during testing when running cadet
1965          * under valgrind: core connect notifications come very late
1966          * and the DHT result has already come and created a valid
1967          * path.  In this case, the peer->connections
1968          * hashmaps will be NULL and tunnel_use_path will not be able
1969          * to create a connection from that path.
1970          *
1971          * Re-running the DHT GET should give core time to callback.
1972          *
1973          * GCT_use_path -> GCC_new -> register_neighbors takes care of
1974          * updating statistics about this issue.
1975          */
1976         rerun_search = GNUNET_YES;
1977       }
1978       else
1979       {
1980         GCC_send_create (c);
1981         return;
1982       }
1983     }
1984     else
1985     {
1986       LOG (GNUNET_ERROR_TYPE_DEBUG, "  but is NULL, all paths are in use\n");
1987     }
1988   }
1989
1990   if (GNUNET_YES == rerun_search)
1991   {
1992     struct GNUNET_TIME_Relative delay;
1993
1994     GCP_stop_search (peer);
1995     delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 100);
1996     peer->search_delayed = GNUNET_SCHEDULER_add_delayed (delay,
1997                                                          &delayed_search,
1998                                                          peer);
1999     GCC_check_connections ();
2000     return;
2001   }
2002
2003   if (GNUNET_NO == is_searching (peer))
2004     GCP_start_search (peer);
2005   GCC_check_connections ();
2006 }
2007
2008
2009 /**
2010  * Chech whether there is a direct (core level)  connection to peer.
2011  *
2012  * @param peer Peer to check.
2013  *
2014  * @return #GNUNET_YES if there is a direct connection.
2015  */
2016 int
2017 GCP_is_neighbor (const struct CadetPeer *peer)
2018 {
2019   struct CadetPeerPath *path;
2020
2021   if (NULL == peer->connections)
2022     return GNUNET_NO;
2023
2024   for (path = peer->path_head; NULL != path; path = path->next)
2025   {
2026     if (3 > path->length)
2027       return GNUNET_YES;
2028   }
2029
2030   /* Is not a neighbor but connections is not NULL, probably disconnecting */
2031   GNUNET_break (0);
2032   return GNUNET_NO;
2033 }
2034
2035
2036 /**
2037  * Create and initialize a new tunnel towards a peer, in case it has none.
2038  * In case the peer already has a tunnel, nothing is done.
2039  *
2040  * Does not generate any traffic, just creates the local data structures.
2041  *
2042  * @param peer Peer towards which to create the tunnel.
2043  */
2044 void
2045 GCP_add_tunnel (struct CadetPeer *peer)
2046 {
2047   GCC_check_connections ();
2048   if (NULL != peer->tunnel)
2049     return;
2050   peer->tunnel = GCT_new (peer);
2051   GCC_check_connections ();
2052 }
2053
2054
2055 /**
2056  * Add a connection to a neighboring peer.
2057  *
2058  * Store that the peer is the first hop of the connection in one
2059  * direction and that on peer disconnect the connection must be
2060  * notified and destroyed, for it will no longer be valid.
2061  *
2062  * @param peer Peer to add connection to.
2063  * @param c Connection to add.
2064  * @param pred #GNUNET_YES if we are predecessor, #GNUNET_NO if we are successor
2065  */
2066 void
2067 GCP_add_connection (struct CadetPeer *peer,
2068                     struct CadetConnection *c,
2069                     int pred)
2070 {
2071   LOG (GNUNET_ERROR_TYPE_DEBUG,
2072        "adding connection %s\n",
2073        GCC_2s (c));
2074   LOG (GNUNET_ERROR_TYPE_DEBUG,
2075        "to peer %s\n",
2076        GCP_2s (peer));
2077   GNUNET_assert (NULL != peer->connections);
2078   GNUNET_assert (GNUNET_OK ==
2079                  GNUNET_CONTAINER_multihashmap_put (peer->connections,
2080                                                     GCC_get_h (c),
2081                                                     c,
2082                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
2083   LOG (GNUNET_ERROR_TYPE_DEBUG,
2084        "Peer %s has now %u connections.\n",
2085        GCP_2s (peer),
2086        GNUNET_CONTAINER_multihashmap_size (peer->connections));
2087 }
2088
2089
2090 /**
2091  * Add the path to the peer and update the path used to reach it in case this
2092  * is the shortest.
2093  *
2094  * @param peer Destination peer to add the path to.
2095  * @param path New path to add. Last peer must be @c peer.
2096  *             Path will be either used of freed if already known.
2097  * @param trusted Do we trust that this path is real?
2098  *
2099  * @return path if path was taken, pointer to existing duplicate if exists
2100  *         NULL on error.
2101  */
2102 struct CadetPeerPath *
2103 GCP_add_path (struct CadetPeer *peer,
2104               struct CadetPeerPath *path,
2105               int trusted)
2106 {
2107   struct CadetPeerPath *aux;
2108   unsigned int l;
2109   unsigned int l2;
2110
2111   GCC_check_connections ();
2112   LOG (GNUNET_ERROR_TYPE_DEBUG,
2113        "adding path [%u] to peer %s\n",
2114        path->length, GCP_2s (peer));
2115
2116   if (NULL == peer || NULL == path
2117       || path->peers[path->length - 1] != peer->id)
2118   {
2119     GNUNET_break (0);
2120     path_destroy (path);
2121     return NULL;
2122   }
2123
2124   for (l = 1; l < path->length; l++)
2125   {
2126     if (path->peers[l] == myid)
2127     {
2128       LOG (GNUNET_ERROR_TYPE_DEBUG, " shortening path by %u\n", l);
2129       for (l2 = 0; l2 < path->length - l; l2++)
2130       {
2131         path->peers[l2] = path->peers[l + l2];
2132       }
2133       path->length -= l;
2134       l = 1;
2135       path->peers = GNUNET_realloc (path->peers,
2136                                     path->length * sizeof (GNUNET_PEER_Id));
2137     }
2138   }
2139
2140   LOG (GNUNET_ERROR_TYPE_DEBUG, " final length: %u\n", path->length);
2141
2142   if (2 >= path->length && GNUNET_NO == trusted)
2143   {
2144     /* Only allow CORE to tell us about direct paths */
2145     path_destroy (path);
2146     return NULL;
2147   }
2148
2149   l = path_get_length (path);
2150   if (0 == l)
2151   {
2152     path_destroy (path);
2153     return NULL;
2154   }
2155
2156   GNUNET_assert (peer->id == path->peers[path->length - 1]);
2157   for (aux = peer->path_head; aux != NULL; aux = aux->next)
2158   {
2159     l2 = path_get_length (aux);
2160     if (l2 > l)
2161     {
2162       LOG (GNUNET_ERROR_TYPE_DEBUG, "  added\n");
2163       GNUNET_CONTAINER_DLL_insert_before (peer->path_head,
2164                                           peer->path_tail, aux, path);
2165       goto finish;
2166     }
2167     else
2168     {
2169       if (l2 == l && memcmp (path->peers, aux->peers, l) == 0)
2170       {
2171         LOG (GNUNET_ERROR_TYPE_DEBUG, "  already known\n");
2172         path_destroy (path);
2173         return aux;
2174       }
2175     }
2176   }
2177   GNUNET_CONTAINER_DLL_insert_tail (peer->path_head, peer->path_tail,
2178                                     path);
2179   LOG (GNUNET_ERROR_TYPE_DEBUG, "  added last\n");
2180
2181 finish:
2182   if (NULL != peer->tunnel
2183       && CONNECTIONS_PER_TUNNEL > GCT_count_connections (peer->tunnel)
2184       && 2 < path->length) /* Direct paths are handled by core_connect */
2185   {
2186     GCP_connect (peer);
2187   }
2188   GCC_check_connections ();
2189   return path;
2190 }
2191
2192
2193 /**
2194  * Add the path to the origin peer and update the path used to reach it in case
2195  * this is the shortest.
2196  * The path is given in peer_info -> destination, therefore we turn the path
2197  * upside down first.
2198  *
2199  * @param peer Peer to add the path to, being the origin of the path.
2200  * @param path New path to add after being inversed.
2201  *             Path will be either used or freed.
2202  * @param trusted Do we trust that this path is real?
2203  *
2204  * @return path if path was taken, pointer to existing duplicate if exists
2205  *         NULL on error.
2206  */
2207 struct CadetPeerPath *
2208 GCP_add_path_to_origin (struct CadetPeer *peer,
2209                         struct CadetPeerPath *path,
2210                         int trusted)
2211 {
2212   if (NULL == path)
2213     return NULL;
2214   path_invert (path);
2215   return GCP_add_path (peer, path, trusted);
2216 }
2217
2218
2219 /**
2220  * Adds a path to the info of all the peers in the path
2221  *
2222  * @param p Path to process.
2223  * @param confirmed Whether we know if the path works or not.
2224  */
2225 void
2226 GCP_add_path_to_all (const struct CadetPeerPath *p, int confirmed)
2227 {
2228   unsigned int i;
2229
2230   /* TODO: invert and add */
2231   GCC_check_connections ();
2232   for (i = 0; i < p->length && p->peers[i] != myid; i++) /* skip'em */ ;
2233   for (i++; i < p->length; i++)
2234   {
2235     struct CadetPeer *peer;
2236     struct CadetPeerPath *copy;
2237
2238     peer = GCP_get_short (p->peers[i], GNUNET_YES);
2239     copy = path_duplicate (p);
2240     copy->length = i + 1;
2241     GCP_add_path (peer, copy, 3 > p->length ? GNUNET_NO : confirmed);
2242   }
2243   GCC_check_connections ();
2244 }
2245
2246
2247 /**
2248  * Remove any path to the peer that has the exact same peers as the one given.
2249  *
2250  * @param peer Peer to remove the path from.
2251  * @param path Path to remove. Is always destroyed .
2252  */
2253 void
2254 GCP_remove_path (struct CadetPeer *peer, struct CadetPeerPath *path)
2255 {
2256   struct CadetPeerPath *iter;
2257   struct CadetPeerPath *next;
2258
2259   GCC_check_connections ();
2260   GNUNET_assert (myid == path->peers[0]);
2261   GNUNET_assert (peer->id == path->peers[path->length - 1]);
2262
2263   LOG (GNUNET_ERROR_TYPE_INFO, "Removing path %p (%u) from %s\n",
2264        path, path->length, GCP_2s (peer));
2265
2266   for (iter = peer->path_head; NULL != iter; iter = next)
2267   {
2268     next = iter->next;
2269     if (0 == path_cmp (path, iter))
2270     {
2271       GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, iter);
2272       if (iter != path)
2273         path_destroy (iter);
2274     }
2275   }
2276   path_destroy (path);
2277   GCC_check_connections ();
2278 }
2279
2280
2281 /**
2282  * Check that we are aware of a connection from a neighboring peer.
2283  *
2284  * @param peer Peer to the connection is with
2285  * @param c Connection that should be in the map with this peer.
2286  */
2287 void
2288 GCP_check_connection (const struct CadetPeer *peer,
2289                       const struct CadetConnection *c)
2290 {
2291   GNUNET_assert (NULL != peer);
2292   GNUNET_assert (NULL != peer->connections);
2293     return;
2294   GNUNET_assert (GNUNET_YES ==
2295                  GNUNET_CONTAINER_multihashmap_contains_value (peer->connections,
2296                                                                GCC_get_h (c),
2297                                                                c));
2298 }
2299
2300
2301 /**
2302  * Remove a connection from a neighboring peer.
2303  *
2304  * @param peer Peer to remove connection from.
2305  * @param c Connection to remove.
2306  */
2307 void
2308 GCP_remove_connection (struct CadetPeer *peer,
2309                        const struct CadetConnection *c)
2310 {
2311   LOG (GNUNET_ERROR_TYPE_DEBUG,
2312        "Removing connection %s\n",
2313        GCC_2s (c));
2314   LOG (GNUNET_ERROR_TYPE_DEBUG,
2315        "from peer %s\n",
2316        GCP_2s (peer));
2317   if ( (NULL == peer) ||
2318        (NULL == peer->connections) )
2319     return;
2320   GNUNET_assert (GNUNET_YES ==
2321                  GNUNET_CONTAINER_multihashmap_remove (peer->connections,
2322                                                        GCC_get_h (c),
2323                                                        c));
2324   LOG (GNUNET_ERROR_TYPE_DEBUG,
2325        "Peer %s remains with %u connections.\n",
2326        GCP_2s (peer),
2327        GNUNET_CONTAINER_multihashmap_size (peer->connections));
2328 }
2329
2330
2331 /**
2332  * Start the DHT search for new paths towards the peer: we don't have
2333  * enough good connections.
2334  *
2335  * @param peer Destination peer.
2336  */
2337 void
2338 GCP_start_search (struct CadetPeer *peer)
2339 {
2340   const struct GNUNET_PeerIdentity *id;
2341   struct CadetTunnel *t = peer->tunnel;
2342
2343   GCC_check_connections ();
2344  if (NULL != peer->search_h)
2345   {
2346     GNUNET_break (0);
2347     return;
2348   }
2349
2350   if (NULL != peer->search_delayed)
2351     GCP_stop_search (peer);
2352
2353   id = GNUNET_PEER_resolve2 (peer->id);
2354   peer->search_h = GCD_search (id, &search_handler, peer);
2355
2356   if (NULL == t)
2357   {
2358     /* Why would we search for a peer with no tunnel towards it? */
2359     GNUNET_break (0);
2360     return;
2361   }
2362
2363   if (CADET_TUNNEL_NEW == GCT_get_cstate (t)
2364       || 0 == GCT_count_any_connections (t))
2365   {
2366     GCT_change_cstate (t, CADET_TUNNEL_SEARCHING);
2367   }
2368   GCC_check_connections ();
2369 }
2370
2371
2372 /**
2373  * Stop the DHT search for new paths towards the peer: we already have
2374  * enough good connections.
2375  *
2376  * @param peer Destination peer.
2377  */
2378 void
2379 GCP_stop_search (struct CadetPeer *peer)
2380 {
2381   GCC_check_connections ();
2382   if (NULL != peer->search_h)
2383   {
2384     GCD_search_stop (peer->search_h);
2385     peer->search_h = NULL;
2386   }
2387   if (NULL != peer->search_delayed)
2388   {
2389     GNUNET_SCHEDULER_cancel (peer->search_delayed);
2390     peer->search_delayed = NULL;
2391   }
2392   GCC_check_connections ();
2393 }
2394
2395
2396 /**
2397  * Get the Full ID of a peer.
2398  *
2399  * @param peer Peer to get from.
2400  *
2401  * @return Full ID of peer.
2402  */
2403 const struct GNUNET_PeerIdentity *
2404 GCP_get_id (const struct CadetPeer *peer)
2405 {
2406   return GNUNET_PEER_resolve2 (peer->id);
2407 }
2408
2409
2410 /**
2411  * Get the Short ID of a peer.
2412  *
2413  * @param peer Peer to get from.
2414  *
2415  * @return Short ID of peer.
2416  */
2417 GNUNET_PEER_Id
2418 GCP_get_short_id (const struct CadetPeer *peer)
2419 {
2420   return peer->id;
2421 }
2422
2423
2424 /**
2425  * Set tunnel.
2426  *
2427  * If tunnel is NULL and there was a search active, stop it, as it's useless.
2428  *
2429  * @param peer Peer.
2430  * @param t Tunnel.
2431  */
2432 void
2433 GCP_set_tunnel (struct CadetPeer *peer, struct CadetTunnel *t)
2434 {
2435   peer->tunnel = t;
2436   if (NULL == t && GNUNET_YES == is_searching (peer))
2437   {
2438     GCP_stop_search (peer);
2439   }
2440 }
2441
2442
2443 /**
2444  * Get the tunnel towards a peer.
2445  *
2446  * @param peer Peer to get from.
2447  *
2448  * @return Tunnel towards peer.
2449  */
2450 struct CadetTunnel *
2451 GCP_get_tunnel (const struct CadetPeer *peer)
2452 {
2453   if (NULL == peer)
2454     return NULL;
2455   return peer->tunnel;
2456 }
2457
2458
2459 /**
2460  * Set the hello message.
2461  *
2462  * @param peer Peer whose message to set.
2463  * @param hello Hello message.
2464  */
2465 void
2466 GCP_set_hello (struct CadetPeer *peer, const struct GNUNET_HELLO_Message *hello)
2467 {
2468   struct GNUNET_HELLO_Message *old;
2469   size_t size;
2470
2471   GCC_check_connections ();
2472  LOG (GNUNET_ERROR_TYPE_DEBUG, "set hello for %s\n", GCP_2s (peer));
2473   if (NULL == hello)
2474     return;
2475
2476   old = GCP_get_hello (peer);
2477   if (NULL == old)
2478   {
2479     size = GNUNET_HELLO_size (hello);
2480     peer->hello = GNUNET_malloc (size);
2481     memcpy (peer->hello, hello, size);
2482   }
2483   else
2484   {
2485     peer->hello = GNUNET_HELLO_merge (old, hello);
2486     GNUNET_free (old);
2487   }
2488   GCC_check_connections ();
2489 }
2490
2491
2492 /**
2493  * Get the hello message.
2494  *
2495  * @param peer Peer whose message to get.
2496  *
2497  * @return Hello message.
2498  */
2499 struct GNUNET_HELLO_Message *
2500 GCP_get_hello (struct CadetPeer *peer)
2501 {
2502   struct GNUNET_TIME_Absolute expiration;
2503   struct GNUNET_TIME_Relative remaining;
2504
2505   if (NULL == peer->hello)
2506     return NULL;
2507
2508   expiration = GNUNET_HELLO_get_last_expiration (peer->hello);
2509   remaining = GNUNET_TIME_absolute_get_remaining (expiration);
2510   if (0 == remaining.rel_value_us)
2511   {
2512     LOG (GNUNET_ERROR_TYPE_DEBUG, " get - hello expired on %s\n",
2513          GNUNET_STRINGS_absolute_time_to_string (expiration));
2514     GNUNET_free (peer->hello);
2515     peer->hello = NULL;
2516   }
2517   return peer->hello;
2518 }
2519
2520
2521 /**
2522  * Try to connect to a peer on TRANSPORT level.
2523  *
2524  * @param peer Peer to whom to connect.
2525  */
2526 void
2527 GCP_try_connect (struct CadetPeer *peer)
2528 {
2529   struct GNUNET_HELLO_Message *hello;
2530   struct GNUNET_MessageHeader *mh;
2531
2532   if (NULL == transport_handle)
2533     return;
2534   GCC_check_connections ();
2535   if (GNUNET_YES == GCP_is_neighbor (peer))
2536     return;
2537   hello = GCP_get_hello (peer);
2538   if (NULL == hello)
2539     return;
2540
2541   mh = GNUNET_HELLO_get_header (hello);
2542   GNUNET_TRANSPORT_offer_hello (transport_handle,
2543                                 mh,
2544                                 &try_connect,
2545                                 peer);
2546   GCC_check_connections ();
2547 }
2548
2549
2550 /**
2551  * Notify a peer that a link between two other peers is broken. If any path
2552  * used that link, eliminate it.
2553  *
2554  * @param peer Peer affected by the change.
2555  * @param peer1 Peer whose link is broken.
2556  * @param peer2 Peer whose link is broken.
2557  */
2558 void
2559 GCP_notify_broken_link (struct CadetPeer *peer,
2560                         const struct GNUNET_PeerIdentity *peer1,
2561                         const struct GNUNET_PeerIdentity *peer2)
2562 {
2563   struct CadetPeerPath *iter;
2564   struct CadetPeerPath *next;
2565   unsigned int i;
2566   GNUNET_PEER_Id p1;
2567   GNUNET_PEER_Id p2;
2568
2569   GCC_check_connections ();
2570   p1 = GNUNET_PEER_search (peer1);
2571   p2 = GNUNET_PEER_search (peer2);
2572
2573   LOG (GNUNET_ERROR_TYPE_DEBUG, "Link %u-%u broken\n", p1, p2);
2574   if (0 == p1 || 0 == p2)
2575   {
2576     /* We don't even know them */
2577     return;
2578   }
2579
2580   for (iter = peer->path_head; NULL != iter; iter = next)
2581   {
2582     next = iter->next;
2583     for (i = 0; i < iter->length - 1; i++)
2584     {
2585       if ((iter->peers[i] == p1 && iter->peers[i + 1] == p2)
2586           || (iter->peers[i] == p2 && iter->peers[i + 1] == p1))
2587       {
2588         char *s;
2589
2590         s = path_2s (iter);
2591         LOG (GNUNET_ERROR_TYPE_DEBUG, " - invalidating %s\n", s);
2592         GNUNET_free (s);
2593
2594         path_invalidate (iter);
2595       }
2596     }
2597   }
2598   GCC_check_connections ();
2599 }
2600
2601
2602 /**
2603  * Count the number of known paths toward the peer.
2604  *
2605  * @param peer Peer to get path info.
2606  *
2607  * @return Number of known paths.
2608  */
2609 unsigned int
2610 GCP_count_paths (const struct CadetPeer *peer)
2611 {
2612   struct CadetPeerPath *iter;
2613   unsigned int i;
2614
2615   for (iter = peer->path_head, i = 0; NULL != iter; iter = iter->next)
2616     i++;
2617
2618   return i;
2619 }
2620
2621
2622 /**
2623  * Iterate over the paths to a peer.
2624  *
2625  * @param peer Peer to get path info.
2626  * @param callback Function to call for every path.
2627  * @param cls Closure for @a callback.
2628  *
2629  * @return Number of iterated paths.
2630  */
2631 unsigned int
2632 GCP_iterate_paths (struct CadetPeer *peer,
2633                    GCP_path_iterator callback,
2634                    void *cls)
2635 {
2636   struct CadetPeerPath *iter;
2637   unsigned int i;
2638
2639   for (iter = peer->path_head, i = 0; NULL != iter; iter = iter->next)
2640   {
2641     i++;
2642     if (GNUNET_YES != callback (cls, peer, iter))
2643       break;
2644   }
2645
2646   return i;
2647 }
2648
2649
2650 /**
2651  * Iterate all known peers.
2652  *
2653  * @param iter Iterator.
2654  * @param cls Closure for @c iter.
2655  */
2656 void
2657 GCP_iterate_all (GNUNET_CONTAINER_PeerMapIterator iter,
2658                  void *cls)
2659 {
2660   GCC_check_connections ();
2661   GNUNET_CONTAINER_multipeermap_iterate (peers,
2662                                          iter,
2663                                          cls);
2664   GCC_check_connections ();
2665 }
2666
2667
2668 /**
2669  * Get the static string for a peer ID.
2670  *
2671  * @param peer Peer.
2672  *
2673  * @return Static string for it's ID.
2674  */
2675 const char *
2676 GCP_2s (const struct CadetPeer *peer)
2677 {
2678   if (NULL == peer)
2679     return "(NULL)";
2680   return GNUNET_i2s (GNUNET_PEER_resolve2 (peer->id));
2681 }
2682
2683
2684 /* end of gnunet-service-cadet_peer.c */