2010-07-22 00:30:17 +02:00
|
|
|
/* Copyright (c) 2001 Matej Pfajfar.
|
|
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2015-01-02 20:27:39 +01:00
|
|
|
* Copyright (c) 2007-2015, The Tor Project, Inc. */
|
2010-07-22 00:30:17 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file rendservice.h
|
2010-07-28 17:42:33 +02:00
|
|
|
* \brief Header file for rendservice.c.
|
2010-07-22 00:30:17 +02:00
|
|
|
**/
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_RENDSERVICE_H
|
|
|
|
#define TOR_RENDSERVICE_H
|
2010-07-22 00:30:17 +02:00
|
|
|
|
2012-07-15 11:36:36 +02:00
|
|
|
#include "or.h"
|
|
|
|
|
|
|
|
typedef struct rend_intro_cell_s rend_intro_cell_t;
|
2015-04-25 10:23:15 +02:00
|
|
|
typedef struct rend_service_port_config_s rend_service_port_config_t;
|
2012-07-15 11:36:36 +02:00
|
|
|
|
|
|
|
#ifdef RENDSERVICE_PRIVATE
|
|
|
|
|
|
|
|
/* This can be used for both INTRODUCE1 and INTRODUCE2 */
|
|
|
|
|
|
|
|
struct rend_intro_cell_s {
|
|
|
|
/* Is this an INTRODUCE1 or INTRODUCE2? (set to 1 or 2) */
|
|
|
|
uint8_t type;
|
|
|
|
/* Public key digest */
|
|
|
|
uint8_t pk[DIGEST_LEN];
|
|
|
|
/* Optionally, store ciphertext here */
|
|
|
|
uint8_t *ciphertext;
|
|
|
|
ssize_t ciphertext_len;
|
|
|
|
/* Optionally, store plaintext */
|
|
|
|
uint8_t *plaintext;
|
|
|
|
ssize_t plaintext_len;
|
|
|
|
/* Have we parsed the plaintext? */
|
|
|
|
uint8_t parsed;
|
|
|
|
/* intro protocol version (0, 1, 2 or 3) */
|
|
|
|
uint8_t version;
|
|
|
|
/* Version-specific parts */
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
/* Rendezvous point nickname or hex-encoded key digest */
|
|
|
|
uint8_t rp[42];
|
2014-12-30 18:07:28 +01:00
|
|
|
} v0_v1;
|
2012-07-15 11:36:36 +02:00
|
|
|
struct {
|
|
|
|
/* The extend_info_t struct has everything v2 uses */
|
|
|
|
extend_info_t *extend_info;
|
|
|
|
} v2;
|
|
|
|
struct {
|
|
|
|
/* Auth type used */
|
|
|
|
uint8_t auth_type;
|
|
|
|
/* Length of auth data */
|
|
|
|
uint16_t auth_len;
|
|
|
|
/* Auth data */
|
|
|
|
uint8_t *auth_data;
|
|
|
|
/* Rendezvous point's IP address/port, identity digest and onion key */
|
|
|
|
extend_info_t *extend_info;
|
|
|
|
} v3;
|
|
|
|
} u;
|
|
|
|
/* Rendezvous cookie */
|
|
|
|
uint8_t rc[REND_COOKIE_LEN];
|
|
|
|
/* Diffie-Hellman data */
|
|
|
|
uint8_t dh[DH_KEY_LEN];
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-07-22 00:30:17 +02:00
|
|
|
int num_rend_services(void);
|
2011-06-14 19:01:38 +02:00
|
|
|
int rend_config_services(const or_options_t *options, int validate_only);
|
2012-06-18 18:43:20 +02:00
|
|
|
int rend_service_load_all_keys(void);
|
2014-05-23 17:46:44 +02:00
|
|
|
void rend_services_add_filenames_to_lists(smartlist_t *open_lst,
|
|
|
|
smartlist_t *stat_lst);
|
2010-07-22 00:30:17 +02:00
|
|
|
void rend_services_introduce(void);
|
|
|
|
void rend_consider_services_upload(time_t now);
|
|
|
|
void rend_hsdir_routers_changed(void);
|
|
|
|
void rend_consider_descriptor_republication(void);
|
|
|
|
|
|
|
|
void rend_service_intro_has_opened(origin_circuit_t *circuit);
|
|
|
|
int rend_service_intro_established(origin_circuit_t *circuit,
|
2010-12-16 04:47:28 +01:00
|
|
|
const uint8_t *request,
|
2010-07-22 00:30:17 +02:00
|
|
|
size_t request_len);
|
|
|
|
void rend_service_rendezvous_has_opened(origin_circuit_t *circuit);
|
2010-12-16 04:47:28 +01:00
|
|
|
int rend_service_introduce(origin_circuit_t *circuit, const uint8_t *request,
|
2010-07-22 00:30:17 +02:00
|
|
|
size_t request_len);
|
2012-07-15 11:36:36 +02:00
|
|
|
int rend_service_decrypt_intro(rend_intro_cell_t *request,
|
|
|
|
crypto_pk_t *key,
|
|
|
|
char **err_msg_out);
|
|
|
|
void rend_service_free_intro(rend_intro_cell_t *request);
|
|
|
|
rend_intro_cell_t * rend_service_begin_parse_intro(const uint8_t *request,
|
|
|
|
size_t request_len,
|
|
|
|
uint8_t type,
|
|
|
|
char **err_msg_out);
|
|
|
|
int rend_service_parse_intro_plaintext(rend_intro_cell_t *intro,
|
|
|
|
char **err_msg_out);
|
|
|
|
int rend_service_validate_intro_early(const rend_intro_cell_t *intro,
|
|
|
|
char **err_msg_out);
|
|
|
|
int rend_service_validate_intro_late(const rend_intro_cell_t *intro,
|
|
|
|
char **err_msg_out);
|
2010-07-22 00:30:17 +02:00
|
|
|
void rend_service_relaunch_rendezvous(origin_circuit_t *oldcirc);
|
|
|
|
int rend_service_set_connection_addr_port(edge_connection_t *conn,
|
|
|
|
origin_circuit_t *circ);
|
|
|
|
void rend_service_dump_stats(int severity);
|
|
|
|
void rend_service_free_all(void);
|
|
|
|
|
2015-04-25 10:23:15 +02:00
|
|
|
rend_service_port_config_t *rend_service_parse_port_config(const char *string,
|
|
|
|
const char *sep,
|
|
|
|
char **err_msg_out);
|
|
|
|
void rend_service_port_config_free(rend_service_port_config_t *p);
|
|
|
|
|
|
|
|
/** Return value from rend_service_add_ephemeral. */
|
|
|
|
typedef enum {
|
|
|
|
RSAE_BADVIRTPORT = -4, /**< Invalid VIRTPORT/TARGET(s) */
|
|
|
|
RSAE_ADDREXISTS = -3, /**< Onion address collision */
|
|
|
|
RSAE_BADPRIVKEY = -2, /**< Invalid public key */
|
|
|
|
RSAE_INTERNAL = -1, /**< Internal error */
|
|
|
|
RSAE_OKAY = 0 /**< Service added as expected */
|
|
|
|
} rend_service_add_ephemeral_status_t;
|
|
|
|
rend_service_add_ephemeral_status_t rend_service_add_ephemeral(crypto_pk_t *pk,
|
|
|
|
smartlist_t *ports,
|
2015-05-20 19:41:27 +02:00
|
|
|
int max_streams_per_circuit,
|
|
|
|
int max_streams_close_circuit,
|
2015-04-25 10:23:15 +02:00
|
|
|
char **service_id_out);
|
|
|
|
int rend_service_del_ephemeral(const char *service_id);
|
|
|
|
|
2015-03-22 14:31:53 +01:00
|
|
|
void directory_post_to_hs_dir(rend_service_descriptor_t *renddesc,
|
|
|
|
smartlist_t *descs, smartlist_t *hs_dirs,
|
|
|
|
const char *service_id, int seconds_valid);
|
2015-05-29 23:45:45 +02:00
|
|
|
void rend_service_desc_has_uploaded(const rend_data_t *rend_data);
|
2015-03-22 14:31:53 +01:00
|
|
|
|
2010-07-22 00:30:17 +02:00
|
|
|
#endif
|
|
|
|
|