rust-lightning
13 days agoLog when a ChannelMonitor's claimable balances set goes empty 2024-04-2964-followups
Matt Corallo [Thu, 18 Apr 2024 21:42:48 +0000 (21:42 +0000)]
Log when a ChannelMonitor's claimable balances set goes empty

2 weeks agoCorrect `ChannelMonitor::is_fully_resolved` docs
Matt Corallo [Thu, 18 Apr 2024 21:40:41 +0000 (21:40 +0000)]
Correct `ChannelMonitor::is_fully_resolved` docs

The block count at which the monitor will become prunable was
changed by an update while the PR was pending but not propagated
to the docs.

2 weeks agoMerge pull request #2964 from jbesraa/prune-stale-chanmonitor
Matt Corallo [Thu, 18 Apr 2024 21:39:43 +0000 (14:39 -0700)]
Merge pull request #2964 from jbesraa/prune-stale-chanmonitor

Add `archive_fully_resolved_monitors` to `ChainMonitor`

2 weeks agoMerge pull request #2998 from tnull/2024-04-fix-potential-lock-race-in-CM-write
Gursharan Singh [Thu, 18 Apr 2024 20:21:08 +0000 (13:21 -0700)]
Merge pull request #2998 from tnull/2024-04-fix-potential-lock-race-in-CM-write

2 weeks agoMerge pull request #3001 from optout21/splicing-feature-bit-with-any
Jeffrey Czyz [Thu, 18 Apr 2024 19:24:00 +0000 (14:24 -0500)]
Merge pull request #3001 from optout21/splicing-feature-bit-with-any

Add splicing feature flag

2 weeks agoMerge pull request #2999 from keyuebao/keyue/update-ldk-docs
Gursharan Singh [Thu, 18 Apr 2024 17:26:07 +0000 (10:26 -0700)]
Merge pull request #2999 from keyuebao/keyue/update-ldk-docs

Update docs for ChannelClosed Event

2 weeks agoAdd `ChainMonitor::archive_fully_resolved_monitor_channels`
jbesraa [Wed, 27 Mar 2024 16:19:14 +0000 (18:19 +0200)]
Add `ChainMonitor::archive_fully_resolved_monitor_channels`

  Archives fully resolved channel monitors by adding them to a backup
  location and removing them from the primary storage & the monitor set.

  This is useful for pruning fully resolved monitors from the monitor
  set and primary storage so they are not reloaded on every new new
  block connection.

  We also add a new function, `archive_persisted_channel` to the
  `Persist` trait that writes the monitor to an archive storage and
  removes it from the primary storage.

2 weeks agoAdd `ChannelMonitor::is_fully_resolved` function
jbesraa [Fri, 29 Mar 2024 05:56:23 +0000 (08:56 +0300)]
Add `ChannelMonitor::is_fully_resolved` function

  Checks if the monitor is fully resolved. Resolved monitor is one that has claimed all of
  its ouputs and balacnes.

  This function returns true only if `get_claimable_balances` has been empty for at least
  2016 blocks.

2 weeks agoMerge pull request #2825 from tnull/2024-01-upstream-output-sweeper
Matt Corallo [Thu, 18 Apr 2024 15:24:47 +0000 (08:24 -0700)]
Merge pull request #2825 from tnull/2024-01-upstream-output-sweeper

Add `OutputSweeper` utility persisting and sweeping spendable outputs

2 weeks agoMerge pull request #2970 from jkczyz/2024-03-offer-id
Matt Corallo [Thu, 18 Apr 2024 15:21:19 +0000 (08:21 -0700)]
Merge pull request #2970 from jkczyz/2024-03-offer-id

Include a `PaymentContext` in `PaymentPurpose`

2 weeks agoEdit `Event::SpendableOutputs` docs to mention `OutputSweeper`
Elias Rohrer [Tue, 16 Apr 2024 12:50:51 +0000 (14:50 +0200)]
Edit `Event::SpendableOutputs` docs to mention `OutputSweeper`

2 weeks agoAdd basic `OutputSweeper` test in BP
Elias Rohrer [Fri, 12 Jan 2024 16:46:37 +0000 (17:46 +0100)]
Add basic `OutputSweeper` test in BP

.. we simply check that the `OutputSweeper` generates a spending tx and
that the `TrackedSpendableOutput` is pruned once it reaches
`ANTI_REORG_DELAY`.

2 weeks agoAllow delaying generation and broadcasting of spending txs
Elias Rohrer [Tue, 16 Apr 2024 12:19:54 +0000 (14:19 +0200)]
Allow delaying generation and broadcasting of spending txs

.. which enables users to batch output spends.

