• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lightningnetwork / lnd / 12313073348

13 Dec 2024 09:30AM UTC coverage: 58.666% (+1.2%) from 57.486%
12313073348

Pull #9344

github

ellemouton
htlcswitch+go.mod: use updated fn.ContextGuard

This commit updates the fn dep to the version containing the updates to
the ContextGuard implementation. Only the htlcswitch/link uses the guard
at the moment so this is updated to make use of the new implementation.
Pull Request #9344: htlcswitch+go.mod: use updated fn.ContextGuard

101 of 117 new or added lines in 4 files covered. (86.32%)

29 existing lines in 9 files now uncovered.

134589 of 229415 relevant lines covered (58.67%)

19278.57 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

77.27
/graph/db/graph.go
1
package graphdb
2

3
import (
4
        "bytes"
5
        "crypto/sha256"
6
        "encoding/binary"
7
        "errors"
8
        "fmt"
9
        "io"
10
        "math"
11
        "net"
12
        "sort"
13
        "sync"
14
        "testing"
15
        "time"
16

17
        "github.com/btcsuite/btcd/btcec/v2"
18
        "github.com/btcsuite/btcd/chaincfg/chainhash"
19
        "github.com/btcsuite/btcd/txscript"
20
        "github.com/btcsuite/btcd/wire"
21
        "github.com/lightningnetwork/lnd/aliasmgr"
22
        "github.com/lightningnetwork/lnd/batch"
23
        "github.com/lightningnetwork/lnd/graph/db/models"
24
        "github.com/lightningnetwork/lnd/input"
25
        "github.com/lightningnetwork/lnd/kvdb"
26
        "github.com/lightningnetwork/lnd/lnwire"
27
        "github.com/lightningnetwork/lnd/routing/route"
28
)
29

30
var (
31
        // nodeBucket is a bucket which houses all the vertices or nodes within
32
        // the channel graph. This bucket has a single-sub bucket which adds an
33
        // additional index from pubkey -> alias. Within the top-level of this
34
        // bucket, the key space maps a node's compressed public key to the
35
        // serialized information for that node. Additionally, there's a
36
        // special key "source" which stores the pubkey of the source node. The
37
        // source node is used as the starting point for all graph/queries and
38
        // traversals. The graph is formed as a star-graph with the source node
39
        // at the center.
40
        //
41
        // maps: pubKey -> nodeInfo
42
        // maps: source -> selfPubKey
43
        nodeBucket = []byte("graph-node")
44

45
        // nodeUpdateIndexBucket is a sub-bucket of the nodeBucket. This bucket
46
        // will be used to quickly look up the "freshness" of a node's last
47
        // update to the network. The bucket only contains keys, and no values,
48
        // it's mapping:
49
        //
50
        // maps: updateTime || nodeID -> nil
51
        nodeUpdateIndexBucket = []byte("graph-node-update-index")
52

53
        // sourceKey is a special key that resides within the nodeBucket. The
54
        // sourceKey maps a key to the public key of the "self node".
55
        sourceKey = []byte("source")
56

57
        // aliasIndexBucket is a sub-bucket that's nested within the main
58
        // nodeBucket. This bucket maps the public key of a node to its
59
        // current alias. This bucket is provided as it can be used within a
60
        // future UI layer to add an additional degree of confirmation.
61
        aliasIndexBucket = []byte("alias")
62

63
        // edgeBucket is a bucket which houses all of the edge or channel
64
        // information within the channel graph. This bucket essentially acts
65
        // as an adjacency list, which in conjunction with a range scan, can be
66
        // used to iterate over all the incoming and outgoing edges for a
67
        // particular node. Key in the bucket use a prefix scheme which leads
68
        // with the node's public key and sends with the compact edge ID.
69
        // For each chanID, there will be two entries within the bucket, as the
70
        // graph is directed: nodes may have different policies w.r.t to fees
71
        // for their respective directions.
72
        //
73
        // maps: pubKey || chanID -> channel edge policy for node
74
        edgeBucket = []byte("graph-edge")
75

76
        // unknownPolicy is represented as an empty slice. It is
77
        // used as the value in edgeBucket for unknown channel edge policies.
78
        // Unknown policies are still stored in the database to enable efficient
79
        // lookup of incoming channel edges.
80
        unknownPolicy = []byte{}
81

82
        // chanStart is an array of all zero bytes which is used to perform
83
        // range scans within the edgeBucket to obtain all of the outgoing
84
        // edges for a particular node.
85
        chanStart [8]byte
86

87
        // edgeIndexBucket is an index which can be used to iterate all edges
88
        // in the bucket, grouping them according to their in/out nodes.
89
        // Additionally, the items in this bucket also contain the complete
90
        // edge information for a channel. The edge information includes the
91
        // capacity of the channel, the nodes that made the channel, etc. This
92
        // bucket resides within the edgeBucket above. Creation of an edge
93
        // proceeds in two phases: first the edge is added to the edge index,
94
        // afterwards the edgeBucket can be updated with the latest details of
95
        // the edge as they are announced on the network.
96
        //
97
        // maps: chanID -> pubKey1 || pubKey2 || restofEdgeInfo
98
        edgeIndexBucket = []byte("edge-index")
99

100
        // edgeUpdateIndexBucket is a sub-bucket of the main edgeBucket. This
101
        // bucket contains an index which allows us to gauge the "freshness" of
102
        // a channel's last updates.
103
        //
104
        // maps: updateTime || chanID -> nil
105
        edgeUpdateIndexBucket = []byte("edge-update-index")
106

107
        // channelPointBucket maps a channel's full outpoint (txid:index) to
108
        // its short 8-byte channel ID. This bucket resides within the
109
        // edgeBucket above, and can be used to quickly remove an edge due to
110
        // the outpoint being spent, or to query for existence of a channel.
111
        //
112
        // maps: outPoint -> chanID
113
        channelPointBucket = []byte("chan-index")
114

115
        // zombieBucket is a sub-bucket of the main edgeBucket bucket
116
        // responsible for maintaining an index of zombie channels. Each entry
117
        // exists within the bucket as follows:
118
        //
119
        // maps: chanID -> pubKey1 || pubKey2
120
        //
121
        // The chanID represents the channel ID of the edge that is marked as a
122
        // zombie and is used as the key, which maps to the public keys of the
123
        // edge's participants.
124
        zombieBucket = []byte("zombie-index")
125

126
        // disabledEdgePolicyBucket is a sub-bucket of the main edgeBucket
127
        // bucket responsible for maintaining an index of disabled edge
128
        // policies. Each entry exists within the bucket as follows:
129
        //
130
        // maps: <chanID><direction> -> []byte{}
131
        //
132
        // The chanID represents the channel ID of the edge and the direction is
133
        // one byte representing the direction of the edge. The main purpose of
134
        // this index is to allow pruning disabled channels in a fast way without
135
        // the need to iterate all over the graph.
136
        disabledEdgePolicyBucket = []byte("disabled-edge-policy-index")
137

138
        // graphMetaBucket is a top-level bucket which stores various meta-deta
139
        // related to the on-disk channel graph. Data stored in this bucket
140
        // includes the block to which the graph has been synced to, the total
141
        // number of channels, etc.
142
        graphMetaBucket = []byte("graph-meta")
143

144
        // pruneLogBucket is a bucket within the graphMetaBucket that stores
145
        // a mapping from the block height to the hash for the blocks used to
146
        // prune the graph.
147
        // Once a new block is discovered, any channels that have been closed
148
        // (by spending the outpoint) can safely be removed from the graph, and
149
        // the block is added to the prune log. We need to keep such a log for
150
        // the case where a reorg happens, and we must "rewind" the state of the
151
        // graph by removing channels that were previously confirmed. In such a
152
        // case we'll remove all entries from the prune log with a block height
153
        // that no longer exists.
154
        pruneLogBucket = []byte("prune-log")
155

156
        // closedScidBucket is a top-level bucket that stores scids for
157
        // channels that we know to be closed. This is used so that we don't
158
        // need to perform expensive validation checks if we receive a channel
159
        // announcement for the channel again.
160
        //
161
        // maps: scid -> []byte{}
162
        closedScidBucket = []byte("closed-scid")
163
)
164

165
const (
166
        // MaxAllowedExtraOpaqueBytes is the largest amount of opaque bytes that
167
        // we'll permit to be written to disk. We limit this as otherwise, it
168
        // would be possible for a node to create a ton of updates and slowly
169
        // fill our disk, and also waste bandwidth due to relaying.
170
        MaxAllowedExtraOpaqueBytes = 10000
171
)
172

173
// ChannelGraph is a persistent, on-disk graph representation of the Lightning
174
// Network. This struct can be used to implement path finding algorithms on top
175
// of, and also to update a node's view based on information received from the
176
// p2p network. Internally, the graph is stored using a modified adjacency list
177
// representation with some added object interaction possible with each
178
// serialized edge/node. The graph is stored is directed, meaning that are two
179
// edges stored for each channel: an inbound/outbound edge for each node pair.
180
// Nodes, edges, and edge information can all be added to the graph
181
// independently. Edge removal results in the deletion of all edge information
182
// for that edge.
183
type ChannelGraph struct {
184
        db kvdb.Backend
185

186
        // cacheMu guards all caches (rejectCache, chanCache, graphCache). If
187
        // this mutex will be acquired at the same time as the DB mutex then
188
        // the cacheMu MUST be acquired first to prevent deadlock.
189
        cacheMu     sync.RWMutex
190
        rejectCache *rejectCache
191
        chanCache   *channelCache
192
        graphCache  *GraphCache
193

194
        chanScheduler batch.Scheduler
195
        nodeScheduler batch.Scheduler
196
}
197

198
// NewChannelGraph allocates a new ChannelGraph backed by a DB instance. The
199
// returned instance has its own unique reject cache and channel cache.
200
func NewChannelGraph(db kvdb.Backend, options ...OptionModifier) (*ChannelGraph,
201
        error) {
177✔
202

177✔
203
        opts := DefaultOptions()
177✔
204
        for _, o := range options {
284✔
205
                o(opts)
107✔
206
        }
107✔
207

208
        if !opts.NoMigration {
354✔
209
                if err := initChannelGraph(db); err != nil {
177✔
210
                        return nil, err
×
211
                }
×
212
        }
213

214
        g := &ChannelGraph{
177✔
215
                db:          db,
177✔
216
                rejectCache: newRejectCache(opts.RejectCacheSize),
177✔
217
                chanCache:   newChannelCache(opts.ChannelCacheSize),
177✔
218
        }
177✔
219
        g.chanScheduler = batch.NewTimeScheduler(
177✔
220
                db, &g.cacheMu, opts.BatchCommitInterval,
177✔
221
        )
177✔
222
        g.nodeScheduler = batch.NewTimeScheduler(
177✔
223
                db, nil, opts.BatchCommitInterval,
177✔
224
        )
177✔
225

177✔
226
        // The graph cache can be turned off (e.g. for mobile users) for a
177✔
227
        // speed/memory usage tradeoff.
177✔
228
        if opts.UseGraphCache {
321✔
229
                g.graphCache = NewGraphCache(opts.PreAllocCacheNumNodes)
144✔
230
                startTime := time.Now()
144✔
231
                log.Debugf("Populating in-memory channel graph, this might " +
144✔
232
                        "take a while...")
144✔
233

144✔
234
                err := g.ForEachNodeCacheable(
144✔
235
                        func(tx kvdb.RTx, node GraphCacheNode) error {
248✔
236
                                g.graphCache.AddNodeFeatures(node)
104✔
237

104✔
238
                                return nil
104✔
239
                        },
104✔
240
                )
241
                if err != nil {
144✔
242
                        return nil, err
×
243
                }
×
244

245
                err = g.ForEachChannel(func(info *models.ChannelEdgeInfo,
144✔
246
                        policy1, policy2 *models.ChannelEdgePolicy) error {
544✔
247

400✔
248
                        g.graphCache.AddChannel(info, policy1, policy2)
400✔
249

400✔
250
                        return nil
400✔
251
                })
400✔
252
                if err != nil {
144✔
253
                        return nil, err
×
254
                }
×
255

256
                log.Debugf("Finished populating in-memory channel graph (took "+
144✔
257
                        "%v, %s)", time.Since(startTime), g.graphCache.Stats())
144✔
258
        }
259

260
        return g, nil
177✔
261
}
262

263
// channelMapKey is the key structure used for storing channel edge policies.
264
type channelMapKey struct {
265
        nodeKey route.Vertex
266
        chanID  [8]byte
267
}
268

269
// getChannelMap loads all channel edge policies from the database and stores
270
// them in a map.
271
func (c *ChannelGraph) getChannelMap(edges kvdb.RBucket) (
272
        map[channelMapKey]*models.ChannelEdgePolicy, error) {
148✔
273

148✔
274
        // Create a map to store all channel edge policies.
148✔
275
        channelMap := make(map[channelMapKey]*models.ChannelEdgePolicy)
148✔
276

148✔
277
        err := kvdb.ForAll(edges, func(k, edgeBytes []byte) error {
1,723✔
278
                // Skip embedded buckets.
1,575✔
279
                if bytes.Equal(k, edgeIndexBucket) ||
1,575✔
280
                        bytes.Equal(k, edgeUpdateIndexBucket) ||
1,575✔
281
                        bytes.Equal(k, zombieBucket) ||
1,575✔
282
                        bytes.Equal(k, disabledEdgePolicyBucket) ||
1,575✔
283
                        bytes.Equal(k, channelPointBucket) {
2,160✔
284

585✔
285
                        return nil
585✔
286
                }
585✔
287

288
                // Validate key length.
289
                if len(k) != 33+8 {
994✔
290
                        return fmt.Errorf("invalid edge key %x encountered", k)
×
291
                }
×
292

293
                var key channelMapKey
994✔
294
                copy(key.nodeKey[:], k[:33])
994✔
295
                copy(key.chanID[:], k[33:])
994✔
296

994✔
297
                // No need to deserialize unknown policy.
994✔
298
                if bytes.Equal(edgeBytes, unknownPolicy) {
994✔
299
                        return nil
×
300
                }
×
301

302
                edgeReader := bytes.NewReader(edgeBytes)
994✔
303
                edge, err := deserializeChanEdgePolicyRaw(
994✔
304
                        edgeReader,
994✔
305
                )
994✔
306

994✔
307
                switch {
994✔
308
                // If the db policy was missing an expected optional field, we
309
                // return nil as if the policy was unknown.
310
                case err == ErrEdgePolicyOptionalFieldNotFound:
×
311
                        return nil
×
312

313
                case err != nil:
×
314
                        return err
×
315
                }
316

317
                channelMap[key] = edge
994✔
318

994✔
319
                return nil
994✔
320
        })
321
        if err != nil {
148✔
322
                return nil, err
×
323
        }
×
324

325
        return channelMap, nil
148✔
326
}
327

328
var graphTopLevelBuckets = [][]byte{
329
        nodeBucket,
330
        edgeBucket,
331
        graphMetaBucket,
332
        closedScidBucket,
333
}
334

335
// Wipe completely deletes all saved state within all used buckets within the
336
// database. The deletion is done in a single transaction, therefore this
337
// operation is fully atomic.
338
func (c *ChannelGraph) Wipe() error {
×
339
        err := kvdb.Update(c.db, func(tx kvdb.RwTx) error {
×
340
                for _, tlb := range graphTopLevelBuckets {
×
341
                        err := tx.DeleteTopLevelBucket(tlb)
×
342
                        if err != nil && err != kvdb.ErrBucketNotFound {
×
343
                                return err
×
344
                        }
×
345
                }
346
                return nil
×
347
        }, func() {})
×
348
        if err != nil {
×
349
                return err
×
350
        }
×
351

352
        return initChannelGraph(c.db)
×
353
}
354

355
// createChannelDB creates and initializes a fresh version of  In
356
// the case that the target path has not yet been created or doesn't yet exist,
357
// then the path is created. Additionally, all required top-level buckets used
358
// within the database are created.
359
func initChannelGraph(db kvdb.Backend) error {
177✔
360
        err := kvdb.Update(db, func(tx kvdb.RwTx) error {
354✔
361
                for _, tlb := range graphTopLevelBuckets {
873✔
362
                        if _, err := tx.CreateTopLevelBucket(tlb); err != nil {
696✔
363
                                return err
×
364
                        }
×
365
                }
366

367
                nodes := tx.ReadWriteBucket(nodeBucket)
177✔
368
                _, err := nodes.CreateBucketIfNotExists(aliasIndexBucket)
177✔
369
                if err != nil {
177✔
370
                        return err
×
371
                }
×
372
                _, err = nodes.CreateBucketIfNotExists(nodeUpdateIndexBucket)
177✔
373
                if err != nil {
177✔
374
                        return err
×
375
                }
×
376

377
                edges := tx.ReadWriteBucket(edgeBucket)
177✔
378
                _, err = edges.CreateBucketIfNotExists(edgeIndexBucket)
177✔
379
                if err != nil {
177✔
380
                        return err
×
381
                }
×
382
                _, err = edges.CreateBucketIfNotExists(edgeUpdateIndexBucket)
177✔
383
                if err != nil {
177✔
384
                        return err
×
385
                }
×
386
                _, err = edges.CreateBucketIfNotExists(channelPointBucket)
177✔
387
                if err != nil {
177✔
388
                        return err
×
389
                }
×
390
                _, err = edges.CreateBucketIfNotExists(zombieBucket)
177✔
391
                if err != nil {
177✔
392
                        return err
×
393
                }
×
394

395
                graphMeta := tx.ReadWriteBucket(graphMetaBucket)
177✔
396
                _, err = graphMeta.CreateBucketIfNotExists(pruneLogBucket)
177✔
397
                return err
177✔
398
        }, func() {})
177✔
399
        if err != nil {
177✔
400
                return fmt.Errorf("unable to create new channel graph: %w", err)
×
401
        }
×
402

403
        return nil
177✔
404
}
405

406
// NewPathFindTx returns a new read transaction that can be used for a single
407
// path finding session. Will return nil if the graph cache is enabled.
408
func (c *ChannelGraph) NewPathFindTx() (kvdb.RTx, error) {
137✔
409
        if c.graphCache != nil {
220✔
410
                return nil, nil
83✔
411
        }
83✔
412

413
        return c.db.BeginReadTx()
54✔
414
}
415

416
// AddrsForNode returns all known addresses for the target node public key that
417
// the graph DB is aware of. The returned boolean indicates if the given node is
418
// unknown to the graph DB or not.
419
//
420
// NOTE: this is part of the channeldb.AddrSource interface.
421
func (c *ChannelGraph) AddrsForNode(nodePub *btcec.PublicKey) (bool, []net.Addr,
422
        error) {
5✔
423

5✔
424
        pubKey, err := route.NewVertexFromBytes(nodePub.SerializeCompressed())
5✔
425
        if err != nil {
5✔
426
                return false, nil, err
×
427
        }
×
428

429
        node, err := c.FetchLightningNode(pubKey)
5✔
430
        // We don't consider it an error if the graph is unaware of the node.
5✔
431
        switch {
5✔
432
        case err != nil && !errors.Is(err, ErrGraphNodeNotFound):
×
433
                return false, nil, err
×
434

435
        case errors.Is(err, ErrGraphNodeNotFound):
4✔
436
                return false, nil, nil
4✔
437
        }
438

439
        return true, node.Addresses, nil
5✔
440
}
441

442
// ForEachChannel iterates through all the channel edges stored within the
443
// graph and invokes the passed callback for each edge. The callback takes two
444
// edges as since this is a directed graph, both the in/out edges are visited.
445
// If the callback returns an error, then the transaction is aborted and the
446
// iteration stops early.
447
//
448
// NOTE: If an edge can't be found, or wasn't advertised, then a nil pointer
449
// for that particular channel edge routing policy will be passed into the
450
// callback.
451
func (c *ChannelGraph) ForEachChannel(cb func(*models.ChannelEdgeInfo,
452
        *models.ChannelEdgePolicy, *models.ChannelEdgePolicy) error) error {
148✔
453

148✔
454
        return c.db.View(func(tx kvdb.RTx) error {
296✔
455
                edges := tx.ReadBucket(edgeBucket)
148✔
456
                if edges == nil {
148✔
457
                        return ErrGraphNoEdgesFound
×
458
                }
×
459

460
                // First, load all edges in memory indexed by node and channel
461
                // id.
462
                channelMap, err := c.getChannelMap(edges)
148✔
463
                if err != nil {
148✔
464
                        return err
×
465
                }
×
466

467
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
148✔
468
                if edgeIndex == nil {
148✔
469
                        return ErrGraphNoEdgesFound
×
470
                }
×
471

472
                // Load edge index, recombine each channel with the policies
473
                // loaded above and invoke the callback.
474
                return kvdb.ForAll(
148✔
475
                        edgeIndex, func(k, edgeInfoBytes []byte) error {
647✔
476
                                var chanID [8]byte
499✔
477
                                copy(chanID[:], k)
499✔
478

499✔
479
                                edgeInfoReader := bytes.NewReader(edgeInfoBytes)
499✔
480
                                info, err := deserializeChanEdgeInfo(
499✔
481
                                        edgeInfoReader,
499✔
482
                                )
499✔
483
                                if err != nil {
499✔
484
                                        return err
×
485
                                }
×
486

487
                                policy1 := channelMap[channelMapKey{
499✔
488
                                        nodeKey: info.NodeKey1Bytes,
499✔
489
                                        chanID:  chanID,
499✔
490
                                }]
499✔
491

499✔
492
                                policy2 := channelMap[channelMapKey{
499✔
493
                                        nodeKey: info.NodeKey2Bytes,
499✔
494
                                        chanID:  chanID,
499✔
495
                                }]
499✔
496

499✔
497
                                return cb(&info, policy1, policy2)
499✔
498
                        },
499
                )
500
        }, func() {})
148✔
501
}
502

503
// ForEachNodeDirectedChannel iterates through all channels of a given node,
504
// executing the passed callback on the directed edge representing the channel
505
// and its incoming policy. If the callback returns an error, then the iteration
506
// is halted with the error propagated back up to the caller.
507
//
508
// Unknown policies are passed into the callback as nil values.
509
func (c *ChannelGraph) ForEachNodeDirectedChannel(tx kvdb.RTx,
510
        node route.Vertex, cb func(channel *DirectedChannel) error) error {
707✔
511

707✔
512
        if c.graphCache != nil {
1,172✔
513
                return c.graphCache.ForEachChannel(node, cb)
465✔
514
        }
465✔
515

516
        // Fallback that uses the database.
517
        toNodeCallback := func() route.Vertex {
382✔
518
                return node
136✔
519
        }
136✔
520
        toNodeFeatures, err := c.FetchNodeFeatures(node)
246✔
521
        if err != nil {
246✔
522
                return err
×
523
        }
×
524

525
        dbCallback := func(tx kvdb.RTx, e *models.ChannelEdgeInfo, p1,
246✔
526
                p2 *models.ChannelEdgePolicy) error {
746✔
527

500✔
528
                var cachedInPolicy *models.CachedEdgePolicy
500✔
529
                if p2 != nil {
997✔
530
                        cachedInPolicy = models.NewCachedPolicy(p2)
497✔
531
                        cachedInPolicy.ToNodePubKey = toNodeCallback
497✔
532
                        cachedInPolicy.ToNodeFeatures = toNodeFeatures
497✔
533
                }
497✔
534

535
                var inboundFee lnwire.Fee
500✔
536
                if p1 != nil {
999✔
537
                        // Extract inbound fee. If there is a decoding error,
499✔
538
                        // skip this edge.
499✔
539
                        _, err := p1.ExtraOpaqueData.ExtractRecords(&inboundFee)
499✔
540
                        if err != nil {
500✔
541
                                return nil
1✔
542
                        }
1✔
543
                }
544

545
                directedChannel := &DirectedChannel{
499✔
546
                        ChannelID:    e.ChannelID,
499✔
547
                        IsNode1:      node == e.NodeKey1Bytes,
499✔
548
                        OtherNode:    e.NodeKey2Bytes,
499✔
549
                        Capacity:     e.Capacity,
499✔
550
                        OutPolicySet: p1 != nil,
499✔
551
                        InPolicy:     cachedInPolicy,
499✔
552
                        InboundFee:   inboundFee,
499✔
553
                }
499✔
554

499✔
555
                if node == e.NodeKey2Bytes {
751✔
556
                        directedChannel.OtherNode = e.NodeKey1Bytes
252✔
557
                }
252✔
558

559
                return cb(directedChannel)
499✔
560
        }
561
        return nodeTraversal(tx, node[:], c.db, dbCallback)
246✔
562
}
563

564
// FetchNodeFeatures returns the features of a given node. If no features are
565
// known for the node, an empty feature vector is returned.
566
func (c *ChannelGraph) FetchNodeFeatures(
567
        node route.Vertex) (*lnwire.FeatureVector, error) {
1,143✔
568

1,143✔
569
        if c.graphCache != nil {
1,600✔
570
                return c.graphCache.GetFeatures(node), nil
457✔
571
        }
457✔
572

573
        // Fallback that uses the database.
574
        targetNode, err := c.FetchLightningNode(node)
690✔
575
        switch err {
690✔
576
        // If the node exists and has features, return them directly.
577
        case nil:
679✔
578
                return targetNode.Features, nil
679✔
579

580
        // If we couldn't find a node announcement, populate a blank feature
581
        // vector.
582
        case ErrGraphNodeNotFound:
11✔
583
                return lnwire.EmptyFeatureVector(), nil
11✔
584

585
        // Otherwise, bubble the error up.
586
        default:
×
587
                return nil, err
×
588
        }
589
}
590

