try to fix BF size mess created by original BLOCK API change
authorChristian Grothoff <christian@grothoff.org>
Wed, 22 Feb 2017 10:40:46 +0000 (11:40 +0100)
committerChristian Grothoff <christian@grothoff.org>
Wed, 22 Feb 2017 10:40:46 +0000 (11:40 +0100)
src/dht/gnunet-service-dht_clients.c
src/dht/gnunet-service-dht_neighbours.c
src/dht/plugin_block_dht.c
src/fs/plugin_block_fs.c

index a42356e5f805188943efc6b4b8515b7063f41171..c304f2e54fb0df97e8d100b4302a6ace884a00b1 100644 (file)
@@ -374,7 +374,9 @@ transmit_request (struct ClientQueryRecord *cqr)
                                   GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
                                                             UINT32_MAX),
                                   NULL,
-                                  0);
+                                  0,
+                                  "seen-set-size",
+                                  cqr->seen_replies_count);
   GNUNET_BLOCK_group_set_seen (bg,
                                cqr->seen_replies,
                                cqr->seen_replies_count);
index 975872f1beaf758e55c1b0cc3629f46eee5fafc5..6eef05c20528f8b9877e700fa4acb1f692afa5c8 100644 (file)
@@ -661,7 +661,9 @@ send_find_peer_message (void *cls)
                                   GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
                                                             UINT32_MAX),
                                   NULL,
-                                  0);
+                                  0,
+                                  "filter-size",
+                                  DHT_BLOOM_SIZE);
   GNUNET_CONTAINER_multipeermap_iterate (all_connected_peers,
                                          &add_known_to_bloom,
                                          bg);
@@ -2087,6 +2089,8 @@ handle_dht_p2p_get (void *cls,
                                   type,
                                   get->bf_mutator,
                                   &xquery[xquery_size],
+                                  reply_bf_size,
+                                  "filter-size",
                                   reply_bf_size);
   /* remember request for routing replies */
   GDS_ROUTING_add (peer->id,
index 168497440d3508a44480bb5d55ad8a43055a53e1..869ec155440ff2dd8adbc456c6327a43b4c5365c 100644 (file)
 #define DEBUG_DHT GNUNET_EXTRA_LOGGING
 
 /**
- * How big is the BF we use for DHT blocks?
+ * Number of bits we set per entry in the bloomfilter.
+ * Do not change!
  */
-#define DHT_BF_SIZE 8
+#define BLOOMFILTER_K 16
+
+
+/**
+ * How many bytes should a bloomfilter be if we have already seen
+ * entry_count responses?  Note that #GNUNET_CONSTANTS_BLOOMFILTER_K
+ * gives us the number of bits set per entry.  Furthermore, we should
+ * not re-size the filter too often (to keep it cheap).
+ *
+ * Since other peers will also add entries but not resize the filter,
+ * we should generally pick a slightly larger size than what the
+ * strict math would suggest.
+ *
+ * @param entry_count expected number of entries in the Bloom filter
+ * @return must be a power of two and smaller or equal to 2^15.
+ */
+static size_t
+compute_bloomfilter_size (unsigned int entry_count)
+{
+  size_t size;
+  unsigned int ideal = (entry_count * BLOOMFILTER_K) / 4;
+  uint16_t max = 1 << 15;
+
+  if (entry_count > max)
+    return max;
+  size = 8;
+  while ((size < max) && (size < ideal))
+    size *= 2;
+  if (size > max)
+    return max;
+  return size;
+}
 
 
 /**
@@ -59,9 +91,26 @@ block_plugin_dht_create_group (void *cls,
                                size_t raw_data_size,
                                va_list va)
 {
+  unsigned int bf_size;
+  const char *guard;
+
+  guard = va_arg (va, const char *);
+  if (0 != memcmp (guard,
+                   "seen-set-size",
+                   strlen ("seen-set-size")))
+    bf_size = compute_bloomfilter_size (va_arg (va, unsigned int));
+  else if (0 == memcmp (va_arg (va, const char *),
+                        "filter-size",
+                        strlen ("filter-size")))
+    bf_size = va_arg (va, unsigned int);
+  else
+  {
+    GNUNET_break (0);
+    bf_size = 8;
+  }
   return GNUNET_BLOCK_GROUP_bf_create (cls,
-                                       DHT_BF_SIZE,
-                                       GNUNET_CONSTANTS_BLOOMFILTER_K,
+                                       bf_size,
+                                       BLOOMFILTER_K,
                                        type,
                                        nonce,
                                        raw_data,
index 6c574fca272343ba7ddfed30bceed31bfa4050ef..5ccbd237eb293a26f64e097eca3a4c1fc5f98e00 100644 (file)
@@ -28,7 +28,6 @@
 #include "gnunet_fs_service.h"
 #include "block_fs.h"
 #include "gnunet_signatures.h"
-#include "gnunet_constants.h"
 #include "gnunet_block_group_lib.h"
 
 
@@ -56,7 +55,7 @@ static size_t
 compute_bloomfilter_size (unsigned int entry_count)
 {
   size_t size;
-  unsigned int ideal = (entry_count * GNUNET_CONSTANTS_BLOOMFILTER_K) / 4;
+  unsigned int ideal = (entry_count * BLOOMFILTER_K) / 4;
   uint16_t max = 1 << 15;
 
   if (entry_count > max)