2007-06-03 05:05:10 +02:00
|
|
|
/* Copyright 2001-2004 Roger Dingledine.
|
|
|
|
* Copyright 2004-2007 Roger Dingledine, Nick Mathewson. */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
const char dirvote_c_id[] =
|
|
|
|
"$Id$";
|
|
|
|
|
2007-06-14 00:39:08 +02:00
|
|
|
#define DIRVOTE_PRIVATE
|
2007-06-03 05:05:10 +02:00
|
|
|
#include "or.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file dirvote.c
|
2007-07-18 22:46:12 +02:00
|
|
|
* \brief Functions to compute directory consensus, and schedule voting.
|
2007-06-03 05:05:10 +02:00
|
|
|
**/
|
|
|
|
|
2007-07-30 01:11:44 +02:00
|
|
|
static int dirvote_add_signatures_to_pending_consensus(
|
|
|
|
const char *detached_signatures_body,
|
|
|
|
const char **msg_out);
|
2007-09-08 22:25:57 +02:00
|
|
|
static char *list_v3_auth_ids(void);
|
2007-09-22 08:06:05 +02:00
|
|
|
static void dirvote_fetch_missing_votes(void);
|
|
|
|
static void dirvote_fetch_missing_signatures(void);
|
2007-10-02 22:35:23 +02:00
|
|
|
static void dirvote_perform_vote(void);
|
|
|
|
static void dirvote_clear_votes(int all_votes);
|
|
|
|
static int dirvote_compute_consensus(void);
|
|
|
|
static int dirvote_publish_consensus(void);
|
2007-07-30 01:11:44 +02:00
|
|
|
|
2007-07-18 22:46:12 +02:00
|
|
|
/* =====
|
|
|
|
* Voting and consensus generation
|
|
|
|
* ===== */
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Clear all storage held in <b>ns</b>. */
|
2007-06-03 05:05:10 +02:00
|
|
|
void
|
|
|
|
networkstatus_vote_free(networkstatus_vote_t *ns)
|
|
|
|
{
|
|
|
|
if (!ns)
|
|
|
|
return;
|
|
|
|
|
|
|
|
tor_free(ns->client_versions);
|
|
|
|
tor_free(ns->server_versions);
|
|
|
|
if (ns->known_flags) {
|
2007-06-08 20:41:09 +02:00
|
|
|
SMARTLIST_FOREACH(ns->known_flags, char *, c, tor_free(c));
|
|
|
|
smartlist_free(ns->known_flags);
|
2007-06-03 05:05:10 +02:00
|
|
|
}
|
2007-06-05 00:29:00 +02:00
|
|
|
if (ns->voters) {
|
|
|
|
SMARTLIST_FOREACH(ns->voters, networkstatus_voter_info_t *, voter,
|
|
|
|
{
|
|
|
|
tor_free(voter->nickname);
|
|
|
|
tor_free(voter->address);
|
|
|
|
tor_free(voter->contact);
|
|
|
|
});
|
|
|
|
smartlist_free(ns->voters);
|
|
|
|
}
|
2007-06-03 05:05:10 +02:00
|
|
|
if (ns->cert)
|
|
|
|
authority_cert_free(ns->cert);
|
|
|
|
|
|
|
|
if (ns->routerstatus_list) {
|
2007-06-13 21:06:23 +02:00
|
|
|
if (ns->is_vote) {
|
|
|
|
SMARTLIST_FOREACH(ns->routerstatus_list, vote_routerstatus_t *, rs,
|
|
|
|
{
|
|
|
|
tor_free(rs->version);
|
|
|
|
tor_free(rs);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
SMARTLIST_FOREACH(ns->routerstatus_list, routerstatus_t *, rs,
|
|
|
|
tor_free(rs));
|
|
|
|
}
|
2007-06-03 05:05:10 +02:00
|
|
|
|
|
|
|
smartlist_free(ns->routerstatus_list);
|
|
|
|
}
|
2007-10-16 01:15:24 +02:00
|
|
|
if (ns->desc_digest_map)
|
|
|
|
digestmap_free(ns->desc_digest_map, NULL);
|
2007-06-03 05:05:10 +02:00
|
|
|
|
|
|
|
memset(ns, 11, sizeof(*ns));
|
|
|
|
tor_free(ns);
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Return the voter info from <b>vote</b> for the voter whose identity digest
|
|
|
|
* is <b>identity</b>, or NULL if no such voter is associated with
|
|
|
|
* <b>vote</b>. */
|
2007-06-05 00:29:00 +02:00
|
|
|
networkstatus_voter_info_t *
|
|
|
|
networkstatus_get_voter_by_id(networkstatus_vote_t *vote,
|
|
|
|
const char *identity)
|
|
|
|
{
|
|
|
|
if (!vote || !vote->voters)
|
|
|
|
return NULL;
|
|
|
|
SMARTLIST_FOREACH(vote->voters, networkstatus_voter_info_t *, voter,
|
|
|
|
if (!memcmp(voter->identity_digest, identity, DIGEST_LEN))
|
|
|
|
return voter);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Given a vote <b>vote</b> (not a consensus!), return its associated
|
|
|
|
* networkstatus_voter_info_t.*/
|
2007-06-05 00:29:00 +02:00
|
|
|
static networkstatus_voter_info_t *
|
|
|
|
get_voter(const networkstatus_vote_t *vote)
|
|
|
|
{
|
|
|
|
tor_assert(vote);
|
|
|
|
tor_assert(vote->is_vote);
|
|
|
|
tor_assert(vote->voters);
|
|
|
|
tor_assert(smartlist_len(vote->voters) == 1);
|
|
|
|
return smartlist_get(vote->voters, 0);
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Helper for sorting networkstatus_vote_t votes (not consensuses) by the
|
|
|
|
* hash of their voters' identity digests. */
|
2007-06-04 21:19:01 +02:00
|
|
|
static int
|
|
|
|
_compare_votes_by_authority_id(const void **_a, const void **_b)
|
|
|
|
{
|
|
|
|
const networkstatus_vote_t *a = *_a, *b = *_b;
|
2007-06-05 00:29:00 +02:00
|
|
|
return memcmp(get_voter(a)->identity_digest,
|
|
|
|
get_voter(b)->identity_digest, DIGEST_LEN);
|
2007-06-04 21:19:01 +02:00
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Given a sorted list of strings <b>in</b>, add every member to <b>out</b>
|
|
|
|
* that occurs more than <b>min</b> times. */
|
2007-06-04 21:19:01 +02:00
|
|
|
static void
|
|
|
|
get_frequent_members(smartlist_t *out, smartlist_t *in, int min)
|
|
|
|
{
|
|
|
|
char *cur = NULL;
|
|
|
|
int count = 0;
|
|
|
|
SMARTLIST_FOREACH(in, char *, cp,
|
|
|
|
{
|
|
|
|
if (cur && !strcmp(cp, cur)) {
|
|
|
|
++count;
|
|
|
|
} else {
|
|
|
|
if (count > min)
|
|
|
|
smartlist_add(out, cur);
|
|
|
|
cur = cp;
|
|
|
|
count = 1;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (count > min)
|
|
|
|
smartlist_add(out, cur);
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Given a sorted list of strings <b>lst</b>, return the member that appears
|
2007-07-03 00:07:53 +02:00
|
|
|
* most. Break ties in favor of later-occurring members. */
|
2007-06-04 21:19:01 +02:00
|
|
|
static const char *
|
|
|
|
get_most_frequent_member(smartlist_t *lst)
|
|
|
|
{
|
|
|
|
const char *most_frequent = NULL;
|
|
|
|
int most_frequent_count = 0;
|
|
|
|
|
|
|
|
const char *cur = NULL;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
SMARTLIST_FOREACH(lst, const char *, s,
|
|
|
|
{
|
|
|
|
if (cur && !strcmp(s, cur)) {
|
|
|
|
++count;
|
|
|
|
} else {
|
|
|
|
if (count >= most_frequent_count) {
|
|
|
|
most_frequent = cur;
|
|
|
|
most_frequent_count = count;
|
|
|
|
}
|
|
|
|
cur = s;
|
|
|
|
count = 1;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (count >= most_frequent_count) {
|
|
|
|
most_frequent = cur;
|
|
|
|
most_frequent_count = count;
|
|
|
|
}
|
|
|
|
return most_frequent;
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Return 0 if and only if <b>a</b> and <b>b</b> are routerstatuses
|
|
|
|
* that come from the same routerinfo, with the same derived elements.
|
|
|
|
*/
|
2007-06-04 21:19:01 +02:00
|
|
|
static int
|
2007-06-17 17:10:43 +02:00
|
|
|
compare_vote_rs(const vote_routerstatus_t *a, const vote_routerstatus_t *b)
|
2007-06-04 21:19:01 +02:00
|
|
|
{
|
|
|
|
int r;
|
2007-06-17 17:10:43 +02:00
|
|
|
if ((r = memcmp(a->status.identity_digest, b->status.identity_digest,
|
|
|
|
DIGEST_LEN)))
|
|
|
|
return r;
|
2007-06-04 21:19:01 +02:00
|
|
|
if ((r = memcmp(a->status.descriptor_digest, b->status.descriptor_digest,
|
|
|
|
DIGEST_LEN)))
|
|
|
|
return r;
|
|
|
|
if ((r = (b->status.published_on - a->status.published_on)))
|
|
|
|
return r;
|
2007-06-04 21:54:02 +02:00
|
|
|
if ((r = strcmp(b->status.nickname, a->status.nickname)))
|
|
|
|
return r;
|
2007-06-17 17:10:23 +02:00
|
|
|
if ((r = (((int)b->status.addr) - ((int)a->status.addr))))
|
|
|
|
return r;
|
2007-06-04 21:19:01 +02:00
|
|
|
if ((r = (((int)b->status.or_port) - ((int)a->status.or_port))))
|
|
|
|
return r;
|
|
|
|
if ((r = (((int)b->status.dir_port) - ((int)a->status.dir_port))))
|
|
|
|
return r;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Helper for sorting routerlists based on compare_vote_rs. */
|
2007-06-04 21:19:01 +02:00
|
|
|
static int
|
2007-06-17 17:10:43 +02:00
|
|
|
_compare_vote_rs(const void **_a, const void **_b)
|
2007-06-04 21:19:01 +02:00
|
|
|
{
|
|
|
|
const vote_routerstatus_t *a = *_a, *b = *_b;
|
2007-06-17 17:10:43 +02:00
|
|
|
return compare_vote_rs(a,b);
|
2007-06-04 21:19:01 +02:00
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Given a list of vote_routerstatus_t, all for the same router identity,
|
|
|
|
* return whichever is most frequent, breaking ties in favor of more
|
|
|
|
* recently published vote_routerstatus_t.
|
|
|
|
*/
|
2007-06-04 21:19:01 +02:00
|
|
|
static vote_routerstatus_t *
|
|
|
|
compute_routerstatus_consensus(smartlist_t *votes)
|
|
|
|
{
|
|
|
|
vote_routerstatus_t *most = NULL, *cur = NULL;
|
|
|
|
int most_n = 0, cur_n = 0;
|
|
|
|
time_t most_published = 0;
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
smartlist_sort(votes, _compare_vote_rs);
|
2007-06-04 21:19:01 +02:00
|
|
|
SMARTLIST_FOREACH(votes, vote_routerstatus_t *, rs,
|
|
|
|
{
|
2007-06-17 17:10:43 +02:00
|
|
|
if (cur && !compare_vote_rs(cur, rs)) {
|
2007-06-04 21:19:01 +02:00
|
|
|
++cur_n;
|
|
|
|
} else {
|
|
|
|
if (cur_n > most_n ||
|
2007-06-05 00:29:00 +02:00
|
|
|
(cur && cur_n == most_n &&
|
|
|
|
cur->status.published_on > most_published)) {
|
2007-06-04 21:19:01 +02:00
|
|
|
most = cur;
|
|
|
|
most_n = cur_n;
|
|
|
|
most_published = cur->status.published_on;
|
|
|
|
}
|
|
|
|
cur_n = 1;
|
|
|
|
cur = rs;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (cur_n > most_n ||
|
|
|
|
(cur && cur_n == most_n && cur->status.published_on > most_published)) {
|
|
|
|
most = cur;
|
|
|
|
most_n = cur_n;
|
|
|
|
most_published = cur->status.published_on;
|
|
|
|
}
|
|
|
|
|
|
|
|
tor_assert(most);
|
|
|
|
return most;
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Given a list of strings in <b>lst</b>, set the DIGEST_LEN-byte digest at
|
|
|
|
* <b>digest_out</b> to the hash of the concatenation of those strings. */
|
2007-06-04 21:54:02 +02:00
|
|
|
static void
|
|
|
|
hash_list_members(char *digest_out, smartlist_t *lst)
|
|
|
|
{
|
|
|
|
crypto_digest_env_t *d = crypto_new_digest_env();
|
|
|
|
SMARTLIST_FOREACH(lst, const char *, cp,
|
|
|
|
crypto_digest_add_bytes(d, cp, strlen(cp)));
|
|
|
|
crypto_digest_get_digest(d, digest_out, DIGEST_LEN);
|
|
|
|
crypto_free_digest_env(d);
|
|
|
|
}
|
2007-06-04 21:19:01 +02:00
|
|
|
|
2007-10-19 20:56:30 +02:00
|
|
|
/**DOCDOC*/
|
|
|
|
static int
|
|
|
|
_cmp_int_strings(const void **_a, const void **_b)
|
|
|
|
{
|
|
|
|
const char *a = *_a, *b = *_b;
|
|
|
|
int ai = (int)tor_parse_long(a, 10, 1, INT_MAX, NULL, NULL);
|
|
|
|
int bi = (int)tor_parse_long(b, 10, 1, INT_MAX, NULL, NULL);
|
|
|
|
if (ai<bi)
|
|
|
|
return -1;
|
|
|
|
else if (ai==bi)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**DOCDOC*/
|
|
|
|
static int
|
|
|
|
compute_consensus_method(smartlist_t *votes)
|
|
|
|
{
|
|
|
|
smartlist_t *all_methods = smartlist_create();
|
|
|
|
smartlist_t *acceptable_methods = smartlist_create();
|
|
|
|
smartlist_t *tmp = smartlist_create();
|
|
|
|
int min = (smartlist_len(votes) * 2) / 3;
|
|
|
|
int n_ok;
|
|
|
|
int result;
|
|
|
|
SMARTLIST_FOREACH(votes, networkstatus_vote_t *, vote,
|
|
|
|
{
|
|
|
|
tor_assert(vote->supported_methods);
|
|
|
|
smartlist_add_all(tmp, vote->supported_methods);
|
|
|
|
smartlist_sort(tmp, _cmp_int_strings);
|
|
|
|
smartlist_uniq(tmp, _cmp_int_strings, NULL);
|
|
|
|
smartlist_add_all(all_methods, tmp);
|
|
|
|
smartlist_clear(tmp);
|
|
|
|
});
|
|
|
|
|
|
|
|
smartlist_sort(all_methods, _cmp_int_strings);
|
|
|
|
get_frequent_members(acceptable_methods, all_methods, min);
|
|
|
|
n_ok = smartlist_len(acceptable_methods);
|
|
|
|
if (n_ok) {
|
|
|
|
const char *best = smartlist_get(acceptable_methods, n_ok-1);
|
|
|
|
result = (int)tor_parse_long(best, 10, 1, INT_MAX, NULL, NULL);
|
|
|
|
} else {
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
smartlist_free(tmp);
|
|
|
|
smartlist_free(all_methods);
|
|
|
|
smartlist_free(acceptable_methods);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**DOCDOC*/
|
|
|
|
static int
|
|
|
|
consensus_method_is_supported(int method)
|
|
|
|
{
|
|
|
|
return (method == 1);
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Given a list of vote networkstatus_vote_t in <b>votes</b>, our public
|
|
|
|
* authority <b>identity_key</b>, our private authority <b>signing_key</b>,
|
|
|
|
* and the number of <b>total_authorities</b> that we believe exist in our
|
|
|
|
* voting quorum, generate the text of a new v3 consensus vote, and return the
|
2007-08-14 04:23:57 +02:00
|
|
|
* value in a newly allocated string.
|
|
|
|
*
|
|
|
|
* Note: this function DOES NOT check whether the votes are from
|
|
|
|
* recognized authorities. (dirvote_add_vote does that.) */
|
2007-06-04 21:19:01 +02:00
|
|
|
char *
|
2007-06-04 21:54:02 +02:00
|
|
|
networkstatus_compute_consensus(smartlist_t *votes,
|
2007-06-17 17:10:23 +02:00
|
|
|
int total_authorities,
|
2007-06-04 21:54:02 +02:00
|
|
|
crypto_pk_env_t *identity_key,
|
|
|
|
crypto_pk_env_t *signing_key)
|
2007-06-04 21:19:01 +02:00
|
|
|
{
|
|
|
|
smartlist_t *chunks;
|
2007-06-04 21:54:02 +02:00
|
|
|
char *result = NULL;
|
2007-10-19 20:56:30 +02:00
|
|
|
int consensus_method;
|
2007-06-04 21:19:01 +02:00
|
|
|
|
|
|
|
time_t valid_after, fresh_until, valid_until;
|
|
|
|
int vote_seconds, dist_seconds;
|
|
|
|
char *client_versions = NULL, *server_versions = NULL;
|
|
|
|
smartlist_t *flags;
|
2007-06-17 17:10:23 +02:00
|
|
|
tor_assert(total_authorities >= smartlist_len(votes));
|
2007-06-04 21:19:01 +02:00
|
|
|
|
|
|
|
if (!smartlist_len(votes)) {
|
|
|
|
log_warn(LD_DIR, "Can't compute a consensus from no votes.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
flags = smartlist_create();
|
|
|
|
|
2007-10-19 20:56:30 +02:00
|
|
|
consensus_method = compute_consensus_method(votes);
|
|
|
|
if (consensus_method_is_supported(consensus_method)) {
|
|
|
|
log_info(LD_DIR, "Generating consensus using method %d.",
|
|
|
|
consensus_method);
|
|
|
|
} else {
|
|
|
|
log_warn(LD_DIR, "The other authorities will use consensus method %d, "
|
|
|
|
"which I don't support. Maybe I should upgrade!",
|
|
|
|
consensus_method);
|
|
|
|
consensus_method = 1;
|
|
|
|
}
|
|
|
|
|
2007-06-04 21:19:01 +02:00
|
|
|
/* Compute medians of time-related things, and figure out how many
|
|
|
|
* routers we might need to talk about. */
|
|
|
|
{
|
2007-09-17 20:27:49 +02:00
|
|
|
int n_votes = smartlist_len(votes);
|
|
|
|
time_t *va_times = tor_malloc(n_votes * sizeof(time_t));
|
|
|
|
time_t *fu_times = tor_malloc(n_votes * sizeof(time_t));
|
|
|
|
time_t *vu_times = tor_malloc(n_votes * sizeof(time_t));
|
|
|
|
int *votesec_list = tor_malloc(n_votes * sizeof(int));
|
|
|
|
int *distsec_list = tor_malloc(n_votes * sizeof(int));
|
2007-06-04 21:19:01 +02:00
|
|
|
int n_versioning_clients = 0, n_versioning_servers = 0;
|
|
|
|
smartlist_t *combined_client_versions = smartlist_create();
|
|
|
|
smartlist_t *combined_server_versions = smartlist_create();
|
|
|
|
int j;
|
|
|
|
SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v,
|
|
|
|
{
|
2007-06-05 00:57:23 +02:00
|
|
|
tor_assert(v->is_vote);
|
2007-09-17 20:27:49 +02:00
|
|
|
va_times[v_sl_idx] = v->valid_after;
|
|
|
|
fu_times[v_sl_idx] = v->fresh_until;
|
|
|
|
vu_times[v_sl_idx] = v->valid_until;
|
|
|
|
votesec_list[v_sl_idx] = v->vote_seconds;
|
|
|
|
distsec_list[v_sl_idx] = v->dist_seconds;
|
2007-06-04 21:19:01 +02:00
|
|
|
if (v->client_versions) {
|
|
|
|
smartlist_t *cv = smartlist_create();
|
|
|
|
++n_versioning_clients;
|
|
|
|
smartlist_split_string(cv, v->client_versions, ",",
|
|
|
|
SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
|
|
|
|
sort_version_list(cv, 1);
|
|
|
|
smartlist_add_all(combined_client_versions, cv);
|
|
|
|
smartlist_free(cv); /* elements get freed later. */
|
|
|
|
}
|
|
|
|
if (v->server_versions) {
|
|
|
|
smartlist_t *sv = smartlist_create();
|
|
|
|
++n_versioning_servers;
|
|
|
|
smartlist_split_string(sv, v->server_versions, ",",
|
|
|
|
SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
|
|
|
|
sort_version_list(sv, 1);
|
|
|
|
smartlist_add_all(combined_server_versions, sv);
|
|
|
|
smartlist_free(sv); /* elements get freed later. */
|
|
|
|
}
|
2007-06-08 20:41:09 +02:00
|
|
|
SMARTLIST_FOREACH(v->known_flags, const char *, cp,
|
|
|
|
smartlist_add(flags, tor_strdup(cp)));
|
2007-06-04 21:19:01 +02:00
|
|
|
});
|
2007-09-17 20:27:49 +02:00
|
|
|
valid_after = median_time(va_times, n_votes);
|
|
|
|
fresh_until = median_time(fu_times, n_votes);
|
|
|
|
valid_until = median_time(vu_times, n_votes);
|
|
|
|
vote_seconds = median_int(votesec_list, n_votes);
|
|
|
|
dist_seconds = median_int(distsec_list, n_votes);
|
2007-06-04 21:19:01 +02:00
|
|
|
|
2007-08-15 17:38:58 +02:00
|
|
|
tor_assert(valid_after+MIN_VOTE_INTERVAL <= fresh_until);
|
|
|
|
tor_assert(fresh_until+MIN_VOTE_INTERVAL <= valid_until);
|
|
|
|
tor_assert(vote_seconds >= MIN_VOTE_SECONDS);
|
|
|
|
tor_assert(dist_seconds >= MIN_DIST_SECONDS);
|
|
|
|
|
2007-06-04 21:19:01 +02:00
|
|
|
for (j = 0; j < 2; ++j) {
|
|
|
|
smartlist_t *lst =
|
|
|
|
j ? combined_server_versions : combined_client_versions;
|
|
|
|
int min = (j ? n_versioning_servers : n_versioning_clients) / 2;
|
|
|
|
smartlist_t *good = smartlist_create();
|
|
|
|
char *res;
|
|
|
|
sort_version_list(lst, 0);
|
|
|
|
get_frequent_members(good, lst, min);
|
|
|
|
res = smartlist_join_strings(good, ",", 0, NULL);
|
|
|
|
if (j)
|
|
|
|
server_versions = res;
|
|
|
|
else
|
|
|
|
client_versions = res;
|
|
|
|
SMARTLIST_FOREACH(lst, char *, cp, tor_free(cp));
|
|
|
|
smartlist_free(good);
|
|
|
|
smartlist_free(lst);
|
|
|
|
}
|
|
|
|
|
|
|
|
smartlist_sort_strings(flags);
|
|
|
|
smartlist_uniq_strings(flags);
|
|
|
|
|
2007-09-17 20:27:49 +02:00
|
|
|
tor_free(va_times);
|
|
|
|
tor_free(fu_times);
|
|
|
|
tor_free(vu_times);
|
|
|
|
tor_free(votesec_list);
|
|
|
|
tor_free(distsec_list);
|
2007-06-04 21:19:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
chunks = smartlist_create();
|
|
|
|
|
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
char va_buf[ISO_TIME_LEN+1], fu_buf[ISO_TIME_LEN+1],
|
|
|
|
vu_buf[ISO_TIME_LEN+1];
|
|
|
|
char *flaglist;
|
|
|
|
format_iso_time(va_buf, valid_after);
|
|
|
|
format_iso_time(fu_buf, fresh_until);
|
|
|
|
format_iso_time(vu_buf, valid_until);
|
|
|
|
flaglist = smartlist_join_strings(flags, " ", 0, NULL);
|
|
|
|
|
2007-10-19 20:56:30 +02:00
|
|
|
smartlist_add(chunks, tor_strdup("network-status-version 3\n"
|
|
|
|
"vote-status consensus\n"));
|
|
|
|
|
|
|
|
if (consensus_method >= 2) {
|
|
|
|
tor_snprintf(buf, sizeof(buf), "consensus-method %d\n",
|
|
|
|
consensus_method);
|
|
|
|
smartlist_add(chunks, tor_strdup(buf));
|
|
|
|
}
|
|
|
|
|
2007-06-04 21:19:01 +02:00
|
|
|
tor_snprintf(buf, sizeof(buf),
|
|
|
|
"valid-after %s\n"
|
|
|
|
"fresh-until %s\n"
|
|
|
|
"valid-until %s\n"
|
|
|
|
"voting-delay %d %d\n"
|
|
|
|
"client-versions %s\n"
|
|
|
|
"server-versions %s\n"
|
|
|
|
"known-flags %s\n",
|
|
|
|
va_buf, fu_buf, vu_buf,
|
|
|
|
vote_seconds, dist_seconds,
|
|
|
|
client_versions, server_versions, flaglist);
|
|
|
|
smartlist_add(chunks, tor_strdup(buf));
|
|
|
|
|
|
|
|
tor_free(flaglist);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sort the votes. */
|
|
|
|
smartlist_sort(votes, _compare_votes_by_authority_id);
|
|
|
|
/* Add the authority sections. */
|
|
|
|
SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v,
|
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
struct in_addr in;
|
|
|
|
char ip[INET_NTOA_BUF_LEN];
|
|
|
|
char fingerprint[HEX_DIGEST_LEN+1];
|
|
|
|
char votedigest[HEX_DIGEST_LEN+1];
|
2007-06-05 00:29:00 +02:00
|
|
|
networkstatus_voter_info_t *voter = get_voter(v);
|
2007-06-04 21:19:01 +02:00
|
|
|
|
2007-06-05 00:29:00 +02:00
|
|
|
in.s_addr = htonl(voter->addr);
|
2007-06-04 21:19:01 +02:00
|
|
|
tor_inet_ntoa(&in, ip, sizeof(ip));
|
2007-06-05 00:29:00 +02:00
|
|
|
base16_encode(fingerprint, sizeof(fingerprint), voter->identity_digest,
|
|
|
|
DIGEST_LEN);
|
|
|
|
base16_encode(votedigest, sizeof(votedigest), voter->vote_digest,
|
2007-06-04 21:19:01 +02:00
|
|
|
DIGEST_LEN);
|
|
|
|
|
|
|
|
tor_snprintf(buf, sizeof(buf),
|
|
|
|
"dir-source %s %s %s %s %d %d\n"
|
|
|
|
"contact %s\n"
|
|
|
|
"vote-digest %s\n",
|
2007-06-05 00:29:00 +02:00
|
|
|
voter->nickname, fingerprint, voter->address, ip,
|
|
|
|
voter->dir_port,
|
|
|
|
voter->or_port,
|
|
|
|
voter->contact,
|
2007-06-04 21:19:01 +02:00
|
|
|
votedigest);
|
|
|
|
smartlist_add(chunks, tor_strdup(buf));
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Add the actual router entries. */
|
|
|
|
{
|
2007-08-14 04:23:57 +02:00
|
|
|
int *index; /* index[j] is the current index into votes[j]. */
|
|
|
|
int *size; /* size[j] is the number of routerstatuses in votes[j]. */
|
|
|
|
int *flag_counts; /* The number of voters that list flag[j] for the
|
|
|
|
* currently considered router. */
|
2007-06-04 21:19:01 +02:00
|
|
|
int i;
|
|
|
|
smartlist_t *matching_descs = smartlist_create();
|
|
|
|
smartlist_t *chosen_flags = smartlist_create();
|
|
|
|
smartlist_t *versions = smartlist_create();
|
|
|
|
|
|
|
|
int *n_voter_flags; /* n_voter_flags[j] is the number of flags that
|
|
|
|
* votes[j] knows about. */
|
|
|
|
int *n_flag_voters; /* n_flag_voters[f] is the number of votes that care
|
|
|
|
* about flags[f]. */
|
|
|
|
int **flag_map; /* flag_map[j][b] is an index f such that flag_map[f]
|
|
|
|
* is the same flag as votes[j]->known_flags[b]. */
|
2007-08-14 04:23:57 +02:00
|
|
|
int *named_flag; /* Index of the flag "Named" for votes[j] */
|
2007-10-19 20:56:30 +02:00
|
|
|
int *unnamed_flag; /* Index of the flag "Unnamed" for votes[j] */
|
2007-10-19 22:48:46 +02:00
|
|
|
int chosen_named_idx, chosen_unnamed_idx;
|
|
|
|
|
|
|
|
strmap_t *name_to_id_map = strmap_new();
|
|
|
|
char conflict[DIGEST_LEN];
|
|
|
|
char unknown[DIGEST_LEN];
|
|
|
|
memset(conflict, 0, sizeof(conflict));
|
|
|
|
memset(unknown, 0xff, sizeof(conflict));
|
2007-06-04 21:19:01 +02:00
|
|
|
|
|
|
|
index = tor_malloc_zero(sizeof(int)*smartlist_len(votes));
|
|
|
|
size = tor_malloc_zero(sizeof(int)*smartlist_len(votes));
|
|
|
|
n_voter_flags = tor_malloc_zero(sizeof(int) * smartlist_len(votes));
|
|
|
|
n_flag_voters = tor_malloc_zero(sizeof(int) * smartlist_len(flags));
|
|
|
|
flag_map = tor_malloc_zero(sizeof(int*) * smartlist_len(votes));
|
2007-06-04 21:54:02 +02:00
|
|
|
named_flag = tor_malloc_zero(sizeof(int*) * smartlist_len(votes));
|
2007-10-19 20:56:30 +02:00
|
|
|
unnamed_flag = tor_malloc_zero(sizeof(int*) * smartlist_len(votes));
|
2007-06-04 21:54:02 +02:00
|
|
|
for (i = 0; i < smartlist_len(votes); ++i)
|
2007-10-19 20:56:30 +02:00
|
|
|
unnamed_flag[i] = named_flag[i] = -1;
|
2007-10-19 22:48:46 +02:00
|
|
|
chosen_named_idx = smartlist_string_pos(flags, "Named");
|
|
|
|
chosen_unnamed_idx = smartlist_string_pos(flags, "Unnamed");
|
|
|
|
|
|
|
|
/* Build the flag index. */
|
2007-06-04 21:19:01 +02:00
|
|
|
SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v,
|
|
|
|
{
|
2007-06-13 21:06:23 +02:00
|
|
|
flag_map[v_sl_idx] = tor_malloc_zero(
|
|
|
|
sizeof(int)*smartlist_len(v->known_flags));
|
2007-06-08 20:41:09 +02:00
|
|
|
SMARTLIST_FOREACH(v->known_flags, const char *, fl,
|
|
|
|
{
|
|
|
|
int p = smartlist_string_pos(flags, fl);
|
2007-06-04 21:19:01 +02:00
|
|
|
tor_assert(p >= 0);
|
2007-06-08 20:41:09 +02:00
|
|
|
flag_map[v_sl_idx][fl_sl_idx] = p;
|
2007-06-04 21:19:01 +02:00
|
|
|
++n_flag_voters[p];
|
2007-06-08 20:41:09 +02:00
|
|
|
if (!strcmp(fl, "Named"))
|
|
|
|
named_flag[v_sl_idx] = fl_sl_idx;
|
2007-10-19 22:48:46 +02:00
|
|
|
if (!strcmp(fl, "Unnamed"))
|
2007-10-19 20:56:30 +02:00
|
|
|
unnamed_flag[v_sl_idx] = fl_sl_idx;
|
2007-06-08 20:41:09 +02:00
|
|
|
});
|
|
|
|
n_voter_flags[v_sl_idx] = smartlist_len(v->known_flags);
|
2007-06-04 21:19:01 +02:00
|
|
|
size[v_sl_idx] = smartlist_len(v->routerstatus_list);
|
|
|
|
});
|
|
|
|
|
2007-10-19 22:48:46 +02:00
|
|
|
/* Named and Unnamed get treated specially */
|
|
|
|
if (consensus_method >= 2) {
|
|
|
|
SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v,
|
|
|
|
{
|
|
|
|
uint64_t nf;
|
|
|
|
if (named_flag[v_sl_idx]<0)
|
|
|
|
continue;
|
|
|
|
nf = U64_LITERAL(1) << named_flag[v_sl_idx];
|
|
|
|
SMARTLIST_FOREACH(v->routerstatus_list, vote_routerstatus_t *, rs,
|
|
|
|
{
|
|
|
|
if ((rs->flags & nf) != 0) {
|
|
|
|
const char *d = strmap_get_lc(name_to_id_map, rs->status.nickname);
|
|
|
|
if (!d) {
|
|
|
|
/* We have no name officially mapped to this digest. */
|
|
|
|
strmap_set_lc(name_to_id_map, rs->status.nickname,
|
|
|
|
rs->status.identity_digest);
|
|
|
|
} else if (d != conflict &&
|
|
|
|
memcmp(d, rs->status.identity_digest, DIGEST_LEN)) {
|
|
|
|
/* Authorities disagree about this nickname. */
|
|
|
|
strmap_set_lc(name_to_id_map, rs->status.nickname, conflict);
|
|
|
|
} else {
|
|
|
|
/* It's already a conflict, or it's already this ID. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v,
|
|
|
|
{
|
|
|
|
uint64_t uf;
|
|
|
|
if (unnamed_flag[v_sl_idx]<0)
|
|
|
|
continue;
|
|
|
|
uf = U64_LITERAL(1) << unnamed_flag[v_sl_idx];
|
|
|
|
SMARTLIST_FOREACH(v->routerstatus_list, vote_routerstatus_t *, rs,
|
|
|
|
{
|
|
|
|
if ((rs->flags & uf) != 0) {
|
|
|
|
const char *d = strmap_get_lc(name_to_id_map, rs->status.nickname);
|
|
|
|
if (d == conflict || d == unknown) {
|
|
|
|
/* Leave it alone; we know what it is. */
|
|
|
|
} else if (!d) {
|
|
|
|
/* We have no name officially mapped to this digest. */
|
|
|
|
strmap_set_lc(name_to_id_map, rs->status.nickname, unknown);
|
|
|
|
} else if (!memcmp(d, rs->status.identity_digest, DIGEST_LEN)) {
|
|
|
|
/* Authorities disagree about this nickname. */
|
|
|
|
strmap_set_lc(name_to_id_map, rs->status.nickname, conflict);
|
|
|
|
} else {
|
|
|
|
/* It's mapped to a different name. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2007-06-04 21:19:01 +02:00
|
|
|
/* Now go through all the votes */
|
|
|
|
flag_counts = tor_malloc(sizeof(int) * smartlist_len(flags));
|
|
|
|
while (1) {
|
|
|
|
vote_routerstatus_t *rs;
|
|
|
|
routerstatus_t rs_out;
|
|
|
|
const char *lowest_id = NULL;
|
|
|
|
const char *chosen_version;
|
2007-06-04 21:54:02 +02:00
|
|
|
const char *chosen_name = NULL;
|
2007-10-19 22:48:46 +02:00
|
|
|
int is_named = 0, is_unnamed = 0;
|
2007-06-04 21:54:02 +02:00
|
|
|
int naming_conflict = 0;
|
2007-06-04 21:19:01 +02:00
|
|
|
int n_listing = 0;
|
|
|
|
int i;
|
|
|
|
char buf[256];
|
|
|
|
|
2007-08-14 04:23:57 +02:00
|
|
|
/* Of the next-to-be-considered digest in each voter, which is first? */
|
2007-06-04 21:19:01 +02:00
|
|
|
SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v, {
|
|
|
|
if (index[v_sl_idx] < size[v_sl_idx]) {
|
|
|
|
rs = smartlist_get(v->routerstatus_list, index[v_sl_idx]);
|
|
|
|
if (!lowest_id ||
|
|
|
|
memcmp(rs->status.identity_digest, lowest_id, DIGEST_LEN) < 0)
|
|
|
|
lowest_id = rs->status.identity_digest;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (!lowest_id) /* we're out of routers. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
memset(flag_counts, 0, sizeof(int)*smartlist_len(flags));
|
|
|
|
smartlist_clear(matching_descs);
|
|
|
|
smartlist_clear(chosen_flags);
|
|
|
|
smartlist_clear(versions);
|
|
|
|
|
|
|
|
/* Okay, go through all the entries for this digest. */
|
|
|
|
SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v, {
|
|
|
|
if (index[v_sl_idx] >= size[v_sl_idx])
|
|
|
|
continue; /* out of entries. */
|
|
|
|
rs = smartlist_get(v->routerstatus_list, index[v_sl_idx]);
|
|
|
|
if (memcmp(rs->status.identity_digest, lowest_id, DIGEST_LEN))
|
|
|
|
continue; /* doesn't include this router. */
|
|
|
|
/* At this point, we know that we're looking at a routersatus with
|
|
|
|
* identity "lowest".
|
|
|
|
*/
|
|
|
|
++index[v_sl_idx];
|
|
|
|
++n_listing;
|
|
|
|
|
|
|
|
smartlist_add(matching_descs, rs);
|
|
|
|
if (rs->version && rs->version[0])
|
|
|
|
smartlist_add(versions, rs->version);
|
|
|
|
|
|
|
|
/* Tally up all the flags. */
|
|
|
|
for (i = 0; i < n_voter_flags[v_sl_idx]; ++i) {
|
|
|
|
if (rs->flags & (U64_LITERAL(1) << i))
|
|
|
|
++flag_counts[flag_map[v_sl_idx][i]];
|
|
|
|
}
|
2007-06-04 21:54:02 +02:00
|
|
|
if (rs->flags & (U64_LITERAL(1) << named_flag[v_sl_idx])) {
|
2007-08-14 04:23:57 +02:00
|
|
|
if (chosen_name && strcmp(chosen_name, rs->status.nickname)) {
|
|
|
|
log_notice(LD_DIR, "Conflict on naming for router: %s vs %s",
|
|
|
|
chosen_name, rs->status.nickname);
|
|
|
|
naming_conflict = 1;
|
|
|
|
}
|
2007-06-04 21:54:02 +02:00
|
|
|
chosen_name = rs->status.nickname;
|
|
|
|
}
|
2007-06-04 21:19:01 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
/* We don't include this router at all unless more than half of
|
|
|
|
* the authorities we believe in list it. */
|
|
|
|
if (n_listing <= total_authorities/2)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Figure out the most popular opinion of what the most recent
|
|
|
|
* routerinfo and its contents are. */
|
|
|
|
rs = compute_routerstatus_consensus(matching_descs);
|
|
|
|
/* Copy bits of that into rs_out. */
|
|
|
|
tor_assert(!memcmp(lowest_id, rs->status.identity_digest, DIGEST_LEN));
|
|
|
|
memcpy(rs_out.identity_digest, lowest_id, DIGEST_LEN);
|
|
|
|
memcpy(rs_out.descriptor_digest, rs->status.descriptor_digest,
|
|
|
|
DIGEST_LEN);
|
2007-06-14 00:39:08 +02:00
|
|
|
rs_out.addr = rs->status.addr;
|
2007-06-04 21:19:01 +02:00
|
|
|
rs_out.published_on = rs->status.published_on;
|
|
|
|
rs_out.dir_port = rs->status.dir_port;
|
|
|
|
rs_out.or_port = rs->status.or_port;
|
|
|
|
|
2007-06-04 21:54:02 +02:00
|
|
|
if (chosen_name && !naming_conflict) {
|
|
|
|
strlcpy(rs_out.nickname, chosen_name, sizeof(rs_out.nickname));
|
|
|
|
} else {
|
|
|
|
strlcpy(rs_out.nickname, rs->status.nickname, sizeof(rs_out.nickname));
|
|
|
|
}
|
|
|
|
|
2007-10-19 22:48:46 +02:00
|
|
|
if (consensus_method == 1) {
|
|
|
|
is_named = chosen_named_idx >= 0 &&
|
|
|
|
(!naming_conflict && flag_counts[chosen_named_idx]);
|
|
|
|
} else {
|
|
|
|
const char *d = strmap_get_lc(name_to_id_map, rs_out.nickname);
|
|
|
|
if (!d) {
|
|
|
|
is_named = is_unnamed = 0;
|
|
|
|
} else if (!memcmp(d, lowest_id, DIGEST_LEN)) {
|
|
|
|
is_named = 1; is_unnamed = 0;
|
|
|
|
} else {
|
|
|
|
is_named = 0; is_unnamed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-04 21:19:01 +02:00
|
|
|
/* Set the flags. */
|
|
|
|
smartlist_add(chosen_flags, (char*)"s"); /* for the start of the line. */
|
|
|
|
SMARTLIST_FOREACH(flags, const char *, fl,
|
|
|
|
{
|
2007-10-19 22:48:46 +02:00
|
|
|
if (!strcmp(fl, "Named")) {
|
|
|
|
if (is_named)
|
|
|
|
smartlist_add(chosen_flags, (char*)fl);
|
|
|
|
} else if (!strcmp(fl, "Unnamed") && consensus_method >= 2) {
|
|
|
|
if (is_unnamed)
|
2007-06-04 21:54:02 +02:00
|
|
|
smartlist_add(chosen_flags, (char*)fl);
|
|
|
|
} else {
|
2007-10-19 22:48:46 +02:00
|
|
|
if (flag_counts[fl_sl_idx] > n_flag_voters[fl_sl_idx]/2)
|
|
|
|
smartlist_add(chosen_flags, (char*)fl);
|
2007-06-04 21:54:02 +02:00
|
|
|
}
|
2007-06-04 21:19:01 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
/* Pick the version. */
|
|
|
|
if (smartlist_len(versions)) {
|
|
|
|
sort_version_list(versions, 0);
|
|
|
|
chosen_version = get_most_frequent_member(versions);
|
|
|
|
} else {
|
|
|
|
chosen_version = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Okay!! Now we can write the descriptor... */
|
|
|
|
/* First line goes into "buf". */
|
|
|
|
routerstatus_format_entry(buf, sizeof(buf), &rs_out, NULL, 1);
|
|
|
|
smartlist_add(chunks, tor_strdup(buf));
|
|
|
|
/* Second line is all flags. The "\n" is missing. */
|
|
|
|
smartlist_add(chunks,
|
|
|
|
smartlist_join_strings(chosen_flags, " ", 0, NULL));
|
|
|
|
/* Now the version line. */
|
|
|
|
if (chosen_version) {
|
2007-08-14 04:23:57 +02:00
|
|
|
smartlist_add(chunks, tor_strdup("\nv "));
|
|
|
|
smartlist_add(chunks, tor_strdup(chosen_version));
|
2007-06-04 21:19:01 +02:00
|
|
|
}
|
2007-08-14 04:23:57 +02:00
|
|
|
smartlist_add(chunks, tor_strdup("\n"));
|
2007-06-04 21:19:01 +02:00
|
|
|
|
|
|
|
/* And the loop is over and we move on to the next router */
|
|
|
|
}
|
|
|
|
|
|
|
|
tor_free(index);
|
|
|
|
tor_free(size);
|
|
|
|
tor_free(n_voter_flags);
|
|
|
|
tor_free(n_flag_voters);
|
|
|
|
for (i = 0; i < smartlist_len(votes); ++i)
|
|
|
|
tor_free(flag_map[i]);
|
|
|
|
tor_free(flag_map);
|
|
|
|
tor_free(flag_counts);
|
2007-10-19 20:56:30 +02:00
|
|
|
tor_free(named_flag);
|
|
|
|
tor_free(unnamed_flag);
|
2007-10-19 22:48:46 +02:00
|
|
|
strmap_free(name_to_id_map, NULL);
|
2007-06-04 21:19:01 +02:00
|
|
|
smartlist_free(matching_descs);
|
|
|
|
smartlist_free(chosen_flags);
|
|
|
|
smartlist_free(versions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a signature. */
|
2007-06-04 21:54:02 +02:00
|
|
|
{
|
|
|
|
char digest[DIGEST_LEN];
|
|
|
|
char fingerprint[HEX_DIGEST_LEN+1];
|
2007-06-05 00:29:00 +02:00
|
|
|
char signing_key_fingerprint[HEX_DIGEST_LEN+1];
|
|
|
|
|
2007-06-04 21:54:02 +02:00
|
|
|
char buf[4096];
|
|
|
|
smartlist_add(chunks, tor_strdup("directory-signature "));
|
|
|
|
|
|
|
|
/* Compute the hash of the chunks. */
|
|
|
|
hash_list_members(digest, chunks);
|
|
|
|
|
2007-06-05 00:29:00 +02:00
|
|
|
/* Get the fingerprints */
|
2007-06-04 21:54:02 +02:00
|
|
|
crypto_pk_get_fingerprint(identity_key, fingerprint, 0);
|
2007-06-05 00:29:00 +02:00
|
|
|
crypto_pk_get_fingerprint(signing_key, signing_key_fingerprint, 0);
|
2007-06-04 21:54:02 +02:00
|
|
|
|
|
|
|
/* add the junk that will go at the end of the line. */
|
2007-06-05 00:29:00 +02:00
|
|
|
tor_snprintf(buf, sizeof(buf), "%s %s\n", fingerprint,
|
|
|
|
signing_key_fingerprint);
|
2007-06-04 21:54:02 +02:00
|
|
|
/* And the signature. */
|
2007-08-14 04:23:57 +02:00
|
|
|
if (router_append_dirobj_signature(buf, sizeof(buf), digest,
|
|
|
|
signing_key)) {
|
|
|
|
log_warn(LD_BUG, "Couldn't sign consensus networkstatus.");
|
|
|
|
return NULL; /* This leaks, but it should never happen. */
|
|
|
|
}
|
2007-06-04 21:54:02 +02:00
|
|
|
smartlist_add(chunks, tor_strdup(buf));
|
|
|
|
}
|
2007-06-04 21:19:01 +02:00
|
|
|
|
2007-06-04 21:54:02 +02:00
|
|
|
result = smartlist_join_strings(chunks, "", 0, NULL);
|
2007-06-04 21:19:01 +02:00
|
|
|
|
|
|
|
tor_free(client_versions);
|
|
|
|
tor_free(server_versions);
|
2007-06-04 21:54:02 +02:00
|
|
|
smartlist_free(flags);
|
|
|
|
SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
|
|
|
|
smartlist_free(chunks);
|
2007-06-04 21:19:01 +02:00
|
|
|
|
2007-06-08 21:02:39 +02:00
|
|
|
{
|
|
|
|
networkstatus_vote_t *c;
|
2007-09-22 08:06:05 +02:00
|
|
|
if (!(c = networkstatus_parse_vote_from_string(result, NULL, 0))) {
|
2007-06-08 21:02:39 +02:00
|
|
|
log_err(LD_BUG,"Generated a networkstatus consensus we couldn't "
|
|
|
|
"parse.");
|
|
|
|
tor_free(result);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
networkstatus_vote_free(c);
|
|
|
|
}
|
|
|
|
|
2007-06-04 21:54:02 +02:00
|
|
|
return result;
|
2007-06-04 21:19:01 +02:00
|
|
|
}
|
2007-06-05 00:29:00 +02:00
|
|
|
|
2007-08-14 04:23:57 +02:00
|
|
|
/** Check whether the signature on <b>voter</b> is correctly signed by
|
2007-06-17 17:10:43 +02:00
|
|
|
* the signing key of <b>cert</b>. Return -1 if <b>cert</b> doesn't match the
|
|
|
|
* signing key; otherwise set the good_signature or bad_signature flag on
|
|
|
|
* <b>voter</b>, and return 0. */
|
|
|
|
/* (private; exposed for testing.) */
|
2007-06-14 00:39:08 +02:00
|
|
|
int
|
|
|
|
networkstatus_check_voter_signature(networkstatus_vote_t *consensus,
|
|
|
|
networkstatus_voter_info_t *voter,
|
|
|
|
authority_cert_t *cert)
|
|
|
|
{
|
|
|
|
char d[DIGEST_LEN];
|
|
|
|
char *signed_digest;
|
|
|
|
size_t signed_digest_len;
|
2007-08-14 04:23:57 +02:00
|
|
|
if (crypto_pk_get_digest(cert->signing_key, d)<0)
|
|
|
|
return -1;
|
|
|
|
if (memcmp(voter->signing_key_digest, d, DIGEST_LEN))
|
2007-06-14 00:39:08 +02:00
|
|
|
return -1;
|
|
|
|
signed_digest_len = crypto_pk_keysize(cert->signing_key);
|
|
|
|
signed_digest = tor_malloc(signed_digest_len);
|
|
|
|
if (crypto_pk_public_checksig(cert->signing_key,
|
|
|
|
signed_digest,
|
2007-07-26 22:26:59 +02:00
|
|
|
voter->signature,
|
|
|
|
voter->signature_len) != DIGEST_LEN ||
|
2007-06-14 00:39:08 +02:00
|
|
|
memcmp(signed_digest, consensus->networkstatus_digest, DIGEST_LEN)) {
|
2007-08-14 04:23:57 +02:00
|
|
|
log_warn(LD_DIR, "Got a bad signature on a networkstatus vote");
|
2007-06-14 00:39:08 +02:00
|
|
|
voter->bad_signature = 1;
|
|
|
|
} else {
|
|
|
|
voter->good_signature = 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Given a v3 networkstatus consensus in <b>consensus</b>, check every
|
2007-09-22 08:06:05 +02:00
|
|
|
* as-yet-unchecked signature on <b>consensus</b>. Return 1 if there is a
|
|
|
|
* signature from every recognized authority on it, 0 if there are
|
2007-09-12 19:33:18 +02:00
|
|
|
* enough good signatures from recognized authorities on it, -1 if we might
|
|
|
|
* get enough good signatures by fetching missing certificates, and -2
|
|
|
|
* otherwise. Log messages at INFO or WARN: if <b>warn</b> is over 1, warn
|
|
|
|
* about every problem; if warn is at least 1, warn only if we can't get
|
|
|
|
* enough signatures; if warn is negative, log nothing at all. */
|
2007-06-05 00:57:23 +02:00
|
|
|
int
|
2007-09-11 22:17:25 +02:00
|
|
|
networkstatus_check_consensus_signature(networkstatus_vote_t *consensus,
|
|
|
|
int warn)
|
2007-06-05 00:57:23 +02:00
|
|
|
{
|
|
|
|
int n_good = 0;
|
|
|
|
int n_missing_key = 0;
|
|
|
|
int n_bad = 0;
|
|
|
|
int n_unknown = 0;
|
2007-06-14 00:39:08 +02:00
|
|
|
int n_no_signature = 0;
|
2007-09-22 08:06:05 +02:00
|
|
|
int n_v3_authorities = get_n_authorities(V3_AUTHORITY);
|
|
|
|
int n_required = n_v3_authorities/2 + 1;
|
2007-09-11 22:17:25 +02:00
|
|
|
smartlist_t *need_certs_from = smartlist_create();
|
|
|
|
smartlist_t *unrecognized = smartlist_create();
|
|
|
|
smartlist_t *missing_authorities = smartlist_create();
|
|
|
|
int severity;
|
2007-06-05 00:57:23 +02:00
|
|
|
|
|
|
|
tor_assert(! consensus->is_vote);
|
|
|
|
|
|
|
|
SMARTLIST_FOREACH(consensus->voters, networkstatus_voter_info_t *, voter,
|
|
|
|
{
|
2007-07-26 22:49:04 +02:00
|
|
|
if (!voter->good_signature && !voter->bad_signature && voter->signature) {
|
|
|
|
/* we can try to check the signature. */
|
|
|
|
authority_cert_t *cert =
|
|
|
|
authority_cert_get_by_digests(voter->identity_digest,
|
|
|
|
voter->signing_key_digest);
|
|
|
|
if (! cert) {
|
2007-10-09 19:40:23 +02:00
|
|
|
if (!trusteddirserver_get_by_v3_auth_digest(voter->identity_digest)) {
|
2007-09-11 22:17:25 +02:00
|
|
|
smartlist_add(unrecognized, voter);
|
2007-10-09 19:40:23 +02:00
|
|
|
++n_unknown;
|
|
|
|
} else {
|
2007-09-11 22:17:25 +02:00
|
|
|
smartlist_add(need_certs_from, voter);
|
2007-10-09 19:40:23 +02:00
|
|
|
++n_missing_key;
|
|
|
|
}
|
2007-07-26 22:49:04 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (networkstatus_check_voter_signature(consensus, voter, cert) < 0) {
|
2007-09-11 22:17:25 +02:00
|
|
|
smartlist_add(need_certs_from, voter);
|
2007-08-14 04:23:57 +02:00
|
|
|
++n_missing_key;
|
2007-06-05 00:57:23 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (voter->good_signature)
|
|
|
|
++n_good;
|
|
|
|
else if (voter->bad_signature)
|
|
|
|
++n_bad;
|
|
|
|
else
|
2007-06-14 00:39:08 +02:00
|
|
|
++n_no_signature;
|
2007-06-05 00:57:23 +02:00
|
|
|
});
|
|
|
|
|
2007-09-11 22:17:25 +02:00
|
|
|
/* Now see whether we're missing any voters entirely. */
|
|
|
|
SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
|
|
|
|
trusted_dir_server_t *, ds,
|
|
|
|
{
|
|
|
|
if ((ds->type & V3_AUTHORITY) &&
|
|
|
|
!networkstatus_get_voter_by_id(consensus, ds->v3_identity_digest))
|
|
|
|
smartlist_add(missing_authorities, ds);
|
|
|
|
});
|
|
|
|
|
2007-09-12 19:33:18 +02:00
|
|
|
if (warn > 1 || (warn >= 0 && n_good < n_required))
|
2007-09-11 22:17:25 +02:00
|
|
|
severity = LOG_WARN;
|
|
|
|
else
|
|
|
|
severity = LOG_INFO;
|
|
|
|
|
|
|
|
if (warn >= 0) {
|
|
|
|
SMARTLIST_FOREACH(unrecognized, networkstatus_voter_info_t *, voter,
|
|
|
|
{
|
|
|
|
log(severity, LD_DIR, "Consensus includes unrecognized authority '%s' "
|
|
|
|
"at %s:%d (contact %s; identity %s)",
|
|
|
|
voter->nickname, voter->address, (int)voter->dir_port,
|
|
|
|
voter->contact?voter->contact:"n/a",
|
|
|
|
hex_str(voter->identity_digest, DIGEST_LEN));
|
|
|
|
});
|
|
|
|
SMARTLIST_FOREACH(need_certs_from, networkstatus_voter_info_t *, voter,
|
|
|
|
{
|
|
|
|
log_info(LD_DIR, "Looks like we need to download a new certificate "
|
|
|
|
"from authority '%s' at %s:%d (contact %s; identity %s)",
|
|
|
|
voter->nickname, voter->address, (int)voter->dir_port,
|
|
|
|
voter->contact?voter->contact:"n/a",
|
|
|
|
hex_str(voter->identity_digest, DIGEST_LEN));
|
|
|
|
});
|
|
|
|
SMARTLIST_FOREACH(missing_authorities, trusted_dir_server_t *, ds,
|
|
|
|
{
|
|
|
|
log(severity, LD_DIR, "Consensus does not include configured "
|
|
|
|
"authority '%s' at %s:%d (identity %s)",
|
|
|
|
ds->nickname, ds->address, (int)ds->dir_port,
|
|
|
|
hex_str(ds->v3_identity_digest, DIGEST_LEN));
|
|
|
|
});
|
|
|
|
log(severity, LD_DIR,
|
|
|
|
"%d unknown, %d missing key, %d good, %d bad, %d no signature, "
|
|
|
|
"%d required", n_unknown, n_missing_key, n_good, n_bad,
|
|
|
|
n_no_signature, n_required);
|
|
|
|
}
|
|
|
|
|
|
|
|
smartlist_free(unrecognized);
|
|
|
|
smartlist_free(need_certs_from);
|
|
|
|
smartlist_free(missing_authorities);
|
2007-08-14 02:07:29 +02:00
|
|
|
|
2007-09-22 08:06:05 +02:00
|
|
|
if (n_good == n_v3_authorities)
|
|
|
|
return 1;
|
|
|
|
else if (n_good >= n_required)
|
2007-07-30 01:11:44 +02:00
|
|
|
return 0;
|
2007-09-11 22:17:28 +02:00
|
|
|
else if (n_good + n_missing_key >= n_required)
|
2007-07-30 01:11:44 +02:00
|
|
|
return -1;
|
2007-09-11 22:17:28 +02:00
|
|
|
else
|
|
|
|
return -2;
|
2007-06-05 00:57:23 +02:00
|
|
|
}
|
|
|
|
|
2007-10-10 21:33:01 +02:00
|
|
|
/** Given a consensus vote <b>target</b> and a set of detached signatures in
|
|
|
|
* <b>sigs</b> that correspond to the same consensus, check whether there are
|
|
|
|
* any new signatures in <b>src_voter_list</b> that should be added to
|
|
|
|
* <b>target. (A signature should be added if we have no signature for that
|
|
|
|
* voter in <b>target</b> yet, or if we have no verifiable signature and the
|
|
|
|
* new signature is verifiable.) Return the number of signatures added or
|
|
|
|
* changed, or -1 if the document signed by <b>sigs</b> isn't the same
|
|
|
|
* document as <b>target</b>. */
|
|
|
|
int
|
|
|
|
networkstatus_add_detached_signatures(networkstatus_vote_t *target,
|
2007-10-19 18:41:32 +02:00
|
|
|
ns_detached_signatures_t *sigs,
|
|
|
|
const char **msg_out)
|
2007-07-26 22:26:59 +02:00
|
|
|
{
|
2007-09-12 19:33:18 +02:00
|
|
|
int r = 0;
|
2007-10-10 21:33:01 +02:00
|
|
|
tor_assert(sigs);
|
2007-07-26 22:26:59 +02:00
|
|
|
tor_assert(target);
|
2007-07-27 20:33:28 +02:00
|
|
|
tor_assert(!target->is_vote);
|
2007-07-26 22:26:59 +02:00
|
|
|
|
2007-10-19 18:41:32 +02:00
|
|
|
/* Do the times seem right? */
|
|
|
|
if (target->valid_after != sigs->valid_after) {
|
|
|
|
*msg_out = "Valid-After times do not match "
|
|
|
|
"when adding detached signatures to consensus";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (target->fresh_until != sigs->fresh_until) {
|
|
|
|
*msg_out = "Fresh-until times do not match "
|
|
|
|
"when adding detached signatures to consensus";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (target->valid_until != sigs->valid_until) {
|
|
|
|
*msg_out = "Valid-until times do not match "
|
|
|
|
"when adding detached signatures to consensus";
|
|
|
|
return -1;
|
|
|
|
}
|
2007-10-10 21:33:01 +02:00
|
|
|
/* Are they the same consensus? */
|
|
|
|
if (memcmp(target->networkstatus_digest, sigs->networkstatus_digest,
|
2007-10-19 18:41:32 +02:00
|
|
|
DIGEST_LEN)) {
|
|
|
|
*msg_out = "Digest mismatch when adding detached signatures to consensus";
|
2007-10-10 21:33:01 +02:00
|
|
|
return -1;
|
2007-10-19 18:41:32 +02:00
|
|
|
}
|
2007-10-10 21:33:01 +02:00
|
|
|
|
2007-07-26 22:26:59 +02:00
|
|
|
/* For each voter in src... */
|
2007-10-10 21:33:01 +02:00
|
|
|
SMARTLIST_FOREACH(sigs->signatures, networkstatus_voter_info_t *, src_voter,
|
2007-07-26 22:26:59 +02:00
|
|
|
{
|
|
|
|
networkstatus_voter_info_t *target_voter =
|
|
|
|
networkstatus_get_voter_by_id(target, src_voter->identity_digest);
|
|
|
|
authority_cert_t *cert;
|
2007-09-12 19:33:18 +02:00
|
|
|
/* If the target doesn't know about this voter, then forget it. */
|
2007-07-26 22:26:59 +02:00
|
|
|
if (!target_voter)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* If the target already has a good signature from this voter, then skip
|
|
|
|
* this one. */
|
|
|
|
if (target_voter->good_signature)
|
|
|
|
continue;
|
|
|
|
|
2007-07-27 20:33:28 +02:00
|
|
|
/* Try checking the signature if we haven't already. */
|
|
|
|
if (!src_voter->good_signature && !src_voter->bad_signature) {
|
|
|
|
cert = authority_cert_get_by_digests(src_voter->identity_digest,
|
|
|
|
src_voter->signing_key_digest);
|
|
|
|
if (cert) {
|
|
|
|
networkstatus_check_voter_signature(target, src_voter, cert);
|
|
|
|
}
|
2007-07-26 22:26:59 +02:00
|
|
|
}
|
2007-09-12 19:33:18 +02:00
|
|
|
/* If this signature is good, or we don't have any signature yet,
|
2007-08-15 18:12:40 +02:00
|
|
|
* then add it. */
|
|
|
|
if (src_voter->good_signature || !target_voter->signature) {
|
2007-09-12 19:33:18 +02:00
|
|
|
++r;
|
2007-07-26 22:26:59 +02:00
|
|
|
tor_free(target_voter->signature);
|
|
|
|
target_voter->signature =
|
|
|
|
tor_memdup(src_voter->signature, src_voter->signature_len);
|
|
|
|
memcpy(target_voter->signing_key_digest, src_voter->signing_key_digest,
|
|
|
|
DIGEST_LEN);
|
|
|
|
target_voter->signature_len = src_voter->signature_len;
|
|
|
|
target_voter->good_signature = 1;
|
|
|
|
target_voter->bad_signature = 0;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Return a newly allocated string holding the detached-signatures document
|
|
|
|
* corresponding to the signatures on <b>consensus</b>. */
|
2007-07-27 20:33:28 +02:00
|
|
|
char *
|
|
|
|
networkstatus_get_detached_signatures(networkstatus_vote_t *consensus)
|
|
|
|
{
|
|
|
|
smartlist_t *elements;
|
|
|
|
char buf[4096];
|
|
|
|
char *result = NULL;
|
2007-08-01 18:43:44 +02:00
|
|
|
int n_sigs = 0;
|
2007-07-27 20:33:28 +02:00
|
|
|
tor_assert(consensus);
|
|
|
|
tor_assert(! consensus->is_vote);
|
|
|
|
|
|
|
|
elements = smartlist_create();
|
|
|
|
|
|
|
|
{
|
|
|
|
char va_buf[ISO_TIME_LEN+1], fu_buf[ISO_TIME_LEN+1],
|
|
|
|
vu_buf[ISO_TIME_LEN+1];
|
|
|
|
char d[HEX_DIGEST_LEN+1];
|
|
|
|
|
|
|
|
base16_encode(d, sizeof(d), consensus->networkstatus_digest, DIGEST_LEN);
|
|
|
|
format_iso_time(va_buf, consensus->valid_after);
|
|
|
|
format_iso_time(fu_buf, consensus->fresh_until);
|
|
|
|
format_iso_time(vu_buf, consensus->valid_until);
|
|
|
|
|
|
|
|
tor_snprintf(buf, sizeof(buf),
|
|
|
|
"consensus-digest %s\n"
|
|
|
|
"valid-after %s\n"
|
|
|
|
"fresh-until %s\n"
|
|
|
|
"valid-until %s\n", d, va_buf, fu_buf, vu_buf);
|
|
|
|
smartlist_add(elements, tor_strdup(buf));
|
|
|
|
}
|
|
|
|
|
|
|
|
SMARTLIST_FOREACH(consensus->voters, networkstatus_voter_info_t *, v,
|
|
|
|
{
|
|
|
|
char sk[HEX_DIGEST_LEN+1];
|
|
|
|
char id[HEX_DIGEST_LEN+1];
|
2007-08-14 22:19:40 +02:00
|
|
|
if (!v->signature || v->bad_signature)
|
2007-07-27 20:33:28 +02:00
|
|
|
continue;
|
2007-08-01 18:43:44 +02:00
|
|
|
++n_sigs;
|
2007-07-27 20:33:28 +02:00
|
|
|
base16_encode(sk, sizeof(sk), v->signing_key_digest, DIGEST_LEN);
|
|
|
|
base16_encode(id, sizeof(id), v->identity_digest, DIGEST_LEN);
|
|
|
|
tor_snprintf(buf, sizeof(buf),
|
|
|
|
"directory-signature %s %s\n-----BEGIN SIGNATURE-----\n",
|
|
|
|
id, sk);
|
|
|
|
smartlist_add(elements, tor_strdup(buf));
|
|
|
|
base64_encode(buf, sizeof(buf), v->signature, v->signature_len);
|
|
|
|
strlcat(buf, "-----END SIGNATURE-----\n", sizeof(buf));
|
|
|
|
smartlist_add(elements, tor_strdup(buf));
|
|
|
|
});
|
|
|
|
|
|
|
|
result = smartlist_join_strings(elements, "", 0, NULL);
|
|
|
|
|
|
|
|
SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
|
|
|
|
smartlist_free(elements);
|
2007-08-01 18:43:44 +02:00
|
|
|
if (!n_sigs)
|
|
|
|
tor_free(result);
|
2007-07-27 20:33:28 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Release all storage held in <b>s</b>. */
|
2007-07-27 20:33:28 +02:00
|
|
|
void
|
|
|
|
ns_detached_signatures_free(ns_detached_signatures_t *s)
|
|
|
|
{
|
|
|
|
if (s->signatures) {
|
|
|
|
SMARTLIST_FOREACH(s->signatures, networkstatus_voter_info_t *, v,
|
|
|
|
{
|
|
|
|
tor_free(v->signature);
|
|
|
|
tor_free(v);
|
|
|
|
});
|
|
|
|
smartlist_free(s->signatures);
|
|
|
|
}
|
|
|
|
tor_free(s);
|
|
|
|
}
|
|
|
|
|
2007-07-18 22:46:12 +02:00
|
|
|
/* =====
|
|
|
|
* Certificate functions
|
|
|
|
* ===== */
|
|
|
|
|
2007-06-08 20:41:09 +02:00
|
|
|
/** Free storage held in <b>cert</b>. */
|
|
|
|
void
|
|
|
|
authority_cert_free(authority_cert_t *cert)
|
|
|
|
{
|
|
|
|
if (!cert)
|
|
|
|
return;
|
|
|
|
|
|
|
|
tor_free(cert->cache_info.signed_descriptor_body);
|
|
|
|
if (cert->signing_key)
|
|
|
|
crypto_free_pk_env(cert->signing_key);
|
|
|
|
if (cert->identity_key)
|
|
|
|
crypto_free_pk_env(cert->identity_key);
|
|
|
|
|
|
|
|
tor_free(cert);
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:10:43 +02:00
|
|
|
/** Allocate and return a new authority_cert_t with the same contents as
|
|
|
|
* <b>cert</b>. */
|
2007-06-08 20:41:09 +02:00
|
|
|
authority_cert_t *
|
|
|
|
authority_cert_dup(authority_cert_t *cert)
|
|
|
|
{
|
|
|
|
authority_cert_t *out = tor_malloc(sizeof(authority_cert_t));
|
|
|
|
tor_assert(cert);
|
|
|
|
|
|
|
|
memcpy(out, cert, sizeof(authority_cert_t));
|
|
|
|
/* Now copy pointed-to things. */
|
|
|
|
out->cache_info.signed_descriptor_body =
|
|
|
|
tor_strndup(cert->cache_info.signed_descriptor_body,
|
|
|
|
cert->cache_info.signed_descriptor_len);
|
|
|
|
out->cache_info.saved_location = SAVED_NOWHERE;
|
|
|
|
out->identity_key = crypto_pk_dup_key(cert->identity_key);
|
|
|
|
out->signing_key = crypto_pk_dup_key(cert->signing_key);
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
2007-06-13 20:16:05 +02:00
|
|
|
|
2007-07-18 22:46:12 +02:00
|
|
|
/* =====
|
|
|
|
* Vote scheduling
|
|
|
|
* ===== */
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Set *<b>timing_out</b> to the intervals at which we would like to vote.
|
|
|
|
* Note that these aren't the intervals we'll use to vote; they're the ones
|
|
|
|
* that we'll vote to use. */
|
2007-07-18 22:46:12 +02:00
|
|
|
void
|
|
|
|
dirvote_get_preferred_voting_intervals(vote_timing_t *timing_out)
|
|
|
|
{
|
2007-08-13 20:09:38 +02:00
|
|
|
or_options_t *options = get_options();
|
|
|
|
|
2007-07-18 22:46:12 +02:00
|
|
|
tor_assert(timing_out);
|
|
|
|
|
2007-08-13 20:09:38 +02:00
|
|
|
timing_out->vote_interval = options->V3AuthVotingInterval;
|
2007-08-14 04:23:57 +02:00
|
|
|
timing_out->n_intervals_valid = options->V3AuthNIntervalsValid;
|
|
|
|
timing_out->vote_delay = options->V3AuthVoteDelay;
|
|
|
|
timing_out->dist_delay = options->V3AuthDistDelay;
|
2007-07-18 22:46:12 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Return the start of the next interval of size <b>interval</b> (in seconds)
|
|
|
|
* after <b>now</b>. Midnight always starts a fresh interval, and if the last
|
|
|
|
* interval of a day would be truncated to less than half its size, it is
|
|
|
|
* rolled into the previous interval. */
|
2007-07-18 22:46:12 +02:00
|
|
|
time_t
|
|
|
|
dirvote_get_start_of_next_interval(time_t now, int interval)
|
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
time_t midnight_today;
|
|
|
|
time_t midnight_tomorrow;
|
|
|
|
time_t next;
|
|
|
|
|
|
|
|
tor_gmtime_r(&now, &tm);
|
|
|
|
tm.tm_hour = 0;
|
|
|
|
tm.tm_min = 0;
|
|
|
|
tm.tm_sec = 0;
|
|
|
|
|
|
|
|
midnight_today = tor_timegm(&tm);
|
|
|
|
midnight_tomorrow = midnight_today + (24*60*60);
|
|
|
|
|
|
|
|
next = midnight_today + ((now-midnight_today)/interval + 1)*interval;
|
|
|
|
|
2007-08-14 22:19:40 +02:00
|
|
|
/* Intervals never cross midnight. */
|
2007-07-18 22:46:12 +02:00
|
|
|
if (next > midnight_tomorrow)
|
|
|
|
next = midnight_tomorrow;
|
|
|
|
|
2007-08-14 22:19:40 +02:00
|
|
|
/* If the interval would only last half as long as it's supposed to, then
|
|
|
|
* skip over to the next day. */
|
|
|
|
if (next + interval/2 > midnight_tomorrow)
|
|
|
|
next = midnight_tomorrow;
|
|
|
|
|
2007-07-18 22:46:12 +02:00
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Scheduling information for a voting interval. */
|
2007-07-18 22:46:12 +02:00
|
|
|
static struct {
|
2007-08-22 17:07:44 +02:00
|
|
|
/** When do we generate and distribute our vote for this interval? */
|
2007-07-18 22:46:12 +02:00
|
|
|
time_t voting_starts;
|
2007-10-04 18:21:58 +02:00
|
|
|
/** When do we send an HTTP request for any votes that we haven't
|
|
|
|
* been posted yet?*/
|
2007-09-21 21:11:52 +02:00
|
|
|
time_t fetch_missing_votes;
|
2007-08-22 17:07:44 +02:00
|
|
|
/** When do we give up on getting more votes and generate a consensus? */
|
2007-07-18 22:46:12 +02:00
|
|
|
time_t voting_ends;
|
2007-10-04 18:21:58 +02:00
|
|
|
/** When do we send an HTTP request for any signatures we're expecting to
|
|
|
|
* see on the consensus? */
|
2007-09-21 21:11:52 +02:00
|
|
|
time_t fetch_missing_signatures;
|
2007-08-22 17:07:44 +02:00
|
|
|
/** When do we publish the consensus? */
|
2007-07-18 22:46:12 +02:00
|
|
|
time_t interval_starts;
|
2007-07-30 01:11:44 +02:00
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/* True iff we have generated and distributed our vote. */
|
2007-07-30 01:11:44 +02:00
|
|
|
int have_voted;
|
2007-10-04 18:21:58 +02:00
|
|
|
/* True iff we've requested missing votes. */
|
2007-09-22 08:06:05 +02:00
|
|
|
int have_fetched_missing_votes;
|
2007-08-22 17:07:44 +02:00
|
|
|
/* True iff we have built a consensus and sent the signatures around. */
|
2007-07-30 01:11:44 +02:00
|
|
|
int have_built_consensus;
|
2007-10-04 18:21:58 +02:00
|
|
|
/* True iff we've fetched missing signatures. */
|
2007-09-22 08:06:05 +02:00
|
|
|
int have_fetched_missing_signatures;
|
2007-08-22 17:07:44 +02:00
|
|
|
/* True iff we have published our consensus. */
|
2007-07-30 01:11:44 +02:00
|
|
|
int have_published_consensus;
|
2007-10-15 16:59:48 +02:00
|
|
|
} voting_schedule = {0,0,0,0,0,0,0,0,0,0};
|
2007-07-18 22:46:12 +02:00
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Set voting_schedule to hold the timing for the next vote we should be
|
|
|
|
* doing. */
|
2007-07-18 22:46:12 +02:00
|
|
|
void
|
2007-10-18 16:27:42 +02:00
|
|
|
dirvote_recalculate_timing(or_options_t *options, time_t now)
|
2007-07-18 22:46:12 +02:00
|
|
|
{
|
|
|
|
int interval, vote_delay, dist_delay;
|
|
|
|
time_t start;
|
2007-08-14 22:19:40 +02:00
|
|
|
time_t end;
|
2007-10-18 16:27:42 +02:00
|
|
|
networkstatus_vote_t *consensus;
|
|
|
|
|
|
|
|
if (!authdir_mode_v3(options))
|
|
|
|
return;
|
|
|
|
|
|
|
|
consensus = networkstatus_get_live_consensus(now);
|
2007-07-18 22:46:12 +02:00
|
|
|
|
2007-07-30 01:11:44 +02:00
|
|
|
memset(&voting_schedule, 0, sizeof(voting_schedule));
|
|
|
|
|
2007-07-18 22:46:12 +02:00
|
|
|
if (consensus) {
|
|
|
|
interval = consensus->fresh_until - consensus->valid_after;
|
|
|
|
vote_delay = consensus->vote_seconds;
|
2007-07-19 20:46:06 +02:00
|
|
|
dist_delay = consensus->dist_seconds;
|
2007-07-18 22:46:12 +02:00
|
|
|
} else {
|
2007-08-22 17:07:44 +02:00
|
|
|
interval = 30*60;
|
2007-07-18 22:46:12 +02:00
|
|
|
vote_delay = dist_delay = 300;
|
|
|
|
}
|
|
|
|
|
2007-08-14 22:19:40 +02:00
|
|
|
tor_assert(interval > 0);
|
|
|
|
|
|
|
|
if (vote_delay + dist_delay > interval/2)
|
|
|
|
vote_delay = dist_delay = interval / 4;
|
|
|
|
|
2007-07-18 22:46:12 +02:00
|
|
|
start = voting_schedule.interval_starts =
|
|
|
|
dirvote_get_start_of_next_interval(now,interval);
|
2007-08-14 22:19:40 +02:00
|
|
|
end = dirvote_get_start_of_next_interval(start+1, interval);
|
|
|
|
|
|
|
|
tor_assert(end > start);
|
|
|
|
|
2007-09-21 21:11:52 +02:00
|
|
|
voting_schedule.fetch_missing_signatures = start - (dist_delay/2);
|
|
|
|
voting_schedule.voting_ends = start - dist_delay;
|
|
|
|
voting_schedule.fetch_missing_votes = start - dist_delay - (vote_delay/2);
|
|
|
|
voting_schedule.voting_starts = start - dist_delay - vote_delay;
|
2007-10-15 22:37:59 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
char tbuf[ISO_TIME_LEN+1];
|
|
|
|
format_iso_time(tbuf, voting_schedule.interval_starts);
|
|
|
|
log_notice(LD_DIR,"Choosing expected valid-after time as %s: "
|
|
|
|
"consensus_set=%d, interval=%d",
|
|
|
|
tbuf, consensus?1:0, interval);
|
|
|
|
}
|
2007-07-30 01:11:44 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Entry point: Take whatever voting actions are pending as of <b>now</b>. */
|
2007-07-30 01:11:44 +02:00
|
|
|
void
|
2007-10-18 16:27:42 +02:00
|
|
|
dirvote_act(or_options_t *options, time_t now)
|
2007-07-30 01:11:44 +02:00
|
|
|
{
|
2007-10-18 16:27:42 +02:00
|
|
|
if (!authdir_mode_v3(options))
|
|
|
|
return;
|
2007-08-15 19:07:27 +02:00
|
|
|
if (!voting_schedule.voting_starts) {
|
|
|
|
char *keys = list_v3_auth_ids();
|
|
|
|
authority_cert_t *c = get_my_v3_authority_cert();
|
2007-09-20 23:46:10 +02:00
|
|
|
log_notice(LD_DIR, "Scheduling voting. Known authority IDs are %s. "
|
2007-08-15 19:07:27 +02:00
|
|
|
"Mine is %s.",
|
|
|
|
keys, hex_str(c->cache_info.identity_digest, DIGEST_LEN));
|
|
|
|
tor_free(keys);
|
2007-10-18 16:27:42 +02:00
|
|
|
dirvote_recalculate_timing(options, now);
|
2007-08-15 19:07:27 +02:00
|
|
|
}
|
2007-07-30 01:11:44 +02:00
|
|
|
if (voting_schedule.voting_starts < now && !voting_schedule.have_voted) {
|
2007-08-14 01:23:06 +02:00
|
|
|
log_notice(LD_DIR, "Time to vote.");
|
2007-07-30 01:11:44 +02:00
|
|
|
dirvote_perform_vote();
|
|
|
|
voting_schedule.have_voted = 1;
|
|
|
|
}
|
2007-09-22 08:06:05 +02:00
|
|
|
if (voting_schedule.fetch_missing_votes < now &&
|
|
|
|
!voting_schedule.have_fetched_missing_votes) {
|
|
|
|
log_notice(LD_DIR, "Time to fetch any votes that we're missing.");
|
|
|
|
dirvote_fetch_missing_votes();
|
|
|
|
voting_schedule.have_fetched_missing_votes = 1;
|
|
|
|
}
|
2007-07-30 01:11:44 +02:00
|
|
|
if (voting_schedule.voting_ends < now &&
|
|
|
|
!voting_schedule.have_built_consensus) {
|
2007-08-14 01:23:06 +02:00
|
|
|
log_notice(LD_DIR, "Time to compute a consensus.");
|
2007-07-30 01:11:44 +02:00
|
|
|
dirvote_compute_consensus();
|
|
|
|
/* XXXX020 we will want to try again later if we haven't got enough
|
|
|
|
* votes yet. */
|
|
|
|
voting_schedule.have_built_consensus = 1;
|
|
|
|
}
|
2007-09-22 08:06:05 +02:00
|
|
|
if (voting_schedule.fetch_missing_signatures < now &&
|
|
|
|
!voting_schedule.have_fetched_missing_signatures) {
|
|
|
|
log_notice(LD_DIR, "Time to fetch any signatures that we're missing.");
|
|
|
|
dirvote_fetch_missing_signatures();
|
|
|
|
voting_schedule.have_fetched_missing_signatures = 1;
|
|
|
|
}
|
2007-07-30 01:11:44 +02:00
|
|
|
if (voting_schedule.interval_starts < now &&
|
|
|
|
!voting_schedule.have_published_consensus) {
|
2007-10-15 16:59:48 +02:00
|
|
|
log_notice(LD_DIR, "Time to publish the consensus and discard old votes");
|
2007-07-30 01:11:44 +02:00
|
|
|
dirvote_publish_consensus();
|
2007-10-15 16:59:48 +02:00
|
|
|
dirvote_clear_votes(0);
|
2007-10-15 21:51:14 +02:00
|
|
|
voting_schedule.have_published_consensus = 1;
|
2007-07-30 01:11:44 +02:00
|
|
|
/* XXXX020 we will want to try again later if we haven't got enough
|
|
|
|
* signatures yet. */
|
2007-10-18 16:27:42 +02:00
|
|
|
dirvote_recalculate_timing(options, now);
|
2007-07-30 01:11:44 +02:00
|
|
|
}
|
2007-07-18 22:46:12 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** A vote networkstatus_vote_t and its unparsed body: held around so we can
|
|
|
|
* use it to generate a consensus (at voting_ends) and so we can serve it to
|
|
|
|
* other authorities that might want it. */
|
2007-07-26 00:56:44 +02:00
|
|
|
typedef struct pending_vote_t {
|
|
|
|
cached_dir_t *vote_body;
|
|
|
|
networkstatus_vote_t *vote;
|
|
|
|
} pending_vote_t;
|
|
|
|
|
2007-10-02 22:19:43 +02:00
|
|
|
/** List of pending_vote_t for the current vote. Before we've used them to
|
|
|
|
* build a consensus, the votes go here. */
|
2007-07-26 00:56:44 +02:00
|
|
|
static smartlist_t *pending_vote_list = NULL;
|
2007-10-02 22:19:43 +02:00
|
|
|
/** List of pending_vote_t for the previous vote. After we've used them to
|
|
|
|
* build a consensus, the votes go here for the next period. */
|
|
|
|
static smartlist_t *previous_vote_list = NULL;
|
2007-08-22 17:07:44 +02:00
|
|
|
/** The body of the consensus that we're currently building. Once we
|
|
|
|
* have it built, it goes into dirserv.c */
|
2007-07-26 00:56:44 +02:00
|
|
|
static char *pending_consensus_body = NULL;
|
2007-08-22 17:07:44 +02:00
|
|
|
/** The detached signatures for the consensus that we're currently
|
|
|
|
* building. */
|
2007-07-27 20:33:30 +02:00
|
|
|
static char *pending_consensus_signatures = NULL;
|
2007-08-22 17:07:44 +02:00
|
|
|
/** The parsed in-progress consensus document. */
|
2007-07-26 22:26:59 +02:00
|
|
|
static networkstatus_vote_t *pending_consensus = NULL;
|
2007-08-22 17:07:44 +02:00
|
|
|
/** List of ns_detached_signatures_t: hold signatures that get posted to us
|
|
|
|
* before we have generated the consensus on our own. */
|
2007-07-27 20:33:34 +02:00
|
|
|
static smartlist_t *pending_consensus_signature_list = NULL;
|
2007-07-26 00:56:44 +02:00
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Generate a networkstatus vote and post it to all the v3 authorities.
|
|
|
|
* (V3 Authority only) */
|
2007-10-02 22:35:23 +02:00
|
|
|
static void
|
2007-07-26 00:56:44 +02:00
|
|
|
dirvote_perform_vote(void)
|
|
|
|
{
|
|
|
|
cached_dir_t *new_vote = generate_v3_networkstatus();
|
|
|
|
pending_vote_t *pending_vote;
|
2007-08-13 23:01:02 +02:00
|
|
|
int status;
|
2007-07-26 00:56:44 +02:00
|
|
|
const char *msg = "";
|
|
|
|
|
2007-08-13 22:05:25 +02:00
|
|
|
if (!new_vote)
|
|
|
|
return;
|
|
|
|
|
2007-08-13 23:01:02 +02:00
|
|
|
if (!(pending_vote = dirvote_add_vote(new_vote->dir, &msg, &status))) {
|
2007-07-26 00:56:44 +02:00
|
|
|
log_warn(LD_DIR, "Couldn't store my own vote! (I told myself, '%s'.)",
|
|
|
|
msg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_VOTE,
|
|
|
|
ROUTER_PURPOSE_GENERAL,
|
|
|
|
V3_AUTHORITY,
|
|
|
|
pending_vote->vote_body->dir,
|
|
|
|
pending_vote->vote_body->dir_len, 0);
|
2007-08-14 01:23:06 +02:00
|
|
|
log_notice(LD_DIR, "Vote posted.");
|
2007-07-26 00:56:44 +02:00
|
|
|
}
|
|
|
|
|
2007-10-04 18:21:58 +02:00
|
|
|
/** Send an HTTP request to every other v3 authority, for the votes of every
|
|
|
|
* authority for which we haven't received a vote yet in this period. (V3
|
|
|
|
* authority only) */
|
2007-09-22 08:06:05 +02:00
|
|
|
static void
|
|
|
|
dirvote_fetch_missing_votes(void)
|
|
|
|
{
|
|
|
|
smartlist_t *missing_fps = smartlist_create();
|
|
|
|
char *resource;
|
|
|
|
|
|
|
|
SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
|
|
|
|
trusted_dir_server_t *, ds,
|
|
|
|
{
|
2007-09-26 01:35:28 +02:00
|
|
|
if (!(ds->type & V3_AUTHORITY))
|
2007-09-22 08:06:05 +02:00
|
|
|
continue;
|
2007-10-09 21:14:48 +02:00
|
|
|
if (!dirvote_get_vote(ds->v3_identity_digest,
|
|
|
|
DGV_BY_ID|DGV_INCLUDE_PENDING)) {
|
2007-09-22 08:06:05 +02:00
|
|
|
char *cp = tor_malloc(HEX_DIGEST_LEN+1);
|
|
|
|
base16_encode(cp, HEX_DIGEST_LEN+1, ds->v3_identity_digest,
|
|
|
|
DIGEST_LEN);
|
|
|
|
smartlist_add(missing_fps, cp);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!smartlist_len(missing_fps)) {
|
|
|
|
smartlist_free(missing_fps);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
log_notice(LOG_NOTICE, "We're missing votes from %d authorities. Asking "
|
|
|
|
"every other authority for a copy.", smartlist_len(missing_fps));
|
|
|
|
resource = smartlist_join_strings(missing_fps, "+", 0, NULL);
|
|
|
|
directory_get_from_all_authorities(DIR_PURPOSE_FETCH_STATUS_VOTE,
|
|
|
|
0, resource);
|
|
|
|
tor_free(resource);
|
|
|
|
SMARTLIST_FOREACH(missing_fps, char *, cp, tor_free(cp));
|
|
|
|
smartlist_free(missing_fps);
|
|
|
|
}
|
|
|
|
|
2007-10-04 18:21:58 +02:00
|
|
|
/** Send a request to every other authority for its detached signatures,
|
|
|
|
* unless we have signatures from all other v3 authorities already. */
|
2007-09-22 08:06:05 +02:00
|
|
|
static void
|
|
|
|
dirvote_fetch_missing_signatures(void)
|
|
|
|
{
|
|
|
|
if (!pending_consensus)
|
|
|
|
return;
|
|
|
|
if (networkstatus_check_consensus_signature(pending_consensus, -1) == 1)
|
|
|
|
return; /* we have a signature from everybody. */
|
|
|
|
|
|
|
|
directory_get_from_all_authorities(DIR_PURPOSE_FETCH_DETACHED_SIGNATURES,
|
|
|
|
0, NULL);
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Drop all currently pending votes, consensus, and detached signatures. */
|
2007-10-02 22:35:23 +02:00
|
|
|
static void
|
2007-10-02 22:19:43 +02:00
|
|
|
dirvote_clear_votes(int all_votes)
|
2007-07-26 00:56:44 +02:00
|
|
|
{
|
2007-10-02 22:19:43 +02:00
|
|
|
if (!previous_vote_list)
|
|
|
|
previous_vote_list = smartlist_create();
|
|
|
|
if (!pending_vote_list)
|
|
|
|
pending_vote_list = smartlist_create();
|
|
|
|
|
|
|
|
/* All "previous" votes are now junk. */
|
|
|
|
SMARTLIST_FOREACH(previous_vote_list, pending_vote_t *, v, {
|
|
|
|
cached_dir_decref(v->vote_body);
|
|
|
|
v->vote_body = NULL;
|
|
|
|
networkstatus_vote_free(v->vote);
|
|
|
|
tor_free(v);
|
|
|
|
});
|
|
|
|
smartlist_clear(previous_vote_list);
|
|
|
|
|
|
|
|
if (all_votes) {
|
|
|
|
/* If we're dumping all the votes, we delete the pending ones. */
|
2007-07-27 20:33:34 +02:00
|
|
|
SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, v, {
|
|
|
|
cached_dir_decref(v->vote_body);
|
|
|
|
v->vote_body = NULL;
|
|
|
|
networkstatus_vote_free(v->vote);
|
|
|
|
tor_free(v);
|
|
|
|
});
|
2007-10-02 22:19:43 +02:00
|
|
|
} else {
|
|
|
|
/* Otherwise, we move them into "previous". */
|
|
|
|
smartlist_add_all(previous_vote_list, pending_vote_list);
|
2007-07-27 20:33:34 +02:00
|
|
|
}
|
2007-10-02 22:19:43 +02:00
|
|
|
smartlist_clear(pending_vote_list);
|
|
|
|
|
2007-07-27 20:33:34 +02:00
|
|
|
if (pending_consensus_signature_list) {
|
|
|
|
SMARTLIST_FOREACH(pending_consensus_signature_list, char *, cp,
|
|
|
|
tor_free(cp));
|
|
|
|
smartlist_clear(pending_consensus_signature_list);
|
|
|
|
}
|
2007-08-14 16:30:45 +02:00
|
|
|
tor_free(pending_consensus_body);
|
|
|
|
tor_free(pending_consensus_signatures);
|
|
|
|
if (pending_consensus) {
|
|
|
|
networkstatus_vote_free(pending_consensus);
|
|
|
|
pending_consensus = NULL;
|
|
|
|
}
|
2007-07-26 00:56:44 +02:00
|
|
|
}
|
|
|
|
|
2007-10-10 21:33:11 +02:00
|
|
|
/** Return a newly allocated string containing the hex-encoded v3 authority
|
|
|
|
identity digest of every recognized v3 authority. */
|
2007-08-15 19:07:27 +02:00
|
|
|
static char *
|
|
|
|
list_v3_auth_ids(void)
|
|
|
|
{
|
|
|
|
smartlist_t *known_v3_keys = smartlist_create();
|
|
|
|
char *keys;
|
|
|
|
SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
|
|
|
|
trusted_dir_server_t *, ds,
|
2007-10-10 21:33:11 +02:00
|
|
|
if ((ds->type & V3_AUTHORITY) &&
|
|
|
|
!tor_digest_is_zero(ds->v3_identity_digest))
|
|
|
|
smartlist_add(known_v3_keys,
|
|
|
|
tor_strdup(hex_str(ds->v3_identity_digest, DIGEST_LEN))));
|
2007-08-15 19:07:27 +02:00
|
|
|
keys = smartlist_join_strings(known_v3_keys, ", ", 0, NULL);
|
|
|
|
SMARTLIST_FOREACH(known_v3_keys, char *, cp, tor_free(cp));
|
|
|
|
smartlist_free(known_v3_keys);
|
|
|
|
return keys;
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Called when we have received a networkstatus vote in <b>vote_body</b>.
|
|
|
|
* Parse and validate it, and on success store it as a pending vote (which we
|
|
|
|
* then return). Return NULL on failure. Sets *<b>msg_out</b> and
|
|
|
|
* *<b>status_out</b> to an HTTP response and status code. (V3 authority
|
|
|
|
* only) */
|
2007-07-26 00:56:44 +02:00
|
|
|
pending_vote_t *
|
2007-08-13 23:01:02 +02:00
|
|
|
dirvote_add_vote(const char *vote_body, const char **msg_out, int *status_out)
|
2007-07-26 00:56:44 +02:00
|
|
|
{
|
|
|
|
networkstatus_vote_t *vote;
|
|
|
|
networkstatus_voter_info_t *vi;
|
|
|
|
trusted_dir_server_t *ds;
|
|
|
|
pending_vote_t *pending_vote = NULL;
|
2007-09-22 08:06:05 +02:00
|
|
|
const char *end_of_vote = NULL;
|
|
|
|
int any_failed = 0;
|
2007-07-26 00:56:44 +02:00
|
|
|
tor_assert(vote_body);
|
|
|
|
tor_assert(msg_out);
|
2007-08-13 23:01:02 +02:00
|
|
|
tor_assert(status_out);
|
2007-07-26 00:56:44 +02:00
|
|
|
|
|
|
|
if (!pending_vote_list)
|
|
|
|
pending_vote_list = smartlist_create();
|
2007-10-09 19:07:13 +02:00
|
|
|
*status_out = 0;
|
2007-07-26 00:56:44 +02:00
|
|
|
*msg_out = NULL;
|
|
|
|
|
2007-09-22 08:06:05 +02:00
|
|
|
again:
|
|
|
|
vote = networkstatus_parse_vote_from_string(vote_body, &end_of_vote, 1);
|
2007-10-09 21:31:14 +02:00
|
|
|
if (!end_of_vote)
|
|
|
|
end_of_vote = vote_body + strlen(vote_body);
|
2007-07-26 00:56:44 +02:00
|
|
|
if (!vote) {
|
2007-10-09 20:43:05 +02:00
|
|
|
log_warn(LD_DIR, "Couldn't parse vote: length was %d",
|
|
|
|
(int)strlen(vote_body));
|
2007-07-26 00:56:44 +02:00
|
|
|
*msg_out = "Unable to parse vote";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
tor_assert(smartlist_len(vote->voters) == 1);
|
2007-08-15 17:38:58 +02:00
|
|
|
vi = get_voter(vote);
|
2007-07-26 00:56:44 +02:00
|
|
|
tor_assert(vi->good_signature == 1);
|
|
|
|
ds = trusteddirserver_get_by_v3_auth_digest(vi->identity_digest);
|
|
|
|
if (!ds || !(ds->type & V3_AUTHORITY)) {
|
2007-08-15 19:07:27 +02:00
|
|
|
char *keys = list_v3_auth_ids();
|
|
|
|
log_warn(LD_DIR, "Got a vote from an authority with authority key ID %s. "
|
|
|
|
"This authority %s. Known v3 key IDs are: %s",
|
|
|
|
hex_str(vi->identity_digest, DIGEST_LEN),
|
|
|
|
ds?"is not recognized":"is recognized, but is not listed as v3",
|
|
|
|
keys);
|
|
|
|
tor_free(keys);
|
|
|
|
|
2007-07-26 00:56:44 +02:00
|
|
|
*msg_out = "Vote not from a recognized v3 authority";
|
|
|
|
goto err;
|
|
|
|
}
|
2007-07-28 02:11:34 +02:00
|
|
|
tor_assert(vote->cert);
|
|
|
|
if (!authority_cert_get_by_digests(vote->cert->cache_info.identity_digest,
|
|
|
|
vote->cert->signing_key_digest)) {
|
|
|
|
/* Hey, it's a new cert! */
|
|
|
|
trusted_dirs_load_certs_from_string(
|
|
|
|
vote->cert->cache_info.signed_descriptor_body,
|
|
|
|
0 /* from_store */);
|
2007-08-14 15:34:35 +02:00
|
|
|
if (!authority_cert_get_by_digests(vote->cert->cache_info.identity_digest,
|
|
|
|
vote->cert->signing_key_digest)) {
|
|
|
|
log_warn(LD_BUG, "We added a cert, but still couldn't find it.");
|
|
|
|
}
|
2007-07-28 02:11:34 +02:00
|
|
|
}
|
|
|
|
|
2007-09-11 22:17:20 +02:00
|
|
|
/* Is it for the right period? */
|
|
|
|
if (vote->valid_after != voting_schedule.interval_starts) {
|
|
|
|
char tbuf1[ISO_TIME_LEN+1], tbuf2[ISO_TIME_LEN+1];
|
|
|
|
format_iso_time(tbuf1, vote->valid_after);
|
|
|
|
format_iso_time(tbuf2, voting_schedule.interval_starts);
|
|
|
|
log_warn(LD_DIR, "Rejecting vote with valid-after time of %s; we were "
|
|
|
|
"expecting %s", tbuf1, tbuf2);
|
|
|
|
*msg_out = "Bad valid-after time";
|
|
|
|
goto err;
|
|
|
|
}
|
2007-07-26 00:56:44 +02:00
|
|
|
|
2007-09-22 08:06:05 +02:00
|
|
|
/* Now see whether we already h<ave a vote from this authority.*/
|
2007-07-26 00:56:44 +02:00
|
|
|
SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, v, {
|
|
|
|
if (! memcmp(v->vote->cert->cache_info.identity_digest,
|
|
|
|
vote->cert->cache_info.identity_digest,
|
|
|
|
DIGEST_LEN)) {
|
2007-08-15 17:38:58 +02:00
|
|
|
networkstatus_voter_info_t *vi_old = get_voter(v->vote);
|
2007-08-13 22:45:36 +02:00
|
|
|
if (!memcmp(vi_old->vote_digest, vi->vote_digest, DIGEST_LEN)) {
|
|
|
|
/* Ah, it's the same vote. Not a problem. */
|
|
|
|
log_info(LD_DIR, "Discarding a vote we already have.");
|
2007-10-09 19:07:13 +02:00
|
|
|
if (*status_out < 200)
|
|
|
|
*status_out = 200;
|
|
|
|
goto discard;
|
2007-08-13 22:45:36 +02:00
|
|
|
} else if (v->vote->published < vote->published) {
|
|
|
|
log_notice(LD_DIR, "Replacing an older pending vote from this "
|
|
|
|
"directory.");
|
2007-07-26 00:56:44 +02:00
|
|
|
cached_dir_decref(v->vote_body);
|
|
|
|
networkstatus_vote_free(v->vote);
|
2007-10-09 21:31:14 +02:00
|
|
|
v->vote_body = new_cached_dir(tor_strndup(vote_body,
|
|
|
|
end_of_vote-vote_body),
|
2007-07-26 00:56:50 +02:00
|
|
|
vote->published);
|
2007-07-26 00:56:44 +02:00
|
|
|
v->vote = vote;
|
2007-09-26 01:57:12 +02:00
|
|
|
if (end_of_vote &&
|
|
|
|
!strcmpstart(end_of_vote, "network-status-version"))
|
|
|
|
goto again;
|
|
|
|
|
2007-10-09 19:07:13 +02:00
|
|
|
if (*status_out < 200)
|
2007-09-26 01:57:12 +02:00
|
|
|
*status_out = 200;
|
2007-10-09 19:07:13 +02:00
|
|
|
if (!*msg_out)
|
|
|
|
*msg_out = "OK";
|
2007-07-26 00:56:44 +02:00
|
|
|
return v;
|
|
|
|
} else {
|
|
|
|
*msg_out = "Already have a newer pending vote";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
pending_vote = tor_malloc_zero(sizeof(pending_vote_t));
|
2007-10-09 21:31:14 +02:00
|
|
|
pending_vote->vote_body = new_cached_dir(tor_strndup(vote_body,
|
|
|
|
end_of_vote-vote_body),
|
2007-07-26 00:56:50 +02:00
|
|
|
vote->published);
|
2007-07-26 00:56:44 +02:00
|
|
|
pending_vote->vote = vote;
|
|
|
|
smartlist_add(pending_vote_list, pending_vote);
|
2007-09-22 08:06:05 +02:00
|
|
|
|
2007-10-09 21:31:14 +02:00
|
|
|
if (!strcmpstart(end_of_vote, "network-status-version ")) {
|
|
|
|
vote_body = end_of_vote;
|
2007-09-22 08:06:05 +02:00
|
|
|
goto again;
|
2007-10-09 21:31:14 +02:00
|
|
|
}
|
2007-09-22 08:06:05 +02:00
|
|
|
|
2007-10-09 19:07:13 +02:00
|
|
|
goto done;
|
2007-09-22 08:06:05 +02:00
|
|
|
|
2007-07-26 00:56:44 +02:00
|
|
|
err:
|
2007-09-22 08:06:05 +02:00
|
|
|
any_failed = 1;
|
2007-07-26 00:56:44 +02:00
|
|
|
if (!*msg_out)
|
|
|
|
*msg_out = "Error adding vote";
|
2007-10-09 19:07:13 +02:00
|
|
|
if (*status_out < 400)
|
2007-08-13 23:01:02 +02:00
|
|
|
*status_out = 400;
|
2007-09-22 08:06:05 +02:00
|
|
|
|
2007-10-09 19:07:13 +02:00
|
|
|
discard:
|
|
|
|
if (vote)
|
|
|
|
networkstatus_vote_free(vote);
|
|
|
|
|
2007-10-09 21:31:14 +02:00
|
|
|
if (end_of_vote && !strcmpstart(end_of_vote, "network-status-version ")) {
|
|
|
|
vote_body = end_of_vote;
|
2007-09-22 08:06:05 +02:00
|
|
|
goto again;
|
2007-10-09 21:31:14 +02:00
|
|
|
}
|
2007-10-09 19:07:13 +02:00
|
|
|
|
|
|
|
done:
|
|
|
|
|
|
|
|
if (*status_out < 200)
|
|
|
|
*status_out = 200;
|
2007-10-16 17:34:14 +02:00
|
|
|
if (!*msg_out) {
|
|
|
|
if (!any_failed && !pending_vote) {
|
|
|
|
*msg_out = "Duplicate discarded";
|
|
|
|
} else {
|
|
|
|
*msg_out = "ok";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-09 19:07:13 +02:00
|
|
|
return any_failed ? NULL : pending_vote;
|
2007-07-26 00:56:44 +02:00
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Try to compute a v3 networkstatus consensus from the currently pending
|
|
|
|
* votes. Return 0 on success, -1 on failure. Store the consensus in
|
|
|
|
* pending_consensus: it won't be ready to be published until we have
|
|
|
|
* everybody else's signatures collected too. (V3 Authoritity only) */
|
2007-10-02 22:35:23 +02:00
|
|
|
static int
|
2007-07-26 00:56:44 +02:00
|
|
|
dirvote_compute_consensus(void)
|
|
|
|
{
|
|
|
|
/* Have we got enough votes to try? */
|
|
|
|
int n_votes, n_voters;
|
|
|
|
smartlist_t *votes = NULL;
|
2007-07-27 20:33:30 +02:00
|
|
|
char *consensus_body = NULL, *signatures = NULL;
|
2007-07-26 22:26:59 +02:00
|
|
|
networkstatus_vote_t *consensus = NULL;
|
2007-07-26 00:56:44 +02:00
|
|
|
authority_cert_t *my_cert;
|
|
|
|
|
|
|
|
if (!pending_vote_list)
|
|
|
|
pending_vote_list = smartlist_create();
|
|
|
|
|
|
|
|
n_voters = get_n_authorities(V3_AUTHORITY);
|
|
|
|
n_votes = smartlist_len(pending_vote_list);
|
2007-08-14 04:23:57 +02:00
|
|
|
if (n_votes <= n_voters/2) {
|
|
|
|
log_warn(LD_DIR, "We don't have enough votes to generate a consensus.");
|
|
|
|
goto err;
|
|
|
|
}
|
2007-07-26 00:56:44 +02:00
|
|
|
|
|
|
|
if (!(my_cert = get_my_v3_authority_cert())) {
|
|
|
|
log_warn(LD_DIR, "Can't generate consensus without a certificate.");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
votes = smartlist_create();
|
|
|
|
SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, v,
|
|
|
|
smartlist_add(votes, v->vote));
|
|
|
|
|
|
|
|
consensus_body = networkstatus_compute_consensus(
|
|
|
|
votes, n_voters,
|
|
|
|
my_cert->identity_key,
|
|
|
|
get_my_v3_authority_signing_key());
|
2007-08-13 22:17:14 +02:00
|
|
|
if (!consensus_body) {
|
|
|
|
log_warn(LD_DIR, "Couldn't generate a consensus at all!");
|
|
|
|
goto err;
|
|
|
|
}
|
2007-09-22 08:06:05 +02:00
|
|
|
consensus = networkstatus_parse_vote_from_string(consensus_body, NULL, 0);
|
2007-07-26 22:26:59 +02:00
|
|
|
if (!consensus) {
|
|
|
|
log_warn(LD_DIR, "Couldn't parse consensus we generated!");
|
|
|
|
goto err;
|
|
|
|
}
|
2007-08-14 18:39:18 +02:00
|
|
|
/* 'Check' our own signature, to mark it valid. */
|
2007-09-11 22:17:25 +02:00
|
|
|
networkstatus_check_consensus_signature(consensus, -1);
|
2007-08-14 18:39:18 +02:00
|
|
|
|
2007-07-27 20:33:30 +02:00
|
|
|
signatures = networkstatus_get_detached_signatures(consensus);
|
|
|
|
if (!signatures) {
|
|
|
|
log_warn(LD_DIR, "Couldn't extract signatures.");
|
|
|
|
goto err;
|
|
|
|
}
|
2007-07-26 22:26:59 +02:00
|
|
|
|
2007-07-26 00:56:44 +02:00
|
|
|
tor_free(pending_consensus_body);
|
|
|
|
pending_consensus_body = consensus_body;
|
2007-07-27 20:33:30 +02:00
|
|
|
tor_free(pending_consensus_signatures);
|
|
|
|
pending_consensus_signatures = signatures;
|
2007-07-26 00:56:44 +02:00
|
|
|
|
2007-07-26 22:26:59 +02:00
|
|
|
if (pending_consensus)
|
|
|
|
networkstatus_vote_free(pending_consensus);
|
|
|
|
pending_consensus = consensus;
|
|
|
|
|
2007-07-30 01:11:44 +02:00
|
|
|
if (pending_consensus_signature_list) {
|
2007-08-14 04:23:57 +02:00
|
|
|
int n_sigs = 0;
|
2007-07-30 01:11:44 +02:00
|
|
|
/* we may have gotten signatures for this consensus before we built
|
|
|
|
* it ourself. Add them now. */
|
|
|
|
SMARTLIST_FOREACH(pending_consensus_signature_list, char *, sig,
|
|
|
|
{
|
|
|
|
const char *msg = NULL;
|
2007-08-14 04:23:57 +02:00
|
|
|
n_sigs += dirvote_add_signatures_to_pending_consensus(sig, &msg);
|
2007-07-30 01:11:44 +02:00
|
|
|
tor_free(sig);
|
|
|
|
});
|
2007-08-14 04:23:57 +02:00
|
|
|
if (n_sigs)
|
|
|
|
log_notice(LD_DIR, "Added %d pending signatures while building "
|
|
|
|
"consensus.", n_sigs);
|
2007-07-30 01:11:44 +02:00
|
|
|
smartlist_clear(pending_consensus_signature_list);
|
|
|
|
}
|
|
|
|
|
2007-08-14 16:30:45 +02:00
|
|
|
log_notice(LD_DIR, "Consensus computed; uploading signature(s)");
|
|
|
|
|
|
|
|
directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_SIGNATURES,
|
|
|
|
ROUTER_PURPOSE_GENERAL,
|
|
|
|
V3_AUTHORITY,
|
|
|
|
pending_consensus_signatures,
|
|
|
|
strlen(pending_consensus_signatures), 0);
|
|
|
|
log_notice(LD_DIR, "Signature(s) posted.");
|
|
|
|
|
2007-07-26 00:56:44 +02:00
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
if (votes)
|
|
|
|
smartlist_free(votes);
|
2007-07-26 22:26:59 +02:00
|
|
|
tor_free(consensus_body);
|
2007-07-27 20:33:30 +02:00
|
|
|
tor_free(signatures);
|
2007-07-26 22:26:59 +02:00
|
|
|
networkstatus_vote_free(consensus);
|
|
|
|
|
2007-07-26 00:56:44 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2007-07-26 00:56:50 +02:00
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Helper: we just got the <b>deteached_signatures_body</b> sent to us as
|
|
|
|
* signatures on the currently pending consensus. Add them to the consensus
|
|
|
|
* as appropriate. Return the number of signatures added. (?) */
|
2007-07-27 20:33:34 +02:00
|
|
|
static int
|
|
|
|
dirvote_add_signatures_to_pending_consensus(
|
|
|
|
const char *detached_signatures_body,
|
|
|
|
const char **msg_out)
|
|
|
|
{
|
|
|
|
ns_detached_signatures_t *sigs = NULL;
|
2007-09-12 19:33:18 +02:00
|
|
|
int r = -1;
|
2007-07-27 20:33:34 +02:00
|
|
|
|
|
|
|
tor_assert(detached_signatures_body);
|
|
|
|
tor_assert(msg_out);
|
|
|
|
|
|
|
|
/* Only call if we have a pending consensus right now. */
|
|
|
|
tor_assert(pending_consensus);
|
|
|
|
tor_assert(pending_consensus_body);
|
|
|
|
tor_assert(pending_consensus_signatures);
|
|
|
|
|
|
|
|
*msg_out = NULL;
|
|
|
|
|
|
|
|
if (!(sigs = networkstatus_parse_detached_signatures(
|
|
|
|
detached_signatures_body, NULL))) {
|
|
|
|
*msg_out = "Couldn't parse detached signatures.";
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = networkstatus_add_detached_signatures(pending_consensus,
|
2007-10-19 18:41:32 +02:00
|
|
|
sigs, msg_out);
|
2007-08-15 18:12:40 +02:00
|
|
|
|
2007-09-12 19:33:18 +02:00
|
|
|
if (r >= 0) {
|
2007-08-15 18:12:40 +02:00
|
|
|
char *new_detached =
|
|
|
|
networkstatus_get_detached_signatures(pending_consensus);
|
|
|
|
const char *src;
|
|
|
|
char *dst;
|
|
|
|
size_t new_consensus_len =
|
|
|
|
strlen(pending_consensus_body) + strlen(new_detached) + 1;
|
|
|
|
pending_consensus_body = tor_realloc(pending_consensus_body,
|
|
|
|
new_consensus_len);
|
|
|
|
dst = strstr(pending_consensus_body, "directory-signature ");
|
|
|
|
tor_assert(dst);
|
|
|
|
src = strstr(new_detached, "directory-signature ");
|
|
|
|
tor_assert(src);
|
|
|
|
strlcpy(dst, src, new_consensus_len - (dst-pending_consensus_body));
|
|
|
|
|
2007-09-12 19:33:18 +02:00
|
|
|
/* XXXX020 remove this block once it has failed to crash for a while. */
|
2007-08-15 18:12:40 +02:00
|
|
|
{
|
|
|
|
ns_detached_signatures_t *sigs =
|
|
|
|
networkstatus_parse_detached_signatures(new_detached, NULL);
|
|
|
|
networkstatus_vote_t *v = networkstatus_parse_vote_from_string(
|
2007-09-22 08:06:05 +02:00
|
|
|
pending_consensus_body, NULL, 0);
|
2007-08-15 18:12:40 +02:00
|
|
|
tor_assert(sigs);
|
|
|
|
ns_detached_signatures_free(sigs);
|
|
|
|
tor_assert(v);
|
|
|
|
networkstatus_vote_free(v);
|
|
|
|
}
|
|
|
|
tor_free(pending_consensus_signatures);
|
|
|
|
pending_consensus_signatures = new_detached;
|
2007-10-10 01:02:02 +02:00
|
|
|
*msg_out = "Signatures added";
|
|
|
|
} else {
|
2007-10-19 18:41:32 +02:00
|
|
|
goto err;
|
2007-08-15 18:12:40 +02:00
|
|
|
}
|
2007-07-27 20:33:34 +02:00
|
|
|
|
|
|
|
goto done;
|
|
|
|
err:
|
|
|
|
if (!msg_out)
|
|
|
|
*msg_out = "Unrecognized error while adding detached signatures.";
|
|
|
|
done:
|
|
|
|
if (sigs)
|
|
|
|
ns_detached_signatures_free(sigs);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Helper: we just got the <b>deteached_signatures_body</b> sent to us as
|
|
|
|
* signatures on the currently pending consensus. Add them to the pending
|
|
|
|
* consensus (if we have one); otherwise queue them until we have a
|
2007-10-10 01:02:02 +02:00
|
|
|
* consensus. Return negative on failure, nonnegative on success. */
|
2007-07-27 20:33:34 +02:00
|
|
|
int
|
2007-10-10 01:02:02 +02:00
|
|
|
dirvote_add_signatures(const char *detached_signatures_body,
|
|
|
|
const char **msg)
|
2007-07-27 20:33:34 +02:00
|
|
|
{
|
|
|
|
if (pending_consensus) {
|
2007-08-14 16:30:45 +02:00
|
|
|
log_notice(LD_DIR, "Got a signature. Adding it to the pending consensus.");
|
2007-07-27 20:33:34 +02:00
|
|
|
return dirvote_add_signatures_to_pending_consensus(
|
2007-10-10 01:02:02 +02:00
|
|
|
detached_signatures_body, msg);
|
2007-07-27 20:33:34 +02:00
|
|
|
} else {
|
2007-08-14 16:30:45 +02:00
|
|
|
log_notice(LD_DIR, "Got a signature. Queueing it for the next consensus.");
|
2007-07-27 20:33:34 +02:00
|
|
|
if (!pending_consensus_signature_list)
|
|
|
|
pending_consensus_signature_list = smartlist_create();
|
|
|
|
smartlist_add(pending_consensus_signature_list,
|
|
|
|
tor_strdup(detached_signatures_body));
|
2007-10-10 01:02:02 +02:00
|
|
|
*msg = "Signature queued";
|
2007-07-27 20:33:34 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Replace the consensus that we're currently serving with the one that we've
|
|
|
|
* been building. (V3 Authority only) */
|
2007-10-02 22:35:23 +02:00
|
|
|
static int
|
2007-07-30 01:11:44 +02:00
|
|
|
dirvote_publish_consensus(void)
|
|
|
|
{
|
|
|
|
/* Can we actually publish it yet? */
|
|
|
|
if (!pending_consensus ||
|
2007-09-11 22:17:25 +02:00
|
|
|
networkstatus_check_consensus_signature(pending_consensus, 1)<0) {
|
2007-08-14 01:23:06 +02:00
|
|
|
log_warn(LD_DIR, "Not enough info to publish pending consensus");
|
2007-07-30 01:11:44 +02:00
|
|
|
return -1;
|
2007-08-14 01:23:06 +02:00
|
|
|
}
|
2007-07-30 01:11:44 +02:00
|
|
|
|
2007-09-11 22:17:28 +02:00
|
|
|
if (networkstatus_set_current_consensus(pending_consensus_body, 0, 0))
|
2007-08-14 01:23:06 +02:00
|
|
|
log_warn(LD_DIR, "Error publishing consensus");
|
|
|
|
else
|
2007-09-21 01:02:13 +02:00
|
|
|
log_notice(LD_DIR, "Consensus published.");
|
2007-08-14 16:30:45 +02:00
|
|
|
|
2007-07-30 01:11:44 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-27 20:33:30 +02:00
|
|
|
/** Release all static storage held in dirvote.c */
|
|
|
|
void
|
|
|
|
dirvote_free_all(void)
|
|
|
|
{
|
2007-10-02 22:19:43 +02:00
|
|
|
dirvote_clear_votes(1);
|
|
|
|
/* now empty as a result of clear_pending_votes. */
|
|
|
|
smartlist_free(pending_vote_list);
|
|
|
|
pending_vote_list = NULL;
|
|
|
|
smartlist_free(previous_vote_list);
|
|
|
|
previous_vote_list = NULL;
|
|
|
|
|
2007-07-27 20:33:30 +02:00
|
|
|
tor_free(pending_consensus_body);
|
|
|
|
tor_free(pending_consensus_signatures);
|
|
|
|
if (pending_consensus) {
|
|
|
|
networkstatus_vote_free(pending_consensus);
|
|
|
|
pending_consensus = NULL;
|
|
|
|
}
|
2007-07-27 20:33:34 +02:00
|
|
|
if (pending_consensus_signature_list) {
|
|
|
|
/* now empty as a result of clear_pending_votes. */
|
|
|
|
smartlist_free(pending_consensus_signature_list);
|
|
|
|
pending_consensus_signature_list = NULL;
|
|
|
|
}
|
2007-07-27 20:33:30 +02:00
|
|
|
}
|
2007-07-30 01:18:06 +02:00
|
|
|
|
2007-08-15 21:55:52 +02:00
|
|
|
/* ====
|
|
|
|
* Access to pending items.
|
|
|
|
* ==== */
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Return the body of the consensus that we're currently trying to build. */
|
2007-08-15 21:55:52 +02:00
|
|
|
const char *
|
|
|
|
dirvote_get_pending_consensus(void)
|
|
|
|
{
|
|
|
|
return pending_consensus_body;
|
|
|
|
}
|
|
|
|
|
2007-08-22 17:07:44 +02:00
|
|
|
/** Return the signatures that we know for the consensus that we're currently
|
|
|
|
* trying to build */
|
2007-08-15 21:55:52 +02:00
|
|
|
const char *
|
|
|
|
dirvote_get_pending_detached_signatures(void)
|
|
|
|
{
|
|
|
|
return pending_consensus_signatures;
|
|
|
|
}
|
|
|
|
|
2007-10-04 18:21:58 +02:00
|
|
|
/** Return a given vote specified by <b>fp</b>. If <b>by_id</b>, return the
|
|
|
|
* vote for the authority with the v3 authority identity key digest <b>fp</b>;
|
|
|
|
* if <b>by_id</b> is false, return the vote whose digest is <b>fp</b>. If
|
|
|
|
* <b>fp</b> is NULL, return our own vote. If <b>include_previous</b> is
|
|
|
|
* false, do not consider any votes for a consensus that's already been built.
|
|
|
|
* If <b>include_pending</b> is false, do not consider any votes for the
|
|
|
|
* consensus that's in progress. May return NULL if we have no vote for the
|
|
|
|
* authority in question. */
|
2007-08-15 21:55:52 +02:00
|
|
|
const cached_dir_t *
|
2007-10-09 21:14:48 +02:00
|
|
|
dirvote_get_vote(const char *fp, int flags)
|
2007-08-15 21:55:52 +02:00
|
|
|
{
|
2007-10-09 21:14:48 +02:00
|
|
|
int by_id = flags & DGV_BY_ID;
|
|
|
|
const int include_pending = flags & DGV_INCLUDE_PENDING;
|
|
|
|
const int include_previous = flags & DGV_INCLUDE_PREVIOUS;
|
|
|
|
|
2007-10-02 22:19:43 +02:00
|
|
|
if (!pending_vote_list && !previous_vote_list)
|
2007-08-15 21:55:52 +02:00
|
|
|
return NULL;
|
2007-10-02 22:19:43 +02:00
|
|
|
if (fp == NULL) {
|
2007-08-15 21:55:52 +02:00
|
|
|
authority_cert_t *c = get_my_v3_authority_cert();
|
2007-10-02 22:19:43 +02:00
|
|
|
if (c) {
|
|
|
|
fp = c->cache_info.identity_digest;
|
|
|
|
by_id = 1;
|
|
|
|
} else
|
2007-08-15 21:55:52 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2007-10-02 22:19:43 +02:00
|
|
|
if (by_id) {
|
|
|
|
if (pending_vote_list && include_pending) {
|
|
|
|
SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, pv,
|
|
|
|
if (!memcmp(get_voter(pv->vote)->identity_digest, fp, DIGEST_LEN))
|
|
|
|
return pv->vote_body);
|
|
|
|
}
|
|
|
|
if (previous_vote_list && include_previous) {
|
|
|
|
SMARTLIST_FOREACH(previous_vote_list, pending_vote_t *, pv,
|
|
|
|
if (!memcmp(get_voter(pv->vote)->identity_digest, fp, DIGEST_LEN))
|
|
|
|
return pv->vote_body);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (pending_vote_list && include_pending) {
|
|
|
|
SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, pv,
|
|
|
|
if (!memcmp(pv->vote->networkstatus_digest, fp, DIGEST_LEN))
|
|
|
|
return pv->vote_body);
|
|
|
|
}
|
|
|
|
if (previous_vote_list && include_previous) {
|
|
|
|
SMARTLIST_FOREACH(previous_vote_list, pending_vote_t *, pv,
|
|
|
|
if (!memcmp(pv->vote->networkstatus_digest, fp, DIGEST_LEN))
|
|
|
|
return pv->vote_body);
|
|
|
|
}
|
|
|
|
}
|
2007-08-15 21:55:52 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|