2017-03-19 21:40:25 +03:00
|
|
|
package discovery
|
|
|
|
|
|
|
|
import (
|
2017-03-27 20:25:44 +03:00
|
|
|
"bytes"
|
2017-03-19 21:40:25 +03:00
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
2017-03-19 21:40:25 +03:00
|
|
|
"github.com/go-errors/errors"
|
|
|
|
"github.com/lightningnetwork/lnd/chainntnfs"
|
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
"github.com/lightningnetwork/lnd/routing"
|
|
|
|
"github.com/roasbeef/btcd/btcec"
|
|
|
|
"github.com/roasbeef/btcutil"
|
|
|
|
)
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// waitingProofKey is the proof key which uniquely identifies the announcement
|
|
|
|
// signature message. The goal of this key is distinguish the local and remote
|
|
|
|
// proof for the same channel id.
|
|
|
|
//
|
2017-03-28 22:08:14 +03:00
|
|
|
// TODO(andrew.shvv) move to the channeldb package after waiting proof map
|
|
|
|
// becomes persistent.
|
|
|
|
type waitingProofKey struct {
|
|
|
|
chanID uint64
|
|
|
|
isRemote bool
|
|
|
|
}
|
|
|
|
|
2017-03-19 21:40:25 +03:00
|
|
|
// networkMsg couples a routing related wire message with the peer that
|
|
|
|
// originally sent it.
|
|
|
|
type networkMsg struct {
|
2017-04-01 15:33:17 +03:00
|
|
|
peer *btcec.PublicKey
|
|
|
|
msg lnwire.Message
|
|
|
|
|
2017-03-19 21:40:25 +03:00
|
|
|
isRemote bool
|
2017-04-01 15:33:17 +03:00
|
|
|
|
|
|
|
err chan error
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// syncRequest represents a request from an outside subsystem to the wallet to
|
|
|
|
// sync a new node to the latest graph state.
|
|
|
|
type syncRequest struct {
|
|
|
|
node *btcec.PublicKey
|
|
|
|
}
|
|
|
|
|
|
|
|
// Config defines the configuration for the service. ALL elements within the
|
|
|
|
// configuration MUST be non-nil for the service to carry out its duties.
|
|
|
|
type Config struct {
|
|
|
|
// Router is the subsystem which is responsible for managing the
|
2017-04-01 15:33:17 +03:00
|
|
|
// topology of lightning network. After incoming channel, node, channel
|
|
|
|
// updates announcements are validated they are sent to the router in
|
|
|
|
// order to be included in the LN graph.
|
2017-03-19 21:40:25 +03:00
|
|
|
Router routing.ChannelGraphSource
|
|
|
|
|
|
|
|
// Notifier is used for receiving notifications of incoming blocks.
|
|
|
|
// With each new incoming block found we process previously premature
|
|
|
|
// announcements.
|
2017-04-01 15:33:17 +03:00
|
|
|
//
|
2017-03-19 21:40:25 +03:00
|
|
|
// TODO(roasbeef): could possibly just replace this with an epoch
|
|
|
|
// channel.
|
|
|
|
Notifier chainntnfs.ChainNotifier
|
|
|
|
|
|
|
|
// Broadcast broadcasts a particular set of announcements to all peers
|
|
|
|
// that the daemon is connected to. If supplied, the exclude parameter
|
2017-04-01 15:33:17 +03:00
|
|
|
// indicates that the target peer should be excluded from the
|
|
|
|
// broadcast.
|
2017-03-19 21:40:25 +03:00
|
|
|
Broadcast func(exclude *btcec.PublicKey, msg ...lnwire.Message) error
|
|
|
|
|
2017-03-28 22:08:14 +03:00
|
|
|
// SendToPeer is a function which allows the service to send a set of
|
2017-04-01 15:33:17 +03:00
|
|
|
// messages to a particular peer identified by the target public key.
|
2017-03-28 22:08:14 +03:00
|
|
|
SendToPeer func(target *btcec.PublicKey, msg ...lnwire.Message) error
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// ProofMatureDelta the number of confirmations which is needed before
|
|
|
|
// exchange the channel announcement proofs.
|
2017-03-28 22:08:14 +03:00
|
|
|
ProofMatureDelta uint32
|
|
|
|
|
|
|
|
// TrickleDelay the period of trickle timer which flushing to the
|
|
|
|
// network the pending batch of new announcements we've received since
|
|
|
|
// the last trickle tick.
|
|
|
|
TrickleDelay time.Duration
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// New creates a new AuthenticatedGossiper instance, initialized with the
|
|
|
|
// passed configuration paramters.
|
|
|
|
func New(cfg Config) (*AuthenticatedGossiper, error) {
|
|
|
|
return &AuthenticatedGossiper{
|
2017-03-19 21:40:25 +03:00
|
|
|
cfg: &cfg,
|
|
|
|
networkMsgs: make(chan *networkMsg),
|
2017-04-01 15:33:17 +03:00
|
|
|
quit: make(chan struct{}),
|
2017-03-19 21:40:25 +03:00
|
|
|
syncRequests: make(chan *syncRequest),
|
|
|
|
prematureAnnouncements: make(map[uint32][]*networkMsg),
|
2017-03-28 22:08:14 +03:00
|
|
|
waitingProofs: make(map[waitingProofKey]*lnwire.AnnounceSignatures),
|
2017-03-19 21:40:25 +03:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// AuthenticatedGossiper is a subsystem which is responsible for receiving
|
|
|
|
// announcements validate them and apply the changes to router, syncing
|
|
|
|
// lightning network with newly connected nodes, broadcasting announcements
|
|
|
|
// after validation, negotiating the channel announcement proofs exchange and
|
|
|
|
// handling the premature announcements. All outgoing announcements are
|
|
|
|
// expected to be properly signed as dictated in BOLT#7, additionally, all
|
|
|
|
// incoming message are expected to be well formed and signed. Invalid messages
|
|
|
|
// will be rejected by this struct.
|
|
|
|
type AuthenticatedGossiper struct {
|
|
|
|
// Parameters which are needed to properly handle the start and stop of
|
|
|
|
// the service.
|
2017-03-19 21:40:25 +03:00
|
|
|
started uint32
|
|
|
|
stopped uint32
|
2017-04-01 15:33:17 +03:00
|
|
|
quit chan struct{}
|
2017-03-19 21:40:25 +03:00
|
|
|
wg sync.WaitGroup
|
|
|
|
|
|
|
|
// cfg is a copy of the configuration struct that the discovery service
|
|
|
|
// was initialized with.
|
|
|
|
cfg *Config
|
|
|
|
|
|
|
|
// newBlocks is a channel in which new blocks connected to the end of
|
|
|
|
// the main chain are sent over.
|
|
|
|
newBlocks <-chan *chainntnfs.BlockEpoch
|
|
|
|
|
2017-03-28 22:08:14 +03:00
|
|
|
// prematureAnnouncements maps a block height to a set of network
|
|
|
|
// messages which are "premature" from our PoV. An message is premature
|
|
|
|
// if it claims to be anchored in a block which is beyond the current
|
|
|
|
// main chain tip as we know it. Premature network messages will be
|
|
|
|
// processed once the chain tip as we know it extends to/past the
|
|
|
|
// premature height.
|
2017-03-19 21:40:25 +03:00
|
|
|
//
|
|
|
|
// TODO(roasbeef): limit premature networkMsgs to N
|
|
|
|
prematureAnnouncements map[uint32][]*networkMsg
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// waitingProofs is a map of partial channel proof announcement
|
|
|
|
// messages. We use this map to buffer half of the material needed to
|
|
|
|
// reconstruct a full authenticated channel announcement. Once we
|
|
|
|
// receive the other half the channel proof, we'll be able to properly
|
|
|
|
// validate it an re-broadcast it out to the network.
|
|
|
|
//
|
2017-03-28 22:08:14 +03:00
|
|
|
// TODO(andrew.shvv) make this map persistent.
|
|
|
|
waitingProofs map[waitingProofKey]*lnwire.AnnounceSignatures
|
|
|
|
|
2017-03-19 21:40:25 +03:00
|
|
|
// networkMsgs is a channel that carries new network broadcasted
|
|
|
|
// message from outside the discovery service to be processed by the
|
|
|
|
// networkHandler.
|
|
|
|
networkMsgs chan *networkMsg
|
|
|
|
|
|
|
|
// syncRequests is a channel that carries requests to synchronize newly
|
|
|
|
// connected peers to the state of the lightning network topology from
|
|
|
|
// our PoV.
|
|
|
|
syncRequests chan *syncRequest
|
|
|
|
|
|
|
|
// bestHeight is the height of the block at the tip of the main chain
|
|
|
|
// as we know it.
|
|
|
|
bestHeight uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
// SynchronizeNode sends a message to the service indicating it should
|
2017-04-01 15:33:17 +03:00
|
|
|
// synchronize lightning topology state with the target node. This method is to
|
|
|
|
// be utilized when a node connections for the first time to provide it with
|
|
|
|
// the latest topology update state.
|
|
|
|
func (d *AuthenticatedGossiper) SynchronizeNode(pub *btcec.PublicKey) {
|
2017-03-19 21:40:25 +03:00
|
|
|
select {
|
|
|
|
case d.syncRequests <- &syncRequest{
|
|
|
|
node: pub,
|
|
|
|
}:
|
|
|
|
case <-d.quit:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start spawns network messages handler goroutine and registers on new block
|
|
|
|
// notifications in order to properly handle the premature announcements.
|
2017-04-01 15:33:17 +03:00
|
|
|
func (d *AuthenticatedGossiper) Start() error {
|
2017-03-19 21:40:25 +03:00
|
|
|
if !atomic.CompareAndSwapUint32(&d.started, 0, 1) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Info("Authenticated Gossiper is starting")
|
|
|
|
|
2017-03-19 21:40:25 +03:00
|
|
|
// First we register for new notifications of newly discovered blocks.
|
|
|
|
// We do this immediately so we'll later be able to consume any/all
|
|
|
|
// blocks which were discovered.
|
|
|
|
blockEpochs, err := d.cfg.Notifier.RegisterBlockEpochNtfn()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
d.newBlocks = blockEpochs.Epochs
|
|
|
|
|
|
|
|
height, err := d.cfg.Router.CurrentBlockHeight()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
d.bestHeight = height
|
|
|
|
|
|
|
|
d.wg.Add(1)
|
|
|
|
go d.networkHandler()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop signals any active goroutines for a graceful closure.
|
2017-04-01 15:33:17 +03:00
|
|
|
func (d *AuthenticatedGossiper) Stop() {
|
2017-03-19 21:40:25 +03:00
|
|
|
if !atomic.CompareAndSwapUint32(&d.stopped, 0, 1) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Info("Authenticated Gossiper is stopping")
|
|
|
|
|
2017-03-19 21:40:25 +03:00
|
|
|
close(d.quit)
|
|
|
|
d.wg.Wait()
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// ProcessRemoteAnnouncement sends a new remote announcement message along with
|
|
|
|
// the peer that sent the routing message. The announcement will be processed
|
|
|
|
// then added to a queue for batched trickled announcement to all connected
|
|
|
|
// peers. Remote channel announcements should contain the announcement proof
|
|
|
|
// and be fully validated.
|
|
|
|
func (d *AuthenticatedGossiper) ProcessRemoteAnnouncement(msg lnwire.Message,
|
|
|
|
src *btcec.PublicKey) chan error {
|
|
|
|
|
|
|
|
nMsg := &networkMsg{
|
|
|
|
msg: msg,
|
|
|
|
isRemote: true,
|
|
|
|
peer: src,
|
|
|
|
err: make(chan error, 1),
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case d.networkMsgs <- nMsg:
|
|
|
|
case <-d.quit:
|
2017-04-26 05:04:53 +03:00
|
|
|
nMsg.err <- errors.New("gossiper has shut down")
|
2017-04-01 15:33:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return nMsg.err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ProcessLocalAnnouncement sends a new remote announcement message along with
|
|
|
|
// the peer that sent the routing message. The announcement will be processed
|
|
|
|
// then added to a queue for batched trickled announcement to all connected
|
|
|
|
// peers. Local channel announcements don't contain the announcement proof and
|
|
|
|
// will not be fully validated. Once the channel proofs are received, the
|
|
|
|
// entire channel announcement and update messages will be re-constructed and
|
|
|
|
// broadcast to the rest of the network.
|
|
|
|
func (d *AuthenticatedGossiper) ProcessLocalAnnouncement(msg lnwire.Message,
|
|
|
|
src *btcec.PublicKey) chan error {
|
|
|
|
|
|
|
|
nMsg := &networkMsg{
|
|
|
|
msg: msg,
|
|
|
|
isRemote: false,
|
|
|
|
peer: src,
|
|
|
|
err: make(chan error, 1),
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case d.networkMsgs <- nMsg:
|
|
|
|
case <-d.quit:
|
2017-04-26 05:04:53 +03:00
|
|
|
nMsg.err <- errors.New("gossiper has shut down")
|
2017-04-01 15:33:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return nMsg.err
|
|
|
|
}
|
|
|
|
|
|
|
|
// networkHandler is the primary goroutine that drives this service. The roles
|
|
|
|
// of this goroutine includes answering queries related to the state of the
|
|
|
|
// network, syncing up newly connected peers, and also periodically
|
|
|
|
// broadcasting our latest topology state to all connected peers.
|
2017-03-19 21:40:25 +03:00
|
|
|
//
|
|
|
|
// NOTE: This MUST be run as a goroutine.
|
2017-04-01 15:33:17 +03:00
|
|
|
func (d *AuthenticatedGossiper) networkHandler() {
|
2017-03-19 21:40:25 +03:00
|
|
|
defer d.wg.Done()
|
|
|
|
|
|
|
|
var announcementBatch []lnwire.Message
|
|
|
|
|
|
|
|
// TODO(roasbeef): parametrize the above
|
|
|
|
retransmitTimer := time.NewTicker(time.Minute * 30)
|
|
|
|
defer retransmitTimer.Stop()
|
|
|
|
|
|
|
|
// TODO(roasbeef): parametrize the above
|
2017-03-28 22:08:14 +03:00
|
|
|
trickleTimer := time.NewTicker(d.cfg.TrickleDelay)
|
2017-03-19 21:40:25 +03:00
|
|
|
defer trickleTimer.Stop()
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case announcement := <-d.networkMsgs:
|
|
|
|
// Process the network announcement to determine if
|
|
|
|
// this is either a new announcement from our PoV or an
|
2017-03-28 22:08:14 +03:00
|
|
|
// edges to a prior vertex/edge we previously
|
|
|
|
// proceeded.
|
|
|
|
emittedAnnouncements := d.processNetworkAnnouncement(announcement)
|
|
|
|
|
|
|
|
// If the announcement was accepted, then add the
|
|
|
|
// emitted announcements to our announce batch to be
|
|
|
|
// broadcast once the trickle timer ticks gain.
|
|
|
|
if emittedAnnouncements != nil {
|
2017-03-19 21:40:25 +03:00
|
|
|
// TODO(roasbeef): exclude peer that sent
|
|
|
|
announcementBatch = append(
|
|
|
|
announcementBatch,
|
2017-03-28 22:08:14 +03:00
|
|
|
emittedAnnouncements...,
|
2017-03-19 21:40:25 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// A new block has arrived, so we can re-process the previously
|
|
|
|
// premature announcements.
|
2017-03-19 21:40:25 +03:00
|
|
|
case newBlock, ok := <-d.newBlocks:
|
|
|
|
// If the channel has been closed, then this indicates
|
|
|
|
// the daemon is shutting down, so we exit ourselves.
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Once a new block arrives, we updates our running
|
|
|
|
// track of the height of the chain tip.
|
|
|
|
blockHeight := uint32(newBlock.Height)
|
|
|
|
d.bestHeight = blockHeight
|
|
|
|
|
|
|
|
// Next we check if we have any premature announcements
|
|
|
|
// for this height, if so, then we process them once
|
|
|
|
// more as normal announcements.
|
|
|
|
prematureAnns := d.prematureAnnouncements[uint32(newBlock.Height)]
|
|
|
|
if len(prematureAnns) != 0 {
|
|
|
|
log.Infof("Re-processing %v premature "+
|
|
|
|
"announcements for height %v",
|
|
|
|
len(prematureAnns), blockHeight)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ann := range prematureAnns {
|
2017-03-28 22:08:14 +03:00
|
|
|
emittedAnnouncements := d.processNetworkAnnouncement(ann)
|
|
|
|
if emittedAnnouncements != nil {
|
2017-03-19 21:40:25 +03:00
|
|
|
announcementBatch = append(
|
|
|
|
announcementBatch,
|
2017-03-28 22:08:14 +03:00
|
|
|
emittedAnnouncements...,
|
2017-03-19 21:40:25 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete(d.prematureAnnouncements, blockHeight)
|
|
|
|
|
|
|
|
// The trickle timer has ticked, which indicates we should
|
|
|
|
// flush to the network the pending batch of new announcements
|
|
|
|
// we've received since the last trickle tick.
|
|
|
|
case <-trickleTimer.C:
|
2017-03-28 22:08:14 +03:00
|
|
|
// If the current announcements batch is nil, then we
|
2017-03-19 21:40:25 +03:00
|
|
|
// have no further work here.
|
|
|
|
if len(announcementBatch) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("Broadcasting batch of %v new announcements",
|
|
|
|
len(announcementBatch))
|
|
|
|
|
|
|
|
// If we have new things to announce then broadcast
|
|
|
|
// them to all our immediately connected peers.
|
|
|
|
err := d.cfg.Broadcast(nil, announcementBatch...)
|
|
|
|
if err != nil {
|
2017-03-28 22:08:14 +03:00
|
|
|
log.Errorf("unable to send batch "+
|
|
|
|
"announcements: %v", err)
|
2017-03-19 21:40:25 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we're able to broadcast the current batch
|
|
|
|
// successfully, then we reset the batch for a new
|
|
|
|
// round of announcements.
|
|
|
|
announcementBatch = nil
|
|
|
|
|
|
|
|
// The retransmission timer has ticked which indicates that we
|
|
|
|
// should broadcast our personal channels to the network. This
|
|
|
|
// addresses the case of channel advertisements whether being
|
|
|
|
// dropped, or not properly propagated through the network.
|
|
|
|
case <-retransmitTimer.C:
|
|
|
|
var selfChans []lnwire.Message
|
|
|
|
|
|
|
|
// Iterate over our channels and construct the
|
|
|
|
// announcements array.
|
2017-04-01 15:33:17 +03:00
|
|
|
err := d.cfg.Router.ForAllOutgoingChannels(func(p *channeldb.ChannelEdgePolicy) error {
|
2017-04-20 02:20:46 +03:00
|
|
|
c := &lnwire.ChannelUpdate{
|
2017-04-01 15:33:17 +03:00
|
|
|
Signature: p.Signature,
|
|
|
|
ShortChannelID: lnwire.NewShortChanIDFromInt(p.ChannelID),
|
|
|
|
Timestamp: uint32(p.LastUpdate.Unix()),
|
|
|
|
Flags: p.Flags,
|
|
|
|
TimeLockDelta: p.TimeLockDelta,
|
|
|
|
HtlcMinimumMsat: uint32(p.MinHTLC),
|
|
|
|
FeeBaseMsat: uint32(p.FeeBaseMSat),
|
|
|
|
FeeProportionalMillionths: uint32(p.FeeProportionalMillionths),
|
|
|
|
}
|
|
|
|
selfChans = append(selfChans, c)
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
)
|
2017-03-19 21:40:25 +03:00
|
|
|
if err != nil {
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Errorf("unable to retrieve outgoing channels: %v", err)
|
2017-03-19 21:40:25 +03:00
|
|
|
continue
|
2017-04-01 15:33:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(selfChans) == 0 {
|
2017-03-19 21:40:25 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debugf("Retransmitting %v outgoing channels",
|
|
|
|
len(selfChans))
|
|
|
|
|
|
|
|
// With all the wire announcements properly crafted,
|
2017-04-01 15:33:17 +03:00
|
|
|
// we'll broadcast our known outgoing channel to all
|
|
|
|
// our immediate peers.
|
2017-03-19 21:40:25 +03:00
|
|
|
if err := d.cfg.Broadcast(nil, selfChans...); err != nil {
|
|
|
|
log.Errorf("unable to re-broadcast "+
|
|
|
|
"channels: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We've just received a new request to synchronize a peer with
|
|
|
|
// our latest lightning network topology state. This indicates
|
2017-04-01 15:33:17 +03:00
|
|
|
// that a peer has just connected for the first time, so for
|
|
|
|
// now we dump our entire network graph and allow them to sift
|
2017-03-19 21:40:25 +03:00
|
|
|
// through the (subjectively) new information on their own.
|
|
|
|
case syncReq := <-d.syncRequests:
|
|
|
|
nodePub := syncReq.node.SerializeCompressed()
|
2017-04-01 15:33:17 +03:00
|
|
|
if err := d.synchronizeWithNode(syncReq); err != nil {
|
2017-03-19 21:40:25 +03:00
|
|
|
log.Errorf("unable to sync graph state with %x: %v",
|
|
|
|
nodePub, err)
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// The discovery has been signalled to exit, to we exit our
|
|
|
|
// main loop so the wait group can be decremented.
|
2017-03-19 21:40:25 +03:00
|
|
|
case <-d.quit:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// processNetworkAnnouncement processes a new network relate authenticated
|
2017-03-28 22:08:14 +03:00
|
|
|
// channel or node announcement or announcements proofs. If the announcement
|
|
|
|
// didn't affect the internal state due to either being out of date, invalid,
|
2017-04-01 15:33:17 +03:00
|
|
|
// or redundant, then nil is returned. Otherwise, the set of announcements will
|
|
|
|
// be returned which should be broadcasted to the rest of the network.
|
|
|
|
func (d *AuthenticatedGossiper) processNetworkAnnouncement(nMsg *networkMsg) []lnwire.Message {
|
2017-03-28 22:08:14 +03:00
|
|
|
isPremature := func(chanID lnwire.ShortChannelID, delta uint32) bool {
|
|
|
|
return chanID.BlockHeight+delta > d.bestHeight
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
var announcements []lnwire.Message
|
|
|
|
|
2017-03-28 22:08:14 +03:00
|
|
|
switch msg := nMsg.msg.(type) {
|
2017-04-01 15:33:17 +03:00
|
|
|
|
2017-03-19 21:40:25 +03:00
|
|
|
// A new node announcement has arrived which either presents a new
|
|
|
|
// node, or a node updating previously advertised information.
|
|
|
|
case *lnwire.NodeAnnouncement:
|
2017-03-28 22:08:14 +03:00
|
|
|
if nMsg.isRemote {
|
2017-03-27 20:25:44 +03:00
|
|
|
if err := d.validateNodeAnn(msg); err != nil {
|
|
|
|
err := errors.Errorf("unable to validate "+
|
|
|
|
"node announcement: %v", err)
|
|
|
|
log.Error(err)
|
|
|
|
nMsg.err <- err
|
|
|
|
return nil
|
|
|
|
}
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
node := &channeldb.LightningNode{
|
|
|
|
LastUpdate: time.Unix(int64(msg.Timestamp), 0),
|
|
|
|
Addresses: msg.Addresses,
|
|
|
|
PubKey: msg.NodeID,
|
|
|
|
Alias: msg.Alias.String(),
|
|
|
|
AuthSig: msg.Signature,
|
|
|
|
Features: msg.Features,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := d.cfg.Router.AddNode(node); err != nil {
|
2017-04-01 15:33:17 +03:00
|
|
|
if routing.IsError(err, routing.ErrOutdated, routing.ErrIgnored) {
|
2017-04-14 00:30:41 +03:00
|
|
|
log.Debug(err)
|
2017-03-28 22:08:14 +03:00
|
|
|
} else {
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Error(err)
|
2017-03-28 22:08:14 +03:00
|
|
|
}
|
2017-04-01 15:33:17 +03:00
|
|
|
|
|
|
|
nMsg.err <- err
|
2017-03-28 22:08:14 +03:00
|
|
|
return nil
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-03-28 22:08:14 +03:00
|
|
|
// Node announcement was successfully proceeded and know it
|
2017-04-01 15:33:17 +03:00
|
|
|
// might be broadcast to other connected nodes.
|
2017-03-28 22:08:14 +03:00
|
|
|
announcements = append(announcements, msg)
|
|
|
|
|
|
|
|
nMsg.err <- nil
|
2017-04-01 15:33:17 +03:00
|
|
|
// TODO(roasbeef): get rid of the above
|
2017-03-28 22:08:14 +03:00
|
|
|
return announcements
|
|
|
|
|
2017-03-19 21:40:25 +03:00
|
|
|
// A new channel announcement has arrived, this indicates the
|
|
|
|
// *creation* of a new channel within the network. This only advertises
|
|
|
|
// the existence of a channel and not yet the routing policies in
|
|
|
|
// either direction of the channel.
|
|
|
|
case *lnwire.ChannelAnnouncement:
|
|
|
|
// If the advertised inclusionary block is beyond our knowledge
|
|
|
|
// of the chain tip, then we'll put the announcement in limbo
|
|
|
|
// to be fully verified once we advance forward in the chain.
|
2017-03-28 22:08:14 +03:00
|
|
|
if isPremature(msg.ShortChannelID, 0) {
|
2017-03-27 18:22:37 +03:00
|
|
|
blockHeight := msg.ShortChannelID.BlockHeight
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Infof("Announcement for chan_id=(%v), is premature: "+
|
|
|
|
"advertises height %v, only height %v is known",
|
2017-04-24 05:06:33 +03:00
|
|
|
msg.ShortChannelID.ToUint64(),
|
|
|
|
msg.ShortChannelID.BlockHeight, d.bestHeight)
|
2017-03-19 21:40:25 +03:00
|
|
|
|
|
|
|
d.prematureAnnouncements[blockHeight] = append(
|
|
|
|
d.prematureAnnouncements[blockHeight],
|
2017-03-28 22:08:14 +03:00
|
|
|
nMsg,
|
2017-03-19 21:40:25 +03:00
|
|
|
)
|
2017-03-28 22:08:14 +03:00
|
|
|
return nil
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// If this is a remote channel annoucement, then we'll validate
|
|
|
|
// all the signatues within the proof as it should be well
|
|
|
|
// formed.
|
2017-03-19 21:40:25 +03:00
|
|
|
var proof *channeldb.ChannelAuthProof
|
2017-03-28 22:08:14 +03:00
|
|
|
if nMsg.isRemote {
|
2017-03-27 20:25:44 +03:00
|
|
|
if err := d.validateChannelAnn(msg); err != nil {
|
|
|
|
err := errors.Errorf("unable to validate "+
|
|
|
|
"announcement: %v", err)
|
2017-04-01 15:33:17 +03:00
|
|
|
|
2017-03-27 20:25:44 +03:00
|
|
|
log.Error(err)
|
|
|
|
nMsg.err <- err
|
|
|
|
return nil
|
|
|
|
}
|
2017-03-28 22:08:14 +03:00
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// If the proof checks out, then we'll save the proof
|
|
|
|
// itself to the database so we can fetch it later when
|
|
|
|
// gossiping with other nodes.
|
2017-03-28 22:08:14 +03:00
|
|
|
proof = &channeldb.ChannelAuthProof{
|
|
|
|
NodeSig1: msg.NodeSig1,
|
|
|
|
NodeSig2: msg.NodeSig2,
|
|
|
|
BitcoinSig1: msg.BitcoinSig1,
|
|
|
|
BitcoinSig2: msg.BitcoinSig2,
|
|
|
|
}
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// With the proof validate (if necessary), we can now store it
|
|
|
|
// within the database for our path finding and syncing needs.
|
2017-03-19 21:40:25 +03:00
|
|
|
edge := &channeldb.ChannelEdgeInfo{
|
2017-03-27 18:22:37 +03:00
|
|
|
ChannelID: msg.ShortChannelID.ToUint64(),
|
|
|
|
NodeKey1: msg.NodeID1,
|
|
|
|
NodeKey2: msg.NodeID2,
|
|
|
|
BitcoinKey1: msg.BitcoinKey1,
|
|
|
|
BitcoinKey2: msg.BitcoinKey2,
|
2017-03-19 21:40:25 +03:00
|
|
|
AuthProof: proof,
|
|
|
|
}
|
|
|
|
if err := d.cfg.Router.AddEdge(edge); err != nil {
|
2017-04-01 15:33:17 +03:00
|
|
|
if routing.IsError(err, routing.ErrOutdated,
|
2017-03-28 22:08:14 +03:00
|
|
|
routing.ErrIgnored) {
|
2017-04-01 15:33:17 +03:00
|
|
|
|
2017-04-14 00:30:41 +03:00
|
|
|
log.Debug(err)
|
2017-03-19 21:40:25 +03:00
|
|
|
} else {
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Error(err)
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
2017-04-01 15:33:17 +03:00
|
|
|
|
|
|
|
nMsg.err <- err
|
2017-03-28 22:08:14 +03:00
|
|
|
return nil
|
|
|
|
}
|
2017-03-19 21:40:25 +03:00
|
|
|
|
2017-03-28 22:08:14 +03:00
|
|
|
// Channel announcement was successfully proceeded and know it
|
2017-04-01 15:33:17 +03:00
|
|
|
// might be broadcast to other connected nodes if it was
|
2017-03-28 22:08:14 +03:00
|
|
|
// announcement with proof (remote).
|
|
|
|
if proof != nil {
|
|
|
|
announcements = append(announcements, msg)
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-03-28 22:08:14 +03:00
|
|
|
nMsg.err <- nil
|
|
|
|
return announcements
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// A new authenticated channel edge update has arrived. This indicates
|
2017-03-19 21:40:25 +03:00
|
|
|
// that the directional information for an already known channel has
|
|
|
|
// been updated.
|
2017-04-20 02:20:46 +03:00
|
|
|
case *lnwire.ChannelUpdate:
|
2017-03-28 22:08:14 +03:00
|
|
|
blockHeight := msg.ShortChannelID.BlockHeight
|
|
|
|
shortChanID := msg.ShortChannelID.ToUint64()
|
2017-03-19 21:40:25 +03:00
|
|
|
|
|
|
|
// If the advertised inclusionary block is beyond our knowledge
|
|
|
|
// of the chain tip, then we'll put the announcement in limbo
|
|
|
|
// to be fully verified once we advance forward in the chain.
|
2017-03-28 22:08:14 +03:00
|
|
|
if isPremature(msg.ShortChannelID, 0) {
|
|
|
|
log.Infof("Update announcement for "+
|
2017-04-01 15:33:17 +03:00
|
|
|
"short_chan_id(%v), is premature: advertises "+
|
2017-03-28 22:08:14 +03:00
|
|
|
"height %v, only height %v is known",
|
|
|
|
shortChanID, blockHeight, d.bestHeight)
|
2017-03-19 21:40:25 +03:00
|
|
|
|
|
|
|
d.prematureAnnouncements[blockHeight] = append(
|
|
|
|
d.prematureAnnouncements[blockHeight],
|
2017-03-28 22:08:14 +03:00
|
|
|
nMsg,
|
2017-03-19 21:40:25 +03:00
|
|
|
)
|
2017-03-28 22:08:14 +03:00
|
|
|
return nil
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// Get the node pub key as far as we don't have it in channel
|
|
|
|
// update announcement message. We'll need this to properly
|
|
|
|
// verify message signature.
|
2017-03-28 22:08:14 +03:00
|
|
|
chanInfo, _, _, err := d.cfg.Router.GetChannelByID(msg.ShortChannelID)
|
|
|
|
if err != nil {
|
|
|
|
err := errors.Errorf("unable to validate "+
|
2017-04-01 15:33:17 +03:00
|
|
|
"channel update short_chan_id=%v: %v",
|
2017-03-28 22:08:14 +03:00
|
|
|
shortChanID, err)
|
2017-04-26 05:04:53 +03:00
|
|
|
log.Error(err)
|
2017-03-28 22:08:14 +03:00
|
|
|
nMsg.err <- err
|
|
|
|
return nil
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// The flag on the channel update announcement tells us "which"
|
|
|
|
// side of the channels directed edge is being updated.
|
2017-03-27 20:25:44 +03:00
|
|
|
var pubKey *btcec.PublicKey
|
|
|
|
switch msg.Flags {
|
|
|
|
case 0:
|
|
|
|
pubKey = chanInfo.NodeKey1
|
|
|
|
case 1:
|
|
|
|
pubKey = chanInfo.NodeKey2
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// Validate the channel announcement with the expected public
|
|
|
|
// key, In the case of an invalid channel , we'll return an
|
|
|
|
// error to the caller and exit early.
|
2017-03-27 20:25:44 +03:00
|
|
|
if err := d.validateChannelUpdateAnn(pubKey, msg); err != nil {
|
2017-04-01 15:33:17 +03:00
|
|
|
err := errors.Errorf("unable to validate channel "+
|
|
|
|
"update announcement for short_chan_id=%v: %v",
|
|
|
|
spew.Sdump(msg.ShortChannelID), err)
|
|
|
|
|
2017-03-27 20:25:44 +03:00
|
|
|
log.Error(err)
|
|
|
|
nMsg.err <- err
|
|
|
|
return nil
|
|
|
|
}
|
2017-03-28 22:08:14 +03:00
|
|
|
|
2017-03-19 21:40:25 +03:00
|
|
|
// TODO(roasbeef): should be msat here
|
|
|
|
update := &channeldb.ChannelEdgePolicy{
|
2017-03-28 22:08:14 +03:00
|
|
|
Signature: msg.Signature,
|
|
|
|
ChannelID: shortChanID,
|
2017-03-19 21:40:25 +03:00
|
|
|
LastUpdate: time.Unix(int64(msg.Timestamp), 0),
|
|
|
|
Flags: msg.Flags,
|
|
|
|
TimeLockDelta: msg.TimeLockDelta,
|
|
|
|
MinHTLC: btcutil.Amount(msg.HtlcMinimumMsat),
|
|
|
|
FeeBaseMSat: btcutil.Amount(msg.FeeBaseMsat),
|
|
|
|
FeeProportionalMillionths: btcutil.Amount(msg.FeeProportionalMillionths),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := d.cfg.Router.UpdateEdge(update); err != nil {
|
2017-04-01 15:33:17 +03:00
|
|
|
if routing.IsError(err, routing.ErrOutdated, routing.ErrIgnored) {
|
2017-04-14 00:30:41 +03:00
|
|
|
log.Debug(err)
|
2017-03-28 22:08:14 +03:00
|
|
|
} else {
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Error(err)
|
2017-03-28 22:08:14 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
nMsg.err <- err
|
2017-03-28 22:08:14 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// Channel update announcement was successfully processed and
|
|
|
|
// now it can be broadcast to the rest of the network. However,
|
|
|
|
// we'll only broadcast the channel update announcement if it
|
|
|
|
// has an attached authentication proof.
|
2017-03-28 22:08:14 +03:00
|
|
|
if chanInfo.AuthProof != nil {
|
|
|
|
announcements = append(announcements, msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
nMsg.err <- nil
|
|
|
|
return announcements
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// A new signature announcement has been received. This indicates
|
|
|
|
// willingness of nodes involved in the funding of a channel to
|
|
|
|
// announce this new channel to the rest of the world.
|
2017-03-28 22:08:14 +03:00
|
|
|
case *lnwire.AnnounceSignatures:
|
|
|
|
needBlockHeight := msg.ShortChannelID.BlockHeight + d.cfg.ProofMatureDelta
|
|
|
|
shortChanID := msg.ShortChannelID.ToUint64()
|
2017-04-01 15:33:17 +03:00
|
|
|
|
2017-03-28 22:08:14 +03:00
|
|
|
prefix := "local"
|
|
|
|
if nMsg.isRemote {
|
|
|
|
prefix = "remote"
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-04-20 02:20:46 +03:00
|
|
|
log.Infof("Received new channel announcement: %v", spew.Sdump(msg))
|
2017-04-01 15:33:17 +03:00
|
|
|
|
|
|
|
// By the specification, channel announcement proofs should be
|
|
|
|
// sent after some number of confirmations after channel was
|
|
|
|
// registered in bitcoin blockchain. Therefore, we check if the
|
|
|
|
// proof is premature. If so we'll halt processing until the
|
|
|
|
// expected announcement height. This allows us to be tolerant
|
|
|
|
// to other clients if this constraint was changed.
|
2017-03-28 22:08:14 +03:00
|
|
|
if isPremature(msg.ShortChannelID, d.cfg.ProofMatureDelta) {
|
|
|
|
d.prematureAnnouncements[needBlockHeight] = append(
|
|
|
|
d.prematureAnnouncements[needBlockHeight],
|
|
|
|
nMsg,
|
|
|
|
)
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Infof("Premature proof announcement, "+
|
2017-03-28 22:08:14 +03:00
|
|
|
"current block height lower than needed: %v <"+
|
|
|
|
" %v, add announcement to reprocessing batch",
|
|
|
|
d.bestHeight, needBlockHeight)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// Ensure that we know of a channel with the target channel ID
|
|
|
|
// before proceeding further.
|
2017-03-28 22:08:14 +03:00
|
|
|
chanInfo, e1, e2, err := d.cfg.Router.GetChannelByID(msg.ShortChannelID)
|
|
|
|
if err != nil {
|
2017-04-26 05:04:53 +03:00
|
|
|
// TODO(andrew.shvv) this is dangerous because remote
|
|
|
|
// node might rewrite the waiting proof.
|
|
|
|
key := newProofKey(shortChanID, nMsg.isRemote)
|
|
|
|
d.waitingProofs[key] = msg
|
|
|
|
|
|
|
|
log.Infof("Orphan %v proof announcement with "+
|
|
|
|
"short_chan_id=%v, adding"+
|
|
|
|
"to waiting batch", prefix, shortChanID)
|
|
|
|
nMsg.err <- nil
|
2017-03-28 22:08:14 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
isFirstNode := bytes.Equal(nMsg.peer.SerializeCompressed(),
|
|
|
|
chanInfo.NodeKey1.SerializeCompressed())
|
|
|
|
isSecondNode := bytes.Equal(nMsg.peer.SerializeCompressed(),
|
|
|
|
chanInfo.NodeKey2.SerializeCompressed())
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// Ensure that channel that was retrieved belongs to the peer
|
|
|
|
// which sent the proof announcement.
|
2017-03-28 22:08:14 +03:00
|
|
|
if !(isFirstNode || isSecondNode) {
|
|
|
|
err := errors.Errorf("channel that was received not "+
|
|
|
|
"belongs to the peer which sent the proof, "+
|
2017-04-01 15:33:17 +03:00
|
|
|
"short_chan_id=%v", shortChanID)
|
2017-03-28 22:08:14 +03:00
|
|
|
log.Error(err)
|
|
|
|
nMsg.err <- err
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// Check that we received the opposite proof. If so, then we're
|
|
|
|
// now able to construct the full proof, and create the channel
|
2017-03-28 22:08:14 +03:00
|
|
|
// announcement. If we didn't receive the opposite half of the
|
2017-04-01 15:33:17 +03:00
|
|
|
// proof than we should store it this one, and wait for
|
|
|
|
// opposite to be received.
|
2017-03-28 22:08:14 +03:00
|
|
|
oppositeKey := newProofKey(chanInfo.ChannelID, !nMsg.isRemote)
|
|
|
|
oppositeProof, ok := d.waitingProofs[oppositeKey]
|
|
|
|
if !ok {
|
|
|
|
key := newProofKey(chanInfo.ChannelID, nMsg.isRemote)
|
|
|
|
d.waitingProofs[key] = msg
|
|
|
|
|
2017-04-20 02:20:46 +03:00
|
|
|
// If proof was sent by a local sub-system, then we'll
|
2017-04-01 15:33:17 +03:00
|
|
|
// send the announcement signature to the remote node
|
|
|
|
// so they can also reconstruct the full channel
|
|
|
|
// announcement.
|
2017-03-28 22:08:14 +03:00
|
|
|
if !nMsg.isRemote {
|
|
|
|
// Check that first node of the channel info
|
|
|
|
// corresponds to us.
|
|
|
|
var remotePeer *btcec.PublicKey
|
|
|
|
if isFirstNode {
|
|
|
|
remotePeer = chanInfo.NodeKey2
|
|
|
|
} else {
|
|
|
|
remotePeer = chanInfo.NodeKey1
|
|
|
|
}
|
|
|
|
|
|
|
|
err := d.cfg.SendToPeer(remotePeer, msg)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("unable to send "+
|
2017-04-01 15:33:17 +03:00
|
|
|
"announcement message to peer: %x",
|
2017-03-28 22:08:14 +03:00
|
|
|
remotePeer.SerializeCompressed())
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Infof("Sent channel announcement proof "+
|
|
|
|
"for short_chan_id=%v to remote peer: "+
|
|
|
|
"%x", shortChanID,
|
|
|
|
remotePeer.SerializeCompressed())
|
2017-03-28 22:08:14 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Infof("1/2 of channel ann proof received for "+
|
|
|
|
"short_chan_id=%v, waiting for other half",
|
|
|
|
shortChanID)
|
2017-03-28 22:08:14 +03:00
|
|
|
|
|
|
|
nMsg.err <- nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// If we now have both halves of the channel announcement
|
|
|
|
// proof, then we'll reconstruct the initial announcement so we
|
|
|
|
// can validate it shortly below.
|
2017-03-28 22:08:14 +03:00
|
|
|
var dbProof channeldb.ChannelAuthProof
|
|
|
|
if isFirstNode {
|
|
|
|
dbProof.NodeSig1 = msg.NodeSignature
|
|
|
|
dbProof.NodeSig2 = oppositeProof.NodeSignature
|
|
|
|
dbProof.BitcoinSig1 = msg.BitcoinSignature
|
|
|
|
dbProof.BitcoinSig2 = oppositeProof.BitcoinSignature
|
|
|
|
} else {
|
|
|
|
dbProof.NodeSig1 = oppositeProof.NodeSignature
|
|
|
|
dbProof.NodeSig2 = msg.NodeSignature
|
|
|
|
dbProof.BitcoinSig1 = oppositeProof.BitcoinSignature
|
|
|
|
dbProof.BitcoinSig2 = msg.BitcoinSignature
|
|
|
|
}
|
|
|
|
chanAnn, e1Ann, e2Ann := createChanAnnouncement(&dbProof, chanInfo, e1, e2)
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// With all the necessary components assembled validate the
|
|
|
|
// full channel announcement proof.
|
2017-03-27 20:25:44 +03:00
|
|
|
if err := d.validateChannelAnn(chanAnn); err != nil {
|
|
|
|
err := errors.Errorf("channel announcement proof "+
|
2017-04-01 15:33:17 +03:00
|
|
|
"for short_chan_id=%v isn't valid: %v",
|
2017-03-27 20:25:44 +03:00
|
|
|
shortChanID, err)
|
2017-04-01 15:33:17 +03:00
|
|
|
|
2017-03-27 20:25:44 +03:00
|
|
|
log.Error(err)
|
|
|
|
nMsg.err <- err
|
|
|
|
return nil
|
|
|
|
}
|
2017-03-28 22:08:14 +03:00
|
|
|
|
|
|
|
// If the channel was returned by the router it means that
|
|
|
|
// existence of funding point and inclusion of nodes bitcoin
|
2017-04-01 15:33:17 +03:00
|
|
|
// keys in it already checked by the router. In this stage we
|
|
|
|
// should check that node keys are attest to the bitcoin keys
|
|
|
|
// by validating the signatures of announcement. If proof is
|
|
|
|
// valid then we'll populate the channel edge with it, so we
|
|
|
|
// can announce it on peer connect.
|
2017-03-28 22:08:14 +03:00
|
|
|
err = d.cfg.Router.AddProof(msg.ShortChannelID, &dbProof)
|
|
|
|
if err != nil {
|
|
|
|
err := errors.Errorf("unable add proof to the "+
|
|
|
|
"channel chanID=%v: %v", msg.ChannelID, err)
|
|
|
|
log.Error(err)
|
|
|
|
nMsg.err <- err
|
|
|
|
return nil
|
|
|
|
}
|
2017-04-26 05:04:53 +03:00
|
|
|
delete(d.waitingProofs, oppositeKey)
|
2017-03-28 22:08:14 +03:00
|
|
|
|
|
|
|
// Proof was successfully created and now can announce the
|
|
|
|
// channel to the remain network.
|
2017-04-01 15:33:17 +03:00
|
|
|
log.Infof("Fully valid channel proof for short_chan_id=%v "+
|
|
|
|
"constructed, adding to next ann batch",
|
|
|
|
shortChanID)
|
2017-03-28 22:08:14 +03:00
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// Assemble the necessary announcements to add to the next
|
|
|
|
// broadcasting batch.
|
2017-03-28 22:08:14 +03:00
|
|
|
announcements = append(announcements, chanAnn)
|
|
|
|
if e1Ann != nil {
|
|
|
|
announcements = append(announcements, e1Ann)
|
|
|
|
}
|
|
|
|
if e2Ann != nil {
|
|
|
|
announcements = append(announcements, e2Ann)
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// If this a local announcement, then we'll send it to the
|
|
|
|
// remote side so they can reconstruct the full channel
|
|
|
|
// announcement proof.
|
2017-03-28 22:08:14 +03:00
|
|
|
if !nMsg.isRemote {
|
|
|
|
var remotePeer *btcec.PublicKey
|
|
|
|
if isFirstNode {
|
|
|
|
remotePeer = chanInfo.NodeKey2
|
|
|
|
} else {
|
|
|
|
remotePeer = chanInfo.NodeKey1
|
|
|
|
}
|
2017-04-01 15:33:17 +03:00
|
|
|
|
|
|
|
if err = d.cfg.SendToPeer(remotePeer, msg); err != nil {
|
2017-03-28 22:08:14 +03:00
|
|
|
log.Errorf("unable to send announcement "+
|
|
|
|
"message to peer: %x",
|
|
|
|
remotePeer.SerializeCompressed())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nMsg.err <- nil
|
|
|
|
return announcements
|
|
|
|
|
|
|
|
default:
|
|
|
|
nMsg.err <- errors.New("wrong type of the announcement")
|
|
|
|
return nil
|
|
|
|
}
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:33:17 +03:00
|
|
|
// synchronizeWithNode attempts to synchronize the target node in the syncReq
|
|
|
|
// to the latest channel graph state. In order to accomplish this, (currently)
|
|
|
|
// the entire network graph is read from disk, then serialized to the format
|
2017-03-19 21:40:25 +03:00
|
|
|
// defined within the current wire protocol. This cache of graph data is then
|
|
|
|
// sent directly to the target node.
|
2017-04-01 15:33:17 +03:00
|
|
|
func (d *AuthenticatedGossiper) synchronizeWithNode(syncReq *syncRequest) error {
|
2017-03-19 21:40:25 +03:00
|
|
|
targetNode := syncReq.node
|
|
|
|
|
|
|
|
// TODO(roasbeef): need to also store sig data in db
|
|
|
|
// * will be nice when we switch to pairing sigs would only need one ^_^
|
|
|
|
|
|
|
|
// We'll collate all the gathered routing messages into a single slice
|
|
|
|
// containing all the messages to be sent to the target peer.
|
|
|
|
var announceMessages []lnwire.Message
|
|
|
|
|
|
|
|
// First run through all the vertexes in the graph, retrieving the data
|
|
|
|
// for the announcement we originally retrieved.
|
|
|
|
var numNodes uint32
|
|
|
|
if err := d.cfg.Router.ForEachNode(func(node *channeldb.LightningNode) error {
|
|
|
|
ann := &lnwire.NodeAnnouncement{
|
2017-03-28 22:08:14 +03:00
|
|
|
Signature: node.AuthSig,
|
2017-03-19 21:40:25 +03:00
|
|
|
Timestamp: uint32(node.LastUpdate.Unix()),
|
|
|
|
Addresses: node.Addresses,
|
|
|
|
NodeID: node.PubKey,
|
2017-04-20 02:20:46 +03:00
|
|
|
Alias: lnwire.NewAlias(node.Alias),
|
2017-03-19 21:40:25 +03:00
|
|
|
Features: node.Features,
|
|
|
|
}
|
|
|
|
announceMessages = append(announceMessages, ann)
|
|
|
|
|
|
|
|
numNodes++
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// With the vertexes gathered, we'll no retrieve the initial
|
|
|
|
// announcement, as well as the latest channel update announcement for
|
2017-03-28 22:08:14 +03:00
|
|
|
// both of the directed infos that make up the channel.
|
2017-03-19 21:40:25 +03:00
|
|
|
var numEdges uint32
|
|
|
|
if err := d.cfg.Router.ForEachChannel(func(chanInfo *channeldb.ChannelEdgeInfo,
|
|
|
|
e1, e2 *channeldb.ChannelEdgePolicy) error {
|
|
|
|
// First, using the parameters of the channel, along with the
|
|
|
|
// channel authentication proof, we'll create re-create the
|
|
|
|
// original authenticated channel announcement.
|
2017-03-28 22:08:14 +03:00
|
|
|
if chanInfo.AuthProof != nil {
|
|
|
|
chanAnn, e1Ann, e2Ann := createChanAnnouncement(
|
|
|
|
chanInfo.AuthProof, chanInfo, e1, e2)
|
|
|
|
|
|
|
|
announceMessages = append(announceMessages, chanAnn)
|
|
|
|
if e1Ann != nil {
|
|
|
|
announceMessages = append(announceMessages, e1Ann)
|
|
|
|
}
|
|
|
|
if e2Ann != nil {
|
|
|
|
announceMessages = append(announceMessages, e2Ann)
|
|
|
|
}
|
|
|
|
|
|
|
|
numEdges++
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}); err != nil && err != channeldb.ErrGraphNoEdgesFound {
|
2017-03-28 22:08:14 +03:00
|
|
|
log.Errorf("unable to sync infos with peer: %v", err)
|
2017-03-19 21:40:25 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("Syncing channel graph state with %x, sending %v "+
|
2017-04-01 15:33:17 +03:00
|
|
|
"vertexes and %v edges", targetNode.SerializeCompressed(),
|
2017-03-19 21:40:25 +03:00
|
|
|
numNodes, numEdges)
|
|
|
|
|
|
|
|
// With all the announcement messages gathered, send them all in a
|
|
|
|
// single batch to the target peer.
|
2017-03-28 22:08:14 +03:00
|
|
|
return d.cfg.SendToPeer(targetNode, announceMessages...)
|
2017-03-19 21:40:25 +03:00
|
|
|
}
|