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

lightningnetwork / lnd / 12281843618

11 Dec 2024 05:38PM UTC coverage: 49.477% (-0.06%) from 49.54%
12281843618

Pull #9242

github

aakselrod
docs: update release-notes for 0.19.0
Pull Request #9242: Reapply #8644

6 of 27 new or added lines in 2 files covered. (22.22%)

170 existing lines in 20 files now uncovered.

100257 of 202632 relevant lines covered (49.48%)

1.54 hits per line

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

77.86
/routing/payment_lifecycle.go
1
package routing
2

3
import (
4
        "context"
5
        "errors"
6
        "fmt"
7
        "time"
8

9
        "github.com/btcsuite/btcd/btcec/v2"
10
        "github.com/davecgh/go-spew/spew"
11
        sphinx "github.com/lightningnetwork/lightning-onion"
12
        "github.com/lightningnetwork/lnd/channeldb"
13
        "github.com/lightningnetwork/lnd/fn/v2"
14
        "github.com/lightningnetwork/lnd/graph/db/models"
15
        "github.com/lightningnetwork/lnd/htlcswitch"
16
        "github.com/lightningnetwork/lnd/lntypes"
17
        "github.com/lightningnetwork/lnd/lnwire"
18
        "github.com/lightningnetwork/lnd/routing/route"
19
        "github.com/lightningnetwork/lnd/routing/shards"
20
        "github.com/lightningnetwork/lnd/tlv"
21
)
22

23
// ErrPaymentLifecycleExiting is used when waiting for htlc attempt result, but
24
// the payment lifecycle is exiting .
25
var ErrPaymentLifecycleExiting = errors.New("payment lifecycle exiting")
26

27
// paymentLifecycle holds all information about the current state of a payment
28
// needed to resume if from any point.
29
type paymentLifecycle struct {
30
        router                *ChannelRouter
31
        feeLimit              lnwire.MilliSatoshi
32
        identifier            lntypes.Hash
33
        paySession            PaymentSession
34
        shardTracker          shards.ShardTracker
35
        currentHeight         int32
36
        firstHopCustomRecords lnwire.CustomRecords
37

38
        // quit is closed to signal the sub goroutines of the payment lifecycle
39
        // to stop.
40
        quit chan struct{}
41

42
        // resultCollected is used to signal that the result of an attempt has
43
        // been collected. A nil error means the attempt is either successful
44
        // or failed with temporary error. Otherwise, we should exit the
45
        // lifecycle loop as a terminal error has occurred.
46
        resultCollected chan error
47

48
        // resultCollector is a function that is used to collect the result of
49
        // an HTLC attempt, which is always mounted to `p.collectResultAsync`
50
        // except in unit test, where we use a much simpler resultCollector to
51
        // decouple the test flow for the payment lifecycle.
52
        resultCollector func(attempt *channeldb.HTLCAttempt)
53
}
54

55
// newPaymentLifecycle initiates a new payment lifecycle and returns it.
56
func newPaymentLifecycle(r *ChannelRouter, feeLimit lnwire.MilliSatoshi,
57
        identifier lntypes.Hash, paySession PaymentSession,
58
        shardTracker shards.ShardTracker, currentHeight int32,
59
        firstHopCustomRecords lnwire.CustomRecords) *paymentLifecycle {
3✔
60

3✔
61
        p := &paymentLifecycle{
3✔
62
                router:                r,
3✔
63
                feeLimit:              feeLimit,
3✔
64
                identifier:            identifier,
3✔
65
                paySession:            paySession,
3✔
66
                shardTracker:          shardTracker,
3✔
67
                currentHeight:         currentHeight,
3✔
68
                quit:                  make(chan struct{}),
3✔
69
                resultCollected:       make(chan error, 1),
3✔
70
                firstHopCustomRecords: firstHopCustomRecords,
3✔
71
        }
3✔
72

3✔
73
        // Mount the result collector.
3✔
74
        p.resultCollector = p.collectResultAsync
3✔
75

3✔
76
        return p
3✔
77
}
3✔
78

79
// calcFeeBudget returns the available fee to be used for sending HTLC
80
// attempts.
81
func (p *paymentLifecycle) calcFeeBudget(
82
        feesPaid lnwire.MilliSatoshi) lnwire.MilliSatoshi {
3✔
83

3✔
84
        budget := p.feeLimit
3✔
85

3✔
86
        // We'll subtract the used fee from our fee budget. In case of
3✔
87
        // overflow, we need to check whether feesPaid exceeds our budget
3✔
88
        // already.
3✔
89
        if feesPaid <= budget {
6✔
90
                budget -= feesPaid
3✔
91
        } else {
6✔
92
                budget = 0
3✔
93
        }
3✔
94

95
        return budget
3✔
96
}
97

98
// stateStep defines an action to be taken in our payment lifecycle. We either
99
// quit, continue, or exit the lifecycle, see details below.
100
type stateStep uint8
101

102
const (
103
        // stepSkip is used when we need to skip the current lifecycle and jump
104
        // to the next one.
105
        stepSkip stateStep = iota
106

107
        // stepProceed is used when we can proceed the current lifecycle.
108
        stepProceed
109

110
        // stepExit is used when we need to quit the current lifecycle.
111
        stepExit
112
)
113

