rust-lightning
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

8 months agoCorrect test struct initialization ordering
Matt Corallo [Tue, 15 Aug 2023 19:19:03 +0000 (19:19 +0000)]
Correct test struct initialization ordering

When reloading a node in the test framework, we end up with a new
`ChannelManager` that has references to various test util structs.
In order for the tests to compile reliably in the face of unrelated
changes, those test structs need to always be initialized before
both the new but also the original `ChannelManager`.

Here we make that change.

8 months agoCorrect lifetimes on `_reload_node`
Matt Corallo [Tue, 15 Aug 2023 19:17:31 +0000 (19:17 +0000)]
Correct lifetimes on `_reload_node`

For some reason an unrelated PR caused all our tests with
`reload_node` calls to fail to compile. This is due, in part, to
the lifetimes on `reload_node` implying that the new and original
`ChannelManager` (or some of the structs they reference) must live
for the same lifetime.

This fixes that issue by correcting the lifetimes to be consistent
across `Node` and `_reload_node`.

8 months agoMerge pull request #2496 from dunxen/2023-08-fix2488
Matt Corallo [Mon, 14 Aug 2023 19:39:23 +0000 (19:39 +0000)]
Merge pull request #2496 from dunxen/2023-08-fix2488

Send error message to peer if we drop an unfunded channel on timeout

8 months agoMerge pull request #2458 from valentinewallace/2023-07-om-test-vectors
valentinewallace [Mon, 14 Aug 2023 15:44:24 +0000 (11:44 -0400)]
Merge pull request #2458 from valentinewallace/2023-07-om-test-vectors

Onion message test vectors

8 months agoSend error message to peer if we drop an unfunded channel on timeout
Duncan Dean [Mon, 14 Aug 2023 14:21:35 +0000 (16:21 +0200)]
Send error message to peer if we drop an unfunded channel on timeout

8 months agoMerge pull request #2387 from vladimirfomene/add_extra_fields_to_ChannelClosed_event
Matt Corallo [Thu, 10 Aug 2023 22:43:21 +0000 (22:43 +0000)]
Merge pull request #2387 from vladimirfomene/add_extra_fields_to_ChannelClosed_event

Add counterparty_node_id & channel_capacity to ChannelClosed event

8 months agoMerge pull request #2308 from alecchendev/2023-05-custom-htlc-tlvs
Matt Corallo [Thu, 10 Aug 2023 17:26:30 +0000 (17:26 +0000)]
Merge pull request #2308 from alecchendev/2023-05-custom-htlc-tlvs

Add support for custom HTLC TLVs

8 months agoMerge pull request #1789 from jkczyz/2022-10-scorer-decay
Matt Corallo [Wed, 9 Aug 2023 16:34:33 +0000 (16:34 +0000)]
Merge pull request #1789 from jkczyz/2022-10-scorer-decay

Smooth out channel liquidity bounds decay

8 months agoMerge pull request #2481 from TheBlueMatt/2023-08-keysend-robust-test
Matt Corallo [Wed, 9 Aug 2023 00:40:53 +0000 (00:40 +0000)]
Merge pull request #2481 from TheBlueMatt/2023-08-keysend-robust-test

Scope payment preimage in do_test_keysend_payments

8 months agoEnforce explicit claims on payments with even custom TLVs
Alec Chen [Thu, 8 Jun 2023 17:08:25 +0000 (12:08 -0500)]
Enforce explicit claims on payments with even custom TLVs

Because we don't know which custom TLV type numbers the user is
expecting (and it would be cumbersome for them to tell us), instead of
failing unknown even custom TLVs on deserialization, we accept all
custom TLVs, and pass them to the user to check whether they recognize
them and choose to fail back if they don't. However, a user may not
check for custom TLVs, in which case we should reject any even custom
TLVs as unknown.

This commit makes sure a user must explicitly accept a payment with
even custom TLVs, by (1) making the default
`ChannelManager::claim_funds` fail if the payment had even custom TLVs
and (2) adding a new function
`ChannelManager::claim_funds_with_known_custom_tlvs` that accepts them.

This commit also refactors our custom TLVs test and updates various
documentation to account for this.

8 months agoAdd `FailureCode::InvalidOnionPayload` variant
Alec Chen [Thu, 8 Jun 2023 04:17:09 +0000 (23:17 -0500)]
Add `FailureCode::InvalidOnionPayload` variant

When a user decodes custom TLVs, if they fail to recognize even type
numbers they should fail back with the correct failure code and fail
data. This new variant adds the proper failure variant for the user to
pass into `ChannelManager::fail_htlc_backwards_with_reason`.

