[tor-commits] [tor/master] Validate intro point limits to avoid asserts.
nickm at torproject.org
nickm at torproject.org
Wed Aug 9 00:36:38 UTC 2017
commit 3bc52dae8932b42c809e2b233d5c194b74fa4f9b
Author: George Kadianakis <desnacked at riseup.net>
Date: Thu Aug 3 15:49:42 2017 +0300
Validate intro point limits to avoid asserts.
---
src/or/hs_service.c | 25 +++++++++++++++++++------
1 file changed, 19 insertions(+), 6 deletions(-)
diff --git a/src/or/hs_service.c b/src/or/hs_service.c
index 22739334d..430fb36a5 100644
--- a/src/or/hs_service.c
+++ b/src/or/hs_service.c
@@ -346,12 +346,25 @@ service_intro_point_new(const extend_info_t *ei, unsigned int is_legacy)
* term keys. */
ed25519_keypair_generate(&ip->auth_key_kp, 0);
- ip->introduce2_max =
- crypto_rand_int_range(get_intro_point_min_introduce2(),
- get_intro_point_max_introduce2());
- ip->time_to_expire = time(NULL) +
- crypto_rand_int_range(get_intro_point_min_lifetime(),
- get_intro_point_max_lifetime());
+ { /* Set introduce2 max cells limit */
+ int32_t min_introduce2_cells = get_intro_point_min_introduce2();
+ int32_t max_introduce2_cells = get_intro_point_max_introduce2();
+ if (BUG(max_introduce2_cells < min_introduce2_cells)) {
+ goto err;
+ }
+ ip->introduce2_max = crypto_rand_int_range(min_introduce2_cells,
+ max_introduce2_cells);
+ }
+ { /* Set intro point lifetime */
+ int32_t intro_point_min_lifetime = get_intro_point_min_lifetime();
+ int32_t intro_point_max_lifetime = get_intro_point_max_lifetime();
+ if (BUG(intro_point_max_lifetime < intro_point_min_lifetime)) {
+ goto err;
+ }
+ ip->time_to_expire = time(NULL) +
+ crypto_rand_int_range(intro_point_min_lifetime,intro_point_max_lifetime);
+ }
+
ip->replay_cache = replaycache_new(0, 0);
/* Initialize the base object. We don't need the certificate object. */
More information about the tor-commits
mailing list