114
// decideNextStep is used to determine the next step in the payment lifecycle.
115
func (p *paymentLifecycle) decideNextStep(
116
        payment DBMPPayment) (stateStep, error) {
3✔
117

3✔
118
        // Check whether we could make new HTLC attempts.
3✔
119
        allow, err := payment.AllowMoreAttempts()
3✔
120
        if err != nil {
3✔
121
                return stepExit, err
×
122
        }
×
123

124
        if !allow {
6✔
125
                // Check whether we need to wait for results.
3✔
126
                wait, err := payment.NeedWaitAttempts()
3✔
127
                if err != nil {
3✔
128
                        return stepExit, err
×
129
                }
×
130

131
                // If we are not allowed to make new HTLC attempts and there's
132
                // no need to wait, the lifecycle is done and we can exit.
133
                if !wait {
6✔
134
                        return stepExit, nil
3✔
135
                }
3✔
136

137
                log.Tracef("Waiting for attempt results for payment %v",
3✔
138
                        p.identifier)
3✔
139

3✔
140
                // Otherwise we wait for one HTLC attempt then continue
3✔
141
                // the lifecycle.
3✔
142
                //
3✔
143
                // NOTE: we don't check `p.quit` since `decideNextStep` is
3✔
144
                // running in the same goroutine as `resumePayment`.
3✔
145
                select {
3✔
146
                case err := <-p.resultCollected:
3✔
147
                        // If an error is returned, exit with it.
3✔
148
                        if err != nil {
6✔
149
                                return stepExit, err
3✔
150
                        }
3✔
151

152
                        log.Tracef("Received attempt result for payment %v",
3✔
153
                                p.identifier)
3✔
154

155
                case <-p.router.quit:
2✔
156
                        return stepExit, ErrRouterShuttingDown
2✔
157
                }
158

159
                return stepSkip, nil
3✔
160
        }
161

162
        // Otherwise we need to make more attempts.
163
        return stepProceed, nil
3✔
164
}
165

166
// resumePayment resumes the paymentLifecycle from the current state.
167
func (p *paymentLifecycle) resumePayment(ctx context.Context) ([32]byte,
168
        *route.Route, error) {
3✔
169

3✔
170
        // When the payment lifecycle loop exits, we make sure to signal any
3✔
171
        // sub goroutine of the HTLC attempt to exit, then wait for them to
3✔
172
        // return.
3✔
173
        defer p.stop()
3✔
174

3✔
175
        // If we had any existing attempts outstanding, we'll start by spinning
3✔
176
        // up goroutines that'll collect their results and deliver them to the
3✔
177
        // lifecycle loop below.
3✔
178
        payment, err := p.router.cfg.Control.FetchPayment(p.identifier)
3✔
179
        if err != nil {
3✔
180
                return [32]byte{}, nil, err
×
181
        }
×
182

183
        for _, a := range payment.InFlightHTLCs() {
6✔
184
                a := a
3✔
185

3✔
186
                log.Infof("Resuming HTLC attempt %v for payment %v",
3✔
187
                        a.AttemptID, p.identifier)
3✔
188

3✔
189
                p.resultCollector(&a)
3✔
190
        }
3✔
191

192
        // exitWithErr is a helper closure that logs and returns an error.
193
        exitWithErr := func(err error) ([32]byte, *route.Route, error) {
6✔
194
                log.Errorf("Payment %v with status=%v failed: %v",
3✔
195
                        p.identifier, payment.GetStatus(), err)
3✔
196
                return [32]byte{}, nil, err
3✔
197
        }
3✔
198

199
        // We'll continue until either our payment succeeds, or we encounter a
200
        // critical error during path finding.
201
lifecycle:
3✔
202
        for {
6✔
203
                // We update the payment state on every iteration. Since the
3✔
204
                // payment state is affected by multiple goroutines (ie,
3✔
205
                // collectResultAsync), it is NOT guaranteed that we always
3✔
206
                // have the latest state here. This is fine as long as the
3✔
207
                // state is consistent as a whole.
3✔
208
                payment, err = p.router.cfg.Control.FetchPayment(p.identifier)
3✔
209
                if err != nil {
3✔
210
                        return exitWithErr(err)
×
211
                }
×
212

213
                ps := payment.GetState()
3✔
214
                remainingFees := p.calcFeeBudget(ps.FeesPaid)
3✔
215

3✔
216
                log.Debugf("Payment %v: status=%v, active_shards=%v, "+
3✔
217
                        "rem_value=%v, fee_limit=%v", p.identifier,
3✔
218
                        payment.GetStatus(), ps.NumAttemptsInFlight,
3✔
219
                        ps.RemainingAmt, remainingFees)
3✔
220

3✔
221
                // We now proceed our lifecycle with the following tasks in
3✔
222
                // order,
3✔
223
                //   1. check context.
3✔
224
                //   2. request route.
3✔
225
                //   3. create HTLC attempt.
3✔
226
                //   4. send HTLC attempt.
3✔
227
                //   5. collect HTLC attempt result.
3✔
228
                //
3✔
229
                // Before we attempt any new shard, we'll check to see if we've
3✔
230
                // gone past the payment attempt timeout, or if the context was
3✔
231
                // cancelled, or the router is exiting. In any of these cases,
3✔
232
                // we'll stop this payment attempt short.
3✔
233
                if err := p.checkContext(ctx); err != nil {
3✔
234
                        return exitWithErr(err)
×
235
                }
×
236

237
                // Now decide the next step of the current lifecycle.
238
                step, err := p.decideNextStep(payment)
3✔
239
                if err != nil {
6✔
240
                        return exitWithErr(err)
3✔
241
                }
3✔
242

243
                switch step {
3✔
244
                // Exit the for loop and return below.
245
                case stepExit:
3✔
246
                        break lifecycle
3✔
247

248
                // Continue the for loop and skip the rest.
249
                case stepSkip:
3✔
250
                        continue lifecycle
3✔
251

252
                // Continue the for loop and proceed the rest.
253
                case stepProceed:
3✔
254

255
                // Unknown step received, exit with an error.
256
                default:
×
257
                        err = fmt.Errorf("unknown step: %v", step)
×
258
                        return exitWithErr(err)
×
259
                }
260

261
                // Now request a route to be used to create our HTLC attempt.
262
                rt, err := p.requestRoute(ps)
3✔
263
                if err != nil {
3✔
264
                        return exitWithErr(err)
×
265
                }
×
266

267
                // We may not be able to find a route for current attempt. In
268
                // that case, we continue the loop and move straight to the
269
                // next iteration in case there are results for inflight HTLCs
270
                // that still need to be collected.
271
                if rt == nil {
6✔
272
                        log.Errorf("No route found for payment %v",
3✔
273
                                p.identifier)
3✔
274

3✔
275
                        continue lifecycle
3✔
276
                }
277

278
                log.Tracef("Found route: %s", spew.Sdump(rt.Hops))
3✔
279

3✔
280
                // Allow the traffic shaper to add custom records to the
3✔
281
                // outgoing HTLC and also adjust the amount if needed.
3✔
282
                err = p.amendFirstHopData(rt)
3✔
283
                if err != nil {
3✔
284
                        return exitWithErr(err)
×
285
                }
×
286

287
                // We found a route to try, create a new HTLC attempt to try.
288
                attempt, err := p.registerAttempt(rt, ps.RemainingAmt)
3✔
289
                if err != nil {
3✔
290
                        return exitWithErr(err)
×
291
                }
×
292

293
                // Once the attempt is created, send it to the htlcswitch.
294
                result, err := p.sendAttempt(attempt)
3✔
295
                if err != nil {
3✔
296
                        return exitWithErr(err)
×
297
                }
×
298

299
                // Now that the shard was successfully sent, launch a go
300
                // routine that will handle its result when its back.
301
                if result.err == nil {
6✔
302
                        p.resultCollector(attempt)
3✔
303
                }
3✔
304
        }
305

306
        // Once we are out the lifecycle loop, it means we've reached a
307
        // terminal condition. We either return the settled preimage or the
308
        // payment's failure reason.
309
        //
310
        // Optionally delete the failed attempts from the database.
311
        err = p.router.cfg.Control.DeleteFailedAttempts(p.identifier)
3✔
312
        if err != nil {
3✔
313
                log.Errorf("Error deleting failed htlc attempts for payment "+
×
314
                        "%v: %v", p.identifier, err)
×
315
        }
×
316

317
        htlc, failure := payment.TerminalInfo()
3✔
318
        if htlc != nil {
6✔
319
                return htlc.Settle.Preimage, &htlc.Route, nil
3✔
320
        }
3✔
321

322
        // Otherwise return the payment failure reason.
323
        return [32]byte{}, nil, *failure
3✔
324
}
325

