mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 23:53:32 +01:00
Clean long-unlisted microdescs from the cache
This commit is contained in:
parent
3a492d31d5
commit
d45b912058
@ -1764,6 +1764,8 @@ connection_dir_client_reached_eof(dir_connection_t *conn)
|
|||||||
}
|
}
|
||||||
/* launches router downloads as needed */
|
/* launches router downloads as needed */
|
||||||
routers_update_all_from_networkstatus(now, 3);
|
routers_update_all_from_networkstatus(now, 3);
|
||||||
|
update_microdescs_from_networkstatus(now);
|
||||||
|
update_microdesc_downloads(now);
|
||||||
directory_info_has_arrived(now, 0);
|
directory_info_has_arrived(now, 0);
|
||||||
log_info(LD_DIR, "Successfully loaded consensus.");
|
log_info(LD_DIR, "Successfully loaded consensus.");
|
||||||
}
|
}
|
||||||
|
@ -27,6 +27,8 @@ struct microdesc_cache_t {
|
|||||||
tor_mmap_t *cache_content;
|
tor_mmap_t *cache_content;
|
||||||
/** Number of bytes used in the journal file. */
|
/** Number of bytes used in the journal file. */
|
||||||
size_t journal_len;
|
size_t journal_len;
|
||||||
|
/** Number of bytes in descriptors removed as too old. */
|
||||||
|
size_t bytes_dropped;
|
||||||
|
|
||||||
/** Total bytes of microdescriptor bodies we have added to this cache */
|
/** Total bytes of microdescriptor bodies we have added to this cache */
|
||||||
uint64_t total_len_seen;
|
uint64_t total_len_seen;
|
||||||
@ -242,10 +244,9 @@ microdescs_add_list_to_cache(microdesc_cache_t *cache,
|
|||||||
{
|
{
|
||||||
size_t old_content_len =
|
size_t old_content_len =
|
||||||
cache->cache_content ? cache->cache_content->size : 0;
|
cache->cache_content ? cache->cache_content->size : 0;
|
||||||
if (cache->journal_len > 16384 + old_content_len &&
|
if ((cache->journal_len > 16384 + old_content_len &&
|
||||||
cache->journal_len > old_content_len * 2) {
|
cache->journal_len > old_content_len / 2))
|
||||||
microdesc_cache_rebuild(cache);
|
microdesc_cache_rebuild(cache);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return added;
|
return added;
|
||||||
@ -310,6 +311,47 @@ microdesc_cache_reload(microdesc_cache_t *cache)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** DOCDOC */
|
||||||
|
#define TOLERATE_MICRODESC_AGE (7*24*60*60)
|
||||||
|
|
||||||
|
/** DOCDOC */
|
||||||
|
void
|
||||||
|
microdesc_cache_clean(microdesc_cache_t *cache)
|
||||||
|
{
|
||||||
|
networkstatus_t *consensus;
|
||||||
|
time_t cutoff;
|
||||||
|
microdesc_t **mdp, *victim;
|
||||||
|
int dropped=0, kept=0;
|
||||||
|
size_t bytes_dropped = 0;
|
||||||
|
time_t now = time(NULL);
|
||||||
|
|
||||||
|
/* If we don't know a consensus, never believe last_listed values */
|
||||||
|
consensus = networkstatus_get_reasonably_live_consensus(now, FLAV_MICRODESC);
|
||||||
|
if (consensus == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
|
cutoff = now - TOLERATE_MICRODESC_AGE;
|
||||||
|
|
||||||
|
for (mdp = HT_START(microdesc_map, &cache->map); mdp != NULL; ) {
|
||||||
|
if ((*mdp)->last_listed < cutoff) {
|
||||||
|
++dropped;
|
||||||
|
victim = *mdp;
|
||||||
|
mdp = HT_NEXT_RMV(microdesc_map, &cache->map, mdp);
|
||||||
|
bytes_dropped += victim->bodylen;
|
||||||
|
microdesc_free(victim);
|
||||||
|
} else {
|
||||||
|
++kept;
|
||||||
|
mdp = HT_NEXT(microdesc_map, &cache->map, mdp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dropped) {
|
||||||
|
log_notice(LD_DIR, "Removed %d/%d microdescriptors as old.",
|
||||||
|
dropped,dropped+kept);
|
||||||
|
cache->bytes_dropped += bytes_dropped;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/** Regenerate the main cache file for <b>cache</b>, clear the journal file,
|
/** Regenerate the main cache file for <b>cache</b>, clear the journal file,
|
||||||
* and update every microdesc_t in the cache with pointers to its new
|
* and update every microdesc_t in the cache with pointers to its new
|
||||||
* location. */
|
* location. */
|
||||||
@ -325,6 +367,9 @@ microdesc_cache_rebuild(microdesc_cache_t *cache)
|
|||||||
int orig_size, new_size;
|
int orig_size, new_size;
|
||||||
|
|
||||||
log_info(LD_DIR, "Rebuilding the microdescriptor cache...");
|
log_info(LD_DIR, "Rebuilding the microdescriptor cache...");
|
||||||
|
|
||||||
|
microdesc_cache_clean(cache);
|
||||||
|
|
||||||
orig_size = (int)(cache->cache_content ? cache->cache_content->size : 0);
|
orig_size = (int)(cache->cache_content ? cache->cache_content->size : 0);
|
||||||
orig_size += (int)cache->journal_len;
|
orig_size += (int)cache->journal_len;
|
||||||
|
|
||||||
@ -379,6 +424,7 @@ microdesc_cache_rebuild(microdesc_cache_t *cache)
|
|||||||
|
|
||||||
write_str_to_file(cache->journal_fname, "", 1);
|
write_str_to_file(cache->journal_fname, "", 1);
|
||||||
cache->journal_len = 0;
|
cache->journal_len = 0;
|
||||||
|
cache->bytes_dropped = 0;
|
||||||
|
|
||||||
new_size = (int)cache->cache_content->size;
|
new_size = (int)cache->cache_content->size;
|
||||||
log_info(LD_DIR, "Done rebuilding microdesc cache. "
|
log_info(LD_DIR, "Done rebuilding microdesc cache. "
|
||||||
@ -513,3 +559,24 @@ update_microdesc_downloads(time_t now)
|
|||||||
|
|
||||||
smartlist_free(missing);
|
smartlist_free(missing);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** DOCDOC */
|
||||||
|
void
|
||||||
|
update_microdescs_from_networkstatus(time_t now)
|
||||||
|
{
|
||||||
|
microdesc_cache_t *cache = get_microdesc_cache();
|
||||||
|
microdesc_t *md;
|
||||||
|
networkstatus_t *ns =
|
||||||
|
networkstatus_get_reasonably_live_consensus(now, FLAV_MICRODESC);
|
||||||
|
|
||||||
|
if (! ns)
|
||||||
|
return;
|
||||||
|
|
||||||
|
tor_assert(ns->flavor == FLAV_MICRODESC);
|
||||||
|
|
||||||
|
SMARTLIST_FOREACH_BEGIN(ns->routerstatus_list, routerstatus_t *, rs) {
|
||||||
|
md = microdesc_cache_lookup_by_digest256(cache, rs->descriptor_digest);
|
||||||
|
if (md && ns->valid_after > md->last_listed)
|
||||||
|
md->last_listed = ns->valid_after;
|
||||||
|
} SMARTLIST_FOREACH_END(rs);
|
||||||
|
}
|
||||||
|
@ -22,6 +22,7 @@ smartlist_t *microdescs_add_list_to_cache(microdesc_cache_t *cache,
|
|||||||
smartlist_t *descriptors, saved_location_t where,
|
smartlist_t *descriptors, saved_location_t where,
|
||||||
int no_save);
|
int no_save);
|
||||||
|
|
||||||
|
void microdesc_cache_clean(microdesc_cache_t *cache);
|
||||||
int microdesc_cache_rebuild(microdesc_cache_t *cache);
|
int microdesc_cache_rebuild(microdesc_cache_t *cache);
|
||||||
int microdesc_cache_reload(microdesc_cache_t *cache);
|
int microdesc_cache_reload(microdesc_cache_t *cache);
|
||||||
void microdesc_cache_clear(microdesc_cache_t *cache);
|
void microdesc_cache_clear(microdesc_cache_t *cache);
|
||||||
@ -40,7 +41,7 @@ void microdesc_free(microdesc_t *md);
|
|||||||
void microdesc_free_all(void);
|
void microdesc_free_all(void);
|
||||||
|
|
||||||
void update_microdesc_downloads(time_t now);
|
void update_microdesc_downloads(time_t now);
|
||||||
|
void update_microdescs_from_networkstatus(time_t now);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "dirserv.h"
|
#include "dirserv.h"
|
||||||
#include "dirvote.h"
|
#include "dirvote.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
|
#include "microdesc.h"
|
||||||
#include "networkstatus.h"
|
#include "networkstatus.h"
|
||||||
#include "relay.h"
|
#include "relay.h"
|
||||||
#include "router.h"
|
#include "router.h"
|
||||||
@ -282,6 +283,7 @@ router_reload_consensus_networkstatus(void)
|
|||||||
update_certificate_downloads(time(NULL));
|
update_certificate_downloads(time(NULL));
|
||||||
|
|
||||||
routers_update_all_from_networkstatus(time(NULL), 3);
|
routers_update_all_from_networkstatus(time(NULL), 3);
|
||||||
|
update_microdescs_from_networkstatus(time(NULL));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user