591
// ForEachNodeCached is similar to ForEachNode, but it utilizes the channel
592
// graph cache instead. Note that this doesn't return all the information the
593
// regular ForEachNode method does.
594
//
595
// NOTE: The callback contents MUST not be modified.
596
func (c *ChannelGraph) ForEachNodeCached(cb func(node route.Vertex,
597
        chans map[uint64]*DirectedChannel) error) error {
1✔
598

1✔
599
        if c.graphCache != nil {
1✔
600
                return c.graphCache.ForEachNode(cb)
×
601
        }
×
602

603
        // Otherwise call back to a version that uses the database directly.
604
        // We'll iterate over each node, then the set of channels for each
605
        // node, and construct a similar callback functiopn signature as the
606
        // main funcotin expects.
607
        return c.ForEachNode(func(tx kvdb.RTx,
1✔
608
                node *models.LightningNode) error {
21✔
609

20✔
610
                channels := make(map[uint64]*DirectedChannel)
20✔
611

20✔
612
                err := c.ForEachNodeChannelTx(tx, node.PubKeyBytes,
20✔
613
                        func(tx kvdb.RTx, e *models.ChannelEdgeInfo,
20✔
614
                                p1 *models.ChannelEdgePolicy,
20✔
615
                                p2 *models.ChannelEdgePolicy) error {
210✔
616

190✔
617
                                toNodeCallback := func() route.Vertex {
190✔
618
                                        return node.PubKeyBytes
×
619
                                }
×
620
                                toNodeFeatures, err := c.FetchNodeFeatures(
190✔
621
                                        node.PubKeyBytes,
190✔
622
                                )
190✔
623
                                if err != nil {
190✔
624
                                        return err
×
625
                                }
×
626

627
                                var cachedInPolicy *models.CachedEdgePolicy
190✔
628
                                if p2 != nil {
380✔
629
                                        cachedInPolicy =
190✔
630
                                                models.NewCachedPolicy(p2)
190✔
631
                                        cachedInPolicy.ToNodePubKey =
190✔
632
                                                toNodeCallback
190✔
633
                                        cachedInPolicy.ToNodeFeatures =
190✔
634
                                                toNodeFeatures
190✔
635
                                }
190✔
636

637
                                directedChannel := &DirectedChannel{
190✔
638
                                        ChannelID: e.ChannelID,
190✔
639
                                        IsNode1: node.PubKeyBytes ==
190✔
640
                                                e.NodeKey1Bytes,
190✔
641
                                        OtherNode:    e.NodeKey2Bytes,
190✔
642
                                        Capacity:     e.Capacity,
190✔
643
                                        OutPolicySet: p1 != nil,
190✔
644
                                        InPolicy:     cachedInPolicy,
190✔
645
                                }
190✔
646

190✔
647
                                if node.PubKeyBytes == e.NodeKey2Bytes {
285✔
648
                                        directedChannel.OtherNode =
95✔
649
                                                e.NodeKey1Bytes
95✔
650
                                }
95✔
651

652
                                channels[e.ChannelID] = directedChannel
190✔
653

190✔
654
                                return nil
190✔
655
                        })
656
                if err != nil {
20✔
657
                        return err
×
658
                }
×
659

660
                return cb(node.PubKeyBytes, channels)
20✔
661
        })
662
}
663

664
// DisabledChannelIDs returns the channel ids of disabled channels.
665
// A channel is disabled when two of the associated ChanelEdgePolicies
666
// have their disabled bit on.
667
func (c *ChannelGraph) DisabledChannelIDs() ([]uint64, error) {
6✔
668
        var disabledChanIDs []uint64
6✔
669
        var chanEdgeFound map[uint64]struct{}
6✔
670

6✔
671
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
12✔
672
                edges := tx.ReadBucket(edgeBucket)
6✔
673
                if edges == nil {
6✔
674
                        return ErrGraphNoEdgesFound
×
675
                }
×
676

677
                disabledEdgePolicyIndex := edges.NestedReadBucket(
6✔
678
                        disabledEdgePolicyBucket,
6✔
679
                )
6✔
680
                if disabledEdgePolicyIndex == nil {
7✔
681
                        return nil
1✔
682
                }
1✔
683

684
                // We iterate over all disabled policies and we add each channel
685
                // that has more than one disabled policy to disabledChanIDs
686
                // array.
687
                return disabledEdgePolicyIndex.ForEach(
5✔
688
                        func(k, v []byte) error {
16✔
689
                                chanID := byteOrder.Uint64(k[:8])
11✔
690
                                _, edgeFound := chanEdgeFound[chanID]
11✔
691
                                if edgeFound {
15✔
692
                                        delete(chanEdgeFound, chanID)
4✔
693
                                        disabledChanIDs = append(
4✔
694
                                                disabledChanIDs, chanID,
4✔
695
                                        )
4✔
696

4✔
697
                                        return nil
4✔
698
                                }
4✔
699

700
                                chanEdgeFound[chanID] = struct{}{}
7✔
701

7✔
702
                                return nil
7✔
703
                        },
704
                )
705
        }, func() {
6✔
706
                disabledChanIDs = nil
6✔
707
                chanEdgeFound = make(map[uint64]struct{})
6✔
708
        })
6✔
709
        if err != nil {
6✔
710
                return nil, err
×
711
        }
×
712

713
        return disabledChanIDs, nil
6✔
714
}
715

716
// ForEachNode iterates through all the stored vertices/nodes in the graph,
717
// executing the passed callback with each node encountered. If the callback
718
// returns an error, then the transaction is aborted and the iteration stops
719
// early.
720
//
721
// TODO(roasbeef): add iterator interface to allow for memory efficient graph
722
// traversal when graph gets mega
723
func (c *ChannelGraph) ForEachNode(
724
        cb func(kvdb.RTx, *models.LightningNode) error) error {
133✔
725

133✔
726
        traversal := func(tx kvdb.RTx) error {
266✔
727
                // First grab the nodes bucket which stores the mapping from
133✔
728
                // pubKey to node information.
133✔
729
                nodes := tx.ReadBucket(nodeBucket)
133✔
730
                if nodes == nil {
133✔
731
                        return ErrGraphNotFound
×
732
                }
×
733

734
                return nodes.ForEach(func(pubKey, nodeBytes []byte) error {
1,576✔
735
                        // If this is the source key, then we skip this
1,443✔
736
                        // iteration as the value for this key is a pubKey
1,443✔
737
                        // rather than raw node information.
1,443✔
738
                        if bytes.Equal(pubKey, sourceKey) || len(pubKey) != 33 {
1,708✔
739
                                return nil
265✔
740
                        }
265✔
741

742
                        nodeReader := bytes.NewReader(nodeBytes)
1,182✔
743
                        node, err := deserializeLightningNode(nodeReader)
1,182✔
744
                        if err != nil {
1,182✔
745
                                return err
×
746
                        }
×
747

748
                        // Execute the callback, the transaction will abort if
749
                        // this returns an error.
750
                        return cb(tx, &node)
1,182✔
751
                })
752
        }
753

754
        return kvdb.View(c.db, traversal, func() {})
266✔
755
}
756

757
// ForEachNodeCacheable iterates through all the stored vertices/nodes in the
758
// graph, executing the passed callback with each node encountered. If the
759
// callback returns an error, then the transaction is aborted and the iteration
760
// stops early.
761
func (c *ChannelGraph) ForEachNodeCacheable(cb func(kvdb.RTx,
762
        GraphCacheNode) error) error {
145✔
763

145✔
764
        traversal := func(tx kvdb.RTx) error {
290✔
765
                // First grab the nodes bucket which stores the mapping from
145✔
766
                // pubKey to node information.
145✔
767
                nodes := tx.ReadBucket(nodeBucket)
145✔
768
                if nodes == nil {
145✔
769
                        return ErrGraphNotFound
×
770
                }
×
771

772
                return nodes.ForEach(func(pubKey, nodeBytes []byte) error {
551✔
773
                        // If this is the source key, then we skip this
406✔
774
                        // iteration as the value for this key is a pubKey
406✔
775
                        // rather than raw node information.
406✔
776
                        if bytes.Equal(pubKey, sourceKey) || len(pubKey) != 33 {
692✔
777
                                return nil
286✔
778
                        }
286✔
779

780
                        nodeReader := bytes.NewReader(nodeBytes)
124✔
781
                        cacheableNode, err := deserializeLightningNodeCacheable(
124✔
782
                                nodeReader,
124✔
783
                        )
124✔
784
                        if err != nil {
124✔
785
                                return err
×
786
                        }
×
787

788
                        // Execute the callback, the transaction will abort if
789
                        // this returns an error.
790
                        return cb(tx, cacheableNode)
124✔
791
                })
792
        }
793

794
        return kvdb.View(c.db, traversal, func() {})
290✔
795
}
796

797
// SourceNode returns the source node of the graph. The source node is treated
798
// as the center node within a star-graph. This method may be used to kick off
799
// a path finding algorithm in order to explore the reachability of another
800
// node based off the source node.
801
func (c *ChannelGraph) SourceNode() (*models.LightningNode, error) {
236✔
802
        var source *models.LightningNode
236✔
803
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
472✔
804
                // First grab the nodes bucket which stores the mapping from
236✔
805
                // pubKey to node information.
236✔
806
                nodes := tx.ReadBucket(nodeBucket)
236✔
807
                if nodes == nil {
236✔
808
                        return ErrGraphNotFound
×
809
                }
×
810

811
                node, err := c.sourceNode(nodes)
236✔
812
                if err != nil {
237✔
813
                        return err
1✔
814
                }
1✔
815
                source = node
235✔
816

235✔
817
                return nil
235✔
818
        }, func() {
236✔
819
                source = nil
236✔
820
        })
236✔
821
        if err != nil {
237✔
822
                return nil, err
1✔
823
        }
1✔
824

825
        return source, nil
235✔
826
}
827

828
// sourceNode uses an existing database transaction and returns the source node
829
// of the graph. The source node is treated as the center node within a
830
// star-graph. This method may be used to kick off a path finding algorithm in
831
// order to explore the reachability of another node based off the source node.
832
func (c *ChannelGraph) sourceNode(nodes kvdb.RBucket) (*models.LightningNode,
833
        error) {
502✔
834

502✔
835
        selfPub := nodes.Get(sourceKey)
502✔
836
        if selfPub == nil {
503✔
837
                return nil, ErrSourceNodeNotSet
1✔
838
        }
1✔
839

840
        // With the pubKey of the source node retrieved, we're able to
841
        // fetch the full node information.
842
        node, err := fetchLightningNode(nodes, selfPub)
501✔
843
        if err != nil {
501✔
844
                return nil, err
×
845
        }
×
846

847
        return &node, nil
501✔
848
}
849

850
// SetSourceNode sets the source node within the graph database. The source
851
// node is to be used as the center of a star-graph within path finding
852
// algorithms.
853
func (c *ChannelGraph) SetSourceNode(node *models.LightningNode) error {
122✔
854
        nodePubBytes := node.PubKeyBytes[:]
122✔
855

122✔
856
        return kvdb.Update(c.db, func(tx kvdb.RwTx) error {
244✔
857
                // First grab the nodes bucket which stores the mapping from
122✔
858
                // pubKey to node information.
122✔
859
                nodes, err := tx.CreateTopLevelBucket(nodeBucket)
122✔
860
                if err != nil {
122✔
861
                        return err
×
862
                }
×
863

864
                // Next we create the mapping from source to the targeted
865
                // public key.
866
                if err := nodes.Put(sourceKey, nodePubBytes); err != nil {
122✔
867
                        return err
×
868
                }
×
869

870
                // Finally, we commit the information of the lightning node
871
                // itself.
872
                return addLightningNode(tx, node)
122✔
873
        }, func() {})
122✔
874
}
875

876
// AddLightningNode adds a vertex/node to the graph database. If the node is not
877
// in the database from before, this will add a new, unconnected one to the
878
// graph. If it is present from before, this will update that node's
879
// information. Note that this method is expected to only be called to update an
880
// already present node from a node announcement, or to insert a node found in a
881
// channel update.
882
//
883
// TODO(roasbeef): also need sig of announcement
884
func (c *ChannelGraph) AddLightningNode(node *models.LightningNode,
885
        op ...batch.SchedulerOption) error {
803✔
886

803✔
887
        r := &batch.Request{
803✔
888
                Update: func(tx kvdb.RwTx) error {
1,606✔
889
                        if c.graphCache != nil {
1,419✔
890
                                cNode := newGraphCacheNode(
616✔
891
                                        node.PubKeyBytes, node.Features,
616✔
892
                                )
616✔
893
                                err := c.graphCache.AddNode(tx, cNode)
616✔
894
                                if err != nil {
616✔
895
                                        return err
×
896
                                }
×
897
                        }
898

899
                        return addLightningNode(tx, node)
803✔
900
                },
901
        }
902

903
        for _, f := range op {
807✔
904
                f(r)
4✔
905
        }
4✔
906

907
        return c.nodeScheduler.Execute(r)
803✔
908
}
909

910
func addLightningNode(tx kvdb.RwTx, node *models.LightningNode) error {
996✔
911
        nodes, err := tx.CreateTopLevelBucket(nodeBucket)
996✔
912
        if err != nil {
996✔
913
                return err
×
914
        }
×
915

916
        aliases, err := nodes.CreateBucketIfNotExists(aliasIndexBucket)
996✔
917
        if err != nil {
996✔
918
                return err
×
919
        }
×
920

921
        updateIndex, err := nodes.CreateBucketIfNotExists(
996✔
922
                nodeUpdateIndexBucket,
996✔
923
        )
996✔
924
        if err != nil {
996✔
925
                return err
×
926
        }
×
927

928
        return putLightningNode(nodes, aliases, updateIndex, node)
996✔
929
}
930

931
// LookupAlias attempts to return the alias as advertised by the target node.
932
// TODO(roasbeef): currently assumes that aliases are unique...
933
func (c *ChannelGraph) LookupAlias(pub *btcec.PublicKey) (string, error) {
6✔
934
        var alias string
6✔
935

6✔
936
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
12✔
937
                nodes := tx.ReadBucket(nodeBucket)
6✔
938
                if nodes == nil {
6✔
939
                        return ErrGraphNodesNotFound
×
940
                }
×
941

942
                aliases := nodes.NestedReadBucket(aliasIndexBucket)
6✔
943
                if aliases == nil {
6✔
944
                        return ErrGraphNodesNotFound
×
945
                }
×
946

947
                nodePub := pub.SerializeCompressed()
6✔
948
                a := aliases.Get(nodePub)
6✔
949
                if a == nil {
7✔
950
                        return ErrNodeAliasNotFound
1✔
951
                }
1✔
952

953
                // TODO(roasbeef): should actually be using the utf-8
954
                // package...
955
                alias = string(a)
5✔
956
                return nil
5✔
957
        }, func() {
6✔
958
                alias = ""
6✔
959
        })
6✔
960
        if err != nil {
7✔
961
                return "", err
1✔
962
        }
1✔
963

964
        return alias, nil
5✔
965
}
966

967
// DeleteLightningNode starts a new database transaction to remove a vertex/node
968
// from the database according to the node's public key.
969
func (c *ChannelGraph) DeleteLightningNode(nodePub route.Vertex) error {
3✔
970
        // TODO(roasbeef): ensure dangling edges are removed...
3✔
971
        return kvdb.Update(c.db, func(tx kvdb.RwTx) error {
6✔
972
                nodes := tx.ReadWriteBucket(nodeBucket)
3✔
973
                if nodes == nil {
3✔
974
                        return ErrGraphNodeNotFound
×
975
                }
×
976

977
                if c.graphCache != nil {
6✔
978
                        c.graphCache.RemoveNode(nodePub)
3✔
979
                }
3✔
980

981
                return c.deleteLightningNode(nodes, nodePub[:])
3✔
982
        }, func() {})
3✔
983
}
984

985
// deleteLightningNode uses an existing database transaction to remove a
986
// vertex/node from the database according to the node's public key.
987
func (c *ChannelGraph) deleteLightningNode(nodes kvdb.RwBucket,
988
        compressedPubKey []byte) error {
72✔
989

72✔
990
        aliases := nodes.NestedReadWriteBucket(aliasIndexBucket)
72✔
991
        if aliases == nil {
72✔
992
                return ErrGraphNodesNotFound
×
993
        }
×
994

995
        if err := aliases.Delete(compressedPubKey); err != nil {
72✔
996
                return err
×
997
        }
×
998

999
        // Before we delete the node, we'll fetch its current state so we can
1000
        // determine when its last update was to clear out the node update
1001
        // index.
1002
        node, err := fetchLightningNode(nodes, compressedPubKey)
72✔
1003
        if err != nil {
72✔
1004
                return err
×
1005
        }
×
1006

1007
        if err := nodes.Delete(compressedPubKey); err != nil {
72✔
1008
                return err
×
1009
        }
×
1010

1011
        // Finally, we'll delete the index entry for the node within the
1012
        // nodeUpdateIndexBucket as this node is no longer active, so we don't
1013
        // need to track its last update.
1014
        nodeUpdateIndex := nodes.NestedReadWriteBucket(nodeUpdateIndexBucket)
72✔
1015
        if nodeUpdateIndex == nil {
72✔
1016
                return ErrGraphNodesNotFound
×
1017
        }
×
1018

1019
        // In order to delete the entry, we'll need to reconstruct the key for
1020
        // its last update.
1021
        updateUnix := uint64(node.LastUpdate.Unix())
72✔
1022
        var indexKey [8 + 33]byte
72✔
1023
        byteOrder.PutUint64(indexKey[:8], updateUnix)
72✔
1024
        copy(indexKey[8:], compressedPubKey)
72✔
1025

72✔
1026
        return nodeUpdateIndex.Delete(indexKey[:])
72✔
1027
}
1028

1029
// AddChannelEdge adds a new (undirected, blank) edge to the graph database. An
1030
// undirected edge from the two target nodes are created. The information stored
1031
// denotes the static attributes of the channel, such as the channelID, the keys
1032
// involved in creation of the channel, and the set of features that the channel
1033
// supports. The chanPoint and chanID are used to uniquely identify the edge
1034
// globally within the database.
1035
func (c *ChannelGraph) AddChannelEdge(edge *models.ChannelEdgeInfo,
1036
        op ...batch.SchedulerOption) error {
1,722✔
1037

1,722✔
1038
        var alreadyExists bool
1,722✔
1039
        r := &batch.Request{
1,722✔
1040
                Reset: func() {
3,444✔
1041
                        alreadyExists = false
1,722✔
1042
                },
1,722✔
1043
                Update: func(tx kvdb.RwTx) error {
1,722✔
1044
                        err := c.addChannelEdge(tx, edge)
1,722✔
1045

1,722✔
1046
                        // Silence ErrEdgeAlreadyExist so that the batch can
1,722✔
1047
                        // succeed, but propagate the error via local state.
1,722✔
1048
                        if err == ErrEdgeAlreadyExist {
1,956✔
1049
                                alreadyExists = true
234✔
1050
                                return nil
234✔
1051
                        }
234✔
1052

1053
                        return err
1,488✔
1054
                },
1055
                OnCommit: func(err error) error {
1,722✔
1056
                        switch {
1,722✔
1057
                        case err != nil:
×
1058
                                return err
×
1059
                        case alreadyExists:
234✔
1060
                                return ErrEdgeAlreadyExist
234✔
1061
                        default:
1,488✔
1062
                                c.rejectCache.remove(edge.ChannelID)
1,488✔
1063
                                c.chanCache.remove(edge.ChannelID)
1,488✔
1064
                                return nil
1,488✔
1065
                        }
1066
                },
1067
        }
1068

1069
        for _, f := range op {
1,726✔
1070
                if f == nil {
4✔
1071
                        return fmt.Errorf("nil scheduler option was used")
×
1072
                }
×
1073

1074
                f(r)
4✔
1075
        }
1076

1077
        return c.chanScheduler.Execute(r)
1,722✔
1078
}
1079

1080
// addChannelEdge is the private form of AddChannelEdge that allows callers to
1081
// utilize an existing db transaction.
1082
func (c *ChannelGraph) addChannelEdge(tx kvdb.RwTx,
1083
        edge *models.ChannelEdgeInfo) error {
1,722✔
1084

1,722✔
1085
        // Construct the channel's primary key which is the 8-byte channel ID.
1,722✔
1086
        var chanKey [8]byte
1,722✔
1087
        binary.BigEndian.PutUint64(chanKey[:], edge.ChannelID)
1,722✔
1088

1,722✔
1089
        nodes, err := tx.CreateTopLevelBucket(nodeBucket)
1,722✔
1090
        if err != nil {
1,722✔
1091
                return err
×
1092
        }
×
1093
        edges, err := tx.CreateTopLevelBucket(edgeBucket)
1,722✔
1094
        if err != nil {
1,722✔
1095
                return err
×
1096
        }
×
1097
        edgeIndex, err := edges.CreateBucketIfNotExists(edgeIndexBucket)
1,722✔
1098
        if err != nil {
1,722✔
1099
                return err
×
1100
        }
×
1101
        chanIndex, err := edges.CreateBucketIfNotExists(channelPointBucket)
1,722✔
1102
        if err != nil {
1,722✔
1103
                return err
×
1104
        }
×
1105

1106
        // First, attempt to check if this edge has already been created. If
1107
        // so, then we can exit early as this method is meant to be idempotent.
1108
        if edgeInfo := edgeIndex.Get(chanKey[:]); edgeInfo != nil {
1,956✔
1109
                return ErrEdgeAlreadyExist
234✔
1110
        }
234✔
1111

1112
        if c.graphCache != nil {
2,786✔
1113
                c.graphCache.AddChannel(edge, nil, nil)
1,298✔
1114
        }
1,298✔
1115

1116
        // Before we insert the channel into the database, we'll ensure that
1117
        // both nodes already exist in the channel graph. If either node
1118
        // doesn't, then we'll insert a "shell" node that just includes its
1119
        // public key, so subsequent validation and queries can work properly.
1120
        _, node1Err := fetchLightningNode(nodes, edge.NodeKey1Bytes[:])
1,488✔
1121
        switch {
1,488✔
1122
        case node1Err == ErrGraphNodeNotFound:
22✔
1123
                node1Shell := models.LightningNode{
22✔
1124
                        PubKeyBytes:          edge.NodeKey1Bytes,
22✔
1125
                        HaveNodeAnnouncement: false,
22✔
1126
                }
22✔
1127
                err := addLightningNode(tx, &node1Shell)
22✔
1128
                if err != nil {
22✔
1129
                        return fmt.Errorf("unable to create shell node "+
×
1130
                                "for: %x", edge.NodeKey1Bytes)
×
1131
                }
×
1132
        case node1Err != nil:
×
1133
                return err
×
1134
        }
1135

1136
        _, node2Err := fetchLightningNode(nodes, edge.NodeKey2Bytes[:])
1,488✔
1137
        switch {
1,488✔
1138
        case node2Err == ErrGraphNodeNotFound:
61✔
1139
                node2Shell := models.LightningNode{
61✔
1140
                        PubKeyBytes:          edge.NodeKey2Bytes,
61✔
1141
                        HaveNodeAnnouncement: false,
61✔
1142
                }
61✔
1143
                err := addLightningNode(tx, &node2Shell)
61✔
1144
                if err != nil {
61✔
1145
                        return fmt.Errorf("unable to create shell node "+
×
1146
                                "for: %x", edge.NodeKey2Bytes)
×
1147
                }
×
1148
        case node2Err != nil:
×
1149
                return err
×
1150
        }
1151

1152
        // If the edge hasn't been created yet, then we'll first add it to the
1153
        // edge index in order to associate the edge between two nodes and also
1154
        // store the static components of the channel.
1155
        if err := putChanEdgeInfo(edgeIndex, edge, chanKey); err != nil {
1,488✔
1156
                return err
×
1157
        }
×
1158

1159
        // Mark edge policies for both sides as unknown. This is to enable
1160
        // efficient incoming channel lookup for a node.
1161
        keys := []*[33]byte{
1,488✔
1162
                &edge.NodeKey1Bytes,
1,488✔
1163
                &edge.NodeKey2Bytes,
1,488✔
1164
        }
1,488✔
1165
        for _, key := range keys {
4,460✔
1166
                err := putChanEdgePolicyUnknown(edges, edge.ChannelID, key[:])
2,972✔
1167
                if err != nil {
2,972✔
1168
                        return err
×
1169
                }
×
1170
        }
1171

1172
        // Finally we add it to the channel index which maps channel points
1173
        // (outpoints) to the shorter channel ID's.
1174
        var b bytes.Buffer
1,488✔
1175
        if err := WriteOutpoint(&b, &edge.ChannelPoint); err != nil {
1,488✔
1176
                return err
×
1177
        }
×
1178
        return chanIndex.Put(b.Bytes(), chanKey[:])
1,488✔
1179
}
1180

1181
// HasChannelEdge returns true if the database knows of a channel edge with the
1182
// passed channel ID, and false otherwise. If an edge with that ID is found
1183
// within the graph, then two time stamps representing the last time the edge
1184
// was updated for both directed edges are returned along with the boolean. If
1185
// it is not found, then the zombie index is checked and its result is returned
1186
// as the second boolean.
1187
func (c *ChannelGraph) HasChannelEdge(
1188
        chanID uint64) (time.Time, time.Time, bool, bool, error) {
220✔
1189

220✔
1190
        var (
220✔
1191
                upd1Time time.Time
220✔
1192
                upd2Time time.Time
220✔
1193
                exists   bool
220✔
1194
                isZombie bool
220✔
1195
        )
220✔
1196

220✔
1197
        // We'll query the cache with the shared lock held to allow multiple
220✔
1198
        // readers to access values in the cache concurrently if they exist.
220✔
1199
        c.cacheMu.RLock()
220✔
1200
        if entry, ok := c.rejectCache.get(chanID); ok {
289✔
1201
                c.cacheMu.RUnlock()
69✔
1202
                upd1Time = time.Unix(entry.upd1Time, 0)
69✔
1203
                upd2Time = time.Unix(entry.upd2Time, 0)
69✔
1204
                exists, isZombie = entry.flags.unpack()
69✔
1205
                return upd1Time, upd2Time, exists, isZombie, nil
69✔
1206
        }
69✔
1207
        c.cacheMu.RUnlock()
155✔
1208

155✔
1209
        c.cacheMu.Lock()
155✔
1210
        defer c.cacheMu.Unlock()
155✔
1211

155✔
1212
        // The item was not found with the shared lock, so we'll acquire the
155✔
1213
        // exclusive lock and check the cache again in case another method added
155✔
1214
        // the entry to the cache while no lock was held.
155✔
1215
        if entry, ok := c.rejectCache.get(chanID); ok {
171✔
1216
                upd1Time = time.Unix(entry.upd1Time, 0)
16✔
1217
                upd2Time = time.Unix(entry.upd2Time, 0)
16✔
1218
                exists, isZombie = entry.flags.unpack()
16✔
1219
                return upd1Time, upd2Time, exists, isZombie, nil
16✔
1220
        }
16✔
1221

1222
        if err := kvdb.View(c.db, func(tx kvdb.RTx) error {
286✔
1223
                edges := tx.ReadBucket(edgeBucket)
143✔
1224
                if edges == nil {
143✔
1225
                        return ErrGraphNoEdgesFound
×
1226
                }
×
1227
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
143✔
1228
                if edgeIndex == nil {
143✔
1229
                        return ErrGraphNoEdgesFound
×
1230
                }
×
1231

1232
                var channelID [8]byte
143✔
1233
                byteOrder.PutUint64(channelID[:], chanID)
143✔
1234

143✔
1235
                // If the edge doesn't exist, then we'll also check our zombie
143✔
1236
                // index.
143✔
1237
                if edgeIndex.Get(channelID[:]) == nil {
241✔
1238
                        exists = false
98✔
1239
                        zombieIndex := edges.NestedReadBucket(zombieBucket)
98✔
1240
                        if zombieIndex != nil {
196✔
1241
                                isZombie, _, _ = isZombieEdge(
98✔
1242
                                        zombieIndex, chanID,
98✔
1243
                                )
98✔
1244
                        }
98✔
1245

1246
                        return nil
98✔
1247
                }
1248

1249
                exists = true
49✔
1250
                isZombie = false
49✔
1251

49✔
1252
                // If the channel has been found in the graph, then retrieve
49✔
1253
                // the edges itself so we can return the last updated
49✔
1254
                // timestamps.
49✔
1255
                nodes := tx.ReadBucket(nodeBucket)
49✔
1256
                if nodes == nil {
49✔
1257
                        return ErrGraphNodeNotFound
×
1258
                }
×
1259

1260
                e1, e2, err := fetchChanEdgePolicies(
49✔
1261
                        edgeIndex, edges, channelID[:],
49✔
1262
                )
49✔
1263
                if err != nil {
49✔
1264
                        return err
×
1265
                }
×
1266

1267
                // As we may have only one of the edges populated, only set the
1268
                // update time if the edge was found in the database.
1269
                if e1 != nil {
71✔
1270
                        upd1Time = e1.LastUpdate
22✔
1271
                }
22✔
1272
                if e2 != nil {
69✔
1273
                        upd2Time = e2.LastUpdate
20✔
1274
                }
20✔
1275

1276
                return nil
49✔
1277
        }, func() {}); err != nil {
143✔
1278
                return time.Time{}, time.Time{}, exists, isZombie, err
×
1279
        }
×
1280

1281
        c.rejectCache.insert(chanID, rejectCacheEntry{
143✔
1282
                upd1Time: upd1Time.Unix(),
143✔
1283
                upd2Time: upd2Time.Unix(),
143✔
1284
                flags:    packRejectFlags(exists, isZombie),
143✔
1285
        })
143✔
1286

143✔
1287
        return upd1Time, upd2Time, exists, isZombie, nil
143✔
1288
}
1289

