2017-03-28 22:08:14 +03:00
|
|
|
package discovery
|
|
|
|
|
|
|
|
import (
|
2017-03-27 20:25:44 +03:00
|
|
|
"github.com/go-errors/errors"
|
2017-03-28 22:08:14 +03:00
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
2017-03-27 20:25:44 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lnwallet"
|
2017-03-28 22:08:14 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
2017-03-27 20:25:44 +03:00
|
|
|
"github.com/roasbeef/btcd/btcec"
|
2017-03-28 22:08:14 +03:00
|
|
|
)
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// createChanAnnouncement is a helper function which creates all channel
|
|
|
|
// announcements given the necessary channel related database items. This
|
|
|
|
// function is used to transform out databse structs into the coresponding wire
|
|
|
|
// sturcts for announcing new channels to other peers, or simply syncing up a
|
|
|
|
// peer's initial routing table upon connect.
|
2017-03-28 22:08:14 +03:00
|
|
|
func createChanAnnouncement(chanProof *channeldb.ChannelAuthProof,
|
|
|
|
chanInfo *channeldb.ChannelEdgeInfo,
|
2017-04-01 15:33:17 +03:00
|
|
|
e1, e2 *channeldb.ChannelEdgePolicy) (*lnwire.ChannelAnnouncement,
|
2017-04-20 02:20:46 +03:00
|
|
|
*lnwire.ChannelUpdate, *lnwire.ChannelUpdate) {
|
2017-04-01 15:33:17 +03:00
|
|
|
|
|
|
|
// First, using the parameters of the channel, along with the channel
|
|
|
|
// authentication chanProof, we'll create re-create the original
|
|
|
|
// authenticated channel announcement.
|
2017-03-28 22:08:14 +03:00
|
|
|
chanID := lnwire.NewShortChanIDFromInt(chanInfo.ChannelID)
|
|
|
|
chanAnn := &lnwire.ChannelAnnouncement{
|
|
|
|
NodeSig1: chanProof.NodeSig1,
|
|
|
|
NodeSig2: chanProof.NodeSig2,
|
|
|
|
ShortChannelID: chanID,
|
|
|
|
BitcoinSig1: chanProof.BitcoinSig1,
|
|
|
|
BitcoinSig2: chanProof.BitcoinSig2,
|
|
|
|
NodeID1: chanInfo.NodeKey1,
|
|
|
|
NodeID2: chanInfo.NodeKey2,
|
|
|
|
BitcoinKey1: chanInfo.BitcoinKey1,
|
|
|
|
BitcoinKey2: chanInfo.BitcoinKey2,
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// We'll unconditionally queue the channel's existence chanProof as it
|
|
|
|
// will need to be processed before either of the channel update
|
|
|
|
// networkMsgs.
|
2017-03-28 22:08:14 +03:00
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// Since it's up to a node's policy as to whether they advertise the
|
|
|
|
// edge in dire direction, we don't create an advertisement if the edge
|
|
|
|
// is nil.
|
2017-04-20 02:20:46 +03:00
|
|
|
var edge1Ann, edge2Ann *lnwire.ChannelUpdate
|
2017-03-28 22:08:14 +03:00
|
|
|
if e1 != nil {
|
2017-04-20 02:20:46 +03:00
|
|
|
edge1Ann = &lnwire.ChannelUpdate{
|
2017-06-16 23:48:07 +03:00
|
|
|
Signature: e1.Signature,
|
|
|
|
ShortChannelID: chanID,
|
|
|
|
Timestamp: uint32(e1.LastUpdate.Unix()),
|
|
|
|
Flags: 0,
|
|
|
|
TimeLockDelta: e1.TimeLockDelta,
|
|
|
|
HtlcMinimumMsat: uint64(e1.MinHTLC),
|
|
|
|
BaseFee: uint32(e1.FeeBaseMSat),
|
|
|
|
FeeRate: uint32(e1.FeeProportionalMillionths),
|
2017-03-28 22:08:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if e2 != nil {
|
2017-04-20 02:20:46 +03:00
|
|
|
edge2Ann = &lnwire.ChannelUpdate{
|
2017-06-16 23:48:07 +03:00
|
|
|
Signature: e2.Signature,
|
|
|
|
ShortChannelID: chanID,
|
|
|
|
Timestamp: uint32(e2.LastUpdate.Unix()),
|
|
|
|
Flags: 1,
|
|
|
|
TimeLockDelta: e2.TimeLockDelta,
|
|
|
|
HtlcMinimumMsat: uint64(e2.MinHTLC),
|
|
|
|
BaseFee: uint32(e2.FeeBaseMSat),
|
|
|
|
FeeRate: uint32(e2.FeeProportionalMillionths),
|
2017-03-28 22:08:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return chanAnn, edge1Ann, edge2Ann
|
|
|
|
}
|
2017-03-27 20:25:44 +03:00
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// copyPubKey performs a copy of the target public key, setting a fresh curve
|
|
|
|
// parameter during the process.
|
2017-03-27 20:25:44 +03:00
|
|
|
func copyPubKey(pub *btcec.PublicKey) *btcec.PublicKey {
|
|
|
|
return &btcec.PublicKey{
|
|
|
|
Curve: btcec.S256(),
|
|
|
|
X: pub.X,
|
|
|
|
Y: pub.Y,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// SignAnnouncement is a helper function which is used to sign any outgoing
|
|
|
|
// channel node node announcement messages.
|
2017-04-14 21:08:07 +03:00
|
|
|
func SignAnnouncement(signer lnwallet.MessageSigner, pubKey *btcec.PublicKey,
|
2017-03-27 20:25:44 +03:00
|
|
|
msg lnwire.Message) (*btcec.Signature, error) {
|
2017-04-01 15:33:17 +03:00
|
|
|
|
|
|
|
var (
|
|
|
|
data []byte
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
2017-03-27 20:25:44 +03:00
|
|
|
switch m := msg.(type) {
|
|
|
|
case *lnwire.ChannelAnnouncement:
|
|
|
|
data, err = m.DataToSign()
|
2017-04-20 02:20:46 +03:00
|
|
|
case *lnwire.ChannelUpdate:
|
2017-03-27 20:25:44 +03:00
|
|
|
data, err = m.DataToSign()
|
|
|
|
case *lnwire.NodeAnnouncement:
|
|
|
|
data, err = m.DataToSign()
|
|
|
|
default:
|
|
|
|
return nil, errors.New("can't sign message " +
|
|
|
|
"of this format")
|
|
|
|
}
|
|
|
|
if err != nil {
|
2017-04-01 15:33:17 +03:00
|
|
|
return nil, errors.Errorf("unable to get data to sign: %v", err)
|
2017-03-27 20:25:44 +03:00
|
|
|
}
|
|
|
|
|
2017-04-14 21:08:07 +03:00
|
|
|
return signer.SignMessage(pubKey, data)
|
2017-03-27 20:25:44 +03:00
|
|
|
}
|