mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-11-10 06:07:16 +01:00
In preparation for adding a NodeAnnouncement2 struct along with a NodeAnnouncement interface, this commit renames the existing NodeAnnouncment struct to NodeAnnouncement1.
158 lines
4.5 KiB
Go
158 lines
4.5 KiB
Go
package netann
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"image/color"
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/btcsuite/btcd/btcec/v2"
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
|
"github.com/lightningnetwork/lnd/keychain"
|
|
"github.com/lightningnetwork/lnd/lnwallet"
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
)
|
|
|
|
// NodeAnnModifier is a closure that makes in-place modifications to an
|
|
// lnwire.NodeAnnouncement1.
|
|
type NodeAnnModifier func(*lnwire.NodeAnnouncement1)
|
|
|
|
// NodeAnnSetAlias is a functional option that sets the alias of the
|
|
// given node announcement.
|
|
func NodeAnnSetAlias(alias lnwire.NodeAlias) func(*lnwire.NodeAnnouncement1) {
|
|
return func(nodeAnn *lnwire.NodeAnnouncement1) {
|
|
nodeAnn.Alias = alias
|
|
}
|
|
}
|
|
|
|
// NodeAnnSetAddrs is a functional option that allows updating the addresses of
|
|
// the given node announcement.
|
|
func NodeAnnSetAddrs(addrs []net.Addr) func(*lnwire.NodeAnnouncement1) {
|
|
return func(nodeAnn *lnwire.NodeAnnouncement1) {
|
|
nodeAnn.Addresses = addrs
|
|
}
|
|
}
|
|
|
|
// NodeAnnSetColor is a functional option that sets the color of the
|
|
// given node announcement.
|
|
func NodeAnnSetColor(newColor color.RGBA) func(*lnwire.NodeAnnouncement1) {
|
|
return func(nodeAnn *lnwire.NodeAnnouncement1) {
|
|
nodeAnn.RGBColor = newColor
|
|
}
|
|
}
|
|
|
|
// NodeAnnSetFeatures is a functional option that allows updating the features of
|
|
// the given node announcement.
|
|
func NodeAnnSetFeatures(
|
|
features *lnwire.RawFeatureVector) func(*lnwire.NodeAnnouncement1) {
|
|
|
|
return func(nodeAnn *lnwire.NodeAnnouncement1) {
|
|
nodeAnn.Features = features
|
|
}
|
|
}
|
|
|
|
// NodeAnnSetTimestamp is a functional option that sets the timestamp of the
|
|
// announcement to the current time, or increments it if the timestamp is
|
|
// already in the future.
|
|
func NodeAnnSetTimestamp(nodeAnn *lnwire.NodeAnnouncement1) {
|
|
newTimestamp := uint32(time.Now().Unix())
|
|
if newTimestamp <= nodeAnn.Timestamp {
|
|
// Increment the prior value to ensure the timestamp
|
|
// monotonically increases, otherwise the announcement won't
|
|
// propagate.
|
|
newTimestamp = nodeAnn.Timestamp + 1
|
|
}
|
|
nodeAnn.Timestamp = newTimestamp
|
|
}
|
|
|
|
// SignNodeAnnouncement signs the lnwire.NodeAnnouncement1 provided, which
|
|
// should be the most recent, valid update, otherwise the timestamp may not
|
|
// monotonically increase from the prior.
|
|
func SignNodeAnnouncement(signer lnwallet.MessageSigner,
|
|
keyLoc keychain.KeyLocator, nodeAnn *lnwire.NodeAnnouncement1) error {
|
|
|
|
// Create the DER-encoded ECDSA signature over the message digest.
|
|
sig, err := SignAnnouncement(signer, keyLoc, nodeAnn)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Parse the DER-encoded signature into a fixed-size 64-byte array.
|
|
nodeAnn.Signature, err = lnwire.NewSigFromSignature(sig)
|
|
return err
|
|
}
|
|
|
|
// ValidateNodeAnn validates the fields and signature of a node announcement.
|
|
func ValidateNodeAnn(a *lnwire.NodeAnnouncement1) error {
|
|
err := ValidateNodeAnnFields(a)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid node announcement fields: %w", err)
|
|
}
|
|
|
|
return ValidateNodeAnnSignature(a)
|
|
}
|
|
|
|
// ValidateNodeAnnFields validates the fields of a node announcement.
|
|
func ValidateNodeAnnFields(a *lnwire.NodeAnnouncement1) error {
|
|
// Check that it only has at most one DNS address.
|
|
hasDNSAddr := false
|
|
for _, addr := range a.Addresses {
|
|
dnsAddr, ok := addr.(*lnwire.DNSAddress)
|
|
if !ok {
|
|
continue
|
|
}
|
|
if hasDNSAddr {
|
|
return errors.New("node announcement contains " +
|
|
"multiple DNS addresses. Only one is allowed")
|
|
}
|
|
|
|
hasDNSAddr = true
|
|
|
|
err := lnwire.ValidateDNSAddr(dnsAddr.Hostname, dnsAddr.Port)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ValidateNodeAnnSignature validates the node announcement by ensuring that the
|
|
// attached signature is needed a signature of the node announcement under the
|
|
// specified node public key.
|
|
func ValidateNodeAnnSignature(a *lnwire.NodeAnnouncement1) error {
|
|
// Reconstruct the data of announcement which should be covered by the
|
|
// signature so we can verify the signature shortly below
|
|
data, err := a.DataToSign()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
nodeSig, err := a.Signature.ToSignature()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
nodeKey, err := btcec.ParsePubKey(a.NodeID[:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Finally ensure that the passed signature is valid, if not we'll
|
|
// return an error so this node announcement can be rejected.
|
|
dataHash := chainhash.DoubleHashB(data)
|
|
if !nodeSig.Verify(dataHash, nodeKey) {
|
|
var msgBuf bytes.Buffer
|
|
if _, err := lnwire.WriteMessage(&msgBuf, a, 0); err != nil {
|
|
return err
|
|
}
|
|
|
|
return fmt.Errorf("signature on NodeAnnouncement1(%x) is "+
|
|
"invalid: %x", nodeKey.SerializeCompressed(),
|
|
msgBuf.Bytes())
|
|
}
|
|
|
|
return nil
|
|
}
|