2017-03-15 21:13:17 +01:00
|
|
|
/* Copyright (c) 2016-2017, The Tor Project, Inc. */
|
2016-03-08 21:51:53 +01:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file hs_descriptor.h
|
|
|
|
* \brief Header file for hs_descriptor.c
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef TOR_HS_DESCRIPTOR_H
|
|
|
|
#define TOR_HS_DESCRIPTOR_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2016-11-04 18:26:56 +01:00
|
|
|
#include "or.h"
|
2016-03-08 21:51:53 +01:00
|
|
|
#include "address.h"
|
|
|
|
#include "container.h"
|
|
|
|
#include "crypto.h"
|
|
|
|
#include "crypto_ed25519.h"
|
|
|
|
#include "torcert.h"
|
|
|
|
|
2017-07-18 19:56:19 +02:00
|
|
|
/* Trunnel */
|
2017-08-22 20:10:30 +02:00
|
|
|
struct link_specifier_t;
|
2017-07-18 19:56:19 +02:00
|
|
|
|
2016-03-08 21:51:53 +01:00
|
|
|
/* The earliest descriptor format version we support. */
|
|
|
|
#define HS_DESC_SUPPORTED_FORMAT_VERSION_MIN 3
|
|
|
|
/* The latest descriptor format version we support. */
|
|
|
|
#define HS_DESC_SUPPORTED_FORMAT_VERSION_MAX 3
|
|
|
|
|
2017-02-03 21:30:46 +01:00
|
|
|
/* Default lifetime of a descriptor in seconds. The valus is set at 3 hours
|
|
|
|
* which is 180 minutes or 10800 seconds. */
|
|
|
|
#define HS_DESC_DEFAULT_LIFETIME (3 * 60 * 60)
|
2016-06-28 22:27:01 +02:00
|
|
|
/* Maximum lifetime of a descriptor in seconds. The value is set at 12 hours
|
|
|
|
* which is 720 minutes or 43200 seconds. */
|
|
|
|
#define HS_DESC_MAX_LIFETIME (12 * 60 * 60)
|
2016-03-08 21:51:53 +01:00
|
|
|
/* Lifetime of certificate in the descriptor. This defines the lifetime of the
|
2017-09-05 21:52:05 +02:00
|
|
|
* descriptor signing key and the cross certification cert of that key. It is
|
|
|
|
* set to 54 hours because a descriptor can be around for 48 hours and because
|
|
|
|
* consensuses are used after the hour, add an extra 6 hours to give some time
|
|
|
|
* for the service to stop using it. */
|
|
|
|
#define HS_DESC_CERT_LIFETIME (54 * 60 * 60)
|
2016-03-08 21:51:53 +01:00
|
|
|
/* Length of the salt needed for the encrypted section of a descriptor. */
|
|
|
|
#define HS_DESC_ENCRYPTED_SALT_LEN 16
|
|
|
|
/* Length of the secret input needed for the KDF construction which derives
|
|
|
|
* the encryption key for the encrypted data section of the descriptor. This
|
|
|
|
* adds up to 68 bytes being the blinded key, hashed subcredential and
|
|
|
|
* revision counter. */
|
|
|
|
#define HS_DESC_ENCRYPTED_SECRET_INPUT_LEN \
|
|
|
|
ED25519_PUBKEY_LEN + DIGEST256_LEN + sizeof(uint64_t)
|
|
|
|
/* Length of the KDF output value which is the length of the secret key,
|
|
|
|
* the secret IV and MAC key length which is the length of H() output. */
|
|
|
|
#define HS_DESC_ENCRYPTED_KDF_OUTPUT_LEN \
|
2016-11-07 19:15:46 +01:00
|
|
|
CIPHER256_KEY_LEN + CIPHER_IV_LEN + DIGEST256_LEN
|
2017-02-08 13:43:43 +01:00
|
|
|
/* Pad plaintext of superencrypted data section before encryption so that its
|
|
|
|
* length is a multiple of this value. */
|
|
|
|
#define HS_DESC_SUPERENC_PLAINTEXT_PAD_MULTIPLE 10000
|
2016-06-28 22:27:01 +02:00
|
|
|
/* Maximum length in bytes of a full hidden service descriptor. */
|
2016-12-23 13:48:05 +01:00
|
|
|
#define HS_DESC_MAX_LEN 50000 /* 50kb max size */
|
2016-06-28 22:27:01 +02:00
|
|
|
|
2016-11-07 19:15:46 +01:00
|
|
|
/* Key length for the descriptor symmetric encryption. As specified in the
|
|
|
|
* protocol, we use AES-256 for the encrypted section of the descriptor. The
|
|
|
|
* following is the length in bytes and the bit size. */
|
|
|
|
#define HS_DESC_ENCRYPTED_KEY_LEN CIPHER256_KEY_LEN
|
|
|
|
#define HS_DESC_ENCRYPTED_BIT_SIZE (HS_DESC_ENCRYPTED_KEY_LEN * 8)
|
|
|
|
|
2016-06-28 22:27:01 +02:00
|
|
|
/* Type of authentication in the descriptor. */
|
|
|
|
typedef enum {
|
2017-02-02 12:58:20 +01:00
|
|
|
HS_DESC_AUTH_ED25519 = 1
|
2016-06-28 22:27:01 +02:00
|
|
|
} hs_desc_auth_type_t;
|
2016-03-08 21:51:53 +01:00
|
|
|
|
|
|
|
/* Link specifier object that contains information on how to extend to the
|
|
|
|
* relay that is the address, port and handshake type. */
|
|
|
|
typedef struct hs_desc_link_specifier_t {
|
|
|
|
/* Indicate the type of link specifier. See trunnel ed25519_cert
|
|
|
|
* specification. */
|
|
|
|
uint8_t type;
|
|
|
|
|
2017-02-03 21:30:46 +01:00
|
|
|
/* It must be one of these types, can't be more than one. */
|
2016-03-08 21:51:53 +01:00
|
|
|
union {
|
|
|
|
/* IP address and port of the relay use to extend. */
|
|
|
|
tor_addr_port_t ap;
|
|
|
|
/* Legacy identity. A 20-byte SHA1 identity fingerprint. */
|
|
|
|
uint8_t legacy_id[DIGEST_LEN];
|
2017-02-03 21:30:46 +01:00
|
|
|
/* ed25519 identity. A 32-byte key. */
|
|
|
|
uint8_t ed25519_id[ED25519_PUBKEY_LEN];
|
2016-03-08 21:51:53 +01:00
|
|
|
} u;
|
|
|
|
} hs_desc_link_specifier_t;
|
|
|
|
|
|
|
|
/* Introduction point information located in a descriptor. */
|
|
|
|
typedef struct hs_desc_intro_point_t {
|
|
|
|
/* Link specifier(s) which details how to extend to the relay. This list
|
|
|
|
* contains hs_desc_link_specifier_t object. It MUST have at least one. */
|
|
|
|
smartlist_t *link_specifiers;
|
|
|
|
|
2017-07-19 19:42:35 +02:00
|
|
|
/* Onion key of the introduction point used to extend to it for the ntor
|
|
|
|
* handshake. */
|
|
|
|
curve25519_public_key_t onion_key;
|
|
|
|
|
2016-03-08 21:51:53 +01:00
|
|
|
/* Authentication key used to establish the introduction point circuit and
|
|
|
|
* cross-certifies the blinded public key for the replica thus signed by
|
|
|
|
* the blinded key and in turn signs it. */
|
|
|
|
tor_cert_t *auth_key_cert;
|
|
|
|
|
2017-02-10 20:24:54 +01:00
|
|
|
/* Encryption key for the "ntor" type. */
|
|
|
|
curve25519_public_key_t enc_key;
|
|
|
|
|
|
|
|
/* Certificate cross certifying the descriptor signing key by the encryption
|
|
|
|
* curve25519 key. This certificate contains the signing key and is of type
|
|
|
|
* CERT_TYPE_CROSS_HS_IP_KEYS [0B]. */
|
|
|
|
tor_cert_t *enc_key_cert;
|
|
|
|
|
|
|
|
/* (Optional): If this introduction point is a legacy one that is version <=
|
|
|
|
* 0.2.9.x (HSIntro=3), we use this extra key for the intro point to be able
|
|
|
|
* to relay the cells to the service correctly. */
|
|
|
|
struct {
|
|
|
|
/* RSA public key. */
|
|
|
|
crypto_pk_t *key;
|
|
|
|
|
|
|
|
/* Cross certified cert with the descriptor signing key (RSA->Ed). Because
|
|
|
|
* of the cross certification API, we need to keep the certificate binary
|
|
|
|
* blob and its length in order to properly encode it after. */
|
|
|
|
struct {
|
|
|
|
uint8_t *encoded;
|
|
|
|
size_t len;
|
|
|
|
} cert;
|
|
|
|
} legacy;
|
2016-06-28 22:27:01 +02:00
|
|
|
|
|
|
|
/* True iff the introduction point has passed the cross certification. Upon
|
|
|
|
* decoding an intro point, this must be true. */
|
|
|
|
unsigned int cross_certified : 1;
|
2016-03-08 21:51:53 +01:00
|
|
|
} hs_desc_intro_point_t;
|
|
|
|
|
|
|
|
/* The encrypted data section of a descriptor. Obviously the data in this is
|
|
|
|
* in plaintext but encrypted once encoded. */
|
|
|
|
typedef struct hs_desc_encrypted_data_t {
|
|
|
|
/* Bitfield of CREATE2 cell supported formats. The only currently supported
|
|
|
|
* format is ntor. */
|
|
|
|
unsigned int create2_ntor : 1;
|
|
|
|
|
|
|
|
/* A list of authentication types that a client must at least support one
|
|
|
|
* in order to contact the service. Contains NULL terminated strings. */
|
2017-02-02 12:58:20 +01:00
|
|
|
smartlist_t *intro_auth_types;
|
2016-03-08 21:51:53 +01:00
|
|
|
|
2016-11-08 19:22:42 +01:00
|
|
|
/* Is this descriptor a single onion service? */
|
|
|
|
unsigned int single_onion_service : 1;
|
|
|
|
|
2016-03-08 21:51:53 +01:00
|
|
|
/* A list of intro points. Contains hs_desc_intro_point_t objects. */
|
|
|
|
smartlist_t *intro_points;
|
|
|
|
} hs_desc_encrypted_data_t;
|
|
|
|
|
|
|
|
/* Plaintext data that is unencrypted information of the descriptor. */
|
|
|
|
typedef struct hs_desc_plaintext_data_t {
|
|
|
|
/* Version of the descriptor format. Spec specifies this field as a
|
|
|
|
* positive integer. */
|
|
|
|
uint32_t version;
|
|
|
|
|
|
|
|
/* The lifetime of the descriptor in seconds. */
|
|
|
|
uint32_t lifetime_sec;
|
|
|
|
|
|
|
|
/* Certificate with the short-term ed22519 descriptor signing key for the
|
|
|
|
* replica which is signed by the blinded public key for that replica. */
|
|
|
|
tor_cert_t *signing_key_cert;
|
|
|
|
|
2016-12-05 03:30:26 +01:00
|
|
|
/* Signing public key which is used to sign the descriptor. Same public key
|
2016-03-08 21:51:53 +01:00
|
|
|
* as in the signing key certificate. */
|
2016-12-05 03:30:26 +01:00
|
|
|
ed25519_public_key_t signing_pubkey;
|
2016-03-08 21:51:53 +01:00
|
|
|
|
2016-12-05 03:30:26 +01:00
|
|
|
/* Blinded public key used for this descriptor derived from the master
|
2016-03-08 21:51:53 +01:00
|
|
|
* identity key and generated for a specific replica number. */
|
2016-12-05 03:30:26 +01:00
|
|
|
ed25519_public_key_t blinded_pubkey;
|
2016-03-08 21:51:53 +01:00
|
|
|
|
|
|
|
/* Revision counter is incremented at each upload, regardless of whether
|
|
|
|
* the descriptor has changed. This avoids leaking whether the descriptor
|
|
|
|
* has changed. Spec specifies this as a 8 bytes positive integer. */
|
|
|
|
uint64_t revision_counter;
|
2016-06-28 22:27:01 +02:00
|
|
|
|
2017-02-06 13:13:35 +01:00
|
|
|
/* Decoding only: The b64-decoded superencrypted blob from the descriptor */
|
|
|
|
uint8_t *superencrypted_blob;
|
2016-06-28 22:27:01 +02:00
|
|
|
|
2017-02-06 13:13:35 +01:00
|
|
|
/* Decoding only: Size of the superencrypted_blob */
|
|
|
|
size_t superencrypted_blob_size;
|
2016-03-08 21:51:53 +01:00
|
|
|
} hs_desc_plaintext_data_t;
|
|
|
|
|
|
|
|
/* Service descriptor in its decoded form. */
|
|
|
|
typedef struct hs_descriptor_t {
|
|
|
|
/* Contains the plaintext part of the descriptor. */
|
|
|
|
hs_desc_plaintext_data_t plaintext_data;
|
|
|
|
|
|
|
|
/* The following contains what's in the encrypted part of the descriptor.
|
|
|
|
* It's only encrypted in the encoded version of the descriptor thus the
|
|
|
|
* data contained in that object is in plaintext. */
|
|
|
|
hs_desc_encrypted_data_t encrypted_data;
|
|
|
|
|
|
|
|
/* Subcredentials of a service, used by the client and service to decrypt
|
|
|
|
* the encrypted data. */
|
|
|
|
uint8_t subcredential[DIGEST256_LEN];
|
|
|
|
} hs_descriptor_t;
|
|
|
|
|
|
|
|
/* Return true iff the given descriptor format version is supported. */
|
|
|
|
static inline int
|
|
|
|
hs_desc_is_supported_version(uint32_t version)
|
|
|
|
{
|
|
|
|
if (version < HS_DESC_SUPPORTED_FORMAT_VERSION_MIN ||
|
|
|
|
version > HS_DESC_SUPPORTED_FORMAT_VERSION_MAX) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Public API. */
|
|
|
|
|
2017-11-21 15:37:47 +01:00
|
|
|
void hs_descriptor_free_(hs_descriptor_t *desc);
|
|
|
|
#define hs_descriptor_free(desc) FREE_AND_NULL(hs_descriptor, (desc))
|
|
|
|
void hs_desc_plaintext_data_free_(hs_desc_plaintext_data_t *desc);
|
|
|
|
#define hs_desc_plaintext_data_free(desc) \
|
|
|
|
FREE_AND_NULL(hs_desc_plaintext_data, (desc))
|
|
|
|
void hs_desc_encrypted_data_free_(hs_desc_encrypted_data_t *desc);
|
|
|
|
#define hs_desc_encrypted_data_free(desc) \
|
|
|
|
FREE_AND_NULL(hs_desc_encrypted_data, (desc))
|
|
|
|
|
|
|
|
void hs_desc_link_specifier_free_(hs_desc_link_specifier_t *ls);
|
|
|
|
#define hs_desc_link_specifier_free(ls) \
|
|
|
|
FREE_AND_NULL(hs_desc_link_specifier, (ls))
|
2016-06-28 22:27:01 +02:00
|
|
|
|
2017-02-03 21:30:46 +01:00
|
|
|
hs_desc_link_specifier_t *hs_desc_link_specifier_new(
|
|
|
|
const extend_info_t *info, uint8_t type);
|
2017-08-03 14:51:24 +02:00
|
|
|
void hs_descriptor_clear_intro_points(hs_descriptor_t *desc);
|
2017-02-03 21:30:46 +01:00
|
|
|
|
2017-08-19 15:26:46 +02:00
|
|
|
MOCK_DECL(int,
|
|
|
|
hs_desc_encode_descriptor,(const hs_descriptor_t *desc,
|
|
|
|
const ed25519_keypair_t *signing_kp,
|
|
|
|
char **encoded_out));
|
2016-03-08 21:51:53 +01:00
|
|
|
|
2016-06-28 22:27:01 +02:00
|
|
|
int hs_desc_decode_descriptor(const char *encoded,
|
|
|
|
const uint8_t *subcredential,
|
|
|
|
hs_descriptor_t **desc_out);
|
|
|
|
int hs_desc_decode_plaintext(const char *encoded,
|
|
|
|
hs_desc_plaintext_data_t *plaintext);
|
|
|
|
int hs_desc_decode_encrypted(const hs_descriptor_t *desc,
|
|
|
|
hs_desc_encrypted_data_t *desc_out);
|
|
|
|
|
2017-06-01 12:37:11 +02:00
|
|
|
size_t hs_desc_obj_size(const hs_descriptor_t *data);
|
2016-03-29 21:08:04 +02:00
|
|
|
size_t hs_desc_plaintext_obj_size(const hs_desc_plaintext_data_t *data);
|
|
|
|
|
2017-07-20 17:34:32 +02:00
|
|
|
hs_desc_intro_point_t *hs_desc_intro_point_new(void);
|
2017-11-21 15:37:47 +01:00
|
|
|
void hs_desc_intro_point_free_(hs_desc_intro_point_t *ip);
|
|
|
|
#define hs_desc_intro_point_free(ip) FREE_AND_NULL(hs_desc_intro_point, (ip))
|
2017-07-20 17:34:32 +02:00
|
|
|
|
2017-08-22 20:12:49 +02:00
|
|
|
link_specifier_t *hs_desc_lspec_to_trunnel(
|
|
|
|
const hs_desc_link_specifier_t *spec);
|
2017-07-18 19:56:19 +02:00
|
|
|
|
2016-03-15 19:18:03 +01:00
|
|
|
#ifdef HS_DESCRIPTOR_PRIVATE
|
|
|
|
|
|
|
|
/* Encoding. */
|
|
|
|
STATIC char *encode_link_specifiers(const smartlist_t *specs);
|
|
|
|
STATIC size_t build_plaintext_padding(const char *plaintext,
|
|
|
|
size_t plaintext_len,
|
|
|
|
uint8_t **padded_out);
|
|
|
|
/* Decoding. */
|
|
|
|
STATIC smartlist_t *decode_link_specifiers(const char *encoded);
|
|
|
|
STATIC hs_desc_intro_point_t *decode_introduction_point(
|
|
|
|
const hs_descriptor_t *desc,
|
|
|
|
const char *text);
|
|
|
|
STATIC int encrypted_data_length_is_valid(size_t len);
|
|
|
|
STATIC int cert_is_valid(tor_cert_t *cert, uint8_t type,
|
|
|
|
const char *log_obj_type);
|
|
|
|
STATIC int desc_sig_is_valid(const char *b64_sig,
|
2016-12-05 03:30:26 +01:00
|
|
|
const ed25519_public_key_t *signing_pubkey,
|
2016-03-15 19:18:03 +01:00
|
|
|
const char *encoded_desc, size_t encoded_len);
|
2017-02-08 13:42:12 +01:00
|
|
|
STATIC size_t decode_superencrypted(const char *message, size_t message_len,
|
|
|
|
uint8_t **encrypted_out);
|
2017-08-24 22:21:44 +02:00
|
|
|
STATIC void desc_plaintext_data_free_contents(hs_desc_plaintext_data_t *desc);
|
|
|
|
|
2017-10-27 20:28:02 +02:00
|
|
|
MOCK_DECL(STATIC size_t, decrypt_desc_layer,(const hs_descriptor_t *desc,
|
|
|
|
const uint8_t *encrypted_blob,
|
|
|
|
size_t encrypted_blob_size,
|
|
|
|
int is_superencrypted_layer,
|
|
|
|
char **decrypted_out));
|
|
|
|
|
2017-09-15 22:24:44 +02:00
|
|
|
#endif /* defined(HS_DESCRIPTOR_PRIVATE) */
|
2016-03-15 19:18:03 +01:00
|
|
|
|
2017-09-15 22:24:44 +02:00
|
|
|
#endif /* !defined(TOR_HS_DESCRIPTOR_H) */
|
2016-08-25 00:44:34 +02:00
|
|
|
|