326
// checkContext checks whether the payment context has been canceled.
327
// Cancellation occurs manually or if the context times out.
328
func (p *paymentLifecycle) checkContext(ctx context.Context) error {
3✔
329
        select {
3✔
330
        case <-ctx.Done():
3✔
331
                // If the context was canceled, we'll mark the payment as
3✔
332
                // failed. There are two cases to distinguish here: Either a
3✔
333
                // user-provided timeout was reached, or the context was
3✔
334
                // canceled, either to a manual cancellation or due to an
3✔
335
                // unknown error.
3✔
336
                var reason channeldb.FailureReason
3✔
337
                if errors.Is(ctx.Err(), context.DeadlineExceeded) {
3✔
338
                        reason = channeldb.FailureReasonTimeout
×
339
                        log.Warnf("Payment attempt not completed before "+
×
340
                                "timeout, id=%s", p.identifier.String())
×
341
                } else {
3✔
342
                        reason = channeldb.FailureReasonCanceled
3✔
343
                        log.Warnf("Payment attempt context canceled, id=%s",
3✔
344
                                p.identifier.String())
3✔
345
                }
3✔
346

347
                // By marking the payment failed, depending on whether it has
348
                // inflight HTLCs or not, its status will now either be
349
                // `StatusInflight` or `StatusFailed`. In either case, no more
350
                // HTLCs will be attempted.
351
                err := p.router.cfg.Control.FailPayment(p.identifier, reason)
3✔
352
                if err != nil {
3✔
353
                        return fmt.Errorf("FailPayment got %w", err)
×
354
                }
×
355

356
        case <-p.router.quit:
×
357
                return fmt.Errorf("check payment timeout got: %w",
×
358
                        ErrRouterShuttingDown)
×
359

360
        // Fall through if we haven't hit our time limit.
361
        default:
3✔
362
        }
363

364
        return nil
3✔
365
}
366

367
// requestRoute is responsible for finding a route to be used to create an HTLC
368
// attempt.
369
func (p *paymentLifecycle) requestRoute(
370
        ps *channeldb.MPPaymentState) (*route.Route, error) {
3✔
371

3✔
372
        remainingFees := p.calcFeeBudget(ps.FeesPaid)
3✔
373

3✔
374
        // Query our payment session to construct a route.
3✔
375
        rt, err := p.paySession.RequestRoute(
3✔
376
                ps.RemainingAmt, remainingFees,
3✔
377
                uint32(ps.NumAttemptsInFlight), uint32(p.currentHeight),
3✔
378
                p.firstHopCustomRecords,
3✔
379
        )
3✔
380

3✔
381
        // Exit early if there's no error.
3✔
382
        if err == nil {
6✔
383
                return rt, nil
3✔
384
        }
3✔
385

386
        // Otherwise we need to handle the error.
387
        log.Warnf("Failed to find route for payment %v: %v", p.identifier, err)
3✔
388

3✔
389
        // If the error belongs to `noRouteError` set, it means a non-critical
3✔
390
        // error has happened during path finding, and we will mark the payment
3✔
391
        // failed with this reason. Otherwise, we'll return the critical error
3✔
392
        // found to abort the lifecycle.
3✔
393
        var routeErr noRouteError
3✔
394
        if !errors.As(err, &routeErr) {
3✔
395
                return nil, fmt.Errorf("requestRoute got: %w", err)
×
396
        }
×
397

398
        // It's the `paymentSession`'s responsibility to find a route for us
399
        // with the best effort. When it cannot find a path, we need to treat it
400
        // as a terminal condition and fail the payment no matter it has
401
        // inflight HTLCs or not.
402
        failureCode := routeErr.FailureReason()
3✔
403
        log.Warnf("Marking payment %v permanently failed with no route: %v",
3✔
404
                p.identifier, failureCode)
3✔
405

3✔
406
        err = p.router.cfg.Control.FailPayment(p.identifier, failureCode)
3✔
407
        if err != nil {
3✔
408
                return nil, fmt.Errorf("FailPayment got: %w", err)
×
409
        }
×
410

411
        // NOTE: we decide to not return the non-critical noRouteError here to
412
        // avoid terminating the payment lifecycle as there might be other
413
        // inflight HTLCs which we must wait for their results.
414
        return nil, nil
3✔
415
}
416

417
// stop signals any active shard goroutine to exit.
418
func (p *paymentLifecycle) stop() {
3✔
419
        close(p.quit)
3✔
420
}
3✔
421

