forked from erigontech/erigon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
stage_txlookup.go
302 lines (269 loc) · 9.31 KB
/
stage_txlookup.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
package stagedsync
import (
"context"
"encoding/binary"
"fmt"
"math/big"
"github.com/ledgerwatch/erigon-lib/chain"
libcommon "github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon-lib/common/cmp"
"github.com/ledgerwatch/erigon-lib/common/hexutility"
"github.com/ledgerwatch/erigon-lib/etl"
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/log/v3"
"github.com/ledgerwatch/erigon/core/rawdb"
"github.com/ledgerwatch/erigon/core/types"
"github.com/ledgerwatch/erigon/ethdb/prune"
"github.com/ledgerwatch/erigon/turbo/snapshotsync"
)
type TxLookupCfg struct {
db kv.RwDB
prune prune.Mode
tmpdir string
snapshots *snapshotsync.RoSnapshots
borConfig *chain.BorConfig
}
func StageTxLookupCfg(
db kv.RwDB,
prune prune.Mode,
tmpdir string,
snapshots *snapshotsync.RoSnapshots,
borConfig *chain.BorConfig,
) TxLookupCfg {
return TxLookupCfg{
db: db,
prune: prune,
tmpdir: tmpdir,
snapshots: snapshots,
borConfig: borConfig,
}
}
func SpawnTxLookup(s *StageState, tx kv.RwTx, toBlock uint64, cfg TxLookupCfg, ctx context.Context) (err error) {
quitCh := ctx.Done()
useExternalTx := tx != nil
if !useExternalTx {
tx, err = cfg.db.BeginRw(ctx)
if err != nil {
return err
}
defer tx.Rollback()
}
logPrefix := s.LogPrefix()
endBlock, err := s.ExecutionAt(tx)
if err != nil {
return err
}
if toBlock > 0 {
endBlock = cmp.Min(endBlock, toBlock)
}
startBlock := s.BlockNumber
if cfg.prune.TxIndex.Enabled() {
pruneTo := cfg.prune.TxIndex.PruneTo(endBlock)
if startBlock < pruneTo {
startBlock = pruneTo
if err = s.UpdatePrune(tx, pruneTo); err != nil { // prune func of this stage will use this value to prevent all ancient blocks traversal
return err
}
}
}
if cfg.snapshots != nil && cfg.snapshots.Cfg().Enabled {
if cfg.snapshots.BlocksAvailable() > startBlock {
// Snapshot .idx files already have TxLookup index - then no reason iterate over them here
startBlock = cfg.snapshots.BlocksAvailable()
if err = s.UpdatePrune(tx, startBlock); err != nil { // prune func of this stage will use this value to prevent all ancient blocks traversal
return err
}
}
}
if startBlock > 0 {
startBlock++
}
// etl.Transform uses ExtractEndKey as exclusive bound, therefore endBlock + 1
if err = txnLookupTransform(logPrefix, tx, startBlock, endBlock+1, quitCh, cfg); err != nil {
return fmt.Errorf("txnLookupTransform: %w", err)
}
if cfg.borConfig != nil {
if err = borTxnLookupTransform(logPrefix, tx, startBlock, endBlock+1, quitCh, cfg); err != nil {
return fmt.Errorf("borTxnLookupTransform: %w", err)
}
}
if err = s.Update(tx, endBlock); err != nil {
return err
}
if !useExternalTx {
if err = tx.Commit(); err != nil {
return err
}
}
return nil
}
// txnLookupTransform - [startKey, endKey)
func txnLookupTransform(logPrefix string, tx kv.RwTx, blockFrom, blockTo uint64, quitCh <-chan struct{}, cfg TxLookupCfg) error {
bigNum := new(big.Int)
return etl.Transform(logPrefix, tx, kv.HeaderCanonical, kv.TxLookup, cfg.tmpdir, func(k, v []byte, next etl.ExtractNextFunc) error {
blocknum, blockHash := binary.BigEndian.Uint64(k), libcommon.CastToHash(v)
body := rawdb.ReadCanonicalBodyWithTransactions(tx, blockHash, blocknum)
if body == nil {
return fmt.Errorf("transform: empty block body %d, hash %x", blocknum, v)
}
blockNumBytes := bigNum.SetUint64(blocknum).Bytes()
for _, txn := range body.Transactions {
if err := next(k, txn.Hash().Bytes(), blockNumBytes); err != nil {
return err
}
}
return nil
}, etl.IdentityLoadFunc, etl.TransformArgs{
Quit: quitCh,
ExtractStartKey: hexutility.EncodeTs(blockFrom),
ExtractEndKey: hexutility.EncodeTs(blockTo),
LogDetailsExtract: func(k, v []byte) (additionalLogArguments []interface{}) {
return []interface{}{"block", binary.BigEndian.Uint64(k)}
},
})
}
// txnLookupTransform - [startKey, endKey)
func borTxnLookupTransform(logPrefix string, tx kv.RwTx, blockFrom, blockTo uint64, quitCh <-chan struct{}, cfg TxLookupCfg) error {
bigNum := new(big.Int)
return etl.Transform(logPrefix, tx, kv.HeaderCanonical, kv.BorTxLookup, cfg.tmpdir, func(k, v []byte, next etl.ExtractNextFunc) error {
blocknum, blockHash := binary.BigEndian.Uint64(k), libcommon.CastToHash(v)
blockNumBytes := bigNum.SetUint64(blocknum).Bytes()
// we add state sync transactions every bor Sprint amount of blocks
if blocknum%cfg.borConfig.CalculateSprint(blocknum) == 0 && rawdb.HasBorReceipts(tx, blocknum) {
txnHash := types.ComputeBorTxHash(blocknum, blockHash)
if err := next(k, txnHash.Bytes(), blockNumBytes); err != nil {
return err
}
}
return nil
}, etl.IdentityLoadFunc, etl.TransformArgs{
Quit: quitCh,
ExtractStartKey: hexutility.EncodeTs(blockFrom),
ExtractEndKey: hexutility.EncodeTs(blockTo),
LogDetailsExtract: func(k, v []byte) (additionalLogArguments []interface{}) {
return []interface{}{"block", binary.BigEndian.Uint64(k)}
},
})
}
func UnwindTxLookup(u *UnwindState, s *StageState, tx kv.RwTx, cfg TxLookupCfg, ctx context.Context) (err error) {
if s.BlockNumber <= u.UnwindPoint {
return nil
}
useExternalTx := tx != nil
if !useExternalTx {
tx, err = cfg.db.BeginRw(ctx)
if err != nil {
return err
}
defer tx.Rollback()
}
// end key needs to be s.BlockNumber + 1 and not s.BlockNumber, because
// the keys in BlockBody table always have hash after the block number
blockFrom, blockTo := u.UnwindPoint+1, s.BlockNumber+1
if cfg.snapshots != nil && cfg.snapshots.Cfg().Enabled {
smallestInDB := cfg.snapshots.BlocksAvailable()
blockFrom, blockTo = cmp.Max(blockFrom, smallestInDB), cmp.Max(blockTo, smallestInDB)
}
// etl.Transform uses ExtractEndKey as exclusive bound, therefore blockTo + 1
if err := deleteTxLookupRange(tx, s.LogPrefix(), blockFrom, blockTo+1, ctx, cfg); err != nil {
return fmt.Errorf("unwind TxLookUp: %w", err)
}
if cfg.borConfig != nil {
if err := deleteBorTxLookupRange(tx, s.LogPrefix(), blockFrom, blockTo+1, ctx, cfg); err != nil {
return fmt.Errorf("unwind BorTxLookUp: %w", err)
}
}
if err := u.Done(tx); err != nil {
return err
}
if !useExternalTx {
if err := tx.Commit(); err != nil {
return err
}
}
return nil
}
func PruneTxLookup(s *PruneState, tx kv.RwTx, cfg TxLookupCfg, ctx context.Context, initialCycle bool) (err error) {
logPrefix := s.LogPrefix()
useExternalTx := tx != nil
if !useExternalTx {
tx, err = cfg.db.BeginRw(ctx)
if err != nil {
return err
}
defer tx.Rollback()
}
blockFrom, blockTo := s.PruneProgress, uint64(0)
var pruneBor bool
// Forward stage doesn't write anything before PruneTo point
if cfg.prune.TxIndex.Enabled() {
blockTo = cfg.prune.TxIndex.PruneTo(s.ForwardProgress)
pruneBor = true
} else if cfg.snapshots != nil && cfg.snapshots.Cfg().Enabled {
blockTo = snapshotsync.CanDeleteTo(s.ForwardProgress, cfg.snapshots)
}
if !initialCycle { // limit time for pruning
blockTo = cmp.Min(blockTo, blockFrom+100)
}
if blockFrom < blockTo {
if err = deleteTxLookupRange(tx, logPrefix, blockFrom, blockTo, ctx, cfg); err != nil {
return fmt.Errorf("prune TxLookUp: %w", err)
}
if cfg.borConfig != nil && pruneBor {
if err = deleteBorTxLookupRange(tx, logPrefix, blockFrom, blockTo, ctx, cfg); err != nil {
return fmt.Errorf("prune BorTxLookUp: %w", err)
}
}
if err = s.DoneAt(tx, blockTo); err != nil {
return err
}
}
if !useExternalTx {
if err = tx.Commit(); err != nil {
return err
}
}
return nil
}
// deleteTxLookupRange - [blockFrom, blockTo)
func deleteTxLookupRange(tx kv.RwTx, logPrefix string, blockFrom, blockTo uint64, ctx context.Context, cfg TxLookupCfg) error {
return etl.Transform(logPrefix, tx, kv.HeaderCanonical, kv.TxLookup, cfg.tmpdir, func(k, v []byte, next etl.ExtractNextFunc) error {
blocknum, blockHash := binary.BigEndian.Uint64(k), libcommon.CastToHash(v)
body := rawdb.ReadCanonicalBodyWithTransactions(tx, blockHash, blocknum)
if body == nil {
log.Debug("TxLookup pruning, empty block body", "height", blocknum)
return nil
}
for _, txn := range body.Transactions {
if err := next(k, txn.Hash().Bytes(), nil); err != nil {
return err
}
}
return nil
}, etl.IdentityLoadFunc, etl.TransformArgs{
Quit: ctx.Done(),
ExtractStartKey: hexutility.EncodeTs(blockFrom),
ExtractEndKey: hexutility.EncodeTs(blockTo),
LogDetailsExtract: func(k, v []byte) (additionalLogArguments []interface{}) {
return []interface{}{"block", binary.BigEndian.Uint64(k)}
},
})
}
// deleteTxLookupRange - [blockFrom, blockTo)
func deleteBorTxLookupRange(tx kv.RwTx, logPrefix string, blockFrom, blockTo uint64, ctx context.Context, cfg TxLookupCfg) error {
return etl.Transform(logPrefix, tx, kv.HeaderCanonical, kv.BorTxLookup, cfg.tmpdir, func(k, v []byte, next etl.ExtractNextFunc) error {
blocknum, blockHash := binary.BigEndian.Uint64(k), libcommon.CastToHash(v)
borTxHash := types.ComputeBorTxHash(blocknum, blockHash)
if err := next(k, borTxHash.Bytes(), nil); err != nil {
return err
}
return nil
}, etl.IdentityLoadFunc, etl.TransformArgs{
Quit: ctx.Done(),
ExtractStartKey: hexutility.EncodeTs(blockFrom),
ExtractEndKey: hexutility.EncodeTs(blockTo),
LogDetailsExtract: func(k, v []byte) (additionalLogArguments []interface{}) {
return []interface{}{"block", binary.BigEndian.Uint64(k)}
},
})
}