2 weeks agoAdd `OutputSweeper` utility persisting and sweeping spendable outputs
Elias Rohrer [Fri, 12 Jan 2024 10:36:08 +0000 (11:36 +0100)]
Add `OutputSweeper` utility persisting and sweeping spendable outputs

We add a `OutputSweeper` utility that allows to track the state of
spendable output descriptors as emitted by `Event::SpendableOutputs`.

To this end, the `OutputSweeper` persists the necessary information in
our `KVStore` and regularly tries to sweep the spendable outputs,
removing them after reaching threshold confirmations, i.e.,
`ANTI_REORG_DELAY`.

2 weeks agoAdd `ConfirmationTarget::OutputSpendingFee`
Elias Rohrer [Tue, 16 Apr 2024 11:41:57 +0000 (13:41 +0200)]
Add `ConfirmationTarget::OutputSpendingFee`

2 weeks agoUpdate PaymentPurpose's payment_preimage docs
Jeffrey Czyz [Wed, 17 Apr 2024 21:45:45 +0000 (16:45 -0500)]
Update PaymentPurpose's payment_preimage docs

Clarify that payment_preimage should only be used to claim a payment
when handling Event::PaymentClaimable, not Event::PaymentClaimed.

2 weeks agoInclude InvoiceRequest fields in PaymentContext
Jeffrey Czyz [Fri, 29 Mar 2024 02:31:10 +0000 (21:31 -0500)]
Include InvoiceRequest fields in PaymentContext

When receiving a payment, it's useful to know information about the
InvoiceRequest. Include this data in PaymentContext::Bolt12Offer so
users can display information about an inbound payment (e.g., the payer
note).

2 weeks agoTest for PaymentContext in offers_tests.rs
Jeffrey Czyz [Wed, 27 Mar 2024 01:19:32 +0000 (20:19 -0500)]
Test for PaymentContext in offers_tests.rs

2 weeks agoUse BOLT 12 PaymentPurpose variants
Jeffrey Czyz [Sat, 13 Apr 2024 23:20:19 +0000 (18:20 -0500)]
Use BOLT 12 PaymentPurpose variants

When constructing a PaymentPurpose in ChannelManager, use the
PaymentContext from OnionPayload to determine which variant to
construct, including those for BOLT 12 payments.

2 weeks agoBOLT 12 variants of PaymentPurpose
Jeffrey Czyz [Sat, 13 Apr 2024 22:29:24 +0000 (17:29 -0500)]
BOLT 12 variants of PaymentPurpose

In order to provide more context in PaymentClaimable and PaymentClaimed
events, introduce new variants of PaymentPurpose for use with BOLT 12
payments. Separate variants are used for offers and refunds. An unknown
variant is used for backwards compatibility and ease of testing, but is
otherwise not publicly constructable.

2 weeks agoAdd PaymentPurpose::is_keysend utility method
Jeffrey Czyz [Sat, 13 Apr 2024 02:21:00 +0000 (21:21 -0500)]
Add PaymentPurpose::is_keysend utility method

2 weeks agoRename InvoicePayment to Bolt11InvoicePayment
Jeffrey Czyz [Sat, 13 Apr 2024 02:17:35 +0000 (21:17 -0500)]
Rename InvoicePayment to Bolt11InvoicePayment

PaymentPurpose will be expanded to include BOLT 12 payment context.
Rename the InvoicePayment variant accordinly before new variants are
added.

2 weeks agoInclude Refund context in blinded payment paths
Jeffrey Czyz [Tue, 26 Mar 2024 23:57:57 +0000 (18:57 -0500)]
Include Refund context in blinded payment paths

When requesting a payment for a refund, include a context in the
Bolt12Invoice's blinded payment paths indicated it is for such. When the
eventual payment is received, the user can use the payment hash to
correlate it with the corresponding Refund.

2 weeks agoInclude Offer context in blinded payment paths
Jeffrey Czyz [Tue, 26 Mar 2024 23:48:39 +0000 (18:48 -0500)]
Include Offer context in blinded payment paths

When constructing blinded payment paths for a Bolt12Invoice response,
include the OfferId so that the eventual payment can be correlated with
the Offer.

2 weeks agoInclude OfferId in VerifiedInvoiceRequest
Jeffrey Czyz [Tue, 26 Mar 2024 23:39:06 +0000 (18:39 -0500)]
Include OfferId in VerifiedInvoiceRequest

Extract the OfferId from the offer metadata sent back in the
InvoiceRequest and include it in VerifiedInvoiceRequest. This can be
used to correspond the eventual payment for the invoice response by
including it in the invoice's blinded payment paths.

2 weeks agoDefine an OfferId for BOLT 12 Offers
Jeffrey Czyz [Mon, 25 Mar 2024 21:10:36 +0000 (16:10 -0500)]
Define an OfferId for BOLT 12 Offers

