-
Notifications
You must be signed in to change notification settings - Fork 0
/
rescan.go
1263 lines (1085 loc) · 36.4 KB
/
rescan.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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// NOTE: THIS API IS UNSTABLE RIGHT NOW.
package neutrino
import (
"bytes"
"errors"
"fmt"
"sync"
"sync/atomic"
"time"
"github.com/bcext/cashutil"
"github.com/bcext/cashutil/gcs"
"github.com/bcext/cashutil/gcs/builder"
"github.com/bcext/cashwallet/waddrmgr"
"github.com/bcext/gcash/btcjson"
"github.com/bcext/gcash/chaincfg/chainhash"
"github.com/bcext/gcash/rpcclient"
"github.com/bcext/gcash/txscript"
"github.com/bcext/gcash/wire"
"github.com/bcext/neutrino/headerfs"
)
var (
// ErrRescanExit is an error returned to the caller in case the ongoing
// rescan exits.
ErrRescanExit = errors.New("rescan exited")
)
// rescanOptions holds the set of functional parameters for Rescan.
type rescanOptions struct {
chain *ChainService
queryOptions []QueryOption
ntfn rpcclient.NotificationHandlers
startTime time.Time
startBlock *waddrmgr.BlockStamp
endBlock *waddrmgr.BlockStamp
watchAddrs []cashutil.Address
watchInputs []InputWithScript
watchList [][]byte
txIdx uint32
update <-chan *updateOptions
quit <-chan struct{}
}
// RescanOption is a functional option argument to any of the rescan and
// notification subscription methods. These are always processed in order, with
// later options overriding earlier ones.
type RescanOption func(ro *rescanOptions)
func defaultRescanOptions() *rescanOptions {
return &rescanOptions{}
}
// QueryOptions pass onto the underlying queries.
func QueryOptions(options ...QueryOption) RescanOption {
return func(ro *rescanOptions) {
ro.queryOptions = options
}
}
// NotificationHandlers specifies notification handlers for the rescan. These
// will always run in the same goroutine as the caller.
func NotificationHandlers(ntfn rpcclient.NotificationHandlers) RescanOption {
return func(ro *rescanOptions) {
ro.ntfn = ntfn
}
}
// StartBlock specifies the start block. The hash is checked first; if there's
// no such hash (zero hash avoids lookup), the height is checked next. If the
// height is 0 or the start block isn't specified, starts from the genesis
// block. This block is assumed to already be known, and no notifications will
// be sent for this block. The rescan uses the latter of StartBlock and
// StartTime.
func StartBlock(startBlock *waddrmgr.BlockStamp) RescanOption {
return func(ro *rescanOptions) {
ro.startBlock = startBlock
}
}
// StartTime specifies the start time. The time is compared to the timestamp of
// each block, and the rescan only begins once the first block crosses that
// timestamp. When using this, it is advisable to use a margin of error and
// start rescans slightly earlier than required. The rescan uses the latter of
// StartBlock and StartTime.
func StartTime(startTime time.Time) RescanOption {
return func(ro *rescanOptions) {
ro.startTime = startTime
}
}
// EndBlock specifies the end block. The hash is checked first; if there's no
// such hash (zero hash avoids lookup), the height is checked next. If the
// height is 0 or in the future or the end block isn't specified, the quit
// channel MUST be specified as Rescan will sync to the tip of the blockchain
// and continue to stay in sync and pass notifications. This is enforced at
// runtime.
func EndBlock(endBlock *waddrmgr.BlockStamp) RescanOption {
return func(ro *rescanOptions) {
ro.endBlock = endBlock
}
}
// WatchAddrs specifies the addresses to watch/filter for. Each call to this
// function adds to the list of addresses being watched rather than replacing
// the list. Each time a transaction spends to the specified address, the
// outpoint is added to the WatchOutPoints list.
func WatchAddrs(watchAddrs ...cashutil.Address) RescanOption {
return func(ro *rescanOptions) {
ro.watchAddrs = append(ro.watchAddrs, watchAddrs...)
}
}
// InputWithScript couples an previous outpoint along with its input script.
// We'll use the prev script to match the filter itself, but then scan for the
// particular outpoint when we need to make a notification decision.
type InputWithScript struct {
// OutPoint identifies the previous output to watch.
OutPoint wire.OutPoint
// PkScript is the script of the previous output.
PkScript []byte
}
// WatchInputs specifies the outpoints to watch for on-chain spends. We also
// require the script as we'll match on the script, but then notify based on
// the outpoint. Each call to this function adds to the list of outpoints being
// watched rather than replacing the list.
func WatchInputs(watchInputs ...InputWithScript) RescanOption {
return func(ro *rescanOptions) {
ro.watchInputs = append(ro.watchInputs, watchInputs...)
}
}
// TxIdx specifies a hint transaction index into the block in which the UTXO is
// created (eg, coinbase is 0, next transaction is 1, etc.)
func TxIdx(txIdx uint32) RescanOption {
return func(ro *rescanOptions) {
ro.txIdx = txIdx
}
}
// QuitChan specifies the quit channel. This can be used by the caller to let
// an indefinite rescan (one with no EndBlock set) know it should gracefully
// shut down. If this isn't specified, an end block MUST be specified as Rescan
// must know when to stop. This is enforced at runtime.
func QuitChan(quit <-chan struct{}) RescanOption {
return func(ro *rescanOptions) {
ro.quit = quit
}
}
// updateChan specifies an update channel. This is for internal use by the
// Rescan.Update functionality.
func updateChan(update <-chan *updateOptions) RescanOption {
return func(ro *rescanOptions) {
ro.update = update
}
}
// rescan is a single-threaded function that uses headers from the database and
// functional options as arguments.
func (s *ChainService) rescan(options ...RescanOption) error {
// First, we'll apply the set of default options, then serially apply
// all the options that've been passed in.
ro := defaultRescanOptions()
ro.endBlock = &waddrmgr.BlockStamp{
Hash: chainhash.Hash{},
Height: 0,
}
for _, option := range options {
option(ro)
}
ro.chain = s
// If we have something to watch, create a watch list. The watch list
// can be composed of a set of scripts, outpoints, and txids.
for _, addr := range ro.watchAddrs {
script, err := txscript.PayToAddrScript(addr)
if err != nil {
return err
}
ro.watchList = append(ro.watchList, script)
}
for _, input := range ro.watchInputs {
ro.watchList = append(ro.watchList, input.PkScript)
}
// Check that we have either an end block or a quit channel.
if ro.endBlock != nil {
// If the end block hash is non-nil, then we'll query the
// database to find out the stop height.
if (ro.endBlock.Hash != chainhash.Hash{}) {
_, height, err := s.BlockHeaders.FetchHeader(
&ro.endBlock.Hash,
)
if err != nil {
ro.endBlock.Hash = chainhash.Hash{}
} else {
ro.endBlock.Height = int32(height)
}
}
// If the ending hash it nil, then check to see if the target
// height is non-nil. If not, then we'll use this to find the
// stopping hash.
if (ro.endBlock.Hash == chainhash.Hash{}) {
if ro.endBlock.Height != 0 {
header, err := s.BlockHeaders.FetchHeaderByHeight(
uint32(ro.endBlock.Height))
if err == nil {
ro.endBlock.Hash = header.BlockHash()
} else {
ro.endBlock = &waddrmgr.BlockStamp{}
}
}
}
} else {
ro.endBlock = &waddrmgr.BlockStamp{}
}
// If we don't have a quit channel, and the end height is still
// unspecified, then we'll exit out here.
if ro.quit == nil && ro.endBlock.Height == 0 {
return fmt.Errorf("Rescan request must specify a quit channel" +
" or valid end block")
}
// Track our position in the chain.
var (
curHeader wire.BlockHeader
curStamp waddrmgr.BlockStamp
)
// If no start block is specified, start the scan from our current best
// block.
if ro.startBlock == nil {
bs, err := s.BestBlock()
if err != nil {
return err
}
ro.startBlock = bs
}
curStamp = *ro.startBlock
// To find our starting block, either the start hash should be set, or
// the start height should be set. If neither is, then we'll be
// starting from the genesis block.
if (curStamp.Hash != chainhash.Hash{}) {
header, height, err := s.BlockHeaders.FetchHeader(&curStamp.Hash)
if err == nil {
curHeader = *header
curStamp.Height = int32(height)
} else {
curStamp.Hash = chainhash.Hash{}
}
}
if (curStamp.Hash == chainhash.Hash{}) {
if curStamp.Height == 0 {
curStamp.Hash = *s.chainParams.GenesisHash
} else {
header, err := s.BlockHeaders.FetchHeaderByHeight(
uint32(curStamp.Height))
if err == nil {
curHeader = *header
curStamp.Hash = curHeader.BlockHash()
} else {
curHeader = s.chainParams.GenesisBlock.Header
curStamp.Hash = *s.chainParams.GenesisHash
curStamp.Height = 0
}
}
}
s.blockManager.newFilterHeadersMtx.RLock()
filterHeaderHeight := s.blockManager.filterHeaderTip
s.blockManager.newFilterHeadersMtx.RUnlock()
log.Debugf("Waiting for filter headers (height=%v) to catch up the "+
"rescan start (height=%v)", filterHeaderHeight, curStamp.Height)
// We'll wait here at this point until we have enough filter headers to
// actually start walking forwards in the chain. To be able to wake up
// in cause we are being asked to exit, we'll launch a new goroutine to
// wait.
done := make(chan struct{})
go func() {
s.blockManager.newFilterHeadersMtx.Lock()
for s.blockManager.filterHeaderTip < uint32(curStamp.Height) {
s.blockManager.newFilterHeadersSignal.Wait()
// While we're awake, check to see if we need to exit.
select {
case <-ro.quit:
s.blockManager.newFilterHeadersMtx.Unlock()
return
default:
}
}
s.blockManager.newFilterHeadersMtx.Unlock()
close(done)
}()
// Now wait for either filter headers to be fully synced, or we are
// quitting. We also queue any incoming rescan updates, such that we
// can apply them when the filters are synced.
var updates []*updateOptions
filterHeaderWaitLoop:
for {
select {
case update := <-ro.update:
updates = append(updates, update)
case <-done:
break filterHeaderWaitLoop
case <-ro.quit:
// Broadcast the header signal such that the goroutine
// can wake up and exit.
s.blockManager.newFilterHeadersSignal.Broadcast()
return ErrRescanExit
}
}
// If any updates were queued while waiting for the filter headers to
// sync, apply them now.
for _, upd := range updates {
_, err := ro.updateFilter(upd, &curStamp, &curHeader)
if err != nil {
return err
}
}
log.Debugf("Starting rescan from known block %d (%s)", curStamp.Height,
curStamp.Hash)
// Compare the start time to the start block. If the start time is
// later, cycle through blocks until we find a block timestamp later
// than the start time, and begin filter download at that block. Since
// time is non-monotonic between blocks, we look for the first block to
// trip the switch, and download filters from there, rather than
// checking timestamps at each block.
scanning := ro.startTime.Before(curHeader.Timestamp)
// Listen for notifications.
blockConnected := make(chan wire.BlockHeader)
blockDisconnected := make(chan wire.BlockHeader)
var (
subscription *blockSubscription
err error
)
// blockRetryInterval is the interval in which we'll continually re-try
// to fetch the latest filter from our peers.
//
// TODO(roasbeef): add exponential back-off
blockRetryInterval := time.Millisecond * 100
// blockReFetchTimer is a stoppable timer that we'll use to reminder
// ourselves to refetch a block in the case that we're unable to fetch
// the filter for a block the first time around.
var blockReFetchTimer *time.Timer
resetBlockReFetchTimer := func(headerTip wire.BlockHeader, height int32) {
// If so, then we'll avoid notifying the block, and will
// instead add this to our retry queue, as we should be getting
// block disconnected notifications in short order.
if blockReFetchTimer != nil {
blockReFetchTimer.Stop()
}
log.Infof("Setting timer to attempt to re-fetch filter for "+
"hash=%v, height=%v", headerTip.BlockHash(), height)
// We'll start a timer to re-send this header so we re-process
// if in the case that we don't get a re-org soon afterwards.
blockReFetchTimer = time.AfterFunc(blockRetryInterval, func() {
log.Infof("Resending rescan header for block hash=%v, "+
"height=%v", headerTip.BlockHash(), height)
select {
case blockConnected <- headerTip:
case <-ro.quit:
}
})
}
// Loop through blocks, one at a time. This relies on the underlying
// ChainService API to send blockConnected and blockDisconnected
// notifications in the correct order.
current := false
rescanLoop:
for {
// If we've reached the ending height or hash for this rescan,
// then we'll exit.
if curStamp.Hash == ro.endBlock.Hash ||
(ro.endBlock.Height > 0 &&
curStamp.Height == ro.endBlock.Height) {
return nil
}
// If we're current, we wait for notifications that will be
// delivered each time a block is connecting, disconnecting, or
// we can an update to the filter we should be looking for.
switch current {
case true:
// Wait for a signal that we have a newly connected
// header and cfheader, or a newly disconnected header;
// alternatively, forward ourselves to the next block
// if possible.
select {
case <-ro.quit:
return ErrRescanExit
// An update mesage has just come across, if it points
// to a prior point in the chain, then we may need to
// rewind a bit in order to provide the client all its
// requested client.
case update := <-ro.update:
rewound, err := ro.updateFilter(
update, &curStamp, &curHeader,
)
if err != nil {
return err
}
// If we have to rewind our state, then we'll
// mark ourselves as not current so we can walk
// forward in the chain again until we we are
// current. This is our way of doing a manual
// rescan.
if rewound {
log.Tracef("Rewound to block %d (%s), "+
"no longer current",
curStamp.Height, curStamp.Hash)
current = false
s.unsubscribeBlockMsgs(subscription)
subscription = nil
}
case header := <-blockConnected:
// If we've somehow missed a header in the
// range, then we'll mark ourselves as not
// current so we can walk down the chain and
// notify the callers of blocks we may have
// missed.
//
// It's possible due to the nature of the
// current subscription system that we get a
// duplicate block. We'll catch this and
// continue forwards to avoid an unnecessary
// state transition back to the !current state.
if header.PrevBlock != curStamp.Hash &&
header.BlockHash() != curStamp.Hash {
log.Debugf("Rescan got out of order "+
"block %s with prevblock %s, "+
"curHeader: %s",
header.BlockHash(),
header.PrevBlock,
curStamp.Hash)
current = false
continue rescanLoop
}
// Do not process block until we have all
// filter headers. Don't worry, the block will
// get re-queued every time there is a new
// filter available. However, if it's a
// duplicate block notification, then we can
// re-process it without any issues.
if header.BlockHash() != curStamp.Hash &&
!s.hasFilterHeadersByHeight(uint32(curStamp.Height+1)) {
log.Warnf("Missing filter header for "+
"height=%v, skipping",
curStamp.Height+1)
continue rescanLoop
}
// As this could be a re-try, we'll ensure that
// we don't incorrectly increment our current
// time stamp.
if curStamp.Hash != header.BlockHash() {
curHeader = header
curStamp.Hash = header.BlockHash()
curStamp.Height++
}
log.Tracef("Rescan got block %d (%s)", curStamp.Height,
curStamp.Hash)
// We're only scanning if the header is beyond
// the horizon of our start time.
if !scanning {
scanning = ro.startTime.Before(
curHeader.Timestamp,
)
}
// If we're actually scanning and we have a
// non-empty watch list, then we'll attempt to
// fetch the filter from the network.
var blockFilter *gcs.Filter
queryOptions := NumRetries(0)
blockFilter, err = s.GetCFilter(
curStamp.Hash, wire.GCSFilterRegular,
queryOptions,
)
switch {
// If the block index doesn't know about
// this block, then it's likely we're mid
// re-org so we'll accept this as we
// account for it below.
case err == headerfs.ErrHashNotFound:
case err != nil:
return fmt.Errorf("unable to get "+
"filter for hash=%v: %v",
curStamp.Hash, err)
}
// If the filter is nil, then this either means
// that we don't have any peers to fetch this
// filter from, or the peer(s) that we're
// trying to fetch from are in the progress of
// a re-org.
if blockFilter == nil {
// TODO(halseth): this is racy, as
// blocks can come in before we
// refetch.
resetBlockReFetchTimer(
header, curStamp.Height,
)
continue
}
err := s.notifyBlockWithFilter(
ro, &curHeader, &curStamp, blockFilter,
)
if err != nil {
return err
}
// We'll successfully fetched this current
// block, so we'll reset the retry timer back
// to nil.
blockReFetchTimer = nil
case header := <-blockDisconnected:
log.Debugf("Rescan disconnect block %d (%s)\n",
curStamp.Height, curStamp.Hash)
// Only deal with it if it's the current block
// we know about. Otherwise, it's in the
// future.
if header.BlockHash() == curStamp.Hash {
// Run through notifications. This is
// all single-threaded. We include
// deprecated calls as they're still
// used, for now.
if ro.ntfn.OnFilteredBlockDisconnected != nil {
ro.ntfn.OnFilteredBlockDisconnected(
curStamp.Height,
&curHeader)
}
if ro.ntfn.OnBlockDisconnected != nil {
ro.ntfn.OnBlockDisconnected(
&curStamp.Hash,
curStamp.Height,
curHeader.Timestamp)
}
header := s.getReorgTip(header.PrevBlock)
curHeader = *header
curStamp.Hash = header.BlockHash()
curStamp.Height--
// Now that we got a re-org, if we had
// a re-fetch timer going, we'll re-set
// is at the new header tip.
if blockReFetchTimer != nil {
resetBlockReFetchTimer(
*header, curStamp.Height,
)
}
}
}
// If we're not yet current, then we'll walk down the chain
// until we reach the tip of the chain as we know it. At this
// point, we'll be "current" again.
case false:
// Apply all queued filter updates.
updateFilterLoop:
for {
select {
case update := <-ro.update:
_, err := ro.updateFilter(
update, &curStamp, &curHeader,
)
if err != nil {
return err
}
default:
break updateFilterLoop
}
}
bestBlock, err := s.BestBlock()
if err != nil {
return err
}
// Since we're not current, we try to manually advance
// the block. If the next height is above the best
// height known to the chain service, then we mark
// ourselves as current and follow notifications.
nextHeight := curStamp.Height + 1
if nextHeight > bestBlock.Height {
log.Debugf("Rescan became current at %d (%s), "+
"subscribing to block notifications",
curStamp.Height, curStamp.Hash)
current = true
// Ensure we cancel the old subscroption if
// we're going back to scan for missed blocks.
if subscription != nil {
s.unsubscribeBlockMsgs(subscription)
}
// Subscribe to block notifications.
subscription, err = s.subscribeBlockMsg(
uint32(curStamp.Height), blockConnected,
blockDisconnected, nil,
)
if err != nil {
return fmt.Errorf("unable to register "+
"block subscription: %v", err)
}
defer func() {
if subscription != nil {
s.unsubscribeBlockMsgs(subscription)
subscription = nil
}
}()
continue rescanLoop
}
// If the next height is known to the chain service,
// then we'll fetch the next block and send a
// notification, maybe also scanning the filters for
// the block.
header, err := s.BlockHeaders.FetchHeaderByHeight(
uint32(nextHeight),
)
if err != nil {
return err
}
curHeader = *header
curStamp.Height++
curStamp.Hash = header.BlockHash()
if !scanning {
scanning = ro.startTime.Before(curHeader.Timestamp)
}
err = s.notifyBlock(ro, curHeader, curStamp, scanning)
if err != nil {
return err
}
}
}
}
// notifyBlock calls appropriate listeners based on the block filter.
func (s *ChainService) notifyBlock(ro *rescanOptions,
curHeader wire.BlockHeader, curStamp waddrmgr.BlockStamp,
scanning bool) error {
// Find relevant transactions based on watch list. If scanning is
// false, we can safely assume this block has no relevant transactions.
var relevantTxs []*cashutil.Tx
if len(ro.watchList) != 0 && scanning {
// If we have a non-empty watch list, then we need to see if it
// matches the rescan's filters, so we get the basic filter
// from the DB or network.
matched, err := s.blockFilterMatches(ro, &curStamp.Hash)
if err != nil {
return err
}
if matched {
relevantTxs, err = s.extractBlockMatches(ro, &curStamp)
if err != nil {
return err
}
}
}
if ro.ntfn.OnFilteredBlockConnected != nil {
ro.ntfn.OnFilteredBlockConnected(curStamp.Height, &curHeader,
relevantTxs)
}
if ro.ntfn.OnBlockConnected != nil {
ro.ntfn.OnBlockConnected(&curStamp.Hash,
curStamp.Height, curHeader.Timestamp)
}
return nil
}
// extractBlockMatches fetches the target block from the network, and filters
// out any relevant transactions found within the block.
func (s *ChainService) extractBlockMatches(ro *rescanOptions,
curStamp *waddrmgr.BlockStamp) ([]*cashutil.Tx, error) {
// We've matched. Now we actually get the block and cycle through the
// transactions to see which ones are relevant.
block, err := s.GetBlock(curStamp.Hash, ro.queryOptions...)
if err != nil {
return nil, err
}
if block == nil {
return nil, fmt.Errorf("Couldn't get block %d (%s) from "+
"network", curStamp.Height, curStamp.Hash)
}
blockHeader := block.MsgBlock().Header
blockDetails := btcjson.BlockDetails{
Height: block.Height(),
Hash: block.Hash().String(),
Time: blockHeader.Timestamp.Unix(),
}
relevantTxs := make([]*cashutil.Tx, 0, len(block.Transactions()))
for txIdx, tx := range block.Transactions() {
txDetails := blockDetails
txDetails.Index = txIdx
var relevant bool
if ro.spendsWatchedInput(tx) {
relevant = true
if ro.ntfn.OnRedeemingTx != nil {
ro.ntfn.OnRedeemingTx(tx, &txDetails)
}
}
// Even though the transaction may already be known as relevant
// and there might not be a notification callback, we need to
// call paysWatchedAddr anyway as it updates the rescan
// options.
pays, err := ro.paysWatchedAddr(tx)
if err != nil {
return nil, err
}
if pays {
relevant = true
if ro.ntfn.OnRecvTx != nil {
ro.ntfn.OnRecvTx(tx, &txDetails)
}
}
if relevant {
relevantTxs = append(relevantTxs, tx)
}
}
return relevantTxs, nil
}
// notifyBlockWithFilter calls appropriate listeners based on the block filter.
// This differs from notifyBlock in that is expects the caller to already have
// obtained the target filter.
func (s *ChainService) notifyBlockWithFilter(ro *rescanOptions,
curHeader *wire.BlockHeader, curStamp *waddrmgr.BlockStamp,
filter *gcs.Filter) error {
// Based on what we find within the block or the filter, we'll be
// sending out a set of notifications with transactions that are
// relevant to the rescan.
var relevantTxs []*cashutil.Tx
// If we actually have a filter, then we'll go ahead an attempt to
// match the items within the filter to ensure we create any relevant
// notifications.
if filter != nil {
matched, err := s.matchBlockFilter(ro, filter, &curStamp.Hash)
if err != nil {
return err
}
if matched {
relevantTxs, err = s.extractBlockMatches(ro, curStamp)
if err != nil {
return err
}
}
}
if ro.ntfn.OnFilteredBlockConnected != nil {
ro.ntfn.OnFilteredBlockConnected(curStamp.Height, curHeader,
relevantTxs)
}
if ro.ntfn.OnBlockConnected != nil {
ro.ntfn.OnBlockConnected(&curStamp.Hash,
curStamp.Height, curHeader.Timestamp)
}
return nil
}
// matchBlockFilter returns whether the block filter matches the watched items.
// If this returns false, it means the block is certainly not interesting to
// us. This method differs from blockFilterMatches in that it expects the
// filter to already be obtained, rather than fetching the filter from the
// network.
func (s *ChainService) matchBlockFilter(ro *rescanOptions, filter *gcs.Filter,
blockHash *chainhash.Hash) (bool, error) {
// Now that we have the filter as well as the block hash of the block
// used to construct the filter, we'll check to see if the block
// matches any items in our watch list.
key := builder.DeriveKey(blockHash)
matched, err := filter.MatchAny(key, ro.watchList)
if err != nil {
return false, err
}
return matched, nil
}
// blockFilterMatches returns whether the block filter matches the watched
// items. If this returns false, it means the block is certainly not interesting
// to us.
func (s *ChainService) blockFilterMatches(ro *rescanOptions,
blockHash *chainhash.Hash) (bool, error) {
// TODO(roasbeef): need to ENSURE always get filter
key := builder.DeriveKey(blockHash)
bFilter, err := s.GetCFilter(*blockHash, wire.GCSFilterRegular)
if err != nil {
if err == headerfs.ErrHashNotFound {
// Block has been reorged out from under us.
return false, nil
}
return false, err
}
// If we found the basic filter, and the filter isn't
// "nil", then we'll check the items in the watch list
// against it.
if bFilter != nil && bFilter.N() != 0 {
// We see if any relevant transactions match.
matched, err := bFilter.MatchAny(key, ro.watchList)
if matched || err != nil {
return matched, err
}
}
// We don't need the extended filter, since all of the things a rescan
// can watch for are currently added to the same watch list and
// available in the basic filter. In the future, we can watch for
// data pushes in input scripts (incl. P2SH). In the meantime, we
// return false if the basic filter didn't match our watch list.
return false, nil
}
// hasFilterHeadersByHeight checks whether both the basic and extended filter
// headers for a particular height are known.
func (s *ChainService) hasFilterHeadersByHeight(height uint32) bool {
_, regFetchErr := s.RegFilterHeaders.FetchHeaderByHeight(height)
return regFetchErr == nil
}
// updateFilter atomically updates the filter and rewinds to the specified
// height if not 0.
func (ro *rescanOptions) updateFilter(update *updateOptions,
curStamp *waddrmgr.BlockStamp, curHeader *wire.BlockHeader) (bool, error) {
ro.watchAddrs = append(ro.watchAddrs, update.addrs...)
ro.watchInputs = append(ro.watchInputs, update.inputs...)
for _, addr := range update.addrs {
script, err := txscript.PayToAddrScript(addr)
if err != nil {
return false, err
}
ro.watchList = append(ro.watchList, script)
}
for _, input := range update.inputs {
ro.watchList = append(ro.watchList, input.PkScript)
}
for _, txid := range update.txIDs {
ro.watchList = append(ro.watchList, txid[:])
}
// If we don't need to rewind, then we can exit early.
if update.rewind == 0 {
return false, nil
}
var (
header *wire.BlockHeader
height uint32
rewound bool
err error
)
// If we need to rewind, then we'll walk backwards in the chain until
// we arrive at the block _just_ before the rewind.
for curStamp.Height > int32(update.rewind) {
if ro.ntfn.OnBlockDisconnected != nil &&
!update.disableDisconnectedNtfns {
ro.ntfn.OnBlockDisconnected(&curStamp.Hash,
curStamp.Height, curHeader.Timestamp)
}
if ro.ntfn.OnFilteredBlockDisconnected != nil &&
!update.disableDisconnectedNtfns {
ro.ntfn.OnFilteredBlockDisconnected(curStamp.Height,
curHeader)
}
// We just disconnected a block above, so we're now in rewind
// mode. We set this to true here so we properly send
// notifications even if it was just a 1 block rewind.
rewound = true
// Rewind and continue.
header, height, err = ro.chain.BlockHeaders.FetchHeader(
&curHeader.PrevBlock,
)
if err != nil {
return rewound, err
}
*curHeader = *header
curStamp.Height = int32(height)
curStamp.Hash = curHeader.BlockHash()
}
return rewound, nil
}
// spendsWatchedInput returns whether the transaction matches the filter by
// spending a watched input.
func (ro *rescanOptions) spendsWatchedInput(tx *cashutil.Tx) bool {
for _, in := range tx.MsgTx().TxIn {
for _, input := range ro.watchInputs {
if in.PreviousOutPoint == input.OutPoint {
return true
}
}
}
return false
}
// paysWatchedAddr returns whether the transaction matches the filter by having
// an output paying to a watched address. If that is the case, this also
// updates the filter to watch the newly created output going forward.
func (ro *rescanOptions) paysWatchedAddr(tx *cashutil.Tx) (bool, error) {
anyMatchingOutputs := false
txOutLoop:
for outIdx, out := range tx.MsgTx().TxOut {
pkScript := out.PkScript
for _, addr := range ro.watchAddrs {
// We'll convert the address into its matching pkScript
// to in order to check for a match.
addrScript, err := txscript.PayToAddrScript(addr)
if err != nil {
return false, err
}
// If the script doesn't match, we'll move onto the
// next one.