tor  master
Data Structures | Macros | Functions
microdesc.c File Reference

Implements microdescriptors – an abbreviated description of less-frequently-changing router information. More...

#include "or.h"
#include "circuitbuild.h"
#include "config.h"
#include "directory.h"
#include "dirserv.h"
#include "entrynodes.h"
#include "microdesc.h"
#include "networkstatus.h"
#include "nodelist.h"
#include "policies.h"
#include "router.h"
#include "routerlist.h"
#include "routerparse.h"
Include dependency graph for microdesc.c:

Data Structures

struct  microdesc_cache_t
 

Macros

#define TOO_MANY_OUTDATED_DIRSERVERS   30
 
#define TOLERATE_MICRODESC_AGE   (7*24*60*60)
 

Functions

 HT_PROTOTYPE (HT_GENERATE2(microdesc_map, HT_GENERATE2(microdesc_t, HT_GENERATE2(node, HT_GENERATE2(microdesc_hash_, HT_GENERATE2(microdesc_eq_)
 
int microdesc_relay_is_outdated_dirserver (const char *relay_digest)
 
void microdesc_reset_outdated_dirservers_list (void)
 
microdesc_cache_tget_microdesc_cache (void)
 
smartlist_tmicrodescs_add_to_cache (microdesc_cache_t *cache, const char *s, const char *eos, saved_location_t where, int no_save, time_t listed_at, smartlist_t *requested_digests256)
 
smartlist_tmicrodescs_add_list_to_cache (microdesc_cache_t *cache, smartlist_t *descriptors, saved_location_t where, int no_save)
 
void microdesc_cache_clear (microdesc_cache_t *cache)
 
int microdesc_cache_reload (microdesc_cache_t *cache)
 
void microdesc_cache_clean (microdesc_cache_t *cache, time_t cutoff, int force)
 
int microdesc_cache_rebuild (microdesc_cache_t *cache, int force)
 
void microdesc_check_counts (void)
 
void microdesc_free_ (microdesc_t *md, const char *fname, int lineno)
 
void microdesc_free_all (void)
 
microdesc_tmicrodesc_cache_lookup_by_digest256 (microdesc_cache_t *cache, const char *d)
 
smartlist_tmicrodesc_list_missing_digest256 (networkstatus_t *ns, microdesc_cache_t *cache, int downloadable_only, digest256map_t *skip)
 
void update_microdesc_downloads (time_t now)
 
void update_microdescs_from_networkstatus (time_t now)
 
int we_use_microdescriptors_for_circuits (const or_options_t *options)
 
int we_fetch_microdescriptors (const or_options_t *options)
 
int we_fetch_router_descriptors (const or_options_t *options)
 
 MOCK_IMPL (int, usable_consensus_flavor,(void))
 

Detailed Description

Implements microdescriptors – an abbreviated description of less-frequently-changing router information.

Macro Definition Documentation

◆ TOLERATE_MICRODESC_AGE

#define TOLERATE_MICRODESC_AGE   (7*24*60*60)

By default, we remove any microdescriptors that have gone at least this long without appearing in a current consensus.

Function Documentation

◆ get_microdesc_cache()

microdesc_cache_t* get_microdesc_cache ( void  )

Return a pointer to the microdescriptor cache, loading it if necessary.

Here is the caller graph for this function:

◆ HT_PROTOTYPE()

HT_PROTOTYPE ( HT_GENERATE2(  microdesc_map,
HT_GENERATE2(  microdesc_t,
HT_GENERATE2(  node,
HT_GENERATE2(  microdesc_hash_,
HT_GENERATE2(  microdesc_eq_ 
)

Note that we failed to fetch a microdescriptor from the relay with relay_digest (of size DIGEST_LEN).

◆ microdesc_cache_clean()

void microdesc_cache_clean ( microdesc_cache_t cache,
time_t  cutoff,
int  force 
)

Remove all microdescriptors from cache that haven't been listed for a long time. Does not rebuild the cache on disk. If cutoff is positive, specifically remove microdescriptors that have been unlisted since cutoff. If force is true, remove microdescriptors even if we have no current live microdescriptor consensus.

Here is the call graph for this function:

◆ microdesc_cache_clear()

void microdesc_cache_clear ( microdesc_cache_t cache)

Remove every microdescriptor in cache.

Here is the caller graph for this function:

◆ microdesc_cache_lookup_by_digest256()

microdesc_t* microdesc_cache_lookup_by_digest256 ( microdesc_cache_t cache,
const char *  d 
)

If there is a microdescriptor in cache whose sha256 digest is d, return it. Otherwise return NULL.

Here is the call graph for this function:

◆ microdesc_cache_rebuild()

int microdesc_cache_rebuild ( microdesc_cache_t cache,
int  force 
)

Regenerate the main cache file for cache, clear the journal file, and update every microdesc_t in the cache with pointers to its new location. If force is true, do this unconditionally. If force is false, do it only if we expect to save space on disk.

◆ microdesc_cache_reload()

int microdesc_cache_reload ( microdesc_cache_t cache)

Reload the contents of cache from disk. If it is empty, load it for the first time. Return 0 on success, -1 on failure.

Here is the call graph for this function:

◆ microdesc_check_counts()

void microdesc_check_counts ( void  )

Make sure that the reference count of every microdescriptor in cache is accurate.

◆ microdesc_free_()

void microdesc_free_ ( microdesc_t md,
const char *  fname,
int  lineno 
)

Deallocate a single microdescriptor. Note: the microdescriptor MUST have previously been removed from the cache if it had ever been inserted.

◆ microdesc_free_all()

void microdesc_free_all ( void  )

Free all storage held in the microdesc.c module.

◆ microdesc_list_missing_digest256()

smartlist_t* microdesc_list_missing_digest256 ( networkstatus_t ns,
microdesc_cache_t cache,
int  downloadable_only,
digest256map_t *  skip 
)

Return a smartlist of all the sha256 digest of the microdescriptors that are listed in ns but not present in cache. Returns pointers to internals of ns; you should not free the members of the resulting smartlist. Omit all microdescriptors whose digest appear in skip.

◆ microdesc_relay_is_outdated_dirserver()

int microdesc_relay_is_outdated_dirserver ( const char *  relay_digest)

Return True if the relay with relay_digest (size DIGEST_LEN) is an outdated dirserver

Here is the call graph for this function:

◆ microdesc_reset_outdated_dirservers_list()

void microdesc_reset_outdated_dirservers_list ( void  )

Reset the list of outdated dirservers.

Here is the call graph for this function:

◆ microdescs_add_list_to_cache()

smartlist_t* microdescs_add_list_to_cache ( microdesc_cache_t cache,
smartlist_t descriptors,
saved_location_t  where,
int  no_save 
)

As microdescs_add_to_cache, but takes a list of microdescriptors instead of a string to decode. Frees any members of descriptors that it does not add.

Here is the call graph for this function:

◆ microdescs_add_to_cache()

smartlist_t* microdescs_add_to_cache ( microdesc_cache_t cache,
const char *  s,
const char *  eos,
saved_location_t  where,
int  no_save,
time_t  listed_at,
smartlist_t requested_digests256 
)

Decode the microdescriptors from the string starting at s and ending at eos, and store them in cache. If no_save, mark them as non-writable to disk. If where is SAVED_IN_CACHE, leave their bodies as pointers to the mmap'd cache. If where is SAVED_NOWHERE, do not allow annotations. If listed_at is not -1, set the last_listed field of every microdesc to listed_at. If requested_digests is non-null, then it contains a list of digests we mean to allow, so we should reject any non-requested microdesc with a different digest, and alter the list to contain only the digests of those microdescs we didn't find. Return a newly allocated list of the added microdescriptors, or NULL

Here is the call graph for this function:
Here is the caller graph for this function:

◆ MOCK_IMPL()

MOCK_IMPL ( int  ,
usable_consensus_flavor  ,
(void)   
)

Return the consensus flavor we actually want to use to build circuits.

Here is the call graph for this function:

◆ update_microdesc_downloads()

void update_microdesc_downloads ( time_t  now)

Launch download requests for microdescriptors as appropriate.

Specifically, we should launch download requests if we are configured to download mirodescriptors, and there are some microdescriptors listed in the current microdesc consensus that we don't have, and either we never asked for them, or we failed to download them but we're willing to retry.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ update_microdescs_from_networkstatus()

void update_microdescs_from_networkstatus ( time_t  now)

For every microdescriptor listed in the current microdescriptor consensus, update its last_listed field to be at least as recent as the publication time of the current microdescriptor consensus.

Here is the call graph for this function:

◆ we_fetch_microdescriptors()

int we_fetch_microdescriptors ( const or_options_t options)

Return true iff we should try to download microdescriptors at all.

Here is the call graph for this function:

◆ we_fetch_router_descriptors()

int we_fetch_router_descriptors ( const or_options_t options)

Return true iff we should try to download router descriptors at all.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ we_use_microdescriptors_for_circuits()

int we_use_microdescriptors_for_circuits ( const or_options_t options)

Return true iff we should prefer to use microdescriptors rather than routerdescs for building circuits.

Here is the caller graph for this function: