Skip to content

Commit 65ace16

Browse files
committed
Introduce flow usage in channelmanager
1 parent 7131990 commit 65ace16

File tree

2 files changed

+33
-109
lines changed

2 files changed

+33
-109
lines changed

lightning/src/ln/channelmanager.rs

+27-103
Original file line numberDiff line numberDiff line change
@@ -1752,6 +1752,7 @@ where
17521752
/// # tx_broadcaster: &dyn lightning::chain::chaininterface::BroadcasterInterface,
17531753
/// # router: &lightning::routing::router::DefaultRouter<&NetworkGraph<&'a L>, &'a L, &ES, &S, SP, SL>,
17541754
/// # message_router: &lightning::onion_message::messenger::DefaultMessageRouter<&NetworkGraph<&'a L>, &'a L, &ES>,
1755+
/// # flow: &lightning::offers::flow::OffersMessageFlow<&ES, &lightning::onion_message::messenger::DefaultMessageRouter<&NetworkGraph<&'a L>, &'a L, &ES>>,
17551756
/// # logger: &L,
17561757
/// # entropy_source: &ES,
17571758
/// # node_signer: &dyn lightning::sign::NodeSigner,
@@ -1767,15 +1768,15 @@ where
17671768
/// };
17681769
/// let default_config = UserConfig::default();
17691770
/// let channel_manager = ChannelManager::new(
1770-
/// fee_estimator, chain_monitor, tx_broadcaster, router, message_router, logger,
1771+
/// fee_estimator, chain_monitor, tx_broadcaster, router, message_router, flow, logger,
17711772
/// entropy_source, node_signer, signer_provider, default_config, params, current_timestamp,
17721773
/// );
17731774
///
17741775
/// // Restart from deserialized data
17751776
/// let mut channel_monitors = read_channel_monitors();
17761777
/// let args = ChannelManagerReadArgs::new(
17771778
/// entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster,
1778-
/// router, message_router, logger, default_config, channel_monitors.iter().collect(),
1779+
/// router, message_router, flow, logger, default_config, channel_monitors.iter().collect(),
17791780
/// );
17801781
/// let (block_hash, channel_manager) =
17811782
/// <(BlockHash, ChannelManager<_, _, _, _, _, _, _, _, _, _>)>::read(&mut reader, args)?;
@@ -10122,18 +10123,15 @@ macro_rules! create_offer_builder { ($self: ident, $builder: ty) => {
1012210123
pub fn create_offer_builder(
1012310124
&$self, absolute_expiry: Option<Duration>
1012410125
) -> Result<$builder, Bolt12SemanticError> {
10125-
let node_id = $self.get_our_node_id();
10126-
let expanded_key = &$self.inbound_payment_key;
1012710126
let entropy = &*$self.entropy_source;
10128-
let secp_ctx = &$self.secp_ctx;
1012910127

1013010128
let nonce = Nonce::from_entropy_source(entropy);
1013110129
let context = OffersContext::InvoiceRequest { nonce };
10132-
let path = $self.create_blinded_paths_using_absolute_expiry(context, absolute_expiry)
10130+
let path = $self.flow.create_blinded_paths_using_absolute_expiry($self.peer_for_blinded_path(), context, absolute_expiry)
1013310131
.and_then(|paths| paths.into_iter().next().ok_or(()))
1013410132
.map_err(|_| Bolt12SemanticError::MissingPaths)?;
10135-
let builder = OfferBuilder::deriving_signing_pubkey(node_id, expanded_key, nonce, secp_ctx)
10136-
.chain_hash($self.chain_hash)
10133+
10134+
let builder = $self.flow.create_offer_builder(nonce)?
1013710135
.path(path);
1013810136

1013910137
let builder = match absolute_expiry {
@@ -10195,23 +10193,16 @@ macro_rules! create_refund_builder { ($self: ident, $builder: ty) => {
1019510193
&$self, amount_msats: u64, absolute_expiry: Duration, payment_id: PaymentId,
1019610194
retry_strategy: Retry, route_params_config: RouteParametersConfig
1019710195
) -> Result<$builder, Bolt12SemanticError> {
10198-
let node_id = $self.get_our_node_id();
10199-
let expanded_key = &$self.inbound_payment_key;
1020010196
let entropy = &*$self.entropy_source;
10201-
let secp_ctx = &$self.secp_ctx;
1020210197

1020310198
let nonce = Nonce::from_entropy_source(entropy);
1020410199
let context = OffersContext::OutboundPayment { payment_id, nonce, hmac: None };
10205-
let path = $self.create_blinded_paths_using_absolute_expiry(context, Some(absolute_expiry))
10200+
let path = $self.flow.create_blinded_paths_using_absolute_expiry($self.peer_for_blinded_path(), context, Some(absolute_expiry))
1020610201
.and_then(|paths| paths.into_iter().next().ok_or(()))
1020710202
.map_err(|_| Bolt12SemanticError::MissingPaths)?;
1020810203

10209-
let builder = RefundBuilder::deriving_signing_pubkey(
10210-
node_id, expanded_key, nonce, secp_ctx, amount_msats, payment_id
10211-
)?
10212-
.chain_hash($self.chain_hash)
10213-
.absolute_expiry(absolute_expiry)
10214-
.path(path);
10204+
let builder = $self.flow.create_refund_builder(amount_msats, absolute_expiry, payment_id, nonce)?
10205+
.path(path);
1021510206

1021610207
let _persistence_guard = PersistenceNotifierGuard::notify_on_drop($self);
1021710208

@@ -10272,15 +10263,10 @@ where
1027210263
return Err(Bolt12SemanticError::MissingPaths)
1027310264
}
1027410265

10275-
let node_id = self.get_our_node_id();
10276-
let expanded_key = &self.inbound_payment_key;
1027710266
let entropy = &*self.entropy_source;
10278-
let secp_ctx = &self.secp_ctx;
1027910267

1028010268
let nonce = Nonce::from_entropy_source(entropy);
10281-
let mut builder = OfferBuilder::deriving_signing_pubkey(
10282-
node_id, expanded_key, nonce, secp_ctx
10283-
).chain_hash(self.chain_hash);
10269+
let mut builder = self.flow.create_offer_builder(nonce)?;
1028410270

1028510271
for path in message_paths_to_always_online_node {
1028610272
builder = builder.path(path);
@@ -10420,44 +10406,23 @@ where
1042010406
) -> Result<(), Bolt12SemanticError> {
1042110407
let expanded_key = &self.inbound_payment_key;
1042210408
let entropy = &*self.entropy_source;
10423-
let secp_ctx = &self.secp_ctx;
1042410409

1042510410
let nonce = Nonce::from_entropy_source(entropy);
10426-
let builder: InvoiceRequestBuilder<secp256k1::All> = offer
10427-
.request_invoice(expanded_key, nonce, secp_ctx, payment_id)?
10428-
.into();
10429-
let builder = builder.chain_hash(self.chain_hash)?;
10430-
10431-
let builder = match quantity {
10432-
None => builder,
10433-
Some(quantity) => builder.quantity(quantity)?,
10434-
};
10435-
let builder = match amount_msats {
10436-
None => builder,
10437-
Some(amount_msats) => builder.amount_msats(amount_msats)?,
10438-
};
10439-
let builder = match payer_note {
10440-
None => builder,
10441-
Some(payer_note) => builder.payer_note(payer_note),
10442-
};
10443-
let builder = match human_readable_name {
10444-
None => builder,
10445-
Some(hrn) => builder.sourced_from_human_readable_name(hrn),
10446-
};
10411+
let builder = self.flow.create_invoice_request_builder(offer, nonce, quantity, amount_msats, payer_note, human_readable_name, payment_id)?;
1044710412
let invoice_request = builder.build_and_sign()?;
1044810413

1044910414
let hmac = payment_id.hmac_for_offer_payment(nonce, expanded_key);
1045010415
let context = MessageContext::Offers(
1045110416
OffersContext::OutboundPayment { payment_id, nonce, hmac: Some(hmac) }
1045210417
);
10453-
let reply_paths = self.create_blinded_paths(context)
10418+
let reply_paths = self.flow.create_blinded_paths(self.peer_for_blinded_path(), context)
1045410419
.map_err(|_| Bolt12SemanticError::MissingPaths)?;
1045510420

1045610421
let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
1045710422

1045810423
create_pending_payment(&invoice_request, nonce)?;
1045910424

10460-
self.enqueue_invoice_request(invoice_request, reply_paths)
10425+
self.flow.enqueue_invoice_request(invoice_request, reply_paths)
1046110426
}
1046210427

1046310428
fn enqueue_invoice_request(
@@ -10542,53 +10507,18 @@ where
1054210507
)
1054310508
.map_err(|_| Bolt12SemanticError::MissingPaths)?;
1054410509

10545-
#[cfg(feature = "std")]
10546-
let builder = refund.respond_using_derived_keys(
10547-
payment_paths, payment_hash, expanded_key, entropy
10548-
)?;
10549-
#[cfg(not(feature = "std"))]
10550-
let created_at = Duration::from_secs(
10551-
self.highest_seen_timestamp.load(Ordering::Acquire) as u64
10552-
);
10553-
#[cfg(not(feature = "std"))]
10554-
let builder = refund.respond_using_derived_keys_no_std(
10555-
payment_paths, payment_hash, created_at, expanded_key, entropy
10556-
)?;
10557-
let builder: InvoiceBuilder<DerivedSigningPubkey> = builder.into();
10510+
let builder = self.flow.create_invoice_builder(refund, payment_paths, payment_hash)?;
1055810511
let invoice = builder.allow_mpp().build_and_sign(secp_ctx)?;
1055910512

1056010513
let nonce = Nonce::from_entropy_source(entropy);
1056110514
let hmac = payment_hash.hmac_for_offer_payment(nonce, expanded_key);
1056210515
let context = MessageContext::Offers(OffersContext::InboundPayment {
1056310516
payment_hash: invoice.payment_hash(), nonce, hmac
1056410517
});
10565-
let reply_paths = self.create_blinded_paths(context)
10518+
let reply_paths = self.flow.create_blinded_paths(self.peer_for_blinded_path(), context)
1056610519
.map_err(|_| Bolt12SemanticError::MissingPaths)?;
1056710520

10568-
let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
10569-
if refund.paths().is_empty() {
10570-
for reply_path in reply_paths {
10571-
let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
10572-
destination: Destination::Node(refund.payer_signing_pubkey()),
10573-
reply_path,
10574-
};
10575-
let message = OffersMessage::Invoice(invoice.clone());
10576-
pending_offers_messages.push((message, instructions));
10577-
}
10578-
} else {
10579-
reply_paths
10580-
.iter()
10581-
.flat_map(|reply_path| refund.paths().iter().map(move |path| (path, reply_path)))
10582-
.take(OFFERS_MESSAGE_REQUEST_LIMIT)
10583-
.for_each(|(path, reply_path)| {
10584-
let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
10585-
destination: Destination::BlindedPath(path.clone()),
10586-
reply_path: reply_path.clone(),
10587-
};
10588-
let message = OffersMessage::Invoice(invoice.clone());
10589-
pending_offers_messages.push((message, instructions));
10590-
});
10591-
}
10521+
self.flow.enqueue_invoice(invoice.clone(), refund, reply_paths)?;
1059210522

1059310523
Ok(invoice)
1059410524
},
@@ -10644,22 +10574,10 @@ where
1064410574
) -> Result<(), ()> {
1064510575
let (onion_message, context) =
1064610576
self.hrn_resolver.resolve_name(payment_id, name, &*self.entropy_source)?;
10647-
let reply_paths = self.create_blinded_paths(MessageContext::DNSResolver(context))?;
10577+
let reply_paths = self.flow.create_blinded_paths(self.peer_for_blinded_path(), MessageContext::DNSResolver(context))?;
1064810578
let expiration = StaleExpiration::TimerTicks(1);
1064910579
self.pending_outbound_payments.add_new_awaiting_offer(payment_id, expiration, retry_strategy, route_params_config, amount_msats)?;
10650-
let message_params = dns_resolvers
10651-
.iter()
10652-
.flat_map(|destination| reply_paths.iter().map(move |path| (path, destination)))
10653-
.take(OFFERS_MESSAGE_REQUEST_LIMIT);
10654-
for (reply_path, destination) in message_params {
10655-
self.pending_dns_onion_messages.lock().unwrap().push((
10656-
DNSResolverMessage::DNSSECQuery(onion_message.clone()),
10657-
MessageSendInstructions::WithSpecifiedReplyPath {
10658-
destination: destination.clone(),
10659-
reply_path: reply_path.clone(),
10660-
},
10661-
));
10662-
}
10580+
self.flow.enqueue_dns_onion_message(onion_message, dns_resolvers, reply_paths).map_err(|_| ())?;
1066310581
Ok(())
1066410582
}
1066510583

@@ -12609,7 +12527,9 @@ where
1260912527
}
1261012528

