TARAXA
Loading...
Searching...
No Matches
vote_manager.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "common/util.hpp"
7#include "pbft/pbft_chain.hpp"
8#include "vote/pbft_vote.hpp"
10
11namespace taraxa {
12
17class Network;
18class SlashingManager;
19class PbftVote;
20struct PbftConfig;
21struct FullNodeConfig;
22
23namespace network::tarcap {
24class TaraxaPeer;
25}
26
31 public:
32 VoteManager(const FullNodeConfig& config, std::shared_ptr<DbStorage> db, std::shared_ptr<PbftChain> pbft_chain,
33 std::shared_ptr<final_chain::FinalChain> final_chain, std::shared_ptr<KeyManager> key_manager,
34 std::shared_ptr<SlashingManager> slashing_manager);
35 ~VoteManager() = default;
36 VoteManager(const VoteManager&) = delete;
40
45 void setNetwork(std::weak_ptr<Network> network);
46
53 bool addVerifiedVote(const std::shared_ptr<PbftVote>& vote);
54
60 bool voteInVerifiedMap(std::shared_ptr<PbftVote> const& vote) const;
61
66 std::pair<bool, std::shared_ptr<PbftVote>> isUniqueVote(const std::shared_ptr<PbftVote>& vote) const;
67
72 std::vector<std::shared_ptr<PbftVote>> getVerifiedVotes() const;
73
78 uint64_t getVerifiedVotesSize() const;
79
84 void cleanupVotesByPeriod(PbftPeriod pbft_period);
85
92 std::vector<std::shared_ptr<PbftVote>> getProposalVotes(PbftPeriod period, PbftRound round) const;
93
100 std::optional<PbftRound> determineNewRound(PbftPeriod current_pbft_period, PbftRound current_pbft_round);
101
111 void resetRewardVotes(PbftPeriod period, PbftRound round, PbftStep step, const blk_hash_t& block_hash, Batch& batch);
112
120 std::pair<bool, std::vector<std::shared_ptr<PbftVote>>> checkRewardVotes(const std::shared_ptr<PbftBlock>& pbft_block,
121 bool copy_votes);
122
128 std::vector<std::shared_ptr<PbftVote>> getRewardVotes();
129
136
142 void saveOwnVerifiedVote(const std::shared_ptr<PbftVote>& vote);
143
147 std::vector<std::shared_ptr<PbftVote>> getOwnVerifiedVotes();
148
154 void clearOwnVerifiedVotes(Batch& write_batch);
155
166 std::shared_ptr<PbftVote> generateVoteWithWeight(const blk_hash_t& blockhash, PbftVoteTypes vote_type,
167 PbftPeriod period, PbftRound round, PbftStep step,
168 const WalletConfig& wallet);
169
180 std::shared_ptr<PbftVote> generateVote(const blk_hash_t& blockhash, PbftVoteTypes type, PbftPeriod period,
181 PbftRound round, PbftStep step, const WalletConfig& wallet);
182
190 std::pair<bool, std::string> validateVote(const std::shared_ptr<PbftVote>& vote, bool strict = true) const;
191
198 std::optional<uint64_t> getPbftTwoTPlusOne(PbftPeriod pbft_period, PbftVoteTypes vote_type) const;
199
204 bool voteAlreadyValidated(const vote_hash_t& vote_hash) const;
205
211 bool genAndValidateVrfSortition(PbftPeriod pbft_period, PbftRound pbft_round, const WalletConfig& wallet) const;
212
221 std::optional<blk_hash_t> getTwoTPlusOneVotedBlock(PbftPeriod period, PbftRound round,
222 TwoTPlusOneVotedBlockType type) const;
223
232 std::vector<std::shared_ptr<PbftVote>> getTwoTPlusOneVotedBlockVotes(PbftPeriod period, PbftRound round,
233 TwoTPlusOneVotedBlockType type) const;
234
242 void setCurrentPbftPeriodAndRound(PbftPeriod pbft_period, PbftRound pbft_round);
243
254
255 private:
260 bool isValidRewardVote(const std::shared_ptr<PbftVote>& vote) const;
261
268 uint64_t getPbftSortitionThreshold(uint64_t total_dpos_votes_count, PbftVoteTypes vote_type) const;
269
270 private:
272
273 std::shared_ptr<DbStorage> db_;
274 std::shared_ptr<PbftChain> pbft_chain_;
275 std::shared_ptr<final_chain::FinalChain> final_chain_;
276 std::shared_ptr<KeyManager> key_manager_;
277 std::weak_ptr<Network> network_;
278 std::shared_ptr<SlashingManager> slashing_manager_;
279
280 // Current pbft period based on pbft_manager
281 std::atomic<PbftPeriod> current_pbft_period_{0};
282 // Current pbft round based on pbft_manager
283 std::atomic<PbftRound> current_pbft_round_{0};
284
285 // Main storage for all verified votes
287
288 // Reward votes related info
292 std::vector<vote_hash_t> extra_reward_votes_;
293 mutable std::shared_mutex reward_votes_info_mutex_;
294
295 // Own votes generated during current period & round
296 std::vector<std::shared_ptr<PbftVote>> own_verified_votes_;
297
298 // Cache for current 2T+1 - <Vote type, <period, two_t_plus_one for period>>
299 // !!! Important: do not access it directly as it is not updated automatically, always call getPbftTwoTPlusOne instead
300 // !!!
301 mutable std::unordered_map<PbftVoteTypes, std::pair<PbftPeriod, uint64_t>> current_two_t_plus_one_;
302 mutable std::shared_mutex current_two_t_plus_one_mutex_;
303
304 // Votes that have been already validated in terms of signature, stake, etc...
305 // It is used as protection against ddos attack so we do no validate/process vote more than once
307
309};
310
313} // namespace taraxa
Definition util.hpp:202
Definition verified_votes.hpp:51
void resetRewardVotes(PbftPeriod period, PbftRound round, PbftStep step, const blk_hash_t &block_hash, Batch &batch)
Replace current reward votes with new period, round & block hash based on vote.
Definition vote_manager.cpp:387
std::optional< PbftRound > determineNewRound(PbftPeriod current_pbft_period, PbftRound current_pbft_round)
Check if there are enough next voting type votes to set PBFT to a forward round within period.
Definition vote_manager.cpp:350
~VoteManager()=default
std::shared_mutex reward_votes_info_mutex_
Definition vote_manager.hpp:293
bool addVerifiedVote(const std::shared_ptr< PbftVote > &vote)
Add a vote to the verified votes map.
Definition vote_manager.cpp:139
std::shared_ptr< final_chain::FinalChain > final_chain_
Definition vote_manager.hpp:275
std::pair< bool, std::vector< std::shared_ptr< PbftVote > > > checkRewardVotes(const std::shared_ptr< PbftBlock > &pbft_block, bool copy_votes)
Check reward votes for specified pbft block.
Definition vote_manager.cpp:477
bool voteAlreadyValidated(const vote_hash_t &vote_hash) const
Definition vote_manager.cpp:762
std::optional< uint64_t > getPbftTwoTPlusOne(PbftPeriod pbft_period, PbftVoteTypes vote_type) const
Get 2t+1. 2t+1 is 2/3 of PBFT sortition threshold and plus 1 for a specific period.
Definition vote_manager.cpp:728
std::vector< vote_hash_t > extra_reward_votes_
Definition vote_manager.hpp:292
blk_hash_t reward_votes_block_hash_
Definition vote_manager.hpp:289
std::pair< bool, std::shared_ptr< PbftVote > > isUniqueVote(const std::shared_ptr< PbftVote > &vote) const
Definition vote_manager.cpp:282
VoteManager(const VoteManager &)=delete
std::vector< std::shared_ptr< PbftVote > > getVerifiedVotes() const
Get all verified votes.
Definition vote_manager.cpp:76
std::shared_ptr< DbStorage > db_
Definition vote_manager.hpp:273
const PbftConfig & kPbftConfig
Definition vote_manager.hpp:271
std::atomic< PbftPeriod > current_pbft_period_
Definition vote_manager.hpp:281
bool voteInVerifiedMap(std::shared_ptr< PbftVote > const &vote) const
Check if the vote has been in the verified votes map.
Definition vote_manager.cpp:268
std::shared_ptr< PbftVote > generateVote(const blk_hash_t &blockhash, PbftVoteTypes type, PbftPeriod period, PbftRound round, PbftStep step, const WalletConfig &wallet)
Generate a vote.
Definition vote_manager.cpp:669
void setNetwork(std::weak_ptr< Network > network)
Set network as a weak pointer.
Definition vote_manager.cpp:74
void clearOwnVerifiedVotes(Batch &write_batch)
Clear own verified votes.
Definition vote_manager.cpp:614
bool genAndValidateVrfSortition(PbftPeriod pbft_period, PbftRound pbft_round, const WalletConfig &wallet) const
Generates vrf sortition and calculates its weight.
Definition vote_manager.cpp:766
uint64_t getPbftSortitionThreshold(uint64_t total_dpos_votes_count, PbftVoteTypes vote_type) const
Get PBFT sortition threshold for specific period.
Definition vote_manager.cpp:619
std::shared_ptr< PbftChain > pbft_chain_
Definition vote_manager.hpp:274
std::vector< std::shared_ptr< PbftVote > > getOwnVerifiedVotes()
Definition vote_manager.cpp:612
std::shared_ptr< KeyManager > key_manager_
Definition vote_manager.hpp:276
std::shared_ptr< SlashingManager > slashing_manager_
Definition vote_manager.hpp:278
void saveOwnVerifiedVote(const std::shared_ptr< PbftVote > &vote)
Saves own verified vote into memory and db.
Definition vote_manager.cpp:607
VoteManager(VoteManager &&)=delete
std::vector< std::shared_ptr< PbftVote > > getProposalVotes(PbftPeriod period, PbftRound round) const
Get all verified votes in proposal vote type for the current PBFT round.
Definition vote_manager.cpp:333
void setCurrentPbftPeriodAndRound(PbftPeriod pbft_period, PbftRound pbft_round)
Sets current pbft period & round. It also checks if we dont already have 2t+1 vote bundles(pf any typ...
Definition vote_manager.cpp:82
std::unordered_map< PbftVoteTypes, std::pair< PbftPeriod, uint64_t > > current_two_t_plus_one_
Definition vote_manager.hpp:301
VerifiedVotes verified_votes_
Definition vote_manager.hpp:286
std::weak_ptr< Network > network_
Definition vote_manager.hpp:277
std::vector< std::shared_ptr< PbftVote > > own_verified_votes_
Definition vote_manager.hpp:296
std::atomic< PbftRound > current_pbft_round_
Definition vote_manager.hpp:283
ExpirationCache< vote_hash_t > already_validated_votes_
Definition vote_manager.hpp:306
VoteManager & operator=(const VoteManager &)=delete
std::vector< std::shared_ptr< PbftVote > > getRewardVotes()
Get reward votes with the round during which was the previous block pushed.
Definition vote_manager.cpp:582
std::vector< std::shared_ptr< PbftVote > > getTwoTPlusOneVotedBlockVotes(PbftPeriod period, PbftRound round, TwoTPlusOneVotedBlockType type) const
Definition vote_manager.cpp:807
std::shared_ptr< PbftVote > generateVoteWithWeight(const blk_hash_t &blockhash, PbftVoteTypes vote_type, PbftPeriod period, PbftRound round, PbftStep step, const WalletConfig &wallet)
Place a vote, save it in the verified votes queue, and gossip to peers.
Definition vote_manager.cpp:631
uint64_t getVerifiedVotesSize() const
Get the total size of all verified votes.
Definition vote_manager.cpp:78
std::pair< bool, std::string > validateVote(const std::shared_ptr< PbftVote > &vote, bool strict=true) const
Validates vote.
Definition vote_manager.cpp:676
PbftStep getNetworkTplusOneNextVotingStep(PbftPeriod period, PbftRound round) const
Returns greatest step (in specified period & round), for which there is at least t+1 voting power fro...
Definition vote_manager.cpp:130
PbftPeriod getRewardVotesPbftBlockPeriod()
Get current reward votes pbft block period.
Definition vote_manager.cpp:382
PbftRound reward_votes_round_
Definition vote_manager.hpp:291
bool isValidRewardVote(const std::shared_ptr< PbftVote > &vote) const
Definition vote_manager.cpp:444
std::optional< blk_hash_t > getTwoTPlusOneVotedBlock(PbftPeriod period, PbftRound round, TwoTPlusOneVotedBlockType type) const
Get 2t+1 voted block for specific period, round and type, e.g. soft/cert/next voted block.
Definition vote_manager.cpp:798
PbftRound reward_votes_period_
Definition vote_manager.hpp:290
VoteManager & operator=(VoteManager &&)=delete
std::shared_mutex current_two_t_plus_one_mutex_
Definition vote_manager.hpp:302
void cleanupVotesByPeriod(PbftPeriod pbft_period)
Cleanup votes for specified PBFT period.
Definition vote_manager.cpp:80
VoteManager class manage votes for PBFT consensus.
Definition vote_manager.hpp:30
PbftVoteTypes
Definition vrf_sortition.hpp:21
#define LOG_OBJECTS_DEFINE
Definition logger.hpp:60
Definition app.hpp:16
rocksdb::WriteBatch Batch
Definition storage.hpp:70
uint32_t PbftStep
Definition types.hpp:26
uint32_t PbftRound
Definition types.hpp:25
EthBlockNumber PbftPeriod
Definition types.hpp:24
TwoTPlusOneVotedBlockType
Definition verified_votes.hpp:13
Definition config.hpp:40
Definition pbft_config.hpp:9
Definition config.hpp:22