Use a merkle root hash of the offer TLV records to define an offer id.
Will be included in a BOLT 12 invoice's blinded payment paths in order
for the recipient to identify which offer the payment is for.

2 weeks agoPass PaymentContext through HTLC processing
Jeffrey Czyz [Tue, 26 Mar 2024 18:10:04 +0000 (13:10 -0500)]
Pass PaymentContext through HTLC processing

PendingInboundPayment::BlindedReceive includes a PaymentContext, which
the recipient includes in each blinded path. Included this when
processing HTLCs in ChannelManager, first into PendingHTLCRouting and
then to OnionPayload. Later, this will be included in the PaymentPurpose
when surfaced to user in PaymentClaimable and PaymentClaimed events.

2 weeks agoAdd PaymentContext to payment::ReceiveTlvs
Jeffrey Czyz [Tue, 26 Mar 2024 14:48:03 +0000 (09:48 -0500)]
Add PaymentContext to payment::ReceiveTlvs

Providing LDK-specific data in a BlindedPath allows for the data to be
received with the corresponding payment. This is useful as it can then
be surfaced in PaymentClaimable events where the user may correlated
with an Offer, for instance. Define a PaymentContext enum for including
various context (e.g., offer, refund, static invoice).

2 weeks agoReturn the invoice when requesting a refund
Jeffrey Czyz [Tue, 12 Mar 2024 00:00:40 +0000 (19:00 -0500)]
Return the invoice when requesting a refund

When sending an invoice for a refund, information from the invoice may
be useful for caller. For instance, the payment_hash can be used to
track whether the refund was paid. Return the invoice to facilitate this
use case.

2 weeks agoIntroduce `ChangeDestinationSource` trait
Elias Rohrer [Tue, 16 Apr 2024 09:12:43 +0000 (11:12 +0200)]
Introduce `ChangeDestinationSource` trait

.. which users should implement on their on-chain wallet to allow us to
retrieve a new change destination script.

2 weeks agoIntroduce `OutputSpender` trait and implement for `(Phantom)KeysManager`
Elias Rohrer [Tue, 16 Apr 2024 08:52:51 +0000 (10:52 +0200)]
Introduce `OutputSpender` trait and implement for `(Phantom)KeysManager`

.. we move `spend_spendable_outputs` to a new trait which we can easily
reuse in `OutputSweeper` later.

2 weeks agoAdd splicing feature flag (also triggers dual_funding)
optout [Thu, 18 Apr 2024 06:40:34 +0000 (08:40 +0200)]
Add splicing feature flag (also triggers dual_funding)

2 weeks agoUpdate docs for ChannelClosed Event
Keyue Bao [Wed, 17 Apr 2024 15:59:04 +0000 (08:59 -0700)]
Update docs for ChannelClosed Event

2 weeks agoAcquire `per_peer_state` `write` lock earlier in `ChannelManager::write`
Elias Rohrer [Wed, 17 Apr 2024 09:54:25 +0000 (11:54 +0200)]
Acquire `per_peer_state` `write` lock earlier in `ChannelManager::write`

Previously, we would hold the `per_peer_state` `read` lock during the
serialization of channel objects. While this might have reduced lock
congestion minimally, we also calculated the number of serializable
peers in this phase, only to use it later after dropping and reacquiring
the `per_peer_state` `write` lock.

This could potentially result in inconsistiencies if the
`serializable_peer_count` would change after we dropped the `read` lock
but before we acquired the `write` lock.

To mitigate the issue we just acquire the `write` lock ealier and hold
it for the remainder of `ChannelManager::write`.

2 weeks agoMerge pull request #2991 from optout21/txsigs-splicing
Matt Corallo [Tue, 16 Apr 2024 20:27:54 +0000 (13:27 -0700)]
Merge pull request #2991 from optout21/txsigs-splicing

Add tx_signatures.tlvs field (splicing-specific field in dual funding message)

2 weeks agoAdd tx_signatures.tlvs field (splicing-specific field in dual funding message)
optout [Tue, 16 Apr 2024 05:32:37 +0000 (07:32 +0200)]
Add tx_signatures.tlvs field (splicing-specific field in dual funding message)

2 weeks agoMerge pull request #2993 from wpaulino/handshake-complete-timer-tick-occurred-race
Matt Corallo [Mon, 15 Apr 2024 21:21:47 +0000 (21:21 +0000)]
Merge pull request #2993 from wpaulino/handshake-complete-timer-tick-occurred-race

Fix race between handshake_complete and timer_tick_occurred

2 weeks agoImplement Eq and Hash for Bolt12Invoice
Jeffrey Czyz [Mon, 11 Mar 2024 23:31:50 +0000 (18:31 -0500)]
Implement Eq and Hash for Bolt12Invoice

