Tor 0.4.9.0-alpha-dev
Macros | Functions
connection_or.h File Reference

Header file for connection_or.c. More...

#include "core/or/orconn_event.h"

Go to the source code of this file.

Macros

#define or_handshake_state_free(state)    FREE_AND_NULL(or_handshake_state_t, or_handshake_state_free_, (state))
 
#define var_cell_free(cell)   FREE_AND_NULL(var_cell_t, var_cell_free_, (cell))
 
#define MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS   4
 
#define MIN_LINK_PROTO_FOR_CHANNEL_PADDING   5
 
#define MAX_LINK_PROTO   MIN_LINK_PROTO_FOR_CHANNEL_PADDING
 

Functions

or_connection_tTO_OR_CONN (connection_t *)
 
const or_connection_tCONST_TO_OR_CONN (const connection_t *)
 
void connection_or_clear_identity (or_connection_t *conn)
 
void connection_or_clear_identity_map (void)
 
void clear_broken_connection_map (int disable)
 
void connection_or_block_renegotiation (or_connection_t *conn)
 
int connection_or_reached_eof (or_connection_t *conn)
 
int connection_or_process_inbuf (or_connection_t *conn)
 
ssize_t connection_or_num_cells_writeable (or_connection_t *conn)
 
int connection_or_flushed_some (or_connection_t *conn)
 
int connection_or_finished_flushing (or_connection_t *conn)
 
int connection_or_finished_connecting (or_connection_t *conn)
 
void connection_or_about_to_close (or_connection_t *conn)
 
int connection_or_digest_is_known_relay (const char *id_digest)
 
void connection_or_update_token_buckets (smartlist_t *conns, const or_options_t *options)
 
void connection_or_connect_failed (or_connection_t *conn, int reason, const char *msg)
 
void connection_or_notify_error (or_connection_t *conn, int reason, const char *msg)
 
or_connection_tconnection_or_connect (const tor_addr_t *addr, uint16_t port, const char *id_digest, const struct ed25519_public_key_t *ed_id, channel_tls_t *chan)
 
void connection_or_close_normally (or_connection_t *orconn, int flush)
 
void connection_or_close_for_error (or_connection_t *orconn, int flush)
 
void connection_or_report_broken_states (int severity, int domain)
 
void connection_or_event_status (or_connection_t *conn, or_conn_status_event_t tp, int reason)
 
int connection_tls_start_handshake (or_connection_t *conn, int receiving)
 
int connection_tls_continue_handshake (or_connection_t *conn)
 
void connection_or_set_canonical (or_connection_t *or_conn, int is_canonical)
 
int connection_init_or_handshake_state (or_connection_t *conn, int started_here)
 
void connection_or_init_conn_from_address (or_connection_t *conn, const tor_addr_t *addr, uint16_t port, const char *rsa_id_digest, const struct ed25519_public_key_t *ed_id, int started_here)
 
int connection_or_client_learned_peer_id (or_connection_t *conn, const uint8_t *rsa_peer_id, const struct ed25519_public_key_t *ed_peer_id)
 
const struct ed25519_public_key_tconnection_or_get_alleged_ed25519_id (const or_connection_t *conn)
 
time_t connection_or_client_used (or_connection_t *conn)
 
int connection_or_get_num_circuits (or_connection_t *conn)
 
void or_handshake_state_free_ (or_handshake_state_t *state)
 
void or_handshake_state_record_cell (or_connection_t *conn, or_handshake_state_t *state, const cell_t *cell, int incoming)
 
void or_handshake_state_record_var_cell (or_connection_t *conn, or_handshake_state_t *state, const var_cell_t *cell, int incoming)
 
int connection_or_set_state_open (or_connection_t *conn)
 
void connection_or_write_cell_to_buf (const cell_t *cell, or_connection_t *conn)
 
void connection_or_write_var_cell_to_buf (const var_cell_t *cell, or_connection_t *conn)
 
int connection_or_send_versions (or_connection_t *conn, int v3_plus)
 
int connection_or_send_netinfo (or_connection_t *conn)
 