1290
// UpdateChannelEdge retrieves and update edge of the graph database. Method
1291
// only reserved for updating an edge info after its already been created.
1292
// In order to maintain this constraints, we return an error in the scenario
1293
// that an edge info hasn't yet been created yet, but someone attempts to update
1294
// it.
1295
func (c *ChannelGraph) UpdateChannelEdge(edge *models.ChannelEdgeInfo) error {
5✔
1296
        // Construct the channel's primary key which is the 8-byte channel ID.
5✔
1297
        var chanKey [8]byte
5✔
1298
        binary.BigEndian.PutUint64(chanKey[:], edge.ChannelID)
5✔
1299

5✔
1300
        return kvdb.Update(c.db, func(tx kvdb.RwTx) error {
10✔
1301
                edges := tx.ReadWriteBucket(edgeBucket)
5✔
1302
                if edge == nil {
5✔
1303
                        return ErrEdgeNotFound
×
1304
                }
×
1305

1306
                edgeIndex := edges.NestedReadWriteBucket(edgeIndexBucket)
5✔
1307
                if edgeIndex == nil {
5✔
1308
                        return ErrEdgeNotFound
×
1309
                }
×
1310

1311
                if edgeInfo := edgeIndex.Get(chanKey[:]); edgeInfo == nil {
5✔
1312
                        return ErrEdgeNotFound
×
1313
                }
×
1314

1315
                if c.graphCache != nil {
10✔
1316
                        c.graphCache.UpdateChannel(edge)
5✔
1317
                }
5✔
1318

1319
                return putChanEdgeInfo(edgeIndex, edge, chanKey)
5✔
1320
        }, func() {})
5✔
1321
}
1322

1323
const (
1324
        // pruneTipBytes is the total size of the value which stores a prune
1325
        // entry of the graph in the prune log. The "prune tip" is the last
1326
        // entry in the prune log, and indicates if the channel graph is in
1327
        // sync with the current UTXO state. The structure of the value
1328
        // is: blockHash, taking 32 bytes total.
1329
        pruneTipBytes = 32
1330
)
1331

1332
// PruneGraph prunes newly closed channels from the channel graph in response
1333
// to a new block being solved on the network. Any transactions which spend the
1334
// funding output of any known channels within he graph will be deleted.
1335
// Additionally, the "prune tip", or the last block which has been used to
1336
// prune the graph is stored so callers can ensure the graph is fully in sync
1337
// with the current UTXO state. A slice of channels that have been closed by
1338
// the target block are returned if the function succeeds without error.
1339
func (c *ChannelGraph) PruneGraph(spentOutputs []*wire.OutPoint,
1340
        blockHash *chainhash.Hash, blockHeight uint32) (
1341
        []*models.ChannelEdgeInfo, error) {
246✔
1342

246✔
1343
        c.cacheMu.Lock()
246✔
1344
        defer c.cacheMu.Unlock()
246✔
1345

246✔
1346
        var chansClosed []*models.ChannelEdgeInfo
246✔
1347

246✔
1348
        err := kvdb.Update(c.db, func(tx kvdb.RwTx) error {
492✔
1349
                // First grab the edges bucket which houses the information
246✔
1350
                // we'd like to delete
246✔
1351
                edges, err := tx.CreateTopLevelBucket(edgeBucket)
246✔
1352
                if err != nil {
246✔
1353
                        return err
×
1354
                }
×
1355

1356
                // Next grab the two edge indexes which will also need to be
1357
                // updated.
1358
                edgeIndex, err := edges.CreateBucketIfNotExists(edgeIndexBucket)
246✔
1359
                if err != nil {
246✔
1360
                        return err
×
1361
                }
×
1362
                chanIndex, err := edges.CreateBucketIfNotExists(
246✔
1363
                        channelPointBucket,
246✔
1364
                )
246✔
1365
                if err != nil {
246✔
1366
                        return err
×
1367
                }
×
1368
                nodes := tx.ReadWriteBucket(nodeBucket)
246✔
1369
                if nodes == nil {
246✔
1370
                        return ErrSourceNodeNotSet
×
1371
                }
×
1372
                zombieIndex, err := edges.CreateBucketIfNotExists(zombieBucket)
246✔
1373
                if err != nil {
246✔
1374
                        return err
×
1375
                }
×
1376

1377
                // For each of the outpoints that have been spent within the
1378
                // block, we attempt to delete them from the graph as if that
1379
                // outpoint was a channel, then it has now been closed.
1380
                for _, chanPoint := range spentOutputs {
376✔
1381
                        // TODO(roasbeef): load channel bloom filter, continue
130✔
1382
                        // if NOT if filter
130✔
1383

130✔
1384
                        var opBytes bytes.Buffer
130✔
1385
                        err := WriteOutpoint(&opBytes, chanPoint)
130✔
1386
                        if err != nil {
130✔
1387
                                return err
×
1388
                        }
×
1389

1390
                        // First attempt to see if the channel exists within
1391
                        // the database, if not, then we can exit early.
1392
                        chanID := chanIndex.Get(opBytes.Bytes())
130✔
1393
                        if chanID == nil {
242✔
1394
                                continue
112✔
1395
                        }
1396

1397
                        // However, if it does, then we'll read out the full
1398
                        // version so we can add it to the set of deleted
1399
                        // channels.
1400
                        edgeInfo, err := fetchChanEdgeInfo(edgeIndex, chanID)
22✔
1401
                        if err != nil {
22✔
1402
                                return err
×
1403
                        }
×
1404

1405
                        // Attempt to delete the channel, an ErrEdgeNotFound
1406
                        // will be returned if that outpoint isn't known to be
1407
                        // a channel. If no error is returned, then a channel
1408
                        // was successfully pruned.
1409
                        err = c.delChannelEdgeUnsafe(
22✔
1410
                                edges, edgeIndex, chanIndex, zombieIndex,
22✔
1411
                                chanID, false, false,
22✔
1412
                        )
22✔
1413
                        if err != nil && !errors.Is(err, ErrEdgeNotFound) {
22✔
1414
                                return err
×
1415
                        }
×
1416

1417
                        chansClosed = append(chansClosed, &edgeInfo)
22✔
1418
                }
1419

1420
                metaBucket, err := tx.CreateTopLevelBucket(graphMetaBucket)
246✔
1421
                if err != nil {
246✔
1422
                        return err
×
1423
                }
×
1424

1425
                pruneBucket, err := metaBucket.CreateBucketIfNotExists(
246✔
1426
                        pruneLogBucket,
246✔
1427
                )
246✔
1428
                if err != nil {
246✔
1429
                        return err
×
1430
                }
×
1431

1432
                // With the graph pruned, add a new entry to the prune log,
1433
                // which can be used to check if the graph is fully synced with
1434
                // the current UTXO state.
1435
                var blockHeightBytes [4]byte
246✔
1436
                byteOrder.PutUint32(blockHeightBytes[:], blockHeight)
246✔
1437

246✔
1438
                var newTip [pruneTipBytes]byte
246✔
1439
                copy(newTip[:], blockHash[:])
246✔
1440

246✔
1441
                err = pruneBucket.Put(blockHeightBytes[:], newTip[:])
246✔
1442
                if err != nil {
246✔
1443
                        return err
×
1444
                }
×
1445

1446
                // Now that the graph has been pruned, we'll also attempt to
1447
                // prune any nodes that have had a channel closed within the
1448
                // latest block.
1449
                return c.pruneGraphNodes(nodes, edgeIndex)
246✔
1450
        }, func() {
246✔
1451
                chansClosed = nil
246✔
1452
        })
246✔
1453
        if err != nil {
246✔
1454
                return nil, err
×
1455
        }
×
1456

1457
        for _, channel := range chansClosed {
268✔
1458
                c.rejectCache.remove(channel.ChannelID)
22✔
1459
                c.chanCache.remove(channel.ChannelID)
22✔
1460
        }
22✔
1461

1462
        if c.graphCache != nil {
492✔
1463
                log.Debugf("Pruned graph, cache now has %s",
246✔
1464
                        c.graphCache.Stats())
246✔
1465
        }
246✔
1466

1467
        return chansClosed, nil
246✔
1468
}
1469

1470
// PruneGraphNodes is a garbage collection method which attempts to prune out
1471
// any nodes from the channel graph that are currently unconnected. This ensure
1472
// that we only maintain a graph of reachable nodes. In the event that a pruned
1473
// node gains more channels, it will be re-added back to the graph.
1474
func (c *ChannelGraph) PruneGraphNodes() error {
28✔
1475
        return kvdb.Update(c.db, func(tx kvdb.RwTx) error {
56✔
1476
                nodes := tx.ReadWriteBucket(nodeBucket)
28✔
1477
                if nodes == nil {
28✔
1478
                        return ErrGraphNodesNotFound
×
1479
                }
×
1480
                edges := tx.ReadWriteBucket(edgeBucket)
28✔
1481
                if edges == nil {
28✔
1482
                        return ErrGraphNotFound
×
1483
                }
×
1484
                edgeIndex := edges.NestedReadWriteBucket(edgeIndexBucket)
28✔
1485
                if edgeIndex == nil {
28✔
1486
                        return ErrGraphNoEdgesFound
×
1487
                }
×
1488

1489
                return c.pruneGraphNodes(nodes, edgeIndex)
28✔
1490
        }, func() {})
28✔
1491
}
1492

1493
// pruneGraphNodes attempts to remove any nodes from the graph who have had a
1494
// channel closed within the current block. If the node still has existing
1495
// channels in the graph, this will act as a no-op.
1496
func (c *ChannelGraph) pruneGraphNodes(nodes kvdb.RwBucket,
1497
        edgeIndex kvdb.RwBucket) error {
270✔
1498

270✔
1499
        log.Trace("Pruning nodes from graph with no open channels")
270✔
1500

270✔
1501
        // We'll retrieve the graph's source node to ensure we don't remove it
270✔
1502
        // even if it no longer has any open channels.
270✔
1503
        sourceNode, err := c.sourceNode(nodes)
270✔
1504
        if err != nil {
270✔
1505
                return err
×
1506
        }
×
1507

1508
        // We'll use this map to keep count the number of references to a node
1509
        // in the graph. A node should only be removed once it has no more
1510
        // references in the graph.
1511
        nodeRefCounts := make(map[[33]byte]int)
270✔
1512
        err = nodes.ForEach(func(pubKey, nodeBytes []byte) error {
1,577✔
1513
                // If this is the source key, then we skip this
1,307✔
1514
                // iteration as the value for this key is a pubKey
1,307✔
1515
                // rather than raw node information.
1,307✔
1516
                if bytes.Equal(pubKey, sourceKey) || len(pubKey) != 33 {
2,109✔
1517
                        return nil
802✔
1518
                }
802✔
1519

1520
                var nodePub [33]byte
509✔
1521
                copy(nodePub[:], pubKey)
509✔
1522
                nodeRefCounts[nodePub] = 0
509✔
1523

509✔
1524
                return nil
509✔
1525
        })
1526
        if err != nil {
270✔
1527
                return err
×
1528
        }
×
1529

1530
        // To ensure we never delete the source node, we'll start off by
1531
        // bumping its ref count to 1.
1532
        nodeRefCounts[sourceNode.PubKeyBytes] = 1
270✔
1533

270✔
1534
        // Next, we'll run through the edgeIndex which maps a channel ID to the
270✔
1535
        // edge info. We'll use this scan to populate our reference count map
270✔
1536
        // above.
270✔
1537
        err = edgeIndex.ForEach(func(chanID, edgeInfoBytes []byte) error {
458✔
1538
                // The first 66 bytes of the edge info contain the pubkeys of
188✔
1539
                // the nodes that this edge attaches. We'll extract them, and
188✔
1540
                // add them to the ref count map.
188✔
1541
                var node1, node2 [33]byte
188✔
1542
                copy(node1[:], edgeInfoBytes[:33])
188✔
1543
                copy(node2[:], edgeInfoBytes[33:])
188✔
1544

188✔
1545
                // With the nodes extracted, we'll increase the ref count of
188✔
1546
                // each of the nodes.
188✔
1547
                nodeRefCounts[node1]++
188✔
1548
                nodeRefCounts[node2]++
188✔
1549

188✔
1550
                return nil
188✔
1551
        })
188✔
1552
        if err != nil {
270✔
1553
                return err
×
1554
        }
×
1555

1556
        // Finally, we'll make a second pass over the set of nodes, and delete
1557
        // any nodes that have a ref count of zero.
1558
        var numNodesPruned int
270✔
1559
        for nodePubKey, refCount := range nodeRefCounts {
779✔
1560
                // If the ref count of the node isn't zero, then we can safely
509✔
1561
                // skip it as it still has edges to or from it within the
509✔
1562
                // graph.
509✔
1563
                if refCount != 0 {
953✔
1564
                        continue
444✔
1565
                }
1566

1567
                if c.graphCache != nil {
138✔
1568
                        c.graphCache.RemoveNode(nodePubKey)
69✔
1569
                }
69✔
1570

1571
                // If we reach this point, then there are no longer any edges
1572
                // that connect this node, so we can delete it.
1573
                err := c.deleteLightningNode(nodes, nodePubKey[:])
69✔
1574
                if err != nil {
69✔
1575
                        if errors.Is(err, ErrGraphNodeNotFound) ||
×
1576
                                errors.Is(err, ErrGraphNodesNotFound) {
×
1577

×
1578
                                log.Warnf("Unable to prune node %x from the "+
×
1579
                                        "graph: %v", nodePubKey, err)
×
1580
                                continue
×
1581
                        }
1582

1583
                        return err
×
1584
                }
1585

1586
                log.Infof("Pruned unconnected node %x from channel graph",
69✔
1587
                        nodePubKey[:])
69✔
1588

69✔
1589
                numNodesPruned++
69✔
1590
        }
1591

1592
        if numNodesPruned > 0 {
323✔
1593
                log.Infof("Pruned %v unconnected nodes from the channel graph",
53✔
1594
                        numNodesPruned)
53✔
1595
        }
53✔
1596

1597
        return nil
270✔
1598
}
1599

1600
// DisconnectBlockAtHeight is used to indicate that the block specified
1601
// by the passed height has been disconnected from the main chain. This
1602
// will "rewind" the graph back to the height below, deleting channels
1603
// that are no longer confirmed from the graph. The prune log will be
1604
// set to the last prune height valid for the remaining chain.
1605
// Channels that were removed from the graph resulting from the
1606
// disconnected block are returned.
1607
func (c *ChannelGraph) DisconnectBlockAtHeight(height uint32) (
1608
        []*models.ChannelEdgeInfo, error) {
165✔
1609

165✔
1610
        // Every channel having a ShortChannelID starting at 'height'
165✔
1611
        // will no longer be confirmed.
165✔
1612
        startShortChanID := lnwire.ShortChannelID{
165✔
1613
                BlockHeight: height,
165✔
1614
        }
165✔
1615

165✔
1616
        // Delete everything after this height from the db up until the
165✔
1617
        // SCID alias range.
165✔
1618
        endShortChanID := aliasmgr.StartingAlias
165✔
1619

165✔
1620
        // The block height will be the 3 first bytes of the channel IDs.
165✔
1621
        var chanIDStart [8]byte
165✔
1622
        byteOrder.PutUint64(chanIDStart[:], startShortChanID.ToUint64())
165✔
1623
        var chanIDEnd [8]byte
165✔
1624
        byteOrder.PutUint64(chanIDEnd[:], endShortChanID.ToUint64())
165✔
1625

165✔
1626
        c.cacheMu.Lock()
165✔
1627
        defer c.cacheMu.Unlock()
165✔
1628

165✔
1629
        // Keep track of the channels that are removed from the graph.
165✔
1630
        var removedChans []*models.ChannelEdgeInfo
165✔
1631

165✔
1632
        if err := kvdb.Update(c.db, func(tx kvdb.RwTx) error {
330✔
1633
                edges, err := tx.CreateTopLevelBucket(edgeBucket)
165✔
1634
                if err != nil {
165✔
1635
                        return err
×
1636
                }
×
1637
                edgeIndex, err := edges.CreateBucketIfNotExists(edgeIndexBucket)
165✔
1638
                if err != nil {
165✔
1639
                        return err
×
1640
                }
×
1641
                chanIndex, err := edges.CreateBucketIfNotExists(
165✔
1642
                        channelPointBucket,
165✔
1643
                )
165✔
1644
                if err != nil {
165✔
1645
                        return err
×
1646
                }
×
1647
                zombieIndex, err := edges.CreateBucketIfNotExists(zombieBucket)
165✔
1648
                if err != nil {
165✔
1649
                        return err
×
1650
                }
×
1651

1652
                // Scan from chanIDStart to chanIDEnd, deleting every
1653
                // found edge.
1654
                // NOTE: we must delete the edges after the cursor loop, since
1655
                // modifying the bucket while traversing is not safe.
1656
                // NOTE: We use a < comparison in bytes.Compare instead of <=
1657
                // so that the StartingAlias itself isn't deleted.
1658
                var keys [][]byte
165✔
1659
                cursor := edgeIndex.ReadWriteCursor()
165✔
1660

165✔
1661
                //nolint:ll
165✔
1662
                for k, v := cursor.Seek(chanIDStart[:]); k != nil &&
165✔
1663
                        bytes.Compare(k, chanIDEnd[:]) < 0; k, v = cursor.Next() {
268✔
1664
                        edgeInfoReader := bytes.NewReader(v)
103✔
1665
                        edgeInfo, err := deserializeChanEdgeInfo(edgeInfoReader)
103✔
1666
                        if err != nil {
103✔
1667
                                return err
×
1668
                        }
×
1669

1670
                        keys = append(keys, k)
103✔
1671
                        removedChans = append(removedChans, &edgeInfo)
103✔
1672
                }
1673

1674
                for _, k := range keys {
268✔
1675
                        err = c.delChannelEdgeUnsafe(
103✔
1676
                                edges, edgeIndex, chanIndex, zombieIndex,
103✔
1677
                                k, false, false,
103✔
1678
                        )
103✔
1679
                        if err != nil && !errors.Is(err, ErrEdgeNotFound) {
103✔
1680
                                return err
×
1681
                        }
×
1682
                }
1683

1684
                // Delete all the entries in the prune log having a height
1685
                // greater or equal to the block disconnected.
1686
                metaBucket, err := tx.CreateTopLevelBucket(graphMetaBucket)
165✔
1687
                if err != nil {
165✔
1688
                        return err
×
1689
                }
×
1690

1691
                pruneBucket, err := metaBucket.CreateBucketIfNotExists(
165✔
1692
                        pruneLogBucket,
165✔
1693
                )
165✔
1694
                if err != nil {
165✔
1695
                        return err
×
1696
                }
×
1697

1698
                var pruneKeyStart [4]byte
165✔
1699
                byteOrder.PutUint32(pruneKeyStart[:], height)
165✔
1700

165✔
1701
                var pruneKeyEnd [4]byte
165✔
1702
                byteOrder.PutUint32(pruneKeyEnd[:], math.MaxUint32)
165✔
1703

165✔
1704
                // To avoid modifying the bucket while traversing, we delete
165✔
1705
                // the keys in a second loop.
165✔
1706
                var pruneKeys [][]byte
165✔
1707
                pruneCursor := pruneBucket.ReadWriteCursor()
165✔
1708
                //nolint:ll
165✔
1709
                for k, _ := pruneCursor.Seek(pruneKeyStart[:]); k != nil &&
165✔
1710
                        bytes.Compare(k, pruneKeyEnd[:]) <= 0; k, _ = pruneCursor.Next() {
259✔
1711
                        pruneKeys = append(pruneKeys, k)
94✔
1712
                }
94✔
1713

1714
                for _, k := range pruneKeys {
259✔
1715
                        if err := pruneBucket.Delete(k); err != nil {
94✔
1716
                                return err
×
1717
                        }
×
1718
                }
1719

1720
                return nil
165✔
1721
        }, func() {
165✔
1722
                removedChans = nil
165✔
1723
        }); err != nil {
165✔
1724
                return nil, err
×
1725
        }
×
1726

1727
        for _, channel := range removedChans {
268✔
1728
                c.rejectCache.remove(channel.ChannelID)
103✔
1729
                c.chanCache.remove(channel.ChannelID)
103✔
1730
        }
103✔
1731

1732
        return removedChans, nil
165✔
1733
}
1734

1735
// PruneTip returns the block height and hash of the latest block that has been
1736
// used to prune channels in the graph. Knowing the "prune tip" allows callers
1737
// to tell if the graph is currently in sync with the current best known UTXO
1738
// state.
1739
func (c *ChannelGraph) PruneTip() (*chainhash.Hash, uint32, error) {
59✔
1740
        var (
59✔
1741
                tipHash   chainhash.Hash
59✔
1742
                tipHeight uint32
59✔
1743
        )
59✔
1744

59✔
1745
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
118✔
1746
                graphMeta := tx.ReadBucket(graphMetaBucket)
59✔
1747
                if graphMeta == nil {
59✔
1748
                        return ErrGraphNotFound
×
1749
                }
×
1750
                pruneBucket := graphMeta.NestedReadBucket(pruneLogBucket)
59✔
1751
                if pruneBucket == nil {
59✔
1752
                        return ErrGraphNeverPruned
×
1753
                }
×
1754

1755
                pruneCursor := pruneBucket.ReadCursor()
59✔
1756

59✔
1757
                // The prune key with the largest block height will be our
59✔
1758
                // prune tip.
59✔
1759
                k, v := pruneCursor.Last()
59✔
1760
                if k == nil {
82✔
1761
                        return ErrGraphNeverPruned
23✔
1762
                }
23✔
1763

1764
                // Once we have the prune tip, the value will be the block hash,
1765
                // and the key the block height.
1766
                copy(tipHash[:], v[:])
40✔
1767
                tipHeight = byteOrder.Uint32(k[:])
40✔
1768

40✔
1769
                return nil
40✔
1770
        }, func() {})
59✔
1771
        if err != nil {
82✔
1772
                return nil, 0, err
23✔
1773
        }
23✔
1774

1775
        return &tipHash, tipHeight, nil
40✔
1776
}
1777

1778
// DeleteChannelEdges removes edges with the given channel IDs from the
1779
// database and marks them as zombies. This ensures that we're unable to re-add
1780
// it to our database once again. If an edge does not exist within the
1781
// database, then ErrEdgeNotFound will be returned. If strictZombiePruning is
1782
// true, then when we mark these edges as zombies, we'll set up the keys such
1783
// that we require the node that failed to send the fresh update to be the one
1784
// that resurrects the channel from its zombie state. The markZombie bool
1785
// denotes whether or not to mark the channel as a zombie.
1786
func (c *ChannelGraph) DeleteChannelEdges(strictZombiePruning, markZombie bool,
1787
        chanIDs ...uint64) error {
141✔
1788

141✔
1789
        // TODO(roasbeef): possibly delete from node bucket if node has no more
141✔
1790
        // channels
141✔
1791
        // TODO(roasbeef): don't delete both edges?
141✔
1792

141✔
1793
        c.cacheMu.Lock()
141✔
1794
        defer c.cacheMu.Unlock()
141✔
1795

141✔
1796
        err := kvdb.Update(c.db, func(tx kvdb.RwTx) error {
282✔
1797
                edges := tx.ReadWriteBucket(edgeBucket)
141✔
1798
                if edges == nil {
141✔
1799
                        return ErrEdgeNotFound
×
1800
                }
×
1801
                edgeIndex := edges.NestedReadWriteBucket(edgeIndexBucket)
141✔
1802
                if edgeIndex == nil {
141✔
1803
                        return ErrEdgeNotFound
×
1804
                }
×
1805
                chanIndex := edges.NestedReadWriteBucket(channelPointBucket)
141✔
1806
                if chanIndex == nil {
141✔
1807
                        return ErrEdgeNotFound
×
1808
                }
×
1809
                nodes := tx.ReadWriteBucket(nodeBucket)
141✔
1810
                if nodes == nil {
141✔
1811
                        return ErrGraphNodeNotFound
×
1812
                }
×
1813
                zombieIndex, err := edges.CreateBucketIfNotExists(zombieBucket)
141✔
1814
                if err != nil {
141✔
1815
                        return err
×
1816
                }
×
1817

1818
                var rawChanID [8]byte
141✔
1819
                for _, chanID := range chanIDs {
227✔
1820
                        byteOrder.PutUint64(rawChanID[:], chanID)
86✔
1821
                        err := c.delChannelEdgeUnsafe(
86✔
1822
                                edges, edgeIndex, chanIndex, zombieIndex,
86✔
1823
                                rawChanID[:], markZombie, strictZombiePruning,
86✔
1824
                        )
86✔
1825
                        if err != nil {
143✔
1826
                                return err
57✔
1827
                        }
57✔
1828
                }
1829

1830
                return nil
84✔
1831
        }, func() {})
141✔
1832
        if err != nil {
198✔
1833
                return err
57✔
1834
        }
57✔
1835

1836
        for _, chanID := range chanIDs {
113✔
1837
                c.rejectCache.remove(chanID)
29✔
1838
                c.chanCache.remove(chanID)
29✔
1839
        }
29✔
1840

1841
        return nil
84✔
1842
}
1843