Note that the enum discriminants were removed because when adding a
struct variant we can no longer make use of the discriminant through
casting like we previously did, and instead have to manually define the
associated failure code anyway.

8 months agoDrop non-matching custom TLVs when receiving MPP
Alec Chen [Fri, 19 May 2023 20:37:47 +0000 (15:37 -0500)]
Drop non-matching custom TLVs when receiving MPP

Upon receiving multiple payment parts with custom TLVs, we fail payments
if they have any non-matching or missing even TLVs, and otherwise just
drop non-matching TLVs if they're odd.

8 months agoHandle receiving custom HTLC TLVs
Alec Chen [Wed, 17 May 2023 23:40:18 +0000 (18:40 -0500)]
Handle receiving custom HTLC TLVs

This completes basic receiver-side support for custom TLVs and adds
functional testing for sending and receiving.

8 months agoDe/serialize custom TLVs on `{Inbound,Outbound}OnionPayload`
Alec Chen [Fri, 19 May 2023 04:16:29 +0000 (23:16 -0500)]
De/serialize custom TLVs on `{Inbound,Outbound}OnionPayload`

When serialized, the TLVs in `OutboundOnionPayload`, unlike a normal
TLV stream, are prefixed with the length of the stream. To allow a user
to add arbitrary custom TLVs, we aren't able to communicate to our
serialization macros exactly which fields to expect, so this commit
adds new macro variants to allow appending an extra set of bytes (and
modifying the prefixed length accordingly).

Because the keysend preimage TLV has a type number in the custom type
range, and a user's TLVs may have type numbers above and/or below
keysend's type number, and because TLV streams must be serialized in
increasing order by type number, this commit also ensures the keysend
TLV is properly sorted/serialized amongst the custom TLVs.

8 months agoAdd custom tlvs to `PendingOutboundPayment::Retryable`
Alec Chen [Mon, 24 Jul 2023 19:04:18 +0000 (14:04 -0500)]
Add custom tlvs to `PendingOutboundPayment::Retryable`

8 months agoAllow users to provide custom TLVs through `RecipientOnionFields`
Alec Chen [Tue, 16 May 2023 22:56:28 +0000 (17:56 -0500)]
Allow users to provide custom TLVs through `RecipientOnionFields`

Custom TLVs allow users to send extra application-specific data with
a payment. These have the additional flexibility compared to
`payment_metadata` that they don't have to reflect recipient generated
data provided in an invoice, in which `payment_metadata` could be
reused.

We ensure provided type numbers are unique, increasing, and within the
experimental range with the `RecipientOnionFields::with_custom_tlvs`
method.

This begins sender-side support for custom TLVs.

8 months agoMerge pull request #2128 from valentinewallace/2023-03-route-blinding-groundwork
Matt Corallo [Tue, 8 Aug 2023 19:59:05 +0000 (19:59 +0000)]
Merge pull request #2128 from valentinewallace/2023-03-route-blinding-groundwork

Route blinding groundwork

8 months agoSmooth out channel liquidity bounds decay
Jeffrey Czyz [Fri, 21 Oct 2022 05:12:42 +0000 (00:12 -0500)]
Smooth out channel liquidity bounds decay

Decaying the channel liquidity bounds by a half life can result in a
large decrease, which may have an oscillating affect on whether a
channel is retried. Approximate an additional three-quarter life when
half of the next half life has passed to help smooth out the decay.

8 months agoAdd test coverage ChannelClosed event fields
Vladimir Fomene [Wed, 12 Jul 2023 11:58:22 +0000 (14:58 +0300)]
Add test coverage ChannelClosed event fields

8 months agoAdd counterparty_node_id & channel_capacity to ChannelClosed
Vladimir Fomene [Fri, 30 Jun 2023 10:03:26 +0000 (13:03 +0300)]
Add counterparty_node_id & channel_capacity to ChannelClosed

The current ChannelClosed event does not let
you know the counterparty during a channel close
event. This change adds the counterparty_node_id
and the channel_capacity to the ChannelClosed event.
This helps users to have more context during a
channel close event. Solves #2343

8 months agoMake CI build -> test flows test -> build. 2023-08-keysend-robust-test
Matt Corallo [Tue, 8 Aug 2023 04:19:51 +0000 (04:19 +0000)]
Make CI build -> test flows test -> build.

Doing `cargo test` causes us to build both the crate(s) themselves
and the test binaries, which depend on the main builds. However, it
can start building the test code while the actual program code for
the main crate(s) themselves are being built, making a
build -> test flow slightly slower than test -> build.