int is_or_protocol_version_known (uint16_t version)
 
void cell_pack (packed_cell_t *dest, const cell_t *src, int wide_circ_ids)
 
int var_cell_pack_header (const var_cell_t *cell, char *hdr_out, int wide_circ_ids)
 
var_cell_tvar_cell_new (uint16_t payload_len)
 
var_cell_tvar_cell_copy (const var_cell_t *src)
 
void var_cell_free_ (var_cell_t *cell)
 
int connection_or_single_set_badness_ (time_t now, or_connection_t *or_conn, int force)
 
void connection_or_group_set_badness_ (smartlist_t *group, int force)
 
void connection_or_change_state (or_connection_t *conn, uint8_t state)
 

Detailed Description

Header file for connection_or.c.

Definition in file connection_or.h.

Macro Definition Documentation

◆ MAX_LINK_PROTO

#define MAX_LINK_PROTO   MIN_LINK_PROTO_FOR_CHANNEL_PADDING

Definition at line 113 of file connection_or.h.

◆ MIN_LINK_PROTO_FOR_CHANNEL_PADDING

#define MIN_LINK_PROTO_FOR_CHANNEL_PADDING   5

Definition at line 112 of file connection_or.h.

◆ MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS

#define MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS   4

Definition at line 111 of file connection_or.h.

◆ or_handshake_state_free

#define or_handshake_state_free (   state)     FREE_AND_NULL(or_handshake_state_t, or_handshake_state_free_, (state))

Definition at line 81 of file connection_or.h.

◆ var_cell_free

#define var_cell_free (   cell)    FREE_AND_NULL(var_cell_t, var_cell_free_, (cell))

Definition at line 108 of file connection_or.h.

Function Documentation

◆ cell_pack()

void cell_pack ( packed_cell_t dst,
const cell_t src,
int  wide_circ_ids 
)

Pack the cell_t host-order structure src into network-order in the buffer dest. See tor-spec.txt for details about the wire format.

Note that this function doesn't touch dst->next: the caller should set it or clear it as appropriate.

Definition at line 459 of file connection_or.c.

Referenced by packed_cell_copy().

◆ clear_broken_connection_map()

void clear_broken_connection_map ( int  stop_recording)

Forget all recorded states for failed connections. If stop_recording is true, don't record any more.

Definition at line 269 of file connection_or.c.

Referenced by connection_free_all().

◆ connection_init_or_handshake_state()

int connection_init_or_handshake_state ( or_connection_t conn,
int  started_here 
)

Allocate a new connection handshake state for the connection conn. Return 0 on success, -1 on failure.

Definition at line 2157 of file connection_or.c.

Referenced by connection_or_launch_v3_or_handshake().

◆ connection_or_about_to_close()

void connection_or_about_to_close ( or_connection_t or_conn)

Called when we're about to finally unlink and free an OR connection: perform necessary accounting and cleanup

Definition at line 766 of file connection_or.c.

Referenced by connection_about_to_close_connection().

◆ connection_or_block_renegotiation()

void connection_or_block_renegotiation ( or_connection_t conn)

Block all future attempts to renegotiate on 'conn'

Definition at line 1695 of file connection_or.c.

Referenced by connection_or_tls_renegotiated_cb().

◆ connection_or_change_state()

void connection_or_change_state ( or_connection_t conn,
uint8_t  state 
)

Call this to change or_connection_t states, so the owning channel_tls_t can be notified.

Definition at line 424 of file connection_or.c.

Referenced by connection_or_launch_v3_or_handshake(), connection_or_set_state_open(), and connection_tls_start_handshake().

◆ connection_or_clear_identity()

void connection_or_clear_identity ( or_connection_t conn)

Clear clear conn->identity_digest and update other data structures as appropriate.

Definition at line 130 of file connection_or.c.

Referenced by connection_unlink().

◆ connection_or_clear_identity_map()

void connection_or_clear_identity_map ( void  )

Clear all identities in OR conns.

Definition at line 138 of file connection_or.c.

Referenced by connection_free_all().

◆ connection_or_client_used()