422
// attemptResult holds the HTLC attempt and a possible error returned from
423
// sending it.
424
type attemptResult struct {
425
        // err is non-nil if a non-critical error was encountered when trying
426
        // to send the attempt, and we successfully updated the control tower
427
        // to reflect this error. This can be errors like not enough local
428
        // balance for the given route etc.
429
        err error
430

431
        // attempt is the attempt structure as recorded in the database.
432
        attempt *channeldb.HTLCAttempt
433
}
434

435
// collectResultAsync launches a goroutine that will wait for the result of the
436
// given HTLC attempt to be available then handle its result. Once received, it
437
// will send a nil error to channel `resultCollected` to indicate there's a
438
// result.
439
func (p *paymentLifecycle) collectResultAsync(attempt *channeldb.HTLCAttempt) {
3✔
440
        log.Debugf("Collecting result for attempt %v in payment %v",
3✔
441
                attempt.AttemptID, p.identifier)
3✔
442

3✔
443
        go func() {
6✔
444
                // Block until the result is available.
3✔
445
                _, err := p.collectResult(attempt)
3✔
446
                if err != nil {
6✔
447
                        log.Errorf("Error collecting result for attempt %v "+
3✔
448
                                "in payment %v: %v", attempt.AttemptID,
3✔
449
                                p.identifier, err)
3✔
450
                }
3✔
451

452
                log.Debugf("Result collected for attempt %v in payment %v",
3✔
453
                        attempt.AttemptID, p.identifier)
3✔
454

3✔
455
                // Once the result is collected, we signal it by writing the
3✔
456
                // error to `resultCollected`.
3✔
457
                select {
3✔
458
                // Send the signal or quit.
459
                case p.resultCollected <- err:
3✔
460

461
                case <-p.quit:
2✔
462
                        log.Debugf("Lifecycle exiting while collecting "+
2✔
463
                                "result for payment %v", p.identifier)
2✔
464

UNCOV
465
                case <-p.router.quit:
×
UNCOV
466
                        return
×
467
                }
468
        }()
469
}
470

471
// collectResult waits for the result for the given attempt to be available
472
// from the Switch, then records the attempt outcome with the control tower.
473
// An attemptResult is returned, indicating the final outcome of this HTLC
474
// attempt.
475
func (p *paymentLifecycle) collectResult(attempt *channeldb.HTLCAttempt) (
476
        *attemptResult, error) {
3✔
477

3✔
478
        log.Tracef("Collecting result for attempt %v", spew.Sdump(attempt))
3✔
479

3✔
480
        // We'll retrieve the hash specific to this shard from the
3✔
481
        // shardTracker, since it will be needed to regenerate the circuit
3✔
482
        // below.
3✔
483
        hash, err := p.shardTracker.GetHash(attempt.AttemptID)
3✔
484
        if err != nil {
3✔
485
                return p.failAttempt(attempt.AttemptID, err)
×
486
        }
×
487

488
        // Regenerate the circuit for this attempt.
489
        _, circuit, err := generateSphinxPacket(
3✔
490
                &attempt.Route, hash[:], attempt.SessionKey(),
3✔
491
        )
3✔
492
        // TODO(yy): We generate this circuit to create the error decryptor,
3✔
493
        // which is then used in htlcswitch as the deobfuscator to decode the
3✔
494
        // error from `UpdateFailHTLC`. However, suppose it's an
3✔
495
        // `UpdateFulfillHTLC` message yet for some reason the sphinx packet is
3✔
496
        // failed to be generated, we'd miss settling it. This means we should
3✔
497
        // give it a second chance to try the settlement path in case
3✔
498
        // `GetAttemptResult` gives us back the preimage. And move the circuit
3✔
499
        // creation into htlcswitch so it's only constructed when there's a
3✔
500
        // failure message we need to decode.
3✔
501
        if err != nil {
3✔
502
                log.Debugf("Unable to generate circuit for attempt %v: %v",
×
503
                        attempt.AttemptID, err)
×
504

×
505
                return p.failAttempt(attempt.AttemptID, err)
×
506
        }
×
507

508
        // Using the created circuit, initialize the error decrypter, so we can
509
        // parse+decode any failures incurred by this payment within the
510
        // switch.
511
        errorDecryptor := &htlcswitch.SphinxErrorDecrypter{
3✔
512
                OnionErrorDecrypter: sphinx.NewOnionErrorDecrypter(circuit),
3✔
513
        }
3✔
514

3✔
515
        // Now ask the switch to return the result of the payment when
3✔
516
        // available.
3✔
517
        //
3✔
518
        // TODO(yy): consider using htlcswitch to create the `errorDecryptor`
3✔
519
        // since the htlc is already in db. This will also make the interface
3✔
520
        // `PaymentAttemptDispatcher` deeper and easier to use. Moreover, we'd
3✔
521
        // only create the decryptor when received a failure, further saving us
3✔
522
        // a few CPU cycles.
3✔
523
        resultChan, err := p.router.cfg.Payer.GetAttemptResult(
3✔
524
                attempt.AttemptID, p.identifier, errorDecryptor,
3✔
525
        )
3✔
526
        // Handle the switch error.
3✔
527
        if err != nil {
3✔
528
                log.Errorf("Failed getting result for attemptID %d "+
×
529
                        "from switch: %v", attempt.AttemptID, err)
×
530

×
531
                return p.handleSwitchErr(attempt, err)
×
532
        }
×
533

534
        // The switch knows about this payment, we'll wait for a result to be
535
        // available.
536
        var (
3✔
537
                result *htlcswitch.PaymentResult
3✔
538
                ok     bool
3✔
539
        )
3✔
540

3✔
541
        select {
3✔
542
        case result, ok = <-resultChan:
3✔
543
                if !ok {
6✔
544
                        return nil, htlcswitch.ErrSwitchExiting
3✔
545
                }
3✔
546

547
        case <-p.quit:
×
548
                return nil, ErrPaymentLifecycleExiting
×
549

550
        case <-p.router.quit:
×
551
                return nil, ErrRouterShuttingDown
×
552
        }
553

554
        // In case of a payment failure, fail the attempt with the control
555
        // tower and return.
556
        if result.Error != nil {
6✔
557
                return p.handleSwitchErr(attempt, result.Error)
3✔
558
        }
3✔
559

560
        // We successfully got a payment result back from the switch.
561
        log.Debugf("Payment %v succeeded with pid=%v",
3✔
562
                p.identifier, attempt.AttemptID)
3✔
563

3✔
564
        // Report success to mission control.
3✔
565
        err = p.router.cfg.MissionControl.ReportPaymentSuccess(
3✔
566
                attempt.AttemptID, &attempt.Route,
3✔
567
        )
3✔
568
        if err != nil {
3✔
569
                log.Errorf("Error reporting payment success to mc: %v", err)
×
570
        }
×
571

572
        // In case of success we atomically store settle result to the DB move
573
        // the shard to the settled state.
574
        htlcAttempt, err := p.router.cfg.Control.SettleAttempt(
3✔
575
                p.identifier, attempt.AttemptID,
3✔
576
                &channeldb.HTLCSettleInfo{
3✔
577
                        Preimage:   result.Preimage,
3✔
578
                        SettleTime: p.router.cfg.Clock.Now(),
3✔
579
                },
3✔
580
        )
3✔
581
        if err != nil {
3✔
582
                log.Errorf("Error settling attempt %v for payment %v with "+
×
583
                        "preimage %v: %v", attempt.AttemptID, p.identifier,
×
584
                        result.Preimage, err)
×
585

×
586
                // We won't mark the attempt as failed since we already have
×
587
                // the preimage.
×
588
                return nil, err
×
589
        }
×
590

591
        return &attemptResult{
3✔
592
                attempt: htlcAttempt,
3✔
593
        }, nil
3✔
594
}
595