Its not really a huge deal, but I'm using `ci/ci-tests.sh` more
locally and it meaningfully changes the time-to-test-run.

8 months agoScope payment preimage in do_test_keysend_payments
Matt Corallo [Tue, 8 Aug 2023 04:15:20 +0000 (04:15 +0000)]
Scope payment preimage in do_test_keysend_payments

b0d4ab8cf8c93740674a00546be38a1a5f0a83c3 fixed a nasty bug where
we'd failed to include the payment preimage in keysend onions at
all. Ultimately, this was a test failure - the existing test suite
should which did keysend payments were not structured in a way that
would fail in this case, instead using the same preimage variable
both for sending and receiving.

Here we improve the main keysend test tweaked by b0d4ab8cf8c9374067
to make absolutely sure it cannot work if the preimage doesn't come
from the onion. We make the payment preimage on the sending side a
variable inside a scope which only exists for the send call. Once
that scope completes the payment preimage only exists in the
sending `ChannelManager`, which must have put it in the onion in
order for the receiving node to have it.

8 months agoMerge pull request #2475 from alecchendev/2023-08-actually-fix-keysend
valentinewallace [Mon, 7 Aug 2023 22:56:09 +0000 (15:56 -0700)]
Merge pull request #2475 from alecchendev/2023-08-actually-fix-keysend

Fix keysend not being sent in `OutboundPayment::send_payment_internal`

9 months agoSend keysend preimage through OutboundPayment::send_payment_internal
Alec Chen [Sat, 5 Aug 2023 00:20:46 +0000 (19:20 -0500)]
Send keysend preimage through OutboundPayment::send_payment_internal

Fixes a bug where we wouldn't use the provided keysend preimage when
piping through OutboundPayment::pay_route_internal.

Also simplifies and refactors existing keysend tests to make sure this
gets hit.

9 months agoMove keysend tests to payment_tests.rs
Alec Chen [Fri, 4 Aug 2023 23:59:05 +0000 (18:59 -0500)]
Move keysend tests to payment_tests.rs

9 months agoRemove unnecessary vecs in channel.rs
Valentine Wallace [Thu, 13 Jul 2023 02:13:06 +0000 (22:13 -0400)]
Remove unnecessary vecs in channel.rs

9 months agoReplace OnionHopData with OutboundPayload for outbound onions
Valentine Wallace [Fri, 24 Mar 2023 18:35:52 +0000 (14:35 -0400)]
Replace OnionHopData with OutboundPayload for outbound onions

Follows on from the previous commit, see its message

9 months agoReceive payment onions as new InboundPayload instead of OnionHopData
Valentine Wallace [Fri, 24 Mar 2023 16:46:16 +0000 (12:46 -0400)]
Receive payment onions as new InboundPayload instead of OnionHopData

To support route blinding, we want to split OnionHopData into two separate
structs, one for inbound onions and one for outbound onions. This is because
blinded payloads change the fields present in the onion hop data struct based
on whether we're sending vs receiving (outbound onions include encrypted blobs,
inbound onions can decrypt those blobs and contain the decrypted fields
themselves).

In upcoming commits, we'll add variants for blinded payloads to the new
InboundPayload enum.

9 months agoRemove outdated documentation of a panic
Valentine Wallace [Tue, 1 Aug 2023 21:07:51 +0000 (14:07 -0700)]
Remove outdated documentation of a panic

9 months agoRemove indentation in payment receive util
Valentine Wallace [Wed, 3 May 2023 23:15:30 +0000 (19:15 -0400)]
Remove indentation in payment receive util

This also set us up for supporting receiving blinded onion payloads.

9 months agoMerge pull request #2366 from valentinewallace/2023-05-blinded-pathfinding-fuzz
valentinewallace [Mon, 31 Jul 2023 22:27:47 +0000 (15:27 -0700)]
Merge pull request #2366 from valentinewallace/2023-05-blinded-pathfinding-fuzz

Blinded pathfinding fuzzing

9 months agoMerge pull request #2460 from TheBlueMatt/2023-07-claimable-clarify
Matt Corallo [Mon, 31 Jul 2023 17:47:33 +0000 (17:47 +0000)]
Merge pull request #2460 from TheBlueMatt/2023-07-claimable-clarify

Rename `Balance::claimable_amount_satoshis` to have a unique name

9 months agoMerge pull request #2463 from TheBlueMatt/2023-07-no-rustdoc-unicode
Matt Corallo [Mon, 31 Jul 2023 17:47:19 +0000 (17:47 +0000)]
Merge pull request #2463 from TheBlueMatt/2023-07-no-rustdoc-unicode

Drop unicode in documentation

