2017-03-15 21:13:17 +01:00
|
|
|
/* Copyright (c) 2016-2017, The Tor Project, Inc. */
|
2016-10-15 02:08:51 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file protover.h
|
|
|
|
* \brief Headers and type declarations for protover.c
|
|
|
|
**/
|
2016-08-10 01:11:47 +02:00
|
|
|
|
|
|
|
#ifndef TOR_PROTOVER_H
|
|
|
|
#define TOR_PROTOVER_H
|
|
|
|
|
|
|
|
#include "container.h"
|
|
|
|
|
2016-08-26 19:09:26 +02:00
|
|
|
/** The first version of Tor that included "proto" entries in its
|
|
|
|
* descriptors. Authorities should use this to decide whether to
|
|
|
|
* guess proto lines. */
|
2016-08-25 17:18:05 +02:00
|
|
|
/* This is a guess. */
|
|
|
|
#define FIRST_TOR_VERSION_TO_ADVERTISE_PROTOCOLS "0.2.9.3-alpha"
|
|
|
|
|
2016-08-26 19:09:26 +02:00
|
|
|
/** List of recognized subprotocols. */
|
2016-08-10 01:11:47 +02:00
|
|
|
typedef enum protocol_type_t {
|
|
|
|
PRT_LINK,
|
|
|
|
PRT_LINKAUTH,
|
|
|
|
PRT_RELAY,
|
|
|
|
PRT_DIRCACHE,
|
|
|
|
PRT_HSDIR,
|
2016-09-14 16:31:56 +02:00
|
|
|
PRT_HSINTRO,
|
|
|
|
PRT_HSREND,
|
2016-08-10 01:11:47 +02:00
|
|
|
PRT_DESC,
|
|
|
|
PRT_MICRODESC,
|
|
|
|
PRT_CONS,
|
|
|
|
} protocol_type_t;
|
|
|
|
|
|
|
|
int protover_all_supported(const char *s, char **missing);
|
|
|
|
int protover_is_supported_here(protocol_type_t pr, uint32_t ver);
|
2016-09-12 20:18:43 +02:00
|
|
|
const char *protover_get_supported_protocols(void);
|
2016-08-10 01:11:47 +02:00
|
|
|
|
2016-09-12 20:11:44 +02:00
|
|
|
char *protover_compute_vote(const smartlist_t *list_of_proto_strings,
|
2016-08-26 19:09:26 +02:00
|
|
|
int threshold);
|
2016-08-25 17:18:05 +02:00
|
|
|
const char *protover_compute_for_old_tor(const char *version);
|
2016-08-26 18:49:00 +02:00
|
|
|
int protocol_list_supports_protocol(const char *list, protocol_type_t tp,
|
|
|
|
uint32_t version);
|
2016-08-20 00:04:02 +02:00
|
|
|
|
2016-08-10 01:11:47 +02:00
|
|
|
void protover_free_all(void);
|
|
|
|
|
|
|
|
#ifdef PROTOVER_PRIVATE
|
2016-08-26 19:09:26 +02:00
|
|
|
/** Represents a range of subprotocols of a given type. All subprotocols
|
|
|
|
* between <b>low</b> and <b>high</b> inclusive are included. */
|
2016-08-10 01:11:47 +02:00
|
|
|
typedef struct proto_range_t {
|
|
|
|
uint32_t low;
|
|
|
|
uint32_t high;
|
|
|
|
} proto_range_t;
|
|
|
|
|
2016-08-26 19:09:26 +02:00
|
|
|
/** Represents a set of ranges of subprotocols of a given type. */
|
2016-08-10 01:11:47 +02:00
|
|
|
typedef struct proto_entry_t {
|
2016-08-26 19:09:26 +02:00
|
|
|
/** The name of the protocol.
|
|
|
|
*
|
|
|
|
* (This needs to handle voting on protocols which
|
|
|
|
* we don't recognize yet, so it's a char* rather than a protocol_type_t.)
|
|
|
|
*/
|
2016-08-10 01:11:47 +02:00
|
|
|
char *name;
|
2016-08-26 19:09:26 +02:00
|
|
|
/** Smartlist of proto_range_t */
|
2016-08-10 01:11:47 +02:00
|
|
|
smartlist_t *ranges;
|
|
|
|
} proto_entry_t;
|
|
|
|
|
|
|
|
STATIC smartlist_t *parse_protocol_list(const char *s);
|
|
|
|
STATIC void proto_entry_free(proto_entry_t *entry);
|
|
|
|
STATIC char *encode_protocol_list(const smartlist_t *sl);
|
|
|
|
STATIC const char *protocol_type_to_str(protocol_type_t pr);
|
|
|
|
STATIC int str_to_protocol_type(const char *s, protocol_type_t *pr_out);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2016-08-26 19:09:26 +02:00
|
|
|
|