1844
// ChannelID attempt to lookup the 8-byte compact channel ID which maps to the
1845
// passed channel point (outpoint). If the passed channel doesn't exist within
1846
// the database, then ErrEdgeNotFound is returned.
1847
func (c *ChannelGraph) ChannelID(chanPoint *wire.OutPoint) (uint64, error) {
5✔
1848
        var chanID uint64
5✔
1849
        if err := kvdb.View(c.db, func(tx kvdb.RTx) error {
10✔
1850
                var err error
5✔
1851
                chanID, err = getChanID(tx, chanPoint)
5✔
1852
                return err
5✔
1853
        }, func() {
10✔
1854
                chanID = 0
5✔
1855
        }); err != nil {
9✔
1856
                return 0, err
4✔
1857
        }
4✔
1858

1859
        return chanID, nil
5✔
1860
}
1861

1862
// getChanID returns the assigned channel ID for a given channel point.
1863
func getChanID(tx kvdb.RTx, chanPoint *wire.OutPoint) (uint64, error) {
5✔
1864
        var b bytes.Buffer
5✔
1865
        if err := WriteOutpoint(&b, chanPoint); err != nil {
5✔
1866
                return 0, err
×
1867
        }
×
1868

1869
        edges := tx.ReadBucket(edgeBucket)
5✔
1870
        if edges == nil {
5✔
1871
                return 0, ErrGraphNoEdgesFound
×
1872
        }
×
1873
        chanIndex := edges.NestedReadBucket(channelPointBucket)
5✔
1874
        if chanIndex == nil {
5✔
1875
                return 0, ErrGraphNoEdgesFound
×
1876
        }
×
1877

1878
        chanIDBytes := chanIndex.Get(b.Bytes())
5✔
1879
        if chanIDBytes == nil {
9✔
1880
                return 0, ErrEdgeNotFound
4✔
1881
        }
4✔
1882

1883
        chanID := byteOrder.Uint64(chanIDBytes)
5✔
1884

5✔
1885
        return chanID, nil
5✔
1886
}
1887

1888
// TODO(roasbeef): allow updates to use Batch?
1889

1890
// HighestChanID returns the "highest" known channel ID in the channel graph.
1891
// This represents the "newest" channel from the PoV of the chain. This method
1892
// can be used by peers to quickly determine if they're graphs are in sync.
1893
func (c *ChannelGraph) HighestChanID() (uint64, error) {
7✔
1894
        var cid uint64
7✔
1895

7✔
1896
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
14✔
1897
                edges := tx.ReadBucket(edgeBucket)
7✔
1898
                if edges == nil {
7✔
1899
                        return ErrGraphNoEdgesFound
×
1900
                }
×
1901
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
7✔
1902
                if edgeIndex == nil {
7✔
1903
                        return ErrGraphNoEdgesFound
×
1904
                }
×
1905

1906
                // In order to find the highest chan ID, we'll fetch a cursor
1907
                // and use that to seek to the "end" of our known rage.
1908
                cidCursor := edgeIndex.ReadCursor()
7✔
1909

7✔
1910
                lastChanID, _ := cidCursor.Last()
7✔
1911

7✔
1912
                // If there's no key, then this means that we don't actually
7✔
1913
                // know of any channels, so we'll return a predicable error.
7✔
1914
                if lastChanID == nil {
12✔
1915
                        return ErrGraphNoEdgesFound
5✔
1916
                }
5✔
1917

1918
                // Otherwise, we'll de serialize the channel ID and return it
1919
                // to the caller.
1920
                cid = byteOrder.Uint64(lastChanID)
6✔
1921
                return nil
6✔
1922
        }, func() {
7✔
1923
                cid = 0
7✔
1924
        })
7✔
1925
        if err != nil && err != ErrGraphNoEdgesFound {
7✔
1926
                return 0, err
×
1927
        }
×
1928

1929
        return cid, nil
7✔
1930
}
1931

1932
// ChannelEdge represents the complete set of information for a channel edge in
1933
// the known channel graph. This struct couples the core information of the
1934
// edge as well as each of the known advertised edge policies.
1935
type ChannelEdge struct {
1936
        // Info contains all the static information describing the channel.
1937
        Info *models.ChannelEdgeInfo
1938

1939
        // Policy1 points to the "first" edge policy of the channel containing
1940
        // the dynamic information required to properly route through the edge.
1941
        Policy1 *models.ChannelEdgePolicy
1942

1943
        // Policy2 points to the "second" edge policy of the channel containing
1944
        // the dynamic information required to properly route through the edge.
1945
        Policy2 *models.ChannelEdgePolicy
1946

1947
        // Node1 is "node 1" in the channel. This is the node that would have
1948
        // produced Policy1 if it exists.
1949
        Node1 *models.LightningNode
1950

1951
        // Node2 is "node 2" in the channel. This is the node that would have
1952
        // produced Policy2 if it exists.
1953
        Node2 *models.LightningNode
1954
}
1955

1956
// ChanUpdatesInHorizon returns all the known channel edges which have at least
1957
// one edge that has an update timestamp within the specified horizon.
1958
func (c *ChannelGraph) ChanUpdatesInHorizon(startTime,
1959
        endTime time.Time) ([]ChannelEdge, error) {
142✔
1960

142✔
1961
        // To ensure we don't return duplicate ChannelEdges, we'll use an
142✔
1962
        // additional map to keep track of the edges already seen to prevent
142✔
1963
        // re-adding it.
142✔
1964
        var edgesSeen map[uint64]struct{}
142✔
1965
        var edgesToCache map[uint64]ChannelEdge
142✔
1966
        var edgesInHorizon []ChannelEdge
142✔
1967

142✔
1968
        c.cacheMu.Lock()
142✔
1969
        defer c.cacheMu.Unlock()
142✔
1970

142✔
1971
        var hits int
142✔
1972
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
284✔
1973
                edges := tx.ReadBucket(edgeBucket)
142✔
1974
                if edges == nil {
142✔
1975
                        return ErrGraphNoEdgesFound
×
1976
                }
×
1977
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
142✔
1978
                if edgeIndex == nil {
142✔
1979
                        return ErrGraphNoEdgesFound
×
1980
                }
×
1981
                edgeUpdateIndex := edges.NestedReadBucket(edgeUpdateIndexBucket)
142✔
1982
                if edgeUpdateIndex == nil {
142✔
1983
                        return ErrGraphNoEdgesFound
×
1984
                }
×
1985

1986
                nodes := tx.ReadBucket(nodeBucket)
142✔
1987
                if nodes == nil {
142✔
1988
                        return ErrGraphNodesNotFound
×
1989
                }
×
1990

1991
                // We'll now obtain a cursor to perform a range query within
1992
                // the index to find all channels within the horizon.
1993
                updateCursor := edgeUpdateIndex.ReadCursor()
142✔
1994

142✔
1995
                var startTimeBytes, endTimeBytes [8 + 8]byte
142✔
1996
                byteOrder.PutUint64(
142✔
1997
                        startTimeBytes[:8], uint64(startTime.Unix()),
142✔
1998
                )
142✔
1999
                byteOrder.PutUint64(
142✔
2000
                        endTimeBytes[:8], uint64(endTime.Unix()),
142✔
2001
                )
142✔
2002

142✔
2003
                // With our start and end times constructed, we'll step through
142✔
2004
                // the index collecting the info and policy of each update of
142✔
2005
                // each channel that has a last update within the time range.
142✔
2006
                //
142✔
2007
                //nolint:ll
142✔
2008
                for indexKey, _ := updateCursor.Seek(startTimeBytes[:]); indexKey != nil &&
142✔
2009
                        bytes.Compare(indexKey, endTimeBytes[:]) <= 0; indexKey, _ = updateCursor.Next() {
192✔
2010

50✔
2011
                        // We have a new eligible entry, so we'll slice of the
50✔
2012
                        // chan ID so we can query it in the DB.
50✔
2013
                        chanID := indexKey[8:]
50✔
2014

50✔
2015
                        // If we've already retrieved the info and policies for
50✔
2016
                        // this edge, then we can skip it as we don't need to do
50✔
2017
                        // so again.
50✔
2018
                        chanIDInt := byteOrder.Uint64(chanID)
50✔
2019
                        if _, ok := edgesSeen[chanIDInt]; ok {
69✔
2020
                                continue
19✔
2021
                        }
2022

2023
                        if channel, ok := c.chanCache.get(chanIDInt); ok {
43✔
2024
                                hits++
12✔
2025
                                edgesSeen[chanIDInt] = struct{}{}
12✔
2026
                                edgesInHorizon = append(edgesInHorizon, channel)
12✔
2027
                                continue
12✔
2028
                        }
2029

2030
                        // First, we'll fetch the static edge information.
2031
                        edgeInfo, err := fetchChanEdgeInfo(edgeIndex, chanID)
22✔
2032
                        if err != nil {
22✔
2033
                                chanID := byteOrder.Uint64(chanID)
×
2034
                                return fmt.Errorf("unable to fetch info for "+
×
2035
                                        "edge with chan_id=%v: %v", chanID, err)
×
2036
                        }
×
2037

2038
                        // With the static information obtained, we'll now
2039
                        // fetch the dynamic policy info.
2040
                        edge1, edge2, err := fetchChanEdgePolicies(
22✔
2041
                                edgeIndex, edges, chanID,
22✔
2042
                        )
22✔
2043
                        if err != nil {
22✔
2044
                                chanID := byteOrder.Uint64(chanID)
×
2045
                                return fmt.Errorf("unable to fetch policies "+
×
2046
                                        "for edge with chan_id=%v: %v", chanID,
×
2047
                                        err)
×
2048
                        }
×
2049

2050
                        node1, err := fetchLightningNode(
22✔
2051
                                nodes, edgeInfo.NodeKey1Bytes[:],
22✔
2052
                        )
22✔
2053
                        if err != nil {
22✔
2054
                                return err
×
2055
                        }
×
2056

2057
                        node2, err := fetchLightningNode(
22✔
2058
                                nodes, edgeInfo.NodeKey2Bytes[:],
22✔
2059
                        )
22✔
2060
                        if err != nil {
22✔
2061
                                return err
×
2062
                        }
×
2063

2064
                        // Finally, we'll collate this edge with the rest of
2065
                        // edges to be returned.
2066
                        edgesSeen[chanIDInt] = struct{}{}
22✔
2067
                        channel := ChannelEdge{
22✔
2068
                                Info:    &edgeInfo,
22✔
2069
                                Policy1: edge1,
22✔
2070
                                Policy2: edge2,
22✔
2071
                                Node1:   &node1,
22✔
2072
                                Node2:   &node2,
22✔
2073
                        }
22✔
2074
                        edgesInHorizon = append(edgesInHorizon, channel)
22✔
2075
                        edgesToCache[chanIDInt] = channel
22✔
2076
                }
2077

2078
                return nil
142✔
2079
        }, func() {
142✔
2080
                edgesSeen = make(map[uint64]struct{})
142✔
2081
                edgesToCache = make(map[uint64]ChannelEdge)
142✔
2082
                edgesInHorizon = nil
142✔
2083
        })
142✔
2084
        switch {
142✔
2085
        case err == ErrGraphNoEdgesFound:
×
2086
                fallthrough
×
2087
        case err == ErrGraphNodesNotFound:
×
2088
                break
×
2089

2090
        case err != nil:
×
2091
                return nil, err
×
2092
        }
2093

2094
        // Insert any edges loaded from disk into the cache.
2095
        for chanid, channel := range edgesToCache {
164✔
2096
                c.chanCache.insert(chanid, channel)
22✔
2097
        }
22✔
2098

2099
        log.Debugf("ChanUpdatesInHorizon hit percentage: %f (%d/%d)",
142✔
2100
                float64(hits)/float64(len(edgesInHorizon)), hits,
142✔
2101
                len(edgesInHorizon))
142✔
2102

142✔
2103
        return edgesInHorizon, nil
142✔
2104
}
2105

2106
// NodeUpdatesInHorizon returns all the known lightning node which have an
2107
// update timestamp within the passed range. This method can be used by two
2108
// nodes to quickly determine if they have the same set of up to date node
2109
// announcements.
2110
func (c *ChannelGraph) NodeUpdatesInHorizon(startTime,
2111
        endTime time.Time) ([]models.LightningNode, error) {
12✔
2112

12✔
2113
        var nodesInHorizon []models.LightningNode
12✔
2114

12✔
2115
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
24✔
2116
                nodes := tx.ReadBucket(nodeBucket)
12✔
2117
                if nodes == nil {
12✔
2118
                        return ErrGraphNodesNotFound
×
2119
                }
×
2120

2121
                nodeUpdateIndex := nodes.NestedReadBucket(nodeUpdateIndexBucket)
12✔
2122
                if nodeUpdateIndex == nil {
12✔
2123
                        return ErrGraphNodesNotFound
×
2124
                }
×
2125

2126
                // We'll now obtain a cursor to perform a range query within
2127
                // the index to find all node announcements within the horizon.
2128
                updateCursor := nodeUpdateIndex.ReadCursor()
12✔
2129

12✔
2130
                var startTimeBytes, endTimeBytes [8 + 33]byte
12✔
2131
                byteOrder.PutUint64(
12✔
2132
                        startTimeBytes[:8], uint64(startTime.Unix()),
12✔
2133
                )
12✔
2134
                byteOrder.PutUint64(
12✔
2135
                        endTimeBytes[:8], uint64(endTime.Unix()),
12✔
2136
                )
12✔
2137

12✔
2138
                // With our start and end times constructed, we'll step through
12✔
2139
                // the index collecting info for each node within the time
12✔
2140
                // range.
12✔
2141
                //
12✔
2142
                //nolint:ll
12✔
2143
                for indexKey, _ := updateCursor.Seek(startTimeBytes[:]); indexKey != nil &&
12✔
2144
                        bytes.Compare(indexKey, endTimeBytes[:]) <= 0; indexKey, _ = updateCursor.Next() {
45✔
2145

33✔
2146
                        nodePub := indexKey[8:]
33✔
2147
                        node, err := fetchLightningNode(nodes, nodePub)
33✔
2148
                        if err != nil {
33✔
2149
                                return err
×
2150
                        }
×
2151

2152
                        nodesInHorizon = append(nodesInHorizon, node)
33✔
2153
                }
2154

2155
                return nil
12✔
2156
        }, func() {
12✔
2157
                nodesInHorizon = nil
12✔
2158
        })
12✔
2159
        switch {
12✔
2160
        case err == ErrGraphNoEdgesFound:
×
2161
                fallthrough
×
2162
        case err == ErrGraphNodesNotFound:
×
2163
                break
×
2164

2165
        case err != nil:
×
2166
                return nil, err
×
2167
        }
2168

2169
        return nodesInHorizon, nil
12✔
2170
}
2171

2172
// FilterKnownChanIDs takes a set of channel IDs and return the subset of chan
2173
// ID's that we don't know and are not known zombies of the passed set. In other
2174
// words, we perform a set difference of our set of chan ID's and the ones
2175
// passed in. This method can be used by callers to determine the set of
2176
// channels another peer knows of that we don't.
2177
func (c *ChannelGraph) FilterKnownChanIDs(chansInfo []ChannelUpdateInfo,
2178
        isZombieChan func(time.Time, time.Time) bool) ([]uint64, error) {
128✔
2179

128✔
2180
        var newChanIDs []uint64
128✔
2181

128✔
2182
        c.cacheMu.Lock()
128✔
2183
        defer c.cacheMu.Unlock()
128✔
2184

128✔
2185
        err := kvdb.Update(c.db, func(tx kvdb.RwTx) error {
256✔
2186
                edges := tx.ReadBucket(edgeBucket)
128✔
2187
                if edges == nil {
128✔
2188
                        return ErrGraphNoEdgesFound
×
2189
                }
×
2190
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
128✔
2191
                if edgeIndex == nil {
128✔
2192
                        return ErrGraphNoEdgesFound
×
2193
                }
×
2194

2195
                // Fetch the zombie index, it may not exist if no edges have
2196
                // ever been marked as zombies. If the index has been
2197
                // initialized, we will use it later to skip known zombie edges.
2198
                zombieIndex := edges.NestedReadBucket(zombieBucket)
128✔
2199

128✔
2200
                // We'll run through the set of chanIDs and collate only the
128✔
2201
                // set of channel that are unable to be found within our db.
128✔
2202
                var cidBytes [8]byte
128✔
2203
                for _, info := range chansInfo {
247✔
2204
                        scid := info.ShortChannelID.ToUint64()
119✔
2205
                        byteOrder.PutUint64(cidBytes[:], scid)
119✔
2206

119✔
2207
                        // If the edge is already known, skip it.
119✔
2208
                        if v := edgeIndex.Get(cidBytes[:]); v != nil {
138✔
2209
                                continue
19✔
2210
                        }
2211

2212
                        // If the edge is a known zombie, skip it.
2213
                        if zombieIndex != nil {
208✔
2214
                                isZombie, _, _ := isZombieEdge(
104✔
2215
                                        zombieIndex, scid,
104✔
2216
                                )
104✔
2217

104✔
2218
                                // TODO(ziggie): Make sure that for the strict
104✔
2219
                                // pruning case we compare the pubkeys and
104✔
2220
                                // whether the right timestamp is not older than
104✔
2221
                                // the `ChannelPruneExpiry`.
104✔
2222
                                //
104✔
2223
                                // NOTE: The timestamp data has no verification
104✔
2224
                                // attached to it in the `ReplyChannelRange` msg
104✔
2225
                                // so we are trusting this data at this point.
104✔
2226
                                // However it is not critical because we are
104✔
2227
                                // just removing the channel from the db when
104✔
2228
                                // the timestamps are more recent. During the
104✔
2229
                                // querying of the gossip msg verification
104✔
2230
                                // happens as usual.
104✔
2231
                                // However we should start punishing peers when
104✔
2232
                                // they don't provide us honest data ?
104✔
2233
                                isStillZombie := isZombieChan(
104✔
2234
                                        info.Node1UpdateTimestamp,
104✔
2235
                                        info.Node2UpdateTimestamp,
104✔
2236
                                )
104✔
2237

104✔
2238
                                switch {
104✔
2239
                                // If the edge is a known zombie and if we
2240
                                // would still consider it a zombie given the
2241
                                // latest update timestamps, then we skip this
2242
                                // channel.
2243
                                case isZombie && isStillZombie:
25✔
2244
                                        continue
25✔
2245

2246
                                // Otherwise, if we have marked it as a zombie
2247
                                // but the latest update timestamps could bring
2248
                                // it back from the dead, then we mark it alive,
2249
                                // and we let it be added to the set of IDs to
2250
                                // query our peer for.
2251
                                case isZombie && !isStillZombie:
19✔
2252
                                        err := c.markEdgeLiveUnsafe(tx, scid)
19✔
2253
                                        if err != nil {
19✔
2254
                                                return err
×
2255
                                        }
×
2256
                                }
2257
                        }
2258

2259
                        newChanIDs = append(newChanIDs, scid)
79✔
2260
                }
2261

2262
                return nil
128✔
2263
        }, func() {
128✔
2264
                newChanIDs = nil
128✔
2265
        })
128✔
2266
        switch {
128✔
2267
        // If we don't know of any edges yet, then we'll return the entire set
2268
        // of chan IDs specified.
2269
        case err == ErrGraphNoEdgesFound:
×
2270
                ogChanIDs := make([]uint64, len(chansInfo))
×
2271
                for i, info := range chansInfo {
×
2272
                        ogChanIDs[i] = info.ShortChannelID.ToUint64()
×
2273
                }
×
2274

2275
                return ogChanIDs, nil
×
2276

2277
        case err != nil:
×
2278
                return nil, err
×
2279
        }
2280

2281
        return newChanIDs, nil
128✔
2282
}
2283

2284
// ChannelUpdateInfo couples the SCID of a channel with the timestamps of the
2285
// latest received channel updates for the channel.
2286
type ChannelUpdateInfo struct {
2287
        // ShortChannelID is the SCID identifier of the channel.
2288
        ShortChannelID lnwire.ShortChannelID
2289

2290
        // Node1UpdateTimestamp is the timestamp of the latest received update
2291
        // from the node 1 channel peer. This will be set to zero time if no
2292
        // update has yet been received from this node.
2293
        Node1UpdateTimestamp time.Time
2294

2295
        // Node2UpdateTimestamp is the timestamp of the latest received update
2296
        // from the node 2 channel peer. This will be set to zero time if no
2297
        // update has yet been received from this node.
2298
        Node2UpdateTimestamp time.Time
2299
}
2300

2301
// NewChannelUpdateInfo is a constructor which makes sure we initialize the
2302
// timestamps with zero seconds unix timestamp which equals
2303
// `January 1, 1970, 00:00:00 UTC` in case the value is `time.Time{}`.
2304
func NewChannelUpdateInfo(scid lnwire.ShortChannelID, node1Timestamp,
2305
        node2Timestamp time.Time) ChannelUpdateInfo {
222✔
2306

222✔
2307
        chanInfo := ChannelUpdateInfo{
222✔
2308
                ShortChannelID:       scid,
222✔
2309
                Node1UpdateTimestamp: node1Timestamp,
222✔
2310
                Node2UpdateTimestamp: node2Timestamp,
222✔
2311
        }
222✔
2312

222✔
2313
        if node1Timestamp.IsZero() {
434✔
2314
                chanInfo.Node1UpdateTimestamp = time.Unix(0, 0)
212✔
2315
        }
212✔
2316

2317
        if node2Timestamp.IsZero() {
434✔
2318
                chanInfo.Node2UpdateTimestamp = time.Unix(0, 0)
212✔
2319
        }
212✔
2320

2321
        return chanInfo
222✔
2322
}
2323

2324
// BlockChannelRange represents a range of channels for a given block height.
2325
type BlockChannelRange struct {
2326
        // Height is the height of the block all of the channels below were
2327
        // included in.
2328
        Height uint32
2329

2330
        // Channels is the list of channels identified by their short ID
2331
        // representation known to us that were included in the block height
2332
        // above. The list may include channel update timestamp information if
2333
        // requested.
2334
        Channels []ChannelUpdateInfo
2335
}
2336

2337
// FilterChannelRange returns the channel ID's of all known channels which were
2338
// mined in a block height within the passed range. The channel IDs are grouped
2339
// by their common block height. This method can be used to quickly share with a
2340
// peer the set of channels we know of within a particular range to catch them
2341
// up after a period of time offline. If withTimestamps is true then the
2342
// timestamp info of the latest received channel update messages of the channel
2343
// will be included in the response.
2344
func (c *ChannelGraph) FilterChannelRange(startHeight,
2345
        endHeight uint32, withTimestamps bool) ([]BlockChannelRange, error) {
15✔
2346

15✔
2347
        startChanID := &lnwire.ShortChannelID{
15✔
2348
                BlockHeight: startHeight,
15✔
2349
        }
15✔
2350

15✔
2351
        endChanID := lnwire.ShortChannelID{
15✔
2352
                BlockHeight: endHeight,
15✔
2353
                TxIndex:     math.MaxUint32 & 0x00ffffff,
15✔
2354
                TxPosition:  math.MaxUint16,
15✔
2355
        }
15✔
2356

15✔
2357
        // As we need to perform a range scan, we'll convert the starting and
15✔
2358
        // ending height to their corresponding values when encoded using short
15✔
2359
        // channel ID's.
15✔
2360
        var chanIDStart, chanIDEnd [8]byte
15✔
2361
        byteOrder.PutUint64(chanIDStart[:], startChanID.ToUint64())
15✔
2362
        byteOrder.PutUint64(chanIDEnd[:], endChanID.ToUint64())
15✔
2363

15✔
2364
        var channelsPerBlock map[uint32][]ChannelUpdateInfo
15✔
2365
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
30✔
2366
                edges := tx.ReadBucket(edgeBucket)
15✔
2367
                if edges == nil {
15✔
2368
                        return ErrGraphNoEdgesFound
×
2369
                }
×
2370
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
15✔
2371
                if edgeIndex == nil {
15✔
2372
                        return ErrGraphNoEdgesFound
×
2373
                }
×
2374

2375
                cursor := edgeIndex.ReadCursor()
15✔
2376

15✔
2377
                // We'll now iterate through the database, and find each
15✔
2378
                // channel ID that resides within the specified range.
15✔
2379
                //
15✔
2380
                //nolint:ll
15✔
2381
                for k, v := cursor.Seek(chanIDStart[:]); k != nil &&
15✔
2382
                        bytes.Compare(k, chanIDEnd[:]) <= 0; k, v = cursor.Next() {
63✔
2383
                        // Don't send alias SCIDs during gossip sync.
48✔
2384
                        edgeReader := bytes.NewReader(v)
48✔
2385
                        edgeInfo, err := deserializeChanEdgeInfo(edgeReader)
48✔
2386
                        if err != nil {
48✔
2387
                                return err
×
2388
                        }
×
2389

2390
                        if edgeInfo.AuthProof == nil {
52✔
2391
                                continue
4✔
2392
                        }
2393

2394
                        // This channel ID rests within the target range, so
2395
                        // we'll add it to our returned set.
2396
                        rawCid := byteOrder.Uint64(k)
48✔
2397
                        cid := lnwire.NewShortChanIDFromInt(rawCid)
48✔
2398

48✔
2399
                        chanInfo := NewChannelUpdateInfo(
48✔
2400
                                cid, time.Time{}, time.Time{},
48✔
2401
                        )
48✔
2402

48✔
2403
                        if !withTimestamps {
70✔
2404
                                channelsPerBlock[cid.BlockHeight] = append(
22✔
2405
                                        channelsPerBlock[cid.BlockHeight],
22✔
2406
                                        chanInfo,
22✔
2407
                                )
22✔
2408

22✔
2409
                                continue
22✔
2410
                        }
2411

2412
                        node1Key, node2Key := computeEdgePolicyKeys(&edgeInfo)
26✔
2413

26✔
2414
                        rawPolicy := edges.Get(node1Key)
26✔
2415
                        if len(rawPolicy) != 0 {
36✔
2416
                                r := bytes.NewReader(rawPolicy)
10✔
2417

10✔
2418
                                edge, err := deserializeChanEdgePolicyRaw(r)
10✔
2419
                                if err != nil && !errors.Is(
10✔
2420
                                        err, ErrEdgePolicyOptionalFieldNotFound,
10✔
2421
                                ) {
10✔
2422

×
2423
                                        return err
×
2424
                                }
×
2425

2426
                                chanInfo.Node1UpdateTimestamp = edge.LastUpdate
10✔
2427
                        }
2428

2429
                        rawPolicy = edges.Get(node2Key)
26✔
2430
                        if len(rawPolicy) != 0 {
41✔
2431
                                r := bytes.NewReader(rawPolicy)
15✔
2432

15✔
2433
                                edge, err := deserializeChanEdgePolicyRaw(r)
15✔
2434
                                if err != nil && !errors.Is(
15✔
2435
                                        err, ErrEdgePolicyOptionalFieldNotFound,
15✔
2436
                                ) {
15✔
2437

×
2438
                                        return err
×
2439
                                }
×
2440

2441
                                chanInfo.Node2UpdateTimestamp = edge.LastUpdate
15✔
2442
                        }
2443

2444
                        channelsPerBlock[cid.BlockHeight] = append(
26✔
2445
                                channelsPerBlock[cid.BlockHeight], chanInfo,
26✔
2446
                        )
26✔
2447
                }
2448

2449
                return nil
15✔
2450
        }, func() {
15✔
2451
                channelsPerBlock = make(map[uint32][]ChannelUpdateInfo)
15✔
2452
        })