9 months agoMerge pull request #2465 from alecchendev/2023-07-flip-keysend-feature-bit
Matt Corallo [Mon, 31 Jul 2023 17:46:57 +0000 (17:46 +0000)]
Merge pull request #2465 from alecchendev/2023-07-flip-keysend-feature-bit

Flip keysend feature bit on

9 months agoMerge pull request #2454 from optout21/unused-use
valentinewallace [Mon, 31 Jul 2023 17:35:15 +0000 (10:35 -0700)]
Merge pull request #2454 from optout21/unused-use

(Minor) Remove an unused import (ChannelSigner)

9 months agoMerge pull request #2459 from valentinewallace/2023-07-reconnect-peers-test-util
Elias Rohrer [Mon, 31 Jul 2023 13:25:05 +0000 (15:25 +0200)]
Merge pull request #2459 from valentinewallace/2023-07-reconnect-peers-test-util

Struct-ify `reconnect_nodes` test util args

9 months agoFlip keysend feature bit in node features
Alec Chen [Mon, 31 Jul 2023 02:18:43 +0000 (21:18 -0500)]
Flip keysend feature bit in node features

9 months agoDrop unicode in documentation 2023-07-no-rustdoc-unicode
Matt Corallo [Sun, 30 Jul 2023 17:10:38 +0000 (17:10 +0000)]
Drop unicode in documentation

Javadocs refuse unicode and as our rustdocs get copied over to Java
bindings (and thus get run through javadocs) we can't have unicode
in our rustdocs.

9 months agoDrop `claimable` from `Balance::claimable_amount_satoshis` fields 2023-07-claimable-clarify
Matt Corallo [Fri, 28 Jul 2023 06:20:43 +0000 (06:20 +0000)]
Drop `claimable` from `Balance::claimable_amount_satoshis` fields

In Java/TypeScript, we map enums as a base class and each variant
as a class which extends the base. In Java/TypeScript, functions
and fields share the same namespace, which means we cannot have
functions on an enum which have the same name as any fields in any
enum variants.

`Balance`'s `claimable_amount_satoshis` method aliases with fields
in each variant, and thus ultimately doesn't compile in TypeScript.

Because `Balance::claimable_amount_satoshis` has the same name as
the fields, it's also a bit confusing, as it doesn't return the
field for each variant, but sometimes returns zero if we're not
sure we can claim the balance.

Instead, we rename the fields in each enum variant to simply
`amount_satoshis`, to avoid implying that we can definitely claim
the balance.

9 months agoStruct-ify reconnect_nodes test util args
Valentine Wallace [Thu, 27 Jul 2023 22:58:07 +0000 (15:58 -0700)]
Struct-ify reconnect_nodes test util args

Makes it easier to add new arguments without a ton of resulting test changes.
Useful for route blinding testing because we need to check for malformed HTLCs,
which is not currently supported by reconnect_nodes. It also makes it easier to
tell what is being checked in relevant tests.

9 months agoAdd onion message test vectors
Valentine Wallace [Wed, 26 Jul 2023 22:13:23 +0000 (15:13 -0700)]
Add onion message test vectors

Also re-alphabetize the imports in the onion message functional tests.

Co-authored-by: Carla Kirk-Cohen <kirkcohenc@gmail.com>
9 months agoMerge pull request #2104 from douglaz/docs_fixes_channel
valentinewallace [Wed, 26 Jul 2023 21:52:15 +0000 (14:52 -0700)]
Merge pull request #2104 from douglaz/docs_fixes_channel

Docs improvements for channel

9 months agoRemove an unused use (ChannelSigner)
optout [Wed, 26 Jul 2023 19:47:40 +0000 (21:47 +0200)]
Remove an unused use (ChannelSigner)

9 months agoFuzz test blinded payment pathfinding
Valentine Wallace [Tue, 20 Jun 2023 16:59:35 +0000 (12:59 -0400)]
Fuzz test blinded payment pathfinding

9 months agoRouter fuzz: macroize first/last hops construction and pathfinding call
Valentine Wallace [Tue, 20 Jun 2023 16:54:33 +0000 (12:54 -0400)]
Router fuzz: macroize first/last hops construction and pathfinding call

For reuse in fuzzing blinded payment pathfinding, and to ensure fuzz input
values are fetched in the same order in both match arms.

9 months agoDocs improvements for channel
Allan Douglas R. de Oliveira [Tue, 14 Mar 2023 19:55:47 +0000 (19:55 +0000)]
Docs improvements for channel