1261112529
fn release_pending_messages(&self) -> Vec<(OffersMessage, MessageSendInstructions)> {
12612-
core::mem::take(&mut self.pending_offers_messages.lock().unwrap())
12530+
let mut messages = core::mem::take(&mut *self.pending_offers_messages.lock().unwrap());
12531+
messages.extend(self.flow.get_and_clear_pending_offers_messages());
12532+
messages
1261312533
}
1261412534
}
1261512535

@@ -12665,7 +12585,9 @@ where
1266512585
}
1266612586

1266712587
fn release_pending_messages(&self) -> Vec<(AsyncPaymentsMessage, MessageSendInstructions)> {
12668-
core::mem::take(&mut self.pending_async_payments_messages.lock().unwrap())
12588+
let mut messages = core::mem::take(&mut *self.pending_async_payments_messages.lock().unwrap());
12589+
messages.extend(self.flow.get_and_clear_pending_async_messages());
12590+
messages
1266912591
}
1267012592
}
1267112593

@@ -12730,7 +12652,9 @@ where
1273012652
}
1273112653

1273212654
fn release_pending_messages(&self) -> Vec<(DNSResolverMessage, MessageSendInstructions)> {
12733-
core::mem::take(&mut self.pending_dns_onion_messages.lock().unwrap())
12655+
let mut messages = core::mem::take(&mut *self.pending_dns_onion_messages.lock().unwrap());
12656+
messages.extend(self.flow.get_and_clear_pending_dns_messages());
12657+
messages
1273412658
}
1273512659
}
1273612660