time_t connection_or_client_used ( or_connection_t conn)

Return when we last used this channel for client activity (origin circuits). This is called from connection.c, since client_used is now one of the timestamps in channel_t

Definition at line 2073 of file connection_or.c.

Referenced by connection_counts_as_relayed_traffic().

◆ connection_or_close_for_error()

void connection_or_close_for_error ( or_connection_t orconn,
int  flush 
)

Mark orconn for close and transition the associated channel, if any, to the error state.

Definition at line 1629 of file connection_or.c.

Referenced by connection_or_tls_renegotiated_cb(), and kill_conn_list_for_oos().

◆ connection_or_close_normally()

void connection_or_close_normally ( or_connection_t orconn,
int  flush 
)

Mark orconn for close and transition the associated channel, if any, to the closing state.

It's safe to call this and connection_or_close_for_error() any time, and channel layer will treat it as a connection closing for reasons outside its control, like the remote end closing it. It can also be a local reason that's specific to connection_t/or_connection_t rather than the channel mechanism, such as expiration of old connections in run_connection_housekeeping(). If you want to close a channel_t from somewhere that logically works in terms of generic channels rather than connections, use channel_mark_for_close(); see also the comment on that function in channel.c.

Definition at line 1608 of file connection_or.c.

◆ connection_or_connect_failed()

void connection_or_connect_failed ( or_connection_t conn,
int  reason,
const char *  msg 
)

conn is in the 'connecting' state, and it failed to complete a TCP connection. Send notifications appropriately.

reason specifies the or_conn_end_reason for the failure; msg specifies the strerror-style error message.

Definition at line 1405 of file connection_or.c.

Referenced by connection_or_notify_error().

◆ connection_or_digest_is_known_relay()

int connection_or_digest_is_known_relay ( const char *  id_digest)

Return 1 if identity digest id_digest is known to be a currently or recently running relay. Otherwise return 0.

Definition at line 823 of file connection_or.c.

Referenced by connection_or_update_token_buckets_helper().

◆ connection_or_event_status()

void connection_or_event_status ( or_connection_t conn,
or_conn_status_event_t  tp,
int  reason 
)

Helper function to publish an OR connection status event

Publishes a messages to subscribers of ORCONN messages, and sends the control event.

Definition at line 377 of file connection_or.c.

Referenced by connection_ext_or_transition(), connection_init_accepted_conn(), connection_or_connect_failed(), and connection_or_set_state_open().

◆ connection_or_finished_connecting()

int connection_or_finished_connecting ( or_connection_t or_conn)

Connected handler for OR connections: begin the TLS handshake.

Definition at line 730 of file connection_or.c.

Referenced by connection_finished_connecting().

◆ connection_or_finished_flushing()

int connection_or_finished_flushing ( or_connection_t conn)

Connection conn has finished writing and has no bytes left on its outbuf.

Otherwise it's in state "open": stop writing and return.

If conn is broken, mark it for close and return -1, else return 0.

Definition at line 685 of file connection_or.c.

Referenced by connection_finished_flushing().

◆ connection_or_flushed_some()

int connection_or_flushed_some ( or_connection_t conn)

Called whenever we have flushed some data on an or_conn: add more data from active circuits.

Definition at line 633 of file connection_or.c.

◆ connection_or_get_alleged_ed25519_id()

const struct ed25519_public_key_t * connection_or_get_alleged_ed25519_id ( const or_connection_t conn)

Return the Ed25519 identity of the peer for this connection (if any).

Note that this ID may not be the actual identity for the peer if authentication is not complete.

Definition at line 223 of file connection_or.c.

◆ connection_or_get_num_circuits()

int connection_or_get_num_circuits ( or_connection_t conn)

Return the number of circuits using an or_connection_t; this used to be an or_connection_t field, but it got moved to channel_t and we shouldn't maintain two copies.

Definition at line 440 of file connection_or.c.

Referenced by oos_victim_comparator_for_orconns().

◆ connection_or_group_set_badness_()

void connection_or_group_set_badness_ ( smartlist_t group,
int  force 
)

