mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
prop250: Add memory and disk state in new files
This commit introduces two new files with their header. "shared_random.c" contains basic functions to initialize the state and allow commit decoding for the disk state to be able to parse them from disk. "shared_random_state.c" contains everything that has to do with the state for both our memory and disk. Lots of helper functions as well as a mechanism to query the state in a synchronized way. Signed-off-by: David Goulet <dgoulet@torproject.org> Signed-off-by: George Kadianakis <desnacked@riseup.net>
This commit is contained in:
@@ -0,0 +1,126 @@
|
||||
/* Copyright (c) 2016, The Tor Project, Inc. */
|
||||
/* See LICENSE for licensing information */
|
||||
|
||||
#ifndef TOR_SHARED_RANDOM_STATE_H
|
||||
#define TOR_SHARED_RANDOM_STATE_H
|
||||
|
||||
#include "shared_random.h"
|
||||
|
||||
/* Action that can be performed on the state for any objects. */
|
||||
typedef enum {
|
||||
SR_STATE_ACTION_GET = 1,
|
||||
SR_STATE_ACTION_PUT = 2,
|
||||
SR_STATE_ACTION_DEL_ALL = 3,
|
||||
SR_STATE_ACTION_SAVE = 4,
|
||||
} sr_state_action_t;
|
||||
|
||||
/* Object in the state that can be queried through the state API. */
|
||||
typedef enum {
|
||||
/* Will return a single commit using an authority identity key. */
|
||||
SR_STATE_OBJ_COMMIT,
|
||||
/* Returns the entire list of commits from the state. */
|
||||
SR_STATE_OBJ_COMMITS,
|
||||
/* Return the current SRV object pointer. */
|
||||
SR_STATE_OBJ_CURSRV,
|
||||
/* Return the previous SRV object pointer. */
|
||||
SR_STATE_OBJ_PREVSRV,
|
||||
/* Return the phase. */
|
||||
SR_STATE_OBJ_PHASE,
|
||||
/* Get or Put the valid after time. */
|
||||
SR_STATE_OBJ_VALID_AFTER,
|
||||
} sr_state_object_t;
|
||||
|
||||
/* State of the protocol. It's also saved on disk in fname. This data
|
||||
* structure MUST be synchronized at all time with the one on disk. */
|
||||
typedef struct sr_state_t {
|
||||
/* Filename of the state file on disk. */
|
||||
char *fname;
|
||||
/* Version of the protocol. */
|
||||
uint8_t version;
|
||||
/* The valid-after of the voting period we have prepared the state for. */
|
||||
time_t valid_after;
|
||||
/* Until when is this state valid? */
|
||||
time_t valid_until;
|
||||
/* Protocol phase. */
|
||||
sr_phase_t phase;
|
||||
|
||||
/* Number of runs completed. */
|
||||
uint64_t n_protocol_runs;
|
||||
/* The number of commitment rounds we've performed in this protocol run. */
|
||||
unsigned int n_commit_rounds;
|
||||
/* The number of reveal rounds we've performed in this protocol run. */
|
||||
unsigned int n_reveal_rounds;
|
||||
|
||||
/* A map of all the received commitments for this protocol run. This is
|
||||
* indexed by authority RSA identity digest. */
|
||||
digestmap_t *commits;
|
||||
|
||||
/* Current and previous shared random value. */
|
||||
sr_srv_t *previous_srv;
|
||||
sr_srv_t *current_srv;
|
||||
|
||||
/* Indicate if the state contains an SRV that was _just_ generated. This is
|
||||
* used during voting so that we know whether to use the super majority rule
|
||||
* or not when deciding on keeping it for the consensus. It is _always_ set
|
||||
* to 0 post consensus.
|
||||
*
|
||||
* EDGE CASE: if an authority computes a new SRV then immediately reboots
|
||||
* and, once back up, votes for the current round, it won't know if the
|
||||
* SRV is fresh or not ultimately making it _NOT_ use the super majority
|
||||
* when deciding to put or not the SRV in the consensus. This is for now
|
||||
* an acceptable very rare edge case. */
|
||||
unsigned int is_srv_fresh:1;
|
||||
} sr_state_t;
|
||||
|
||||
/* Persistent state of the protocol, as saved to disk. */
|
||||
typedef struct sr_disk_state_t {
|
||||
uint32_t magic_;
|
||||
/* Version of the protocol. */
|
||||
int Version;
|
||||
/* Version of our running tor. */
|
||||
char *TorVersion;
|
||||
/* Creation time of this state */
|
||||
time_t ValidAfter;
|
||||
/* State valid until? */
|
||||
time_t ValidUntil;
|
||||
/* All commits seen that are valid. */
|
||||
config_line_t *Commit;
|
||||
/* Previous and current shared random value. */
|
||||
config_line_t *SharedRandValues;
|
||||
/* Extra Lines for configuration we might not know. */
|
||||
config_line_t *ExtraLines;
|
||||
} sr_disk_state_t;
|
||||
|
||||
/* API */
|
||||
|
||||
/* Public methods: */
|
||||
|
||||
/* Private methods (only used by shared-random.c): */
|
||||
|
||||
void sr_state_set_valid_after(time_t valid_after);
|
||||
sr_phase_t sr_state_get_phase(void);
|
||||
sr_srv_t *sr_state_get_previous_srv(void);
|
||||
sr_srv_t *sr_state_get_current_srv(void);
|
||||
void sr_state_set_previous_srv(const sr_srv_t *srv);
|
||||
void sr_state_set_current_srv(const sr_srv_t *srv);
|
||||
void sr_state_clean_srvs(void);
|
||||
digestmap_t *sr_state_get_commits(void);
|
||||
sr_commit_t *sr_state_get_commit(const char *rsa_fpr);
|
||||
void sr_state_add_commit(sr_commit_t *commit);
|
||||
void sr_state_delete_commits(void);
|
||||
unsigned int sr_state_srv_is_fresh(void);
|
||||
void sr_state_set_fresh_srv(void);
|
||||
void sr_state_unset_fresh_srv(void);
|
||||
int sr_state_init(int save_to_disk, int read_from_disk);
|
||||
void sr_state_save(void);
|
||||
void sr_state_free(void);
|
||||
|
||||
#ifdef SHARED_RANDOM_STATE_PRIVATE
|
||||
|
||||
STATIC int disk_state_load_from_disk_impl(const char *fname);
|
||||
STATIC sr_phase_t get_sr_protocol_phase(time_t valid_after);
|
||||
STATIC time_t get_state_valid_until_time(time_t now);
|
||||
|
||||
#endif /* SHARED_RANDOM_STATE_PRIVATE */
|
||||
|
||||
#endif /* TOR_SHARED_RANDOM_STATE_H */
|
||||
Reference in New Issue
Block a user