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