2 This file is part of GNUnet.
3 (C) 2009, 2010, 2011, 2012, 2013 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 nse/gnunet-service-nse.c
23 * @brief network size estimation service
24 * @author Nathan Evans
25 * @author Christian Grothoff
27 * The purpose of this service is to estimate the size of the network.
28 * Given a specified interval, each peer hashes the most recent
29 * timestamp which is evenly divisible by that interval. This hash is
30 * compared in distance to the peer identity to choose an offset. The
31 * closer the peer identity to the hashed timestamp, the earlier the
32 * peer sends out a "nearest peer" message. The closest peer's
33 * message should thus be received before any others, which stops
34 * those peer from sending their messages at a later duration. So
35 * every peer should receive the same nearest peer message, and from
36 * this can calculate the expected number of peers in the network.
40 #include "gnunet_util_lib.h"
41 #include "gnunet_constants.h"
42 #include "gnunet_protocols.h"
43 #include "gnunet_signatures.h"
44 #include "gnunet_statistics_service.h"
45 #include "gnunet_core_service.h"
46 #include "gnunet_nse_service.h"
47 #if ENABLE_NSE_HISTOGRAM
48 #include "gnunet_testbed_logger_service.h"
55 * Should messages be delayed randomly? This option should be set to
56 * #GNUNET_NO only for experiments, not in production.
58 #define USE_RANDOM_DELAYS GNUNET_YES
61 * Generate extensive debug-level log messages?
63 #define DEBUG_NSE GNUNET_NO
66 * Over how many values do we calculate the weighted average?
68 #define HISTORY_SIZE 64
71 * Message priority to use.
73 #define NSE_PRIORITY 5
76 #define log2(a) (log(a)/log(2))
80 * Amount of work required (W-bit collisions) for NSE proofs, in collision-bits.
82 static unsigned long long nse_work_required;
85 * Interval for sending network size estimation flood requests.
87 static struct GNUNET_TIME_Relative gnunet_nse_interval;
90 * Interval between proof find runs.
92 static struct GNUNET_TIME_Relative proof_find_delay;
94 #if ENABLE_NSE_HISTOGRAM
96 * Handle for writing when we received messages to disk.
98 static struct GNUNET_TESTBED_LOGGER_Handle *lh;
103 * Per-peer information.
109 * Core handle for sending messages to this peer.
111 struct GNUNET_CORE_TransmitHandle *th;
114 * What is the identity of the peer?
116 struct GNUNET_PeerIdentity id;
119 * Task scheduled to send message to this peer.
121 GNUNET_SCHEDULER_TaskIdentifier transmit_task;
124 * Did we receive or send a message about the previous round
125 * to this peer yet? GNUNET_YES if the previous round has
126 * been taken care of.
130 #if ENABLE_NSE_HISTOGRAM
133 * Amount of messages received from this peer on this round.
135 unsigned int received_messages;
138 * Amount of messages transmitted to this peer on this round.
140 unsigned int transmitted_messages;
143 * Which size did we tell the peer the network is?
145 unsigned int last_transmitted_size;
152 GNUNET_NETWORK_STRUCT_BEGIN
155 * Network size estimate reply; sent when "this"
156 * peer's timer has run out before receiving a
157 * valid reply from another peer.
159 struct GNUNET_NSE_FloodMessage
162 * Type: GNUNET_MESSAGE_TYPE_NSE_P2P_FLOOD
164 struct GNUNET_MessageHeader header;
167 * Number of hops this message has taken so far.
169 uint32_t hop_count GNUNET_PACKED;
174 struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
177 * The current timestamp value (which all
178 * peers should agree on).
180 struct GNUNET_TIME_AbsoluteNBO timestamp;
183 * Number of matching bits between the hash
184 * of timestamp and the initiator's public
187 uint32_t matching_bits GNUNET_PACKED;
190 * Public key of the originator.
192 struct GNUNET_PeerIdentity origin;
195 * Proof of work, causing leading zeros when hashed with pkey.
197 uint64_t proof_of_work GNUNET_PACKED;
200 * Signature (over range specified in purpose).
202 struct GNUNET_CRYPTO_EddsaSignature signature;
204 GNUNET_NETWORK_STRUCT_END
207 * Handle to our current configuration.
209 static const struct GNUNET_CONFIGURATION_Handle *cfg;
212 * Handle to the statistics service.
214 static struct GNUNET_STATISTICS_Handle *stats;
217 * Handle to the core service.
219 static struct GNUNET_CORE_Handle *core_api;
222 * Map of all connected peers.
224 static struct GNUNET_CONTAINER_MultiPeerMap *peers;
227 * The current network size estimate. Number of bits matching on
230 static double current_size_estimate;
233 * The standard deviation of the last #HISTORY_SIZE network
236 static double current_std_dev = NAN;
239 * Current hop counter estimate (estimate for network diameter).
241 static uint32_t hop_count_max;
244 * Message for the next round, if we got any.
246 static struct GNUNET_NSE_FloodMessage next_message;
249 * Array of recent size estimate messages.
251 static struct GNUNET_NSE_FloodMessage size_estimate_messages[HISTORY_SIZE];
254 * Index of most recent estimate.
256 static unsigned int estimate_index;
259 * Number of valid entries in the history.
261 static unsigned int estimate_count;
264 * Task scheduled to update our flood message for the next round.
266 static GNUNET_SCHEDULER_TaskIdentifier flood_task;
269 * Task scheduled to compute our proof.
271 static GNUNET_SCHEDULER_TaskIdentifier proof_task;
274 * Notification context, simplifies client broadcasts.
276 static struct GNUNET_SERVER_NotificationContext *nc;
279 * The next major time.
281 static struct GNUNET_TIME_Absolute next_timestamp;
284 * The current major time.
286 static struct GNUNET_TIME_Absolute current_timestamp;
289 * The private key of this peer.
291 static struct GNUNET_CRYPTO_EddsaPrivateKey *my_private_key;
294 * The peer identity of this peer.
296 static struct GNUNET_PeerIdentity my_identity;
299 * Proof of work for this peer.
301 static uint64_t my_proof;
304 * Handle to this serivce's server.
306 static struct GNUNET_SERVER_Handle *srv;
310 * Initialize a message to clients with the current network
313 * @param em message to fill in
316 setup_estimate_message (struct GNUNET_NSE_ClientMessage *em)
328 /* Weighted incremental algorithm for stddev according to West (1979) */
340 for (i = 0; i < estimate_count; i++)
342 j = (estimate_index - i + HISTORY_SIZE) % HISTORY_SIZE;
343 val = htonl (size_estimate_messages[j].matching_bits);
344 weight = estimate_count + 1 - i;
346 temp = weight + sumweight;
348 r = q * weight / temp;
350 sum += sumweight * q * r;
353 if (estimate_count > 0)
354 variance = (sum / sumweight) * estimate_count / (estimate_count - 1.0);
356 /* trivial version for debugging */
359 /* non-weighted trivial version */
365 for (i = 0; i < estimate_count; i++)
367 j = (estimate_index - i + HISTORY_SIZE) % HISTORY_SIZE;
368 val = htonl (size_estimate_messages[j].matching_bits);
372 if (0 != estimate_count)
374 mean = sum / estimate_count;
375 variance = (vsq - mean * sum) / (estimate_count - 1.0); // terrible for numerical stability...
379 std_dev = sqrt (variance);
381 std_dev = variance; /* must be infinity due to estimate_count == 0 */
382 current_std_dev = std_dev;
383 current_size_estimate = mean;
385 em->header.size = htons (sizeof (struct GNUNET_NSE_ClientMessage));
386 em->header.type = htons (GNUNET_MESSAGE_TYPE_NSE_ESTIMATE);
387 em->reserved = htonl (0);
388 em->timestamp = GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_get ());
389 double se = mean - 0.332747;
390 nsize = log2 (GNUNET_CONTAINER_multipeermap_size (peers) + 1);
391 em->size_estimate = GNUNET_hton_double (GNUNET_MAX (se, nsize));
392 em->std_deviation = GNUNET_hton_double (std_dev);
393 GNUNET_STATISTICS_set (stats, "# nodes in the network (estimate)",
394 (uint64_t) pow (2, mean - 1.0 / 3.0), GNUNET_NO);
399 * Handler for START message from client, triggers an
400 * immediate current network estimate notification.
401 * Also, we remember the client for updates upon future
402 * estimate measurements.
405 * @param client who sent the message
406 * @param message the message received
409 handle_start_message (void *cls,
410 struct GNUNET_SERVER_Client *client,
411 const struct GNUNET_MessageHeader *message)
413 struct GNUNET_NSE_ClientMessage em;
415 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
416 "Received START message from client\n");
417 GNUNET_SERVER_notification_context_add (nc, client);
418 setup_estimate_message (&em);
419 GNUNET_SERVER_notification_context_unicast (nc, client, &em.header,
421 GNUNET_SERVER_receive_done (client, GNUNET_OK);
426 * How long should we delay a message to go the given number of
429 * @param matching_bits number of matching bits to consider
432 get_matching_bits_delay (uint32_t matching_bits)
434 /* Calculated as: S + f/2 - (f / pi) * (atan(x - p')) */
435 // S is next_timestamp (ignored in return value)
436 // f is frequency (gnunet_nse_interval)
437 // x is matching_bits
438 // p' is current_size_estimate
439 return ((double) gnunet_nse_interval.rel_value_us / (double) 2.0) -
440 ((gnunet_nse_interval.rel_value_us / M_PI) *
441 atan (matching_bits - current_size_estimate));
446 * What delay randomization should we apply for a given number of matching bits?
448 * @param matching_bits number of matching bits
449 * @return random delay to apply
451 static struct GNUNET_TIME_Relative
452 get_delay_randomization (uint32_t matching_bits)
454 #if USE_RANDOM_DELAYS
455 struct GNUNET_TIME_Relative ret;
459 d = get_matching_bits_delay (matching_bits);
460 i = (uint32_t) (d / (double) (hop_count_max + 1));
461 ret.rel_value_us = i;
462 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
463 "Randomizing flood using latencies up to %s\n",
464 GNUNET_STRINGS_relative_time_to_string (ret,
466 ret.rel_value_us = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, i + 1);
469 return GNUNET_TIME_UNIT_ZERO;
475 * Calculate the 'proof-of-work' hash (an expensive hash).
477 * @param buf data to hash
478 * @param buf_len number of bytes in @a buf
479 * @param result where to write the resulting hash
482 pow_hash (const void *buf,
484 struct GNUNET_HashCode *result)
487 gcry_kdf_derive (buf, buf_len,
490 "gnunet-proof-of-work", strlen ("gnunet-proof-of-work"),
491 2 /* iterations; keep cost of individual op small */,
492 sizeof (struct GNUNET_HashCode), result));
497 * Get the number of matching bits that the given timestamp has to the given peer ID.
499 * @param timestamp time to generate key
500 * @param id peer identity to compare with
501 * @return number of matching bits
504 get_matching_bits (struct GNUNET_TIME_Absolute timestamp,
505 const struct GNUNET_PeerIdentity *id)
507 struct GNUNET_HashCode timestamp_hash;
508 struct GNUNET_HashCode pid_hash;
510 GNUNET_CRYPTO_hash (×tamp.abs_value_us, sizeof (timestamp.abs_value_us),
512 GNUNET_CRYPTO_hash (id, sizeof (struct GNUNET_PeerIdentity), &pid_hash);
513 return GNUNET_CRYPTO_hash_matching_bits (×tamp_hash, &pid_hash);
518 * Get the transmission delay that should be applied for a
521 * @param round_offset -1 for the previous round (random delay between 0 and 50ms)
522 * 0 for the current round (based on our proximity to time key)
523 * @return delay that should be applied
525 static struct GNUNET_TIME_Relative
526 get_transmit_delay (int round_offset)
528 struct GNUNET_TIME_Relative ret;
529 struct GNUNET_TIME_Absolute tgt;
531 uint32_t matching_bits;
533 switch (round_offset)
536 /* previous round is randomized between 0 and 50 ms */
537 #if USE_RANDOM_DELAYS
538 ret.rel_value_us = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK, 50);
540 ret = GNUNET_TIME_UNIT_ZERO;
542 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
543 "Transmitting previous round behind schedule in %s\n",
544 GNUNET_STRINGS_relative_time_to_string (ret, GNUNET_YES));
547 /* current round is based on best-known matching_bits */
549 ntohl (size_estimate_messages[estimate_index].matching_bits);
550 dist_delay = get_matching_bits_delay (matching_bits);
551 dist_delay += get_delay_randomization (matching_bits).rel_value_us;
552 ret.rel_value_us = (uint64_t) dist_delay;
553 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
554 "For round %s, delay for %u matching bits is %s\n",
555 GNUNET_STRINGS_absolute_time_to_string (current_timestamp),
556 (unsigned int) matching_bits,
557 GNUNET_STRINGS_relative_time_to_string (ret,
559 /* now consider round start time and add delay to it */
560 tgt = GNUNET_TIME_absolute_add (current_timestamp, ret);
561 return GNUNET_TIME_absolute_get_remaining (tgt);
564 return GNUNET_TIME_UNIT_FOREVER_REL;
569 * Task that triggers a NSE P2P transmission.
571 * @param cls the `struct NSEPeerEntry *`
572 * @param tc scheduler context
575 transmit_task_cb (void *cls,
576 const struct GNUNET_SCHEDULER_TaskContext *tc);
580 * Called when core is ready to send a message we asked for
581 * out to the destination.
583 * @param cls closure with the `struct NSEPeerEntry *`
584 * @param size number of bytes available in @a buf
585 * @param buf where the callee should write the message
586 * @return number of bytes written to @a buf
589 transmit_ready (void *cls,
593 struct NSEPeerEntry *peer_entry = cls;
596 peer_entry->th = NULL;
599 /* client disconnected */
602 GNUNET_assert (size >= sizeof (struct GNUNET_NSE_FloodMessage));
603 idx = estimate_index;
604 if (GNUNET_NO == peer_entry->previous_round)
606 idx = (idx + HISTORY_SIZE - 1) % HISTORY_SIZE;
607 peer_entry->previous_round = GNUNET_YES;
608 peer_entry->transmit_task =
609 GNUNET_SCHEDULER_add_delayed (get_transmit_delay (0), &transmit_task_cb,
612 if ((0 == ntohl (size_estimate_messages[idx].hop_count)) &&
613 (GNUNET_SCHEDULER_NO_TASK != proof_task))
615 GNUNET_STATISTICS_update (stats,
616 "# flood messages not generated (no proof yet)",
620 if (0 == ntohs (size_estimate_messages[idx].header.size))
622 GNUNET_STATISTICS_update (stats,
623 "# flood messages not generated (lack of history)",
627 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
628 "In round s, sending to `%s' estimate with %u bits\n",
629 GNUNET_STRINGS_absolute_time_to_string (GNUNET_TIME_absolute_ntoh (size_estimate_messages[idx].timestamp)),
630 GNUNET_i2s (&peer_entry->id),
631 (unsigned int) ntohl (size_estimate_messages[idx].matching_bits));
632 if (ntohl (size_estimate_messages[idx].hop_count) == 0)
633 GNUNET_STATISTICS_update (stats, "# flood messages started", 1, GNUNET_NO);
634 GNUNET_STATISTICS_update (stats, "# flood messages transmitted", 1,
636 #if ENABLE_NSE_HISTOGRAM
637 peer_entry->transmitted_messages++;
638 peer_entry->last_transmitted_size =
639 ntohl(size_estimate_messages[idx].matching_bits);
641 memcpy (buf, &size_estimate_messages[idx],
642 sizeof (struct GNUNET_NSE_FloodMessage));
643 return sizeof (struct GNUNET_NSE_FloodMessage);
648 * Task that triggers a NSE P2P transmission.
650 * @param cls the `struct NSEPeerEntry *`
651 * @param tc scheduler context
654 transmit_task_cb (void *cls,
655 const struct GNUNET_SCHEDULER_TaskContext *tc)
657 struct NSEPeerEntry *peer_entry = cls;
659 peer_entry->transmit_task = GNUNET_SCHEDULER_NO_TASK;
661 GNUNET_assert (NULL == peer_entry->th);
663 GNUNET_CORE_notify_transmit_ready (core_api, GNUNET_NO, NSE_PRIORITY,
664 GNUNET_TIME_UNIT_FOREVER_REL,
667 GNUNET_NSE_FloodMessage),
668 &transmit_ready, peer_entry);
673 * We've sent on our flood message or one that we received which was
674 * validated and closer than ours. Update the global list of recent
675 * messages and the average. Also re-broadcast the message to any
679 update_network_size_estimate ()
681 struct GNUNET_NSE_ClientMessage em;
683 setup_estimate_message (&em);
684 GNUNET_SERVER_notification_context_broadcast (nc,
691 * Setup a flood message in our history array at the given
692 * slot offset for the given timestamp.
694 * @param slot index to use
695 * @param ts timestamp to use
698 setup_flood_message (unsigned int slot,
699 struct GNUNET_TIME_Absolute ts)
701 struct GNUNET_NSE_FloodMessage *fm;
702 uint32_t matching_bits;
704 matching_bits = get_matching_bits (ts, &my_identity);
705 fm = &size_estimate_messages[slot];
706 fm->header.size = htons (sizeof (struct GNUNET_NSE_FloodMessage));
707 fm->header.type = htons (GNUNET_MESSAGE_TYPE_NSE_P2P_FLOOD);
708 fm->hop_count = htonl (0);
709 fm->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_NSE_SEND);
711 htonl (sizeof (struct GNUNET_NSE_FloodMessage) -
712 sizeof (struct GNUNET_MessageHeader) - sizeof (uint32_t) -
713 sizeof (struct GNUNET_CRYPTO_EddsaSignature));
714 fm->matching_bits = htonl (matching_bits);
715 fm->timestamp = GNUNET_TIME_absolute_hton (ts);
716 fm->origin = my_identity;
717 fm->proof_of_work = my_proof;
718 if (nse_work_required > 0)
719 GNUNET_assert (GNUNET_OK ==
720 GNUNET_CRYPTO_eddsa_sign (my_private_key, &fm->purpose,
723 memset (&fm->signature, 0, sizeof (fm->signature));
728 * Schedule transmission for the given peer for the current round based
729 * on what we know about the desired delay.
732 * @param key hash of peer identity
733 * @param value the `struct NSEPeerEntry`
734 * @return #GNUNET_OK (continue to iterate)
737 schedule_current_round (void *cls,
738 const struct GNUNET_PeerIdentity * key,
741 struct NSEPeerEntry *peer_entry = value;
742 struct GNUNET_TIME_Relative delay;
744 if (NULL != peer_entry->th)
746 peer_entry->previous_round = GNUNET_NO;
749 if (GNUNET_SCHEDULER_NO_TASK != peer_entry->transmit_task)
751 GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
752 peer_entry->previous_round = GNUNET_NO;
754 #if ENABLE_NSE_HISTOGRAM
755 if (peer_entry->received_messages > 1)
756 GNUNET_STATISTICS_update(stats, "# extra messages",
757 peer_entry->received_messages - 1, GNUNET_NO);
758 peer_entry->transmitted_messages = 0;
759 peer_entry->last_transmitted_size = 0;
760 peer_entry->received_messages = 0;
763 get_transmit_delay ((peer_entry->previous_round == GNUNET_NO) ? -1 : 0);
764 peer_entry->transmit_task =
765 GNUNET_SCHEDULER_add_delayed (delay, &transmit_task_cb, peer_entry);
771 * Update our flood message to be sent (and our timestamps).
774 * @param tc context for this message
777 update_flood_message (void *cls,
778 const struct GNUNET_SCHEDULER_TaskContext *tc)
780 struct GNUNET_TIME_Relative offset;
783 flood_task = GNUNET_SCHEDULER_NO_TASK;
784 if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
786 offset = GNUNET_TIME_absolute_get_remaining (next_timestamp);
787 if (0 != offset.rel_value_us)
789 /* somehow run early, delay more */
791 GNUNET_SCHEDULER_add_delayed (offset, &update_flood_message, NULL);
794 estimate_index = (estimate_index + 1) % HISTORY_SIZE;
795 if (estimate_count < HISTORY_SIZE)
797 current_timestamp = next_timestamp;
799 GNUNET_TIME_absolute_add (current_timestamp, gnunet_nse_interval);
800 if ((current_timestamp.abs_value_us ==
801 GNUNET_TIME_absolute_ntoh (next_message.timestamp).abs_value_us) &&
802 (get_matching_bits (current_timestamp, &my_identity) <
803 ntohl(next_message.matching_bits)))
805 /* we received a message for this round way early, use it! */
806 size_estimate_messages[estimate_index] = next_message;
807 size_estimate_messages[estimate_index].hop_count =
808 htonl (1 + ntohl (next_message.hop_count));
811 setup_flood_message (estimate_index, current_timestamp);
812 next_message.matching_bits = htonl (0); /* reset for 'next' round */
814 for (i = 0; i < HISTORY_SIZE; i++)
816 GNUNET_MAX (ntohl (size_estimate_messages[i].hop_count), hop_count_max);
817 GNUNET_CONTAINER_multipeermap_iterate (peers, &schedule_current_round, NULL);
819 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
820 (next_timestamp), &update_flood_message,
826 * Count the leading zeroes in hash.
828 * @param hash to count leading zeros in
829 * @return the number of leading zero bits.
832 count_leading_zeroes (const struct GNUNET_HashCode *hash)
834 unsigned int hash_count;
837 while ((0 == GNUNET_CRYPTO_hash_get_bit (hash, hash_count)))
844 * Check whether the given public key and integer are a valid proof of
847 * @param pkey the public key
848 * @param val the integer
849 * @return #GNUNET_YES if valid, #GNUNET_NO if not
852 check_proof_of_work (const struct GNUNET_CRYPTO_EddsaPublicKey *pkey,
855 char buf[sizeof (struct GNUNET_CRYPTO_EddsaPublicKey) +
856 sizeof (val)] GNUNET_ALIGN;
857 struct GNUNET_HashCode result;
859 memcpy (buf, &val, sizeof (val));
860 memcpy (&buf[sizeof (val)], pkey,
861 sizeof (struct GNUNET_CRYPTO_EddsaPublicKey));
862 pow_hash (buf, sizeof (buf), &result);
863 return (count_leading_zeroes (&result) >=
864 nse_work_required) ? GNUNET_YES : GNUNET_NO;
869 * Write our current proof to disk.
877 GNUNET_CONFIGURATION_get_value_filename (cfg, "NSE", "PROOFFILE", &proof))
879 if (sizeof (my_proof) !=
880 GNUNET_DISK_fn_write (proof, &my_proof, sizeof (my_proof),
881 GNUNET_DISK_PERM_USER_READ |
882 GNUNET_DISK_PERM_USER_WRITE))
883 GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "write", proof);
890 * Find our proof of work.
892 * @param cls closure (unused)
893 * @param tc task context
896 find_proof (void *cls,
897 const struct GNUNET_SCHEDULER_TaskContext *tc)
899 #define ROUND_SIZE 10
901 char buf[sizeof (struct GNUNET_CRYPTO_EddsaPublicKey) +
902 sizeof (uint64_t)] GNUNET_ALIGN;
903 struct GNUNET_HashCode result;
906 proof_task = GNUNET_SCHEDULER_NO_TASK;
907 memcpy (&buf[sizeof (uint64_t)], &my_identity,
908 sizeof (struct GNUNET_PeerIdentity));
911 while ((counter != UINT64_MAX) && (i < ROUND_SIZE))
913 memcpy (buf, &counter, sizeof (uint64_t));
914 pow_hash (buf, sizeof (buf), &result);
915 if (nse_work_required <= count_leading_zeroes (&result))
918 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Proof of work found: %llu!\n",
919 (unsigned long long) GNUNET_ntohll (counter));
921 setup_flood_message (estimate_index, current_timestamp);
927 if (my_proof / (100 * ROUND_SIZE) < counter / (100 * ROUND_SIZE))
929 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing proofs currently at %llu\n",
930 (unsigned long long) counter);
931 /* remember progress every 100 rounds */
940 GNUNET_SCHEDULER_add_delayed_with_priority (proof_find_delay,
941 GNUNET_SCHEDULER_PRIORITY_IDLE,
947 * An incoming flood message has been received which claims
948 * to have more bits matching than any we know in this time
949 * period. Verify the signature and/or proof of work.
951 * @param incoming_flood the message to verify
952 * @return #GNUNET_YES if the message is verified
953 * #GNUNET_NO if the key/signature don't verify
956 verify_message_crypto (const struct GNUNET_NSE_FloodMessage *incoming_flood)
959 check_proof_of_work (&incoming_flood->origin.public_key,
960 incoming_flood->proof_of_work))
962 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Proof of work invalid: %llu!\n",
964 GNUNET_ntohll (incoming_flood->proof_of_work));
968 if ((nse_work_required > 0) &&
970 GNUNET_CRYPTO_eddsa_verify (GNUNET_SIGNATURE_PURPOSE_NSE_SEND,
971 &incoming_flood->purpose,
972 &incoming_flood->signature,
973 &incoming_flood->origin.public_key)))
983 * Update transmissions for the given peer for the current round based
984 * on updated proximity information.
986 * @param cls peer entry to exclude from updates
987 * @param key hash of peer identity
988 * @param value the `struct NSEPeerEntry *` of a peer to transmit to
989 * @return #GNUNET_OK (continue to iterate)
992 update_flood_times (void *cls,
993 const struct GNUNET_PeerIdentity *key,
996 struct NSEPeerEntry *exclude = cls;
997 struct NSEPeerEntry *peer_entry = value;
998 struct GNUNET_TIME_Relative delay;
1000 if (NULL != peer_entry->th)
1001 return GNUNET_OK; /* already active */
1002 if (peer_entry == exclude)
1003 return GNUNET_OK; /* trigger of the update */
1004 if (peer_entry->previous_round == GNUNET_NO)
1006 /* still stuck in previous round, no point to update, check that
1007 * we are active here though... */
1008 if ( (GNUNET_SCHEDULER_NO_TASK == peer_entry->transmit_task) &&
1009 (NULL == peer_entry->th) )
1015 if (GNUNET_SCHEDULER_NO_TASK != peer_entry->transmit_task)
1017 GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
1018 peer_entry->transmit_task = GNUNET_SCHEDULER_NO_TASK;
1020 delay = get_transmit_delay (0);
1021 peer_entry->transmit_task =
1022 GNUNET_SCHEDULER_add_delayed (delay, &transmit_task_cb, peer_entry);
1028 * Core handler for size estimate flooding messages.
1030 * @param cls closure unused
1031 * @param message message
1032 * @param peer peer identity this message is from (ignored)
1035 handle_p2p_size_estimate (void *cls,
1036 const struct GNUNET_PeerIdentity *peer,
1037 const struct GNUNET_MessageHeader *message)
1039 const struct GNUNET_NSE_FloodMessage *incoming_flood;
1040 struct GNUNET_TIME_Absolute ts;
1041 struct NSEPeerEntry *peer_entry;
1042 uint32_t matching_bits;
1045 #if ENABLE_NSE_HISTOGRAM
1049 t = GNUNET_TIME_absolute_get().abs_value_us;
1050 GNUNET_TESTBED_LOGGER_write (lh, &t, sizeof (uint64_t));
1053 incoming_flood = (const struct GNUNET_NSE_FloodMessage *) message;
1054 GNUNET_STATISTICS_update (stats, "# flood messages received", 1, GNUNET_NO);
1055 matching_bits = ntohl (incoming_flood->matching_bits);
1060 struct GNUNET_PeerIdentity os;
1062 GNUNET_snprintf (origin,
1065 GNUNET_i2s (&incoming_flood->origin));
1066 GNUNET_snprintf (pred,
1070 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1071 "Flood at %s from `%s' via `%s' at `%s' with bits %u\n",
1072 GNUNET_STRINGS_absolute_time_to_string (GNUNET_TIME_absolute_ntoh (incoming_flood->timestamp)),
1073 origin, pred, GNUNET_i2s (&my_identity),
1074 (unsigned int) matching_bits);
1078 peer_entry = GNUNET_CONTAINER_multipeermap_get (peers, peer);
1079 if (NULL == peer_entry)
1084 #if ENABLE_NSE_HISTOGRAM
1085 peer_entry->received_messages++;
1086 if (peer_entry->transmitted_messages > 0 &&
1087 peer_entry->last_transmitted_size >= matching_bits)
1088 GNUNET_STATISTICS_update(stats, "# cross messages", 1, GNUNET_NO);
1091 ts = GNUNET_TIME_absolute_ntoh (incoming_flood->timestamp);
1092 if (ts.abs_value_us == current_timestamp.abs_value_us)
1093 idx = estimate_index;
1094 else if (ts.abs_value_us ==
1095 current_timestamp.abs_value_us - gnunet_nse_interval.rel_value_us)
1096 idx = (estimate_index + HISTORY_SIZE - 1) % HISTORY_SIZE;
1097 else if (ts.abs_value_us == next_timestamp.abs_value_us)
1099 if (matching_bits <= ntohl (next_message.matching_bits))
1100 return GNUNET_OK; /* ignore, simply too early/late */
1101 if (GNUNET_YES != verify_message_crypto (incoming_flood))
1103 GNUNET_break_op (0);
1106 next_message = *incoming_flood;
1111 GNUNET_STATISTICS_update (stats,
1112 "# flood messages discarded (clock skew too large)",
1116 if (0 == (memcmp (peer, &my_identity, sizeof (struct GNUNET_PeerIdentity))))
1118 /* send to self, update our own estimate IF this also comes from us! */
1120 memcmp (&incoming_flood->origin,
1121 &my_identity, sizeof (my_identity)))
1122 update_network_size_estimate ();
1125 if (matching_bits == ntohl (size_estimate_messages[idx].matching_bits))
1127 /* Cancel transmission in the other direction, as this peer clearly has
1128 up-to-date information already. Even if we didn't talk to this peer in
1129 the previous round, we should no longer send it stale information as it
1130 told us about the current round! */
1131 peer_entry->previous_round = GNUNET_YES;
1132 if (idx != estimate_index)
1134 /* do not transmit information for the previous round to this peer
1135 anymore (but allow current round) */
1138 /* got up-to-date information for current round, cancel transmission to
1139 * this peer altogether */
1140 if (GNUNET_SCHEDULER_NO_TASK != peer_entry->transmit_task)
1142 GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
1143 peer_entry->transmit_task = GNUNET_SCHEDULER_NO_TASK;
1145 if (NULL != peer_entry->th)
1147 GNUNET_CORE_notify_transmit_ready_cancel (peer_entry->th);
1148 peer_entry->th = NULL;
1152 if (matching_bits < ntohl (size_estimate_messages[idx].matching_bits))
1154 if ((idx < estimate_index) && (peer_entry->previous_round == GNUNET_YES)) {
1155 peer_entry->previous_round = GNUNET_NO;
1157 /* push back our result now, that peer is spreading bad information... */
1158 if (NULL == peer_entry->th)
1160 if (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK)
1161 GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
1162 peer_entry->transmit_task =
1163 GNUNET_SCHEDULER_add_now (&transmit_task_cb, peer_entry);
1165 /* Not closer than our most recent message, no need to do work here */
1166 GNUNET_STATISTICS_update (stats,
1167 "# flood messages ignored (had closer already)",
1171 if (GNUNET_YES != verify_message_crypto (incoming_flood))
1173 GNUNET_break_op (0);
1176 GNUNET_assert (matching_bits >
1177 ntohl (size_estimate_messages[idx].matching_bits));
1178 /* Cancel transmission in the other direction, as this peer clearly has
1179 * up-to-date information already.
1181 peer_entry->previous_round = GNUNET_YES;
1182 if (idx == estimate_index)
1184 /* cancel any activity for current round */
1185 if (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK)
1187 GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
1188 peer_entry->transmit_task = GNUNET_SCHEDULER_NO_TASK;
1190 if (peer_entry->th != NULL)
1192 GNUNET_CORE_notify_transmit_ready_cancel (peer_entry->th);
1193 peer_entry->th = NULL;
1196 size_estimate_messages[idx] = *incoming_flood;
1197 size_estimate_messages[idx].hop_count =
1198 htonl (ntohl (incoming_flood->hop_count) + 1);
1200 GNUNET_MAX (ntohl (incoming_flood->hop_count) + 1, hop_count_max);
1201 GNUNET_STATISTICS_set (stats,
1202 "# estimated network diameter",
1203 hop_count_max, GNUNET_NO);
1205 /* have a new, better size estimate, inform clients */
1206 update_network_size_estimate ();
1209 GNUNET_CONTAINER_multipeermap_iterate (peers, &update_flood_times,
1217 * Method called whenever a peer connects. Sets up the PeerEntry and
1218 * schedules the initial size info transmission to this peer.
1220 * @param cls closure
1221 * @param peer peer identity this notification is about
1224 handle_core_connect (void *cls,
1225 const struct GNUNET_PeerIdentity *peer)
1227 struct NSEPeerEntry *peer_entry;
1229 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' connected to us\n",
1231 peer_entry = GNUNET_new (struct NSEPeerEntry);
1232 peer_entry->id = *peer;
1233 GNUNET_assert (GNUNET_OK ==
1234 GNUNET_CONTAINER_multipeermap_put (peers, peer,
1236 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
1237 peer_entry->transmit_task =
1238 GNUNET_SCHEDULER_add_delayed (get_transmit_delay (-1), &transmit_task_cb,
1240 GNUNET_STATISTICS_update (stats, "# peers connected", 1, GNUNET_NO);
1245 * Method called whenever a peer disconnects. Deletes the PeerEntry and cancels
1246 * any pending transmission requests to that peer.
1248 * @param cls closure
1249 * @param peer peer identity this notification is about
1252 handle_core_disconnect (void *cls,
1253 const struct GNUNET_PeerIdentity *peer)
1255 struct NSEPeerEntry *pos;
1257 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1258 "Peer `%s' disconnected from us\n",
1260 pos = GNUNET_CONTAINER_multipeermap_get (peers, peer);
1266 GNUNET_assert (GNUNET_YES ==
1267 GNUNET_CONTAINER_multipeermap_remove (peers, peer,
1269 if (pos->transmit_task != GNUNET_SCHEDULER_NO_TASK) {
1270 GNUNET_SCHEDULER_cancel (pos->transmit_task);
1271 pos->transmit_task = GNUNET_SCHEDULER_NO_TASK;
1273 if (NULL != pos->th)
1275 GNUNET_CORE_notify_transmit_ready_cancel (pos->th);
1279 GNUNET_STATISTICS_update (stats, "# peers connected", -1, GNUNET_NO);
1283 #if ENABLE_NSE_HISTOGRAM
1285 * Functions of this type are called to notify a successful transmission of the
1286 * message to the logger service
1289 * @param size the amount of data sent (ignored)
1292 flush_comp_cb (void *cls,
1295 GNUNET_TESTBED_LOGGER_disconnect (lh);
1302 * Task run during shutdown.
1308 shutdown_task (void *cls,
1309 const struct GNUNET_SCHEDULER_TaskContext *tc)
1311 if (GNUNET_SCHEDULER_NO_TASK != flood_task)
1313 GNUNET_SCHEDULER_cancel (flood_task);
1314 flood_task = GNUNET_SCHEDULER_NO_TASK;
1316 if (GNUNET_SCHEDULER_NO_TASK != proof_task)
1318 GNUNET_SCHEDULER_cancel (proof_task);
1319 proof_task = GNUNET_SCHEDULER_NO_TASK;
1320 write_proof (); /* remember progress */
1324 GNUNET_SERVER_notification_context_destroy (nc);
1327 if (NULL != core_api)
1329 GNUNET_CORE_disconnect (core_api);
1334 GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
1339 GNUNET_CONTAINER_multipeermap_destroy (peers);
1342 if (NULL != my_private_key)
1344 GNUNET_free (my_private_key);
1345 my_private_key = NULL;
1347 #if ENABLE_NSE_HISTOGRAM
1348 struct GNUNET_TIME_Relative timeout;
1349 timeout = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30);
1350 GNUNET_TESTBED_LOGGER_flush (lh, timeout, &flush_comp_cb, NULL);
1356 * Called on core init/fail.
1358 * @param cls service closure
1359 * @param identity the public identity of this peer
1362 core_init (void *cls,
1363 const struct GNUNET_PeerIdentity *identity)
1365 struct GNUNET_TIME_Absolute now;
1366 struct GNUNET_TIME_Absolute prev_time;
1368 if (NULL == identity)
1370 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Connection to core FAILED!\n");
1371 GNUNET_SCHEDULER_shutdown ();
1375 memcmp (&my_identity, identity,
1376 sizeof (struct GNUNET_PeerIdentity)));
1377 now = GNUNET_TIME_absolute_get ();
1378 current_timestamp.abs_value_us =
1379 (now.abs_value_us / gnunet_nse_interval.rel_value_us) *
1380 gnunet_nse_interval.rel_value_us;
1382 GNUNET_TIME_absolute_add (current_timestamp, gnunet_nse_interval);
1383 estimate_index = HISTORY_SIZE - 1;
1385 if (GNUNET_YES == check_proof_of_work (&my_identity.public_key, my_proof))
1387 int idx = (estimate_index + HISTORY_SIZE - 1) % HISTORY_SIZE;
1388 prev_time.abs_value_us =
1389 current_timestamp.abs_value_us - gnunet_nse_interval.rel_value_us;
1390 setup_flood_message (idx, prev_time);
1391 setup_flood_message (estimate_index, current_timestamp);
1395 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
1396 (next_timestamp), &update_flood_message,
1402 * Handle network size estimate clients.
1404 * @param cls closure
1405 * @param server the initialized server
1406 * @param c configuration to use
1410 struct GNUNET_SERVER_Handle *server,
1411 const struct GNUNET_CONFIGURATION_Handle *c)
1413 static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1414 {&handle_start_message, NULL, GNUNET_MESSAGE_TYPE_NSE_START,
1415 sizeof (struct GNUNET_MessageHeader)},
1418 static const struct GNUNET_CORE_MessageHandler core_handlers[] = {
1419 {&handle_p2p_size_estimate, GNUNET_MESSAGE_TYPE_NSE_P2P_FLOOD,
1420 sizeof (struct GNUNET_NSE_FloodMessage)},
1424 struct GNUNET_CRYPTO_EddsaPrivateKey *pk;
1429 GNUNET_CONFIGURATION_get_value_time (cfg, "NSE", "INTERVAL",
1430 &gnunet_nse_interval))
1432 GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
1434 GNUNET_SCHEDULER_shutdown ();
1438 GNUNET_CONFIGURATION_get_value_time (cfg, "NSE", "WORKDELAY",
1441 GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
1442 "NSE", "WORKDELAY");
1443 GNUNET_SCHEDULER_shutdown ();
1447 GNUNET_CONFIGURATION_get_value_number (cfg, "NSE", "WORKBITS",
1448 &nse_work_required))
1450 GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
1452 GNUNET_SCHEDULER_shutdown ();
1455 if (nse_work_required >= sizeof (struct GNUNET_HashCode) * 8)
1457 GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
1460 _("Value is too large.\n"));
1461 GNUNET_SCHEDULER_shutdown ();
1465 #if ENABLE_NSE_HISTOGRAM
1466 if (NULL == (lh = GNUNET_TESTBED_LOGGER_connect (cfg)))
1468 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1469 "Cannot connect to the testbed logger. Exiting.\n");
1470 GNUNET_SCHEDULER_shutdown ();
1475 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
1477 pk = GNUNET_CRYPTO_eddsa_key_create_from_configuration (cfg);
1478 GNUNET_assert (NULL != pk);
1479 my_private_key = pk;
1480 GNUNET_CRYPTO_eddsa_key_get_public (my_private_key,
1481 &my_identity.public_key);
1483 GNUNET_CONFIGURATION_get_value_filename (cfg, "NSE", "PROOFFILE", &proof))
1485 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1487 ("NSE service is lacking key configuration settings. Exiting.\n"));
1488 GNUNET_free (my_private_key);
1489 my_private_key = NULL;
1490 GNUNET_SCHEDULER_shutdown ();
1493 if ((GNUNET_YES != GNUNET_DISK_file_test (proof)) ||
1494 (sizeof (my_proof) !=
1495 GNUNET_DISK_fn_read (proof, &my_proof, sizeof (my_proof))))
1497 GNUNET_free (proof);
1499 GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_IDLE,
1502 peers = GNUNET_CONTAINER_multipeermap_create (128, GNUNET_NO);
1503 GNUNET_SERVER_add_handlers (srv, handlers);
1504 nc = GNUNET_SERVER_notification_context_create (srv, 1);
1505 /* Connect to core service and register core handlers */
1506 core_api = GNUNET_CORE_connect (cfg, /* Main configuration */
1507 NULL, /* Closure passed to functions */
1508 &core_init, /* Call core_init once connected */
1509 &handle_core_connect, /* Handle connects */
1510 &handle_core_disconnect, /* Handle disconnects */
1511 NULL, /* Don't want notified about all incoming messages */
1512 GNUNET_NO, /* For header only inbound notification */
1513 NULL, /* Don't want notified about all outbound messages */
1514 GNUNET_NO, /* For header only outbound notification */
1515 core_handlers); /* Register these handlers */
1516 if (NULL == core_api)
1518 GNUNET_SCHEDULER_shutdown ();
1521 stats = GNUNET_STATISTICS_create ("nse", cfg);
1526 * The main function for the network size estimation service.
1528 * @param argc number of arguments from the command line
1529 * @param argv command line arguments
1530 * @return 0 ok, 1 on error
1536 return (GNUNET_OK ==
1537 GNUNET_SERVICE_run (argc, argv, "nse", GNUNET_SERVICE_OPTION_NONE,
1538 &run, NULL)) ? 0 : 1;
1546 * MINIMIZE heap size (way below 128k) since this process doesn't need much.
1548 void __attribute__ ((constructor))
1549 GNUNET_ARM_memory_init ()
1551 mallopt (M_TRIM_THRESHOLD, 4 * 1024);
1552 mallopt (M_TOP_PAD, 1 * 1024);
1559 /* end of gnunet-service-nse.c */