596
// registerAttempt is responsible for creating and saving an HTLC attempt in db
597
// by using the route info provided. The `remainingAmt` is used to decide
598
// whether this is the last attempt.
599
func (p *paymentLifecycle) registerAttempt(rt *route.Route,
600
        remainingAmt lnwire.MilliSatoshi) (*channeldb.HTLCAttempt, error) {
3✔
601

3✔
602
        // If this route will consume the last remaining amount to send
3✔
603
        // to the receiver, this will be our last shard (for now).
3✔
604
        isLastAttempt := rt.ReceiverAmt() == remainingAmt
3✔
605

3✔
606
        // Using the route received from the payment session, create a new
3✔
607
        // shard to send.
3✔
608
        attempt, err := p.createNewPaymentAttempt(rt, isLastAttempt)
3✔
609
        if err != nil {
3✔
610
                return nil, err
×
611
        }
×
612

613
        // Before sending this HTLC to the switch, we checkpoint the fresh
614
        // paymentID and route to the DB. This lets us know on startup the ID
615
        // of the payment that we attempted to send, such that we can query the
616
        // Switch for its whereabouts. The route is needed to handle the result
617
        // when it eventually comes back.
618
        err = p.router.cfg.Control.RegisterAttempt(
3✔
619
                p.identifier, &attempt.HTLCAttemptInfo,
3✔
620
        )
3✔
621

3✔
622
        return attempt, err
3✔
623
}
624

625
// createNewPaymentAttempt creates a new payment attempt from the given route.
626
func (p *paymentLifecycle) createNewPaymentAttempt(rt *route.Route,
627
        lastShard bool) (*channeldb.HTLCAttempt, error) {
3✔
628

3✔
629
        // Generate a new key to be used for this attempt.
3✔
630
        sessionKey, err := generateNewSessionKey()
3✔
631
        if err != nil {
3✔
632
                return nil, err
×
633
        }
×
634

635
        // We generate a new, unique payment ID that we will use for
636
        // this HTLC.
637
        attemptID, err := p.router.cfg.NextPaymentID()
3✔
638
        if err != nil {
3✔
639
                return nil, err
×
640
        }
×
641

642
        // Request a new shard from the ShardTracker. If this is an AMP
643
        // payment, and this is the last shard, the outstanding shards together
644
        // with this one will be enough for the receiver to derive all HTLC
645
        // preimages. If this a non-AMP payment, the ShardTracker will return a
646
        // simple shard with the payment's static payment hash.
647
        shard, err := p.shardTracker.NewShard(attemptID, lastShard)
3✔
648
        if err != nil {
3✔
649
                return nil, err
×
650
        }
×
651

652
        // If this shard carries MPP or AMP options, add them to the last hop
653
        // on the route.
654
        hop := rt.Hops[len(rt.Hops)-1]
3✔
655
        if shard.MPP() != nil {
6✔
656
                hop.MPP = shard.MPP()
3✔
657
        }
3✔
658

659
        if shard.AMP() != nil {
6✔
660
                hop.AMP = shard.AMP()
3✔
661
        }
3✔
662

663
        hash := shard.Hash()
3✔
664

3✔
665
        // We now have all the information needed to populate the current
3✔
666
        // attempt information.
3✔
667
        attempt := channeldb.NewHtlcAttempt(
3✔
668
                attemptID, sessionKey, *rt, p.router.cfg.Clock.Now(), &hash,
3✔
669
        )
3✔
670

3✔
671
        return attempt, nil
3✔
672
}
673