9 months agoMerge pull request #2446 from TheBlueMatt/2023-07-ci-more-test
valentinewallace [Tue, 25 Jul 2023 18:07:41 +0000 (11:07 -0700)]
Merge pull request #2446 from TheBlueMatt/2023-07-ci-more-test

Run all tests first before testing more esoteric flags in CI

9 months agoMerge pull request #2448 from TheBlueMatt/2023-07-cm-clone
valentinewallace [Tue, 25 Jul 2023 17:46:48 +0000 (10:46 -0700)]
Merge pull request #2448 from TheBlueMatt/2023-07-cm-clone

Impl clone for ChannelMonitor

9 months agoMerge pull request #2370 from valentinewallace/2023-06-send-along-path-args
Matt Corallo [Mon, 24 Jul 2023 22:43:58 +0000 (22:43 +0000)]
Merge pull request #2370 from valentinewallace/2023-06-send-along-path-args

Update `send_payment_along_path` to take its args as struct

9 months agoImpl clone for ChannelMonitor 2023-07-cm-clone
benthecarman [Fri, 2 Jun 2023 16:27:51 +0000 (11:27 -0500)]
Impl clone for ChannelMonitor

This gives people more freedom with the channel monitors. For Mutiny
this would be nice for us to be able to create copies of them and pass
aorund in memory without having to serialize until we actually want to.

Originally by benthecarman <benthecarman@live.com>
Small bugfix from Matt Corallo <git@bluematt.me>

9 months agoRun all tests first before testing more esoteric flags in CI 2023-07-ci-more-test
Matt Corallo [Mon, 24 Jul 2023 22:03:15 +0000 (22:03 +0000)]
Run all tests first before testing more esoteric flags in CI

This should at least marginally more aggressively target things
which are more likely to have changed in CI, making `ci-tests.sh`
more useful as a "default" script for developers to run locally.

9 months agoMerge pull request #2431 from arik-so/2023-07-public-excess-data
Matt Corallo [Mon, 24 Jul 2023 03:52:27 +0000 (03:52 +0000)]
Merge pull request #2431 from arik-so/2023-07-public-excess-data

9 months agoMerge pull request #2444 from szabgab/https
Elias Rohrer [Sun, 23 Jul 2023 17:28:17 +0000 (19:28 +0200)]
Merge pull request #2444 from szabgab/https

http => https

9 months agohttp => https
Gabor Szabo [Sun, 23 Jul 2023 05:58:41 +0000 (08:58 +0300)]
http => https

9 months agoMerge pull request #2427 from TheBlueMatt/2023-07-cut-116 v0.0.116
Matt Corallo [Fri, 21 Jul 2023 23:15:05 +0000 (23:15 +0000)]
Merge pull request #2427 from TheBlueMatt/2023-07-cut-116

Release 0.0.116

9 months agoBump crate versions to 0.0.116 release 2023-07-cut-116
Matt Corallo [Mon, 17 Jul 2023 22:34:44 +0000 (22:34 +0000)]
Bump crate versions to 0.0.116 release

9 months agoAdd a warning on anchors and update 116 changelog for release
Matt Corallo [Mon, 17 Jul 2023 22:32:45 +0000 (22:32 +0000)]
Add a warning on anchors and update 116 changelog for release

9 months agoAdd `lightning-background-processor` `no-std` feature
Matt Corallo [Fri, 21 Jul 2023 20:26:16 +0000 (20:26 +0000)]
Add `lightning-background-processor` `no-std` feature

While this is generally uneccessary as users set the `no-std` or
`std` features on the `lightning` crate directly, having this
allows `lightning-background-processor` to be built by itself
without extra dep lines. Specifically, the bindings are moving to
using the `-Z avoid-dev-deps` option, which now causes
`lightning-background-processor` to fail to build directly.

9 months agoMerge pull request #2436 from tnull/2023-07-improve-router-logging
Jeffrey Czyz [Fri, 21 Jul 2023 20:25:57 +0000 (15:25 -0500)]
Merge pull request #2436 from tnull/2023-07-improve-router-logging

Improve router logging and update documentation

9 months agoMerge pull request #2439 from tnull/2023-05-fix-0conf-sigs-racing-confirms
Matt Corallo [Fri, 21 Jul 2023 19:37:28 +0000 (19:37 +0000)]
Merge pull request #2439 from tnull/2023-05-fix-0conf-sigs-racing-confirms

Avoid panic when 0conf channel's ann. sigs race on-chain confirmation

9 months agoImprove logging for ignored candiate hops
Elias Rohrer [Tue, 18 Jul 2023 11:23:20 +0000 (13:23 +0200)]
Improve logging for ignored candiate hops

