networkstatus.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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-2013, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file networkstatus.h
  8. * \brief Header file for networkstatus.c.
  9. **/
  10. #ifndef TOR_NETWORKSTATUS_H
  11. #define TOR_NETWORKSTATUS_H
  12. void networkstatus_reset_warnings(void);
  13. void networkstatus_reset_download_failures(void);
  14. int router_reload_consensus_networkstatus(void);
  15. void routerstatus_free(routerstatus_t *rs);
  16. void networkstatus_vote_free(networkstatus_t *ns);
  17. networkstatus_voter_info_t *networkstatus_get_voter_by_id(
  18. networkstatus_t *vote,
  19. const char *identity);
  20. int networkstatus_check_consensus_signature(networkstatus_t *consensus,
  21. int warn);
  22. int networkstatus_check_document_signature(const networkstatus_t *consensus,
  23. document_signature_t *sig,
  24. const authority_cert_t *cert);
  25. int compare_digest_to_routerstatus_entry(const void *_key,
  26. const void **_member);
  27. int compare_digest_to_vote_routerstatus_entry(const void *_key,
  28. const void **_member);
  29. const routerstatus_t *networkstatus_vote_find_entry(networkstatus_t *ns,
  30. const char *digest);
  31. routerstatus_t *networkstatus_vote_find_mutable_entry(networkstatus_t *ns,
  32. const char *digest);
  33. int networkstatus_vote_find_entry_idx(networkstatus_t *ns,
  34. const char *digest, int *found_out);
  35. download_status_t *router_get_dl_status_by_descriptor_digest(const char *d);
  36. const routerstatus_t *router_get_consensus_status_by_id(const char *digest);
  37. routerstatus_t *router_get_mutable_consensus_status_by_id(
  38. const char *digest);
  39. const routerstatus_t *router_get_consensus_status_by_descriptor_digest(
  40. networkstatus_t *consensus,
  41. const char *digest);
  42. routerstatus_t *router_get_mutable_consensus_status_by_descriptor_digest(
  43. networkstatus_t *consensus,
  44. const char *digest);
  45. const routerstatus_t *router_get_consensus_status_by_nickname(
  46. const char *nickname,
  47. int warn_if_unnamed);
  48. const char *networkstatus_get_router_digest_by_nickname(const char *nickname);
  49. int networkstatus_nickname_is_unnamed(const char *nickname);
  50. void networkstatus_consensus_download_failed(int status_code,
  51. const char *flavname);
  52. void update_consensus_networkstatus_fetch_time(time_t now);
  53. int should_delay_dir_fetches(const or_options_t *options,const char **msg_out);
  54. void update_networkstatus_downloads(time_t now);
  55. void update_certificate_downloads(time_t now);
  56. int consensus_is_waiting_for_certs(void);
  57. int client_would_use_router(const routerstatus_t *rs, time_t now,
  58. const or_options_t *options);
  59. networkstatus_t *networkstatus_get_latest_consensus(void);
  60. networkstatus_t *networkstatus_get_latest_consensus_by_flavor(
  61. consensus_flavor_t f);
  62. networkstatus_t *networkstatus_get_live_consensus(time_t now);
  63. networkstatus_t *networkstatus_get_reasonably_live_consensus(time_t now,
  64. int flavor);
  65. #define NSSET_FROM_CACHE 1
  66. #define NSSET_WAS_WAITING_FOR_CERTS 2
  67. #define NSSET_DONT_DOWNLOAD_CERTS 4
  68. #define NSSET_ACCEPT_OBSOLETE 8
  69. #define NSSET_REQUIRE_FLAVOR 16
  70. int networkstatus_set_current_consensus(const char *consensus,
  71. const char *flavor,
  72. unsigned flags);
  73. void networkstatus_note_certs_arrived(void);
  74. void routers_update_all_from_networkstatus(time_t now, int dir_version);
  75. void routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
  76. int reset_failures);
  77. void signed_descs_update_status_from_consensus_networkstatus(
  78. smartlist_t *descs);
  79. char *networkstatus_getinfo_helper_single(const routerstatus_t *rs);
  80. char *networkstatus_getinfo_by_purpose(const char *purpose_string, time_t now);
  81. void networkstatus_dump_bridge_status_to_file(time_t now);
  82. int32_t networkstatus_get_param(const networkstatus_t *ns,
  83. const char *param_name,
  84. int32_t default_val, int32_t min_val,
  85. int32_t max_val);
  86. int getinfo_helper_networkstatus(control_connection_t *conn,
  87. const char *question, char **answer,
  88. const char **errmsg);
  89. int32_t networkstatus_get_bw_weight(networkstatus_t *ns, const char *weight,
  90. int32_t default_val);
  91. const char *networkstatus_get_flavor_name(consensus_flavor_t flav);
  92. int networkstatus_parse_flavor_name(const char *flavname);
  93. void document_signature_free(document_signature_t *sig);
  94. document_signature_t *document_signature_dup(const document_signature_t *sig);
  95. void networkstatus_free_all(void);
  96. int networkstatus_get_weight_scale_param(networkstatus_t *ns);
  97. #ifdef NETWORKSTATUS_PRIVATE
  98. STATIC void vote_routerstatus_free(vote_routerstatus_t *rs);
  99. #endif
  100. #endif