rust-lightning
8 months agoPin the `memchr` test-only transitive dependency of `regex` 2023-08-one-less-feature-dep
Matt Corallo [Mon, 28 Aug 2023 19:45:37 +0000 (19:45 +0000)]
Pin the `memchr` test-only transitive dependency of `regex`

8 months agoDrop dep `tokio`'s `io-util` feat as it broke MSRV and isn't useful
Matt Corallo [Mon, 28 Aug 2023 18:39:04 +0000 (18:39 +0000)]
Drop dep `tokio`'s `io-util` feat as it broke MSRV and isn't useful

We use `tokio`'s `io-util` feature to provide the
`Async{Read,Write}Ext` traits, which allow us to simply launch a
read future or `poll_write` directly as well as `split` the
`TcpStream` into a read/write half. However, these traits aren't
actually doing much for us - they are really just wrapping the
`readable` future (which we can trivially use ourselves) and
`poll_write` isn't doing anything for us that `poll_write_ready`
can't.

Similarly, the split logic is actually just `Arc`ing the
`TcpStream` and busy-waiting when an operation is busy to prevent
concurrent reads/writes. However, there's no reason to prevent
concurrent access at the stream level - we aren't ever concurrently
writing or reading (though we may concurrently read and write,
which is fine).

Worse, the `io-util` feature broke MSRV (though they're likely to
fix this upstream) and carries two additional dependencies (only
one on the latest upstream tokio).

Thus, we simply drop the dependency here.

Fixes #2527.

8 months agoMerge pull request #2485 from optout21/channel-id-4struct1
Matt Corallo [Sun, 27 Aug 2023 05:18:00 +0000 (05:18 +0000)]
Merge pull request #2485 from optout21/channel-id-4struct1

Introduce new ChannelId struct

8 months agoUse new ChannelId type
optout [Fri, 25 Aug 2023 23:30:40 +0000 (01:30 +0200)]
Use new ChannelId type

8 months agoAdd new ChannelId type; unused
optout [Fri, 25 Aug 2023 23:15:46 +0000 (01:15 +0200)]
Add new ChannelId type; unused

8 months agoMerge pull request #2197 from jbesraa/feat/lockable_score_rw
Matt Corallo [Fri, 25 Aug 2023 18:48:49 +0000 (18:48 +0000)]
Merge pull request #2197 from jbesraa/feat/lockable_score_rw

add another lock to lockable_score

8 months agoMerge pull request #2248 from TheBlueMatt/2023-04-gossip-check
Elias Rohrer [Fri, 25 Aug 2023 12:10:39 +0000 (14:10 +0200)]
Merge pull request #2248 from TheBlueMatt/2023-04-gossip-check

Implement the UtxoSource interface for REST/RPC clients

8 months agoMerge pull request #2503 from valentinewallace/2023-08-fix-router-debug-panic
Elias Rohrer [Fri, 25 Aug 2023 10:46:37 +0000 (12:46 +0200)]
Merge pull request #2503 from valentinewallace/2023-08-fix-router-debug-panic

Fix debug panic in the case where a first hop has a channel with an introduction node

8 months agoMerge pull request #2466 from TheBlueMatt/2023-07-expose-success-prob
Elias Rohrer [Fri, 25 Aug 2023 10:40:36 +0000 (12:40 +0200)]
Merge pull request #2466 from TheBlueMatt/2023-07-expose-success-prob

Expose the historical success probability calculation itself

