Merge remote-tracking branch 'public/prop140_aftermath_cfg'

This commit is contained in:
Nick Mathewson 2017-05-15 17:26:47 -04:00
commit afef059795
4 changed files with 42 additions and 10 deletions

View File

@ -166,7 +166,6 @@ static HT_HEAD(cdm_diff_ht, cdm_diff_t) cdm_diff_ht = HT_INITIALIZER();
* Configuration for this module * Configuration for this module
*/ */
static consdiff_cfg_t consdiff_cfg = { static consdiff_cfg_t consdiff_cfg = {
/* .cache_max_age_hours = */ 24 * 90,
// XXXX I'd like to make this number bigger, but it interferes with the // XXXX I'd like to make this number bigger, but it interferes with the
// XXXX seccomp2 syscall filter, which tops out at BPF_MAXINS (4096) // XXXX seccomp2 syscall filter, which tops out at BPF_MAXINS (4096)
// XXXX rules. // XXXX rules.
@ -456,6 +455,25 @@ cdm_cache_lookup_consensus(consensus_flavor_t flavor, time_t valid_after)
return result; return result;
} }
/** Return the maximum age (in seconds) of consensuses that we should consider
* storing. The available space in the directory may impose additional limits
* on how much we store. */
static int32_t
get_max_age_to_cache(void)
{
/* The parameter is in hours. */
const int32_t DEFAULT_MAX_AGE_TO_CACHE = 8192;
const int32_t MIN_MAX_AGE_TO_CACHE = 0;
const int32_t MAX_MAX_AGE_TO_CACHE = 8192;
const char MAX_AGE_TO_CACHE_NAME[] = "max-consensus-age-to-cache-for-diff";
return 3600 * networkstatus_get_param(NULL,
MAX_AGE_TO_CACHE_NAME,
DEFAULT_MAX_AGE_TO_CACHE,
MIN_MAX_AGE_TO_CACHE,
MAX_MAX_AGE_TO_CACHE);
}
/** /**
* Given a string containing a networkstatus consensus, and the results of * Given a string containing a networkstatus consensus, and the results of
* having parsed that consensus, add that consensus to the cache if it is not * having parsed that consensus, add that consensus to the cache if it is not
@ -476,7 +494,7 @@ consdiffmgr_add_consensus(const char *consensus,
const consensus_flavor_t flavor = as_parsed->flavor; const consensus_flavor_t flavor = as_parsed->flavor;
const time_t valid_after = as_parsed->valid_after; const time_t valid_after = as_parsed->valid_after;
if (valid_after < approx_time() - 3600 * consdiff_cfg.cache_max_age_hours) { if (valid_after < approx_time() - get_max_age_to_cache()) {
log_info(LD_DIRSERV, "We don't care about this consensus document; it's " log_info(LD_DIRSERV, "We don't care about this consensus document; it's "
"too old."); "too old.");
return -1; return -1;
@ -643,8 +661,7 @@ consdiffmgr_cleanup(void)
log_debug(LD_DIRSERV, "Looking for consdiffmgr entries to remove"); log_debug(LD_DIRSERV, "Looking for consdiffmgr entries to remove");
// 1. Delete any consensus or diff or anything whose valid_after is too old. // 1. Delete any consensus or diff or anything whose valid_after is too old.
const time_t valid_after_cutoff = const time_t valid_after_cutoff = approx_time() - get_max_age_to_cache();
approx_time() - 3600 * consdiff_cfg.cache_max_age_hours;
consensus_cache_find_all(objects, cdm_cache_get(), consensus_cache_find_all(objects, cdm_cache_get(),
NULL, NULL); NULL, NULL);

View File

@ -14,7 +14,6 @@ typedef enum consdiff_status_t {
} consdiff_status_t; } consdiff_status_t;
typedef struct consdiff_cfg_t { typedef struct consdiff_cfg_t {
int32_t cache_max_age_hours;
int32_t cache_max_num; int32_t cache_max_num;
} consdiff_cfg_t; } consdiff_cfg_t;

View File

@ -499,11 +499,23 @@ dir_consensus_request_set_additional_headers(directory_request_t *req,
* period of 1 hour. * period of 1 hour.
*/ */
const int DEFAULT_IF_MODIFIED_SINCE_DELAY = 180; const int DEFAULT_IF_MODIFIED_SINCE_DELAY = 180;
const int32_t DEFAULT_TRY_DIFF_FOR_CONSENSUS_NEWER = 72;
const int32_t MIN_TRY_DIFF_FOR_CONSENSUS_NEWER = 0;
const int32_t MAX_TRY_DIFF_FOR_CONSENSUS_NEWER = 8192;
const char TRY_DIFF_FOR_CONSENSUS_NEWER_NAME[] =
"try-diff-for-consensus-newer-than";
int flav = FLAV_NS; int flav = FLAV_NS;
if (resource) if (resource)
flav = networkstatus_parse_flavor_name(resource); flav = networkstatus_parse_flavor_name(resource);
int32_t max_age_for_diff = 3600 *
networkstatus_get_param(NULL,
TRY_DIFF_FOR_CONSENSUS_NEWER_NAME,
DEFAULT_TRY_DIFF_FOR_CONSENSUS_NEWER,
MIN_TRY_DIFF_FOR_CONSENSUS_NEWER,
MAX_TRY_DIFF_FOR_CONSENSUS_NEWER);
if (flav != -1) { if (flav != -1) {
/* IF we have a parsed consensus of this type, we can do an /* IF we have a parsed consensus of this type, we can do an
* if-modified-time based on it. */ * if-modified-time based on it. */
@ -519,9 +531,11 @@ dir_consensus_request_set_additional_headers(directory_request_t *req,
ims_delay = (v->fresh_until - v->valid_after)/2; ims_delay = (v->fresh_until - v->valid_after)/2;
} }
if_modified_since = v->valid_after + ims_delay; if_modified_since = v->valid_after + ims_delay;
if (v->valid_after >= approx_time() - max_age_for_diff) {
memcpy(or_diff_from, v->digest_sha3_as_signed, DIGEST256_LEN); memcpy(or_diff_from, v->digest_sha3_as_signed, DIGEST256_LEN);
or_diff_from_is_set = 1; or_diff_from_is_set = 1;
} }
}
} else { } else {
/* Otherwise it might be a consensus we don't parse, but which we /* Otherwise it might be a consensus we don't parse, but which we
* do cache. Look at the cached copy, perhaps. */ * do cache. Look at the cached copy, perhaps. */
@ -530,10 +544,12 @@ dir_consensus_request_set_additional_headers(directory_request_t *req,
* unparsed consensus, so we use the default. */ * unparsed consensus, so we use the default. */
if (cd) { if (cd) {
if_modified_since = cd->published + DEFAULT_IF_MODIFIED_SINCE_DELAY; if_modified_since = cd->published + DEFAULT_IF_MODIFIED_SINCE_DELAY;
if (cd->published >= approx_time() - max_age_for_diff) {
memcpy(or_diff_from, cd->digest_sha3_as_signed, DIGEST256_LEN); memcpy(or_diff_from, cd->digest_sha3_as_signed, DIGEST256_LEN);
or_diff_from_is_set = 1; or_diff_from_is_set = 1;
} }
} }
}
if (if_modified_since > 0) if (if_modified_since > 0)
directory_request_set_if_modified_since(req, if_modified_since); directory_request_set_if_modified_since(req, if_modified_since);

View File

@ -28,7 +28,7 @@ consdiffmgr_test_setup(const struct testcase_t *arg)
get_options_mutable()->DataDirectory = ddir_fname; // now owns the pointer. get_options_mutable()->DataDirectory = ddir_fname; // now owns the pointer.
check_private_dir(ddir_fname, CPD_CREATE, NULL); check_private_dir(ddir_fname, CPD_CREATE, NULL);
consdiff_cfg_t consdiff_cfg = { 7200, 300 }; consdiff_cfg_t consdiff_cfg = { 300 };
consdiffmgr_configure(&consdiff_cfg); consdiffmgr_configure(&consdiff_cfg);
return (void *)1; // must return something non-null. return (void *)1; // must return something non-null.
} }