|
@@ -381,7 +381,6 @@ init_keys(void)
|
|
|
char v3_digest[20];
|
|
|
char *cp;
|
|
|
or_options_t *options = get_options();
|
|
|
- or_state_t *state = get_or_state();
|
|
|
authority_type_t type;
|
|
|
time_t now = time(NULL);
|
|
|
|
|
@@ -441,18 +440,23 @@ init_keys(void)
|
|
|
prkey = init_key_from_file(keydir, 1, LOG_ERR);
|
|
|
if (!prkey) return -1;
|
|
|
set_onion_key(prkey);
|
|
|
- if (state->LastRotatedOnionKey > 100 && state->LastRotatedOnionKey < now) {
|
|
|
-
|
|
|
- * values in the distant future. If we did, we might never rotate the
|
|
|
- * onion key. */
|
|
|
- onionkey_set_at = state->LastRotatedOnionKey;
|
|
|
- } else {
|
|
|
-
|
|
|
- * or it's a holdover from 0.1.2.4-alpha-dev or earlier. In either case,
|
|
|
- * start the clock ticking now so that we will eventually rotate it even
|
|
|
- * if we don't stay up for a full MIN_ONION_KEY_LIFETIME. */
|
|
|
- state->LastRotatedOnionKey = onionkey_set_at = now;
|
|
|
- or_state_mark_dirty(state, options->AvoidDiskWrites ? time(NULL)+3600 : 0);
|
|
|
+ if (options->command == CMD_RUN_TOR) {
|
|
|
+
|
|
|
+ or_state_t *state = get_or_state();
|
|
|
+ if (state->LastRotatedOnionKey > 100 && state->LastRotatedOnionKey < now) {
|
|
|
+
|
|
|
+ * values in the distant future. If we did, we might never rotate the
|
|
|
+ * onion key. */
|
|
|
+ onionkey_set_at = state->LastRotatedOnionKey;
|
|
|
+ } else {
|
|
|
+
|
|
|
+ * or it's a holdover from 0.1.2.4-alpha-dev or earlier. In either case,
|
|
|
+ * start the clock ticking now so that we will eventually rotate it even
|
|
|
+ * if we don't stay up for a full MIN_ONION_KEY_LIFETIME. */
|
|
|
+ state->LastRotatedOnionKey = onionkey_set_at = now;
|
|
|
+ or_state_mark_dirty(state, options->AvoidDiskWrites ?
|
|
|
+ time(NULL)+3600 : 0);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
tor_snprintf(keydir,sizeof(keydir),
|