Given a list of all the or_connections with a given identity, set elements of that list as is_bad_for_new_circs as appropriate. Helper for connection_or_set_bad_connections().

Specifically, we set the is_bad_for_new_circs flag on:

  • all connections if force is true.
  • all connections that are too old.
  • all open non-canonical connections for which a canonical connection exists to the same router.
  • all open canonical connections for which a 'better' canonical connection exists to the same router.
  • all open non-canonical connections for which a 'better' non-canonical connection exists to the same router at the same address.

See channel_is_better() in channel.c for our idea of what makes one OR connection better than another.

Definition at line 1077 of file connection_or.c.

◆ connection_or_notify_error()

void connection_or_notify_error ( or_connection_t conn,
int  reason,
const char *  msg 
)

conn got an error in connection_handle_read_impl() or connection_handle_write_impl() and is going to die soon.

reason specifies the or_conn_end_reason for the failure; msg specifies the strerror-style error message.

Definition at line 1421 of file connection_or.c.

Referenced by connection_handle_read_impl().

◆ connection_or_num_cells_writeable()

ssize_t connection_or_num_cells_writeable ( or_connection_t conn)

This is for channeltls.c to ask how many cells we could accept if they were available.

Definition at line 655 of file connection_or.c.

◆ connection_or_process_inbuf()

int connection_or_process_inbuf ( or_connection_t conn)

Handle any new bytes that have come in on connection conn. If conn is in 'open' state, hand it to connection_or_process_cells_from_inbuf() (else do nothing).

Definition at line 573 of file connection_or.c.

Referenced by connection_process_inbuf().

◆ connection_or_reached_eof()

int connection_or_reached_eof ( or_connection_t conn)

We've received an EOF from conn. Mark it for close and return.

Definition at line 557 of file connection_or.c.

Referenced by connection_reached_eof().

◆ connection_or_report_broken_states()

void connection_or_report_broken_states ( int  severity,
int  domain 
)

Report a list of the top states for failed OR connections at log level severity, in log domain domain.

Definition at line 337 of file connection_or.c.

◆ connection_or_send_netinfo()

int connection_or_send_netinfo ( or_connection_t conn)

Send a NETINFO cell on conn, telling the other server what we know about their address, our address, and the current time.

Definition at line 2513 of file connection_or.c.

◆ connection_or_send_versions()

int connection_or_send_versions ( or_connection_t conn,
int  v3_plus 
)

Send a VERSIONS cell on conn, telling the other host about the link protocol versions that this Tor can support.

If v3_plus, this is part of a V3 protocol handshake, so only allow protocol version v3 or later. If not v3_plus, this is not part of a v3 protocol handshake, so don't allow protocol v3 or later.

Definition at line 2458 of file connection_or.c.

Referenced by connection_or_launch_v3_or_handshake().

◆ connection_or_set_canonical()

void connection_or_set_canonical ( or_connection_t or_conn,
int  is_canonical 
)

Definition at line 889 of file connection_or.c.

◆ connection_or_set_state_open()

int connection_or_set_state_open ( or_connection_t conn)

Set conn's state to OR_CONN_STATE_OPEN, and tell other subsystems as appropriate. Called when we are done with all TLS and OR handshaking.

Definition at line 2273 of file connection_or.c.

◆ connection_or_single_set_badness_()

int connection_or_single_set_badness_ ( time_t  now,
or_connection_t or_conn,
int  force 
)

Expire an or_connection if it is too old. Helper for connection_or_group_set_badness_ and fast path for channel_rsa_id_group_set_badness.

Returns 1 if the connection was already expired, else 0.

Definition at line 1035 of file connection_or.c.

Referenced by connection_or_group_set_badness_().

◆ connection_or_update_token_buckets()

void connection_or_update_token_buckets ( smartlist_t conns,
const or_options_t options 
)

Either our set of relays or our per-conn rate limits have changed. Go through all the OR connections and update their token buckets to make sure they don't exceed their maximum values.

Definition at line 875 of file connection_or.c.

Referenced by options_act_relay_bandwidth().

◆ connection_or_write_cell_to_buf()

