aboutsummaryrefslogtreecommitdiffstats
path: root/core/consensus.go
blob: 6ca54e056d403de095c26ab776ac9bb7abb161b2 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
// Copyright 2018 The dexon-consensus Authors
// This file is part of the dexon-consensus library.
//
// The dexon-consensus library is free software: you can redistribute it
// and/or modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the License,
// or (at your option) any later version.
//
// The dexon-consensus library is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
// General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the dexon-consensus library. If not, see
// <http://www.gnu.org/licenses/>.

package core

import (
    "context"
    "encoding/hex"
    "fmt"
    "sync"
    "time"

    "github.com/dexon-foundation/dexon-consensus/common"
    "github.com/dexon-foundation/dexon-consensus/core/blockdb"
    "github.com/dexon-foundation/dexon-consensus/core/crypto"
    "github.com/dexon-foundation/dexon-consensus/core/types"
    typesDKG "github.com/dexon-foundation/dexon-consensus/core/types/dkg"
    "github.com/dexon-foundation/dexon-consensus/core/utils"
)

// Errors for consensus core.
var (
    ErrProposerNotInNodeSet = fmt.Errorf(
        "proposer is not in node set")
    ErrIncorrectHash = fmt.Errorf(
        "hash of block is incorrect")
    ErrIncorrectSignature = fmt.Errorf(
        "signature of block is incorrect")
    ErrGenesisBlockNotEmpty = fmt.Errorf(
        "genesis block should be empty")
    ErrUnknownBlockProposed = fmt.Errorf(
        "unknown block is proposed")
    ErrIncorrectAgreementResultPosition = fmt.Errorf(
        "incorrect agreement result position")
    ErrNotEnoughVotes = fmt.Errorf(
        "not enought votes")
    ErrIncorrectVoteBlockHash = fmt.Errorf(
        "incorrect vote block hash")
    ErrIncorrectVoteType = fmt.Errorf(
        "incorrect vote type")
    ErrIncorrectVotePosition = fmt.Errorf(
        "incorrect vote position")
    ErrIncorrectVoteProposer = fmt.Errorf(
        "incorrect vote proposer")
    ErrCRSNotReady = fmt.Errorf(
        "CRS not ready")
    ErrConfigurationNotReady = fmt.Errorf(
        "Configuration not ready")
)

// consensusBAReceiver implements agreementReceiver.
type consensusBAReceiver struct {
    // TODO(mission): consensus would be replaced by lattice and network.
    consensus        *Consensus
    agreementModule  *agreement
    chainID          uint32
    changeNotaryTime time.Time
    round            uint64
    restartNotary    chan bool
}

func (recv *consensusBAReceiver) ProposeVote(vote *types.Vote) {
    if err := recv.agreementModule.prepareVote(vote); err != nil {
        recv.consensus.logger.Error("Failed to prepare vote", "error", err)
        return
    }
    go func() {
        if err := recv.agreementModule.processVote(vote); err != nil {
            recv.consensus.logger.Error("Failed to process vote", "error", err)
            return
        }
        recv.consensus.logger.Debug("Calling Network.BroadcastVote",
            "vote", vote)
        recv.consensus.network.BroadcastVote(vote)
    }()
}

func (recv *consensusBAReceiver) ProposeBlock() common.Hash {
    block := recv.consensus.proposeBlock(recv.chainID, recv.round)
    if block == nil {
        recv.consensus.logger.Error("unable to propose block")
        return nullBlockHash
    }
    if err := recv.consensus.preProcessBlock(block); err != nil {
        recv.consensus.logger.Error("Failed to pre-process block", "error", err)
        return common.Hash{}
    }
    recv.consensus.logger.Debug("Calling Network.BroadcastBlock", "block", block)
    recv.consensus.network.BroadcastBlock(block)
    return block.Hash
}

