forked from postech-dao/simperby
-
Notifications
You must be signed in to change notification settings - Fork 3
/
misbehavior.rs
131 lines (111 loc) · 3.59 KB
/
misbehavior.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
use super::*;
use state::*;
use std::collections::HashMap;
/// comment for check_double_proposal
pub(crate) fn check_double_proposal(
state: &ConsensusState,
target_round: Round,
) -> Vec<ConsensusResponse> {
let proposals: Vec<_> = state
.proposals
.iter()
.filter(|(_, proposal)| proposal.round == target_round)
.map(|(_, proposal)| proposal)
.collect();
if proposals.len() > 1 {
let byzantine_signer = proposals[0].proposer;
let (origin_proposal, new_proposal) = (proposals[0].proposal, proposals[1].proposal);
return vec![ConsensusResponse::ViolationReport {
violator: 0,
misbehavior: Misbehavior::DoubleProposal {
byzantine_node: byzantine_signer,
round: target_round,
proposals: (origin_proposal, new_proposal),
},
}];
}
Vec::new()
}
/// comment for check_double_prevote
pub(crate) fn check_double_prevote(
state: &ConsensusState,
target_round: Round,
) -> Vec<ConsensusResponse> {
let mut validators_map = HashMap::new();
for vote in state.prevotes.iter() {
let (count, origin_proposal) = validators_map
.entry(vote.signer)
.or_insert((0, vote.proposal));
*count += 1;
if *count == 2 {
let new_proposal = vote.proposal;
let byzantine_signer = vote.signer;
return vec![ConsensusResponse::ViolationReport {
violator: byzantine_signer,
misbehavior: Misbehavior::DoublePrevote {
byzantine_node: byzantine_signer,
round: target_round,
proposals: (*origin_proposal, new_proposal),
},
}];
}
}
Vec::new()
}
/// comment for check_double_precommit
pub(crate) fn check_double_precommit(
state: &ConsensusState,
target_round: Round,
) -> Vec<ConsensusResponse> {
let mut validators_map = HashMap::new();
for vote in state.precommits.iter() {
let (count, origin_proposal) = validators_map
.entry(vote.signer)
.or_insert((0, vote.proposal));
*count += 1;
if *count == 2 {
let byzantine_signer = vote.signer;
let new_proposal = vote.proposal;
return vec![ConsensusResponse::ViolationReport {
violator: byzantine_signer,
misbehavior: Misbehavior::DoublePrecommit {
byzantine_node: byzantine_signer,
round: target_round,
proposals: (*origin_proposal, new_proposal),
},
}];
}
}
Vec::new()
}
/// comment for check_invalid_proposal
pub(crate) fn check_invalid_proposal(
byzantine_proposer: usize,
target_round: Round,
target_proposal: BlockIdentifier,
) -> Vec<ConsensusResponse> {
return vec![ConsensusResponse::ViolationReport {
violator: byzantine_proposer,
misbehavior: Misbehavior::InvalidProposal {
byzantine_node: byzantine_proposer,
round: target_round,
proposal: target_proposal,
},
}];
}
/// comment for check_invalid_prevote
pub(crate) fn check_invalid_prevote(
state: &ConsensusState,
target_round: Round,
target_proposal: BlockIdentifier,
) -> Vec<ConsensusResponse> {
unimplemented!()
}
/// comment for check_invalid_precommit
pub(crate) fn check_invalid_precommit(
state: &ConsensusState,
check_round: Round,
check_proposal: BlockIdentifier,
) -> Vec<ConsensusResponse> {
unimplemented!()
}