2 This file is part of GNUnet.
3 (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
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.
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.
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.
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
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"
53 * How many buckets will we allow total.
55 #define MAX_BUCKETS sizeof (GNUNET_HashCode) * 8
58 * What is the maximum number of peers in a given bucket.
60 #define DEFAULT_BUCKET_SIZE 8
63 * Desired replication level for FIND PEER requests
65 #define FIND_PEER_REPLICATION_LEVEL 4
68 * Maximum allowed replication level for all requests.
70 #define MAXIMUM_REPLICATION_LEVEL 16
73 * How often to update our preference levels for peers in our routing tables.
75 #define DHT_DEFAULT_PREFERENCE_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 2)
78 * How long at least to wait before sending another find peer request.
80 #define DHT_MINIMUM_FIND_PEER_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30)
83 * How long at most to wait before sending another find peer request.
85 #define DHT_MAXIMUM_FIND_PEER_INTERVAL GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 10)
88 * How long at most to wait for transmission of a GET request to another peer?
90 #define GET_TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 2)
99 * Type: GNUNET_MESSAGE_TYPE_DHT_P2P_PUT
101 struct GNUNET_MessageHeader header;
106 uint32_t options GNUNET_PACKED;
111 uint32_t type GNUNET_PACKED;
116 uint32_t hop_count GNUNET_PACKED;
119 * Replication level for this message
121 uint32_t desired_replication_level GNUNET_PACKED;
124 * Length of the PUT path that follows (if tracked).
126 uint32_t put_path_length GNUNET_PACKED;
129 * When does the content expire?
131 struct GNUNET_TIME_AbsoluteNBO expiration_time;
134 * Bloomfilter (for peer identities) to stop circular routes
136 char bloomfilter[DHT_BLOOM_SIZE];
139 * The key we are storing under.
143 /* put path (if tracked) */
153 struct PeerResultMessage
156 * Type: GNUNET_MESSAGE_TYPE_DHT_P2P_RESULT
158 struct GNUNET_MessageHeader header;
163 uint32_t type GNUNET_PACKED;
166 * Length of the PUT path that follows (if tracked).
168 uint32_t put_path_length GNUNET_PACKED;
171 * Length of the GET path that follows (if tracked).
173 uint32_t get_path_length GNUNET_PACKED;
176 * When does the content expire?
178 struct GNUNET_TIME_AbsoluteNBO expiration_time;
181 * The key of the corresponding GET request.
185 /* put path (if tracked) */
187 /* get path (if tracked) */
197 struct PeerGetMessage
200 * Type: GNUNET_MESSAGE_TYPE_DHT_P2P_GET
202 struct GNUNET_MessageHeader header;
207 uint32_t options GNUNET_PACKED;
210 * Desired content type.
212 uint32_t type GNUNET_PACKED;
217 uint32_t hop_count GNUNET_PACKED;
220 * Desired replication level for this request.
222 uint32_t desired_replication_level GNUNET_PACKED;
225 * Size of the extended query.
227 uint32_t xquery_size;
230 * Bloomfilter mutator.
235 * Bloomfilter (for peer identities) to stop circular routes
237 char bloomfilter[DHT_BLOOM_SIZE];
240 * The key we are looking for.
246 /* result bloomfilter */
252 * Linked list of messages to send to a particular other peer.
254 struct P2PPendingMessage
257 * Pointer to next item in the list
259 struct P2PPendingMessage *next;
262 * Pointer to previous item in the list
264 struct P2PPendingMessage *prev;
267 * Message importance level. FIXME: used? useful?
269 unsigned int importance;
272 * When does this message time out?
274 struct GNUNET_TIME_Absolute timeout;
277 * Actual message to be sent, allocated at the end of the struct:
278 * // msg = (cast) &pm[1];
279 * // memcpy (&pm[1], data, len);
281 const struct GNUNET_MessageHeader *msg;
287 * Entry for a peer in a bucket.
292 * Next peer entry (DLL)
294 struct PeerInfo *next;
297 * Prev peer entry (DLL)
299 struct PeerInfo *prev;
302 * Count of outstanding messages for peer. FIXME: NEEDED?
303 * FIXME: bound queue size!?
305 unsigned int pending_count;
308 * Head of pending messages to be sent to this peer.
310 struct P2PPendingMessage *head;
313 * Tail of pending messages to be sent to this peer.
315 struct P2PPendingMessage *tail;
318 * Core handle for sending messages to this peer.
320 struct GNUNET_CORE_TransmitHandle *th;
323 * Task for scheduling preference updates
325 GNUNET_SCHEDULER_TaskIdentifier preference_task;
328 * What is the identity of the peer?
330 struct GNUNET_PeerIdentity id;
334 * What is the average latency for replies received?
336 struct GNUNET_TIME_Relative latency;
339 * Transport level distance to peer.
341 unsigned int distance;
348 * Peers are grouped into buckets.
355 struct PeerInfo *head;
360 struct PeerInfo *tail;
363 * Number of peers in the bucket.
365 unsigned int peers_size;
370 * The lowest currently used bucket, initially 0 (for 0-bits matching bucket).
372 static unsigned int closest_bucket;
375 * How many peers have we added since we sent out our last
378 static unsigned int newly_found_peers;
381 * The buckets. Array of size MAX_BUCKET_SIZE. Offset 0 means 0 bits matching.
383 static struct PeerBucket k_buckets[MAX_BUCKETS];
386 * Hash map of all known peers, for easy removal from k_buckets on disconnect.
388 static struct GNUNET_CONTAINER_MultiHashMap *all_known_peers;
391 * Maximum size for each bucket.
393 static unsigned int bucket_size = DEFAULT_BUCKET_SIZE;
396 * Task that sends FIND PEER requests.
398 static GNUNET_SCHEDULER_TaskIdentifier find_peer_task;
401 * Identity of this peer.
403 static struct GNUNET_PeerIdentity my_identity;
408 static struct GNUNET_CORE_Handle *coreAPI;
413 static struct GNUNET_ATS_PerformanceHandle *atsAPI;
418 * Find the optimal bucket for this key.
420 * @param hc the hashcode to compare our identity to
421 * @return the proper bucket index, or GNUNET_SYSERR
422 * on error (same hashcode)
425 find_bucket (const GNUNET_HashCode * hc)
429 bits = GNUNET_CRYPTO_hash_matching_bits (&my_identity.hashPubKey, hc);
430 if (bits == MAX_BUCKETS)
432 /* How can all bits match? Got my own ID? */
434 return GNUNET_SYSERR;
436 return MAX_BUCKETS - bits - 1;
441 * Let GNUnet core know that we like the given peer.
443 * @param cls the 'struct PeerInfo' of the peer
444 * @param tc scheduler context.
447 update_core_preference (void *cls,
448 const struct GNUNET_SCHEDULER_TaskContext *tc)
450 struct PeerInfo *peer = cls;
452 unsigned int matching;
455 peer->preference_task = GNUNET_SCHEDULER_NO_TASK;
456 if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
459 GNUNET_CRYPTO_hash_matching_bits (&my_identity.hashPubKey,
460 &peer->id.hashPubKey);
463 bucket = find_bucket (&peer->id.hashPubKey);
464 if (bucket == GNUNET_SYSERR)
468 GNUNET_assert (k_buckets[bucket].peers_size != 0);
469 preference = (1LL << matching) / k_buckets[bucket].peers_size;
473 peer->preference_task
474 = GNUNET_SCHEDULER_add_delayed (DHT_DEFAULT_PREFERENCE_INTERVAL,
475 &update_core_preference, peer);
478 GNUNET_STATISTICS_update (GDS_stats,
479 gettext_noop ("# Preference updates given to core"), 1,
481 GNUNET_ATS_change_preference (atsAPI, &peer->id,
482 GNUNET_ATS_PREFERENCE_BANDWIDTH,
484 GNUNET_ATS_PREFERENCE_END);
485 peer->preference_task
486 = GNUNET_SCHEDULER_add_delayed (DHT_DEFAULT_PREFERENCE_INTERVAL,
487 &update_core_preference, peer);
494 * Closure for 'add_known_to_bloom'.
496 struct BloomConstructorContext
499 * Bloom filter under construction.
501 struct GNUNET_CONTAINER_BloomFilter *bloom;
511 * Add each of the peers we already know to the bloom filter of
512 * the request so that we don't get duplicate HELLOs.
514 * @param cls the 'struct BloomConstructorContext'.
515 * @param key peer identity to add to the bloom filter
516 * @param value value the peer information (unused)
517 * @return GNUNET_YES (we should continue to iterate)
520 add_known_to_bloom (void *cls, const GNUNET_HashCode * key, void *value)
522 struct BloomConstructorContext *ctx = cls;
525 GNUNET_BLOCK_mingle_hash (key, ctx->bf_mutator, &mh);
526 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
527 "Adding known peer (%s) to bloomfilter for FIND PEER with mutation %u\n",
530 GNUNET_CONTAINER_bloomfilter_add (ctx->bloom, &mh);
536 * Task to send a find peer message for our own peer identifier
537 * so that we can find the closest peers in the network to ourselves
538 * and attempt to connect to them.
540 * @param cls closure for this task
541 * @param tc the context under which the task is running
544 send_find_peer_message (void *cls,
545 const struct GNUNET_SCHEDULER_TaskContext *tc)
547 struct GNUNET_TIME_Relative next_send_time;
548 struct BloomConstructorContext bcc;
549 struct GNUNET_CONTAINER_BloomFilter *peer_bf;
551 find_peer_task = GNUNET_SCHEDULER_NO_TASK;
552 if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
554 if (newly_found_peers > bucket_size)
556 /* If we are finding many peers already, no need to send out our request right now! */
557 find_peer_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
558 &send_find_peer_message, NULL);
559 newly_found_peers = 0;
562 bcc.bf_mutator = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, UINT32_MAX);
564 GNUNET_CONTAINER_bloomfilter_init (NULL, DHT_BLOOM_SIZE, GNUNET_CONSTANTS_BLOOMFILTER_K);
565 GNUNET_CONTAINER_multihashmap_iterate (all_known_peers,
568 GNUNET_STATISTICS_update (GDS_stats,
569 gettext_noop ("# FIND PEER messages initiated"), 1,
571 peer_bf = GNUNET_CONTAINER_bloomfilter_init (NULL,
573 GNUNET_CONSTANTS_BLOOMFILTER_K);
574 // FIXME: pass priority!?
575 GDS_NEIGHBOURS_handle_get (GNUNET_BLOCK_TYPE_DHT_HELLO,
576 GNUNET_DHT_RO_FIND_PEER,
577 FIND_PEER_REPLICATION_LEVEL,
579 &my_identity.hashPubKey,
581 bcc.bloom, bcc.bf_mutator,
583 GNUNET_CONTAINER_bloomfilter_free (peer_bf);
584 GNUNET_CONTAINER_bloomfilter_free (bcc.bloom);
585 /* schedule next round */
586 next_send_time.rel_value =
587 DHT_MINIMUM_FIND_PEER_INTERVAL.rel_value +
588 GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
589 DHT_MAXIMUM_FIND_PEER_INTERVAL.rel_value / (newly_found_peers+1));
590 newly_found_peers = 0;
591 find_peer_task = GNUNET_SCHEDULER_add_delayed (next_send_time,
592 &send_find_peer_message,
598 * Method called whenever a peer connects.
601 * @param peer peer identity this notification is about
602 * @param atsi performance data
603 * @param atsi_count number of records in 'atsi'
606 handle_core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
607 const struct GNUNET_ATS_Information *atsi,
608 unsigned int atsi_count)
610 struct PeerInfo *ret;
613 /* Check for connect to self message */
614 if (0 == memcmp (&my_identity, peer, sizeof (struct GNUNET_PeerIdentity)))
616 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
617 "Connected %s to %s\n",
618 GNUNET_i2s (&my_identity),
619 GNUNET_h2s (&peer->hashPubKey));
621 GNUNET_CONTAINER_multihashmap_contains (all_known_peers,
627 GNUNET_STATISTICS_update (GDS_stats,
628 gettext_noop ("# Peers connected"), 1,
630 peer_bucket = find_bucket (&peer->hashPubKey);
631 GNUNET_assert ( (peer_bucket >= 0) && (peer_bucket < MAX_BUCKETS) );
632 ret = GNUNET_malloc (sizeof (struct PeerInfo));
634 ret->latency = latency;
635 ret->distance = distance;
638 GNUNET_CONTAINER_DLL_insert_tail (k_buckets[peer_bucket].head,
639 k_buckets[peer_bucket].tail, ret);
640 k_buckets[peer_bucket].peers_size++;
641 closest_bucket = GNUNET_MAX (closest_bucket,
643 if ( (peer_bucket > 0) &&
644 (k_buckets[peer_bucket].peers_size <= bucket_size) )
646 ret->preference_task = GNUNET_SCHEDULER_add_now (&update_core_preference, ret);
649 GNUNET_assert (GNUNET_OK ==
650 GNUNET_CONTAINER_multihashmap_put (all_known_peers,
651 &peer->hashPubKey, ret,
652 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
653 if (1 == GNUNET_CONTAINER_multihashmap_size (all_known_peers))
655 /* got a first connection, good time to start with FIND PEER requests... */
656 find_peer_task = GNUNET_SCHEDULER_add_now (&send_find_peer_message,
663 * Method called whenever a peer disconnects.
666 * @param peer peer identity this notification is about
669 handle_core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
671 struct PeerInfo *to_remove;
673 struct P2PPendingMessage *pos;
674 unsigned int discarded;
676 /* Check for disconnect from self message */
677 if (0 == memcmp (&my_identity, peer, sizeof (struct GNUNET_PeerIdentity)))
679 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
680 "Disconnected %s from %s\n",
681 GNUNET_i2s (&my_identity),
682 GNUNET_h2s (&peer->hashPubKey));
684 GNUNET_CONTAINER_multihashmap_get (all_known_peers, &peer->hashPubKey);
685 if (NULL == to_remove)
690 GNUNET_STATISTICS_update (GDS_stats,
691 gettext_noop ("# Peers connected"), -1,
693 GNUNET_assert (GNUNET_YES ==
694 GNUNET_CONTAINER_multihashmap_remove (all_known_peers,
697 if (GNUNET_SCHEDULER_NO_TASK != to_remove->preference_task)
699 GNUNET_SCHEDULER_cancel (to_remove->preference_task);
700 to_remove->preference_task = GNUNET_SCHEDULER_NO_TASK;
702 current_bucket = find_bucket (&to_remove->id.hashPubKey);
703 GNUNET_assert (current_bucket >= 0);
704 GNUNET_CONTAINER_DLL_remove (k_buckets[current_bucket].head,
705 k_buckets[current_bucket].tail,
707 GNUNET_assert (k_buckets[current_bucket].peers_size > 0);
708 k_buckets[current_bucket].peers_size--;
709 while ( (closest_bucket > 0) &&
710 (k_buckets[closest_bucket].peers_size == 0) )
713 if (to_remove->th != NULL)
715 GNUNET_CORE_notify_transmit_ready_cancel (to_remove->th);
716 to_remove->th = NULL;
719 while (NULL != (pos = to_remove->head))
721 GNUNET_CONTAINER_DLL_remove (to_remove->head,
727 GNUNET_STATISTICS_update (GDS_stats,
728 gettext_noop ("# Queued messages discarded (peer disconnected)"), discarded,
730 GNUNET_free (to_remove);
735 * Called when core is ready to send a message we asked for
736 * out to the destination.
738 * @param cls the 'struct PeerInfo' of the target peer
739 * @param size number of bytes available in buf
740 * @param buf where the callee should write the message
741 * @return number of bytes written to buf
744 core_transmit_notify (void *cls, size_t size, void *buf)
746 struct PeerInfo *peer = cls;
748 struct P2PPendingMessage *pending;
753 while ( (NULL != (pending = peer->head)) &&
754 (GNUNET_TIME_absolute_get_remaining (pending->timeout).rel_value == 0) )
756 peer->pending_count--;
757 GNUNET_CONTAINER_DLL_remove (peer->head, peer->tail, pending);
758 GNUNET_free (pending);
762 /* no messages pending */
768 = GNUNET_CORE_notify_transmit_ready (coreAPI, GNUNET_YES,
770 GNUNET_TIME_absolute_get_remaining (pending->timeout),
771 &peer->id, ntohs (pending->msg->size),
772 &core_transmit_notify, peer);
773 GNUNET_break (NULL != peer->th);
777 while ( (NULL != (pending = peer->head)) &&
778 (size - off >= (msize = ntohs (pending->msg->size))) )
780 GNUNET_STATISTICS_update (GDS_stats,
781 gettext_noop ("# Bytes transmitted to other peers"), msize,
783 memcpy (&cbuf[off], pending->msg, msize);
785 peer->pending_count--;
786 GNUNET_CONTAINER_DLL_remove (peer->head, peer->tail, pending);
787 GNUNET_free (pending);
789 if (peer->head != NULL)
792 = GNUNET_CORE_notify_transmit_ready (coreAPI, GNUNET_YES,
794 GNUNET_TIME_absolute_get_remaining (pending->timeout),
796 &core_transmit_notify, peer);
797 GNUNET_break (NULL != peer->th);
804 * Transmit all messages in the peer's message queue.
806 * @param peer message queue to process
809 process_peer_queue (struct PeerInfo *peer)
811 struct P2PPendingMessage *pending;
813 if (NULL == (pending = peer->head))
815 if (NULL != peer->th)
817 GNUNET_STATISTICS_update (GDS_stats,
818 gettext_noop ("# Bytes of bandwdith requested from core"),
819 ntohs (pending->msg->size),
822 = GNUNET_CORE_notify_transmit_ready (coreAPI, GNUNET_YES,
824 GNUNET_TIME_absolute_get_remaining (pending->timeout),
826 ntohs (pending->msg->size),
827 &core_transmit_notify, peer);
828 GNUNET_break (NULL != peer->th);
833 * To how many peers should we (on average) forward the request to
834 * obtain the desired target_replication count (on average).
836 * @param hop_count number of hops the message has traversed
837 * @param target_replication the number of total paths desired
838 * @return Some number of peers to forward the message to
841 get_forward_count (uint32_t hop_count,
842 uint32_t target_replication)
844 uint32_t random_value;
845 uint32_t forward_count;
848 if (hop_count > GDS_NSE_get () * 6.0)
850 /* forcefully terminate */
853 if (hop_count > GDS_NSE_get () * 4.0)
855 /* Once we have reached our ideal number of hops, only forward to 1 peer */
858 /* bound by system-wide maximum */
859 target_replication = GNUNET_MIN (MAXIMUM_REPLICATION_LEVEL,
862 1 + (target_replication - 1.0) / (GDS_NSE_get () +
863 ((float) (target_replication - 1.0) *
865 /* Set forward count to floor of target_value */
866 forward_count = (uint32_t) target_value;
867 /* Subtract forward_count (floor) from target_value (yields value between 0 and 1) */
868 target_value = target_value - forward_count;
870 GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, UINT32_MAX);
871 if (random_value < (target_value * UINT32_MAX))
873 return forward_count;
878 * Compute the distance between have and target as a 32-bit value.
879 * Differences in the lower bits must count stronger than differences
880 * in the higher bits.
882 * @return 0 if have==target, otherwise a number
883 * that is larger as the distance between
884 * the two hash codes increases
887 get_distance (const GNUNET_HashCode * target, const GNUNET_HashCode * have)
894 /* We have to represent the distance between two 2^9 (=512)-bit
895 * numbers as a 2^5 (=32)-bit number with "0" being used for the
896 * two numbers being identical; furthermore, we need to
897 * guarantee that a difference in the number of matching
898 * bits is always represented in the result.
900 * We use 2^32/2^9 numerical values to distinguish between
901 * hash codes that have the same LSB bit distance and
902 * use the highest 2^9 bits of the result to signify the
903 * number of (mis)matching LSB bits; if we have 0 matching
904 * and hence 512 mismatching LSB bits we return -1 (since
905 * 512 itself cannot be represented with 9 bits) */
907 /* first, calculate the most significant 9 bits of our
908 * result, aka the number of LSBs */
909 bucket = GNUNET_CRYPTO_hash_matching_bits (target, have);
910 /* bucket is now a value between 0 and 512 */
912 return 0; /* perfect match */
914 return (unsigned int) -1; /* LSB differs; use max (if we did the bit-shifting
915 * below, we'd end up with max+1 (overflow)) */
917 /* calculate the most significant bits of the final result */
918 msb = (512 - bucket) << (32 - 9);
919 /* calculate the 32-9 least significant bits of the final result by
920 * looking at the differences in the 32-9 bits following the
921 * mismatching bit at 'bucket' */
924 (i < sizeof (GNUNET_HashCode) * 8) && (i < bucket + 1 + 32 - 9); i++)
926 if (GNUNET_CRYPTO_hash_get_bit (target, i) !=
927 GNUNET_CRYPTO_hash_get_bit (have, i))
928 lsb |= (1 << (bucket + 32 - 9 - i)); /* first bit set will be 10,
929 * last bit set will be 31 -- if
930 * i does not reach 512 first... */
937 * Check whether my identity is closer than any known peers. If a
938 * non-null bloomfilter is given, check if this is the closest peer
939 * that hasn't already been routed to.
941 * @param key hash code to check closeness to
942 * @param bloom bloomfilter, exclude these entries from the decision
943 * @return GNUNET_YES if node location is closest,
944 * GNUNET_NO otherwise.
947 am_closest_peer (const GNUNET_HashCode *key,
948 const struct GNUNET_CONTAINER_BloomFilter *bloom)
954 struct PeerInfo *pos;
956 if (0 == memcmp (&my_identity.hashPubKey, key, sizeof (GNUNET_HashCode)))
958 bucket_num = find_bucket (key);
959 GNUNET_assert (bucket_num >= 0);
960 bits = GNUNET_CRYPTO_hash_matching_bits (&my_identity.hashPubKey, key);
961 pos = k_buckets[bucket_num].head;
963 while ((pos != NULL) && (count < bucket_size))
965 if ((bloom != NULL) &&
967 GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)))
970 continue; /* Skip already checked entries */
972 other_bits = GNUNET_CRYPTO_hash_matching_bits (&pos->id.hashPubKey, key);
973 if (other_bits > bits)
975 if (other_bits == bits) /* We match the same number of bits */
979 /* No peers closer, we are the closest! */
985 * Select a peer from the routing table that would be a good routing
986 * destination for sending a message for "key". The resulting peer
987 * must not be in the set of blocked peers.<p>
989 * Note that we should not ALWAYS select the closest peer to the
990 * target, peers further away from the target should be chosen with
991 * exponentially declining probability.
993 * FIXME: double-check that this is fine
996 * @param key the key we are selecting a peer to route to
997 * @param bloom a bloomfilter containing entries this request has seen already
998 * @param hops how many hops has this message traversed thus far
999 * @return Peer to route to, or NULL on error
1001 static struct PeerInfo *
1002 select_peer (const GNUNET_HashCode *key,
1003 const struct GNUNET_CONTAINER_BloomFilter *bloom,
1008 unsigned int selected;
1009 struct PeerInfo *pos;
1011 unsigned int smallest_distance;
1012 struct PeerInfo *chosen;
1014 if (hops >= GDS_NSE_get ())
1016 /* greedy selection (closest peer that is not in bloomfilter) */
1017 smallest_distance = UINT_MAX;
1019 for (bc = 0; bc < closest_bucket; bc++)
1021 pos = k_buckets[bc].head;
1023 while ((pos != NULL) && (count < bucket_size))
1025 if ( (bloom == NULL) ||
1027 GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)) )
1029 dist = get_distance (key, &pos->id.hashPubKey);
1030 if (dist < smallest_distance)
1033 smallest_distance = dist;
1038 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1039 "Excluded peer `%s' due to BF match in greedy routing for %s\n",
1040 GNUNET_i2s (&pos->id),
1042 GNUNET_STATISTICS_update (GDS_stats,
1043 gettext_noop ("# Peers excluded from routing due to Bloomfilter"), 1,
1051 GNUNET_STATISTICS_update (GDS_stats,
1052 gettext_noop ("# Peer selection failed"), 1,
1057 /* select "random" peer */
1058 /* count number of peers that are available and not filtered */
1060 for (bc = closest_bucket; bc < MAX_BUCKETS; bc++)
1062 pos = k_buckets[bc].head;
1063 while ((pos != NULL) && (count < bucket_size))
1065 if ( (bloom != NULL) &&
1067 GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)) )
1069 GNUNET_STATISTICS_update (GDS_stats,
1070 gettext_noop ("# Peers excluded from routing due to Bloomfilter"), 1,
1072 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1073 "Excluded peer `%s' due to BF match in random routing for %s\n",
1074 GNUNET_i2s (&pos->id),
1077 continue; /* Ignore bloomfiltered peers */
1083 if (count == 0) /* No peers to select from! */
1085 GNUNET_STATISTICS_update (GDS_stats,
1086 gettext_noop ("# Peer selection failed"), 1,
1090 /* Now actually choose a peer */
1091 selected = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, count);
1093 for (bc = closest_bucket; bc < MAX_BUCKETS; bc++)
1095 pos = k_buckets[bc].head;
1096 while ((pos != NULL) && (count < bucket_size))
1098 if ( (bloom != NULL) &&
1100 GNUNET_CONTAINER_bloomfilter_test (bloom, &pos->id.hashPubKey)) )
1103 continue; /* Ignore bloomfiltered peers */
1105 if (0 == selected--)
1116 * Compute the set of peers that the given request should be
1119 * @param key routing key
1120 * @param bloom bloom filter excluding peers as targets, all selected
1121 * peers will be added to the bloom filter
1122 * @param hop_count number of hops the request has traversed so far
1123 * @param target_replication desired number of replicas
1124 * @param targets where to store an array of target peers (to be
1125 * free'd by the caller)
1126 * @return number of peers returned in 'targets'.
1129 get_target_peers (const GNUNET_HashCode *key,
1130 struct GNUNET_CONTAINER_BloomFilter *bloom,
1132 uint32_t target_replication,
1133 struct PeerInfo ***targets)
1137 struct PeerInfo **rtargets;
1138 struct PeerInfo *nxt;
1140 GNUNET_assert (NULL != bloom);
1141 ret = get_forward_count (hop_count, target_replication);
1147 rtargets = GNUNET_malloc (sizeof (struct PeerInfo*) * ret);
1148 for (off = 0; off < ret; off++)
1150 nxt = select_peer (key, bloom, hop_count);
1153 rtargets[off] = nxt;
1154 GNUNET_break (GNUNET_NO ==
1155 GNUNET_CONTAINER_bloomfilter_test (bloom, &nxt->id.hashPubKey));
1156 GNUNET_CONTAINER_bloomfilter_add (bloom, &rtargets[off]->id.hashPubKey);
1158 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1159 "Selected %u/%u peers at hop %u for %s (target was %u)\n",
1161 GNUNET_CONTAINER_multihashmap_size (all_known_peers),
1162 (unsigned int) hop_count,
1167 GNUNET_free (rtargets);
1171 *targets = rtargets;
1177 * Perform a PUT operation. Forwards the given request to other
1178 * peers. Does not store the data locally. Does not give the
1179 * data to local clients. May do nothing if this is the only
1180 * peer in the network (or if we are the closest peer in the
1183 * @param type type of the block
1184 * @param options routing options
1185 * @param desired_replication_level desired replication count
1186 * @param expiration_time when does the content expire
1187 * @param hop_count how many hops has this message traversed so far
1188 * @param bf Bloom filter of peers this PUT has already traversed
1189 * @param key key for the content
1190 * @param put_path_length number of entries in put_path
1191 * @param put_path peers this request has traversed so far (if tracked)
1192 * @param data payload to store
1193 * @param data_size number of bytes in data
1196 GDS_NEIGHBOURS_handle_put (enum GNUNET_BLOCK_Type type,
1197 enum GNUNET_DHT_RouteOption options,
1198 uint32_t desired_replication_level,
1199 struct GNUNET_TIME_Absolute expiration_time,
1201 struct GNUNET_CONTAINER_BloomFilter *bf,
1202 const GNUNET_HashCode *key,
1203 unsigned int put_path_length,
1204 struct GNUNET_PeerIdentity *put_path,
1208 unsigned int target_count;
1210 struct PeerInfo **targets;
1211 struct PeerInfo *target;
1212 struct P2PPendingMessage *pending;
1214 struct PeerPutMessage *ppm;
1215 struct GNUNET_PeerIdentity *pp;
1217 GNUNET_assert (NULL != bf);
1218 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1219 "Adding myself (%s) to PUT bloomfilter for %s\n",
1220 GNUNET_i2s (&my_identity),
1222 GNUNET_CONTAINER_bloomfilter_add (bf, &my_identity.hashPubKey);
1223 GNUNET_STATISTICS_update (GDS_stats,
1224 gettext_noop ("# PUT requests routed"), 1,
1226 target_count = get_target_peers (key, bf, hop_count,
1227 desired_replication_level,
1229 if (0 == target_count)
1231 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1232 "Routing PUT for %s terminates after %u hops at %s\n",
1234 (unsigned int) hop_count,
1235 GNUNET_i2s (&my_identity));
1238 msize = put_path_length * sizeof (struct GNUNET_PeerIdentity) + data_size + sizeof (struct PeerPutMessage);
1239 if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1241 put_path_length = 0;
1242 msize = data_size + sizeof (struct PeerPutMessage);
1244 if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1247 GNUNET_free (targets);
1250 GNUNET_STATISTICS_update (GDS_stats,
1251 gettext_noop ("# PUT messages queued for transmission"), target_count,
1253 for (i=0;i<target_count;i++)
1255 target = targets[i];
1256 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1257 "Routing PUT for %s after %u hops to %s\n",
1259 (unsigned int) hop_count,
1260 GNUNET_i2s (&target->id));
1261 pending = GNUNET_malloc (sizeof (struct P2PPendingMessage) + msize);
1262 pending->importance = 0; /* FIXME */
1263 pending->timeout = expiration_time;
1264 ppm = (struct PeerPutMessage*) &pending[1];
1265 pending->msg = &ppm->header;
1266 ppm->header.size = htons (msize);
1267 ppm->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_P2P_PUT);
1268 ppm->options = htonl (options);
1269 ppm->type = htonl (type);
1270 ppm->hop_count = htonl (hop_count + 1);
1271 ppm->desired_replication_level = htonl (desired_replication_level);
1272 ppm->put_path_length = htonl (put_path_length);
1273 ppm->expiration_time = GNUNET_TIME_absolute_hton (expiration_time);
1274 GNUNET_break (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (bf, &target->id.hashPubKey));
1275 GNUNET_assert (GNUNET_OK ==
1276 GNUNET_CONTAINER_bloomfilter_get_raw_data (bf,
1280 pp = (struct GNUNET_PeerIdentity*) &ppm[1];
1281 memcpy (pp, put_path, sizeof (struct GNUNET_PeerIdentity) * put_path_length);
1282 memcpy (&pp[put_path_length], data, data_size);
1283 GNUNET_CONTAINER_DLL_insert_tail (target->head,
1286 target->pending_count++;
1287 process_peer_queue (target);
1289 GNUNET_free (targets);
1294 * Perform a GET operation. Forwards the given request to other
1295 * peers. Does not lookup the key locally. May do nothing if this is
1296 * the only peer in the network (or if we are the closest peer in the
1299 * @param type type of the block
1300 * @param options routing options
1301 * @param desired_replication_level desired replication count
1302 * @param hop_count how many hops did this request traverse so far?
1303 * @param key key for the content
1304 * @param xquery extended query
1305 * @param xquery_size number of bytes in xquery
1306 * @param reply_bf bloomfilter to filter duplicates
1307 * @param reply_bf_mutator mutator for reply_bf
1308 * @param peer_bf filter for peers not to select (again)
1311 GDS_NEIGHBOURS_handle_get (enum GNUNET_BLOCK_Type type,
1312 enum GNUNET_DHT_RouteOption options,
1313 uint32_t desired_replication_level,
1315 const GNUNET_HashCode *key,
1318 const struct GNUNET_CONTAINER_BloomFilter *reply_bf,
1319 uint32_t reply_bf_mutator,
1320 struct GNUNET_CONTAINER_BloomFilter *peer_bf)
1322 unsigned int target_count;
1324 struct PeerInfo **targets;
1325 struct PeerInfo *target;
1326 struct P2PPendingMessage *pending;
1328 struct PeerGetMessage *pgm;
1330 size_t reply_bf_size;
1332 GNUNET_assert (NULL != peer_bf);
1333 GNUNET_STATISTICS_update (GDS_stats,
1334 gettext_noop ("# GET requests routed"), 1,
1336 target_count = get_target_peers (key, peer_bf, hop_count,
1337 desired_replication_level,
1339 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1340 "Adding myself (%s) to GET bloomfilter for %s\n",
1341 GNUNET_i2s (&my_identity),
1343 GNUNET_CONTAINER_bloomfilter_add (peer_bf, &my_identity.hashPubKey);
1344 if (0 == target_count)
1346 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1347 "Routing GET for %s terminates after %u hops at %s\n",
1349 (unsigned int) hop_count,
1350 GNUNET_i2s (&my_identity));
1353 reply_bf_size = GNUNET_CONTAINER_bloomfilter_get_size (reply_bf);
1354 msize = xquery_size + sizeof (struct PeerGetMessage) + reply_bf_size;
1355 if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1358 GNUNET_free (targets);
1361 GNUNET_STATISTICS_update (GDS_stats,
1362 gettext_noop ("# GET messages queued for transmission"), target_count,
1364 /* forward request */
1365 for (i=0;i<target_count;i++)
1367 target = targets[i];
1368 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1369 "Routing GET for %s after %u hops to %s\n",
1371 (unsigned int) hop_count,
1372 GNUNET_i2s (&target->id));
1373 pending = GNUNET_malloc (sizeof (struct P2PPendingMessage) + msize);
1374 pending->importance = 0; /* FIXME */
1375 pending->timeout = GNUNET_TIME_relative_to_absolute (GET_TIMEOUT);
1376 pgm = (struct PeerGetMessage*) &pending[1];
1377 pending->msg = &pgm->header;
1378 pgm->header.size = htons (msize);
1379 pgm->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_P2P_GET);
1380 pgm->options = htonl (options);
1381 pgm->type = htonl (type);
1382 pgm->hop_count = htonl (hop_count + 1);
1383 pgm->desired_replication_level = htonl (desired_replication_level);
1384 pgm->xquery_size = htonl (xquery_size);
1385 pgm->bf_mutator = reply_bf_mutator;
1386 GNUNET_break (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (peer_bf, &target->id.hashPubKey));
1387 GNUNET_assert (GNUNET_OK ==
1388 GNUNET_CONTAINER_bloomfilter_get_raw_data (peer_bf,
1392 xq = (char *) &pgm[1];
1393 memcpy (xq, xquery, xquery_size);
1394 if (NULL != reply_bf)
1395 GNUNET_assert (GNUNET_OK ==
1396 GNUNET_CONTAINER_bloomfilter_get_raw_data (reply_bf,
1399 GNUNET_CONTAINER_DLL_insert_tail (target->head,
1402 target->pending_count++;
1403 process_peer_queue (target);
1405 GNUNET_free (targets);
1410 * Handle a reply (route to origin). Only forwards the reply back to
1411 * the given peer. Does not do local caching or forwarding to local
1414 * @param target neighbour that should receive the block (if still connected)
1415 * @param type type of the block
1416 * @param expiration_time when does the content expire
1417 * @param key key for the content
1418 * @param put_path_length number of entries in put_path
1419 * @param put_path peers the original PUT traversed (if tracked)
1420 * @param get_path_length number of entries in put_path
1421 * @param get_path peers this reply has traversed so far (if tracked)
1422 * @param data payload of the reply
1423 * @param data_size number of bytes in data
1426 GDS_NEIGHBOURS_handle_reply (const struct GNUNET_PeerIdentity *target,
1427 enum GNUNET_BLOCK_Type type,
1428 struct GNUNET_TIME_Absolute expiration_time,
1429 const GNUNET_HashCode *key,
1430 unsigned int put_path_length,
1431 const struct GNUNET_PeerIdentity *put_path,
1432 unsigned int get_path_length,
1433 const struct GNUNET_PeerIdentity *get_path,
1437 struct PeerInfo *pi;
1438 struct P2PPendingMessage *pending;
1440 struct PeerResultMessage *prm;
1441 struct GNUNET_PeerIdentity *paths;
1443 msize = data_size + sizeof (struct PeerResultMessage) +
1444 (get_path_length + put_path_length) * sizeof (struct GNUNET_PeerIdentity);
1445 if ( (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
1446 (get_path_length > GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)) ||
1447 (put_path_length > GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)) ||
1448 (data_size > GNUNET_SERVER_MAX_MESSAGE_SIZE) )
1453 pi = GNUNET_CONTAINER_multihashmap_get (all_known_peers,
1454 &target->hashPubKey);
1457 /* peer disconnected in the meantime, drop reply */
1460 GNUNET_STATISTICS_update (GDS_stats,
1461 gettext_noop ("# RESULT messages queued for transmission"), 1,
1463 pending = GNUNET_malloc (sizeof (struct P2PPendingMessage) + msize);
1464 pending->importance = 0; /* FIXME */
1465 pending->timeout = expiration_time;
1466 prm = (struct PeerResultMessage*) &pending[1];
1467 pending->msg = &prm->header;
1468 prm->header.size = htons (msize);
1469 prm->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_P2P_RESULT);
1470 prm->type = htonl (type);
1471 prm->put_path_length = htonl (put_path_length);
1472 prm->get_path_length = htonl (get_path_length);
1473 prm->expiration_time = GNUNET_TIME_absolute_hton (expiration_time);
1475 paths = (struct GNUNET_PeerIdentity*) &prm[1];
1476 memcpy (paths, put_path, put_path_length * sizeof (struct GNUNET_PeerIdentity));
1477 memcpy (&paths[put_path_length],
1478 get_path, get_path_length * sizeof (struct GNUNET_PeerIdentity));
1479 memcpy (&paths[put_path_length + get_path_length],
1481 GNUNET_CONTAINER_DLL_insert (pi->head,
1484 pi->pending_count++;
1485 process_peer_queue (pi);
1490 * To be called on core init/fail.
1492 * @param cls service closure
1493 * @param server handle to the server for this service
1494 * @param identity the public identity of this peer
1497 core_init (void *cls, struct GNUNET_CORE_Handle *server,
1498 const struct GNUNET_PeerIdentity *identity)
1500 GNUNET_assert (server != NULL);
1501 my_identity = *identity;
1506 * Core handler for p2p put requests.
1508 * @param cls closure
1509 * @param peer sender of the request
1510 * @param message message
1511 * @param peer peer identity this notification is about
1512 * @param atsi performance data
1513 * @param atsi_count number of records in 'atsi'
1514 * @return GNUNET_OK to keep the connection open,
1515 * GNUNET_SYSERR to close it (signal serious error)
1518 handle_dht_p2p_put (void *cls,
1519 const struct GNUNET_PeerIdentity *peer,
1520 const struct GNUNET_MessageHeader *message,
1521 const struct GNUNET_ATS_Information
1523 unsigned int atsi_count)
1525 const struct PeerPutMessage *put;
1526 const struct GNUNET_PeerIdentity *put_path;
1527 const void *payload;
1530 size_t payload_size;
1531 enum GNUNET_DHT_RouteOption options;
1532 struct GNUNET_CONTAINER_BloomFilter *bf;
1533 GNUNET_HashCode test_key;
1535 msize = ntohs (message->size);
1536 if (msize < sizeof (struct PeerPutMessage))
1538 GNUNET_break_op (0);
1541 put = (const struct PeerPutMessage*) message;
1542 putlen = ntohl (put->put_path_length);
1543 if ( (msize < sizeof (struct PeerPutMessage) + putlen * sizeof (struct GNUNET_PeerIdentity)) ||
1544 (putlen > GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)) )
1546 GNUNET_break_op (0);
1549 GNUNET_STATISTICS_update (GDS_stats,
1550 gettext_noop ("# P2P PUT requests received"), 1,
1552 put_path = (const struct GNUNET_PeerIdentity*) &put[1];
1553 payload = &put_path[putlen];
1554 options = ntohl (put->options);
1555 payload_size = msize - (sizeof (struct PeerPutMessage) +
1556 putlen * sizeof (struct GNUNET_PeerIdentity));
1557 switch (GNUNET_BLOCK_get_key (GDS_block_context,
1559 payload, payload_size,
1563 if (0 != memcmp (&test_key, &put->key, sizeof (GNUNET_HashCode)))
1565 GNUNET_break_op (0);
1570 GNUNET_break_op (0);
1573 /* cannot verify, good luck */
1576 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1577 "PUT for %s at %s\n",
1578 GNUNET_h2s (&put->key),
1579 GNUNET_i2s (&my_identity));
1580 bf = GNUNET_CONTAINER_bloomfilter_init (put->bloomfilter,
1582 GNUNET_CONSTANTS_BLOOMFILTER_K);
1583 GNUNET_break_op (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (bf, &peer->hashPubKey));
1585 struct GNUNET_PeerIdentity pp[putlen+1];
1587 /* extend 'put path' by sender */
1588 if (0 != (options & GNUNET_DHT_RO_RECORD_ROUTE))
1590 memcpy (pp, put_path, putlen * sizeof (struct GNUNET_PeerIdentity));
1597 /* give to local clients */
1598 GDS_CLIENTS_handle_reply (GNUNET_TIME_absolute_ntoh (put->expiration_time),
1607 if ( (0 != (options & GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE)) ||
1608 (am_closest_peer (&put->key,
1610 GDS_DATACACHE_handle_put (GNUNET_TIME_absolute_ntoh (put->expiration_time),
1616 /* route to other peers */
1617 GDS_NEIGHBOURS_handle_put (ntohl (put->type),
1619 ntohl (put->desired_replication_level),
1620 GNUNET_TIME_absolute_ntoh (put->expiration_time),
1621 ntohl (put->hop_count),
1628 GNUNET_CONTAINER_bloomfilter_free (bf);
1634 * We have received a FIND PEER request. Send matching
1637 * @param sender sender of the FIND PEER request
1638 * @param key peers close to this key are desired
1639 * @param bf peers matching this bf are excluded
1640 * @param bf_mutator mutator for bf
1643 handle_find_peer (const struct GNUNET_PeerIdentity *sender,
1644 const GNUNET_HashCode *key,
1645 struct GNUNET_CONTAINER_BloomFilter *bf,
1646 uint32_t bf_mutator)
1649 struct PeerBucket *bucket;
1650 struct PeerInfo *peer;
1651 unsigned int choice;
1652 GNUNET_HashCode mhash;
1653 const struct GNUNET_HELLO_Message *hello;
1655 /* first, check about our own HELLO */
1656 if (NULL != GDS_my_hello)
1658 GNUNET_BLOCK_mingle_hash (&my_identity.hashPubKey, bf_mutator, &mhash);
1659 if ( (NULL == bf) ||
1660 (GNUNET_YES != GNUNET_CONTAINER_bloomfilter_test (bf, &mhash)) )
1662 GDS_NEIGHBOURS_handle_reply (sender,
1663 GNUNET_BLOCK_TYPE_DHT_HELLO,
1664 GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION),
1669 GNUNET_HELLO_size ((const struct GNUNET_HELLO_Message*) GDS_my_hello));
1673 GNUNET_STATISTICS_update (GDS_stats,
1674 gettext_noop ("# FIND PEER requests ignored due to Bloomfilter"), 1,
1680 GNUNET_STATISTICS_update (GDS_stats,
1681 gettext_noop ("# FIND PEER requests ignored due to lack of HELLO"), 1,
1685 /* then, also consider sending a random HELLO from the closest bucket */
1686 if (0 == memcmp (&my_identity.hashPubKey, key, sizeof (GNUNET_HashCode)))
1687 bucket_idx = closest_bucket;
1689 bucket_idx = GNUNET_MIN (closest_bucket, find_bucket (key));
1690 if (bucket_idx == GNUNET_SYSERR)
1692 bucket = &k_buckets[bucket_idx];
1693 if (bucket->peers_size == 0)
1695 choice = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
1696 bucket->peers_size);
1697 peer = bucket->head;
1700 GNUNET_assert (peer != NULL);
1704 choice = bucket->peers_size;
1709 return; /* no non-masked peer available */
1711 peer = bucket->head;
1712 GNUNET_BLOCK_mingle_hash (&peer->id.hashPubKey, bf_mutator, &mhash);
1713 hello = GDS_HELLO_get (&peer->id);
1715 while ( (hello == NULL) ||
1716 (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (bf, &mhash)) );
1717 GDS_NEIGHBOURS_handle_reply (sender,
1718 GNUNET_BLOCK_TYPE_DHT_HELLO,
1719 GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION),
1724 GNUNET_HELLO_size (hello));
1729 * Core handler for p2p get requests.
1731 * @param cls closure
1732 * @param peer sender of the request
1733 * @param message message
1734 * @param peer peer identity this notification is about
1735 * @param atsi performance data
1736 * @param atsi_count number of records in 'atsi'
1737 * @return GNUNET_OK to keep the connection open,
1738 * GNUNET_SYSERR to close it (signal serious error)
1741 handle_dht_p2p_get (void *cls, const struct GNUNET_PeerIdentity *peer,
1742 const struct GNUNET_MessageHeader *message,
1743 const struct GNUNET_ATS_Information
1745 unsigned int atsi_count)
1747 struct PeerGetMessage *get;
1748 uint32_t xquery_size;
1749 size_t reply_bf_size;
1751 enum GNUNET_BLOCK_Type type;
1752 enum GNUNET_DHT_RouteOption options;
1753 enum GNUNET_BLOCK_EvaluationResult eval;
1754 struct GNUNET_CONTAINER_BloomFilter *reply_bf;
1755 struct GNUNET_CONTAINER_BloomFilter *peer_bf;
1758 GNUNET_break (0 != memcmp (peer, &my_identity, sizeof (struct GNUNET_PeerIdentity)));
1759 /* parse and validate message */
1760 msize = ntohs (message->size);
1761 if (msize < sizeof (struct PeerGetMessage))
1763 GNUNET_break_op (0);
1766 get = (struct PeerGetMessage *) message;
1767 xquery_size = ntohl (get->xquery_size);
1768 if (msize < sizeof (struct PeerGetMessage) + xquery_size)
1770 GNUNET_break_op (0);
1773 GNUNET_STATISTICS_update (GDS_stats,
1774 gettext_noop ("# P2P GET requests received"), 1,
1776 reply_bf_size = msize - (sizeof (struct PeerGetMessage) + xquery_size);
1777 type = ntohl (get->type);
1778 options = ntohl (get->options);
1779 xquery = (const char*) &get[1];
1781 if (reply_bf_size > 0)
1782 reply_bf = GNUNET_CONTAINER_bloomfilter_init (&xquery[xquery_size],
1784 GNUNET_CONSTANTS_BLOOMFILTER_K);
1785 eval = GNUNET_BLOCK_evaluate (GDS_block_context,
1790 xquery, xquery_size,
1792 if (eval != GNUNET_BLOCK_EVALUATION_REQUEST_VALID)
1794 /* request invalid or block type not supported */
1795 GNUNET_break_op (eval == GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED);
1796 if (NULL != reply_bf)
1797 GNUNET_CONTAINER_bloomfilter_free (reply_bf);
1801 GNUNET_CONTAINER_bloomfilter_init (get->bloomfilter,
1803 GNUNET_CONSTANTS_BLOOMFILTER_K);
1804 GNUNET_break_op (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (peer_bf, &peer->hashPubKey));
1805 /* remember request for routing replies */
1806 GDS_ROUTING_add (peer,
1810 xquery, xquery_size,
1811 reply_bf, get->bf_mutator);
1812 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1813 "GET for %s at %s after %u hops\n",
1814 GNUNET_h2s (&get->key),
1815 GNUNET_i2s (&my_identity),
1816 (unsigned int) ntohl (get->hop_count));
1817 /* local lookup (this may update the reply_bf) */
1818 if ( (0 != (options & GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE)) ||
1819 (am_closest_peer (&get->key,
1822 if ( (0 != (options & GNUNET_DHT_RO_FIND_PEER)))
1824 GNUNET_STATISTICS_update (GDS_stats,
1825 gettext_noop ("# P2P FIND PEER requests processed"), 1,
1827 handle_find_peer (peer,
1834 eval = GDS_DATACACHE_handle_get (&get->key,
1836 xquery, xquery_size,
1843 GNUNET_STATISTICS_update (GDS_stats,
1844 gettext_noop ("# P2P GET requests ONLY routed"), 1,
1848 /* P2P forwarding */
1849 if (eval != GNUNET_BLOCK_EVALUATION_OK_LAST)
1850 GDS_NEIGHBOURS_handle_get (type,
1852 ntohl (get->desired_replication_level),
1853 ntohl (get->hop_count),
1855 xquery, xquery_size,
1860 if (NULL != reply_bf)
1861 GNUNET_CONTAINER_bloomfilter_free (reply_bf);
1862 GNUNET_CONTAINER_bloomfilter_free (peer_bf);
1868 * Core handler for p2p result messages.
1870 * @param cls closure
1871 * @param message message
1872 * @param peer peer identity this notification is about
1873 * @param atsi performance data
1874 * @param atsi_count number of records in 'atsi'
1875 * @return GNUNET_YES (do not cut p2p connection)
1878 handle_dht_p2p_result (void *cls, const struct GNUNET_PeerIdentity *peer,
1879 const struct GNUNET_MessageHeader *message,
1880 const struct GNUNET_ATS_Information
1882 unsigned int atsi_count)
1884 const struct PeerResultMessage *prm;
1885 const struct GNUNET_PeerIdentity *put_path;
1886 const struct GNUNET_PeerIdentity *get_path;
1888 uint32_t get_path_length;
1889 uint32_t put_path_length;
1892 enum GNUNET_BLOCK_Type type;
1894 /* parse and validate message */
1895 msize = ntohs (message->size);
1896 if (msize < sizeof (struct PeerResultMessage))
1898 GNUNET_break_op (0);
1901 prm = (struct PeerResultMessage *) message;
1902 put_path_length = ntohl (prm->put_path_length);
1903 get_path_length = ntohl (prm->get_path_length);
1904 if ( (msize < sizeof (struct PeerResultMessage) +
1905 (get_path_length + put_path_length) * sizeof (struct GNUNET_PeerIdentity)) ||
1906 (get_path_length > GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)) ||
1907 (put_path_length > GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_PeerIdentity)) )
1909 GNUNET_break_op (0);
1912 GNUNET_STATISTICS_update (GDS_stats,
1913 gettext_noop ("# P2P RESULTS received"), 1,
1915 put_path = (const struct GNUNET_PeerIdentity*) &prm[1];
1916 get_path = &put_path[put_path_length];
1917 type = ntohl (prm->type);
1918 data = (const void*) &get_path[get_path_length];
1919 data_size = msize - (sizeof (struct PeerResultMessage) +
1920 (get_path_length + put_path_length) * sizeof (struct GNUNET_PeerIdentity));
1922 /* if we got a HELLO, consider it for our own routing table */
1923 if (type == GNUNET_BLOCK_TYPE_DHT_HELLO)
1925 const struct GNUNET_MessageHeader *h;
1926 struct GNUNET_PeerIdentity pid;
1929 /* Should be a HELLO, validate and consider using it! */
1930 if (data_size < sizeof (struct GNUNET_MessageHeader))
1932 GNUNET_break_op (0);
1936 if (data_size != ntohs (h->size))
1938 GNUNET_break_op (0);
1942 GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message*) h,
1945 GNUNET_break_op (0);
1948 if (0 != memcmp (&my_identity, &pid, sizeof (struct GNUNET_PeerIdentity)))
1950 bucket = find_bucket (&pid.hashPubKey);
1951 if ( (bucket >= 0) &&
1952 (k_buckets[bucket].peers_size < bucket_size) )
1954 if (NULL != GDS_transport_handle)
1956 GNUNET_TRANSPORT_offer_hello (GDS_transport_handle,
1958 GNUNET_TRANSPORT_try_connect (GDS_transport_handle,
1965 /* append 'peer' to 'get_path' */
1967 struct GNUNET_PeerIdentity xget_path[get_path_length+1];
1969 memcpy (xget_path, get_path, get_path_length * sizeof (struct GNUNET_PeerIdentity));
1970 xget_path[get_path_length] = *peer;
1973 /* forward to local clients */
1974 GDS_CLIENTS_handle_reply (GNUNET_TIME_absolute_ntoh (prm->expiration_time),
1984 /* forward to other peers */
1985 GDS_ROUTING_process (type,
1986 GNUNET_TIME_absolute_ntoh (prm->expiration_time),
2000 * Initialize neighbours subsystem.
2002 * @return GNUNET_OK on success, GNUNET_SYSERR on error
2005 GDS_NEIGHBOURS_init ()
2007 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
2008 {&handle_dht_p2p_get, GNUNET_MESSAGE_TYPE_DHT_P2P_GET, 0},
2009 {&handle_dht_p2p_put, GNUNET_MESSAGE_TYPE_DHT_P2P_PUT, 0},
2010 {&handle_dht_p2p_result, GNUNET_MESSAGE_TYPE_DHT_P2P_RESULT, 0},
2013 unsigned long long temp_config_num;
2016 GNUNET_CONFIGURATION_get_value_number (GDS_cfg, "DHT", "bucket_size",
2018 bucket_size = (unsigned int) temp_config_num;
2019 atsAPI = GNUNET_ATS_performance_init (GDS_cfg, NULL, NULL);
2020 coreAPI = GNUNET_CORE_connect (GDS_cfg,
2024 &handle_core_connect,
2025 &handle_core_disconnect,
2029 if (coreAPI == NULL)
2030 return GNUNET_SYSERR;
2031 all_known_peers = GNUNET_CONTAINER_multihashmap_create (256);
2037 * Shutdown neighbours subsystem.
2040 GDS_NEIGHBOURS_done ()
2042 if (coreAPI == NULL)
2044 GNUNET_CORE_disconnect (coreAPI);
2046 GNUNET_ATS_performance_done (atsAPI);
2048 GNUNET_assert (0 == GNUNET_CONTAINER_multihashmap_size (all_known_peers));
2049 GNUNET_CONTAINER_multihashmap_destroy (all_known_peers);
2050 all_known_peers = NULL;
2051 if (GNUNET_SCHEDULER_NO_TASK != find_peer_task)
2053 GNUNET_SCHEDULER_cancel (find_peer_task);
2054 find_peer_task = GNUNET_SCHEDULER_NO_TASK;
2059 /* end of gnunet-service-dht_neighbours.c */