15✔
2453

2454
        switch {
15✔
2455
        // If we don't know of any channels yet, then there's nothing to
2456
        // filter, so we'll return an empty slice.
2457
        case err == ErrGraphNoEdgesFound || len(channelsPerBlock) == 0:
7✔
2458
                return nil, nil
7✔
2459

2460
        case err != nil:
×
2461
                return nil, err
×
2462
        }
2463

2464
        // Return the channel ranges in ascending block height order.
2465
        blocks := make([]uint32, 0, len(channelsPerBlock))
12✔
2466
        for block := range channelsPerBlock {
38✔
2467
                blocks = append(blocks, block)
26✔
2468
        }
26✔
2469
        sort.Slice(blocks, func(i, j int) bool {
39✔
2470
                return blocks[i] < blocks[j]
27✔
2471
        })
27✔
2472

2473
        channelRanges := make([]BlockChannelRange, 0, len(channelsPerBlock))
12✔
2474
        for _, block := range blocks {
38✔
2475
                channelRanges = append(channelRanges, BlockChannelRange{
26✔
2476
                        Height:   block,
26✔
2477
                        Channels: channelsPerBlock[block],
26✔
2478
                })
26✔
2479
        }
26✔
2480

2481
        return channelRanges, nil
12✔
2482
}
2483

2484
// FetchChanInfos returns the set of channel edges that correspond to the passed
2485
// channel ID's. If an edge is the query is unknown to the database, it will
2486
// skipped and the result will contain only those edges that exist at the time
2487
// of the query. This can be used to respond to peer queries that are seeking to
2488
// fill in gaps in their view of the channel graph.
2489
func (c *ChannelGraph) FetchChanInfos(chanIDs []uint64) ([]ChannelEdge, error) {
7✔
2490
        return c.fetchChanInfos(nil, chanIDs)
7✔
2491
}
7✔
2492

2493
// fetchChanInfos returns the set of channel edges that correspond to the passed
2494
// channel ID's. If an edge is the query is unknown to the database, it will
2495
// skipped and the result will contain only those edges that exist at the time
2496
// of the query. This can be used to respond to peer queries that are seeking to
2497
// fill in gaps in their view of the channel graph.
2498
//
2499
// NOTE: An optional transaction may be provided. If none is provided, then a
2500
// new one will be created.
2501
func (c *ChannelGraph) fetchChanInfos(tx kvdb.RTx, chanIDs []uint64) (
2502
        []ChannelEdge, error) {
27✔
2503
        // TODO(roasbeef): sort cids?
27✔
2504

27✔
2505
        var (
27✔
2506
                chanEdges []ChannelEdge
27✔
2507
                cidBytes  [8]byte
27✔
2508
        )
27✔
2509

27✔
2510
        fetchChanInfos := func(tx kvdb.RTx) error {
54✔
2511
                edges := tx.ReadBucket(edgeBucket)
27✔
2512
                if edges == nil {
27✔
2513
                        return ErrGraphNoEdgesFound
×
2514
                }
×
2515
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
27✔
2516
                if edgeIndex == nil {
27✔
2517
                        return ErrGraphNoEdgesFound
×
2518
                }
×
2519
                nodes := tx.ReadBucket(nodeBucket)
27✔
2520
                if nodes == nil {
27✔
2521
                        return ErrGraphNotFound
×
2522
                }
×
2523

2524
                for _, cid := range chanIDs {
61✔
2525
                        byteOrder.PutUint64(cidBytes[:], cid)
34✔
2526

34✔
2527
                        // First, we'll fetch the static edge information. If
34✔
2528
                        // the edge is unknown, we will skip the edge and
34✔
2529
                        // continue gathering all known edges.
34✔
2530
                        edgeInfo, err := fetchChanEdgeInfo(
34✔
2531
                                edgeIndex, cidBytes[:],
34✔
2532
                        )
34✔
2533
                        switch {
34✔
2534
                        case errors.Is(err, ErrEdgeNotFound):
26✔
2535
                                continue
26✔
2536
                        case err != nil:
×
2537
                                return err
×
2538
                        }
2539

2540
                        // With the static information obtained, we'll now
2541
                        // fetch the dynamic policy info.
2542
                        edge1, edge2, err := fetchChanEdgePolicies(
12✔
2543
                                edgeIndex, edges, cidBytes[:],
12✔
2544
                        )
12✔
2545
                        if err != nil {
12✔
2546
                                return err
×
2547
                        }
×
2548

2549
                        node1, err := fetchLightningNode(
12✔
2550
                                nodes, edgeInfo.NodeKey1Bytes[:],
12✔
2551
                        )
12✔
2552
                        if err != nil {
12✔
2553
                                return err
×
2554
                        }
×
2555

2556
                        node2, err := fetchLightningNode(
12✔
2557
                                nodes, edgeInfo.NodeKey2Bytes[:],
12✔
2558
                        )
12✔
2559
                        if err != nil {
12✔
2560
                                return err
×
2561
                        }
×
2562

2563
                        chanEdges = append(chanEdges, ChannelEdge{
12✔
2564
                                Info:    &edgeInfo,
12✔
2565
                                Policy1: edge1,
12✔
2566
                                Policy2: edge2,
12✔
2567
                                Node1:   &node1,
12✔
2568
                                Node2:   &node2,
12✔
2569
                        })
12✔
2570
                }
2571
                return nil
27✔
2572
        }
2573

2574
        if tx == nil {
35✔
2575
                err := kvdb.View(c.db, fetchChanInfos, func() {
16✔
2576
                        chanEdges = nil
8✔
2577
                })
8✔
2578
                if err != nil {
8✔
2579
                        return nil, err
×
2580
                }
×
2581

2582
                return chanEdges, nil
8✔
2583
        }
2584

2585
        err := fetchChanInfos(tx)
19✔
2586
        if err != nil {
19✔
2587
                return nil, err
×
2588
        }
×
2589

2590
        return chanEdges, nil
19✔
2591
}
2592

2593
func delEdgeUpdateIndexEntry(edgesBucket kvdb.RwBucket, chanID uint64,
2594
        edge1, edge2 *models.ChannelEdgePolicy) error {
147✔
2595

147✔
2596
        // First, we'll fetch the edge update index bucket which currently
147✔
2597
        // stores an entry for the channel we're about to delete.
147✔
2598
        updateIndex := edgesBucket.NestedReadWriteBucket(edgeUpdateIndexBucket)
147✔
2599
        if updateIndex == nil {
147✔
2600
                // No edges in bucket, return early.
×
2601
                return nil
×
2602
        }
×
2603

2604
        // Now that we have the bucket, we'll attempt to construct a template
2605
        // for the index key: updateTime || chanid.
2606
        var indexKey [8 + 8]byte
147✔
2607
        byteOrder.PutUint64(indexKey[8:], chanID)
147✔
2608

147✔
2609
        // With the template constructed, we'll attempt to delete an entry that
147✔
2610
        // would have been created by both edges: we'll alternate the update
147✔
2611
        // times, as one may had overridden the other.
147✔
2612
        if edge1 != nil {
161✔
2613
                byteOrder.PutUint64(
14✔
2614
                        indexKey[:8], uint64(edge1.LastUpdate.Unix()),
14✔
2615
                )
14✔
2616
                if err := updateIndex.Delete(indexKey[:]); err != nil {
14✔
2617
                        return err
×
2618
                }
×
2619
        }
2620

2621
        // We'll also attempt to delete the entry that may have been created by
2622
        // the second edge.
2623
        if edge2 != nil {
163✔
2624
                byteOrder.PutUint64(
16✔
2625
                        indexKey[:8], uint64(edge2.LastUpdate.Unix()),
16✔
2626
                )
16✔
2627
                if err := updateIndex.Delete(indexKey[:]); err != nil {
16✔
2628
                        return err
×
2629
                }
×
2630
        }
2631

2632
        return nil
147✔
2633
}
2634

2635
// delChannelEdgeUnsafe deletes the edge with the given chanID from the graph
2636
// cache. It then goes on to delete any policy info and edge info for this
2637
// channel from the DB and finally, if isZombie is true, it will add an entry
2638
// for this channel in the zombie index.
2639
//
2640
// NOTE: this method MUST only be called if the cacheMu has already been
2641
// acquired.
2642
func (c *ChannelGraph) delChannelEdgeUnsafe(edges, edgeIndex, chanIndex,
2643
        zombieIndex kvdb.RwBucket, chanID []byte, isZombie,
2644
        strictZombie bool) error {
204✔
2645

204✔
2646
        edgeInfo, err := fetchChanEdgeInfo(edgeIndex, chanID)
204✔
2647
        if err != nil {
261✔
2648
                return err
57✔
2649
        }
57✔
2650

2651
        if c.graphCache != nil {
294✔
2652
                c.graphCache.RemoveChannel(
147✔
2653
                        edgeInfo.NodeKey1Bytes, edgeInfo.NodeKey2Bytes,
147✔
2654
                        edgeInfo.ChannelID,
147✔
2655
                )
147✔
2656
        }
147✔
2657

2658
        // We'll also remove the entry in the edge update index bucket before
2659
        // we delete the edges themselves so we can access their last update
2660
        // times.
2661
        cid := byteOrder.Uint64(chanID)
147✔
2662
        edge1, edge2, err := fetchChanEdgePolicies(edgeIndex, edges, chanID)
147✔
2663
        if err != nil {
147✔
2664
                return err
×
2665
        }
×
2666
        err = delEdgeUpdateIndexEntry(edges, cid, edge1, edge2)
147✔
2667
        if err != nil {
147✔
2668
                return err
×
2669
        }
×
2670

2671
        // The edge key is of the format pubKey || chanID. First we construct
2672
        // the latter half, populating the channel ID.
2673
        var edgeKey [33 + 8]byte
147✔
2674
        copy(edgeKey[33:], chanID)
147✔
2675

147✔
2676
        // With the latter half constructed, copy over the first public key to
147✔
2677
        // delete the edge in this direction, then the second to delete the
147✔
2678
        // edge in the opposite direction.
147✔
2679
        copy(edgeKey[:33], edgeInfo.NodeKey1Bytes[:])
147✔
2680
        if edges.Get(edgeKey[:]) != nil {
294✔
2681
                if err := edges.Delete(edgeKey[:]); err != nil {
147✔
2682
                        return err
×
2683
                }
×
2684
        }
2685
        copy(edgeKey[:33], edgeInfo.NodeKey2Bytes[:])
147✔
2686
        if edges.Get(edgeKey[:]) != nil {
294✔
2687
                if err := edges.Delete(edgeKey[:]); err != nil {
147✔
2688
                        return err
×
2689
                }
×
2690
        }
2691

2692
        // As part of deleting the edge we also remove all disabled entries
2693
        // from the edgePolicyDisabledIndex bucket. We do that for both
2694
        // directions.
2695
        updateEdgePolicyDisabledIndex(edges, cid, false, false)
147✔
2696
        updateEdgePolicyDisabledIndex(edges, cid, true, false)
147✔
2697

147✔
2698
        // With the edge data deleted, we can purge the information from the two
147✔
2699
        // edge indexes.
147✔
2700
        if err := edgeIndex.Delete(chanID); err != nil {
147✔
2701
                return err
×
2702
        }
×
2703
        var b bytes.Buffer
147✔
2704
        if err := WriteOutpoint(&b, &edgeInfo.ChannelPoint); err != nil {
147✔
2705
                return err
×
2706
        }
×
2707
        if err := chanIndex.Delete(b.Bytes()); err != nil {
147✔
2708
                return err
×
2709
        }
×
2710

2711
        // Finally, we'll mark the edge as a zombie within our index if it's
2712
        // being removed due to the channel becoming a zombie. We do this to
2713
        // ensure we don't store unnecessary data for spent channels.
2714
        if !isZombie {
272✔
2715
                return nil
125✔
2716
        }
125✔
2717

2718
        nodeKey1, nodeKey2 := edgeInfo.NodeKey1Bytes, edgeInfo.NodeKey2Bytes
26✔
2719
        if strictZombie {
29✔
2720
                nodeKey1, nodeKey2 = makeZombiePubkeys(&edgeInfo, edge1, edge2)
3✔
2721
        }
3✔
2722

2723
        return markEdgeZombie(
26✔
2724
                zombieIndex, byteOrder.Uint64(chanID), nodeKey1, nodeKey2,
26✔
2725
        )
26✔
2726
}
2727

2728
// makeZombiePubkeys derives the node pubkeys to store in the zombie index for a
2729
// particular pair of channel policies. The return values are one of:
2730
//  1. (pubkey1, pubkey2)
2731
//  2. (pubkey1, blank)
2732
//  3. (blank, pubkey2)
2733
//
2734
// A blank pubkey means that corresponding node will be unable to resurrect a
2735
// channel on its own. For example, node1 may continue to publish recent
2736
// updates, but node2 has fallen way behind. After marking an edge as a zombie,
2737
// we don't want another fresh update from node1 to resurrect, as the edge can
2738
// only become live once node2 finally sends something recent.
2739
//
2740
// In the case where we have neither update, we allow either party to resurrect
2741
// the channel. If the channel were to be marked zombie again, it would be
2742
// marked with the correct lagging channel since we received an update from only
2743
// one side.
2744
func makeZombiePubkeys(info *models.ChannelEdgeInfo,
2745
        e1, e2 *models.ChannelEdgePolicy) ([33]byte, [33]byte) {
3✔
2746

3✔
2747
        switch {
3✔
2748
        // If we don't have either edge policy, we'll return both pubkeys so
2749
        // that the channel can be resurrected by either party.
UNCOV
2750
        case e1 == nil && e2 == nil:
×
UNCOV
2751
                return info.NodeKey1Bytes, info.NodeKey2Bytes
×
2752

2753
        // If we're missing edge1, or if both edges are present but edge1 is
2754
        // older, we'll return edge1's pubkey and a blank pubkey for edge2. This
2755
        // means that only an update from edge1 will be able to resurrect the
2756
        // channel.
2757
        case e1 == nil || (e2 != nil && e1.LastUpdate.Before(e2.LastUpdate)):
1✔
2758
                return info.NodeKey1Bytes, [33]byte{}
1✔
2759

2760
        // Otherwise, we're missing edge2 or edge2 is the older side, so we
2761
        // return a blank pubkey for edge1. In this case, only an update from
2762
        // edge2 can resurect the channel.
2763
        default:
2✔
2764
                return [33]byte{}, info.NodeKey2Bytes
2✔
2765
        }
2766
}
2767

2768
// UpdateEdgePolicy updates the edge routing policy for a single directed edge
2769
// within the database for the referenced channel. The `flags` attribute within
2770
// the ChannelEdgePolicy determines which of the directed edges are being
2771
// updated. If the flag is 1, then the first node's information is being
2772
// updated, otherwise it's the second node's information. The node ordering is
2773
// determined by the lexicographical ordering of the identity public keys of the
2774
// nodes on either side of the channel.
2775
func (c *ChannelGraph) UpdateEdgePolicy(edge *models.ChannelEdgePolicy,
2776
        op ...batch.SchedulerOption) error {
2,667✔
2777

2,667✔
2778
        var (
2,667✔
2779
                isUpdate1    bool
2,667✔
2780
                edgeNotFound bool
2,667✔
2781
        )
2,667✔
2782

2,667✔
2783
        r := &batch.Request{
2,667✔
2784
                Reset: func() {
5,334✔
2785
                        isUpdate1 = false
2,667✔
2786
                        edgeNotFound = false
2,667✔
2787
                },
2,667✔
2788
                Update: func(tx kvdb.RwTx) error {
2,667✔
2789
                        var err error
2,667✔
2790
                        isUpdate1, err = updateEdgePolicy(
2,667✔
2791
                                tx, edge, c.graphCache,
2,667✔
2792
                        )
2,667✔
2793

2,667✔
2794
                        // Silence ErrEdgeNotFound so that the batch can
2,667✔
2795
                        // succeed, but propagate the error via local state.
2,667✔
2796
                        if errors.Is(err, ErrEdgeNotFound) {
2,670✔
2797
                                edgeNotFound = true
3✔
2798
                                return nil
3✔
2799
                        }
3✔
2800

2801
                        return err
2,664✔
2802
                },
2803
                OnCommit: func(err error) error {
2,667✔
2804
                        switch {
2,667✔
2805
                        case err != nil:
×
2806
                                return err
×
2807
                        case edgeNotFound:
3✔
2808
                                return ErrEdgeNotFound
3✔
2809
                        default:
2,664✔
2810
                                c.updateEdgeCache(edge, isUpdate1)
2,664✔
2811
                                return nil
2,664✔
2812
                        }
2813
                },
2814
        }
2815

2816
        for _, f := range op {
2,671✔
2817
                f(r)
4✔
2818
        }
4✔
2819

2820
        return c.chanScheduler.Execute(r)
2,667✔
2821
}
2822

2823
func (c *ChannelGraph) updateEdgeCache(e *models.ChannelEdgePolicy,
2824
        isUpdate1 bool) {
2,664✔
2825

2,664✔
2826
        // If an entry for this channel is found in reject cache, we'll modify
2,664✔
2827
        // the entry with the updated timestamp for the direction that was just
2,664✔
2828
        // written. If the edge doesn't exist, we'll load the cache entry lazily
2,664✔
2829
        // during the next query for this edge.
2,664✔
2830
        if entry, ok := c.rejectCache.get(e.ChannelID); ok {
2,673✔
2831
                if isUpdate1 {
16✔
2832
                        entry.upd1Time = e.LastUpdate.Unix()
7✔
2833
                } else {
13✔
2834
                        entry.upd2Time = e.LastUpdate.Unix()
6✔
2835
                }
6✔
2836
                c.rejectCache.insert(e.ChannelID, entry)
9✔
2837
        }
2838

2839
        // If an entry for this channel is found in channel cache, we'll modify
2840
        // the entry with the updated policy for the direction that was just
2841
        // written. If the edge doesn't exist, we'll defer loading the info and
2842
        // policies and lazily read from disk during the next query.
2843
        if channel, ok := c.chanCache.get(e.ChannelID); ok {
2,668✔
2844
                if isUpdate1 {
8✔
2845
                        channel.Policy1 = e
4✔
2846
                } else {
8✔
2847
                        channel.Policy2 = e
4✔
2848
                }
4✔
2849
                c.chanCache.insert(e.ChannelID, channel)
4✔
2850
        }
2851
}
2852

2853
// updateEdgePolicy attempts to update an edge's policy within the relevant
2854
// buckets using an existing database transaction. The returned boolean will be
2855
// true if the updated policy belongs to node1, and false if the policy belonged
2856
// to node2.
2857
func updateEdgePolicy(tx kvdb.RwTx, edge *models.ChannelEdgePolicy,
2858
        graphCache *GraphCache) (bool, error) {
2,667✔
2859

2,667✔
2860
        edges := tx.ReadWriteBucket(edgeBucket)
2,667✔
2861
        if edges == nil {
2,667✔
2862
                return false, ErrEdgeNotFound
×
2863
        }
×
2864
        edgeIndex := edges.NestedReadWriteBucket(edgeIndexBucket)
2,667✔
2865
        if edgeIndex == nil {
2,667✔
2866
                return false, ErrEdgeNotFound
×
2867
        }
×
2868

2869
        // Create the channelID key be converting the channel ID
2870
        // integer into a byte slice.
2871
        var chanID [8]byte
2,667✔
2872
        byteOrder.PutUint64(chanID[:], edge.ChannelID)
2,667✔
2873

2,667✔
2874
        // With the channel ID, we then fetch the value storing the two
2,667✔
2875
        // nodes which connect this channel edge.
2,667✔
2876
        nodeInfo := edgeIndex.Get(chanID[:])
2,667✔
2877
        if nodeInfo == nil {
2,670✔
2878
                return false, ErrEdgeNotFound
3✔
2879
        }
3✔
2880

2881
        // Depending on the flags value passed above, either the first
2882
        // or second edge policy is being updated.
2883
        var fromNode, toNode []byte
2,664✔
2884
        var isUpdate1 bool
2,664✔
2885
        if edge.ChannelFlags&lnwire.ChanUpdateDirection == 0 {
4,002✔
2886
                fromNode = nodeInfo[:33]
1,338✔
2887
                toNode = nodeInfo[33:66]
1,338✔
2888
                isUpdate1 = true
1,338✔
2889
        } else {
2,668✔
2890
                fromNode = nodeInfo[33:66]
1,330✔
2891
                toNode = nodeInfo[:33]
1,330✔
2892
                isUpdate1 = false
1,330✔
2893
        }
1,330✔
2894

2895
        // Finally, with the direction of the edge being updated
2896
        // identified, we update the on-disk edge representation.
2897
        err := putChanEdgePolicy(edges, edge, fromNode, toNode)
2,664✔
2898
        if err != nil {
2,664✔
2899
                return false, err
×
2900
        }
×
2901

2902
        var (
2,664✔
2903
                fromNodePubKey route.Vertex
2,664✔
2904
                toNodePubKey   route.Vertex
2,664✔
2905
        )
2,664✔
2906
        copy(fromNodePubKey[:], fromNode)
2,664✔
2907
        copy(toNodePubKey[:], toNode)
2,664✔
2908

2,664✔
2909
        if graphCache != nil {
4,942✔
2910
                graphCache.UpdatePolicy(
2,278✔
2911
                        edge, fromNodePubKey, toNodePubKey, isUpdate1,
2,278✔
2912
                )
2,278✔
2913
        }
2,278✔
2914

2915
        return isUpdate1, nil
2,664✔
2916
}
2917

2918
// isPublic determines whether the node is seen as public within the graph from
2919
// the source node's point of view. An existing database transaction can also be
2920
// specified.
2921
func (c *ChannelGraph) isPublic(tx kvdb.RTx, nodePub route.Vertex,
2922
        sourcePubKey []byte) (bool, error) {
17✔
2923

17✔
2924
        // In order to determine whether this node is publicly advertised within
17✔
2925
        // the graph, we'll need to look at all of its edges and check whether
17✔
2926
        // they extend to any other node than the source node. errDone will be
17✔
2927
        // used to terminate the check early.
17✔
2928
        nodeIsPublic := false
17✔
2929
        errDone := errors.New("done")
17✔
2930
        err := c.ForEachNodeChannelTx(tx, nodePub, func(tx kvdb.RTx,
17✔
2931
                info *models.ChannelEdgeInfo, _ *models.ChannelEdgePolicy,
17✔
2932
                _ *models.ChannelEdgePolicy) error {
31✔
2933

14✔
2934
                // If this edge doesn't extend to the source node, we'll
14✔
2935
                // terminate our search as we can now conclude that the node is
14✔
2936
                // publicly advertised within the graph due to the local node
14✔
2937
                // knowing of the current edge.
14✔
2938
                if !bytes.Equal(info.NodeKey1Bytes[:], sourcePubKey) &&
14✔
2939
                        !bytes.Equal(info.NodeKey2Bytes[:], sourcePubKey) {
21✔
2940

7✔
2941
                        nodeIsPublic = true
7✔
2942
                        return errDone
7✔
2943
                }
7✔
2944

2945
                // Since the edge _does_ extend to the source node, we'll also
2946
                // need to ensure that this is a public edge.
2947
                if info.AuthProof != nil {
21✔
2948
                        nodeIsPublic = true
10✔
2949
                        return errDone
10✔
2950
                }
10✔
2951

2952
                // Otherwise, we'll continue our search.
2953
                return nil
5✔
2954
        })
2955
        if err != nil && err != errDone {
17✔
2956
                return false, err
×
2957
        }
×
2958

2959
        return nodeIsPublic, nil
17✔
2960
}
2961

2962
// FetchLightningNodeTx attempts to look up a target node by its identity
2963
// public key. If the node isn't found in the database, then
2964
// ErrGraphNodeNotFound is returned. An optional transaction may be provided.
2965
// If none is provided, then a new one will be created.
2966
func (c *ChannelGraph) FetchLightningNodeTx(tx kvdb.RTx, nodePub route.Vertex) (
2967
        *models.LightningNode, error) {
2,944✔
2968

2,944✔
2969
        return c.fetchLightningNode(tx, nodePub)
2,944✔
2970
}
2,944✔
2971

2972
// FetchLightningNode attempts to look up a target node by its identity public
2973
// key. If the node isn't found in the database, then ErrGraphNodeNotFound is
2974
// returned.
2975
func (c *ChannelGraph) FetchLightningNode(nodePub route.Vertex) (
2976
        *models.LightningNode, error) {
841✔
2977

841✔
2978
        return c.fetchLightningNode(nil, nodePub)
841✔
2979
}
841✔
2980

