2016-05-23 08:25:42 +03:00
|
|
|
package lnwire
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/roasbeef/btcd/btcec"
|
|
|
|
"github.com/roasbeef/btcd/wire"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SingleFundingComplete is the message Alice sends to Bob once she is able to
|
|
|
|
// fully assemble the funding transaction, and both versions of the commitment
|
|
|
|
// transaction. The purpose of this message is to present Bob with the items
|
|
|
|
// required for him to generate a signature for Alice's version of the
|
|
|
|
// commitment transaction.
|
|
|
|
type SingleFundingComplete struct {
|
|
|
|
// ChannelID serves to uniquely identify the future channel created by
|
|
|
|
// the initiated single funder workflow.
|
2016-06-21 07:55:07 +03:00
|
|
|
// TODO(roasbeef): change all to PendingChannelID, document schema
|
2016-05-23 08:25:42 +03:00
|
|
|
ChannelID uint64
|
|
|
|
|
|
|
|
// FundingOutPoint is the outpoint (txid:index) of the funding
|
|
|
|
// transaction. With this value, Bob will be able to generate a
|
|
|
|
// signature for Alice's version of the commitment transaction.
|
2016-06-21 07:55:07 +03:00
|
|
|
FundingOutPoint *wire.OutPoint
|
2016-05-23 08:25:42 +03:00
|
|
|
|
2016-05-31 01:45:44 +03:00
|
|
|
// CommitSignature is Alice's signature for Bob's version of the
|
2016-05-23 08:25:42 +03:00
|
|
|
// commitment transaction.
|
2016-05-31 01:45:44 +03:00
|
|
|
CommitSignature *btcec.Signature
|
2016-06-30 21:49:58 +03:00
|
|
|
|
|
|
|
// RevocationKey is the initial key to be used for the revocation
|
|
|
|
// clause within the self-output of the initiators's commitment
|
|
|
|
// transaction. Once an initial new state is created, the initiator
|
|
|
|
// will send a pre-image which will allow the initiator to sweep the
|
|
|
|
// initiator's funds if the violate the contract.
|
|
|
|
RevocationKey *btcec.PublicKey
|
2016-05-31 01:45:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewSingleFundingComplete creates, and returns a new empty
|
|
|
|
// SingleFundingResponse.
|
2016-06-21 07:55:07 +03:00
|
|
|
func NewSingleFundingComplete(chanID uint64, fundingPoint *wire.OutPoint,
|
2016-06-30 21:49:58 +03:00
|
|
|
commitSig *btcec.Signature, revokeKey *btcec.PublicKey) *SingleFundingComplete {
|
2016-05-31 01:45:44 +03:00
|
|
|
|
|
|
|
return &SingleFundingComplete{
|
|
|
|
ChannelID: chanID,
|
|
|
|
FundingOutPoint: fundingPoint,
|
|
|
|
CommitSignature: commitSig,
|
2016-06-30 21:49:58 +03:00
|
|
|
RevocationKey: revokeKey,
|
2016-05-31 01:45:44 +03:00
|
|
|
}
|
2016-05-23 08:25:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Decode deserializes the serialized SingleFundingComplete stored in the passed
|
|
|
|
// io.Reader into the target SingleFundingComplete using the deserialization
|
|
|
|
// rules defined by the passed protocol version.
|
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
|
|
|
func (s *SingleFundingComplete) Decode(r io.Reader, pver uint32) error {
|
|
|
|
// ChannelID (8)
|
|
|
|
// FundingOutPoint (36)
|
2016-06-30 21:49:58 +03:00
|
|
|
// CommitmentSignature (73)
|
|
|
|
// RevocationKey (33)
|
2016-05-23 08:25:42 +03:00
|
|
|
err := readElements(r,
|
|
|
|
&s.ChannelID,
|
|
|
|
&s.FundingOutPoint,
|
2016-06-30 21:49:58 +03:00
|
|
|
&s.CommitSignature,
|
|
|
|
&s.RevocationKey)
|
2016-05-23 08:25:42 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Encode serializes the target SingleFundingComplete into the passed io.Writer
|
|
|
|
// implementation. Serialization will observe the rules defined by the passed
|
|
|
|
// protocol version.
|
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
|
|
|
func (s *SingleFundingComplete) Encode(w io.Writer, pver uint32) error {
|
|
|
|
// ChannelID (8)
|
|
|
|
// FundingOutPoint (36)
|
|
|
|
// Commitment Signature (73)
|
2016-06-30 21:49:58 +03:00
|
|
|
// RevocationKey (33)
|
2016-05-23 08:25:42 +03:00
|
|
|
err := writeElements(w,
|
|
|
|
s.ChannelID,
|
|
|
|
s.FundingOutPoint,
|
2016-06-30 21:49:58 +03:00
|
|
|
s.CommitSignature,
|
|
|
|
s.RevocationKey)
|
2016-05-23 08:25:42 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Command returns the uint32 code which uniquely identifies this message as a
|
|
|
|
// SingleFundingRequest on the wire.
|
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
|
|
|
func (s *SingleFundingComplete) Command() uint32 {
|
|
|
|
return CmdSingleFundingComplete
|
|
|
|
}
|
|
|
|
|
|
|
|
// MaxPayloadLength returns the maximum allowed payload length for a
|
|
|
|
// SingleFundingComplete. This is calculated by summing the max length of all
|
2016-06-30 21:49:58 +03:00
|
|
|
// the fields within a SingleFundingResponse. Therefore, the final breakdown
|
|
|
|
// is: 8 + 36 + 73 = 150
|
2016-05-23 08:25:42 +03:00
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
|
|
|
func (s *SingleFundingComplete) MaxPayloadLength(uint32) uint32 {
|
2016-06-30 21:49:58 +03:00
|
|
|
return 150
|
2016-05-23 08:25:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate examines each populated field within the SingleFundingComplete for
|
|
|
|
// field sanity.
|
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
|
|
|
func (s *SingleFundingComplete) Validate() error {
|
|
|
|
var zeroHash [32]byte
|
|
|
|
if bytes.Equal(zeroHash[:], s.FundingOutPoint.Hash[:]) {
|
|
|
|
return fmt.Errorf("funding outpoint hash must be non-zero")
|
|
|
|
}
|
|
|
|
|
2016-05-31 01:45:44 +03:00
|
|
|
if s.CommitSignature == nil {
|
2016-05-23 08:25:42 +03:00
|
|
|
return fmt.Errorf("commitment signature must be non-nil")
|
|
|
|
}
|
|
|
|
|
2016-06-30 21:49:58 +03:00
|
|
|
// TODO(roasbeef): fin validation
|
|
|
|
|
2016-05-23 08:25:42 +03:00
|
|
|
// We're good!
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// String returns the string representation of the SingleFundingResponse.
|
|
|
|
//
|
|
|
|
// This is part of the lnwire.Message interface.
|
|
|
|
func (s *SingleFundingComplete) String() string {
|
2016-06-30 21:49:58 +03:00
|
|
|
var rk []byte
|
|
|
|
if s.RevocationKey != nil {
|
|
|
|
rk = s.RevocationKey.SerializeCompressed()
|
|
|
|
}
|
|
|
|
|
2016-05-23 08:25:42 +03:00
|
|
|
return fmt.Sprintf("\n--- Begin SingleFundingComplete ---\n") +
|
|
|
|
fmt.Sprintf("ChannelID:\t\t\t%d\n", s.ChannelID) +
|
|
|
|
fmt.Sprintf("FundingOutPoint:\t\t\t%x\n", s.FundingOutPoint) +
|
2016-05-31 01:45:44 +03:00
|
|
|
fmt.Sprintf("CommitSignature\t\t\t\t%x\n", s.CommitSignature) +
|
2016-06-30 21:49:58 +03:00
|
|
|
fmt.Sprintf("RevocationKey\t\t\t\t%x\n", rk) +
|
2016-05-23 08:25:42 +03:00
|
|
|
fmt.Sprintf("--- End SingleFundingComplete ---\n")
|
|
|
|
}
|