func (recv *consensusBAReceiver) ConfirmBlock(
    hash common.Hash, votes map[types.NodeID]*types.Vote) {
    var block *types.Block
    isEmptyBlockConfirmed := hash == common.Hash{}
    if isEmptyBlockConfirmed {
        aID := recv.agreementModule.agreementID()
        recv.consensus.logger.Info("Empty block is confirmed",
            "position", &aID)
        var err error
        block, err = recv.consensus.proposeEmptyBlock(recv.round, recv.chainID)
        if err != nil {
            recv.consensus.logger.Error("Propose empty block failed", "error", err)
            return
        }
    } else {
        var exist bool
        block, exist = recv.agreementModule.findCandidateBlockNoLock(hash)
        if !exist {
            recv.consensus.logger.Error("Unknown block confirmed",
                "hash", hash,
                "chainID", recv.chainID)
            ch := make(chan *types.Block)
            func() {
                recv.consensus.lock.Lock()
                defer recv.consensus.lock.Unlock()
                recv.consensus.baConfirmedBlock[hash] = ch
            }()
            recv.consensus.network.PullBlocks(common.Hashes{hash})
            go func() {
                block = <-ch
                recv.consensus.logger.Info("Receive unknown block",
                    "hash", hash,
                    "chainID", recv.chainID)
                recv.agreementModule.addCandidateBlock(block)
                recv.agreementModule.lock.Lock()
                defer recv.agreementModule.lock.Unlock()
                recv.ConfirmBlock(block.Hash, votes)
            }()
            return
        }
    }
    recv.consensus.ccModule.registerBlock(block)
    if block.Position.Height != 0 &&
        !recv.consensus.lattice.Exist(block.ParentHash) {
        go func(hash common.Hash) {
            parentHash := hash
            for {
                recv.consensus.logger.Warn("Parent block not confirmed",
                    "hash", parentHash,
                    "chainID", recv.chainID)
                ch := make(chan *types.Block)
                if !func() bool {
                    recv.consensus.lock.Lock()
                    defer recv.consensus.lock.Unlock()
                    if _, exist := recv.consensus.baConfirmedBlock[parentHash]; exist {
                        return false
                    }
                    recv.consensus.baConfirmedBlock[parentHash] = ch
                    return true
                }() {
                    return
                }
                var block *types.Block
            PullBlockLoop:
                for {
                    recv.consensus.logger.Debug("Calling Network.PullBlock for parent",
                        "hash", parentHash)
                    recv.consensus.network.PullBlocks(common.Hashes{parentHash})
                    select {
                    case block = <-ch:
                        break PullBlockLoop
                    case <-time.After(1 * time.Second):
                    }
                }
                recv.consensus.logger.Info("Receive parent block",
                    "hash", block.ParentHash,
                    "chainID", recv.chainID)
                recv.consensus.ccModule.registerBlock(block)
                if err := recv.consensus.processBlock(block); err != nil {
                    recv.consensus.logger.Error("Failed to process block", "error", err)
                    return
                }
                parentHash = block.ParentHash
                if block.Position.Height == 0 ||
                    recv.consensus.lattice.Exist(parentHash) {
                    return
                }
            }
        }(block.ParentHash)
    }
    voteList := make([]types.Vote, 0, len(votes))
    for _, vote := range votes {
        if vote.BlockHash != hash {
            continue
        }
        voteList = append(voteList, *vote)
    }
    result := &types.AgreementResult{
        BlockHash:    block.Hash,
        Position:     block.Position,
        Votes:        voteList,
        IsEmptyBlock: isEmptyBlockConfirmed,
    }
    recv.consensus.logger.Debug("Propose AgreementResult",
        "result", result)
    recv.consensus.network.BroadcastAgreementResult(result)
    if err := recv.consensus.processBlock(block); err != nil {
        recv.consensus.logger.Error("Failed to process block", "error", err)
        return
    }
    // Clean the restartNotary channel so BA will not stuck by deadlock.
CleanChannelLoop:
    for {
        select {
        case <-recv.restartNotary:
        default:
            break CleanChannelLoop
        }
    }
    if block.Timestamp.After(recv.changeNotaryTime) {
        recv.round++
        recv.restartNotary <- true
    } else {
        recv.restartNotary <- false
    }
}

func (recv *consensusBAReceiver) PullBlocks(hashes common.Hashes) {
    recv.consensus.logger.Debug("Calling Network.PullBlocks", "hashes", hashes)
    recv.consensus.network.PullBlocks(hashes)
}

// consensusDKGReceiver implements dkgReceiver.
type consensusDKGReceiver struct {
    ID           types.NodeID
    gov          Governance
    authModule   *Authenticator
    nodeSetCache *utils.NodeSetCache
    cfgModule    *configurationChain
    network      Network
    logger       common.Logger
}

// ProposeDKGComplaint proposes a DKGComplaint.
func (recv *consensusDKGReceiver) ProposeDKGComplaint(
    complaint *typesDKG.Complaint) {
    if err := recv.authModule.SignDKGComplaint(complaint); err != nil {
        recv.logger.Error("Failed to sign DKG complaint", "error", err)
        return
    }
    recv.logger.Debug("Calling Governace.AddDKGComplaint",
        "complaint", complaint)
    recv.gov.AddDKGComplaint(complaint.Round, complaint)
}

// ProposeDKGMasterPublicKey propose a DKGMasterPublicKey.
func (recv *consensusDKGReceiver) ProposeDKGMasterPublicKey(
    mpk *typesDKG.MasterPublicKey) {
    if err := recv.authModule.SignDKGMasterPublicKey(mpk); err != nil {
        recv.logger.Error("Failed to sign DKG master public key", "error", err)
        return
    }
    recv.logger.Debug("Calling Governance.AddDKGMasterPublicKey", "key", mpk)
    recv.gov.AddDKGMasterPublicKey(mpk.Round, mpk)
}

