Tor 0.4.9.0-alpha-dev
protover.h
Go to the documentation of this file.
1/* Copyright (c) 2016-2021, The Tor Project, Inc. */
2/* See LICENSE for licensing information */
3
4/**
5 * \file protover.h
6 * \brief Headers and type declarations for protover.c
7 **/
8
9#ifndef TOR_PROTOVER_H
10#define TOR_PROTOVER_H
11
12#include <stdbool.h>
13#include "lib/cc/torint.h"
15struct smartlist_t;
16
17/** The first version of Tor that included "proto" entries in its
18 * descriptors. Authorities should use this to decide whether to
19 * guess proto lines. */
20/* This is a guess. */
21/// C_RUST_COUPLED: src/rust/protover/protover.rs
22/// `FIRST_TOR_VERSION_TO_ADVERTISE_PROTOCOLS`
23#define FIRST_TOR_VERSION_TO_ADVERTISE_PROTOCOLS "0.2.9.3-alpha"
24
25/** The protover version number that signifies ed25519 link handshake support
26 */
27#define PROTOVER_LINKAUTH_ED25519_HANDSHAKE 3
28
29/** The protover version number that signifies extend2 cell support */
30#define PROTOVER_RELAY_EXTEND2 2
31/** The protover version number where relays can accept IPv6 connections */
32#define PROTOVER_RELAY_ACCEPT_IPV6 2
33/** The protover version number where relays can initiate IPv6 extends */
34#define PROTOVER_RELAY_EXTEND_IPV6 3
35/** The protover version number where relays can consider IPv6 connections
36 * canonical */
37#define PROTOVER_RELAY_CANONICAL_IPV6 3
38/** The protover version number where relays can accept ntorv3 */
39#define PROTOVER_RELAY_NTOR_V3 4
40/** The protover that signals conflux support. */
41#define PROTOVER_CONFLUX_V1 1
42
43/** The protover version number that signifies HSv3 intro point support */
44#define PROTOVER_HS_INTRO_V3 4
45/** The protover version number where intro points support denial of service
46 * resistance */
47#define PROTOVER_HS_INTRO_DOS 5
48
49/** The protover version number that signifies HSv3 rendezvous point support */
50#define PROTOVER_HS_RENDEZVOUS_POINT_V3 2
51
52/** The protover version number that signifies HSDir support for HSv3 */
53#define PROTOVER_HSDIR_V3 2
54
55/** The protover that signals support for HS circuit setup padding machines */
56#define PROTOVER_HS_SETUP_PADDING 2
57
58/** The protover that signals support for congestion control */
59#define PROTOVER_FLOWCTRL_CC 2
60
61/** List of recognized subprotocols. */
62/// C_RUST_COUPLED: src/rust/protover/ffi.rs `translate_to_rust`
63/// C_RUST_COUPLED: src/rust/protover/protover.rs `Proto`
64typedef enum protocol_type_t {
65 PRT_LINK = 0,
66 PRT_LINKAUTH = 1,
67 PRT_RELAY = 2,
68 PRT_DIRCACHE = 3,
69 PRT_HSDIR = 4,
70 PRT_HSINTRO = 5,
71 PRT_HSREND = 6,
72 PRT_DESC = 7,
73 PRT_MICRODESC = 8,
74 PRT_CONS = 9,
75 PRT_PADDING = 10,
76 PRT_FLOWCTRL = 11,
77 PRT_CONFLUX = 12,
79
80bool protover_list_is_invalid(const char *s);
81const char *protover_get_supported(const protocol_type_t type);
82int protover_all_supported(const char *s, char **missing);
84const char *protover_get_supported_protocols(void);
89
90char *protover_compute_vote(const struct smartlist_t *list_of_proto_strings,
91 int threshold);
92const char *protover_compute_for_old_tor(const char *version);
94 uint32_t version);
97 uint32_t version);
98
99void protover_free_all(void);
100
101#ifdef PROTOVER_PRIVATE
102/** Represents a set of ranges of subprotocols of a given type. */
103typedef struct proto_entry_t {
104 /** The name of the protocol.
105 *
106 * (This needs to handle voting on protocols which
107 * we don't recognize yet, so it's a char* rather than a protocol_type_t.)
108 */
109 char *name;
110 /** Bitmask of supported protocols. Version 'x' is included in this
111 * entry if and only if bit '1<<x' is set here. */
112 uint64_t bitmask;
113} proto_entry_t;
114
115#if defined(TOR_UNIT_TESTS)
116STATIC struct smartlist_t *parse_protocol_list(const char *s);
117STATIC char *encode_protocol_list(const struct smartlist_t *sl);
119STATIC int str_to_protocol_type(const char *s, protocol_type_t *pr_out);
120STATIC void proto_entry_free_(proto_entry_t *entry);
121#endif /* defined(TOR_UNIT_TESTS) */
122
123#define proto_entry_free(entry) \
124 FREE_AND_NULL(proto_entry_t, proto_entry_free_, (entry))
125
126#endif /* defined(PROTOVER_PRIVATE) */
127
128#endif /* !defined(TOR_PROTOVER_H) */
const char * name
Definition: config.c:2462
STATIC char * encode_protocol_list(const smartlist_t *sl)
Definition: protover.c:630
STATIC void proto_entry_free_(proto_entry_t *entry)
Definition: protover.c:90
STATIC const char * protocol_type_to_str(protocol_type_t pr)
Definition: protover.c:73
char * protover_compute_vote(const smartlist_t *list_of_proto_strings, int threshold)
Definition: protover.c:661
STATIC smartlist_t * parse_protocol_list(const char *s)
Definition: protover.c:264
bool protover_list_is_invalid(const char *s)
Definition: protover.c:301
const char * protover_get_recommended_relay_protocols(void)
Definition: protover.c:531
const char * protover_get_required_relay_protocols(void)
Definition: protover.c:548
const char * protover_get_required_client_protocols(void)
Definition: protover.c:540
void protover_free_all(void)
Definition: protover.c:887
int protover_all_supported(const char *s, char **missing)
Definition: protover.c:750
int protover_is_supported_here(protocol_type_t pr, uint32_t ver)
Definition: protover.c:316
const char * protover_get_recommended_client_protocols(void)
Definition: protover.c:522
int protocol_list_supports_protocol(const char *list, protocol_type_t tp, uint32_t version)
Definition: protover.c:330
protocol_type_t
Definition: protover.h:64
int protocol_list_supports_protocol_or_later(const char *list, protocol_type_t tp, uint32_t version)
Definition: protover.c:355
const char * protover_get_supported_protocols(void)
C_RUST_COUPLED: src/rust/protover/protover.rs SUPPORTED_PROTOCOLS
Definition: protover.c:437
const char * protover_compute_for_old_tor(const char *version)
C_RUST_COUPLED: src/rust/protover/protover.rs compute_for_old_tor
Definition: protover.c:849
const char * protover_get_supported(const protocol_type_t type)
Definition: protover.c:411
void ** list
Macros to implement mocking and selective exposure for the test code.
#define STATIC
Definition: testsupport.h:32
Integer definitions used throughout Tor.