-
Notifications
You must be signed in to change notification settings - Fork 399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Async payments message encoding and prefactor #3125
Merged
valentinewallace
merged 7 commits into
lightningdevkit:main
from
valentinewallace:2024-06-async-payments-prefactor
Jun 24, 2024
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
66df329
ser_macros: support messages with no fields
valentinewallace 445ec8d
Onion message payload for async payments
valentinewallace e8f154d
AsyncPaymentsMessageHandler trait for OnionMessenger
valentinewallace 691e10f
DRY responder instantiation for onion messages.
valentinewallace 6553d15
Add OffersMessage variant for static invoices.
valentinewallace f20bd3d
Remove unused imports in static_invoice.rs
valentinewallace 5c7af8c
Cfg-gate async payments module and public enum variants.
valentinewallace File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -568,7 +568,7 @@ use core::task; | |
/// # type NetworkGraph = lightning::routing::gossip::NetworkGraph<Arc<Logger>>; | ||
/// # type P2PGossipSync<UL> = lightning::routing::gossip::P2PGossipSync<Arc<NetworkGraph>, Arc<UL>, Arc<Logger>>; | ||
/// # type ChannelManager<B, F, FE> = lightning::ln::channelmanager::SimpleArcChannelManager<ChainMonitor<B, F, FE>, B, FE, Logger>; | ||
/// # type OnionMessenger<B, F, FE> = lightning::onion_message::messenger::OnionMessenger<Arc<lightning::sign::KeysManager>, Arc<lightning::sign::KeysManager>, Arc<Logger>, Arc<ChannelManager<B, F, FE>>, Arc<lightning::onion_message::messenger::DefaultMessageRouter<Arc<NetworkGraph>, Arc<Logger>, Arc<lightning::sign::KeysManager>>>, Arc<ChannelManager<B, F, FE>>, lightning::ln::peer_handler::IgnoringMessageHandler>; | ||
/// # type OnionMessenger<B, F, FE> = lightning::onion_message::messenger::OnionMessenger<Arc<lightning::sign::KeysManager>, Arc<lightning::sign::KeysManager>, Arc<Logger>, Arc<ChannelManager<B, F, FE>>, Arc<lightning::onion_message::messenger::DefaultMessageRouter<Arc<NetworkGraph>, Arc<Logger>, Arc<lightning::sign::KeysManager>>>, Arc<ChannelManager<B, F, FE>>, lightning::ln::peer_handler::IgnoringMessageHandler, lightning::ln::peer_handler::IgnoringMessageHandler>; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since we're going ahead and exposing the message handler trait publicly, lets go ahead and impl it for |
||
/// # type Scorer = RwLock<lightning::routing::scoring::ProbabilisticScorer<Arc<NetworkGraph>, Arc<Logger>>>; | ||
/// # type PeerManager<B, F, FE, UL> = lightning::ln::peer_handler::SimpleArcPeerManager<SocketDescriptor, ChainMonitor<B, F, FE>, B, FE, Arc<UL>, Logger>; | ||
/// # | ||
|
@@ -996,7 +996,7 @@ mod tests { | |
type PGS = Arc<P2PGossipSync<Arc<NetworkGraph<Arc<test_utils::TestLogger>>>, Arc<test_utils::TestChainSource>, Arc<test_utils::TestLogger>>>; | ||
type RGS = Arc<RapidGossipSync<Arc<NetworkGraph<Arc<test_utils::TestLogger>>>, Arc<test_utils::TestLogger>>>; | ||
|
||
type OM = OnionMessenger<Arc<KeysManager>, Arc<KeysManager>, Arc<test_utils::TestLogger>, Arc<ChannelManager>, Arc<DefaultMessageRouter<Arc<NetworkGraph<Arc<test_utils::TestLogger>>>, Arc<test_utils::TestLogger>, Arc<KeysManager>>>, IgnoringMessageHandler, IgnoringMessageHandler>; | ||
type OM = OnionMessenger<Arc<KeysManager>, Arc<KeysManager>, Arc<test_utils::TestLogger>, Arc<ChannelManager>, Arc<DefaultMessageRouter<Arc<NetworkGraph<Arc<test_utils::TestLogger>>>, Arc<test_utils::TestLogger>, Arc<KeysManager>>>, IgnoringMessageHandler, IgnoringMessageHandler, IgnoringMessageHandler>; | ||
|
||
struct Node { | ||
node: Arc<ChannelManager>, | ||
|
@@ -1291,7 +1291,7 @@ mod tests { | |
let best_block = BestBlock::from_network(network); | ||
let params = ChainParameters { network, best_block }; | ||
let manager = Arc::new(ChannelManager::new(fee_estimator.clone(), chain_monitor.clone(), tx_broadcaster.clone(), router.clone(), logger.clone(), keys_manager.clone(), keys_manager.clone(), keys_manager.clone(), UserConfig::default(), params, genesis_block.header.time)); | ||
let messenger = Arc::new(OnionMessenger::new(keys_manager.clone(), keys_manager.clone(), logger.clone(), manager.clone(), msg_router.clone(), IgnoringMessageHandler {}, IgnoringMessageHandler {})); | ||
let messenger = Arc::new(OnionMessenger::new(keys_manager.clone(), keys_manager.clone(), logger.clone(), manager.clone(), msg_router.clone(), IgnoringMessageHandler {}, IgnoringMessageHandler {}, IgnoringMessageHandler {})); | ||
let wallet = Arc::new(TestWallet {}); | ||
let sweeper = Arc::new(OutputSweeper::new(best_block, Arc::clone(&tx_broadcaster), Arc::clone(&fee_estimator), | ||
None::<Arc<dyn Filter + Sync + Send>>, Arc::clone(&keys_manager), wallet, Arc::clone(&kv_store), Arc::clone(&logger))); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
// This file is Copyright its original authors, visible in version control | ||
// history. | ||
// | ||
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE | ||
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option. | ||
// You may not use this file except in accordance with one or both of these | ||
// licenses. | ||
|
||
//! Message handling for async payments. | ||
|
||
use crate::io; | ||
use crate::ln::msgs::DecodeError; | ||
use crate::onion_message::messenger::PendingOnionMessage; | ||
use crate::onion_message::messenger::{Responder, ResponseInstruction}; | ||
use crate::onion_message::packet::OnionMessageContents; | ||
use crate::prelude::*; | ||
use crate::util::ser::{Readable, ReadableArgs, Writeable, Writer}; | ||
|
||
// TLV record types for the `onionmsg_tlv` TLV stream as defined in BOLT 4. | ||
const HELD_HTLC_AVAILABLE_TLV_TYPE: u64 = 72; | ||
const RELEASE_HELD_HTLC_TLV_TYPE: u64 = 74; | ||
|
||
/// A handler for an [`OnionMessage`] containing an async payments message as its payload. | ||
/// | ||
/// [`OnionMessage`]: crate::ln::msgs::OnionMessage | ||
pub trait AsyncPaymentsMessageHandler { | ||
/// Handle a [`HeldHtlcAvailable`] message. A [`ReleaseHeldHtlc`] should be returned to release | ||
/// the held funds. | ||
fn held_htlc_available( | ||
&self, message: HeldHtlcAvailable, responder: Option<Responder>, | ||
) -> ResponseInstruction<ReleaseHeldHtlc>; | ||
|
||
/// Handle a [`ReleaseHeldHtlc`] message. If authentication of the message succeeds, an HTLC | ||
/// should be released to the corresponding payee. | ||
fn release_held_htlc(&self, message: ReleaseHeldHtlc); | ||
|
||
/// Release any [`AsyncPaymentsMessage`]s that need to be sent. | ||
/// | ||
/// Typically, this is used for messages initiating an async payment flow rather than in response | ||
/// to another message. | ||
#[cfg(not(c_bindings))] | ||
fn release_pending_messages(&self) -> Vec<PendingOnionMessage<AsyncPaymentsMessage>> { | ||
vec![] | ||
} | ||
|
||
/// Release any [`AsyncPaymentsMessage`]s that need to be sent. | ||
/// | ||
/// Typically, this is used for messages initiating a payment flow rather than in response to | ||
/// another message. | ||
#[cfg(c_bindings)] | ||
fn release_pending_messages( | ||
&self, | ||
) -> Vec<( | ||
AsyncPaymentsMessage, | ||
crate::onion_message::messenger::Destination, | ||
Option<crate::blinded_path::BlindedPath>, | ||
)> { | ||
vec![] | ||
} | ||
} | ||
|
||
/// Possible async payment messages sent and received via an [`OnionMessage`]. | ||
/// | ||
/// [`OnionMessage`]: crate::ln::msgs::OnionMessage | ||
#[derive(Clone, Debug)] | ||
pub enum AsyncPaymentsMessage { | ||
/// An HTLC is being held upstream for the often-offline recipient, to be released via | ||
/// [`ReleaseHeldHtlc`]. | ||
HeldHtlcAvailable(HeldHtlcAvailable), | ||
|
||
/// Releases the HTLC corresponding to an inbound [`HeldHtlcAvailable`] message. | ||
ReleaseHeldHtlc(ReleaseHeldHtlc), | ||
} | ||
|
||
/// An HTLC destined for the recipient of this message is being held upstream. The reply path | ||
/// accompanying this onion message should be used to send a [`ReleaseHeldHtlc`] response, which | ||
/// will cause the upstream HTLC to be released. | ||
#[derive(Clone, Debug)] | ||
pub struct HeldHtlcAvailable { | ||
/// The secret that will be used by the recipient of this message to release the held HTLC. | ||
pub payment_release_secret: [u8; 32], | ||
} | ||
|
||
/// Releases the HTLC corresponding to an inbound [`HeldHtlcAvailable`] message. | ||
#[derive(Clone, Debug)] | ||
pub struct ReleaseHeldHtlc { | ||
/// Used to release the HTLC held upstream if it matches the corresponding | ||
/// [`HeldHtlcAvailable::payment_release_secret`]. | ||
pub payment_release_secret: [u8; 32], | ||
} | ||
|
||
impl OnionMessageContents for ReleaseHeldHtlc { | ||
fn tlv_type(&self) -> u64 { | ||
RELEASE_HELD_HTLC_TLV_TYPE | ||
} | ||
fn msg_type(&self) -> &'static str { | ||
"Release Held HTLC" | ||
} | ||
} | ||
|
||
impl_writeable_tlv_based!(HeldHtlcAvailable, { | ||
(0, payment_release_secret, required), | ||
}); | ||
|
||
impl_writeable_tlv_based!(ReleaseHeldHtlc, { | ||
(0, payment_release_secret, required), | ||
}); | ||
|
||
impl AsyncPaymentsMessage { | ||
/// Returns whether `tlv_type` corresponds to a TLV record for async payment messages. | ||
pub fn is_known_type(tlv_type: u64) -> bool { | ||
match tlv_type { | ||
HELD_HTLC_AVAILABLE_TLV_TYPE | RELEASE_HELD_HTLC_TLV_TYPE => true, | ||
_ => false, | ||
} | ||
} | ||
} | ||
|
||
impl OnionMessageContents for AsyncPaymentsMessage { | ||
fn tlv_type(&self) -> u64 { | ||
match self { | ||
Self::HeldHtlcAvailable(_) => HELD_HTLC_AVAILABLE_TLV_TYPE, | ||
Self::ReleaseHeldHtlc(msg) => msg.tlv_type(), | ||
} | ||
} | ||
fn msg_type(&self) -> &'static str { | ||
match &self { | ||
Self::HeldHtlcAvailable(_) => "Held HTLC Available", | ||
Self::ReleaseHeldHtlc(msg) => msg.msg_type(), | ||
} | ||
} | ||
} | ||
|
||
impl Writeable for AsyncPaymentsMessage { | ||
fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> { | ||
match self { | ||
Self::HeldHtlcAvailable(message) => message.write(w), | ||
Self::ReleaseHeldHtlc(message) => message.write(w), | ||
} | ||
} | ||
} | ||
|
||
impl ReadableArgs<u64> for AsyncPaymentsMessage { | ||
fn read<R: io::Read>(r: &mut R, tlv_type: u64) -> Result<Self, DecodeError> { | ||
match tlv_type { | ||
HELD_HTLC_AVAILABLE_TLV_TYPE => Ok(Self::HeldHtlcAvailable(Readable::read(r)?)), | ||
RELEASE_HELD_HTLC_TLV_TYPE => Ok(Self::ReleaseHeldHtlc(Readable::read(r)?)), | ||
_ => Err(DecodeError::InvalidValue), | ||
} | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fuzzers should always do more, not less :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed this and below in #3145.