// ProposeDKGPrivateShare propose a DKGPrivateShare.
func (recv *consensusDKGReceiver) ProposeDKGPrivateShare(
    prv *typesDKG.PrivateShare) {
    if err := recv.authModule.SignDKGPrivateShare(prv); err != nil {
        recv.logger.Error("Failed to sign DKG private share", "error", err)
        return
    }
    receiverPubKey, exists := recv.nodeSetCache.GetPublicKey(prv.ReceiverID)
    if !exists {
        recv.logger.Error("Public key for receiver not found",
            "receiver", prv.ReceiverID.String()[:6])
        return
    }
    if prv.ReceiverID == recv.ID {
        go func() {
            if err := recv.cfgModule.processPrivateShare(prv); err != nil {
                recv.logger.Error("Failed to process self private share", "prvShare", prv)
            }
        }()
    } else {
        recv.logger.Debug("Calling Network.SendDKGPrivateShare",
            "receiver", hex.EncodeToString(receiverPubKey.Bytes()))
        recv.network.SendDKGPrivateShare(receiverPubKey, prv)
    }
}

// ProposeDKGAntiNackComplaint propose a DKGPrivateShare as an anti complaint.
func (recv *consensusDKGReceiver) ProposeDKGAntiNackComplaint(
    prv *typesDKG.PrivateShare) {
    if prv.ProposerID == recv.ID {
        if err := recv.authModule.SignDKGPrivateShare(prv); err != nil {
            recv.logger.Error("Failed sign DKG private share", "error", err)
            return
        }
    }
    recv.logger.Debug("Calling Network.BroadcastDKGPrivateShare", "share", prv)
    recv.network.BroadcastDKGPrivateShare(prv)
}

// ProposeDKGFinalize propose a DKGFinalize message.
func (recv *consensusDKGReceiver) ProposeDKGFinalize(final *typesDKG.Finalize) {
    if err := recv.authModule.SignDKGFinalize(final); err != nil {
        recv.logger.Error("Faield to sign DKG finalize", "error", err)
        return
    }
    recv.logger.Debug("Calling Governance.AddDKGFinalize", "final", final)
    recv.gov.AddDKGFinalize(final.Round, final)
}

// Consensus implements DEXON Consensus algorithm.
type Consensus struct {
    // Node Info.
    ID         types.NodeID
    authModule *Authenticator

    // BA.
    baMgr            *agreementMgr
    baConfirmedBlock map[common.Hash]chan<- *types.Block

    // DKG.
    dkgRunning int32
    dkgReady   *sync.Cond
    cfgModule  *configurationChain

    // Dexon consensus v1's modules.
    lattice  *Lattice
    ccModule *compactionChain
    toSyncer *totalOrderingSyncer

    // Interfaces.
    db       blockdb.BlockDatabase
    app      Application
    debugApp Debug
    gov      Governance
    network  Network

    // Misc.
    dMoment       time.Time
    nodeSetCache  *utils.NodeSetCache
    round         uint64
    roundToNotify uint64
    lock          sync.RWMutex
    ctx           context.Context
    ctxCancel     context.CancelFunc
    event         *common.Event
    logger        common.Logger
}

// NewConsensus construct an Consensus instance.
func NewConsensus(
    dMoment time.Time,
    app Application,
    gov Governance,
    db blockdb.BlockDatabase,
    network Network,
    prv crypto.PrivateKey,
    logger common.Logger) *Consensus {

    // TODO(w): load latest blockHeight from DB, and use config at that height.
    nodeSetCache := utils.NewNodeSetCache(gov)
    // Setup auth module.
    authModule := NewAuthenticator(prv)
    // Check if the application implement Debug interface.
    var debugApp Debug
    if a, ok := app.(Debug); ok {
        debugApp = a
    }
    // Get configuration for genesis round.
    var round uint64
    logger.Debug("Calling Governance.Configuration", "round", round)
    config := gov.Configuration(round)
    if config == nil {
        logger.Error("Unable to get configuration", "round", round)
        return nil
    }
    // Init lattice.
    lattice := NewLattice(
        dMoment, round, config, authModule, app, debugApp, db, logger)
    // Init configuration chain.
    ID := types.NewNodeID(prv.PublicKey())
    recv := &consensusDKGReceiver{
        ID:           ID,
        gov:          gov,
        authModule:   authModule,
        nodeSetCache: nodeSetCache,
        network:      network,
        logger:       logger,
    }
    cfgModule := newConfigurationChain(
        ID,
        recv,
        gov,
        nodeSetCache,
        logger)
    recv.cfgModule = cfgModule
    // Construct Consensus instance.
    con := &Consensus{
        ID:               ID,
        ccModule:         newCompactionChain(gov),
        lattice:          lattice,
        app:              newNonBlocking(app, debugApp),
        debugApp:         debugApp,
        gov:              gov,
        db:               db,
        network:          network,
        baConfirmedBlock: make(map[common.Hash]chan<- *types.Block),
        dkgReady:         sync.NewCond(&sync.Mutex{}),
        cfgModule:        cfgModule,
        dMoment:          dMoment,
        nodeSetCache:     nodeSetCache,
        authModule:       authModule,
        event:            common.NewEvent(),
        logger:           logger,
    }
    con.ctx, con.ctxCancel = context.WithCancel(context.Background())
    con.baMgr = newAgreementMgr(con, round, dMoment)
    if err := con.prepare(&types.Block{}); err != nil {
        panic(err)
    }
    return con
}

