aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-11-01 11:34:06 +0800
committerGitHub <noreply@github.com>2018-11-01 11:34:06 +0800
commit56fe2ee9435a89a46c0f3d527580aac43c85dc65 (patch)
treed4fc72a6d9117ac3fb4225da23a46e595d125b5f /core
parent96a8c333f47dff1db938ee93155d55413fa70799 (diff)
downloaddexon-consensus-56fe2ee9435a89a46c0f3d527580aac43c85dc65.tar
dexon-consensus-56fe2ee9435a89a46c0f3d527580aac43c85dc65.tar.gz
dexon-consensus-56fe2ee9435a89a46c0f3d527580aac43c85dc65.tar.bz2
dexon-consensus-56fe2ee9435a89a46c0f3d527580aac43c85dc65.tar.lz
dexon-consensus-56fe2ee9435a89a46c0f3d527580aac43c85dc65.tar.xz
dexon-consensus-56fe2ee9435a89a46c0f3d527580aac43c85dc65.tar.zst
dexon-consensus-56fe2ee9435a89a46c0f3d527580aac43c85dc65.zip
core: fix possible fork vote (#283)
Diffstat (limited to 'core')
-rw-r--r--core/agreement.go32
-rw-r--r--core/consensus.go2
2 files changed, 19 insertions, 15 deletions
diff --git a/core/agreement.go b/core/agreement.go
index 3162b2e..f3b1003 100644
--- a/core/agreement.go
+++ b/core/agreement.go
@@ -67,6 +67,8 @@ func newVoteListMap() []map[types.NodeID]*types.Vote {
type agreementReceiver interface {
ProposeVote(vote *types.Vote)
ProposeBlock() common.Hash
+ // ConfirmBlock is called with lock hold. User can safely use all data within
+ // agreement module.
ConfirmBlock(common.Hash, map[types.NodeID]*types.Vote)
PullBlocks(common.Hashes)
}
@@ -242,12 +244,7 @@ func (a *agreement) nextState() (err error) {
}
func (a *agreement) sanityCheck(vote *types.Vote) error {
- if exist := func() bool {
- a.lock.RLock()
- defer a.lock.RUnlock()
- _, exist := a.notarySet[vote.ProposerID]
- return exist
- }(); !exist {
+ if _, exist := a.notarySet[vote.ProposerID]; !exist {
return ErrNotInNotarySet
}
ok, err := verifyVoteSignature(vote)
@@ -287,19 +284,18 @@ func (a *agreement) prepareVote(vote *types.Vote) (err error) {
// processVote is the entry point for processing Vote.
func (a *agreement) processVote(vote *types.Vote) error {
+ a.lock.Lock()
+ defer a.lock.Unlock()
if err := a.sanityCheck(vote); err != nil {
return err
}
- aID := a.agreementID()
- if vote.Position != aID {
+ if vote.Position != a.aID {
// Agreement module has stopped.
- if !isStop(aID) {
- if aID.Newer(&vote.Position) {
+ if !isStop(a.aID) {
+ if a.aID.Newer(&vote.Position) {
return nil
}
}
- a.lock.Lock()
- defer a.lock.Unlock()
a.pendingVote = append(a.pendingVote, pendingVote{
vote: vote,
receivedTime: time.Now().UTC(),
@@ -358,7 +354,7 @@ func (a *agreement) processVote(vote *types.Vote) error {
if vote.BlockHash == nullBlockHash || vote.BlockHash == skipBlockHash {
continue
}
- if _, found := a.findCandidateBlock(vote.BlockHash); !found {
+ if _, found := a.findCandidateBlockNoLock(vote.BlockHash); !found {
hashes = append(hashes, vote.BlockHash)
}
}
@@ -374,6 +370,10 @@ func (a *agreement) processVote(vote *types.Vote) error {
}
func (a *agreement) done() <-chan struct{} {
+ a.lock.Lock()
+ defer a.lock.Unlock()
+ a.data.lock.Lock()
+ defer a.data.lock.Unlock()
ch := make(chan struct{}, 1)
if a.hasOutput {
ch <- struct{}{}
@@ -434,10 +434,14 @@ func (a *agreement) addCandidateBlock(block *types.Block) {
func (a *agreement) findCandidateBlock(hash common.Hash) (*types.Block, bool) {
a.lock.RLock()
defer a.lock.RUnlock()
+ return a.findCandidateBlockNoLock(hash)
+}
+
+func (a *agreement) findCandidateBlockNoLock(
+ hash common.Hash) (*types.Block, bool) {
b, e := a.candidateBlock[hash]
return b, e
}
-
func (a *agreementData) countVote(period uint64, voteType types.VoteType) (
blockHash common.Hash, ok bool) {
a.lock.RLock()
diff --git a/core/consensus.go b/core/consensus.go
index 15ecf67..fd651a1 100644
--- a/core/consensus.go
+++ b/core/consensus.go
@@ -117,7 +117,7 @@ func (recv *consensusBAReceiver) ConfirmBlock(
} else {
var exist bool
block, exist = recv.consensus.baModules[recv.chainID].
- findCandidateBlock(hash)
+ findCandidateBlockNoLock(hash)
if !exist {
recv.consensus.logger.Error("Unknown block confirmed",
"hash", hash,