lightning/src/ln/offers_tests.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1402,7 +1402,7 @@ fn fails_authentication_when_handling_invoice_request() {
14021402
expect_recent_payment!(david, RecentPaymentDetails::AwaitingInvoice, payment_id);
14031403

14041404
connect_peers(david, alice);
1405-
match &mut david.node.pending_offers_messages.lock().unwrap().first_mut().unwrap().1 {
1405+
match &mut david.node.flow.pending_offers_messages.lock().unwrap().first_mut().unwrap().1 {
14061406
MessageSendInstructions::WithSpecifiedReplyPath { destination, .. } =>
14071407
*destination = Destination::Node(alice_id),
14081408
_ => panic!(),
@@ -1427,7 +1427,7 @@ fn fails_authentication_when_handling_invoice_request() {
14271427
.unwrap();
14281428
expect_recent_payment!(david, RecentPaymentDetails::AwaitingInvoice, payment_id);
14291429

1430-
match &mut david.node.pending_offers_messages.lock().unwrap().first_mut().unwrap().1 {
1430+
match &mut david.node.flow.pending_offers_messages.lock().unwrap().first_mut().unwrap().1 {
14311431
MessageSendInstructions::WithSpecifiedReplyPath { destination, .. } =>
14321432
*destination = Destination::BlindedPath(invalid_path),
14331433
_ => panic!(),
@@ -1507,7 +1507,7 @@ fn fails_authentication_when_handling_invoice_for_offer() {
15071507

15081508
// Don't send the invoice request, but grab its reply path to use with a different request.
15091509
let invalid_reply_path = {
1510-
let mut pending_offers_messages = david.node.pending_offers_messages.lock().unwrap();
1510+
let mut pending_offers_messages = david.node.flow.pending_offers_messages.lock().unwrap();
15111511
let pending_invoice_request = pending_offers_messages.pop().unwrap();
15121512
pending_offers_messages.clear();
15131513
match pending_invoice_request.1 {
@@ -1524,7 +1524,7 @@ fn fails_authentication_when_handling_invoice_for_offer() {
15241524
// Swap out the reply path to force authentication to fail when handling the invoice since it
15251525
// will be sent over the wrong blinded path.
15261526
{
1527-
let mut pending_offers_messages = david.node.pending_offers_messages.lock().unwrap();
1527+
let mut pending_offers_messages = david.node.flow.pending_offers_messages.lock().unwrap();
15281528
let mut pending_invoice_request = pending_offers_messages.first_mut().unwrap();
15291529
match &mut pending_invoice_request.1 {
15301530
MessageSendInstructions::WithSpecifiedReplyPath { reply_path, .. } =>
@@ -1611,7 +1611,7 @@ fn fails_authentication_when_handling_invoice_for_refund() {
16111611
let expected_invoice = alice.node.request_refund_payment(&refund).unwrap();
16121612

16131613
connect_peers(david, alice);
1614-
match &mut alice.node.pending_offers_messages.lock().unwrap().first_mut().unwrap().1 {
1614+
match &mut alice.node.flow.pending_offers_messages.lock().unwrap().first_mut().unwrap().1 {
16151615
MessageSendInstructions::WithSpecifiedReplyPath { destination, .. } =>
16161616
*destination = Destination::Node(david_id),
16171617
_ => panic!(),
@@ -1642,7 +1642,7 @@ fn fails_authentication_when_handling_invoice_for_refund() {
16421642

16431643
let expected_invoice = alice.node.request_refund_payment(&refund).unwrap();
16441644

1645-
match &mut alice.node.pending_offers_messages.lock().unwrap().first_mut().unwrap().1 {
1645+
match &mut alice.node.flow.pending_offers_messages.lock().unwrap().first_mut().unwrap().1 {
16461646
MessageSendInstructions::WithSpecifiedReplyPath { destination, .. } =>
16471647
*destination = Destination::BlindedPath(invalid_path),
16481648
_ => panic!(),

0 commit comments

Comments
 (0)