// NewConsensusFromSyncer constructs an Consensus instance from information
// provided from syncer.
//
// You need to provide the initial block for this newly created Consensus
// instance to bootstrap with. A proper choice is the last finalized block you
// delivered to syncer.
func NewConsensusFromSyncer(
    initBlock *types.Block,
    initRoundBeginTime time.Time,
    app Application,
    gov Governance,
    db blockdb.BlockDatabase,
    networkModule Network,
    prv crypto.PrivateKey,
    latticeModule *Lattice,
    blocks []*types.Block,
    randomnessResults []*types.BlockRandomnessResult,
    logger common.Logger) (*Consensus, error) {
    // Setup the cache for node sets.
    nodeSetCache := utils.NewNodeSetCache(gov)
    // Setup auth module.
    authModule := NewAuthenticator(prv)
    // Init configuration chain.
    ID := types.NewNodeID(prv.PublicKey())
    recv := &consensusDKGReceiver{
        ID:           ID,
        gov:          gov,
        authModule:   authModule,
        nodeSetCache: nodeSetCache,
        network:      networkModule,
        logger:       logger,
    }
    cfgModule := newConfigurationChain(
        ID,
        recv,
        gov,
        nodeSetCache,
        logger)
    recv.cfgModule = cfgModule
    // Setup Consensus instance.
    con := &Consensus{
        ID:               ID,
        ccModule:         newCompactionChain(gov),
        lattice:          latticeModule,
        app:              app,
        gov:              gov,
        db:               db,
        network:          networkModule,
        baConfirmedBlock: make(map[common.Hash]chan<- *types.Block),
        dkgReady:         sync.NewCond(&sync.Mutex{}),
        cfgModule:        cfgModule,
        dMoment:          initRoundBeginTime,
        nodeSetCache:     nodeSetCache,
        authModule:       authModule,
        event:            common.NewEvent(),
        logger:           logger,
    }
    con.ctx, con.ctxCancel = context.WithCancel(context.Background())
    con.baMgr = newAgreementMgr(con, initBlock.Position.Round, initRoundBeginTime)
    // Bootstrap the consensus instance.
    if err := con.prepare(initBlock); err != nil {
        return nil, err
    }
    // Dump all BA-confirmed blocks to the consensus instance.
    for _, b := range blocks {
        con.app.BlockConfirmed(*b)
        con.ccModule.registerBlock(b)
        if err := con.processBlock(b); err != nil {
            return nil, err
        }
    }
    // Dump all randomness result to the consensus instance.
    for _, r := range randomnessResults {
        if err := con.ProcessBlockRandomnessResult(r); err != nil {
            con.logger.Error("failed to process randomness result when syncing",
                "result", r)
            continue
        }
    }
    return con, nil
}

