-more stuff
[oweals/gnunet.git] / src / dht / gnunet-service-wdht_neighbours.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009-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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file dht/gnunet-service-wdht_neighbours.c
22  * @brief GNUnet DHT service's finger and friend table management code
23  * @author Supriti Singh
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27 #include "gnunet_block_lib.h"
28 #include "gnunet_hello_lib.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_protocols.h"
31 #include "gnunet_ats_service.h"
32 #include "gnunet_core_service.h"
33 #include "gnunet_datacache_lib.h"
34 #include "gnunet_transport_service.h"
35 #include "gnunet_dht_service.h"
36 #include "gnunet_statistics_service.h"
37 #include "gnunet-service-wdht.h"
38 #include "gnunet-service-wdht_clients.h"
39 #include "gnunet-service-wdht_datacache.h"
40 #include "gnunet-service-wdht_neighbours.h"
41 #include "gnunet-service-wdht_nse.h"
42 #include <fenv.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include "dht.h"
46
47 #define DEBUG(...)                                           \
48   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
49
50 /**
51  * Trail timeout. After what time do trails always die?
52  */
53 #define TRAIL_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 42)
54
55 /**
56  * Random walk delay. How often do we walk the overlay?
57  */
58 #define RANDOM_WALK_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 42)
59
60 /**
61  * The number of layered ID to use.
62  */
63 #define NUMBER_LAYERED_ID 8
64
65 /**
66  * The number of random walk to launch at the beginning of the initialization
67  */
68 /* FIXME: find a better value */
69 #define NUMBER_RANDOM_WALK 20
70
71
72 /******************* The db structure and related functions *******************/
73
74 /**
75  * Entry in #friends_peermap.
76  */
77 struct FriendInfo;
78
79
80 /**
81  * Information we keep per trail.
82  */
83 struct Trail
84 {
85
86   /**
87    * MDLL entry in the list of all trails with the same predecessor.
88    */
89   struct Trail *prev_succ;
90
91   /**
92    * MDLL entry in the list of all trails with the same predecessor.
93    */
94   struct Trail *next_succ;
95
96   /**
97    * MDLL entry in the list of all trails with the same predecessor.
98    */
99   struct Trail *prev_pred;
100
101   /**
102    * MDLL entry in the list of all trails with the same predecessor.
103    */
104   struct Trail *next_pred;
105
106   /**
107    * Our predecessor in the trail, NULL if we are initiator (?).
108    */
109   struct FriendInfo *pred;
110
111   /**
112    * Our successor in the trail, NULL if we are the last peer.
113    */
114   struct FriendInfo *succ;
115
116   /**
117    * Identifier of the trail with the predecessor.
118    */
119   struct GNUNET_HashCode pred_id;
120
121   /**
122    * Identifier of the trail with the successor.
123    */
124   struct GNUNET_HashCode succ_id;
125
126   /**
127    * When does this trail expire.
128    */
129   struct GNUNET_TIME_Absolute expiration_time;
130
131   /**
132    * Location of this trail in the heap.
133    */
134   struct GNUNET_CONTAINER_HeapNode *hn;
135
136   /**
137    * If this peer started the to create a Finger (and thus @e pred is
138    * NULL), this is the Finger we are trying to intialize.
139    */
140   struct Finger **finger;
141
142 };
143
144
145 /**
146  *  Entry in #friends_peermap.
147  */
148 struct FriendInfo
149 {
150   /**
151    * Friend Identity
152    */
153   struct GNUNET_PeerIdentity id;
154
155   /**
156    *
157    */
158   struct Trail *pred_head;
159
160   /**
161    *
162    */
163   struct Trail *pred_tail;
164
165   /**
166    *
167    */
168   struct Trail *succ_head;
169
170   /**
171    *
172    */
173   struct Trail *succ_tail;
174
175   /**
176    * Core handle for sending messages to this friend.
177    */
178   struct GNUNET_MQ_Handle *mq;
179
180 };
181
182
183 /**
184  *
185  */
186 struct FingerTable;
187
188
189 /**
190  *
191  */
192 struct Finger
193 {
194   /**
195    *
196    */
197   struct Trail *trail;
198
199   /**
200    *
201    */
202   struct FingerTable *ft;
203
204   /**
205    *
206    */
207   struct GNUNET_HashCode destination;
208
209   /**
210    * #GNUNET_YES if a response has been received. Otherwise #GNUNET_NO.
211    */
212   int valid;
213 };
214
215
216 struct FingerTable
217 {
218   /**
219    * Array of our fingers, unsorted.
220    */
221   struct Finger **fingers;
222
223   /**
224    * Array of sorted fingers (sorted by destination, valid fingers first).
225    */
226   struct Finger **sorted_fingers;
227
228   /**
229    * Size of the finger array.
230    */
231   unsigned int finger_array_size;
232
233   /**
234    * Number of valid entries in @e sorted_fingers (contiguous from offset 0)
235    */
236   unsigned int number_valid_fingers;
237
238   /**
239    * Which offset in @e fingers will we redo next.
240    */
241   unsigned int walk_offset;
242
243   /**
244    * Is the finger array sorted?
245    */
246   int is_sorted;
247
248 };
249
250
251 /***********************  end of the db structure part  ***********************/
252
253
254 GNUNET_NETWORK_STRUCT_BEGIN
255
256 /**
257  * Setup a finger using the underlay topology ("social network").
258  */
259 struct RandomWalkMessage
260 {
261   /**
262    * Type: #GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK
263    */
264   struct GNUNET_MessageHeader header;
265
266   /**
267    * Number of hops this message has taken so far, we stop at
268    * log(NSE), in NBO.
269    */
270   uint16_t hops_taken GNUNET_PACKED;
271
272   /**
273    * Layer for the request, in NBO.
274    */
275   uint16_t layer GNUNET_PACKED;
276
277   /**
278    * Unique (random) identifier this peer will use to
279    * identify the trail (in future messages).
280    */
281   struct GNUNET_HashCode trail_id;
282
283 };
284
285 /**
286  * Response to a `struct RandomWalkMessage`.
287  */
288 struct RandomWalkResponseMessage
289 {
290   /**
291    * Type: #GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK_RESPONSE
292    */
293   struct GNUNET_MessageHeader header;
294
295   /**
296    * Zero, for alignment.
297    */
298   uint32_t reserved GNUNET_PACKED;
299
300   /**
301    * Unique (random) identifier from the
302    * `struct RandomWalkMessage`.
303    */
304   struct GNUNET_HashCode trail_id;
305
306   /**
307    * Random location in the respective layer where the
308    * random path of the finger setup terminated.
309    */
310   struct GNUNET_HashCode location;
311
312 };
313
314 /**
315  * Response to an event that causes a trail to die.
316  */
317 struct TrailDestroyMessage
318 {
319   /**
320    * Type: #GNUNET_MESSAGE_TYPE_WDHT_TRAIL_DESTROY
321    */
322   struct GNUNET_MessageHeader header;
323
324   /**
325    * Zero, for alignment.
326    */
327   uint32_t reserved GNUNET_PACKED;
328
329   /**
330    * Unique (random) identifier this peer will use to
331    * identify the finger (in future messages).
332    */
333   struct GNUNET_HashCode trail_id;
334
335 };
336
337
338 /**
339  * Send a message along a trail.
340  */
341 struct FindSuccessorMessage
342 {
343   /**
344    * Type: #GNUNET_MESSAGE_TYPE_WDHT_FIND_SUCCESSOR
345    */
346   struct GNUNET_MessageHeader header;
347
348   /**
349    * Zero, for alignment.
350    */
351   uint32_t reserved GNUNET_PACKED;
352
353   /**
354    * Unique (random) identifier this peer will use to
355    * identify the finger (in future messages).
356    */
357   struct GNUNET_HashCode trail_id;
358
359   /**
360    * Key for which we would like close values returned.
361    * identify the finger (in future messages).
362    */
363   struct GNUNET_HashCode key;
364
365 };
366
367
368 /**
369  * Send a message along a trail.
370  */
371 struct TrailRouteMessage
372 {
373   /**
374    * Type: #GNUNET_MESSAGE_TYPE_WDHT_TRAIL_ROUTE
375    */
376   struct GNUNET_MessageHeader header;
377
378   /**
379    * #GNUNET_YES if the path should be recorded, #GNUNET_NO if not; in NBO.
380    */
381   uint16_t record_path GNUNET_PACKED;
382
383   /**
384    * Length of the recorded trail, 0 if @e record_path is #GNUNET_NO; in NBO.
385    */
386   uint16_t path_length GNUNET_PACKED;
387
388   /**
389    * Unique (random) identifier this peer will use to
390    * identify the finger (in future messages).
391    */
392   struct GNUNET_HashCode trail_id;
393
394   /**
395    * Path the message has taken so far (excluding sender).
396    */
397   /* struct GNUNET_PeerIdentity path[path_length]; */
398
399   /* followed by payload (another `struct GNUNET_MessageHeader`) to
400      send along the trail */
401 };
402
403
404 /**
405  * P2P PUT message
406  */
407 struct PeerPutMessage
408 {
409   /**
410    * Type: #GNUNET_MESSAGE_TYPE_WDHT_PUT
411    */
412   struct GNUNET_MessageHeader header;
413
414   /**
415    * Processing options
416    */
417   uint32_t options GNUNET_PACKED;
418
419   /**
420    * Content type.
421    */
422   uint32_t block_type GNUNET_PACKED;
423
424   /**
425    * Hop count
426    */
427   uint32_t hop_count GNUNET_PACKED;
428
429   /**
430    * Replication level for this message
431    * In the current implementation, this value is not used.
432    */
433   uint32_t desired_replication_level GNUNET_PACKED;
434
435   /**
436    * Length of the PUT path that follows (if tracked).
437    */
438   uint32_t put_path_length GNUNET_PACKED;
439
440   /**
441    * When does the content expire?
442    */
443   struct GNUNET_TIME_AbsoluteNBO expiration_time;
444
445   /**
446    * The key to store the value under.
447    */
448   struct GNUNET_HashCode key GNUNET_PACKED;
449
450   /* put path (if tracked) */
451
452   /* Payload */
453
454 };
455
456 /**
457  * P2P GET message
458  */
459 struct PeerGetMessage
460 {
461   /**
462    * Type: #GNUNET_MESSAGE_TYPE_WDHT_GET
463    */
464   struct GNUNET_MessageHeader header;
465
466   /**
467    * Processing options
468    */
469   uint32_t options GNUNET_PACKED;
470
471   /**
472    * Desired content type.
473    */
474   uint32_t block_type GNUNET_PACKED;
475
476   /**
477    * Hop count
478    */
479   uint32_t hop_count GNUNET_PACKED;
480
481   /**
482    * Desired replication level for this request.
483    * In the current implementation, this value is not used.
484    */
485   uint32_t desired_replication_level GNUNET_PACKED;
486
487   /**
488    * Total number of peers in get path.
489    */
490   unsigned int get_path_length;
491
492   /**
493    * The key we are looking for.
494    */
495   struct GNUNET_HashCode key;
496
497   /* Get path. */
498   /* struct GNUNET_PeerIdentity[]*/
499 };
500
501
502 /**
503  * P2P Result message
504  */
505 struct PeerGetResultMessage
506 {
507   /**
508    * Type: #GNUNET_MESSAGE_TYPE_WDHT_GET_RESULT
509    */
510   struct GNUNET_MessageHeader header;
511
512   /**
513    * The type for the data.
514    */
515   uint32_t type GNUNET_PACKED;
516
517   /**
518    * Number of peers recorded in the outgoing path from source to the
519    * stored location of this message.
520    */
521   uint32_t put_path_length GNUNET_PACKED;
522
523   /**
524    * Length of the GET path that follows (if tracked).
525    */
526   uint32_t get_path_length GNUNET_PACKED;
527
528   /**
529    * Peer which queried for get and should get the result.
530    */
531   struct GNUNET_PeerIdentity querying_peer;
532
533   /**
534    * When does the content expire?
535    */
536   struct GNUNET_TIME_Absolute expiration_time;
537
538   /**
539    * The key of the corresponding GET request.
540    */
541   struct GNUNET_HashCode key;
542
543   /* put path (if tracked) */
544
545   /* get path (if tracked) */
546
547   /* Payload */
548
549 };
550
551 GNUNET_NETWORK_STRUCT_END
552
553
554 /**
555  * Contains all the layered IDs of this peer.
556  */
557 struct GNUNET_PeerIdentity layered_id[NUMBER_LAYERED_ID];
558
559 /**
560  * Task to timeout trails that have expired.
561  */
562 static struct GNUNET_SCHEDULER_Task *trail_timeout_task;
563
564 /**
565  * Task to perform random walks.
566  */
567 static struct GNUNET_SCHEDULER_Task *random_walk_task;
568
569 /**
570  * Identity of this peer.
571  */
572 static struct GNUNET_PeerIdentity my_identity;
573
574 /**
575  * Peer map of all the friends of a peer
576  */
577 static struct GNUNET_CONTAINER_MultiPeerMap *friends_peermap;
578
579 /**
580  * Fingers per layer.
581  */
582 static struct FingerTable fingers[NUMBER_LAYERED_ID];
583
584 /**
585  * Tail map, mapping tail identifiers to `struct Trail`s
586  */
587 static struct GNUNET_CONTAINER_MultiHashMap *trail_map;
588
589 /**
590  * Tail heap, organizing trails by expiration time.
591  */
592 static struct GNUNET_CONTAINER_Heap *trail_heap;
593
594 /**
595  * Handle to CORE.
596  */
597 static struct GNUNET_CORE_Handle *core_api;
598
599
600 /**
601  * Handle the put request from the client.
602  *
603  * @param key Key for the content
604  * @param block_type Type of the block
605  * @param options Routing options
606  * @param desired_replication_level Desired replication count
607  * @param expiration_time When does the content expire
608  * @param data Content to store
609  * @param data_size Size of content @a data in bytes
610  */
611 void
612 GDS_NEIGHBOURS_handle_put (const struct GNUNET_HashCode *key,
613                            enum GNUNET_BLOCK_Type block_type,
614                            enum GNUNET_DHT_RouteOption options,
615                            uint32_t desired_replication_level,
616                            struct GNUNET_TIME_Absolute expiration_time,
617                            const void *data,
618                            size_t data_size)
619 {
620   GDS_DATACACHE_handle_put (expiration_time,
621                             key,
622                             0, NULL,
623                             0, NULL,
624                             block_type,
625                             data_size,
626                             data);
627   GDS_CLIENTS_process_put (options,
628                            block_type,
629                            0, 0,
630                            0, NULL,
631                            expiration_time,
632                            key,
633                            data,
634                            data_size);
635 }
636
637
638 /**
639  * Handle the get request from the client file. If I am destination do
640  * datacache put and return. Else find the target friend and forward message
641  * to it.
642  *
643  * @param key Key for the content
644  * @param block_type Type of the block
645  * @param options Routing options
646  * @param desired_replication_level Desired replication count
647  */
648 void
649 GDS_NEIGHBOURS_handle_get (const struct GNUNET_HashCode *key,
650                            enum GNUNET_BLOCK_Type block_type,
651                            enum GNUNET_DHT_RouteOption options,
652                            uint32_t desired_replication_level)
653 {
654   // find closest finger(s) on all layers
655   // use TrailRoute with PeerGetMessage embedded to contact peer
656 }
657
658
659 /**
660  * Delete a trail, it died (timeout, link failure, etc.).
661  *
662  * @param trail trail to delete from all data structures
663  * @param inform_pred should we notify the predecessor?
664  * @param inform_succ should we inform the successor?
665  */
666 static void
667 delete_trail (struct Trail *trail,
668               int inform_pred,
669               int inform_succ)
670 {
671   struct FriendInfo *friend;
672   struct GNUNET_MQ_Envelope *env;
673   struct TrailDestroyMessage *tdm;
674   struct Finger *finger;
675
676   friend = trail->pred;
677   if (NULL != friend)
678   {
679     if (GNUNET_YES == inform_pred)
680     {
681       env = GNUNET_MQ_msg (tdm,
682                            GNUNET_MESSAGE_TYPE_WDHT_TRAIL_DESTROY);
683       tdm->trail_id = trail->pred_id;
684       GNUNET_MQ_send (friend->mq,
685                       env);
686     }
687     GNUNET_CONTAINER_MDLL_remove (pred,
688                                   friend->pred_head,
689                                   friend->pred_tail,
690                                   trail);
691   }
692   friend = trail->succ;
693   if (NULL != friend)
694   {
695     if (GNUNET_YES == inform_succ)
696     {
697       env = GNUNET_MQ_msg (tdm,
698                            GNUNET_MESSAGE_TYPE_WDHT_TRAIL_DESTROY);
699       tdm->trail_id = trail->pred_id;
700       GNUNET_MQ_send (friend->mq,
701                       env);
702     }
703     GNUNET_CONTAINER_MDLL_remove (succ,
704                                   friend->pred_head,
705                                   friend->pred_tail,
706                                   trail);
707   }
708   GNUNET_break (trail ==
709                 GNUNET_CONTAINER_heap_remove_node (trail->hn));
710   finger = *trail->finger;
711   if (NULL != finger)
712   {
713     *trail->finger = NULL;
714     GNUNET_free (finger);
715   }
716   GNUNET_free (trail);
717 }
718
719
720
721
722 /**
723  * Blah.
724  */
725 static void
726 forward_message_on_trail (struct FriendInfo *next_target,
727                           const struct GNUNET_HashCode *trail_id,
728                           int have_path,
729                           const struct GNUNET_PeerIdentity *predecessor,
730                           const struct GNUNET_PeerIdentity *path,
731                           uint16_t path_length,
732                           const struct GNUNET_MessageHeader *payload)
733 {
734   struct GNUNET_MQ_Envelope *env;
735   struct TrailRouteMessage *trm;
736   struct GNUNET_PeerIdentity *new_path;
737   unsigned int plen;
738   uint16_t payload_len;
739
740   payload_len = ntohs (payload->size);
741   if (have_path)
742   {
743     plen = path_length + 1;
744     if (plen >= (GNUNET_SERVER_MAX_MESSAGE_SIZE
745                  - payload_len
746                  - sizeof (struct TrailRouteMessage))
747         / sizeof (struct GNUNET_PeerIdentity))
748     {
749       /* Should really not have paths this long... */
750       GNUNET_break_op (0);
751       plen = 0;
752       have_path = 0;
753     }
754   }
755   else
756   {
757     GNUNET_break_op (0 == path_length);
758     path_length = 0;
759     plen = 0;
760   }
761   env = GNUNET_MQ_msg_extra (trm,
762                              payload_len +
763                              plen * sizeof (struct GNUNET_PeerIdentity),
764                              GNUNET_MESSAGE_TYPE_WDHT_TRAIL_ROUTE);
765   trm->record_path = htons (have_path);
766   trm->path_length = htons (plen);
767   trm->trail_id = *trail_id;
768   new_path = (struct GNUNET_PeerIdentity *) &trm[1];
769   if (have_path)
770   {
771     memcpy (new_path,
772             path,
773             path_length * sizeof (struct GNUNET_PeerIdentity));
774     new_path[path_length] = *predecessor;
775   }
776   memcpy (&new_path[plen],
777           payload,
778           payload_len);
779   GNUNET_MQ_send (next_target->mq,
780                   env);
781 }
782
783
784 /**
785  * Send the get result to requesting client.
786  *
787  * @param trail_id trail identifying where to send the result to, NULL for us
788  * @param key Key of the requested data.
789  * @param type Block type
790  * @param put_path_length Number of peers in @a put_path
791  * @param put_path Path taken to put the data at its stored location.
792  * @param expiration When will this result expire?
793  * @param data Payload to store
794  * @param data_size Size of the @a data
795  *
796  * FIXME: also pass options, so we know to record paths or not...
797  */
798 void
799 GDS_NEIGHBOURS_send_get_result (const struct GNUNET_HashCode *trail_id,
800                                 const struct GNUNET_HashCode *key,
801                                 enum GNUNET_BLOCK_Type type,
802                                 unsigned int put_path_length,
803                                 const struct GNUNET_PeerIdentity *put_path,
804                                 struct GNUNET_TIME_Absolute expiration,
805                                 const void *data,
806                                 size_t data_size)
807 {
808   /* basically: call 'forward_message_on_trail';
809      NOTE: ignore 'next_target/have_path' for now... */
810 }
811
812
813 /**
814  * Method called whenever a peer disconnects.
815  *
816  * @param cls closure
817  * @param peer peer identity this notification is about
818  */
819 static void
820 handle_core_disconnect (void *cls,
821                         const struct GNUNET_PeerIdentity *peer)
822 {
823   struct FriendInfo *remove_friend;
824   struct Trail *t;
825
826   /* If disconnected to own identity, then return. */
827   if (0 == memcmp (&my_identity,
828                    peer,
829                    sizeof (struct GNUNET_PeerIdentity)))
830     return;
831
832   if (NULL == (remove_friend =
833                GNUNET_CONTAINER_multipeermap_get (friends_peermap,
834                                                   peer)))
835   {
836     GNUNET_break (0);
837     return;
838   }
839
840   GNUNET_assert (GNUNET_YES ==
841                  GNUNET_CONTAINER_multipeermap_remove (friends_peermap,
842                                                        peer,
843                                                        remove_friend));
844   while (NULL != (t = remove_friend->succ_head))
845     delete_trail (t,
846                   GNUNET_YES,
847                   GNUNET_NO);
848   while (NULL != (t = remove_friend->pred_head))
849     delete_trail (t,
850                   GNUNET_NO,
851                   GNUNET_YES);
852   GNUNET_MQ_destroy (remove_friend->mq);
853   GNUNET_free (remove_friend);
854   if (0 ==
855       GNUNET_CONTAINER_multipeermap_size (friends_peermap))
856   {
857     GNUNET_SCHEDULER_cancel (random_walk_task);
858     random_walk_task = NULL;
859   }
860 }
861
862
863 /**
864  * Pick random friend from friends for random walk.
865  */
866 static struct FriendInfo *
867 pick_random_friend ()
868 {
869   /* FIXME: implement (easy..., use:
870      GNUNET_CONTAINER_multipeermap_get_random ()... */
871   return NULL; // FIXME...
872 }
873
874
875 /**
876  * One of our trails might have timed out, check and
877  * possibly initiate cleanup.
878  *
879  * @param cls NULL
880  * @param tc unused
881  */
882 static void
883 trail_timeout_callback (void *cls,
884                         const struct GNUNET_SCHEDULER_TaskContext *tc)
885 {
886   struct Trail *trail;
887   struct GNUNET_TIME_Relative left;
888
889   trail_timeout_task = NULL;
890   while (NULL != (trail = GNUNET_CONTAINER_heap_peek (trail_heap)))
891   {
892     left = GNUNET_TIME_absolute_get_remaining (trail->expiration_time);
893     if (0 != left.rel_value_us)
894       break;
895     delete_trail (trail,
896                   GNUNET_YES,
897                   GNUNET_YES);
898   }
899   if (NULL != trail)
900     trail_timeout_task = GNUNET_SCHEDULER_add_delayed (left,
901                                                        &trail_timeout_callback,
902                                                        NULL);
903 }
904
905
906 /**
907  * Initiate a random walk.
908  *
909  * @param cls NULL
910  * @param tc unused
911  */
912 static void
913 do_random_walk (void *cls,
914                 const struct GNUNET_SCHEDULER_TaskContext *tc)
915 {
916   static unsigned int walk_layer;
917   struct FriendInfo *friend;
918   struct GNUNET_MQ_Envelope *env;
919   struct RandomWalkMessage *rwm;
920   struct FingerTable *ft;
921   struct Finger *finger;
922   struct Trail *trail;
923
924   random_walk_task = NULL;
925   friend = pick_random_friend ();
926
927   trail = GNUNET_new (struct Trail);
928   /* We create the random walk so, no predecessor */
929   trail->succ = friend;
930   GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_NONCE,
931                                     &trail->succ_id);
932   if (GNUNET_OK !=
933       GNUNET_CONTAINER_multihashmap_put (trail_map,
934                                          &trail->succ_id,
935                                          trail,
936                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
937   {
938     GNUNET_break (0);
939     GNUNET_free (trail);
940     return;
941   }
942   GNUNET_CONTAINER_MDLL_insert (succ,
943                                 friend->succ_head,
944                                 friend->succ_tail,
945                                 trail);
946   trail->expiration_time = GNUNET_TIME_relative_to_absolute (TRAIL_TIMEOUT);
947   trail->hn = GNUNET_CONTAINER_heap_insert (trail_heap,
948                                             trail,
949                                             trail->expiration_time.abs_value_us);
950   if (NULL == trail_timeout_task)
951     trail_timeout_task = GNUNET_SCHEDULER_add_delayed (TRAIL_TIMEOUT,
952                                                        &trail_timeout_callback,
953                                                        NULL);
954   env = GNUNET_MQ_msg (rwm,
955                        GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK);
956   rwm->hops_taken = htonl (0);
957   rwm->trail_id = trail->succ_id;
958   GNUNET_MQ_send (friend->mq,
959                   env);
960   /* clean up 'old' entry (implicitly via trail cleanup) */
961   ft = &fingers[walk_layer];
962
963   if ( (NULL != ft->fingers) &&
964        (NULL != (finger = ft->fingers[ft->walk_offset])) )
965     delete_trail (finger->trail,
966                   GNUNET_NO,
967                   GNUNET_YES);
968   if (ft->finger_array_size < 42)
969   {
970     // FIXME: must have finger array of the right size here,
971     // FIXME: growing / shrinking are tricky -- with pointers
972     // from Trails!!!
973   }
974
975   GNUNET_assert (NULL == ft->fingers[ft->walk_offset]);
976
977   finger = GNUNET_new (struct Finger);
978   finger->trail = trail;
979   trail->finger = &ft->fingers[ft->walk_offset];
980   finger->ft = ft;
981   ft->fingers[ft->walk_offset] = finger;
982   ft->is_sorted = GNUNET_NO;
983   ft->walk_offset = (ft->walk_offset + 1) % ft->finger_array_size;
984
985   walk_layer = (walk_layer + 1) % NUMBER_LAYERED_ID;
986   random_walk_task = GNUNET_SCHEDULER_add_delayed (RANDOM_WALK_DELAY,
987                                                    &do_random_walk,
988                                                    NULL);
989 }
990
991
992 /**
993  * Method called whenever a peer connects.
994  *
995  * @param cls closure
996  * @param peer_identity peer identity this notification is about
997  */
998 static void
999 handle_core_connect (void *cls,
1000                      const struct GNUNET_PeerIdentity *peer_identity)
1001 {
1002   struct FriendInfo *friend;
1003
1004   /* Check for connect to self message */
1005   if (0 == memcmp (&my_identity,
1006                    peer_identity,
1007                    sizeof (struct GNUNET_PeerIdentity)))
1008     return;
1009
1010   /* If peer already exists in our friend_peermap, then exit. */
1011   if (GNUNET_YES ==
1012       GNUNET_CONTAINER_multipeermap_contains (friends_peermap,
1013                                               peer_identity))
1014   {
1015     GNUNET_break (0);
1016     return;
1017   }
1018
1019   friend = GNUNET_new (struct FriendInfo);
1020   friend->id = *peer_identity;
1021   friend->mq = GNUNET_CORE_mq_create (core_api,
1022                                       peer_identity);
1023   GNUNET_assert (GNUNET_OK ==
1024                  GNUNET_CONTAINER_multipeermap_put (friends_peermap,
1025                                                     peer_identity,
1026                                                     friend,
1027                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
1028   if (NULL == random_walk_task)
1029   {
1030     /* random walk needs to be started -- we have a first connection */
1031     random_walk_task = GNUNET_SCHEDULER_add_now (&do_random_walk,
1032                                                  NULL);
1033   }
1034 }
1035
1036
1037 /**
1038  * To be called on core init/fail.
1039  *
1040  * @param cls service closure
1041  * @param identity the public identity of this peer
1042  */
1043 static void
1044 core_init (void *cls,
1045            const struct GNUNET_PeerIdentity *identity)
1046 {
1047   my_identity = *identity;
1048 }
1049
1050
1051 /**
1052  * Handle a `struct RandomWalkMessage` from a
1053  * #GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK message.
1054  *
1055  * @param cls closure (NULL)
1056  * @param peer sender identity
1057  * @param message the setup message
1058  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1059  */
1060 static int
1061 handle_dht_p2p_random_walk (void *cls,
1062                             const struct GNUNET_PeerIdentity *peer,
1063                             const struct GNUNET_MessageHeader *message)
1064 {
1065   const struct RandomWalkMessage *m;
1066   struct Trail *t;
1067   struct FriendInfo *pred;
1068
1069   m = (const struct RandomWalkMessage *) message;
1070   pred = GNUNET_CONTAINER_multipeermap_get (friends_peermap,
1071                                             peer);
1072   t = GNUNET_new (struct Trail);
1073   t->pred_id = m->trail_id;
1074   t->pred = pred;
1075   if (GNUNET_OK !=
1076       GNUNET_CONTAINER_multihashmap_put (trail_map,
1077                                          &t->pred_id,
1078                                          t,
1079                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
1080   {
1081     GNUNET_break_op (0);
1082     GNUNET_free (t);
1083     return GNUNET_SYSERR;
1084   }
1085   GNUNET_CONTAINER_MDLL_insert (pred,
1086                                 pred->pred_head,
1087                                 pred->pred_tail,
1088                                 t);
1089   t->expiration_time = GNUNET_TIME_relative_to_absolute (TRAIL_TIMEOUT);
1090   t->hn = GNUNET_CONTAINER_heap_insert (trail_heap,
1091                                         t,
1092                                         t->expiration_time.abs_value_us);
1093   if (NULL == trail_timeout_task)
1094     trail_timeout_task = GNUNET_SCHEDULER_add_delayed (TRAIL_TIMEOUT,
1095                                                        &trail_timeout_callback,
1096                                                        NULL);
1097
1098   if (ntohl (m->hops_taken) > GDS_NSE_get ())
1099   {
1100     /* We are the last hop, generate response */
1101     struct GNUNET_MQ_Envelope *env;
1102     struct RandomWalkResponseMessage *rwrm;
1103     uint16_t layer;
1104
1105     env = GNUNET_MQ_msg (rwrm,
1106                          GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK_RESPONSE);
1107     rwrm->reserved = htonl (0);
1108     rwrm->trail_id = m->trail_id;
1109     layer = ntohs (m->layer);
1110     if (0 == layer)
1111       (void) GDS_DATACACHE_get_random_key (&rwrm->location);
1112     else
1113     {
1114       struct FingerTable *ft;
1115
1116       if (layer > NUMBER_LAYERED_ID)
1117       {
1118         GNUNET_break_op (0);
1119         // FIXME: clean up 't'...
1120         return GNUNET_SYSERR;
1121       }
1122       ft = &fingers[layer-1];
1123       if (0 == ft->number_valid_fingers)
1124       {
1125         GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_NONCE,
1126                                           &rwrm->location);
1127       }
1128       else
1129       {
1130         struct Finger *f;
1131
1132         f = ft->fingers[GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
1133                                                   ft->number_valid_fingers)];
1134         rwrm->location = f->destination;
1135       }
1136     }
1137     GNUNET_MQ_send (pred->mq,
1138                     env);
1139   }
1140   else
1141   {
1142     struct GNUNET_MQ_Envelope *env;
1143     struct RandomWalkMessage *rwm;
1144     struct FriendInfo *succ;
1145
1146     /* extend the trail by another random hop */
1147     succ = pick_random_friend ();
1148     GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_NONCE,
1149                                       &t->succ_id);
1150     t->succ = succ;
1151     if (GNUNET_OK !=
1152         GNUNET_CONTAINER_multihashmap_put (trail_map,
1153                                            &t->succ_id,
1154                                            t,
1155                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
1156     {
1157       GNUNET_break (0);
1158       GNUNET_CONTAINER_MDLL_remove (pred,
1159                                     pred->pred_head,
1160                                     pred->pred_tail,
1161                                     t);
1162       GNUNET_free (t);
1163       return GNUNET_OK;
1164     }
1165     GNUNET_CONTAINER_MDLL_insert (succ,
1166                                   succ->succ_head,
1167                                   succ->succ_tail,
1168                                   t);
1169     env = GNUNET_MQ_msg (rwm,
1170                          GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK);
1171     rwm->hops_taken = htons (1 + ntohs (m->hops_taken));
1172     rwm->layer = m->layer;
1173     rwm->trail_id = t->succ_id;
1174     GNUNET_MQ_send (succ->mq,
1175                     env);
1176   }
1177   return GNUNET_OK;
1178 }
1179
1180
1181 /**
1182  * Handle a `struct RandomWalkResponseMessage` from a GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK_RESPONSE
1183  * message.
1184  *
1185  * @param cls closure (NULL)
1186  * @param peer sender identity
1187  * @param message the setup response message
1188  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1189  */
1190 static int
1191 handle_dht_p2p_random_walk_response (void *cls,
1192                                      const struct GNUNET_PeerIdentity *peer,
1193                                      const struct GNUNET_MessageHeader *message)
1194 {
1195   const struct RandomWalkResponseMessage *rwrm;
1196
1197   rwrm = (const struct RandomWalkResponseMessage *) message;
1198   // 1) lookup trail => find Finger entry => fill in 'destination' and mark valid, move to end of sorted array, mark unsorted, update links from 'trails'
1199   /*
1200    * Steps :
1201    *  1 check if we are the correct layer
1202    *  1.a if true : add the returned value (finger) in the db structure
1203    *  1.b if true : do nothing
1204    */
1205   /* FIXME: add the value in db structure 1.a */
1206
1207   return GNUNET_OK;
1208 }
1209
1210
1211 /**
1212  * Handle a `struct TrailDestroyMessage`.
1213  *
1214  * @param cls closure (NULL)
1215  * @param peer sender identity
1216  * @param message the finger destroy message
1217  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1218  */
1219 static int
1220 handle_dht_p2p_trail_destroy (void *cls,
1221                              const struct GNUNET_PeerIdentity *peer,
1222                              const struct GNUNET_MessageHeader *message)
1223 {
1224   const struct TrailDestroyMessage *tdm;
1225   struct Trail *trail;
1226
1227   tdm = (const struct TrailDestroyMessage *) message;
1228   trail = GNUNET_CONTAINER_multihashmap_get (trail_map,
1229                                              &tdm->trail_id);
1230   delete_trail (trail,
1231                 ( (NULL != trail->succ) &&
1232                   (0 == memcmp (peer,
1233                                 &trail->succ->id,
1234                                 sizeof (struct GNUNET_PeerIdentity))) ),
1235                 ( (NULL != trail->pred) &&
1236                   (0 == memcmp (peer,
1237                                 &trail->pred->id,
1238                                 sizeof (struct GNUNET_PeerIdentity))) ));
1239   return GNUNET_OK;
1240 }
1241
1242
1243 /**
1244  * Handle a `struct FindSuccessorMessage` from a #GNUNET_MESSAGE_TYPE_WDHT_SUCCESSOR_FIND
1245  * message.
1246  *
1247  * @param cls closure (NULL)
1248  * @param trail_id path to the originator
1249  * @param message the finger setup message
1250  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1251  */
1252 static int
1253 handle_dht_p2p_successor_find (void *cls,
1254                                const struct GNUNET_HashCode *trail_id,
1255                                const struct GNUNET_MessageHeader *message)
1256 {
1257   const struct FindSuccessorMessage *fsm;
1258
1259   fsm = (const struct FindSuccessorMessage *) message;
1260   // locate trail (for sending reply), if not exists, fail nicely.
1261   // otherwise, go to datacache and return 'top k' elements closest to 'key'
1262   // as "PUT" messages via the trail (need to extend DB API!)
1263 #if 0
1264   GDS_DATACACHE_get_successors (trail_id,
1265                                 key);
1266 #endif
1267   return GNUNET_OK;
1268 }
1269
1270
1271 /**
1272  * Handle a `struct PeerGetMessage`.
1273  *
1274  * @param cls closure (NULL)
1275  * @param trail_id path to the originator
1276  * @param message the peer get message
1277  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1278  */
1279 static int
1280 handle_dht_p2p_peer_get (void *cls,
1281                          const struct GNUNET_HashCode *trail_id,
1282                          const struct GNUNET_MessageHeader *message)
1283 {
1284   const struct PeerGetMessage *pgm;
1285
1286   // FIXME: note: never called like this, message embedded with trail route!
1287   pgm = (const struct PeerGetMessage *) message;
1288   // -> lookup in datacache (figure out way to remember trail!)
1289      /*
1290     * steps :
1291     *   1 extract the result
1292     *   2 save the peer
1293     *   3 send it using the good trail
1294     *
1295     * What do i do when i don't have the key/value?
1296     */
1297
1298   return GNUNET_OK;
1299 }
1300
1301
1302 /**
1303  * Handle a `struct PeerGetResultMessage`.
1304  *
1305  * @param cls closure (NULL)
1306  * @param trail_id path to the originator
1307  * @param message the peer get result message
1308  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1309  */
1310 static int
1311 handle_dht_p2p_peer_get_result (void *cls,
1312                                 const struct GNUNET_HashCode *trail_id,
1313                                 const struct GNUNET_MessageHeader *message)
1314 {
1315   const struct PeerGetResultMessage *pgrm;
1316
1317   pgrm = (const struct PeerGetResultMessage *) message;
1318   // pretty much: parse, & pass to client (there is some call for that...)
1319
1320 #if 0
1321   GDS_CLIENTS_process_get (options,
1322                            type,
1323                            0, 0,
1324                            path_length, path,
1325                            key);
1326   (void) GDS_DATACACHE_handle_get (trail_id,
1327                                    key,
1328                                    type,
1329                                    xquery,
1330                                    xquery_size,
1331                                    &reply_bf,
1332                                    reply_bf_mutator);
1333 #endif
1334   return GNUNET_OK;
1335 }
1336
1337
1338 /**
1339  * Handle a `struct PeerPutMessage`.
1340  *
1341  * @param cls closure (NULL)
1342  * @param trail_id path to the originator
1343  * @param message the peer put message
1344  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1345  */
1346 static int
1347 handle_dht_p2p_peer_put (void *cls,
1348                          const struct GNUNET_HashCode *trail_id,
1349                          const struct GNUNET_MessageHeader *message)
1350 {
1351   const struct PeerGetResultMessage *pgrm;
1352
1353   pgrm = (const struct PeerGetResultMessage *) message;
1354   // parse & store in datacache, this is in response to us asking for successors.
1355   /*
1356    * steps :
1357    * 1 check the size of the message
1358    * 2 use the API to add the value in the "database". Check on the xdht file, how to do it.
1359    * 3 Did i a have to return a notification or did i have to return GNUNET_[OK|SYSERR]?
1360    */
1361 #if 0
1362   GDS_DATACACHE_handle_put (expiration_time,
1363                             key,
1364                             path_length, path,
1365                             block_type,
1366                             data_size,
1367                             data);
1368   GDS_CLIENTS_process_put (options,
1369                            block_type,
1370                            0, 0,
1371                            path_length, path,
1372                            expiration_time,
1373                            key,
1374                            data,
1375                            data_size);
1376 #endif
1377   return GNUNET_OK;
1378 }
1379
1380
1381
1382
1383 /**
1384  * Handler for a message we received along some trail.
1385  *
1386  * @param cls closure
1387  * @param trail_id trail identifier
1388  * @param message the message we got
1389  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1390  */
1391 typedef int
1392 (*TrailHandlerCallback)(void *cls,
1393                         const struct GNUNET_HashCode *trail_id,
1394                         const struct GNUNET_MessageHeader *message);
1395
1396
1397 /**
1398  * Definition of a handler for a message received along some trail.
1399  */
1400 struct TrailHandler
1401 {
1402   /**
1403    * NULL for end-of-list.
1404    */
1405   TrailHandlerCallback callback;
1406
1407   /**
1408    * Closure for @e callback.
1409    */
1410   void *cls;
1411
1412   /**
1413    * Message type this handler addresses.
1414    */
1415   uint16_t message_type;
1416
1417   /**
1418    * Use 0 for variable-size.
1419    */
1420   uint16_t message_size;
1421 };
1422
1423
1424 /**
1425  * Handle a `struct TrailRouteMessage`.
1426  *
1427  * @param cls closure (NULL)
1428  * @param peer sender identity
1429  * @param message the finger destroy message
1430  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1431  */
1432 static int
1433 handle_dht_p2p_trail_route (void *cls,
1434                             const struct GNUNET_PeerIdentity *peer,
1435                             const struct GNUNET_MessageHeader *message)
1436 {
1437   static const struct TrailHandler handlers[] = {
1438     { &handle_dht_p2p_successor_find, NULL,
1439       GNUNET_MESSAGE_TYPE_WDHT_SUCCESSOR_FIND,
1440       sizeof (struct FindSuccessorMessage) },
1441     { NULL, NULL, 0, 0 }
1442   };
1443   unsigned int i;
1444   const struct TrailRouteMessage *trm;
1445   const struct GNUNET_PeerIdentity *path;
1446   uint16_t path_length;
1447   const struct GNUNET_MessageHeader *payload;
1448   const struct TrailHandler *th;
1449   struct Trail *trail;
1450   size_t msize;
1451
1452   /* Parse and check message is well-formed */
1453   msize = ntohs (message->size);
1454   if (msize < sizeof (struct TrailRouteMessage))
1455   {
1456     GNUNET_break_op (0);
1457     return GNUNET_YES;
1458   }
1459   trm = (const struct TrailRouteMessage *) message;
1460   path_length = ntohs (trm->path_length);
1461   if (msize < sizeof (struct TrailRouteMessage) +
1462       path_length * sizeof (struct GNUNET_PeerIdentity) +
1463       sizeof (struct GNUNET_MessageHeader) )
1464   {
1465     GNUNET_break_op (0);
1466     return GNUNET_YES;
1467   }
1468   path = (const struct GNUNET_PeerIdentity *) &trm[1];
1469   payload = (const struct GNUNET_MessageHeader *) &path[path_length];
1470   if (msize != (ntohs (payload->size) +
1471                 sizeof (struct TrailRouteMessage) +
1472                 path_length * sizeof (struct GNUNET_PeerIdentity)))
1473   {
1474     GNUNET_break_op (0);
1475     return GNUNET_YES;
1476   }
1477
1478   /* Is this message for us? */
1479   trail = GNUNET_CONTAINER_multihashmap_get (trail_map,
1480                                              &trm->trail_id);
1481   if ( (NULL != trail->pred) &&
1482        (0 == memcmp (peer,
1483                      &trail->pred->id,
1484                      sizeof (struct GNUNET_PeerIdentity))) )
1485   {
1486     /* forward to 'successor' */
1487     if (NULL != trail->succ)
1488     {
1489       forward_message_on_trail (trail->succ,
1490                                 &trail->succ_id,
1491                                 ntohs (trm->record_path),
1492                                 peer,
1493                                 path,
1494                                 path_length,
1495                                 payload);
1496       return GNUNET_OK;
1497     }
1498   }
1499   else
1500   {
1501     /* forward to 'predecessor' */
1502     GNUNET_break_op ( (NULL != trail->succ) &&
1503                       (0 == memcmp (peer,
1504                                     &trail->succ->id,
1505                                     sizeof (struct GNUNET_PeerIdentity))) );
1506     if (NULL != trail->pred)
1507     {
1508       forward_message_on_trail (trail->pred,
1509                                 &trail->pred_id,
1510                                 ntohs (trm->record_path),
1511                                 peer,
1512                                 path,
1513                                 path_length,
1514                                 payload);
1515       return GNUNET_OK;
1516     }
1517   }
1518
1519   /* Message is for us, dispatch to handler */
1520   th = NULL;
1521   for (i=0; NULL != handlers[i].callback; i++)
1522   {
1523     th = &handlers[i];
1524     if (ntohs (payload->type) == th->message_type)
1525     {
1526       if ( (0 == th->message_size) ||
1527            (ntohs (payload->size) == th->message_size) )
1528         th->callback (th->cls,
1529                       &trm->trail_id,
1530                       payload);
1531       else
1532         GNUNET_break_op (0);
1533       break;
1534     }
1535   }
1536   GNUNET_break_op (NULL != th);
1537   return GNUNET_OK;
1538 }
1539
1540
1541 /**
1542  * Initialize neighbours subsystem.
1543  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1544  */
1545 int
1546 GDS_NEIGHBOURS_init (void)
1547 {
1548   static const struct GNUNET_CORE_MessageHandler core_handlers[] = {
1549     { &handle_dht_p2p_random_walk,
1550       GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK,
1551       sizeof (struct RandomWalkMessage) },
1552     { &handle_dht_p2p_random_walk_response,
1553       GNUNET_MESSAGE_TYPE_WDHT_RANDOM_WALK_RESPONSE,
1554       sizeof (struct RandomWalkResponseMessage) },
1555     { &handle_dht_p2p_trail_destroy,
1556       GNUNET_MESSAGE_TYPE_WDHT_TRAIL_DESTROY,
1557       sizeof (struct TrailDestroyMessage) },
1558     { &handle_dht_p2p_trail_route,
1559       GNUNET_MESSAGE_TYPE_WDHT_TRAIL_ROUTE,
1560       0},
1561     {NULL, 0, 0}
1562   };
1563
1564   core_api =
1565     GNUNET_CORE_connect (GDS_cfg, NULL,
1566                          &core_init,
1567                          &handle_core_connect,
1568                          &handle_core_disconnect,
1569                          NULL, GNUNET_NO,
1570                          NULL, GNUNET_NO,
1571                          core_handlers);
1572
1573   if (NULL == core_api)
1574     return GNUNET_SYSERR;
1575   friends_peermap = GNUNET_CONTAINER_multipeermap_create (256, GNUNET_NO);
1576   trail_map = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_YES);
1577   trail_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1578   return GNUNET_OK;
1579 }
1580
1581
1582 /**
1583  * Shutdown neighbours subsystem.
1584  */
1585 void
1586 GDS_NEIGHBOURS_done (void)
1587 {
1588   if (NULL == core_api)
1589     return;
1590   GNUNET_CORE_disconnect (core_api);
1591   core_api = NULL;
1592   GNUNET_assert (0 == GNUNET_CONTAINER_multipeermap_size (friends_peermap));
1593   GNUNET_CONTAINER_multipeermap_destroy (friends_peermap);
1594   friends_peermap = NULL;
1595   GNUNET_assert (0 == GNUNET_CONTAINER_multihashmap_size (trail_map));
1596   GNUNET_CONTAINER_multihashmap_destroy (trail_map);
1597   trail_map = NULL;
1598   GNUNET_CONTAINER_heap_destroy (trail_heap);
1599   trail_heap = NULL;
1600   if (NULL != trail_timeout_task)
1601   {
1602     GNUNET_SCHEDULER_cancel (trail_timeout_task);
1603     trail_timeout_task = NULL;
1604   }
1605 }
1606
1607
1608 /**
1609  * Get my identity
1610  *
1611  * @return my identity
1612  */
1613 struct GNUNET_PeerIdentity
1614 GDS_NEIGHBOURS_get_my_id (void)
1615 {
1616   return my_identity;
1617 }
1618
1619 /* end of gnunet-service-wdht_neighbours.c */