674
// sendAttempt attempts to send the current attempt to the switch to complete
675
// the payment. If this attempt fails, then we'll continue on to the next
676
// available route.
677
func (p *paymentLifecycle) sendAttempt(
678
        attempt *channeldb.HTLCAttempt) (*attemptResult, error) {
3✔
679

3✔
680
        log.Debugf("Sending HTLC attempt(id=%v, total_amt=%v, first_hop_amt=%d"+
3✔
681
                ") for payment %v", attempt.AttemptID,
3✔
682
                attempt.Route.TotalAmount, attempt.Route.FirstHopAmount.Val,
3✔
683
                p.identifier)
3✔
684

3✔
685
        rt := attempt.Route
3✔
686

3✔
687
        // Construct the first hop.
3✔
688
        firstHop := lnwire.NewShortChanIDFromInt(rt.Hops[0].ChannelID)
3✔
689

3✔
690
        // Craft an HTLC packet to send to the htlcswitch. The metadata within
3✔
691
        // this packet will be used to route the payment through the network,
3✔
692
        // starting with the first-hop.
3✔
693
        htlcAdd := &lnwire.UpdateAddHTLC{
3✔
694
                Amount:        rt.FirstHopAmount.Val.Int(),
3✔
695
                Expiry:        rt.TotalTimeLock,
3✔
696
                PaymentHash:   *attempt.Hash,
3✔
697
                CustomRecords: rt.FirstHopWireCustomRecords,
3✔
698
        }
3✔
699

3✔
700
        // Generate the raw encoded sphinx packet to be included along
3✔
701
        // with the htlcAdd message that we send directly to the
3✔
702
        // switch.
3✔
703
        onionBlob, _, err := generateSphinxPacket(
3✔
704
                &rt, attempt.Hash[:], attempt.SessionKey(),
3✔
705
        )
3✔
706
        if err != nil {
3✔
707
                log.Errorf("Failed to create onion blob: attempt=%d in "+
×
708
                        "payment=%v, err:%v", attempt.AttemptID,
×
709
                        p.identifier, err)
×
710

×
711
                return p.failAttempt(attempt.AttemptID, err)
×
712
        }
×
713

714
        copy(htlcAdd.OnionBlob[:], onionBlob)
3✔
715

3✔
716
        // Send it to the Switch. When this method returns we assume
3✔
717
        // the Switch successfully has persisted the payment attempt,
3✔
718
        // such that we can resume waiting for the result after a
3✔
719
        // restart.
3✔
720
        err = p.router.cfg.Payer.SendHTLC(firstHop, attempt.AttemptID, htlcAdd)
3✔
721
        if err != nil {
6✔
722
                log.Errorf("Failed sending attempt %d for payment %v to "+
3✔
723
                        "switch: %v", attempt.AttemptID, p.identifier, err)
3✔
724

3✔
725
                return p.handleSwitchErr(attempt, err)
3✔
726
        }
3✔
727

728
        log.Debugf("Attempt %v for payment %v successfully sent to switch, "+
3✔
729
                "route: %v", attempt.AttemptID, p.identifier, &attempt.Route)
3✔
730

3✔
731
        return &attemptResult{
3✔
732
                attempt: attempt,
3✔
733
        }, nil
3✔
734
}
735

736
// amendFirstHopData is a function that calls the traffic shaper to allow it to
737
// add custom records to the outgoing HTLC and also adjust the amount if
738
// needed.
739
func (p *paymentLifecycle) amendFirstHopData(rt *route.Route) error {
3✔
740
        // The first hop amount on the route is the full route amount if not
3✔
741
        // overwritten by the traffic shaper. So we set the initial value now
3✔
742
        // and potentially overwrite it later.
3✔
743
        rt.FirstHopAmount = tlv.NewRecordT[tlv.TlvType0](
3✔
744
                tlv.NewBigSizeT(rt.TotalAmount),
3✔
745
        )
3✔
746

3✔
747
        // By default, we set the first hop custom records to the initial
3✔
748
        // value requested by the RPC. The traffic shaper may overwrite this
3✔
749
        // value.
3✔
750
        rt.FirstHopWireCustomRecords = p.firstHopCustomRecords
3✔
751

3✔
752
        // extraDataRequest is a helper struct to pass the custom records and
3✔
753
        // amount back from the traffic shaper.
3✔
754
        type extraDataRequest struct {
3✔
755
                customRecords fn.Option[lnwire.CustomRecords]
3✔
756

3✔
757
                amount fn.Option[lnwire.MilliSatoshi]
3✔
758
        }
3✔
759

3✔
760
        // If a hook exists that may affect our outgoing message, we call it now
3✔
761
        // and apply its side effects to the UpdateAddHTLC message.
3✔
762
        result, err := fn.MapOptionZ(
3✔
763
                p.router.cfg.TrafficShaper,
3✔
764
                //nolint:ll
3✔
765
                func(ts htlcswitch.AuxTrafficShaper) fn.Result[extraDataRequest] {
3✔
766
                        newAmt, newRecords, err := ts.ProduceHtlcExtraData(
×
767
                                rt.TotalAmount, p.firstHopCustomRecords,
×
768
                        )
×
769
                        if err != nil {
×
770
                                return fn.Err[extraDataRequest](err)
×
771
                        }
×
772

773
                        // Make sure we only received valid records.
774
                        if err := newRecords.Validate(); err != nil {
×
775
                                return fn.Err[extraDataRequest](err)
×
776
                        }
×
777

778
                        log.Debugf("Aux traffic shaper returned custom "+
×
779
                                "records %v and amount %d msat for HTLC",
×
780
                                spew.Sdump(newRecords), newAmt)
×
781

×
782
                        return fn.Ok(extraDataRequest{
×
783
                                customRecords: fn.Some(newRecords),
×
784
                                amount:        fn.Some(newAmt),
×
785
                        })
×
786
                },
787
        ).Unpack()
788
        if err != nil {
3✔
789
                return fmt.Errorf("traffic shaper failed to produce extra "+
×
790
                        "data: %w", err)
×
791
        }
×
792

793
        // Apply the side effects to the UpdateAddHTLC message.
794
        result.customRecords.WhenSome(func(records lnwire.CustomRecords) {
3✔
795
                rt.FirstHopWireCustomRecords = records
×
796
        })
×
797
        result.amount.WhenSome(func(amount lnwire.MilliSatoshi) {
3✔
798
                rt.FirstHopAmount = tlv.NewRecordT[tlv.TlvType0](
×
799
                        tlv.NewBigSizeT(amount),
×
800
                )
×
801
        })
×
802

803
        return nil
3✔
804
}
805