// prepare the Consensus instance to be ready for blocks after 'initBlock'.
// 'initBlock' could be either:
//  - an empty block
//  - the last finalized block
func (con *Consensus) prepare(initBlock *types.Block) error {
    // The block past from full node should be delivered already or known by
    // full node. We don't have to notify it.
    con.roundToNotify = initBlock.Position.Round + 1
    initRound := initBlock.Position.Round
    con.logger.Debug("Calling Governance.Configuration", "round", initRound)
    initConfig := con.gov.Configuration(initRound)
    // Setup context.
    con.ccModule.init(initBlock)
    // Setup agreementMgr module.
    con.logger.Debug("Calling Governance.Configuration", "round", initRound)
    initCfg := con.gov.Configuration(initRound)
    if initCfg == nil {
        return ErrConfigurationNotReady
    }
    con.logger.Debug("Calling Governance.CRS", "round", initRound)
    initCRS := con.gov.CRS(initRound)
    if (initCRS == common.Hash{}) {
        return ErrCRSNotReady
    }
    if err := con.baMgr.appendConfig(initRound, initCfg, initCRS); err != nil {
        return err
    }
    // Setup lattice module.
    initPlusOneCfg := con.gov.Configuration(initRound + 1)
    if initPlusOneCfg == nil {
        return ErrConfigurationNotReady
    }
    if err := con.lattice.AppendConfig(initRound+1, initPlusOneCfg); err != nil {
        return err
    }
    // Register events.
    dkgSet, err := con.nodeSetCache.GetDKGSet(initRound)
    if err != nil {
        return err
    }
    if _, exist := dkgSet[con.ID]; exist {
        con.logger.Info("Selected as DKG set", "round", initRound)
        con.cfgModule.registerDKG(initRound, int(initConfig.DKGSetSize)/3+1)
        con.event.RegisterTime(con.dMoment.Add(initConfig.RoundInterval/4),
            func(time.Time) {
                con.runDKG(initRound, initConfig)
            })
    }
    con.initialRound(con.dMoment, initRound, initConfig)
    return nil
}

// Run starts running DEXON Consensus.
func (con *Consensus) Run() {
    // Launch BA routines.
    con.baMgr.run()
    // Launch network handler.
    con.logger.Debug("Calling Network.ReceiveChan")
    go con.processMsg(con.network.ReceiveChan())
    // Sleep until dMoment come.
    time.Sleep(con.dMoment.Sub(time.Now().UTC()))
    // Block until done.
    select {
    case <-con.ctx.Done():
    }
}

// runDKG starts running DKG protocol.
func (con *Consensus) runDKG(round uint64, config *types.Config) {
    con.dkgReady.L.Lock()
    defer con.dkgReady.L.Unlock()
    if con.dkgRunning != 0 {
        return
    }
    con.dkgRunning = 1
    go func() {
        startTime := time.Now().UTC()
        defer func() {
            con.dkgReady.L.Lock()
            defer con.dkgReady.L.Unlock()
            con.dkgReady.Broadcast()
            con.dkgRunning = 2
            DKGTime := time.Now().Sub(startTime)
            if DKGTime.Nanoseconds() >=
                config.RoundInterval.Nanoseconds()/2 {
                con.logger.Warn("Your computer cannot finish DKG on time!",
                    "nodeID", con.ID.String())
            }
        }()
        if err := con.cfgModule.runDKG(round); err != nil {
            con.logger.Error("Failed to runDKG", "error", err)
        }
    }()
}

func (con *Consensus) runCRS(round uint64) {
    con.logger.Debug("Calling Governance.CRS to check if already proposed",
        "round", round+1)
    if (con.gov.CRS(round+1) != common.Hash{}) {
        con.logger.Info("CRS already proposed", "round", round+1)
        return
    }
    con.logger.Debug("Calling Governance.IsDKGFinal to check if ready to run CRS",
        "round", round)
    for !con.gov.IsDKGFinal(round) {
        con.logger.Debug("DKG is not ready for running CRS. Retry later...",
            "round", round)
        time.Sleep(500 * time.Millisecond)
    }
    // Wait some time for DKG to recover private share.
    time.Sleep(100 * time.Millisecond)
    // Start running next round CRS.
    con.logger.Debug("Calling Governance.CRS", "round", round)
    psig, err := con.cfgModule.preparePartialSignature(round, con.gov.CRS(round))
    if err != nil {
        con.logger.Error("Failed to prepare partial signature", "error", err)
    } else if err = con.authModule.SignDKGPartialSignature(psig); err != nil {
        con.logger.Error("Failed to sign DKG partial signature", "error", err)
    } else if err = con.cfgModule.processPartialSignature(psig); err != nil {
        con.logger.Error("Failed to process partial signature", "error", err)
    } else {
        con.logger.Debug("Calling Network.BroadcastDKGPartialSignature",
            "proposer", psig.ProposerID,
            "round", psig.Round,
            "hash", psig.Hash)
        con.network.BroadcastDKGPartialSignature(psig)
        con.logger.Debug("Calling Governance.CRS", "round", round)
        crs, err := con.cfgModule.runCRSTSig(round, con.gov.CRS(round))
        if err != nil {
            con.logger.Error("Failed to run CRS Tsig", "error", err)
        } else {
            con.logger.Debug("Calling Governance.ProposeCRS",
                "round", round+1,
                "crs", hex.EncodeToString(crs))
            con.gov.ProposeCRS(round+1, crs)
        }
    }
}