Bolt12Invoice will be added to a new Event::InvoiceGenerated variant.
These traits along with PartialEq are required to be implemented for any
type used in an Event.

2 weeks agoRefactor handling of Bolt12Invoice
Jeffrey Czyz [Mon, 11 Mar 2024 22:03:26 +0000 (17:03 -0500)]
Refactor handling of Bolt12Invoice

In order to provide an InvoiceGenerated event, it would be cleaner to
have one location where a Bolt12Invoice is successfully created.
Refactor the handling code to this end and clean-up line length by
making some of the type conversions more streamlined.

2 weeks agoRefactor handling of InvoiceRequest
Jeffrey Czyz [Sun, 10 Mar 2024 00:58:01 +0000 (18:58 -0600)]
Refactor handling of InvoiceRequest

In order to generate and InvoiceSent event, it would be cleaner to have
one location where a Bolt12Invoice is successfully generated. Refactor
the handling code to this end and clean-up line length by making some of
the type conversions more streamlined.

2 weeks agoMerge pull request #2961 from jkczyz/2024-03-compact-blinded-paths
Matt Corallo [Mon, 15 Apr 2024 17:56:29 +0000 (17:56 +0000)]
Merge pull request #2961 from jkczyz/2024-03-compact-blinded-paths

Compact blinded path handling

2 weeks agoFix typos
Jeffrey Czyz [Mon, 15 Apr 2024 16:00:28 +0000 (11:00 -0500)]
Fix typos

2 weeks agoResolve blinded path when creating onion message
Jeffrey Czyz [Sun, 7 Apr 2024 19:10:29 +0000 (21:10 +0200)]
Resolve blinded path when creating onion message

