mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
These two messages will be used to implement the new and improved co-op closing protocol. This PR also show cases how to use the new `tlv.OptionalRecord` type to define and handle TLV level parsing. I think we can make one additional helper function to clean up some of the boiler plate for the encode/decode.
156 lines
4.6 KiB
Go
156 lines
4.6 KiB
Go
package lnwire
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
|
|
"github.com/btcsuite/btcd/btcutil"
|
|
"github.com/lightningnetwork/lnd/tlv"
|
|
)
|
|
|
|
// ClosingSigs houses the 3 possible signatures that can be sent when
|
|
// attempting to complete a cooperative channel closure. A signature will
|
|
// either include both outputs, or only one of the outputs from either side.
|
|
type ClosingSigs struct {
|
|
// CloserNoClosee is a signature that excludes the output of the
|
|
// clsoee.
|
|
CloserNoClosee tlv.OptionalRecordT[tlv.TlvType1, Sig]
|
|
|
|
// NoCloserClosee is a signature that excludes the output of the
|
|
// closer.
|
|
NoCloserClosee tlv.OptionalRecordT[tlv.TlvType2, Sig]
|
|
|
|
// CloserAndClosee is a signature that includes both outputs.
|
|
CloserAndClosee tlv.OptionalRecordT[tlv.TlvType3, Sig]
|
|
}
|
|
|
|
// ClosingComplete is sent by either side to kick off the process of obtaining
|
|
// a valid signature on a c o-operative channel closure of their choice.
|
|
type ClosingComplete struct {
|
|
// ChannelID serves to identify which channel is to be closed.
|
|
ChannelID ChannelID
|
|
|
|
// FeeSatoshis is the total fee in satoshis that the party to the
|
|
// channel would like to propose for the close transaction.
|
|
FeeSatoshis btcutil.Amount
|
|
|
|
// Sequence is the sequence number to be used in the input spending the
|
|
// funding transaction.
|
|
Sequence uint32
|
|
|
|
// ClosingSigs houses the 3 possible signatures that can be sent.
|
|
ClosingSigs
|
|
|
|
// ExtraData is the set of data that was appended to this message to
|
|
// fill out the full maximum transport message size. These fields can
|
|
// be used to specify optional data such as custom TLV fields.
|
|
ExtraData ExtraOpaqueData
|
|
}
|
|
|
|
// decodeClosingSigs decodes the closing sig TLV records in the passed
|
|
// ExtraOpaqueData.
|
|
func decodeClosingSigs(c *ClosingSigs, tlvRecords ExtraOpaqueData) error {
|
|
sig1 := tlv.ZeroRecordT[tlv.TlvType1, Sig]()
|
|
sig2 := tlv.ZeroRecordT[tlv.TlvType2, Sig]()
|
|
sig3 := tlv.ZeroRecordT[tlv.TlvType3, Sig]()
|
|
|
|
typeMap, err := tlvRecords.ExtractRecords(&sig1, &sig2, &sig3)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// TODO(roasbeef): helper func to made decode of the optional vals
|
|
// easier?
|
|
|
|
if val, ok := typeMap[c.CloserNoClosee.TlvType()]; ok && val == nil {
|
|
c.CloserNoClosee = tlv.SomeRecordT(sig1)
|
|
}
|
|
if val, ok := typeMap[c.NoCloserClosee.TlvType()]; ok && val == nil {
|
|
c.NoCloserClosee = tlv.SomeRecordT(sig2)
|
|
}
|
|
if val, ok := typeMap[c.CloserAndClosee.TlvType()]; ok && val == nil {
|
|
c.CloserAndClosee = tlv.SomeRecordT(sig3)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Decode deserializes a serialized ClosingComplete message stored in the
|
|
// passed io.Reader.
|
|
func (c *ClosingComplete) Decode(r io.Reader, _ uint32) error {
|
|
// First, read out all the fields that are hard coded into the message.
|
|
err := ReadElements(r, &c.ChannelID, &c.FeeSatoshis, &c.Sequence)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// With the hard coded messages read, we'll now read out the TLV fields
|
|
// of the message.
|
|
var tlvRecords ExtraOpaqueData
|
|
if err := ReadElements(r, &tlvRecords); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := decodeClosingSigs(&c.ClosingSigs, tlvRecords); err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(tlvRecords) != 0 {
|
|
c.ExtraData = tlvRecords
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// closingSigRecords returns the set of records that encode the closing sigs,
|
|
// if present.
|
|
func closingSigRecords(c *ClosingSigs) []tlv.RecordProducer {
|
|
recordProducers := make([]tlv.RecordProducer, 0, 3)
|
|
c.CloserNoClosee.WhenSome(func(sig tlv.RecordT[tlv.TlvType1, Sig]) {
|
|
recordProducers = append(recordProducers, &sig)
|
|
})
|
|
c.NoCloserClosee.WhenSome(func(sig tlv.RecordT[tlv.TlvType2, Sig]) {
|
|
recordProducers = append(recordProducers, &sig)
|
|
})
|
|
c.CloserAndClosee.WhenSome(func(sig tlv.RecordT[tlv.TlvType3, Sig]) {
|
|
recordProducers = append(recordProducers, &sig)
|
|
})
|
|
|
|
return recordProducers
|
|
}
|
|
|
|
// Encode serializes the target ClosingComplete into the passed io.Writer.
|
|
func (c *ClosingComplete) Encode(w *bytes.Buffer, _ uint32) error {
|
|
if err := WriteChannelID(w, c.ChannelID); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := WriteSatoshi(w, c.FeeSatoshis); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := WriteUint32(w, c.Sequence); err != nil {
|
|
return err
|
|
}
|
|
|
|
recordProducers := closingSigRecords(&c.ClosingSigs)
|
|
|
|
err := EncodeMessageExtraData(&c.ExtraData, recordProducers...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return WriteBytes(w, c.ExtraData)
|
|
}
|
|
|
|
// MsgType returns the uint32 code which uniquely identifies this message as a
|
|
// ClosingComplete message on the wire.
|
|
//
|
|
// This is part of the lnwire.Message interface.
|
|
func (c *ClosingComplete) MsgType() MessageType {
|
|
return MsgClosingComplete
|
|
}
|
|
|
|
// A compile time check to ensure ClosingComplete implements the lnwire.Message
|
|
// interface.
|
|
var _ Message = (*ClosingComplete)(nil)
|