func (con *Consensus) initialRound(
    startTime time.Time, round uint64, config *types.Config) {
    select {
    case <-con.ctx.Done():
        return
    default:
    }
    curDkgSet, err := con.nodeSetCache.GetDKGSet(round)
    if err != nil {
        con.logger.Error("Error getting DKG set", "round", round, "error", err)
        curDkgSet = make(map[types.NodeID]struct{})
    }
    // Initiate CRS routine.
    if _, exist := curDkgSet[con.ID]; exist {
        con.event.RegisterTime(startTime.Add(config.RoundInterval/2),
            func(time.Time) {
                go func() {
                    con.runCRS(round)
                }()
            })
    }
    // Initiate BA modules.
    con.event.RegisterTime(
        startTime.Add(config.RoundInterval/2+config.LambdaDKG),
        func(time.Time) {
            go func(nextRound uint64) {
                for (con.gov.CRS(nextRound) == common.Hash{}) {
                    con.logger.Info("CRS is not ready yet. Try again later...",
                        "nodeID", con.ID,
                        "round", nextRound)
                    time.Sleep(500 * time.Millisecond)
                }
                // Notify BA for new round.
                con.logger.Debug("Calling Governance.Configuration",
                    "round", nextRound)
                nextConfig := con.gov.Configuration(nextRound)
                con.logger.Debug("Calling Governance.CRS",
                    "round", nextRound)
                nextCRS := con.gov.CRS(nextRound)
                if err := con.baMgr.appendConfig(
                    nextRound, nextConfig, nextCRS); err != nil {
                    panic(err)
                }
            }(round + 1)
        })
    // Initiate DKG for this round.
    con.event.RegisterTime(startTime.Add(config.RoundInterval/2+config.LambdaDKG),
        func(time.Time) {
            go func(nextRound uint64) {
                // Normally, gov.CRS would return non-nil. Use this for in case of
                // unexpected network fluctuation and ensure the robustness.
                for (con.gov.CRS(nextRound) == common.Hash{}) {
                    con.logger.Info("CRS is not ready yet. Try again later...",
                        "nodeID", con.ID,
                        "round", nextRound)
                    time.Sleep(500 * time.Millisecond)
                }
                nextDkgSet, err := con.nodeSetCache.GetDKGSet(nextRound)
                if err != nil {
                    con.logger.Error("Error getting DKG set",
                        "round", nextRound,
                        "error", err)
                    return
                }
                if _, exist := nextDkgSet[con.ID]; !exist {
                    return
                }
                con.logger.Info("Selected as DKG set", "round", nextRound)
                con.cfgModule.registerDKG(
                    nextRound, int(config.DKGSetSize/3)+1)
                con.event.RegisterTime(
                    startTime.Add(config.RoundInterval*2/3),
                    func(time.Time) {
                        func() {
                            con.dkgReady.L.Lock()
                            defer con.dkgReady.L.Unlock()
                            con.dkgRunning = 0
                        }()
                        con.logger.Debug("Calling Governance.Configuration",
                            "round", nextRound)
                        nextConfig := con.gov.Configuration(nextRound)
                        con.runDKG(nextRound, nextConfig)
                    })
            }(round + 1)
        })
    // Prepare lattice module for next round and next "initialRound" routine.
    con.event.RegisterTime(startTime.Add(config.RoundInterval),
        func(time.Time) {
            // Change round.
            // Get configuration for next round.
            nextRound := round + 1
            con.logger.Debug("Calling Governance.Configuration",
                "round", nextRound)
            nextConfig := con.gov.Configuration(nextRound)
            con.initialRound(
                startTime.Add(config.RoundInterval), nextRound, nextConfig)
        })
}

// Stop the Consensus core.
func (con *Consensus) Stop() {
    con.ctxCancel()
    con.baMgr.stop()
    con.event.Reset()
}

