rendcache.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 service);
  51. int rend_cache_lookup_v2_desc_as_dir(const char *query, const char **desc);
  52. /** Return value from rend_cache_store_v2_desc_as_{dir,client}. */
  53. typedef enum {
  54. RCS_NOTDIR = -2, /**< We're not a directory */
  55. RCS_BADDESC = -1, /**< This descriptor is no good. */
  56. RCS_OKAY = 0 /**< All worked as expected */
  57. } rend_cache_store_status_t;
  58. rend_cache_store_status_t rend_cache_store_v2_desc_as_dir(const char *desc);
  59. rend_cache_store_status_t rend_cache_store_v2_desc_as_service(
  60. const char *desc);
  61. rend_cache_store_status_t rend_cache_store_v2_desc_as_client(const char *desc,
  62. const char *desc_id_base32,
  63. const rend_data_t *rend_query,
  64. rend_cache_entry_t **entry);
  65. size_t rend_cache_get_total_allocation(void);
  66. void rend_cache_intro_failure_note(rend_intro_point_failure_t failure,
  67. const uint8_t *identity,
  68. const char *service_id);
  69. void rend_cache_failure_purge(void);
  70. #endif /* TOR_RENDCACHE_H */