-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathkv_ledger.go
1183 lines (1038 loc) · 41.6 KB
/
kv_ledger.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package kvledger
import (
"encoding/hex"
"fmt"
"math"
"sync"
"sync/atomic"
"time"
"github.com/hyperledger/fabric-lib-go/bccsp"
"github.com/hyperledger/fabric-lib-go/common/flogging"
"github.com/hyperledger/fabric-protos-go-apiv2/common"
"github.com/hyperledger/fabric-protos-go-apiv2/peer"
commonledger "github.com/hyperledger/fabric/common/ledger"
"github.com/hyperledger/fabric/common/ledger/blkstorage"
"github.com/hyperledger/fabric/common/util"
"github.com/hyperledger/fabric/core/ledger"
"github.com/hyperledger/fabric/core/ledger/cceventmgmt"
"github.com/hyperledger/fabric/core/ledger/confighistory"
"github.com/hyperledger/fabric/core/ledger/internal/version"
"github.com/hyperledger/fabric/core/ledger/kvledger/bookkeeping"
"github.com/hyperledger/fabric/core/ledger/kvledger/history"
"github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/privacyenabledstate"
"github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr"
"github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validation"
"github.com/hyperledger/fabric/core/ledger/pvtdatapolicy"
"github.com/hyperledger/fabric/core/ledger/pvtdatastorage"
"github.com/hyperledger/fabric/internal/pkg/txflags"
"github.com/hyperledger/fabric/protoutil"
"github.com/pkg/errors"
"google.golang.org/protobuf/encoding/protowire"
"google.golang.org/protobuf/proto"
)
var logger = flogging.MustGetLogger("kvledger")
var (
rwsetHashOpts = &bccsp.SHA256Opts{}
snapshotHashOpts = &bccsp.SHA256Opts{}
)
// kvLedger provides an implementation of `ledger.PeerLedger`.
// This implementation provides a key-value based data model
type kvLedger struct {
ledgerID string
bootSnapshotMetadata *SnapshotMetadata
blockStore *blkstorage.BlockStore
pvtdataStoreLock sync.Mutex
pvtdataStore *pvtdatastorage.Store
txmgr *txmgr.LockBasedTxMgr
historyDB *history.DB
configHistoryRetriever *collectionConfigHistoryRetriever
snapshotMgr *snapshotMgr
// this RWMutex provides atomicity to commit a block to the block-storage
// and to apply its effects on the state database
//
// for more details see https://github.com/hyperledger/fabric/pull/4694
blockAPIsRWLock *sync.RWMutex
stats *ledgerStats
commitHash []byte
hashProvider ledger.HashProvider
config *ledger.Config
// isPvtstoreAheadOfBlkstore is read during missing pvtData
// reconciliation and may be updated during a regular block commit.
// Hence, we use atomic value to ensure consistent read.
isPvtstoreAheadOfBlkstore atomic.Value
commitNotifierLock sync.Mutex
commitNotifier *commitNotifier
}
type lgrInitializer struct {
ledgerID string
initializingFromSnapshot bool
bootSnapshotMetadata *SnapshotMetadata
blockStore *blkstorage.BlockStore
pvtdataStore *pvtdatastorage.Store
stateDB *privacyenabledstate.DB
historyDB *history.DB
configHistoryMgr *confighistory.Mgr
stateListeners []ledger.StateListener
bookkeeperProvider *bookkeeping.Provider
ccInfoProvider ledger.DeployedChaincodeInfoProvider
ccLifecycleEventProvider ledger.ChaincodeLifecycleEventProvider
stats *ledgerStats
customTxProcessors map[common.HeaderType]ledger.CustomTxProcessor
hashProvider ledger.HashProvider
config *ledger.Config
}
func newKVLedger(initializer *lgrInitializer) (*kvLedger, error) {
ledgerID := initializer.ledgerID
logger.Debugf("Creating KVLedger ledgerID=%s: ", ledgerID)
l := &kvLedger{
ledgerID: ledgerID,
bootSnapshotMetadata: initializer.bootSnapshotMetadata,
blockStore: initializer.blockStore,
pvtdataStore: initializer.pvtdataStore,
historyDB: initializer.historyDB,
hashProvider: initializer.hashProvider,
config: initializer.config,
blockAPIsRWLock: &sync.RWMutex{},
}
btlPolicy := pvtdatapolicy.ConstructBTLPolicy(&collectionInfoRetriever{ledgerID, l, initializer.ccInfoProvider})
rwsetHashFunc := func(data []byte) ([]byte, error) {
hash, err := initializer.hashProvider.GetHash(rwsetHashOpts)
if err != nil {
return nil, err
}
if _, err = hash.Write(data); err != nil {
return nil, err
}
return hash.Sum(nil), nil
}
txmgrInitializer := &txmgr.Initializer{
LedgerID: ledgerID,
DB: initializer.stateDB,
StateListeners: initializer.stateListeners,
BtlPolicy: btlPolicy,
BookkeepingProvider: initializer.bookkeeperProvider,
CCInfoProvider: initializer.ccInfoProvider,
CustomTxProcessors: initializer.customTxProcessors,
HashFunc: rwsetHashFunc,
}
if err := l.initTxMgr(txmgrInitializer); err != nil {
return nil, err
}
// btlPolicy internally uses queryexecuter and indirectly ends up using txmgr.
// Hence, we need to init the pvtdataStore once the txmgr is initiated.
l.pvtdataStore.Init(btlPolicy)
var err error
l.commitHash, err = l.lastPersistedCommitHash()
if err != nil {
return nil, err
}
isAhead, err := l.isPvtDataStoreAheadOfBlockStore()
if err != nil {
return nil, err
}
l.isPvtstoreAheadOfBlkstore.Store(isAhead)
statedbIndexCreator := initializer.stateDB.GetChaincodeEventListener()
if statedbIndexCreator != nil {
logger.Debugf("Register state db for chaincode lifecycle events")
err := l.registerStateDBIndexCreatorForChaincodeLifecycleEvents(
statedbIndexCreator,
initializer.ccInfoProvider,
initializer.ccLifecycleEventProvider,
cceventmgmt.GetMgr(),
initializer.initializingFromSnapshot,
)
if err != nil {
return nil, err
}
}
// Recover both state DB and history DB if they are out of sync with block storage
if err := l.recoverDBs(); err != nil {
return nil, err
}
l.configHistoryRetriever = &collectionConfigHistoryRetriever{
Retriever: initializer.configHistoryMgr.GetRetriever(ledgerID),
DeployedChaincodeInfoProvider: txmgrInitializer.CCInfoProvider,
ledger: l,
}
if err := l.initSnapshotMgr(initializer); err != nil {
return nil, err
}
l.stats = initializer.stats
return l, nil
}
func (l *kvLedger) registerStateDBIndexCreatorForChaincodeLifecycleEvents(
stateDBIndexCreator cceventmgmt.ChaincodeLifecycleEventListener,
deployedChaincodesInfoExtractor ledger.DeployedChaincodeInfoProvider,
chaincodesLifecycleEventsProvider ledger.ChaincodeLifecycleEventProvider,
legacyChaincodesLifecycleEventsProvider *cceventmgmt.Mgr,
bootstrappingFromSnapshot bool,
) error {
if !bootstrappingFromSnapshot {
// regular opening of ledger
if err := chaincodesLifecycleEventsProvider.RegisterListener(
l.ledgerID, &ccEventListenerAdaptor{stateDBIndexCreator}, false); err != nil {
return err
}
legacyChaincodesLifecycleEventsProvider.Register(l.ledgerID, stateDBIndexCreator)
return nil
}
// opening of ledger after creating from a snapshot -
// it would have been better if we could explicitly retrieve the list of invocable chaincodes instead of
// passing the flag initializer.initializingFromSnapshot to the ccLifecycleEventProvider (which is essentially
// the _lifecycle cache) for directing ccLifecycleEventProvider to call us back. However, the lock that ensures
// the synchronization with the chaincode installer is maintained in the lifecycle cache and by design the lifecycle
// cache takes the responsibility of calling any listener under the lock
if err := chaincodesLifecycleEventsProvider.RegisterListener(
l.ledgerID, &ccEventListenerAdaptor{stateDBIndexCreator}, true); err != nil {
return errors.WithMessage(err, "error while creating statdb indexes after bootstrapping from snapshot")
}
legacyChaincodes, err := l.listLegacyChaincodesDefined(deployedChaincodesInfoExtractor)
if err != nil {
return errors.WithMessage(err, "error while creating statdb indexes after bootstrapping from snapshot")
}
if err := legacyChaincodesLifecycleEventsProvider.RegisterAndInvokeFor(
legacyChaincodes, l.ledgerID, stateDBIndexCreator); err != nil {
return errors.WithMessage(err, "error while creating statdb indexes after bootstrapping from snapshot")
}
return nil
}
func (l *kvLedger) listLegacyChaincodesDefined(
deployedChaincodesInfoExtractor ledger.DeployedChaincodeInfoProvider) (
[]*cceventmgmt.ChaincodeDefinition, error) {
qe, err := l.txmgr.NewQueryExecutor("")
if err != nil {
return nil, err
}
defer qe.Done()
definedChaincodes, err := deployedChaincodesInfoExtractor.AllChaincodesInfo(l.ledgerID, qe)
if err != nil {
return nil, err
}
legacyChaincodes := []*cceventmgmt.ChaincodeDefinition{}
for _, chaincodeInfo := range definedChaincodes {
if !chaincodeInfo.IsLegacy {
continue
}
legacyChaincodes = append(legacyChaincodes,
&cceventmgmt.ChaincodeDefinition{
Name: chaincodeInfo.Name,
Version: chaincodeInfo.Version,
Hash: chaincodeInfo.Hash,
CollectionConfigs: chaincodeInfo.ExplicitCollectionConfigPkg,
},
)
}
return legacyChaincodes, nil
}
func (l *kvLedger) initTxMgr(initializer *txmgr.Initializer) error {
var err error
txmgr, err := txmgr.NewLockBasedTxMgr(initializer)
if err != nil {
return err
}
l.txmgr = txmgr
// This is a workaround for populating lifecycle cache.
// See comments on this function for details
qe, err := txmgr.NewQueryExecutorNoCollChecks()
if err != nil {
return err
}
defer qe.Done()
for _, sl := range initializer.StateListeners {
if err := sl.Initialize(l.ledgerID, qe); err != nil {
return err
}
}
return err
}
func (l *kvLedger) initSnapshotMgr(initializer *lgrInitializer) error {
dbHandle := initializer.bookkeeperProvider.GetDBHandle(l.ledgerID, bookkeeping.SnapshotRequest)
bookkeeper, err := newSnapshotRequestBookkeeper(l.ledgerID, dbHandle)
if err != nil {
return err
}
l.snapshotMgr = &snapshotMgr{
snapshotRequestBookkeeper: bookkeeper,
events: make(chan *event),
commitProceed: make(chan struct{}),
requestResponses: make(chan *requestResponse),
}
bcInfo, err := l.blockStore.GetBlockchainInfo()
if err != nil {
return err
}
lastCommittedBlock := bcInfo.Height - 1
// start a goroutine to synchronize commit, snapshot generation, and snapshot submission/cancellation,
go l.processSnapshotMgmtEvents(lastCommittedBlock)
if bcInfo.Height != 0 {
return l.regenrateMissedSnapshot(lastCommittedBlock)
}
return nil
}
func (l *kvLedger) lastPersistedCommitHash() ([]byte, error) {
bcInfo, err := l.GetBlockchainInfo()
if err != nil {
return nil, err
}
if bcInfo.Height == 0 {
logger.Debugf("Chain is empty")
return nil, nil
}
if l.bootSnapshotMetadata != nil && l.bootSnapshotMetadata.LastBlockNumber == bcInfo.Height-1 {
logger.Debugw(
"Ledger is starting first time after creation from a snapshot. Retrieveing last commit hash from boot snapshot metadata",
"ledger", l.ledgerID,
)
return hex.DecodeString(l.bootSnapshotMetadata.LastBlockCommitHashInHex)
}
logger.Debugf("Fetching block [%d] to retrieve the currentCommitHash", bcInfo.Height-1)
block, err := l.GetBlockByNumber(bcInfo.Height - 1)
if err != nil {
return nil, err
}
if len(block.Metadata.Metadata) < int(common.BlockMetadataIndex_COMMIT_HASH+1) {
logger.Debugf("Last block metadata does not contain commit hash")
return nil, nil
}
commitHash := &common.Metadata{}
err = proto.Unmarshal(block.Metadata.Metadata[common.BlockMetadataIndex_COMMIT_HASH], commitHash)
if err != nil {
return nil, errors.Wrap(err, "error unmarshalling last persisted commit hash")
}
return commitHash.Value, nil
}
func (l *kvLedger) isPvtDataStoreAheadOfBlockStore() (bool, error) {
blockStoreInfo, err := l.blockStore.GetBlockchainInfo()
if err != nil {
return false, err
}
pvtstoreHeight, err := l.pvtdataStore.LastCommittedBlockHeight()
if err != nil {
return false, err
}
return pvtstoreHeight > blockStoreInfo.Height, nil
}
func (l *kvLedger) recoverDBs() error {
logger.Debugf("Entering recoverDB()")
if err := l.syncStateAndHistoryDBWithBlockstore(); err != nil {
return err
}
return l.syncStateDBWithOldBlkPvtdata()
}
func (l *kvLedger) syncStateAndHistoryDBWithBlockstore() error {
// If there is no block in blockstorage, nothing to recover.
info, _ := l.blockStore.GetBlockchainInfo()
if info.Height == 0 {
logger.Debug("Block storage is empty.")
return nil
}
lastBlockInBlockStore := info.Height - 1
recoverables := []recoverable{l.txmgr}
if l.historyDB != nil {
recoverables = append(recoverables, l.historyDB)
}
recoverers := []*recoverer{}
for _, recoverable := range recoverables {
// nextRequiredBlock is nothing but the nextBlockNum expected by the state DB.
// In other words, the nextRequiredBlock is nothing but the height of stateDB.
recoverFlag, nextRequiredBlock, err := recoverable.ShouldRecover(lastBlockInBlockStore)
if err != nil {
return err
}
if l.bootSnapshotMetadata != nil {
lastBlockInSnapshot := l.bootSnapshotMetadata.LastBlockNumber
if nextRequiredBlock <= lastBlockInSnapshot {
return errors.Errorf(
"recovery for DB [%s] not possible. Ledger [%s] is created from a snapshot. Last block in snapshot = [%d], DB needs block [%d] onward",
recoverable.Name(),
l.ledgerID,
lastBlockInSnapshot,
nextRequiredBlock,
)
}
}
if nextRequiredBlock > lastBlockInBlockStore+1 {
dbName := recoverable.Name()
return fmt.Errorf("the %s database [height=%d] is ahead of the block store [height=%d]. "+
"This is possible when the %s database is not dropped after a ledger reset/rollback. "+
"The %s database can safely be dropped and will be rebuilt up to block store height upon the next peer start",
dbName, nextRequiredBlock, lastBlockInBlockStore+1, dbName, dbName)
}
if recoverFlag {
recoverers = append(recoverers, &recoverer{nextRequiredBlock, recoverable})
}
}
if len(recoverers) == 0 {
return nil
}
if len(recoverers) == 1 {
return l.recommitLostBlocks(recoverers[0].nextRequiredBlock, lastBlockInBlockStore, recoverers[0].recoverable)
}
// both dbs need to be recovered
if recoverers[0].nextRequiredBlock > recoverers[1].nextRequiredBlock {
// swap (put the lagger db at 0 index)
recoverers[0], recoverers[1] = recoverers[1], recoverers[0]
}
if recoverers[0].nextRequiredBlock != recoverers[1].nextRequiredBlock {
// bring the lagger db equal to the other db
if err := l.recommitLostBlocks(recoverers[0].nextRequiredBlock, recoverers[1].nextRequiredBlock-1,
recoverers[0].recoverable); err != nil {
return err
}
}
// get both the db upto block storage
return l.recommitLostBlocks(recoverers[1].nextRequiredBlock, lastBlockInBlockStore,
recoverers[0].recoverable, recoverers[1].recoverable)
}
func (l *kvLedger) syncStateDBWithOldBlkPvtdata() error {
// TODO: syncStateDBWithOldBlkPvtdata, GetLastUpdatedOldBlocksPvtData(),
// and ResetLastUpdatedOldBlocksList() can be removed in > v2 LTS.
// From v2.0 onwards, we do not store the last updatedBlksList.
// Only to support the rolling upgrade from v14 LTS to v2 LTS, we
// retain these three functions in v2.0 - FAB-16294.
blocksPvtData, err := l.pvtdataStore.GetLastUpdatedOldBlocksPvtData()
if err != nil {
return err
}
// Assume that the peer has restarted after a rollback or a reset.
// As the pvtdataStore can contain pvtData of yet to be committed blocks,
// we need to filter them before passing it to the transaction manager
// for stateDB updates.
if err := l.filterYetToCommitBlocks(blocksPvtData); err != nil {
return err
}
if err = l.applyValidTxPvtDataOfOldBlocks(blocksPvtData); err != nil {
return err
}
return l.pvtdataStore.ResetLastUpdatedOldBlocksList()
}
func (l *kvLedger) filterYetToCommitBlocks(blocksPvtData map[uint64][]*ledger.TxPvtData) error {
info, err := l.blockStore.GetBlockchainInfo()
if err != nil {
return err
}
for blkNum := range blocksPvtData {
if blkNum > info.Height-1 {
logger.Infof("found pvtdata associated with yet to be committed block [%d]", blkNum)
delete(blocksPvtData, blkNum)
}
}
return nil
}
// recommitLostBlocks retrieves blocks in specified range and commit the write set to either
// state DB or history DB or both
func (l *kvLedger) recommitLostBlocks(firstBlockNum uint64, lastBlockNum uint64, recoverables ...recoverable) error {
logger.Infof("Recommitting lost blocks - firstBlockNum=%d, lastBlockNum=%d, recoverables=%#v", firstBlockNum, lastBlockNum, recoverables)
var err error
var blockAndPvtdata *ledger.BlockAndPvtData
for blockNumber := firstBlockNum; blockNumber <= lastBlockNum; blockNumber++ {
if blockAndPvtdata, err = l.GetPvtDataAndBlockByNum(blockNumber, nil); err != nil {
return err
}
for _, r := range recoverables {
if err := r.CommitLostBlock(blockAndPvtdata); err != nil {
return err
}
}
}
logger.Infof("Recommitted lost blocks - firstBlockNum=%d, lastBlockNum=%d, recoverables=%#v", firstBlockNum, lastBlockNum, recoverables)
return nil
}
// TxIDExists returns true if the specified txID is already present in one of the already committed blocks
func (l *kvLedger) TxIDExists(txID string) (bool, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
return l.blockStore.TxIDExists(txID)
}
// GetTransactionByID retrieves a transaction by id
func (l *kvLedger) GetTransactionByID(txID string) (*peer.ProcessedTransaction, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
tranEnv, err := l.blockStore.RetrieveTxByID(txID)
if err != nil {
return nil, err
}
txVResult, _, err := l.blockStore.RetrieveTxValidationCodeByTxID(txID)
if err != nil {
return nil, err
}
processedTran := &peer.ProcessedTransaction{TransactionEnvelope: tranEnv, ValidationCode: int32(txVResult)}
return processedTran, nil
}
// GetBlockchainInfo returns basic info about blockchain
func (l *kvLedger) GetBlockchainInfo() (*common.BlockchainInfo, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
bcInfo, err := l.blockStore.GetBlockchainInfo()
return bcInfo, err
}
// GetBlockByNumber returns block at a given height
// blockNumber of math.MaxUint64 will return last block
func (l *kvLedger) GetBlockByNumber(blockNumber uint64) (*common.Block, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
block, err := l.blockStore.RetrieveBlockByNumber(blockNumber)
return block, err
}
// GetBlocksIterator returns an iterator that starts from `startBlockNumber`(inclusive).
// The iterator is a blocking iterator i.e., it blocks till the next block gets available in the ledger
// ResultsIterator contains type BlockHolder
func (l *kvLedger) GetBlocksIterator(startBlockNumber uint64) (commonledger.ResultsIterator, error) {
blkItr, err := l.blockStore.RetrieveBlocks(startBlockNumber)
if err != nil {
return nil, err
}
return &blocksItr{l.blockAPIsRWLock, blkItr}, nil
}
// GetBlockByHash returns a block given it's hash
func (l *kvLedger) GetBlockByHash(blockHash []byte) (*common.Block, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
block, err := l.blockStore.RetrieveBlockByHash(blockHash)
return block, err
}
// GetBlockByTxID returns a block which contains a transaction
func (l *kvLedger) GetBlockByTxID(txID string) (*common.Block, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
block, err := l.blockStore.RetrieveBlockByTxID(txID)
return block, err
}
// GetTxValidationCodeByTxID returns transaction validation code and block number in which the transaction was committed
func (l *kvLedger) GetTxValidationCodeByTxID(txID string) (peer.TxValidationCode, uint64, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
txValidationCode, blkNum, err := l.blockStore.RetrieveTxValidationCodeByTxID(txID)
return txValidationCode, blkNum, err
}
// NewTxSimulator returns new `ledger.TxSimulator`
func (l *kvLedger) NewTxSimulator(txid string) (ledger.TxSimulator, error) {
return l.txmgr.NewTxSimulator(txid)
}
// NewQueryExecutor gives handle to a query executor.
// A client can obtain more than one 'QueryExecutor's for parallel execution.
// Any synchronization should be performed at the implementation level if required
func (l *kvLedger) NewQueryExecutor() (ledger.QueryExecutor, error) {
return l.txmgr.NewQueryExecutor(util.GenerateUUID())
}
// NewHistoryQueryExecutor gives handle to a history query executor.
// A client can obtain more than one 'HistoryQueryExecutor's for parallel execution.
// Any synchronization should be performed at the implementation level if required
// Pass the ledger blockstore so that historical values can be looked up from the chain
func (l *kvLedger) NewHistoryQueryExecutor() (ledger.HistoryQueryExecutor, error) {
if l.historyDB != nil {
return l.historyDB.NewQueryExecutor(l.blockStore)
}
return nil, nil
}
// CommitLegacy commits the block and the corresponding pvt data in an atomic operation.
// It synchronizes commit, snapshot generation and snapshot requests via events and commitProceed channels.
// Before committing a block, it sends a commitStart event and waits for a message from commitProceed.
// After the block is committed, it sends a commitDone event.
// Refer to processEvents function to understand how the channels and events work together to handle synchronization.
func (l *kvLedger) CommitLegacy(pvtdataAndBlock *ledger.BlockAndPvtData, commitOpts *ledger.CommitOptions) error {
blockNumber := pvtdataAndBlock.Block.Header.Number
l.snapshotMgr.events <- &event{commitStart, blockNumber}
<-l.snapshotMgr.commitProceed
if err := l.commit(pvtdataAndBlock, commitOpts); err != nil {
return err
}
l.snapshotMgr.events <- &event{commitDone, blockNumber}
return nil
}
// commit commits the block and the corresponding pvt data in an atomic operation.
func (l *kvLedger) commit(pvtdataAndBlock *ledger.BlockAndPvtData, commitOpts *ledger.CommitOptions) error {
var err error
block := pvtdataAndBlock.Block
blockNo := pvtdataAndBlock.Block.Header.Number
startBlockProcessing := time.Now()
if commitOpts.FetchPvtDataFromLedger {
// when we reach here, it means that the pvtdata store has the
// pvtdata associated with this block but the stateDB might not
// have it. During the commit of this block, no update would
// happen in the pvtdata store as it already has the required data.
// if there is any missing pvtData, reconciler will fetch them
// and update both the pvtdataStore and stateDB. Hence, we can
// fetch what is available in the pvtDataStore. If any or
// all of the pvtdata associated with the block got expired
// and no longer available in pvtdataStore, eventually these
// pvtdata would get expired in the stateDB as well (though it
// would miss the pvtData until then)
txPvtData, err := l.pvtdataStore.GetPvtDataByBlockNum(blockNo, nil)
if err != nil {
return err
}
pvtdataAndBlock.PvtData = convertTxPvtDataArrayToMap(txPvtData)
}
logger.Debugf("[%s] Validating state for block [%d]", l.ledgerID, blockNo)
appInitiatedPurgeUpdates, txstatsInfo, updateBatchBytes, err := l.txmgr.ValidateAndPrepare(pvtdataAndBlock, true)
if err != nil {
return err
}
elapsedBlockProcessing := time.Since(startBlockProcessing)
startBlockstorageAndPvtdataCommit := time.Now()
logger.Debugf("[%s] Adding CommitHash to the block [%d]", l.ledgerID, blockNo)
// we need to ensure that only after a genesis block, commitHash is computed
// and added to the block. In other words, only after joining a new channel
// or peer reset, the commitHash would be added to the block
if block.Header.Number == 1 || len(l.commitHash) != 0 {
l.addBlockCommitHash(pvtdataAndBlock.Block, updateBatchBytes)
}
logger.Debugf("[%s] Committing pvtdata and block [%d] to storage", l.ledgerID, blockNo)
l.blockAPIsRWLock.Lock()
defer l.blockAPIsRWLock.Unlock()
purgeMarkers := []*pvtdatastorage.PurgeMarker{}
for _, u := range appInitiatedPurgeUpdates {
purgeMarkers = append(purgeMarkers,
&pvtdatastorage.PurgeMarker{
Ns: u.CompositeKey.Namespace,
Coll: u.CompositeKey.CollectionName,
PvtkeyHash: []byte(u.CompositeKey.KeyHash),
TxNum: u.Version.TxNum,
},
)
}
// retrieve pvtkeys from pvtdata store prior to committing the purge marker, otherwise, the background deletion process
// may purge hashed index entries before we can fetch the corresponding private keys here.
pvtKeysToDelete := map[privacyenabledstate.PvtdataCompositeKey]*version.Height{}
for _, u := range appInitiatedPurgeUpdates {
pvtKey, err := l.pvtdataStore.FetchPrivateDataRawKey(
u.CompositeKey.Namespace, u.CompositeKey.CollectionName, []byte(u.CompositeKey.KeyHash),
)
if err != nil {
return err
}
if pvtKey == "" {
continue
}
pvtKeysToDelete[privacyenabledstate.PvtdataCompositeKey{
Namespace: u.CompositeKey.Namespace,
CollectionName: u.CompositeKey.CollectionName,
Key: pvtKey,
}] = u.Version
}
if err = l.commitToPvtAndBlockStore(pvtdataAndBlock, purgeMarkers); err != nil {
return err
}
elapsedBlockstorageAndPvtdataCommit := time.Since(startBlockstorageAndPvtdataCommit)
startCommitState := time.Now()
l.txmgr.UpdateBatchWithAppInitiatedPvtKeysToPurge(pvtKeysToDelete)
logger.Debugf("[%s] Committing block [%d] transactions to state database", l.ledgerID, blockNo)
if err = l.txmgr.Commit(); err != nil {
panic(errors.WithMessage(err, "error during commit to txmgr"))
}
elapsedCommitState := time.Since(startCommitState)
// History database could be written in parallel with state and/or async as a future optimization,
// although it has not been a bottleneck...no need to clutter the log with elapsed duration.
if l.historyDB != nil {
logger.Debugf("[%s] Committing block [%d] transactions to history database", l.ledgerID, blockNo)
if err := l.historyDB.Commit(block); err != nil {
panic(errors.WithMessage(err, "Error during commit to history db"))
}
}
logger.Infof("[%s] Committed block [%d] with %d transaction(s) in %dms (state_validation=%dms block_and_pvtdata_commit=%dms state_commit=%dms)"+
" commitHash=[%x]",
l.ledgerID, block.Header.Number, len(block.Data.Data),
time.Since(startBlockProcessing)/time.Millisecond,
elapsedBlockProcessing/time.Millisecond,
elapsedBlockstorageAndPvtdataCommit/time.Millisecond,
elapsedCommitState/time.Millisecond,
l.commitHash,
)
l.updateBlockStats(
elapsedBlockProcessing,
elapsedBlockstorageAndPvtdataCommit,
elapsedCommitState,
txstatsInfo,
)
l.sendCommitNotification(blockNo, txstatsInfo)
return nil
}
func (l *kvLedger) commitToPvtAndBlockStore(
blockAndPvtdata *ledger.BlockAndPvtData,
appInitiatedPurgeMarkers []*pvtdatastorage.PurgeMarker,
) error {
pvtdataStoreHt, err := l.pvtdataStore.LastCommittedBlockHeight()
if err != nil {
return err
}
blockNum := blockAndPvtdata.Block.Header.Number
if !l.isPvtstoreAheadOfBlkstore.Load().(bool) {
logger.Debugf("Writing block [%d] to pvt data store", blockNum)
// If a state fork occurs during a regular block commit,
// we have a mechanism to drop all blocks followed by refetching of blocks
// and re-processing them. In the current way of doing this, we only drop
// the block files (and related artifacts) but we do not drop/overwrite the
// pvtdatastorage as it might leads to data loss.
// During block reprocessing, as there is a possibility of an invalid pvtdata
// transaction to become valid, we store the pvtdata of invalid transactions
// too in the pvtdataStore as we do for the publicdata in the case of blockStore.
// Hence, we pass all pvtData present in the block to the pvtdataStore committer.
pvtData, missingPvtData := constructPvtDataAndMissingData(blockAndPvtdata)
// if appInitiatedPurgeMarkers are being added, we need to sync with reconciliation path as the
// reconciliation reads these markers from pvtdata store for removing the already marked-for-purged
// data from the supplied pvt data in the reconciled batch.
if len(appInitiatedPurgeMarkers) > 0 {
l.pvtdataStoreLock.Lock()
defer l.pvtdataStoreLock.Unlock()
}
if err := l.pvtdataStore.Commit(blockNum, pvtData, missingPvtData, appInitiatedPurgeMarkers); err != nil {
return err
}
} else {
logger.Debugf("Skipping writing pvtData to pvt block store as it ahead of the block store")
}
if err := l.blockStore.AddBlock(blockAndPvtdata.Block); err != nil {
return err
}
if pvtdataStoreHt == blockNum+1 {
// Only when the pvtdataStore was ahead of blockStore
// during the ledger initialization time, we reach here.
// The pvtdataStore would be ahead of blockstore when
// the peer restarts after a reset of rollback.
l.isPvtstoreAheadOfBlkstore.Store(false)
}
return nil
}
func convertTxPvtDataArrayToMap(txPvtData []*ledger.TxPvtData) ledger.TxPvtDataMap {
txPvtDataMap := make(ledger.TxPvtDataMap)
for _, pvtData := range txPvtData {
txPvtDataMap[pvtData.SeqInBlock] = pvtData
}
return txPvtDataMap
}
func (l *kvLedger) updateBlockStats(
blockProcessingTime time.Duration,
blockstorageAndPvtdataCommitTime time.Duration,
statedbCommitTime time.Duration,
txstatsInfo []*validation.TxStatInfo,
) {
l.stats.updateBlockProcessingTime(blockProcessingTime)
l.stats.updateBlockstorageAndPvtdataCommitTime(blockstorageAndPvtdataCommitTime)
l.stats.updateStatedbCommitTime(statedbCommitTime)
l.stats.updateTransactionsStats(txstatsInfo)
}
func (l *kvLedger) addBlockCommitHash(block *common.Block, updateBatchBytes []byte) {
var valueBytes []byte
txValidationCode := block.Metadata.Metadata[common.BlockMetadataIndex_TRANSACTIONS_FILTER]
valueBytes = append(valueBytes, protowire.AppendVarint(nil, uint64(len(txValidationCode)))...)
valueBytes = append(valueBytes, txValidationCode...)
valueBytes = append(valueBytes, updateBatchBytes...)
valueBytes = append(valueBytes, l.commitHash...)
l.commitHash = util.ComputeSHA256(valueBytes)
block.Metadata.Metadata[common.BlockMetadataIndex_COMMIT_HASH] = protoutil.MarshalOrPanic(&common.Metadata{Value: l.commitHash})
}
// GetPvtDataAndBlockByNum returns the block and the corresponding pvt data.
// The pvt data is filtered by the list of 'collections' supplied
func (l *kvLedger) GetPvtDataAndBlockByNum(blockNum uint64, filter ledger.PvtNsCollFilter) (*ledger.BlockAndPvtData, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
var block *common.Block
var pvtdata []*ledger.TxPvtData
var err error
if block, err = l.blockStore.RetrieveBlockByNumber(blockNum); err != nil {
return nil, err
}
if pvtdata, err = l.pvtdataStore.GetPvtDataByBlockNum(blockNum, filter); err != nil {
return nil, err
}
return &ledger.BlockAndPvtData{Block: block, PvtData: constructPvtdataMap(pvtdata)}, nil
}
// GetPvtDataByNum returns only the pvt data corresponding to the given block number
// The pvt data is filtered by the list of 'collections' supplied
func (l *kvLedger) GetPvtDataByNum(blockNum uint64, filter ledger.PvtNsCollFilter) ([]*ledger.TxPvtData, error) {
l.blockAPIsRWLock.RLock()
defer l.blockAPIsRWLock.RUnlock()
var pvtdata []*ledger.TxPvtData
var err error
if pvtdata, err = l.pvtdataStore.GetPvtDataByBlockNum(blockNum, filter); err != nil {
return nil, err
}
return pvtdata, nil
}
// DoesPvtDataInfoExist returns true when
// (1) the ledger has pvtdata associated with the given block number (or)
// (2) a few or all pvtdata associated with the given block number is missing but the
//
// missing info is recorded in the ledger (or)
//
// (3) the block is committed but it does not contain even a single
//
// transaction with pvtData.
func (l *kvLedger) DoesPvtDataInfoExist(blockNum uint64) (bool, error) {
pvtStoreHt, err := l.pvtdataStore.LastCommittedBlockHeight()
if err != nil {
return false, err
}
return blockNum+1 <= pvtStoreHt, nil
}
func (l *kvLedger) GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error) {
return l.configHistoryRetriever, nil
}
func (l *kvLedger) CommitPvtDataOfOldBlocks(reconciledPvtdata []*ledger.ReconciledPvtdata, unreconciled ledger.MissingPvtDataInfo) ([]*ledger.PvtdataHashMismatch, error) {
logger.Debugf("[%s:] Comparing pvtData of [%d] old blocks against the hashes in transaction's rwset to find valid and invalid data",
l.ledgerID, len(reconciledPvtdata))
l.pvtdataStoreLock.Lock()
defer l.pvtdataStoreLock.Unlock()
lastBlockInBootstrapSnapshot := uint64(0)
if l.bootSnapshotMetadata != nil {
lastBlockInBootstrapSnapshot = l.bootSnapshotMetadata.LastBlockNumber
}
hashVerifiedPvtData, err := extractValidPvtData(
reconciledPvtdata, l.blockStore, l.pvtdataStore, lastBlockInBootstrapSnapshot,
)
if err != nil {
return nil, err
}
err = l.applyValidTxPvtDataOfOldBlocks(hashVerifiedPvtData)
if err != nil {
return nil, err
}
logger.Debugf("[%s:] Committing pvtData of [%d] old blocks to the pvtdatastore", l.ledgerID, len(reconciledPvtdata))
err = l.pvtdataStore.CommitPvtDataOfOldBlocks(hashVerifiedPvtData, unreconciled)
if err != nil {
return nil, err
}
// TODO: change the function signature to remove return of []*ledger.PvtdataHashMismatch
return nil, nil
}
func (l *kvLedger) applyValidTxPvtDataOfOldBlocks(hashVerifiedPvtData map[uint64][]*ledger.TxPvtData) error {
logger.Debugf("[%s:] Filtering pvtData of invalidation transactions", l.ledgerID)
lastBlockInBootstrapSnapshot := uint64(0)
if l.bootSnapshotMetadata != nil {
lastBlockInBootstrapSnapshot = l.bootSnapshotMetadata.LastBlockNumber
}
committedPvtData, err := filterPvtDataOfInvalidTx(hashVerifiedPvtData, l.blockStore, lastBlockInBootstrapSnapshot)
if err != nil {
return err
}
// Assume the peer fails after storing the pvtData of old block in the stateDB but before
// storing it in block store. When the peer starts again, the reconciler finds that the
// pvtData is missing in the ledger store and hence, it would fetch those data again. As
// a result, RemoveStaleAndCommitPvtDataOfOldBlocks gets already existing data. In this
// scenario, RemoveStaleAndCommitPvtDataOfOldBlocks just replaces the old entry as we
// always makes the comparison between hashed version and this pvtData. There is no
// problem in terms of data consistency. However, if the reconciler is disabled before
// the peer restart, then the pvtData in stateDB may not be in sync with the pvtData in
// ledger store till the reconciler is enabled.
logger.Debugf("[%s:] Committing pvtData of [%d] old blocks to the stateDB", l.ledgerID, len(hashVerifiedPvtData))
return l.txmgr.RemoveStaleAndCommitPvtDataOfOldBlocks(committedPvtData)
}
func (l *kvLedger) GetMissingPvtDataTracker() (ledger.MissingPvtDataTracker, error) {
return &missingPvtdataTracker{
kvLedger: l,
nextStartingBlockNum: math.MaxUint64,
}, nil
}
type commitNotifier struct {
dataChannel chan *ledger.CommitNotification
doneChannel <-chan struct{}
}
// CommitNotificationsChannel returns a read-only channel on which ledger sends a `CommitNotification`
// when a block is committed. The CommitNotification contains entries for the transactions from the committed block,
// which are not malformed, carry a legitimate TxID, and in addition, are not marked as a duplicate transaction.
// The consumer can close the 'done' channel to signal that the notifications are no longer needed. This will cause the
// CommitNotifications channel to close. There is expected to be only one consumer at a time. The function returns error
// if already a CommitNotification channel is active.
func (l *kvLedger) CommitNotificationsChannel(done <-chan struct{}) (<-chan *ledger.CommitNotification, error) {
l.commitNotifierLock.Lock()
defer l.commitNotifierLock.Unlock()
if l.commitNotifier != nil {
return nil, errors.New("only one commit notifications channel is allowed at a time")
}
l.commitNotifier = &commitNotifier{
dataChannel: make(chan *ledger.CommitNotification, 10),
doneChannel: done,
}
return l.commitNotifier.dataChannel, nil
}
func (l *kvLedger) sendCommitNotification(blockNum uint64, txStatsInfo []*validation.TxStatInfo) {
l.commitNotifierLock.Lock()
defer l.commitNotifierLock.Unlock()
if l.commitNotifier == nil {
return
}
select {
case <-l.commitNotifier.doneChannel:
close(l.commitNotifier.dataChannel)
l.commitNotifier = nil
default:
txsByID := map[string]struct{}{}
txs := []*ledger.CommitNotificationTxInfo{}
for _, t := range txStatsInfo {
txID := t.TxIDFromChannelHeader
_, ok := txsByID[txID]
if txID == "" || ok {
continue
}
txsByID[txID] = struct{}{}
txs = append(txs, &ledger.CommitNotificationTxInfo{
TxType: t.TxType,
TxID: t.TxIDFromChannelHeader,
ValidationCode: t.ValidationCode,
ChaincodeID: t.ChaincodeID,