2010-07-22 11:54:50 +02:00
|
|
|
/* Copyright (c) 2001 Matej Pfajfar.
|
|
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2017-03-15 21:13:17 +01:00
|
|
|
* Copyright (c) 2007-2017, The Tor Project, Inc. */
|
2010-07-22 11:54:50 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file directory.h
|
|
|
|
* \brief Header file for directory.c.
|
|
|
|
**/
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_DIRECTORY_H
|
|
|
|
#define TOR_DIRECTORY_H
|
2010-07-22 11:54:50 +02:00
|
|
|
|
|
|
|
int directories_have_accepted_server_descriptor(void);
|
|
|
|
void directory_post_to_dirservers(uint8_t dir_purpose, uint8_t router_purpose,
|
2010-11-08 20:27:36 +01:00
|
|
|
dirinfo_type_t type, const char *payload,
|
2010-07-22 11:54:50 +02:00
|
|
|
size_t payload_len, size_t extrainfo_len);
|
2015-12-07 07:47:10 +01:00
|
|
|
MOCK_DECL(void, directory_get_from_dirserver, (
|
|
|
|
uint8_t dir_purpose,
|
|
|
|
uint8_t router_purpose,
|
|
|
|
const char *resource,
|
|
|
|
int pds_flags,
|
|
|
|
download_want_authority_t want_authority));
|
2010-07-22 11:54:50 +02:00
|
|
|
void directory_get_from_all_authorities(uint8_t dir_purpose,
|
|
|
|
uint8_t router_purpose,
|
|
|
|
const char *resource);
|
2012-09-12 16:15:58 +02:00
|
|
|
|
|
|
|
/** Enumeration of ways to connect to a directory server */
|
|
|
|
typedef enum {
|
2016-04-28 07:37:59 +02:00
|
|
|
/** Default: connect over a one-hop Tor circuit. Relays fall back to direct
|
|
|
|
* DirPort connections, clients, onion services, and bridges do not */
|
2012-09-12 16:15:58 +02:00
|
|
|
DIRIND_ONEHOP=0,
|
|
|
|
/** Connect over a multi-hop anonymizing Tor circuit */
|
|
|
|
DIRIND_ANONYMOUS=1,
|
2014-02-10 22:05:35 +01:00
|
|
|
/** Connect to the DirPort directly */
|
2012-09-12 16:15:58 +02:00
|
|
|
DIRIND_DIRECT_CONN,
|
|
|
|
/** Connect over a multi-hop anonymizing Tor circuit to our dirport */
|
|
|
|
DIRIND_ANON_DIRPORT,
|
|
|
|
} dir_indirection_t;
|
|
|
|
|
2016-04-28 07:37:59 +02:00
|
|
|
int directory_must_use_begindir(const or_options_t *options);
|
|
|
|
|
2017-04-21 21:33:29 +02:00
|
|
|
/**
|
|
|
|
* A directory_request_t describes the information about a directory request
|
|
|
|
* at the client side. It describes what we're going to ask for, which
|
|
|
|
* directory we're going to ask for it, how we're going to contact that
|
|
|
|
* directory, and (in some cases) what to do with it when we're done.
|
|
|
|
*/
|
2017-04-17 00:45:48 +02:00
|
|
|
typedef struct directory_request_t directory_request_t;
|
|
|
|
directory_request_t *directory_request_new(uint8_t dir_purpose);
|
|
|
|
void directory_request_free(directory_request_t *req);
|
|
|
|
void directory_request_set_or_addr_port(directory_request_t *req,
|
|
|
|
const tor_addr_port_t *p);
|
|
|
|
void directory_request_set_dir_addr_port(directory_request_t *req,
|
|
|
|
const tor_addr_port_t *p);
|
|
|
|
void directory_request_set_directory_id_digest(directory_request_t *req,
|
|
|
|
const char *digest);
|
2017-05-22 13:10:38 +02:00
|
|
|
void directory_request_set_guard_state(directory_request_t *req,
|
2017-05-22 16:39:43 +02:00
|
|
|
struct circuit_guard_state_t *state);
|
2017-04-17 00:45:48 +02:00
|
|
|
void directory_request_set_router_purpose(directory_request_t *req,
|
|
|
|
uint8_t router_purpose);
|
|
|
|
void directory_request_set_indirection(directory_request_t *req,
|
|
|
|
dir_indirection_t indirection);
|
|
|
|
void directory_request_set_resource(directory_request_t *req,
|
|
|
|
const char *resource);
|
|
|
|
void directory_request_set_payload(directory_request_t *req,
|
|
|
|
const char *payload,
|
|
|
|
size_t payload_len);
|
|
|
|
void directory_request_set_if_modified_since(directory_request_t *req,
|
|
|
|
time_t if_modified_since);
|
|
|
|
void directory_request_set_rend_query(directory_request_t *req,
|
|
|
|
const rend_data_t *query);
|
|
|
|
|
2017-04-21 20:17:14 +02:00
|
|
|
void directory_request_set_routerstatus(directory_request_t *req,
|
|
|
|
const routerstatus_t *rs);
|
2017-05-03 20:04:04 +02:00
|
|
|
void directory_request_add_header(directory_request_t *req,
|
|
|
|
const char *key,
|
|
|
|
const char *val);
|
2017-04-21 20:31:35 +02:00
|
|
|
MOCK_DECL(void, directory_initiate_request, (directory_request_t *request));
|
2010-07-22 11:54:50 +02:00
|
|
|
|
|
|
|
int parse_http_response(const char *headers, int *code, time_t *date,
|
|
|
|
compress_method_t *compression, char **response);
|
|
|
|
|
2017-03-13 20:38:20 +01:00
|
|
|
int connection_dir_is_encrypted(const dir_connection_t *conn);
|
2010-07-22 11:54:50 +02:00
|
|
|
int connection_dir_reached_eof(dir_connection_t *conn);
|
|
|
|
int connection_dir_process_inbuf(dir_connection_t *conn);
|
|
|
|
int connection_dir_finished_flushing(dir_connection_t *conn);
|
|
|
|
int connection_dir_finished_connecting(dir_connection_t *conn);
|
2011-06-22 19:57:19 +02:00
|
|
|
void connection_dir_about_to_close(dir_connection_t *dir_conn);
|
2010-07-22 11:54:50 +02:00
|
|
|
|
|
|
|
#define DSR_HEX (1<<0)
|
|
|
|
#define DSR_BASE64 (1<<1)
|
|
|
|
#define DSR_DIGEST256 (1<<2)
|
|
|
|
#define DSR_SORT_UNIQ (1<<3)
|
|
|
|
int dir_split_resource_into_fingerprints(const char *resource,
|
|
|
|
smartlist_t *fp_out, int *compressed_out,
|
|
|
|
int flags);
|
2017-03-13 20:38:20 +01:00
|
|
|
enum dir_spool_source_t;
|
|
|
|
int dir_split_resource_into_spoolable(const char *resource,
|
|
|
|
enum dir_spool_source_t source,
|
|
|
|
smartlist_t *spool_out,
|
|
|
|
int *compressed_out,
|
|
|
|
int flags);
|
2010-07-22 11:54:50 +02:00
|
|
|
int dir_split_resource_into_fingerprint_pairs(const char *res,
|
|
|
|
smartlist_t *pairs_out);
|
|
|
|
char *directory_dump_request_log(void);
|
|
|
|
void note_request(const char *key, size_t bytes);
|
|
|
|
int router_supports_extrainfo(const char *identity_digest, int is_authority);
|
|
|
|
|
|
|
|
time_t download_status_increment_failure(download_status_t *dls,
|
|
|
|
int status_code, const char *item,
|
|
|
|
int server, time_t now);
|
2015-12-07 07:55:38 +01:00
|
|
|
time_t download_status_increment_attempt(download_status_t *dls,
|
|
|
|
const char *item, time_t now);
|
2010-07-22 11:54:50 +02:00
|
|
|
/** Increment the failure count of the download_status_t <b>dls</b>, with
|
|
|
|
* the optional status code <b>sc</b>. */
|
|
|
|
#define download_status_failed(dls, sc) \
|
|
|
|
download_status_increment_failure((dls), (sc), NULL, \
|
2014-10-28 23:01:06 +01:00
|
|
|
dir_server_mode(get_options()), \
|
|
|
|
time(NULL))
|
2010-07-22 11:54:50 +02:00
|
|
|
|
|
|
|
void download_status_reset(download_status_t *dls);
|
|
|
|
static int download_status_is_ready(download_status_t *dls, time_t now,
|
|
|
|
int max_failures);
|
|
|
|
/** Return true iff, as of <b>now</b>, the resource tracked by <b>dls</b> is
|
|
|
|
* ready to get its download reattempted. */
|
2015-12-10 16:19:43 +01:00
|
|
|
static inline int
|
2010-07-22 11:54:50 +02:00
|
|
|
download_status_is_ready(download_status_t *dls, time_t now,
|
|
|
|
int max_failures)
|
|
|
|
{
|
2016-11-07 02:08:11 +01:00
|
|
|
if (dls->backoff == DL_SCHED_DETERMINISTIC) {
|
|
|
|
/* Deterministic schedules can hit an endpoint; exponential backoff
|
|
|
|
* schedules just wait longer and longer. */
|
|
|
|
int under_failure_limit = (dls->n_download_failures <= max_failures
|
|
|
|
&& dls->n_download_attempts <= max_failures);
|
|
|
|
if (!under_failure_limit)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return dls->next_attempt_at <= now;
|
2010-07-22 11:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void download_status_mark_impossible(download_status_t *dl);
|
|
|
|
/** Mark <b>dl</b> as never downloadable. */
|
2015-12-10 16:19:43 +01:00
|
|
|
static inline void
|
2010-07-22 11:54:50 +02:00
|
|
|
download_status_mark_impossible(download_status_t *dl)
|
|
|
|
{
|
|
|
|
dl->n_download_failures = IMPOSSIBLE_TO_DOWNLOAD;
|
2015-12-07 07:55:38 +01:00
|
|
|
dl->n_download_attempts = IMPOSSIBLE_TO_DOWNLOAD;
|
2010-07-22 11:54:50 +02:00
|
|
|
}
|
|
|
|
|
2010-09-02 22:42:18 +02:00
|
|
|
int download_status_get_n_failures(const download_status_t *dls);
|
2015-12-07 07:55:38 +01:00
|
|
|
int download_status_get_n_attempts(const download_status_t *dls);
|
|
|
|
time_t download_status_get_next_attempt_at(const download_status_t *dls);
|
2010-09-02 22:42:18 +02:00
|
|
|
|
2016-10-26 01:30:50 +02:00
|
|
|
int purpose_needs_anonymity(uint8_t dir_purpose, uint8_t router_purpose,
|
|
|
|
const char *resource);
|
2016-07-01 02:08:38 +02:00
|
|
|
|
2016-08-25 17:04:59 +02:00
|
|
|
#ifdef DIRECTORY_PRIVATE
|
|
|
|
|
|
|
|
struct get_handler_args_t;
|
|
|
|
STATIC int handle_get_hs_descriptor_v3(dir_connection_t *conn,
|
|
|
|
const struct get_handler_args_t *args);
|
2016-12-14 01:12:34 +01:00
|
|
|
STATIC int directory_handle_command(dir_connection_t *conn);
|
2017-05-11 01:43:37 +02:00
|
|
|
STATIC char *accept_encoding_header(void);
|
2017-05-22 16:45:12 +02:00
|
|
|
STATIC int allowed_anonymous_connection_compression_method(compress_method_t);
|
2017-05-22 17:52:41 +02:00
|
|
|
STATIC void warn_disallowed_anonymous_compression_method(compress_method_t);
|
2016-08-25 17:04:59 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-09-03 02:14:43 +02:00
|
|
|
#ifdef TOR_UNIT_TESTS
|
2016-08-25 17:04:59 +02:00
|
|
|
/* Used only by test_dir.c */
|
2014-09-23 18:12:57 +02:00
|
|
|
|
2013-09-03 02:14:43 +02:00
|
|
|
STATIC int parse_http_url(const char *headers, char **url);
|
2014-09-23 18:12:57 +02:00
|
|
|
STATIC dirinfo_type_t dir_fetch_type(int dir_purpose, int router_purpose,
|
|
|
|
const char *resource);
|
2016-12-12 12:53:11 +01:00
|
|
|
MOCK_DECL(STATIC int, directory_handle_command_get,(dir_connection_t *conn,
|
|
|
|
const char *headers,
|
|
|
|
const char *req_body,
|
|
|
|
size_t req_body_len));
|
|
|
|
MOCK_DECL(STATIC int, directory_handle_command_post,(dir_connection_t *conn,
|
|
|
|
const char *headers,
|
|
|
|
const char *body,
|
|
|
|
size_t body_len));
|
2015-12-07 07:55:38 +01:00
|
|
|
STATIC int download_status_schedule_get_delay(download_status_t *dls,
|
|
|
|
const smartlist_t *schedule,
|
2016-06-12 21:07:11 +02:00
|
|
|
int min_delay, int max_delay,
|
2015-12-07 07:55:38 +01:00
|
|
|
time_t now);
|
2016-01-15 17:08:22 +01:00
|
|
|
|
2016-08-25 17:11:23 +02:00
|
|
|
STATIC int handle_post_hs_descriptor(const char *url, const char *body);
|
|
|
|
|
2015-09-07 21:04:51 +02:00
|
|
|
STATIC char* authdir_type_to_string(dirinfo_type_t auth);
|
|
|
|
STATIC const char * dir_conn_purpose_to_string(int purpose);
|
|
|
|
STATIC int should_use_directory_guards(const or_options_t *options);
|
2017-04-17 14:22:13 +02:00
|
|
|
STATIC compression_level_t choose_compression_level(ssize_t n_bytes);
|
2016-01-15 17:08:22 +01:00
|
|
|
STATIC const smartlist_t *find_dl_schedule(download_status_t *dls,
|
|
|
|
const or_options_t *options);
|
2016-06-12 21:07:11 +02:00
|
|
|
STATIC void find_dl_min_and_max_delay(download_status_t *dls,
|
|
|
|
const or_options_t *options,
|
|
|
|
int *min, int *max);
|
2016-06-18 20:23:55 +02:00
|
|
|
STATIC int next_random_exponential_delay(int delay, int max_delay);
|
|
|
|
|
2016-08-11 21:21:54 +02:00
|
|
|
STATIC int parse_hs_version_from_post(const char *url, const char *prefix,
|
|
|
|
const char **end_pos);
|
|
|
|
|
2017-04-26 01:00:31 +02:00
|
|
|
STATIC unsigned parse_accept_encoding_header(const char *h);
|
2013-09-03 02:14:43 +02:00
|
|
|
#endif
|
|
|
|
|
2010-07-22 11:54:50 +02:00
|
|
|
#endif
|
|
|
|
|