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

lightningnetwork / lnd / 15838907453

24 Jun 2025 01:26AM UTC coverage: 57.079% (-11.1%) from 68.172%
15838907453

Pull #9982

github

web-flow
Merge e42780be2 into 45c15646c
Pull Request #9982: lnwire+lnwallet: add LocalNonces field for splice nonce coordination w/ taproot channels

103 of 167 new or added lines in 5 files covered. (61.68%)

30191 existing lines in 463 files now uncovered.

96331 of 168768 relevant lines covered (57.08%)

0.6 hits per line

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

81.82
/amp/shard_tracker.go
1
package amp
2

3
import (
4
        "crypto/rand"
5
        "encoding/binary"
6
        "fmt"
7
        "sync"
8

9
        "github.com/lightningnetwork/lnd/lntypes"
10
        "github.com/lightningnetwork/lnd/lnwire"
11
        "github.com/lightningnetwork/lnd/record"
12
        "github.com/lightningnetwork/lnd/routing/shards"
13
)
14

15
// Shard is an implementation of the shards.PaymentShards interface specific
16
// to AMP payments.
17
type Shard struct {
18
        child *Child
19
        mpp   *record.MPP
20
        amp   *record.AMP
21
}
22

23
// A compile time check to ensure Shard implements the shards.PaymentShard
24
// interface.
25
var _ shards.PaymentShard = (*Shard)(nil)
26

27
// Hash returns the hash used for the HTLC representing this AMP shard.
28
func (s *Shard) Hash() lntypes.Hash {
1✔
29
        return s.child.Hash
1✔
30
}
1✔
31

32
// MPP returns any extra MPP records that should be set for the final hop on
33
// the route used by this shard.
34
func (s *Shard) MPP() *record.MPP {
1✔
35
        return s.mpp
1✔
36
}
1✔
37

38
// AMP returns any extra AMP records that should be set for the final hop on
39
// the route used by this shard.
40
func (s *Shard) AMP() *record.AMP {
1✔
41
        return s.amp
1✔
42
}
1✔
43

44
// ShardTracker is an implementation of the shards.ShardTracker interface
45
// that is able to generate payment shards according to the AMP splitting
46
// algorithm. It can be used to generate new hashes to use for HTLCs, and also
47
// cancel shares used for failed payment shards.
48
type ShardTracker struct {
49
        setID       [32]byte
50
        paymentAddr [32]byte
51
        totalAmt    lnwire.MilliSatoshi
52

53
        sharer Sharer
54

55
        shards map[uint64]*Child
56
        sync.Mutex
57
}
58

59
// A compile time check to ensure ShardTracker implements the
60
// shards.ShardTracker interface.
61
var _ shards.ShardTracker = (*ShardTracker)(nil)
62

63
// NewShardTracker creates a new shard tracker to use for AMP payments. The
64
// root shard, setID, payment address and total amount must be correctly set in
65
// order for the TLV options to include with each shard to be created
66
// correctly.
67
func NewShardTracker(root, setID, payAddr [32]byte,
68
        totalAmt lnwire.MilliSatoshi) *ShardTracker {
1✔
69

1✔
70
        // Create a new seed sharer from this root.
1✔
71
        rootShare := Share(root)
1✔
72
        rootSharer := SeedSharerFromRoot(&rootShare)
1✔
73

1✔
74
        return &ShardTracker{
1✔
75
                setID:       setID,
1✔
76
                paymentAddr: payAddr,
1✔
77
                totalAmt:    totalAmt,
1✔
78
                sharer:      rootSharer,
1✔
79
                shards:      make(map[uint64]*Child),
1✔
80
        }
1✔
81
}
1✔
82

83
// NewShard registers a new attempt with the ShardTracker and returns a
84
// new shard representing this attempt. This attempt's shard should be canceled
85
// if it ends up not being used by the overall payment, i.e. if the attempt
86
// fails.
87
func (s *ShardTracker) NewShard(pid uint64, last bool) (shards.PaymentShard,
88
        error) {
1✔
89

1✔
90
        s.Lock()
1✔
91
        defer s.Unlock()
1✔
92

1✔
93
        // Use a random child index.
1✔
94
        var childIndex [4]byte
1✔
95
        if _, err := rand.Read(childIndex[:]); err != nil {
1✔
96
                return nil, err
×
97
        }
×
98
        idx := binary.BigEndian.Uint32(childIndex[:])
1✔
99

1✔
100
        // Depending on whether we are requesting the last shard or not, either
1✔
101
        // split the current share into two, or get a Child directly from the
1✔
102
        // current sharer.
1✔
103
        var child *Child
1✔
104
        if last {
2✔
105
                child = s.sharer.Child(idx)
1✔
106

1✔
107
                // If this was the last shard, set the current share to the
1✔
108
                // zero share to indicate we cannot split it further.
1✔
109
                s.sharer = s.sharer.Zero()
1✔
110
        } else {
2✔
111
                left, sharer, err := s.sharer.Split()
1✔
112
                if err != nil {
1✔
113
                        return nil, err
×
114
                }
×
115

116
                s.sharer = sharer
1✔
117
                child = left.Child(idx)
1✔
118
        }
119

120
        // Track the new child and return the shard.
121
        s.shards[pid] = child
1✔
122

1✔
123
        mpp := record.NewMPP(s.totalAmt, s.paymentAddr)
1✔
124
        amp := record.NewAMP(
1✔
125
                child.ChildDesc.Share, s.setID, child.ChildDesc.Index,
1✔
126
        )
1✔
127

1✔
128
        return &Shard{
1✔
129
                child: child,
1✔
130
                mpp:   mpp,
1✔
131
                amp:   amp,
1✔
132
        }, nil
1✔
133
}
134

135
// CancelShard cancel's the shard corresponding to the given attempt ID.
136
func (s *ShardTracker) CancelShard(pid uint64) error {
1✔
137
        s.Lock()
1✔
138
        defer s.Unlock()
1✔
139

1✔
140
        c, ok := s.shards[pid]
1✔
141
        if !ok {
1✔
142
                return fmt.Errorf("pid not found")
×
143
        }
×
144
        delete(s.shards, pid)
1✔
145

1✔
146
        // Now that we are canceling this shard, we XOR the share back into our
1✔
147
        // current share.
1✔
148
        s.sharer = s.sharer.Merge(c)
1✔
149
        return nil
1✔
150
}
151

152
// GetHash retrieves the hash used by the shard of the given attempt ID. This
153
// will return an error if the attempt ID is unknown.
UNCOV
154
func (s *ShardTracker) GetHash(pid uint64) (lntypes.Hash, error) {
×
UNCOV
155
        s.Lock()
×
UNCOV
156
        defer s.Unlock()
×
UNCOV
157

×
UNCOV
158
        c, ok := s.shards[pid]
×
UNCOV
159
        if !ok {
×
UNCOV
160
                return lntypes.Hash{}, fmt.Errorf("AMP shard for attempt %v "+
×
UNCOV
161
                        "not found", pid)
×
UNCOV
162
        }
×
163

UNCOV
164
        return c.Hash, nil
×
165
}
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