2981
// fetchLightningNode attempts to look up a target node by its identity public
2982
// key. If the node isn't found in the database, then ErrGraphNodeNotFound is
2983
// returned. An optional transaction may be provided. If none is provided, then
2984
// a new one will be created.
2985
func (c *ChannelGraph) fetchLightningNode(tx kvdb.RTx,
2986
        nodePub route.Vertex) (*models.LightningNode, error) {
3,785✔
2987

3,785✔
2988
        var node *models.LightningNode
3,785✔
2989
        fetch := func(tx kvdb.RTx) error {
7,570✔
2990
                // First grab the nodes bucket which stores the mapping from
3,785✔
2991
                // pubKey to node information.
3,785✔
2992
                nodes := tx.ReadBucket(nodeBucket)
3,785✔
2993
                if nodes == nil {
3,785✔
2994
                        return ErrGraphNotFound
×
2995
                }
×
2996

2997
                // If a key for this serialized public key isn't found, then
2998
                // the target node doesn't exist within the database.
2999
                nodeBytes := nodes.Get(nodePub[:])
3,785✔
3000
                if nodeBytes == nil {
3,803✔
3001
                        return ErrGraphNodeNotFound
18✔
3002
                }
18✔
3003

3004
                // If the node is found, then we can de deserialize the node
3005
                // information to return to the user.
3006
                nodeReader := bytes.NewReader(nodeBytes)
3,771✔
3007
                n, err := deserializeLightningNode(nodeReader)
3,771✔
3008
                if err != nil {
3,771✔
3009
                        return err
×
3010
                }
×
3011

3012
                node = &n
3,771✔
3013

3,771✔
3014
                return nil
3,771✔
3015
        }
3016

3017
        if tx == nil {
4,626✔
3018
                err := kvdb.View(
841✔
3019
                        c.db, fetch, func() {
1,682✔
3020
                                node = nil
841✔
3021
                        },
841✔
3022
                )
3023
                if err != nil {
859✔
3024
                        return nil, err
18✔
3025
                }
18✔
3026

3027
                return node, nil
827✔
3028
        }
3029

3030
        err := fetch(tx)
2,944✔
3031
        if err != nil {
2,944✔
3032
                return nil, err
×
3033
        }
×
3034

3035
        return node, nil
2,944✔
3036
}
3037

3038
// graphCacheNode is a struct that wraps a LightningNode in a way that it can be
3039
// cached in the graph cache.
3040
type graphCacheNode struct {
3041
        pubKeyBytes route.Vertex
3042
        features    *lnwire.FeatureVector
3043
}
3044

3045
// newGraphCacheNode returns a new cache optimized node.
3046
func newGraphCacheNode(pubKey route.Vertex,
3047
        features *lnwire.FeatureVector) *graphCacheNode {
736✔
3048

736✔
3049
        return &graphCacheNode{
736✔
3050
                pubKeyBytes: pubKey,
736✔
3051
                features:    features,
736✔
3052
        }
736✔
3053
}
736✔
3054

3055
// PubKey returns the node's public identity key.
3056
func (n *graphCacheNode) PubKey() route.Vertex {
736✔
3057
        return n.pubKeyBytes
736✔
3058
}
736✔
3059

3060
// Features returns the node's features.
3061
func (n *graphCacheNode) Features() *lnwire.FeatureVector {
716✔
3062
        return n.features
716✔
3063
}
716✔
3064

3065
// ForEachChannel iterates through all channels of this node, executing the
3066
// passed callback with an edge info structure and the policies of each end
3067
// of the channel. The first edge policy is the outgoing edge *to* the
3068
// connecting node, while the second is the incoming edge *from* the
3069
// connecting node. If the callback returns an error, then the iteration is
3070
// halted with the error propagated back up to the caller.
3071
//
3072
// Unknown policies are passed into the callback as nil values.
3073
func (n *graphCacheNode) ForEachChannel(tx kvdb.RTx,
3074
        cb func(kvdb.RTx, *models.ChannelEdgeInfo, *models.ChannelEdgePolicy,
3075
                *models.ChannelEdgePolicy) error) error {
636✔
3076

636✔
3077
        return nodeTraversal(tx, n.pubKeyBytes[:], nil, cb)
636✔
3078
}
636✔
3079

3080
var _ GraphCacheNode = (*graphCacheNode)(nil)
3081

3082
// HasLightningNode determines if the graph has a vertex identified by the
3083
// target node identity public key. If the node exists in the database, a
3084
// timestamp of when the data for the node was lasted updated is returned along
3085
// with a true boolean. Otherwise, an empty time.Time is returned with a false
3086
// boolean.
3087
func (c *ChannelGraph) HasLightningNode(nodePub [33]byte) (time.Time, bool,
3088
        error) {
20✔
3089

20✔
3090
        var (
20✔
3091
                updateTime time.Time
20✔
3092
                exists     bool
20✔
3093
        )
20✔
3094

20✔
3095
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
40✔
3096
                // First grab the nodes bucket which stores the mapping from
20✔
3097
                // pubKey to node information.
20✔
3098
                nodes := tx.ReadBucket(nodeBucket)
20✔
3099
                if nodes == nil {
20✔
3100
                        return ErrGraphNotFound
×
3101
                }
×
3102

3103
                // If a key for this serialized public key isn't found, we can
3104
                // exit early.
3105
                nodeBytes := nodes.Get(nodePub[:])
20✔
3106
                if nodeBytes == nil {
27✔
3107
                        exists = false
7✔
3108
                        return nil
7✔
3109
                }
7✔
3110

3111
                // Otherwise we continue on to obtain the time stamp
3112
                // representing the last time the data for this node was
3113
                // updated.
3114
                nodeReader := bytes.NewReader(nodeBytes)
17✔
3115
                node, err := deserializeLightningNode(nodeReader)
17✔
3116
                if err != nil {
17✔
3117
                        return err
×
3118
                }
×
3119

3120
                exists = true
17✔
3121
                updateTime = node.LastUpdate
17✔
3122
                return nil
17✔
3123
        }, func() {
20✔
3124
                updateTime = time.Time{}
20✔
3125
                exists = false
20✔
3126
        })
20✔
3127
        if err != nil {
20✔
3128
                return time.Time{}, exists, err
×
3129
        }
×
3130

3131
        return updateTime, exists, nil
20✔
3132
}
3133

3134
// nodeTraversal is used to traverse all channels of a node given by its
3135
// public key and passes channel information into the specified callback.
3136
func nodeTraversal(tx kvdb.RTx, nodePub []byte, db kvdb.Backend,
3137
        cb func(kvdb.RTx, *models.ChannelEdgeInfo, *models.ChannelEdgePolicy,
3138
                *models.ChannelEdgePolicy) error) error {
1,882✔
3139

1,882✔
3140
        traversal := func(tx kvdb.RTx) error {
3,764✔
3141
                edges := tx.ReadBucket(edgeBucket)
1,882✔
3142
                if edges == nil {
1,882✔
3143
                        return ErrGraphNotFound
×
3144
                }
×
3145
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
1,882✔
3146
                if edgeIndex == nil {
1,882✔
3147
                        return ErrGraphNoEdgesFound
×
3148
                }
×
3149

3150
                // In order to reach all the edges for this node, we take
3151
                // advantage of the construction of the key-space within the
3152
                // edge bucket. The keys are stored in the form: pubKey ||
3153
                // chanID. Therefore, starting from a chanID of zero, we can
3154
                // scan forward in the bucket, grabbing all the edges for the
3155
                // node. Once the prefix no longer matches, then we know we're
3156
                // done.
3157
                var nodeStart [33 + 8]byte
1,882✔
3158
                copy(nodeStart[:], nodePub)
1,882✔
3159
                copy(nodeStart[33:], chanStart[:])
1,882✔
3160

1,882✔
3161
                // Starting from the key pubKey || 0, we seek forward in the
1,882✔
3162
                // bucket until the retrieved key no longer has the public key
1,882✔
3163
                // as its prefix. This indicates that we've stepped over into
1,882✔
3164
                // another node's edges, so we can terminate our scan.
1,882✔
3165
                edgeCursor := edges.ReadCursor()
1,882✔
3166
                for nodeEdge, _ := edgeCursor.Seek(nodeStart[:]); bytes.HasPrefix(nodeEdge, nodePub); nodeEdge, _ = edgeCursor.Next() { //nolint:ll
5,735✔
3167
                        // If the prefix still matches, the channel id is
3,853✔
3168
                        // returned in nodeEdge. Channel id is used to lookup
3,853✔
3169
                        // the node at the other end of the channel and both
3,853✔
3170
                        // edge policies.
3,853✔
3171
                        chanID := nodeEdge[33:]
3,853✔
3172
                        edgeInfo, err := fetchChanEdgeInfo(edgeIndex, chanID)
3,853✔
3173
                        if err != nil {
3,853✔
3174
                                return err
×
3175
                        }
×
3176

3177
                        outgoingPolicy, err := fetchChanEdgePolicy(
3,853✔
3178
                                edges, chanID, nodePub,
3,853✔
3179
                        )
3,853✔
3180
                        if err != nil {
3,853✔
3181
                                return err
×
3182
                        }
×
3183

3184
                        otherNode, err := edgeInfo.OtherNodeKeyBytes(nodePub)
3,853✔
3185
                        if err != nil {
3,853✔
3186
                                return err
×
3187
                        }
×
3188

3189
                        incomingPolicy, err := fetchChanEdgePolicy(
3,853✔
3190
                                edges, chanID, otherNode[:],
3,853✔
3191
                        )
3,853✔
3192
                        if err != nil {
3,853✔
3193
                                return err
×
3194
                        }
×
3195

3196
                        // Finally, we execute the callback.
3197
                        err = cb(tx, &edgeInfo, outgoingPolicy, incomingPolicy)
3,853✔
3198
                        if err != nil {
3,866✔
3199
                                return err
13✔
3200
                        }
13✔
3201
                }
3202

3203
                return nil
1,873✔
3204
        }
3205

3206
        // If no transaction was provided, then we'll create a new transaction
3207
        // to execute the transaction within.
3208
        if tx == nil {
1,895✔
3209
                return kvdb.View(db, traversal, func() {})
26✔
3210
        }
3211

3212
        // Otherwise, we re-use the existing transaction to execute the graph
3213
        // traversal.
3214
        return traversal(tx)
1,873✔
3215
}
3216

3217
// ForEachNodeChannel iterates through all channels of the given node,
3218
// executing the passed callback with an edge info structure and the policies
3219
// of each end of the channel. The first edge policy is the outgoing edge *to*
3220
// the connecting node, while the second is the incoming edge *from* the
3221
// connecting node. If the callback returns an error, then the iteration is
3222
// halted with the error propagated back up to the caller.
3223
//
3224
// Unknown policies are passed into the callback as nil values.
3225
func (c *ChannelGraph) ForEachNodeChannel(nodePub route.Vertex,
3226
        cb func(kvdb.RTx, *models.ChannelEdgeInfo, *models.ChannelEdgePolicy,
3227
                *models.ChannelEdgePolicy) error) error {
10✔
3228

10✔
3229
        return nodeTraversal(nil, nodePub[:], c.db, cb)
10✔
3230
}
10✔
3231

3232
// ForEachNodeChannelTx iterates through all channels of the given node,
3233
// executing the passed callback with an edge info structure and the policies
3234
// of each end of the channel. The first edge policy is the outgoing edge *to*
3235
// the connecting node, while the second is the incoming edge *from* the
3236
// connecting node. If the callback returns an error, then the iteration is
3237
// halted with the error propagated back up to the caller.
3238
//
3239
// Unknown policies are passed into the callback as nil values.
3240
//
3241
// If the caller wishes to re-use an existing boltdb transaction, then it
3242
// should be passed as the first argument.  Otherwise, the first argument should
3243
// be nil and a fresh transaction will be created to execute the graph
3244
// traversal.
3245
func (c *ChannelGraph) ForEachNodeChannelTx(tx kvdb.RTx,
3246
        nodePub route.Vertex, cb func(kvdb.RTx, *models.ChannelEdgeInfo,
3247
                *models.ChannelEdgePolicy,
3248
                *models.ChannelEdgePolicy) error) error {
1,002✔
3249

1,002✔
3250
        return nodeTraversal(tx, nodePub[:], c.db, cb)
1,002✔
3251
}
1,002✔
3252

3253
// FetchOtherNode attempts to fetch the full LightningNode that's opposite of
3254
// the target node in the channel. This is useful when one knows the pubkey of
3255
// one of the nodes, and wishes to obtain the full LightningNode for the other
3256
// end of the channel.
3257
func (c *ChannelGraph) FetchOtherNode(tx kvdb.RTx,
3258
        channel *models.ChannelEdgeInfo, thisNodeKey []byte) (
3259
        *models.LightningNode, error) {
4✔
3260

4✔
3261
        // Ensure that the node passed in is actually a member of the channel.
4✔
3262
        var targetNodeBytes [33]byte
4✔
3263
        switch {
4✔
3264
        case bytes.Equal(channel.NodeKey1Bytes[:], thisNodeKey):
4✔
3265
                targetNodeBytes = channel.NodeKey2Bytes
4✔
3266
        case bytes.Equal(channel.NodeKey2Bytes[:], thisNodeKey):
4✔
3267
                targetNodeBytes = channel.NodeKey1Bytes
4✔
3268
        default:
×
3269
                return nil, fmt.Errorf("node not participating in this channel")
×
3270
        }
3271

3272
        var targetNode *models.LightningNode
4✔
3273
        fetchNodeFunc := func(tx kvdb.RTx) error {
8✔
3274
                // First grab the nodes bucket which stores the mapping from
4✔
3275
                // pubKey to node information.
4✔
3276
                nodes := tx.ReadBucket(nodeBucket)
4✔
3277
                if nodes == nil {
4✔
3278
                        return ErrGraphNotFound
×
3279
                }
×
3280

3281
                node, err := fetchLightningNode(nodes, targetNodeBytes[:])
4✔
3282
                if err != nil {
4✔
3283
                        return err
×
3284
                }
×
3285

3286
                targetNode = &node
4✔
3287

4✔
3288
                return nil
4✔
3289
        }
3290

3291
        // If the transaction is nil, then we'll need to create a new one,
3292
        // otherwise we can use the existing db transaction.
3293
        var err error
4✔
3294
        if tx == nil {
4✔
3295
                err = kvdb.View(c.db, fetchNodeFunc, func() {
×
3296
                        targetNode = nil
×
3297
                })
×
3298
        } else {
4✔
3299
                err = fetchNodeFunc(tx)
4✔
3300
        }
4✔
3301

3302
        return targetNode, err
4✔
3303
}
3304

3305
// computeEdgePolicyKeys is a helper function that can be used to compute the
3306
// keys used to index the channel edge policy info for the two nodes of the
3307
// edge. The keys for node 1 and node 2 are returned respectively.
3308
func computeEdgePolicyKeys(info *models.ChannelEdgeInfo) ([]byte, []byte) {
26✔
3309
        var (
26✔
3310
                node1Key [33 + 8]byte
26✔
3311
                node2Key [33 + 8]byte
26✔
3312
        )
26✔
3313

26✔
3314
        copy(node1Key[:], info.NodeKey1Bytes[:])
26✔
3315
        copy(node2Key[:], info.NodeKey2Bytes[:])
26✔
3316

26✔
3317
        byteOrder.PutUint64(node1Key[33:], info.ChannelID)
26✔
3318
        byteOrder.PutUint64(node2Key[33:], info.ChannelID)
26✔
3319

26✔
3320
        return node1Key[:], node2Key[:]
26✔
3321
}
26✔
3322

3323
// FetchChannelEdgesByOutpoint attempts to lookup the two directed edges for
3324
// the channel identified by the funding outpoint. If the channel can't be
3325
// found, then ErrEdgeNotFound is returned. A struct which houses the general
3326
// information for the channel itself is returned as well as two structs that
3327
// contain the routing policies for the channel in either direction.
3328
func (c *ChannelGraph) FetchChannelEdgesByOutpoint(op *wire.OutPoint) (
3329
        *models.ChannelEdgeInfo, *models.ChannelEdgePolicy,
3330
        *models.ChannelEdgePolicy, error) {
15✔
3331

15✔
3332
        var (
15✔
3333
                edgeInfo *models.ChannelEdgeInfo
15✔
3334
                policy1  *models.ChannelEdgePolicy
15✔
3335
                policy2  *models.ChannelEdgePolicy
15✔
3336
        )
15✔
3337

15✔
3338
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
30✔
3339
                // First, grab the node bucket. This will be used to populate
15✔
3340
                // the Node pointers in each edge read from disk.
15✔
3341
                nodes := tx.ReadBucket(nodeBucket)
15✔
3342
                if nodes == nil {
15✔
3343
                        return ErrGraphNotFound
×
3344
                }
×
3345

3346
                // Next, grab the edge bucket which stores the edges, and also
3347
                // the index itself so we can group the directed edges together
3348
                // logically.
3349
                edges := tx.ReadBucket(edgeBucket)
15✔
3350
                if edges == nil {
15✔
3351
                        return ErrGraphNoEdgesFound
×
3352
                }
×
3353
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
15✔
3354
                if edgeIndex == nil {
15✔
3355
                        return ErrGraphNoEdgesFound
×
3356
                }
×
3357

3358
                // If the channel's outpoint doesn't exist within the outpoint
3359
                // index, then the edge does not exist.
3360
                chanIndex := edges.NestedReadBucket(channelPointBucket)
15✔
3361
                if chanIndex == nil {
15✔
3362
                        return ErrGraphNoEdgesFound
×
3363
                }
×
3364
                var b bytes.Buffer
15✔
3365
                if err := WriteOutpoint(&b, op); err != nil {
15✔
3366
                        return err
×
3367
                }
×
3368
                chanID := chanIndex.Get(b.Bytes())
15✔
3369
                if chanID == nil {
29✔
3370
                        return fmt.Errorf("%w: op=%v", ErrEdgeNotFound, op)
14✔
3371
                }
14✔
3372

3373
                // If the channel is found to exists, then we'll first retrieve
3374
                // the general information for the channel.
3375
                edge, err := fetchChanEdgeInfo(edgeIndex, chanID)
5✔
3376
                if err != nil {
5✔
3377
                        return fmt.Errorf("%w: chanID=%x", err, chanID)
×
3378
                }
×
3379
                edgeInfo = &edge
5✔
3380

5✔
3381
                // Once we have the information about the channels' parameters,
5✔
3382
                // we'll fetch the routing policies for each for the directed
5✔
3383
                // edges.
5✔
3384
                e1, e2, err := fetchChanEdgePolicies(edgeIndex, edges, chanID)
5✔
3385
                if err != nil {
5✔
3386
                        return fmt.Errorf("failed to find policy: %w", err)
×
3387
                }
×
3388

3389
                policy1 = e1
5✔
3390
                policy2 = e2
5✔
3391
                return nil
5✔
3392
        }, func() {
15✔
3393
                edgeInfo = nil
15✔
3394
                policy1 = nil
15✔
3395
                policy2 = nil
15✔
3396
        })
15✔
3397
        if err != nil {
29✔
3398
                return nil, nil, nil, err
14✔
3399
        }
14✔
3400

3401
        return edgeInfo, policy1, policy2, nil
5✔
3402
}
3403

3404
// FetchChannelEdgesByID attempts to lookup the two directed edges for the
3405
// channel identified by the channel ID. If the channel can't be found, then
3406
// ErrEdgeNotFound is returned. A struct which houses the general information
3407
// for the channel itself is returned as well as two structs that contain the
3408
// routing policies for the channel in either direction.
3409
//
3410
// ErrZombieEdge an be returned if the edge is currently marked as a zombie
3411
// within the database. In this case, the ChannelEdgePolicy's will be nil, and
3412
// the ChannelEdgeInfo will only include the public keys of each node.
3413
func (c *ChannelGraph) FetchChannelEdgesByID(chanID uint64) (
3414
        *models.ChannelEdgeInfo, *models.ChannelEdgePolicy,
3415
        *models.ChannelEdgePolicy, error) {
29✔
3416

29✔
3417
        var (
29✔
3418
                edgeInfo  *models.ChannelEdgeInfo
29✔
3419
                policy1   *models.ChannelEdgePolicy
29✔
3420
                policy2   *models.ChannelEdgePolicy
29✔
3421
                channelID [8]byte
29✔
3422
        )
29✔
3423

29✔
3424
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
58✔
3425
                // First, grab the node bucket. This will be used to populate
29✔
3426
                // the Node pointers in each edge read from disk.
29✔
3427
                nodes := tx.ReadBucket(nodeBucket)
29✔
3428
                if nodes == nil {
29✔
3429
                        return ErrGraphNotFound
×
3430
                }
×
3431

3432
                // Next, grab the edge bucket which stores the edges, and also
3433
                // the index itself so we can group the directed edges together
3434
                // logically.
3435
                edges := tx.ReadBucket(edgeBucket)
29✔
3436
                if edges == nil {
29✔
3437
                        return ErrGraphNoEdgesFound
×
3438
                }
×
3439
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
29✔
3440
                if edgeIndex == nil {
29✔
3441
                        return ErrGraphNoEdgesFound
×
3442
                }
×
3443

3444
                byteOrder.PutUint64(channelID[:], chanID)
29✔
3445

29✔
3446
                // Now, attempt to fetch edge.
29✔
3447
                edge, err := fetchChanEdgeInfo(edgeIndex, channelID[:])
29✔
3448

29✔
3449
                // If it doesn't exist, we'll quickly check our zombie index to
29✔
3450
                // see if we've previously marked it as so.
29✔
3451
                if errors.Is(err, ErrEdgeNotFound) {
34✔
3452
                        // If the zombie index doesn't exist, or the edge is not
5✔
3453
                        // marked as a zombie within it, then we'll return the
5✔
3454
                        // original ErrEdgeNotFound error.
5✔
3455
                        zombieIndex := edges.NestedReadBucket(zombieBucket)
5✔
3456
                        if zombieIndex == nil {
5✔
3457
                                return ErrEdgeNotFound
×
3458
                        }
×
3459

3460
                        isZombie, pubKey1, pubKey2 := isZombieEdge(
5✔
3461
                                zombieIndex, chanID,
5✔
3462
                        )
5✔
3463
                        if !isZombie {
9✔
3464
                                return ErrEdgeNotFound
4✔
3465
                        }
4✔
3466

3467
                        // Otherwise, the edge is marked as a zombie, so we'll
3468
                        // populate the edge info with the public keys of each
3469
                        // party as this is the only information we have about
3470
                        // it and return an error signaling so.
3471
                        edgeInfo = &models.ChannelEdgeInfo{
5✔
3472
                                NodeKey1Bytes: pubKey1,
5✔
3473
                                NodeKey2Bytes: pubKey2,
5✔
3474
                        }
5✔
3475
                        return ErrZombieEdge
5✔
3476
                }
3477

3478
                // Otherwise, we'll just return the error if any.
3479
                if err != nil {
28✔
3480
                        return err
×
3481
                }
×
3482

3483
                edgeInfo = &edge
28✔
3484

28✔
3485
                // Then we'll attempt to fetch the accompanying policies of this
28✔
3486
                // edge.
28✔
3487
                e1, e2, err := fetchChanEdgePolicies(
28✔
3488
                        edgeIndex, edges, channelID[:],
28✔
3489
                )
28✔
3490
                if err != nil {
28✔
3491
                        return err
×
3492
                }
×
3493

3494
                policy1 = e1
28✔
3495
                policy2 = e2
28✔
3496
                return nil
28✔
3497
        }, func() {
29✔
3498
                edgeInfo = nil
29✔
3499
                policy1 = nil
29✔
3500
                policy2 = nil
29✔
3501
        })
29✔
3502
        if err == ErrZombieEdge {
34✔
3503
                return edgeInfo, nil, nil, err
5✔
3504
        }
5✔
3505
        if err != nil {
32✔
3506
                return nil, nil, nil, err
4✔
3507
        }
4✔
3508

3509
        return edgeInfo, policy1, policy2, nil
28✔
3510
}
3511

3512
// IsPublicNode is a helper method that determines whether the node with the
3513
// given public key is seen as a public node in the graph from the graph's
3514
// source node's point of view.
3515
func (c *ChannelGraph) IsPublicNode(pubKey [33]byte) (bool, error) {
17✔
3516
        var nodeIsPublic bool
17✔
3517
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
34✔
3518
                nodes := tx.ReadBucket(nodeBucket)
17✔
3519
                if nodes == nil {
17✔
3520
                        return ErrGraphNodesNotFound
×
3521
                }
×
3522
                ourPubKey := nodes.Get(sourceKey)
17✔
3523
                if ourPubKey == nil {
17✔
3524
                        return ErrSourceNodeNotSet
×
3525
                }
×
3526
                node, err := fetchLightningNode(nodes, pubKey[:])
17✔
3527
                if err != nil {
17✔
3528
                        return err
×
3529
                }
×
3530

3531
                nodeIsPublic, err = c.isPublic(tx, node.PubKeyBytes, ourPubKey)
17✔
3532
                return err
17✔
3533
        }, func() {
17✔
3534
                nodeIsPublic = false
17✔
3535
        })
17✔
3536
        if err != nil {
17✔
3537
                return false, err
×
3538
        }
×
3539

3540
        return nodeIsPublic, nil
17✔
3541
}
3542

3543
// genMultiSigP2WSH generates the p2wsh'd multisig script for 2 of 2 pubkeys.
3544
func genMultiSigP2WSH(aPub, bPub []byte) ([]byte, error) {
50✔
3545
        witnessScript, err := input.GenMultiSigScript(aPub, bPub)
50✔
3546
        if err != nil {
50✔
3547
                return nil, err
×
3548
        }
×
3549

3550
        // With the witness script generated, we'll now turn it into a p2wsh
3551
        // script:
3552
        //  * OP_0 <sha256(script)>
3553
        bldr := txscript.NewScriptBuilder(
50✔
3554
                txscript.WithScriptAllocSize(input.P2WSHSize),
50✔
3555
        )
50✔
3556
        bldr.AddOp(txscript.OP_0)
50✔
3557
        scriptHash := sha256.Sum256(witnessScript)
50✔
3558
        bldr.AddData(scriptHash[:])
50✔
3559

50✔
3560
        return bldr.Script()
50✔
3561
}
3562

3563
// EdgePoint couples the outpoint of a channel with the funding script that it
3564
// creates. The FilteredChainView will use this to watch for spends of this
3565
// edge point on chain. We require both of these values as depending on the
3566
// concrete implementation, either the pkScript, or the out point will be used.
3567
type EdgePoint struct {
3568
        // FundingPkScript is the p2wsh multi-sig script of the target channel.
3569
        FundingPkScript []byte
3570

3571
        // OutPoint is the outpoint of the target channel.
3572
        OutPoint wire.OutPoint
3573
}
3574

3575
// String returns a human readable version of the target EdgePoint. We return
3576
// the outpoint directly as it is enough to uniquely identify the edge point.
3577
func (e *EdgePoint) String() string {
×
3578
        return e.OutPoint.String()
×
3579
}
×
3580

