891d32e39064637a628c99e2db59e196a34ff9e2
[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  * Core callback to write a queued packet to core buffer
1143  *
1144  * @param cls Closure (peer info).
1145  * @param size Number of bytes available in buf.
1146  * @param buf Where the to write the message.
1147  *
1148  * @return number of bytes written to buf
1149  */
1150 static size_t
1151 queue_send (void *cls, size_t size, void *buf)
1152 {
1153   struct CadetPeer *peer = cls;
1154   struct CadetConnection *c;
1155   struct CadetPeerQueue *queue;
1156   struct GNUNET_TIME_Relative core_wait_time;
1157   const char *wait_s;
1158   const struct GNUNET_PeerIdentity *dst_id;
1159   size_t msg_size;
1160   size_t total_size;
1161   size_t rest;
1162   char *dst;
1163   uint32_t pid;
1164
1165   GCC_check_connections ();
1166   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n");
1167   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n");
1168   LOG (GNUNET_ERROR_TYPE_DEBUG, "Queue send towards %s (max %u)\n",
1169        GCP_2s (peer), size);
1170
1171   /* Sanity checking */
1172   if (NULL == buf || 0 == size)
1173   {
1174     LOG (GNUNET_ERROR_TYPE_DEBUG, "  not allowed/\n");
1175     if (GNUNET_NO == in_shutdown)
1176     {
1177       queue = peer_get_first_message (peer);
1178       if (NULL == queue)
1179       {
1180         peer->core_transmit = NULL;
1181         peer->tmt_time.abs_value_us = 0;
1182         GCC_check_connections ();
1183         return 0;
1184       }
1185       dst_id = GNUNET_PEER_resolve2 (peer->id);
1186       peer->core_transmit =
1187           GNUNET_CORE_notify_transmit_ready (core_handle,
1188                                              GNUNET_NO, get_priority (queue),
1189                                              GNUNET_TIME_UNIT_FOREVER_REL,
1190                                              dst_id,
1191                                              get_core_size (queue->size),
1192                                              &queue_send,
1193                                              peer);
1194       peer->tmt_time = GNUNET_TIME_absolute_get ();
1195     }
1196     else
1197     {
1198       peer->core_transmit = NULL;
1199       peer->tmt_time.abs_value_us = 0;
1200     }
1201     GCC_check_connections ();
1202     return 0;
1203   }
1204
1205   /* Init */
1206   rest = size;
1207   total_size = 0;
1208   dst = (char *) buf;
1209   pid = 0;
1210   peer->core_transmit = NULL;
1211   queue = peer_get_first_message (peer);
1212   if (NULL == queue)
1213   {
1214     GNUNET_break (0); /* Core tmt_rdy should've been canceled */
1215     peer->tmt_time.abs_value_us = 0;
1216     return 0;
1217   }
1218   core_wait_time = GNUNET_TIME_absolute_get_duration (peer->tmt_time);
1219   wait_s = GNUNET_STRINGS_relative_time_to_string (core_wait_time, GNUNET_YES);
1220   if (core_wait_time.rel_value_us >= 1000000)
1221   {
1222     LOG (GNUNET_ERROR_TYPE_ERROR,
1223          " %s: core wait time %s (> 1 second) for %u bytes\n",
1224          GCP_2s (peer), wait_s, queue->size);
1225   }
1226   peer->tmt_time.abs_value_us = 0;
1227
1228   /* Copy all possible messages to the core buffer */
1229   while (NULL != queue && rest >= queue->size)
1230   {
1231     c = queue->c;
1232
1233     LOG (GNUNET_ERROR_TYPE_DEBUG, "  on conn %s %s\n",
1234          GCC_2s (c), GC_f2s(queue->fwd));
1235     LOG (GNUNET_ERROR_TYPE_DEBUG, "  size %u ok (%u/%u)\n",
1236          queue->size, total_size, size);
1237
1238     msg_size = fill_buf (queue, (void *) dst, size, &pid);
1239
1240     if (0 < drop_percent &&
1241         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 101) < drop_percent)
1242     {
1243       LOG (GNUNET_ERROR_TYPE_WARNING, "DD %s (%s %u) on conn %s %s\n",
1244            GC_m2s (queue->type), GC_m2s (queue->payload_type),
1245            queue->payload_id, GCC_2s (c), GC_f2s (queue->fwd));
1246       msg_size = 0;
1247     }
1248     else
1249     {
1250       LOG (GNUNET_ERROR_TYPE_INFO,
1251            ">>> %s (%s %4u) on conn %s (%p) %s (%u bytes), after %s\n",
1252            GC_m2s (queue->type), GC_m2s (queue->payload_type),
1253            queue->payload_id, GCC_2s (c), c,
1254            GC_f2s (queue->fwd), msg_size, wait_s);
1255     }
1256     total_size += msg_size;
1257     rest -= msg_size;
1258     dst = &dst[msg_size];
1259     msg_size = 0;
1260
1261     /* Free queue, but cls was freed by send_core_* in fill_buf. */
1262     (void) GCP_queue_destroy (queue, GNUNET_NO, GNUNET_YES, pid);
1263
1264     /* Next! */
1265     queue = peer_get_first_message (peer);
1266   }
1267
1268   /* If more data in queue, send next */
1269   if (NULL != queue)
1270   {
1271     LOG (GNUNET_ERROR_TYPE_DEBUG, "  more data! (%u)\n", queue->size);
1272     if (NULL == peer->core_transmit)
1273     {
1274       dst_id = GNUNET_PEER_resolve2 (peer->id);
1275       peer->core_transmit =
1276           GNUNET_CORE_notify_transmit_ready (core_handle,
1277                                              GNUNET_NO, get_priority (queue),
1278                                              GNUNET_TIME_UNIT_FOREVER_REL,
1279                                              dst_id,
1280                                              get_core_size (queue->size),
1281                                              &queue_send,
1282                                              peer);
1283       peer->tmt_time = GNUNET_TIME_absolute_get ();
1284       queue->start_waiting = GNUNET_TIME_absolute_get ();
1285     }
1286     else
1287     {
1288       LOG (GNUNET_ERROR_TYPE_DEBUG, "*   tmt rdy called somewhere else\n");
1289     }
1290 //     GCC_start_poll (); FIXME needed?
1291   }
1292   else
1293   {
1294 //     GCC_stop_poll(); FIXME needed?
1295   }
1296
1297   LOG (GNUNET_ERROR_TYPE_DEBUG, "  return %d\n", total_size);
1298   queue_debug (peer, GNUNET_ERROR_TYPE_DEBUG);
1299   GCC_check_connections ();
1300   return total_size;
1301 }
1302
1303
1304 /******************************************************************************/
1305 /********************************    API    ***********************************/
1306 /******************************************************************************/
1307
1308
1309 /**
1310  * Free a transmission that was already queued with all resources
1311  * associated to the request.
1312  *
1313  * If connection was marked to be destroyed, and this was the last queued
1314  * message on it, the connection will be free'd as a result.
1315  *
1316  * @param queue Queue handler to cancel.
1317  * @param clear_cls Is it necessary to free associated cls?
1318  * @param sent Was it really sent? (Could have been canceled)
1319  * @param pid PID, if relevant (was sent and was a payload message).
1320  *
1321  * @return #GNUNET_YES if connection was destroyed as a result,
1322  *         #GNUNET_NO otherwise.
1323  */
1324 int
1325 GCP_queue_destroy (struct CadetPeerQueue *queue,
1326                    int clear_cls,
1327                    int sent,
1328                    uint32_t pid)
1329 {
1330   struct CadetPeer *peer;
1331   int connection_destroyed;
1332
1333   GCC_check_connections ();
1334   peer = queue->peer;
1335   LOG (GNUNET_ERROR_TYPE_DEBUG, "queue destroy %s\n", GC_m2s (queue->type));
1336   if (GNUNET_YES == clear_cls)
1337   {
1338     LOG (GNUNET_ERROR_TYPE_DEBUG, " free cls\n");
1339     switch (queue->type)
1340     {
1341       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY:
1342         LOG (GNUNET_ERROR_TYPE_INFO, "destroying a DESTROY message\n");
1343         /* fall through */
1344       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
1345       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
1346       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN:
1347       case GNUNET_MESSAGE_TYPE_CADET_KX:
1348       case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
1349       case GNUNET_MESSAGE_TYPE_CADET_AX:
1350       case GNUNET_MESSAGE_TYPE_CADET_ACK:
1351       case GNUNET_MESSAGE_TYPE_CADET_POLL:
1352         GNUNET_free_non_null (queue->cls);
1353         break;
1354
1355       default:
1356         GNUNET_break (0);
1357         LOG (GNUNET_ERROR_TYPE_ERROR, " type %s unknown!\n",
1358              GC_m2s (queue->type));
1359     }
1360   }
1361   GNUNET_CONTAINER_DLL_remove (peer->queue_head, peer->queue_tail, queue);
1362
1363   if (queue->type != GNUNET_MESSAGE_TYPE_CADET_ACK &&
1364       queue->type != GNUNET_MESSAGE_TYPE_CADET_POLL)
1365   {
1366     peer->queue_n--;
1367   }
1368
1369   if (NULL != queue->cont)
1370   {
1371     struct GNUNET_TIME_Relative wait_time;
1372
1373     wait_time = GNUNET_TIME_absolute_get_duration (queue->start_waiting);
1374     LOG (GNUNET_ERROR_TYPE_DEBUG, " calling callback, time elapsed %s\n",
1375          GNUNET_STRINGS_relative_time_to_string (wait_time, GNUNET_NO));
1376     connection_destroyed = queue->cont (queue->cont_cls,
1377                                         queue->c, sent, queue->type, pid,
1378                                         queue->fwd, queue->size, wait_time);
1379   }
1380   else
1381   {
1382     connection_destroyed = GNUNET_NO;
1383   }
1384
1385   if (NULL == peer_get_first_message (peer) && NULL != peer->core_transmit)
1386   {
1387     GNUNET_CORE_notify_transmit_ready_cancel (peer->core_transmit);
1388     peer->core_transmit = NULL;
1389     peer->tmt_time.abs_value_us = 0;
1390   }
1391
1392   GNUNET_free (queue);
1393   GCC_check_connections ();
1394   return connection_destroyed;
1395 }
1396
1397
1398 /**
1399  * @brief Queue and pass message to core when possible.
1400  *
1401  * @param peer Peer towards which to queue the message.
1402  * @param cls Closure (@c type dependant). It will be used by queue_send to
1403  *            build the message to be sent if not already prebuilt.
1404  * @param type Type of the message, 0 for a raw message.
1405  * @param size Size of the message.
1406  * @param c Connection this message belongs to (can be NULL).
1407  * @param fwd Is this a message going root->dest? (FWD ACK are NOT FWD!)
1408  * @param cont Continuation to be called once CORE has taken the message.
1409  * @param cont_cls Closure for @c cont.
1410  *
1411  * @return Handle to cancel the message before it is sent. Once cont is called
1412  *         message has been sent and therefore the handle is no longer valid.
1413  */
1414 struct CadetPeerQueue *
1415 GCP_queue_add (struct CadetPeer *peer,
1416                void *cls,
1417                uint16_t type,
1418                uint16_t payload_type,
1419                uint32_t payload_id,
1420                size_t size,
1421                struct CadetConnection *c,
1422                int fwd,
1423                GCP_sent cont,
1424                void *cont_cls)
1425 {
1426   struct CadetPeerQueue *q;
1427   int priority;
1428   int call_core;
1429
1430   GCC_check_connections ();
1431   LOG (GNUNET_ERROR_TYPE_DEBUG,
1432        "que %s (%s %4u) on conn %s (%p) %s towards %s (size %u)\n",
1433        GC_m2s (type), GC_m2s (payload_type), payload_id,
1434        GCC_2s (c), c, GC_f2s (fwd), GCP_2s (peer), size);
1435
1436   if (NULL == peer->connections)
1437   {
1438     /* We are not connected to this peer, ignore request. */
1439     LOG (GNUNET_ERROR_TYPE_INFO, "%s not a neighbor\n", GCP_2s (peer));
1440     GNUNET_STATISTICS_update (stats, "# messages dropped due to wrong hop", 1,
1441                               GNUNET_NO);
1442     return NULL;
1443   }
1444
1445   priority = 0;
1446
1447   if (GNUNET_MESSAGE_TYPE_CADET_POLL == type ||
1448       GNUNET_MESSAGE_TYPE_CADET_ACK == type)
1449   {
1450     priority = 100;
1451   }
1452
1453   LOG (GNUNET_ERROR_TYPE_DEBUG, "priority %d\n", priority);
1454
1455   call_core = (NULL == c || type == GNUNET_MESSAGE_TYPE_CADET_KX) ?
1456                GNUNET_YES : GCC_is_sendable (c, fwd);
1457   q = GNUNET_new (struct CadetPeerQueue);
1458   q->cls = cls;
1459   q->type = type;
1460   q->payload_type = payload_type;
1461   q->payload_id = payload_id;
1462   q->size = size;
1463   q->peer = peer;
1464   q->c = c;
1465   q->fwd = fwd;
1466   q->cont = cont;
1467   q->cont_cls = cont_cls;
1468   if (100 > priority)
1469   {
1470     GNUNET_CONTAINER_DLL_insert_tail (peer->queue_head, peer->queue_tail, q);
1471     peer->queue_n++;
1472   }
1473   else
1474   {
1475     GNUNET_CONTAINER_DLL_insert (peer->queue_head, peer->queue_tail, q);
1476     call_core = GNUNET_YES;
1477   }
1478
1479   q->start_waiting = GNUNET_TIME_absolute_get ();
1480   if (NULL == peer->core_transmit && GNUNET_YES == call_core)
1481   {
1482     LOG (GNUNET_ERROR_TYPE_DEBUG,
1483          "calling core tmt rdy towards %s for %u bytes\n",
1484          GCP_2s (peer), size);
1485     peer->core_transmit =
1486         GNUNET_CORE_notify_transmit_ready (core_handle,
1487                                            GNUNET_NO, get_priority (q),
1488                                            GNUNET_TIME_UNIT_FOREVER_REL,
1489                                            GNUNET_PEER_resolve2 (peer->id),
1490                                            get_core_size (size),
1491                                            &queue_send, peer);
1492     peer->tmt_time = GNUNET_TIME_absolute_get ();
1493   }
1494   else if (GNUNET_NO == call_core)
1495   {
1496     LOG (GNUNET_ERROR_TYPE_DEBUG, "core tmt rdy towards %s not needed\n",
1497          GCP_2s (peer));
1498
1499   }
1500   else
1501   {
1502     struct GNUNET_TIME_Relative elapsed;
1503     elapsed = GNUNET_TIME_absolute_get_duration (peer->tmt_time);
1504     LOG (GNUNET_ERROR_TYPE_DEBUG, "core tmt rdy towards %s already called %s\n",
1505          GCP_2s (peer),
1506          GNUNET_STRINGS_relative_time_to_string (elapsed, GNUNET_NO));
1507
1508   }
1509   queue_debug (peer, GNUNET_ERROR_TYPE_DEBUG);
1510   GCC_check_connections ();
1511   return q;
1512 }
1513
1514
1515 /**
1516  * Cancel all queued messages to a peer that belong to a certain connection.
1517  *
1518  * @param peer Peer towards whom to cancel.
1519  * @param c Connection whose queued messages to cancel. Might be destroyed by
1520  *          the sent continuation call.
1521  */
1522 void
1523 GCP_queue_cancel (struct CadetPeer *peer,
1524                   struct CadetConnection *c)
1525 {
1526   struct CadetPeerQueue *q;
1527   struct CadetPeerQueue *next;
1528   struct CadetPeerQueue *prev;
1529   int connection_destroyed;
1530
1531   GCC_check_connections ();
1532   connection_destroyed = GNUNET_NO;
1533   for (q = peer->queue_head; NULL != q; q = next)
1534   {
1535     prev = q->prev;
1536     if (q->c == c)
1537     {
1538       LOG (GNUNET_ERROR_TYPE_DEBUG,
1539            "GMP queue cancel %s\n",
1540            GC_m2s (q->type));
1541       GNUNET_assert (GNUNET_NO == connection_destroyed);
1542       if (GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY == q->type)
1543       {
1544         q->c = NULL;
1545       }
1546       else
1547       {
1548         connection_destroyed = GCP_queue_destroy (q, GNUNET_YES, GNUNET_NO, 0);
1549       }
1550
1551       /* Get next from prev, q->next might be already freed:
1552        * queue destroy -> callback -> GCC_destroy -> cancel_queues -> here
1553        */
1554       if (NULL == prev)
1555         next = peer->queue_head;
1556       else
1557         next = prev->next;
1558     }
1559     else
1560     {
1561       next = q->next;
1562     }
1563   }
1564
1565   if ( (NULL == peer->queue_head) &&
1566        (NULL != peer->core_transmit) )
1567   {
1568     GNUNET_CORE_notify_transmit_ready_cancel (peer->core_transmit);
1569     peer->core_transmit = NULL;
1570     peer->tmt_time.abs_value_us = 0;
1571   }
1572   GCC_check_connections ();
1573 }
1574
1575
1576 /**
1577  * Get the first transmittable message for a connection.
1578  *
1579  * @param peer Neighboring peer.
1580  * @param c Connection.
1581  *
1582  * @return First transmittable message.
1583  */
1584 static struct CadetPeerQueue *
1585 connection_get_first_message (struct CadetPeer *peer, struct CadetConnection *c)
1586 {
1587   struct CadetPeerQueue *q;
1588
1589   for (q = peer->queue_head; NULL != q; q = q->next)
1590   {
1591     if (q->c != c)
1592       continue;
1593     if (queue_is_sendable (q))
1594     {
1595       LOG (GNUNET_ERROR_TYPE_DEBUG, "  sendable!!\n");
1596       return q;
1597     }
1598     LOG (GNUNET_ERROR_TYPE_DEBUG, "  not sendable\n");
1599   }
1600
1601   return NULL;
1602 }
1603
1604
1605 /**
1606  * Get the first message for a connection and unqueue it.
1607  *
1608  * Only tunnel (or higher) level messages are unqueued. Connection specific
1609  * messages are silently destroyed upon encounter.
1610  *
1611  * @param peer Neighboring peer.
1612  * @param c Connection.
1613  * @param destroyed[in/out] Was the connection destroyed (prev/as a result)?.
1614  *                          Can NOT be NULL.
1615  *
1616  * @return First message for this connection.
1617  */
1618 struct GNUNET_MessageHeader *
1619 GCP_connection_pop (struct CadetPeer *peer,
1620                     struct CadetConnection *c,
1621                     int *destroyed)
1622 {
1623   struct CadetPeerQueue *q;
1624   struct CadetPeerQueue *next;
1625   struct GNUNET_MessageHeader *msg;
1626   int dest;
1627
1628   GCC_check_connections ();
1629   GNUNET_assert (NULL != destroyed);
1630   LOG (GNUNET_ERROR_TYPE_DEBUG, "connection_pop on conn %p\n", c);
1631   for (q = peer->queue_head; NULL != q; q = next)
1632   {
1633     next = q->next;
1634     if (q->c != c)
1635       continue;
1636     LOG (GNUNET_ERROR_TYPE_DEBUG, " - queued: %s (%s %u), cont: %p\n",
1637          GC_m2s (q->type), GC_m2s (q->payload_type), q->payload_id,
1638          q->cont);
1639     switch (q->type)
1640     {
1641       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_CREATE:
1642       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_ACK:
1643       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_DESTROY:
1644       case GNUNET_MESSAGE_TYPE_CADET_CONNECTION_BROKEN:
1645       case GNUNET_MESSAGE_TYPE_CADET_ACK:
1646       case GNUNET_MESSAGE_TYPE_CADET_POLL:
1647         dest = GCP_queue_destroy (q, GNUNET_YES, GNUNET_NO, 0);
1648         if (GNUNET_YES == dest)
1649         {
1650           GNUNET_break (GNUNET_NO == *destroyed);
1651           *destroyed = GNUNET_YES;
1652         }
1653         continue;
1654
1655       case GNUNET_MESSAGE_TYPE_CADET_KX:
1656       case GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED:
1657       case GNUNET_MESSAGE_TYPE_CADET_AX:
1658       case GNUNET_MESSAGE_TYPE_CADET_AX_KX:
1659         msg = (struct GNUNET_MessageHeader *) q->cls;
1660         dest = GCP_queue_destroy (q, GNUNET_NO, GNUNET_NO, 0);
1661         if (GNUNET_YES == dest)
1662         {
1663           GNUNET_break (GNUNET_NO == *destroyed);
1664           *destroyed = GNUNET_YES;
1665         }
1666         return msg;
1667
1668       default:
1669         GNUNET_break (0);
1670         LOG (GNUNET_ERROR_TYPE_DEBUG, "Unknown message %s\n", GC_m2s (q->type));
1671     }
1672   }
1673   GCC_check_connections ();
1674   return NULL;
1675 }
1676
1677
1678 /**
1679  * Unlock a possibly locked queue for a connection.
1680  *
1681  * If there is a message that can be sent on this connection, call core for it.
1682  * Otherwise (if core transmit is already called or there is no sendable
1683  * message) do nothing.
1684  *
1685  * @param peer Peer who keeps the queue.
1686  * @param c Connection whose messages to unlock.
1687  */
1688 void
1689 GCP_queue_unlock (struct CadetPeer *peer, struct CadetConnection *c)
1690 {
1691   struct CadetPeerQueue *q;
1692   size_t size;
1693
1694   GCC_check_connections ();
1695   if (NULL != peer->core_transmit)
1696   {
1697     LOG (GNUNET_ERROR_TYPE_DEBUG, "  already unlocked!\n");
1698     return; /* Already unlocked */
1699   }
1700
1701   q = connection_get_first_message (peer, c);
1702   if (NULL == q)
1703   {
1704     LOG (GNUNET_ERROR_TYPE_DEBUG, "  queue empty!\n");
1705     return; /* Nothing to transmit */
1706   }
1707
1708   size = q->size;
1709   peer->core_transmit =
1710       GNUNET_CORE_notify_transmit_ready (core_handle,
1711                                          GNUNET_NO, get_priority (q),
1712                                          GNUNET_TIME_UNIT_FOREVER_REL,
1713                                          GNUNET_PEER_resolve2 (peer->id),
1714                                          get_core_size (size),
1715                                          &queue_send,
1716                                          peer);
1717   peer->tmt_time = GNUNET_TIME_absolute_get ();
1718   GCC_check_connections ();
1719 }
1720
1721
1722 /**
1723  * Initialize the peer subsystem.
1724  *
1725  * @param c Configuration.
1726  */
1727 void
1728 GCP_init (const struct GNUNET_CONFIGURATION_Handle *c)
1729 {
1730   LOG (GNUNET_ERROR_TYPE_DEBUG,
1731        "GCP_init\n");
1732   in_shutdown = GNUNET_NO;
1733   peers = GNUNET_CONTAINER_multipeermap_create (128, GNUNET_NO);
1734   if (GNUNET_OK !=
1735       GNUNET_CONFIGURATION_get_value_number (c, "CADET", "MAX_PEERS",
1736                                              &max_peers))
1737   {
1738     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1739                                "CADET", "MAX_PEERS", "USING DEFAULT");
1740     max_peers = 1000;
1741   }
1742
1743   if (GNUNET_OK !=
1744       GNUNET_CONFIGURATION_get_value_number (c, "CADET", "DROP_PERCENT",
1745                                              &drop_percent))
1746   {
1747     drop_percent = 0;
1748   }
1749   else
1750   {
1751     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1752     LOG (GNUNET_ERROR_TYPE_WARNING, "Cadet is running with DROP enabled.\n");
1753     LOG (GNUNET_ERROR_TYPE_WARNING, "This is NOT a good idea!\n");
1754     LOG (GNUNET_ERROR_TYPE_WARNING, "Remove DROP_PERCENT from config file.\n");
1755     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1756   }
1757
1758   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
1759                                      NULL,      /* Closure passed to CADET functions */
1760                                      &core_init,        /* Call core_init once connected */
1761                                      &core_connect,     /* Handle connects */
1762                                      &core_disconnect,  /* remove peers on disconnects */
1763                                      NULL,      /* Don't notify about all incoming messages */
1764                                      GNUNET_NO, /* For header only in notification */
1765                                      NULL,      /* Don't notify about all outbound messages */
1766                                      GNUNET_NO, /* For header-only out notification */
1767                                      core_handlers);    /* Register these handlers */
1768   if (GNUNET_YES !=
1769       GNUNET_CONFIGURATION_get_value_yesno (c, "CADET", "DISABLE_TRY_CONNECT"))
1770   {
1771     transport_handle = GNUNET_TRANSPORT_connect (c, &my_full_id, NULL, /* cls */
1772                                                  /* Notify callbacks */
1773                                                  NULL, NULL, NULL);
1774   }
1775   else
1776   {
1777     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1778     LOG (GNUNET_ERROR_TYPE_WARNING, "*  DISABLE TRYING CONNECT in config  *\n");
1779     LOG (GNUNET_ERROR_TYPE_WARNING, "*  Use this only for test purposes.  *\n");
1780     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1781     transport_handle = NULL;
1782   }
1783
1784
1785
1786   if (NULL == core_handle)
1787   {
1788     GNUNET_break (0);
1789     GNUNET_SCHEDULER_shutdown ();
1790     return;
1791   }
1792
1793 }
1794
1795
1796 /**
1797  * Shut down the peer subsystem.
1798  */
1799 void
1800 GCP_shutdown (void)
1801 {
1802   LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down peers\n");
1803   in_shutdown = GNUNET_YES;
1804   GNUNET_CONTAINER_multipeermap_iterate (peers,
1805                                          &shutdown_peer,
1806                                          NULL);
1807   if (NULL != core_handle)
1808   {
1809     GNUNET_CORE_disconnect (core_handle);
1810     core_handle = NULL;
1811   }
1812   if (NULL != transport_handle)
1813   {
1814     GNUNET_TRANSPORT_disconnect (transport_handle);
1815     transport_handle = NULL;
1816   }
1817   GNUNET_PEER_change_rc (myid, -1);
1818   GNUNET_CONTAINER_multipeermap_destroy (peers);
1819   peers = NULL;
1820 }
1821
1822
1823 /**
1824  * Retrieve the CadetPeer stucture associated with the peer. Optionally create
1825  * one and insert it in the appropriate structures if the peer is not known yet.
1826  *
1827  * @param peer_id Full identity of the peer.
1828  * @param create #GNUNET_YES if a new peer should be created if unknown.
1829  *               #GNUNET_NO otherwise.
1830  *
1831  * @return Existing or newly created peer structure.
1832  *         NULL if unknown and not requested @a create
1833  */
1834 struct CadetPeer *
1835 GCP_get (const struct GNUNET_PeerIdentity *peer_id, int create)
1836 {
1837   struct CadetPeer *peer;
1838
1839   peer = GNUNET_CONTAINER_multipeermap_get (peers, peer_id);
1840   if (NULL == peer)
1841   {
1842     peer = GNUNET_new (struct CadetPeer);
1843     if (GNUNET_CONTAINER_multipeermap_size (peers) > max_peers)
1844     {
1845       peer_delete_oldest ();
1846     }
1847     GNUNET_assert (GNUNET_OK ==
1848                    GNUNET_CONTAINER_multipeermap_put (peers,
1849                                                       peer_id,
1850                                                       peer,
1851                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
1852     peer->id = GNUNET_PEER_intern (peer_id);
1853   }
1854   peer->last_contact = GNUNET_TIME_absolute_get ();
1855
1856   return peer;
1857 }
1858
1859
1860 /**
1861  * Retrieve the CadetPeer stucture associated with the peer. Optionally create
1862  * one and insert it in the appropriate structures if the peer is not known yet.
1863  *
1864  * @param peer Short identity of the peer.
1865  * @param create #GNUNET_YES if a new peer should be created if unknown.
1866  *               #GNUNET_NO otherwise.
1867  *
1868  * @return Existing or newly created peer structure.
1869  *         NULL if unknown and not requested @a create
1870  */
1871 struct CadetPeer *
1872 GCP_get_short (const GNUNET_PEER_Id peer, int create)
1873 {
1874   return GCP_get (GNUNET_PEER_resolve2 (peer), create);
1875 }
1876
1877
1878 /**
1879  * Try to connect to a peer on transport level.
1880  *
1881  * @param cls Closure (peer).
1882  * @param tc TaskContext.
1883  */
1884 static void
1885 try_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1886 {
1887   struct CadetPeer *peer = cls;
1888
1889   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
1890     return;
1891
1892   GNUNET_TRANSPORT_try_connect (transport_handle,
1893                                 GNUNET_PEER_resolve2 (peer->id), NULL, NULL);
1894 }
1895
1896
1897 /**
1898  * Try to establish a new connection to this peer (in its tunnel).
1899  * If the peer doesn't have any path to it yet, try to get one.
1900  * If the peer already has some path, send a CREATE CONNECTION towards it.
1901  *
1902  * @param peer Peer to connect to.
1903  */
1904 void
1905 GCP_connect (struct CadetPeer *peer)
1906 {
1907   struct CadetTunnel *t;
1908   struct CadetPeerPath *path;
1909   struct CadetConnection *c;
1910   int rerun_search;
1911
1912   GCC_check_connections ();
1913   LOG (GNUNET_ERROR_TYPE_DEBUG, "peer_connect towards %s\n", GCP_2s (peer));
1914
1915   /* If we have a current hello, try to connect using it. */
1916   GCP_try_connect (peer);
1917
1918   t = peer->tunnel;
1919   c = NULL;
1920   rerun_search = GNUNET_NO;
1921
1922   if (NULL != peer->path_head)
1923   {
1924     LOG (GNUNET_ERROR_TYPE_DEBUG, "  some path exists\n");
1925     path = peer_get_best_path (peer);
1926     if (NULL != path)
1927     {
1928       char *s;
1929
1930       s = path_2s (path);
1931       LOG (GNUNET_ERROR_TYPE_DEBUG, "  path to use: %s\n", s);
1932       GNUNET_free (s);
1933
1934       c = GCT_use_path (t, path);
1935       if (NULL == c)
1936       {
1937         /* This case can happen when the path includes a first hop that is
1938          * not yet known to be connected.
1939          *
1940          * This happens quite often during testing when running cadet
1941          * under valgrind: core connect notifications come very late
1942          * and the DHT result has already come and created a valid
1943          * path.  In this case, the peer->connections
1944          * hashmaps will be NULL and tunnel_use_path will not be able
1945          * to create a connection from that path.
1946          *
1947          * Re-running the DHT GET should give core time to callback.
1948          *
1949          * GCT_use_path -> GCC_new -> register_neighbors takes care of
1950          * updating statistics about this issue.
1951          */
1952         rerun_search = GNUNET_YES;
1953       }
1954       else
1955       {
1956         GCC_send_create (c);
1957         return;
1958       }
1959     }
1960     else
1961     {
1962       LOG (GNUNET_ERROR_TYPE_DEBUG, "  but is NULL, all paths are in use\n");
1963     }
1964   }
1965
1966   if (GNUNET_YES == rerun_search)
1967   {
1968     struct GNUNET_TIME_Relative delay;
1969
1970     GCP_stop_search (peer);
1971     delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 100);
1972     peer->search_delayed = GNUNET_SCHEDULER_add_delayed (delay,
1973                                                          &delayed_search,
1974                                                          peer);
1975     GCC_check_connections ();
1976     return;
1977   }
1978
1979   if (GNUNET_NO == is_searching (peer))
1980     GCP_start_search (peer);
1981   GCC_check_connections ();
1982 }
1983
1984
1985 /**
1986  * Chech whether there is a direct (core level)  connection to peer.
1987  *
1988  * @param peer Peer to check.
1989  *
1990  * @return #GNUNET_YES if there is a direct connection.
1991  */
1992 int
1993 GCP_is_neighbor (const struct CadetPeer *peer)
1994 {
1995   struct CadetPeerPath *path;
1996
1997   if (NULL == peer->connections)
1998     return GNUNET_NO;
1999
2000   for (path = peer->path_head; NULL != path; path = path->next)
2001   {
2002     if (3 > path->length)
2003       return GNUNET_YES;
2004   }
2005
2006   /* Is not a neighbor but connections is not NULL, probably disconnecting */
2007   GNUNET_break (0);
2008   return GNUNET_NO;
2009 }
2010
2011
2012 /**
2013  * Create and initialize a new tunnel towards a peer, in case it has none.
2014  * In case the peer already has a tunnel, nothing is done.
2015  *
2016  * Does not generate any traffic, just creates the local data structures.
2017  *
2018  * @param peer Peer towards which to create the tunnel.
2019  */
2020 void
2021 GCP_add_tunnel (struct CadetPeer *peer)
2022 {
2023   GCC_check_connections ();
2024   if (NULL != peer->tunnel)
2025     return;
2026   peer->tunnel = GCT_new (peer);
2027   GCC_check_connections ();
2028 }
2029
2030
2031 /**
2032  * Add a connection to a neighboring peer.
2033  *
2034  * Store that the peer is the first hop of the connection in one
2035  * direction and that on peer disconnect the connection must be
2036  * notified and destroyed, for it will no longer be valid.
2037  *
2038  * @param peer Peer to add connection to.
2039  * @param c Connection to add.
2040  * @param pred #GNUNET_YES if we are predecessor, #GNUNET_NO if we are successor
2041  */
2042 void
2043 GCP_add_connection (struct CadetPeer *peer,
2044                     struct CadetConnection *c,
2045                     int pred)
2046 {
2047   LOG (GNUNET_ERROR_TYPE_DEBUG,
2048        "adding connection %s\n",
2049        GCC_2s (c));
2050   LOG (GNUNET_ERROR_TYPE_DEBUG,
2051        "to peer %s\n",
2052        GCP_2s (peer));
2053   GNUNET_assert (NULL != peer->connections);
2054   GNUNET_assert (GNUNET_OK ==
2055                  GNUNET_CONTAINER_multihashmap_put (peer->connections,
2056                                                     GCC_get_h (c),
2057                                                     c,
2058                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
2059   LOG (GNUNET_ERROR_TYPE_DEBUG,
2060        "Peer %s has now %u connections.\n",
2061        GCP_2s (peer),
2062        GNUNET_CONTAINER_multihashmap_size (peer->connections));
2063 }
2064
2065
2066 /**
2067  * Add the path to the peer and update the path used to reach it in case this
2068  * is the shortest.
2069  *
2070  * @param peer Destination peer to add the path to.
2071  * @param path New path to add. Last peer must be @c peer.
2072  *             Path will be either used of freed if already known.
2073  * @param trusted Do we trust that this path is real?
2074  *
2075  * @return path if path was taken, pointer to existing duplicate if exists
2076  *         NULL on error.
2077  */
2078 struct CadetPeerPath *
2079 GCP_add_path (struct CadetPeer *peer,
2080               struct CadetPeerPath *path,
2081               int trusted)
2082 {
2083   struct CadetPeerPath *aux;
2084   unsigned int l;
2085   unsigned int l2;
2086
2087   GCC_check_connections ();
2088   LOG (GNUNET_ERROR_TYPE_DEBUG,
2089        "adding path [%u] to peer %s\n",
2090        path->length, GCP_2s (peer));
2091
2092   if (NULL == peer || NULL == path
2093       || path->peers[path->length - 1] != peer->id)
2094   {
2095     GNUNET_break (0);
2096     path_destroy (path);
2097     return NULL;
2098   }
2099
2100   for (l = 1; l < path->length; l++)
2101   {
2102     if (path->peers[l] == myid)
2103     {
2104       LOG (GNUNET_ERROR_TYPE_DEBUG, " shortening path by %u\n", l);
2105       for (l2 = 0; l2 < path->length - l; l2++)
2106       {
2107         path->peers[l2] = path->peers[l + l2];
2108       }
2109       path->length -= l;
2110       l = 1;
2111       path->peers = GNUNET_realloc (path->peers,
2112                                     path->length * sizeof (GNUNET_PEER_Id));
2113     }
2114   }
2115
2116   LOG (GNUNET_ERROR_TYPE_DEBUG, " final length: %u\n", path->length);
2117
2118   if (2 >= path->length && GNUNET_NO == trusted)
2119   {
2120     /* Only allow CORE to tell us about direct paths */
2121     path_destroy (path);
2122     return NULL;
2123   }
2124
2125   l = path_get_length (path);
2126   if (0 == l)
2127   {
2128     path_destroy (path);
2129     return NULL;
2130   }
2131
2132   GNUNET_assert (peer->id == path->peers[path->length - 1]);
2133   for (aux = peer->path_head; aux != NULL; aux = aux->next)
2134   {
2135     l2 = path_get_length (aux);
2136     if (l2 > l)
2137     {
2138       LOG (GNUNET_ERROR_TYPE_DEBUG, "  added\n");
2139       GNUNET_CONTAINER_DLL_insert_before (peer->path_head,
2140                                           peer->path_tail, aux, path);
2141       goto finish;
2142     }
2143     else
2144     {
2145       if (l2 == l && memcmp (path->peers, aux->peers, l) == 0)
2146       {
2147         LOG (GNUNET_ERROR_TYPE_DEBUG, "  already known\n");
2148         path_destroy (path);
2149         return aux;
2150       }
2151     }
2152   }
2153   GNUNET_CONTAINER_DLL_insert_tail (peer->path_head, peer->path_tail,
2154                                     path);
2155   LOG (GNUNET_ERROR_TYPE_DEBUG, "  added last\n");
2156
2157 finish:
2158   if (NULL != peer->tunnel
2159       && CONNECTIONS_PER_TUNNEL > GCT_count_connections (peer->tunnel)
2160       && 2 < path->length) /* Direct paths are handled by core_connect */
2161   {
2162     GCP_connect (peer);
2163   }
2164   GCC_check_connections ();
2165   return path;
2166 }
2167
2168
2169 /**
2170  * Add the path to the origin peer and update the path used to reach it in case
2171  * this is the shortest.
2172  * The path is given in peer_info -> destination, therefore we turn the path
2173  * upside down first.
2174  *
2175  * @param peer Peer to add the path to, being the origin of the path.
2176  * @param path New path to add after being inversed.
2177  *             Path will be either used or freed.
2178  * @param trusted Do we trust that this path is real?
2179  *
2180  * @return path if path was taken, pointer to existing duplicate if exists
2181  *         NULL on error.
2182  */
2183 struct CadetPeerPath *
2184 GCP_add_path_to_origin (struct CadetPeer *peer,
2185                         struct CadetPeerPath *path,
2186                         int trusted)
2187 {
2188   if (NULL == path)
2189     return NULL;
2190   path_invert (path);
2191   return GCP_add_path (peer, path, trusted);
2192 }
2193
2194
2195 /**
2196  * Adds a path to the info of all the peers in the path
2197  *
2198  * @param p Path to process.
2199  * @param confirmed Whether we know if the path works or not.
2200  */
2201 void
2202 GCP_add_path_to_all (const struct CadetPeerPath *p, int confirmed)
2203 {
2204   unsigned int i;
2205
2206   /* TODO: invert and add */
2207   GCC_check_connections ();
2208   for (i = 0; i < p->length && p->peers[i] != myid; i++) /* skip'em */ ;
2209   for (i++; i < p->length; i++)
2210   {
2211     struct CadetPeer *peer;
2212     struct CadetPeerPath *copy;
2213
2214     peer = GCP_get_short (p->peers[i], GNUNET_YES);
2215     copy = path_duplicate (p);
2216     copy->length = i + 1;
2217     GCP_add_path (peer, copy, 3 > p->length ? GNUNET_NO : confirmed);
2218   }
2219   GCC_check_connections ();
2220 }
2221
2222
2223 /**
2224  * Remove any path to the peer that has the exact same peers as the one given.
2225  *
2226  * @param peer Peer to remove the path from.
2227  * @param path Path to remove. Is always destroyed .
2228  */
2229 void
2230 GCP_remove_path (struct CadetPeer *peer, struct CadetPeerPath *path)
2231 {
2232   struct CadetPeerPath *iter;
2233   struct CadetPeerPath *next;
2234
2235   GCC_check_connections ();
2236   GNUNET_assert (myid == path->peers[0]);
2237   GNUNET_assert (peer->id == path->peers[path->length - 1]);
2238
2239   LOG (GNUNET_ERROR_TYPE_INFO, "Removing path %p (%u) from %s\n",
2240        path, path->length, GCP_2s (peer));
2241
2242   for (iter = peer->path_head; NULL != iter; iter = next)
2243   {
2244     next = iter->next;
2245     if (0 == path_cmp (path, iter))
2246     {
2247       GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, iter);
2248       if (iter != path)
2249         path_destroy (iter);
2250     }
2251   }
2252   path_destroy (path);
2253   GCC_check_connections ();
2254 }
2255
2256
2257 /**
2258  * Check that we are aware of a connection from a neighboring peer.
2259  *
2260  * @param peer Peer to the connection is with
2261  * @param c Connection that should be in the map with this peer.
2262  */
2263 void
2264 GCP_check_connection (const struct CadetPeer *peer,
2265                       const struct CadetConnection *c)
2266 {
2267   GNUNET_assert (NULL != peer);
2268   GNUNET_assert (NULL != peer->connections);
2269     return;
2270   GNUNET_assert (GNUNET_YES ==
2271                  GNUNET_CONTAINER_multihashmap_contains_value (peer->connections,
2272                                                                GCC_get_h (c),
2273                                                                c));
2274 }
2275
2276
2277 /**
2278  * Remove a connection from a neighboring peer.
2279  *
2280  * @param peer Peer to remove connection from.
2281  * @param c Connection to remove.
2282  */
2283 void
2284 GCP_remove_connection (struct CadetPeer *peer,
2285                        const struct CadetConnection *c)
2286 {
2287   LOG (GNUNET_ERROR_TYPE_DEBUG,
2288        "Removing connection %s\n",
2289        GCC_2s (c));
2290   LOG (GNUNET_ERROR_TYPE_DEBUG,
2291        "from peer %s\n",
2292        GCP_2s (peer));
2293   if ( (NULL == peer) ||
2294        (NULL == peer->connections) )
2295     return;
2296   GNUNET_assert (GNUNET_YES ==
2297                  GNUNET_CONTAINER_multihashmap_remove (peer->connections,
2298                                                        GCC_get_h (c),
2299                                                        c));
2300   LOG (GNUNET_ERROR_TYPE_DEBUG,
2301        "Peer %s remains with %u connections.\n",
2302        GCP_2s (peer),
2303        GNUNET_CONTAINER_multihashmap_size (peer->connections));
2304 }
2305
2306
2307 /**
2308  * Start the DHT search for new paths towards the peer: we don't have
2309  * enough good connections.
2310  *
2311  * @param peer Destination peer.
2312  */
2313 void
2314 GCP_start_search (struct CadetPeer *peer)
2315 {
2316   const struct GNUNET_PeerIdentity *id;
2317   struct CadetTunnel *t = peer->tunnel;
2318
2319   GCC_check_connections ();
2320  if (NULL != peer->search_h)
2321   {
2322     GNUNET_break (0);
2323     return;
2324   }
2325
2326   if (NULL != peer->search_delayed)
2327     GCP_stop_search (peer);
2328
2329   id = GNUNET_PEER_resolve2 (peer->id);
2330   peer->search_h = GCD_search (id, &search_handler, peer);
2331
2332   if (NULL == t)
2333   {
2334     /* Why would we search for a peer with no tunnel towards it? */
2335     GNUNET_break (0);
2336     return;
2337   }
2338
2339   if (CADET_TUNNEL_NEW == GCT_get_cstate (t)
2340       || 0 == GCT_count_any_connections (t))
2341   {
2342     GCT_change_cstate (t, CADET_TUNNEL_SEARCHING);
2343   }
2344   GCC_check_connections ();
2345 }
2346
2347
2348 /**
2349  * Stop the DHT search for new paths towards the peer: we already have
2350  * enough good connections.
2351  *
2352  * @param peer Destination peer.
2353  */
2354 void
2355 GCP_stop_search (struct CadetPeer *peer)
2356 {
2357   GCC_check_connections ();
2358   if (NULL != peer->search_h)
2359   {
2360     GCD_search_stop (peer->search_h);
2361     peer->search_h = NULL;
2362   }
2363   if (NULL != peer->search_delayed)
2364   {
2365     GNUNET_SCHEDULER_cancel (peer->search_delayed);
2366     peer->search_delayed = NULL;
2367   }
2368   GCC_check_connections ();
2369 }
2370
2371
2372 /**
2373  * Get the Full ID of a peer.
2374  *
2375  * @param peer Peer to get from.
2376  *
2377  * @return Full ID of peer.
2378  */
2379 const struct GNUNET_PeerIdentity *
2380 GCP_get_id (const struct CadetPeer *peer)
2381 {
2382   return GNUNET_PEER_resolve2 (peer->id);
2383 }
2384
2385
2386 /**
2387  * Get the Short ID of a peer.
2388  *
2389  * @param peer Peer to get from.
2390  *
2391  * @return Short ID of peer.
2392  */
2393 GNUNET_PEER_Id
2394 GCP_get_short_id (const struct CadetPeer *peer)
2395 {
2396   return peer->id;
2397 }
2398
2399
2400 /**
2401  * Set tunnel.
2402  *
2403  * If tunnel is NULL and there was a search active, stop it, as it's useless.
2404  *
2405  * @param peer Peer.
2406  * @param t Tunnel.
2407  */
2408 void
2409 GCP_set_tunnel (struct CadetPeer *peer, struct CadetTunnel *t)
2410 {
2411   peer->tunnel = t;
2412   if (NULL == t && GNUNET_YES == is_searching (peer))
2413   {
2414     GCP_stop_search (peer);
2415   }
2416 }
2417
2418
2419 /**
2420  * Get the tunnel towards a peer.
2421  *
2422  * @param peer Peer to get from.
2423  *
2424  * @return Tunnel towards peer.
2425  */
2426 struct CadetTunnel *
2427 GCP_get_tunnel (const struct CadetPeer *peer)
2428 {
2429   if (NULL == peer)
2430     return NULL;
2431   return peer->tunnel;
2432 }
2433
2434
2435 /**
2436  * Set the hello message.
2437  *
2438  * @param peer Peer whose message to set.
2439  * @param hello Hello message.
2440  */
2441 void
2442 GCP_set_hello (struct CadetPeer *peer, const struct GNUNET_HELLO_Message *hello)
2443 {
2444   struct GNUNET_HELLO_Message *old;
2445   size_t size;
2446
2447   GCC_check_connections ();
2448  LOG (GNUNET_ERROR_TYPE_DEBUG, "set hello for %s\n", GCP_2s (peer));
2449   if (NULL == hello)
2450     return;
2451
2452   old = GCP_get_hello (peer);
2453   if (NULL == old)
2454   {
2455     size = GNUNET_HELLO_size (hello);
2456     peer->hello = GNUNET_malloc (size);
2457     memcpy (peer->hello, hello, size);
2458   }
2459   else
2460   {
2461     peer->hello = GNUNET_HELLO_merge (old, hello);
2462     GNUNET_free (old);
2463   }
2464   GCC_check_connections ();
2465 }
2466
2467
2468 /**
2469  * Get the hello message.
2470  *
2471  * @param peer Peer whose message to get.
2472  *
2473  * @return Hello message.
2474  */
2475 struct GNUNET_HELLO_Message *
2476 GCP_get_hello (struct CadetPeer *peer)
2477 {
2478   struct GNUNET_TIME_Absolute expiration;
2479   struct GNUNET_TIME_Relative remaining;
2480
2481   if (NULL == peer->hello)
2482     return NULL;
2483
2484   expiration = GNUNET_HELLO_get_last_expiration (peer->hello);
2485   remaining = GNUNET_TIME_absolute_get_remaining (expiration);
2486   if (0 == remaining.rel_value_us)
2487   {
2488     LOG (GNUNET_ERROR_TYPE_DEBUG, " get - hello expired on %s\n",
2489          GNUNET_STRINGS_absolute_time_to_string (expiration));
2490     GNUNET_free (peer->hello);
2491     peer->hello = NULL;
2492   }
2493   return peer->hello;
2494 }
2495
2496
2497 /**
2498  * Try to connect to a peer on TRANSPORT level.
2499  *
2500  * @param peer Peer to whom to connect.
2501  */
2502 void
2503 GCP_try_connect (struct CadetPeer *peer)
2504 {
2505   struct GNUNET_HELLO_Message *hello;
2506   struct GNUNET_MessageHeader *mh;
2507
2508   if (NULL == transport_handle)
2509     return;
2510   GCC_check_connections ();
2511   if (GNUNET_YES == GCP_is_neighbor (peer))
2512     return;
2513   hello = GCP_get_hello (peer);
2514   if (NULL == hello)
2515     return;
2516
2517   mh = GNUNET_HELLO_get_header (hello);
2518   GNUNET_TRANSPORT_offer_hello (transport_handle,
2519                                 mh,
2520                                 &try_connect,
2521                                 peer);
2522   GCC_check_connections ();
2523 }
2524
2525
2526 /**
2527  * Notify a peer that a link between two other peers is broken. If any path
2528  * used that link, eliminate it.
2529  *
2530  * @param peer Peer affected by the change.
2531  * @param peer1 Peer whose link is broken.
2532  * @param peer2 Peer whose link is broken.
2533  */
2534 void
2535 GCP_notify_broken_link (struct CadetPeer *peer,
2536                         const struct GNUNET_PeerIdentity *peer1,
2537                         const struct GNUNET_PeerIdentity *peer2)
2538 {
2539   struct CadetPeerPath *iter;
2540   struct CadetPeerPath *next;
2541   unsigned int i;
2542   GNUNET_PEER_Id p1;
2543   GNUNET_PEER_Id p2;
2544
2545   GCC_check_connections ();
2546   p1 = GNUNET_PEER_search (peer1);
2547   p2 = GNUNET_PEER_search (peer2);
2548
2549   LOG (GNUNET_ERROR_TYPE_DEBUG, "Link %u-%u broken\n", p1, p2);
2550   if (0 == p1 || 0 == p2)
2551   {
2552     /* We don't even know them */
2553     return;
2554   }
2555
2556   for (iter = peer->path_head; NULL != iter; iter = next)
2557   {
2558     next = iter->next;
2559     for (i = 0; i < iter->length - 1; i++)
2560     {
2561       if ((iter->peers[i] == p1 && iter->peers[i + 1] == p2)
2562           || (iter->peers[i] == p2 && iter->peers[i + 1] == p1))
2563       {
2564         char *s;
2565
2566         s = path_2s (iter);
2567         LOG (GNUNET_ERROR_TYPE_DEBUG, " - invalidating %s\n", s);
2568         GNUNET_free (s);
2569
2570         path_invalidate (iter);
2571       }
2572     }
2573   }
2574   GCC_check_connections ();
2575 }
2576
2577
2578 /**
2579  * Count the number of known paths toward the peer.
2580  *
2581  * @param peer Peer to get path info.
2582  *
2583  * @return Number of known paths.
2584  */
2585 unsigned int
2586 GCP_count_paths (const struct CadetPeer *peer)
2587 {
2588   struct CadetPeerPath *iter;
2589   unsigned int i;
2590
2591   for (iter = peer->path_head, i = 0; NULL != iter; iter = iter->next)
2592     i++;
2593
2594   return i;
2595 }
2596
2597
2598 /**
2599  * Iterate over the paths to a peer.
2600  *
2601  * @param peer Peer to get path info.
2602  * @param callback Function to call for every path.
2603  * @param cls Closure for @a callback.
2604  *
2605  * @return Number of iterated paths.
2606  */
2607 unsigned int
2608 GCP_iterate_paths (struct CadetPeer *peer,
2609                    GCP_path_iterator callback,
2610                    void *cls)
2611 {
2612   struct CadetPeerPath *iter;
2613   unsigned int i;
2614
2615   for (iter = peer->path_head, i = 0; NULL != iter; iter = iter->next)
2616   {
2617     i++;
2618     if (GNUNET_YES != callback (cls, peer, iter))
2619       break;
2620   }
2621
2622   return i;
2623 }
2624
2625
2626 /**
2627  * Iterate all known peers.
2628  *
2629  * @param iter Iterator.
2630  * @param cls Closure for @c iter.
2631  */
2632 void
2633 GCP_iterate_all (GNUNET_CONTAINER_PeerMapIterator iter,
2634                  void *cls)
2635 {
2636   GCC_check_connections ();
2637   GNUNET_CONTAINER_multipeermap_iterate (peers,
2638                                          iter,
2639                                          cls);
2640   GCC_check_connections ();
2641 }
2642
2643
2644 /**
2645  * Get the static string for a peer ID.
2646  *
2647  * @param peer Peer.
2648  *
2649  * @return Static string for it's ID.
2650  */
2651 const char *
2652 GCP_2s (const struct CadetPeer *peer)
2653 {
2654   if (NULL == peer)
2655     return "(NULL)";
2656   return GNUNET_i2s (GNUNET_PEER_resolve2 (peer->id));
2657 }
2658
2659
2660 /* end of gnunet-service-cadet_peer.c */