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