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

lightningnetwork / lnd / 15951470896

29 Jun 2025 04:23AM UTC coverage: 67.594% (-0.01%) from 67.606%
15951470896

Pull #9751

github

web-flow
Merge 599d9b051 into 6290edf14
Pull Request #9751: multi: update Go to 1.23.10 and update some packages

135088 of 199851 relevant lines covered (67.59%)

21909.44 hits per line

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

93.18
/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 {
34✔
29
        return s.child.Hash
34✔
30
}
34✔
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 {
43✔
35
        return s.mpp
43✔
36
}
43✔
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 {
45✔
41
        return s.amp
45✔
42
}
45✔
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 {
4✔
69

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

4✔
74
        return &ShardTracker{
4✔
75
                setID:       setID,
4✔
76
                paymentAddr: payAddr,
4✔
77
                totalAmt:    totalAmt,
4✔
78
                sharer:      rootSharer,
4✔
79
                shards:      make(map[uint64]*Child),
4✔
80
        }
4✔
81
}
4✔
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) {
24✔
89

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

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

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

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

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

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

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

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

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

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

11✔
146
        // Now that we are canceling this shard, we XOR the share back into our
11✔
147
        // current share.
11✔
148
        s.sharer = s.sharer.Merge(c)
11✔
149
        return nil
11✔
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.
154
func (s *ShardTracker) GetHash(pid uint64) (lntypes.Hash, error) {
21✔
155
        s.Lock()
21✔
156
        defer s.Unlock()
21✔
157

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

164
        return c.Hash, nil
20✔
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