-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathoffchain.go
334 lines (309 loc) · 10.8 KB
/
offchain.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
package core
import (
"bytes"
"math/big"
"sort"
"github.com/harmony-one/harmony/block"
nodeconfig "github.com/harmony-one/harmony/internal/configs/node"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/rlp"
"github.com/harmony-one/harmony/consensus/reward"
"github.com/harmony-one/harmony/core/rawdb"
"github.com/harmony-one/harmony/core/state"
"github.com/harmony-one/harmony/core/types"
"github.com/harmony-one/harmony/internal/utils"
"github.com/harmony-one/harmony/shard"
"github.com/harmony-one/harmony/staking/slash"
staking "github.com/harmony-one/harmony/staking/types"
"github.com/pkg/errors"
)
func (bc *BlockChainImpl) CommitOffChainData(
batch rawdb.DatabaseWriter,
block *types.Block,
receipts []*types.Receipt,
cxReceipts []*types.CXReceipt,
stakeMsgs []staking.StakeMsg,
payout reward.Reader,
state *state.DB,
) (status WriteStatus, err error) {
// Write receipts of the block
if err := rawdb.WriteReceipts(batch, block.Hash(), block.NumberU64(), receipts); err != nil {
return NonStatTy, err
}
isBeaconChain := bc.CurrentHeader().ShardID() == shard.BeaconChainShardID
isStaking := bc.chainConfig.IsStaking(block.Epoch())
isPreStaking := bc.chainConfig.IsPreStaking(block.Epoch())
header := block.Header()
isNewEpoch := block.IsLastBlockInEpoch()
// Cross-shard txns
epoch := block.Header().Epoch()
if bc.chainConfig.HasCrossTxFields(block.Epoch()) {
shardingConfig := shard.Schedule.InstanceForEpoch(epoch)
shardNum := int(shardingConfig.NumShards())
for i := 0; i < shardNum; i++ {
if i == int(block.ShardID()) {
continue
}
shardReceipts := types.CXReceipts(cxReceipts).GetToShardReceipts(uint32(i))
if err := rawdb.WriteCXReceipts(
batch, uint32(i), block.NumberU64(), block.Hash(), shardReceipts,
); err != nil {
utils.Logger().Error().Err(err).
Interface("shardReceipts", shardReceipts).
Int("toShardID", i).
Msg("WriteCXReceipts cannot write into database")
return NonStatTy, err
}
}
// Mark incomingReceipts in the block as spent
if err := bc.WriteCXReceiptsProofSpent(batch, block.IncomingReceipts()); err != nil {
return NonStatTy, err
}
}
// VRF + VDF
// check non zero VRF field in header and add to local db
// if len(block.Vrf()) > 0 {
// vrfBlockNumbers, _ := bc.ReadEpochVrfBlockNums(block.Header().Epoch())
// if (len(vrfBlockNumbers) > 0) && (vrfBlockNumbers[len(vrfBlockNumbers)-1] == block.NumberU64()) {
// utils.Logger().Error().
// Str("number", block.Number().String()).
// Str("epoch", block.Header().Epoch().String()).
// Msg("VRF block number is already in local db")
// } else {
// vrfBlockNumbers = append(vrfBlockNumbers, block.NumberU64())
// err = bc.WriteEpochVrfBlockNums(block.Header().Epoch(), vrfBlockNumbers)
// if err != nil {
// utils.Logger().Error().
// Str("number", block.Number().String()).
// Str("epoch", block.Header().Epoch().String()).
// Msg("failed to write VRF block number to local db")
// return NonStatTy, err
// }
// }
//}
//
////check non zero Vdf in header and add to local db
//if len(block.Vdf()) > 0 {
// err = bc.WriteEpochVdfBlockNum(block.Header().Epoch(), block.Number())
// if err != nil {
// utils.Logger().Error().
// Str("number", block.Number().String()).
// Str("epoch", block.Header().Epoch().String()).
// Msg("failed to write VDF block number to local db")
// return NonStatTy, err
// }
//}
nextBlockEpoch, err := bc.getNextBlockEpoch(header)
if err != nil {
return NonStatTy, err
}
// Shard State and Validator Update
if isNewEpoch {
// Write shard state for the new epoch
_, err := bc.WriteShardStateBytes(batch, nextBlockEpoch, header.ShardState())
if err != nil {
header.Logger(utils.Logger()).Warn().Err(err).Msg("cannot store shard state")
return NonStatTy, err
}
}
// Do bookkeeping for new staking txns
newVals, err := bc.UpdateStakingMetaData(
batch, block, stakeMsgs, state, epoch, nextBlockEpoch,
)
if err != nil {
utils.Logger().Err(err).Msg("UpdateStakingMetaData failed")
return NonStatTy, err
}
// Snapshot for all validators for new epoch at the second to last block
// This snapshot of the state is consistent with the state used for election
if isBeaconChain && shard.Schedule.IsLastBlock(header.Number().Uint64()+1) {
// Update snapshots for all validators
// Beacon chain always snapshot for the next epoch as cur_epoch + 1
// as beacon chain won't have gap in epochs.
newEpoch := big.NewInt(0).Add(header.Epoch(), big.NewInt(1))
if err := bc.UpdateValidatorSnapshots(batch, newEpoch, state, newVals); err != nil {
return NonStatTy, err
}
}
// Writing beacon chain cross links
if isBeaconChain &&
bc.chainConfig.IsCrossLink(block.Epoch()) &&
len(header.CrossLinks()) > 0 {
crossLinks := &types.CrossLinks{}
if err := rlp.DecodeBytes(
header.CrossLinks(), crossLinks,
); err != nil {
header.Logger(utils.Logger()).Err(err).
Msg("[insertChain/crosslinks] cannot parse cross links")
return NonStatTy, err
}
if !crossLinks.IsSorted() {
header.Logger(utils.Logger()).Err(err).
Msg("[insertChain/crosslinks] cross links are not sorted")
return NonStatTy, errors.New("proposed cross links are not sorted")
}
for _, crossLink := range *crossLinks {
// Process crosslink
if err := bc.WriteCrossLinks(
batch, types.CrossLinks{crossLink},
); err == nil {
utils.Logger().Info().
Uint64("blockNum", crossLink.BlockNum()).
Uint32("shardID", crossLink.ShardID()).
Msg("[insertChain/crosslinks] Cross Link Added to Beaconchain")
} else {
utils.Logger().Debug().Err(err).
Uint64("blockNum", crossLink.BlockNum()).
Uint32("shardID", crossLink.ShardID()).
Msg("[insertChain/crosslinks] Cross Link failed to Add to Beaconchain")
}
cl0, _ := bc.ReadShardLastCrossLink(crossLink.ShardID())
if cl0 == nil {
// make sure it is written at least once, so that it is overwritten below
// under "Roll up latest crosslinks"
rawdb.WriteShardLastCrossLink(batch, crossLink.ShardID(), crossLink.Serialize())
}
}
// clean/update local database cache after crosslink inserted into blockchain
num, err := bc.DeleteFromPendingCrossLinks(*crossLinks)
if err != nil && nodeconfig.GetDefaultConfig().ShardID == shard.BeaconChainShardID {
// Only beacon chain worries about this
const msg = "DeleteFromPendingCrossLinks, crosslinks in header %d, pending crosslinks: %d, problem: %+v"
utils.Logger().Debug().Msgf(msg, len(*crossLinks), num, err)
}
const msg = "DeleteFromPendingCrossLinks, crosslinks in header %d, pending crosslinks: %d"
utils.Logger().
Debug().
Msgf(msg, len(*crossLinks), num)
utils.Logger().Debug().Msgf(msg, len(*crossLinks), num)
}
if isBeaconChain && bc.Config().IsCrossLink(bc.CurrentBlock().Epoch()) {
// Roll up latest crosslinks
for i, c := uint32(0), shard.Schedule.InstanceForEpoch(
epoch,
).NumShards(); i < c; i++ {
bc.LastContinuousCrossLink(batch, i)
}
}
// BELOW ARE NON-MISSION-CRITICAL COMMITS
// Update voting power of validators for all shards
tempValidatorStats := map[common.Address]*staking.ValidatorStats{}
if isNewEpoch && isBeaconChain {
currentSuperCommittee, _ := bc.ReadShardState(bc.CurrentHeader().Epoch())
if shardState, err := shard.DecodeWrapper(
header.ShardState(),
); err == nil {
if stats, err := UpdateValidatorVotingPower(
bc, block, shardState, currentSuperCommittee, state,
); err != nil {
utils.Logger().
Err(err).
Msg("[UpdateValidatorVotingPower] Failed to update voting power")
} else {
tempValidatorStats = stats
}
} else {
utils.Logger().
Err(err).
Msg("[UpdateValidatorVotingPower] Failed to decode shard state")
}
}
// Update block reward accumulator and slashes
if isBeaconChain {
if isStaking {
roundResult := payout.ReadRoundResult()
if err := bc.UpdateBlockRewardAccumulator(
batch, roundResult.Total, block.Number().Uint64(),
); err != nil {
return NonStatTy, err
}
for _, paid := range roundResult.Payouts {
stats, ok := tempValidatorStats[paid.Addr]
if !ok {
stats, err = bc.ReadValidatorStats(paid.Addr)
if err != nil {
utils.Logger().Info().Err(err).
Str("addr", paid.Addr.Hex()).
Str("bls-earning-key", paid.EarningKey.Hex()).
Msg("could not read validator stats to update for earning per key")
continue
}
tempValidatorStats[paid.Addr] = stats
}
for j := range stats.MetricsPerShard {
if stats.MetricsPerShard[j].Vote.Identity == paid.EarningKey {
stats.MetricsPerShard[j].Earned.Add(
stats.MetricsPerShard[j].Earned,
paid.NewlyEarned,
)
}
}
}
bc.writeValidatorStats(tempValidatorStats, batch)
records := slash.Records{}
if s := header.Slashes(); len(s) > 0 {
if err := rlp.DecodeBytes(s, &records); err != nil {
utils.Logger().Debug().Err(err).Msg("could not decode slashes in header")
}
if err := bc.DeleteFromPendingSlashingCandidates(records); err != nil {
utils.Logger().Debug().Err(err).Msg("could not deleting pending slashes")
}
}
} else {
if isNewEpoch && isPreStaking {
// if prestaking and last block, write out the validator stats
// so that it is available for the staking epoch
bc.writeValidatorStats(tempValidatorStats, batch)
}
// block reward never accumulate before staking
bc.WriteBlockRewardAccumulator(batch, common.Big0, block.Number().Uint64())
}
}
return CanonStatTy, nil
}
func (bc *BlockChainImpl) writeValidatorStats(
tempValidatorStats map[common.Address]*staking.ValidatorStats,
batch rawdb.DatabaseWriter,
) {
type t struct {
addr common.Address
stats *staking.ValidatorStats
}
sortedStats, i := make([]t, len(tempValidatorStats)), 0
for key := range tempValidatorStats {
sortedStats[i] = t{key, tempValidatorStats[key]}
i++
}
sort.SliceStable(
sortedStats,
func(i, j int) bool {
return bytes.Compare(
sortedStats[i].addr[:], sortedStats[j].addr[:],
) == -1
},
)
for _, stat := range sortedStats {
if err := rawdb.WriteValidatorStats(
batch, stat.addr, stat.stats,
); err != nil {
utils.Logger().Info().Err(err).
Str("validator address", stat.addr.Hex()).
Msg("could not update stats for validator")
}
}
}
func (bc *BlockChainImpl) getNextBlockEpoch(header *block.Header) (*big.Int, error) {
nextBlockEpoch := header.Epoch()
if header.IsLastBlockInEpoch() {
nextBlockEpoch = new(big.Int).Add(header.Epoch(), common.Big1)
decodeShardState, err := shard.DecodeWrapper(header.ShardState())
if err != nil {
return nil, err
}
if decodeShardState.Epoch != nil && bc.chainConfig.IsStaking(decodeShardState.Epoch) {
// After staking, the epoch will be decided by the epoch in the shard state.
nextBlockEpoch = new(big.Int).Set(decodeShardState.Epoch)
}
}
return nextBlockEpoch, nil
}