2019-11-08 15:40:21 +00:00
|
|
|
package consensus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/util"
|
2019-11-15 10:32:40 +00:00
|
|
|
"github.com/nspcc-dev/dbft/payload"
|
2019-11-08 15:40:21 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
// recoveryMessage represents dBFT Recovery message.
|
|
|
|
recoveryMessage struct {
|
2019-11-15 10:32:40 +00:00
|
|
|
preparationHash *util.Uint256
|
|
|
|
preparationPayloads []*preparationCompact
|
|
|
|
commitPayloads []*commitCompact
|
|
|
|
changeViewPayloads []*changeViewCompact
|
|
|
|
prepareRequest *prepareRequest
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
changeViewCompact struct {
|
|
|
|
ValidatorIndex uint16
|
|
|
|
OriginalViewNumber byte
|
|
|
|
Timestamp uint32
|
|
|
|
InvocationScript []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
commitCompact struct {
|
|
|
|
ViewNumber byte
|
|
|
|
ValidatorIndex uint16
|
2019-11-15 10:32:40 +00:00
|
|
|
Signature [signatureSize]byte
|
2019-11-08 15:40:21 +00:00
|
|
|
InvocationScript []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
preparationCompact struct {
|
|
|
|
ValidatorIndex uint16
|
|
|
|
InvocationScript []byte
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
var _ payload.RecoveryMessage = (*recoveryMessage)(nil)
|
2019-11-08 15:40:21 +00:00
|
|
|
|
|
|
|
// DecodeBinary implements io.Serializable interface.
|
|
|
|
func (m *recoveryMessage) DecodeBinary(r *io.BinReader) {
|
2019-11-15 10:32:40 +00:00
|
|
|
r.ReadArray(&m.changeViewPayloads)
|
2019-11-08 15:40:21 +00:00
|
|
|
|
|
|
|
var hasReq bool
|
|
|
|
r.ReadLE(&hasReq)
|
|
|
|
if hasReq {
|
2019-11-15 10:32:40 +00:00
|
|
|
m.prepareRequest = new(prepareRequest)
|
|
|
|
m.prepareRequest.DecodeBinary(r)
|
2019-11-08 15:40:21 +00:00
|
|
|
} else {
|
|
|
|
l := r.ReadVarUint()
|
|
|
|
if l != 0 {
|
2019-11-15 10:32:40 +00:00
|
|
|
if l == util.Uint256Size {
|
|
|
|
m.preparationHash = new(util.Uint256)
|
|
|
|
r.ReadBE(m.preparationHash[:])
|
2019-11-08 15:40:21 +00:00
|
|
|
} else {
|
|
|
|
r.Err = errors.New("invalid data")
|
|
|
|
}
|
|
|
|
} else {
|
2019-11-15 10:32:40 +00:00
|
|
|
m.preparationHash = nil
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
r.ReadArray(&m.preparationPayloads)
|
|
|
|
r.ReadArray(&m.commitPayloads)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// EncodeBinary implements io.Serializable interface.
|
|
|
|
func (m *recoveryMessage) EncodeBinary(w *io.BinWriter) {
|
2019-11-15 10:32:40 +00:00
|
|
|
w.WriteArray(m.changeViewPayloads)
|
2019-11-08 15:40:21 +00:00
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
hasReq := m.prepareRequest != nil
|
2019-11-08 15:40:21 +00:00
|
|
|
w.WriteLE(hasReq)
|
|
|
|
if hasReq {
|
2019-11-15 10:32:40 +00:00
|
|
|
m.prepareRequest.EncodeBinary(w)
|
2019-11-08 15:40:21 +00:00
|
|
|
} else {
|
2019-11-15 10:32:40 +00:00
|
|
|
if m.preparationHash == nil {
|
2019-11-08 15:40:21 +00:00
|
|
|
w.WriteVarUint(0)
|
|
|
|
} else {
|
2019-11-15 10:32:40 +00:00
|
|
|
w.WriteVarUint(util.Uint256Size)
|
|
|
|
w.WriteBE(m.preparationHash[:])
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-15 10:32:40 +00:00
|
|
|
|
|
|
|
w.WriteArray(m.preparationPayloads)
|
|
|
|
w.WriteArray(m.commitPayloads)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeBinary implements io.Serializable interface.
|
|
|
|
func (p *changeViewCompact) DecodeBinary(r *io.BinReader) {
|
|
|
|
r.ReadLE(&p.ValidatorIndex)
|
|
|
|
r.ReadLE(&p.OriginalViewNumber)
|
|
|
|
r.ReadLE(&p.Timestamp)
|
|
|
|
p.InvocationScript = r.ReadBytes()
|
|
|
|
}
|
|
|
|
|
|
|
|
// EncodeBinary implements io.Serializable interface.
|
|
|
|
func (p *changeViewCompact) EncodeBinary(w *io.BinWriter) {
|
|
|
|
w.WriteLE(p.ValidatorIndex)
|
|
|
|
w.WriteLE(p.OriginalViewNumber)
|
|
|
|
w.WriteLE(p.Timestamp)
|
2019-11-22 10:34:06 +00:00
|
|
|
w.WriteVarBytes(p.InvocationScript)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeBinary implements io.Serializable interface.
|
|
|
|
func (p *commitCompact) DecodeBinary(r *io.BinReader) {
|
|
|
|
r.ReadLE(&p.ViewNumber)
|
|
|
|
r.ReadLE(&p.ValidatorIndex)
|
2019-11-15 10:32:40 +00:00
|
|
|
r.ReadBE(p.Signature[:])
|
2019-11-08 15:40:21 +00:00
|
|
|
p.InvocationScript = r.ReadBytes()
|
|
|
|
}
|
|
|
|
|
|
|
|
// EncodeBinary implements io.Serializable interface.
|
|
|
|
func (p *commitCompact) EncodeBinary(w *io.BinWriter) {
|
|
|
|
w.WriteLE(p.ViewNumber)
|
|
|
|
w.WriteLE(p.ValidatorIndex)
|
|
|
|
w.WriteBE(p.Signature)
|
2019-11-22 10:34:06 +00:00
|
|
|
w.WriteVarBytes(p.InvocationScript)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeBinary implements io.Serializable interface.
|
|
|
|
func (p *preparationCompact) DecodeBinary(r *io.BinReader) {
|
|
|
|
r.ReadLE(&p.ValidatorIndex)
|
|
|
|
p.InvocationScript = r.ReadBytes()
|
|
|
|
}
|
|
|
|
|
|
|
|
// EncodeBinary implements io.Serializable interface.
|
|
|
|
func (p *preparationCompact) EncodeBinary(w *io.BinWriter) {
|
|
|
|
w.WriteLE(p.ValidatorIndex)
|
2019-11-22 10:34:06 +00:00
|
|
|
w.WriteVarBytes(p.InvocationScript)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
2019-11-15 10:32:40 +00:00
|
|
|
|
|
|
|
// AddPayload implements payload.RecoveryMessage interface.
|
|
|
|
func (m *recoveryMessage) AddPayload(p payload.ConsensusPayload) {
|
|
|
|
switch p.Type() {
|
|
|
|
case payload.PrepareRequestType:
|
|
|
|
m.prepareRequest = p.GetPrepareRequest().(*prepareRequest)
|
2019-12-02 13:18:54 +00:00
|
|
|
h := p.Hash()
|
|
|
|
m.preparationHash = &h
|
2019-11-15 10:32:40 +00:00
|
|
|
case payload.PrepareResponseType:
|
|
|
|
m.preparationPayloads = append(m.preparationPayloads, &preparationCompact{
|
|
|
|
ValidatorIndex: p.ValidatorIndex(),
|
|
|
|
InvocationScript: p.(*Payload).Witness.InvocationScript,
|
|
|
|
})
|
2019-12-02 13:18:54 +00:00
|
|
|
|
|
|
|
if m.preparationHash == nil {
|
|
|
|
h := p.GetPrepareResponse().PreparationHash()
|
|
|
|
m.preparationHash = &h
|
|
|
|
}
|
2019-11-15 10:32:40 +00:00
|
|
|
case payload.ChangeViewType:
|
|
|
|
m.changeViewPayloads = append(m.changeViewPayloads, &changeViewCompact{
|
|
|
|
ValidatorIndex: p.ValidatorIndex(),
|
|
|
|
OriginalViewNumber: p.ViewNumber(),
|
|
|
|
Timestamp: p.GetChangeView().Timestamp(),
|
|
|
|
InvocationScript: p.(*Payload).Witness.InvocationScript,
|
|
|
|
})
|
|
|
|
case payload.CommitType:
|
|
|
|
m.commitPayloads = append(m.commitPayloads, &commitCompact{
|
|
|
|
ValidatorIndex: p.ValidatorIndex(),
|
|
|
|
ViewNumber: p.ViewNumber(),
|
|
|
|
Signature: p.GetCommit().(*commit).signature,
|
|
|
|
InvocationScript: p.(*Payload).Witness.InvocationScript,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPrepareRequest implements payload.RecoveryMessage interface.
|
|
|
|
func (m *recoveryMessage) GetPrepareRequest(p payload.ConsensusPayload) payload.ConsensusPayload {
|
|
|
|
if m.prepareRequest == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return fromPayload(prepareRequestType, p.(*Payload), m.prepareRequest)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPrepareResponses implements payload.RecoveryMessage interface.
|
|
|
|
func (m *recoveryMessage) GetPrepareResponses(p payload.ConsensusPayload) []payload.ConsensusPayload {
|
|
|
|
if m.preparationHash == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ps := make([]payload.ConsensusPayload, len(m.preparationPayloads))
|
|
|
|
|
|
|
|
for i, resp := range m.preparationPayloads {
|
|
|
|
ps[i] = fromPayload(prepareResponseType, p.(*Payload), &prepareResponse{
|
|
|
|
preparationHash: *m.preparationHash,
|
|
|
|
})
|
|
|
|
ps[i].SetValidatorIndex(resp.ValidatorIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ps
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetChangeViews implements payload.RecoveryMessage interface.
|
|
|
|
func (m *recoveryMessage) GetChangeViews(p payload.ConsensusPayload) []payload.ConsensusPayload {
|
|
|
|
ps := make([]payload.ConsensusPayload, len(m.changeViewPayloads))
|
|
|
|
|
|
|
|
for i, cv := range m.changeViewPayloads {
|
|
|
|
ps[i] = fromPayload(changeViewType, p.(*Payload), &changeView{
|
|
|
|
newViewNumber: cv.OriginalViewNumber + 1,
|
|
|
|
timestamp: cv.Timestamp,
|
|
|
|
})
|
|
|
|
ps[i].SetValidatorIndex(cv.ValidatorIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ps
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCommits implements payload.RecoveryMessage interface.
|
|
|
|
func (m *recoveryMessage) GetCommits(p payload.ConsensusPayload) []payload.ConsensusPayload {
|
|
|
|
ps := make([]payload.ConsensusPayload, len(m.commitPayloads))
|
|
|
|
|
|
|
|
for i, c := range m.commitPayloads {
|
|
|
|
cc := commit{signature: c.Signature}
|
|
|
|
ps[i] = fromPayload(commitType, p.(*Payload), &cc)
|
|
|
|
ps[i].SetValidatorIndex(c.ValidatorIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ps
|
|
|
|
}
|
|
|
|
|
|
|
|
// PreparationHash implements payload.RecoveryMessage interface.
|
|
|
|
func (m *recoveryMessage) PreparationHash() *util.Uint256 {
|
|
|
|
return m.preparationHash
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetPreparationHash implements payload.RecoveryMessage interface.
|
|
|
|
func (m *recoveryMessage) SetPreparationHash(h *util.Uint256) {
|
|
|
|
m.preparationHash = h
|
|
|
|
}
|
|
|
|
|
|
|
|
func fromPayload(t messageType, recovery *Payload, p io.Serializable) *Payload {
|
|
|
|
return &Payload{
|
|
|
|
message: message{
|
|
|
|
Type: t,
|
|
|
|
ViewNumber: recovery.message.ViewNumber,
|
|
|
|
payload: p,
|
|
|
|
},
|
|
|
|
version: recovery.Version(),
|
|
|
|
prevHash: recovery.PrevHash(),
|
|
|
|
height: recovery.Height(),
|
|
|
|
}
|
|
|
|
}
|