-
Notifications
You must be signed in to change notification settings - Fork 211
/
committracker.go
172 lines (154 loc) · 4.54 KB
/
committracker.go
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package hare
import (
"context"
"github.com/spacemeshos/go-spacemesh/common/types"
"github.com/spacemeshos/go-spacemesh/log"
)
type commitTrackerProvider interface {
OnCommit(context.Context, *Message)
HasEnoughCommits() bool
BuildCertificate() *Certificate
CommitCount() *CountInfo
}
// commitTracker tracks commit messages and build the certificate according to the tracked messages.
type commitTracker struct {
logger log.Log
round uint32
malCh chan<- *types.MalfeasanceGossip
seenSenders map[types.NodeID]*types.HareProofMsg // tracks seen senders
committed map[types.NodeID]struct{}
commits []Message // tracks Set->Commits
proposedSet *Set // follows the set who has max number of commits
threshold int // the number of required commits
eTracker *EligibilityTracker
finalTally *CountInfo
}
func newCommitTracker(
logger log.Log,
round uint32,
mch chan<- *types.MalfeasanceGossip,
et *EligibilityTracker,
threshold, expectedSize int,
proposedSet *Set,
) *commitTracker {
return &commitTracker{
logger: logger,
round: round,
malCh: mch,
eTracker: et,
seenSenders: make(map[types.NodeID]*types.HareProofMsg, expectedSize),
committed: make(map[types.NodeID]struct{}, expectedSize),
commits: make([]Message, 0, threshold),
proposedSet: proposedSet,
threshold: threshold,
}
}
// OnCommit tracks the given commit message.
func (ct *commitTracker) OnCommit(ctx context.Context, msg *Message) {
if ct.proposedSet == nil { // no valid proposed set
return
}
if ct.HasEnoughCommits() {
return
}
metadata := types.HareMetadata{
Layer: msg.Layer,
Round: msg.Round,
MsgHash: msg.signedHash,
}
if prev, ok := ct.seenSenders[msg.SmesherID]; ok {
if !prev.InnerMsg.Equivocation(&metadata) {
return
}
ct.logger.WithContext(ctx).With().Warning("equivocation detected in commit round",
log.Stringer("smesher", msg.SmesherID),
log.Object("prev", &prev.InnerMsg),
log.Object("curr", &metadata),
)
ct.eTracker.Track(msg.SmesherID, msg.Round, msg.Eligibility.Count, false)
this := &types.HareProofMsg{
InnerMsg: metadata,
SmesherID: msg.SmesherID,
Signature: msg.Signature,
}
if err := reportEquivocation(ctx, msg.SmesherID, prev, this, &msg.Eligibility, ct.malCh); err != nil {
ct.logger.WithContext(ctx).With().Warning("failed to report equivocation in commit round",
log.Stringer("smesher", msg.SmesherID),
log.Err(err),
)
return
}
return
}
ct.seenSenders[msg.SmesherID] = &types.HareProofMsg{
InnerMsg: metadata,
SmesherID: msg.SmesherID,
Signature: msg.Signature,
}
s := NewSet(msg.Values)
if !ct.proposedSet.Equals(s) { // ignore commit on different set
return
}
// add msg
ct.commits = append(ct.commits, *msg)
ct.committed[msg.SmesherID] = struct{}{}
}
// HasEnoughCommits returns true if the tracker can build a certificate, false otherwise.
func (ct *commitTracker) HasEnoughCommits() bool {
if ct.proposedSet == nil {
return false
}
if ct.finalTally != nil {
return true
}
ci := ct.CommitCount()
enough := ci.Meet(ct.threshold)
if enough {
ct.finalTally = ci
if ci.numDishonest > 0 {
ct.logger.With().Warning("counting votes from malicious identities",
log.Object("eligibility_count", ci))
} else {
ct.logger.With().Info("commit round completed", log.Object("eligibility_count", ci))
}
}
return enough
}
// CommitCount tallies the eligibility count for the commit messages on the proposed set.
// if it crosses the threshold, cache it.
func (ct *commitTracker) CommitCount() *CountInfo {
if ct.finalTally != nil {
return ct.finalTally
}
var ci CountInfo
ct.eTracker.ForEach(ct.round, func(node types.NodeID, cr *Cred) {
// only counts the eligibility count from the committed msgs
if _, ok := ct.committed[node]; ok {
if cr.Honest {
ci.IncHonest(cr.Count)
} else {
ci.IncDishonest(cr.Count)
}
} else if !cr.Honest {
ci.IncKnownEquivocator(cr.Count)
}
})
return &ci
}
// BuildCertificate returns a certificate if there are enough commits, nil otherwise
// Returns the certificate if it has enough commit Messages, nil otherwise.
func (ct *commitTracker) BuildCertificate() *Certificate {
if !ct.HasEnoughCommits() {
return nil
}
c := &Certificate{}
c.Values = ct.proposedSet.ToSlice()
c.AggMsgs = &AggregatedMessages{}
c.AggMsgs.Messages = ct.commits // just enough to fit eligibility threshold
// optimize msg size by setting Values to nil
for _, commit := range c.AggMsgs.Messages {
commit.Values = nil
}
// TODO: set c.AggMsgs.AggSig
return c
}