router.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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-2018, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file router.h
  8. * \brief Header file for router.c.
  9. **/
  10. #ifndef TOR_ROUTER_H
  11. #define TOR_ROUTER_H
  12. #include "lib/testsupport/testsupport.h"
  13. struct curve25519_keypair_t;
  14. struct ed25519_keypair_t;
  15. #define TOR_ROUTERINFO_ERROR_NO_EXT_ADDR (-1)
  16. #define TOR_ROUTERINFO_ERROR_CANNOT_PARSE (-2)
  17. #define TOR_ROUTERINFO_ERROR_NOT_A_SERVER (-3)
  18. #define TOR_ROUTERINFO_ERROR_DIGEST_FAILED (-4)
  19. #define TOR_ROUTERINFO_ERROR_CANNOT_GENERATE (-5)
  20. #define TOR_ROUTERINFO_ERROR_DESC_REBUILDING (-6)
  21. crypto_pk_t *get_onion_key(void);
  22. time_t get_onion_key_set_at(void);
  23. void set_server_identity_key(crypto_pk_t *k);
  24. crypto_pk_t *get_server_identity_key(void);
  25. int server_identity_key_is_set(void);
  26. void set_client_identity_key(crypto_pk_t *k);
  27. crypto_pk_t *get_tlsclient_identity_key(void);
  28. int client_identity_key_is_set(void);
  29. MOCK_DECL(authority_cert_t *, get_my_v3_authority_cert, (void));
  30. crypto_pk_t *get_my_v3_authority_signing_key(void);
  31. authority_cert_t *get_my_v3_legacy_cert(void);
  32. crypto_pk_t *get_my_v3_legacy_signing_key(void);
  33. void dup_onion_keys(crypto_pk_t **key, crypto_pk_t **last);
  34. void expire_old_onion_keys(void);
  35. void rotate_onion_key(void);
  36. void v3_authority_check_key_expiry(void);
  37. int get_onion_key_lifetime(void);
  38. int get_onion_key_grace_period(void);
  39. crypto_pk_t *router_get_rsa_onion_pkey(const char *pkey, size_t pkey_len);
  40. void router_set_rsa_onion_pkey(const crypto_pk_t *pk, char **onion_pkey_out,
  41. size_t *onion_pkey_len);
  42. di_digest256_map_t *construct_ntor_key_map(void);
  43. void ntor_key_map_free_(di_digest256_map_t *map);
  44. #define ntor_key_map_free(map) \
  45. FREE_AND_NULL(di_digest256_map_t, ntor_key_map_free_, (map))
  46. int router_initialize_tls_context(void);
  47. int init_keys(void);
  48. int init_keys_client(void);
  49. int net_is_disabled(void);
  50. int net_is_completely_disabled(void);
  51. uint16_t router_get_active_listener_port_by_type_af(int listener_type,
  52. sa_family_t family);
  53. uint16_t router_get_advertised_or_port(const or_options_t *options);
  54. uint16_t router_get_advertised_or_port_by_af(const or_options_t *options,
  55. sa_family_t family);
  56. uint16_t router_get_advertised_dir_port(const or_options_t *options,
  57. uint16_t dirport);
  58. int router_should_advertise_dirport(const or_options_t *options,
  59. uint16_t dir_port);
  60. void consider_publishable_server(int force);
  61. int should_refuse_unknown_exits(const or_options_t *options);
  62. void router_upload_dir_desc_to_dirservers(int force);
  63. void mark_my_descriptor_dirty_if_too_old(time_t now);
  64. void mark_my_descriptor_dirty(const char *reason);
  65. void check_descriptor_bandwidth_changed(time_t now);
  66. void check_descriptor_ipaddress_changed(time_t now);
  67. int router_has_bandwidth_to_be_dirserver(const or_options_t *options);
  68. void router_new_address_suggestion(const char *suggestion,
  69. const dir_connection_t *d_conn);
  70. int router_compare_to_my_exit_policy(const tor_addr_t *addr, uint16_t port);
  71. MOCK_DECL(int, router_my_exit_policy_is_reject_star,(void));
  72. MOCK_DECL(const routerinfo_t *, router_get_my_routerinfo, (void));
  73. MOCK_DECL(const routerinfo_t *, router_get_my_routerinfo_with_err,(int *err));
  74. extrainfo_t *router_get_my_extrainfo(void);
  75. const char *router_get_my_descriptor(void);
  76. const char *router_get_descriptor_gen_reason(void);
  77. int router_digest_is_me(const char *digest);
  78. const uint8_t *router_get_my_id_digest(void);
  79. int router_extrainfo_digest_is_me(const char *digest);
  80. int router_is_me(const routerinfo_t *router);
  81. MOCK_DECL(int,router_pick_published_address,(const or_options_t *options,
  82. uint32_t *addr,
  83. int cache_only));
  84. int router_build_fresh_descriptor(routerinfo_t **r, extrainfo_t **e);
  85. int router_rebuild_descriptor(int force);
  86. char *router_dump_router_to_string(routerinfo_t *router,
  87. const crypto_pk_t *ident_key,
  88. const crypto_pk_t *tap_key,
  89. const struct curve25519_keypair_t *ntor_keypair,
  90. const struct ed25519_keypair_t *signing_keypair);
  91. char *router_dump_exit_policy_to_string(const routerinfo_t *router,
  92. int include_ipv4,
  93. int include_ipv6);
  94. void router_get_prim_orport(const routerinfo_t *router,
  95. tor_addr_port_t *addr_port_out);
  96. void router_get_pref_orport(const routerinfo_t *router,
  97. tor_addr_port_t *addr_port_out);
  98. void router_get_pref_ipv6_orport(const routerinfo_t *router,
  99. tor_addr_port_t *addr_port_out);
  100. int router_ipv6_preferred(const routerinfo_t *router);
  101. int router_has_addr(const routerinfo_t *router, const tor_addr_t *addr);
  102. int router_has_orport(const routerinfo_t *router,
  103. const tor_addr_port_t *orport);
  104. int extrainfo_dump_to_string(char **s, extrainfo_t *extrainfo,
  105. crypto_pk_t *ident_key,
  106. const struct ed25519_keypair_t *signing_keypair);
  107. int is_legal_nickname(const char *s);
  108. int is_legal_nickname_or_hexdigest(const char *s);
  109. int is_legal_hexdigest(const char *s);
  110. const char *router_describe(const routerinfo_t *ri);
  111. const char *node_describe(const node_t *node);
  112. const char *routerstatus_describe(const routerstatus_t *ri);
  113. const char *extend_info_describe(const extend_info_t *ei);
  114. const char *routerinfo_err_to_string(int err);
  115. int routerinfo_err_is_transient(int err);
  116. void router_get_verbose_nickname(char *buf, const routerinfo_t *router);
  117. void router_reset_warnings(void);
  118. void router_reset_reachability(void);
  119. void router_free_all(void);
  120. const char *router_purpose_to_string(uint8_t p);
  121. uint8_t router_purpose_from_string(const char *s);
  122. smartlist_t *router_get_all_orports(const routerinfo_t *ri);
  123. #ifdef ROUTER_PRIVATE
  124. /* Used only by router.c and test.c */
  125. STATIC void get_platform_str(char *platform, size_t len);
  126. STATIC int router_write_fingerprint(int hashed);
  127. #endif
  128. #endif /* !defined(TOR_ROUTER_H) */