2018-06-15 20:38:30 +02:00
|
|
|
/* Copyright (c) 2001 Matej Pfajfar.
|
|
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2019-01-16 18:33:22 +01:00
|
|
|
* Copyright (c) 2007-2019, The Tor Project, Inc. */
|
2018-06-15 20:38:30 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
2019-10-26 18:05:28 +02:00
|
|
|
/**
|
|
|
|
* @file microdesc_st.h
|
|
|
|
* @brief Microdescriptor structure
|
|
|
|
**/
|
|
|
|
|
2018-06-15 20:38:30 +02:00
|
|
|
#ifndef MICRODESC_ST_H
|
|
|
|
#define MICRODESC_ST_H
|
|
|
|
|
2018-07-01 19:04:21 +02:00
|
|
|
struct curve25519_public_key_t;
|
|
|
|
struct ed25519_public_key_t;
|
2018-10-24 01:55:12 +02:00
|
|
|
struct nodefamily_t;
|
2018-07-01 19:43:11 +02:00
|
|
|
struct short_policy_t;
|
2018-07-01 19:04:21 +02:00
|
|
|
|
2018-06-15 20:38:30 +02:00
|
|
|
/** A microdescriptor is the smallest amount of information needed to build a
|
|
|
|
* circuit through a router. They are generated by the directory authorities,
|
|
|
|
* using information from the uploaded routerinfo documents. They are not
|
|
|
|
* self-signed, but are rather authenticated by having their hash in a signed
|
|
|
|
* networkstatus document. */
|
|
|
|
struct microdesc_t {
|
|
|
|
/** Hashtable node, used to look up the microdesc by its digest. */
|
|
|
|
HT_ENTRY(microdesc_t) node;
|
|
|
|
|
|
|
|
/* Cache information */
|
|
|
|
|
|
|
|
/** When was this microdescriptor last listed in a consensus document?
|
|
|
|
* Once a microdesc has been unlisted long enough, we can drop it.
|
|
|
|
*/
|
|
|
|
time_t last_listed;
|
|
|
|
/** Where is this microdescriptor currently stored? */
|
|
|
|
saved_location_bitfield_t saved_location : 3;
|
|
|
|
/** If true, do not attempt to cache this microdescriptor on disk. */
|
|
|
|
unsigned int no_save : 1;
|
|
|
|
/** If true, this microdesc has an entry in the microdesc_map */
|
|
|
|
unsigned int held_in_map : 1;
|
2019-08-26 02:22:57 +02:00
|
|
|
/** True iff the exit policy for this router rejects everything. */
|
|
|
|
unsigned int policy_is_reject_star : 1;
|
2018-06-15 20:38:30 +02:00
|
|
|
/** Reference count: how many node_ts have a reference to this microdesc? */
|
|
|
|
unsigned int held_by_nodes;
|
|
|
|
|
|
|
|
/** If saved_location == SAVED_IN_CACHE, this field holds the offset of the
|
|
|
|
* microdescriptor in the cache. */
|
|
|
|
off_t off;
|
|
|
|
|
|
|
|
/* The string containing the microdesc. */
|
|
|
|
|
|
|
|
/** A pointer to the encoded body of the microdescriptor. If the
|
|
|
|
* saved_location is SAVED_IN_CACHE, then the body is a pointer into an
|
|
|
|
* mmap'd region. Otherwise, it is a malloc'd string. The string might not
|
|
|
|
* be NUL-terminated; take the length from <b>bodylen</b>. */
|
|
|
|
char *body;
|
|
|
|
/** The length of the microdescriptor in <b>body</b>. */
|
|
|
|
size_t bodylen;
|
|
|
|
/** A SHA256-digest of the microdescriptor. */
|
|
|
|
char digest[DIGEST256_LEN];
|
|
|
|
|
|
|
|
/* Fields in the microdescriptor. */
|
|
|
|
|
2018-08-29 21:04:54 +02:00
|
|
|
/**
|
|
|
|
* Public RSA TAP key for onions, ASN.1 encoded. We store this
|
|
|
|
* in its encoded format since storing it as a crypto_pk_t uses
|
|
|
|
* significantly more memory. */
|
2018-08-23 20:05:42 +02:00
|
|
|
char *onion_pkey;
|
2018-08-29 21:04:54 +02:00
|
|
|
/** Length of onion_pkey, in bytes. */
|
2018-08-23 20:05:42 +02:00
|
|
|
size_t onion_pkey_len;
|
|
|
|
|
2018-06-15 20:38:30 +02:00
|
|
|
/** As routerinfo_t.onion_curve25519_pkey */
|
2018-07-01 19:04:21 +02:00
|
|
|
struct curve25519_public_key_t *onion_curve25519_pkey;
|
2018-06-15 20:38:30 +02:00
|
|
|
/** Ed25519 identity key, if included. */
|
2018-07-01 19:04:21 +02:00
|
|
|
struct ed25519_public_key_t *ed25519_identity_pkey;
|
2018-06-15 20:38:30 +02:00
|
|
|
/** As routerinfo_t.ipv6_addr */
|
|
|
|
tor_addr_t ipv6_addr;
|
|
|
|
/** As routerinfo_t.ipv6_orport */
|
|
|
|
uint16_t ipv6_orport;
|
2018-10-24 01:55:12 +02:00
|
|
|
/** As routerinfo_t.family, with readable members parsed. */
|
|
|
|
struct nodefamily_t *family;
|
2018-06-15 20:38:30 +02:00
|
|
|
/** IPv4 exit policy summary */
|
2018-07-01 19:43:11 +02:00
|
|
|
struct short_policy_t *exit_policy;
|
2018-06-15 20:38:30 +02:00
|
|
|
/** IPv6 exit policy summary */
|
2018-07-01 19:43:11 +02:00
|
|
|
struct short_policy_t *ipv6_exit_policy;
|
2018-06-15 20:38:30 +02:00
|
|
|
};
|
|
|
|
|
2019-06-05 15:33:35 +02:00
|
|
|
#endif /* !defined(MICRODESC_ST_H) */
|