Previously, we barely gave any hints why we excluded certain hops during
pathfinding. Here, we introduce more verbose logging by a) accounting
how much candidates we ignored for which reasons and b) logging any
first/last/blinded hops we end up ignoring.

Fixes #1646.

9 months agoUpdate outdated `router.rs` docs
Elias Rohrer [Tue, 18 Jul 2023 10:41:07 +0000 (12:41 +0200)]
Update outdated `router.rs` docs

As `RouteParameters` are not included anymore in
`Event::PaymentPathFailed` since 0.0.115, and we don't give value/payee
as immediate arguments to `find_route` anymore.

9 months agoMerge pull request #2434 from TheBlueMatt/2023-07-116-bindings-part-2
Matt Corallo [Fri, 21 Jul 2023 16:39:19 +0000 (16:39 +0000)]
Merge pull request #2434 from TheBlueMatt/2023-07-116-bindings-part-2

0.0.116 Bindings Changes

9 months agoAvoid `unwrap`ing in `get_announcement_sigs`
Elias Rohrer [Sat, 17 Jun 2023 11:17:20 +0000 (13:17 +0200)]
Avoid `unwrap`ing in `get_announcement_sigs`

While this is currently not reachable, it's still cleaner to
avoid the `unwrap` and return `None` if `short_channel_id` hasn't been
set yet.

9 months agoAvoid panic when 0conf channel's ann. sigs race on-chain confirmation
Elias Rohrer [Sat, 17 Jun 2023 11:16:52 +0000 (13:16 +0200)]
Avoid panic when 0conf channel's ann. sigs race on-chain confirmation

A channel's `short_channel_id` is currently only set when the funding
transaction is confirmed via `transactions_confirmed`, which might be
well after the channel initally becomes usable, e.g., in the 0conf case.

Previously we would panic due to a reachable `unwrap` when receiving a
counterparty's `announcement_signatures` message for a 0conf channel
pending confirmation on-chain.

Here we fix this bug by avoiding unsafe `unwrap`s and just erroring out
and ignoring the announcement_signatures message if the `short_channel_id`
hasn't been set yet.

9 months agoAdd relevant derives for `BigSize` as its a simple integer 2023-07-116-bindings-part-2
Matt Corallo [Wed, 19 Jul 2023 23:59:29 +0000 (23:59 +0000)]
Add relevant derives for `BigSize` as its a simple integer

9 months agoAdd relevant trait derives for `bump_transaction` structs
Matt Corallo [Wed, 19 Jul 2023 23:58:42 +0000 (23:58 +0000)]
Add relevant trait derives for `bump_transaction` structs

Notably including `Hash`/`Eq`/`Ord` for structs which may be used
in maps.

9 months agoMake `OffersMessage` and offers errors `Clone`able
Matt Corallo [Wed, 19 Jul 2023 20:22:41 +0000 (20:22 +0000)]
Make `OffersMessage` and offers errors `Clone`able

9 months agoMake `requires_unknown_bits_from` param type bindings compatible
Matt Corallo [Wed, 19 Jul 2023 20:11:35 +0000 (20:11 +0000)]
Make `requires_unknown_bits_from` param type bindings compatible

While bindings should probably be able to figure out that this is
the same type as `Self`, for now we simply swap the type to make
the bindings generator have an easier go of it.

9 months agoMark the `Duration` serialization implementation no-bindings-export
Matt Corallo [Wed, 19 Jul 2023 20:04:24 +0000 (20:04 +0000)]
Mark the `Duration` serialization implementation no-bindings-export

The bindings are being updated to consider all traits even if the
trait itself is no-export, which causes issues generating code
around the `Duration` impl here.

9 months agoNo-export un-exportable types in BOLT12 module
Matt Corallo [Wed, 19 Jul 2023 20:02:10 +0000 (20:02 +0000)]
No-export un-exportable types in BOLT12 module

We missed one method that now cannot be bindings exported - the
`payment_paths` method, as it returns a slice of objects, which
cannot be supported in bindings.

9 months agoNo-export `APeerManager` in bindings
Matt Corallo [Wed, 19 Jul 2023 20:01:32 +0000 (20:01 +0000)]
No-export `APeerManager` in bindings

`APeerManager` will simply be mapped as `PeerManager` in bindings,
as structs are all concretized into a single form.

9 months agoMove `ClaimId` to `[u8; 32]` in bindings.
Matt Corallo [Wed, 19 Jul 2023 20:01:01 +0000 (20:01 +0000)]
Move `ClaimId` to `[u8; 32]` in bindings.

This matches what we've done for other `[u8; 32]` newtypes.