3581
// ChannelView returns the verifiable edge information for each active channel
3582
// within the known channel graph. The set of UTXO's (along with their scripts)
3583
// returned are the ones that need to be watched on chain to detect channel
3584
// closes on the resident blockchain.
3585
func (c *ChannelGraph) ChannelView() ([]EdgePoint, error) {
27✔
3586
        var edgePoints []EdgePoint
27✔
3587
        if err := kvdb.View(c.db, func(tx kvdb.RTx) error {
54✔
3588
                // We're going to iterate over the entire channel index, so
27✔
3589
                // we'll need to fetch the edgeBucket to get to the index as
27✔
3590
                // it's a sub-bucket.
27✔
3591
                edges := tx.ReadBucket(edgeBucket)
27✔
3592
                if edges == nil {
27✔
3593
                        return ErrGraphNoEdgesFound
×
3594
                }
×
3595
                chanIndex := edges.NestedReadBucket(channelPointBucket)
27✔
3596
                if chanIndex == nil {
27✔
3597
                        return ErrGraphNoEdgesFound
×
3598
                }
×
3599
                edgeIndex := edges.NestedReadBucket(edgeIndexBucket)
27✔
3600
                if edgeIndex == nil {
27✔
3601
                        return ErrGraphNoEdgesFound
×
3602
                }
×
3603

3604
                // Once we have the proper bucket, we'll range over each key
3605
                // (which is the channel point for the channel) and decode it,
3606
                // accumulating each entry.
3607
                return chanIndex.ForEach(
27✔
3608
                        func(chanPointBytes, chanID []byte) error {
73✔
3609
                                chanPointReader := bytes.NewReader(
46✔
3610
                                        chanPointBytes,
46✔
3611
                                )
46✔
3612

46✔
3613
                                var chanPoint wire.OutPoint
46✔
3614
                                err := ReadOutpoint(chanPointReader, &chanPoint)
46✔
3615
                                if err != nil {
46✔
3616
                                        return err
×
3617
                                }
×
3618

3619
                                edgeInfo, err := fetchChanEdgeInfo(
46✔
3620
                                        edgeIndex, chanID,
46✔
3621
                                )
46✔
3622
                                if err != nil {
46✔
3623
                                        return err
×
3624
                                }
×
3625

3626
                                pkScript, err := genMultiSigP2WSH(
46✔
3627
                                        edgeInfo.BitcoinKey1Bytes[:],
46✔
3628
                                        edgeInfo.BitcoinKey2Bytes[:],
46✔
3629
                                )
46✔
3630
                                if err != nil {
46✔
3631
                                        return err
×
3632
                                }
×
3633

3634
                                edgePoints = append(edgePoints, EdgePoint{
46✔
3635
                                        FundingPkScript: pkScript,
46✔
3636
                                        OutPoint:        chanPoint,
46✔
3637
                                })
46✔
3638

46✔
3639
                                return nil
46✔
3640
                        },
3641
                )
3642
        }, func() {
27✔
3643
                edgePoints = nil
27✔
3644
        }); err != nil {
27✔
3645
                return nil, err
×
3646
        }
×
3647

3648
        return edgePoints, nil
27✔
3649
}
3650

3651
// MarkEdgeZombie attempts to mark a channel identified by its channel ID as a
3652
// zombie. This method is used on an ad-hoc basis, when channels need to be
3653
// marked as zombies outside the normal pruning cycle.
3654
func (c *ChannelGraph) MarkEdgeZombie(chanID uint64,
3655
        pubKey1, pubKey2 [33]byte) error {
125✔
3656

125✔
3657
        c.cacheMu.Lock()
125✔
3658
        defer c.cacheMu.Unlock()
125✔
3659

125✔
3660
        err := kvdb.Batch(c.db, func(tx kvdb.RwTx) error {
250✔
3661
                edges := tx.ReadWriteBucket(edgeBucket)
125✔
3662
                if edges == nil {
125✔
3663
                        return ErrGraphNoEdgesFound
×
3664
                }
×
3665
                zombieIndex, err := edges.CreateBucketIfNotExists(zombieBucket)
125✔
3666
                if err != nil {
125✔
3667
                        return fmt.Errorf("unable to create zombie "+
×
3668
                                "bucket: %w", err)
×
3669
                }
×
3670

3671
                if c.graphCache != nil {
250✔
3672
                        c.graphCache.RemoveChannel(pubKey1, pubKey2, chanID)
125✔
3673
                }
125✔
3674

3675
                return markEdgeZombie(zombieIndex, chanID, pubKey1, pubKey2)
125✔
3676
        })
3677
        if err != nil {
125✔
3678
                return err
×
3679
        }
×
3680

3681
        c.rejectCache.remove(chanID)
125✔
3682
        c.chanCache.remove(chanID)
125✔
3683

125✔
3684
        return nil
125✔
3685
}
3686

3687
// markEdgeZombie marks an edge as a zombie within our zombie index. The public
3688
// keys should represent the node public keys of the two parties involved in the
3689
// edge.
3690
func markEdgeZombie(zombieIndex kvdb.RwBucket, chanID uint64, pubKey1,
3691
        pubKey2 [33]byte) error {
151✔
3692

151✔
3693
        var k [8]byte
151✔
3694
        byteOrder.PutUint64(k[:], chanID)
151✔
3695

151✔
3696
        var v [66]byte
151✔
3697
        copy(v[:33], pubKey1[:])
151✔
3698
        copy(v[33:], pubKey2[:])
151✔
3699

151✔
3700
        return zombieIndex.Put(k[:], v[:])
151✔
3701
}
151✔
3702

3703
// MarkEdgeLive clears an edge from our zombie index, deeming it as live.
3704
func (c *ChannelGraph) MarkEdgeLive(chanID uint64) error {
6✔
3705
        c.cacheMu.Lock()
6✔
3706
        defer c.cacheMu.Unlock()
6✔
3707

6✔
3708
        return c.markEdgeLiveUnsafe(nil, chanID)
6✔
3709
}
6✔
3710

3711
// markEdgeLiveUnsafe clears an edge from the zombie index. This method can be
3712
// called with an existing kvdb.RwTx or the argument can be set to nil in which
3713
// case a new transaction will be created.
3714
//
3715
// NOTE: this method MUST only be called if the cacheMu has already been
3716
// acquired.
3717
func (c *ChannelGraph) markEdgeLiveUnsafe(tx kvdb.RwTx, chanID uint64) error {
25✔
3718
        dbFn := func(tx kvdb.RwTx) error {
50✔
3719
                edges := tx.ReadWriteBucket(edgeBucket)
25✔
3720
                if edges == nil {
25✔
3721
                        return ErrGraphNoEdgesFound
×
3722
                }
×
3723
                zombieIndex := edges.NestedReadWriteBucket(zombieBucket)
25✔
3724
                if zombieIndex == nil {
25✔
3725
                        return nil
×
3726
                }
×
3727

3728
                var k [8]byte
25✔
3729
                byteOrder.PutUint64(k[:], chanID)
25✔
3730

25✔
3731
                if len(zombieIndex.Get(k[:])) == 0 {
26✔
3732
                        return ErrZombieEdgeNotFound
1✔
3733
                }
1✔
3734

3735
                return zombieIndex.Delete(k[:])
24✔
3736
        }
3737

3738
        // If the transaction is nil, we'll create a new one. Otherwise, we use
3739
        // the existing transaction
3740
        var err error
25✔
3741
        if tx == nil {
31✔
3742
                err = kvdb.Update(c.db, dbFn, func() {})
12✔
3743
        } else {
19✔
3744
                err = dbFn(tx)
19✔
3745
        }
19✔
3746
        if err != nil {
26✔
3747
                return err
1✔
3748
        }
1✔
3749

3750
        c.rejectCache.remove(chanID)
24✔
3751
        c.chanCache.remove(chanID)
24✔
3752

24✔
3753
        // We need to add the channel back into our graph cache, otherwise we
24✔
3754
        // won't use it for path finding.
24✔
3755
        if c.graphCache != nil {
48✔
3756
                edgeInfos, err := c.fetchChanInfos(tx, []uint64{chanID})
24✔
3757
                if err != nil {
24✔
3758
                        return err
×
3759
                }
×
3760

3761
                for _, edgeInfo := range edgeInfos {
24✔
3762
                        c.graphCache.AddChannel(
×
3763
                                edgeInfo.Info, edgeInfo.Policy1,
×
3764
                                edgeInfo.Policy2,
×
3765
                        )
×
3766
                }
×
3767
        }
3768

3769
        return nil
24✔
3770
}
3771

3772
// IsZombieEdge returns whether the edge is considered zombie. If it is a
3773
// zombie, then the two node public keys corresponding to this edge are also
3774
// returned.
3775
func (c *ChannelGraph) IsZombieEdge(chanID uint64) (bool, [33]byte, [33]byte) {
5✔
3776
        var (
5✔
3777
                isZombie         bool
5✔
3778
                pubKey1, pubKey2 [33]byte
5✔
3779
        )
5✔
3780

5✔
3781
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
10✔
3782
                edges := tx.ReadBucket(edgeBucket)
5✔
3783
                if edges == nil {
5✔
3784
                        return ErrGraphNoEdgesFound
×
3785
                }
×
3786
                zombieIndex := edges.NestedReadBucket(zombieBucket)
5✔
3787
                if zombieIndex == nil {
5✔
3788
                        return nil
×
3789
                }
×
3790

3791
                isZombie, pubKey1, pubKey2 = isZombieEdge(zombieIndex, chanID)
5✔
3792
                return nil
5✔
3793
        }, func() {
5✔
3794
                isZombie = false
5✔
3795
                pubKey1 = [33]byte{}
5✔
3796
                pubKey2 = [33]byte{}
5✔
3797
        })
5✔
3798
        if err != nil {
5✔
3799
                return false, [33]byte{}, [33]byte{}
×
3800
        }
×
3801

3802
        return isZombie, pubKey1, pubKey2
5✔
3803
}
3804

3805
// isZombieEdge returns whether an entry exists for the given channel in the
3806
// zombie index. If an entry exists, then the two node public keys corresponding
3807
// to this edge are also returned.
3808
func isZombieEdge(zombieIndex kvdb.RBucket,
3809
        chanID uint64) (bool, [33]byte, [33]byte) {
204✔
3810

204✔
3811
        var k [8]byte
204✔
3812
        byteOrder.PutUint64(k[:], chanID)
204✔
3813

204✔
3814
        v := zombieIndex.Get(k[:])
204✔
3815
        if v == nil {
323✔
3816
                return false, [33]byte{}, [33]byte{}
119✔
3817
        }
119✔
3818

3819
        var pubKey1, pubKey2 [33]byte
89✔
3820
        copy(pubKey1[:], v[:33])
89✔
3821
        copy(pubKey2[:], v[33:])
89✔
3822

89✔
3823
        return true, pubKey1, pubKey2
89✔
3824
}
3825

3826
// NumZombies returns the current number of zombie channels in the graph.
3827
func (c *ChannelGraph) NumZombies() (uint64, error) {
4✔
3828
        var numZombies uint64
4✔
3829
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
8✔
3830
                edges := tx.ReadBucket(edgeBucket)
4✔
3831
                if edges == nil {
4✔
3832
                        return nil
×
3833
                }
×
3834
                zombieIndex := edges.NestedReadBucket(zombieBucket)
4✔
3835
                if zombieIndex == nil {
4✔
3836
                        return nil
×
3837
                }
×
3838

3839
                return zombieIndex.ForEach(func(_, _ []byte) error {
6✔
3840
                        numZombies++
2✔
3841
                        return nil
2✔
3842
                })
2✔
3843
        }, func() {
4✔
3844
                numZombies = 0
4✔
3845
        })
4✔
3846
        if err != nil {
4✔
3847
                return 0, err
×
3848
        }
×
3849

3850
        return numZombies, nil
4✔
3851
}
3852

3853
// PutClosedScid stores a SCID for a closed channel in the database. This is so
3854
// that we can ignore channel announcements that we know to be closed without
3855
// having to validate them and fetch a block.
3856
func (c *ChannelGraph) PutClosedScid(scid lnwire.ShortChannelID) error {
1✔
3857
        return kvdb.Update(c.db, func(tx kvdb.RwTx) error {
2✔
3858
                closedScids, err := tx.CreateTopLevelBucket(closedScidBucket)
1✔
3859
                if err != nil {
1✔
3860
                        return err
×
3861
                }
×
3862

3863
                var k [8]byte
1✔
3864
                byteOrder.PutUint64(k[:], scid.ToUint64())
1✔
3865

1✔
3866
                return closedScids.Put(k[:], []byte{})
1✔
3867
        }, func() {})
1✔
3868
}
3869

3870
// IsClosedScid checks whether a channel identified by the passed in scid is
3871
// closed. This helps avoid having to perform expensive validation checks.
3872
// TODO: Add an LRU cache to cut down on disc reads.
3873
func (c *ChannelGraph) IsClosedScid(scid lnwire.ShortChannelID) (bool, error) {
6✔
3874
        var isClosed bool
6✔
3875
        err := kvdb.View(c.db, func(tx kvdb.RTx) error {
12✔
3876
                closedScids := tx.ReadBucket(closedScidBucket)
6✔
3877
                if closedScids == nil {
6✔
3878
                        return ErrClosedScidsNotFound
×
3879
                }
×
3880

3881
                var k [8]byte
6✔
3882
                byteOrder.PutUint64(k[:], scid.ToUint64())
6✔
3883

6✔
3884
                if closedScids.Get(k[:]) != nil {
7✔
3885
                        isClosed = true
1✔
3886
                        return nil
1✔
3887
                }
1✔
3888

3889
                return nil
5✔
3890
        }, func() {
6✔
3891
                isClosed = false
6✔
3892
        })
6✔
3893
        if err != nil {
6✔
3894
                return false, err
×
3895
        }
×
3896

3897
        return isClosed, nil
6✔
3898
}
3899

3900
func putLightningNode(nodeBucket kvdb.RwBucket, aliasBucket kvdb.RwBucket, // nolint:dupl
3901
        updateIndex kvdb.RwBucket, node *models.LightningNode) error {
996✔
3902

996✔
3903
        var (
996✔
3904
                scratch [16]byte
996✔
3905
                b       bytes.Buffer
996✔
3906
        )
996✔
3907

996✔
3908
        pub, err := node.PubKey()
996✔
3909
        if err != nil {
996✔
3910
                return err
×
3911
        }
×
3912
        nodePub := pub.SerializeCompressed()
996✔
3913

996✔
3914
        // If the node has the update time set, write it, else write 0.
996✔
3915
        updateUnix := uint64(0)
996✔
3916
        if node.LastUpdate.Unix() > 0 {
1,863✔
3917
                updateUnix = uint64(node.LastUpdate.Unix())
867✔
3918
        }
867✔
3919

3920
        byteOrder.PutUint64(scratch[:8], updateUnix)
996✔
3921
        if _, err := b.Write(scratch[:8]); err != nil {
996✔
3922
                return err
×
3923
        }
×
3924

3925
        if _, err := b.Write(nodePub); err != nil {
996✔
3926
                return err
×
3927
        }
×
3928

3929
        // If we got a node announcement for this node, we will have the rest
3930
        // of the data available. If not we don't have more data to write.
3931
        if !node.HaveNodeAnnouncement {
1,076✔
3932
                // Write HaveNodeAnnouncement=0.
80✔
3933
                byteOrder.PutUint16(scratch[:2], 0)
80✔
3934
                if _, err := b.Write(scratch[:2]); err != nil {
80✔
3935
                        return err
×
3936
                }
×
3937

3938
                return nodeBucket.Put(nodePub, b.Bytes())
80✔
3939
        }
3940

3941
        // Write HaveNodeAnnouncement=1.
3942
        byteOrder.PutUint16(scratch[:2], 1)
920✔
3943
        if _, err := b.Write(scratch[:2]); err != nil {
920✔
3944
                return err
×
3945
        }
×
3946

3947
        if err := binary.Write(&b, byteOrder, node.Color.R); err != nil {
920✔
3948
                return err
×
3949
        }
×
3950
        if err := binary.Write(&b, byteOrder, node.Color.G); err != nil {
920✔
3951
                return err
×
3952
        }
×
3953
        if err := binary.Write(&b, byteOrder, node.Color.B); err != nil {
920✔
3954
                return err
×
3955
        }
×
3956

3957
        if err := wire.WriteVarString(&b, 0, node.Alias); err != nil {
920✔
3958
                return err
×
3959
        }
×
3960

3961
        if err := node.Features.Encode(&b); err != nil {
920✔
3962
                return err
×
3963
        }
×
3964

3965
        numAddresses := uint16(len(node.Addresses))
920✔
3966
        byteOrder.PutUint16(scratch[:2], numAddresses)
920✔
3967
        if _, err := b.Write(scratch[:2]); err != nil {
920✔
3968
                return err
×
3969
        }
×
3970

3971
        for _, address := range node.Addresses {
2,066✔
3972
                if err := SerializeAddr(&b, address); err != nil {
1,146✔
3973
                        return err
×
3974
                }
×
3975
        }
3976

3977
        sigLen := len(node.AuthSigBytes)
920✔
3978
        if sigLen > 80 {
920✔
3979
                return fmt.Errorf("max sig len allowed is 80, had %v",
×
3980
                        sigLen)
×
3981
        }
×
3982

3983
        err = wire.WriteVarBytes(&b, 0, node.AuthSigBytes)
920✔
3984
        if err != nil {
920✔
3985
                return err
×
3986
        }
×
3987

3988
        if len(node.ExtraOpaqueData) > MaxAllowedExtraOpaqueBytes {
920✔
3989
                return ErrTooManyExtraOpaqueBytes(len(node.ExtraOpaqueData))
×
3990
        }
×
3991
        err = wire.WriteVarBytes(&b, 0, node.ExtraOpaqueData)
920✔
3992
        if err != nil {
920✔
3993
                return err
×
3994
        }
×
3995

3996
        if err := aliasBucket.Put(nodePub, []byte(node.Alias)); err != nil {
920✔
3997
                return err
×
3998
        }
×
3999

4000
        // With the alias bucket updated, we'll now update the index that
4001
        // tracks the time series of node updates.
4002
        var indexKey [8 + 33]byte
920✔
4003
        byteOrder.PutUint64(indexKey[:8], updateUnix)
920✔
4004
        copy(indexKey[8:], nodePub)
920✔
4005

920✔
4006
        // If there was already an old index entry for this node, then we'll
920✔
4007
        // delete the old one before we write the new entry.
920✔
4008
        if nodeBytes := nodeBucket.Get(nodePub); nodeBytes != nil {
1,028✔
4009
                // Extract out the old update time to we can reconstruct the
108✔
4010
                // prior index key to delete it from the index.
108✔
4011
                oldUpdateTime := nodeBytes[:8]
108✔
4012

108✔
4013
                var oldIndexKey [8 + 33]byte
108✔
4014
                copy(oldIndexKey[:8], oldUpdateTime)
108✔
4015
                copy(oldIndexKey[8:], nodePub)
108✔
4016

108✔
4017
                if err := updateIndex.Delete(oldIndexKey[:]); err != nil {
108✔
4018
                        return err
×
4019
                }
×
4020
        }
4021

4022
        if err := updateIndex.Put(indexKey[:], nil); err != nil {
920✔
4023
                return err
×
4024
        }
×
4025

4026
        return nodeBucket.Put(nodePub, b.Bytes())
920✔
4027
}
4028

4029
func fetchLightningNode(nodeBucket kvdb.RBucket,
4030
        nodePub []byte) (models.LightningNode, error) {
3,631✔
4031

3,631✔
4032
        nodeBytes := nodeBucket.Get(nodePub)
3,631✔
4033
        if nodeBytes == nil {
3,710✔
4034
                return models.LightningNode{}, ErrGraphNodeNotFound
79✔
4035
        }
79✔
4036

4037
        nodeReader := bytes.NewReader(nodeBytes)
3,556✔
4038
        return deserializeLightningNode(nodeReader)
3,556✔
4039
}
4040

4041
func deserializeLightningNodeCacheable(r io.Reader) (*graphCacheNode, error) {
124✔
4042
        // Always populate a feature vector, even if we don't have a node
124✔
4043
        // announcement and short circuit below.
124✔
4044
        node := newGraphCacheNode(
124✔
4045
                route.Vertex{},
124✔
4046
                lnwire.EmptyFeatureVector(),
124✔
4047
        )
124✔
4048

124✔
4049
        var nodeScratch [8]byte
124✔
4050

124✔
4051
        // Skip ahead:
124✔
4052
        // - LastUpdate (8 bytes)
124✔
4053
        if _, err := r.Read(nodeScratch[:]); err != nil {
124✔
4054
                return nil, err
×
4055
        }
×
4056

4057
        if _, err := io.ReadFull(r, node.pubKeyBytes[:]); err != nil {
124✔
4058
                return nil, err
×
4059
        }
×
4060

4061
        // Read the node announcement flag.
4062
        if _, err := r.Read(nodeScratch[:2]); err != nil {
124✔
4063
                return nil, err
×
4064
        }
×
4065
        hasNodeAnn := byteOrder.Uint16(nodeScratch[:2])
124✔
4066

124✔
4067
        // The rest of the data is optional, and will only be there if we got a
124✔
4068
        // node announcement for this node.
124✔
4069
        if hasNodeAnn == 0 {
128✔
4070
                return node, nil
4✔
4071
        }
4✔
4072

4073
        // We did get a node announcement for this node, so we'll have the rest
4074
        // of the data available.
4075
        var rgb uint8
124✔
4076
        if err := binary.Read(r, byteOrder, &rgb); err != nil {
124✔
4077
                return nil, err
×
4078
        }
×
4079
        if err := binary.Read(r, byteOrder, &rgb); err != nil {
124✔
4080
                return nil, err
×
4081
        }
×
4082
        if err := binary.Read(r, byteOrder, &rgb); err != nil {
124✔
4083
                return nil, err
×
4084
        }
×
4085

4086
        if _, err := wire.ReadVarString(r, 0); err != nil {
124✔
4087
                return nil, err
×
4088
        }
×
4089

4090
        if err := node.features.Decode(r); err != nil {
124✔
4091
                return nil, err
×
4092
        }
×
4093

4094
        return node, nil
124✔
4095
}
4096

4097
func deserializeLightningNode(r io.Reader) (models.LightningNode, error) {
8,514✔
4098
        var (
8,514✔
4099
                node    models.LightningNode
8,514✔
4100
                scratch [8]byte
8,514✔
4101
                err     error
8,514✔
4102
        )
8,514✔
4103

8,514✔
4104
        // Always populate a feature vector, even if we don't have a node
8,514✔
4105
        // announcement and short circuit below.
8,514✔
4106
        node.Features = lnwire.EmptyFeatureVector()
8,514✔
4107

8,514✔
4108
        if _, err := r.Read(scratch[:]); err != nil {
8,514✔
4109
                return models.LightningNode{}, err
×
4110
        }
×
4111

4112
        unix := int64(byteOrder.Uint64(scratch[:]))
8,514✔
4113
        node.LastUpdate = time.Unix(unix, 0)
8,514✔
4114

8,514✔
4115
        if _, err := io.ReadFull(r, node.PubKeyBytes[:]); err != nil {
8,514✔
4116
                return models.LightningNode{}, err
×
4117
        }
×
4118

4119
        if _, err := r.Read(scratch[:2]); err != nil {
8,514✔
4120
                return models.LightningNode{}, err
×
4121
        }
×
4122

4123
        hasNodeAnn := byteOrder.Uint16(scratch[:2])
8,514✔
4124
        if hasNodeAnn == 1 {
16,884✔
4125
                node.HaveNodeAnnouncement = true
8,370✔
4126
        } else {
8,518✔
4127
                node.HaveNodeAnnouncement = false
148✔
4128
        }
148✔
4129

4130
        // The rest of the data is optional, and will only be there if we got a
4131
        // node announcement for this node.
4132
        if !node.HaveNodeAnnouncement {
8,662✔
4133
                return node, nil
148✔
4134
        }
148✔
4135

4136
        // We did get a node announcement for this node, so we'll have the rest
4137
        // of the data available.
4138
        if err := binary.Read(r, byteOrder, &node.Color.R); err != nil {
8,370✔
4139
                return models.LightningNode{}, err
×
4140
        }
×
4141
        if err := binary.Read(r, byteOrder, &node.Color.G); err != nil {
8,370✔
4142
                return models.LightningNode{}, err
×
4143
        }
×
4144
        if err := binary.Read(r, byteOrder, &node.Color.B); err != nil {
8,370✔
4145
                return models.LightningNode{}, err
×
4146
        }
×
4147

4148
        node.Alias, err = wire.ReadVarString(r, 0)
8,370✔
4149
        if err != nil {
8,370✔
4150
                return models.LightningNode{}, err
×
4151
        }
×
4152

4153
        err = node.Features.Decode(r)
8,370✔
4154
        if err != nil {
8,370✔
4155
                return models.LightningNode{}, err
×
4156
        }
×
4157

4158
        if _, err := r.Read(scratch[:2]); err != nil {
8,370✔
4159
                return models.LightningNode{}, err
×
4160
        }
×
4161
        numAddresses := int(byteOrder.Uint16(scratch[:2]))
8,370✔
4162

8,370✔
4163
        var addresses []net.Addr
8,370✔
4164
        for i := 0; i < numAddresses; i++ {
18,973✔
4165
                address, err := DeserializeAddr(r)
10,603✔
4166
                if err != nil {
10,603✔
4167
                        return models.LightningNode{}, err
×
4168
                }
×
4169
                addresses = append(addresses, address)
10,603✔
4170
        }
4171
        node.Addresses = addresses
8,370✔
4172

8,370✔
4173
        node.AuthSigBytes, err = wire.ReadVarBytes(r, 0, 80, "sig")
8,370✔
4174
        if err != nil {
8,370✔
4175
                return models.LightningNode{}, err
×
4176
        }
×
4177

4178
        // We'll try and see if there are any opaque bytes left, if not, then
4179
        // we'll ignore the EOF error and return the node as is.
4180
        node.ExtraOpaqueData, err = wire.ReadVarBytes(
8,370✔
4181
                r, 0, MaxAllowedExtraOpaqueBytes, "blob",
8,370✔
4182
        )
8,370✔
4183
        switch {
8,370✔
4184
        case err == io.ErrUnexpectedEOF:
×
4185
        case err == io.EOF:
×
4186
        case err != nil:
×
4187
                return models.LightningNode{}, err
×
4188
        }
4189

4190
        return node, nil
8,370✔
4191
}
4192