void connection_or_write_cell_to_buf ( const cell_t cell,
or_connection_t conn 
)

Pack cell into wire-format, and write it onto conn's outbuf. For cells that use or affect a circuit, this should only be called by connection_or_flush_from_first_active_circuit().

Definition at line 2296 of file connection_or.c.

◆ connection_or_write_var_cell_to_buf()

void connection_or_write_var_cell_to_buf ( const var_cell_t cell,
or_connection_t conn 
)

Pack a variable-length cell into wire-format, and write it onto conn's outbuf. Right now, this DOES NOT support cells that affect a circuit.

Definition at line 2335 of file connection_or.c.

◆ connection_tls_continue_handshake()

int connection_tls_continue_handshake ( or_connection_t conn)

Move forward with the tls handshake. If it finishes, hand conn to connection_tls_finish_handshake().

Return -1 if conn is broken, else return 0.

Definition at line 1728 of file connection_or.c.

◆ connection_tls_start_handshake()

int connection_tls_start_handshake ( or_connection_t conn,
int  receiving 
)

Begin the tls handshake with conn. receiving is 0 if we initiated the connection, else it's 1.

Assign a new tls object to conn->tls, begin reading on conn, and pass conn to connection_tls_continue_handshake().

Return -1 if conn is broken, else return 0.

Definition at line 1654 of file connection_or.c.

◆ CONST_TO_OR_CONN()

const or_connection_t * CONST_TO_OR_CONN ( const connection_t c)

Cast a const connection_t * to a const or_connection_t *.

Exit with an assertion failure if the input is not an or_connection_t.

Definition at line 122 of file connection_or.c.

◆ is_or_protocol_version_known()

int is_or_protocol_version_known ( uint16_t  v)

Return true iff v is a link protocol version that this Tor implementation believes it can support.

Definition at line 2439 of file connection_or.c.

◆ or_handshake_state_free_()

void or_handshake_state_free_ ( or_handshake_state_t state)

Free all storage held by state.

Definition at line 2178 of file connection_or.c.

◆ or_handshake_state_record_cell()

void or_handshake_state_record_cell ( or_connection_t conn,
or_handshake_state_t state,
const cell_t cell,
int  incoming 
)

Remember that cell has been transmitted (if incoming is false) or received (if incoming is true) during a V3 handshake using state.

(We don't record the cell, but we keep a digest of everything sent or received during the v3 handshake, and the client signs it in an authenticate cell.)

Definition at line 2200 of file connection_or.c.

◆ or_handshake_state_record_var_cell()

void or_handshake_state_record_var_cell ( or_connection_t conn,
or_handshake_state_t state,
const var_cell_t cell,
int  incoming 
)

Remember that a variable-length cell has been transmitted (if incoming is false) or received (if incoming is true) during a V3 handshake using state.

(We don't record the cell, but we keep a digest of everything sent or received during the v3 handshake, and the client signs it in an authenticate cell.)

Definition at line 2241 of file connection_or.c.

◆ TO_OR_CONN()

or_connection_t * TO_OR_CONN ( connection_t c)

◆ var_cell_copy()

var_cell_t * var_cell_copy ( const var_cell_t src)

Copy a var_cell_t

Definition at line 531 of file connection_or.c.

◆ var_cell_free_()

void var_cell_free_ ( var_cell_t cell)

Release all space held by cell.

Definition at line 550 of file connection_or.c.

◆ var_cell_new()

var_cell_t * var_cell_new ( uint16_t  payload_len)

Allocate and return a new var_cell_t with payload_len bytes of payload space.

Definition at line 516 of file connection_or.c.

Referenced by connection_or_send_auth_challenge_cell(), and connection_or_send_versions().

◆ var_cell_pack_header()

int var_cell_pack_header ( const var_cell_t cell,
char *  hdr_out,
int  wide_circ_ids 
)

Write the header of cell into the first VAR_CELL_MAX_HEADER_SIZE bytes of hdr_out. Returns number of bytes used.

Definition at line 496 of file connection_or.c.

Referenced by connection_or_write_var_cell_to_buf().