9 months agoTweak PSBT signing for bindings compatibility
Matt Corallo [Wed, 19 Jul 2023 19:37:21 +0000 (19:37 +0000)]
Tweak PSBT signing for bindings compatibility

In bindings we can't practically pass a mutable PSBT, and instead
need to pass an owned transaction and have the sign method return a
signed copy. We do this here for all build modes as its not a
material API change for Rust users.

9 months agoAdd a c_bindings test to `check-compiles.sh` as it should build
Matt Corallo [Wed, 19 Jul 2023 18:39:31 +0000 (18:39 +0000)]
Add a c_bindings test to `check-compiles.sh` as it should build

9 months agoMerge pull request #2430 from TheBlueMatt/2023-07-116-bindings-part-1
Matt Corallo [Thu, 20 Jul 2023 21:42:44 +0000 (21:42 +0000)]
Merge pull request #2430 from TheBlueMatt/2023-07-116-bindings-part-1

Assorted 0.0.116 Bindings updates

9 months agoMerge pull request #2382 from dunxen/2077-followups
Matt Corallo [Thu, 20 Jul 2023 21:40:04 +0000 (21:40 +0000)]
Merge pull request #2382 from dunxen/2077-followups

Address outstanding 2077 feedback

9 months agoDrop `c_bindings` implementation of scoring on `Mutex`/`RefCell` 2023-07-116-bindings-part-1
Matt Corallo [Tue, 18 Jul 2023 19:52:26 +0000 (19:52 +0000)]
Drop `c_bindings` implementation of scoring on `Mutex`/`RefCell`

This code was always effectively dead - we have a special
`MultiThreadedLockableScore` type which wraps a `Mutex` for
bindings users, so there's no need to implement any
bindings-specific scoring logic for them.

9 months agoPass `InFlightHltcs` to the scorer by ownership rather than ref
Matt Corallo [Tue, 18 Jul 2023 19:41:07 +0000 (19:41 +0000)]
Pass `InFlightHltcs` to the scorer by ownership rather than ref

Given we build `InFlightHtlcs` per route-fetch call, there's no
reason to pass them out by reference rather than simply giving the
user the full object. This also allows them to tweak the in-flight
set before fetching a route.

9 months agoPass must-spend inputs to users by ownership
Matt Corallo [Tue, 18 Jul 2023 19:34:00 +0000 (19:34 +0000)]
Pass must-spend inputs to users by ownership

We already hold them in a vec, so there's no cost to passing them
by ownership vs making it a slice. Further, this helps bindings as
we can't represent slices to non-pointers in a sensible way.

9 months agoTweak transaction bumping `sign_tx` types for bindings
Matt Corallo [Tue, 18 Jul 2023 19:13:19 +0000 (19:13 +0000)]
Tweak transaction bumping `sign_tx` types for bindings

In bindings we can't practically pass a mutable transaction, and
instead need to pass an owned transaction and have the sign method
return a signed copy. We do this here for all build modes as the
API is roughly equivalent also to Rust users.

9 months agoPublicize UnsignedChannelAnnouncement's excess_data.
Arik Sosman [Wed, 19 Jul 2023 10:02:33 +0000 (03:02 -0700)]
Publicize UnsignedChannelAnnouncement's excess_data.

Making the `excess_data` field public significantly
simplifies writing legible unit tests for the
Rapid Gossip Sync Server.

9 months agoMerge pull request #2423 from wpaulino/2403-fixups
Matt Corallo [Wed, 19 Jul 2023 17:43:30 +0000 (17:43 +0000)]
Merge pull request #2423 from wpaulino/2403-fixups

PR #2403 fixups

9 months agoClose and remove unfunded inbound/outbound channels that are older than an hour
Duncan Dean [Fri, 14 Jul 2023 14:59:29 +0000 (16:59 +0200)]
Close and remove unfunded inbound/outbound channels that are older than an hour

We introduce a `UnfundedChannelContext` which contains a counter for the
current age of an unfunded channel in timer ticks. This age is incremented
for every `ChannelManager::timer_tick_ocurred` and the unfunded channel
is removed if it exceeds `UNFUNDED_CHANNEL_AGE_LIMIT_TICKS`.

The value will not be persisted as unfunded channels themselves are not
persisted.

9 months agoRemove redundant 'outbound' wording from methods
Duncan Dean [Tue, 27 Jun 2023 18:07:33 +0000 (14:07 -0400)]
Remove redundant 'outbound' wording from methods

9 months agoForce close pending channels in `internal_shutdown`
Duncan Dean [Tue, 27 Jun 2023 16:19:35 +0000 (12:19 -0400)]
Force close pending channels in `internal_shutdown`

