summaryrefslogtreecommitdiff
path: root/src/or/rephist.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-05-19 21:18:18 -0400
committerNick Mathewson <nickm@torproject.org>2016-05-19 21:21:24 -0400
commit2775dd8649df80acf0f4f13f434363f28f64a4b8 (patch)
tree0d175258cfaf70a29e389f0ab5cfb63dac504c41 /src/or/rephist.c
parent60ac07940f06b4574c3ae044c8fea20777198fa4 (diff)
downloadtor-2775dd8649df80acf0f4f13f434363f28f64a4b8.tar.gz
tor-2775dd8649df80acf0f4f13f434363f28f64a4b8.zip
Compute HS stats outputs without round_int64_...
Fix for bug 19130.
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r--src/or/rephist.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c
index 70d230d18c..f7decd593e 100644
--- a/src/or/rephist.c
+++ b/src/or/rephist.c
@@ -2933,7 +2933,7 @@ static time_t start_of_hs_stats_interval;
* information needed. */
typedef struct hs_stats_t {
/** How many relay cells have we seen as rendezvous points? */
- int64_t rp_relay_cells_seen;
+ uint64_t rp_relay_cells_seen;
/** Set of unique public key digests we've seen this stat period
* (could also be implemented as sorted smartlist). */
@@ -3074,16 +3074,20 @@ rep_hist_format_hs_stats(time_t now)
int64_t obfuscated_cells_seen;
int64_t obfuscated_onions_seen;
- obfuscated_cells_seen = round_int64_to_next_multiple_of(
- hs_stats->rp_relay_cells_seen,
- REND_CELLS_BIN_SIZE);
- obfuscated_cells_seen = add_laplace_noise(obfuscated_cells_seen,
+ uint64_t rounded_cells_seen
+ = round_uint64_to_next_multiple_of(hs_stats->rp_relay_cells_seen,
+ REND_CELLS_BIN_SIZE);
+ rounded_cells_seen = MIN(rounded_cells_seen, INT64_MAX);
+ obfuscated_cells_seen = add_laplace_noise((int64_t)rounded_cells_seen,
crypto_rand_double(),
REND_CELLS_DELTA_F, REND_CELLS_EPSILON);
- obfuscated_onions_seen = round_int64_to_next_multiple_of(digestmap_size(
- hs_stats->onions_seen_this_period),
- ONIONS_SEEN_BIN_SIZE);
- obfuscated_onions_seen = add_laplace_noise(obfuscated_onions_seen,
+
+ int64_t rounded_onions_seen =
+ round_uint64_to_next_multiple_of((size_t)digestmap_size(
+ hs_stats->onions_seen_this_period),
+ ONIONS_SEEN_BIN_SIZE);
+ rounded_onions_seen = MIN(rounded_onions_seen, INT64_MAX);
+ obfuscated_onions_seen = add_laplace_noise((int64_t)rounded_onions_seen,
crypto_rand_double(), ONIONS_SEEN_DELTA_F,
ONIONS_SEEN_EPSILON);