Add a version of the create_onion_message utility function that attempts
to resolved the introduction node of the destination's BlindedPath using
a ReadOnlyNetworkGraph`. Otherwise, if given a path using the compact
representation, using create_onion_message would fail. Keep the current
version for use internally and for external uses where the blinded path
is known to be resolved.

2 weeks agoCache introduction_node_id lookup in get_route
Jeffrey Czyz [Fri, 29 Mar 2024 16:24:54 +0000 (11:24 -0500)]
Cache introduction_node_id lookup in get_route

2 weeks agoLook up node id from scid in OnionMessenger
Jeffrey Czyz [Wed, 20 Mar 2024 19:31:30 +0000 (14:31 -0500)]
Look up node id from scid in OnionMessenger

When forwarding onion messages, the next node may be represented by a
short channel id instead of a node id. Parameterize OnionMessenger with
a NodeIdLookUp trait to find which node is the next hop. Implement the
trait for ChannelManager for forwarding to channel counterparties.

Also use this trait when advancing a blinded path one hop when the
sender is the introduction node.

2 weeks agoResolve IntroductionNode::DirectedShortChannelId
Jeffrey Czyz [Tue, 19 Mar 2024 02:58:04 +0000 (21:58 -0500)]
Resolve IntroductionNode::DirectedShortChannelId

When OnionMessenger creates an OnionMessage to a Destination, the latter
may contain an IntroductionNode::DirectedShortChannelId inside a
BlindedPath. Resolve these in DefaultMessageRouter and handle unresolved
ones in OnionMessenger.

2 weeks agoGeneralize BlindedPath::introduction_node_id field
Jeffrey Czyz [Fri, 15 Mar 2024 21:52:36 +0000 (16:52 -0500)]
Generalize BlindedPath::introduction_node_id field

Allow using either a node id or a directed short channel id in blinded
paths. This allows for a more compact representation of blinded paths,
which is advantageous for reducing offer QR code size.

Follow-up commits will implement handling the directed short channel id
case in OnionMessenger as it requires resolving the introduction node in
MessageRouter.

2 weeks agoAdd source reference to BlindedPathCandidate hop
Jeffrey Czyz [Wed, 20 Mar 2024 21:43:03 +0000 (16:43 -0500)]
Add source reference to BlindedPathCandidate hop

Blinded paths currently contain a node id for the introduction node.
However, a compact representation will allow a directed short channel id
instead. Update BlindedPathCandidate and OneHopBlindedPathCandidate to
store a NodeId reference from either the NetworkGraph or from the user-
provided first hops.

This approach avoids looking up the introduction node id on demand,
which may not be resolvable. Thus, that would require returning an
Option from CandidateRouteHop::source and handle None accordingly.

2 weeks agoMerge pull request #2987 from TheBlueMatt/2024-04-test-ser-bug
valentinewallace [Mon, 15 Apr 2024 15:23:09 +0000 (11:23 -0400)]
Merge pull request #2987 from TheBlueMatt/2024-04-test-ser-bug

Add test coverage for cc78b77c715d6ef62693d4c1bc7190da990ec0fa

3 weeks agoMerge pull request #2971 from jbesraa/review-club/2815
Matt Corallo [Sat, 13 Apr 2024 19:59:05 +0000 (19:59 +0000)]
Merge pull request #2971 from jbesraa/review-club/2815

Fix comparison in `get_dust_buffer_feerate`

3 weeks agoFix `cmp::max` execution in `ChannelContext::get_dust_buffer_feerate`
jbesraa [Tue, 26 Mar 2024 17:23:37 +0000 (19:23 +0200)]
Fix `cmp::max` execution in `ChannelContext::get_dust_buffer_feerate`

  The current `cmp::max` doesnt align with the function comment, ie its
  comparing 2530 and `feerate_plus_quarter` instead of `feerate_per_kw
  + 2530` and `feerate_plus_quarter` which is fixed in this commit

3 weeks agoFix race between handshake_complete and timer_tick_occurred
Wilmer Paulino [Fri, 12 Apr 2024 17:23:45 +0000 (10:23 -0700)]
Fix race between handshake_complete and timer_tick_occurred

The initial noise handshake on connection establishment must complete
within a single timer tick. This timeout is enforced via
`awaiting_pong_timer_tick_intervals` whenever a timer tick fires while
our handshake has yet to complete. Currently, on an inbound connection,
if a timer tick fires after we've sent act two of the noise handshake
along with our init message and before receiving the counterparty's init
message, we begin enforcing such timeout. Even if we immediately
continue to process the counterparty's init message to complete to
handshake, the timeout enforcement is not cleared. With the handshake
complete, `awaiting_pong_timer_tick_intervals` is now tracked to enforce
a pong timeout, except a ping was never actually sent. If a single timer
tick fires again without having received a message from the peer, or
enough timer ticks fire to trigger the
`MAX_BUFFER_DRAIN_TICK_INTERVALS_PER_PEER` logic, we'll end up
disconnecting the peer due to a timeout for a pong we'll never receive.

We fix this by always resetting `awaiting_pong_timer_tick_intervals`
upon processing our counterparty's init message.

3 weeks agoAdd BlindedPath::introduction_node_id method
Jeffrey Czyz [Wed, 20 Mar 2024 21:42:30 +0000 (16:42 -0500)]
Add BlindedPath::introduction_node_id method

Blinded paths use a pubkey to identify the introduction node, but it
will soon allow using a directed short channel id instead. Add an
introduction_node_id method to BlindedPath to facilitate lookup in the
latter case.

3 weeks agoAdd IndexedMap::get_key_value
Jeffrey Czyz [Tue, 12 Dec 2023 20:51:22 +0000 (14:51 -0600)]
Add IndexedMap::get_key_value

Useful for applying Option::map when needing both the key and value for
when needing a reference to the key with a longer lifetime.

3 weeks agoGeneralize onion message ForwardTlvs::next_node_id
Jeffrey Czyz [Sat, 2 Mar 2024 18:28:20 +0000 (12:28 -0600)]
Generalize onion message ForwardTlvs::next_node_id

Allow either using a node id or a short channel id when forwarding an
onion message. This allows for a more compact representation of blinded
paths, which is advantageous for reducing offer QR code size.

Follow-up commits will implement handling the short channel id case as
it requires looking up the destination node id.

3 weeks agoMerge pull request #2910 from tnull/2024-02-rustfmt-sign-mod
Matt Corallo [Wed, 10 Apr 2024 20:50:46 +0000 (20:50 +0000)]
Merge pull request #2910 from tnull/2024-02-rustfmt-sign-mod

`rustfmt`:  Format `sign` module

3 weeks agoAdd test coverage for cc78b77c715d6ef62693d4c1bc7190da990ec0fa 2024-04-test-ser-bug
Valentine Wallace [Fri, 29 Mar 2024 21:48:26 +0000 (17:48 -0400)]
Add test coverage for cc78b77c715d6ef62693d4c1bc7190da990ec0fa

cc78b77c715d6ef62693d4c1bc7190da990ec0fa fixed an important
downgrade bug, but neglected to add test coverage. Here we recitfy
that by adding a few simple tests of common cases.

Tests heavily tweaked by Matt Corallo <git@bluematt.me>.

3 weeks agoRemove `no-std-check/src/lib.rs` from `rustfmt` exclusion list
Elias Rohrer [Fri, 23 Feb 2024 11:12:50 +0000 (12:12 +0100)]
Remove `no-std-check/src/lib.rs` from `rustfmt` exclusion list

.. now continously checking its formatting in CI.

3 weeks agoRemove `msrv-no-dev-deps-check/src/lib.rs` from `rustfmt` exclusion list
Elias Rohrer [Fri, 23 Feb 2024 11:11:50 +0000 (12:11 +0100)]
Remove `msrv-no-dev-deps-check/src/lib.rs` from `rustfmt` exclusion list

.. now continously checking its formatting in CI.

3 weeks agoRun `rustfmt` on `msrv-no-dev-deps-check/src/lib.rs`
Elias Rohrer [Fri, 23 Feb 2024 11:12:19 +0000 (12:12 +0100)]
Run `rustfmt` on `msrv-no-dev-deps-check/src/lib.rs`

3 weeks agoRemove `sign/type_resolver.rs` from `rustfmt` exclusion list
Elias Rohrer [Fri, 23 Feb 2024 10:45:47 +0000 (11:45 +0100)]
Remove `sign/type_resolver.rs` from `rustfmt` exclusion list

.. now continously checking its formatting in CI.

3 weeks agoRun `rustfmt` on `sign/type_resolver.rs`
Elias Rohrer [Wed, 27 Mar 2024 11:14:50 +0000 (12:14 +0100)]
Run `rustfmt` on `sign/type_resolver.rs`

3 weeks agoRemove `sign/taproot.rs` from `rustfmt` exclusion list
Elias Rohrer [Fri, 23 Feb 2024 10:43:44 +0000 (11:43 +0100)]
Remove `sign/taproot.rs` from `rustfmt` exclusion list

.. now continously checking its formatting in CI.

3 weeks agoRun `rustfmt` on `sign/taproot.rs`
Elias Rohrer [Wed, 27 Mar 2024 11:14:24 +0000 (12:14 +0100)]
Run `rustfmt` on `sign/taproot.rs`

3 weeks agoRemove `sign/mod.rs` from `rustfmt` exclusion list
Elias Rohrer [Fri, 23 Feb 2024 10:41:53 +0000 (11:41 +0100)]
Remove `sign/mod.rs` from `rustfmt` exclusion list

.. now continously checking its formatting in CI.

3 weeks agoRun `rustfmt` on `sign/mod.rs`
Elias Rohrer [Tue, 9 Apr 2024 11:09:37 +0000 (13:09 +0200)]
Run `rustfmt` on `sign/mod.rs`

3 weeks agoMove `input_idx` retrieval into closure
Elias Rohrer [Wed, 27 Mar 2024 11:08:40 +0000 (12:08 +0100)]
Move `input_idx` retrieval into closure

3 weeks agoMove `htlc_basepoint` to variable
Elias Rohrer [Wed, 27 Mar 2024 10:55:19 +0000 (11:55 +0100)]
Move `htlc_basepoint` to variable

3 weeks agoMove `hash_to_message` to variable
Elias Rohrer [Wed, 27 Mar 2024 10:53:33 +0000 (11:53 +0100)]
Move `hash_to_message` to variable

3 weeks agoMove low-R comments into blocks
Elias Rohrer [Wed, 27 Mar 2024 10:50:07 +0000 (11:50 +0100)]
Move low-R comments into blocks

3 weeks agoPull anchor check into helper function
Elias Rohrer [Wed, 27 Mar 2024 10:43:55 +0000 (11:43 +0100)]
Pull anchor check into helper function

3 weeks agoRemove `sign/ecdsa.rs` from `rustfmt` exclusion list
Elias Rohrer [Fri, 23 Feb 2024 10:39:10 +0000 (11:39 +0100)]
Remove `sign/ecdsa.rs` from `rustfmt` exclusion list

.. now continously checking its formatting in CI.

3 weeks agoRun `rustfmt` on `sing/ecdsa.rs`
Elias Rohrer [Fri, 23 Feb 2024 10:40:59 +0000 (11:40 +0100)]
Run `rustfmt` on `sing/ecdsa.rs`

3 weeks agoMerge pull request #2969 from TheBlueMatt/2024-03-fix-upgradable-enum
valentinewallace [Mon, 8 Apr 2024 14:34:14 +0000 (16:34 +0200)]
Merge pull request #2969 from TheBlueMatt/2024-03-fix-upgradable-enum

4 weeks agoAllow `MaybeReadable` to not fully read in `upgradable_option` 2024-03-fix-upgradable-enum
Matt Corallo [Thu, 28 Mar 2024 22:06:36 +0000 (22:06 +0000)]
Allow `MaybeReadable` to not fully read in `upgradable_option`

Whils this is generally not supported, issues in our
`MaybeReadable` implementations may occur, and we should try to be
robust against them.

4 weeks agoEnsure we read the full TLV stream length when maybe-reading `None`
Matt Corallo [Thu, 28 Mar 2024 22:02:09 +0000 (22:02 +0000)]
Ensure we read the full TLV stream length when maybe-reading `None`

If we are reading an object that is `MaybeReadable` in a TLV stream
using `upgradable_required`, it may return early with `Ok(None)`.
In this case, it will not read any further TLVs from the TLV
stream. This is fine, except that we generally expect
`MaybeReadable` always consume the correct number of bytes for the
full object, even if it doesn't understand it.

This could pose a problem, for example, in cases where we're
reading a TLV-stream `MaybeReadable` object inside another
TLV-stream object. In that case, the `MaybeReadable` object may
return `Ok(None)` and not consume all the available bytes, causing
the outer TLV read to fail as the TLV length does not match.

4 weeks agoFix unknown handling in `impl_writeable_tlv_based_enum_upgradable`
Matt Corallo [Tue, 26 Mar 2024 15:08:20 +0000 (15:08 +0000)]
Fix unknown handling in `impl_writeable_tlv_based_enum_upgradable`

`impl_writeable_tlv_based_enum_upgradable` professed to supporting
upgrades by returning `None` from `MaybeReadable` when unknown
variants written by newer versions of LDK were read. However, it
generally didn't support this as it didn't discard bytes for
unknown types, resulting in corrupt reading.

This is fixed here for enum variants written as a TLV stream,
however we don't have a length prefix for tuple enum variants, so
the documentation on the macro is updated to mention that
downgrades are not supported for tuple variants.

4 weeks agoMerge pull request #2704 from jkczyz/2023-11-channelmanager-docs
dunxen [Sun, 7 Apr 2024 18:34:57 +0000 (20:34 +0200)]
Merge pull request #2704 from jkczyz/2023-11-channelmanager-docs

`ChannelManager` documentation refresh

4 weeks agoAdd BOLT 12 Refunds section to ChannelManager docs
Jeffrey Czyz [Tue, 23 Jan 2024 19:01:37 +0000 (13:01 -0600)]
Add BOLT 12 Refunds section to ChannelManager docs

4 weeks agoAdd BOLT 12 Offers section to ChannelManager docs
Jeffrey Czyz [Mon, 22 Jan 2024 21:34:27 +0000 (15:34 -0600)]
Add BOLT 12 Offers section to ChannelManager docs

4 weeks agoAdd a payments section to ChannelManager docs
Jeffrey Czyz [Wed, 27 Dec 2023 03:13:52 +0000 (22:13 -0500)]
Add a payments section to ChannelManager docs

4 weeks agoAdd a channels section to ChannelManager docs
Jeffrey Czyz [Thu, 28 Dec 2023 23:00:16 +0000 (17:00 -0600)]
Add a channels section to ChannelManager docs

4 weeks agoAdd an operations section to ChannelManager docs
Jeffrey Czyz [Wed, 27 Dec 2023 03:06:56 +0000 (22:06 -0500)]
Add an operations section to ChannelManager docs

4 weeks agoChannelManager initialization docs with example
Jeffrey Czyz [Fri, 17 Nov 2023 23:58:56 +0000 (17:58 -0600)]
ChannelManager initialization docs with example

4 weeks agoMerge pull request #2954 from TheBlueMatt/2024-03-test-ci-beta-fail
Elias Rohrer [Fri, 5 Apr 2024 10:53:40 +0000 (12:53 +0200)]
Merge pull request #2954 from TheBlueMatt/2024-03-test-ci-beta-fail

Fix new warnings causing CI build failures on rustc beta

4 weeks agoMerge pull request #2967 from tnull/2024-03-refactor-drop-handle-message
Gursharan Singh [Fri, 5 Apr 2024 10:26:51 +0000 (12:26 +0200)]
Merge pull request #2967 from tnull/2024-03-refactor-drop-handle-message

Split `PeerManager::handle_message` to avoid explicit `mem::drop`

4 weeks agoFix unused warning for un-accessed enum variant field in net-tokio 2024-03-test-ci-beta-fail
Matt Corallo [Thu, 21 Mar 2024 15:53:00 +0000 (15:53 +0000)]
Fix unused warning for un-accessed enum variant field in net-tokio

4 weeks agoRemove a handful of redundant imports
Matt Corallo [Thu, 21 Mar 2024 15:48:54 +0000 (15:48 +0000)]
Remove a handful of redundant imports

... that newer rustc now warns about.

4 weeks agoMark several test_utils which are only used in test as `cfg(test)`
Matt Corallo [Thu, 21 Mar 2024 15:46:31 +0000 (15:46 +0000)]
Mark several test_utils which are only used in test as `cfg(test)`

4 weeks agoDrop now-unused methods on `Time`
Matt Corallo [Thu, 21 Mar 2024 15:44:45 +0000 (15:44 +0000)]
Drop now-unused methods on `Time`

We no longer use `Time` during scoring, which makes several of its
methods now useless. We remove those here.

4 weeks agoUse `crate::prelude::*` rather than specific imports
Matt Corallo [Thu, 21 Mar 2024 14:27:05 +0000 (14:27 +0000)]
Use `crate::prelude::*` rather than specific imports

New rustc beta now warns on duplicate imports when one of the
imports is from a wildcard import or the default prelude. Thus, to
avoid this here we prefer to always use `crate::prelude::*` and let
it decide if we actually need to import anything.

4 weeks agoAdd more `std` prelude items to `crate::prelude`
Matt Corallo [Thu, 21 Mar 2024 14:22:52 +0000 (14:22 +0000)]
Add more `std` prelude items to `crate::prelude`

New rustc beta now warns on duplicate imports when one of the
imports is from a wildcard import or the default prelude. Thus, for
simplicity, we need to make our `crate::prelude` mostly identical
to the `std` one, allowing us to always simply use the
`crate::prelude` and let it decide if we need to import anything.

4 weeks agoAllow(unused_imports) on prelude imports
Matt Corallo [Thu, 21 Mar 2024 15:18:22 +0000 (15:18 +0000)]
Allow(unused_imports) on prelude imports

New rustc now warns on duplicate imports when one of the imports
is from a wildcard import or the default prelude. Thus, because we
often don't actually use the imports from our prelude (as they
exist to duplicate the `std` default prelude), we have to mark most
of our `crate::prelude` imports with `#[allow(unused_imports)]`,
which we do here.

