Commit graph

3420 commits

Author SHA1 Message Date
Wilmer Paulino
dba3e8f2d9
Merge pull request #2364 from TheBlueMatt/2023-06-htlc-preimage-replay
Re-claim forwarded HTLCs on startup
2023-07-10 09:27:57 -07:00
Matt Corallo
a358ba2e68
Merge pull request #2307 from benthecarman/verify-funcs
Add helper functions to verify node and channel annoucements
2023-07-08 22:04:06 +00:00
Matt Corallo
0d3adb8fa0
Merge pull request #2042 from ffaex/add_fn
added fn_add_htlc
2023-07-08 21:47:48 +00:00
benthecarman
5cc400c37f Add helper functions to verify node and channel annoucements
Right now the only real way to verify the node and channel
announcements is to call `update_node_from_announcement`/
`update_channel_from_announcement`. If you want to do some
processing before you add to your network graph then you need to
manually verify the signature. This adds some nice helper functions
to make it easier.

I tried to do the same for channel update but it did not seem as
easy so figured that is fine to punt on since I don't see many
people doing manual things with channel updates.
2023-07-08 20:23:15 +00:00
Matt Corallo
9ce7e8e650 Rename ClosingMonitorUpdateRegeneratedOnStartup to Closed...
Now that we also use the "Closing" `BackgroundEvent` for
already-closed channels we need to rename it and tweak the docs.
2023-07-08 02:16:33 +00:00
Matt Corallo
345f8df28f Re-claim forwarded HTLCs on startup
Because `ChannelMonitorUpdate`s can complete asynchronously and
out-of-order now, a `commitment_signed` `ChannelMonitorUpdate` from
a downstream channel could complete prior to the preimage
`ChannelMonitorUpdate` on the upstream channel. In that case, we may
not get a `update_fulfill_htlc` replay on startup. Thus, we have to
ensure any payment preimages contained in that downstream update are
re-claimed on startup.

Here we do this during the existing walk of the `ChannelMonitor`
preimages for closed channels.
2023-07-08 02:16:33 +00:00
Matt Corallo
6ebb6d182e
Merge pull request #2354 from alecchendev/2023-06-bump-default-dust-exp
Bump dust exposure threshold
2023-07-08 02:15:10 +00:00
Matt Corallo
3236be1d8a
Merge pull request #2347 from henghonglee/issue-2304
Expose whether a channel is closing in ChannelDetails
2023-07-07 21:21:09 +00:00
Matt Corallo
e6eb654cd1 Replace vec_type TLVs in channel/manager with required/optional
* `PhantomRouteHints::channels` has been written since the struct
  was added in 410eb05365.
* `HTLCSource::path_hops` has been written since the struct was
  converted to TLVs in 66784e32fe.
2023-07-07 21:07:25 +00:00
Matt Corallo
6fbeea02ed Convert routing vec_type TLV writes to other TLV types
* `BlindedTail::hops` has always been written since it was
   introduced in 64c26c8a79.
 * `PaymentParameters::clear_hints` has always been written since
   it was introduced as `Payee::route_hitns` in 46b68c517d.
2023-07-07 21:07:25 +00:00
Matt Corallo
739ffe18ba Migrate chan_utils vec_type TLVs to required/optional
* `CommitmentTransaction::htlcs` has always been written since the
  struct was converted to TLVs in 66784e32fe.
* `HolderCommitmentTransaction::counterparty_htlc_sigs` have always
  been written since the struct was converted to TLVs in
  c8bc1b6d3d.
2023-07-07 21:07:06 +00:00
Matt Corallo
884160c5c1 Convert Event vec storage away from vec_type
* `PaymentPathFailed::path` was added without an optional compat
   wrapper in e5310dd5f0.
 * `PaymentPathSuccessful::path` has always been written since the
   event was added in 2c4f16d5e3.
 * `Probe{Failed,Successful}::path` have always been written since
   the events were added in eb8bce0d16.
2023-07-07 21:07:06 +00:00
Matt Corallo
a04bf844d4 Convert some vec_type TLVs to required_vec
This converts some required TLVs to `required_vec` which are, in
fact, required (and have been written forever).

* `HTLCFailReason` hasn't changed since many structs were converted
  to TLVs in 66784e32fe.
* `NodeInfo::channels` has been written since `NetworkGraph`
  structs were converted to TLVs in 321b19c4d9.
* Several test-only TLV writes were converted.
2023-07-07 21:07:06 +00:00
Matt Corallo
32846d33db Add a required_vec TLV deserialization type
Historically, we used `vec_type` for all TLV Vec reads/writes, but
it is asymmetric and thus somewhat confusing - on the write side it
always writes a TLV entry, even if there are zero elements. On the
read side, it happily accepts a missing TLV, providing a
zero-length vector.

