Commit graph

5263 commits

Author SHA1 Message Date
Valentine Wallace
615eefb543
Verify inbound ReleaseHeldHtlc messages via hmac.
See AsyncPaymentsContext::hmac, but this prevents the recipient from
deanonymizing us. Without this, if they are able to guess the correct payment
id, then they could create a blinded path to us and confirm our identity.

We also move the PAYMENT_HASH_HMAC_INPUT const to use &[7; 16], which is safe
because this const was added since the last release. This ordering reads more
smoothly.
2024-09-13 10:40:06 -04:00
Valentine Wallace
5a7f52313b
Rename Payment{Hash,Id} hmac creation/verification methods for offers.
We want to specify that these methods are only to be used in an outbound offers
payment context, because we'll be adding similar methods for the outbound async
payments context in upcoming commits.
2024-09-13 10:40:06 -04:00
Valentine Wallace
c4f3e2567b
Don't trigger manager persistence on unexpected release_htlc message.
If someone sends us an unexpected or duplicate release_held_htlc onion message,
we should simply ignore it and not persist the entire ChannelManager in
response.
2024-09-13 10:40:06 -04:00
Valentine Wallace
7dd178738d
Correct docs on payment id in RecentPaymentDetails. 2024-09-13 10:40:06 -04:00
Valentine Wallace
6d415b15c2
Support abandoning pending outbound async payments.
Async payments may have very high expires because we may be waiting for days
for the recipient to come online, so it's important that users be able to
abandon these payments early if needed.
2024-09-13 10:40:06 -04:00
Valentine Wallace
985e6ac14a
Timeout expired outbound async payments. 2024-09-13 10:40:06 -04:00
Valentine Wallace
0297a1e4ee
Support sending async payments as an always-online sender.
Async receive is not yet supported.

Here we process inbound release_htlc onion messages, check that they actually
correspond to one of our outbound payments, and actually forward the HTLCs.
Valid release_htlc receipt indicates that the recipient has now come online to
receive.
2024-09-13 10:40:06 -04:00
Valentine Wallace
69356e7686
Split off send_payment_for_bolt12_invoice_internal util.
This new util will be able to send to both static and non-static BOLT 12
invoices.
2024-09-13 10:40:06 -04:00
Valentine Wallace
8569830eb0
Set max path len on receipt of static invoice.
Because we may receive a static invoice to pay days before the recipient
actually comes back online to receive the payment, it's good to do as many
checks as we can up-front. Here we ensure that the blinded paths provided
in the invoice won't cause us to exceed the maximum onion packet size.
2024-09-13 10:40:06 -04:00
Valentine Wallace
e4d7681cba
Error on static invoice with unknown required features. 2024-09-13 10:40:06 -04:00
Valentine Wallace
28269a7879
DRY handling when initiating payment to BOLT 12 invoice. 2024-09-13 10:40:05 -04:00
Valentine Wallace
b6f44798fc
Support initiating an async payment to a static invoice.
Supported when the sender is an always-online node. Here we send the initial
held_htlc_available onion message upon receipt of a static invoice, next we'll
need to actually send HTLCs upon getting a response to said OM.
2024-09-13 10:40:05 -04:00
Valentine Wallace
c976e4cd14
Release pending async payments to PeerManager. 2024-09-13 10:40:05 -04:00
Valentine Wallace
7fb16ea20c
Pass full message context into ChanMan blinded path util.
Allows us to repurpose this util to create blinded paths in an async payments
message context while maintaining support for the offers context.
2024-09-13 10:40:05 -04:00
Valentine Wallace
c3ed4a2687
Store async payment data in PendingOutboundPayment.
Adds a pending outbound payment variant for async payments, which indicates
that we have received a static invoice to pay and have generated a keysend preimage
for the eventual payment. When the recipient comes back online, we'll
transition from this new state to Retryable and actually forward the HTLCs.
2024-09-13 10:40:05 -04:00
Valentine Wallace
ad63a706f2
Support creating PaymentParameters from static invoices. 2024-09-13 10:40:05 -04:00
Valentine Wallace
cff6e344f5
Support checking that a static invoice matches an outbound invreq.
Useful for ensuring that an inbound static invoice matches one of our outbound
invreqs, otherwise it is an unexpected invoice and should be ignored and not
paid.
2024-09-13 10:40:03 -04:00
Valentine Wallace
3d5d64a2c8
Store AsyncPaymentsMessages for later sending
Upcoming commits will support sending and receiving held_htlc_available and
release_held_htlc messages. These messages need to be enqueued so that they can
be released in ChannelManager's implementation of AsyncPaymentsMessageHandler
to OnionMessenger for sending.
2024-09-12 11:16:03 -04:00
Valentine Wallace
e162278bc8
Pass context into held_htlc_available message handling.
Useful for using the payment_id within to look up the corresponding outbound
async payment so we know we can safely release the HTLCs to the now-onlinen
recipient.
2024-09-12 11:16:03 -04:00
Valentine Wallace
a3216acb7d
Add MessageContext for async payments.
This context will be used in reply paths for outbound held_htlc_available
messages, so we can authenticate the corresponding release_held_htlc messages.
2024-09-12 11:16:03 -04:00
Valentine Wallace
732ee149bb
Tweak debug_assert message for parsed onion messages.
More specific.
2024-09-12 11:16:03 -04:00
shaavan
b1cd8874cf Introduce handle_message_received test
- Add a test to verify the functionality of the handle_message_received
  function.
