2019-12-09 19:50:11 +03:00
|
|
|
package invoices
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
|
|
|
"github.com/lightningnetwork/lnd/clock"
|
|
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
|
|
|
"github.com/lightningnetwork/lnd/queue"
|
|
|
|
"github.com/lightningnetwork/lnd/zpay32"
|
|
|
|
)
|
|
|
|
|
|
|
|
// invoiceExpiry holds and invoice's payment hash and its expiry. This
|
|
|
|
// is used to order invoices by their expiry for cancellation.
|
|
|
|
type invoiceExpiry struct {
|
|
|
|
PaymentHash lntypes.Hash
|
|
|
|
Expiry time.Time
|
2020-04-09 11:42:10 +03:00
|
|
|
Keysend bool
|
2019-12-09 19:50:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Less implements PriorityQueueItem.Less such that the top item in the
|
|
|
|
// priorty queue will be the one that expires next.
|
|
|
|
func (e invoiceExpiry) Less(other queue.PriorityQueueItem) bool {
|
|
|
|
return e.Expiry.Before(other.(*invoiceExpiry).Expiry)
|
|
|
|
}
|
|
|
|
|
|
|
|
// InvoiceExpiryWatcher handles automatic invoice cancellation of expried
|
|
|
|
// invoices. Upon start InvoiceExpiryWatcher will retrieve all pending (not yet
|
|
|
|
// settled or canceled) invoices invoices to its watcing queue. When a new
|
|
|
|
// invoice is added to the InvoiceRegistry, it'll be forarded to the
|
|
|
|
// InvoiceExpiryWatcher and will end up in the watching queue as well.
|
|
|
|
// If any of the watched invoices expire, they'll be removed from the watching
|
|
|
|
// queue and will be cancelled through InvoiceRegistry.CancelInvoice().
|
|
|
|
type InvoiceExpiryWatcher struct {
|
|
|
|
sync.Mutex
|
|
|
|
started bool
|
|
|
|
|
|
|
|
// clock is the clock implementation that InvoiceExpiryWatcher uses.
|
|
|
|
// It is useful for testing.
|
|
|
|
clock clock.Clock
|
|
|
|
|
|
|
|
// cancelInvoice is a template method that cancels an expired invoice.
|
2020-04-09 11:42:10 +03:00
|
|
|
cancelInvoice func(lntypes.Hash, bool) error
|
2019-12-09 19:50:11 +03:00
|
|
|
|
|
|
|
// expiryQueue holds invoiceExpiry items and is used to find the next
|
|
|
|
// invoice to expire.
|
|
|
|
expiryQueue queue.PriorityQueue
|
|
|
|
|
2020-07-17 15:24:54 +03:00
|
|
|
// newInvoices channel is used to wake up the main loop when a new
|
|
|
|
// invoices is added.
|
2020-01-23 02:21:12 +03:00
|
|
|
newInvoices chan []*invoiceExpiry
|
2019-12-09 19:50:11 +03:00
|
|
|
|
|
|
|
wg sync.WaitGroup
|
|
|
|
|
|
|
|
// quit signals InvoiceExpiryWatcher to stop.
|
|
|
|
quit chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewInvoiceExpiryWatcher creates a new InvoiceExpiryWatcher instance.
|
|
|
|
func NewInvoiceExpiryWatcher(clock clock.Clock) *InvoiceExpiryWatcher {
|
|
|
|
return &InvoiceExpiryWatcher{
|
|
|
|
clock: clock,
|
2020-01-23 02:21:12 +03:00
|
|
|
newInvoices: make(chan []*invoiceExpiry),
|
2019-12-09 19:50:11 +03:00
|
|
|
quit: make(chan struct{}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start starts the the subscription handler and the main loop. Start() will
|
|
|
|
// return with error if InvoiceExpiryWatcher is already started. Start()
|
|
|
|
// expects a cancellation function passed that will be use to cancel expired
|
|
|
|
// invoices by their payment hash.
|
|
|
|
func (ew *InvoiceExpiryWatcher) Start(
|
2020-04-09 11:42:10 +03:00
|
|
|
cancelInvoice func(lntypes.Hash, bool) error) error {
|
2019-12-09 19:50:11 +03:00
|
|
|
|
|
|
|
ew.Lock()
|
|
|
|
defer ew.Unlock()
|
|
|
|
|
|
|
|
if ew.started {
|
|
|
|
return fmt.Errorf("InvoiceExpiryWatcher already started")
|
|
|
|
}
|
|
|
|
|
|
|
|
ew.started = true
|
|
|
|
ew.cancelInvoice = cancelInvoice
|
|
|
|
ew.wg.Add(1)
|
|
|
|
go ew.mainLoop()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop quits the expiry handler loop and waits for InvoiceExpiryWatcher to
|
|
|
|
// fully stop.
|
|
|
|
func (ew *InvoiceExpiryWatcher) Stop() {
|
|
|
|
ew.Lock()
|
|
|
|
defer ew.Unlock()
|
|
|
|
|
|
|
|
if ew.started {
|
|
|
|
// Signal subscriptionHandler to quit and wait for it to return.
|
|
|
|
close(ew.quit)
|
|
|
|
ew.wg.Wait()
|
|
|
|
ew.started = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-21 14:21:35 +03:00
|
|
|
// makeInvoiceExpiry checks if the passed invoice may be canceled and calculates
|
|
|
|
// the expiry time and creates a slimmer invoiceExpiry object with the hash and
|
|
|
|
// expiry time.
|
|
|
|
func makeInvoiceExpiry(paymentHash lntypes.Hash,
|
|
|
|
invoice *channeldb.Invoice) *invoiceExpiry {
|
2019-12-09 19:50:11 +03:00
|
|
|
|
|
|
|
if invoice.State != channeldb.ContractOpen {
|
2020-07-17 15:24:54 +03:00
|
|
|
log.Debugf("Invoice not added to expiry watcher: %v",
|
|
|
|
paymentHash)
|
2020-01-23 02:21:12 +03:00
|
|
|
return nil
|
2019-12-09 19:50:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
realExpiry := invoice.Terms.Expiry
|
|
|
|
if realExpiry == 0 {
|
|
|
|
realExpiry = zpay32.DefaultInvoiceExpiry
|
|
|
|
}
|
|
|
|
|
|
|
|
expiry := invoice.CreationDate.Add(realExpiry)
|
2020-01-23 02:21:12 +03:00
|
|
|
return &invoiceExpiry{
|
2019-12-09 19:50:11 +03:00
|
|
|
PaymentHash: paymentHash,
|
|
|
|
Expiry: expiry,
|
2020-04-09 11:42:10 +03:00
|
|
|
Keysend: len(invoice.PaymentRequest) == 0,
|
2019-12-09 19:50:11 +03:00
|
|
|
}
|
2020-01-23 02:21:12 +03:00
|
|
|
}
|
|
|
|
|
2020-10-21 14:21:35 +03:00
|
|
|
// AddInvoices adds invoices to the InvoiceExpiryWatcher.
|
|
|
|
func (ew *InvoiceExpiryWatcher) AddInvoices(invoices ...*invoiceExpiry) {
|
|
|
|
if len(invoices) > 0 {
|
2020-01-23 02:21:12 +03:00
|
|
|
select {
|
2020-10-21 14:21:35 +03:00
|
|
|
case ew.newInvoices <- invoices:
|
|
|
|
log.Debugf("Added %d invoices to the expiry watcher",
|
|
|
|
len(invoices))
|
2020-01-23 02:21:12 +03:00
|
|
|
|
2019-12-09 19:50:11 +03:00
|
|
|
// Select on quit too so that callers won't get blocked in case
|
|
|
|
// of concurrent shutdown.
|
2020-01-23 02:21:12 +03:00
|
|
|
case <-ew.quit:
|
|
|
|
}
|
2019-12-09 19:50:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// nextExpiry returns a Time chan to wait on until the next invoice expires.
|
|
|
|
// If there are no active invoices, then it'll simply wait indefinitely.
|
|
|
|
func (ew *InvoiceExpiryWatcher) nextExpiry() <-chan time.Time {
|
|
|
|
if !ew.expiryQueue.Empty() {
|
|
|
|
top := ew.expiryQueue.Top().(*invoiceExpiry)
|
|
|
|
return ew.clock.TickAfter(top.Expiry.Sub(ew.clock.Now()))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-01-23 02:21:12 +03:00
|
|
|
// cancelNextExpiredInvoice will cancel the next expired invoice and removes
|
|
|
|
// it from the expiry queue.
|
|
|
|
func (ew *InvoiceExpiryWatcher) cancelNextExpiredInvoice() {
|
|
|
|
if !ew.expiryQueue.Empty() {
|
2019-12-09 19:50:11 +03:00
|
|
|
top := ew.expiryQueue.Top().(*invoiceExpiry)
|
|
|
|
if !top.Expiry.Before(ew.clock.Now()) {
|
2020-01-23 02:21:12 +03:00
|
|
|
return
|
2019-12-09 19:50:11 +03:00
|
|
|
}
|
|
|
|
|
2020-04-09 11:42:10 +03:00
|
|
|
// Don't force-cancel already accepted invoices. An exception to
|
|
|
|
// this are auto-generated keysend invoices. Because those move
|
|
|
|
// to the Accepted state directly after being opened, the expiry
|
|
|
|
// field would never be used. Enabling cancellation for accepted
|
|
|
|
// keysend invoices creates a safety mechanism that can prevents
|
|
|
|
// channel force-closes.
|
|
|
|
err := ew.cancelInvoice(top.PaymentHash, top.Keysend)
|
2019-12-09 19:50:11 +03:00
|
|
|
if err != nil && err != channeldb.ErrInvoiceAlreadySettled &&
|
|
|
|
err != channeldb.ErrInvoiceAlreadyCanceled {
|
|
|
|
|
2020-07-17 15:24:54 +03:00
|
|
|
log.Errorf("Unable to cancel invoice: %v",
|
|
|
|
top.PaymentHash)
|
2019-12-09 19:50:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ew.expiryQueue.Pop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// mainLoop is a goroutine that receives new invoices and handles cancellation
|
|
|
|
// of expired invoices.
|
|
|
|
func (ew *InvoiceExpiryWatcher) mainLoop() {
|
|
|
|
defer ew.wg.Done()
|
|
|
|
|
|
|
|
for {
|
|
|
|
// Cancel any invoices that may have expired.
|
2020-01-23 02:21:12 +03:00
|
|
|
ew.cancelNextExpiredInvoice()
|
2019-12-09 19:50:11 +03:00
|
|
|
|
2020-10-21 14:21:35 +03:00
|
|
|
pushInvoices := func(invoicesWithExpiry []*invoiceExpiry) {
|
|
|
|
for _, invoiceWithExpiry := range invoicesWithExpiry {
|
|
|
|
// Avoid pushing nil object to the heap.
|
|
|
|
if invoiceWithExpiry != nil {
|
|
|
|
ew.expiryQueue.Push(invoiceWithExpiry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-09 19:50:11 +03:00
|
|
|
select {
|
2020-01-23 02:21:12 +03:00
|
|
|
|
|
|
|
case invoicesWithExpiry := <-ew.newInvoices:
|
|
|
|
// Take newly forwarded invoices with higher priority
|
|
|
|
// in order to not block the newInvoices channel.
|
2020-10-21 14:21:35 +03:00
|
|
|
pushInvoices(invoicesWithExpiry)
|
2019-12-09 19:50:11 +03:00
|
|
|
continue
|
|
|
|
|
2020-01-23 02:21:12 +03:00
|
|
|
default:
|
|
|
|
select {
|
2019-12-09 19:50:11 +03:00
|
|
|
|
2020-01-23 02:21:12 +03:00
|
|
|
case <-ew.nextExpiry():
|
|
|
|
// Wait until the next invoice expires.
|
|
|
|
continue
|
|
|
|
|
|
|
|
case invoicesWithExpiry := <-ew.newInvoices:
|
2020-10-21 14:21:35 +03:00
|
|
|
pushInvoices(invoicesWithExpiry)
|
2020-01-23 02:21:12 +03:00
|
|
|
|
|
|
|
case <-ew.quit:
|
|
|
|
return
|
|
|
|
}
|
2019-12-09 19:50:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|