- clean up
[oweals/gnunet.git] / src / dht / gnunet-service-dht_neighbours.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 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_neighbours.c
23  * @brief GNUnet DHT service's bucket and neighbour management code
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27
28 #include "platform.h"
29 #include "gnunet_block_lib.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_constants.h"
33 #include "gnunet_protocols.h"
34 #include "gnunet_nse_service.h"
35 #include "gnunet_ats_service.h"
36 #include "gnunet_core_service.h"
37 #include "gnunet_datacache_lib.h"
38 #include "gnunet_transport_service.h"
39 #include "gnunet_hello_lib.h"
40 #include "gnunet_dht_service.h"
41 #include "gnunet_statistics_service.h"
42 #include "gnunet-service-dht.h"
43 #include "gnunet-service-dht_clients.h"
44 #include "gnunet-service-dht_datacache.h"
45 #include "gnunet-service-dht_hello.h"
46 #include "gnunet-service-dht_neighbours.h"
47 #include "gnunet-service-dht_nse.h"
48 #include "gnunet-service-dht_routing.h"
49 #include <fenv.h>
50 #include "dht.h"
51
52 #include "../regex/regex_block_lib.h"
53
54
55 #define LOG_TRAFFIC(kind,...) GNUNET_log_from (kind, "dht-traffic",__VA_ARGS__)
56
57 /**
58  * How many buckets will we allow total.
59  */
60 #define MAX_BUCKETS sizeof (struct GNUNET_HashCode) * 8
61
62 /**
63  * What is the maximum number of peers in a given bucket.
64  */
65 #define DEFAULT_BUCKET_SIZE 8
66
67 /**
68  * Desired replication level for FIND PEER requests
69  */
70 #define FIND_PEER_REPLICATION_LEVEL 4
71
72 /**
73  * Maximum allowed replication level for all requests.
74  */
75 #define MAXIMUM_REPLICATION_LEVEL 16
76
77 /**
78  * Maximum allowed number of pending messages per peer.
79  */
80 #define MAXIMUM_PENDING_PER_PEER 64
81
82 /**
83  * How often to update our preference levels for peers in our routing tables.
84  */
85 #define DHT_DEFAULT_PREFERENCE_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 2)
86
87 /**
88  * How long at least to wait before sending another find peer request.
89  */
90 #define DHT_MINIMUM_FIND_PEER_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30)
91
92 /**
93  * How long at most to wait before sending another find peer request.
94  */
95 #define DHT_MAXIMUM_FIND_PEER_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 10)
96
97 /**
98  * How long at most to wait for transmission of a GET request to another peer?
99  */
100 #define GET_TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 2)
101
102 /**
103  * Hello address expiration
104  */
105 extern struct GNUNET_TIME_Relative hello_expiration;
106
107
108 GNUNET_NETWORK_STRUCT_BEGIN
109
110 /**
111  * P2P PUT message
112  */
113 struct PeerPutMessage
114 {
115   /**
116    * Type: GNUNET_MESSAGE_TYPE_DHT_P2P_PUT
117    */
118   struct GNUNET_MessageHeader header;
119
120   /**
121    * Processing options
122    */
123   uint32_t options GNUNET_PACKED;
124
125   /**
126    * Content type.
127    */
128   uint32_t type GNUNET_PACKED;
129
130   /**
131    * Hop count
132    */
133   uint32_t hop_count GNUNET_PACKED;
134
135   /**
136    * Replication level for this message
137    */
138   uint32_t desired_replication_level GNUNET_PACKED;
139
140   /**
141    * Length of the PUT path that follows (if tracked).
142    */
143   uint32_t put_path_length GNUNET_PACKED;
144
145   /**
146    * When does the content expire?
147    */
148   struct GNUNET_TIME_AbsoluteNBO expiration_time;
149
150   /**
151    * Bloomfilter (for peer identities) to stop circular routes
152    */
153   char bloomfilter[DHT_BLOOM_SIZE];
154
155   /**
156    * The key we are storing under.
157    */
158   struct GNUNET_HashCode key;
159
160   /* put path (if tracked) */
161
162   /* Payload */
163
164 };
165
166
167 /**
168  * P2P Result message
169  */
170 struct PeerResultMessage
171 {
172   /**
173    * Type: GNUNET_MESSAGE_TYPE_DHT_P2P_RESULT
174    */
175   struct GNUNET_MessageHeader header;
176
177   /**
178    * Content type.
179    */
180   uint32_t type GNUNET_PACKED;
181
182   /**
183    * Length of the PUT path that follows (if tracked).
184    */
185   uint32_t put_path_length GNUNET_PACKED;
186
187   /**
188    * Length of the GET path that follows (if tracked).
189    */
190   uint32_t get_path_length GNUNET_PACKED;
191
192   /**
193    * When does the content expire?
194    */
195   struct GNUNET_TIME_AbsoluteNBO expiration_time;
196
197   /**
198    * The key of the corresponding GET request.
199    */
200   struct GNUNET_HashCode key;
201
202   /* put path (if tracked) */
203
204   /* get path (if tracked) */
205
206   /* Payload */
207
208 };
209
210
211 /**
212  * P2P GET message
213  */
214 struct PeerGetMessage
215 {
216   /**
217    * Type: GNUNET_MESSAGE_TYPE_DHT_P2P_GET
218    */
219   struct GNUNET_MessageHeader header;
220
221   /**
222    * Processing options
223    */
224   uint32_t options GNUNET_PACKED;
225
226   /**
227    * Desired content type.
228    */
229   uint32_t type GNUNET_PACKED;
230
231   /**
232    * Hop count
233    */
234   uint32_t hop_count GNUNET_PACKED;
235
236   /**
237    * Desired replication level for this request.
238    */
239   uint32_t desired_replication_level GNUNET_PACKED;
240
241   /**
242    * Size of the extended query.
243    */
244   uint32_t xquery_size;
245
246   /**
247    * Bloomfilter mutator.
248    */
249   uint32_t bf_mutator;
250
251   /**
252    * Bloomfilter (for peer identities) to stop circular routes
253    */
254   char bloomfilter[DHT_BLOOM_SIZE];
255
256   /**
257    * The key we are looking for.
258    */
259   struct GNUNET_HashCode key;
260
261   /* xquery */
262
263   /* result bloomfilter */
264
265 };
266 GNUNET_NETWORK_STRUCT_END
267
268 /**
269  * Linked list of messages to send to a particular other peer.
270  */
271 struct P2PPendingMessage
272 {
273   /**
274    * Pointer to next item in the list
275    */
276   struct P2PPendingMessage *next;
277
278   /**
279    * Pointer to previous item in the list
280    */
281   struct P2PPendingMessage *prev;
282
283   /**
284    * Message importance level.  FIXME: used? useful?
285    */
286   unsigned int importance;
287
288   /**
289    * When does this message time out?
290    */
291   struct GNUNET_TIME_Absolute timeout;
292
293   /**
294    * Actual message to be sent, allocated at the end of the struct:
295    * // msg = (cast) &pm[1];
296    * // memcpy (&pm[1], data, len);
297    */
298   const struct GNUNET_MessageHeader *msg;
299
300 };
301
302
303 /**
304  * Entry for a peer in a bucket.
305  */
306 struct PeerInfo
307 {
308   /**
309    * Next peer entry (DLL)
310    */
311   struct PeerInfo *next;
312
313   /**
314    *  Prev peer entry (DLL)
315    */
316   struct PeerInfo *prev;
317
318   /**
319    * Count of outstanding messages for peer. 
320    */
321   unsigned int pending_count;
322
323   /**
324    * Head of pending messages to be sent to this peer.
325    */
326   struct P2PPendingMessage *head;
327
328   /**
329    * Tail of pending messages to be sent to this peer.
330    */
331   struct P2PPendingMessage *tail;
332
333   /**
334    * Core handle for sending messages to this peer.
335    */
336   struct GNUNET_CORE_TransmitHandle *th;
337
338   /**
339    * Task for scheduling preference updates
340    */
341   GNUNET_SCHEDULER_TaskIdentifier preference_task;
342
343   /**
344    * What is the identity of the peer?
345    */
346   struct GNUNET_PeerIdentity id;
347
348 #if 0
349   /**
350    * What is the average latency for replies received?
351    */
352   struct GNUNET_TIME_Relative latency;
353
354   /**
355    * Transport level distance to peer.
356    */
357   unsigned int distance;
358 #endif
359
360 };
361
362
363 /**
364  * Peers are grouped into buckets.
365  */
366 struct PeerBucket
367 {
368   /**
369    * Head of DLL
370    */
371   struct PeerInfo *head;
372
373   /**
374    * Tail of DLL
375    */
376   struct PeerInfo *tail;
377
378   /**
379    * Number of peers in the bucket.
380    */
381   unsigned int peers_size;
382 };
383
384 /**
385  * Should routing details be logged to stderr (for debugging)?
386  */
387 static int log_route_details_stderr;
388
389 /**
390  * The lowest currently used bucket, initially 0 (for 0-bits matching bucket).
391  */
392 static unsigned int closest_bucket;
393
394 /**
395  * How many peers have we added since we sent out our last
396  * find peer request?
397  */
398 static unsigned int newly_found_peers;
399
400 /**
401  * Option for testing that disables the 'connect' function of the DHT.
402  */
403 static int disable_try_connect;
404
405 /**
406  * The buckets.  Array of size MAX_BUCKET_SIZE.  Offset 0 means 0 bits matching.
407  */
408 static struct PeerBucket k_buckets[MAX_BUCKETS];
409
410 /**
411  * Hash map of all known peers, for easy removal from k_buckets on disconnect.
412  */
413 static struct GNUNET_CONTAINER_MultiHashMap *all_known_peers;
414
415 /**
416  * Maximum size for each bucket.
417  */
418 static unsigned int bucket_size = DEFAULT_BUCKET_SIZE;
419
420 /**
421  * Task that sends FIND PEER requests.
422  */
423 static GNUNET_SCHEDULER_TaskIdentifier find_peer_task;
424
425 /**
426  * Identity of this peer.
427  */
428 static struct GNUNET_PeerIdentity my_identity;
429
430 /**
431  * Handle to CORE.
432  */
433 static struct GNUNET_CORE_Handle *coreAPI;
434
435 /**
436  * Handle to ATS.
437  */
438 static struct GNUNET_ATS_PerformanceHandle *atsAPI;
439
440
441
442 /**
443  * Find the optimal bucket for this key.
444  *
445  * @param hc the hashcode to compare our identity to
446  * @return the proper bucket index, or GNUNET_SYSERR
447  *         on error (same hashcode)
448  */
449 static int
450 find_bucket (const struct GNUNET_HashCode * hc)
451 {
452   unsigned int bits;
453
454   bits = GNUNET_CRYPTO_hash_matching_bits (&my_identity.hashPubKey, hc);
455   if (bits == MAX_BUCKETS)
456   {
457     /* How can all bits match? Got my own ID? */
458     GNUNET_break (0);
459     return GNUNET_SYSERR;
460   }
461   return MAX_BUCKETS - bits - 1;
462 }
463
464
465 /**
466  * Let GNUnet core know that we like the given peer.
467  *
468  * @param cls the 'struct PeerInfo' of the peer
469  * @param tc scheduler context.
470  */
471 static void
472 update_core_preference (void *cls,
473                         const struct GNUNET_SCHEDULER_TaskContext *tc)
474 {
475   struct PeerInfo *peer = cls;
476   uint64_t preference;
477   unsigned int matching;
478   int bucket;
479
480   peer->preference_task = GNUNET_SCHEDULER_NO_TASK;
481   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
482     return;
483   matching =
484       GNUNET_CRYPTO_hash_matching_bits (&my_identity.hashPubKey,
485                                         &peer->id.hashPubKey);
486   if (matching >= 64)
487     matching = 63;
488   bucket = find_bucket (&peer->id.hashPubKey);
489   if (bucket == GNUNET_SYSERR)
490     preference = 0;
491   else
492   {
493     GNUNET_assert (k_buckets[bucket].peers_size != 0);
494     preference = (1LL << matching) / k_buckets[bucket].peers_size;
495   }
496   if (preference == 0)
497   {
498     peer->preference_task =
499         GNUNET_SCHEDULER_add_delayed (DHT_DEFAULT_PREFERENCE_INTERVAL,
500                                       &update_core_preference, peer);
501     return;
502   }
503   GNUNET_STATISTICS_update (GDS_stats,
504                             gettext_noop ("# Preference updates given to core"),
505                             1, GNUNET_NO);
506   GNUNET_ATS_change_preference (atsAPI, &peer->id,
507                                 GNUNET_ATS_PREFERENCE_BANDWIDTH,
508                                 (double) preference, GNUNET_ATS_PREFERENCE_END);
509   peer->preference_task =
510       GNUNET_SCHEDULER_add_delayed (DHT_DEFAULT_PREFERENCE_INTERVAL,
511                                     &update_core_preference, peer);
512
513
514 }
515
516
517 /**
518  * Closure for 'add_known_to_bloom'.
519  */
520 struct BloomConstructorContext
521 {
522   /**
523    * Bloom filter under construction.
524    */
525   struct GNUNET_CONTAINER_BloomFilter *bloom;
526
527   /**
528    * Mutator to use.
529    */
530   uint32_t bf_mutator;
531 };
532
533
534 /**
535  * Add each of the peers we already know to the bloom filter of
536  * the request so that we don't get duplicate HELLOs.
537  *
538  * @param cls the 'struct BloomConstructorContext'.
539  * @param key peer identity to add to the bloom filter
540  * @param value value the peer information (unused)
541  * @return GNUNET_YES (we should continue to iterate)
542  */
543 static int
544 add_known_to_bloom (void *cls, const struct GNUNET_HashCode * key, void *value)
545 {
546   struct BloomConstructorContext *ctx = cls;
547   struct GNUNET_HashCode mh;
548
549   GNUNET_BLOCK_mingle_hash (key, ctx->bf_mutator, &mh);
550   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
551               "Adding known peer (%s) to bloomfilter for FIND PEER with mutation %u\n",
552               GNUNET_h2s (key), ctx->bf_mutator);
553   GNUNET_CONTAINER_bloomfilter_add (ctx->bloom, &mh);
554   return GNUNET_YES;
555 }
556
557
558 /**
559  * Task to send a find peer message for our own peer identifier
560  * so that we can find the closest peers in the network to ourselves
561  * and attempt to connect to them.
562  *
563  * @param cls closure for this task
564  * @param tc the context under which the task is running
565  */
566 static void
567 send_find_peer_message (void *cls,
568                         const struct GNUNET_SCHEDULER_TaskContext *tc)
569 {
570   struct GNUNET_TIME_Relative next_send_time;
571   struct BloomConstructorContext bcc;
572   struct GNUNET_CONTAINER_BloomFilter *peer_bf;
573
574   find_peer_task = GNUNET_SCHEDULER_NO_TASK;
575   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
576     return;
577   if (newly_found_peers > bucket_size)
578   {
579     /* If we are finding many peers already, no need to send out our request right now! */
580     find_peer_task =
581         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
582                                       &send_find_peer_message, NULL);
583     newly_found_peers = 0;
584     return;
585   }
586   bcc.bf_mutator =
587       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, UINT32_MAX);
588   bcc.bloom =
589       GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE,
590                                          GNUNET_CONSTANTS_BLOOMFILTER_K);
591   GNUNET_CONTAINER_multihashmap_iterate (all_known_peers, &add_known_to_bloom,
592                                          &bcc);
593   GNUNET_STATISTICS_update (GDS_stats,
594                             gettext_noop ("# FIND PEER messages initiated"), 1,
595                             GNUNET_NO);
596   peer_bf =
597       GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE,
598                                          GNUNET_CONSTANTS_BLOOMFILTER_K);
599   // FIXME: pass priority!?
600   GDS_NEIGHBOURS_handle_get (GNUNET_BLOCK_TYPE_DHT_HELLO,
601                              GNUNET_DHT_RO_FIND_PEER,
602                              FIND_PEER_REPLICATION_LEVEL, 0,
603                              &my_identity.hashPubKey, NULL, 0, bcc.bloom,
604                              bcc.bf_mutator, peer_bf);
605   GNUNET_CONTAINER_bloomfilter_free (peer_bf);
606   GNUNET_CONTAINER_bloomfilter_free (bcc.bloom);
607   /* schedule next round */
608   next_send_time.rel_value =
609       DHT_MINIMUM_FIND_PEER_INTERVAL.rel_value +
610       GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
611                                 DHT_MAXIMUM_FIND_PEER_INTERVAL.rel_value /
612                                 (newly_found_peers + 1));
613   newly_found_peers = 0;
614   find_peer_task =
615       GNUNET_SCHEDULER_add_delayed (next_send_time, &send_find_peer_message,
616                                     NULL);
617 }
618
619
620 /**
621  * Method called whenever a peer connects.
622  *
623  * @param cls closure
624  * @param peer peer identity this notification is about
625  */
626 static void
627 handle_core_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
628 {
629   struct PeerInfo *ret;
630   int peer_bucket;
631
632   /* Check for connect to self message */
633   if (0 == memcmp (&my_identity, peer, sizeof (struct GNUNET_PeerIdentity)))
634     return;
635   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connected %s to %s\n",
636               GNUNET_i2s (&my_identity), GNUNET_h2s (&peer->hashPubKey));
637   if (GNUNET_YES ==
638       GNUNET_CONTAINER_multihashmap_contains (all_known_peers,
639                                               &peer->hashPubKey))
640   {
641     GNUNET_break (0);
642     return;
643   }
644   GNUNET_STATISTICS_update (GDS_stats, gettext_noop ("# peers connected"), 1,
645                             GNUNET_NO);
646   peer_bucket = find_bucket (&peer->hashPubKey);
647   GNUNET_assert ((peer_bucket >= 0) && (peer_bucket < MAX_BUCKETS));
648   ret = GNUNET_malloc (sizeof (struct PeerInfo));
649 #if 0
650   ret->latency = latency;
651   ret->distance = distance;
652 #endif
653   ret->id = *peer;
654   GNUNET_CONTAINER_DLL_insert_tail (k_buckets[peer_bucket].head,
655                                     k_buckets[peer_bucket].tail, ret);
656   k_buckets[peer_bucket].peers_size++;
657   closest_bucket = GNUNET_MAX (closest_bucket, peer_bucket);
658   if ((peer_bucket > 0) && (k_buckets[peer_bucket].peers_size <= bucket_size))
659   {
660     ret->preference_task =
661         GNUNET_SCHEDULER_add_now (&update_core_preference, ret);
662     newly_found_peers++;
663   }
664   GNUNET_assert (GNUNET_OK ==
665                  GNUNET_CONTAINER_multihashmap_put (all_known_peers,
666                                                     &peer->hashPubKey, ret,
667                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
668   if (1 == GNUNET_CONTAINER_multihashmap_size (all_known_peers) &&
669       (GNUNET_YES != disable_try_connect))
670   {
671     /* got a first connection, good time to start with FIND PEER requests... */
672     find_peer_task = GNUNET_SCHEDULER_add_now (&send_find_peer_message, NULL);
673   }
674 }
675
676
677 /**
678  * Method called whenever a peer disconnects.
679  *
680  * @param cls closure
681  * @param peer peer identity this notification is about
682  */
683 static void
684 handle_core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
685 {
686   struct PeerInfo *to_remove;
687   int current_bucket;
688   struct P2PPendingMessage *pos;
689   unsigned int discarded;
690
691   /* Check for disconnect from self message */
692   if (0 == memcmp (&my_identity, peer, sizeof (struct GNUNET_PeerIdentity)))
693     return;
694   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnected %s from %s\n",
695               GNUNET_i2s (&my_identity), GNUNET_h2s (&peer->hashPubKey));
696   to_remove =
697       GNUNET_CONTAINER_multihashmap_get (all_known_peers, &peer->hashPubKey);
698   if (NULL == to_remove)
699   {
700     GNUNET_break (0);
701     return;
702   }
703   GNUNET_STATISTICS_update (GDS_stats, gettext_noop ("# peers connected"), -1,
704                             GNUNET_NO);
705   GNUNET_assert (GNUNET_YES ==
706                  GNUNET_CONTAINER_multihashmap_remove (all_known_peers,
707                                                        &peer->hashPubKey,
708                                                        to_remove));
709   if (GNUNET_SCHEDULER_NO_TASK != to_remove->preference_task)
710   {
711     GNUNET_SCHEDULER_cancel (to_remove->preference_task);
712     to_remove->preference_task = GNUNET_SCHEDULER_NO_TASK;
713   }
714   current_bucket = find_bucket (&to_remove->id.hashPubKey);
715   GNUNET_assert (current_bucket >= 0);
716   GNUNET_CONTAINER_DLL_remove (k_buckets[current_bucket].head,
717                                k_buckets[current_bucket].tail, to_remove);
718   GNUNET_assert (k_buckets[current_bucket].peers_size > 0);
719   k_buckets[current_bucket].peers_size--;
720   while ((closest_bucket > 0) && (k_buckets[closest_bucket].peers_size == 0))
721     closest_bucket--;
722
723   if (to_remove->th != NULL)
724   {
725     GNUNET_CORE_notify_transmit_ready_cancel (to_remove->th);
726     to_remove->th = NULL;
727   }
728   discarded = 0;
729   while (NULL != (pos = to_remove->head))
730   {
731     GNUNET_CONTAINER_DLL_remove (to_remove->head, to_remove->tail, pos);
732     discarded++;
733     GNUNET_free (pos);
734   }
735   GNUNET_STATISTICS_update (GDS_stats,
736                             gettext_noop
737                             ("# Queued messages discarded (peer disconnected)"),
738                             discarded, GNUNET_NO);
739   GNUNET_free (to_remove);
740 }
741
742
743 /**
744  * Called when core is ready to send a message we asked for
745  * out to the destination.
746  *
747  * @param cls the 'struct PeerInfo' of the target peer
748  * @param size number of bytes available in buf
749  * @param buf where the callee should write the message
750  * @return number of bytes written to buf
751  */
752 static size_t
753 core_transmit_notify (void *cls, size_t size, void *buf)
754 {
755   struct PeerInfo *peer = cls;
756   char *cbuf = buf;
757   struct P2PPendingMessage *pending;
758   size_t off;
759   size_t msize;
760
761   peer->th = NULL;
762   while ((NULL != (pending = peer->head)) &&
763          (GNUNET_TIME_absolute_get_remaining (pending->timeout).rel_value == 0))
764   {
765     peer->pending_count--;
766     GNUNET_CONTAINER_DLL_remove (peer->head, peer->tail, pending);
767     GNUNET_free (pending);
768   }
769   if (pending == NULL)
770   {
771     /* no messages pending */
772     return 0;
773   }
774   if (buf == NULL)
775   {
776     peer->th =
777         GNUNET_CORE_notify_transmit_ready (coreAPI, GNUNET_NO,
778                                            pending->importance,
779                                            GNUNET_TIME_absolute_get_remaining
780                                            (pending->timeout), &peer->id,
781                                            ntohs (pending->msg->size),
782                                            &core_transmit_notify, peer);
783     GNUNET_break (NULL != peer->th);
784     return 0;
785   }
786   off = 0;
787   while ((NULL != (pending = peer->head)) &&
788          (size - off >= (msize = ntohs (pending->msg->size))))
789   {
790     GNUNET_STATISTICS_update (GDS_stats,
791                               gettext_noop
792                               ("# Bytes transmitted to other peers"), msize,
793                               GNUNET_NO);
794     memcpy (&cbuf[off], pending->msg, msize);
795     off += msize;
796     peer->pending_count--;
797     GNUNET_CONTAINER_DLL_remove (peer->head, peer->tail, pending);
798     GNUNET_free (pending);
799   }
800   if (peer->head != NULL)
801   {
802     peer->th =
803         GNUNET_CORE_notify_transmit_ready (coreAPI, GNUNET_NO,
804                                            pending->importance,
805                                            GNUNET_TIME_absolute_get_remaining
806                                            (pending->timeout), &peer->id, msize,
807                                            &core_transmit_notify, peer);
808     GNUNET_break (NULL != peer->th);
809   }
810   return off;
811 }
812
813
814 /**
815  * Transmit all messages in the peer's message queue.
816  *
817  * @param peer message queue to process
818  */
819 static void
820 process_peer_queue (struct PeerInfo *peer)
821 {
822   struct P2PPendingMessage *pending;
823
824   if (NULL == (pending = peer->head))
825     return;
826   if (NULL != peer->th)
827     return;
828   GNUNET_STATISTICS_update (GDS_stats,
829                             gettext_noop
830                             ("# Bytes of bandwidth requested from core"),
831                             ntohs (pending->msg->size), GNUNET_NO);
832   peer->th =
833       GNUNET_CORE_notify_transmit_ready (coreAPI, GNUNET_NO,
834                                          pending->importance,
835                                          GNUNET_TIME_absolute_get_remaining
836                                          (pending->timeout), &peer->id,
837                                          ntohs (pending->msg->size),
838                                          &core_transmit_notify, peer);
839   GNUNET_break (NULL != peer->th);
840 }
841
842
843 /**
844  * To how many peers should we (on average) forward the request to
845  * obtain the desired target_replication count (on average).
846  *
847  * @param hop_count number of hops the message has traversed
848  * @param target_replication the number of total paths desired
849  * @return Some number of peers to forward the message to
850  */
851 static unsigned int
852 get_forward_count (uint32_t hop_count, uint32_t target_replication)
853 {
854   uint32_t random_value;
855   uint32_t forward_count;
856   float target_value;
857
858   if (hop_count > GDS_NSE_get () * 4.0)
859   {
860     /* forcefully terminate */
861     return 0;
862   }
863   if (hop_count > GDS_NSE_get () * 2.0)
864   {
865     /* Once we have reached our ideal number of hops, only forward to 1 peer */
866     return 1;
867   }
868   /* bound by system-wide maximum */
869   target_replication =
870       GNUNET_MIN (MAXIMUM_REPLICATION_LEVEL, target_replication);
871   target_value =
872       1 + (target_replication - 1.0) / (GDS_NSE_get () +
873                                         ((float) (target_replication - 1.0) *
874                                          hop_count));
875   /* Set forward count to floor of target_value */
876   forward_count = (uint32_t) target_value;
877   /* Subtract forward_count (floor) from target_value (yields value between 0 and 1) */
878   target_value = target_value - forward_count;
879   random_value =
880       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, UINT32_MAX);
881   if (random_value < (target_value * UINT32_MAX))
882     forward_count++;
883   return forward_count;
884 }
885
886
887 /**
888  * Compute the distance between have and target as a 32-bit value.
889  * Differences in the lower bits must count stronger than differences
890  * in the higher bits.
891  *
892  * @return 0 if have==target, otherwise a number
893  *           that is larger as the distance between
894  *           the two hash codes increases
895  */
896 static unsigned int
897 get_distance (const struct GNUNET_HashCode * target, const struct GNUNET_HashCode * have)
898 {
899   unsigned int bucket;
900   unsigned int msb;
901   unsigned int lsb;
902   unsigned int i;
903
904   /* We have to represent the distance between two 2^9 (=512)-bit
905    * numbers as a 2^5 (=32)-bit number with "0" being used for the
906    * two numbers being identical; furthermore, we need to
907    * guarantee that a difference in the number of matching
908    * bits is always represented in the result.
909    *
910    * We use 2^32/2^9 numerical values to distinguish between
911    * hash codes that have the same LSB bit distance and
912    * use the highest 2^9 bits of the result to signify the
913    * number of (mis)matching LSB bits; if we have 0 matching
914    * and hence 512 mismatching LSB bits we return -1 (since
915    * 512 itself cannot be represented with 9 bits) */
916
917   /* first, calculate the most significant 9 bits of our
918    * result, aka the number of LSBs */
919   bucket = GNUNET_CRYPTO_hash_matching_bits (target, have);
920   /* bucket is now a value between 0 and 512 */
921   if (bucket == 512)
922     return 0;                   /* perfect match */
923   if (bucket == 0)
924     return (unsigned int) -1;   /* LSB differs; use max (if we did the bit-shifting
925                                  * below, we'd end up with max+1 (overflow)) */
926
927   /* calculate the most significant bits of the final result */
928   msb = (512 - bucket) << (32 - 9);
929   /* calculate the 32-9 least significant bits of the final result by
930    * looking at the differences in the 32-9 bits following the
931    * mismatching bit at 'bucket' */
932   lsb = 0;
933   for (i = bucket + 1;
934        (i < sizeof (struct GNUNET_HashCode) * 8) && (i < bucket + 1 + 32 - 9); i++)
935   {
936     if (GNUNET_CRYPTO_hash_get_bit (target, i) !=
937         GNUNET_CRYPTO_hash_get_bit (have, i))
938       lsb |= (1 << (bucket + 32 - 9 - i));      /* first bit set will be 10,
939                                                  * last bit set will be 31 -- if
940                                                  * i does not reach 512 first... */
941   }
942   return msb | lsb;
943 }
944
945
946 /**
947  * Check whether my identity is closer than any known peers.  If a
948  * non-null bloomfilter is given, check if this is the closest peer
949  * that hasn't already been routed to.
950  *
951  * @param key hash code to check closeness to
952  * @param bloom bloomfilter, exclude these entries from the decision
953  * @return GNUNET_YES if node location is closest,
954  *         GNUNET_NO otherwise.
955  */
956 static int
957 am_closest_peer (const struct GNUNET_HashCode * key,
958                  const struct GNUNET_CONTAINER_BloomFilter *bloom)
959 {
960   int bits;
961   int other_bits;
962   int bucket_num;
963   int count;
964   struct PeerInfo *pos;
965
966   if (0 == memcmp (&my_identity.hashPubKey, key, sizeof (struct GNUNET_HashCode)))
967     return GNUNET_YES;
968   bucket_num = find_bucket (key);
969   GNUNET_assert (bucket_num >= 0);
970   bits = GNUNET_CRYPTO_hash_matching_bits (&my_identity.hashPubKey, key);
971   pos = k_buckets[bucket_num].head;
972   count = 0;
973   while ((pos != NULL) && (count < bucket_size))
974   {
975     if ((bloom != NULL) &&
976         (GNUNET_YES ==
977          GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)))
978     {
979       pos = pos->next;
980       continue;                 /* Skip already checked entries */
981     }
982     other_bits = GNUNET_CRYPTO_hash_matching_bits (&pos->id.hashPubKey, key);
983     if (other_bits > bits)
984       return GNUNET_NO;
985     if (other_bits == bits)     /* We match the same number of bits */
986       return GNUNET_YES;
987     pos = pos->next;
988   }
989   /* No peers closer, we are the closest! */
990   return GNUNET_YES;
991 }
992
993
994 /**
995  * Select a peer from the routing table that would be a good routing
996  * destination for sending a message for "key".  The resulting peer
997  * must not be in the set of blocked peers.<p>
998  *
999  * Note that we should not ALWAYS select the closest peer to the
1000  * target, peers further away from the target should be chosen with
1001  * exponentially declining probability.
1002  *
1003  * FIXME: double-check that this is fine
1004  *
1005  *
1006  * @param key the key we are selecting a peer to route to
1007  * @param bloom a bloomfilter containing entries this request has seen already
1008  * @param hops how many hops has this message traversed thus far
1009  * @return Peer to route to, or NULL on error
1010  */
1011 static struct PeerInfo *
1012 select_peer (const struct GNUNET_HashCode * key,
1013              const struct GNUNET_CONTAINER_BloomFilter *bloom, uint32_t hops)
1014 {
1015   unsigned int bc;
1016   unsigned int count;
1017   unsigned int selected;
1018   struct PeerInfo *pos;
1019   unsigned int dist;
1020   unsigned int smallest_distance;
1021   struct PeerInfo *chosen;
1022
1023   if (hops >= GDS_NSE_get ())
1024   {
1025     /* greedy selection (closest peer that is not in bloomfilter) */
1026     smallest_distance = UINT_MAX;
1027     chosen = NULL;
1028     for (bc = 0; bc <= closest_bucket; bc++)
1029     {
1030       pos = k_buckets[bc].head;
1031       count = 0;
1032       while ((pos != NULL) && (count < bucket_size))
1033       {
1034         if ((bloom == NULL) ||
1035             (GNUNET_NO ==
1036              GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)))
1037         {
1038           dist = get_distance (key, &pos->id.hashPubKey);
1039           if (dist < smallest_distance)
1040           {
1041             chosen = pos;
1042             smallest_distance = dist;
1043           }
1044         }
1045         else
1046         {
1047           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1048                       "Excluded peer `%s' due to BF match in greedy routing for %s\n",
1049                       GNUNET_i2s (&pos->id), GNUNET_h2s (key));
1050           GNUNET_STATISTICS_update (GDS_stats,
1051                                     gettext_noop
1052                                     ("# Peers excluded from routing due to Bloomfilter"),
1053                                     1, GNUNET_NO);
1054           dist = get_distance (key, &pos->id.hashPubKey);
1055           if (dist < smallest_distance)
1056           {
1057             chosen = NULL;
1058             smallest_distance = dist;
1059           }
1060         }
1061         count++;
1062         pos = pos->next;
1063       }
1064     }
1065     if (NULL == chosen)
1066       GNUNET_STATISTICS_update (GDS_stats,
1067                                 gettext_noop ("# Peer selection failed"), 1,
1068                                 GNUNET_NO);
1069     return chosen;
1070   }
1071
1072   /* select "random" peer */
1073   /* count number of peers that are available and not filtered */
1074   count = 0;
1075   for (bc = 0; bc <= closest_bucket; bc++)
1076   {
1077     pos = k_buckets[bc].head;
1078     while ((pos != NULL) && (count < bucket_size))
1079     {
1080       if ((bloom != NULL) &&
1081           (GNUNET_YES ==
1082            GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)))
1083       {
1084         GNUNET_STATISTICS_update (GDS_stats,
1085                                   gettext_noop
1086                                   ("# Peers excluded from routing due to Bloomfilter"),
1087                                   1, GNUNET_NO);
1088         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1089                     "Excluded peer `%s' due to BF match in random routing for %s\n",
1090                     GNUNET_i2s (&pos->id), GNUNET_h2s (key));
1091         pos = pos->next;
1092         continue;               /* Ignore bloomfiltered peers */
1093       }
1094       count++;
1095       pos = pos->next;
1096     }
1097   }
1098   if (0 == count)               /* No peers to select from! */
1099   {
1100     GNUNET_STATISTICS_update (GDS_stats,
1101                               gettext_noop ("# Peer selection failed"), 1,
1102                               GNUNET_NO);
1103     return NULL;
1104   }
1105   /* Now actually choose a peer */
1106   selected = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, count);
1107   count = 0;
1108   for (bc = 0; bc <= closest_bucket; bc++)
1109   {
1110     for (pos = k_buckets[bc].head; ((pos != NULL) && (count < bucket_size)); pos = pos->next)
1111     {
1112       if ((bloom != NULL) &&
1113           (GNUNET_YES ==
1114            GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)))
1115       {
1116         continue;               /* Ignore bloomfiltered peers */
1117       }
1118       if (0 == selected--)
1119         return pos;
1120     }
1121   }
1122   GNUNET_break (0);
1123   return NULL;
1124 }
1125
1126
1127 /**
1128  * Compute the set of peers that the given request should be
1129  * forwarded to.
1130  *
1131  * @param key routing key
1132  * @param bloom bloom filter excluding peers as targets, all selected
1133  *        peers will be added to the bloom filter
1134  * @param hop_count number of hops the request has traversed so far
1135  * @param target_replication desired number of replicas
1136  * @param targets where to store an array of target peers (to be
1137  *         free'd by the caller)
1138  * @return number of peers returned in 'targets'.
1139  */
1140 static unsigned int
1141 get_target_peers (const struct GNUNET_HashCode *key,
1142                   struct GNUNET_CONTAINER_BloomFilter *bloom,
1143                   uint32_t hop_count, uint32_t target_replication,
1144                   struct PeerInfo ***targets)
1145 {
1146   unsigned int ret;
1147   unsigned int off;
1148   struct PeerInfo **rtargets;
1149   struct PeerInfo *nxt;
1150
1151   GNUNET_assert (NULL != bloom);
1152   ret = get_forward_count (hop_count, target_replication);  
1153   if (0 == ret)
1154   {
1155     *targets = NULL;
1156     return 0;
1157   }
1158   rtargets = GNUNET_malloc (sizeof (struct PeerInfo *) * ret);
1159   for (off = 0; off < ret; off++)
1160   {
1161     nxt = select_peer (key, bloom, hop_count);
1162     if (NULL == nxt)
1163       break;
1164     rtargets[off] = nxt;
1165     GNUNET_break (GNUNET_NO ==
1166                   GNUNET_CONTAINER_bloomfilter_test (bloom,
1167                                                      &nxt->id.hashPubKey));
1168     GNUNET_CONTAINER_bloomfilter_add (bloom, &rtargets[off]->id.hashPubKey);
1169   }
1170   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1171               "Selected %u/%u peers at hop %u for %s (target was %u)\n", off,
1172               GNUNET_CONTAINER_multihashmap_size (all_known_peers),
1173               (unsigned int) hop_count, GNUNET_h2s (key), ret);
1174   if (0 == off)
1175   {
1176     GNUNET_free (rtargets);
1177     *targets = NULL;
1178     return 0;
1179   }
1180   *targets = rtargets;
1181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1182               "Forwarding query `%s' to %u peers (goal was %u peers)\n",
1183               GNUNET_h2s (key), 
1184               off,
1185               ret);
1186   return off;
1187 }
1188
1189
1190 /**
1191  * Perform a PUT operation.   Forwards the given request to other
1192  * peers.   Does not store the data locally.  Does not give the
1193  * data to local clients.  May do nothing if this is the only
1194  * peer in the network (or if we are the closest peer in the
1195  * network).
1196  *
1197  * @param type type of the block
1198  * @param options routing options
1199  * @param desired_replication_level desired replication count
1200  * @param expiration_time when does the content expire
1201  * @param hop_count how many hops has this message traversed so far
1202  * @param bf Bloom filter of peers this PUT has already traversed
1203  * @param key key for the content
1204  * @param put_path_length number of entries in put_path
1205  * @param put_path peers this request has traversed so far (if tracked)
1206  * @param data payload to store
1207  * @param data_size number of bytes in data
1208  */
1209 void
1210 GDS_NEIGHBOURS_handle_put (enum GNUNET_BLOCK_Type type,
1211                            enum GNUNET_DHT_RouteOption options,
1212                            uint32_t desired_replication_level,
1213                            struct GNUNET_TIME_Absolute expiration_time,
1214                            uint32_t hop_count,
1215                            struct GNUNET_CONTAINER_BloomFilter *bf,
1216                            const struct GNUNET_HashCode * key,
1217                            unsigned int put_path_length,
1218                            struct GNUNET_PeerIdentity *put_path,
1219                            const void *data, size_t data_size)
1220 {
1221   unsigned int target_count;
1222   unsigned int i;
1223   struct PeerInfo **targets;
1224   struct PeerInfo *target;
1225   struct P2PPendingMessage *pending;
1226   size_t msize;
1227   struct PeerPutMessage *ppm;
1228   struct GNUNET_PeerIdentity *pp;
1229
1230   GNUNET_assert (NULL != bf);
1231   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1232               "Adding myself (%s) to PUT bloomfilter for %s\n",
1233               GNUNET_i2s (&my_identity), GNUNET_h2s (key));
1234   GNUNET_CONTAINER_bloomfilter_add (bf, &my_identity.hashPubKey);
1235   GNUNET_STATISTICS_update (GDS_stats, gettext_noop ("# PUT requests routed"),
1236                             1, GNUNET_NO);
1237   target_count =
1238       get_target_peers (key, bf, hop_count, desired_replication_level,
1239                         &targets);
1240   if (0 == target_count)
1241   {
1242     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1243                 "Routing PUT for %s terminates after %u hops at %s\n",
1244                 GNUNET_h2s (key), (unsigned int) hop_count,
1245                 GNUNET_i2s (&my_identity));
1246     return;
1247   }
1248   msize =
1249       put_path_length * sizeof (struct GNUNET_PeerIdentity) + data_size +
1250       sizeof (struct PeerPutMessage);
1251   if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1252   {
1253     put_path_length = 0;
1254     msize = data_size + sizeof (struct PeerPutMessage);
1255   }
1256   if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1257   {
1258     GNUNET_break (0);
1259     GNUNET_free (targets);
1260     return;
1261   }
1262   GNUNET_STATISTICS_update (GDS_stats,
1263                             gettext_noop
1264                             ("# PUT messages queued for transmission"),
1265                             target_count, GNUNET_NO);
1266   for (i = 0; i < target_count; i++)
1267   {
1268     target = targets[i];
1269     if (target->pending_count >= MAXIMUM_PENDING_PER_PEER)
1270     {
1271       GNUNET_STATISTICS_update (GDS_stats, gettext_noop ("# P2P messages dropped due to full queue"),
1272                                 1, GNUNET_NO);
1273       continue; /* skip */
1274     }
1275     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1276                 "Routing PUT for %s after %u hops to %s\n", GNUNET_h2s (key),
1277                 (unsigned int) hop_count, GNUNET_i2s (&target->id));
1278     pending = GNUNET_malloc (sizeof (struct P2PPendingMessage) + msize);
1279     pending->importance = 0;    /* FIXME */
1280     pending->timeout = expiration_time;
1281     ppm = (struct PeerPutMessage *) &pending[1];
1282     pending->msg = &ppm->header;
1283     ppm->header.size = htons (msize);
1284     ppm->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_P2P_PUT);
1285     ppm->options = htonl (options);
1286     ppm->type = htonl (type);
1287     ppm->hop_count = htonl (hop_count + 1);
1288     ppm->desired_replication_level = htonl (desired_replication_level);
1289     ppm->put_path_length = htonl (put_path_length);
1290     ppm->expiration_time = GNUNET_TIME_absolute_hton (expiration_time);
1291     GNUNET_break (GNUNET_YES ==
1292                   GNUNET_CONTAINER_bloomfilter_test (bf,
1293                                                      &target->id.hashPubKey));
1294     GNUNET_assert (GNUNET_OK ==
1295                    GNUNET_CONTAINER_bloomfilter_get_raw_data (bf,
1296                                                               ppm->bloomfilter,
1297                                                               DHT_BLOOM_SIZE));
1298     ppm->key = *key;
1299     pp = (struct GNUNET_PeerIdentity *) &ppm[1];
1300     memcpy (pp, put_path,
1301             sizeof (struct GNUNET_PeerIdentity) * put_path_length);
1302     memcpy (&pp[put_path_length], data, data_size);
1303     GNUNET_CONTAINER_DLL_insert_tail (target->head, target->tail, pending);
1304     target->pending_count++;
1305     process_peer_queue (target);
1306   }
1307   GNUNET_free (targets);
1308 }
1309
1310
1311 /**
1312  * Perform a GET operation.  Forwards the given request to other
1313  * peers.  Does not lookup the key locally.  May do nothing if this is
1314  * the only peer in the network (or if we are the closest peer in the
1315  * network).
1316  *
1317  * @param type type of the block
1318  * @param options routing options
1319  * @param desired_replication_level desired replication count
1320  * @param hop_count how many hops did this request traverse so far?
1321  * @param key key for the content
1322  * @param xquery extended query
1323  * @param xquery_size number of bytes in xquery
1324  * @param reply_bf bloomfilter to filter duplicates
1325  * @param reply_bf_mutator mutator for reply_bf
1326  * @param peer_bf filter for peers not to select (again)
1327  */
1328 void
1329 GDS_NEIGHBOURS_handle_get (enum GNUNET_BLOCK_Type type,
1330                            enum GNUNET_DHT_RouteOption options,
1331                            uint32_t desired_replication_level,
1332                            uint32_t hop_count, const struct GNUNET_HashCode * key,
1333                            const void *xquery, size_t xquery_size,
1334                            const struct GNUNET_CONTAINER_BloomFilter *reply_bf,
1335                            uint32_t reply_bf_mutator,
1336                            struct GNUNET_CONTAINER_BloomFilter *peer_bf)
1337 {
1338   unsigned int target_count;
1339   unsigned int i;
1340   struct PeerInfo **targets;
1341   struct PeerInfo *target;
1342   struct P2PPendingMessage *pending;
1343   size_t msize;
1344   struct PeerGetMessage *pgm;
1345   char *xq;
1346   size_t reply_bf_size;
1347
1348   GNUNET_assert (NULL != peer_bf);
1349   GNUNET_STATISTICS_update (GDS_stats, gettext_noop ("# GET requests routed"),
1350                             1, GNUNET_NO);
1351   target_count =
1352       get_target_peers (key, peer_bf, hop_count, desired_replication_level,
1353                         &targets);
1354   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1355               "Adding myself (%s) to GET bloomfilter for %s\n",
1356               GNUNET_i2s (&my_identity), GNUNET_h2s (key));
1357   GNUNET_CONTAINER_bloomfilter_add (peer_bf, &my_identity.hashPubKey);
1358   if (0 == target_count)
1359   {
1360     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1361                 "Routing GET for %s terminates after %u hops at %s\n",
1362                 GNUNET_h2s (key), (unsigned int) hop_count,
1363                 GNUNET_i2s (&my_identity));
1364     return;
1365   }
1366   reply_bf_size = GNUNET_CONTAINER_bloomfilter_get_size (reply_bf);
1367   msize = xquery_size + sizeof (struct PeerGetMessage) + reply_bf_size;
1368   if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1369   {
1370     GNUNET_break (0);
1371     GNUNET_free (targets);
1372     return;
1373   }
1374   GNUNET_STATISTICS_update (GDS_stats,
1375                             gettext_noop
1376                             ("# GET messages queued for transmission"),
1377                             target_count, GNUNET_NO);
1378   /* forward request */
1379   for (i = 0; i < target_count; i++)
1380   {
1381     target = targets[i];
1382     if (target->pending_count >= MAXIMUM_PENDING_PER_PEER)
1383     {
1384       GNUNET_STATISTICS_update (GDS_stats, gettext_noop ("# P2P messages dropped due to full queue"),
1385                                 1, GNUNET_NO);
1386       continue; /* skip */
1387     }
1388     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1389                 "Routing GET for %s after %u hops to %s\n", GNUNET_h2s (key),
1390                 (unsigned int) hop_count, GNUNET_i2s (&target->id));
1391     pending = GNUNET_malloc (sizeof (struct P2PPendingMessage) + msize);
1392     pending->importance = 0;    /* FIXME */
1393     pending->timeout = GNUNET_TIME_relative_to_absolute (GET_TIMEOUT);
1394     pgm = (struct PeerGetMessage *) &pending[1];
1395     pending->msg = &pgm->header;
1396     pgm->header.size = htons (msize);
1397     pgm->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_P2P_GET);
1398     pgm->options = htonl (options);
1399     pgm->type = htonl (type);
1400     pgm->hop_count = htonl (hop_count + 1);
1401     pgm->desired_replication_level = htonl (desired_replication_level);
1402     pgm->xquery_size = htonl (xquery_size);
1403     pgm->bf_mutator = reply_bf_mutator;
1404     GNUNET_break (GNUNET_YES ==
1405                   GNUNET_CONTAINER_bloomfilter_test (peer_bf,
1406                                                      &target->id.hashPubKey));
1407     GNUNET_assert (GNUNET_OK ==
1408                    GNUNET_CONTAINER_bloomfilter_get_raw_data (peer_bf,
1409                                                               pgm->bloomfilter,
1410                                                               DHT_BLOOM_SIZE));
1411     pgm->key = *key;
1412     xq = (char *) &pgm[1];
1413     memcpy (xq, xquery, xquery_size);
1414     if (NULL != reply_bf)
1415       GNUNET_assert (GNUNET_OK ==
1416                      GNUNET_CONTAINER_bloomfilter_get_raw_data (reply_bf,
1417                                                                 &xq
1418                                                                 [xquery_size],
1419                                                                 reply_bf_size));
1420     GNUNET_CONTAINER_DLL_insert_tail (target->head, target->tail, pending);
1421     target->pending_count++;
1422     process_peer_queue (target);
1423   }
1424   GNUNET_free (targets);
1425 }
1426
1427
1428 /**
1429  * Handle a reply (route to origin).  Only forwards the reply back to
1430  * the given peer.  Does not do local caching or forwarding to local
1431  * clients.
1432  *
1433  * @param target neighbour that should receive the block (if still connected)
1434  * @param type type of the block
1435  * @param expiration_time when does the content expire
1436  * @param key key for the content
1437  * @param put_path_length number of entries in put_path
1438  * @param put_path peers the original PUT traversed (if tracked)
1439  * @param get_path_length number of entries in put_path
1440  * @param get_path peers this reply has traversed so far (if tracked)
1441  * @param data payload of the reply
1442  * @param data_size number of bytes in data
1443  */
1444 void
1445 GDS_NEIGHBOURS_handle_reply (const struct GNUNET_PeerIdentity *target,
1446                              enum GNUNET_BLOCK_Type type,
1447                              struct GNUNET_TIME_Absolute expiration_time,
1448                              const struct GNUNET_HashCode * key,
1449                              unsigned int put_path_length,
1450                              const struct GNUNET_PeerIdentity *put_path,
1451                              unsigned int get_path_length,
1452                              const struct GNUNET_PeerIdentity *get_path,
1453                              const void *data, size_t data_size)
1454 {
1455   struct PeerInfo *pi;
1456   struct P2PPendingMessage *pending;
1457   size_t msize;
1458   struct PeerResultMessage *prm;
1459   struct GNUNET_PeerIdentity *paths;
1460
1461   msize =
1462       data_size + sizeof (struct PeerResultMessage) + (get_path_length +
1463                                                        put_path_length) *
1464       sizeof (struct GNUNET_PeerIdentity);
1465   if ((msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
1466       (get_path_length >
1467        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)) ||
1468       (put_path_length >
1469        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)) ||
1470       (data_size > GNUNET_SERVER_MAX_MESSAGE_SIZE))
1471   {
1472     GNUNET_break (0);
1473     return;
1474   }
1475   pi = GNUNET_CONTAINER_multihashmap_get (all_known_peers, &target->hashPubKey);
1476   if (NULL == pi)
1477   {
1478     /* peer disconnected in the meantime, drop reply */
1479     return;
1480   }
1481   if (pi->pending_count >= MAXIMUM_PENDING_PER_PEER)
1482   {
1483     /* skip */
1484     GNUNET_STATISTICS_update (GDS_stats, gettext_noop ("# P2P messages dropped due to full queue"),
1485                               1, GNUNET_NO);
1486     return;
1487   }
1488
1489   GNUNET_STATISTICS_update (GDS_stats,
1490                             gettext_noop
1491                             ("# RESULT messages queued for transmission"), 1,
1492                             GNUNET_NO);
1493   pending = GNUNET_malloc (sizeof (struct P2PPendingMessage) + msize);
1494   pending->importance = 0;      /* FIXME */
1495   pending->timeout = expiration_time;
1496   prm = (struct PeerResultMessage *) &pending[1];
1497   pending->msg = &prm->header;
1498   prm->header.size = htons (msize);
1499   prm->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_P2P_RESULT);
1500   prm->type = htonl (type);
1501   prm->put_path_length = htonl (put_path_length);
1502   prm->get_path_length = htonl (get_path_length);
1503   prm->expiration_time = GNUNET_TIME_absolute_hton (expiration_time);
1504   prm->key = *key;
1505   paths = (struct GNUNET_PeerIdentity *) &prm[1];
1506   memcpy (paths, put_path,
1507           put_path_length * sizeof (struct GNUNET_PeerIdentity));
1508   memcpy (&paths[put_path_length], get_path,
1509           get_path_length * sizeof (struct GNUNET_PeerIdentity));
1510   memcpy (&paths[put_path_length + get_path_length], data, data_size);
1511   GNUNET_CONTAINER_DLL_insert (pi->head, pi->tail, pending);
1512   pi->pending_count++;
1513   process_peer_queue (pi);
1514 }
1515
1516
1517 /**
1518  * To be called on core init/fail.
1519  *
1520  * @param cls service closure
1521  * @param server handle to the server for this service
1522  * @param identity the public identity of this peer
1523  */
1524 static void
1525 core_init (void *cls, struct GNUNET_CORE_Handle *server,
1526            const struct GNUNET_PeerIdentity *identity)
1527 {
1528   GNUNET_assert (server != NULL);
1529   my_identity = *identity;
1530 }
1531
1532
1533 /**
1534  * Core handler for p2p put requests.
1535  *
1536  * @param cls closure
1537  * @param peer sender of the request
1538  * @param message message
1539  * @param peer peer identity this notification is about
1540  * @return GNUNET_OK to keep the connection open,
1541  *         GNUNET_SYSERR to close it (signal serious error)
1542  */
1543 static int
1544 handle_dht_p2p_put (void *cls, const struct GNUNET_PeerIdentity *peer,
1545                     const struct GNUNET_MessageHeader *message)
1546 {
1547   const struct PeerPutMessage *put;
1548   const struct GNUNET_PeerIdentity *put_path;
1549   const void *payload;
1550   uint32_t putlen;
1551   uint16_t msize;
1552   size_t payload_size;
1553   enum GNUNET_DHT_RouteOption options;
1554   struct GNUNET_CONTAINER_BloomFilter *bf;
1555   struct GNUNET_HashCode test_key;
1556
1557   msize = ntohs (message->size);
1558   if (msize < sizeof (struct PeerPutMessage))
1559   {
1560     GNUNET_break_op (0);
1561     return GNUNET_YES;
1562   }
1563   put = (const struct PeerPutMessage *) message;
1564   putlen = ntohl (put->put_path_length);
1565   if ((msize <
1566        sizeof (struct PeerPutMessage) +
1567        putlen * sizeof (struct GNUNET_PeerIdentity)) ||
1568       (putlen >
1569        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)))
1570   {
1571     GNUNET_break_op (0);
1572     return GNUNET_YES;
1573   }
1574   GNUNET_STATISTICS_update (GDS_stats,
1575                             gettext_noop ("# P2P PUT requests received"), 1,
1576                             GNUNET_NO);
1577   put_path = (const struct GNUNET_PeerIdentity *) &put[1];
1578   payload = &put_path[putlen];
1579   options = ntohl (put->options);
1580   payload_size =
1581       msize - (sizeof (struct PeerPutMessage) +
1582                putlen * sizeof (struct GNUNET_PeerIdentity));
1583   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "PUT for `%s' from %s\n",
1584               GNUNET_h2s (&put->key), GNUNET_i2s (peer));
1585   if (GNUNET_YES == log_route_details_stderr)
1586   {
1587     char *tmp;
1588
1589     tmp = GNUNET_strdup (GNUNET_i2s (&my_identity));
1590     LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG, "XDHT PUT %s: %s->%s (%u, %u=>%u)\n", 
1591                  GNUNET_h2s (&put->key), GNUNET_i2s (peer), tmp,
1592                  ntohl(put->hop_count),
1593                  GNUNET_CRYPTO_hash_matching_bits (&peer->hashPubKey, &put->key),
1594                  GNUNET_CRYPTO_hash_matching_bits (&my_identity.hashPubKey, &put->key)
1595                 );
1596     GNUNET_free (tmp);
1597   }
1598   switch (GNUNET_BLOCK_get_key
1599           (GDS_block_context, ntohl (put->type), payload, payload_size,
1600            &test_key))
1601   {
1602   case GNUNET_YES:
1603     if (0 != memcmp (&test_key, &put->key, sizeof (struct GNUNET_HashCode)))
1604     {
1605       GNUNET_break_op (0);
1606       return GNUNET_YES;
1607     }
1608     break;
1609   case GNUNET_NO:
1610     GNUNET_break_op (0);
1611     return GNUNET_YES;
1612   case GNUNET_SYSERR:
1613     /* cannot verify, good luck */
1614     break;
1615   }
1616   if (ntohl (put->type) == GNUNET_BLOCK_TYPE_REGEX) /* FIXME: do for all tpyes */
1617   {
1618     switch (GNUNET_BLOCK_evaluate (GDS_block_context,
1619                                    ntohl (put->type),
1620                                    NULL,    /* query */
1621                                    NULL, 0, /* bloom filer */
1622                                    NULL, 0, /* xquery */
1623                                    payload, payload_size))
1624     {
1625     case GNUNET_BLOCK_EVALUATION_OK_MORE:
1626     case GNUNET_BLOCK_EVALUATION_OK_LAST:
1627       break;
1628
1629     case GNUNET_BLOCK_EVALUATION_OK_DUPLICATE:
1630     case GNUNET_BLOCK_EVALUATION_RESULT_INVALID:
1631     case GNUNET_BLOCK_EVALUATION_RESULT_IRRELEVANT:
1632     case GNUNET_BLOCK_EVALUATION_REQUEST_VALID:
1633     case GNUNET_BLOCK_EVALUATION_REQUEST_INVALID:
1634     case GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED:
1635     default:
1636       GNUNET_break_op (0);
1637       return GNUNET_OK;
1638     }
1639   }
1640
1641   bf = GNUNET_CONTAINER_bloomfilter_init (put->bloomfilter, DHT_BLOOM_SIZE,
1642                                           GNUNET_CONSTANTS_BLOOMFILTER_K);
1643   GNUNET_break_op (GNUNET_YES ==
1644                    GNUNET_CONTAINER_bloomfilter_test (bf, &peer->hashPubKey));
1645   {
1646     struct GNUNET_PeerIdentity pp[putlen + 1];
1647
1648     /* extend 'put path' by sender */
1649     if (0 != (options & GNUNET_DHT_RO_RECORD_ROUTE))
1650     {
1651       memcpy (pp, put_path, putlen * sizeof (struct GNUNET_PeerIdentity));
1652       pp[putlen] = *peer;
1653       putlen++;
1654     }
1655     else
1656       putlen = 0;
1657
1658     /* give to local clients */
1659     GDS_CLIENTS_handle_reply (GNUNET_TIME_absolute_ntoh (put->expiration_time),
1660                               &put->key, 0, NULL, putlen, pp, ntohl (put->type),
1661                               payload_size, payload);
1662     /* store locally */
1663     if ((0 != (options & GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE)) ||
1664         (am_closest_peer (&put->key, bf)))
1665       GDS_DATACACHE_handle_put (GNUNET_TIME_absolute_ntoh
1666                                 (put->expiration_time), &put->key, putlen, pp,
1667                                 ntohl (put->type), payload_size, payload);
1668     /* route to other peers */
1669     GDS_NEIGHBOURS_handle_put (ntohl (put->type), options,
1670                                ntohl (put->desired_replication_level),
1671                                GNUNET_TIME_absolute_ntoh (put->expiration_time),
1672                                ntohl (put->hop_count), bf, &put->key, putlen,
1673                                pp, payload, payload_size);
1674     /* notify monitoring clients */
1675     GDS_CLIENTS_process_put (options,
1676                              ntohl (put->type),
1677                              ntohl (put->hop_count),
1678                              ntohl (put->desired_replication_level),
1679                              putlen, pp,
1680                              GNUNET_TIME_absolute_ntoh (put->expiration_time),
1681                              &put->key,
1682                              payload,
1683                              payload_size);
1684   }
1685   GNUNET_CONTAINER_bloomfilter_free (bf);
1686   return GNUNET_YES;
1687 }
1688
1689
1690 /**
1691  * We have received a FIND PEER request.  Send matching
1692  * HELLOs back.
1693  *
1694  * @param sender sender of the FIND PEER request
1695  * @param key peers close to this key are desired
1696  * @param bf peers matching this bf are excluded
1697  * @param bf_mutator mutator for bf
1698  */
1699 static void
1700 handle_find_peer (const struct GNUNET_PeerIdentity *sender,
1701                   const struct GNUNET_HashCode * key,
1702                   struct GNUNET_CONTAINER_BloomFilter *bf, uint32_t bf_mutator)
1703 {
1704   int bucket_idx;
1705   struct PeerBucket *bucket;
1706   struct PeerInfo *peer;
1707   unsigned int choice;
1708   struct GNUNET_HashCode mhash;
1709   const struct GNUNET_HELLO_Message *hello;
1710
1711   /* first, check about our own HELLO */
1712   if (NULL != GDS_my_hello)
1713   {
1714     GNUNET_BLOCK_mingle_hash (&my_identity.hashPubKey, bf_mutator, &mhash);
1715     if ((NULL == bf) ||
1716         (GNUNET_YES != GNUNET_CONTAINER_bloomfilter_test (bf, &mhash)))
1717     {
1718       GDS_NEIGHBOURS_handle_reply (sender, GNUNET_BLOCK_TYPE_DHT_HELLO,
1719                                    GNUNET_TIME_relative_to_absolute
1720                                    (hello_expiration),
1721                                    key, 0, NULL, 0, NULL, GDS_my_hello,
1722                                    GNUNET_HELLO_size ((const struct
1723                                                        GNUNET_HELLO_Message *)
1724                                                       GDS_my_hello));
1725     }
1726     else
1727     {
1728       GNUNET_STATISTICS_update (GDS_stats,
1729                                 gettext_noop
1730                                 ("# FIND PEER requests ignored due to Bloomfilter"),
1731                                 1, GNUNET_NO);
1732     }
1733   }
1734   else
1735   {
1736     GNUNET_STATISTICS_update (GDS_stats,
1737                               gettext_noop
1738                               ("# FIND PEER requests ignored due to lack of HELLO"),
1739                               1, GNUNET_NO);
1740   }
1741
1742   /* then, also consider sending a random HELLO from the closest bucket */
1743   if (0 == memcmp (&my_identity.hashPubKey, key, sizeof (struct GNUNET_HashCode)))
1744     bucket_idx = closest_bucket;
1745   else
1746     bucket_idx = GNUNET_MIN (closest_bucket, find_bucket (key));
1747   if (bucket_idx == GNUNET_SYSERR)
1748     return;
1749   bucket = &k_buckets[bucket_idx];
1750   if (bucket->peers_size == 0)
1751     return;
1752   choice =
1753       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, bucket->peers_size);
1754   peer = bucket->head;
1755   while (choice > 0)
1756   {
1757     GNUNET_assert (peer != NULL);
1758     peer = peer->next;
1759     choice--;
1760   }
1761   choice = bucket->peers_size;
1762   do
1763   {
1764     peer = peer->next;
1765     if (choice-- == 0)
1766       return;                   /* no non-masked peer available */
1767     if (peer == NULL)
1768       peer = bucket->head;
1769     GNUNET_BLOCK_mingle_hash (&peer->id.hashPubKey, bf_mutator, &mhash);
1770     hello = GDS_HELLO_get (&peer->id);
1771   }
1772   while ((hello == NULL) ||
1773          (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (bf, &mhash)));
1774   GDS_NEIGHBOURS_handle_reply (sender, GNUNET_BLOCK_TYPE_DHT_HELLO,
1775                                GNUNET_TIME_relative_to_absolute
1776                                (GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION), key,
1777                                0, NULL, 0, NULL, hello,
1778                                GNUNET_HELLO_size (hello));
1779 }
1780
1781
1782 /**
1783  * Core handler for p2p get requests.
1784  *
1785  * @param cls closure
1786  * @param peer sender of the request
1787  * @param message message
1788  * @return GNUNET_OK to keep the connection open,
1789  *         GNUNET_SYSERR to close it (signal serious error)
1790  */
1791 static int
1792 handle_dht_p2p_get (void *cls, const struct GNUNET_PeerIdentity *peer,
1793                     const struct GNUNET_MessageHeader *message)
1794 {
1795   struct PeerGetMessage *get;
1796   uint32_t xquery_size;
1797   size_t reply_bf_size;
1798   uint16_t msize;
1799   enum GNUNET_BLOCK_Type type;
1800   enum GNUNET_DHT_RouteOption options;
1801   enum GNUNET_BLOCK_EvaluationResult eval;
1802   struct GNUNET_CONTAINER_BloomFilter *reply_bf;
1803   struct GNUNET_CONTAINER_BloomFilter *peer_bf;
1804   const char *xquery;
1805
1806   GNUNET_break (0 !=
1807                 memcmp (peer, &my_identity,
1808                         sizeof (struct GNUNET_PeerIdentity)));
1809   /* parse and validate message */
1810   msize = ntohs (message->size);
1811   if (msize < sizeof (struct PeerGetMessage))
1812   {
1813     GNUNET_break_op (0);
1814     return GNUNET_YES;
1815   }
1816   get = (struct PeerGetMessage *) message;
1817   xquery_size = ntohl (get->xquery_size);
1818   if (msize < sizeof (struct PeerGetMessage) + xquery_size)
1819   {
1820     GNUNET_break_op (0);
1821     return GNUNET_YES;
1822   }
1823   reply_bf_size = msize - (sizeof (struct PeerGetMessage) + xquery_size);
1824   type = ntohl (get->type);
1825   options = ntohl (get->options);
1826   xquery = (const char *) &get[1];
1827   reply_bf = NULL;
1828   GNUNET_STATISTICS_update (GDS_stats,
1829                             gettext_noop ("# P2P GET requests received"), 1,
1830                             GNUNET_NO);
1831   if (GNUNET_YES == log_route_details_stderr)
1832   {
1833     char *tmp;
1834
1835     tmp = GNUNET_strdup (GNUNET_i2s (&my_identity));
1836     LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG,
1837                  "XDHT GET %s: %s->%s (%u, %u=>%u) xq: %.*s\n", 
1838                  GNUNET_h2s (&get->key), GNUNET_i2s (peer), tmp,
1839                  ntohl(get->hop_count),
1840                  GNUNET_CRYPTO_hash_matching_bits (&peer->hashPubKey, &get->key),
1841                  GNUNET_CRYPTO_hash_matching_bits (&my_identity.hashPubKey, &get->key),
1842                  ntohl(get->xquery_size), xquery
1843                 );
1844     GNUNET_free (tmp);
1845   }
1846
1847   if (reply_bf_size > 0)
1848     reply_bf =
1849         GNUNET_CONTAINER_bloomfilter_init (&xquery[xquery_size], reply_bf_size,
1850                                            GNUNET_CONSTANTS_BLOOMFILTER_K);
1851   eval =
1852       GNUNET_BLOCK_evaluate (GDS_block_context, type, &get->key, &reply_bf,
1853                              get->bf_mutator, xquery, xquery_size, NULL, 0);
1854   if (eval != GNUNET_BLOCK_EVALUATION_REQUEST_VALID)
1855   {
1856     /* request invalid or block type not supported */
1857     GNUNET_break_op (eval == GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED);
1858     if (NULL != reply_bf)
1859       GNUNET_CONTAINER_bloomfilter_free (reply_bf);
1860     return GNUNET_YES;
1861   }
1862   peer_bf =
1863       GNUNET_CONTAINER_bloomfilter_init (get->bloomfilter, DHT_BLOOM_SIZE,
1864                                          GNUNET_CONSTANTS_BLOOMFILTER_K);
1865   GNUNET_break_op (GNUNET_YES ==
1866                    GNUNET_CONTAINER_bloomfilter_test (peer_bf,
1867                                                       &peer->hashPubKey));
1868   /* remember request for routing replies */
1869   GDS_ROUTING_add (peer, type, options, &get->key, xquery, xquery_size,
1870                    reply_bf, get->bf_mutator);
1871   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "GET for %s at %s after %u hops\n",
1872               GNUNET_h2s (&get->key), GNUNET_i2s (&my_identity),
1873               (unsigned int) ntohl (get->hop_count));
1874   /* local lookup (this may update the reply_bf) */
1875   if ((0 != (options & GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE)) ||
1876       (am_closest_peer (&get->key, peer_bf)))
1877   {
1878     if ((0 != (options & GNUNET_DHT_RO_FIND_PEER)))
1879     {
1880       GNUNET_STATISTICS_update (GDS_stats,
1881                                 gettext_noop
1882                                 ("# P2P FIND PEER requests processed"), 1,
1883                                 GNUNET_NO);
1884       handle_find_peer (peer, &get->key, reply_bf, get->bf_mutator);
1885     }
1886     else
1887     {
1888       eval =
1889           GDS_DATACACHE_handle_get (&get->key, type, xquery, xquery_size,
1890                                     &reply_bf, get->bf_mutator);
1891     }
1892   }
1893   else
1894   {
1895     GNUNET_STATISTICS_update (GDS_stats,
1896                               gettext_noop ("# P2P GET requests ONLY routed"),
1897                               1, GNUNET_NO);
1898   }
1899
1900   GDS_CLIENTS_process_get (options,
1901                            type,
1902                            ntohl(get->hop_count),
1903                            ntohl(get->desired_replication_level),
1904                            0, NULL,
1905                            &get->key);
1906
1907   /* P2P forwarding */
1908   if (eval != GNUNET_BLOCK_EVALUATION_OK_LAST)
1909     GDS_NEIGHBOURS_handle_get (type, options,
1910                                ntohl (get->desired_replication_level),
1911                                ntohl (get->hop_count), &get->key, xquery,
1912                                xquery_size, reply_bf, get->bf_mutator, peer_bf);
1913   /* clean up */
1914   if (NULL != reply_bf)
1915     GNUNET_CONTAINER_bloomfilter_free (reply_bf);
1916   GNUNET_CONTAINER_bloomfilter_free (peer_bf);
1917   return GNUNET_YES;
1918 }
1919
1920
1921 /**
1922  * Core handler for p2p result messages.
1923  *
1924  * @param cls closure
1925  * @param message message
1926  * @param peer peer identity this notification is about
1927  * @return GNUNET_YES (do not cut p2p connection)
1928  */
1929 static int
1930 handle_dht_p2p_result (void *cls, const struct GNUNET_PeerIdentity *peer,
1931                        const struct GNUNET_MessageHeader *message)
1932 {
1933   const struct PeerResultMessage *prm;
1934   const struct GNUNET_PeerIdentity *put_path;
1935   const struct GNUNET_PeerIdentity *get_path;
1936   const void *data;
1937   uint32_t get_path_length;
1938   uint32_t put_path_length;
1939   uint16_t msize;
1940   size_t data_size;
1941   enum GNUNET_BLOCK_Type type;
1942
1943   /* parse and validate message */
1944   msize = ntohs (message->size);
1945   if (msize < sizeof (struct PeerResultMessage))
1946   {
1947     GNUNET_break_op (0);
1948     return GNUNET_YES;
1949   }
1950   prm = (struct PeerResultMessage *) message;
1951   put_path_length = ntohl (prm->put_path_length);
1952   get_path_length = ntohl (prm->get_path_length);
1953   if ((msize <
1954        sizeof (struct PeerResultMessage) + (get_path_length +
1955                                             put_path_length) *
1956        sizeof (struct GNUNET_PeerIdentity)) ||
1957       (get_path_length >
1958        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)) ||
1959       (put_path_length >
1960        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)))
1961   {
1962     GNUNET_break_op (0);
1963     return GNUNET_YES;
1964   }
1965   put_path = (const struct GNUNET_PeerIdentity *) &prm[1];
1966   get_path = &put_path[put_path_length];
1967   type = ntohl (prm->type);
1968   data = (const void *) &get_path[get_path_length];
1969   data_size =
1970       msize - (sizeof (struct PeerResultMessage) +
1971                (get_path_length +
1972                 put_path_length) * sizeof (struct GNUNET_PeerIdentity));
1973   GNUNET_STATISTICS_update (GDS_stats, gettext_noop ("# P2P RESULTS received"),
1974                             1, GNUNET_NO);
1975   if (GNUNET_YES == log_route_details_stderr)
1976   {
1977     char *tmp;
1978
1979     tmp = GNUNET_strdup (GNUNET_i2s (&my_identity));
1980     LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG, "XDHT RESULT %s: %s->%s (%u)\n", 
1981                  GNUNET_h2s (&prm->key), GNUNET_i2s (peer), tmp,
1982                  get_path_length + 1);
1983     GNUNET_free (tmp);
1984   }
1985   /* if we got a HELLO, consider it for our own routing table */
1986   if (type == GNUNET_BLOCK_TYPE_DHT_HELLO)
1987   {
1988     const struct GNUNET_MessageHeader *h;
1989     struct GNUNET_PeerIdentity pid;
1990     int bucket;
1991
1992     /* Should be a HELLO, validate and consider using it! */
1993     if (data_size < sizeof (struct GNUNET_MessageHeader))
1994     {
1995       GNUNET_break_op (0);
1996       return GNUNET_YES;
1997     }
1998     h = data;
1999     if (data_size != ntohs (h->size))
2000     {
2001       GNUNET_break_op (0);
2002       return GNUNET_YES;
2003     }
2004     if (GNUNET_OK !=
2005         GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *) h, &pid))
2006     {
2007       GNUNET_break_op (0);
2008       return GNUNET_YES;
2009     }
2010     if ((GNUNET_YES != disable_try_connect) &&
2011         0 != memcmp (&my_identity, &pid, sizeof (struct GNUNET_PeerIdentity)))
2012     {
2013       bucket = find_bucket (&pid.hashPubKey);
2014       if ((bucket >= 0) &&
2015           (k_buckets[bucket].peers_size < bucket_size) &&
2016           (NULL != GDS_transport_handle))
2017       {
2018         GNUNET_TRANSPORT_offer_hello (GDS_transport_handle, h, NULL, NULL);
2019         GNUNET_TRANSPORT_try_connect (GDS_transport_handle, &pid, NULL, NULL); /*FIXME TRY_CONNECT change */
2020       }
2021     }
2022   }
2023
2024   /* append 'peer' to 'get_path' */
2025   {
2026     struct GNUNET_PeerIdentity xget_path[get_path_length + 1];
2027
2028     memcpy (xget_path, get_path,
2029             get_path_length * sizeof (struct GNUNET_PeerIdentity));
2030     xget_path[get_path_length] = *peer;
2031     get_path_length++;
2032
2033     /* forward to local clients */
2034     GDS_CLIENTS_handle_reply (GNUNET_TIME_absolute_ntoh (prm->expiration_time),
2035                               &prm->key, get_path_length, xget_path,
2036                               put_path_length, put_path, type, data_size, data);
2037     GDS_CLIENTS_process_get_resp (type,
2038                                   xget_path, get_path_length,
2039                                   put_path, put_path_length,
2040                                   GNUNET_TIME_absolute_ntoh (
2041                                     prm->expiration_time),
2042                                   &prm->key,
2043                                   data,
2044                                   data_size);
2045
2046     /* forward to other peers */
2047     GDS_ROUTING_process (type, GNUNET_TIME_absolute_ntoh (prm->expiration_time),
2048                          &prm->key, put_path_length, put_path, get_path_length,
2049                          xget_path, data, data_size);
2050   }
2051
2052   return GNUNET_YES;
2053 }
2054
2055
2056 /**
2057  * Initialize neighbours subsystem.
2058  *
2059  * @return GNUNET_OK on success, GNUNET_SYSERR on error
2060  */
2061 int
2062 GDS_NEIGHBOURS_init ()
2063 {
2064   static struct GNUNET_CORE_MessageHandler core_handlers[] = {
2065     {&handle_dht_p2p_get, GNUNET_MESSAGE_TYPE_DHT_P2P_GET, 0},
2066     {&handle_dht_p2p_put, GNUNET_MESSAGE_TYPE_DHT_P2P_PUT, 0},
2067     {&handle_dht_p2p_result, GNUNET_MESSAGE_TYPE_DHT_P2P_RESULT, 0},
2068     {NULL, 0, 0}
2069   };
2070   unsigned long long temp_config_num;
2071
2072   disable_try_connect
2073     = GNUNET_CONFIGURATION_get_value_yesno (GDS_cfg, "DHT", "DISABLE_TRY_CONNECT");
2074   if (GNUNET_OK ==
2075       GNUNET_CONFIGURATION_get_value_number (GDS_cfg, "DHT", "bucket_size",
2076                                              &temp_config_num))
2077     bucket_size = (unsigned int) temp_config_num;
2078   log_route_details_stderr =
2079     (NULL != getenv("GNUNET_DHT_ROUTE_DEBUG")) ? GNUNET_YES : GNUNET_NO;
2080   atsAPI = GNUNET_ATS_performance_init (GDS_cfg, NULL, NULL);
2081   coreAPI =
2082       GNUNET_CORE_connect (GDS_cfg, NULL, &core_init, &handle_core_connect,
2083                            &handle_core_disconnect, NULL, GNUNET_NO, NULL,
2084                            GNUNET_NO, core_handlers);
2085   if (coreAPI == NULL)
2086     return GNUNET_SYSERR;
2087   all_known_peers = GNUNET_CONTAINER_multihashmap_create (256, GNUNET_NO);
2088   return GNUNET_OK;
2089 }
2090
2091
2092 /**
2093  * Shutdown neighbours subsystem.
2094  */
2095 void
2096 GDS_NEIGHBOURS_done ()
2097 {
2098   if (coreAPI == NULL)
2099     return;
2100   GNUNET_CORE_disconnect (coreAPI);
2101   coreAPI = NULL;
2102   GNUNET_ATS_performance_done (atsAPI);
2103   atsAPI = NULL;
2104   GNUNET_assert (0 == GNUNET_CONTAINER_multihashmap_size (all_known_peers));
2105   GNUNET_CONTAINER_multihashmap_destroy (all_known_peers);
2106   all_known_peers = NULL;
2107   if (GNUNET_SCHEDULER_NO_TASK != find_peer_task)
2108   {
2109     GNUNET_SCHEDULER_cancel (find_peer_task);
2110     find_peer_task = GNUNET_SCHEDULER_NO_TASK;
2111   }
2112 }
2113
2114 /**
2115  * Get the ID of the local node.
2116  * 
2117  * @return identity of the local node
2118  */
2119 struct GNUNET_PeerIdentity *
2120 GDS_NEIGHBOURS_get_id ()
2121 {
2122     return &my_identity;
2123 }
2124
2125
2126 /* end of gnunet-service-dht_neighbours.c */