[tor-commits] [tor/master] Keep descriptor rotation time after HUP occurs.

nickm at torproject.org nickm at torproject.org
Thu Aug 16 12:37:34 UTC 2018


commit c798957b5925b637896bf162f58aca806235c2a5
Author: George Kadianakis <desnacked at riseup.net>
Date:   Sat Jul 28 17:31:46 2018 +0200

    Keep descriptor rotation time after HUP occurs.
---
 changes/bug26932    | 3 +++
 src/or/hs_service.c | 1 +
 2 files changed, 4 insertions(+)

diff --git a/changes/bug26932 b/changes/bug26932
new file mode 100644
index 000000000..7d9481dcd
--- /dev/null
+++ b/changes/bug26932
@@ -0,0 +1,3 @@
+  o Minor bugfixes (onion services):
+    - Fix bug that causes services to not ever rotate their descriptors if they
+      were getting SIGHUPed often. Fixes bug 26932; bugfix on 0.3.2.1-alpha.
\ No newline at end of file
diff --git a/src/or/hs_service.c b/src/or/hs_service.c
index b9a1dfc36..33088480d 100644
--- a/src/or/hs_service.c
+++ b/src/or/hs_service.c
@@ -845,6 +845,7 @@ move_hs_state(hs_service_t *src_service, hs_service_t *dst_service)
     replaycache_free(dst->replay_cache_rend_cookie);
   }
   dst->replay_cache_rend_cookie = src->replay_cache_rend_cookie;
+  dst->next_rotation_time = src->next_rotation_time;
 
   src->replay_cache_rend_cookie = NULL; /* steal pointer reference */
 }





More information about the tor-commits mailing list