806
// failAttemptAndPayment fails both the payment and its attempt via the
807
// router's control tower, which marks the payment as failed in db.
808
func (p *paymentLifecycle) failPaymentAndAttempt(
809
        attemptID uint64, reason *channeldb.FailureReason,
810
        sendErr error) (*attemptResult, error) {
3✔
811

3✔
812
        log.Errorf("Payment %v failed: final_outcome=%v, raw_err=%v",
3✔
813
                p.identifier, *reason, sendErr)
3✔
814

3✔
815
        // Fail the payment via control tower.
3✔
816
        //
3✔
817
        // NOTE: we must fail the payment first before failing the attempt.
3✔
818
        // Otherwise, once the attempt is marked as failed, another goroutine
3✔
819
        // might make another attempt while we are failing the payment.
3✔
820
        err := p.router.cfg.Control.FailPayment(p.identifier, *reason)
3✔
821
        if err != nil {
3✔
822
                log.Errorf("Unable to fail payment: %v", err)
×
823
                return nil, err
×
824
        }
×
825

826
        // Fail the attempt.
827
        return p.failAttempt(attemptID, sendErr)
3✔
828
}
829

830
// handleSwitchErr inspects the given error from the Switch and determines
831
// whether we should make another payment attempt, or if it should be
832
// considered a terminal error. Terminal errors will be recorded with the
833
// control tower. It analyzes the sendErr for the payment attempt received from
834
// the switch and updates mission control and/or channel policies. Depending on
835
// the error type, the error is either the final outcome of the payment or we
836
// need to continue with an alternative route. A final outcome is indicated by
837
// a non-nil reason value.
838
func (p *paymentLifecycle) handleSwitchErr(attempt *channeldb.HTLCAttempt,
839
        sendErr error) (*attemptResult, error) {
3✔
840

3✔
841
        internalErrorReason := channeldb.FailureReasonError
3✔
842
        attemptID := attempt.AttemptID
3✔
843

3✔
844
        // reportAndFail is a helper closure that reports the failure to the
3✔
845
        // mission control, which helps us to decide whether we want to retry
3✔
846
        // the payment or not. If a non nil reason is returned from mission
3✔
847
        // control, it will further fail the payment via control tower.
3✔
848
        reportAndFail := func(srcIdx *int,
3✔
849
                msg lnwire.FailureMessage) (*attemptResult, error) {
6✔
850

3✔
851
                // Report outcome to mission control.
3✔
852
                reason, err := p.router.cfg.MissionControl.ReportPaymentFail(
3✔
853
                        attemptID, &attempt.Route, srcIdx, msg,
3✔
854
                )
3✔
855
                if err != nil {
3✔
856
                        log.Errorf("Error reporting payment result to mc: %v",
×
857
                                err)
×
858

×
859
                        reason = &internalErrorReason
×
860
                }
×
861

862
                // Fail the attempt only if there's no reason.
863
                if reason == nil {
6✔
864
                        // Fail the attempt.
3✔
865
                        return p.failAttempt(attemptID, sendErr)
3✔
866
                }
3✔
867

868
                // Otherwise fail both the payment and the attempt.
869
                return p.failPaymentAndAttempt(attemptID, reason, sendErr)
3✔
870
        }
871

872
        // If this attempt ID is unknown to the Switch, it means it was never
873
        // checkpointed and forwarded by the switch before a restart. In this
874
        // case we can safely send a new payment attempt, and wait for its
875
        // result to be available.
876
        if errors.Is(sendErr, htlcswitch.ErrPaymentIDNotFound) {
3✔
877
                log.Debugf("Attempt ID %v for payment %v not found in the "+
×
878
                        "Switch, retrying.", attempt.AttemptID, p.identifier)
×
879

×
880
                return p.failAttempt(attemptID, sendErr)
×
881
        }
×
882

883
        if errors.Is(sendErr, htlcswitch.ErrUnreadableFailureMessage) {
3✔
884
                log.Warn("Unreadable failure when sending htlc: id=%v, hash=%v",
×
885
                        attempt.AttemptID, attempt.Hash)
×
886

×
887
                // Since this error message cannot be decrypted, we will send a
×
888
                // nil error message to our mission controller and fail the
×
889
                // payment.
×
890
                return reportAndFail(nil, nil)
×
891
        }
×
892

893
        // If the error is a ClearTextError, we have received a valid wire
894
        // failure message, either from our own outgoing link or from a node
895
        // down the route. If the error is not related to the propagation of
896
        // our payment, we can stop trying because an internal error has
897
        // occurred.
898
        var rtErr htlcswitch.ClearTextError
3✔
899
        ok := errors.As(sendErr, &rtErr)
3✔
900
        if !ok {
3✔
901
                return p.failPaymentAndAttempt(
×
902
                        attemptID, &internalErrorReason, sendErr,
×
903
                )
×
904
        }
×
905

906
        // failureSourceIdx is the index of the node that the failure occurred
907
        // at. If the ClearTextError received is not a ForwardingError the
908
        // payment error occurred at our node, so we leave this value as 0
909
        // to indicate that the failure occurred locally. If the error is a
910
        // ForwardingError, it did not originate at our node, so we set
911
        // failureSourceIdx to the index of the node where the failure occurred.
912
        failureSourceIdx := 0
3✔
913
        var source *htlcswitch.ForwardingError
3✔
914
        ok = errors.As(rtErr, &source)
3✔
915
        if ok {
6✔
916
                failureSourceIdx = source.FailureSourceIdx
3✔
917
        }
3✔
918

919
        // Extract the wire failure and apply channel update if it contains one.
920
        // If we received an unknown failure message from a node along the
921
        // route, the failure message will be nil.
922
        failureMessage := rtErr.WireMessage()
3✔
923
        err := p.handleFailureMessage(
3✔
924
                &attempt.Route, failureSourceIdx, failureMessage,
3✔
925
        )
3✔
926
        if err != nil {
3✔
927
                return p.failPaymentAndAttempt(
×
928
                        attemptID, &internalErrorReason, sendErr,
×
929
                )
×
930
        }
×
931

932
        log.Tracef("Node=%v reported failure when sending htlc",
3✔
933
                failureSourceIdx)
3✔
934

3✔
935
        return reportAndFail(&failureSourceIdx, failureMessage)
3✔
936
}
937

