2010-07-21 17:52:54 +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-21 17:52:54 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file rendcommon.h
|
2010-07-28 17:42:33 +02:00
|
|
|
* \brief Header file for rendcommon.c.
|
2010-07-21 17:52:54 +02:00
|
|
|
**/
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_RENDCOMMON_H
|
|
|
|
#define TOR_RENDCOMMON_H
|
2010-07-21 17:52:54 +02:00
|
|
|
|
|
|
|
/** Free all storage associated with <b>data</b> */
|
|
|
|
static INLINE void
|
|
|
|
rend_data_free(rend_data_t *data)
|
|
|
|
{
|
2015-04-30 18:28:11 +02:00
|
|
|
if (!data) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Cleanup the HSDir identity digest. */
|
|
|
|
SMARTLIST_FOREACH(data->hsdirs_fp, char *, d, tor_free(d));
|
|
|
|
smartlist_free(data->hsdirs_fp);
|
2010-07-21 17:52:54 +02:00
|
|
|
tor_free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
int rend_cmp_service_ids(const char *one, const char *two);
|
|
|
|
|
|
|
|
void rend_process_relay_cell(circuit_t *circ, const crypt_path_t *layer_hint,
|
2010-12-16 04:47:28 +01:00
|
|
|
int command, size_t length,
|
|
|
|
const uint8_t *payload);
|
2010-07-21 17:52:54 +02:00
|
|
|
|
|
|
|
void rend_service_descriptor_free(rend_service_descriptor_t *desc);
|
2012-01-18 21:53:30 +01:00
|
|
|
int rend_get_service_id(crypto_pk_t *pk, char *out);
|
2010-07-21 17:52:54 +02:00
|
|
|
void rend_encoded_v2_service_descriptor_free(
|
|
|
|
rend_encoded_v2_service_descriptor_t *desc);
|
|
|
|
void rend_intro_point_free(rend_intro_point_t *intro);
|
|
|
|
|
|
|
|
int rend_valid_service_id(const char *query);
|
2015-04-21 20:04:39 +02:00
|
|
|
int rend_valid_descriptor_id(const char *query);
|
2010-07-21 17:52:54 +02:00
|
|
|
int rend_encode_v2_descriptors(smartlist_t *descs_out,
|
|
|
|
rend_service_descriptor_t *desc, time_t now,
|
|
|
|
uint8_t period, rend_auth_type_t auth_type,
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_t *client_key,
|
2010-07-21 17:52:54 +02:00
|
|
|
smartlist_t *client_cookies);
|
|
|
|
int rend_compute_v2_desc_id(char *desc_id_out, const char *service_id,
|
|
|
|
const char *descriptor_cookie,
|
|
|
|
time_t now, uint8_t replica);
|
|
|
|
int rend_id_is_in_interval(const char *a, const char *b, const char *c);
|
|
|
|
void rend_get_descriptor_id_bytes(char *descriptor_id_out,
|
|
|
|
const char *service_id,
|
|
|
|
const char *secret_id_part);
|
|
|
|
|
2015-05-18 21:57:21 +02:00
|
|
|
rend_data_t *rend_data_dup(const rend_data_t *data);
|
2015-04-28 17:01:58 +02:00
|
|
|
rend_data_t *rend_data_client_create(const char *onion_address,
|
|
|
|
const char *desc_id,
|
|
|
|
const char *cookie,
|
|
|
|
rend_auth_type_t auth_type);
|
|
|
|
rend_data_t *rend_data_service_create(const char *onion_address,
|
|
|
|
const char *pk_digest,
|
|
|
|
const uint8_t *cookie,
|
|
|
|
rend_auth_type_t auth_type);
|
2010-07-21 17:52:54 +02:00
|
|
|
#endif
|
|
|
|
|