4193
func putChanEdgeInfo(edgeIndex kvdb.RwBucket,
4194
        edgeInfo *models.ChannelEdgeInfo, chanID [8]byte) error {
1,489✔
4195

1,489✔
4196
        var b bytes.Buffer
1,489✔
4197

1,489✔
4198
        if _, err := b.Write(edgeInfo.NodeKey1Bytes[:]); err != nil {
1,489✔
4199
                return err
×
4200
        }
×
4201
        if _, err := b.Write(edgeInfo.NodeKey2Bytes[:]); err != nil {
1,489✔
4202
                return err
×
4203
        }
×
4204
        if _, err := b.Write(edgeInfo.BitcoinKey1Bytes[:]); err != nil {
1,489✔
4205
                return err
×
4206
        }
×
4207
        if _, err := b.Write(edgeInfo.BitcoinKey2Bytes[:]); err != nil {
1,489✔
4208
                return err
×
4209
        }
×
4210

4211
        if err := wire.WriteVarBytes(&b, 0, edgeInfo.Features); err != nil {
1,489✔
4212
                return err
×
4213
        }
×
4214

4215
        authProof := edgeInfo.AuthProof
1,489✔
4216
        var nodeSig1, nodeSig2, bitcoinSig1, bitcoinSig2 []byte
1,489✔
4217
        if authProof != nil {
2,895✔
4218
                nodeSig1 = authProof.NodeSig1Bytes
1,406✔
4219
                nodeSig2 = authProof.NodeSig2Bytes
1,406✔
4220
                bitcoinSig1 = authProof.BitcoinSig1Bytes
1,406✔
4221
                bitcoinSig2 = authProof.BitcoinSig2Bytes
1,406✔
4222
        }
1,406✔
4223

4224
        if err := wire.WriteVarBytes(&b, 0, nodeSig1); err != nil {
1,489✔
4225
                return err
×
4226
        }
×
4227
        if err := wire.WriteVarBytes(&b, 0, nodeSig2); err != nil {
1,489✔
4228
                return err
×
4229
        }
×
4230
        if err := wire.WriteVarBytes(&b, 0, bitcoinSig1); err != nil {
1,489✔
4231
                return err
×
4232
        }
×
4233
        if err := wire.WriteVarBytes(&b, 0, bitcoinSig2); err != nil {
1,489✔
4234
                return err
×
4235
        }
×
4236

4237
        if err := WriteOutpoint(&b, &edgeInfo.ChannelPoint); err != nil {
1,489✔
4238
                return err
×
4239
        }
×
4240
        err := binary.Write(&b, byteOrder, uint64(edgeInfo.Capacity))
1,489✔
4241
        if err != nil {
1,489✔
4242
                return err
×
4243
        }
×
4244
        if _, err := b.Write(chanID[:]); err != nil {
1,489✔
4245
                return err
×
4246
        }
×
4247
        if _, err := b.Write(edgeInfo.ChainHash[:]); err != nil {
1,489✔
4248
                return err
×
4249
        }
×
4250

4251
        if len(edgeInfo.ExtraOpaqueData) > MaxAllowedExtraOpaqueBytes {
1,489✔
4252
                return ErrTooManyExtraOpaqueBytes(len(edgeInfo.ExtraOpaqueData))
×
4253
        }
×
4254
        err = wire.WriteVarBytes(&b, 0, edgeInfo.ExtraOpaqueData)
1,489✔
4255
        if err != nil {
1,489✔
4256
                return err
×
4257
        }
×
4258

4259
        return edgeIndex.Put(chanID[:], b.Bytes())
1,489✔
4260
}
4261

4262
func fetchChanEdgeInfo(edgeIndex kvdb.RBucket,
4263
        chanID []byte) (models.ChannelEdgeInfo, error) {
4,187✔
4264

4,187✔
4265
        edgeInfoBytes := edgeIndex.Get(chanID)
4,187✔
4266
        if edgeInfoBytes == nil {
4,271✔
4267
                return models.ChannelEdgeInfo{}, ErrEdgeNotFound
84✔
4268
        }
84✔
4269

4270
        edgeInfoReader := bytes.NewReader(edgeInfoBytes)
4,107✔
4271
        return deserializeChanEdgeInfo(edgeInfoReader)
4,107✔
4272
}
4273

4274
func deserializeChanEdgeInfo(r io.Reader) (models.ChannelEdgeInfo, error) {
4,746✔
4275
        var (
4,746✔
4276
                err      error
4,746✔
4277
                edgeInfo models.ChannelEdgeInfo
4,746✔
4278
        )
4,746✔
4279

4,746✔
4280
        if _, err := io.ReadFull(r, edgeInfo.NodeKey1Bytes[:]); err != nil {
4,746✔
4281
                return models.ChannelEdgeInfo{}, err
×
4282
        }
×
4283
        if _, err := io.ReadFull(r, edgeInfo.NodeKey2Bytes[:]); err != nil {
4,746✔
4284
                return models.ChannelEdgeInfo{}, err
×
4285
        }
×
4286
        if _, err := io.ReadFull(r, edgeInfo.BitcoinKey1Bytes[:]); err != nil {
4,746✔
4287
                return models.ChannelEdgeInfo{}, err
×
4288
        }
×
4289
        if _, err := io.ReadFull(r, edgeInfo.BitcoinKey2Bytes[:]); err != nil {
4,746✔
4290
                return models.ChannelEdgeInfo{}, err
×
4291
        }
×
4292

4293
        edgeInfo.Features, err = wire.ReadVarBytes(r, 0, 900, "features")
4,746✔
4294
        if err != nil {
4,746✔
4295
                return models.ChannelEdgeInfo{}, err
×
4296
        }
×
4297

4298
        proof := &models.ChannelAuthProof{}
4,746✔
4299

4,746✔
4300
        proof.NodeSig1Bytes, err = wire.ReadVarBytes(r, 0, 80, "sigs")
4,746✔
4301
        if err != nil {
4,746✔
4302
                return models.ChannelEdgeInfo{}, err
×
4303
        }
×
4304
        proof.NodeSig2Bytes, err = wire.ReadVarBytes(r, 0, 80, "sigs")
4,746✔
4305
        if err != nil {
4,746✔
4306
                return models.ChannelEdgeInfo{}, err
×
4307
        }
×
4308
        proof.BitcoinSig1Bytes, err = wire.ReadVarBytes(r, 0, 80, "sigs")
4,746✔
4309
        if err != nil {
4,746✔
4310
                return models.ChannelEdgeInfo{}, err
×
4311
        }
×
4312
        proof.BitcoinSig2Bytes, err = wire.ReadVarBytes(r, 0, 80, "sigs")
4,746✔
4313
        if err != nil {
4,746✔
4314
                return models.ChannelEdgeInfo{}, err
×
4315
        }
×
4316

4317
        if !proof.IsEmpty() {
6,539✔
4318
                edgeInfo.AuthProof = proof
1,793✔
4319
        }
1,793✔
4320

4321
        edgeInfo.ChannelPoint = wire.OutPoint{}
4,746✔
4322
        if err := ReadOutpoint(r, &edgeInfo.ChannelPoint); err != nil {
4,746✔
4323
                return models.ChannelEdgeInfo{}, err
×
4324
        }
×
4325
        if err := binary.Read(r, byteOrder, &edgeInfo.Capacity); err != nil {
4,746✔
4326
                return models.ChannelEdgeInfo{}, err
×
4327
        }
×
4328
        if err := binary.Read(r, byteOrder, &edgeInfo.ChannelID); err != nil {
4,746✔
4329
                return models.ChannelEdgeInfo{}, err
×
4330
        }
×
4331

4332
        if _, err := io.ReadFull(r, edgeInfo.ChainHash[:]); err != nil {
4,746✔
4333
                return models.ChannelEdgeInfo{}, err
×
4334
        }
×
4335

4336
        // We'll try and see if there are any opaque bytes left, if not, then
4337
        // we'll ignore the EOF error and return the edge as is.
4338
        edgeInfo.ExtraOpaqueData, err = wire.ReadVarBytes(
4,746✔
4339
                r, 0, MaxAllowedExtraOpaqueBytes, "blob",
4,746✔
4340
        )
4,746✔
4341
        switch {
4,746✔
4342
        case err == io.ErrUnexpectedEOF:
×
4343
        case err == io.EOF:
×
4344
        case err != nil:
×
4345
                return models.ChannelEdgeInfo{}, err
×
4346
        }
4347

4348
        return edgeInfo, nil
4,746✔
4349
}
4350

4351
func putChanEdgePolicy(edges kvdb.RwBucket, edge *models.ChannelEdgePolicy,
4352
        from, to []byte) error {
2,664✔
4353

2,664✔
4354
        var edgeKey [33 + 8]byte
2,664✔
4355
        copy(edgeKey[:], from)
2,664✔
4356
        byteOrder.PutUint64(edgeKey[33:], edge.ChannelID)
2,664✔
4357

2,664✔
4358
        var b bytes.Buffer
2,664✔
4359
        if err := serializeChanEdgePolicy(&b, edge, to); err != nil {
2,664✔
4360
                return err
×
4361
        }
×
4362

4363
        // Before we write out the new edge, we'll create a new entry in the
4364
        // update index in order to keep it fresh.
4365
        updateUnix := uint64(edge.LastUpdate.Unix())
2,664✔
4366
        var indexKey [8 + 8]byte
2,664✔
4367
        byteOrder.PutUint64(indexKey[:8], updateUnix)
2,664✔
4368
        byteOrder.PutUint64(indexKey[8:], edge.ChannelID)
2,664✔
4369

2,664✔
4370
        updateIndex, err := edges.CreateBucketIfNotExists(edgeUpdateIndexBucket)
2,664✔
4371
        if err != nil {
2,664✔
4372
                return err
×
4373
        }
×
4374

4375
        // If there was already an entry for this edge, then we'll need to
4376
        // delete the old one to ensure we don't leave around any after-images.
4377
        // An unknown policy value does not have a update time recorded, so
4378
        // it also does not need to be removed.
4379
        if edgeBytes := edges.Get(edgeKey[:]); edgeBytes != nil &&
2,664✔
4380
                !bytes.Equal(edgeBytes[:], unknownPolicy) {
2,692✔
4381

28✔
4382
                // In order to delete the old entry, we'll need to obtain the
28✔
4383
                // *prior* update time in order to delete it. To do this, we'll
28✔
4384
                // need to deserialize the existing policy within the database
28✔
4385
                // (now outdated by the new one), and delete its corresponding
28✔
4386
                // entry within the update index. We'll ignore any
28✔
4387
                // ErrEdgePolicyOptionalFieldNotFound error, as we only need
28✔
4388
                // the channel ID and update time to delete the entry.
28✔
4389
                // TODO(halseth): get rid of these invalid policies in a
28✔
4390
                // migration.
28✔
4391
                oldEdgePolicy, err := deserializeChanEdgePolicy(
28✔
4392
                        bytes.NewReader(edgeBytes),
28✔
4393
                )
28✔
4394
                if err != nil && err != ErrEdgePolicyOptionalFieldNotFound {
28✔
4395
                        return err
×
4396
                }
×
4397

4398
                oldUpdateTime := uint64(oldEdgePolicy.LastUpdate.Unix())
28✔
4399

28✔
4400
                var oldIndexKey [8 + 8]byte
28✔
4401
                byteOrder.PutUint64(oldIndexKey[:8], oldUpdateTime)
28✔
4402
                byteOrder.PutUint64(oldIndexKey[8:], edge.ChannelID)
28✔
4403

28✔
4404
                if err := updateIndex.Delete(oldIndexKey[:]); err != nil {
28✔
4405
                        return err
×
4406
                }
×
4407
        }
4408

4409
        if err := updateIndex.Put(indexKey[:], nil); err != nil {
2,664✔
4410
                return err
×
4411
        }
×
4412

4413
        updateEdgePolicyDisabledIndex(
2,664✔
4414
                edges, edge.ChannelID,
2,664✔
4415
                edge.ChannelFlags&lnwire.ChanUpdateDirection > 0,
2,664✔
4416
                edge.IsDisabled(),
2,664✔
4417
        )
2,664✔
4418

2,664✔
4419
        return edges.Put(edgeKey[:], b.Bytes()[:])
2,664✔
4420
}
4421

4422
// updateEdgePolicyDisabledIndex is used to update the disabledEdgePolicyIndex
4423
// bucket by either add a new disabled ChannelEdgePolicy or remove an existing
4424
// one.
4425
// The direction represents the direction of the edge and disabled is used for
4426
// deciding whether to remove or add an entry to the bucket.
4427
// In general a channel is disabled if two entries for the same chanID exist
4428
// in this bucket.
4429
// Maintaining the bucket this way allows a fast retrieval of disabled
4430
// channels, for example when prune is needed.
4431
func updateEdgePolicyDisabledIndex(edges kvdb.RwBucket, chanID uint64,
4432
        direction bool, disabled bool) error {
2,950✔
4433

2,950✔
4434
        var disabledEdgeKey [8 + 1]byte
2,950✔
4435
        byteOrder.PutUint64(disabledEdgeKey[0:], chanID)
2,950✔
4436
        if direction {
4,423✔
4437
                disabledEdgeKey[8] = 1
1,473✔
4438
        }
1,473✔
4439

4440
        disabledEdgePolicyIndex, err := edges.CreateBucketIfNotExists(
2,950✔
4441
                disabledEdgePolicyBucket,
2,950✔
4442
        )
2,950✔
4443
        if err != nil {
2,950✔
4444
                return err
×
4445
        }
×
4446

4447
        if disabled {
2,980✔
4448
                return disabledEdgePolicyIndex.Put(disabledEdgeKey[:], []byte{})
30✔
4449
        }
30✔
4450

4451
        return disabledEdgePolicyIndex.Delete(disabledEdgeKey[:])
2,924✔
4452
}
4453

4454
// putChanEdgePolicyUnknown marks the edge policy as unknown
4455
// in the edges bucket.
4456
func putChanEdgePolicyUnknown(edges kvdb.RwBucket, channelID uint64,
4457
        from []byte) error {
2,972✔
4458

2,972✔
4459
        var edgeKey [33 + 8]byte
2,972✔
4460
        copy(edgeKey[:], from)
2,972✔
4461
        byteOrder.PutUint64(edgeKey[33:], channelID)
2,972✔
4462

2,972✔
4463
        if edges.Get(edgeKey[:]) != nil {
2,972✔
4464
                return fmt.Errorf("cannot write unknown policy for channel %v "+
×
4465
                        " when there is already a policy present", channelID)
×
4466
        }
×
4467

4468
        return edges.Put(edgeKey[:], unknownPolicy)
2,972✔
4469
}
4470

4471
func fetchChanEdgePolicy(edges kvdb.RBucket, chanID []byte,
4472
        nodePub []byte) (*models.ChannelEdgePolicy, error) {
8,180✔
4473

8,180✔
4474
        var edgeKey [33 + 8]byte
8,180✔
4475
        copy(edgeKey[:], nodePub)
8,180✔
4476
        copy(edgeKey[33:], chanID[:])
8,180✔
4477

8,180✔
4478
        edgeBytes := edges.Get(edgeKey[:])
8,180✔
4479
        if edgeBytes == nil {
8,180✔
4480
                return nil, ErrEdgeNotFound
×
4481
        }
×
4482

4483
        // No need to deserialize unknown policy.
4484
        if bytes.Equal(edgeBytes[:], unknownPolicy) {
8,557✔
4485
                return nil, nil
377✔
4486
        }
377✔
4487

4488
        edgeReader := bytes.NewReader(edgeBytes)
7,807✔
4489

7,807✔
4490
        ep, err := deserializeChanEdgePolicy(edgeReader)
7,807✔
4491
        switch {
7,807✔
4492
        // If the db policy was missing an expected optional field, we return
4493
        // nil as if the policy was unknown.
4494
        case err == ErrEdgePolicyOptionalFieldNotFound:
1✔
4495
                return nil, nil
1✔
4496

4497
        case err != nil:
×
4498
                return nil, err
×
4499
        }
4500

4501
        return ep, nil
7,806✔
4502
}
4503

4504
func fetchChanEdgePolicies(edgeIndex kvdb.RBucket, edges kvdb.RBucket,
4505
        chanID []byte) (*models.ChannelEdgePolicy, *models.ChannelEdgePolicy,
4506
        error) {
243✔
4507

243✔
4508
        edgeInfo := edgeIndex.Get(chanID)
243✔
4509
        if edgeInfo == nil {
243✔
4510
                return nil, nil, fmt.Errorf("%w: chanID=%x", ErrEdgeNotFound,
×
4511
                        chanID)
×
4512
        }
×
4513

4514
        // The first node is contained within the first half of the edge
4515
        // information. We only propagate the error here and below if it's
4516
        // something other than edge non-existence.
4517
        node1Pub := edgeInfo[:33]
243✔
4518
        edge1, err := fetchChanEdgePolicy(edges, chanID, node1Pub)
243✔
4519
        if err != nil {
243✔
4520
                return nil, nil, fmt.Errorf("%w: node1Pub=%x", ErrEdgeNotFound,
×
4521
                        node1Pub)
×
4522
        }
×
4523

4524
        // Similarly, the second node is contained within the latter
4525
        // half of the edge information.
4526
        node2Pub := edgeInfo[33:66]
243✔
4527
        edge2, err := fetchChanEdgePolicy(edges, chanID, node2Pub)
243✔
4528
        if err != nil {
243✔
4529
                return nil, nil, fmt.Errorf("%w: node2Pub=%x", ErrEdgeNotFound,
×
4530
                        node2Pub)
×
4531
        }
×
4532

4533
        return edge1, edge2, nil
243✔
4534
}
4535

4536
func serializeChanEdgePolicy(w io.Writer, edge *models.ChannelEdgePolicy,
4537
        to []byte) error {
2,666✔
4538

2,666✔
4539
        err := wire.WriteVarBytes(w, 0, edge.SigBytes)
2,666✔
4540
        if err != nil {
2,666✔
4541
                return err
×
4542
        }
×
4543

4544
        if err := binary.Write(w, byteOrder, edge.ChannelID); err != nil {
2,666✔
4545
                return err
×
4546
        }
×
4547

4548
        var scratch [8]byte
2,666✔
4549
        updateUnix := uint64(edge.LastUpdate.Unix())
2,666✔
4550
        byteOrder.PutUint64(scratch[:], updateUnix)
2,666✔
4551
        if _, err := w.Write(scratch[:]); err != nil {
2,666✔
4552
                return err
×
4553
        }
×
4554

4555
        if err := binary.Write(w, byteOrder, edge.MessageFlags); err != nil {
2,666✔
4556
                return err
×
4557
        }
×
4558
        if err := binary.Write(w, byteOrder, edge.ChannelFlags); err != nil {
2,666✔
4559
                return err
×
4560
        }
×
4561
        if err := binary.Write(w, byteOrder, edge.TimeLockDelta); err != nil {
2,666✔
4562
                return err
×
4563
        }
×
4564
        if err := binary.Write(w, byteOrder, uint64(edge.MinHTLC)); err != nil {
2,666✔
4565
                return err
×
4566
        }
×
4567
        err = binary.Write(w, byteOrder, uint64(edge.FeeBaseMSat))
2,666✔
4568
        if err != nil {
2,666✔
4569
                return err
×
4570
        }
×
4571
        err = binary.Write(
2,666✔
4572
                w, byteOrder, uint64(edge.FeeProportionalMillionths),
2,666✔
4573
        )
2,666✔
4574
        if err != nil {
2,666✔
4575
                return err
×
4576
        }
×
4577

4578
        if _, err := w.Write(to); err != nil {
2,666✔
4579
                return err
×
4580
        }
×
4581

4582
        // If the max_htlc field is present, we write it. To be compatible with
4583
        // older versions that wasn't aware of this field, we write it as part
4584
        // of the opaque data.
4585
        // TODO(halseth): clean up when moving to TLV.
4586
        var opaqueBuf bytes.Buffer
2,666✔
4587
        if edge.MessageFlags.HasMaxHtlc() {
4,948✔
4588
                err := binary.Write(&opaqueBuf, byteOrder, uint64(edge.MaxHTLC))
2,282✔
4589
                if err != nil {
2,282✔
4590
                        return err
×
4591
                }
×
4592
        }
4593

4594
        if len(edge.ExtraOpaqueData) > MaxAllowedExtraOpaqueBytes {
2,666✔
4595
                return ErrTooManyExtraOpaqueBytes(len(edge.ExtraOpaqueData))
×
4596
        }
×
4597
        if _, err := opaqueBuf.Write(edge.ExtraOpaqueData); err != nil {
2,666✔
4598
                return err
×
4599
        }
×
4600

4601
        if err := wire.WriteVarBytes(w, 0, opaqueBuf.Bytes()); err != nil {
2,666✔
4602
                return err
×
4603
        }
×
4604
        return nil
2,666✔
4605
}
4606

4607
func deserializeChanEdgePolicy(r io.Reader) (*models.ChannelEdgePolicy, error) {
7,832✔
4608
        // Deserialize the policy. Note that in case an optional field is not
7,832✔
4609
        // found, both an error and a populated policy object are returned.
7,832✔
4610
        edge, deserializeErr := deserializeChanEdgePolicyRaw(r)
7,832✔
4611
        if deserializeErr != nil &&
7,832✔
4612
                deserializeErr != ErrEdgePolicyOptionalFieldNotFound {
7,832✔
4613

×
4614
                return nil, deserializeErr
×
4615
        }
×
4616

4617
        return edge, deserializeErr
7,832✔
4618
}
4619

4620
func deserializeChanEdgePolicyRaw(r io.Reader) (*models.ChannelEdgePolicy,
4621
        error) {
8,839✔
4622

8,839✔
4623
        edge := &models.ChannelEdgePolicy{}
8,839✔
4624

8,839✔
4625
        var err error
8,839✔
4626
        edge.SigBytes, err = wire.ReadVarBytes(r, 0, 80, "sig")
8,839✔
4627
        if err != nil {
8,839✔
4628
                return nil, err
×
4629
        }
×
4630

4631
        if err := binary.Read(r, byteOrder, &edge.ChannelID); err != nil {
8,839✔
4632
                return nil, err
×
4633
        }
×
4634

4635
        var scratch [8]byte
8,839✔
4636
        if _, err := r.Read(scratch[:]); err != nil {
8,839✔
4637
                return nil, err
×
4638
        }
×
4639
        unix := int64(byteOrder.Uint64(scratch[:]))
8,839✔
4640
        edge.LastUpdate = time.Unix(unix, 0)
8,839✔
4641

8,839✔
4642
        if err := binary.Read(r, byteOrder, &edge.MessageFlags); err != nil {
8,839✔
4643
                return nil, err
×
4644
        }
×
4645
        if err := binary.Read(r, byteOrder, &edge.ChannelFlags); err != nil {
8,839✔
4646
                return nil, err
×
4647
        }
×
4648
        if err := binary.Read(r, byteOrder, &edge.TimeLockDelta); err != nil {
8,839✔
4649
                return nil, err
×
4650
        }
×
4651

4652
        var n uint64
8,839✔
4653
        if err := binary.Read(r, byteOrder, &n); err != nil {
8,839✔
4654
                return nil, err
×
4655
        }
×
4656
        edge.MinHTLC = lnwire.MilliSatoshi(n)
8,839✔
4657

8,839✔
4658
        if err := binary.Read(r, byteOrder, &n); err != nil {
8,839✔
4659
                return nil, err
×
4660
        }
×
4661
        edge.FeeBaseMSat = lnwire.MilliSatoshi(n)
8,839✔
4662

8,839✔
4663
        if err := binary.Read(r, byteOrder, &n); err != nil {
8,839✔
4664
                return nil, err
×
4665
        }
×
4666
        edge.FeeProportionalMillionths = lnwire.MilliSatoshi(n)
8,839✔
4667

8,839✔
4668
        if _, err := r.Read(edge.ToNode[:]); err != nil {
8,839✔
4669
                return nil, err
×
4670
        }
×
4671

4672
        // We'll try and see if there are any opaque bytes left, if not, then
4673
        // we'll ignore the EOF error and return the edge as is.
4674
        edge.ExtraOpaqueData, err = wire.ReadVarBytes(
8,839✔
4675
                r, 0, MaxAllowedExtraOpaqueBytes, "blob",
8,839✔
4676
        )
8,839✔
4677
        switch {
8,839✔
4678
        case err == io.ErrUnexpectedEOF:
×
4679
        case err == io.EOF:
3✔
4680
        case err != nil:
×
4681
                return nil, err
×
4682
        }
4683

4684
        // See if optional fields are present.
4685
        if edge.MessageFlags.HasMaxHtlc() {
17,298✔
4686
                // The max_htlc field should be at the beginning of the opaque
8,459✔
4687
                // bytes.
8,459✔
4688
                opq := edge.ExtraOpaqueData
8,459✔
4689

8,459✔
4690
                // If the max_htlc field is not present, it might be old data
8,459✔
4691
                // stored before this field was validated. We'll return the
8,459✔
4692
                // edge along with an error.
8,459✔
4693
                if len(opq) < 8 {
8,462✔
4694
                        return edge, ErrEdgePolicyOptionalFieldNotFound
3✔
4695
                }
3✔
4696

4697
                maxHtlc := byteOrder.Uint64(opq[:8])
8,456✔
4698
                edge.MaxHTLC = lnwire.MilliSatoshi(maxHtlc)
8,456✔
4699

8,456✔
4700
                // Exclude the parsed field from the rest of the opaque data.
8,456✔
4701
                edge.ExtraOpaqueData = opq[8:]
8,456✔
4702
        }
4703

4704
        return edge, nil
8,836✔
4705
}
4706

4707
// MakeTestGraph creates a new instance of the ChannelGraph for testing
4708
// purposes.
4709
func MakeTestGraph(t testing.TB, modifiers ...OptionModifier) (*ChannelGraph,
4710
        error) {
39✔
4711

39✔
4712
        opts := DefaultOptions()
39✔
4713
        for _, modifier := range modifiers {
39✔
4714
                modifier(opts)
×
4715
        }
×
4716

4717
        // Next, create channelgraph for the first time.
4718
        backend, backendCleanup, err := kvdb.GetTestBackend(t.TempDir(), "cgr")
39✔
4719
        if err != nil {
39✔
4720
                backendCleanup()
×
4721
                return nil, err
×
4722
        }
×
4723

4724
        graph, err := NewChannelGraph(backend)
39✔
4725
        if err != nil {
39✔
4726
                backendCleanup()
×
4727
                return nil, err
×
4728
        }
×
4729

4730
        t.Cleanup(func() {
78✔
4731
                _ = backend.Close()
39✔
4732
                backendCleanup()
39✔
4733
        })
39✔
4734

4735
        return graph, nil
39✔
4736
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc