summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2016-05-10 11:37:28 -0400
committerDavid Goulet <dgoulet@torproject.org>2016-07-01 14:01:41 -0400
commit8ac88f6f9739c5fd5fd5b47af63592faa80b8307 (patch)
tree0bd2da4e51557dda7a5a263f1b0f9e1c7f5efa4c /src
parent056b6186adeb5ee92d0899f60b5e061bfc11a8ba (diff)
downloadtor-8ac88f6f9739c5fd5fd5b47af63592faa80b8307.tar.gz
tor-8ac88f6f9739c5fd5fd5b47af63592faa80b8307.zip
prop250: Add a valid flag to sr_commit_t
We assert on it using the ASSERT_COMMIT_VALID() macro in critical places where we use them expecting a commit to be valid. Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src')
-rw-r--r--src/or/shared_random.c9
-rw-r--r--src/or/shared_random.h5
-rw-r--r--src/or/shared_random_state.c3
3 files changed, 17 insertions, 0 deletions
diff --git a/src/or/shared_random.c b/src/or/shared_random.c
index 967e1e112d..e56a23918e 100644
--- a/src/or/shared_random.c
+++ b/src/or/shared_random.c
@@ -700,6 +700,8 @@ save_commit_to_state(sr_commit_t *commit)
{
sr_phase_t phase = sr_state_get_phase();
+ ASSERT_COMMIT_VALID(commit);
+
switch (phase) {
case SR_PHASE_COMMIT:
/* During commit phase, just save any new authoritative commit */
@@ -914,6 +916,8 @@ sr_generate_our_commit(time_t timestamp, const authority_cert_t *my_rsa_cert)
log_debug(LD_DIR, "SR: Generated our commitment:");
commit_log(commit);
+ /* Our commit better be valid :). */
+ commit->valid = 1;
return commit;
error:
@@ -942,6 +946,8 @@ sr_compute_srv(void)
/* We must make a list of commit ordered by authority fingerprint in
* ascending order as specified by proposal 250. */
DIGESTMAP_FOREACH(state_commits, key, sr_commit_t *, c) {
+ /* Extra safety net, make sure we have valid commit before using it. */
+ ASSERT_COMMIT_VALID(c);
smartlist_add(commits, c);
} DIGESTMAP_FOREACH_END;
smartlist_sort(commits, compare_reveal_);
@@ -1130,6 +1136,9 @@ sr_handle_received_commits(smartlist_t *commits, crypto_pk_t *voter_key)
sr_commit_free(commit);
continue;
}
+ /* Ok, we have a valid commit now that we are about to put in our state.
+ * so flag it valid from now on. */
+ commit->valid = 1;
/* Everything lines up: save this commit to state then! */
save_commit_to_state(commit);
} SMARTLIST_FOREACH_END(commit);
diff --git a/src/or/shared_random.h b/src/or/shared_random.h
index 573c499efc..f89f47a11b 100644
--- a/src/or/shared_random.h
+++ b/src/or/shared_random.h
@@ -48,6 +48,9 @@
#define SR_SRV_VALUE_BASE64_LEN \
(((DIGEST256_LEN - 1) / 3) * 4 + 4)
+/* Assert if commit valid flag is not set. */
+#define ASSERT_COMMIT_VALID(c) tor_assert((c)->valid)
+
/* Protocol phase. */
typedef enum {
/* Commitment phase */
@@ -68,6 +71,8 @@ typedef struct sr_srv_t {
typedef struct sr_commit_t {
/* Hashing algorithm used. */
digest_algorithm_t alg;
+ /* Indicate if this commit has been verified thus valid. */
+ unsigned int valid:1;
/* Commit owner info */
diff --git a/src/or/shared_random_state.c b/src/or/shared_random_state.c
index 326b8c9cf0..115d95410b 100644
--- a/src/or/shared_random_state.c
+++ b/src/or/shared_random_state.c
@@ -410,6 +410,9 @@ disk_state_parse_commits(sr_state_t *state,
* fingerprint that we don't know about so it shouldn't be used. */
continue;
}
+ /* We consider parseable commit from our disk state to be valid because
+ * they need to be in the first place to get in there. */
+ commit->valid = 1;
/* Add commit to our state pointer. */
commit_add_to_state(commit, state);