2016-08-08 21:04:33 +02:00
|
|
|
// Copyright (c) 2014-2016 The btcsuite developers
|
2014-04-11 04:29:00 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-01-31 19:32:55 +01:00
|
|
|
package wire
|
2014-04-11 04:29:00 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2016-08-08 21:04:33 +02:00
|
|
|
|
2021-10-15 07:45:32 +02:00
|
|
|
"github.com/lbryio/lbcd/chaincfg/chainhash"
|
2014-04-11 04:29:00 +02:00
|
|
|
)
|
|
|
|
|
2014-05-05 09:15:18 +02:00
|
|
|
// maxFlagsPerMerkleBlock is the maximum number of flag bytes that could
|
|
|
|
// possibly fit into a merkle block. Since each transaction is represented by
|
|
|
|
// a single bit, this is the max number of transactions per block divided by
|
|
|
|
// 8 bits per byte. Then an extra one to cover partials.
|
|
|
|
const maxFlagsPerMerkleBlock = maxTxPerBlock / 8
|
|
|
|
|
|
|
|
// MsgMerkleBlock implements the Message interface and represents a bitcoin
|
|
|
|
// merkleblock message which is used to reset a Bloom filter.
|
2014-04-11 04:29:00 +02:00
|
|
|
//
|
|
|
|
// This message was not added until protocol version BIP0037Version.
|
|
|
|
type MsgMerkleBlock struct {
|
|
|
|
Header BlockHeader
|
|
|
|
Transactions uint32
|
2016-08-08 21:04:33 +02:00
|
|
|
Hashes []*chainhash.Hash
|
2014-04-11 04:29:00 +02:00
|
|
|
Flags []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddTxHash adds a new transaction hash to the message.
|
2016-08-08 21:04:33 +02:00
|
|
|
func (msg *MsgMerkleBlock) AddTxHash(hash *chainhash.Hash) error {
|
2014-04-11 04:29:00 +02:00
|
|
|
if len(msg.Hashes)+1 > maxTxPerBlock {
|
|
|
|
str := fmt.Sprintf("too many tx hashes for message [max %v]",
|
|
|
|
maxTxPerBlock)
|
|
|
|
return messageError("MsgMerkleBlock.AddTxHash", str)
|
|
|
|
}
|
|
|
|
|
|
|
|
msg.Hashes = append(msg.Hashes, hash)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// BtcDecode decodes r using the bitcoin protocol encoding into the receiver.
|
|
|
|
// This is part of the Message interface implementation.
|
2016-10-19 01:21:48 +02:00
|
|
|
func (msg *MsgMerkleBlock) BtcDecode(r io.Reader, pver uint32, enc MessageEncoding) error {
|
2014-04-11 04:29:00 +02:00
|
|
|
if pver < BIP0037Version {
|
|
|
|
str := fmt.Sprintf("merkleblock message invalid for protocol "+
|
|
|
|
"version %d", pver)
|
|
|
|
return messageError("MsgMerkleBlock.BtcDecode", str)
|
|
|
|
}
|
|
|
|
|
|
|
|
err := readBlockHeader(r, pver, &msg.Header)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = readElement(r, &msg.Transactions)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read num block locator hashes and limit to max.
|
2016-02-22 17:13:11 +01:00
|
|
|
count, err := ReadVarInt(r, pver)
|
2014-04-11 04:29:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if count > maxTxPerBlock {
|
|
|
|
str := fmt.Sprintf("too many transaction hashes for message "+
|
|
|
|
"[count %v, max %v]", count, maxTxPerBlock)
|
|
|
|
return messageError("MsgMerkleBlock.BtcDecode", str)
|
|
|
|
}
|
|
|
|
|
2016-04-21 23:49:38 +02:00
|
|
|
// Create a contiguous slice of hashes to deserialize into in order to
|
|
|
|
// reduce the number of allocations.
|
2016-08-08 21:04:33 +02:00
|
|
|
hashes := make([]chainhash.Hash, count)
|
|
|
|
msg.Hashes = make([]*chainhash.Hash, 0, count)
|
2014-04-11 04:29:00 +02:00
|
|
|
for i := uint64(0); i < count; i++ {
|
2016-04-21 23:49:38 +02:00
|
|
|
hash := &hashes[i]
|
|
|
|
err := readElement(r, hash)
|
2014-04-11 04:29:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-04-21 23:49:38 +02:00
|
|
|
msg.AddTxHash(hash)
|
2014-04-11 04:29:00 +02:00
|
|
|
}
|
|
|
|
|
2016-02-22 17:13:11 +01:00
|
|
|
msg.Flags, err = ReadVarBytes(r, pver, maxFlagsPerMerkleBlock,
|
2014-05-05 09:15:18 +02:00
|
|
|
"merkle block flags size")
|
2016-11-03 05:02:04 +01:00
|
|
|
return err
|
2014-04-11 04:29:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// BtcEncode encodes the receiver to w using the bitcoin protocol encoding.
|
|
|
|
// This is part of the Message interface implementation.
|
2016-10-19 01:21:48 +02:00
|
|
|
func (msg *MsgMerkleBlock) BtcEncode(w io.Writer, pver uint32, enc MessageEncoding) error {
|
2014-04-11 04:29:00 +02:00
|
|
|
if pver < BIP0037Version {
|
|
|
|
str := fmt.Sprintf("merkleblock message invalid for protocol "+
|
|
|
|
"version %d", pver)
|
|
|
|
return messageError("MsgMerkleBlock.BtcEncode", str)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read num transaction hashes and limit to max.
|
2014-05-05 09:15:18 +02:00
|
|
|
numHashes := len(msg.Hashes)
|
|
|
|
if numHashes > maxTxPerBlock {
|
2014-04-11 04:29:00 +02:00
|
|
|
str := fmt.Sprintf("too many transaction hashes for message "+
|
2014-05-05 09:15:18 +02:00
|
|
|
"[count %v, max %v]", numHashes, maxTxPerBlock)
|
|
|
|
return messageError("MsgMerkleBlock.BtcDecode", str)
|
|
|
|
}
|
|
|
|
numFlagBytes := len(msg.Flags)
|
|
|
|
if numFlagBytes > maxFlagsPerMerkleBlock {
|
|
|
|
str := fmt.Sprintf("too many flag bytes for message [count %v, "+
|
|
|
|
"max %v]", numFlagBytes, maxFlagsPerMerkleBlock)
|
2014-04-11 04:29:00 +02:00
|
|
|
return messageError("MsgMerkleBlock.BtcDecode", str)
|
|
|
|
}
|
|
|
|
|
|
|
|
err := writeBlockHeader(w, pver, &msg.Header)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = writeElement(w, msg.Transactions)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-02-22 17:13:11 +01:00
|
|
|
err = WriteVarInt(w, pver, uint64(numHashes))
|
2014-04-11 04:29:00 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, hash := range msg.Hashes {
|
|
|
|
err = writeElement(w, hash)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-03 05:02:04 +01:00
|
|
|
return WriteVarBytes(w, pver, msg.Flags)
|
2014-04-11 04:29:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Command returns the protocol command string for the message. This is part
|
|
|
|
// of the Message interface implementation.
|
|
|
|
func (msg *MsgMerkleBlock) Command() string {
|
2014-07-14 17:38:29 +02:00
|
|
|
return CmdMerkleBlock
|
2014-04-11 04:29:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// MaxPayloadLength returns the maximum length the payload can be for the
|
|
|
|
// receiver. This is part of the Message interface implementation.
|
|
|
|
func (msg *MsgMerkleBlock) MaxPayloadLength(pver uint32) uint32 {
|
|
|
|
return MaxBlockPayload
|
|
|
|
}
|
|
|
|
|
2014-05-05 09:15:18 +02:00
|
|
|
// NewMsgMerkleBlock returns a new bitcoin merkleblock message that conforms to
|
|
|
|
// the Message interface. See MsgMerkleBlock for details.
|
2014-04-11 04:29:00 +02:00
|
|
|
func NewMsgMerkleBlock(bh *BlockHeader) *MsgMerkleBlock {
|
|
|
|
return &MsgMerkleBlock{
|
|
|
|
Header: *bh,
|
|
|
|
Transactions: 0,
|
2016-08-08 21:04:33 +02:00
|
|
|
Hashes: make([]*chainhash.Hash, 0),
|
2014-04-11 04:29:00 +02:00
|
|
|
Flags: make([]byte, 0),
|
|
|
|
}
|
|
|
|
}
|