8 months agoSplit LockableScore responsibilities between read & write operations
jbesraa [Tue, 22 Aug 2023 15:57:06 +0000 (18:57 +0300)]
Split LockableScore responsibilities between read & write operations

    - Split Score from LockableScore to ScoreLookUp to handle read
      operations and ScoreUpdate to handle write operations
    - Change all struct that implemented Score to implement ScoreLookUp
      and/or ScoreUpdate
    - Change Mutex's to RwLocks to allow multiple data readers
    - Change LockableScore to Deref in ScorerAccountingForInFlightHtlcs
      as we only need to read
    - Add ScoreLookUp and ScoreUpdate docs
    - Remove reference(&'a) and Sized from Score in ScorerAccountingForInFlightHtlcs
      as Score implements Deref
    - Split MultiThreadedScoreLock into MultiThreadedScoreLockWrite and MultiThreadedScoreLockRead.
      After splitting LockableScore, we split MultiThreadedScoreLock following
      the same way, splitting a single score into two srtucts, one for read and
      other for write.
      MultiThreadedScoreLock is used in c_bindings.

8 months agoMerge pull request #2519 from Sharmalm/main
Matt Corallo [Thu, 24 Aug 2023 23:28:52 +0000 (23:28 +0000)]
Merge pull request #2519 from Sharmalm/main

Print contents of our own channel updates for broadcast in non-gossip logs

8 months agoRouter: account for blinded path fee, etc on first_hop<>intro hop add
Valentine Wallace [Tue, 15 Aug 2023 21:32:46 +0000 (17:32 -0400)]
Router: account for blinded path fee, etc on first_hop<>intro hop add

This previously led to a debug panic in the router because we wouldn't account
for the blinded path fee when calculating first_hop<>intro_node hop's available
liquidity and construct an invalid path that forwarded more over said hop than
was actually available.

This also led to us hitting unreachable code, see direct_to_matching_intro_nodes
test description.

8 months agoimproving message in log
Lalitmohansharma1 [Thu, 24 Aug 2023 14:51:08 +0000 (20:21 +0530)]
improving message in log

8 months agoFail UTXO lookups if the block doesn't have five confirmations 2023-04-gossip-check
Matt Corallo [Mon, 5 Jun 2023 17:22:36 +0000 (17:22 +0000)]
Fail UTXO lookups if the block doesn't have five confirmations

The BOLT spec mandates that channels not be announced until they
have at least six confirmations. This is important to enforce not
because we particularly care about any specific DoS concerns, but
because if we do not we may have to handle reorgs of channel
funding transactions which change their SCID or have conflicting
SCIDs.

8 months agoAdd a simple naive block cache in gossip sync lookups
Matt Corallo [Sun, 30 Apr 2023 02:06:19 +0000 (02:06 +0000)]
Add a simple naive block cache in gossip sync lookups

8 months agoMake the `P2PGossipSync` `UtxoLookup` exchangable without &mut self
Matt Corallo [Sun, 30 Apr 2023 00:48:57 +0000 (00:48 +0000)]
Make the `P2PGossipSync` `UtxoLookup` exchangable without &mut self

Because a `UtxoLookup` implementation is likely to need a reference
to the `PeerManager` which contains a reference to the
`P2PGossipSync`, it is likely to be impossible to get a mutable
reference to the `P2PGossipSync` by the time we want to add a
`UtxoLookup` without a ton of boilerplate and trait wrapping.

Instead, we simply place the `UtxoLookup` in a `RwLock`, allowing
us to modify it without a mutable self reference.

The lifetime bounds updates in tests required in this commit are
entirely unclear to me, but do allow tests to continue building, so
somehow make rustc happier.

8 months agoImplement the `UtxoSource` interface for REST/RPC clients
Matt Corallo [Sat, 29 Apr 2023 22:32:57 +0000 (22:32 +0000)]
Implement the `UtxoSource` interface for REST/RPC clients

In LDK, we expect users operating nodes on the public network to
implement the `UtxoSource` interface in order to validate the
gossip they receive from the network.

Sadly, because the DoS attack of flooding a node's gossip store
isn't a common issue, and because we do not provide an
implementation off-the-shelf to make doing so easily, many of our
downstream users do not have a `UtxoSource` implementation.

In order to change that, here we implement an async `UtxoSource`
in the `lightning-block-sync` crate, providing one for users who
sync the chain from Bitcoin Core's RPC or REST interfaces.

8 months agoMerge pull request #2515 from TheBlueMatt/2023-08-earlier-payment-hash-log
Matt Corallo [Wed, 23 Aug 2023 21:46:23 +0000 (21:46 +0000)]
Merge pull request #2515 from TheBlueMatt/2023-08-earlier-payment-hash-log

Include payment hash in more early payment logs

8 months agoStore a `HistoricalMinMaxBuckets` in `DirectedChannelLiquidity` 2023-07-expose-success-prob
Matt Corallo [Wed, 23 Aug 2023 00:46:18 +0000 (00:46 +0000)]
Store a `HistoricalMinMaxBuckets` in `DirectedChannelLiquidity`

This removes the need to reconstruct the struct in a number of
places by simply creating it up front.

8 months agoMove the bucketed history tracking logic into a scoring submodule
Matt Corallo [Sat, 20 May 2023 23:31:57 +0000 (23:31 +0000)]
Move the bucketed history tracking logic into a scoring submodule

8 months agoExpose the historical success probability calculation itself
Matt Corallo [Sat, 20 May 2023 23:28:18 +0000 (23:28 +0000)]
Expose the historical success probability calculation itself

In 3f32f60ae7e75a4be96d3d5adc8d18b53445e5e5 we exposed the
historical success probability buckets directly, with a long method
doc explaining how to use it. While this is great for logging
exactly what the internal model thinks, its also helpful to let
users know what the internal model thinks the success probability
is directly, allowing them to compare route success probabilities.

Here we do so but only for the historical tracking buckets.

8 months agoFind payment bucket in calculate_success_probability_times_billion
Matt Corallo [Sun, 9 Apr 2023 04:43:23 +0000 (04:43 +0000)]
Find payment bucket in calculate_success_probability_times_billion

This simply moves code which will simplify the next commit
somewhat.

8 months agoCorrectly apply penalty bounds on the per-amount penalties
Matt Corallo [Mon, 10 Apr 2023 22:54:48 +0000 (22:54 +0000)]
Correctly apply penalty bounds on the per-amount penalties

When we attempt to score a channel which has a success probability
very low, we may have a log well above our cut-off of two. For the
liquidity penalties this works great, we bound it by
`NEGATIVE_LOG10_UPPER_BOUND` and `min` the two scores. For the
amount liquidity penalty we didn't do any `min`ing at all.

This fix is to min the log itself first and then reuse the min'd
log in both calculations.

8 months agoDon't rely on `calculate_success_probability*` to handle amt > cap
Matt Corallo [Mon, 10 Apr 2023 07:05:31 +0000 (07:05 +0000)]
Don't rely on `calculate_success_probability*` to handle amt > cap

Currently we let an `htlc_amount >= channel_capacity` pass through
from `penalty_msat` to
`calculate_success_probability_times_billion`, but only if its only
marginally bigger (less than 65/64ths). This is fine as
`calculate_success_probability_times_billion` handles bogus values
just fine (it will always return a zero probability in such cases).

However, this is risky, and in fact breaks in the coming commits,
so instead check it before ever calling through to the historical
bucket probability calculations.

8 months agoMerge pull request #2337 from alecchendev/2023-06-watchtower-support
Matt Corallo [Wed, 23 Aug 2023 20:05:40 +0000 (20:05 +0000)]
Merge pull request #2337 from alecchendev/2023-06-watchtower-support

Support third-party watchtowers in persistence pipeline

8 months agoMerge pull request #2412 from valentinewallace/2023-07-construct-blinded-paths
Matt Corallo [Wed, 23 Aug 2023 17:35:06 +0000 (17:35 +0000)]
Merge pull request #2412 from valentinewallace/2023-07-construct-blinded-paths

Add API for constructing blinded payment paths

8 months agoTest justice tx formation from persistence
Alec Chen [Tue, 11 Jul 2023 22:20:54 +0000 (17:20 -0500)]
Test justice tx formation from persistence

Here we implement `WatchtowerPersister`, which provides a test-only
sample implementation of `Persist` similar to how we might imagine a
user to build watchtower-like functionality in the persistence pipeline.

We test that the `WatchtowerPersister` is able to successfully build and
sign a valid justice transaction that sweeps a counterparty's funds if
they broadcast an old commitment.

8 months agoEnable signing a justice tx using the channel monitor
Alec Chen [Thu, 15 Jun 2023 03:58:10 +0000 (22:58 -0500)]
Enable signing a justice tx using the channel monitor

8 months agoExpose revokeable output index and building a justice tx from commitment
Alec Chen [Tue, 11 Jul 2023 22:15:11 +0000 (17:15 -0500)]
Expose revokeable output index and building a justice tx from commitment

For watchtowers to be able to build justice transactions for our
counterparty's revoked commitments, they need to be able to find the
revokeable output for them to sweep. Here we cache `to_self_delay` in
`CommitmentTransaction` to allow for finding this output on the struct
directly. We also add a simple helper method to aid in building the
initial spending transaction.

This also adds a unit test for both of these helpers, and
refactors a bit of a previous `CommitmentTransaction` unit test to make
adding these easier.

8 months agoEnable monitor to rebuild initial counterparty commitment tx
Alec Chen [Wed, 12 Jul 2023 18:14:10 +0000 (13:14 -0500)]
Enable monitor to rebuild initial counterparty commitment tx

Upon creating a channel monitor, it is provided with the initial
counterparty commitment transaction info directly before the very first
time it is persisted. Because of this, the very first counterparty
commitment is not seen as an update in the persistence pipeline, and so
our previous changes to the monitor and updates cannot be used to
reconstruct this commitment.

To be able to expose the counterparty's transaction for the very first
commitment, we add a thin wrapper around
`provide_latest_counterparty_commitment_tx`, that stores the necessary
data needed to reconstruct the initial commitment transaction in the
monitor.

8 months agoBuild and expose counterparty commitments from monitor update
Alec Chen [Wed, 9 Aug 2023 20:23:24 +0000 (15:23 -0500)]
Build and expose counterparty commitments from monitor update

8 months agoRemove redundant payment preimag hashing in HTLC claim pipeline 2023-08-earlier-payment-hash-log
Matt Corallo [Wed, 23 Aug 2023 03:30:56 +0000 (03:30 +0000)]
Remove redundant payment preimag hashing in HTLC claim pipeline

Currently, when we receive an HTLC claim from a peer, we first hash
the preimage they gave us before removing the HTLC, then
immediately pass the preimage to the inbound channel and hash the
preimage again before removing the HTLC and sending our peer an
`update_fulfill_htlc`. This second hash is actually only asserted
on, never used in any meaningful way as we have the htlc data
present in the same code.

Here we simply drop this second hash and move it into a
`debug_assert`.

8 months agoInclude payment hash in more early payment logs
Matt Corallo [Wed, 23 Aug 2023 02:57:35 +0000 (02:57 +0000)]
Include payment hash in more early payment logs

If a user has issues with a payment, the most obvious thing they'll
do is check logs for the payment hash. Thus, we should ensure our
logs that show a payment's lifecycle include the payment hash and
are emitted (a) as soon as LDK learns of the payment, (b) once the
payment goes out to the peer (which is already reasonably covered
in the commitment transaction building logs) and (c) when the
payment ultimately is fulfilled or fails.

Here we improve our logs for both (a) and (c).

8 months agoAdd feerate and balances to `LatestCounterpartyCommitmentTXInfo`
Alec Chen [Wed, 14 Jun 2023 20:14:14 +0000 (15:14 -0500)]
Add feerate and balances to `LatestCounterpartyCommitmentTXInfo`

This adds the feerate and local and remote output values to this channel
monitor update step so that a monitor can reconstruct the counterparty's
commitment transaction from an update. These commitment transactions
will be exposed to users in the following commits to support third-party
watchtowers in the persistence pipeline.

With only the HTLC outputs currently available in the monitor update, we
can tell how much of the channel balance is in-flight and towards which
side, however it doesn't tell us the amount that resides on either side.
Because of dust, we can't reliably derive the remote value from the
local value and visa versa. Thus, it seems these are the minimum fields
that need to be added.

8 months agoMerge pull request #2492 from optout21/payment-hash-display
valentinewallace [Wed, 23 Aug 2023 15:32:46 +0000 (11:32 -0400)]
Merge pull request #2492 from optout21/payment-hash-display

[minor] Add Display to Payment ID types

8 months agoDocument _init_and_read_* ser macro requirements
Valentine Wallace [Wed, 23 Aug 2023 15:24:25 +0000 (11:24 -0400)]
Document _init_and_read_* ser macro requirements

8 months agoFix documentation on onion message packet ControlTlvs
Valentine Wallace [Wed, 9 Aug 2023 21:29:35 +0000 (14:29 -0700)]
Fix documentation on onion message packet ControlTlvs

8 months agoBlinded paths: rename encrypted_tlvs_ss to *_rho for precision
Valentine Wallace [Tue, 1 Aug 2023 18:55:27 +0000 (11:55 -0700)]
Blinded paths: rename encrypted_tlvs_ss to *_rho for precision

The previous name can be confused for the shared secret that the rho is derived
from.

8 months agoSupport constructing BlindedPaths for payments.
Valentine Wallace [Fri, 16 Jun 2023 19:43:13 +0000 (15:43 -0400)]
Support constructing BlindedPaths for payments.

8 months agoSimplify onion message blinded hop construction
Valentine Wallace [Wed, 9 Aug 2023 21:07:58 +0000 (14:07 -0700)]
Simplify onion message blinded hop construction

Also adds a util for general blinded hop creation to be reused for blinded
payment paths.

8 months agoAdd new _init_and_read_tlv_stream ser macro
Valentine Wallace [Fri, 23 Jun 2023 18:55:43 +0000 (14:55 -0400)]
Add new _init_and_read_tlv_stream ser macro

Useful for when you want to use _init_and_read_len_prefixed_tlv_fields but there is no
length byte at the start of the TLV stream.

8 months agoUse Display of PaymentId&PaymentPreimage; avoid log_bytes macro
optout [Wed, 23 Aug 2023 04:03:15 +0000 (06:03 +0200)]
Use Display of PaymentId&PaymentPreimage; avoid log_bytes macro

8 months agoMerge pull request #2441 from arik-so/2023-07-taproot-signer-wrapped
Arik [Wed, 23 Aug 2023 00:49:24 +0000 (17:49 -0700)]
Merge pull request #2441 from arik-so/2023-07-taproot-signer-wrapped

Wrapped Channel Signer Type

8 months agoRemove unused imports.
Arik Sosman [Wed, 16 Aug 2023 15:48:17 +0000 (08:48 -0700)]
Remove unused imports.

Remove a bunch of unnecessary ChannelManager
imports.

8 months agoIntroduce ChannelSignerType.
Arik Sosman [Fri, 21 Jul 2023 19:11:20 +0000 (12:11 -0700)]
Introduce ChannelSignerType.

Rather than using a holder_signer of a specific
signer type in Channel and ChannelContext, this
allows us to hold an enum such that depending on
the type of channel, the appropriate signer could
be held in its respective variant.

Doing so required the reparametrization of Channel
from using a Signer to using the SignerProvider
trait. This percolated down to the ChannelManager
and multiple tests.

Now, when accessign various signer methods, there
is a distinction between accessing methods defined
for all signers on ChannelSigner, and accessing
type-specific methods using accessors such as
`as_ecdsa`.

8 months agoFix bench lifetimes.
Arik Sosman [Thu, 17 Aug 2023 21:19:32 +0000 (14:19 -0700)]
Fix bench lifetimes.

Benchmarks were failing because node config and
channel monitor configs were tied to the same
lifetime.

Introducing a separate lifetime allows to avoid
out-of-order deallocation errors.

8 months agoAdd Taproot feature support.
Arik Sosman [Fri, 21 Jul 2023 19:11:02 +0000 (12:11 -0700)]
Add Taproot feature support.

Introduce a Taproot feature on bits 30/31 for
initialization, node, and channel type contexts.

8 months agoFix persister/chain_monitor lifetimes.
Arik Sosman [Tue, 22 Aug 2023 02:24:49 +0000 (19:24 -0700)]
Fix persister/chain_monitor lifetimes.

The persister and chain_monitor variables must
be declared before the node channel manager is
initialized to avoid out of order deallocation.

8 months agoMerge pull request #2511 from jbesraa/add-channel-id-to-spendableoutputs-event
Matt Corallo [Tue, 22 Aug 2023 20:38:40 +0000 (20:38 +0000)]
Merge pull request #2511 from jbesraa/add-channel-id-to-spendableoutputs-event

Add channel_id to SpendableOutputs event

8 months agoMerge pull request #2432 from jkczyz/2023-07-bolt12-node-signer
valentinewallace [Tue, 22 Aug 2023 20:22:16 +0000 (16:22 -0400)]
Merge pull request #2432 from jkczyz/2023-07-bolt12-node-signer

Support signing BOLT 12 messages in `NodeSigner`

8 months agoRename ser macro
Valentine Wallace [Mon, 14 Aug 2023 23:54:31 +0000 (19:54 -0400)]
Rename ser macro

We want a similar macro for reading TLV streams without a length prefix, so
rename this one to disambiguate.

8 months agoMinor BlindedHop docs update
Valentine Wallace [Fri, 16 Jun 2023 19:42:38 +0000 (15:42 -0400)]
Minor BlindedHop docs update

8 months agoUpdate blinded path util to take iterator instead of slice
Valentine Wallace [Fri, 16 Jun 2023 18:40:28 +0000 (14:40 -0400)]
Update blinded path util to take iterator instead of slice

Useful for blinded payment path construction.

8 months agoMove Padding into blinded_path module for use in blinded payments
Valentine Wallace [Thu, 30 Mar 2023 03:55:59 +0000 (23:55 -0400)]
Move Padding into blinded_path module for use in blinded payments

8 months agoMove blinded message path util into message submodule
Valentine Wallace [Fri, 16 Jun 2023 17:59:31 +0000 (13:59 -0400)]
Move blinded message path util into message submodule

8 months agoMove some blinded path message code into message submodule.
Valentine Wallace [Fri, 16 Jun 2023 17:42:57 +0000 (13:42 -0400)]
Move some blinded path message code into message submodule.

We'll similarly separate blinded path payments code into its own module.

8 months agoMove blinded path util into blinded_path::utils
Valentine Wallace [Fri, 16 Jun 2023 17:22:53 +0000 (13:22 -0400)]
Move blinded path util into blinded_path::utils

This way it can be more easily reused for blinded payment paths.

8 months agoMerge pull request #2411 from valentinewallace/2023-07-blinded-onion-keys
Matt Corallo [Tue, 22 Aug 2023 17:10:59 +0000 (17:10 +0000)]
Merge pull request #2411 from valentinewallace/2023-07-blinded-onion-keys

Support constructing blinded path onion keys

8 months agoAdd Display to PaymentId & PaymentPreimage
optout [Tue, 22 Aug 2023 16:05:27 +0000 (18:05 +0200)]
Add Display to PaymentId & PaymentPreimage

8 months agoUse Display of PaymentHash; avoid log_bytes macro
optout [Tue, 22 Aug 2023 15:59:24 +0000 (17:59 +0200)]
Use Display of PaymentHash; avoid log_bytes macro

8 months agoAdd Display to PaymentHash
optout [Tue, 22 Aug 2023 15:58:39 +0000 (17:58 +0200)]
Add Display to PaymentHash

8 months agoAdd channel_id to SpendableOutputs event
jbesraa [Mon, 21 Aug 2023 19:45:02 +0000 (22:45 +0300)]
Add channel_id to SpendableOutputs event
    This will make it possible to
    link between SpendableOuts and ChannelMonitor

    - change channel_id to option so we dont break upgrade
    - remove unused channel_id
    - document channel_id
    - extract channel id dynamically to pass test
    - use contains to check channel_id in test as the events are not ordered
    - update docs framing
    - specify ldk version channel_id will be introduced in

Co-authored-by: Elias Rohrer <dev@tnull.de>
Update lightning/src/events/mod.rs

Co-authored-by: Elias Rohrer <dev@tnull.de>
8 months agoMerge pull request #2507 from TheBlueMatt/2023-08-lnd-6039
Elias Rohrer [Tue, 22 Aug 2023 08:20:02 +0000 (10:20 +0200)]
Merge pull request #2507 from TheBlueMatt/2023-08-lnd-6039

Work around LND bug 6039

8 months agoSupport signing BOLT 12 invoices in NodeSigner
Jeffrey Czyz [Mon, 27 Feb 2023 18:10:32 +0000 (12:10 -0600)]
Support signing BOLT 12 invoices in NodeSigner

BOLT 12 messages need to be signed in the following scenarios:
- constructing an InvoiceRequest after scanning an Offer,
- constructing an Invoice after scanning a Refund, and
- constructing an Invoice when handling an InvoiceRequest.

Extend the NodeSigner trait to support signing BOLT 12 invoices such
that it can be used in the latter contexts. The method could be used
in an OffersMessageHandler.

8 months agoUse TaggedHash in merkle::verify_signature
Jeffrey Czyz [Tue, 11 Jul 2023 20:08:23 +0000 (15:08 -0500)]
Use TaggedHash in merkle::verify_signature

An earlier commit introduced TaggedHash for use in sign_message. For
consistency, use it in verify_signature, too.

8 months agoExpose Offer/InvoiceRequest methods in Invoice
Jeffrey Czyz [Wed, 16 Aug 2023 21:35:16 +0000 (16:35 -0500)]
Expose Offer/InvoiceRequest methods in Invoice

Bolt12Invoice can either be for an Offer (via an InvoiceRequest) or a
Refund. It wraps those types, so expose their methods on both
Bolt12Invoice and UnsignedBolt12Invoice.

Since Refund does not have all the Offer/InvoiceRequest methods, use an
Option return type such that None can returned for refund-based
invoices.

For methods that are duplicated between Offer/InvoiceRequest and
Bolt12Invoice, prefer the (non-Option, if applicable) method from
Bolt12Invoice (e.g., amount_msats, signing_pubkey).

8 months agoExpose invoice accessors in UnsignedBolt12Invoice
Jeffrey Czyz [Tue, 15 Aug 2023 18:09:06 +0000 (13:09 -0500)]
Expose invoice accessors in UnsignedBolt12Invoice

8 months agoExpose Offer accessor functions in InvoiceRequest
Jeffrey Czyz [Tue, 15 Aug 2023 18:02:02 +0000 (13:02 -0500)]
Expose Offer accessor functions in InvoiceRequest

Also, expose both Offer and InvoiceRequest functions in
UnsignedInvoiceRequest.

8 months agoMacro-ize InvoiceRequest accessors for reuse
Jeffrey Czyz [Tue, 15 Aug 2023 13:24:40 +0000 (08:24 -0500)]
Macro-ize InvoiceRequest accessors for reuse

Various messages wrap InvoiceRequestContents, which shouldn't be exposed
as it is an implementation detail. Define a macro for InvoiceRequest
accessor methods so that these messages can also define them.

8 months agoMacro-ize Offer accessors for reuse
Jeffrey Czyz [Tue, 15 Aug 2023 12:45:06 +0000 (07:45 -0500)]
Macro-ize Offer accessors for reuse

InvoiceRequest wraps OfferContents, which shouldn't be exposed as it is
an implementation detail. Define a macro for Offer accessor methods so
that InvoiceRequest and UnsignedInvoiceRequest can also define them.

8 months agoMove BOLT 12 invoice method implementations
Jeffrey Czyz [Sun, 13 Aug 2023 18:29:45 +0000 (13:29 -0500)]
Move BOLT 12 invoice method implementations

8 months agoMove BOLT 12 InvoiceRequest method implementations
Jeffrey Czyz [Mon, 14 Aug 2023 17:55:34 +0000 (12:55 -0500)]
Move BOLT 12 InvoiceRequest method implementations

8 months agoMove BOLT 12 offer method implementations
Jeffrey Czyz [Tue, 15 Aug 2023 02:09:57 +0000 (21:09 -0500)]
Move BOLT 12 offer method implementations

8 months agoUnsigned BOLT 12 message parsing and serialization
Jeffrey Czyz [Sat, 12 Aug 2023 03:13:36 +0000 (22:13 -0500)]
Unsigned BOLT 12 message parsing and serialization

8 months agoRename field of unsigned BOLT message contents
Jeffrey Czyz [Sat, 12 Aug 2023 02:56:21 +0000 (21:56 -0500)]
Rename field of unsigned BOLT message contents

Using `contents` for the field name is more consistent with the signed
messages.

8 months agoWrap KeyPair by DerivedSigningPubkey
Jeffrey Czyz [Fri, 11 Aug 2023 18:11:14 +0000 (13:11 -0500)]
Wrap KeyPair by DerivedSigningPubkey

InvoiceBuilder is parameterized by a SigningPubkeyStrategy, either
ExplicitSigningPubkey and DerivedSigningPubkey. It also holds an
Option<KeyPair>, which may be None and Some for those strategies,
respectively. This leads to methods for InvoiceBuilder parameterized by
DerivedSigningPubkey needing to blindly unwrap the Option<KeyPair>.
Instead, have DerivedSigningPubkey wrap KeyPair.

8 months agoTaggedHash for BOLT 12 signing function
Jeffrey Czyz [Mon, 27 Feb 2023 20:23:05 +0000 (14:23 -0600)]
TaggedHash for BOLT 12 signing function

The function used to sign BOLT 12 messages only takes a message digest.
This doesn't allow signers to independently verify the message before
signing nor does it allow them to derive the necessary signing keys, if
needed.

Introduce a TaggedHash wrapper for a message digest, which each unsigned
BOLT 12 message type constructs upon initialization. Change the signing
function to take AsRef<TaggedHash>, which each unsigned type implements.
This allows the signing function to take any unsigned message and obtain
its tagged hash.

8 months agoSend warning messages when repeating shutdown messages at volume 2023-08-lnd-6039
Matt Corallo [Mon, 21 Aug 2023 23:04:47 +0000 (23:04 +0000)]
Send warning messages when repeating shutdown messages at volume

8 months agoMerge pull request #2498 from arik-so/arik/2023-08-gossip-logging
Matt Corallo [Mon, 21 Aug 2023 22:34:34 +0000 (22:34 +0000)]
Merge pull request #2498 from arik-so/arik/2023-08-gossip-logging

Improve network graph update logging

8 months agoMerge pull request #2478 from waterson/settle-htlcs
Matt Corallo [Mon, 21 Aug 2023 22:32:54 +0000 (22:32 +0000)]
Merge pull request #2478 from waterson/settle-htlcs

Provide the HTLCs that settled a payment.

8 months agoMerge pull request #2112 from TheBlueMatt/2023-02-sent-persist-order
Matt Corallo [Mon, 21 Aug 2023 18:02:56 +0000 (18:02 +0000)]
Merge pull request #2112 from TheBlueMatt/2023-02-sent-persist-order

Delay RAA-after-next processing until PaymentSent is are handled

8 months agoProvide the HTLCs that settled a payment.
Chris Waterson [Sun, 6 Aug 2023 22:39:21 +0000 (15:39 -0700)]
Provide the HTLCs that settled a payment.

Creates a new `events::ClaimedHTLC` struct that contains the relevant
information about a claimed HTLC; e.g., the channel it arrived on, its ID, the
amount of the HTLC, the overall amount of the payment, etc. Adds appropriate
serialization support.

Adds a `Vec<events::ClaimedHTLC>` to the `ClaimingPayment`
structure. Populates this when creating the struct by converting the
`payment.htlcs` (which are `ClaimingHTLC` structs) into `event::ClaimedHTLC`
structs. This is a straightforward transformation.

Adds a `Vec<events::ClaimedHTLC>` to the `events::Event::PaymentClaimed`
enum. This is populated directly from the `ClaimingPayment`'s `htlcs` vec.

Fixes #2477.

8 months agoStruct-ify decoded onion failures
Valentine Wallace [Thu, 20 Jul 2023 17:59:23 +0000 (13:59 -0400)]
Struct-ify decoded onion failures

To avoid several long hard-to-read tuple return values.

8 months agoDocument and test 0-len channel update onion error case
Valentine Wallace [Sun, 13 Aug 2023 00:27:35 +0000 (20:27 -0400)]
Document and test 0-len channel update onion error case

8 months agoAdd missing test coverage for bogus err packet with valid hmac
Valentine Wallace [Thu, 20 Jul 2023 17:42:12 +0000 (13:42 -0400)]
Add missing test coverage for bogus err packet with valid hmac

8 months agoGeneralize next_hop_packet_pubkey onion util
Valentine Wallace [Tue, 27 Jun 2023 16:35:03 +0000 (12:35 -0400)]
Generalize next_hop_packet_pubkey onion util

Useful for generating a next hop blinding point when forwarding a blinded
payment.

8 months agoBlinded paths: support constructing onion keys + handling onion errors
Valentine Wallace [Fri, 7 Jul 2023 17:35:42 +0000 (13:35 -0400)]
Blinded paths: support constructing onion keys + handling onion errors

We don't bother actually parsing errors from within a blinded path, since all
errors should be wiped by the introduction node by the time it gets back to us
(the sender).

8 months agoWork around LND bug 6039
Matt Corallo [Thu, 17 Aug 2023 22:34:24 +0000 (22:34 +0000)]
Work around LND bug 6039

LND hasn't properly handled shutdown messages ever, and
force-closes any time we send one while HTLCs are still present.
The issue is tracked at
https://github.com/lightningnetwork/lnd/issues/6039 and has had
multiple patches to fix it but none so far have managed to land
upstream. The issue appears to be very low priority for the LND
team despite being marked "P1".

We're not going to bother handling this in a sensible way, instead
simply repeated the Shutdown message on repeat until morale
improves.

8 months agoDelay RAA-after-next processing until PaymentSent is are handled 2023-02-sent-persist-order
Matt Corallo [Fri, 28 Jul 2023 05:30:24 +0000 (05:30 +0000)]
Delay RAA-after-next processing until PaymentSent is are handled

In 0ad1f4c943bdc9037d0c43d1b74c745befa065f0 we fixed a nasty bug
where a failure to persist a `ChannelManager` faster than a
`ChannelMonitor` could result in the loss of a `PaymentSent` event,
eventually resulting in a `PaymentFailed` instead!

As noted in that commit, there's still some risk, though its been
substantially reduced - if we receive an `update_fulfill_htlc`
message for an outbound payment, and persist the initial removal
`ChannelMonitorUpdate`, then respond with our own
`commitment_signed` + `revoke_and_ack`, followed by receiving our
peer's final `revoke_and_ack`, and then persist the
`ChannelMonitorUpdate` generated from that, all prior to completing
a `ChannelManager` persistence, we'll still forget the HTLC and
eventually trigger a `PaymentFailed` rather than the correct
`PaymentSent`.

Here we fully fix the issue by delaying the final
`ChannelMonitorUpdate` persistence until the `PaymentSent` event
has been processed and document the fact that a spurious
`PaymentFailed` event can still be generated for a sent payment.

The original fix in 0ad1f4c943bdc9037d0c43d1b74c745befa065f0 is
still incredibly useful here, allowing us to avoid blocking the
first `ChannelMonitorUpdate` until the event processing completes,
as this would cause us to add event-processing delay in our general
commitment update latency. Instead, we ultimately race the user
handling the `PaymentSent` event with how long it takes our
`revoke_and_ack` + `commitment_signed` to make it to our
counterparty and receive the response `revoke_and_ack`. This should
give the user plenty of time to handle the event before we need to
make progress.

Sadly, because we change our `ChannelMonitorUpdate` semantics, this
change requires a number of test changes, avoiding checking for a
post-RAA `ChannelMonitorUpdate` until after we process a
`PaymentSent` event. Note that this does not apply to payments we
learned the preimage for on-chain - ensuring `PaymentSent` events
from such resolutions will be addressed in a future PR. Thus, tests
which resolve payments on-chain switch to a direct call to the
`expect_payment_sent` function with the claim-expected flag unset.

8 months agoPass `OutPoint`, rather than channel id to `claim_funds_internal`
Matt Corallo [Fri, 28 Jul 2023 05:29:04 +0000 (05:29 +0000)]
Pass `OutPoint`, rather than channel id to `claim_funds_internal`

This is a trivial refactor which will be used in the next commit.

8 months agoMerge pull request #2506 from tnull/2023-08-dont-leak-internal-macros
Matt Corallo [Thu, 17 Aug 2023 19:45:40 +0000 (19:45 +0000)]
Merge pull request #2506 from tnull/2023-08-dont-leak-internal-macros

Don't require import of internal macro for `impl_writeable_tlv_based`

8 months agoImprove network graph update logging.
Arik Sosman [Tue, 15 Aug 2023 05:32:09 +0000 (22:32 -0700)]
Improve network graph update logging.

8 months agoDon't require import of internal macros
Elias Rohrer [Thu, 17 Aug 2023 08:50:23 +0000 (10:50 +0200)]
Don't require import of internal macros

Commit f560320b introduced changes that require users of
`impl_writeable_tlv_based`/`impl_writeable_tlv_based_enum` to import
`_encode_varint_length_prefixed_tlv` and `alloc` separately.

Here, we take care of the necessary imports in
`_encode_varint_length_prefixed_tlv` itself, allowing users to just
import the `impl_writeable_tlv_based` variant they need.

8 months agoMerge pull request #2501 from TheBlueMatt/2023-08-err-pre-accept
Elias Rohrer [Thu, 17 Aug 2023 07:05:08 +0000 (09:05 +0200)]
Merge pull request #2501 from TheBlueMatt/2023-08-err-pre-accept

Ensure we wipe pending un-accepted channel requests on err/discon.

8 months agoUpdate documentation on `Channel::set_outbound_scid_alias` 2023-08-err-pre-accept
Matt Corallo [Thu, 17 Aug 2023 03:35:56 +0000 (03:35 +0000)]
Update documentation on `Channel::set_outbound_scid_alias`

...and replace an assertion with a debug_assertion

8 months agoMerge pull request #2504 from alecchendev/2023-08-custom-tlvs-followup
Matt Corallo [Thu, 17 Aug 2023 03:34:22 +0000 (03:34 +0000)]
Merge pull request #2504 from alecchendev/2023-08-custom-tlvs-followup

Followup: custom HTLC TLVs

8 months agoAddress custom HTLC TLV fixups
Alec Chen [Wed, 16 Aug 2023 19:02:21 +0000 (14:02 -0500)]
Address custom HTLC TLV fixups

Don't collect iterators to compare, minorly simplify encoding the
keysend TLV, combine the _encode_tlv_stream variants to check that the
ordering of TLVs is correct including custom TLVs.

8 months agoSimplify custom HTLC TLV tests
Alec Chen [Wed, 16 Aug 2023 18:04:33 +0000 (13:04 -0500)]
Simplify custom HTLC TLV tests

Remove print statement, remove some unnecessary checks copied over from
test utils, make minor simplifications, wrap especially long lines.

8 months agoMerge pull request #2500 from TheBlueMatt/2023-08-fix-test-lifetimes
Matt Corallo [Wed, 16 Aug 2023 05:39:50 +0000 (05:39 +0000)]
Merge pull request #2500 from TheBlueMatt/2023-08-fix-test-lifetimes

8 months agoUse more human-readable lifetime names in test structs 2023-08-fix-test-lifetimes
Matt Corallo [Tue, 15 Aug 2023 20:00:07 +0000 (20:00 +0000)]
Use more human-readable lifetime names in test structs