rendcache.h 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* Copyright (c) 2015, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file rendcache.h
  5. * \brief Header file for rendcache.c
  6. **/
  7. #ifndef TOR_RENDCACHE_H
  8. #define TOR_RENDCACHE_H
  9. #include "or.h"
  10. #include "rendcommon.h"
  11. /** How old do we let hidden service descriptors get before discarding
  12. * them as too old? */
  13. #define REND_CACHE_MAX_AGE (2*24*60*60)
  14. /** How wrong do we assume our clock may be when checking whether hidden
  15. * services are too old or too new? */
  16. #define REND_CACHE_MAX_SKEW (24*60*60)
  17. /** How old do we keep an intro point failure entry in the failure cache? */
  18. #define REND_CACHE_FAILURE_MAX_AGE (5*60)
  19. /* Do not allow more than this many introduction points in a hidden service
  20. * descriptor */
  21. #define MAX_INTRO_POINTS 10
  22. /** A cached rendezvous descriptor. */
  23. typedef struct rend_cache_entry_t {
  24. size_t len; /**< Length of <b>desc</b> */
  25. time_t last_served; /**< When did we last write this one to somebody?
  26. * (HSDir only) */
  27. char *desc; /**< Service descriptor */
  28. rend_service_descriptor_t *parsed; /**< Parsed value of 'desc' */
  29. } rend_cache_entry_t;
  30. /* Introduction point failure type. */
  31. typedef struct rend_cache_failure_intro_t {
  32. /* When this intro point failure occured thus we allocated this object and
  33. * cache it. */
  34. time_t created_ts;
  35. rend_intro_point_failure_t failure_type;
  36. } rend_cache_failure_intro_t;
  37. /** Cache failure object indexed by service ID. */
  38. typedef struct rend_cache_failure_t {
  39. /* Contains rend_cache_failure_intro_t indexed by identity digest. */
  40. digestmap_t *intro_failures;
  41. } rend_cache_failure_t;
  42. void rend_cache_init(void);
  43. void rend_cache_clean(time_t now);
  44. void rend_cache_failure_clean(time_t now);
  45. void rend_cache_clean_v2_descs_as_dir(time_t now, size_t min_to_remove);
  46. void rend_cache_purge(void);
  47. void rend_cache_free_all(void);
  48. int rend_cache_lookup_entry(const char *query, int version,
  49. rend_cache_entry_t **entry_out);
  50. int rend_cache_lookup_v2_desc_as_dir(const char *query, const char **desc);
  51. /** Return value from rend_cache_store_v2_desc_as_{dir,client}. */
  52. typedef enum {
  53. RCS_NOTDIR = -2, /**< We're not a directory */
  54. RCS_BADDESC = -1, /**< This descriptor is no good. */
  55. RCS_OKAY = 0 /**< All worked as expected */
  56. } rend_cache_store_status_t;
  57. rend_cache_store_status_t rend_cache_store_v2_desc_as_dir(const char *desc);
  58. rend_cache_store_status_t rend_cache_store_v2_desc_as_client(const char *desc,
  59. const char *desc_id_base32,
  60. const rend_data_t *rend_query,
  61. rend_cache_entry_t **entry);
  62. size_t rend_cache_get_total_allocation(void);
  63. void rend_cache_intro_failure_note(rend_intro_point_failure_t failure,
  64. const uint8_t *identity,
  65. const char *service_id);
  66. void rend_cache_failure_purge(void);
  67. #ifdef RENDCACHE_PRIVATE
  68. STATIC size_t rend_cache_entry_allocation(const rend_cache_entry_t *e);
  69. STATIC void rend_cache_entry_free(rend_cache_entry_t *e);
  70. STATIC void rend_cache_failure_intro_entry_free(rend_cache_failure_intro_t *entry);
  71. STATIC void rend_cache_failure_entry_free(rend_cache_failure_t *entry);
  72. STATIC int cache_failure_intro_lookup(const uint8_t *identity, const char *service_id, rend_cache_failure_intro_t **intro_entry);
  73. STATIC void rend_cache_decrement_allocation(size_t n);
  74. STATIC void rend_cache_increment_allocation(size_t n);
  75. STATIC rend_cache_failure_intro_t *rend_cache_failure_intro_entry_new(rend_intro_point_failure_t failure);
  76. STATIC rend_cache_failure_t *rend_cache_failure_entry_new(void);
  77. STATIC void rend_cache_failure_remove(rend_service_descriptor_t *desc);
  78. STATIC void cache_failure_intro_add(const uint8_t *identity, const char *service_id, rend_intro_point_failure_t failure);
  79. STATIC void validate_intro_point_failure(const rend_service_descriptor_t *desc, const char *service_id);
  80. #endif
  81. #endif /* TOR_RENDCACHE_H */