- Ensure the test covers scenarios where InvoiceRequest messages are retried
  for PendingOutboundPayments after a simulated connection loss.
2024-09-12 18:56:48 +05:30
shaavan
5cccee565f Introduce message_received in ChannelMessageHandler
- Introduce the `message_received` function to manage the
  behavior when a message is received from any peer.
- This function is used within `ChannelManager` to retry `InvoiceRequest`
  messages if we haven't received the corresponding invoice yet.
- This change makes the offer communication robust against sudden
  connection drops where the initial attempt to send the message
  might have failed.
2024-09-12 18:52:48 +05:30
shaavan
1881f35235 Introduce enqueue_invoice_request Function
1. Separate the logic of forming `invoice_request` messages from
   `invoice_request` and `reply_paths` and enqueueing them into a
   separate function.
2. This logic will be reused in the following commit when reforming
   `invoice_request` messages for retrying.
2024-09-12 18:47:44 +05:30
shaavan
17d80f970f Introduce RetryableInvoiceRequest in AwaitingInvoice
1. To enable the retry of the Invoice Request message, it's necessary
   to store the essential data required to recreate the message.
2. A new struct is introduced to manage this data, ensuring the
   InvoiceRequest message can be reliably recreated for retries.
3. The addition of an `awaiting_invoice` flag allows tracking of
   retryable invoice requests, preventing the need to lock the
   `pending_outbound_payment` mutex.
2024-09-12 18:47:33 +05:30
Matt Corallo
db905e8a8d
Merge pull request #3291 from tnull/2024-09-add-their-node-id-routing-msg-handler
Add node id to remaining `RoutingMessageHandler::handle_` methods
2024-09-11 22:25:41 +00:00
Matt Corallo
4178dd770a
Merge pull request #3163 from shaavan/invoice_reply_path
Introduce Reply Paths for BOLT12 Invoice in Offers Flow.
2024-09-11 20:17:54 +00:00
Elias Rohrer
b172942a75
Refactor: Take their_node_id by value across all handler interfaces
In order to maintain interface consistency, we refactor all message
handler interfaces to take `PublicKey` rather than `&PublicKey`, as the
difference in efficiency should be negigible and the former is easier to
handle in binding languages.