4 weeks agoDebug more information when we fail to find a lock call symbol
Matt Corallo [Wed, 20 Mar 2024 20:40:41 +0000 (20:40 +0000)]
Debug more information when we fail to find a lock call symbol

4 weeks agoFix new warnings causing CI build failures on rustc beta
Matt Corallo [Wed, 20 Mar 2024 19:14:40 +0000 (19:14 +0000)]
Fix new warnings causing CI build failures on rustc beta

4 weeks agoSplit `PeerManager::handle_message` to avoid explicit `mem::drop`
Elias Rohrer [Mon, 25 Mar 2024 15:35:37 +0000 (16:35 +0100)]
Split `PeerManager::handle_message` to avoid explicit `mem::drop`

Previously, `handle_message` was a single large method consisting of two
logical parts: one modifying the peer state hence requiring us to hold
the `peer_lock` `MutexGuard`, and, after calling `mem::drop(peer_lock)`,
the remainder which does not only *not* require to hold the
`MutexGuard`, but relies on it being dropped to avoid double-locking.

However, the `mem::drop` was easily overlooked, making reasoning about
lock orders etc. a headache. Here, we therefore have
`handle_message` call two sub-methods reflecting the two logical parts,
allowing us to avoid the explicit `mem::drop`, while at the same time
making it less error-prone due to the two methods' signatures.

