2019-05-23 21:05:29 +03:00
|
|
|
package routing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
|
|
sphinx "github.com/lightningnetwork/lightning-onion"
|
2019-05-23 21:05:29 +03:00
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
2019-05-23 21:05:29 +03:00
|
|
|
"github.com/lightningnetwork/lnd/htlcswitch"
|
2020-04-01 01:13:22 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
2019-05-23 21:05:29 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
|
|
"github.com/lightningnetwork/lnd/routing/route"
|
|
|
|
)
|
|
|
|
|
2019-05-23 22:17:16 +03:00
|
|
|
// errNoRoute is returned when all routes from the payment session have been
|
|
|
|
// attempted.
|
|
|
|
type errNoRoute struct {
|
|
|
|
// lastError is the error encountered during the last payment attempt,
|
|
|
|
// if at least one attempt has been made.
|
2019-06-19 12:12:10 +03:00
|
|
|
lastError error
|
2019-05-23 22:17:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Error returns a string representation of the error.
|
|
|
|
func (e errNoRoute) Error() string {
|
|
|
|
return fmt.Sprintf("unable to route payment to destination: %v",
|
|
|
|
e.lastError)
|
|
|
|
}
|
|
|
|
|
2019-05-23 21:05:29 +03:00
|
|
|
// paymentLifecycle holds all information about the current state of a payment
|
|
|
|
// needed to resume if from any point.
|
|
|
|
type paymentLifecycle struct {
|
2020-04-01 01:13:22 +03:00
|
|
|
router *ChannelRouter
|
2020-04-01 01:13:22 +03:00
|
|
|
totalAmount lnwire.MilliSatoshi
|
|
|
|
feeLimit lnwire.MilliSatoshi
|
2020-04-01 01:13:22 +03:00
|
|
|
paymentHash lntypes.Hash
|
2020-04-01 01:13:22 +03:00
|
|
|
paySession PaymentSession
|
|
|
|
timeoutChan <-chan time.Time
|
|
|
|
currentHeight int32
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// resumePayment resumes the paymentLifecycle from the current state.
|
|
|
|
func (p *paymentLifecycle) resumePayment() ([32]byte, *route.Route, error) {
|
2020-04-01 01:13:24 +03:00
|
|
|
shardHandler := &shardHandler{
|
|
|
|
router: p.router,
|
|
|
|
paymentHash: p.paymentHash,
|
|
|
|
}
|
|
|
|
|
2019-05-23 21:05:29 +03:00
|
|
|
// We'll continue until either our payment succeeds, or we encounter a
|
|
|
|
// critical error during path finding.
|
|
|
|
for {
|
2020-04-01 01:13:24 +03:00
|
|
|
// We start every iteration by fetching the lastest state of
|
|
|
|
// the payment from the ControlTower. This ensures that we will
|
|
|
|
// act on the latest available information, whether we are
|
|
|
|
// resuming an existing payment or just sent a new attempt.
|
|
|
|
payment, err := p.router.cfg.Control.FetchPayment(
|
|
|
|
p.paymentHash,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return [32]byte{}, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go through the HTLCs for this payment, determining if there
|
|
|
|
// are any in flight or settled.
|
|
|
|
var (
|
|
|
|
attempt *channeldb.HTLCAttemptInfo
|
|
|
|
settle *channeldb.HTLCAttempt
|
|
|
|
)
|
|
|
|
for _, a := range payment.HTLCs {
|
|
|
|
a := a
|
|
|
|
|
|
|
|
// We have a settled HTLC, and should return when all
|
|
|
|
// shards are back.
|
|
|
|
if a.Settle != nil {
|
|
|
|
settle = &a
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// This HTLC already failed, ignore.
|
|
|
|
if a.Failure != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// HTLC was neither setteld nor failed, it is still in
|
|
|
|
// flight.
|
|
|
|
attempt = &a.HTLCAttemptInfo
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// Terminal state, return the preimage and the route taken.
|
|
|
|
if attempt == nil && settle != nil {
|
|
|
|
return settle.Settle.Preimage, &settle.Route, nil
|
|
|
|
}
|
2019-05-23 21:05:29 +03:00
|
|
|
|
2019-05-23 21:05:29 +03:00
|
|
|
// If this payment had no existing payment attempt, we create
|
|
|
|
// and send one now.
|
2020-04-01 01:13:24 +03:00
|
|
|
if attempt == nil {
|
2020-04-01 01:13:23 +03:00
|
|
|
// Before we attempt this next payment, we'll check to see if either
|
|
|
|
// we've gone past the payment attempt timeout, or the router is
|
|
|
|
// exiting. In either case, we'll stop this payment attempt short. If a
|
|
|
|
// timeout is not applicable, timeoutChan will be nil.
|
|
|
|
select {
|
|
|
|
case <-p.timeoutChan:
|
|
|
|
// Mark the payment as failed because of the
|
|
|
|
// timeout.
|
|
|
|
err := p.router.cfg.Control.Fail(
|
|
|
|
p.paymentHash, channeldb.FailureReasonTimeout,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return [32]byte{}, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
errStr := fmt.Sprintf("payment attempt not completed " +
|
|
|
|
"before timeout")
|
|
|
|
|
|
|
|
return [32]byte{}, nil, newErr(ErrPaymentAttemptTimeout, errStr)
|
|
|
|
|
|
|
|
// The payment will be resumed from the current state
|
|
|
|
// after restart.
|
|
|
|
case <-p.router.quit:
|
|
|
|
return [32]byte{}, nil, ErrRouterShuttingDown
|
|
|
|
|
|
|
|
// Fall through if we haven't hit our time limit or are
|
|
|
|
// exiting.
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new payment attempt from the given payment session.
|
|
|
|
rt, err := p.paySession.RequestRoute(
|
|
|
|
p.totalAmount, p.feeLimit, 0, uint32(p.currentHeight),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("Failed to find route for payment %x: %v",
|
|
|
|
p.paymentHash, err)
|
|
|
|
|
|
|
|
// Convert error to payment-level failure.
|
|
|
|
failure := errorToPaymentFailure(err)
|
|
|
|
|
|
|
|
// If we're unable to successfully make a payment using
|
|
|
|
// any of the routes we've found, then mark the payment
|
|
|
|
// as permanently failed.
|
|
|
|
saveErr := p.router.cfg.Control.Fail(
|
|
|
|
p.paymentHash, failure,
|
|
|
|
)
|
|
|
|
if saveErr != nil {
|
|
|
|
return [32]byte{}, nil, saveErr
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there was an error already recorded for this
|
|
|
|
// payment, we'll return that.
|
2020-04-01 01:13:24 +03:00
|
|
|
if shardHandler.lastError != nil {
|
|
|
|
return [32]byte{}, nil, errNoRoute{
|
|
|
|
lastError: shardHandler.lastError,
|
|
|
|
}
|
2020-04-01 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Terminal state, return.
|
|
|
|
return [32]byte{}, nil, err
|
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:24 +03:00
|
|
|
// With the route in hand, launch a new shard.
|
|
|
|
var outcome *launchOutcome
|
|
|
|
attempt, outcome, err = shardHandler.launchShard(rt)
|
|
|
|
|
2020-04-01 01:13:23 +03:00
|
|
|
// With SendToRoute, it can happen that the route exceeds protocol
|
|
|
|
// constraints. Mark the payment as failed with an internal error.
|
|
|
|
if err == route.ErrMaxRouteHopsExceeded ||
|
|
|
|
err == sphinx.ErrMaxRoutingInfoSizeExceeded {
|
|
|
|
|
|
|
|
log.Debugf("Invalid route provided for payment %x: %v",
|
|
|
|
p.paymentHash, err)
|
|
|
|
|
|
|
|
controlErr := p.router.cfg.Control.Fail(
|
|
|
|
p.paymentHash, channeldb.FailureReasonError,
|
|
|
|
)
|
|
|
|
if controlErr != nil {
|
|
|
|
return [32]byte{}, nil, controlErr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// In any case, don't continue if there is an error.
|
2019-05-23 21:05:29 +03:00
|
|
|
if err != nil {
|
|
|
|
return [32]byte{}, nil, err
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
2020-04-01 01:13:23 +03:00
|
|
|
|
2020-04-01 01:13:24 +03:00
|
|
|
// We ew encountered a non-critical error when
|
|
|
|
// launching the shard, handle it
|
|
|
|
if outcome.err != nil {
|
2019-05-23 21:05:29 +03:00
|
|
|
// We must inspect the error to know whether it
|
|
|
|
// was critical or not, to decide whether we
|
|
|
|
// should continue trying.
|
2020-04-01 01:13:24 +03:00
|
|
|
err = shardHandler.handleSendError(
|
|
|
|
attempt, outcome.err,
|
|
|
|
)
|
2019-05-23 21:05:29 +03:00
|
|
|
if err != nil {
|
|
|
|
return [32]byte{}, nil, err
|
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:24 +03:00
|
|
|
// Error was handled successfully, continue to
|
|
|
|
// make a new attempt.
|
2019-05-23 21:05:29 +03:00
|
|
|
continue
|
|
|
|
}
|
2020-04-01 01:13:24 +03:00
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:24 +03:00
|
|
|
// Whether this was an existing attempt or one we just sent,
|
|
|
|
// we'll now collect its result. We ignore the result for now
|
|
|
|
// if it is a success, as we will look it up in the control
|
|
|
|
// tower on the next loop iteration.
|
|
|
|
result, err := shardHandler.collectResult(attempt)
|
2020-04-01 01:13:24 +03:00
|
|
|
if err != nil {
|
|
|
|
return [32]byte{}, nil, err
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:24 +03:00
|
|
|
if result.err != nil {
|
2019-05-23 21:05:29 +03:00
|
|
|
// We must inspect the error to know whether it was
|
|
|
|
// critical or not, to decide whether we should
|
|
|
|
// continue trying.
|
2020-04-01 01:13:24 +03:00
|
|
|
err = shardHandler.handleSendError(attempt, result.err)
|
2020-04-01 01:13:24 +03:00
|
|
|
if err != nil {
|
2019-05-23 21:05:29 +03:00
|
|
|
return [32]byte{}, nil, err
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:24 +03:00
|
|
|
// Error was handled successfully, continue to make a
|
|
|
|
// new attempt.
|
2019-05-23 21:05:29 +03:00
|
|
|
continue
|
|
|
|
}
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:24 +03:00
|
|
|
// shardHandler holds what is necessary to send and collect the result of
|
|
|
|
// shards.
|
|
|
|
type shardHandler struct {
|
|
|
|
paymentHash lntypes.Hash
|
|
|
|
router *ChannelRouter
|
|
|
|
|
|
|
|
lastError error
|
|
|
|
}
|
|
|
|
|
|
|
|
// launchOutcome is a type returned from launchShard that indicates whether the
|
|
|
|
// shard was successfully send onto the network.
|
|
|
|
type launchOutcome struct {
|
|
|
|
// err is non-nil if a non-critical error was encountered when trying
|
|
|
|
// to send the shard, and we successfully updated the control tower to
|
|
|
|
// reflect this error. This can be errors like not enough local
|
|
|
|
// balance for the given route etc.
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// launchShard creates and sends an HTLC attempt along the given route,
|
|
|
|
// registering it with the control tower before sending it. It returns the
|
|
|
|
// HTLCAttemptInfo that was created for the shard, along with a launchOutcome.
|
|
|
|
// The launchOutcome is used to indicate whether the attempt was successfully
|
|
|
|
// sent. If the launchOutcome wraps a non-nil error, it means that the attempt
|
|
|
|
// was not sent onto the network, so no result will be available in the future
|
|
|
|
// for it.
|
|
|
|
func (p *shardHandler) launchShard(rt *route.Route) (*channeldb.HTLCAttemptInfo,
|
|
|
|
*launchOutcome, error) {
|
|
|
|
|
|
|
|
// Using the route received from the payment session, create a new
|
|
|
|
// shard to send.
|
|
|
|
firstHop, htlcAdd, attempt, err := p.createNewPaymentAttempt(
|
|
|
|
rt,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Before sending this HTLC to the switch, we checkpoint the fresh
|
|
|
|
// paymentID and route to the DB. This lets us know on startup the ID
|
|
|
|
// of the payment that we attempted to send, such that we can query the
|
|
|
|
// Switch for its whereabouts. The route is needed to handle the result
|
|
|
|
// when it eventually comes back.
|
|
|
|
err = p.router.cfg.Control.RegisterAttempt(p.paymentHash, attempt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now that the attempt is created and checkpointed to the DB, we send
|
|
|
|
// it.
|
|
|
|
sendErr := p.sendPaymentAttempt(attempt, firstHop, htlcAdd)
|
|
|
|
if sendErr != nil {
|
|
|
|
// TODO(joostjager): Distinguish unexpected internal errors
|
|
|
|
// from real send errors.
|
|
|
|
err := p.failAttempt(attempt, sendErr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a launchOutcome indicating the shard failed.
|
|
|
|
return attempt, &launchOutcome{
|
|
|
|
err: sendErr,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return attempt, &launchOutcome{}, nil
|
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:24 +03:00
|
|
|
// shardResult holds the resulting outcome of a shard sent.
|
|
|
|
type shardResult struct {
|
|
|
|
// preimage is the payment preimage in case of a settled HTLC. Only set
|
|
|
|
// if err is non-nil.
|
|
|
|
preimage lntypes.Preimage
|
|
|
|
|
|
|
|
// err indicates that the shard failed.
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// collectResult waits for the result for the given attempt to be available
|
|
|
|
// from the Switch, then records the attempt outcome with the control tower. A
|
|
|
|
// shardResult is returned, indicating the final outcome of this HTLC attempt.
|
|
|
|
func (p *shardHandler) collectResult(attempt *channeldb.HTLCAttemptInfo) (
|
|
|
|
*shardResult, error) {
|
|
|
|
|
|
|
|
// Regenerate the circuit for this attempt.
|
|
|
|
_, circuit, err := generateSphinxPacket(
|
|
|
|
&attempt.Route, p.paymentHash[:],
|
|
|
|
attempt.SessionKey,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Using the created circuit, initialize the error decrypter so we can
|
|
|
|
// parse+decode any failures incurred by this payment within the
|
|
|
|
// switch.
|
|
|
|
errorDecryptor := &htlcswitch.SphinxErrorDecrypter{
|
|
|
|
OnionErrorDecrypter: sphinx.NewOnionErrorDecrypter(circuit),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now ask the switch to return the result of the payment when
|
|
|
|
// available.
|
|
|
|
resultChan, err := p.router.cfg.Payer.GetPaymentResult(
|
|
|
|
attempt.AttemptID, p.paymentHash, errorDecryptor,
|
|
|
|
)
|
|
|
|
switch {
|
|
|
|
|
|
|
|
// If this attempt ID is unknown to the Switch, it means it was never
|
|
|
|
// checkpointed and forwarded by the switch before a restart. In this
|
|
|
|
// case we can safely send a new payment attempt, and wait for its
|
|
|
|
// result to be available.
|
|
|
|
case err == htlcswitch.ErrPaymentIDNotFound:
|
|
|
|
log.Debugf("Payment ID %v for hash %x not found in "+
|
|
|
|
"the Switch, retrying.", attempt.AttemptID,
|
|
|
|
p.paymentHash)
|
|
|
|
|
|
|
|
cErr := p.failAttempt(attempt, err)
|
|
|
|
if cErr != nil {
|
|
|
|
return nil, cErr
|
|
|
|
}
|
|
|
|
|
|
|
|
return &shardResult{
|
|
|
|
err: err,
|
|
|
|
}, nil
|
|
|
|
|
|
|
|
// A critical, unexpected error was encountered.
|
|
|
|
case err != nil:
|
|
|
|
log.Errorf("Failed getting result for attemptID %d "+
|
|
|
|
"from switch: %v", attempt.AttemptID, err)
|
|
|
|
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// The switch knows about this payment, we'll wait for a result to be
|
|
|
|
// available.
|
|
|
|
var (
|
|
|
|
result *htlcswitch.PaymentResult
|
|
|
|
ok bool
|
|
|
|
)
|
|
|
|
|
|
|
|
select {
|
|
|
|
case result, ok = <-resultChan:
|
|
|
|
if !ok {
|
|
|
|
return nil, htlcswitch.ErrSwitchExiting
|
|
|
|
}
|
|
|
|
|
|
|
|
case <-p.router.quit:
|
|
|
|
return nil, ErrRouterShuttingDown
|
|
|
|
}
|
|
|
|
|
|
|
|
// In case of a payment failure, fail the attempt with the control
|
|
|
|
// tower and return.
|
|
|
|
if result.Error != nil {
|
|
|
|
log.Errorf("Attempt to send payment %x failed: %v",
|
|
|
|
p.paymentHash, result.Error)
|
|
|
|
|
|
|
|
err := p.failAttempt(attempt, result.Error)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &shardResult{
|
|
|
|
err: result.Error,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// We successfully got a payment result back from the switch.
|
|
|
|
log.Debugf("Payment %x succeeded with pid=%v",
|
|
|
|
p.paymentHash, attempt.AttemptID)
|
|
|
|
|
|
|
|
// Report success to mission control.
|
|
|
|
err = p.router.cfg.MissionControl.ReportPaymentSuccess(
|
|
|
|
attempt.AttemptID, &attempt.Route,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Error reporting payment success to mc: %v",
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// In case of success we atomically store settle result to the DB move
|
|
|
|
// the shard to the settled state.
|
|
|
|
err = p.router.cfg.Control.SettleAttempt(
|
|
|
|
p.paymentHash, attempt.AttemptID,
|
|
|
|
&channeldb.HTLCSettleInfo{
|
|
|
|
Preimage: result.Preimage,
|
|
|
|
SettleTime: p.router.cfg.Clock.Now(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Unable to succeed payment attempt: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &shardResult{
|
|
|
|
preimage: result.Preimage,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2019-11-21 14:08:09 +03:00
|
|
|
// errorToPaymentFailure takes a path finding error and converts it into a
|
|
|
|
// payment-level failure.
|
|
|
|
func errorToPaymentFailure(err error) channeldb.FailureReason {
|
|
|
|
switch err {
|
2019-12-19 10:54:31 +03:00
|
|
|
case
|
|
|
|
errNoTlvPayload,
|
|
|
|
errNoPaymentAddr,
|
|
|
|
errNoPathFound,
|
2019-11-21 14:08:09 +03:00
|
|
|
errPrebuiltRouteTried:
|
|
|
|
|
|
|
|
return channeldb.FailureReasonNoRoute
|
2019-11-21 13:59:17 +03:00
|
|
|
|
|
|
|
case errInsufficientBalance:
|
|
|
|
return channeldb.FailureReasonInsufficientBalance
|
2019-11-21 14:08:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return channeldb.FailureReasonError
|
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:23 +03:00
|
|
|
// createNewPaymentAttempt creates a new payment attempt from the given route.
|
2020-04-01 01:13:24 +03:00
|
|
|
func (p *shardHandler) createNewPaymentAttempt(rt *route.Route) (
|
2020-04-01 01:13:23 +03:00
|
|
|
lnwire.ShortChannelID, *lnwire.UpdateAddHTLC,
|
|
|
|
*channeldb.HTLCAttemptInfo, error) {
|
2019-05-23 21:05:29 +03:00
|
|
|
|
|
|
|
// Generate a new key to be used for this attempt.
|
|
|
|
sessionKey, err := generateNewSessionKey()
|
|
|
|
if err != nil {
|
2020-04-01 01:13:23 +03:00
|
|
|
return lnwire.ShortChannelID{}, nil, nil, err
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the raw encoded sphinx packet to be included along
|
|
|
|
// with the htlcAdd message that we send directly to the
|
|
|
|
// switch.
|
2020-04-01 01:13:24 +03:00
|
|
|
onionBlob, _, err := generateSphinxPacket(
|
2020-04-01 01:13:22 +03:00
|
|
|
rt, p.paymentHash[:], sessionKey,
|
2019-05-23 21:05:29 +03:00
|
|
|
)
|
|
|
|
if err != nil {
|
2020-04-01 01:13:23 +03:00
|
|
|
return lnwire.ShortChannelID{}, nil, nil, err
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:05:29 +03:00
|
|
|
// Craft an HTLC packet to send to the layer 2 switch. The
|
|
|
|
// metadata within this packet will be used to route the
|
|
|
|
// payment through the network, starting with the first-hop.
|
|
|
|
htlcAdd := &lnwire.UpdateAddHTLC{
|
2019-12-11 10:41:59 +03:00
|
|
|
Amount: rt.TotalAmount,
|
|
|
|
Expiry: rt.TotalTimeLock,
|
2020-04-01 01:13:22 +03:00
|
|
|
PaymentHash: p.paymentHash,
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
copy(htlcAdd.OnionBlob[:], onionBlob)
|
|
|
|
|
|
|
|
// Attempt to send this payment through the network to complete
|
|
|
|
// the payment. If this attempt fails, then we'll continue on
|
|
|
|
// to the next available route.
|
|
|
|
firstHop := lnwire.NewShortChanIDFromInt(
|
2019-12-11 10:41:59 +03:00
|
|
|
rt.Hops[0].ChannelID,
|
2019-05-23 21:05:29 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// We generate a new, unique payment ID that we will use for
|
|
|
|
// this HTLC.
|
2020-02-07 12:31:27 +03:00
|
|
|
attemptID, err := p.router.cfg.NextPaymentID()
|
2019-05-23 21:05:29 +03:00
|
|
|
if err != nil {
|
2020-04-01 01:13:23 +03:00
|
|
|
return lnwire.ShortChannelID{}, nil, nil, err
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// We now have all the information needed to populate
|
|
|
|
// the current attempt information.
|
2020-04-01 01:13:23 +03:00
|
|
|
attempt := &channeldb.HTLCAttemptInfo{
|
2020-02-20 20:08:01 +03:00
|
|
|
AttemptID: attemptID,
|
|
|
|
AttemptTime: p.router.cfg.Clock.Now(),
|
|
|
|
SessionKey: sessionKey,
|
|
|
|
Route: *rt,
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:23 +03:00
|
|
|
return firstHop, htlcAdd, attempt, nil
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
2019-05-23 21:05:29 +03:00
|
|
|
|
2019-05-23 21:05:29 +03:00
|
|
|
// sendPaymentAttempt attempts to send the current attempt to the switch.
|
2020-04-01 01:13:24 +03:00
|
|
|
func (p *shardHandler) sendPaymentAttempt(
|
2020-04-01 01:13:24 +03:00
|
|
|
attempt *channeldb.HTLCAttemptInfo, firstHop lnwire.ShortChannelID,
|
2019-05-23 21:05:29 +03:00
|
|
|
htlcAdd *lnwire.UpdateAddHTLC) error {
|
|
|
|
|
|
|
|
log.Tracef("Attempting to send payment %x (pid=%v), "+
|
2020-04-01 01:13:24 +03:00
|
|
|
"using route: %v", p.paymentHash, attempt.AttemptID,
|
2019-05-23 21:05:29 +03:00
|
|
|
newLogClosure(func() string {
|
2020-04-01 01:13:24 +03:00
|
|
|
return spew.Sdump(attempt.Route)
|
2019-05-23 21:05:29 +03:00
|
|
|
}),
|
|
|
|
)
|
|
|
|
|
|
|
|
// Send it to the Switch. When this method returns we assume
|
|
|
|
// the Switch successfully has persisted the payment attempt,
|
|
|
|
// such that we can resume waiting for the result after a
|
|
|
|
// restart.
|
|
|
|
err := p.router.cfg.Payer.SendHTLC(
|
2020-04-01 01:13:24 +03:00
|
|
|
firstHop, attempt.AttemptID, htlcAdd,
|
2019-05-23 21:05:29 +03:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Failed sending attempt %d for payment "+
|
2020-04-01 01:13:24 +03:00
|
|
|
"%x to switch: %v", attempt.AttemptID,
|
2020-04-01 01:13:22 +03:00
|
|
|
p.paymentHash, err)
|
2019-05-23 21:05:29 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-11-11 14:27:24 +03:00
|
|
|
log.Debugf("Payment %x (pid=%v) successfully sent to switch, route: %v",
|
2020-04-01 01:13:24 +03:00
|
|
|
p.paymentHash, attempt.AttemptID, &attempt.Route)
|
2019-05-23 21:05:29 +03:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-05-23 21:05:29 +03:00
|
|
|
|
2019-05-23 21:05:29 +03:00
|
|
|
// handleSendError inspects the given error from the Switch and determines
|
|
|
|
// whether we should make another payment attempt.
|
2020-04-01 01:13:24 +03:00
|
|
|
func (p *shardHandler) handleSendError(attempt *channeldb.HTLCAttemptInfo,
|
2020-04-01 01:13:24 +03:00
|
|
|
sendErr error) error {
|
2019-05-23 22:17:16 +03:00
|
|
|
|
2019-08-05 13:13:58 +03:00
|
|
|
reason := p.router.processSendError(
|
2020-04-01 01:13:24 +03:00
|
|
|
attempt.AttemptID, &attempt.Route, sendErr,
|
2019-06-19 12:12:10 +03:00
|
|
|
)
|
2019-08-05 13:13:58 +03:00
|
|
|
if reason == nil {
|
2019-06-19 12:12:10 +03:00
|
|
|
// Save the forwarding error so it can be returned if
|
|
|
|
// this turns out to be the last attempt.
|
|
|
|
p.lastError = sendErr
|
|
|
|
return nil
|
2019-06-04 12:22:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Debugf("Payment %x failed: final_outcome=%v, raw_err=%v",
|
2020-04-01 01:13:22 +03:00
|
|
|
p.paymentHash, *reason, sendErr)
|
2019-05-23 21:05:29 +03:00
|
|
|
|
2019-06-04 12:22:23 +03:00
|
|
|
// Mark the payment failed with no route.
|
|
|
|
//
|
|
|
|
// TODO(halseth): make payment codes for the actual reason we don't
|
|
|
|
// continue path finding.
|
|
|
|
err := p.router.cfg.Control.Fail(
|
2020-04-01 01:13:22 +03:00
|
|
|
p.paymentHash, *reason,
|
2019-06-04 12:22:23 +03:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
2019-06-04 12:22:23 +03:00
|
|
|
// Terminal state, return the error we encountered.
|
|
|
|
return sendErr
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
2020-02-20 20:08:01 +03:00
|
|
|
|
|
|
|
// failAttempt calls control tower to fail the current payment attempt.
|
2020-04-01 01:13:24 +03:00
|
|
|
func (p *shardHandler) failAttempt(attempt *channeldb.HTLCAttemptInfo,
|
2020-04-01 01:13:24 +03:00
|
|
|
sendError error) error {
|
|
|
|
|
2020-02-20 20:08:01 +03:00
|
|
|
failInfo := marshallError(
|
|
|
|
sendError,
|
|
|
|
p.router.cfg.Clock.Now(),
|
|
|
|
)
|
2020-02-20 20:08:01 +03:00
|
|
|
|
|
|
|
return p.router.cfg.Control.FailAttempt(
|
2020-04-01 01:13:24 +03:00
|
|
|
p.paymentHash, attempt.AttemptID,
|
2020-02-20 20:08:01 +03:00
|
|
|
failInfo,
|
|
|
|
)
|
|
|
|
}
|
2020-02-20 20:08:01 +03:00
|
|
|
|
|
|
|
// marshallError marshall an error as received from the switch to a structure
|
|
|
|
// that is suitable for database storage.
|
|
|
|
func marshallError(sendError error, time time.Time) *channeldb.HTLCFailInfo {
|
|
|
|
response := &channeldb.HTLCFailInfo{
|
|
|
|
FailTime: time,
|
|
|
|
}
|
|
|
|
|
|
|
|
switch sendError {
|
|
|
|
|
|
|
|
case htlcswitch.ErrPaymentIDNotFound:
|
|
|
|
response.Reason = channeldb.HTLCFailInternal
|
|
|
|
return response
|
|
|
|
|
|
|
|
case htlcswitch.ErrUnreadableFailureMessage:
|
|
|
|
response.Reason = channeldb.HTLCFailUnreadable
|
|
|
|
return response
|
|
|
|
}
|
|
|
|
|
|
|
|
rtErr, ok := sendError.(htlcswitch.ClearTextError)
|
|
|
|
if !ok {
|
|
|
|
response.Reason = channeldb.HTLCFailInternal
|
|
|
|
return response
|
|
|
|
}
|
|
|
|
|
|
|
|
message := rtErr.WireMessage()
|
|
|
|
if message != nil {
|
|
|
|
response.Reason = channeldb.HTLCFailMessage
|
|
|
|
response.Message = message
|
|
|
|
} else {
|
|
|
|
response.Reason = channeldb.HTLCFailUnknown
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the ClearTextError received is a ForwardingError, the error
|
|
|
|
// originated from a node along the route, not locally on our outgoing
|
|
|
|
// link. We set failureSourceIdx to the index of the node where the
|
|
|
|
// failure occurred. If the error is not a ForwardingError, the failure
|
|
|
|
// occurred at our node, so we leave the index as 0 to indicate that
|
|
|
|
// we failed locally.
|
|
|
|
fErr, ok := rtErr.(*htlcswitch.ForwardingError)
|
|
|
|
if ok {
|
|
|
|
response.FailureSourceIndex = uint32(fErr.FailureSourceIdx)
|
|
|
|
}
|
|
|
|
|
|
|
|
return response
|
|
|
|
}
|