Over time, we also want to move (no pun intended) towards all messaging
interfaces using move semantics, so dropping the reference for
`PublicKey` is the first step in this direction.
2024-09-11 19:19:38 +02:00
Elias Rohrer
f68b8b6834
Add node id to remaining RoutingMessageHandler::handle_ methods
Previously, some `RoutingMessageHandler::handle_` methods (in particular
the ones handling node and channel announcements, as well as channel
updates, omitted the `their_node_id` argument. This didn't allow
implementors to discern *who* sent a particular method.

Here, we add `their_node_id: Option<&PublicKey>` to have them learn who
sent a message, and set `None` if our own node it the originator of a
broadcast operation.
2024-09-11 18:01:33 +02:00
shaavan
7b49993101 Update Offers Test to Verify BOLT12 Invoice Reply Paths
1. Updated the Offers Test to check the reply paths in BOLT12 Invoices.
2. Changed the `extract_invoice` return type from `Option<BlindedMessagePath>`
   to `BlindedMessagePath` since all BOLT12Invoices now have a corresponding
   reply path by default.
2024-09-11 18:54:49 +05:30
shaavan
a4bf936101 Add reply_path to BOLT12Invoices in Offers Flow
1. Introduced reply_path in BOLT12Invoices to address a gap in error handling.
   Previously, if a BOLT12Invoice sent in the offers flow generated an Invoice Error,
   the payer had no way to send this error back to the payee.
2. By adding a reply_path to the Invoice Message, the payer can now communicate
   any errors back to the payee, ensuring better error handling and communication
   within the offers flow.
2024-09-11 18:54:49 +05:30
shaavan
8b479ac587 Add HMAC, and nonce to OffersContext::InboundPayment
Introduce HMAC and nonce calculation when sending Invoice with
reply path, so that if we receive InvoiceError back for the
corresponding Invoice we can verify the payment hash before logging it.
2024-09-11 18:54:49 +05:30
Matt Corallo
82b3f620f5
Merge pull request #3309 from TheBlueMatt/2024-09-always-print-why
Always print why we disconnect explicitly
2024-09-10 19:47:15 +00:00
valentinewallace
a6dea2f154
Merge pull request #3305 from TheBlueMatt/2024-09-no-redundant-gossip-validation
Avoid redundant `{channel,node}_announcement` signature checks
2024-09-10 12:49:06 -04:00
Matt Corallo
7efefd7e2a Always print why we disconnect explicitly
...and drop the old, confusing, "protocol error" message when we
get a duplicate connection from a peer.

This should slightly further disambiguate disconnection reasons,
which are a key debugging tool for assigning blame.
2024-09-10 14:26:57 +00:00
Elias Rohrer
479654b0a8
Merge pull request #3306 from TheBlueMatt/2024-09-chan-id-hex
Write ChannelIds out as hex in Debug output
2024-09-10 12:33:38 +02:00
shaavan
6500277ba8 Introduce Verification trait.
- The trait defines the public method one may define for creating and
  verifying the HMAC.
- Using a pub trait to define these method allows the flexibility for
  other `OffersMessageHandler` construct to construct the HMAC and
authenticate the message.
2024-09-10 15:57:24 +05:30
Matt Corallo
56cb6a10f1 Avoid redundant {channel,node}_announcement signature checks
If we receive `{channel,node}_announcement` messages which we
already have, we first validate their signatures and then look in
our graph and discover that we should discard the messages. This
avoids a second lock in `node_announcement` handling but does not
impact our locking in `channel_announcement` handling. It also
avoids lock contention in cases where the signatures are invalid,
but that should be exceedingly rare.

For nodes with relatively few peers, this is a fine state to be in,
however for nodes with many peers, we may see the same messages
hundreds of times. This causes a rather substantial waste of CPU
resources validating gossip messages.

Instead, here, we change to checking our network graph first and
then validate the signatures only if we don't already have the
message.
2024-09-09 18:14:19 +00:00
Alec Chen
1fa7bf9391 Finish closing channel after async closing signed
In addressing a followup to test reconnection during closing negotation
with async signing, we change things to only return a `ShutdownResult`
when we actually finish shutting down the channel, i.e. we have the
signature ready to send the final closing signed. This slightly
simplifies the logic where we would shutdown our channel
prematurely before we got the final signature. This also means
that we don't push multiple `ChannelClosed` events if we receive closing
signed, reconnect, and receive closing signed again.
2024-09-09 09:46:44 -07:00
Matt Corallo
cc6e2a0f7a Write ChannelIds out as hex in Debug output
`ChannelId`s are almost always referenced as hex, so having debug
output print the raw bytes is somewhat annoying. Instead, we should
dump them as hex the same way we do for `Display`.

This uses the `hex_conservative` `impl_fmt_macros` which does all
the work for us, like we use for `lightning_types`.
2024-09-09 15:32:08 +00:00
Matt Corallo
91a60c8256 impl Borrow<[u8]> for ChannelId
We do this for `Payment*` in `lightning-types` and its needed for
the `hex_conservaitve` `impl_fmt_traits` macro which we'll use in
the next commit.
2024-09-09 15:30:09 +00:00
shaavan
e2ee325101 HMAC Construction and Verification for PaymentHash
When a InvoiceError is received for a sent BOLT12Invoice, the
corresponding PaymentHash is to be logged. Introduce hmac construction
and verification function for PaymentHash for this purpose.
2024-09-06 17:57:35 +05:30
Matt Corallo
c9de257498 Update versions to 0.0.124 and invoice 0.32 types 0.1 release 2024-09-03 18:18:52 +00:00
Matt Corallo
187a2cb45e
Merge pull request #3285 from TheBlueMatt/2024-08-tx-too-small
Correct handling of added `OP_RETURN` outputs
2024-09-03 17:53:08 +00:00
Matt Corallo
5f5c275ea3 Correct ANCHOR_INPUT_WITNESS_WEIGHT constant
`ANCHOR_INPUT_WITNESS_WEIGHT` is too high by two weight units,
likely it was calculated to include the SegWit marker bytes, but
it is used to describe an `Input::satisfaction_weight`, which does
not expect the marker bytes.

This corrects that oversight, reducing the constant by two and
adding the marker bytes back in our own internal weight
calculations. It also fixes a second issue where the constant was
too low by one when `grind_signatures` is not set, as that may
result in a signature being one byte longer than we expect.
2024-09-03 15:09:32 +00:00
Matt Corallo
5a2372ce8e Add a test for the past few commits
This adds a single test for coin selection which exercises the
issues fixed in the past three commits.
2024-09-03 14:15:28 +00:00
Matt Corallo
b3644dcdb5 Drop bogus debug assertion that we don't overpay on fees
We should always select at least as many coins as is required to
meet the feerate target, but its perfectly fine if we overshoot.
Specifically, we may overshoot deliberately if we choose to burn
change to fee instead.
2024-09-03 14:15:28 +00:00
Matt Corallo
d383ac49a2 Handle under-coin-selecting due to an added OP_RETURN output
When we do coin selection for channel close anchor spends, we may
do coin selection targeting exactly the input values we need.
However, if coin selection does not include a change output, we may
add an OP_RETURN output, which may cause us to end up with less
fee than we wanted on the resulting package.

Here we address this issue by running coin selection twice - first
without seeking the extra weight of the OP_RETURN output, and again
if we find that we under-selected.
2024-09-03 14:15:28 +00:00
Matt Corallo
ff00c63171 Ensure we never try to broadcast a transaction <= 64 bytes
While these are consensus-valid, they have been nonstandard for
quite some time and will not relay nor confirm.
2024-09-03 14:13:43 +00:00
Matt Corallo
ac4815abb6 Dont output logs when benchmarking
In 11ab302087 we accidentally removed
the `not(ldk_bench)` bound before outputting logs to stderr, which
we restore here. Instead of simply ignoring logs in benchmarks,
which we did previously, we instead format logs (in a way that LLVM
will not optimize out).
2024-08-30 18:42:04 +00:00