|
|
- package consensus
-
- import (
- "bytes"
- "errors"
- "fmt"
- "reflect"
- "sync"
- "sync/atomic"
- "time"
-
- "github.com/tendermint/tendermint/binary"
- bc "github.com/tendermint/tendermint/blockchain"
- . "github.com/tendermint/tendermint/common"
- . "github.com/tendermint/tendermint/consensus/types"
- "github.com/tendermint/tendermint/events"
- "github.com/tendermint/tendermint/p2p"
- sm "github.com/tendermint/tendermint/state"
- "github.com/tendermint/tendermint/types"
- )
-
- const (
- StateChannel = byte(0x20)
- DataChannel = byte(0x21)
- VoteChannel = byte(0x22)
-
- PeerStateKey = "ConsensusReactor.peerState"
-
- peerGossipSleepDuration = 100 * time.Millisecond // Time to sleep if there's nothing to send.
- )
-
- //-----------------------------------------------------------------------------
-
- // The reactor's underlying ConsensusState may change state at any time.
- // We atomically copy the RoundState struct before using it.
- type ConsensusReactor struct {
- sw *p2p.Switch
- running uint32
- quit chan struct{}
-
- blockStore *bc.BlockStore
- conS *ConsensusState
-
- // if fast sync is running we don't really do anything
- sync bool
-
- evsw events.Fireable
- }
-
- func NewConsensusReactor(consensusState *ConsensusState, blockStore *bc.BlockStore, sync bool) *ConsensusReactor {
- conR := &ConsensusReactor{
- quit: make(chan struct{}),
- blockStore: blockStore,
- conS: consensusState,
- sync: sync,
- }
- return conR
- }
-
- // Implements Reactor
- func (conR *ConsensusReactor) Start(sw *p2p.Switch) {
- if atomic.CompareAndSwapUint32(&conR.running, 0, 1) {
- log.Info("Starting ConsensusReactor")
- conR.sw = sw
- if !conR.sync {
- conR.conS.Start()
- }
- go conR.broadcastNewRoundStepRoutine()
- }
- }
-
- // Implements Reactor
- func (conR *ConsensusReactor) Stop() {
- if atomic.CompareAndSwapUint32(&conR.running, 1, 0) {
- log.Info("Stopping ConsensusReactor")
- conR.conS.Stop()
- close(conR.quit)
- }
- }
-
- func (conR *ConsensusReactor) IsRunning() bool {
- return atomic.LoadUint32(&conR.running) == 1
- }
-
- // Implements Reactor
- func (conR *ConsensusReactor) GetChannels() []*p2p.ChannelDescriptor {
- // TODO optimize
- return []*p2p.ChannelDescriptor{
- &p2p.ChannelDescriptor{
- Id: StateChannel,
- Priority: 5,
- SendQueueCapacity: 100,
- },
- &p2p.ChannelDescriptor{
- Id: DataChannel,
- Priority: 5,
- SendQueueCapacity: 2,
- },
- &p2p.ChannelDescriptor{
- Id: VoteChannel,
- Priority: 5,
- SendQueueCapacity: 40,
- },
- }
- }
-
- // Implements Reactor
- func (conR *ConsensusReactor) AddPeer(peer *p2p.Peer) {
- if !conR.IsRunning() {
- return
- }
-
- // Create peerState for peer
- peerState := NewPeerState(peer)
- peer.Data.Set(PeerStateKey, peerState)
-
- // Begin gossip routines for this peer.
- go conR.gossipDataRoutine(peer, peerState)
- go conR.gossipVotesRoutine(peer, peerState)
-
- // Send our state to peer.
- conR.sendNewRoundStepMessage(peer)
- }
-
- // Implements Reactor
- func (conR *ConsensusReactor) RemovePeer(peer *p2p.Peer, reason interface{}) {
- if !conR.IsRunning() {
- return
- }
- //peer.Data.Get(PeerStateKey).(*PeerState).Disconnect()
- }
-
- // Implements Reactor
- func (conR *ConsensusReactor) Receive(chId byte, peer *p2p.Peer, msgBytes []byte) {
- if conR.sync || !conR.IsRunning() {
- return
- }
-
- // Get round state
- rs := conR.conS.GetRoundState()
- ps := peer.Data.Get(PeerStateKey).(*PeerState)
- _, msg_, err := DecodeMessage(msgBytes)
- if err != nil {
- log.Warn("Error decoding message", "channel", chId, "peer", peer, "msg", msg_, "error", err, "bytes", msgBytes)
- return
- }
- log.Debug("Receive", "channel", chId, "peer", peer, "msg", msg_) //, "bytes", msgBytes)
-
- switch chId {
- case StateChannel:
- switch msg := msg_.(type) {
- case *NewRoundStepMessage:
- ps.ApplyNewRoundStepMessage(msg, rs)
- case *CommitStepMessage:
- ps.ApplyCommitStepMessage(msg)
- case *HasVoteMessage:
- ps.ApplyHasVoteMessage(msg)
- default:
- log.Warn(Fmt("Unknown message type %v", reflect.TypeOf(msg)))
- }
-
- case DataChannel:
- switch msg := msg_.(type) {
- case *ProposalMessage:
- ps.SetHasProposal(msg.Proposal)
- err = conR.conS.SetProposal(msg.Proposal)
- case *PartMessage:
- if msg.Type == partTypeProposalBlock {
- ps.SetHasProposalBlockPart(msg.Height, msg.Round, msg.Part.Proof.Index)
- _, err = conR.conS.AddProposalBlockPart(msg.Height, msg.Round, msg.Part)
- } else {
- log.Warn(Fmt("Unknown part type %v", msg.Type))
- }
- default:
- log.Warn(Fmt("Unknown message type %v", reflect.TypeOf(msg)))
- }
-
- case VoteChannel:
- switch msg := msg_.(type) {
- case *VoteMessage:
- vote := msg.Vote
- if rs.Height != vote.Height {
- if rs.Height == vote.Height+1 {
- if rs.Step == RoundStepNewHeight && vote.Type == types.VoteTypePrecommit {
- goto VOTE_PASS // *ducks*
- }
- }
- return // Wrong height. Not necessarily a bad peer.
- }
- VOTE_PASS:
- address, _ := rs.Validators.GetByIndex(msg.ValidatorIndex)
- added, index, err := conR.conS.AddVote(address, vote)
- if err != nil {
- // If conflicting sig, broadcast evidence tx for slashing. Else punish peer.
- if errDupe, ok := err.(*types.ErrVoteConflictingSignature); ok {
- log.Warn("Found conflicting vote. Publish evidence")
- evidenceTx := &types.DupeoutTx{
- Address: address,
- VoteA: *errDupe.VoteA,
- VoteB: *errDupe.VoteB,
- }
- conR.conS.mempoolReactor.BroadcastTx(evidenceTx) // shouldn't need to check returned err
- } else {
- // Probably an invalid signature. Bad peer.
- log.Warn("Error attempting to add vote", "error", err)
-
- // TODO: punish peer
- }
- }
- // Initialize Prevotes/Precommits if needed
- ps.EnsureVoteBitArrays(rs.Height, rs.Validators.Size(), _)
- ps.SetHasVote(vote, index)
- if added {
- msg := &HasVoteMessage{
- Height: vote.Height,
- Round: vote.Round,
- Type: vote.Type,
- Index: index,
- }
- conR.sw.Broadcast(StateChannel, msg)
- }
-
- default:
- log.Warn(Fmt("Unknown message type %v", reflect.TypeOf(msg)))
- }
- default:
- log.Warn(Fmt("Unknown channel %X", chId))
- }
-
- if err != nil {
- log.Warn("Error in Receive()", "error", err)
- }
- }
-
- // Sets our private validator account for signing votes.
- func (conR *ConsensusReactor) SetPrivValidator(priv *sm.PrivValidator) {
- conR.conS.SetPrivValidator(priv)
- }
-
- // Switch from the fast sync to the consensus:
- // reset the state, turn off fast sync, start the consensus-state-machine
- func (conR *ConsensusReactor) SwitchToConsensus(state *sm.State) {
- conR.conS.updateToState(state, false)
- conR.sync = false
- conR.conS.Start()
- }
-
- // implements events.Eventable
- func (conR *ConsensusReactor) SetFireable(evsw events.Fireable) {
- conR.evsw = evsw
- conR.conS.SetFireable(evsw)
- }
-
- //--------------------------------------
-
- func makeRoundStepMessages(rs *RoundState) (nrsMsg *NewRoundStepMessage, csMsg *CommitStepMessage) {
- // Get seconds since beginning of height.
- timeElapsed := time.Now().Sub(rs.StartTime)
-
- // Broadcast NewRoundStepMessage
- nrsMsg = &NewRoundStepMessage{
- Height: rs.Height,
- Round: rs.Round,
- Step: rs.Step,
- SecondsSinceStartTime: uint(timeElapsed.Seconds()),
- LastCommitRound: rs.LastCommit.Round(),
- }
-
- // If the step is commit, then also broadcast a CommitStepMessage.
- if rs.Step == RoundStepCommit {
- csMsg = &CommitStepMessage{
- Height: rs.Height,
- BlockParts: rs.ProposalBlockParts.Header(),
- BlockBitArray: rs.ProposalBlockParts.BitArray(),
- }
- }
-
- return
- }
-
- // Listens for changes to the ConsensusState.Step by pulling
- // on conR.conS.NewStepCh().
- func (conR *ConsensusReactor) broadcastNewRoundStepRoutine() {
- for {
- // Get RoundState with new Step or quit.
- var rs *RoundState
- select {
- case rs = <-conR.conS.NewStepCh():
- case <-conR.quit:
- return
- }
-
- nrsMsg, csMsg := makeRoundStepMessages(rs)
- if nrsMsg != nil {
- conR.sw.Broadcast(StateChannel, nrsMsg)
- }
- if csMsg != nil {
- conR.sw.Broadcast(StateChannel, csMsg)
- }
- }
- }
-
- func (conR *ConsensusReactor) sendNewRoundStepMessage(peer *p2p.Peer) {
- rs := conR.conS.GetRoundState()
- nrsMsg, csMsg := makeRoundStepMessages(rs)
- if nrsMsg != nil {
- peer.Send(StateChannel, nrsMsg)
- }
- if csMsg != nil {
- peer.Send(StateChannel, csMsg)
- }
- }
-
- func (conR *ConsensusReactor) gossipDataRoutine(peer *p2p.Peer, ps *PeerState) {
-
- OUTER_LOOP:
- for {
- // Manage disconnects from self or peer.
- if !peer.IsRunning() || !conR.IsRunning() {
- log.Info(Fmt("Stopping gossipDataRoutine for %v.", peer))
- return
- }
- rs := conR.conS.GetRoundState()
- prs := ps.GetRoundState()
-
- // Send proposal Block parts?
- if rs.ProposalBlockParts.HasHeader(prs.ProposalBlockParts) {
- //log.Debug("ProposalBlockParts matched", "blockParts", prs.ProposalBlockParts)
- if index, ok := rs.ProposalBlockParts.BitArray().Sub(prs.ProposalBlockBitArray.Copy()).PickRandom(); ok {
- part := rs.ProposalBlockParts.GetPart(index)
- msg := &PartMessage{
- Height: rs.Height,
- Round: rs.Round,
- Type: partTypeProposalBlock,
- Part: part,
- }
- peer.Send(DataChannel, msg)
- ps.SetHasProposalBlockPart(rs.Height, rs.Round, index)
- continue OUTER_LOOP
- }
- }
-
- // If the peer is on a previous height, help catch up.
- if 0 < prs.Height && prs.Height < rs.Height {
- //log.Debug("Data catchup", "height", rs.Height, "peerHeight", prs.Height, "peerProposalBlockBitArray", prs.ProposalBlockBitArray)
- if index, ok := prs.ProposalBlockBitArray.Not().PickRandom(); ok {
- // Ensure that the peer's PartSetHeader is correct
- blockMeta := conR.blockStore.LoadBlockMeta(prs.Height)
- if !blockMeta.Parts.Equals(prs.ProposalBlockParts) {
- log.Debug("Peer ProposalBlockParts mismatch, sleeping",
- "peerHeight", prs.Height, "blockParts", blockMeta.Parts, "peerBlockParts", prs.ProposalBlockParts)
- time.Sleep(peerGossipSleepDuration)
- continue OUTER_LOOP
- }
- // Load the part
- part := conR.blockStore.LoadBlockPart(prs.Height, index)
- if part == nil {
- log.Warn("Could not load part", "index", index,
- "peerHeight", prs.Height, "blockParts", blockMeta.Parts, "peerBlockParts", prs.ProposalBlockParts)
- time.Sleep(peerGossipSleepDuration)
- continue OUTER_LOOP
- }
- // Send the part
- msg := &PartMessage{
- Height: prs.Height,
- Round: prs.Round,
- Type: partTypeProposalBlock,
- Part: part,
- }
- peer.Send(DataChannel, msg)
- ps.SetHasProposalBlockPart(prs.Height, prs.Round, index)
- continue OUTER_LOOP
- } else {
- //log.Debug("No parts to send in catch-up, sleeping")
- time.Sleep(peerGossipSleepDuration)
- continue OUTER_LOOP
- }
- }
-
- // If height and round don't match, sleep.
- if rs.Height != prs.Height || rs.Round != prs.Round {
- //log.Debug("Peer Height|Round mismatch, sleeping", "peerHeight", prs.Height, "peerRound", prs.Round, "peer", peer)
- time.Sleep(peerGossipSleepDuration)
- continue OUTER_LOOP
- }
-
- // Send proposal?
- if rs.Proposal != nil && !prs.Proposal {
- msg := &ProposalMessage{Proposal: rs.Proposal}
- peer.Send(DataChannel, msg)
- ps.SetHasProposal(rs.Proposal)
- continue OUTER_LOOP
- }
-
- // Nothing to do. Sleep.
- time.Sleep(peerGossipSleepDuration)
- continue OUTER_LOOP
- }
- }
-
- func (conR *ConsensusReactor) gossipVotesRoutine(peer *p2p.Peer, ps *PeerState) {
-
- // Simple hack to throttle logs upon sleep.
- var sleeping = 0
-
- OUTER_LOOP:
- for {
- // Manage disconnects from self or peer.
- if !peer.IsRunning() || !conR.IsRunning() {
- log.Info(Fmt("Stopping gossipVotesRoutine for %v.", peer))
- return
- }
- rs := conR.conS.GetRoundState()
- prs := ps.GetRoundState()
-
- switch sleeping {
- case 1: // First sleep
- sleeping = 2
- case 2: // No more sleep
- sleeping = 0
- }
-
- // prsVoteSet: a pointer to a VoteSet field of prs.
- // Returns true when useful work was done.
- trySendVote := func(voteSet *VoteSet, prsVoteSet **BitArray) (sent bool) {
- if voteSet == nil {
- return false
- }
- if *prsVoteSet == nil {
- ps.EnsureVoteBitArrays(voteSet.Height(), voteSet.Size(), prs)
- // We could return true here (useful work was done)
- // or, we can continue since prsVoteSet is no longer nil.
- if *prsVoteSet == nil {
- panic("prsVoteSet should not be nil after ps.EnsureVoteBitArrays")
- }
- }
- // TODO: give priority to our vote.
- if index, ok := voteSet.BitArray().Sub((*prsVoteSet).Copy()).PickRandom(); ok {
- vote := voteSet.GetByIndex(index)
- msg := &VoteMessage{index, vote}
- peer.Send(VoteChannel, msg)
- ps.SetHasVote(vote, index)
- return true
- }
- return false
- }
-
- // prsVoteSet: a pointer to a VoteSet field of prs.
- // Returns true when useful work was done.
- trySendPrecommitFromValidation := func(validation *types.Validation, prsVoteSet **BitArray) (sent bool) {
- if validation == nil {
- return false
- } else if *prsVoteSet == nil {
- ps.EnsureVoteBitArrays(validation.Height(), uint(len(validation.Precommits)), prs)
- // We could return true here (useful work was done)
- // or, we can continue since prsVoteSet is no longer nil.
- if *prsVoteSet == nil {
- panic("prsVoteSet should not be nil after ps.EnsureVoteBitArrays")
- }
- }
- if index, ok := validation.BitArray().Sub((*prsVoteSet).Copy()).PickRandom(); ok {
- precommit := validation.Precommits[index]
- log.Debug("Picked precommit to send", "index", index, "precommit", precommit)
- msg := &VoteMessage{index, precommit}
- peer.Send(VoteChannel, msg)
- ps.SetHasVote(precommit, index)
- return true
- }
- return false
- }
-
- // If height matches, then send LastCommit, Prevotes, Precommits.
- if rs.Height == prs.Height {
- // If there are lastCommits to send...
- if prs.Step == RoundStepNewHeight {
- if trySendVote(rs.LastCommit, prs.LastCommit) {
- continue OUTER_LOOP
- }
- }
- // If there are prevotes to send...
- if rs.Round == prs.Round && prs.Step <= RoundStepPrevote {
- if trySendVote(rs.Prevotes, prs.Prevotes) {
- continue OUTER_LOOP
- }
- }
- // If there are precommits to send...
- if rs.Round == prs.Round && prs.Step <= RoundStepPrecommit {
- if trySendVote(rs.Precommits, prs.Precommits) {
- continue OUTER_LOOP
- }
- }
- }
-
- // Special catchup logic.
- // If peer is lagging by height 1, send LastCommit.
- if prs.Height != 0 && prs.Height == rs.Height-1 {
- if prs.Round == rs.LastCommit.Round() {
- if trySendVote(rs.LastCommit, prs.Precommits) {
- continue OUTER_LOOP
- // XXX CONTONUE
- }
- } else {
- ps.SetCatchupCommitRound(prs.Height, rs.LastCommit.Round())
- ps.EnsureVoteBitArrays(prs.Height, rs.LastCommit.Size(), prs)
- if trySendVote(rs.LastCommit, prs.CatchupCommit) {
- continue OUTER_LOOP
- }
- }
- }
-
- // Catchup logic
- // If peer is lagging by more than 1, send Validation.
- if prs.Height != 0 && prs.Height <= rs.Height-2 {
- // Load the block validation for prs.Height,
- // which contains precommit signatures for prs.Height.
- validation := conR.blockStore.LoadBlockValidation(prs.Height)
- log.Debug("Loaded BlockValidation for catch-up", "height", prs.Height, "validation", validation)
- // Peer's CommitRound should be -1 or equal to the validation's precommit rounds.
- // If not, warn.
- if prs.CommitRound == -1 {
- ps.SetCommitRound(prs.Height, validation.Round())
- continue OUTER_LOOP // Get prs := ps.GetRoundState() again.
- } else if prs.CommitRound != validation.Round() {
- log.Warn("Peer's CommitRound during catchup not equal to commit round",
- "height", prs.Height, "validation", validation, "prs.CommitRound", prs.CommitRound)
- } else if trySendPrecommitFromValidation(validation, prs.Commit) {
- continue OUTER_LOOP
- }
- }
-
- if sleeping == 0 {
- // We sent nothing. Sleep...
- sleeping = 1
- log.Debug("No votes to send, sleeping", "peer", peer,
- "localPV", rs.Prevotes.BitArray(), "peerPV", prs.Prevotes,
- "localPC", rs.Precommits.BitArray(), "peerPC", prs.Precommits)
- } else if sleeping == 2 {
- // Continued sleep...
- sleeping = 1
- }
-
- time.Sleep(peerGossipSleepDuration)
- continue OUTER_LOOP
- }
- }
-
- //-----------------------------------------------------------------------------
-
- // Read only when returned by PeerState.GetRoundState().
- type PeerRoundState struct {
- Height uint // Height peer is at
- Round uint // Round peer is at
- Step RoundStepType // Step peer is at
- StartTime time.Time // Estimated start of round 0 at this height
- Proposal bool // True if peer has proposal for this round
- ProposalBlockParts types.PartSetHeader //
- ProposalBlockBitArray *BitArray // True bit -> has part
- ProposalPOLParts types.PartSetHeader //
- ProposalPOLBitArray *BitArray // True bit -> has part
- Prevotes *BitArray // All votes peer has for this round
- Precommits *BitArray // All precommits peer has for this round
- LastCommitRound uint // Round of commit for last height.
- LastCommit *BitArray // All commit precommits of commit for last height.
-
- // If peer is leading in height, the round that peer believes commit round is.
- // If peer is lagging in height, the round that we believe commit round is.
- CatchupCommitRound int
- CatchupCommit *BitArray // All commit precommits peer has for this height
- }
-
- //-----------------------------------------------------------------------------
-
- var (
- ErrPeerStateHeightRegression = errors.New("Error peer state height regression")
- ErrPeerStateInvalidStartTime = errors.New("Error peer state invalid startTime")
- )
-
- type PeerState struct {
- Key string
-
- mtx sync.Mutex
- PeerRoundState
- }
-
- func NewPeerState(peer *p2p.Peer) *PeerState {
- return &PeerState{Key: peer.Key}
- }
-
- // Returns an atomic snapshot of the PeerRoundState.
- // There's no point in mutating it since it won't change PeerState.
- func (ps *PeerState) GetRoundState() *PeerRoundState {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- prs := ps.PeerRoundState // copy
- return &prs
- }
-
- func (ps *PeerState) SetHasProposal(proposal *Proposal) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- if ps.Height != proposal.Height || ps.Round != proposal.Round {
- return
- }
- if ps.Proposal {
- return
- }
-
- ps.Proposal = true
- ps.ProposalBlockParts = proposal.BlockParts
- ps.ProposalBlockBitArray = NewBitArray(uint(proposal.BlockParts.Total))
- ps.ProposalPOLParts = proposal.POLParts
- ps.ProposalPOLBitArray = NewBitArray(uint(proposal.POLParts.Total))
- }
-
- func (ps *PeerState) SetHasProposalBlockPart(height uint, round uint, index uint) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- if ps.Height != height || ps.Round != round {
- return
- }
-
- ps.ProposalBlockBitArray.SetIndex(uint(index), true)
- }
-
- func (ps *PeerState) SetHasProposalPOLPart(height uint, round uint, index uint) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- if ps.Height != height || ps.Round != round {
- return
- }
-
- ps.ProposalPOLBitArray.SetIndex(uint(index), true)
- }
-
- // prs: If given, will also update this PeerRoundState copy.
- func (ps *PeerState) EnsureVoteBitArrays(height uint, numValidators uint, prs *PeerRoundState) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- if ps.Height == height {
- if ps.Prevotes == nil {
- ps.Prevotes = NewBitArray(numValidators)
- }
- if ps.Precommits == nil {
- ps.Precommits = NewBitArray(numValidators)
- }
- if ps.CatchupCommit == nil {
- ps.CatchupCommit = NewBitArray(numValidators)
- }
- } else if ps.Height == height+1 {
- if ps.LastCommit == nil {
- ps.LastCommit = NewBitArray(numValidators)
- }
- }
-
- // Also, update prs if given.
- if prs != nil {
- prs.Prevotes = ps.Prevotes
- prs.Precommits = ps.Precommits
- prs.LastCommit = ps.LastCommit
- prs.CatchupCommit = ps.CatchupCommit
- }
- }
-
- func (ps *PeerState) SetHasVote(vote *types.Vote, index uint) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- ps.setHasVote(vote.Height, vote.Round, vote.Type, index)
- }
-
- func (ps *PeerState) setHasVote(height uint, round uint, type_ byte, index uint) {
- if ps.Height == height+1 && ps.LastCommitRound == round && type_ == types.VoteTypePrecommit {
- // Special case for LastCommit.
- ps.LastCommit.SetIndex(index, true)
- log.Debug("setHasVote", "LastCommit", ps.LastCommit, "index", index)
- return
- } else if ps.Height != height {
- // Does not apply.
- return
- }
-
- switch type_ {
- case types.VoteTypePrevote:
- ps.Prevotes.SetIndex(index, true)
- log.Debug("SetHasVote", "peer", ps.Key, "prevotes", ps.Prevotes, "index", index)
- case types.VoteTypePrecommit:
- if ps.CommitRound == round {
- ps.Commit.SetIndex(index, true)
- }
- ps.Precommits.SetIndex(index, true)
- log.Debug("SetHasVote", "peer", ps.Key, "precommits", ps.Precommits, "index", index)
- default:
- panic("Invalid vote type")
- }
- }
-
- func (ps *PeerState) SetCatchupCommitRound(height, round uint) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- if ps.Height != height {
- return
- }
- if ps.CatchupCommitRound != -1 && ps.CatchupCommitRound != round {
- log.Warn("Conflicting CatchupCommitRound",
- "height", height,
- "orig", ps.CatchupCommitRound,
- "new", round,
- )
- // TODO think harder
- }
- ps.CatchupCommitRound = round
- ps.CatchupCommit = nil
- }
-
- func (ps *PeerState) ApplyNewRoundStepMessage(msg *NewRoundStepMessage, rs *RoundState) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- // Just remember these values.
- psHeight := ps.Height
- psRound := ps.Round
- //psStep := ps.Step
- psCatchupCommitRound := ps.CatchupCommitRound
- psCatchupCommit := ps.CatchupCommitRound
-
- startTime := time.Now().Add(-1 * time.Duration(msg.SecondsSinceStartTime) * time.Second)
- ps.Height = msg.Height
- ps.Round = msg.Round
- ps.Step = msg.Step
- ps.StartTime = startTime
- if psHeight != msg.Height || psRound != msg.Round {
- ps.Proposal = false
- ps.ProposalBlockParts = types.PartSetHeader{}
- ps.ProposalBlockBitArray = nil
- ps.ProposalPOLParts = types.PartSetHeader{}
- ps.ProposalPOLBitArray = nil
- // We'll update the BitArray capacity later.
- ps.Prevotes = nil
- ps.Precommits = nil
- }
- if psHeight == msg.Height && psRound != msg.Round && msg.Round == psCatchupCommitRound {
- // Peer caught up to CatchupCommitRound.
- ps.Precommits = psCatchupCommit
- }
- if psHeight != msg.Height {
- // Shift Precommits to LastCommit.
- if psHeight+1 == msg.Height && psRound == msg.LastCommitRound {
- ps.LastCommitRound = msg.LastCommitRound
- ps.LastCommit = ps.Precommits
- } else {
- ps.LastCommitRound = msg.LastCommitRound
- ps.LastCommit = nil
- }
- // We'll update the BitArray capacity later.
- ps.CatchupCommitRound = -1
- ps.CatchupCommit = nil
- }
- }
-
- func (ps *PeerState) ApplyCommitStepMessage(msg *CommitStepMessage) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- if ps.Height != msg.Height {
- return
- }
-
- ps.ProposalBlockParts = msg.BlockParts
- ps.ProposalBlockBitArray = msg.BlockBitArray
- }
-
- func (ps *PeerState) ApplyHasVoteMessage(msg *HasVoteMessage) {
- ps.mtx.Lock()
- defer ps.mtx.Unlock()
-
- if ps.Height != msg.Height {
- return
- }
-
- ps.setHasVote(msg.Height, msg.Round, msg.Type, msg.Index)
- }
-
- //-----------------------------------------------------------------------------
- // Messages
-
- const (
- msgTypeNewRoundStep = byte(0x01)
- msgTypeCommitStep = byte(0x02)
- msgTypeProposal = byte(0x11)
- msgTypePart = byte(0x12) // both block & POL
- msgTypeVote = byte(0x13)
- msgTypeHasVote = byte(0x14)
- )
-
- type ConsensusMessage interface{}
-
- var _ = binary.RegisterInterface(
- struct{ ConsensusMessage }{},
- binary.ConcreteType{&NewRoundStepMessage{}, msgTypeNewRoundStep},
- binary.ConcreteType{&CommitStepMessage{}, msgTypeCommitStep},
- binary.ConcreteType{&ProposalMessage{}, msgTypeProposal},
- binary.ConcreteType{&PartMessage{}, msgTypePart},
- binary.ConcreteType{&VoteMessage{}, msgTypeVote},
- binary.ConcreteType{&HasVoteMessage{}, msgTypeHasVote},
- )
-
- // TODO: check for unnecessary extra bytes at the end.
- func DecodeMessage(bz []byte) (msgType byte, msg ConsensusMessage, err error) {
- msgType = bz[0]
- n := new(int64)
- r := bytes.NewReader(bz)
- msg = binary.ReadBinary(struct{ ConsensusMessage }{}, r, n, &err).(struct{ ConsensusMessage }).ConsensusMessage
- return
- }
-
- //-------------------------------------
-
- // For every height/round/step transition
- type NewRoundStepMessage struct {
- Height uint
- Round uint
- Step RoundStepType
- SecondsSinceStartTime uint
- LastCommitRound uint
- }
-
- func (m *NewRoundStepMessage) String() string {
- return fmt.Sprintf("[NewRoundStep H:%v R:%v S:%v LCR:%v]",
- m.Height, m.Round, m.Step, m.LastCommitRound)
- }
-
- //-------------------------------------
-
- type CommitStepMessage struct {
- Height uint
- BlockParts types.PartSetHeader
- BlockBitArray *BitArray
- }
-
- func (m *CommitStepMessage) String() string {
- return fmt.Sprintf("[CommitStep H:%v BP:%v BA:%v]", m.Height, m.BlockParts, m.BlockBitArray)
- }
-
- //-------------------------------------
-
- type ProposalMessage struct {
- Proposal *Proposal
- }
-
- func (m *ProposalMessage) String() string {
- return fmt.Sprintf("[Proposal %v]", m.Proposal)
- }
-
- //-------------------------------------
-
- const (
- partTypeProposalBlock = byte(0x01)
- partTypeProposalPOL = byte(0x02)
- )
-
- type PartMessage struct {
- Height uint
- Round uint
- Type byte
- Part *types.Part
- }
-
- func (m *PartMessage) String() string {
- return fmt.Sprintf("[Part H:%v R:%v T:%X P:%v]", m.Height, m.Round, m.Type, m.Part)
- }
-
- //-------------------------------------
-
- type VoteMessage struct {
- ValidatorIndex uint
- Vote *types.Vote
- }
-
- func (m *VoteMessage) String() string {
- return fmt.Sprintf("[Vote VI:%v V:%v VI:%v]", m.ValidatorIndex, m.Vote, m.ValidatorIndex)
- }
-
- //-------------------------------------
-
- type HasVoteMessage struct {
- Height uint
- Round uint
- Type byte
- Index uint
- }
-
- func (m *HasVoteMessage) String() string {
- return fmt.Sprintf("[HasVote VI:%v V:{%v/%02d/%v} VI:%v]", m.Index, m.Height, m.Round, m.Type, m.Index)
- }
|