Tor  0.4.7.0-alpha-dev
Data Structures | Macros | Functions | Variables
bridges.c File Reference

Code to manage bridges and bridge selection. More...

#include "core/or/or.h"
#include "app/config/config.h"
#include "core/mainloop/connection.h"
#include "core/or/circuitbuild.h"
#include "core/or/policies.h"
#include "feature/client/bridges.h"
#include "feature/client/entrynodes.h"
#include "feature/client/transports.h"
#include "feature/dirclient/dirclient.h"
#include "feature/dirclient/dlstatus.h"
#include "feature/dircommon/directory.h"
#include "feature/nodelist/describe.h"
#include "feature/nodelist/dirlist.h"
#include "feature/nodelist/nodelist.h"
#include "feature/nodelist/routerinfo.h"
#include "feature/nodelist/routerlist.h"
#include "feature/nodelist/routerset.h"
#include "core/or/extend_info_st.h"
#include "feature/nodelist/node_st.h"
#include "feature/nodelist/routerinfo_st.h"
#include "feature/nodelist/routerstatus_st.h"
#include "feature/nodelist/microdesc_st.h"

Go to the source code of this file.

Data Structures

struct  bridge_info_t
 

Macros

#define TOR_BRIDGES_PRIVATE
 
#define bridge_free(bridge)    FREE_AND_NULL(bridge_info_t, bridge_free_, (bridge))
 

Functions

static void bridge_free_ (bridge_info_t *bridge)
 
static void rewrite_node_address_for_bridge (const bridge_info_t *bridge, node_t *node)
 
void mark_bridge_list (void)
 
void sweep_bridge_list (void)
 
STATIC void clear_bridge_list (void)
 
const smartlist_tbridge_list_get (void)
 
const uint8_t * bridge_get_rsa_id_digest (const bridge_info_t *bridge)
 
const tor_addr_port_tbridge_get_addr_port (const bridge_info_t *bridge)
 
const char * bridget_get_transport_name (const bridge_info_t *bridge)
 
bool bridge_has_invalid_transport (const bridge_info_t *bridge)
 
STATIC bridge_info_tget_configured_bridge_by_orports_digest (const char *digest, const smartlist_t *orports)
 
bridge_info_tget_configured_bridge_by_addr_port_digest (const tor_addr_t *addr, uint16_t port, const char *digest)
 
bridge_info_tget_configured_bridge_by_exact_addr_port_digest (const tor_addr_t *addr, uint16_t port, const char *digest)
 
int addr_is_a_configured_bridge (const tor_addr_t *addr, uint16_t port, const char *digest)
 
int extend_info_is_a_configured_bridge (const extend_info_t *ei)
 
static bridge_info_tget_configured_bridge_by_routerinfo (const routerinfo_t *ri)
 
int routerinfo_is_a_configured_bridge (const routerinfo_t *ri)
 
static int bridge_exists_with_addr_and_port (const tor_addr_t *addr, const uint16_t port, const char *digest)
 
int node_is_a_configured_bridge (const node_t *node)
 
void learned_router_identity (const tor_addr_t *addr, uint16_t port, const char *digest, const ed25519_public_key_t *ed_id)
 
static int bridge_has_digest (const bridge_info_t *bridge, const char *digest)
 
STATIC void bridge_resolve_conflicts (const tor_addr_t *addr, uint16_t port, const char *digest, const char *transport_name)
 
int transport_is_needed (const char *transport_name)
 
void bridge_add_from_config (bridge_line_t *bridge_line)
 
STATIC bridge_info_tfind_bridge_by_digest (const char *digest)
 
const char * find_transport_name_by_bridge_addrport (const tor_addr_t *addr, uint16_t port)
 
int get_transport_by_bridge_addrport (const tor_addr_t *addr, uint16_t port, const transport_t **transport)
 
const smartlist_tget_socks_args_by_bridge_addrport (const tor_addr_t *addr, uint16_t port)
 
static void launch_direct_bridge_descriptor_fetch (bridge_info_t *bridge)
 
void retry_bridge_descriptor_fetch_directly (const char *digest)
 
void fetch_bridge_descriptors (const or_options_t *options, time_t now)
 
void learned_bridge_descriptor (routerinfo_t *ri, int from_cache)
 
