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