4 weeks agoMerge pull request #2731 from shaavan/issue2711
Matt Corallo [Thu, 4 Apr 2024 08:12:36 +0000 (08:12 +0000)]
Merge pull request #2731 from shaavan/issue2711

Delay broadcasting Channel Updates until connected to peers

4 weeks agoDelay broadcasting Channel Updates until connected to peers
shaavan [Wed, 27 Mar 2024 13:03:42 +0000 (18:33 +0530)]
Delay broadcasting Channel Updates until connected to peers

    - We might generate channel updates to be broadcast when
      we are not connected to any peers to broadcast them to.
    - This PR ensures to cache them and broadcast them only when
      we are connected to some peers.

Other Changes:
    1. Introduce a test.
    2. Update the relevant current tests affected by this change.
    3. Fix a typo.
    4. Introduce two functions in functional_utils that optionally
       connect and disconnect a dummy node during broadcast testing.

4 weeks agoMerge pull request #2978 from wpaulino/reserve-async-signing-channel-tlvs
Elias Rohrer [Mon, 1 Apr 2024 10:07:58 +0000 (12:07 +0200)]
Merge pull request #2978 from wpaulino/reserve-async-signing-channel-tlvs

Reserve async signing related channel TLV types

5 weeks agoReserve async signing related channel TLV types
Wilmer Paulino [Fri, 29 Mar 2024 18:50:26 +0000 (11:50 -0700)]
Reserve async signing related channel TLV types

A LDK user deployed to production a WIP version of the async signing
branch in which two new TLVs were added to channel. To prevent them from
needing to perform a migration, we can just new types for TLVs that have
yet to be included in a release. A note has been added to ensure types
45 and 47 are not used for another purpose.