forked from erigontech/erigon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stage_txlookup.go
242 lines (222 loc) · 7.09 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
package stagedsync
import (
"context"
"encoding/binary"
"fmt"
"math/big"
libcommon "github.com/ledgerwatch/erigon-lib/common/cmp"
"github.com/ledgerwatch/erigon-lib/etl"
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/erigon/common"
"github.com/ledgerwatch/erigon/common/dbutils"
"github.com/ledgerwatch/erigon/core/rawdb"
"github.com/ledgerwatch/erigon/crypto"
"github.com/ledgerwatch/erigon/ethdb/prune"
"github.com/ledgerwatch/erigon/turbo/snapshotsync"
"github.com/ledgerwatch/log/v3"
)
type TxLookupCfg struct {
db kv.RwDB
prune prune.Mode
tmpdir string
snapshots *snapshotsync.RoSnapshots
isBor bool
}
func StageTxLookupCfg(
db kv.RwDB,
prune prune.Mode,
tmpdir string,
snapshots *snapshotsync.RoSnapshots,
isBor bool,
) TxLookupCfg {
return TxLookupCfg{
db: db,
prune: prune,
tmpdir: tmpdir,
snapshots: snapshots,
isBor: isBor,
}
}
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 = libcommon.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 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), common.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
}
}
if cfg.isBor {
borPrefix := []byte("matic-bor-receipt-")
if err := next(k, crypto.Keccak256(append(append(borPrefix, k...), v...)), blockNumBytes); err != nil {
return err
}
}
return nil
}, etl.IdentityLoadFunc, etl.TransformArgs{
Quit: quitCh,
ExtractStartKey: dbutils.EncodeBlockNumber(blockFrom),
ExtractEndKey: dbutils.EncodeBlockNumber(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 = libcommon.Max(blockFrom, smallestInDB), libcommon.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: %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) (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)
// Forward stage doesn't write anything before PruneTo point
if cfg.prune.TxIndex.Enabled() {
blockTo = cfg.prune.TxIndex.PruneTo(s.ForwardProgress)
} else if cfg.snapshots != nil && cfg.snapshots.Cfg().Enabled {
blockTo = snapshotsync.CanDeleteTo(s.ForwardProgress, cfg.snapshots)
}
if blockFrom < blockTo {
if err = deleteTxLookupRange(tx, logPrefix, blockFrom, blockTo, ctx, cfg); err != nil {
return fmt.Errorf("prune: %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), common.CastToHash(v)
body := rawdb.ReadCanonicalBodyWithTransactions(tx, blockHash, blocknum)
if body == nil {
if cfg.snapshots != nil && cfg.snapshots.Cfg().Enabled && blocknum <= cfg.snapshots.BlocksAvailable() {
log.Warn("TxLookup pruning, empty block body", "height", blocknum)
return nil
}
return fmt.Errorf("empty block body %d, hash %x", blocknum, v)
}
for _, txn := range body.Transactions {
if err := next(k, txn.Hash().Bytes(), nil); err != nil {
return err
}
}
if cfg.isBor {
borPrefix := []byte("matic-bor-receipt-")
if err := next(k, crypto.Keccak256(append(append(borPrefix, k...), v...)), nil); err != nil {
return err
}
}
return nil
}, etl.IdentityLoadFunc, etl.TransformArgs{
Quit: ctx.Done(),
ExtractStartKey: dbutils.EncodeBlockNumber(blockFrom),
ExtractEndKey: dbutils.EncodeBlockNumber(blockTo),
LogDetailsExtract: func(k, v []byte) (additionalLogArguments []interface{}) {
return []interface{}{"block", binary.BigEndian.Uint64(k)}
},
})
}