-
Notifications
You must be signed in to change notification settings - Fork 212
/
full.go
181 lines (168 loc) · 4.59 KB
/
full.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
173
174
175
176
177
178
179
180
181
package tortoise
import (
"time"
"go.uber.org/zap"
"github.com/spacemeshos/go-spacemesh/common/types"
)
func newFullTortoise(config Config, state *state) *full {
return &full{
Config: config,
state: state,
delayed: map[types.LayerID][]*ballotInfo{},
}
}
type full struct {
Config
*state
// counted weights up to this layer.
//
// counting votes is what makes full tortoise expensive during rerun.
// we want to wait until verifying can't make progress before they are counted.
// storing them in current version is cheap.
counted types.LayerID
// delayed ballots by the layer when they are safe to count
delayed map[types.LayerID][]*ballotInfo
}
func (f *full) countBallot(logger *zap.Logger, ballot *ballotInfo) {
start := time.Now()
if f.shouldBeDelayed(logger, ballot) {
return
}
if ballot.malicious {
return
}
for lvote := ballot.votes.tail; lvote != nil; lvote = lvote.prev {
if !lvote.lid.After(f.evicted) {
break
}
if lvote.vote == abstain {
continue
}
layer := f.layer(lvote.lid)
empty := true
for _, block := range layer.blocks {
if block.height > ballot.reference.height {
continue
}
vote := lvote.getVote(block)
switch vote {
case support:
empty = false
block.margin = block.margin.Add(ballot.weight)
case against:
block.margin = block.margin.Sub(ballot.weight)
}
}
if empty {
layer.empty = layer.empty.Add(ballot.weight)
} else {
layer.empty = layer.empty.Sub(ballot.weight)
}
}
fcountBallotDuration.Observe(float64(time.Since(start).Nanoseconds()))
}
func (f *full) countForLateBlock(block *blockInfo) {
start := time.Now()
for lid := block.layer.Add(1); !lid.After(f.counted); lid = lid.Add(1) {
for _, ballot := range f.ballots[lid] {
if block.height > ballot.reference.height {
continue
}
for current := ballot.votes.tail; current != nil && !current.lid.Before(block.layer); current = current.prev {
if current.lid != block.layer {
continue
}
if current.vote == abstain {
continue
}
block.margin = block.margin.Sub(ballot.weight)
}
}
}
lateBlockDuration.Observe(float64(time.Since(start).Nanoseconds()))
}
func (f *full) countDelayed(logger *zap.Logger, lid types.LayerID) {
delayed, exist := f.delayed[lid]
if !exist {
return
}
delete(f.delayed, lid)
for _, ballot := range delayed {
delayedBallots.Dec()
f.countBallot(logger, ballot)
}
}
func (f *full) countVotes(logger *zap.Logger) {
for lid := f.counted.Add(1); !lid.After(f.processed); lid = lid.Add(1) {
for _, ballot := range f.ballots[lid] {
f.countBallot(logger, ballot)
}
}
f.counted = f.processed
}
func (f *full) verify(logger *zap.Logger, lid types.LayerID) (bool, bool) {
threshold := f.globalThreshold(f.Config, lid)
layer := f.state.layer(lid)
empty := crossesThreshold(layer.empty, threshold) == support
if len(layer.blocks) == 0 {
if empty {
logger.Debug("candidate layer is empty",
zap.Uint32("candidate layer", lid.Uint32()),
zap.Float64("global threshold", threshold.Float()),
zap.Float64("empty weight", layer.empty.Float()),
)
} else {
logger.Debug("margin is too low to terminate layer as empty",
zap.Uint32("candidate layer", lid.Uint32()),
zap.Float64("global threshold", threshold.Float()),
zap.Float64("empty weight", layer.empty.Float()),
)
}
return empty, false
}
logger.Debug("global treshold",
zap.Uint32("target", lid.Uint32()),
zap.Float64("threshold", threshold.Float()),
)
rst, changes := verifyLayer(
logger,
layer.blocks,
func(block *blockInfo) sign {
decision := crossesThreshold(block.margin, threshold)
if decision == neutral && empty {
return against
}
return decision
},
)
if changes {
logger.Info("candidate layer is verified",
zapBlocks(layer.blocks),
zap.String("verifier", "full"),
zap.Uint32("counted layer", f.counted.Uint32()),
zap.Uint32("candidate layer", lid.Uint32()),
zap.Float64("local threshold", f.localThreshold.Float()),
zap.Float64("global threshold", threshold.Float()),
zap.Float64("empty weight", layer.empty.Float()),
zap.Bool("is empty", empty),
)
}
return rst, changes
}
func (f *full) shouldBeDelayed(logger *zap.Logger, ballot *ballotInfo) bool {
if !ballot.conditions.badBeacon {
return false
}
delay := ballot.layer.Add(f.BadBeaconVoteDelayLayers)
if !delay.After(f.last) {
return false
}
logger.Debug("ballot is delayed",
zap.Stringer("id", ballot.id),
zap.Uint32("ballot lid", ballot.layer.Uint32()),
zap.Uint32("counted at", delay.Uint32()),
)
delayedBallots.Inc()
f.delayed[delay] = append(f.delayed[delay], ballot)
return true
}