dirserv.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2016, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file dirserv.h
  8. * \brief Header file for dirserv.c.
  9. **/
  10. #ifndef TOR_DIRSERV_H
  11. #define TOR_DIRSERV_H
  12. #include "testsupport.h"
  13. /** What fraction (1 over this number) of the relay ID space do we
  14. * (as a directory authority) launch connections to at each reachability
  15. * test? */
  16. #define REACHABILITY_MODULO_PER_TEST 128
  17. /** How often (in seconds) do we launch reachability tests? */
  18. #define REACHABILITY_TEST_INTERVAL 10
  19. /** How many seconds apart are the reachability tests for a given relay? */
  20. #define REACHABILITY_TEST_CYCLE_PERIOD \
  21. (REACHABILITY_TEST_INTERVAL*REACHABILITY_MODULO_PER_TEST)
  22. /** Maximum length of an exit policy summary. */
  23. #define MAX_EXITPOLICY_SUMMARY_LEN 1000
  24. /** Maximum allowable length of a version line in a networkstatus. */
  25. #define MAX_V_LINE_LEN 128
  26. /** Ways to convert a spoolable_resource_t to a bunch of bytes. */
  27. typedef enum dir_spool_source_t {
  28. DIR_SPOOL_SERVER_BY_DIGEST=1, DIR_SPOOL_SERVER_BY_FP,
  29. DIR_SPOOL_EXTRA_BY_DIGEST, DIR_SPOOL_EXTRA_BY_FP,
  30. DIR_SPOOL_MICRODESC,
  31. DIR_SPOOL_NETWORKSTATUS,
  32. } dir_spool_source_t;
  33. #define dir_spool_source_bitfield_t ENUM_BF(dir_spool_source_t)
  34. /** Object to remember the identity of an object that we are spooling,
  35. * or about to spool, in response to a directory request.
  36. *
  37. * (Why do we spool? Because some directory responses are very large,
  38. * and we don't want to just shove the complete answer into the output
  39. * buffer: that would take a ridiculous amount of RAM.)
  40. *
  41. * If the spooled resource is relatively small (like microdescriptors,
  42. * descriptors, etc), we look them up by ID as needed, and add the whole
  43. * thing onto the output buffer at once. If the spooled reseource is
  44. * big (like networkstatus documents), we reference-count it, and add it
  45. * a few K at a time.
  46. */
  47. typedef struct spooled_resource_t {
  48. /**
  49. * If true, we add the entire object to the outbuf. If false,
  50. * we spool the object a few K at a time.
  51. */
  52. unsigned spool_eagerly : 1;
  53. /**
  54. * Tells us what kind of object to get, and how to look it up.
  55. */
  56. dir_spool_source_bitfield_t spool_source : 7;
  57. /**
  58. * Tells us the specific object to spool.
  59. */
  60. uint8_t digest[DIGEST256_LEN];
  61. /**
  62. * A large object that we're spooling. Holds a reference count. Only
  63. * used when spool_eagerly is false.
  64. */
  65. struct cached_dir_t *cached_dir_ref;
  66. /**
  67. * The current offset into cached_dir. Only used when spool_eagerly is
  68. * false */
  69. off_t cached_dir_offset;
  70. } spooled_resource_t;
  71. int connection_dirserv_flushed_some(dir_connection_t *conn);
  72. int dirserv_add_own_fingerprint(crypto_pk_t *pk);
  73. int dirserv_load_fingerprint_file(void);
  74. void dirserv_free_fingerprint_list(void);
  75. enum was_router_added_t dirserv_add_multiple_descriptors(
  76. const char *desc, uint8_t purpose,
  77. const char *source,
  78. const char **msg);
  79. enum was_router_added_t dirserv_add_descriptor(routerinfo_t *ri,
  80. const char **msg,
  81. const char *source);
  82. void dirserv_set_router_is_running(routerinfo_t *router, time_t now);
  83. int list_server_status_v1(smartlist_t *routers, char **router_status_out,
  84. int for_controller);
  85. char *dirserv_get_flag_thresholds_line(void);
  86. void dirserv_compute_bridge_flag_thresholds(void);
  87. int directory_fetches_from_authorities(const or_options_t *options);
  88. int directory_fetches_dir_info_early(const or_options_t *options);
  89. int directory_fetches_dir_info_later(const or_options_t *options);
  90. int directory_caches_unknown_auth_certs(const or_options_t *options);
  91. int directory_caches_dir_info(const or_options_t *options);
  92. int directory_permits_begindir_requests(const or_options_t *options);
  93. int directory_too_idle_to_fetch_descriptors(const or_options_t *options,
  94. time_t now);
  95. cached_dir_t *dirserv_get_consensus(const char *flavor_name);
  96. void dirserv_set_cached_consensus_networkstatus(const char *consensus,
  97. const char *flavor_name,
  98. const common_digests_t *digests,
  99. time_t published);
  100. void dirserv_clear_old_networkstatuses(time_t cutoff);
  101. int dirserv_get_routerdesc_spool(smartlist_t *spools_out, const char *key,
  102. dir_spool_source_t source,
  103. int conn_is_encrytped,
  104. const char **msg_out);
  105. int dirserv_get_routerdescs(smartlist_t *descs_out, const char *key,
  106. const char **msg);
  107. void dirserv_orconn_tls_done(const tor_addr_t *addr,
  108. uint16_t or_port,
  109. const char *digest_rcvd,
  110. const ed25519_public_key_t *ed_id_rcvd);
  111. int dirserv_should_launch_reachability_test(const routerinfo_t *ri,
  112. const routerinfo_t *ri_old);
  113. void dirserv_single_reachability_test(time_t now, routerinfo_t *router);
  114. void dirserv_test_reachability(time_t now);
  115. int authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg,
  116. int complain,
  117. int *valid_out);
  118. uint32_t dirserv_router_get_status(const routerinfo_t *router,
  119. const char **msg,
  120. int severity);
  121. void dirserv_set_node_flags_from_authoritative_status(node_t *node,
  122. uint32_t authstatus);
  123. int dirserv_would_reject_router(const routerstatus_t *rs);
  124. char *routerstatus_format_entry(
  125. const routerstatus_t *rs,
  126. const char *version,
  127. const char *protocols,
  128. routerstatus_format_type_t format,
  129. const vote_routerstatus_t *vrs);
  130. void dirserv_free_all(void);
  131. void cached_dir_decref(cached_dir_t *d);
  132. cached_dir_t *new_cached_dir(char *s, time_t published);
  133. int validate_recommended_package_line(const char *line);
  134. #ifdef DIRSERV_PRIVATE
  135. STATIC void dirserv_set_routerstatus_testing(routerstatus_t *rs);
  136. /* Put the MAX_MEASUREMENT_AGE #define here so unit tests can see it */
  137. #define MAX_MEASUREMENT_AGE (3*24*60*60) /* 3 days */
  138. STATIC int measured_bw_line_parse(measured_bw_line_t *out, const char *line);
  139. STATIC int measured_bw_line_apply(measured_bw_line_t *parsed_line,
  140. smartlist_t *routerstatuses);
  141. STATIC void dirserv_cache_measured_bw(const measured_bw_line_t *parsed_line,
  142. time_t as_of);
  143. STATIC void dirserv_clear_measured_bw_cache(void);
  144. STATIC void dirserv_expire_measured_bw_cache(time_t now);
  145. STATIC int dirserv_get_measured_bw_cache_size(void);
  146. STATIC int dirserv_query_measured_bw_cache_kb(const char *node_id,
  147. long *bw_out,
  148. time_t *as_of_out);
  149. STATIC int dirserv_has_measured_bw(const char *node_id);
  150. STATIC int
  151. dirserv_read_guardfraction_file_from_str(const char *guardfraction_file_str,
  152. smartlist_t *vote_routerstatuses);
  153. #endif
  154. int dirserv_read_measured_bandwidths(const char *from_file,
  155. smartlist_t *routerstatuses);
  156. int dirserv_read_guardfraction_file(const char *fname,
  157. smartlist_t *vote_routerstatuses);
  158. spooled_resource_t *spooled_resource_new(dir_spool_source_t source,
  159. const uint8_t *digest,
  160. size_t digestlen);
  161. void spooled_resource_free(spooled_resource_t *spooled);
  162. void dirserv_spool_remove_missing_and_guess_size(dir_connection_t *conn,
  163. time_t cutoff,
  164. int compression,
  165. uint64_t *size_out,
  166. int *n_expired_out);
  167. void dirserv_spool_sort(dir_connection_t *conn);
  168. void dir_conn_clear_spool(dir_connection_t *conn);
  169. #endif