9 months agoConsider all channel maps in `update_partial_channel_config`
Duncan Dean [Mon, 26 Jun 2023 17:53:14 +0000 (13:53 -0400)]
Consider all channel maps in `update_partial_channel_config`

9 months agoFallback `close_channel_internal` to force close unfunded channels
Duncan Dean [Mon, 26 Jun 2023 14:48:45 +0000 (10:48 -0400)]
Fallback `close_channel_internal` to force close unfunded channels

9 months agoAdd missing unfunded channel maps checks in `ChannelManager`
Duncan Dean [Mon, 26 Jun 2023 14:06:50 +0000 (10:06 -0400)]
Add missing unfunded channel maps checks in `ChannelManager`

One of a series of follow-up commits to address some issues found
in PR 2077, where we split channels up into different maps and structs
depending on phase in their life.

9 months agoRefer to channels busy with funding tx negotiation as "unfunded"
Duncan Dean [Mon, 17 Jul 2023 13:52:44 +0000 (15:52 +0200)]
Refer to channels busy with funding tx negotiation as "unfunded"

We had some inconsistencies so far in referring to channels such as
`OutboundV1Channel` and `InboundV1Channel` as pending and unfunded.
From here we refer to these kinds of channels only as "unfunded".

This is a slight conflation with the term "unfunded" in the contexts
of denial of service mitigation. There, "unfunded" actually refers to
non-0conf, inbound channels that have not had their funding transaction
confirmed. This might warrant changing that usage to "unconfirmed inbound".

9 months agoMerge pull request #2426 from TheBlueMatt/2023-07-proc-macro2-msrv
Wilmer Paulino [Wed, 19 Jul 2023 16:11:43 +0000 (09:11 -0700)]
Merge pull request #2426 from TheBlueMatt/2023-07-proc-macro2-msrv

9 months agoTweak generics on `derive_channel_signer` to be bindings-compatible
Matt Corallo [Tue, 18 Jul 2023 19:04:56 +0000 (19:04 +0000)]
Tweak generics on `derive_channel_signer` to be bindings-compatible

The C bindings generation currently has issues looking through a
generic associated type. While this should be fixed in the bindings
generator, its easy to fix here for now and we can revisit it
later.

9 months agoOnly try to build `lightning-transaction-sync` if we meet its MSRV 2023-07-proc-macro2-msrv
Matt Corallo [Tue, 18 Jul 2023 01:54:16 +0000 (01:54 +0000)]
Only try to build `lightning-transaction-sync` if we meet its MSRV

This should fix CI

9 months agoPin `proc-macro2` in CI to fix MSRV breakage
Elias Rohrer [Mon, 17 Jul 2023 19:08:26 +0000 (21:08 +0200)]
Pin `proc-macro2` in CI to fix MSRV breakage

The proc-macro2 crate switched to Rust edition 2021 starting with
v1.0.66, i.e., has MSRV of 1.56.

Here, we pin it in CI to fix the breakage.

9 months agoTest MSRV builds (without dev-dependencies) in CI
Matt Corallo [Mon, 17 Jul 2023 21:53:07 +0000 (21:53 +0000)]
Test MSRV builds (without dev-dependencies) in CI

9 months agoDrop `tokio/macros` dependency in `lightning-net-tokio`, fix MSRV
Matt Corallo [Mon, 17 Jul 2023 21:01:02 +0000 (21:01 +0000)]
Drop `tokio/macros` dependency in `lightning-net-tokio`, fix MSRV

The `tokio` `macros` feature depends on `proc-macro2`, which
recently broke its MSRV in a patch version. Such crates aren't
reasonable for us to have as dependencies, so instead we replace
the one trivial use we have of `tokio::select!()` with our own
manual future.

9 months agoAdd warning regarding remote fee estimators
Wilmer Paulino [Mon, 17 Jul 2023 21:47:10 +0000 (14:47 -0700)]
Add warning regarding remote fee estimators

9 months agoMerge pull request #2414 from TheBlueMatt/2023-07-cut-116-rc v0.0.116-rc1
Matt Corallo [Mon, 17 Jul 2023 22:18:19 +0000 (22:18 +0000)]
Merge pull request #2414 from TheBlueMatt/2023-07-cut-116-rc

Add 0.0.116 CHANGELOG entries and prep for 0.0.116rc1

9 months agoUpdate version numbers to rc1, from alpha1 2023-07-cut-116-rc
Matt Corallo [Thu, 13 Jul 2023 22:28:29 +0000 (22:28 +0000)]
Update version numbers to rc1, from alpha1