2019-11-08 15:40:21 +00:00
|
|
|
package consensus
|
|
|
|
|
|
|
|
import (
|
2020-08-06 14:44:08 +00:00
|
|
|
"errors"
|
|
|
|
|
2024-03-21 19:49:39 +00:00
|
|
|
"github.com/nspcc-dev/dbft"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
2021-01-14 11:17:00 +00:00
|
|
|
npayload "github.com/nspcc-dev/neo-go/pkg/network/payload"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2019-11-08 15:40:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
2020-11-17 12:57:50 +00:00
|
|
|
stateRootEnabled bool
|
2020-02-18 12:12:20 +00:00
|
|
|
prepareRequest *message
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
changeViewCompact struct {
|
2020-08-23 13:44:56 +00:00
|
|
|
ValidatorIndex uint8
|
2019-11-08 15:40:21 +00:00
|
|
|
OriginalViewNumber byte
|
2020-07-11 07:48:25 +00:00
|
|
|
Timestamp uint64
|
2019-11-08 15:40:21 +00:00
|
|
|
InvocationScript []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
commitCompact struct {
|
|
|
|
ViewNumber byte
|
2020-08-23 13:44:56 +00:00
|
|
|
ValidatorIndex uint8
|
2019-11-15 10:32:40 +00:00
|
|
|
Signature [signatureSize]byte
|
2019-11-08 15:40:21 +00:00
|
|
|
InvocationScript []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
preparationCompact struct {
|
2020-08-23 13:44:56 +00:00
|
|
|
ValidatorIndex uint8
|
2019-11-08 15:40:21 +00:00
|
|
|
InvocationScript []byte
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2024-03-21 19:49:39 +00:00
|
|
|
var _ dbft.RecoveryMessage[util.Uint256] = (*recoveryMessage)(nil)
|
2019-11-08 15:40:21 +00:00
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// DecodeBinary implements the io.Serializable interface.
|
2019-11-08 15:40:21 +00:00
|
|
|
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
|
|
|
|
2019-12-12 15:52:23 +00:00
|
|
|
var hasReq = r.ReadBool()
|
2019-11-08 15:40:21 +00:00
|
|
|
if hasReq {
|
2020-11-17 12:57:50 +00:00
|
|
|
m.prepareRequest = &message{stateRootEnabled: m.stateRootEnabled}
|
2019-11-15 10:32:40 +00:00
|
|
|
m.prepareRequest.DecodeBinary(r)
|
2020-02-18 12:12:20 +00:00
|
|
|
if r.Err == nil && m.prepareRequest.Type != prepareRequestType {
|
|
|
|
r.Err = errors.New("recovery message PrepareRequest has wrong type")
|
|
|
|
return
|
|
|
|
}
|
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)
|
2019-12-06 15:37:46 +00:00
|
|
|
r.ReadBytes(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
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// EncodeBinary implements the io.Serializable interface.
|
2019-11-08 15:40:21 +00:00
|
|
|
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-12-12 15:52:23 +00:00
|
|
|
w.WriteBool(hasReq)
|
2019-11-08 15:40:21 +00:00
|
|
|
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)
|
2019-12-06 15:22:21 +00:00
|
|
|
w.WriteBytes(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
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// DecodeBinary implements the io.Serializable interface.
|
2019-11-08 15:40:21 +00:00
|
|
|
func (p *changeViewCompact) DecodeBinary(r *io.BinReader) {
|
2020-08-23 13:44:56 +00:00
|
|
|
p.ValidatorIndex = r.ReadB()
|
2019-12-12 17:17:50 +00:00
|
|
|
p.OriginalViewNumber = r.ReadB()
|
2020-07-11 07:48:25 +00:00
|
|
|
p.Timestamp = r.ReadU64LE()
|
2020-06-22 12:14:34 +00:00
|
|
|
p.InvocationScript = r.ReadVarBytes(1024)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// EncodeBinary implements the io.Serializable interface.
|
2019-11-08 15:40:21 +00:00
|
|
|
func (p *changeViewCompact) EncodeBinary(w *io.BinWriter) {
|
2020-08-23 13:44:56 +00:00
|
|
|
w.WriteB(p.ValidatorIndex)
|
2019-12-12 17:17:50 +00:00
|
|
|
w.WriteB(p.OriginalViewNumber)
|
2020-07-11 07:48:25 +00:00
|
|
|
w.WriteU64LE(p.Timestamp)
|
2019-11-22 10:34:06 +00:00
|
|
|
w.WriteVarBytes(p.InvocationScript)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// DecodeBinary implements the io.Serializable interface.
|
2019-11-08 15:40:21 +00:00
|
|
|
func (p *commitCompact) DecodeBinary(r *io.BinReader) {
|
2019-12-12 17:17:50 +00:00
|
|
|
p.ViewNumber = r.ReadB()
|
2020-08-23 13:44:56 +00:00
|
|
|
p.ValidatorIndex = r.ReadB()
|
2019-12-06 15:37:46 +00:00
|
|
|
r.ReadBytes(p.Signature[:])
|
2020-06-22 12:14:34 +00:00
|
|
|
p.InvocationScript = r.ReadVarBytes(1024)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// EncodeBinary implements the io.Serializable interface.
|
2019-11-08 15:40:21 +00:00
|
|
|
func (p *commitCompact) EncodeBinary(w *io.BinWriter) {
|
2019-12-12 17:17:50 +00:00
|
|
|
w.WriteB(p.ViewNumber)
|
2020-08-23 13:44:56 +00:00
|
|
|
w.WriteB(p.ValidatorIndex)
|
2019-12-06 15:22:21 +00:00
|
|
|
w.WriteBytes(p.Signature[:])
|
2019-11-22 10:34:06 +00:00
|
|
|
w.WriteVarBytes(p.InvocationScript)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// DecodeBinary implements the io.Serializable interface.
|
2019-11-08 15:40:21 +00:00
|
|
|
func (p *preparationCompact) DecodeBinary(r *io.BinReader) {
|
2020-08-23 13:44:56 +00:00
|
|
|
p.ValidatorIndex = r.ReadB()
|
2020-06-22 12:14:34 +00:00
|
|
|
p.InvocationScript = r.ReadVarBytes(1024)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// EncodeBinary implements the io.Serializable interface.
|
2019-11-08 15:40:21 +00:00
|
|
|
func (p *preparationCompact) EncodeBinary(w *io.BinWriter) {
|
2020-08-23 13:44:56 +00:00
|
|
|
w.WriteB(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
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// AddPayload implements the payload.RecoveryMessage interface.
|
2024-03-21 19:49:39 +00:00
|
|
|
func (m *recoveryMessage) AddPayload(p dbft.ConsensusPayload[util.Uint256]) {
|
2020-08-23 13:44:56 +00:00
|
|
|
validator := uint8(p.ValidatorIndex())
|
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
switch p.Type() {
|
2024-03-21 19:49:39 +00:00
|
|
|
case dbft.PrepareRequestType:
|
2020-02-18 12:12:20 +00:00
|
|
|
m.prepareRequest = &message{
|
2020-11-17 12:57:50 +00:00
|
|
|
Type: prepareRequestType,
|
|
|
|
ViewNumber: p.ViewNumber(),
|
|
|
|
payload: p.GetPrepareRequest().(*prepareRequest),
|
|
|
|
stateRootEnabled: m.stateRootEnabled,
|
2020-02-18 12:12:20 +00:00
|
|
|
}
|
2019-12-02 13:18:54 +00:00
|
|
|
h := p.Hash()
|
|
|
|
m.preparationHash = &h
|
2019-12-02 15:32:14 +00:00
|
|
|
m.preparationPayloads = append(m.preparationPayloads, &preparationCompact{
|
2020-08-23 13:44:56 +00:00
|
|
|
ValidatorIndex: validator,
|
2019-12-02 15:32:14 +00:00
|
|
|
InvocationScript: p.(*Payload).Witness.InvocationScript,
|
|
|
|
})
|
2024-03-21 19:49:39 +00:00
|
|
|
case dbft.PrepareResponseType:
|
2019-11-15 10:32:40 +00:00
|
|
|
m.preparationPayloads = append(m.preparationPayloads, &preparationCompact{
|
2020-08-23 13:44:56 +00:00
|
|
|
ValidatorIndex: validator,
|
2019-11-15 10:32:40 +00:00
|
|
|
InvocationScript: p.(*Payload).Witness.InvocationScript,
|
|
|
|
})
|
2019-12-02 13:18:54 +00:00
|
|
|
|
|
|
|
if m.preparationHash == nil {
|
2024-03-21 19:49:39 +00:00
|
|
|
h := p.GetPrepareResponse().(*prepareResponse).preparationHash
|
2019-12-02 13:18:54 +00:00
|
|
|
m.preparationHash = &h
|
|
|
|
}
|
2024-03-21 19:49:39 +00:00
|
|
|
case dbft.ChangeViewType:
|
2019-11-15 10:32:40 +00:00
|
|
|
m.changeViewPayloads = append(m.changeViewPayloads, &changeViewCompact{
|
2020-08-23 13:44:56 +00:00
|
|
|
ValidatorIndex: validator,
|
2019-11-15 10:32:40 +00:00
|
|
|
OriginalViewNumber: p.ViewNumber(),
|
2024-03-21 19:49:39 +00:00
|
|
|
Timestamp: p.GetChangeView().(*changeView).timestamp,
|
2019-11-15 10:32:40 +00:00
|
|
|
InvocationScript: p.(*Payload).Witness.InvocationScript,
|
|
|
|
})
|
2024-03-21 19:49:39 +00:00
|
|
|
case dbft.CommitType:
|
2019-11-15 10:32:40 +00:00
|
|
|
m.commitPayloads = append(m.commitPayloads, &commitCompact{
|
2020-08-23 13:44:56 +00:00
|
|
|
ValidatorIndex: validator,
|
2019-11-15 10:32:40 +00:00
|
|
|
ViewNumber: p.ViewNumber(),
|
|
|
|
Signature: p.GetCommit().(*commit).signature,
|
|
|
|
InvocationScript: p.(*Payload).Witness.InvocationScript,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// GetPrepareRequest implements the payload.RecoveryMessage interface.
|
2024-03-21 19:49:39 +00:00
|
|
|
func (m *recoveryMessage) GetPrepareRequest(p dbft.ConsensusPayload[util.Uint256], validators []dbft.PublicKey, primary uint16) dbft.ConsensusPayload[util.Uint256] {
|
2019-11-15 10:32:40 +00:00
|
|
|
if m.prepareRequest == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-02 15:32:14 +00:00
|
|
|
var compact *preparationCompact
|
|
|
|
for _, p := range m.preparationPayloads {
|
2020-08-23 13:44:56 +00:00
|
|
|
if p != nil && p.ValidatorIndex == uint8(primary) {
|
2019-12-02 15:32:14 +00:00
|
|
|
compact = p
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if compact == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-18 12:12:20 +00:00
|
|
|
req := fromPayload(prepareRequestType, p.(*Payload), m.prepareRequest.payload)
|
2019-12-02 15:32:14 +00:00
|
|
|
req.SetValidatorIndex(primary)
|
2021-01-14 11:17:00 +00:00
|
|
|
req.Sender = validators[primary].(*publicKey).GetScriptHash()
|
2019-12-02 15:32:14 +00:00
|
|
|
req.Witness.InvocationScript = compact.InvocationScript
|
2020-08-23 13:44:56 +00:00
|
|
|
req.Witness.VerificationScript = getVerificationScript(uint8(primary), validators)
|
2019-12-02 15:32:14 +00:00
|
|
|
|
|
|
|
return req
|
2019-11-15 10:32:40 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// GetPrepareResponses implements the payload.RecoveryMessage interface.
|
2024-03-21 19:49:39 +00:00
|
|
|
func (m *recoveryMessage) GetPrepareResponses(p dbft.ConsensusPayload[util.Uint256], validators []dbft.PublicKey) []dbft.ConsensusPayload[util.Uint256] {
|
2019-11-15 10:32:40 +00:00
|
|
|
if m.preparationHash == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-21 19:49:39 +00:00
|
|
|
ps := make([]dbft.ConsensusPayload[util.Uint256], len(m.preparationPayloads))
|
2019-11-15 10:32:40 +00:00
|
|
|
|
|
|
|
for i, resp := range m.preparationPayloads {
|
2019-12-02 15:32:14 +00:00
|
|
|
r := fromPayload(prepareResponseType, p.(*Payload), &prepareResponse{
|
2019-11-15 10:32:40 +00:00
|
|
|
preparationHash: *m.preparationHash,
|
|
|
|
})
|
2020-08-23 13:44:56 +00:00
|
|
|
r.SetValidatorIndex(uint16(resp.ValidatorIndex))
|
2021-01-14 11:17:00 +00:00
|
|
|
r.Sender = validators[resp.ValidatorIndex].(*publicKey).GetScriptHash()
|
2019-12-02 15:32:14 +00:00
|
|
|
r.Witness.InvocationScript = resp.InvocationScript
|
|
|
|
r.Witness.VerificationScript = getVerificationScript(resp.ValidatorIndex, validators)
|
|
|
|
|
|
|
|
ps[i] = r
|
2019-11-15 10:32:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ps
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// GetChangeViews implements the payload.RecoveryMessage interface.
|
2024-03-21 19:49:39 +00:00
|
|
|
func (m *recoveryMessage) GetChangeViews(p dbft.ConsensusPayload[util.Uint256], validators []dbft.PublicKey) []dbft.ConsensusPayload[util.Uint256] {
|
|
|
|
ps := make([]dbft.ConsensusPayload[util.Uint256], len(m.changeViewPayloads))
|
2019-11-15 10:32:40 +00:00
|
|
|
|
|
|
|
for i, cv := range m.changeViewPayloads {
|
2019-12-02 15:32:14 +00:00
|
|
|
c := fromPayload(changeViewType, p.(*Payload), &changeView{
|
2019-11-15 10:32:40 +00:00
|
|
|
newViewNumber: cv.OriginalViewNumber + 1,
|
|
|
|
timestamp: cv.Timestamp,
|
|
|
|
})
|
2020-06-09 14:26:21 +00:00
|
|
|
c.message.ViewNumber = cv.OriginalViewNumber
|
2020-08-23 13:44:56 +00:00
|
|
|
c.SetValidatorIndex(uint16(cv.ValidatorIndex))
|
2021-01-14 11:17:00 +00:00
|
|
|
c.Sender = validators[cv.ValidatorIndex].(*publicKey).GetScriptHash()
|
2019-12-02 15:32:14 +00:00
|
|
|
c.Witness.InvocationScript = cv.InvocationScript
|
|
|
|
c.Witness.VerificationScript = getVerificationScript(cv.ValidatorIndex, validators)
|
|
|
|
|
|
|
|
ps[i] = c
|
2019-11-15 10:32:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ps
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// GetCommits implements the payload.RecoveryMessage interface.
|
2024-03-21 19:49:39 +00:00
|
|
|
func (m *recoveryMessage) GetCommits(p dbft.ConsensusPayload[util.Uint256], validators []dbft.PublicKey) []dbft.ConsensusPayload[util.Uint256] {
|
|
|
|
ps := make([]dbft.ConsensusPayload[util.Uint256], len(m.commitPayloads))
|
2019-11-15 10:32:40 +00:00
|
|
|
|
|
|
|
for i, c := range m.commitPayloads {
|
2019-12-02 15:32:14 +00:00
|
|
|
cc := fromPayload(commitType, p.(*Payload), &commit{signature: c.Signature})
|
2020-08-23 13:44:56 +00:00
|
|
|
cc.SetValidatorIndex(uint16(c.ValidatorIndex))
|
2021-01-14 11:17:00 +00:00
|
|
|
cc.Sender = validators[c.ValidatorIndex].(*publicKey).GetScriptHash()
|
2019-12-02 15:32:14 +00:00
|
|
|
cc.Witness.InvocationScript = c.InvocationScript
|
|
|
|
cc.Witness.VerificationScript = getVerificationScript(c.ValidatorIndex, validators)
|
|
|
|
|
|
|
|
ps[i] = cc
|
2019-11-15 10:32:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ps
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// PreparationHash implements the payload.RecoveryMessage interface.
|
2019-11-15 10:32:40 +00:00
|
|
|
func (m *recoveryMessage) PreparationHash() *util.Uint256 {
|
|
|
|
return m.preparationHash
|
|
|
|
}
|
|
|
|
|
2022-04-20 18:30:09 +00:00
|
|
|
// SetPreparationHash implements the payload.RecoveryMessage interface.
|
2019-11-15 10:32:40 +00:00
|
|
|
func (m *recoveryMessage) SetPreparationHash(h *util.Uint256) {
|
|
|
|
m.preparationHash = h
|
|
|
|
}
|
|
|
|
|
2024-03-21 19:49:39 +00:00
|
|
|
func getVerificationScript(i uint8, validators []dbft.PublicKey) []byte {
|
2019-12-02 15:32:14 +00:00
|
|
|
if int(i) >= len(validators) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
pub, ok := validators[i].(*publicKey)
|
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return pub.GetVerificationScript()
|
|
|
|
}
|
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
func fromPayload(t messageType, recovery *Payload, p io.Serializable) *Payload {
|
|
|
|
return &Payload{
|
2021-01-14 11:17:00 +00:00
|
|
|
Extensible: npayload.Extensible{
|
2022-07-28 15:30:14 +00:00
|
|
|
Category: npayload.ConsensusCategory,
|
2021-01-14 11:17:00 +00:00
|
|
|
ValidBlockEnd: recovery.BlockIndex,
|
|
|
|
},
|
|
|
|
message: message{
|
2020-11-17 12:57:50 +00:00
|
|
|
Type: t,
|
2021-01-14 11:17:00 +00:00
|
|
|
BlockIndex: recovery.BlockIndex,
|
2020-11-17 12:57:50 +00:00
|
|
|
ViewNumber: recovery.message.ViewNumber,
|
|
|
|
payload: p,
|
|
|
|
stateRootEnabled: recovery.stateRootEnabled,
|
2019-11-15 10:32:40 +00:00
|
|
|
},
|
2021-03-25 18:59:54 +00:00
|
|
|
network: recovery.network,
|
2019-11-15 10:32:40 +00:00
|
|
|
}
|
|
|
|
}
|