2019-02-15 04:12:03 +03:00
|
|
|
package netann
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/btcsuite/btcd/btcec"
|
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwallet"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ChannelUpdateModifier is a closure that makes in-place modifications to an
|
|
|
|
// lnwire.ChannelUpdate.
|
|
|
|
type ChannelUpdateModifier func(*lnwire.ChannelUpdate)
|
|
|
|
|
2020-03-18 02:25:22 +03:00
|
|
|
// ChanUpdSetDisable is a functional option that sets the disabled channel flag
|
|
|
|
// if disabled is true, and clears the bit otherwise.
|
|
|
|
func ChanUpdSetDisable(disabled bool) ChannelUpdateModifier {
|
2019-02-15 04:12:03 +03:00
|
|
|
return func(update *lnwire.ChannelUpdate) {
|
|
|
|
if disabled {
|
|
|
|
// Set the bit responsible for marking a channel as
|
|
|
|
// disabled.
|
|
|
|
update.ChannelFlags |= lnwire.ChanUpdateDisabled
|
|
|
|
} else {
|
|
|
|
// Clear the bit responsible for marking a channel as
|
|
|
|
// disabled.
|
|
|
|
update.ChannelFlags &= ^lnwire.ChanUpdateDisabled
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-18 02:25:22 +03:00
|
|
|
// ChanUpdSetTimestamp is a functional option that sets the timestamp of the
|
|
|
|
// update to the current time, or increments it if the timestamp is already in
|
|
|
|
// the future.
|
|
|
|
func ChanUpdSetTimestamp(update *lnwire.ChannelUpdate) {
|
|
|
|
newTimestamp := uint32(time.Now().Unix())
|
|
|
|
if newTimestamp <= update.Timestamp {
|
|
|
|
// Increment the prior value to ensure the timestamp
|
|
|
|
// monotonically increases, otherwise the update won't
|
|
|
|
// propagate.
|
|
|
|
newTimestamp = update.Timestamp + 1
|
|
|
|
}
|
|
|
|
update.Timestamp = newTimestamp
|
|
|
|
}
|
|
|
|
|
2019-02-15 04:12:03 +03:00
|
|
|
// SignChannelUpdate applies the given modifiers to the passed
|
|
|
|
// lnwire.ChannelUpdate, then signs the resulting update. The provided update
|
|
|
|
// should be the most recent, valid update, otherwise the timestamp may not
|
|
|
|
// monotonically increase from the prior.
|
|
|
|
//
|
|
|
|
// NOTE: This method modifies the given update.
|
|
|
|
func SignChannelUpdate(signer lnwallet.MessageSigner, pubKey *btcec.PublicKey,
|
|
|
|
update *lnwire.ChannelUpdate, mods ...ChannelUpdateModifier) error {
|
|
|
|
|
|
|
|
// Apply the requested changes to the channel update.
|
|
|
|
for _, modifier := range mods {
|
|
|
|
modifier(update)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the DER-encoded ECDSA signature over the message digest.
|
2020-03-18 02:23:19 +03:00
|
|
|
sig, err := SignAnnouncement(signer, pubKey, update)
|
2019-02-15 04:12:03 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the DER-encoded signature into a fixed-size 64-byte array.
|
|
|
|
update.Signature, err = lnwire.NewSigFromSignature(sig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExtractChannelUpdate attempts to retrieve a lnwire.ChannelUpdate message from
|
|
|
|
// an edge's info and a set of routing policies.
|
|
|
|
//
|
|
|
|
// NOTE: The passed policies can be nil.
|
|
|
|
func ExtractChannelUpdate(ownerPubKey []byte,
|
|
|
|
info *channeldb.ChannelEdgeInfo,
|
|
|
|
policies ...*channeldb.ChannelEdgePolicy) (
|
|
|
|
*lnwire.ChannelUpdate, error) {
|
|
|
|
|
|
|
|
// Helper function to extract the owner of the given policy.
|
|
|
|
owner := func(edge *channeldb.ChannelEdgePolicy) []byte {
|
|
|
|
var pubKey *btcec.PublicKey
|
|
|
|
if edge.ChannelFlags&lnwire.ChanUpdateDirection == 0 {
|
|
|
|
pubKey, _ = info.NodeKey1()
|
|
|
|
} else {
|
|
|
|
pubKey, _ = info.NodeKey2()
|
|
|
|
}
|
|
|
|
|
|
|
|
// If pubKey was not found, just return nil.
|
|
|
|
if pubKey == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return pubKey.SerializeCompressed()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract the channel update from the policy we own, if any.
|
|
|
|
for _, edge := range policies {
|
|
|
|
if edge != nil && bytes.Equal(ownerPubKey, owner(edge)) {
|
|
|
|
return ChannelUpdateFromEdge(info, edge)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("unable to extract ChannelUpdate for channel %v",
|
|
|
|
info.ChannelPoint)
|
|
|
|
}
|
|
|
|
|
2020-03-19 23:43:39 +03:00
|
|
|
// UnsignedChannelUpdateFromEdge reconstructs an unsigned ChannelUpdate from the
|
|
|
|
// given edge info and policy.
|
|
|
|
func UnsignedChannelUpdateFromEdge(info *channeldb.ChannelEdgeInfo,
|
|
|
|
policy *channeldb.ChannelEdgePolicy) *lnwire.ChannelUpdate {
|
2019-02-15 04:12:03 +03:00
|
|
|
|
2020-03-19 23:43:39 +03:00
|
|
|
return &lnwire.ChannelUpdate{
|
2019-02-15 04:12:03 +03:00
|
|
|
ChainHash: info.ChainHash,
|
|
|
|
ShortChannelID: lnwire.NewShortChanIDFromInt(policy.ChannelID),
|
|
|
|
Timestamp: uint32(policy.LastUpdate.Unix()),
|
|
|
|
ChannelFlags: policy.ChannelFlags,
|
|
|
|
MessageFlags: policy.MessageFlags,
|
|
|
|
TimeLockDelta: policy.TimeLockDelta,
|
|
|
|
HtlcMinimumMsat: policy.MinHTLC,
|
|
|
|
HtlcMaximumMsat: policy.MaxHTLC,
|
|
|
|
BaseFee: uint32(policy.FeeBaseMSat),
|
|
|
|
FeeRate: uint32(policy.FeeProportionalMillionths),
|
|
|
|
ExtraOpaqueData: policy.ExtraOpaqueData,
|
|
|
|
}
|
2020-03-19 23:43:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ChannelUpdateFromEdge reconstructs a signed ChannelUpdate from the given edge
|
|
|
|
// info and policy.
|
|
|
|
func ChannelUpdateFromEdge(info *channeldb.ChannelEdgeInfo,
|
|
|
|
policy *channeldb.ChannelEdgePolicy) (*lnwire.ChannelUpdate, error) {
|
|
|
|
|
|
|
|
update := UnsignedChannelUpdateFromEdge(info, policy)
|
2019-02-15 04:12:03 +03:00
|
|
|
|
|
|
|
var err error
|
|
|
|
update.Signature, err = lnwire.NewSigFromRawSignature(policy.SigBytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return update, nil
|
|
|
|
}
|