func (con *Consensus) processMsg(msgChan <-chan interface{}) {
MessageLoop:
    for {
        var msg interface{}
        select {
        case msg = <-msgChan:
        case <-con.ctx.Done():
            return
        }

        switch val := msg.(type) {
        case *types.Block:
            if ch, exist := func() (chan<- *types.Block, bool) {
                con.lock.RLock()
                defer con.lock.RUnlock()
                ch, e := con.baConfirmedBlock[val.Hash]
                return ch, e
            }(); exist {
                if err := con.lattice.SanityCheck(val); err != nil {
                    if err == ErrRetrySanityCheckLater {
                        err = nil
                    } else {
                        con.logger.Error("SanityCheck failed", "error", err)
                        continue MessageLoop
                    }
                }
                func() {
                    con.lock.Lock()
                    defer con.lock.Unlock()
                    // In case of multiple delivered block.
                    if _, exist := con.baConfirmedBlock[val.Hash]; !exist {
                        return
                    }
                    delete(con.baConfirmedBlock, val.Hash)
                    ch <- val
                }()
            } else if val.IsFinalized() {
                // For sync mode.
                if err := con.processFinalizedBlock(val); err != nil {
                    con.logger.Error("Failed to process finalized block",
                        "error", err)
                }
            } else {
                if err := con.preProcessBlock(val); err != nil {
                    con.logger.Error("Failed to pre process block",
                        "error", err)
                }
            }
        case *types.Vote:
            if err := con.ProcessVote(val); err != nil {
                con.logger.Error("Failed to process vote",
                    "error", err)
            }
        case *types.AgreementResult:
            if err := con.ProcessAgreementResult(val); err != nil {
                con.logger.Error("Failed to process agreement result",
                    "error", err)
            }
        case *types.BlockRandomnessResult:
            if err := con.ProcessBlockRandomnessResult(val); err != nil {
                con.logger.Error("Failed to process block randomness result",
                    "hash", val.BlockHash.String()[:6],
                    "position", &val.Position,
                    "error", err)
            }
        case *typesDKG.PrivateShare:
            if err := con.cfgModule.processPrivateShare(val); err != nil {
                con.logger.Error("Failed to process private share",
                    "error", err)
            }

        case *typesDKG.PartialSignature:
            if err := con.cfgModule.processPartialSignature(val); err != nil {
                con.logger.Error("Failed to process partial signature",
                    "error", err)
            }
        }
    }
}

func (con *Consensus) proposeBlock(chainID uint32, round uint64) *types.Block {
    block := &types.Block{
        Position: types.Position{
            ChainID: chainID,
            Round:   round,
        },
    }
    if err := con.prepareBlock(block, time.Now().UTC()); err != nil {
        con.logger.Error("Failed to prepare block", "error", err)
        return nil
    }
    return block
}

func (con *Consensus) proposeEmptyBlock(
    round uint64, chainID uint32) (*types.Block, error) {
    block := &types.Block{
        Position: types.Position{
            Round:   round,
            ChainID: chainID,
        },
    }
    if err := con.lattice.PrepareEmptyBlock(block); err != nil {
        return nil, err
    }
    return block, nil
}

// ProcessVote is the entry point to submit ont vote to a Consensus instance.
func (con *Consensus) ProcessVote(vote *types.Vote) (err error) {
    v := vote.Clone()
    err = con.baMgr.processVote(v)
    return
}

// ProcessAgreementResult processes the randomness request.
func (con *Consensus) ProcessAgreementResult(
    rand *types.AgreementResult) error {
    // Sanity Check.
    if err := VerifyAgreementResult(rand, con.nodeSetCache); err != nil {
        return err
    }
    // Syncing BA Module.
    if err := con.baMgr.processAgreementResult(rand); err != nil {
        return err
    }
    // Calculating randomness.
    if rand.Position.Round == 0 {
        return nil
    }
    if !con.ccModule.blockRegistered(rand.BlockHash) {
        return nil
    }
    // Sanity check done.
    if !con.cfgModule.touchTSigHash(rand.BlockHash) {
        return nil
    }
    con.logger.Debug("Rebroadcast AgreementResult",
        "result", rand)
    con.network.BroadcastAgreementResult(rand)
    dkgSet, err := con.nodeSetCache.GetDKGSet(rand.Position.Round)
    if err != nil {
        return err
    }
    if _, exist := dkgSet[con.ID]; !exist {
        return nil
    }
    psig, err := con.cfgModule.preparePartialSignature(rand.Position.Round, rand.BlockHash)
    if err != nil {
        return err
    }
    if err = con.authModule.SignDKGPartialSignature(psig); err != nil {
        return err
    }
    if err = con.cfgModule.processPartialSignature(psig); err != nil {
        return err
    }
    con.logger.Debug("Calling Network.BroadcastDKGPartialSignature",
        "proposer", psig.ProposerID,
        "round", psig.Round,
        "hash", psig.Hash)
    con.network.BroadcastDKGPartialSignature(psig)
    go func() {
        tsig, err := con.cfgModule.runTSig(rand.Position.Round, rand.BlockHash)
        if err != nil {
            if err != ErrTSigAlreadyRunning {
                con.logger.Error("Faield to run TSIG", "error", err)
            }
            return
        }
        result := &types.BlockRandomnessResult{
            BlockHash:  rand.BlockHash,
            Position:   rand.Position,
            Randomness: tsig.Signature,
        }
        if err := con.ProcessBlockRandomnessResult(result); err != nil {
            con.logger.Error("Failed to process randomness result",
                "error", err)
            return
        }
    }()
    return nil
}

