increase timeout to give sparc buildbot a chance
[oweals/gnunet.git] / src / dht / gnunet-service-dht.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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  * @file dht/gnunet-service-dht.c
23  * @brief main DHT service shell, building block for DHT implementations
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27
28 #include "platform.h"
29 #include "gnunet_client_lib.h"
30 #include "gnunet_getopt_lib.h"
31 #include "gnunet_os_lib.h"
32 #include "gnunet_protocols.h"
33 #include "gnunet_service_lib.h"
34 #include "gnunet_core_service.h"
35 #include "gnunet_signal_lib.h"
36 #include "gnunet_util_lib.h"
37 #include "gnunet_datacache_lib.h"
38 #include "gnunet_transport_service.h"
39 #include "gnunet_hello_lib.h"
40 #include "gnunet_dht_service.h"
41 #include "gnunet_statistics_service.h"
42 #include "dhtlog.h"
43 #include "dht.h"
44
45 #define PRINT_TABLES GNUNET_NO
46
47 #define REAL_DISTANCE GNUNET_NO
48
49 #define EXTRA_CHECKS GNUNET_NO
50 /**
51  * How many buckets will we allow total.
52  */
53 #define MAX_BUCKETS sizeof (GNUNET_HashCode) * 8
54
55 /**
56  * Should the DHT issue FIND_PEER requests to get better routing tables?
57  */
58 #define DEFAULT_DO_FIND_PEER GNUNET_YES
59
60 /**
61  * Defines whether find peer requests send their HELLO's outgoing,
62  * or expect replies to contain hellos.
63  */
64 #define FIND_PEER_WITH_HELLO GNUNET_YES
65
66 /**
67  * What is the maximum number of peers in a given bucket.
68  */
69 #define DEFAULT_BUCKET_SIZE 4
70
71 /**
72  * Minimum number of peers we need for "good" routing,
73  * any less than this and we will allow messages to
74  * travel much further through the network!
75  */
76 #define MINIMUM_PEER_THRESHOLD 20
77
78 #define DHT_MAX_RECENT 1000
79
80 #define FIND_PEER_CALC_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
81
82 /**
83  * Default time to wait to send messages on behalf of other peers.
84  */
85 #define DHT_DEFAULT_P2P_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
86
87 /**
88  * Default importance for handling messages on behalf of other peers.
89  */
90 #define DHT_DEFAULT_P2P_IMPORTANCE 0
91
92 /**
93  * How long to keep recent requests around by default.
94  */
95 #define DEFAULT_RECENT_REMOVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30)
96
97 /**
98  * Default time to wait to send find peer messages sent by the dht service.
99  */
100 #define DHT_DEFAULT_FIND_PEER_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
101
102 /**
103  * Default importance for find peer messages sent by the dht service.
104  */
105 #define DHT_DEFAULT_FIND_PEER_IMPORTANCE 8
106
107 /**
108  * Default replication parameter for find peer messages sent by the dht service.
109  */
110 #define DHT_DEFAULT_PUT_REPLICATION 4
111
112 /**
113  * Default replication parameter for find peer messages sent by the dht service.
114  */
115 #define DHT_DEFAULT_FIND_PEER_REPLICATION 4
116
117 /**
118  * Default options for find peer requests sent by the dht service.
119  */
120 #define DHT_DEFAULT_FIND_PEER_OPTIONS GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE
121 /*#define DHT_DEFAULT_FIND_PEER_OPTIONS GNUNET_DHT_RO_NONE*/
122
123 /**
124  * How long at least to wait before sending another find peer request.
125  */
126 #define DHT_MINIMUM_FIND_PEER_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 2)
127
128 /**
129  * How long at most to wait before sending another find peer request.
130  */
131 #define DHT_MAXIMUM_FIND_PEER_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 8)
132
133 /**
134  * How often to update our preference levels for peers in our routing tables.
135  */
136 #define DHT_DEFAULT_PREFERENCE_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 2)
137
138 /**
139  * How long at most on average will we allow a reply forward to take
140  * (before we quit sending out new requests)
141  */
142 #define MAX_REQUEST_TIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
143
144 /**
145  * How many initial requests to send out (in true Kademlia fashion)
146  */
147 #define DHT_KADEMLIA_REPLICATION 3
148
149 /*
150  * Default frequency for sending malicious get messages
151  */
152 #define DEFAULT_MALICIOUS_GET_FREQUENCY 1000 /* Number of milliseconds */
153
154 /*
155  * Default frequency for sending malicious put messages
156  */
157 #define DEFAULT_MALICIOUS_PUT_FREQUENCY 1000 /* Default is in milliseconds */
158
159 /**
160  * Type for a malicious request, so we can ignore it during testing
161  */
162 #define DHT_MALICIOUS_MESSAGE_TYPE 42
163
164 #define DHT_DEFAULT_PING_DELAY GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 1)
165
166 /**
167  * Real maximum number of hops, at which point we refuse
168  * to forward the message.
169  */
170 #define DEFAULT_MAX_HOPS 10
171
172 /**
173  * How many time differences between requesting a core send and
174  * the actual callback to remember.
175  */
176 #define MAX_REPLY_TIMES 8
177
178 enum ConvergenceOptions
179 {
180    /**
181     * Use the linear method for convergence.
182     */
183    DHT_CONVERGE_LINEAR,
184
185    /**
186     * Converge using a fast converging square
187     * function.
188     */
189    DHT_CONVERGE_SQUARE,
190
191    /**
192     * Converge using a slower exponential
193     * function.
194     */
195    DHT_CONVERGE_EXPONENTIAL,
196
197    /**
198     * Don't do any special convergence, allow
199     * the algorithm to hopefully route to closer
200     * peers more often.
201     */
202    DHT_CONVERGE_RANDOM
203 };
204
205 /**
206  * Linked list of messages to send to clients.
207  */
208 struct P2PPendingMessage
209 {
210   /**
211    * Pointer to next item in the list
212    */
213   struct P2PPendingMessage *next;
214
215   /**
216    * Pointer to previous item in the list
217    */
218   struct P2PPendingMessage *prev;
219
220   /**
221    * Message importance level.
222    */
223   unsigned int importance;
224
225   /**
226    * Time when this request was scheduled to be sent.
227    */
228   struct GNUNET_TIME_Absolute scheduled;
229
230   /**
231    * How long to wait before sending message.
232    */
233   struct GNUNET_TIME_Relative timeout;
234
235   /**
236    * Actual message to be sent; // avoid allocation
237    */
238   const struct GNUNET_MessageHeader *msg; // msg = (cast) &pm[1]; // memcpy (&pm[1], data, len);
239
240 };
241
242 /**
243  * Per-peer information.
244  */
245 struct PeerInfo
246 {
247   /**
248    * Next peer entry (DLL)
249    */
250   struct PeerInfo *next;
251
252   /**
253    *  Prev peer entry (DLL)
254    */
255   struct PeerInfo *prev;
256
257   /**
258    * Head of pending messages to be sent to this peer.
259    */
260   struct P2PPendingMessage *head;
261
262   /**
263    * Tail of pending messages to be sent to this peer.
264    */
265   struct P2PPendingMessage *tail;
266
267   /**
268    * Core handle for sending messages to this peer.
269    */
270   struct GNUNET_CORE_TransmitHandle *th;
271
272   /**
273    * Task for scheduling message sends.
274    */
275   GNUNET_SCHEDULER_TaskIdentifier send_task;
276
277   /**
278    * Task for scheduling preference updates
279    */
280   GNUNET_SCHEDULER_TaskIdentifier preference_task;
281
282   /**
283    * Preference update context
284    */
285   struct GNUNET_CORE_InformationRequestContext *info_ctx;
286
287   /**
288    * What is the average latency for replies received?
289    */
290   struct GNUNET_TIME_Relative latency;
291
292   /**
293    * What is the identity of the peer?
294    */
295   struct GNUNET_PeerIdentity id;
296
297   /**
298    * Transport level distance to peer.
299    */
300   unsigned int distance;
301
302   /**
303    * Task for scheduling periodic ping messages for this peer.
304    */
305   GNUNET_SCHEDULER_TaskIdentifier ping_task;
306 };
307
308 /**
309  * Peers are grouped into buckets.
310  */
311 struct PeerBucket
312 {
313   /**
314    * Head of DLL
315    */
316   struct PeerInfo *head;
317
318   /**
319    * Tail of DLL
320    */
321   struct PeerInfo *tail;
322
323   /**
324    * Number of peers in the bucket.
325    */
326   unsigned int peers_size;
327 };
328
329 /**
330  * Linked list of messages to send to clients.
331  */
332 struct PendingMessage
333 {
334   /**
335    * Pointer to next item in the list
336    */
337   struct PendingMessage *next;
338
339   /**
340    * Pointer to previous item in the list
341    */
342   struct PendingMessage *prev;
343
344   /**
345    * Actual message to be sent; // avoid allocation
346    */
347   const struct GNUNET_MessageHeader *msg; // msg = (cast) &pm[1]; // memcpy (&pm[1], data, len);
348
349 };
350
351 /**
352  * Struct containing information about a client,
353  * handle to connect to it, and any pending messages
354  * that need to be sent to it.
355  */
356 struct ClientList
357 {
358   /**
359    * Linked list of active clients
360    */
361   struct ClientList *next;
362
363   /**
364    * The handle to this client
365    */
366   struct GNUNET_SERVER_Client *client_handle;
367
368   /**
369    * Handle to the current transmission request, NULL
370    * if none pending.
371    */
372   struct GNUNET_CONNECTION_TransmitHandle *transmit_handle;
373
374   /**
375    * Linked list of pending messages for this client
376    */
377   struct PendingMessage *pending_head;
378
379   /**
380    * Tail of linked list of pending messages for this client
381    */
382   struct PendingMessage *pending_tail;
383 };
384
385
386 /**
387  * Context containing information about a DHT message received.
388  */
389 struct DHT_MessageContext
390 {
391   /**
392    * The client this request was received from.
393    * (NULL if received from another peer)
394    */
395   struct ClientList *client;
396
397   /**
398    * The peer this request was received from.
399    * (NULL if received from local client)
400    */
401   const struct GNUNET_PeerIdentity *peer;
402
403   /**
404    * The key this request was about
405    */
406   GNUNET_HashCode key;
407
408   /**
409    * The unique identifier of this request
410    */
411   uint64_t unique_id;
412
413   /**
414    * Desired replication level
415    */
416   uint32_t replication;
417
418   /**
419    * Network size estimate, either ours or the sum of
420    * those routed to thus far. =~ Log of number of peers
421    * chosen from for this request.
422    */
423   uint32_t network_size;
424
425   /**
426    * Any message options for this request
427    */
428   uint32_t msg_options;
429
430   /**
431    * How many hops has the message already traversed?
432    */
433   uint32_t hop_count;
434
435   /**
436    * How important is this message?
437    */
438   unsigned int importance;
439
440   /**
441    * How long should we wait to transmit this request?
442    */
443   struct GNUNET_TIME_Relative timeout;
444
445   /**
446    * Bloomfilter for this routing request.
447    */
448   struct GNUNET_CONTAINER_BloomFilter *bloom;
449
450   /**
451    * Did we forward this message? (may need to remember it!)
452    */
453   int forwarded;
454
455   /**
456    * Are we the closest known peer to this key (out of our neighbors?)
457    */
458   int closest;
459 };
460
461 /**
462  * Record used for remembering what peers are waiting for what
463  * responses (based on search key).
464  */
465 struct DHTRouteSource
466 {
467   /**
468    * This is a DLL.
469    */
470   struct DHTRouteSource *next;
471
472   /**
473    * This is a DLL.
474    */
475   struct DHTRouteSource *prev;
476
477   /**
478    * Source of the request.  Replies should be forwarded to
479    * this peer.
480    */
481   struct GNUNET_PeerIdentity source;
482
483   /**
484    * If this was a local request, remember the client; otherwise NULL.
485    */
486   struct ClientList *client;
487
488   /**
489    * Pointer to this nodes heap location (for removal)
490    */
491   struct GNUNET_CONTAINER_HeapNode *hnode;
492
493   /**
494    * Back pointer to the record storing this information.
495    */
496   struct DHTQueryRecord *record;
497
498   /**
499    * Task to remove this entry on timeout.
500    */
501   GNUNET_SCHEDULER_TaskIdentifier delete_task;
502
503   /**
504    * Bloomfilter of peers we have already sent back as
505    * replies to the initial request.  Allows us to not
506    * forward the same peer multiple times for a find peer
507    * request.
508    */
509   struct GNUNET_CONTAINER_BloomFilter *find_peers_responded;
510
511 };
512
513 /**
514  * Entry in the DHT routing table.
515  */
516 struct DHTQueryRecord
517 {
518   /**
519    * Head of DLL for result forwarding.
520    */
521   struct DHTRouteSource *head;
522
523   /**
524    * Tail of DLL for result forwarding.
525    */
526   struct DHTRouteSource *tail;
527
528   /**
529    * Key that the record concerns.
530    */
531   GNUNET_HashCode key;
532
533   /**
534    * GET message of this record (what we already forwarded?).
535    */
536   //DV_DHT_MESSAGE get; Try to get away with not saving this.
537
538   /**
539    * Bloomfilter of the peers we've replied to so far
540    */
541   //struct GNUNET_BloomFilter *bloom_results; Don't think we need this, just remove from DLL on response.
542
543 };
544
545 /**
546  * Context used to calculate the number of find peer messages
547  * per X time units since our last scheduled find peer message
548  * was sent.  If we have seen too many messages, delay or don't
549  * send our own out.
550  */
551 struct FindPeerMessageContext
552 {
553   unsigned int count;
554
555   struct GNUNET_TIME_Absolute start;
556
557   struct GNUNET_TIME_Absolute end;
558 };
559
560 /**
561  * DHT Routing results structure
562  */
563 struct DHTResults
564 {
565   /*
566    * Min heap for removal upon reaching limit
567    */
568   struct GNUNET_CONTAINER_Heap *minHeap;
569
570   /*
571    * Hashmap for fast key based lookup
572    */
573   struct GNUNET_CONTAINER_MultiHashMap *hashmap;
574
575 };
576
577 /**
578  * DHT structure for recent requests.
579  */
580 struct RecentRequests
581 {
582   /*
583    * Min heap for removal upon reaching limit
584    */
585   struct GNUNET_CONTAINER_Heap *minHeap;
586
587   /*
588    * Hashmap for key based lookup
589    */
590   struct GNUNET_CONTAINER_MultiHashMap *hashmap;
591 };
592
593 struct RecentRequest
594 {
595   /**
596    * Position of this node in the min heap.
597    */
598   struct GNUNET_CONTAINER_HeapNode *heap_node;
599
600   /**
601    * Bloomfilter containing entries for peers
602    * we forwarded this request to.
603    */
604   struct GNUNET_CONTAINER_BloomFilter *bloom;
605
606   /**
607    * Timestamp of this request, for ordering
608    * the min heap.
609    */
610   struct GNUNET_TIME_Absolute timestamp;
611
612   /**
613    * Key of this request.
614    */
615   GNUNET_HashCode key;
616
617   /**
618    * Unique identifier for this request.
619    */
620   uint64_t uid;
621
622   /**
623    * Task to remove this entry on timeout.
624    */
625   GNUNET_SCHEDULER_TaskIdentifier remove_task;
626 };
627
628 struct RepublishContext
629 {
630   /**
631    * Key to republish.
632    */
633   GNUNET_HashCode key;
634
635   /**
636    * Type of the data.
637    */
638   unsigned int type;
639
640 };
641
642 /**
643  * Which kind of convergence will we be using?
644  */
645 enum ConvergenceOptions converge_option;
646
647 /**
648  * Modifier for the convergence function
649  */
650 float converge_modifier;
651
652 /**
653  * Recent requests by hash/uid and by time inserted.
654  */
655 static struct RecentRequests recent;
656
657 /**
658  * Context to use to calculate find peer rates.
659  */
660 static struct FindPeerMessageContext find_peer_context;
661
662 /**
663  * Don't use our routing algorithm, always route
664  * to closest peer; initially send requests to 3
665  * peers.
666  */
667 static unsigned int strict_kademlia;
668
669 /**
670  * Routing option to end routing when closest peer found.
671  */
672 static unsigned int stop_on_closest;
673
674 /**
675  * Routing option to end routing when data is found.
676  */
677 static unsigned int stop_on_found;
678
679 /**
680  * Whether DHT needs to manage find peer requests, or
681  * an external force will do it on behalf of the DHT.
682  */
683 static unsigned int do_find_peer;
684
685 /**
686  * Once we have stored an item in the DHT, refresh it
687  * according to our republish interval.
688  */
689 static unsigned int do_republish;
690
691 /**
692  * Use the "real" distance metric when selecting the
693  * next routing hop.  Can be less accurate.
694  */
695 static unsigned int use_real_distance;
696
697 /**
698  * How many peers have we added since we sent out our last
699  * find peer request?
700  */
701 static unsigned int newly_found_peers;
702
703 /**
704  * Container of active queries we should remember
705  */
706 static struct DHTResults forward_list;
707
708 /**
709  * Handle to the datacache service (for inserting/retrieving data)
710  */
711 static struct GNUNET_DATACACHE_Handle *datacache;
712
713 /**
714  * Handle for the statistics service.
715  */
716 struct GNUNET_STATISTICS_Handle *stats;
717
718 /**
719  * The main scheduler to use for the DHT service
720  */
721 static struct GNUNET_SCHEDULER_Handle *sched;
722
723 /**
724  * The configuration the DHT service is running with
725  */
726 static const struct GNUNET_CONFIGURATION_Handle *cfg;
727
728 /**
729  * Handle to the core service
730  */
731 static struct GNUNET_CORE_Handle *coreAPI;
732
733 /**
734  * Handle to the transport service, for getting our hello
735  */
736 static struct GNUNET_TRANSPORT_Handle *transport_handle;
737
738 /**
739  * The identity of our peer.
740  */
741 static struct GNUNET_PeerIdentity my_identity;
742
743 /**
744  * Short id of the peer, for printing
745  */
746 static char *my_short_id;
747
748 /**
749  * Our HELLO
750  */
751 static struct GNUNET_MessageHeader *my_hello;
752
753 /**
754  * Task to run when we shut down, cleaning up all our trash
755  */
756 static GNUNET_SCHEDULER_TaskIdentifier cleanup_task;
757
758 /**
759  * The lowest currently used bucket.
760  */
761 static unsigned int lowest_bucket; /* Initially equal to MAX_BUCKETS - 1 */
762
763 /**
764  * The maximum number of hops before we stop routing messages.
765  */
766 static unsigned long long max_hops;
767
768 /**
769  * How often to republish content we have previously stored.
770  */
771 static struct GNUNET_TIME_Relative dht_republish_frequency;
772
773 /**
774  * GNUNET_YES to stop at max_hops, GNUNET_NO to heuristically decide when to stop forwarding.
775  */
776 static int use_max_hops;
777
778 /**
779  * The buckets (Kademlia routing table, complete with growth).
780  * Array of size MAX_BUCKET_SIZE.
781  */
782 static struct PeerBucket k_buckets[MAX_BUCKETS]; /* From 0 to MAX_BUCKETS - 1 */
783
784 /**
785  * Hash map of all known peers, for easy removal from k_buckets on disconnect.
786  */
787 static struct GNUNET_CONTAINER_MultiHashMap *all_known_peers;
788
789 /**
790  * Recently seen find peer requests.
791  */
792 static struct GNUNET_CONTAINER_MultiHashMap *recent_find_peer_requests;
793
794 /**
795  * Maximum size for each bucket.
796  */
797 static unsigned int bucket_size = DEFAULT_BUCKET_SIZE; /* Initially equal to DEFAULT_BUCKET_SIZE */
798
799 /**
800  * List of active clients.
801  */
802 static struct ClientList *client_list;
803
804 /**
805  * Handle to the DHT logger.
806  */
807 static struct GNUNET_DHTLOG_Handle *dhtlog_handle;
808
809 /*
810  * Whether or not to send routing debugging information
811  * to the dht logging server
812  */
813 static unsigned int debug_routes;
814
815 /*
816  * Whether or not to send FULL route information to
817  * logging server
818  */
819 static unsigned int debug_routes_extended;
820
821 /*
822  * GNUNET_YES or GNUNET_NO, whether or not to act as
823  * a malicious node which drops all messages
824  */
825 static unsigned int malicious_dropper;
826
827 /*
828  * GNUNET_YES or GNUNET_NO, whether or not to act as
829  * a malicious node which sends out lots of GETS
830  */
831 static unsigned int malicious_getter;
832
833 /**
834  * GNUNET_YES or GNUNET_NO, whether or not to act as
835  * a malicious node which sends out lots of PUTS
836  */
837 static unsigned int malicious_putter;
838
839 /**
840  * Frequency for malicious get requests.
841  */
842 static unsigned long long malicious_get_frequency;
843
844 /**
845  * Frequency for malicious put requests.
846  */
847 static unsigned long long malicious_put_frequency;
848
849 /**
850  * Reply times for requests, if we are busy, don't send any
851  * more requests!
852  */
853 static struct GNUNET_TIME_Relative reply_times[MAX_REPLY_TIMES];
854
855 /**
856  * Current counter for replies.
857  */
858 static unsigned int reply_counter;
859
860 /**
861  * Forward declaration.
862  */
863 static size_t send_generic_reply (void *cls, size_t size, void *buf);
864
865 /** Declare here so retry_core_send is aware of it */
866 size_t core_transmit_notify (void *cls,
867                              size_t size, void *buf);
868
869 /**
870  * Convert unique ID to hash code.
871  *
872  * @param uid unique ID to convert
873  * @param hash set to uid (extended with zeros)
874  */
875 static void
876 hash_from_uid (uint64_t uid,
877                GNUNET_HashCode *hash)
878 {
879   memset (hash, 0, sizeof(GNUNET_HashCode));
880   *((uint64_t*)hash) = uid;
881 }
882
883 #if AVG
884 /**
885  * Calculate the average send time between messages so that we can
886  * ignore certain requests if we get too busy.
887  *
888  * @return the average time between asking core to send a message
889  *         and when the buffer for copying it is passed
890  */
891 static struct GNUNET_TIME_Relative get_average_send_delay()
892 {
893   unsigned int i;
894   unsigned int divisor;
895   struct GNUNET_TIME_Relative average_time;
896   average_time = GNUNET_TIME_relative_get_zero();
897   divisor = 0;
898   for (i = 0; i < MAX_REPLY_TIMES; i++)
899   {
900     average_time = GNUNET_TIME_relative_add(average_time, reply_times[i]);
901     if (reply_times[i].value == (uint64_t)0)
902       continue;
903     else
904       divisor++;
905   }
906   if (divisor == 0)
907   {
908     return average_time;
909   }
910
911   average_time = GNUNET_TIME_relative_divide(average_time, divisor);
912   fprintf(stderr, "Avg send delay: %u sends is %llu\n", divisor, (long long unsigned int)average_time.value);
913   return average_time;
914 }
915 #endif
916
917 /**
918  * Given the largest send delay, artificially decrease it
919  * so the next time around we may have a chance at sending
920  * again.
921  */
922 static void decrease_max_send_delay(struct GNUNET_TIME_Relative max_time)
923 {
924   unsigned int i;
925   for (i = 0; i < MAX_REPLY_TIMES; i++)
926     {
927       if (reply_times[i].value == max_time.value)
928         {
929           reply_times[i].value = reply_times[i].value / 2;
930           return;
931         }
932     }
933 }
934
935 /**
936  * Find the maximum send time of the recently sent values.
937  *
938  * @return the average time between asking core to send a message
939  *         and when the buffer for copying it is passed
940  */
941 static struct GNUNET_TIME_Relative get_max_send_delay()
942 {
943   unsigned int i;
944   struct GNUNET_TIME_Relative max_time;
945   max_time = GNUNET_TIME_relative_get_zero();
946
947   for (i = 0; i < MAX_REPLY_TIMES; i++)
948   {
949     if (reply_times[i].value > max_time.value)
950       max_time.value = reply_times[i].value;
951   }
952
953   if (max_time.value > MAX_REQUEST_TIME.value)
954     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Max send delay was %llu\n", (long long unsigned int)max_time.value);
955   return max_time;
956 }
957
958 static void
959 increment_stats(const char *value)
960 {
961   if (stats != NULL)
962     {
963       GNUNET_STATISTICS_update (stats, value, 1, GNUNET_NO);
964     }
965 }
966
967 /**
968  *  Try to send another message from our core send list
969  */
970 static void
971 try_core_send (void *cls,
972                const struct GNUNET_SCHEDULER_TaskContext *tc)
973 {
974   struct PeerInfo *peer = cls;
975   struct P2PPendingMessage *pending;
976   size_t ssize;
977
978   peer->send_task = GNUNET_SCHEDULER_NO_TASK;
979
980   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
981     return;
982
983   if (peer->th != NULL)
984     return; /* Message send already in progress */
985
986   pending = peer->head;
987   if (pending != NULL)
988     {
989       ssize = ntohs(pending->msg->size);
990 #if DEBUG_DHT > 1
991      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
992                 "`%s:%s': Calling notify_transmit_ready with size %d for peer %s\n", my_short_id,
993                 "DHT", ssize, GNUNET_i2s(&peer->id));
994 #endif
995       pending->scheduled = GNUNET_TIME_absolute_get();
996       reply_counter++;
997       if (reply_counter >= MAX_REPLY_TIMES)
998         reply_counter = 0;
999       peer->th = GNUNET_CORE_notify_transmit_ready(coreAPI, pending->importance,
1000                                                    pending->timeout, &peer->id,
1001                                                    ssize, &core_transmit_notify, peer);
1002     }
1003 }
1004
1005 /**
1006  * Function called to send a request out to another peer.
1007  * Called both for locally initiated requests and those
1008  * received from other peers.
1009  *
1010  * @param cls DHT service closure argument
1011  * @param msg the encapsulated message
1012  * @param peer the peer to forward the message to
1013  * @param msg_ctx the context of the message (hop count, bloom, etc.)
1014  */
1015 static void forward_result_message (void *cls,
1016                                     const struct GNUNET_MessageHeader *msg,
1017                                     struct PeerInfo *peer,
1018                                     struct DHT_MessageContext *msg_ctx)
1019 {
1020   struct GNUNET_DHT_P2PRouteResultMessage *result_message;
1021   struct P2PPendingMessage *pending;
1022   size_t msize;
1023   size_t psize;
1024
1025   increment_stats(STAT_RESULT_FORWARDS);
1026   msize = sizeof (struct GNUNET_DHT_P2PRouteResultMessage) + ntohs(msg->size);
1027   GNUNET_assert(msize <= GNUNET_SERVER_MAX_MESSAGE_SIZE);
1028   psize = sizeof(struct P2PPendingMessage) + msize;
1029   pending = GNUNET_malloc(psize);
1030   pending->msg = (struct GNUNET_MessageHeader *)&pending[1];
1031   pending->importance = DHT_SEND_PRIORITY;
1032   pending->timeout = GNUNET_TIME_relative_get_forever();
1033   result_message = (struct GNUNET_DHT_P2PRouteResultMessage *)pending->msg;
1034   result_message->header.size = htons(msize);
1035   result_message->header.type = htons(GNUNET_MESSAGE_TYPE_DHT_P2P_ROUTE_RESULT);
1036   result_message->options = htonl(msg_ctx->msg_options);
1037   result_message->hop_count = htonl(msg_ctx->hop_count + 1);
1038   GNUNET_assert(GNUNET_OK == GNUNET_CONTAINER_bloomfilter_get_raw_data(msg_ctx->bloom, result_message->bloomfilter, DHT_BLOOM_SIZE));
1039   result_message->unique_id = GNUNET_htonll(msg_ctx->unique_id);
1040   memcpy(&result_message->key, &msg_ctx->key, sizeof(GNUNET_HashCode));
1041   memcpy(&result_message[1], msg, ntohs(msg->size));
1042 #if DEBUG_DHT > 1
1043   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s:%s Adding pending message size %d for peer %s\n", my_short_id, "DHT", msize, GNUNET_i2s(&peer->id));
1044 #endif
1045   GNUNET_CONTAINER_DLL_insert_after(peer->head, peer->tail, peer->tail, pending);
1046   if (peer->send_task == GNUNET_SCHEDULER_NO_TASK)
1047     peer->send_task = GNUNET_SCHEDULER_add_now(sched, &try_core_send, peer);
1048 }
1049 /**
1050  * Called when core is ready to send a message we asked for
1051  * out to the destination.
1052  *
1053  * @param cls closure (NULL)
1054  * @param size number of bytes available in buf
1055  * @param buf where the callee should write the message
1056  * @return number of bytes written to buf
1057  */
1058 size_t core_transmit_notify (void *cls,
1059                              size_t size, void *buf)
1060 {
1061   struct PeerInfo *peer = cls;
1062   char *cbuf = buf;
1063   struct P2PPendingMessage *pending;
1064
1065   size_t off;
1066   size_t msize;
1067
1068   if (buf == NULL)
1069     {
1070       /* client disconnected */
1071 #if DEBUG_DHT
1072       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "`%s:%s': buffer was NULL\n", my_short_id, "DHT");
1073 #endif
1074       return 0;
1075     }
1076
1077   if (peer->head == NULL)
1078     return 0;
1079
1080   peer->th = NULL;
1081   off = 0;
1082   pending = peer->head;
1083   reply_times[reply_counter] = GNUNET_TIME_absolute_get_difference(pending->scheduled, GNUNET_TIME_absolute_get());
1084   msize = ntohs(pending->msg->size);
1085   if (msize <= size)
1086     {
1087       off = msize;
1088       memcpy (cbuf, pending->msg, msize);
1089       GNUNET_CONTAINER_DLL_remove (peer->head,
1090                                    peer->tail,
1091                                    pending);
1092 #if DEBUG_DHT > 1
1093       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s:%s Removing pending message size %d for peer %s\n", my_short_id, "DHT", msize, GNUNET_i2s(&peer->id));
1094 #endif
1095       GNUNET_free (pending);
1096     }
1097 #if SMART
1098   while (NULL != pending &&
1099           (size - off >= (msize = ntohs (pending->msg->size))))
1100     {
1101 #if DEBUG_DHT_ROUTING
1102       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "`%s:%s' : transmit_notify (core) called with size %d, available %d\n", my_short_id, "dht service", msize, size);
1103 #endif
1104       memcpy (&cbuf[off], pending->msg, msize);
1105       off += msize;
1106       GNUNET_CONTAINER_DLL_remove (peer->head,
1107                                    peer->tail,
1108                                    pending);
1109       GNUNET_free (pending);
1110       pending = peer->head;
1111     }
1112 #endif
1113   if ((peer->head != NULL) && (peer->send_task == GNUNET_SCHEDULER_NO_TASK))
1114     peer->send_task = GNUNET_SCHEDULER_add_now(sched, &try_core_send, peer);
1115 #if DEBUG_DHT > 1
1116   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "`%s:%s' : transmit_notify (core) called with size %d, available %d, returning %d\n", my_short_id, "dht service", msize, size, off);
1117 #endif
1118   return off;
1119 }
1120
1121
1122 /**
1123  * Compute the distance between have and target as a 32-bit value.
1124  * Differences in the lower bits must count stronger than differences
1125  * in the higher bits.
1126  *
1127  * @return 0 if have==target, otherwise a number
1128  *           that is larger as the distance between
1129  *           the two hash codes increases
1130  */
1131 static unsigned int
1132 distance (const GNUNET_HashCode * target, const GNUNET_HashCode * have)
1133 {
1134   unsigned int bucket;
1135   unsigned int msb;
1136   unsigned int lsb;
1137   unsigned int i;
1138
1139   /* We have to represent the distance between two 2^9 (=512)-bit
1140      numbers as a 2^5 (=32)-bit number with "0" being used for the
1141      two numbers being identical; furthermore, we need to
1142      guarantee that a difference in the number of matching
1143      bits is always represented in the result.
1144
1145      We use 2^32/2^9 numerical values to distinguish between
1146      hash codes that have the same LSB bit distance and
1147      use the highest 2^9 bits of the result to signify the
1148      number of (mis)matching LSB bits; if we have 0 matching
1149      and hence 512 mismatching LSB bits we return -1 (since
1150      512 itself cannot be represented with 9 bits) */
1151
1152   /* first, calculate the most significant 9 bits of our
1153      result, aka the number of LSBs */
1154   bucket = GNUNET_CRYPTO_hash_matching_bits (target, have);
1155   /* bucket is now a value between 0 and 512 */
1156   if (bucket == 512)
1157     return 0;                   /* perfect match */
1158   if (bucket == 0)
1159     return (unsigned int) -1;   /* LSB differs; use max (if we did the bit-shifting
1160                                    below, we'd end up with max+1 (overflow)) */
1161
1162   /* calculate the most significant bits of the final result */
1163   msb = (512 - bucket) << (32 - 9);
1164   /* calculate the 32-9 least significant bits of the final result by
1165      looking at the differences in the 32-9 bits following the
1166      mismatching bit at 'bucket' */
1167   lsb = 0;
1168   for (i = bucket + 1;
1169        (i < sizeof (GNUNET_HashCode) * 8) && (i < bucket + 1 + 32 - 9); i++)
1170     {
1171       if (GNUNET_CRYPTO_hash_get_bit (target, i) != GNUNET_CRYPTO_hash_get_bit (have, i))
1172         lsb |= (1 << (bucket + 32 - 9 - i));    /* first bit set will be 10,
1173                                                    last bit set will be 31 -- if
1174                                                    i does not reach 512 first... */
1175     }
1176   return msb | lsb;
1177 }
1178
1179 /**
1180  * Return a number that is larger the closer the
1181  * "have" GNUNET_hash code is to the "target".
1182  *
1183  * @return inverse distance metric, non-zero.
1184  *         Must fudge the value if NO bits match.
1185  */
1186 static unsigned int
1187 inverse_distance (const GNUNET_HashCode * target,
1188                   const GNUNET_HashCode * have)
1189 {
1190   if (GNUNET_CRYPTO_hash_matching_bits(target, have) == 0)
1191     return 1; /* Never return 0! */
1192   return ((unsigned int) -1) - distance (target, have);
1193 }
1194
1195 /**
1196  * Find the optimal bucket for this key, regardless
1197  * of the current number of buckets in use.
1198  *
1199  * @param hc the hashcode to compare our identity to
1200  *
1201  * @return the proper bucket index, or GNUNET_SYSERR
1202  *         on error (same hashcode)
1203  */
1204 static int find_bucket(const GNUNET_HashCode *hc)
1205 {
1206   unsigned int bits;
1207
1208   bits = GNUNET_CRYPTO_hash_matching_bits(&my_identity.hashPubKey, hc);
1209   if (bits == MAX_BUCKETS)
1210     return GNUNET_SYSERR;
1211   return MAX_BUCKETS - bits - 1;
1212 }
1213
1214 /**
1215  * Find which k-bucket this peer should go into,
1216  * taking into account the size of the k-bucket
1217  * array.  This means that if more bits match than
1218  * there are currently buckets, lowest_bucket will
1219  * be returned.
1220  *
1221  * @param hc GNUNET_HashCode we are finding the bucket for.
1222  *
1223  * @return the proper bucket index for this key,
1224  *         or GNUNET_SYSERR on error (same hashcode)
1225  */
1226 static int find_current_bucket(const GNUNET_HashCode *hc)
1227 {
1228   int actual_bucket;
1229   actual_bucket = find_bucket(hc);
1230
1231   if (actual_bucket == GNUNET_SYSERR) /* hc and our peer identity match! */
1232     return GNUNET_SYSERR;
1233   else if (actual_bucket < lowest_bucket) /* actual_bucket not yet used */
1234     return lowest_bucket;
1235   else
1236     return actual_bucket;
1237 }
1238
1239 #if EXTRA_CHECKS
1240 /**
1241  * Find a routing table entry from a peer identity
1242  *
1243  * @param peer the peer to look up
1244  *
1245  * @return the bucket number holding the peer, GNUNET_SYSERR if not found
1246  */
1247 static int
1248 find_bucket_by_peer(const struct PeerInfo *peer)
1249 {
1250   int bucket;
1251   struct PeerInfo *pos;
1252
1253   for (bucket = lowest_bucket; bucket < MAX_BUCKETS - 1; bucket++)
1254     {
1255       pos = k_buckets[bucket].head;
1256       while (pos != NULL)
1257         {
1258           if (peer == pos)
1259             return bucket;
1260           pos = pos->next;
1261         }
1262     }
1263
1264   return GNUNET_SYSERR; /* No such peer. */
1265 }
1266 #endif
1267
1268 #if PRINT_TABLES
1269 /**
1270  * Print the complete routing table for this peer.
1271  */
1272 static void
1273 print_routing_table ()
1274 {
1275   int bucket;
1276   struct PeerInfo *pos;
1277   char char_buf[30000];
1278   int char_pos;
1279   memset(char_buf, 0, sizeof(char_buf));
1280   char_pos = 0;
1281   char_pos += sprintf(&char_buf[char_pos], "Printing routing table for peer %s\n", my_short_id);
1282   //fprintf(stderr, "Printing routing table for peer %s\n", my_short_id);
1283   for (bucket = lowest_bucket; bucket < MAX_BUCKETS; bucket++)
1284     {
1285       pos = k_buckets[bucket].head;
1286       char_pos += sprintf(&char_buf[char_pos], "Bucket %d:\n", bucket);
1287       //fprintf(stderr, "Bucket %d:\n", bucket);
1288       while (pos != NULL)
1289         {
1290           //fprintf(stderr, "\tPeer %s, best bucket %d, %d bits match\n", GNUNET_i2s(&pos->id), find_bucket(&pos->id.hashPubKey), GNUNET_CRYPTO_hash_matching_bits(&pos->id.hashPubKey, &my_identity.hashPubKey));
1291           char_pos += sprintf(&char_buf[char_pos], "\tPeer %s, best bucket %d, %d bits match\n", GNUNET_i2s(&pos->id), find_bucket(&pos->id.hashPubKey), GNUNET_CRYPTO_hash_matching_bits(&pos->id.hashPubKey, &my_identity.hashPubKey));
1292           pos = pos->next;
1293         }
1294     }
1295   fprintf(stderr, "%s", char_buf);
1296   fflush(stderr);
1297 }
1298 #endif
1299
1300 /**
1301  * Find a routing table entry from a peer identity
1302  *
1303  * @param peer the peer identity to look up
1304  *
1305  * @return the routing table entry, or NULL if not found
1306  */
1307 static struct PeerInfo *
1308 find_peer_by_id(const struct GNUNET_PeerIdentity *peer)
1309 {
1310   int bucket;
1311   struct PeerInfo *pos;
1312   bucket = find_current_bucket(&peer->hashPubKey);
1313
1314   if (bucket == GNUNET_SYSERR)
1315     return NULL;
1316
1317   pos = k_buckets[bucket].head;
1318   while (pos != NULL)
1319     {
1320       if (0 == memcmp(&pos->id, peer, sizeof(struct GNUNET_PeerIdentity)))
1321         return pos;
1322       pos = pos->next;
1323     }
1324   return NULL; /* No such peer. */
1325 }
1326
1327 /* Forward declaration */
1328 static void
1329 update_core_preference (void *cls,
1330                         const struct GNUNET_SCHEDULER_TaskContext *tc);
1331 /**
1332  * Function called with statistics about the given peer.
1333  *
1334  * @param cls closure
1335  * @param peer identifies the peer
1336  * @param bpm_in set to the current bandwidth limit (receiving) for this peer
1337  * @param bpm_out set to the current bandwidth limit (sending) for this peer
1338  * @param amount set to the amount that was actually reserved or unreserved;
1339  *               either the full requested amount or zero (no partial reservations)
1340  * @param preference current traffic preference for the given peer
1341  */
1342 static void
1343 update_core_preference_finish (void *cls,
1344                                const struct GNUNET_PeerIdentity * peer,
1345                                struct GNUNET_BANDWIDTH_Value32NBO bpm_in,
1346                                struct GNUNET_BANDWIDTH_Value32NBO bpm_out,
1347                                int amount, uint64_t preference)
1348 {
1349   struct PeerInfo *peer_info = cls;
1350   peer_info->info_ctx = NULL;
1351   GNUNET_SCHEDULER_add_delayed(sched, DHT_DEFAULT_PREFERENCE_INTERVAL, &update_core_preference, peer_info);
1352 }
1353
1354 static void
1355 update_core_preference (void *cls,
1356                         const struct GNUNET_SCHEDULER_TaskContext *tc)
1357 {
1358   struct PeerInfo *peer = cls;
1359   uint64_t preference;
1360   unsigned int matching;
1361   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
1362     {
1363       return;
1364     }
1365   matching = GNUNET_CRYPTO_hash_matching_bits(&my_identity.hashPubKey, &peer->id.hashPubKey);
1366   if (matching >= 64)
1367     {
1368       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Peer identifier matches by %u bits, only shifting as much as we can!\n", matching);
1369       matching = 63;
1370     }
1371   preference = 1LL << matching;
1372   peer->info_ctx = GNUNET_CORE_peer_change_preference (sched, cfg,
1373                                                        &peer->id,
1374                                                        GNUNET_TIME_relative_get_forever(),
1375                                                        GNUNET_BANDWIDTH_value_init (UINT32_MAX),
1376                                                        0,
1377                                                        preference,
1378                                                        &update_core_preference_finish,
1379                                                        peer);
1380 }
1381
1382 /**
1383  * Really add a peer to a bucket (only do assertions
1384  * on size, etc.)
1385  *
1386  * @param peer GNUNET_PeerIdentity of the peer to add
1387  * @param bucket the already figured out bucket to add
1388  *        the peer to
1389  * @param latency the core reported latency of this peer
1390  * @param distance the transport level distance to this peer
1391  *
1392  * @return the newly added PeerInfo
1393  */
1394 static struct PeerInfo *
1395 add_peer(const struct GNUNET_PeerIdentity *peer,
1396          unsigned int bucket,
1397          struct GNUNET_TIME_Relative latency,
1398          unsigned int distance)
1399 {
1400   struct PeerInfo *new_peer;
1401   GNUNET_assert(bucket < MAX_BUCKETS);
1402   GNUNET_assert(peer != NULL);
1403   new_peer = GNUNET_malloc(sizeof(struct PeerInfo));
1404   new_peer->latency = latency;
1405   new_peer->distance = distance;
1406
1407   memcpy(&new_peer->id, peer, sizeof(struct GNUNET_PeerIdentity));
1408
1409   GNUNET_CONTAINER_DLL_insert_after(k_buckets[bucket].head,
1410                                     k_buckets[bucket].tail,
1411                                     k_buckets[bucket].tail,
1412                                     new_peer);
1413   k_buckets[bucket].peers_size++;
1414
1415   if ((GNUNET_CRYPTO_hash_matching_bits(&my_identity.hashPubKey, &peer->hashPubKey) > 0) && (k_buckets[bucket].peers_size <= bucket_size))
1416     {
1417 #if DO_UPDATE_PREFERENCE
1418       new_peer->preference_task = GNUNET_SCHEDULER_add_now(sched, &update_core_preference, new_peer);
1419 #endif
1420     }
1421
1422   return new_peer;
1423 }
1424
1425 /**
1426  * Given a peer and its corresponding bucket,
1427  * remove it from that bucket.  Does not free
1428  * the PeerInfo struct, nor cancel messages
1429  * or free messages waiting to be sent to this
1430  * peer!
1431  *
1432  * @param peer the peer to remove
1433  * @param bucket the bucket the peer belongs to
1434  */
1435 static void remove_peer (struct PeerInfo *peer,
1436                          unsigned int bucket)
1437 {
1438   GNUNET_assert(k_buckets[bucket].peers_size > 0);
1439   GNUNET_CONTAINER_DLL_remove(k_buckets[bucket].head,
1440                               k_buckets[bucket].tail,
1441                               peer);
1442   k_buckets[bucket].peers_size--;
1443 #if CHANGE_LOWEST
1444   if ((bucket == lowest_bucket) && (k_buckets[lowest_bucket].peers_size == 0) && (lowest_bucket < MAX_BUCKETS - 1))
1445     lowest_bucket++;
1446 #endif
1447 }
1448
1449 /**
1450  * Removes peer from a bucket, then frees associated
1451  * resources and frees peer.
1452  *
1453  * @param peer peer to be removed and freed
1454  * @param bucket which bucket this peer belongs to
1455  */
1456 static void delete_peer (struct PeerInfo *peer,
1457                          unsigned int bucket)
1458 {
1459   struct P2PPendingMessage *pos;
1460   struct P2PPendingMessage *next;
1461 #if EXTRA_CHECKS
1462   struct PeerInfo *peer_pos;
1463
1464   peer_pos = k_buckets[bucket].head;
1465   while ((peer_pos != NULL) && (peer_pos != peer))
1466     peer_pos = peer_pos->next;
1467   if (peer_pos == NULL)
1468     {
1469       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s:%s: Expected peer `%s' in bucket %d\n", my_short_id, "DHT", GNUNET_i2s(&peer->id), bucket);
1470       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s:%s: Lowest bucket: %d, find_current_bucket: %d, peer resides in bucket: %d\n", my_short_id, "DHT", lowest_bucket, find_current_bucket(&peer->id.hashPubKey), find_bucket_by_peer(peer));
1471     }
1472   GNUNET_assert(peer_pos != NULL);
1473 #endif
1474   remove_peer(peer, bucket); /* First remove the peer from its bucket */
1475
1476   if (peer->send_task != GNUNET_SCHEDULER_NO_TASK)
1477     GNUNET_SCHEDULER_cancel(sched, peer->send_task);
1478   if (peer->th != NULL)
1479     GNUNET_CORE_notify_transmit_ready_cancel(peer->th);
1480
1481   pos = peer->head;
1482   while (pos != NULL) /* Remove any pending messages for this peer */
1483     {
1484       next = pos->next;
1485       GNUNET_free(pos);
1486       pos = next;
1487     }
1488
1489   GNUNET_assert(GNUNET_CONTAINER_multihashmap_contains(all_known_peers, &peer->id.hashPubKey));
1490   GNUNET_CONTAINER_multihashmap_remove (all_known_peers, &peer->id.hashPubKey, peer);
1491   GNUNET_free(peer);
1492 }
1493
1494
1495 /**
1496  * Iterator over hash map entries.
1497  *
1498  * @param cls closure
1499  * @param key current key code
1500  * @param value PeerInfo of the peer to move to new lowest bucket
1501  * @return GNUNET_YES if we should continue to
1502  *         iterate,
1503  *         GNUNET_NO if not.
1504  */
1505 static int move_lowest_bucket (void *cls,
1506                                const GNUNET_HashCode * key,
1507                                void *value)
1508 {
1509   struct PeerInfo *peer = value;
1510   int new_bucket;
1511
1512   GNUNET_assert(lowest_bucket > 0);
1513   new_bucket = lowest_bucket - 1;
1514   remove_peer(peer, lowest_bucket);
1515   GNUNET_CONTAINER_DLL_insert_after(k_buckets[new_bucket].head,
1516                                     k_buckets[new_bucket].tail,
1517                                     k_buckets[new_bucket].tail,
1518                                     peer);
1519   k_buckets[new_bucket].peers_size++;
1520   return GNUNET_YES;
1521 }
1522
1523
1524 /**
1525  * The current lowest bucket is full, so change the lowest
1526  * bucket to the next lower down, and move any appropriate
1527  * entries in the current lowest bucket to the new bucket.
1528  */
1529 static void enable_next_bucket()
1530 {
1531   struct GNUNET_CONTAINER_MultiHashMap *to_remove;
1532   struct PeerInfo *pos;
1533   GNUNET_assert(lowest_bucket > 0);
1534   to_remove = GNUNET_CONTAINER_multihashmap_create(bucket_size);
1535   pos = k_buckets[lowest_bucket].head;
1536
1537 #if PRINT_TABLES
1538   fprintf(stderr, "Printing RT before new bucket\n");
1539   print_routing_table();
1540 #endif
1541   /* Populate the array of peers which should be in the next lowest bucket */
1542   while (pos != NULL)
1543     {
1544       if (find_bucket(&pos->id.hashPubKey) < lowest_bucket)
1545         GNUNET_CONTAINER_multihashmap_put(to_remove, &pos->id.hashPubKey, pos, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1546       pos = pos->next;
1547     }
1548
1549   /* Remove peers from lowest bucket, insert into next lowest bucket */
1550   GNUNET_CONTAINER_multihashmap_iterate(to_remove, &move_lowest_bucket, NULL);
1551   GNUNET_CONTAINER_multihashmap_destroy(to_remove);
1552   lowest_bucket = lowest_bucket - 1;
1553 #if PRINT_TABLES
1554   fprintf(stderr, "Printing RT after new bucket\n");
1555   print_routing_table();
1556 #endif
1557 }
1558
1559 /**
1560  * Find the closest peer in our routing table to the
1561  * given hashcode.
1562  *
1563  * @return The closest peer in our routing table to the
1564  *         key, or NULL on error.
1565  */
1566 static struct PeerInfo *
1567 find_closest_peer (const GNUNET_HashCode *hc)
1568 {
1569   struct PeerInfo *pos;
1570   struct PeerInfo *current_closest;
1571   unsigned int lowest_distance;
1572   unsigned int temp_distance;
1573   int bucket;
1574   int count;
1575
1576   lowest_distance = -1;
1577
1578   if (k_buckets[lowest_bucket].peers_size == 0)
1579     return NULL;
1580
1581   current_closest = NULL;
1582   for (bucket = lowest_bucket; bucket < MAX_BUCKETS; bucket++)
1583     {
1584       pos = k_buckets[bucket].head;
1585       count = 0;
1586       while ((pos != NULL) && (count < bucket_size))
1587         {
1588           temp_distance = distance(&pos->id.hashPubKey, hc);
1589           if (temp_distance <= lowest_distance)
1590             {
1591               lowest_distance = temp_distance;
1592               current_closest = pos;
1593             }
1594           pos = pos->next;
1595           count++;
1596         }
1597     }
1598   GNUNET_assert(current_closest != NULL);
1599   return current_closest;
1600 }
1601
1602
1603 /**
1604  * Function called to send a request out to another peer.
1605  * Called both for locally initiated requests and those
1606  * received from other peers.
1607  *
1608  * @param cls DHT service closure argument (unused)
1609  * @param msg the encapsulated message
1610  * @param peer the peer to forward the message to
1611  * @param msg_ctx the context of the message (hop count, bloom, etc.)
1612  */
1613 static void forward_message (void *cls,
1614                              const struct GNUNET_MessageHeader *msg,
1615                              struct PeerInfo *peer,
1616                              struct DHT_MessageContext *msg_ctx)
1617 {
1618   struct GNUNET_DHT_P2PRouteMessage *route_message;
1619   struct P2PPendingMessage *pending;
1620   size_t msize;
1621   size_t psize;
1622
1623   increment_stats(STAT_ROUTE_FORWARDS);
1624
1625   if ((msg_ctx->closest != GNUNET_YES) && (peer == find_closest_peer(&msg_ctx->key)))
1626     increment_stats(STAT_ROUTE_FORWARDS_CLOSEST);
1627
1628   msize = sizeof (struct GNUNET_DHT_P2PRouteMessage) + ntohs(msg->size);
1629   GNUNET_assert(msize <= GNUNET_SERVER_MAX_MESSAGE_SIZE);
1630   psize = sizeof(struct P2PPendingMessage) + msize;
1631   pending = GNUNET_malloc(psize);
1632   pending->msg = (struct GNUNET_MessageHeader *)&pending[1];
1633   pending->importance = msg_ctx->importance;
1634   pending->timeout = msg_ctx->timeout;
1635   route_message = (struct GNUNET_DHT_P2PRouteMessage *)pending->msg;
1636   route_message->header.size = htons(msize);
1637   route_message->header.type = htons(GNUNET_MESSAGE_TYPE_DHT_P2P_ROUTE);
1638   route_message->options = htonl(msg_ctx->msg_options);
1639   route_message->hop_count = htonl(msg_ctx->hop_count + 1);
1640   route_message->network_size = htonl(msg_ctx->network_size);
1641   route_message->desired_replication_level = htonl(msg_ctx->replication);
1642   route_message->unique_id = GNUNET_htonll(msg_ctx->unique_id);
1643   if (msg_ctx->bloom != NULL)
1644     GNUNET_assert(GNUNET_OK == GNUNET_CONTAINER_bloomfilter_get_raw_data(msg_ctx->bloom, route_message->bloomfilter, DHT_BLOOM_SIZE));
1645   memcpy(&route_message->key, &msg_ctx->key, sizeof(GNUNET_HashCode));
1646   memcpy(&route_message[1], msg, ntohs(msg->size));
1647 #if DEBUG_DHT > 1
1648   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s:%s Adding pending message size %d for peer %s\n", my_short_id, "DHT", msize, GNUNET_i2s(&peer->id));
1649 #endif
1650   GNUNET_CONTAINER_DLL_insert_after(peer->head, peer->tail, peer->tail, pending);
1651   if (peer->send_task == GNUNET_SCHEDULER_NO_TASK)
1652     peer->send_task = GNUNET_SCHEDULER_add_now(sched, &try_core_send, peer);
1653 }
1654
1655 #if DO_PING
1656 /**
1657  * Task used to send ping messages to peers so that
1658  * they don't get disconnected.
1659  *
1660  * @param cls the peer to send a ping message to
1661  * @param tc context, reason, etc.
1662  */
1663 static void
1664 periodic_ping_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1665 {
1666   struct PeerInfo *peer = cls;
1667   struct GNUNET_MessageHeader ping_message;
1668   struct DHT_MessageContext message_context;
1669
1670   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
1671     return;
1672
1673   ping_message.size = htons(sizeof(struct GNUNET_MessageHeader));
1674   ping_message.type = htons(GNUNET_MESSAGE_TYPE_DHT_P2P_PING);
1675
1676   memset(&message_context, 0, sizeof(struct DHT_MessageContext));
1677 #if DEBUG_PING
1678   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s:%s Sending periodic ping to %s\n", my_short_id, "DHT", GNUNET_i2s(&peer->id));
1679 #endif
1680   forward_message(NULL, &ping_message, peer, &message_context);
1681   peer->ping_task = GNUNET_SCHEDULER_add_delayed(sched, DHT_DEFAULT_PING_DELAY, &periodic_ping_task, peer);
1682 }
1683
1684 /**
1685  * Schedule PING messages for the top X peers in each
1686  * bucket of the routing table (so core won't disconnect them!)
1687  */
1688 void schedule_ping_messages()
1689 {
1690   unsigned int bucket;
1691   unsigned int count;
1692   struct PeerInfo *pos;
1693   for (bucket = lowest_bucket; bucket < MAX_BUCKETS; bucket++)
1694     {
1695       pos = k_buckets[bucket].head;
1696       count = 0;
1697       while (pos != NULL)
1698         {
1699           if ((count < bucket_size) && (pos->ping_task == GNUNET_SCHEDULER_NO_TASK))
1700             GNUNET_SCHEDULER_add_now(sched, &periodic_ping_task, pos);
1701           else if ((count >= bucket_size) && (pos->ping_task != GNUNET_SCHEDULER_NO_TASK))
1702             {
1703               GNUNET_SCHEDULER_cancel(sched, pos->ping_task);
1704               pos->ping_task = GNUNET_SCHEDULER_NO_TASK;
1705             }
1706           pos = pos->next;
1707           count++;
1708         }
1709     }
1710 }
1711 #endif
1712
1713 /**
1714  * Attempt to add a peer to our k-buckets.
1715  *
1716  * @param peer the peer identity of the peer being added
1717  * @param bucket the bucket that we want this peer to go in
1718  * @param latency transport latency of this peer
1719  * @param distance transport distance to this peer
1720  *
1721  * @return NULL if the peer was not added,
1722  *         pointer to PeerInfo for new peer otherwise
1723  */
1724 static struct PeerInfo *
1725 try_add_peer(const struct GNUNET_PeerIdentity *peer,
1726              unsigned int bucket,
1727              struct GNUNET_TIME_Relative latency,
1728              unsigned int distance)
1729 {
1730   int peer_bucket;
1731   struct PeerInfo *new_peer;
1732   peer_bucket = find_current_bucket(&peer->hashPubKey);
1733   if (peer_bucket == GNUNET_SYSERR)
1734     return NULL;
1735
1736   GNUNET_assert(peer_bucket >= lowest_bucket);
1737   new_peer = add_peer(peer, peer_bucket, latency, distance);
1738
1739   if ((k_buckets[lowest_bucket].peers_size) >= bucket_size)
1740     enable_next_bucket();
1741 #if DO_PING
1742   schedule_ping_messages();
1743 #endif
1744   return new_peer;
1745 }
1746
1747
1748 /**
1749  * Task run to check for messages that need to be sent to a client.
1750  *
1751  * @param client a ClientList, containing the client and any messages to be sent to it
1752  */
1753 static void
1754 process_pending_messages (struct ClientList *client)
1755
1756   if (client->pending_head == NULL) 
1757     return;    
1758   if (client->transmit_handle != NULL) 
1759     return;
1760   client->transmit_handle =
1761     GNUNET_SERVER_notify_transmit_ready (client->client_handle,
1762                                          ntohs (client->pending_head->msg->
1763                                                 size),
1764                                          GNUNET_TIME_UNIT_FOREVER_REL,
1765                                          &send_generic_reply, client);
1766 }
1767
1768 /**
1769  * Callback called as a result of issuing a GNUNET_SERVER_notify_transmit_ready
1770  * request.  A ClientList is passed as closure, take the head of the list
1771  * and copy it into buf, which has the result of sending the message to the
1772  * client.
1773  *
1774  * @param cls closure to this call
1775  * @param size maximum number of bytes available to send
1776  * @param buf where to copy the actual message to
1777  *
1778  * @return the number of bytes actually copied, 0 indicates failure
1779  */
1780 static size_t
1781 send_generic_reply (void *cls, size_t size, void *buf)
1782 {
1783   struct ClientList *client = cls;
1784   char *cbuf = buf;
1785   struct PendingMessage *reply;
1786   size_t off;
1787   size_t msize;
1788
1789   client->transmit_handle = NULL;
1790   if (buf == NULL)             
1791     {
1792       /* client disconnected */
1793       return 0;
1794     }
1795   off = 0;
1796   while ( (NULL != (reply = client->pending_head)) &&
1797           (size >= off + (msize = ntohs (reply->msg->size))))
1798     {
1799       GNUNET_CONTAINER_DLL_remove (client->pending_head,
1800                                    client->pending_tail,
1801                                    reply);
1802       memcpy (&cbuf[off], reply->msg, msize);
1803       GNUNET_free (reply);
1804       off += msize;
1805     }
1806   process_pending_messages (client);
1807   return off;
1808 }
1809
1810
1811 /**
1812  * Add a PendingMessage to the clients list of messages to be sent
1813  *
1814  * @param client the active client to send the message to
1815  * @param pending_message the actual message to send
1816  */
1817 static void
1818 add_pending_message (struct ClientList *client,
1819                      struct PendingMessage *pending_message)
1820 {
1821   GNUNET_CONTAINER_DLL_insert_after (client->pending_head,
1822                                      client->pending_tail,
1823                                      client->pending_tail,
1824                                      pending_message);
1825   process_pending_messages (client);
1826 }
1827
1828
1829
1830
1831 /**
1832  * Called when a reply needs to be sent to a client, as
1833  * a result it found to a GET or FIND PEER request.
1834  *
1835  * @param client the client to send the reply to
1836  * @param message the encapsulated message to send
1837  * @param uid the unique identifier of this request
1838  */
1839 static void
1840 send_reply_to_client (struct ClientList *client,
1841                       const struct GNUNET_MessageHeader *message,
1842                       unsigned long long uid)
1843 {
1844   struct GNUNET_DHT_RouteResultMessage *reply;
1845   struct PendingMessage *pending_message;
1846   uint16_t msize;
1847   size_t tsize;
1848 #if DEBUG_DHT
1849   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1850               "`%s:%s': Sending reply to client.\n", my_short_id, "DHT");
1851 #endif
1852   msize = ntohs (message->size);
1853   tsize = sizeof (struct GNUNET_DHT_RouteResultMessage) + msize;
1854   if (tsize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1855     {
1856       GNUNET_break_op (0);
1857       return;
1858     }
1859
1860   pending_message = GNUNET_malloc (sizeof (struct PendingMessage) + tsize);
1861   pending_message->msg = (struct GNUNET_MessageHeader *)&pending_message[1];
1862   reply = (struct GNUNET_DHT_RouteResultMessage *)&pending_message[1];
1863   reply->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_LOCAL_ROUTE_RESULT);
1864   reply->header.size = htons (tsize);
1865   reply->unique_id = GNUNET_htonll (uid);
1866   memcpy (&reply[1], message, msize);
1867
1868   add_pending_message (client, pending_message);
1869 }
1870
1871 /**
1872  * Consider whether or not we would like to have this peer added to
1873  * our routing table.  Check whether bucket for this peer is full,
1874  * if so return negative; if not return positive.  Since peers are
1875  * only added on CORE level connect, this doesn't actually add the
1876  * peer to the routing table.
1877  *
1878  * @param peer the peer we are considering adding
1879  *
1880  * @return GNUNET_YES if we want this peer, GNUNET_NO if not (bucket
1881  *         already full)
1882  *
1883  * FIXME: Think about making a context for this call so that we can
1884  *        ping the oldest peer in the current bucket and consider
1885  *        removing it in lieu of the new peer.
1886  */
1887 static int consider_peer (struct GNUNET_PeerIdentity *peer)
1888 {
1889   int bucket;
1890
1891   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains(all_known_peers, &peer->hashPubKey))
1892     return GNUNET_NO; /* We already know this peer (are connected even!) */
1893   bucket = find_current_bucket(&peer->hashPubKey);
1894   if (bucket == GNUNET_SYSERR)
1895     return GNUNET_NO;
1896   if ((k_buckets[bucket].peers_size < bucket_size) || ((bucket == lowest_bucket) && (lowest_bucket > 0)))
1897     return GNUNET_YES;
1898
1899   return GNUNET_NO;
1900 }
1901
1902 /**
1903  * Main function that handles whether or not to route a result
1904  * message to other peers, or to send to our local client.
1905  *
1906  * @param cls closure (unused, always should be NULL)
1907  * @param msg the result message to be routed
1908  * @param message_context context of the message we are routing
1909  *
1910  * @return the number of peers the message was routed to,
1911  *         GNUNET_SYSERR on failure
1912  */
1913 static int route_result_message(void *cls,
1914                                 struct GNUNET_MessageHeader *msg,
1915                                 struct DHT_MessageContext *message_context)
1916 {
1917   struct GNUNET_PeerIdentity new_peer;
1918   struct DHTQueryRecord *record;
1919   struct DHTRouteSource *pos;
1920   struct PeerInfo *peer_info;
1921   const struct GNUNET_MessageHeader *hello_msg;
1922
1923   increment_stats(STAT_RESULTS);
1924   /**
1925    * If a find peer result message is received and contains a valid
1926    * HELLO for another peer, offer it to the transport service.
1927    */
1928   if (ntohs(msg->type) == GNUNET_MESSAGE_TYPE_DHT_FIND_PEER_RESULT)
1929     {
1930       if (ntohs(msg->size) <= sizeof(struct GNUNET_MessageHeader))
1931         GNUNET_break_op(0);
1932
1933       hello_msg = &msg[1];
1934       if ((ntohs(hello_msg->type) != GNUNET_MESSAGE_TYPE_HELLO) || (GNUNET_SYSERR == GNUNET_HELLO_get_id((const struct GNUNET_HELLO_Message *)hello_msg, &new_peer)))
1935       {
1936         GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s:%s Received non-HELLO message type in find peer result message!\n", my_short_id, "DHT");
1937         GNUNET_break_op(0);
1938         return GNUNET_NO;
1939       }
1940       else /* We have a valid hello, and peer id stored in new_peer */
1941       {
1942         find_peer_context.count++;
1943         increment_stats(STAT_FIND_PEER_REPLY);
1944         if (GNUNET_YES == consider_peer(&new_peer))
1945         {
1946           increment_stats(STAT_HELLOS_PROVIDED);
1947           GNUNET_TRANSPORT_offer_hello(transport_handle, hello_msg);
1948           GNUNET_CORE_peer_request_connect(sched, cfg, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 5), &new_peer, NULL, NULL);
1949         }
1950       }
1951     }
1952
1953   if (malicious_dropper == GNUNET_YES)
1954     record = NULL;
1955   else
1956     record = GNUNET_CONTAINER_multihashmap_get(forward_list.hashmap, &message_context->key);
1957
1958   if (record == NULL) /* No record of this message! */
1959     {
1960 #if DEBUG_DHT
1961     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1962                 "`%s:%s': Have no record of response key %s uid %llu\n", my_short_id,
1963                 "DHT", GNUNET_h2s (message_context->key), message_context->unique_id);
1964 #endif
1965 #if DEBUG_DHT_ROUTING
1966       if ((debug_routes_extended) && (dhtlog_handle != NULL))
1967         {
1968           dhtlog_handle->insert_route (NULL,
1969                                        message_context->unique_id,
1970                                        DHTLOG_RESULT,
1971                                        message_context->hop_count,
1972                                        GNUNET_SYSERR,
1973                                        &my_identity,
1974                                        &message_context->key,
1975                                        message_context->peer, NULL);
1976         }
1977 #endif
1978       if (message_context->bloom != NULL)
1979         {
1980           GNUNET_CONTAINER_bloomfilter_free(message_context->bloom);
1981           message_context->bloom = NULL;
1982         }
1983       return 0;
1984     }
1985
1986   pos = record->head;
1987   while (pos != NULL)
1988     {
1989 #if STRICT_FORWARDING
1990       if (ntohs(msg->type) == GNUNET_MESSAGE_TYPE_DHT_FIND_PEER_RESULT) /* If we have already forwarded this peer id, don't do it again! */
1991         {
1992           if (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (pos->find_peers_responded, &new_peer.hashPubKey))
1993           {
1994             increment_stats("# find peer responses NOT forwarded (bloom match)");
1995             pos = pos->next;
1996             continue;
1997           }
1998           else
1999             GNUNET_CONTAINER_bloomfilter_add(pos->find_peers_responded, &new_peer.hashPubKey);
2000         }
2001 #endif
2002
2003       if (0 == memcmp(&pos->source, &my_identity, sizeof(struct GNUNET_PeerIdentity))) /* Local client (or DHT) initiated request! */
2004         {
2005 #if DEBUG_DHT
2006           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2007                       "`%s:%s': Sending response key %s uid %llu to client\n", my_short_id,
2008                       "DHT", GNUNET_h2s (message_context->key), message_context->unique_id);
2009 #endif
2010 #if DEBUG_DHT_ROUTING
2011           if ((debug_routes_extended) && (dhtlog_handle != NULL))
2012             {
2013               dhtlog_handle->insert_route (NULL, message_context->unique_id, DHTLOG_RESULT,
2014                                            message_context->hop_count,
2015                                            GNUNET_YES, &my_identity, &message_context->key,
2016                                            message_context->peer, NULL);
2017             }
2018 #endif
2019           increment_stats(STAT_RESULTS_TO_CLIENT);
2020           if (ntohs(msg->type) == GNUNET_MESSAGE_TYPE_DHT_GET_RESULT)
2021             increment_stats(STAT_GET_REPLY);
2022
2023           send_reply_to_client(pos->client, msg, message_context->unique_id);
2024         }
2025       else /* Send to peer */
2026         {
2027           peer_info = find_peer_by_id(&pos->source);
2028           if (peer_info == NULL) /* Didn't find the peer in our routing table, perhaps peer disconnected! */
2029             {
2030               pos = pos->next;
2031               continue;
2032             }
2033
2034           if (message_context->bloom == NULL)
2035             message_context->bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K);
2036           GNUNET_CONTAINER_bloomfilter_add (message_context->bloom, &my_identity.hashPubKey);
2037           if ((GNUNET_NO == GNUNET_CONTAINER_bloomfilter_test (message_context->bloom, &peer_info->id.hashPubKey)))
2038             {
2039 #if DEBUG_DHT
2040               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2041                           "`%s:%s': Forwarding response key %s uid %llu to peer %s\n", my_short_id,
2042                           "DHT", GNUNET_h2s (message_context->key), message_context->unique_id, GNUNET_i2s(&peer_info->id));
2043 #endif
2044 #if DEBUG_DHT_ROUTING
2045               if ((debug_routes_extended) && (dhtlog_handle != NULL))
2046                 {
2047                   dhtlog_handle->insert_route (NULL, message_context->unique_id,
2048                                                DHTLOG_RESULT,
2049                                                message_context->hop_count,
2050                                                GNUNET_NO, &my_identity, &message_context->key,
2051                                                message_context->peer, &pos->source);
2052                 }
2053 #endif
2054               forward_result_message(cls, msg, peer_info, message_context);
2055             }
2056           else
2057             {
2058 #if DEBUG_DHT
2059               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2060                           "`%s:%s': NOT Forwarding response (bloom match) key %s uid %llu to peer %s\n", my_short_id,
2061                           "DHT", GNUNET_h2s (message_context->key), message_context->unique_id, GNUNET_i2s(&peer_info->id));
2062 #endif
2063             }
2064         }
2065       pos = pos->next;
2066     }
2067   if (message_context->bloom != NULL)
2068     GNUNET_CONTAINER_bloomfilter_free(message_context->bloom);
2069   return 0;
2070 }
2071
2072 /**
2073  * Iterator for local get request results,
2074  *
2075  * @param cls closure for iterator, a DatacacheGetContext
2076  * @param exp when does this value expire?
2077  * @param key the key this data is stored under
2078  * @param size the size of the data identified by key
2079  * @param data the actual data
2080  * @param type the type of the data
2081  *
2082  * @return GNUNET_OK to continue iteration, anything else
2083  * to stop iteration.
2084  */
2085 static int
2086 datacache_get_iterator (void *cls,
2087                         struct GNUNET_TIME_Absolute exp,
2088                         const GNUNET_HashCode * key,
2089                         uint32_t size, const char *data, uint32_t type)
2090 {
2091   struct DHT_MessageContext *msg_ctx = cls;
2092   struct DHT_MessageContext *new_msg_ctx;
2093   struct GNUNET_DHT_GetResultMessage *get_result;
2094 #if DEBUG_DHT
2095   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2096               "`%s:%s': Received `%s' response from datacache\n", my_short_id, "DHT", "GET");
2097 #endif
2098   new_msg_ctx = GNUNET_malloc(sizeof(struct DHT_MessageContext));
2099   memcpy(new_msg_ctx, msg_ctx, sizeof(struct DHT_MessageContext));
2100   get_result =
2101     GNUNET_malloc (sizeof (struct GNUNET_DHT_GetResultMessage) + size);
2102   get_result->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_GET_RESULT);
2103   get_result->header.size =
2104     htons (sizeof (struct GNUNET_DHT_GetResultMessage) + size);
2105   get_result->expiration = GNUNET_TIME_absolute_hton(exp);
2106   get_result->type = htons (type);
2107   memcpy (&get_result[1], data, size);
2108   new_msg_ctx->peer = &my_identity;
2109   new_msg_ctx->bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K);
2110   new_msg_ctx->hop_count = 0;
2111   new_msg_ctx->importance = DHT_DEFAULT_P2P_IMPORTANCE * 2; /* Make result routing a higher priority */
2112   new_msg_ctx->timeout = DHT_DEFAULT_P2P_TIMEOUT;
2113   increment_stats(STAT_GET_RESPONSE_START);
2114   route_result_message(cls, &get_result->header, new_msg_ctx);
2115   GNUNET_free(new_msg_ctx);
2116   //send_reply_to_client (datacache_get_ctx->client, &get_result->header,
2117   //                      datacache_get_ctx->unique_id);
2118   GNUNET_free (get_result);
2119   return GNUNET_OK;
2120 }
2121
2122
2123 /**
2124  * Server handler for all dht get requests, look for data,
2125  * if found, send response either to clients or other peers.
2126  *
2127  * @param cls closure for service
2128  * @param msg the actual get message
2129  * @param message_context struct containing pertinent information about the get request
2130  *
2131  * @return number of items found for GET request
2132  */
2133 static unsigned int
2134 handle_dht_get (void *cls, 
2135                 const struct GNUNET_MessageHeader *msg,
2136                 struct DHT_MessageContext *message_context)
2137 {
2138   const struct GNUNET_DHT_GetMessage *get_msg;
2139   uint16_t get_type;
2140   unsigned int results;
2141
2142   get_msg = (const struct GNUNET_DHT_GetMessage *) msg;
2143   if (ntohs (get_msg->header.size) != sizeof (struct GNUNET_DHT_GetMessage))
2144     {
2145       GNUNET_break (0);
2146       return 0;
2147     }
2148
2149   get_type = ntohs (get_msg->type);
2150 #if DEBUG_DHT
2151   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2152               "`%s:%s': Received `%s' request, message type %u, key %s, uid %llu\n", my_short_id,
2153               "DHT", "GET", get_type, GNUNET_h2s (message_context->key),
2154               message_context->unique_id);
2155 #endif
2156   increment_stats(STAT_GETS);
2157   results = 0;
2158   if (get_type == DHT_MALICIOUS_MESSAGE_TYPE)
2159     return results;
2160
2161   if (datacache != NULL)
2162     results =
2163       GNUNET_DATACACHE_get (datacache, &message_context->key, get_type,
2164                             &datacache_get_iterator, message_context);
2165
2166   if (results >= 1)
2167     {
2168 #if DEBUG_DHT
2169       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2170                   "`%s:%s': Found %d results for `%s' request uid %llu\n", my_short_id, "DHT",
2171                   results, "GET", message_context->unique_id);
2172 #endif
2173 #if DEBUG_DHT_ROUTING
2174       if ((debug_routes) && (dhtlog_handle != NULL))
2175         {
2176           dhtlog_handle->insert_query (NULL, message_context->unique_id, DHTLOG_GET,
2177                                 message_context->hop_count, GNUNET_YES, &my_identity,
2178                                 &message_context->key);
2179         }
2180
2181       if ((debug_routes_extended) && (dhtlog_handle != NULL))
2182         {
2183           dhtlog_handle->insert_route (NULL, message_context->unique_id, DHTLOG_ROUTE,
2184                                        message_context->hop_count, GNUNET_YES,
2185                                        &my_identity, &message_context->key, message_context->peer,
2186                                        NULL);
2187         }
2188 #endif
2189     }
2190
2191   if (message_context->hop_count == 0) /* Locally initiated request */
2192     {
2193 #if DEBUG_DHT_ROUTING
2194     if ((debug_routes) && (dhtlog_handle != NULL))
2195       {
2196         dhtlog_handle->insert_query (NULL, message_context->unique_id, DHTLOG_GET,
2197                                       message_context->hop_count, GNUNET_NO, &my_identity,
2198                                       &message_context->key);
2199       }
2200 #endif
2201     }
2202
2203   return results;
2204 }
2205
2206 static void
2207 remove_recent_find_peer(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2208 {
2209   GNUNET_HashCode *key = cls;
2210   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_remove(recent_find_peer_requests, key, key))
2211     {
2212       GNUNET_free(key);
2213     }
2214 }
2215
2216 /**
2217  * Server handler for initiating local dht find peer requests
2218  *
2219  * @param cls closure for service
2220  * @param find_msg the actual find peer message
2221  * @param message_context struct containing pertinent information about the request
2222  *
2223  */
2224 static void
2225 handle_dht_find_peer (void *cls,
2226                       const struct GNUNET_MessageHeader *find_msg,
2227                       struct DHT_MessageContext *message_context)
2228 {
2229   struct GNUNET_MessageHeader *find_peer_result;
2230   struct GNUNET_DHT_FindPeerMessage *find_peer_message;
2231   struct DHT_MessageContext *new_msg_ctx;
2232   struct GNUNET_CONTAINER_BloomFilter *incoming_bloom;
2233   size_t hello_size;
2234   size_t tsize;
2235   GNUNET_HashCode *recent_hash;
2236   struct GNUNET_MessageHeader *other_hello;
2237   size_t other_hello_size;
2238   struct GNUNET_PeerIdentity peer_id;
2239
2240   find_peer_message = (struct GNUNET_DHT_FindPeerMessage *)find_msg;
2241   GNUNET_break_op(ntohs(find_msg->size) >= (sizeof(struct GNUNET_DHT_FindPeerMessage)));
2242   if (ntohs(find_msg->size) < sizeof(struct GNUNET_DHT_FindPeerMessage))
2243     return;
2244   other_hello = NULL;
2245   other_hello_size = 0;
2246   if (ntohs(find_msg->size) > sizeof(struct GNUNET_DHT_FindPeerMessage))
2247     {
2248       other_hello_size = ntohs(find_msg->size) - sizeof(struct GNUNET_DHT_FindPeerMessage);
2249       other_hello = GNUNET_malloc(other_hello_size);
2250       memcpy(other_hello, &find_peer_message[1], other_hello_size);
2251       if ((GNUNET_HELLO_size((struct GNUNET_HELLO_Message *)other_hello) == 0) || (GNUNET_OK != GNUNET_HELLO_get_id((struct GNUNET_HELLO_Message *)other_hello, &peer_id)))
2252         {
2253           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Received invalid HELLO message in find peer request!\n");
2254           GNUNET_free(other_hello);
2255           return;
2256         }
2257 #if FIND_PEER_WITH_HELLO
2258
2259       if (GNUNET_YES == consider_peer(&peer_id))
2260         {
2261           increment_stats(STAT_HELLOS_PROVIDED);
2262           GNUNET_TRANSPORT_offer_hello(transport_handle, other_hello);
2263           GNUNET_CORE_peer_request_connect(sched, cfg, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 5), &peer_id, NULL, NULL);
2264           return;
2265         }
2266       else /* We don't want this peer! */ /* Alternatively, just continue normally */
2267         return;
2268 #endif
2269     }
2270
2271
2272
2273 #if DEBUG_DHT
2274   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2275               "`%s:%s': Received `%s' request from client, key %s (msg size %d, we expected %d)\n",
2276               my_short_id, "DHT", "FIND PEER", GNUNET_h2s (message_context->key),
2277               ntohs (find_msg->size),
2278               sizeof (struct GNUNET_MessageHeader));
2279 #endif
2280   if (my_hello == NULL)
2281   {
2282 #if DEBUG_DHT
2283     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2284                 "`%s': Our HELLO is null, can't return.\n",
2285                 "DHT");
2286 #endif
2287     GNUNET_free_non_null(other_hello);
2288     return;
2289   }
2290
2291   incoming_bloom = GNUNET_CONTAINER_bloomfilter_init(find_peer_message->bloomfilter, DHT_BLOOM_SIZE, DHT_BLOOM_K);
2292   if (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test(incoming_bloom, &my_identity.hashPubKey))
2293     {
2294       increment_stats(STAT_BLOOM_FIND_PEER);
2295       GNUNET_CONTAINER_bloomfilter_free(incoming_bloom);
2296       GNUNET_free_non_null(other_hello);
2297       return; /* We match the bloomfilter, do not send a response to this peer (they likely already know us!)*/
2298     }
2299   GNUNET_CONTAINER_bloomfilter_free(incoming_bloom);
2300
2301 #if RESTRICT_FIND_PEER
2302
2303   /**
2304    * Ignore any find peer requests from a peer we have seen very recently.
2305    */
2306   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains(recent_find_peer_requests, &message_context->key)) /* We have recently responded to a find peer request for this peer! */
2307   {
2308     increment_stats("# dht find peer requests ignored (recently seen!)");
2309     GNUNET_free_non_null(other_hello);
2310     return;
2311   }
2312
2313   /**
2314    * Use this check to only allow the peer to respond to find peer requests if
2315    * it would be beneficial to have the requesting peer in this peers routing
2316    * table.  Can be used to thwart peers flooding the network with find peer
2317    * requests that we don't care about.  However, if a new peer is joining
2318    * the network and has no other peers this is a problem (assume all buckets
2319    * full, no one will respond!).
2320    */
2321   memcpy(&peer_id.hashPubKey, &message_context->key, sizeof(GNUNET_HashCode));
2322   if (GNUNET_NO == consider_peer(&peer_id))
2323     {
2324       increment_stats("# dht find peer requests ignored (do not need!)");
2325       GNUNET_free_non_null(other_hello);
2326       return;
2327     }
2328 #endif
2329
2330   recent_hash = GNUNET_malloc(sizeof(GNUNET_HashCode));
2331   memcpy(recent_hash, &message_context->key, sizeof(GNUNET_HashCode));
2332   GNUNET_CONTAINER_multihashmap_put (recent_find_peer_requests, &message_context->key, NULL, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2333   GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30), &remove_recent_find_peer, &recent_hash);
2334
2335   /* Simplistic find_peer functionality, always return our hello */
2336   hello_size = ntohs(my_hello->size);
2337   tsize = hello_size + sizeof (struct GNUNET_MessageHeader);
2338
2339   if (tsize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
2340     {
2341       GNUNET_break_op (0);
2342       GNUNET_free_non_null(other_hello);
2343       return;
2344     }
2345
2346   find_peer_result = GNUNET_malloc (tsize);
2347   find_peer_result->type = htons (GNUNET_MESSAGE_TYPE_DHT_FIND_PEER_RESULT);
2348   find_peer_result->size = htons (tsize);
2349   memcpy (&find_peer_result[1], my_hello, hello_size);
2350
2351   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2352               "`%s': Sending hello size %d to requesting peer.\n",
2353               "DHT", hello_size);
2354
2355   new_msg_ctx = GNUNET_malloc(sizeof(struct DHT_MessageContext));
2356   memcpy(new_msg_ctx, message_context, sizeof(struct DHT_MessageContext));
2357   new_msg_ctx->peer = &my_identity;
2358   new_msg_ctx->bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K);
2359   new_msg_ctx->hop_count = 0;
2360   new_msg_ctx->importance = DHT_DEFAULT_P2P_IMPORTANCE * 2; /* Make find peer requests a higher priority */
2361   new_msg_ctx->timeout = DHT_DEFAULT_P2P_TIMEOUT;
2362   increment_stats(STAT_FIND_PEER_ANSWER);
2363   route_result_message(cls, find_peer_result, new_msg_ctx);
2364   GNUNET_free(new_msg_ctx);
2365 #if DEBUG_DHT_ROUTING
2366   if ((debug_routes) && (dhtlog_handle != NULL))
2367     {
2368       dhtlog_handle->insert_query (NULL, message_context->unique_id, DHTLOG_FIND_PEER,
2369                                    message_context->hop_count, GNUNET_YES, &my_identity,
2370                                    &message_context->key);
2371     }
2372 #endif
2373   GNUNET_free_non_null(other_hello);
2374   GNUNET_free(find_peer_result);
2375 }
2376
2377 /**
2378  * Task used to republish data.
2379  * Forward declaration; function call loop.
2380  *
2381  * @param cls closure (a struct RepublishContext)
2382  * @param tc runtime context for this task
2383  */
2384 static void
2385 republish_content(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
2386
2387 /**
2388  * Server handler for initiating local dht put requests
2389  *
2390  * @param cls closure for service
2391  * @param msg the actual put message
2392  * @param message_context struct containing pertinent information about the request
2393  */
2394 static void
2395 handle_dht_put (void *cls,
2396                 const struct GNUNET_MessageHeader *msg,
2397                 struct DHT_MessageContext *message_context)
2398 {
2399   struct GNUNET_DHT_PutMessage *put_msg;
2400   size_t put_type;
2401   size_t data_size;
2402   int ret;
2403   struct RepublishContext *put_context;
2404
2405   GNUNET_assert (ntohs (msg->size) >=
2406                  sizeof (struct GNUNET_DHT_PutMessage));
2407
2408
2409   put_msg = (struct GNUNET_DHT_PutMessage *)msg;
2410   put_type = ntohs (put_msg->type);
2411
2412   if (put_type == DHT_MALICIOUS_MESSAGE_TYPE)
2413     return;
2414
2415   data_size = ntohs (put_msg->header.size) - sizeof (struct GNUNET_DHT_PutMessage);
2416 #if DEBUG_DHT
2417   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2418               "`%s:%s': Received `%s' request (inserting data!), message type %d, key %s, uid %llu\n",
2419               my_short_id, "DHT", "PUT", put_type, GNUNET_h2s (message_context->key), message_context->unique_id);
2420 #endif
2421 #if DEBUG_DHT_ROUTING
2422   if (message_context->hop_count == 0) /* Locally initiated request */
2423     {
2424       if ((debug_routes) && (dhtlog_handle != NULL))
2425         {
2426           dhtlog_handle->insert_query (NULL, message_context->unique_id, DHTLOG_PUT,
2427                                        message_context->hop_count, GNUNET_NO, &my_identity,
2428                                        &message_context->key);
2429         }
2430     }
2431 #endif
2432
2433   if (message_context->closest != GNUNET_YES)
2434     return;
2435
2436 #if DEBUG_DHT_ROUTING
2437   if ((debug_routes_extended) && (dhtlog_handle != NULL))
2438     {
2439       dhtlog_handle->insert_route (NULL, message_context->unique_id, DHTLOG_ROUTE,
2440                                    message_context->hop_count, GNUNET_YES,
2441                                    &my_identity, &message_context->key, message_context->peer,
2442                                    NULL);
2443     }
2444
2445   if ((debug_routes) && (dhtlog_handle != NULL))
2446     {
2447       dhtlog_handle->insert_query (NULL, message_context->unique_id, DHTLOG_PUT,
2448                                    message_context->hop_count, GNUNET_YES, &my_identity,
2449                                    &message_context->key);
2450     }
2451 #endif
2452
2453   increment_stats(STAT_PUTS_INSERTED);
2454   if (datacache != NULL)
2455     {
2456       ret = GNUNET_DATACACHE_put (datacache, &message_context->key, data_size,
2457                                   (char *) &put_msg[1], put_type,
2458                                   GNUNET_TIME_absolute_ntoh(put_msg->expiration));
2459
2460       if ((ret == GNUNET_YES) && (do_republish == GNUNET_YES))
2461         {
2462           put_context = GNUNET_malloc(sizeof(struct RepublishContext));
2463           memcpy(&put_context->key, &message_context->key, sizeof(GNUNET_HashCode));
2464           put_context->type = put_type;
2465           GNUNET_SCHEDULER_add_delayed (sched, dht_republish_frequency, &republish_content, put_context);
2466         }
2467     }
2468   else
2469     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2470                 "`%s:%s': %s request received, but have no datacache!\n",
2471                 my_short_id, "DHT", "PUT");
2472 }
2473
2474 /**
2475  * Estimate the diameter of the network based
2476  * on how many buckets are currently in use.
2477  * Concept here is that the diameter of the network
2478  * is roughly the distance a message must travel in
2479  * order to reach its intended destination.  Since
2480  * at each hop we expect to get one bit closer, and
2481  * we have one bit per bucket, the number of buckets
2482  * in use should be the largest number of hops for
2483  * a sucessful message. (of course, this assumes we
2484  * know all peers in the network!)
2485  *
2486  * @return ballpark diameter figure
2487  */
2488 static unsigned int estimate_diameter()
2489 {
2490   return MAX_BUCKETS - lowest_bucket;
2491 }
2492
2493 /**
2494  * To how many peers should we (on average)
2495  * forward the request to obtain the desired
2496  * target_replication count (on average).
2497  *
2498  * Always 0, 1 or 2 (don't send, send once, split)
2499  */
2500 static unsigned int
2501 get_forward_count (unsigned int hop_count, size_t target_replication)
2502 {
2503 #if DOUBLE
2504   double target_count;
2505   double random_probability;
2506 #else
2507   uint32_t random_value;
2508 #endif
2509   unsigned int target_value;
2510   unsigned int diameter;
2511
2512   /**
2513    * If we are behaving in strict kademlia mode, send multiple initial requests,
2514    * but then only send to 1 or 0 peers based strictly on the number of hops.
2515    */
2516   if (strict_kademlia == GNUNET_YES)
2517     {
2518       if (hop_count == 0)
2519         return DHT_KADEMLIA_REPLICATION;
2520       else if (hop_count < max_hops)
2521         return 1;
2522       else
2523         return 0;
2524     }
2525
2526   /* FIXME: the smaller we think the network is the more lenient we should be for
2527    * routing right?  The estimation below only works if we think we have reasonably
2528    * full routing tables, which for our RR topologies may not be the case!
2529    */
2530   diameter = estimate_diameter ();
2531   if ((hop_count > (diameter + 1) * 2) && (MINIMUM_PEER_THRESHOLD < estimate_diameter() * bucket_size))
2532     {
2533 #if DEBUG_DHT
2534       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2535                   "`%s:%s': Hop count too high (est %d, lowest %d), NOT Forwarding request\n", my_short_id,
2536                   "DHT", estimate_diameter(), lowest_bucket);
2537 #endif
2538       return 0;
2539     }
2540   else if (hop_count > max_hops)
2541     {
2542 #if DEBUG_DHT
2543       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2544                   "`%s:%s': Hop count too high (greater than max)\n", my_short_id,
2545                   "DHT");
2546 #endif
2547       return 0;
2548     }
2549
2550 #if DOUBLE
2551   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Replication %d, hop_count %u, diameter %u\n", target_replication, hop_count, diameter);
2552   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Numerator %f, denominator %f\n", (double)target_replication, ((double)target_replication * (hop_count + 1) + diameter));
2553   target_count = /* target_count is ALWAYS < 1 unless replication is < 1 */
2554     (double)target_replication / ((double)target_replication * (hop_count + 1) + diameter);
2555   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Target count is %f\n", target_count);
2556   random_probability = ((double)GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
2557       RAND_MAX)) / RAND_MAX;
2558   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Random is %f\n", random_probability);
2559
2560   target_value = 0;
2561   //while (target_value < target_count)
2562   if (target_value < target_count)
2563     target_value++; /* target_value is ALWAYS 1 after this "loop", right?  Because target_count is always > 0, right?  Or does it become 0.00000... at some point because the hop count is so high? */
2564
2565
2566   //if ((target_count + 1 - (double)target_value) > random_probability)
2567   if ((target_count) > random_probability)
2568     target_value++;
2569 #endif
2570
2571   random_value = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_STRONG, target_replication * (hop_count + 1) + diameter) + 1;
2572   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "replication %u, at hop %d, will split with probability %f\n", target_replication, hop_count, target_replication / (double)((target_replication * (hop_count + 1) + diameter) + 1));
2573   target_value = 1;
2574   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "random %u, target %u, max %u\n", random_value, target_replication, target_replication * (hop_count + 1) + diameter);
2575   if (random_value < target_replication)
2576     target_value++;
2577
2578   return target_value;
2579 }
2580
2581 /*
2582  * Check whether my identity is closer than any known peers.
2583  * If a non-null bloomfilter is given, check if this is the closest
2584  * peer that hasn't already been routed to.
2585  *
2586  * @param target hash code to check closeness to
2587  * @param bloom bloomfilter, exclude these entries from the decision
2588  *
2589  * Return GNUNET_YES if node location is closest, GNUNET_NO
2590  * otherwise.
2591  */
2592 int
2593 am_closest_peer (const GNUNET_HashCode * target, struct GNUNET_CONTAINER_BloomFilter *bloom)
2594 {
2595   int bits;
2596   int other_bits;
2597   int bucket_num;
2598   int count;
2599   struct PeerInfo *pos;
2600   unsigned int my_distance;
2601
2602   bucket_num = find_current_bucket(target);
2603   if (bucket_num == GNUNET_SYSERR) /* Same key! */
2604     return GNUNET_YES;
2605
2606   bits = GNUNET_CRYPTO_hash_matching_bits(&my_identity.hashPubKey, target);
2607   my_distance = distance(&my_identity.hashPubKey, target);
2608   pos = k_buckets[bucket_num].head;
2609   count = 0;
2610   while ((pos != NULL) && (count < bucket_size))
2611     {
2612       if ((bloom != NULL) && (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test(bloom, &pos->id.hashPubKey)))
2613         {
2614           pos = pos->next;
2615           continue; /* Skip already checked entries */
2616         }
2617
2618       other_bits = GNUNET_CRYPTO_hash_matching_bits(&pos->id.hashPubKey, target);
2619       if (other_bits > bits)
2620         return GNUNET_NO;
2621       else if (other_bits == bits) /* We match the same number of bits, do distance comparison */
2622         {
2623           if (strict_kademlia != GNUNET_YES) /* Return that we at as close as any other peer */
2624             return GNUNET_YES;
2625           else if (distance(&pos->id.hashPubKey, target) < my_distance) /* Check all known peers, only return if we are the true closest */
2626             return GNUNET_NO;
2627         }
2628       pos = pos->next;
2629     }
2630
2631 #if DEBUG_TABLE
2632   GNUNET_GE_LOG (coreAPI->ectx,
2633                  GNUNET_GE_WARNING | GNUNET_GE_ADMIN | GNUNET_GE_USER |
2634                  GNUNET_GE_BULK, "closest peer\n");
2635   printPeerBits (&closest);
2636   GNUNET_GE_LOG (coreAPI->ectx,
2637                  GNUNET_GE_WARNING | GNUNET_GE_ADMIN | GNUNET_GE_USER |
2638                  GNUNET_GE_BULK, "me\n");
2639   printPeerBits (coreAPI->my_identity);
2640   GNUNET_GE_LOG (coreAPI->ectx,
2641                  GNUNET_GE_WARNING | GNUNET_GE_ADMIN | GNUNET_GE_USER |
2642                  GNUNET_GE_BULK, "key\n");
2643   printKeyBits (target);
2644   GNUNET_GE_LOG (coreAPI->ectx,
2645                  GNUNET_GE_WARNING | GNUNET_GE_ADMIN | GNUNET_GE_USER |
2646                  GNUNET_GE_BULK,
2647                  "closest peer inverse distance is %u, mine is %u\n",
2648                  inverse_distance (target, &closest.hashPubKey),
2649                  inverse_distance (target,
2650                                    &coreAPI->my_identity->hashPubKey));
2651 #endif
2652
2653   /* No peers closer, we are the closest! */
2654   return GNUNET_YES;
2655
2656 }
2657
2658 /**
2659  * Decide whether to route this request exclusively
2660  * to a closer peer (if closer peers exist) or to choose
2661  * from the whole set of peers.
2662  *
2663  * @param target the key of the request
2664  * @param bloom bloomfilter of peers this request has already traversed
2665  * @param hops number of hops this message has already traveled
2666  *
2667  * @return GNUNET_YES if we should try to route to a closer peer
2668  *         than ourselves (and one exists), GNUNET_NO if we should
2669  *         choose from the set of all known peers
2670  *
2671  */
2672 int
2673 route_closer (const GNUNET_HashCode *target,
2674               struct GNUNET_CONTAINER_BloomFilter *bloom,
2675               unsigned int hops)
2676 {
2677   unsigned int my_matching_bits;
2678   unsigned int bc;
2679   uint32_t random_value;
2680   struct PeerInfo *pos;
2681   int have_closer;
2682   int count;
2683   int curr_max_hops;
2684   double calc_value;
2685   my_matching_bits = GNUNET_CRYPTO_hash_matching_bits(target, &my_identity.hashPubKey);
2686
2687   if (GNUNET_YES == use_max_hops)
2688     curr_max_hops = max_hops;
2689   else
2690     curr_max_hops = max_hops; /* FIXME: replace with heuristic! */
2691   /**
2692    * First check if we know any close (as close as us or closer) peers.
2693    */
2694   have_closer = GNUNET_NO;
2695   count = 0;
2696   for (bc = lowest_bucket; bc < MAX_BUCKETS; bc++)
2697     {
2698       pos = k_buckets[bc].head;
2699       count = 0;
2700       while ((pos != NULL) && (count < bucket_size))
2701         {
2702           if ((GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey) > my_matching_bits) &&
2703               (GNUNET_NO == GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)))
2704             {
2705               have_closer = GNUNET_YES;
2706               break;
2707             }
2708           pos = pos->next;
2709           count++;
2710         }
2711       if (have_closer == GNUNET_YES)
2712         break;
2713     }
2714
2715   if (have_closer == GNUNET_NO) /* We don't have a same distance or closer node, can't enforce closer only! */
2716     return GNUNET_NO;
2717
2718   switch (converge_option)
2719     {
2720       case DHT_CONVERGE_LINEAR:
2721         /**
2722          * Simple linear curve for choosing whether or not to converge.
2723          * Choose to route only closer with probability hops/MAX_HOPS.
2724          */
2725         random_value = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, curr_max_hops);
2726         if (random_value < hops)
2727           return GNUNET_YES;
2728         else
2729           return GNUNET_NO;
2730       case DHT_CONVERGE_SQUARE:
2731         /**
2732          * Simple square based curve.
2733          */
2734         if ((GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, (uint32_t)-1) / (double)(uint32_t)-1) < (sqrt(hops) / sqrt(curr_max_hops)))
2735           return GNUNET_YES;
2736         else
2737           return GNUNET_NO;
2738       case DHT_CONVERGE_EXPONENTIAL:
2739         /**
2740          * Simple exponential curve.
2741          */
2742         if (converge_modifier > 0)
2743           calc_value = ((converge_modifier * (hops * hops)) / (curr_max_hops * curr_max_hops)) / curr_max_hops;
2744         else
2745           calc_value = ((hops * hops) / (curr_max_hops * curr_max_hops)) / curr_max_hops;
2746
2747         if ((GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, (uint32_t)-1) / (double)(uint32_t)-1) < calc_value)
2748           return GNUNET_YES;
2749         else
2750           return GNUNET_NO;
2751       default:
2752         return GNUNET_NO;
2753
2754     }
2755 }
2756
2757 /**
2758  * Select a peer from the routing table that would be a good routing
2759  * destination for sending a message for "target".  The resulting peer
2760  * must not be in the set of blocked peers.<p>
2761  *
2762  * Note that we should not ALWAYS select the closest peer to the
2763  * target, peers further away from the target should be chosen with
2764  * exponentially declining probability.
2765  *
2766  * @param target the key we are selecting a peer to route to
2767  * @param bloom a bloomfilter containing entries this request has seen already
2768  * @param hops the number of hops this message has already traversed
2769  *
2770  * @return Peer to route to, or NULL on error
2771  */
2772 static struct PeerInfo *
2773 select_peer (const GNUNET_HashCode * target,
2774              struct GNUNET_CONTAINER_BloomFilter *bloom,
2775              unsigned int hops)
2776 {
2777   unsigned int distance;
2778   unsigned int bc;
2779   unsigned int count;
2780   unsigned int my_matching_bits;
2781   unsigned long long largest_distance;
2782   unsigned long long total_real_distance;
2783   unsigned long long real_selected;
2784   unsigned int total_distance;
2785   unsigned int selected;
2786   unsigned int match_num;
2787   int only_closer;
2788   struct PeerInfo *pos;
2789   struct PeerInfo *chosen;
2790   char *temp_stat;
2791 #if DEBUG_DHT_ROUTING > 1
2792   double sum;
2793 #endif
2794
2795   my_matching_bits = GNUNET_CRYPTO_hash_matching_bits(target, &my_identity.hashPubKey);
2796   only_closer = route_closer(target, bloom, hops);
2797
2798   if (GNUNET_YES == only_closer)
2799     {
2800       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "only routing to closer peers!\n");
2801       GNUNET_asprintf(&temp_stat, "# closer only routes at hop %u", hops);
2802       increment_stats(temp_stat);
2803     }
2804   else
2805     {
2806       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "routing to all possible peers!\n");
2807       GNUNET_asprintf(&temp_stat, "# NOT closer only routes at hop %u", hops);
2808       increment_stats(temp_stat);
2809     }
2810
2811   GNUNET_free(temp_stat);
2812   total_real_distance = 0;
2813   if (strict_kademlia == GNUNET_YES)
2814     {
2815       largest_distance = 0;
2816       chosen = NULL;
2817       for (bc = lowest_bucket; bc < MAX_BUCKETS; bc++)
2818         {
2819           pos = k_buckets[bc].head;
2820           count = 0;
2821           while ((pos != NULL) && (count < bucket_size))
2822             {
2823               /* If we are doing strict Kademlia routing, then checking the bloomfilter is basically cheating! */
2824               if (GNUNET_NO == GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey))
2825                 {
2826                   distance = inverse_distance (target, &pos->id.hashPubKey);
2827                   if (distance > largest_distance)
2828                     {
2829                       chosen = pos;
2830                       largest_distance = distance;
2831                     }
2832                 }
2833               count++;
2834               pos = pos->next;
2835             }
2836         }
2837
2838       if ((largest_distance > 0) && (chosen != NULL))
2839         {
2840           GNUNET_CONTAINER_bloomfilter_add(bloom, &chosen->id.hashPubKey);
2841           return chosen;
2842         }
2843       else
2844         {
2845           return NULL;
2846         }
2847     }
2848   else
2849     {
2850       /* GNUnet-style */
2851       total_distance = 0;
2852       for (bc = lowest_bucket; bc < MAX_BUCKETS; bc++)
2853         {
2854           pos = k_buckets[bc].head;
2855           count = 0;
2856           while ((pos != NULL) && (count < bucket_size))
2857             {
2858               if ((GNUNET_NO == GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)) &&
2859                   ((only_closer == GNUNET_NO) || (GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey) >= my_matching_bits)))
2860                 {
2861                   if (GNUNET_YES == use_real_distance)
2862                     total_real_distance += (unsigned long long)inverse_distance (target, &pos->id.hashPubKey);
2863                   else
2864                     {
2865                       /* Always add 1, in case 0 bits match! */
2866                       match_num = 1 + (GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey) * GNUNET_CRYPTO_hash_matching_bits(target ,&pos->id.hashPubKey));
2867                       total_distance += match_num;
2868                     }
2869                 }
2870   #if DEBUG_DHT > 1
2871               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2872                           "`%s:%s': Total distance is %llu, distance from %s to %s is %u\n",
2873                           my_short_id, "DHT", total_distance, GNUNET_i2s(&pos->id), GNUNET_h2s(target) , inverse_distance(target, &pos->id.hashPubKey));
2874   #endif
2875               pos = pos->next;
2876               count++;
2877             }
2878         }
2879
2880       if (((GNUNET_YES == use_real_distance) && (total_real_distance == 0)) || (total_distance == 0))
2881         {
2882           increment_stats("# select_peer, total_distance == 0");
2883           return NULL;
2884         }
2885
2886 #if DEBUG_DHT_ROUTING > 1
2887       sum = 0.0;
2888       for (bc = lowest_bucket; bc < MAX_BUCKETS; bc++)
2889         {
2890           pos = k_buckets[bc].head;
2891           count = 0;
2892           while ((pos != NULL) && (count < bucket_size))
2893             {
2894               if ((GNUNET_NO == GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)) &&
2895                   ((only_closer == GNUNET_NO) || (GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey) >= my_matching_bits)))
2896                 {
2897                   if (GNUNET_YES == use_real_distance)
2898                     {
2899                       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "REAL: Choose peer with %d matching bits (%.2f percent)\n", GNUNET_CRYPTO_hash_matching_bits(&pos->id.hashPubKey, target),  (inverse_distance (target, &pos->id.hashPubKey) / (double)total_real_distance) * 100);
2900                       sum += inverse_distance (target, &pos->id.hashPubKey) / (double)total_real_distance;
2901                     }
2902                   else
2903                     {
2904                       match_num = 1 + (GNUNET_CRYPTO_hash_matching_bits(&pos->id.hashPubKey, target) * GNUNET_CRYPTO_hash_matching_bits(&pos->id.hashPubKey, target));
2905                       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Choose peer with %d matching bits (%.2f percent)\n", GNUNET_CRYPTO_hash_matching_bits(&pos->id.hashPubKey, target),  (match_num / (double)total_distance) * 100);
2906                       sum += match_num / (double)total_distance;
2907                     }
2908                 }
2909               pos = pos->next;
2910               count++;
2911             }
2912         }
2913 #endif
2914       real_selected = 0;
2915       selected = 0;
2916       if (use_real_distance)
2917         {
2918           GNUNET_assert(total_real_distance != 0);
2919           real_selected = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, total_real_distance);
2920         }
2921       else
2922         {
2923           GNUNET_assert(total_distance != 0);
2924           selected = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, total_distance);
2925         }
2926
2927       for (bc = lowest_bucket; bc < MAX_BUCKETS; bc++)
2928         {
2929           pos = k_buckets[bc].head;
2930           count = 0;
2931           while ((pos != NULL) && (count < bucket_size))
2932             {
2933               if ((GNUNET_NO == GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)) &&
2934                   ((only_closer == GNUNET_NO) || (GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey) >= my_matching_bits)))
2935                 {
2936                  if (GNUNET_YES == use_real_distance)
2937                    {
2938                     distance = inverse_distance (target, &pos->id.hashPubKey);
2939                     if (distance > real_selected)
2940                       {
2941                         GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "(REAL) Selected peer with %u matching bits to route to\n", GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey));
2942                         return pos;
2943                       }
2944                     real_selected -= distance;
2945                    }
2946                   else
2947                     {
2948                       distance = 1 + (GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey) * GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey));
2949                       if (distance > selected)
2950                         {
2951                           GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Selected peer with %u matching bits to route to\n", GNUNET_CRYPTO_hash_matching_bits(target, &pos->id.hashPubKey));
2952                           return pos;
2953                         }
2954                       selected -= distance;
2955                     }
2956                 }
2957               else
2958                 {
2959   #if DEBUG_DHT
2960                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2961                               "`%s:%s': peer %s matches bloomfilter.\n",
2962                               my_short_id, "DHT", GNUNET_i2s(&pos->id));
2963   #endif
2964                 }
2965               pos = pos->next;
2966               count++;
2967             }
2968         }
2969   #if DEBUG_DHT
2970         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2971                     "`%s:%s': peer %s matches bloomfilter.\n",
2972                     my_short_id, "DHT", GNUNET_i2s(&pos->id));
2973   #endif
2974       increment_stats("# failed to select peer");
2975       GNUNET_assert(only_closer == GNUNET_NO);
2976       return NULL;
2977     }
2978 }
2979
2980 /**
2981  * Task used to remove recent entries, either
2982  * after timeout, when full, or on shutdown.
2983  *
2984  * @param cls the entry to remove
2985  * @param tc context, reason, etc.
2986  */
2987 static void
2988 remove_recent (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2989 {
2990   struct RecentRequest *req = cls;
2991   static GNUNET_HashCode hash;
2992
2993   GNUNET_assert(req != NULL);
2994   hash_from_uid(req->uid, &hash);
2995   GNUNET_assert (GNUNET_YES == GNUNET_CONTAINER_multihashmap_remove(recent.hashmap, &hash, req));
2996   GNUNET_CONTAINER_heap_remove_node(recent.minHeap, req->heap_node);
2997   GNUNET_CONTAINER_bloomfilter_free(req->bloom);
2998   GNUNET_free(req);
2999
3000   if ((tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN) && (0 == GNUNET_CONTAINER_multihashmap_size(recent.hashmap)) && (0 == GNUNET_CONTAINER_heap_get_size(recent.minHeap)))
3001   {
3002     GNUNET_CONTAINER_multihashmap_destroy(recent.hashmap);
3003     GNUNET_CONTAINER_heap_destroy(recent.minHeap);
3004   }
3005 }
3006
3007
3008 /**
3009  * Task used to remove forwarding entries, either
3010  * after timeout, when full, or on shutdown.
3011  *
3012  * @param cls the entry to remove
3013  * @param tc context, reason, etc.
3014  */
3015 static void
3016 remove_forward_entry (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3017 {
3018   struct DHTRouteSource *source_info = cls;
3019   struct DHTQueryRecord *record;
3020   source_info = GNUNET_CONTAINER_heap_remove_node(forward_list.minHeap, source_info->hnode);
3021   record = source_info->record;
3022   GNUNET_CONTAINER_DLL_remove(record->head, record->tail, source_info);
3023
3024   if (record->head == NULL) /* No more entries in DLL */
3025     {
3026       GNUNET_assert(GNUNET_YES == GNUNET_CONTAINER_multihashmap_remove(forward_list.hashmap, &record->key, record));
3027       GNUNET_free(record);
3028     }
3029   if (source_info->find_peers_responded != NULL)
3030     GNUNET_CONTAINER_bloomfilter_free(source_info->find_peers_responded);
3031   GNUNET_free(source_info);
3032 }
3033
3034 /**
3035  * Remember this routing request so that if a reply is
3036  * received we can either forward it to the correct peer
3037  * or return the result locally.
3038  *
3039  * @param cls DHT service closure
3040  * @param msg_ctx Context of the route request
3041  *
3042  * @return GNUNET_YES if this response was cached, GNUNET_NO if not
3043  */
3044 static int cache_response(void *cls, struct DHT_MessageContext *msg_ctx)
3045 {
3046   struct DHTQueryRecord *record;
3047   struct DHTRouteSource *source_info;
3048   struct DHTRouteSource *pos;
3049   struct GNUNET_TIME_Absolute now;
3050   unsigned int current_size;
3051
3052   current_size = GNUNET_CONTAINER_multihashmap_size(forward_list.hashmap);
3053   while (current_size >= MAX_OUTSTANDING_FORWARDS)
3054     {
3055       source_info = GNUNET_CONTAINER_heap_remove_root(forward_list.minHeap);
3056       GNUNET_assert(source_info != NULL);
3057       record = source_info->record;
3058       GNUNET_CONTAINER_DLL_remove(record->head, record->tail, source_info);
3059       if (record->head == NULL) /* No more entries in DLL */
3060         {
3061           GNUNET_assert(GNUNET_YES == GNUNET_CONTAINER_multihashmap_remove(forward_list.hashmap, &record->key, record));
3062           GNUNET_free(record);
3063         }
3064       GNUNET_SCHEDULER_cancel(sched, source_info->delete_task);
3065       if (source_info->find_peers_responded != NULL)
3066         GNUNET_CONTAINER_bloomfilter_free(source_info->find_peers_responded);
3067       GNUNET_free(source_info);
3068       current_size = GNUNET_CONTAINER_multihashmap_size(forward_list.hashmap);
3069     }
3070   now = GNUNET_TIME_absolute_get();
3071   record = GNUNET_CONTAINER_multihashmap_get(forward_list.hashmap, &msg_ctx->key);
3072   if (record != NULL) /* Already know this request! */
3073     {
3074       pos = record->head;
3075       while (pos != NULL)
3076         {
3077           if (0 == memcmp(msg_ctx->peer, &pos->source, sizeof(struct GNUNET_PeerIdentity)))
3078             break; /* Already have this peer in reply list! */
3079           pos = pos->next;
3080         }
3081       if ((pos != NULL) && (pos->client == msg_ctx->client)) /* Seen this already */
3082         {
3083           GNUNET_CONTAINER_heap_update_cost(forward_list.minHeap, pos->hnode, now.value);
3084           return GNUNET_NO;
3085         }
3086     }
3087   else
3088     {
3089       record = GNUNET_malloc(sizeof (struct DHTQueryRecord));
3090       GNUNET_assert(GNUNET_OK == GNUNET_CONTAINER_multihashmap_put(forward_list.hashmap, &msg_ctx->key, record, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
3091       memcpy(&record->key, &msg_ctx->key, sizeof(GNUNET_HashCode));
3092     }
3093
3094   source_info = GNUNET_malloc(sizeof(struct DHTRouteSource));
3095   source_info->record = record;
3096   source_info->delete_task = GNUNET_SCHEDULER_add_delayed(sched, DHT_FORWARD_TIMEOUT, &remove_forward_entry, source_info);
3097   source_info->find_peers_responded = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K);
3098   memcpy(&source_info->source, msg_ctx->peer, sizeof(struct GNUNET_PeerIdentity));
3099   GNUNET_CONTAINER_DLL_insert_after(record->head, record->tail, record->tail, source_info);
3100   if (msg_ctx->client != NULL) /* For local request, set timeout so high it effectively never gets pushed out */
3101     {
3102       source_info->client = msg_ctx->client;
3103       now = GNUNET_TIME_absolute_get_forever();
3104     }
3105   source_info->hnode = GNUNET_CONTAINER_heap_insert(forward_list.minHeap, source_info, now.value);
3106 #if DEBUG_DHT > 1
3107       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3108                   "`%s:%s': Created new forward source info for %s uid %llu\n", my_short_id,
3109                   "DHT", GNUNET_h2s (msg_ctx->key), msg_ctx->unique_id);
3110 #endif
3111   return GNUNET_YES;
3112 }
3113
3114
3115 /**
3116  * Main function that handles whether or not to route a message to other
3117  * peers.
3118  *
3119  * @param cls closure for dht service (NULL)
3120  * @param msg the message to be routed
3121  * @param message_context the context containing all pertinent information about the message
3122  *
3123  * @return the number of peers the message was routed to,
3124  *         GNUNET_SYSERR on failure
3125  */
3126 static int route_message(void *cls,
3127                          const struct GNUNET_MessageHeader *msg,
3128                          struct DHT_MessageContext *message_context)
3129 {
3130   int i;
3131   int global_closest;
3132   struct PeerInfo *selected;
3133 #if DEBUG_DHT_ROUTING > 1
3134   struct PeerInfo *nearest;
3135 #endif
3136   unsigned int forward_count;
3137   struct RecentRequest *recent_req;
3138   GNUNET_HashCode unique_hash;
3139   char *stat_forward_count;
3140 #if DEBUG_DHT_ROUTING
3141   int ret;
3142 #endif
3143
3144   if (malicious_dropper == GNUNET_YES)
3145     {
3146 #if DEBUG_DHT_ROUTING
3147       if ((debug_routes_extended) && (dhtlog_handle != NULL))
3148         {
3149           dhtlog_handle->insert_route (NULL, message_context->unique_id, DHTLOG_ROUTE,
3150                                        message_context->hop_count, GNUNET_SYSERR,
3151                                        &my_identity, &message_context->key, message_context->peer,
3152                                        NULL);
3153         }
3154 #endif
3155       if (message_context->bloom != NULL)
3156         GNUNET_CONTAINER_bloomfilter_free(message_context->bloom);
3157       return 0;
3158     }
3159
3160   increment_stats(STAT_ROUTES);
3161   /* Semantics of this call means we find whether we are the closest peer out of those already
3162    * routed to on this messages path.
3163    */
3164   global_closest = am_closest_peer(&message_context->key, NULL);
3165   message_context->closest = am_closest_peer(&message_context->key, message_context->bloom);
3166   forward_count = get_forward_count(message_context->hop_count, message_context->replication);
3167   GNUNET_asprintf(&stat_forward_count, "# forward counts of %d", forward_count);
3168   increment_stats(stat_forward_count);
3169   GNUNET_free(stat_forward_count);
3170   if (message_context->bloom == NULL)
3171     message_context->bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K);
3172
3173   if ((stop_on_closest == GNUNET_YES) && (global_closest == GNUNET_YES) && (ntohs(msg->type) == GNUNET_MESSAGE_TYPE_DHT_PUT))
3174     forward_count = 0;
3175
3176   /**
3177    * NOTICE:  In Kademlia, a find peer request goes no further if the peer doesn't return
3178    * any closer peers (which is being checked for below).  Since we are doing recursive
3179    * routing we have no choice but to stop forwarding in this case.  This means that at
3180    * any given step the request may NOT be forwarded to alpha peers (because routes will
3181    * stop and the parallel route will not be aware of it).  Of course, assuming that we
3182    * have fulfilled the Kademlia requirements for routing table fullness this will never
3183    * ever ever be a problem.
3184    *
3185    * However, is this fair?
3186    *
3187    * Since we use these requests to build our routing tables (and we build them in the
3188    * testing driver) we will ignore this restriction for FIND_PEER messages so that
3189    * routing tables still get constructed.
3190    */
3191   if ((GNUNET_YES == strict_kademlia) && (global_closest == GNUNET_YES) && (message_context->hop_count > 0) && (ntohs(msg->type) != GNUNET_MESSAGE_TYPE_DHT_FIND_PEER))
3192     forward_count = 0;
3193
3194 #if DEBUG_DHT_ROUTING
3195   if (forward_count == 0)
3196     ret = GNUNET_SYSERR;
3197   else
3198     ret = GNUNET_NO;
3199
3200   if ((debug_routes_extended) && (dhtlog_handle != NULL))
3201     {
3202       dhtlog_handle->insert_route (NULL, message_context->unique_id, DHTLOG_ROUTE,
3203                                    message_context->hop_count, ret,
3204                                    &my_identity, &message_context->key, message_context->peer,
3205                                    NULL);
3206     }
3207 #endif
3208
3209   switch (ntohs(msg->type))
3210     {
3211     case GNUNET_MESSAGE_TYPE_DHT_GET: /* Add to hashmap of requests seen, search for data (always) */
3212       cache_response (cls, message_context);
3213       if ((handle_dht_get (cls, msg, message_context) > 0) && (stop_on_found == GNUNET_YES))
3214         forward_count = 0;
3215       break;
3216     case GNUNET_MESSAGE_TYPE_DHT_PUT: /* Check if closest, if so insert data. FIXME: thresholding to reduce complexity?*/
3217       increment_stats(STAT_PUTS);
3218       message_context->closest = global_closest;
3219       handle_dht_put (cls, msg, message_context);
3220       break;
3221     case GNUNET_MESSAGE_TYPE_DHT_FIND_PEER: /* Check if closest and not started by us, check options, add to requests seen */
3222       increment_stats(STAT_FIND_PEER);
3223       if (((message_context->hop_count > 0) && (0 != memcmp(message_context->peer, &my_identity, sizeof(struct GNUNET_PeerIdentity)))) || (message_context->client != NULL))
3224       {
3225         cache_response (cls, message_context);
3226         if ((message_context->closest == GNUNET_YES) || (message_context->msg_options == GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE))
3227           handle_dht_find_peer (cls, msg, message_context);
3228       }
3229 #if DEBUG_DHT_ROUTING
3230       if (message_context->hop_count == 0) /* Locally initiated request */
3231         {
3232           if ((debug_routes) && (dhtlog_handle != NULL))
3233             {
3234               dhtlog_handle->insert_dhtkey(NULL, &message_context->key);
3235               dhtlog_handle->insert_query (NULL, message_context->unique_id, DHTLOG_FIND_PEER,
3236                                            message_context->hop_count, GNUNET_NO, &my_identity,
3237                                            &message_context->key);
3238             }
3239         }
3240 #endif
3241       break;
3242     default:
3243       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3244                   "`%s': Message type (%d) not handled\n", "DHT", ntohs(msg->type));
3245     }
3246
3247   GNUNET_CONTAINER_bloomfilter_add (message_context->bloom, &my_identity.hashPubKey);
3248   hash_from_uid (message_context->unique_id, &unique_hash);
3249   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains (recent.hashmap, &unique_hash))
3250   {
3251     recent_req = GNUNET_CONTAINER_multihashmap_get(recent.hashmap, &unique_hash);
3252     GNUNET_assert(recent_req != NULL);
3253     if (0 != memcmp(&recent_req->key, &message_context->key, sizeof(GNUNET_HashCode)))
3254       increment_stats(STAT_DUPLICATE_UID);
3255     else
3256       {
3257         increment_stats(STAT_RECENT_SEEN);
3258         GNUNET_CONTAINER_bloomfilter_or2(message_context->bloom, recent_req->bloom, DHT_BLOOM_SIZE);
3259       }
3260     }
3261   else
3262     {
3263       recent_req = GNUNET_malloc(sizeof(struct RecentRequest));
3264       recent_req->uid = message_context->unique_id;
3265       memcpy(&recent_req->key, &message_context->key, sizeof(GNUNET_HashCode));
3266       recent_req->remove_task = GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_RECENT_REMOVAL, &remove_recent, recent_req);
3267       recent_req->heap_node = GNUNET_CONTAINER_heap_insert(recent.minHeap, recent_req, GNUNET_TIME_absolute_get().value);
3268       recent_req->bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K);
3269       GNUNET_CONTAINER_multihashmap_put(recent.hashmap, &unique_hash, recent_req, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3270     }
3271
3272   if (GNUNET_CONTAINER_multihashmap_size(recent.hashmap) > DHT_MAX_RECENT)
3273     {
3274       recent_req = GNUNET_CONTAINER_heap_peek(recent.minHeap);
3275       GNUNET_assert(recent_req != NULL);
3276       GNUNET_SCHEDULER_cancel(sched, recent_req->remove_task);
3277       GNUNET_SCHEDULER_add_now(sched, &remove_recent, recent_req);
3278     }
3279
3280   for (i = 0; i < forward_count; i++)
3281     {
3282       selected = select_peer(&message_context->key, message_context->bloom, message_context->hop_count);
3283
3284       if (selected != NULL)
3285         {
3286           GNUNET_CONTAINER_bloomfilter_add(message_context->bloom, &selected->id.hashPubKey);
3287 #if DEBUG_DHT_ROUTING > 1
3288           nearest = find_closest_peer(&message_context->key);
3289           nearest_buf = GNUNET_strdup(GNUNET_i2s(&nearest->id));
3290           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3291                       "`%s:%s': Forwarding request key %s uid %llu to peer %s (closest %s, bits %d, distance %u)\n", my_short_id,
3292                       "DHT", GNUNET_h2s (message_context->key), message_context->unique_id, GNUNET_i2s(&selected->id), nearest_buf, GNUNET_CRYPTO_hash_matching_bits(&nearest->id.hashPubKey, message_context->key), distance(&nearest->id.hashPubKey, message_context->key));
3293           GNUNET_free(nearest_buf);
3294 #endif
3295 #if DEBUG_DHT_ROUTING
3296           if ((debug_routes_extended) && (dhtlog_handle != NULL))
3297             {
3298               dhtlog_handle->insert_route (NULL, message_context->unique_id, DHTLOG_ROUTE,
3299                                            message_context->hop_count, GNUNET_NO,
3300                                            &my_identity, &message_context->key, message_context->peer,
3301                                            &selected->id);
3302             }
3303 #endif
3304           forward_message(cls, msg, selected, message_context);
3305         }
3306       else
3307         {
3308           increment_stats("# NULL returned from select_peer");
3309           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3310                       "`%s:%s': No peers selected for forwarding.\n", my_short_id,
3311                       "DHT");
3312
3313         }
3314     }
3315 #if DEBUG_DHT_ROUTING > 1
3316   if (forward_count == 0)
3317     {
3318       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3319                   "`%s:%s': NOT Forwarding request key %s uid %llu to any peers\n", my_short_id,
3320                   "DHT", GNUNET_h2s (message_context->key), message_context->unique_id);
3321     }
3322 #endif
3323
3324   if (message_context->bloom != NULL)
3325     {
3326       GNUNET_CONTAINER_bloomfilter_or2(recent_req->bloom, message_context->bloom, DHT_BLOOM_SIZE);
3327       GNUNET_CONTAINER_bloomfilter_free(message_context->bloom);
3328     }
3329
3330   return forward_count;
3331 }
3332
3333 /**
3334  * Iterator for local get request results,
3335  *
3336  * @param cls closure for iterator, NULL
3337  * @param exp when does this value expire?
3338  * @param key the key this data is stored under
3339  * @param size the size of the data identified by key
3340  * @param data the actual data
3341  * @param type the type of the data
3342  *
3343  * @return GNUNET_OK to continue iteration, anything else
3344  * to stop iteration.
3345  */
3346 static int
3347 republish_content_iterator (void *cls,
3348                             struct GNUNET_TIME_Absolute exp,
3349                             const GNUNET_HashCode * key,
3350                             uint32_t size, const char *data, uint32_t type)
3351 {
3352
3353   struct DHT_MessageContext *new_msg_ctx;
3354   struct GNUNET_DHT_PutMessage *put_msg;
3355 #if DEBUG_DHT
3356   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3357               "`%s:%s': Received `%s' response from datacache\n", my_short_id, "DHT", "GET");
3358 #endif
3359   new_msg_ctx = GNUNET_malloc(sizeof(struct DHT_MessageContext));
3360
3361   put_msg =
3362     GNUNET_malloc (sizeof (struct GNUNET_DHT_PutMessage) + size);
3363   put_msg->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_PUT);
3364   put_msg->header.size = htons (sizeof (struct GNUNET_DHT_PutMessage) + size);
3365   put_msg->expiration = GNUNET_TIME_absolute_hton(exp);
3366   put_msg->type = htons (type);
3367   memcpy (&put_msg[1], data, size);
3368   new_msg_ctx->unique_id = GNUNET_ntohll (GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_WEAK, (uint64_t)-1));
3369   new_msg_ctx->replication = ntohl (DHT_DEFAULT_PUT_REPLICATION);
3370   new_msg_ctx->msg_options = ntohl (0);
3371   new_msg_ctx->network_size = estimate_diameter();
3372   new_msg_ctx->peer = &my_identity;
3373   new_msg_ctx->bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K);
3374   new_msg_ctx->hop_count = 0;
3375   new_msg_ctx->importance = DHT_DEFAULT_P2P_IMPORTANCE;
3376   new_msg_ctx->timeout = DHT_DEFAULT_P2P_TIMEOUT;
3377   increment_stats(STAT_PUT_START);
3378   route_message(cls, &put_msg->header, new_msg_ctx);
3379
3380   GNUNET_free(new_msg_ctx);
3381   GNUNET_free (put_msg);
3382   return GNUNET_OK;
3383 }
3384
3385 /**
3386  * Task used to republish data.
3387  *
3388  * @param cls closure (a struct RepublishContext)
3389  * @param tc runtime context for this task
3390  */
3391 static void
3392 republish_content(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3393 {
3394   struct RepublishContext *put_context = cls;
3395
3396   unsigned int results;
3397
3398   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
3399     {
3400       GNUNET_free(put_context);
3401       return;
3402     }
3403
3404   GNUNET_assert (datacache != NULL); /* If we have no datacache we never should have scheduled this! */
3405   results = GNUNET_DATACACHE_get(datacache, &put_context->key, put_context->type, &republish_content_iterator, NULL);
3406   if (results == 0) /* Data must have expired */
3407     GNUNET_free(put_context);
3408   else /* Reschedule task for next time period */
3409     GNUNET_SCHEDULER_add_delayed(sched, dht_republish_frequency, &republish_content, put_context);
3410
3411 }
3412
3413 /**
3414  * Find a client if it exists, add it otherwise.
3415  *
3416  * @param client the server handle to the client
3417  *
3418  * @return the client if found, a new client otherwise
3419  */
3420 static struct ClientList *
3421 find_active_client (struct GNUNET_SERVER_Client *client)
3422 {
3423   struct ClientList *pos = client_list;
3424   struct ClientList *ret;
3425
3426   while (pos != NULL)
3427     {
3428       if (pos->client_handle == client)
3429         return pos;
3430       pos = pos->next;
3431     }
3432
3433   ret = GNUNET_malloc (sizeof (struct ClientList));
3434   ret->client_handle = client;
3435   ret->next = client_list;
3436   client_list = ret;
3437   return ret;
3438 }
3439
3440 /**
3441  * Task to send a malicious put message across the network.
3442  *
3443  * @param cls closure for this task
3444  * @param tc the context under which the task is running
3445  */
3446 static void
3447 malicious_put_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3448 {
3449   static struct GNUNET_DHT_PutMessage put_message;
3450   static struct DHT_MessageContext message_context;
3451   static GNUNET_HashCode key;
3452   uint32_t random_key;
3453
3454   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
3455     return;
3456
3457   put_message.header.size = htons(sizeof(struct GNUNET_DHT_PutMessage));
3458   put_message.header.type = htons(GNUNET_MESSAGE_TYPE_DHT_PUT);
3459   put_message.type = htons(DHT_MALICIOUS_MESSAGE_TYPE);
3460   put_message.expiration = GNUNET_TIME_absolute_hton(GNUNET_TIME_absolute_get_forever());
3461   memset(&message_context, 0, sizeof(struct DHT_MessageContext));
3462   message_context.client = NULL;
3463   random_key = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, (uint32_t)-1);
3464   GNUNET_CRYPTO_hash(&random_key, sizeof(uint32_t), &key);
3465   memcpy(&message_context.key, &key, sizeof(GNUNET_HashCode));
3466   message_context.unique_id = GNUNET_ntohll (GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_WEAK, (uint64_t)-1));
3467   message_context.replication = ntohl (DHT_DEFAULT_FIND_PEER_REPLICATION);
3468   message_context.msg_options = ntohl (0);
3469   message_context.network_size = estimate_diameter();
3470   message_context.peer = &my_identity;
3471   message_context.importance = DHT_DEFAULT_P2P_IMPORTANCE; /* Make result routing a higher priority */
3472   message_context.timeout = DHT_DEFAULT_P2P_TIMEOUT;
3473 #if DEBUG_DHT_ROUTING
3474   if (dhtlog_handle != NULL)
3475     dhtlog_handle->insert_dhtkey(NULL, &key);
3476 #endif
3477   increment_stats(STAT_PUT_START);
3478   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s:%s Sending malicious PUT message with hash %s", my_short_id, "DHT", GNUNET_h2s(&key));
3479   route_message(NULL, &put_message.header, &message_context);
3480   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, malicious_put_frequency), &malicious_put_task, NULL);
3481
3482 }
3483
3484 /**
3485  * Task to send a malicious put message across the network.
3486  *
3487  * @param cls closure for this task
3488  * @param tc the context under which the task is running
3489  */
3490 static void
3491 malicious_get_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3492 {
3493   static struct GNUNET_DHT_GetMessage get_message;
3494   struct DHT_MessageContext message_context;
3495   static GNUNET_HashCode key;
3496   uint32_t random_key;
3497
3498   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
3499     return;
3500
3501   get_message.header.size = htons(sizeof(struct GNUNET_DHT_GetMessage));
3502   get_message.header.type = htons(GNUNET_MESSAGE_TYPE_DHT_GET);
3503   get_message.type = htons(DHT_MALICIOUS_MESSAGE_TYPE);
3504   memset(&message_context, 0, sizeof(struct DHT_MessageContext));
3505   message_context.client = NULL;
3506   random_key = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, (uint32_t)-1);
3507   GNUNET_CRYPTO_hash(&random_key, sizeof(uint32_t), &key);
3508   memcpy(&message_context.key, &key, sizeof(GNUNET_HashCode));
3509   message_context.unique_id = GNUNET_ntohll (GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_WEAK, (uint64_t)-1));
3510   message_context.replication = ntohl (DHT_DEFAULT_FIND_PEER_REPLICATION);
3511   message_context.msg_options = ntohl (0);
3512   message_context.network_size = estimate_diameter();
3513   message_context.peer = &my_identity;
3514   message_context.importance = DHT_DEFAULT_P2P_IMPORTANCE; /* Make result routing a higher priority */
3515   message_context.timeout = DHT_DEFAULT_P2P_TIMEOUT;
3516 #if DEBUG_DHT_ROUTING
3517   if (dhtlog_handle != NULL)
3518     dhtlog_handle->insert_dhtkey(NULL, &key);
3519 #endif
3520   increment_stats(STAT_GET_START);
3521   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s:%s Sending malicious GET message with hash %s", my_short_id, "DHT", GNUNET_h2s(&key));
3522   route_message (NULL, &get_message.header, &message_context);
3523   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, malicious_get_frequency), &malicious_get_task, NULL);
3524 }
3525
3526 /**
3527  * Iterator over hash map entries.
3528  *
3529  * @param cls closure
3530  * @param key current key code
3531  * @param value value in the hash map
3532  * @return GNUNET_YES if we should continue to
3533  *         iterate,
3534  *         GNUNET_NO if not.
3535  */
3536 static int
3537 add_known_to_bloom (void *cls,
3538                     const GNUNET_HashCode * key,
3539                     void *value)
3540 {
3541   struct GNUNET_CONTAINER_BloomFilter *bloom = cls;
3542   GNUNET_CONTAINER_bloomfilter_add (bloom, key);
3543   return GNUNET_YES;
3544 }
3545
3546 /**
3547  * Task to send a find peer message for our own peer identifier
3548  * so that we can find the closest peers in the network to ourselves
3549  * and attempt to connect to them.
3550  *
3551  * @param cls closure for this task
3552  * @param tc the context under which the task is running
3553  */
3554 static void
3555 send_find_peer_message (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3556 {
3557   struct GNUNET_DHT_FindPeerMessage *find_peer_msg;
3558   struct DHT_MessageContext message_context;
3559   int ret;
3560   struct GNUNET_TIME_Relative next_send_time;
3561   struct GNUNET_CONTAINER_BloomFilter *temp_bloom;
3562 #if COUNT_INTERVAL
3563   struct GNUNET_TIME_Relative time_diff;
3564   struct GNUNET_TIME_Absolute end;
3565   double multiplier;
3566   double count_per_interval;
3567 #endif
3568   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
3569     return;
3570
3571   if ((newly_found_peers > bucket_size) && (GNUNET_YES == do_find_peer)) /* If we are finding peers already, no need to send out our request right now! */
3572     {
3573       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Have %d newly found peers since last find peer message sent!\n", newly_found_peers);
3574       GNUNET_SCHEDULER_add_delayed (sched,
3575                                     GNUNET_TIME_UNIT_MINUTES,
3576                                     &send_find_peer_message, NULL);
3577       newly_found_peers = 0;
3578       return;
3579     }
3580     
3581   increment_stats(STAT_FIND_PEER_START);
3582 #if COUNT_INTERVAL
3583   end = GNUNET_TIME_absolute_get();
3584   time_diff = GNUNET_TIME_absolute_get_difference(find_peer_context.start, end);
3585
3586   if (time_diff.value > FIND_PEER_CALC_INTERVAL.value)
3587     {
3588       multiplier = time_diff.value / FIND_PEER_CALC_INTERVAL.value;
3589       count_per_interval = find_peer_context.count / multiplier;
3590     }
3591   else
3592     {
3593       multiplier = FIND_PEER_CALC_INTERVAL.value / time_diff.value;
3594       count_per_interval = find_peer_context.count * multiplier;
3595     }
3596 #endif
3597
3598 #if FIND_PEER_WITH_HELLO
3599   find_peer_msg = GNUNET_malloc(sizeof(struct GNUNET_DHT_FindPeerMessage) + GNUNET_HELLO_size((struct GNUNET_HELLO_Message *)my_hello));
3600   find_peer_msg->header.size = htons(sizeof(struct GNUNET_DHT_FindPeerMessage) + GNUNET_HELLO_size((struct GNUNET_HELLO_Message *)my_hello));
3601   memcpy(&find_peer_msg[1], my_hello, GNUNET_HELLO_size((struct GNUNET_HELLO_Message *)my_hello));
3602 #else
3603   find_peer_msg = GNUNET_malloc(sizeof(struct GNUNET_DHT_FindPeerMessage));
3604   find_peer_msg->header.size = htons(sizeof(struct GNUNET_DHT_FindPeerMessage));
3605 #endif
3606   find_peer_msg->header.type = htons(GNUNET_MESSAGE_TYPE_DHT_FIND_PEER);
3607   temp_bloom = GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, DHT_BLOOM_K);
3608   GNUNET_CONTAINER_multihashmap_iterate(all_known_peers, &add_known_to_bloom, temp_bloom);
3609   GNUNET_assert(GNUNET_OK == GNUNET_CONTAINER_bloomfilter_get_raw_data(temp_bloom, find_peer_msg->bloomfilter, DHT_BLOOM_SIZE));
3610   memset(&message_context, 0, sizeof(struct DHT_MessageContext));
3611   memcpy(&message_context.key, &my_identity.hashPubKey, sizeof(GNUNET_HashCode));
3612   message_context.unique_id = GNUNET_ntohll (GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG, (uint64_t)-1));
3613   message_context.replication = DHT_DEFAULT_FIND_PEER_REPLICATION;
3614   message_context.msg_options = DHT_DEFAULT_FIND_PEER_OPTIONS;
3615   message_context.network_size = estimate_diameter();
3616   message_context.peer = &my_identity;
3617   message_context.importance = DHT_DEFAULT_FIND_PEER_IMPORTANCE;
3618   message_context.timeout = DHT_DEFAULT_FIND_PEER_TIMEOUT;
3619
3620   ret = route_message(NULL, &find_peer_msg->header, &message_context);
3621   GNUNET_free(find_peer_msg);
3622   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3623               "`%s:%s': Sent `%s' request to %d peers\n", my_short_id, "DHT",
3624               "FIND PEER", ret);
3625   if (newly_found_peers < bucket_size)
3626     {
3627       next_send_time.value = (DHT_MAXIMUM_FIND_PEER_INTERVAL.value / 2) +
3628                               GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
3629                                                        DHT_MAXIMUM_FIND_PEER_INTERVAL.value / 2);
3630     }
3631   else
3632     {
3633       next_send_time.value = DHT_MINIMUM_FIND_PEER_INTERVAL.value +
3634                              GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
3635                                                       DHT_MAXIMUM_FIND_PEER_INTERVAL.value - DHT_MINIMUM_FIND_PEER_INTERVAL.value);
3636     }
3637
3638   GNUNET_assert (next_send_time.value != 0);
3639   find_peer_context.count = 0;
3640   newly_found_peers = 0;
3641   find_peer_context.start = GNUNET_TIME_absolute_get();
3642   if (GNUNET_YES == do_find_peer)
3643   {
3644     GNUNET_SCHEDULER_add_delayed (sched,
3645                                   next_send_time,
3646                                   &send_find_peer_message, NULL);
3647   }
3648 }
3649
3650 /**
3651  * Handler for any generic DHT messages, calls the appropriate handler
3652  * depending on message type, sends confirmation if responses aren't otherwise
3653  * expected.
3654  *
3655  * @param cls closure for the service
3656  * @param client the client we received this message from
3657  * @param message the actual message received
3658  */
3659 static void
3660 handle_dht_local_route_request (void *cls, struct GNUNET_SERVER_Client *client,
3661                                 const struct GNUNET_MessageHeader *message)
3662 {
3663   const struct GNUNET_DHT_RouteMessage *dht_msg = (const struct GNUNET_DHT_RouteMessage *) message;
3664   const struct GNUNET_MessageHeader *enc_msg;
3665   struct DHT_MessageContext message_context;
3666   enc_msg = (const struct GNUNET_MessageHeader *) &dht_msg[1];
3667 #if DEBUG_DHT
3668   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3669               "`%s:%s': Received `%s' request from client, message type %d, key %s, uid %llu\n",
3670               my_short_id, "DHT", "GENERIC", enc_type, GNUNET_h2s (&dht_msg->key),
3671               GNUNET_ntohll (dht_msg->unique_id));
3672 #endif
3673 #if DEBUG_DHT_ROUTING
3674   if (dhtlog_handle != NULL)
3675     dhtlog_handle->insert_dhtkey (NULL, &dht_msg->key);
3676 #endif
3677   memset(&message_context, 0, sizeof(struct DHT_MessageContext));
3678   message_context.client = find_active_client (client);
3679   memcpy(&message_context.key, &dht_msg->key, sizeof(GNUNET_HashCode));
3680   message_context.unique_id = GNUNET_ntohll (dht_msg->unique_id);
3681   message_context.replication = ntohl (dht_msg->desired_replication_level);
3682   message_context.msg_options = ntohl (dht_msg->options);
3683   message_context.network_size = estimate_diameter();
3684   message_context.peer = &my_identity;
3685   message_context.importance = DHT_DEFAULT_P2P_IMPORTANCE * 4; /* Make local routing a higher priority */
3686   message_context.timeout = DHT_DEFAULT_P2P_TIMEOUT;
3687   if (ntohs(enc_msg->type) == GNUNET_MESSAGE_TYPE_DHT_GET)
3688     increment_stats(STAT_GET_START);
3689   else if (ntohs(enc_msg->type) == GNUNET_MESSAGE_TYPE_DHT_PUT)
3690     increment_stats(STAT_PUT_START);
3691   else if (ntohs(enc_msg->type) == GNUNET_MESSAGE_TYPE_DHT_FIND_PEER)
3692     increment_stats(STAT_FIND_PEER_START);
3693
3694   route_message(cls, enc_msg, &message_context);
3695
3696   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3697
3698 }
3699
3700 /**
3701  * Handler for any locally received DHT control messages,
3702  * sets malicious flags mostly for now.
3703  *
3704  * @param cls closure for the service
3705  * @param client the client we received this message from
3706  * @param message the actual message received
3707  *
3708  */
3709 static void
3710 handle_dht_control_message (void *cls, struct GNUNET_SERVER_Client *client,
3711                             const struct GNUNET_MessageHeader *message)
3712 {
3713   const struct GNUNET_DHT_ControlMessage *dht_control_msg =
3714       (const struct GNUNET_DHT_ControlMessage *) message;
3715 #if DEBUG_DHT
3716   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3717               "`%s:%s': Received `%s' request from client, command %d\n", my_short_id, "DHT",
3718               "CONTROL", ntohs(dht_control_msg->command));
3719 #endif
3720
3721   switch (ntohs(dht_control_msg->command))
3722   {
3723   case GNUNET_MESSAGE_TYPE_DHT_FIND_PEER:
3724     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Sending self seeking find peer request!\n");
3725     GNUNET_SCHEDULER_add_now(sched, &send_find_peer_message, NULL);
3726     break;
3727   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_GET:
3728     if (ntohs(dht_control_msg->variable) > 0)
3729       malicious_get_frequency = ntohs(dht_control_msg->variable);
3730     if (malicious_get_frequency == 0)
3731       malicious_get_frequency = DEFAULT_MALICIOUS_GET_FREQUENCY;
3732     if (malicious_getter != GNUNET_YES)
3733       GNUNET_SCHEDULER_add_now(sched, &malicious_get_task, NULL);
3734     malicious_getter = GNUNET_YES;
3735     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s:%s Initiating malicious GET behavior, frequency %d\n", my_short_id, "DHT", malicious_get_frequency);
3736     break;
3737   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_PUT:
3738     if (ntohs(dht_control_msg->variable) > 0)
3739       malicious_put_frequency = ntohs(dht_control_msg->variable);
3740     if (malicious_put_frequency == 0)
3741       malicious_put_frequency = DEFAULT_MALICIOUS_PUT_FREQUENCY;
3742     if (malicious_putter != GNUNET_YES)
3743       GNUNET_SCHEDULER_add_now(sched, &malicious_put_task, NULL);
3744     malicious_putter = GNUNET_YES;
3745     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s:%s Initiating malicious PUT behavior, frequency %d\n", my_short_id, "DHT", malicious_put_frequency);
3746     break;
3747   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_DROP:
3748 #if DEBUG_DHT_ROUTING
3749     if ((malicious_dropper != GNUNET_YES) && (dhtlog_handle != NULL))
3750       dhtlog_handle->set_malicious(&my_identity);
3751 #endif
3752     malicious_dropper = GNUNET_YES;
3753     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s:%s Initiating malicious DROP behavior\n", my_short_id, "DHT");
3754     break;
3755   default:
3756     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s:%s Unknown control command type `%d'!\n", ntohs(dht_control_msg->command));
3757   }
3758
3759   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3760 }
3761
3762 /**
3763  * Handler for any generic DHT stop messages, calls the appropriate handler
3764  * depending on message type (if processed locally)
3765  *
3766  * @param cls closure for the service
3767  * @param client the client we received this message from
3768  * @param message the actual message received
3769  *
3770  */
3771 static void
3772 handle_dht_local_route_stop(void *cls, struct GNUNET_SERVER_Client *client,
3773                             const struct GNUNET_MessageHeader *message)
3774 {
3775
3776   const struct GNUNET_DHT_StopMessage *dht_stop_msg =
3777     (const struct GNUNET_DHT_StopMessage *) message;
3778   struct DHTQueryRecord *record;
3779   struct DHTRouteSource *pos;
3780 #if DEBUG_DHT
3781   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3782               "`%s:%s': Received `%s' request from client, uid %llu\n", my_short_id, "DHT",
3783               "GENERIC STOP", GNUNET_ntohll (dht_stop_msg->unique_id));
3784 #endif
3785   record = GNUNET_CONTAINER_multihashmap_get(forward_list.hashmap, &dht_stop_msg->key);
3786   if (record != NULL)
3787     {
3788       pos = record->head;
3789
3790       while (pos != NULL)
3791         {
3792           if ((pos->client != NULL) && (pos->client->client_handle == client))
3793             {
3794               GNUNET_SCHEDULER_cancel(sched, pos->delete_task);
3795               GNUNET_SCHEDULER_add_now(sched, &remove_forward_entry, pos);
3796             }
3797           pos = pos->next;
3798         }
3799     }
3800
3801   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3802 }
3803
3804
3805 /**
3806  * Core handler for p2p route requests.
3807  */
3808 static int
3809 handle_dht_p2p_route_request (void *cls,
3810                               const struct GNUNET_PeerIdentity *peer,
3811                               const struct GNUNET_MessageHeader *message,
3812                               struct GNUNET_TIME_Relative latency, uint32_t distance)
3813 {
3814 #if DEBUG_DHT
3815   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3816               "`%s:%s': Received P2P request from peer %s\n", my_short_id, "DHT", GNUNET_i2s(peer));
3817 #endif
3818   struct GNUNET_DHT_P2PRouteMessage *incoming = (struct GNUNET_DHT_P2PRouteMessage *)message;
3819   struct GNUNET_MessageHeader *enc_msg = (struct GNUNET_MessageHeader *)&incoming[1];
3820   struct DHT_MessageContext *message_context;
3821
3822   if (get_max_send_delay().value > MAX_REQUEST_TIME.value)
3823   {
3824     fprintf(stderr, "Sending of previous replies took far too long, backing off!\n");
3825     decrease_max_send_delay(get_max_send_delay());
3826     return GNUNET_YES;
3827   }
3828
3829   if (ntohs(enc_msg->type) == GNUNET_MESSAGE_TYPE_DHT_P2P_PING) /* Throw these away. FIXME: Don't throw these away? (reply)*/
3830     {
3831 #if DEBUG_PING
3832       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s:%s Received P2P Ping message.\n", my_short_id, "DHT");
3833 #endif
3834       return GNUNET_YES;
3835     }
3836
3837   if (ntohs(enc_msg->size) >= GNUNET_SERVER_MAX_MESSAGE_SIZE - 1)
3838     {
3839       GNUNET_break_op(0);
3840       return GNUNET_YES;
3841     }
3842   message_context = GNUNET_malloc(sizeof (struct DHT_MessageContext));
3843   message_context->bloom = GNUNET_CONTAINER_bloomfilter_init(incoming->bloomfilter, DHT_BLOOM_SIZE, DHT_BLOOM_K);
3844   GNUNET_assert(message_context->bloom != NULL);
3845   message_context->hop_count = ntohl(incoming->hop_count);
3846   memcpy(&message_context->key, &incoming->key, sizeof(GNUNET_HashCode));
3847   message_context->replication = ntohl(incoming->desired_replication_level);
3848   message_context->unique_id = GNUNET_ntohll(incoming->unique_id);
3849   message_context->msg_options = ntohl(incoming->options);
3850   message_context->network_size = ntohl(incoming->network_size);
3851   message_context->peer = peer;
3852   message_context->importance = DHT_DEFAULT_P2P_IMPORTANCE;
3853   message_context->timeout = DHT_DEFAULT_P2P_TIMEOUT;
3854   route_message(cls, enc_msg, message_context);
3855   GNUNET_free(message_context);
3856   return GNUNET_YES;
3857 }
3858
3859
3860 /**
3861  * Core handler for p2p route results.
3862  */
3863 static int
3864 handle_dht_p2p_route_result (void *cls,
3865                              const struct GNUNET_PeerIdentity *peer,
3866                              const struct GNUNET_MessageHeader *message,
3867                              struct GNUNET_TIME_Relative latency, uint32_t distance)
3868 {
3869 #if DEBUG_DHT
3870   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3871               "`%s:%s': Received request from peer %s\n", my_short_id, "DHT", GNUNET_i2s(peer));
3872 #endif
3873   struct GNUNET_DHT_P2PRouteResultMessage *incoming = (struct GNUNET_DHT_P2PRouteResultMessage *)message;
3874   struct GNUNET_MessageHeader *enc_msg = (struct GNUNET_MessageHeader *)&incoming[1];
3875   struct DHT_MessageContext message_context;
3876
3877   if (ntohs(enc_msg->size) >= GNUNET_SERVER_MAX_MESSAGE_SIZE - 1)
3878     {
3879       GNUNET_break_op(0);
3880       return GNUNET_YES;
3881     }
3882
3883   memset(&message_context, 0, sizeof(struct DHT_MessageContext));
3884   message_context.bloom = GNUNET_CONTAINER_bloomfilter_init(incoming->bloomfilter, DHT_BLOOM_SIZE, DHT_BLOOM_K);
3885   GNUNET_assert(message_context.bloom != NULL);
3886   memcpy(&message_context.key, &incoming->key, sizeof(GNUNET_HashCode));
3887   message_context.unique_id = GNUNET_ntohll(incoming->unique_id);
3888   message_context.msg_options = ntohl(incoming->options);
3889   message_context.hop_count = ntohl(incoming->hop_count);
3890   message_context.peer = peer;
3891   message_context.importance = DHT_DEFAULT_P2P_IMPORTANCE * 2; /* Make result routing a higher priority */
3892   message_context.timeout = DHT_DEFAULT_P2P_TIMEOUT;
3893   route_result_message(cls, enc_msg, &message_context);
3894   return GNUNET_YES;
3895 }
3896
3897
3898 /**
3899  * Receive the HELLO from transport service,
3900  * free current and replace if necessary.
3901  *
3902  * @param cls NULL
3903  * @param message HELLO message of peer
3904  */
3905 static void
3906 process_hello (void *cls, const struct GNUNET_MessageHeader *message)
3907 {
3908 #if DEBUG_DHT
3909   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3910               "Received our `%s' from transport service\n",
3911               "HELLO");
3912 #endif
3913
3914   GNUNET_assert (message != NULL);
3915   GNUNET_free_non_null(my_hello);
3916   my_hello = GNUNET_malloc(ntohs(message->size));
3917   memcpy(my_hello, message, ntohs(message->size));
3918 }
3919
3920
3921 /**
3922  * Task run during shutdown.
3923  *
3924  * @param cls unused
3925  * @param tc unused
3926  */
3927 static void
3928 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3929 {
3930   int bucket_count;
3931   struct PeerInfo *pos;
3932   if (transport_handle != NULL)
3933   {
3934     GNUNET_free_non_null(my_hello);
3935     GNUNET_TRANSPORT_get_hello_cancel(transport_handle, &process_hello, NULL);
3936     GNUNET_TRANSPORT_disconnect(transport_handle);
3937   }
3938
3939   for (bucket_count = lowest_bucket; bucket_count < MAX_BUCKETS; bucket_count++)
3940     {
3941       while (k_buckets[bucket_count].head != NULL)
3942         {
3943           pos = k_buckets[bucket_count].head;
3944 #if DEBUG_DHT
3945           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3946                       "%s:%s Removing peer %s from bucket %d!\n", my_short_id, "DHT", GNUNET_i2s(&pos->id), bucket_count);
3947 #endif
3948           delete_peer(pos, bucket_count);
3949         }
3950     }
3951   if (coreAPI != NULL)
3952     {
3953 #if DEBUG_DHT
3954       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3955                   "%s:%s Disconnecting core!\n", my_short_id, "DHT");
3956 #endif
3957       GNUNET_CORE_disconnect (coreAPI);
3958     }
3959   if (datacache != NULL)
3960     {
3961 #if DEBUG_DHT
3962       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3963                   "%s:%s Destroying datacache!\n", my_short_id, "DHT");
3964 #endif
3965       GNUNET_DATACACHE_destroy (datacache);
3966     }
3967
3968   if (stats != NULL)
3969     {
3970       GNUNET_STATISTICS_destroy (stats, GNUNET_YES);
3971     }
3972
3973   if (dhtlog_handle != NULL)
3974     GNUNET_DHTLOG_disconnect(dhtlog_handle);
3975
3976   GNUNET_free_non_null(my_short_id);
3977 }
3978
3979
3980 /**
3981  * To be called on core init/fail.
3982  *
3983  * @param cls service closure
3984  * @param server handle to the server for this service
3985  * @param identity the public identity of this peer
3986  * @param publicKey the public key of this peer
3987  */
3988 void
3989 core_init (void *cls,
3990            struct GNUNET_CORE_Handle *server,
3991            const struct GNUNET_PeerIdentity *identity,
3992            const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *publicKey)
3993 {
3994
3995   if (server == NULL)
3996     {
3997 #if DEBUG_DHT
3998   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3999               "%s: Connection to core FAILED!\n", "dht",
4000               GNUNET_i2s (identity));
4001 #endif
4002       GNUNET_SCHEDULER_cancel (sched, cleanup_task);
4003       GNUNET_SCHEDULER_add_now (sched, &shutdown_task, NULL);
4004       return;
4005     }
4006 #if DEBUG_DHT
4007   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4008               "%s: Core connection initialized, I am peer: %s\n", "dht",
4009               GNUNET_i2s (identity));
4010 #endif
4011
4012   /* Copy our identity so we can use it */
4013   memcpy (&my_identity, identity, sizeof (struct GNUNET_PeerIdentity));
4014   if (my_short_id != NULL)
4015     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s Receive CORE INIT message but have already been initialized! Did CORE fail?\n", "DHT SERVICE");
4016   my_short_id = GNUNET_strdup(GNUNET_i2s(&my_identity));
4017   /* Set the server to local variable */
4018   coreAPI = server;
4019
4020   if (dhtlog_handle != NULL)
4021     dhtlog_handle->insert_node (NULL, &my_identity);
4022 }
4023
4024
4025 static struct GNUNET_SERVER_MessageHandler plugin_handlers[] = {
4026   {&handle_dht_local_route_request, NULL, GNUNET_MESSAGE_TYPE_DHT_LOCAL_ROUTE, 0},
4027   {&handle_dht_local_route_stop, NULL, GNUNET_MESSAGE_TYPE_DHT_LOCAL_ROUTE_STOP, 0},
4028   {&handle_dht_control_message, NULL, GNUNET_MESSAGE_TYPE_DHT_CONTROL, 0},
4029   {NULL, NULL, 0, 0}
4030 };
4031
4032
4033 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
4034   {&handle_dht_p2p_route_request, GNUNET_MESSAGE_TYPE_DHT_P2P_ROUTE, 0},
4035   {&handle_dht_p2p_route_result, GNUNET_MESSAGE_TYPE_DHT_P2P_ROUTE_RESULT, 0},
4036   {NULL, 0, 0}
4037 };
4038
4039 /**
4040  * Method called whenever a peer connects.
4041  *
4042  * @param cls closure
4043  * @param peer peer identity this notification is about
4044  * @param latency reported latency of the connection with peer
4045  * @param distance reported distance (DV) to peer
4046  */
4047 void handle_core_connect (void *cls,
4048                           const struct GNUNET_PeerIdentity * peer,
4049                           struct GNUNET_TIME_Relative latency,
4050                           uint32_t distance)
4051 {
4052   struct PeerInfo *ret;
4053
4054 #if DEBUG_DHT
4055   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4056               "%s:%s Receives core connect message for peer %s distance %d!\n", my_short_id, "dht", GNUNET_i2s(peer), distance);
4057 #endif
4058
4059   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains(all_known_peers, &peer->hashPubKey))
4060     {
4061       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%s:%s Received %s message for peer %s, but already have peer in RT!", my_short_id, "DHT", "CORE CONNECT", GNUNET_i2s(peer));
4062       return;
4063     }
4064
4065   if (datacache != NULL)
4066     GNUNET_DATACACHE_put(datacache, &peer->hashPubKey, sizeof(struct GNUNET_PeerIdentity), (const char *)peer, 0, GNUNET_TIME_absolute_get_forever());
4067   ret = try_add_peer(peer,
4068                      find_current_bucket(&peer->hashPubKey),
4069                      latency,
4070                      distance);
4071   if (ret != NULL)
4072     {
4073       newly_found_peers++;
4074       GNUNET_CONTAINER_multihashmap_put(all_known_peers, &peer->hashPubKey, ret, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
4075     }
4076 #if DEBUG_DHT
4077     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4078                 "%s:%s Adding peer to routing list: %s\n", my_short_id, "DHT", ret == NULL ? "NOT ADDED" : "PEER ADDED");
4079 #endif
4080 }
4081
4082 /**
4083  * Method called whenever a peer disconnects.
4084  *
4085  * @param cls closure
4086  * @param peer peer identity this notification is about
4087  */
4088 void handle_core_disconnect (void *cls,
4089                              const struct
4090                              GNUNET_PeerIdentity * peer)
4091 {
4092   struct PeerInfo *to_remove;
4093   int current_bucket;
4094
4095   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s:%s: Received peer disconnect message for peer `%s' from %s\n", my_short_id, "DHT", GNUNET_i2s(peer), "CORE");
4096
4097   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_contains(all_known_peers, &peer->hashPubKey))
4098     {
4099       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s:%s: do not have peer `%s' in RT, can't disconnect!\n", my_short_id, "DHT", GNUNET_i2s(peer));
4100       return;
4101     }
4102   increment_stats(STAT_DISCONNECTS);
4103   GNUNET_assert(GNUNET_CONTAINER_multihashmap_contains(all_known_peers, &peer->hashPubKey));
4104   to_remove = GNUNET_CONTAINER_multihashmap_get(all_known_peers, &peer->hashPubKey);
4105   GNUNET_assert(0 == memcmp(peer, &to_remove->id, sizeof(struct GNUNET_PeerIdentity)));
4106   current_bucket = find_current_bucket(&to_remove->id.hashPubKey);
4107   delete_peer(to_remove, current_bucket);
4108 }
4109
4110 /**
4111  * Process dht requests.
4112  *
4113  * @param cls closure
4114  * @param scheduler scheduler to use
4115  * @param server the initialized server
4116  * @param c configuration to use
4117  */
4118 static void
4119 run (void *cls,
4120      struct GNUNET_SCHEDULER_Handle *scheduler,
4121      struct GNUNET_SERVER_Handle *server,
4122      const struct GNUNET_CONFIGURATION_Handle *c)
4123 {
4124   struct GNUNET_TIME_Relative next_send_time;
4125   unsigned long long temp_config_num;
4126   char *converge_modifier_buf;
4127   sched = scheduler;
4128   cfg = c;
4129   datacache = GNUNET_DATACACHE_create (sched, cfg, "dhtcache");
4130   GNUNET_SERVER_add_handlers (server, plugin_handlers);
4131   coreAPI = GNUNET_CORE_connect (sched, /* Main scheduler */
4132                                  cfg,   /* Main configuration */
4133                                  GNUNET_TIME_UNIT_FOREVER_REL,
4134                                  NULL,  /* Closure passed to DHT functions */
4135                                  &core_init,    /* Call core_init once connected */
4136                                  &handle_core_connect,  /* Handle connects */
4137                                  &handle_core_disconnect,  /* remove peers on disconnects */
4138                                  NULL,  /* Do we care about "status" updates? */
4139                                  NULL,  /* Don't want notified about all incoming messages */
4140                                  GNUNET_NO,     /* For header only inbound notification */
4141                                  NULL,  /* Don't want notified about all outbound messages */
4142                                  GNUNET_NO,     /* For header only outbound notification */
4143                                  core_handlers);        /* Register these handlers */
4144
4145   if (coreAPI == NULL)
4146     return;
4147   transport_handle = GNUNET_TRANSPORT_connect(sched, cfg, 
4148                                               NULL, NULL, NULL, NULL, NULL);
4149   if (transport_handle != NULL)
4150     GNUNET_TRANSPORT_get_hello (transport_handle, &process_hello, NULL);
4151   else
4152     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Failed to connect to transport service!\n");
4153
4154   lowest_bucket = MAX_BUCKETS - 1;
4155   forward_list.hashmap = GNUNET_CONTAINER_multihashmap_create(MAX_OUTSTANDING_FORWARDS / 10);
4156   forward_list.minHeap = GNUNET_CONTAINER_heap_create(GNUNET_CONTAINER_HEAP_ORDER_MIN);
4157   all_known_peers = GNUNET_CONTAINER_multihashmap_create(MAX_BUCKETS / 8);
4158   recent_find_peer_requests = GNUNET_CONTAINER_multihashmap_create(MAX_BUCKETS / 8);
4159   GNUNET_assert(all_known_peers != NULL);
4160   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht_testing", "mysql_logging"))
4161     {
4162       debug_routes = GNUNET_YES;
4163     }
4164
4165   if (GNUNET_YES ==
4166       GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4167                                            "strict_kademlia"))
4168     {
4169       strict_kademlia = GNUNET_YES;
4170     }
4171
4172   if (GNUNET_YES ==
4173       GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4174                                            "stop_on_closest"))
4175     {
4176       stop_on_closest = GNUNET_YES;
4177     }
4178
4179   if (GNUNET_YES ==
4180       GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4181                                            "stop_found"))
4182     {
4183       stop_on_found = GNUNET_YES;
4184     }
4185
4186   if (GNUNET_YES ==
4187       GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4188                                            "malicious_getter"))
4189     {
4190       malicious_getter = GNUNET_YES;
4191       if (GNUNET_NO == GNUNET_CONFIGURATION_get_value_number (cfg, "DHT",
4192                                             "MALICIOUS_GET_FREQUENCY",
4193                                             &malicious_get_frequency))
4194         malicious_get_frequency = DEFAULT_MALICIOUS_GET_FREQUENCY;
4195     }
4196
4197   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_number (cfg, "DHT",
4198                                         "MAX_HOPS",
4199                                         &max_hops))
4200     {
4201       max_hops = DEFAULT_MAX_HOPS;
4202     }
4203
4204   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno (cfg, "DHT",
4205                                                           "USE_MAX_HOPS"))
4206     {
4207       use_max_hops = GNUNET_YES;
4208     }
4209
4210   if (GNUNET_YES ==
4211       GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4212                                            "malicious_putter"))
4213     {
4214       malicious_putter = GNUNET_YES;
4215       if (GNUNET_NO == GNUNET_CONFIGURATION_get_value_number (cfg, "DHT",
4216                                             "MALICIOUS_PUT_FREQUENCY",
4217                                             &malicious_put_frequency))
4218         malicious_put_frequency = DEFAULT_MALICIOUS_PUT_FREQUENCY;
4219     }
4220
4221   dht_republish_frequency = DEFAULT_DHT_REPUBLISH_FREQUENCY;
4222   if (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number(cfg, "DHT", "REPLICATION_FREQUENCY", &temp_config_num))
4223     {
4224       dht_republish_frequency = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, temp_config_num);
4225     }
4226
4227   if (GNUNET_YES ==
4228           GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4229                                                "malicious_dropper"))
4230     {
4231       malicious_dropper = GNUNET_YES;
4232     }
4233
4234   if (GNUNET_YES ==
4235         GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4236                                              "republish"))
4237     do_republish = GNUNET_NO;
4238
4239   if (GNUNET_NO ==
4240         GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4241                                              "do_find_peer"))
4242     {
4243       do_find_peer = GNUNET_NO;
4244     }
4245   else
4246     do_find_peer = GNUNET_YES;
4247
4248   if (GNUNET_YES ==
4249         GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
4250                                              "use_real_distance"))
4251     use_real_distance = GNUNET_YES;
4252
4253   if (GNUNET_YES ==
4254       GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht_testing",
4255                                            "mysql_logging_extended"))
4256     {
4257       debug_routes = GNUNET_YES;
4258       debug_routes_extended = GNUNET_YES;
4259     }
4260
4261 #if DEBUG_DHT_ROUTING
4262   if (GNUNET_YES == debug_routes)
4263     {
4264       dhtlog_handle = GNUNET_DHTLOG_connect(cfg);
4265       if (dhtlog_handle == NULL)
4266         {
4267           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4268                       "Could not connect to mysql logging server, logging will not happen!");
4269         }
4270     }
4271 #endif
4272
4273   converge_option = DHT_CONVERGE_SQUARE;
4274   if (GNUNET_YES ==
4275       GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht_testing",
4276                                            "converge_linear"))
4277     {
4278       converge_option = DHT_CONVERGE_LINEAR;
4279     }
4280   else if (GNUNET_YES ==
4281         GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht_testing",
4282                                              "converge_exponential"))
4283     {
4284       converge_option = DHT_CONVERGE_EXPONENTIAL;
4285     }
4286
4287   if (GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "dht_testing", "converge_modifier", &converge_modifier_buf))
4288     {
4289       if (1 != sscanf(converge_modifier_buf, "%f", &converge_modifier))
4290         {
4291           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Failed to read decimal value for %s from `%s'\n", "CONVERGE_MODIFIER", converge_modifier_buf);
4292           converge_modifier = 0.0;
4293         }
4294       GNUNET_free(converge_modifier_buf);
4295     }
4296
4297   stats = GNUNET_STATISTICS_create(sched, "dht", cfg);
4298
4299   if (stats != NULL)
4300     {
4301       GNUNET_STATISTICS_set(stats, STAT_ROUTES, 0, GNUNET_NO);
4302       GNUNET_STATISTICS_set(stats, STAT_ROUTE_FORWARDS, 0, GNUNET_NO);
4303       GNUNET_STATISTICS_set(stats, STAT_ROUTE_FORWARDS_CLOSEST, 0, GNUNET_NO);
4304       GNUNET_STATISTICS_set(stats, STAT_RESULTS, 0, GNUNET_NO);
4305       GNUNET_STATISTICS_set(stats, STAT_RESULTS_TO_CLIENT, 0, GNUNET_NO);
4306       GNUNET_STATISTICS_set(stats, STAT_RESULT_FORWARDS, 0, GNUNET_NO);
4307       GNUNET_STATISTICS_set(stats, STAT_GETS, 0, GNUNET_NO);
4308       GNUNET_STATISTICS_set(stats, STAT_PUTS, 0, GNUNET_NO);
4309       GNUNET_STATISTICS_set(stats, STAT_PUTS_INSERTED, 0, GNUNET_NO);
4310       GNUNET_STATISTICS_set(stats, STAT_FIND_PEER, 0, GNUNET_NO);
4311       GNUNET_STATISTICS_set(stats, STAT_FIND_PEER_START, 0, GNUNET_NO);
4312       GNUNET_STATISTICS_set(stats, STAT_GET_START, 0, GNUNET_NO);
4313       GNUNET_STATISTICS_set(stats, STAT_PUT_START, 0, GNUNET_NO);
4314       GNUNET_STATISTICS_set(stats, STAT_FIND_PEER_REPLY, 0, GNUNET_NO);
4315       GNUNET_STATISTICS_set(stats, STAT_FIND_PEER_ANSWER, 0, GNUNET_NO);
4316       GNUNET_STATISTICS_set(stats, STAT_BLOOM_FIND_PEER, 0, GNUNET_NO);
4317       GNUNET_STATISTICS_set(stats, STAT_GET_REPLY, 0, GNUNET_NO);
4318       GNUNET_STATISTICS_set(stats, STAT_GET_RESPONSE_START, 0, GNUNET_NO);
4319       GNUNET_STATISTICS_set(stats, STAT_HELLOS_PROVIDED, 0, GNUNET_NO);
4320       GNUNET_STATISTICS_set(stats, STAT_DISCONNECTS, 0, GNUNET_NO);
4321     }
4322   /* FIXME: if there are no recent requests then these never get freed, but alternative is _annoying_! */
4323   recent.hashmap = GNUNET_CONTAINER_multihashmap_create(DHT_MAX_RECENT / 2);
4324   recent.minHeap = GNUNET_CONTAINER_heap_create(GNUNET_CONTAINER_HEAP_ORDER_MIN);
4325   if (GNUNET_YES == do_find_peer)
4326   {
4327     next_send_time.value = DHT_MINIMUM_FIND_PEER_INTERVAL.value +
4328                            GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
4329                                                     (DHT_MAXIMUM_FIND_PEER_INTERVAL.value / 2) - DHT_MINIMUM_FIND_PEER_INTERVAL.value);
4330     find_peer_context.start = GNUNET_TIME_absolute_get();
4331     GNUNET_SCHEDULER_add_delayed (sched,
4332                                   next_send_time,
4333                                   &send_find_peer_message, &find_peer_context);
4334   }
4335
4336   /* Scheduled the task to clean up when shutdown is called */
4337   cleanup_task = GNUNET_SCHEDULER_add_delayed (sched,
4338                                                GNUNET_TIME_UNIT_FOREVER_REL,
4339                                                &shutdown_task, NULL);
4340 }
4341
4342 /**
4343  * The main function for the dht service.
4344  *
4345  * @param argc number of arguments from the command line
4346  * @param argv command line arguments
4347  * @return 0 ok, 1 on error
4348  */
4349 int
4350 main (int argc, char *const *argv)
4351 {
4352   return (GNUNET_OK ==
4353           GNUNET_SERVICE_run (argc,
4354                               argv,
4355                               "dht",
4356                               GNUNET_SERVICE_OPTION_NONE,
4357                               &run, NULL)) ? 0 : 1;
4358 }