You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

150 lines
3.9 KiB

  1. package types
  2. import (
  3. "errors"
  4. "fmt"
  5. "time"
  6. tmbytes "github.com/tendermint/tendermint/libs/bytes"
  7. "github.com/tendermint/tendermint/libs/protoio"
  8. tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
  9. tmtime "github.com/tendermint/tendermint/types/time"
  10. )
  11. var (
  12. ErrInvalidBlockPartSignature = errors.New("error invalid block part signature")
  13. ErrInvalidBlockPartHash = errors.New("error invalid block part hash")
  14. )
  15. // Proposal defines a block proposal for the consensus.
  16. // It refers to the block by BlockID field.
  17. // It must be signed by the correct proposer for the given Height/Round
  18. // to be considered valid. It may depend on votes from a previous round,
  19. // a so-called Proof-of-Lock (POL) round, as noted in the POLRound.
  20. // If POLRound >= 0, then BlockID corresponds to the block that is locked in POLRound.
  21. type Proposal struct {
  22. Type tmproto.SignedMsgType
  23. Height int64 `json:"height"`
  24. Round int32 `json:"round"` // there can not be greater than 2_147_483_647 rounds
  25. POLRound int32 `json:"pol_round"` // -1 if null.
  26. BlockID BlockID `json:"block_id"`
  27. Timestamp time.Time `json:"timestamp"`
  28. Signature []byte `json:"signature"`
  29. }
  30. // NewProposal returns a new Proposal.
  31. // If there is no POLRound, polRound should be -1.
  32. func NewProposal(height int64, round int32, polRound int32, blockID BlockID) *Proposal {
  33. return &Proposal{
  34. Type: tmproto.ProposalType,
  35. Height: height,
  36. Round: round,
  37. BlockID: blockID,
  38. POLRound: polRound,
  39. Timestamp: tmtime.Now(),
  40. }
  41. }
  42. // ValidateBasic performs basic validation.
  43. func (p *Proposal) ValidateBasic() error {
  44. if p.Type != tmproto.ProposalType {
  45. return errors.New("invalid Type")
  46. }
  47. if p.Height < 0 {
  48. return errors.New("negative Height")
  49. }
  50. if p.Round < 0 {
  51. return errors.New("negative Round")
  52. }
  53. if p.POLRound < -1 {
  54. return errors.New("negative POLRound (exception: -1)")
  55. }
  56. if err := p.BlockID.ValidateBasic(); err != nil {
  57. return fmt.Errorf("wrong BlockID: %v", err)
  58. }
  59. // ValidateBasic above would pass even if the BlockID was empty:
  60. if !p.BlockID.IsComplete() {
  61. return fmt.Errorf("expected a complete, non-empty BlockID, got: %v", p.BlockID)
  62. }
  63. // NOTE: Timestamp validation is subtle and handled elsewhere.
  64. if len(p.Signature) == 0 {
  65. return errors.New("signature is missing")
  66. }
  67. if len(p.Signature) > MaxSignatureSize {
  68. return fmt.Errorf("signature is too big (max: %d)", MaxSignatureSize)
  69. }
  70. return nil
  71. }
  72. // String returns a string representation of the Proposal.
  73. func (p *Proposal) String() string {
  74. return fmt.Sprintf("Proposal{%v/%v (%v, %v) %X @ %s}",
  75. p.Height,
  76. p.Round,
  77. p.BlockID,
  78. p.POLRound,
  79. tmbytes.Fingerprint(p.Signature),
  80. CanonicalTime(p.Timestamp))
  81. }
  82. // ProposalSignBytes returns the proto-encoding of the canonicalized Proposal,
  83. // for signing.
  84. //
  85. // Panics if the marshaling fails.
  86. //
  87. // See CanonicalizeProposal
  88. func ProposalSignBytes(chainID string, p *tmproto.Proposal) []byte {
  89. pb := CanonicalizeProposal(chainID, p)
  90. bz, err := protoio.MarshalDelimited(&pb)
  91. if err != nil {
  92. panic(err)
  93. }
  94. return bz
  95. }
  96. // ToProto converts Proposal to protobuf
  97. func (p *Proposal) ToProto() *tmproto.Proposal {
  98. if p == nil {
  99. return &tmproto.Proposal{}
  100. }
  101. pb := new(tmproto.Proposal)
  102. pb.BlockID = p.BlockID.ToProto()
  103. pb.Type = p.Type
  104. pb.Height = p.Height
  105. pb.Round = p.Round
  106. pb.PolRound = p.POLRound
  107. pb.Timestamp = p.Timestamp
  108. pb.Signature = p.Signature
  109. return pb
  110. }
  111. // FromProto sets a protobuf Proposal to the given pointer.
  112. // It returns an error if the proposal is invalid.
  113. func ProposalFromProto(pp *tmproto.Proposal) (*Proposal, error) {
  114. if pp == nil {
  115. return nil, errors.New("nil proposal")
  116. }
  117. p := new(Proposal)
  118. blockID, err := BlockIDFromProto(&pp.BlockID)
  119. if err != nil {
  120. return nil, err
  121. }
  122. p.BlockID = *blockID
  123. p.Type = pp.Type
  124. p.Height = pp.Height
  125. p.Round = pp.Round
  126. p.POLRound = pp.PolRound
  127. p.Timestamp = pp.Timestamp
  128. p.Signature = pp.Signature
  129. return p, p.ValidateBasic()
  130. }