rust-lightning
2 weeks agoUnblock channels awaiting monitor update based on `ChanMan` queue 2024-04-async-monitor-fuzz
Matt Corallo [Tue, 11 Jun 2024 01:39:48 +0000 (01:39 +0000)]
Unblock channels awaiting monitor update based on `ChanMan` queue

When we have `ChannelMonitorUpdate`s which are completing both
synchronously and asynchronously, we need to consider a channel as
unblocked based on the `ChannelManager` monitor update queue,
rather than by checking the `update_id`s.

Consider the case where a channel is updated, leading to a
`ChannelMonitorUpdate` which completes asynchronously. The update
completes, but prior to the `ChannelManager` receiving the
`MonitorEvent::Completed` it generates a further
`ChannelMonitorUpdate`. This second update completes synchronously.
As a result, when the `MonitorEvent` is processed, the event's
`monitor_update_id` is the first update, but there are no updates
queued and the channel should be free to return to be unblocked.

Here we fix this by looking only at the `ChannelManager` update
queue, rather than the update_id of the `MonitorEvent`.

While we don't anticipate many users having both synchronous and
asynchronous persists in the same application, there isn't much
cost to supporting it, which we do here.

Found by the chanmon_consistency target.

2 weeks agoFuzz reloading with a stale monitor in chanmon_consistency
Matt Corallo [Mon, 15 Apr 2024 19:25:05 +0000 (19:25 +0000)]
Fuzz reloading with a stale monitor in chanmon_consistency

Now that we are gearing up to support fully async monitor storage,
we really need to fuzz monitor updates not completing before a
reload, which we do here in the `chanmon_consistency` fuzzer.

While there are more parts to async monitor updating that we need
to fuzz, this at least gets us started by having basic async
restart cases handled. In the future, we should extend this to make
sure some basic properties (eg claim/balance consistency) remain
true through `chanmon_consistency` runs.

2 weeks agoMerge pull request #3101 from tnull/2024-06-fix-tx-sync
Elias Rohrer [Mon, 10 Jun 2024 08:04:49 +0000 (10:04 +0200)]
Merge pull request #3101 from tnull/2024-06-fix-tx-sync

tx-sync: Make confirmables `Deref` and run `rustfmt`

3 weeks agoMerge pull request #3111 from tnull/2024-06-rustfmt-fuzz-the-easy-part
Matt Corallo [Fri, 7 Jun 2024 19:44:17 +0000 (12:44 -0700)]
Merge pull request #3111 from tnull/2024-06-rustfmt-fuzz-the-easy-part

`rustfmt`: Reformat the `fuzz` dir – the easy part

3 weeks agoMerge pull request #3083 from valentinewallace/2024-05-ignore-onion-err-chan-upd
Matt Corallo [Fri, 7 Jun 2024 19:25:46 +0000 (12:25 -0700)]
Merge pull request #3083 from valentinewallace/2024-05-ignore-onion-err-chan-upd

Ignore channel updates in onion errors

3 weeks agoStill ignore `fuzz/src/lib.rs` for now
Elias Rohrer [Fri, 7 Jun 2024 16:56:17 +0000 (18:56 +0200)]
Still ignore `fuzz/src/lib.rs` for now