smartlist_tlist_bridge_identities (void)
 
download_status_tget_bridge_dl_status_by_id (const char *digest)
 
void bridges_free_all (void)
 

Variables

static smartlist_tbridge_list = NULL
 

Detailed Description

Code to manage bridges and bridge selection.

Bridges are fixed entry nodes, used for censorship circumvention.

Definition in file bridges.c.

Function Documentation

◆ addr_is_a_configured_bridge()

int addr_is_a_configured_bridge ( const tor_addr_t addr,
uint16_t  port,
const char *  digest 
)

If we have a bridge configured whose digest matches digest, or a bridge with no known digest whose address matches addr:port, return 1. Else return 0. If digest is NULL, check for address/port matches only.

Definition at line 273 of file bridges.c.

Referenced by extend_info_is_a_configured_bridge().

◆ bridge_add_from_config()

void bridge_add_from_config ( bridge_line_t bridge_line)

Register the bridge information in bridge_line to the bridge subsystem. Steals reference of bridge_line.

Definition at line 527 of file bridges.c.

◆ bridge_exists_with_addr_and_port()

static int bridge_exists_with_addr_and_port ( const tor_addr_t addr,
const uint16_t  port,
const char *  digest 
)
static

Return 1 iff bridge_list contains entry matching given addr and port (and no identity digest) OR it contains an entry whose identity matches digest. Otherwise, return 0.

Definition at line 334 of file bridges.c.

◆ bridge_free_()

static void bridge_free_ ( bridge_info_t bridge)
static

Free the bridge bridge.

Definition at line 119 of file bridges.c.

◆ bridge_get_addr_port()

const tor_addr_port_t* bridge_get_addr_port ( const bridge_info_t bridge)

Given a bridge, return a pointer to its configured addr:port combination.

Definition at line 161 of file bridges.c.

Referenced by bridge_passes_guard_filter(), entry_guard_add_bridge_to_sample(), get_sampled_guard_for_bridge(), and routerset_contains_bridge().

◆ bridge_get_rsa_id_digest()

const uint8_t* bridge_get_rsa_id_digest ( const bridge_info_t bridge)

Given a bridge, return a pointer to its RSA identity digest, or NULL if we don't know one for it.

Definition at line 147 of file bridges.c.

Referenced by entry_guard_add_bridge_to_sample(), get_sampled_guard_for_bridge(), and routerset_contains_bridge().

◆ bridge_has_digest()

static int bridge_has_digest ( const bridge_info_t bridge,
const char *  digest 
)
static

Return true if bridge has the same identity digest as digest. If digest is NULL, it matches bridges with unspecified identity digests.

Definition at line 446 of file bridges.c.

Referenced by bridge_resolve_conflicts().

◆ bridge_has_invalid_transport()

bool bridge_has_invalid_transport ( const bridge_info_t bridge)

Return true if bridge has a transport name for which we don't actually know a transport.

Definition at line 183 of file bridges.c.

Referenced by launch_direct_bridge_descriptor_fetch().

◆ bridge_list_get()

const smartlist_t* bridge_list_get ( void  )

Return a list of all the configured bridges, as bridge_info_t pointers.

Definition at line 135 of file bridges.c.

Referenced by get_eligible_guards().

◆ bridge_resolve_conflicts()

STATIC void bridge_resolve_conflicts ( const tor_addr_t addr,
uint16_t  port,
const char *  digest,
const char *  transport_name 
)

We are about to add a new bridge at addr:port, with optional digest and transport_name. Mark for removal any previously existing bridge with the same address and port, and warn the user as appropriate.

Definition at line 460 of file bridges.c.

◆ bridges_free_all()

void bridges_free_all ( void  )

Release all storage held in bridges.c

Definition at line 1036 of file bridges.c.

◆ bridget_get_transport_name()

const char* bridget_get_transport_name ( const bridge_info_t bridge)

Given a bridge, return the transport name. If none were configured, NULL is returned.

Definition at line 172 of file bridges.c.

Referenced by bridge_has_invalid_transport().

◆ clear_bridge_list()

STATIC void clear_bridge_list ( void  )

Initialize the bridge list to empty, creating it if needed.

Definition at line 109 of file bridges.c.