// ProcessBlockRandomnessResult processes the randomness result.
func (con *Consensus) ProcessBlockRandomnessResult(
    rand *types.BlockRandomnessResult) error {
    if rand.Position.Round == 0 {
        return nil
    }
    if err := con.ccModule.processBlockRandomnessResult(rand); err != nil {
        if err == ErrBlockNotRegistered {
            err = nil
        }
        return err
    }
    con.logger.Debug("Calling Network.BroadcastRandomnessResult",
        "hash", rand.BlockHash,
        "position", &rand.Position,
        "randomness", hex.EncodeToString(rand.Randomness))
    con.network.BroadcastRandomnessResult(rand)
    return nil
}

// preProcessBlock performs Byzantine Agreement on the block.
func (con *Consensus) preProcessBlock(b *types.Block) (err error) {
    err = con.baMgr.processBlock(b)
    if err == nil && con.debugApp != nil {
        con.debugApp.BlockReceived(b.Hash)
    }
    return
}

// deliverBlock deliver a block to application layer.
func (con *Consensus) deliverBlock(b *types.Block) {
    con.logger.Debug("Calling Application.BlockDelivered", "block", b)
    con.app.BlockDelivered(b.Hash, b.Position, b.Finalization.Clone())
    if b.Position.Round == con.roundToNotify {
        // Get configuration for the round next to next round. Configuration
        // for that round should be ready at this moment and is required for
        // lattice module. This logic is related to:
        //  - roundShift
        //  - notifyGenesisRound
        futureRound := con.roundToNotify + 1
        con.logger.Debug("Calling Governance.Configuration",
            "round", con.roundToNotify)
        futureConfig := con.gov.Configuration(futureRound)
        con.logger.Debug("Append Config", "round", futureRound)
        if err := con.lattice.AppendConfig(
            futureRound, futureConfig); err != nil {
            con.logger.Debug("Unable to append config",
                "round", futureRound,
                "error", err)
            panic(err)
        }
        // Only the first block delivered of that round would
        // trigger this noitification.
        con.logger.Debug("Calling Governance.NotifyRoundHeight",
            "round", con.roundToNotify,
            "height", b.Finalization.Height)
        con.gov.NotifyRoundHeight(
            con.roundToNotify, b.Finalization.Height)
        con.roundToNotify++
    }
}

// processBlock is the entry point to submit one block to a Consensus instance.
func (con *Consensus) processBlock(block *types.Block) (err error) {
    if err = con.db.Put(*block); err != nil && err != blockdb.ErrBlockExists {
        return
    }
    con.lock.Lock()
    defer con.lock.Unlock()
    // Block processed by lattice can be out-of-order. But the output of lattice
    // (deliveredBlocks) cannot.
    deliveredBlocks, err := con.lattice.ProcessBlock(block)
    if err != nil {
        return
    }
    // Pass delivered blocks to compaction chain.
    for _, b := range deliveredBlocks {
        if err = con.ccModule.processBlock(b); err != nil {
            return
        }
        go con.event.NotifyTime(b.Finalization.Timestamp)
    }
    deliveredBlocks = con.ccModule.extractBlocks()
    con.logger.Debug("Last blocks in compaction chain",
        "delivered", con.ccModule.lastDeliveredBlock(),
        "pending", con.ccModule.lastPendingBlock())
    for _, b := range deliveredBlocks {
        if err = con.db.Update(*b); err != nil {
            panic(err)
        }
        con.cfgModule.untouchTSigHash(b.Hash)
        con.deliverBlock(b)
        if con.debugApp != nil {
            con.debugApp.BlockReady(b.Hash)
        }
    }
    if err = con.lattice.PurgeBlocks(deliveredBlocks); err != nil {
        return
    }
    return
}

// processFinalizedBlock is the entry point for handling finalized blocks.
func (con *Consensus) processFinalizedBlock(block *types.Block) error {
    return con.ccModule.processFinalizedBlock(block)
}

// PrepareBlock would setup header fields of block based on its ProposerID.
func (con *Consensus) prepareBlock(b *types.Block,
    proposeTime time.Time) (err error) {
    if err = con.lattice.PrepareBlock(b, proposeTime); err != nil {
        return
    }
    con.logger.Debug("Calling Governance.CRS", "round", b.Position.Round)
    crs := con.gov.CRS(b.Position.Round)
    if crs.Equal(common.Hash{}) {
        con.logger.Error("CRS for round is not ready, unable to prepare block",
            "position", &b.Position)
        err = ErrCRSNotReady
        return
    }
    if err = con.authModule.SignCRS(b, crs); err != nil {
        return
    }
    return
}

// PrepareGenesisBlock would setup header fields for genesis block.
func (con *Consensus) PrepareGenesisBlock(b *types.Block,
    proposeTime time.Time) (err error) {
    if err = con.prepareBlock(b, proposeTime); err != nil {
        return
    }
    if len(b.Payload) != 0 {
        err = ErrGenesisBlockNotEmpty
        return
    }
    return
}