3 weeks ago`rustfmt`: `src/zbase32.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:18:56 +0000 (13:18 +0200)]
`rustfmt`: `src/zbase32.rs`

3 weeks ago`rustfmt`: `src/utils/*`
Elias Rohrer [Thu, 6 Jun 2024 11:18:20 +0000 (13:18 +0200)]
`rustfmt`: `src/utils/*`

3 weeks ago`rustfmt`: `fuzz/src/router.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:17:20 +0000 (13:17 +0200)]
`rustfmt`: `fuzz/src/router.rs`

3 weeks ago`rustfmt`: `fuzz/src/refund_deser.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:12:07 +0000 (13:12 +0200)]
`rustfmt`: `fuzz/src/refund_deser.rs`

3 weeks ago`rustfmt`: `fuzz/src/process_network_graph.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:11:36 +0000 (13:11 +0200)]
`rustfmt`: `fuzz/src/process_network_graph.rs`

3 weeks ago`rustfmt`: `fuzz/src/peer_crypt.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:11:19 +0000 (13:11 +0200)]
`rustfmt`: `fuzz/src/peer_crypt.rs`

3 weeks ago`rustfmt`: `fuzz/src/offer_deser.rs`
Elias Rohrer [Fri, 7 Jun 2024 18:42:27 +0000 (20:42 +0200)]
`rustfmt`: `fuzz/src/offer_deser.rs`

3 weeks ago`rustfmt`: `fuzz/src/offer_deser.rs`
Elias Rohrer [Fri, 7 Jun 2024 18:41:50 +0000 (20:41 +0200)]
`rustfmt`: `fuzz/src/offer_deser.rs`

3 weeks ago`rustfmt`: `fuzz/src/msg_targets/*`
Elias Rohrer [Thu, 6 Jun 2024 11:09:43 +0000 (13:09 +0200)]
`rustfmt`: `fuzz/src/msg_targets/*`

3 weeks ago`rustfmt`: `fuzz/src/lib.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:09:20 +0000 (13:09 +0200)]
`rustfmt`: `fuzz/src/lib.rs`

3 weeks ago`rustfmt`: `fuzz/src/invoice*.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:08:51 +0000 (13:08 +0200)]
`rustfmt`: `fuzz/src/invoice*.rs`

3 weeks ago`rustfmt`: `fuzz/src/indexedmap.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:08:20 +0000 (13:08 +0200)]
`rustfmt`: `fuzz/src/indexedmap.rs`

3 weeks ago`rustfmt`: `fuzz/src/fromstr_to_netaddress.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:07:24 +0000 (13:07 +0200)]
`rustfmt`: `fuzz/src/fromstr_to_netaddress.rs`

3 weeks ago`rustfmt`: `fuzz/src/chanmon_deser.rs`
Elias Rohrer [Thu, 6 Jun 2024 11:06:59 +0000 (13:06 +0200)]
`rustfmt`: `fuzz/src/chanmon_deser.rs`

3 weeks ago`rustfmt`: `fuzz/src/bin/*`
Elias Rohrer [Thu, 6 Jun 2024 10:32:50 +0000 (12:32 +0200)]
`rustfmt`: `fuzz/src/bin/*`

3 weeks ago`rustfmt`: `fuzz/src/bech32_parse.rs`
Elias Rohrer [Thu, 6 Jun 2024 10:34:26 +0000 (12:34 +0200)]
`rustfmt`: `fuzz/src/bech32_parse.rs`

3 weeks ago`rustfmt`: `fuzz/src/base32.rs`
Elias Rohrer [Thu, 6 Jun 2024 10:31:41 +0000 (12:31 +0200)]
`rustfmt`: `fuzz/src/base32.rs`

3 weeks agoAdd `rustfmt::skip` to the target template
Elias Rohrer [Fri, 7 Jun 2024 08:47:51 +0000 (10:47 +0200)]
Add `rustfmt::skip` to the target template

3 weeks agoAdd `rustfmt::skip` to the `msg_target` template
Elias Rohrer [Fri, 7 Jun 2024 08:49:20 +0000 (10:49 +0200)]
Add `rustfmt::skip` to the `msg_target` template

3 weeks agoMerge pull request #3080 from jkczyz/2024-05-compact-blinded-path-creation-trait
valentinewallace [Fri, 7 Jun 2024 18:32:24 +0000 (14:32 -0400)]
Merge pull request #3080 from jkczyz/2024-05-compact-blinded-path-creation-trait

Optional compact blinded path creation

3 weeks agoMerge pull request #3096 from alecchendev/2024-06-drop-one-signer-call
Arik [Fri, 7 Jun 2024 16:26:39 +0000 (09:26 -0700)]
Merge pull request #3096 from alecchendev/2024-06-drop-one-signer-call

Cache commitment point on ExternalHTLCClaim to drop a signer call

3 weeks agoMerge pull request #3105 from johncantrell97/johncantrell97/add-peer-dis/connected...
Elias Rohrer [Fri, 7 Jun 2024 16:01:18 +0000 (18:01 +0200)]
Merge pull request #3105 from johncantrell97/johncantrell97/add-peer-dis/connected-to-cmh

add peer_(dis)connected to custom message handler

3 weeks agoPass our `edition` to `rustfmt`
Elias Rohrer [Thu, 6 Jun 2024 07:30:30 +0000 (09:30 +0200)]
Pass our `edition` to `rustfmt`

.. as it otherwise doesn't seem to pick up the right one when checkin
integration tests.

3 weeks ago`rustfmt`: `lightning-transaction-sync/tests/integration_tests.rs`
Elias Rohrer [Fri, 7 Jun 2024 09:18:43 +0000 (11:18 +0200)]
`rustfmt`: `lightning-transaction-sync/tests/integration_tests.rs`

3 weeks agoadd peer_(dis)connected to custom message handler
John Cantrell [Thu, 6 Jun 2024 17:59:29 +0000 (13:59 -0400)]
add peer_(dis)connected to custom message handler

3 weeks ago`rustfmt`: Reformat `lightning-transaction-sync/src/lib.rs`
Elias Rohrer [Thu, 6 Jun 2024 07:26:35 +0000 (09:26 +0200)]
`rustfmt`: Reformat `lightning-transaction-sync/src/lib.rs`

3 weeks ago`rustfmt`: Reformat `lightning-transaction-sync/src/error.rs`
Elias Rohrer [Thu, 6 Jun 2024 07:26:08 +0000 (09:26 +0200)]
`rustfmt`: Reformat `lightning-transaction-sync/src/error.rs`

3 weeks ago`rustfmt`: Reformat `lightning-transaction-sync/src/esplora.rs`
Elias Rohrer [Thu, 6 Jun 2024 07:25:18 +0000 (09:25 +0200)]
`rustfmt`: Reformat `lightning-transaction-sync/src/esplora.rs`

3 weeks ago`rustfmt`: Reformat `lightning-transaction-sync/src/electrum.rs`
Elias Rohrer [Thu, 6 Jun 2024 07:23:47 +0000 (09:23 +0200)]
`rustfmt`: Reformat `lightning-transaction-sync/src/electrum.rs`

3 weeks ago`rustfmt`: Reformat `lightning-transaction-sync/src/common.rs`
Elias Rohrer [Thu, 6 Jun 2024 07:21:15 +0000 (09:21 +0200)]
`rustfmt`: Reformat `lightning-transaction-sync/src/common.rs`

3 weeks agoMake `confirmables` `Deref`
Elias Rohrer [Thu, 6 Jun 2024 07:18:04 +0000 (09:18 +0200)]
Make `confirmables` `Deref`

.. the bindings branch needed a small patch as it doesn't support `dyn`
traits. Here, we opt to use `Deref` in the hopes this works with
bindings, rendering the patch unnecessary.

3 weeks agoClarify docs regarding one-hop blinded paths
Jeffrey Czyz [Thu, 30 May 2024 19:38:15 +0000 (14:38 -0500)]
Clarify docs regarding one-hop blinded paths

The docs assumed ChannelManager is parameterized by DefaultRouter, which
may not be the case. Clarify the behavior is specific to using
DefaultRouter.

3 weeks agoExclude disconnected peers from BlindedPath
Jeffrey Czyz [Tue, 4 Jun 2024 23:48:07 +0000 (18:48 -0500)]
Exclude disconnected peers from BlindedPath

When calling MessageRouter::create_blinded_path, ChannelManager was
including disconnected peers. Filter peers such that only connected ones
are included. Otherwise, the resulting BlindedPath may not work.

3 weeks agoFix functional_test_utils::reconnect_nodes
Jeffrey Czyz [Tue, 4 Jun 2024 23:42:51 +0000 (18:42 -0500)]
Fix functional_test_utils::reconnect_nodes

When reconnecting nodes, make sure to notify OnionMessenger that the
nodes are now connected.

3 weeks agoUse compact blinded paths for short-lived offers
Jeffrey Czyz [Tue, 28 May 2024 23:43:45 +0000 (18:43 -0500)]
Use compact blinded paths for short-lived offers

When an offer is short-lived, the likelihood of a channel used in a
compact blinded path going away is low. Require passing the absolute
expiry of an offer to ChannelManager::create_offer_builder so that it
can be used to determine whether or not compact blinded path should be
used.

Use the same criteria for creating blinded paths for refunds as well.

3 weeks agoDon't use compact blinded paths for reply paths
Jeffrey Czyz [Wed, 22 May 2024 21:35:57 +0000 (16:35 -0500)]
Don't use compact blinded paths for reply paths

There's no need to save space when creating reply paths since they are
part of onion messages rather than in QR codes. Use normal blinded paths
for these instead as they are less likely to become invalid in case of
channel closure.

3 weeks agoRefactor MessageRouter::create_blinded_paths
Jeffrey Czyz [Wed, 22 May 2024 20:32:32 +0000 (15:32 -0500)]
Refactor MessageRouter::create_blinded_paths

Using compact blinded paths isn't always necessary or desirable. For
instance, reply paths are communicated via onion messages where space
isn't a premium unlike in QR codes. Additionally, long-lived paths could
become invalid if the channel associated with the SCID is closed.
Refactor MessageRouter::create_blinded_paths into two methods: one for
compact blinded paths and one for normal blinded paths.

3 weeks agoMove DefaultMessageRouter::create_blinded_paths
Jeffrey Czyz [Wed, 22 May 2024 19:43:05 +0000 (14:43 -0500)]
Move DefaultMessageRouter::create_blinded_paths

An upcoming change to the MessageRouter trait will require reusing
DefaultMessageRouter::create_blinded_paths. Move the code to a utility
function so facilitate this.

3 weeks agoMerge pull request #3072 from arik-so/arik/gossip-v2-parsing
Matt Corallo [Wed, 5 Jun 2024 21:39:21 +0000 (14:39 -0700)]
Merge pull request #3072 from arik-so/arik/gossip-v2-parsing

Reintroduce addresses to NodeAnnouncementInfo.

3 weeks agoCache commitment point on ExternalHTLCClaim to drop a signer call
Alec Chen [Wed, 5 Jun 2024 21:08:41 +0000 (16:08 -0500)]
Cache commitment point on ExternalHTLCClaim to drop a signer call

3 weeks agoMerge pull request #3095 from TheBlueMatt/2024-06-tx-sync-bindings-upstream
valentinewallace [Wed, 5 Jun 2024 20:16:33 +0000 (16:16 -0400)]
Merge pull request #3095 from TheBlueMatt/2024-06-tx-sync-bindings-upstream

Mark BDK types exported from transaction-sync as no-export

3 weeks agoReintroduce addresses to NodeAnnouncementInfo.
Arik Sosman [Thu, 9 May 2024 16:42:37 +0000 (09:42 -0700)]
Reintroduce addresses to NodeAnnouncementInfo.

3 weeks agoMark BDK types exported from transaction-sync as no-export 2024-06-tx-sync-bindings-upstream
Matt Corallo [Wed, 5 Jun 2024 13:38:56 +0000 (13:38 +0000)]
Mark BDK types exported from transaction-sync as no-export

3 weeks agoMerge pull request #3091 from TheBlueMatt/2024-06-channel_state_ser
Matt Corallo [Tue, 4 Jun 2024 23:31:34 +0000 (16:31 -0700)]
Merge pull request #3091 from TheBlueMatt/2024-06-channel_state_ser

Move serialization of `channel_state` fields to `channel_state.rs`

3 weeks agoMerge pull request #3081 from G8XSU/2024-05-08-claimable-persist-3049-outputs
Matt Corallo [Tue, 4 Jun 2024 21:02:41 +0000 (14:02 -0700)]
Merge pull request #3081 from G8XSU/2024-05-08-claimable-persist-3049-outputs

Watch all outputs irrespective of claimable outpoints

3 weeks agoFromat moved code in `channel_state.rs` 2024-06-channel_state_ser
Matt Corallo [Tue, 4 Jun 2024 19:10:06 +0000 (19:10 +0000)]
Fromat moved code in `channel_state.rs`

3 weeks agoMove serialization of `channel_state` fields to `channel_state.rs`
Matt Corallo [Tue, 4 Jun 2024 14:46:15 +0000 (14:46 +0000)]
Move serialization of `channel_state` fields to `channel_state.rs`

1f616c0058f77e074c429fa7fb8b2f4594cdb9ad moved a handful of structs
to the new `channel_state.rs` but forgot to move their
serialization logic with them, which is corrected here.

3 weeks agoMerge pull request #3060 from TheBlueMatt/2024-05-parallel-async-om-events
Matt Corallo [Tue, 4 Jun 2024 19:10:43 +0000 (12:10 -0700)]
Merge pull request #3060 from TheBlueMatt/2024-05-parallel-async-om-events

Add a parallel async event handler to OnionMessenger and pass it directly to BackgroundProcessor

3 weeks agoMerge pull request #3088 from alecchendev/2024-06-fc-no-disconnect
Matt Corallo [Tue, 4 Jun 2024 15:47:22 +0000 (08:47 -0700)]
Merge pull request #3088 from alecchendev/2024-06-fc-no-disconnect

Don't disconnect on manual force closes

3 weeks agoMerge pull request #3089 from TheBlueMatt/2024-06-channel_state-module
Elias Rohrer [Tue, 4 Jun 2024 14:28:39 +0000 (16:28 +0200)]
Merge pull request #3089 from TheBlueMatt/2024-06-channel_state-module

Move the public channel state API into a new module

3 weeks agoMove the public path for `channel_state` types to their new path 2024-06-channel_state-module
Matt Corallo [Tue, 4 Jun 2024 01:25:52 +0000 (01:25 +0000)]
Move the public path for `channel_state` types to their new path

3 weeks agoReformat `channel_state.rs` to match rustfmt requirements
Matt Corallo [Tue, 4 Jun 2024 01:13:40 +0000 (01:13 +0000)]
Reformat `channel_state.rs` to match rustfmt requirements

3 weeks agoMove the public channel state API into a new module
Matt Corallo [Tue, 4 Jun 2024 01:06:54 +0000 (01:06 +0000)]
Move the public channel state API into a new module

Our "what is the channel's current state" structs have slowly
grown to be rather nontrivial, and now include eight structs with
many fields. Thus, it makes sense to pull them out of
`ln::channelmanager` and into their own module.

This also makes things easier for the C bindings which don't
support `pub use` from a private module.

3 weeks agoMerge pull request #2965 from tnull/2024-03-impl-readable-writeable-offer-invoice...
Matt Corallo [Tue, 4 Jun 2024 14:19:42 +0000 (07:19 -0700)]
Merge pull request #2965 from tnull/2024-03-impl-readable-writeable-offer-invoice-refund

Implement `Readable` for `Offer` and `Refund`

3 weeks agoImplement `Readable` for `Refund`
Elias Rohrer [Mon, 25 Mar 2024 13:07:21 +0000 (14:07 +0100)]
Implement `Readable` for `Refund`

When storing `Refund`s, it's useful for them to implement LDK's
deserialization trait.

3 weeks agoImplement `Readable` for `Offer`
Elias Rohrer [Mon, 25 Mar 2024 13:04:57 +0000 (14:04 +0100)]
Implement `Readable` for `Offer`

When storing `Offer`s, it's useful for them to implement LDK's
deserialization trait.

3 weeks agoDon't disconnect on manual force closes
Alec Chen [Mon, 3 Jun 2024 22:03:46 +0000 (17:03 -0500)]
Don't disconnect on manual force closes

3 weeks agoMerge pull request #2889 from Sharmalm/2840
Arik [Mon, 3 Jun 2024 21:48:52 +0000 (14:48 -0700)]
Merge pull request #2889 from Sharmalm/2840

Allow for user-specified error message during force close channel

3 weeks agoWatch all outputs irrespective of claimable outpoints.
G8XSU [Fri, 31 May 2024 22:26:57 +0000 (15:26 -0700)]
Watch all outputs irrespective of claimable outpoints.

This removes dependency of watched_outputs from
per_commitment_claimable_outpoints, it is required since we will
no longer have direct access to per_commitment_claimable_outpoints
once we start publishing PersistClaimInfo as part of #3049.

3 weeks agoDrop `EventsProvider` bounds on `OnionMessageHandler`s 2024-05-parallel-async-om-events
Matt Corallo [Fri, 10 May 2024 21:28:50 +0000 (21:28 +0000)]
Drop `EventsProvider` bounds on `OnionMessageHandler`s

This never really made a lot of sense from an API perspective, but
was required to avoid handing the background processor an explicit
`OnionMessegner`, which we are now doing. Thus, we can simply drop
these bounds as unnecessary.

3 weeks agof fix imports in BP
Matt Corallo [Tue, 28 May 2024 15:24:59 +0000 (15:24 +0000)]
f fix imports in BP

3 weeks agoSwitch to using the `OnionMessenger` directly in BP
Matt Corallo [Fri, 10 May 2024 21:07:08 +0000 (21:07 +0000)]
Switch to using the `OnionMessenger` directly in BP

When `OnionMessenger` first developed a timer and events interface,
we accessed the `OnionMessenger` indirectly via the `PeerManager`.
While this is a fairly awkward interface, it avoided a large pile
of generics on the background processor interfaces. However, since
we now have an `AOnionMessenger` trait, this concern is no longer
significant. Further, because we now want to use the built-in
`OnionMessenger` async event processing method, we really need a
direct referene to the `OnionMessenger` in the background
processor, which we add here optionally.

3 weeks agoAdd a parallel async event handler to `OnionMessenger`
Matt Corallo [Fri, 10 May 2024 20:52:10 +0000 (20:52 +0000)]
Add a parallel async event handler to `OnionMessenger`

This adds an `OnionMessenger::process_pending_events_async`
mirroring the same in `ChannelManager`. However, unlike the one in
`ChannelManager`, this processes the events in parallel by spawning
all futures and using the new `MultiFuturePoller`.

Because `OnionMessenger` just generates a stream of messages to
store/fetch, we first process all the events to store new messages,
`await` them, then process all the events to fetch stored messages,
ensuring reordering shouldn't result in lost messages (unless we
race with a peer disconnection, which could happen anyway).

3 weeks agoStore `OnionMessenger` events in different `Vec`s
Matt Corallo [Mon, 3 Jun 2024 18:28:45 +0000 (18:28 +0000)]
Store `OnionMessenger` events in different `Vec`s

In the next commit, `OnionMessenger` events are handled in parallel
using rust async. When we do that, we'll want to handle
`OnionMessageIntercepted` events prior to
`OnionMessagePeerConnected` ones.

While we'd generally prefer to handle all events in the order they
were generated, if we want to handle them in parallel, we don't
want a `OnionMessageIntercepted` event to start being processed,
then handle an `OnionMessagePeerConnected` prior to the first
completing. This could cause us to store a freshly-intercepted
message for a peer in a DB that was just wiped because the peer
is now connected.

This does run the risk of processing a `OnionMessagePeerConnected`
event prior to an `OnionMessageIntercepted` event (because a peer
connected, then disconnected, then we received a message for that
peer all before any events were handled), that is somewhat less
likely and discarding a message in a rare race is better than
leaving a message lying around undelivered.

Thus, here, we store `OnionMessenger` events in separate `Vec`s
which we can pull from in message-type-order.

3 weeks agoMerge pull request #3057 from G8XSU/2024-05-08-claimable-persist-3049
Matt Corallo [Mon, 3 Jun 2024 16:24:57 +0000 (09:24 -0700)]
Merge pull request #3057 from G8XSU/2024-05-08-claimable-persist-3049

Minimize reads to counterparty_claimable_outpoints

3 weeks agoMerge pull request #2947 from tnull/2024-03-log-features-if-mismatch
dunxen [Mon, 3 Jun 2024 14:59:15 +0000 (16:59 +0200)]
Merge pull request #2947 from tnull/2024-03-log-features-if-mismatch

4 weeks agoMerge pull request #2996 from shaavan/issue2882.2
Matt Corallo [Fri, 31 May 2024 21:57:11 +0000 (14:57 -0700)]
Merge pull request #2996 from shaavan/issue2882.2

Allow responding asynchronously to OnionMessage

4 weeks agoMerge pull request #3063 from jirijakes/upgrade-bitcoin-031
Matt Corallo [Fri, 31 May 2024 21:18:23 +0000 (14:18 -0700)]
Merge pull request #3063 from jirijakes/upgrade-bitcoin-031

Upgrade rust-bitcoin dependency to 0.31

4 weeks agoMerge pull request #2931 from TheBlueMatt/2024-03-log-outbound-channels
Elias Rohrer [Fri, 31 May 2024 10:31:21 +0000 (12:31 +0200)]
Merge pull request #2931 from TheBlueMatt/2024-03-log-outbound-channels

Log available liquidity on each channel when starting routefinding

4 weeks agoMerge pull request #3084 from jkczyz/2024-05-onion-fields
Matt Corallo [Thu, 30 May 2024 20:01:40 +0000 (13:01 -0700)]
Merge pull request #3084 from jkczyz/2024-05-onion-fields

Include `RecipientOnionFields` in `Event::PaymentClaimed`

4 weeks agoMinimize reads to counterparty_claimable_outpoints
G8XSU [Wed, 15 May 2024 04:57:20 +0000 (21:57 -0700)]
Minimize reads to counterparty_claimable_outpoints

Reads related to current/previous commitment_tx should be explicit
and reads related to older commitment_txs should be minimized.

4 weeks agoLog available liquidity on each channel when starting routefinding 2024-03-log-outbound-channels
Matt Corallo [Tue, 12 Mar 2024 14:29:45 +0000 (14:29 +0000)]
Log available liquidity on each channel when starting routefinding

One of the most common first-steps in troubleshooting routefinding
issues is we ask for the local channel state to determine what the
available HTLC bounds are. While we log first-hop channel details
when we decline to use them, this doesn't tell us if we have
missing channels, and thus here we log all first-hop channels at
the start.

We also take this opportunity to log the limits that were violated
any time we log that we're not using a channel, rather than only
when its a first-hop.

4 weeks agoUpgrade rust-bitcoin to 0.31
Jiri Jakes [Sat, 11 May 2024 02:55:02 +0000 (10:55 +0800)]
Upgrade rust-bitcoin to 0.31

4 weeks agoIntroduce new tests for `ResponseInstruction::WithReplyPath`
shaavan [Fri, 24 May 2024 09:00:34 +0000 (14:30 +0530)]
Introduce new tests for `ResponseInstruction::WithReplyPath`

- The new tests check both successful and unsuccessful `reply_path`
  creation conditions.

4 weeks agoRefactor TestCustomMessageHandler
shaavan [Thu, 23 May 2024 06:10:12 +0000 (11:40 +0530)]
Refactor TestCustomMessageHandler

- Introduce a new struct for keeping expectations organized.
- Add a boolean field to track whether a response is expected,
  and hence whether a `reply_path` should be included with the response.
- Update Ping and Pong roles for bidirectional communication.
- Introduce panic for when there is no responder and we were expecting
  to include a `reply_path`.
- Refactor `handle_custom_message` code.

4 weeks agoRefactor: Rename Request & Response to Ping & Pong
shaavan [Thu, 23 May 2024 06:03:34 +0000 (11:33 +0530)]
Refactor: Rename Request & Response to Ping & Pong

1. These two variants will be modified in an upcoming commit
   to be each other's response.
2. The names are updated to better fit their new roles.

4 weeks agoIntroduce ResponseInstruction::WithReplyPath variant.
shaavan [Mon, 15 Apr 2024 10:55:03 +0000 (16:25 +0530)]
Introduce ResponseInstruction::WithReplyPath variant.

And expand handle_onion_message_response return Type

1. Introduce a new function in OnionMessenger to create blinded paths.
2. Use it in handle_onion_message_response to create a reply_path for
   the right variant and use it in onion_message.
3. Expand the return type of handle_onion_message_response to handle three cases:
1. Ok(None) in case of no response to be sent.
2. Ok(Some(SendSuccess) and Err(SendError) in case of successful and
    unsuccessful queueing up of response messages respectively.

This allows the user to get access to the Success/Failure status of the sending
of response and handle it accordingly.

4 weeks agoConvert handle_onion_message_response to a public function and add test coverage
shaavan [Mon, 15 Apr 2024 09:52:25 +0000 (15:22 +0530)]
Convert handle_onion_message_response to a public function and add test coverage

This commit modifies handle_onion_message_response to be accessible
publicly as handle_onion_message, enabling users to respond
asynchronously. Additionally, a new test is introduced to validate this
functionality.

4 weeks agoMerge pull request #3011 from jkczyz/2024-04-compact-blinded-path-creation
Matt Corallo [Wed, 29 May 2024 01:43:20 +0000 (18:43 -0700)]
Merge pull request #3011 from jkczyz/2024-04-compact-blinded-path-creation

Compact blinded path creation

4 weeks agoRemove now-unused NetworkUpdate::ChannelUpdateMessage.
Valentine Wallace [Fri, 24 May 2024 16:15:53 +0000 (12:15 -0400)]
Remove now-unused NetworkUpdate::ChannelUpdateMessage.

See previous commit.

4 weeks agoAdd missing copyright statement
Jeffrey Czyz [Thu, 23 May 2024 20:52:32 +0000 (15:52 -0500)]
Add missing copyright statement

4 weeks agoCompact introduction node test vector
Jeffrey Czyz [Mon, 22 Apr 2024 19:52:15 +0000 (14:52 -0500)]
Compact introduction node test vector

4 weeks agoCompact a BlindedPath's introduction node
Jeffrey Czyz [Wed, 10 Apr 2024 21:04:19 +0000 (16:04 -0500)]
Compact a BlindedPath's introduction node

Add a method to BlindedPath that given a network graph will compact the
IntroductionNode as the DirectedShortChannelId variant. Call this method
from DefaultMessageRouter so that Offer paths use the compact
representation (along with reply paths). This leaves payment paths in
Bolt12Invoice using the NodeId variant, as the compact representation
isn't as useful there.

4 weeks agoUnwrap reply_path in extract_invoice_request
Jeffrey Czyz [Wed, 10 Apr 2024 21:07:58 +0000 (16:07 -0500)]
Unwrap reply_path in extract_invoice_request

4 weeks agoPass ForwardNode when creating BlindedPath
Jeffrey Czyz [Thu, 9 May 2024 22:31:37 +0000 (17:31 -0500)]
Pass ForwardNode when creating BlindedPath

Instead of passing Vec<PublicKey> to MessageRouter::crate_blinded_path,
pass Vec<ForwardNode>. This way callers can include a short_channel_id
for a more compact BlindedPath encoding.

4 weeks agoSupport NextHop::ShortChannelId in BlindedPath
Jeffrey Czyz [Tue, 9 Apr 2024 21:14:29 +0000 (16:14 -0500)]
Support NextHop::ShortChannelId in BlindedPath

When sending an onion message to a blinded path, the short channel id
between hops isn't need in each hop's encrypted_payload since it is not
a payment. However, using the short channel id instead of the node id
gives a more compact representation. Update BlindedPath::new_for_message
to allow for this.

4 weeks agoMerge pull request #3006 from arik-so/arik/trampoline/2024-04-trampoline-onion-deseri...
valentinewallace [Tue, 28 May 2024 20:55:17 +0000 (16:55 -0400)]
Merge pull request #3006 from arik-so/arik/trampoline/2024-04-trampoline-onion-deserialization

Trampoline Onion Deserialization

4 weeks agoFix import order in gossip.rs.
Valentine Wallace [Tue, 28 May 2024 20:37:40 +0000 (16:37 -0400)]
Fix import order in gossip.rs.

A new import will be added in the next commit.

4 weeks agoMerge pull request #3051 from TheBlueMatt/2024-04-2982-123-fix
Matt Corallo [Tue, 28 May 2024 17:47:23 +0000 (10:47 -0700)]
Merge pull request #3051 from TheBlueMatt/2024-04-2982-123-fix

Don't attempt to resume channels if we already exchanged funding

4 weeks agoDon't attempt to resume channels if we already exchanged funding 2024-04-2982-123-fix
Matt Corallo [Wed, 1 May 2024 14:32:47 +0000 (14:32 +0000)]
Don't attempt to resume channels if we already exchanged funding

ddf75afd16 introduced the ability to re-exchange our `ChannelOpen`
after a peer disconnects if we didn't complete funding on our end.
It did not implement nor consider what would happen if we
re-connected after we created our own funding transactions, and
currently it panics (and even if it did not it would replay the
`FundingTransactionGenerated` event to users).

While we'd very much like to replay the `open_channel` flow even
if we have already received an `accept_channel` and funded the
channel, we cannot as the peer will likely provide different key
material in their `accept_channel`, causing us to need a different
funding transaction.

Thus, here, we simply close channels which have been funded but not
yet signed when our peer disconnects.

4 weeks agof docs
Matt Corallo [Tue, 28 May 2024 15:21:38 +0000 (15:21 +0000)]
f docs

5 weeks agoCheck custom_tlvs in Event::PaymentClaimed
Jeffrey Czyz [Fri, 24 May 2024 21:44:04 +0000 (16:44 -0500)]
Check custom_tlvs in Event::PaymentClaimed

5 weeks agoPass ClaimAlongRouteArgs to claim_payment_along_route
Jeffrey Czyz [Fri, 24 May 2024 21:16:13 +0000 (16:16 -0500)]
Pass ClaimAlongRouteArgs to claim_payment_along_route

5 weeks agoPass ClaimAlongRouteArgs to do_claim_payment_along_route
Jeffrey Czyz [Fri, 24 May 2024 20:30:40 +0000 (15:30 -0500)]
Pass ClaimAlongRouteArgs to do_claim_payment_along_route