Referenced by bridges_free_all().

◆ extend_info_is_a_configured_bridge()

int extend_info_is_a_configured_bridge ( const extend_info_t ei)

If we have a bridge configured whose digest matches ei->identity_digest, or a bridge with no known digest whose address matches ei->addr:ei->port, return 1. Else return 0. If ei->onion_key is NULL, check for address/port matches only.

Note that if the extend_info_t contains multiple addresses, we return true only if every address is a bridge.

Definition at line 290 of file bridges.c.

Referenced by circuit_handle_first_hop().

◆ fetch_bridge_descriptors()

void fetch_bridge_descriptors ( const or_options_t options,
time_t  now 
)

For each bridge in our list for which we don't currently have a descriptor, fetch a new copy of its descriptor – either directly from the bridge or via a bridge authority.

Definition at line 737 of file bridges.c.

Referenced by second_elapsed_callback().

◆ find_bridge_by_digest()

STATIC bridge_info_t* find_bridge_by_digest ( const char *  digest)

If digest is one of our known bridges, return it.

Definition at line 581 of file bridges.c.

Referenced by retry_bridge_descriptor_fetch_directly().

◆ find_transport_name_by_bridge_addrport()

const char* find_transport_name_by_bridge_addrport ( const tor_addr_t addr,
uint16_t  port 
)

Given the addr and port of a bridge, if that bridge supports a pluggable transport, return its name. Otherwise, return NULL.

Definition at line 597 of file bridges.c.

Referenced by learned_router_identity().

◆ get_bridge_dl_status_by_id()

download_status_t* get_bridge_dl_status_by_id ( const char *  digest)

Get the download status for a bridge descriptor given its identity

Definition at line 1018 of file bridges.c.

Referenced by getinfo_helper_downloads_bridge().

◆ get_configured_bridge_by_addr_port_digest()

bridge_info_t* get_configured_bridge_by_addr_port_digest ( const tor_addr_t addr,
uint16_t  port,
const char *  digest 
)

If we have a bridge configured whose digest matches digest, or a bridge with no known digest whose address matches addr:port, return that bridge. Else return NULL. If digest is NULL, check for address/port matches only.

Definition at line 222 of file bridges.c.

Referenced by addr_is_a_configured_bridge(), and get_socks_args_by_bridge_addrport().

◆ get_configured_bridge_by_exact_addr_port_digest()

bridge_info_t* get_configured_bridge_by_exact_addr_port_digest ( const tor_addr_t addr,
uint16_t  port,
const char *  digest 
)

As get_configured_bridge_by_addr_port, but require that the address match addr:port, and that the ID digest match digest. (The other function will ignore the address if the digest matches.)

Definition at line 248 of file bridges.c.

Referenced by learned_router_identity().

◆ get_configured_bridge_by_orports_digest()

STATIC bridge_info_t* get_configured_bridge_by_orports_digest ( const char *  digest,
const smartlist_t orports 
)

If we have a bridge configured whose digest matches digest, or a bridge with no known digest whose address matches any of the tor_addr_port_t's in orports, return that bridge. Else return NULL.

Definition at line 194 of file bridges.c.

Referenced by get_configured_bridge_by_routerinfo().

◆ get_configured_bridge_by_routerinfo()

static bridge_info_t* get_configured_bridge_by_routerinfo ( const routerinfo_t ri)
static

Wrapper around get_configured_bridge_by_addr_port_digest() to look it up via router descriptor ri.

Definition at line 309 of file bridges.c.

Referenced by learned_bridge_descriptor(), and routerinfo_is_a_configured_bridge().

◆ get_socks_args_by_bridge_addrport()

const smartlist_t* get_socks_args_by_bridge_addrport ( const tor_addr_t addr,
uint16_t  port 
)

Return a smartlist containing all the SOCKS arguments that we should pass to the SOCKS proxy.

Definition at line 650 of file bridges.c.

Referenced by pt_get_socks_args_for_proxy_addrport().

◆ get_transport_by_bridge_addrport()

int get_transport_by_bridge_addrport ( const tor_addr_t addr,
uint16_t  port,
const transport_t **  transport 
)

If addr and port match the address and port of a bridge of ours that uses pluggable transports, place its transport in transport.