In 85b573ddad a new `optional_vec`
TLV format was added which was symmetric, but only supports
optional vecs. This adds the corresponding required form, always
writing a TLV and ensuring it is present.
2023-07-07 21:06:52 +00:00
Alec Chen
b040335712
Use multiplier in dust exposure threshold calculation
This commit makes use of the added enum to calculate the dust
exposure threshold based on the current fee rate. This also updates
tests to ensure it works as intended.
2023-07-07 14:30:51 -05:00
Alec Chen
c2992fd94b
Send fee estimator through to get_max_htlc_dust_exposure_threshold 2023-07-07 14:30:50 -05:00
Alec Chen
cfc7ec66f0
Add max dust exposure multiplier config knob
With fee rates rising dramatically in mid-April 2023, thresholds for
what is considered dust have risen, often exceeding our previous dust
exposure threshold of 5k sats. This causes all payments and HTLC
forwards between 5k sats and new dust thresholds to fail.

This commit changes our max dust exposure config knob from a fixed
upper limit to a `MaxDustHTLCExposure` enum with an additional variant
to allow setting our max dust exposure to a multiplier on the current
high priority feerate.

To remain backwards compatible we'll always write the fixed limit if
it's set, or its default value in its currently reserved TLV.

We also now write an odd TLV for the new enum, so that previous
versions can safely ignore it upon downgrading, while allowing us to
make use of the new type when it's written.
2023-07-07 14:30:42 -05:00
Matt Corallo
46913daa38 Fix backwards compat for blocked_monitor_updates
In 1ce2beb774,
`Channel::blocked_monitor_updates` was moved to an even TLV to
ensure downgrades with vec entries are forbidden. However, the
serialized type remained `vec_type`, which is always written.

Instead, `optional_vec` must be used.
2023-07-07 18:28:25 +00:00
valentinewallace
e40b6ae8b7
Merge pull request #2392 from TheBlueMatt/2023-07-async-mon-even-tlv
Move Channel's blocked monitor updates vec to an even TLV
2023-07-07 11:45:55 -04:00
Elias Rohrer
73ba28d8e4
Expose DefaultMessageRouter 2023-07-07 15:47:02 +02:00
henghonglee
47cb45ed32 Add ChannelShutdownState to ChannelDetails
This commit adds the state of channel shutdown to channeldetails
2023-07-06 10:51:35 +08:00
Matt Corallo
1ce2beb774 Move Channel's blocked monitor updates vec to an even TLV
In 9dfe42cf86,
`ChannelMonitorUpdate`s were stored in `Channel` while they were
being processed. Because it was possible (though highly unlikely,
due to various locking likely blocking persistence) an update was
in-flight (even synchronously) when a `ChannelManager` was
persisted, the new updates were persisted via an odd TLV.

However, in 4041f0899f these pending
monitor updates were moved to `ChannelManager`, with appropriate
handling there. Now the only `ChannelMonitorUpdate`s which are
stored in `Channel` are those which are explicitly blocked, which
requires the async pipeline.

Because we don't support async monitor update users downgrading to
0.0.115 or lower, we move to persisting them via an even TLV. As
the odd TLV storage has not yet been released, we can do so
trivially.

Fixes #2317.
2023-07-05 17:26:37 +00:00
henghonglee
54bcb6eb02 Fix DefaultRouter type restrained to only MutexGuard
Type of DerefMut for DefaultRouter was specialized to only MutexGuard.
It should be generic around RefMut and MutexGuard. This commit fixes that
2023-07-04 22:30:07 +08:00
Matt Corallo
86fd9e7fbc
Merge pull request #2384 from jkczyz/2023-06-message-router
Define a default `MessageRouter` implementation
2023-07-02 20:11:18 +00:00
Matt Corallo
63c77a960b
Merge pull request #2375 from TonyGiorgio/remove-doc-future-anchor-support
Remove doc specifying future anchor support
2023-07-02 20:10:10 +00:00
Jeffrey Czyz
129dd30c45
Define a default MessageRouter implementation
Otherwise, users need to define one when using "Simple" type aliases.
2023-06-30 10:29:37 -04:00
Tony Giorgio
5cc625e8f7
Clarify event doc specifying anchor support 2023-06-29 22:10:02 -05:00
Matt Corallo
bd12067777
Merge pull request #2372 from wpaulino/channelmanager-new-highest-seen-timestamp
Require best block timestamp within ChannelManager::new
2023-06-29 04:15:46 +00:00
Andrei
189b070f62 Use MonotonicTime as Instant shifted by 10 years forward
Such implementation allows `MonotonicTime` to go backward up to 10
years on all platforms. On some platforms (e.g. iOS) `Instant` is
represented as `u64` of nanoseconds since the boot of the system.
Obviously such implementation does not allow to go backward before the
time of the boot.