938
// handleFailureMessage tries to apply a channel update present in the failure
939
// message if any.
940
func (p *paymentLifecycle) handleFailureMessage(rt *route.Route,
941
        errorSourceIdx int, failure lnwire.FailureMessage) error {
3✔
942

3✔
943
        if failure == nil {
3✔
944
                return nil
×
945
        }
×
946

947
        // It makes no sense to apply our own channel updates.
948
        if errorSourceIdx == 0 {
6✔
949
                log.Errorf("Channel update of ourselves received")
3✔
950

3✔
951
                return nil
3✔
952
        }
3✔
953

954
        // Extract channel update if the error contains one.
955
        update := p.router.extractChannelUpdate(failure)
3✔
956
        if update == nil {
6✔
957
                return nil
3✔
958
        }
3✔
959

960
        // Parse pubkey to allow validation of the channel update. This should
961
        // always succeed, otherwise there is something wrong in our
962
        // implementation. Therefore, return an error.
963
        errVertex := rt.Hops[errorSourceIdx-1].PubKeyBytes
3✔
964
        errSource, err := btcec.ParsePubKey(errVertex[:])
3✔
965
        if err != nil {
3✔
966
                log.Errorf("Cannot parse pubkey: idx=%v, pubkey=%v",
×
967
                        errorSourceIdx, errVertex)
×
968

×
969
                return err
×
970
        }
×
971

972
        var (
3✔
973
                isAdditionalEdge bool
3✔
974
                policy           *models.CachedEdgePolicy
3✔
975
        )
3✔
976

3✔
977
        // Before we apply the channel update, we need to decide whether the
3✔
978
        // update is for additional (ephemeral) edge or normal edge stored in
3✔
979
        // db.
3✔
980
        //
3✔
981
        // Note: the p.paySession might be nil here if it's called inside
3✔
982
        // SendToRoute where there's no payment lifecycle.
3✔
983
        if p.paySession != nil {
6✔
984
                policy = p.paySession.GetAdditionalEdgePolicy(
3✔
985
                        errSource, update.ShortChannelID.ToUint64(),
3✔
986
                )
3✔
987
                if policy != nil {
6✔
988
                        isAdditionalEdge = true
3✔
989
                }
3✔
990
        }
991

992
        // Apply channel update to additional edge policy.
993
        if isAdditionalEdge {
6✔
994
                if !p.paySession.UpdateAdditionalEdge(
3✔
995
                        update, errSource, policy) {
3✔
996

×
997
                        log.Debugf("Invalid channel update received: node=%v",
×
998
                                errVertex)
×
999
                }
×
1000
                return nil
3✔
1001
        }
1002

1003
        // Apply channel update to the channel edge policy in our db.
1004
        if !p.router.cfg.ApplyChannelUpdate(update) {
6✔
1005
                log.Debugf("Invalid channel update received: node=%v",
3✔
1006
                        errVertex)
3✔
1007
        }
3✔
1008
        return nil
3✔
1009
}
1010

1011
// failAttempt calls control tower to fail the current payment attempt.
1012
func (p *paymentLifecycle) failAttempt(attemptID uint64,
1013
        sendError error) (*attemptResult, error) {
3✔
1014

3✔
1015
        log.Warnf("Attempt %v for payment %v failed: %v", attemptID,
3✔
1016
                p.identifier, sendError)
3✔
1017

3✔
1018
        failInfo := marshallError(
3✔
1019
                sendError,
3✔
1020
                p.router.cfg.Clock.Now(),
3✔
1021
        )
3✔
1022

3✔
1023
        // Now that we are failing this payment attempt, cancel the shard with
3✔
1024
        // the ShardTracker such that it can derive the correct hash for the
3✔
1025
        // next attempt.
3✔
1026
        if err := p.shardTracker.CancelShard(attemptID); err != nil {
3✔
1027
                return nil, err
×
1028
        }
×
1029

1030
        attempt, err := p.router.cfg.Control.FailAttempt(
3✔
1031
                p.identifier, attemptID, failInfo,
3✔
1032
        )
3✔
1033
        if err != nil {
3✔
1034
                return nil, err
×
1035
        }
×
1036

1037
        return &attemptResult{
3✔
1038
                attempt: attempt,
3✔
1039
                err:     sendError,
3✔
1040
        }, nil
3✔
1041
}
1042

1043
// marshallError marshall an error as received from the switch to a structure
1044
// that is suitable for database storage.
1045
func marshallError(sendError error, time time.Time) *channeldb.HTLCFailInfo {
3✔
1046
        response := &channeldb.HTLCFailInfo{
3✔
1047
                FailTime: time,
3✔
1048
        }
3✔
1049

3✔
1050
        switch {
3✔
1051
        case errors.Is(sendError, htlcswitch.ErrPaymentIDNotFound):
×
1052
                response.Reason = channeldb.HTLCFailInternal
×
1053
                return response
×
1054

1055
        case errors.Is(sendError, htlcswitch.ErrUnreadableFailureMessage):
×
1056
                response.Reason = channeldb.HTLCFailUnreadable
×
1057
                return response
×
1058
        }
1059

1060
        var rtErr htlcswitch.ClearTextError
3✔
1061
        ok := errors.As(sendError, &rtErr)
3✔
1062
        if !ok {
3✔
1063
                response.Reason = channeldb.HTLCFailInternal
×
1064
                return response
×
1065
        }
×
1066

1067
        message := rtErr.WireMessage()
3✔
1068
        if message != nil {
6✔
1069
                response.Reason = channeldb.HTLCFailMessage
3✔
1070
                response.Message = message
3✔
1071
        } else {
3✔
1072
                response.Reason = channeldb.HTLCFailUnknown
×
1073
        }
×
1074

1075
        // If the ClearTextError received is a ForwardingError, the error
1076
        // originated from a node along the route, not locally on our outgoing
1077
        // link. We set failureSourceIdx to the index of the node where the
1078
        // failure occurred. If the error is not a ForwardingError, the failure
1079
        // occurred at our node, so we leave the index as 0 to indicate that
1080
        // we failed locally.
1081
        var fErr *htlcswitch.ForwardingError
3✔
1082
        ok = errors.As(rtErr, &fErr)
3✔
1083
        if ok {
6✔
1084
                response.FailureSourceIndex = uint32(fErr.FailureSourceIdx)
3✔
1085
        }
3✔
1086

1087
        return response
3✔
1088
}
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