Return 0 on success (found a transport, or found a bridge with no transport, or found no bridge); return -1 if we should be using a transport, but the transport could not be found.

Definition at line 620 of file bridges.c.

Referenced by conn_get_proxy_type(), and get_proxy_addrport().

◆ launch_direct_bridge_descriptor_fetch()

static void launch_direct_bridge_descriptor_fetch ( bridge_info_t bridge)
static

We need to ask bridge for its server descriptor.

Definition at line 660 of file bridges.c.

Referenced by retry_bridge_descriptor_fetch_directly().

◆ learned_bridge_descriptor()

void learned_bridge_descriptor ( routerinfo_t ri,
int  from_cache 
)

We just learned a descriptor for a bridge. See if that digest is in our entry guard list, and add it if not.

Definition at line 948 of file bridges.c.

Referenced by routerlist_descriptors_added().

◆ learned_router_identity()

void learned_router_identity ( const tor_addr_t addr,
uint16_t  port,
const char *  digest,
const ed25519_public_key_t ed_id 
)

We made a connection to a router at addr:port without knowing its digest. Its digest turned out to be digest. If it was a bridge, and we still don't know its digest, record it.

Definition at line 403 of file bridges.c.

◆ list_bridge_identities()

smartlist_t* list_bridge_identities ( void  )

Return a smartlist containing all bridge identity digests

Definition at line 998 of file bridges.c.

Referenced by getinfo_helper_downloads_bridge().

◆ mark_bridge_list()

void mark_bridge_list ( void  )

Mark every entry of the bridge list to be removed on our next call to sweep_bridge_list unless it has first been un-marked.

Definition at line 84 of file bridges.c.

◆ node_is_a_configured_bridge()

int node_is_a_configured_bridge ( const node_t node)

Return 1 if node is one of our configured bridges, else 0. More specifically, return 1 iff: a bridge_info_t object exists in bridge_list such that: 1) It's identity is equal to node identity OR 2) It's identity digest is zero, but it matches address and port of any ORPort in the node.

Definition at line 354 of file bridges.c.

Referenced by node_has_preferred_descriptor().

◆ retry_bridge_descriptor_fetch_directly()

void retry_bridge_descriptor_fetch_directly ( const char *  digest)

Fetching the bridge descriptor from the bridge authority returned a "not found". Fall back to trying a direct fetch.

Definition at line 724 of file bridges.c.

◆ rewrite_node_address_for_bridge()

static void rewrite_node_address_for_bridge ( const bridge_info_t bridge,
node_t node 
)
static

If our bridge is configured to be a different address than the bridge gives in node, rewrite the routerinfo we received to use the address we meant to use. Now we handle multihomed bridges better.

Definition at line 821 of file bridges.c.

Referenced by learned_bridge_descriptor().

◆ routerinfo_is_a_configured_bridge()

int routerinfo_is_a_configured_bridge ( const routerinfo_t ri)

Return 1 if ri is one of our known bridges, else 0.

Definition at line 322 of file bridges.c.

◆ sweep_bridge_list()

void sweep_bridge_list ( void  )

Remove every entry of the bridge list that was marked with mark_bridge_list if it has not subsequently been un-marked.

Definition at line 95 of file bridges.c.

◆ transport_is_needed()

int transport_is_needed ( const char *  transport_name)

Return True if we have a bridge that uses a transport with name transport_name.

Definition at line 510 of file bridges.c.

Variable Documentation

◆ bridge_list

smartlist_t* bridge_list = NULL
static

A list of configured bridges. Whenever we actually get a descriptor for one, we add it as an entry guard. Note that the order of bridges in this list does not necessarily correspond to the order of bridges in the torrc.

Definition at line 79 of file bridges.c.

Referenced by bridge_list_get(), bridge_resolve_conflicts(), clear_bridge_list(), fetch_bridge_descriptors(), find_bridge_by_digest(), find_transport_name_by_bridge_addrport(), get_bridge_dl_status_by_id(), get_configured_bridge_by_addr_port_digest(), get_configured_bridge_by_exact_addr_port_digest(), get_configured_bridge_by_orports_digest(), get_transport_by_bridge_addrport(), list_bridge_identities(), mark_bridge_list(), sweep_bridge_list(), and transport_is_needed().