Co-authored-by: Andrei <andrei.i@posteo.de>
Co-authored-by: Jeffrey Czyz <jkczyz@gmail.com>
2023-06-29 00:00:00 +00:00
Wilmer Paulino
82e0df5e4d
Require best block timestamp within ChannelManager::new
This ensures freshly initialized nodes can proceed to create unexpired
invoices without a call to `best_block_updated`, since an invoice's
expiration delta is applied to `highest_seen_timestamp`.
2023-06-27 13:43:14 -07:00
Matt Corallo
63217bc9ef Some minor comment/doc tweaks in new monitor update blocking code
A few nits that came up in review to make the docs clearer, but not
anything super critical.
2023-06-27 14:35:52 +00:00
Arik Sosman
89aa7ace6a
Fix clone warning on nightly. 2023-06-26 10:17:18 -04:00
Arik Sosman
8c982a366b
Remove redundant muts in router.rs. 2023-06-24 10:54:14 -07:00
Arik Sosman
4c9fbe8e79
Fix warning about deserialization marker.
Specifically, the legacy deserialization
prevention marker variable was not being
read.
2023-06-24 10:52:27 -07:00
Arik Sosman
a6578c1159
Fix build warning about HTLCSource::dummy(). 2023-06-24 10:52:27 -07:00
Arik Sosman
4a56d87ef9
Fix build warning about public_from_secret_hex. 2023-06-24 10:52:27 -07:00
Matt Corallo
d327c231cf
Merge pull request #2368 from wpaulino/inbound-anchors-manual-acceptance
Require inbound channels with anchor outputs to be accepted manually
2023-06-24 15:44:46 +00:00
Wilmer Paulino
6fd13d7b22
Merge pull request #2367 from wpaulino/remove-anchors-flag
Remove anchors config flag
2023-06-23 16:17:48 -07:00
Wilmer Paulino
e6348b8931
Require inbound channels with anchor outputs to be accepted manually
Since the use of channels with anchor outputs requires a reserve of
onchain funds to handle channel force closures, it would be
irresponsible to allow a node to accept inbound channel without first
consulting such reserves. To allow users to do so, we require such
channels be manually accepted.
2023-06-23 15:57:46 -07:00
Matt Corallo
3a98c2a705
Merge pull request #2373 from TheBlueMatt/2023-06-116-alpha 2023-06-23 22:38:47 +00:00
Wilmer Paulino
25e3f94379
Support manual inbound acceptance in channel creation test utils 2023-06-23 14:26:46 -07:00
Matt Corallo
f833448703
Merge pull request #2362 from TheBlueMatt/2023-06-unblocked-mons-in-manager
Move in-flight ChannelMonitorUpdates to ChannelManager
2023-06-23 20:46:26 +00:00
Wilmer Paulino
82b646c548
Remove anchors config flag
Now that all of the core functionality for anchor outputs has landed,
we're ready to remove the config flag that was temporarily hiding it
from our API.
2023-06-23 13:32:08 -07:00
Matt Corallo
23e9fc79fd Bump versions to LDK 116-alpha1 and invoice 24.0-alpha1 2023-06-23 19:43:26 +00:00
Matt Corallo
9c3ad28fa8 Rename Channel::pending_monitor_updates to blocked
To differentiate between in-flight pending completion and blocked
updates.
2023-06-23 19:25:40 +00:00
Matt Corallo
7884e687d2 Rename Channel's latest-monitor-update fetch method for clarity
`Channel::get_latest_complete_monitor_update_id` no longer refers
to complete updates, but rather ones which were passed to the
`ChannelManager` and which the `CHannel` no longer knows about.
Thus, we rename it `get_latest_unblocked_monitor_update_id`.
2023-06-23 19:25:40 +00:00
Matt Corallo
60e671bb93 Remove the blocked param on ChannelMonitorUpdates in Channel
Now that all `ChannelMonitorUpdate`s stored in `Channel` are
blocked we don't need a bool to track it.
2023-06-23 19:25:40 +00:00
Matt Corallo
e186593687 Drop the now-unused update_id param to monitor update macros 2023-06-23 19:25:40 +00:00
Matt Corallo
4041f0899f Move in-flight ChannelMonitorUpdates to ChannelManager
Because `ChannelMonitorUpdate`s can be generated for a
channel which is already closed, and must still be tracked
through their completion, storing them in a `Channel`
doesn't make sense - we'd have to have a redundant place to
put them post-closure and handle both storage locations
equivalently.

Instead, here, we move to storing in-flight
`ChannelMonitorUpdate`s to the `ChannelManager`, leaving
blocked `ChannelMonitorUpdate`s in the `Channel` as they
were.
2023-06-23 19:25:40 +00:00
Matt Corallo
397386539d
Merge pull request #2361 from arik-so/2023-06-anchor-channel-type-features
Replace `opt_anchors` with `ChannelTypeFeatures`
2023-06-23 19:12:15 +00:00