Skip to content

Commit 65232f7

Browse files
Merge pull request #3667 from valentinewallace/2025-03-inv-server-prefactor
Static invoice server prefactor
2 parents 8b3f6cc + 92f0718 commit 65232f7

23 files changed

+277
-224
lines changed

fuzz/src/onion_message.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,7 @@ mod tests {
343343
assert_eq!(
344344
log_entries.get(&(
345345
"lightning::onion_message::messenger".to_string(),
346-
"Received an onion message with a reply_path: Custom(TestCustomMessage)"
347-
.to_string()
346+
"Received an onion message with a reply_path: TestCustomMessage".to_string()
348347
)),
349348
Some(&1)
350349
);

lightning/src/ln/async_signer_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ fn do_test_async_holder_signatures(anchors: bool, remote_commitment: bool) {
816816

817817
let chanmon_cfgs = create_chanmon_cfgs(2);
818818
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
819-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config), Some(config)]);
819+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config.clone()), Some(config)]);
820820
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
821821

822822
let closing_node = if remote_commitment { &nodes[1] } else { &nodes[0] };

lightning/src/ln/chanmon_update_fail_tests.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2591,7 +2591,7 @@ fn test_temporary_error_during_shutdown() {
25912591

25922592
let chanmon_cfgs = create_chanmon_cfgs(2);
25932593
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
2594-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config), Some(config)]);
2594+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config.clone()), Some(config)]);
25952595
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
25962596

25972597
let (_, _, channel_id, funding_tx) = create_announced_chan_between_nodes(&nodes, 0, 1);
@@ -2762,7 +2762,7 @@ fn do_test_outbound_reload_without_init_mon(use_0conf: bool) {
27622762
chan_config.manually_accept_inbound_channels = true;
27632763
chan_config.channel_handshake_limits.trust_own_funding_0conf = true;
27642764

2765-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(chan_config), Some(chan_config)]);
2765+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(chan_config.clone()), Some(chan_config)]);
27662766
let nodes_0_deserialized;
27672767

27682768
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
@@ -2853,7 +2853,7 @@ fn do_test_inbound_reload_without_init_mon(use_0conf: bool, lock_commitment: boo
28532853
chan_config.manually_accept_inbound_channels = true;
28542854
chan_config.channel_handshake_limits.trust_own_funding_0conf = true;
28552855

2856-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(chan_config), Some(chan_config)]);
2856+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(chan_config.clone()), Some(chan_config)]);
28572857
let nodes_1_deserialized;
28582858

28592859
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);

lightning/src/ln/channelmanager.rs

+37-40
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ use crate::onion_message::async_payments::{AsyncPaymentsMessage, HeldHtlcAvailab
7777
use crate::onion_message::dns_resolution::HumanReadableName;
7878
use crate::onion_message::messenger::{Destination, MessageRouter, Responder, ResponseInstruction, MessageSendInstructions};
7979
use crate::onion_message::offers::{OffersMessage, OffersMessageHandler};
80+
use crate::onion_message::packet::OnionMessageContents;
8081
use crate::sign::{EntropySource, NodeSigner, Recipient, SignerProvider};
8182
use crate::sign::ecdsa::EcdsaChannelSigner;
8283
use crate::util::config::{ChannelConfig, ChannelConfigUpdate, ChannelConfigOverrides, UserConfig};
@@ -1733,7 +1734,7 @@ where
17331734
/// let default_config = UserConfig::default();
17341735
/// let channel_manager = ChannelManager::new(
17351736
/// fee_estimator, chain_monitor, tx_broadcaster, router, message_router, logger,
1736-
/// entropy_source, node_signer, signer_provider, default_config, params, current_timestamp,
1737+
/// entropy_source, node_signer, signer_provider, default_config.clone(), params, current_timestamp,
17371738
/// );
17381739
///
17391740
/// // Restart from deserialized data
@@ -4954,19 +4955,10 @@ where
49544955
};
49554956

49564957
let mut pending_async_payments_messages = self.pending_async_payments_messages.lock().unwrap();
4957-
const HTLC_AVAILABLE_LIMIT: usize = 10;
4958-
reply_paths
4959-
.iter()
4960-
.flat_map(|reply_path| invoice.message_paths().iter().map(move |invoice_path| (invoice_path, reply_path)))
4961-
.take(HTLC_AVAILABLE_LIMIT)
4962-
.for_each(|(invoice_path, reply_path)| {
4963-
let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
4964-
destination: Destination::BlindedPath(invoice_path.clone()),
4965-
reply_path: reply_path.clone(),
4966-
};
4967-
let message = AsyncPaymentsMessage::HeldHtlcAvailable(HeldHtlcAvailable {});
4968-
pending_async_payments_messages.push((message, instructions));
4969-
});
4958+
let message = AsyncPaymentsMessage::HeldHtlcAvailable(HeldHtlcAvailable {});
4959+
enqueue_onion_message_with_reply_paths(
4960+
message, invoice.message_paths(), reply_paths, &mut pending_async_payments_messages
4961+
);
49704962

49714963
NotifyOption::DoPersist
49724964
});
@@ -10530,18 +10522,10 @@ where
1053010522
) -> Result<(), Bolt12SemanticError> {
1053110523
let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
1053210524
if !invoice_request.paths().is_empty() {
10533-
reply_paths
10534-
.iter()
10535-
.flat_map(|reply_path| invoice_request.paths().iter().map(move |path| (path, reply_path)))
10536-
.take(OFFERS_MESSAGE_REQUEST_LIMIT)
10537-
.for_each(|(path, reply_path)| {
10538-
let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
10539-
destination: Destination::BlindedPath(path.clone()),
10540-
reply_path: reply_path.clone(),
10541-
};
10542-
let message = OffersMessage::InvoiceRequest(invoice_request.clone());
10543-
pending_offers_messages.push((message, instructions));
10544-
});
10525+
let message = OffersMessage::InvoiceRequest(invoice_request.clone());
10526+
enqueue_onion_message_with_reply_paths(
10527+
message, invoice_request.paths(), reply_paths, &mut pending_offers_messages
10528+
);
1054510529
} else if let Some(node_id) = invoice_request.issuer_signing_pubkey() {
1054610530
for reply_path in reply_paths {
1054710531
let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
@@ -10639,18 +10623,10 @@ where
1063910623
pending_offers_messages.push((message, instructions));
1064010624
}
1064110625
} else {
10642-
reply_paths
10643-
.iter()
10644-
.flat_map(|reply_path| refund.paths().iter().map(move |path| (path, reply_path)))
10645-
.take(OFFERS_MESSAGE_REQUEST_LIMIT)
10646-
.for_each(|(path, reply_path)| {
10647-
let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
10648-
destination: Destination::BlindedPath(path.clone()),
10649-
reply_path: reply_path.clone(),
10650-
};
10651-
let message = OffersMessage::Invoice(invoice.clone());
10652-
pending_offers_messages.push((message, instructions));
10653-
});
10626+
let message = OffersMessage::Invoice(invoice.clone());
10627+
enqueue_onion_message_with_reply_paths(
10628+
message, refund.paths(), reply_paths, &mut pending_offers_messages
10629+
);
1065410630
}
1065510631

1065610632
Ok(invoice)
@@ -12792,6 +12768,27 @@ where
1279212768
}
1279312769
}
1279412770

12771+
fn enqueue_onion_message_with_reply_paths<T: OnionMessageContents + Clone>(
12772+
message: T, message_paths: &[BlindedMessagePath], reply_paths: Vec<BlindedMessagePath>,
12773+
queue: &mut Vec<(T, MessageSendInstructions)>
12774+
) {
12775+
reply_paths
12776+
.iter()
12777+
.flat_map(|reply_path|
12778+
message_paths
12779+
.iter()
12780+
.map(move |path| (path.clone(), reply_path))
12781+
)
12782+
.take(OFFERS_MESSAGE_REQUEST_LIMIT)
12783+
.for_each(|(path, reply_path)| {
12784+
let instructions = MessageSendInstructions::WithSpecifiedReplyPath {
12785+
destination: Destination::BlindedPath(path.clone()),
12786+
reply_path: reply_path.clone(),
12787+
};
12788+
queue.push((message.clone(), instructions));
12789+
});
12790+
}
12791+
1279512792
/// Fetches the set of [`NodeFeatures`] flags that are provided by or required by
1279612793
/// [`ChannelManager`].
1279712794
pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
@@ -16076,7 +16073,7 @@ mod tests {
1607616073
let chanmon_cfg = create_chanmon_cfgs(2);
1607716074
let node_cfg = create_node_cfgs(2, &chanmon_cfg);
1607816075
let mut user_config = test_default_channel_config();
16079-
let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
16076+
let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config.clone()), Some(user_config.clone())]);
1608016077
let nodes = create_network(2, &node_cfg, &node_chanmgr);
1608116078
let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
1608216079
let channel = &nodes[0].node.list_channels()[0];
@@ -16163,7 +16160,7 @@ mod tests {
1616316160
let chanmon_cfg = create_chanmon_cfgs(2);
1616416161
let node_cfg = create_node_cfgs(2, &chanmon_cfg);
1616516162
let user_config = test_default_channel_config();
16166-
let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
16163+
let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config.clone()), Some(user_config)]);
1616716164
let nodes = create_network(2, &node_cfg, &node_chanmgr);
1616816165
let error_message = "Channel force-closed";
1616916166

lightning/src/ln/functional_test_utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ impl<'a, 'b, 'c> Drop for Node<'a, 'b, 'c> {
716716
let mut w = test_utils::TestVecWriter(Vec::new());
717717
self.node.write(&mut w).unwrap();
718718
<(BlockHash, ChannelManager<&test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestKeysInterface, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestRouter, &test_utils::TestMessageRouter, &test_utils::TestLogger>)>::read(&mut io::Cursor::new(w.0), ChannelManagerReadArgs {
719-
default_config: *self.node.get_current_default_configuration(),
719+
default_config: self.node.get_current_default_configuration().clone(),
720720
entropy_source: self.keys_manager,
721721
node_signer: self.keys_manager,
722722
signer_provider: self.keys_manager,
@@ -3979,7 +3979,7 @@ pub fn create_batch_channel_funding<'a, 'b, 'c>(
39793979
let temp_chan_id = funding_node.node.create_channel(
39803980
other_node.node.get_our_node_id(), *channel_value_satoshis, *push_msat, *user_channel_id,
39813981
None,
3982-
*override_config,
3982+
override_config.clone(),
39833983
).unwrap();
39843984
let open_channel_msg = get_event_msg!(funding_node, MessageSendEvent::SendOpenChannel, other_node.node.get_our_node_id());
39853985
other_node.node.handle_open_channel(funding_node.node.get_our_node_id(), &open_channel_msg);

lightning/src/ln/functional_tests.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ pub fn test_insane_channel_opens() {
105105
cfg.channel_handshake_limits.max_funding_satoshis = TOTAL_BITCOIN_SUPPLY_SATOSHIS + 1;
106106
let chanmon_cfgs = create_chanmon_cfgs(2);
107107
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
108-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(cfg)]);
108+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(cfg.clone())]);
109109
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
110110

111111
// Instantiate channel parameters where we push the maximum msats given our
@@ -800,7 +800,7 @@ pub fn test_update_fee_that_saturates_subs() {
800800

801801
let chanmon_cfgs = create_chanmon_cfgs(2);
802802
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
803-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(default_config), Some(default_config)]);
803+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(default_config.clone()), Some(default_config)]);
804804
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
805805

806806
let chan_id = create_chan_between_nodes_with_value(&nodes[0], &nodes[1], 10_000, 8_500_000).3;
@@ -2966,7 +2966,7 @@ pub fn test_multiple_package_conflicts() {
29662966
user_cfg.manually_accept_inbound_channels = true;
29672967

29682968
let node_chanmgrs =
2969-
create_node_chanmgrs(3, &node_cfgs, &[Some(user_cfg), Some(user_cfg), Some(user_cfg)]);
2969+
create_node_chanmgrs(3, &node_cfgs, &[Some(user_cfg.clone()), Some(user_cfg.clone()), Some(user_cfg)]);
29702970
let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
29712971

29722972
// Since we're using anchor channels, make sure each node has a UTXO for paying fees.
@@ -10669,7 +10669,7 @@ pub fn test_nondust_htlc_excess_fees_are_dust() {
1066910669
config.channel_handshake_config.our_htlc_minimum_msat = 1;
1067010670
config.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 100;
1067110671

10672-
let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[Some(config), Some(config), Some(config)]);
10672+
let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[Some(config.clone()), Some(config.clone()), Some(config)]);
1067310673
let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1067410674

1067510675
// Leave enough on the funder side to let it pay the mining fees for a commit tx with tons of htlcs
@@ -11857,7 +11857,7 @@ fn do_test_funding_and_commitment_tx_confirm_same_block(confirm_remote_commitmen
1185711857
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1185811858
let mut min_depth_1_block_cfg = test_default_channel_config();
1185911859
min_depth_1_block_cfg.channel_handshake_config.minimum_depth = 1;
11860-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(min_depth_1_block_cfg), Some(min_depth_1_block_cfg)]);
11860+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(min_depth_1_block_cfg.clone()), Some(min_depth_1_block_cfg)]);
1186111861
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1186211862

1186311863
let funding_tx = create_chan_between_nodes_with_value_init(&nodes[0], &nodes[1], 1_000_000, 0);
@@ -11946,7 +11946,7 @@ pub fn test_manual_funding_abandon() {
1194611946
cfg.channel_handshake_config.minimum_depth = 1;
1194711947
let chanmon_cfgs = create_chanmon_cfgs(2);
1194811948
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11949-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(cfg), Some(cfg)]);
11949+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(cfg.clone()), Some(cfg)]);
1195011950
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1195111951

1195211952
assert!(nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).is_ok());
@@ -11988,7 +11988,7 @@ pub fn test_funding_signed_event() {
1198811988
cfg.channel_handshake_config.minimum_depth = 1;
1198911989
let chanmon_cfgs = create_chanmon_cfgs(2);
1199011990
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11991-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(cfg), Some(cfg)]);
11991+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(cfg.clone()), Some(cfg)]);
1199211992
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1199311993

1199411994
assert!(nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).is_ok());

lightning/src/ln/invoice_utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ mod test {
934934
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
935935
let mut config = test_default_channel_config();
936936
config.channel_handshake_config.minimum_depth = 1;
937-
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config), Some(config)]);
937+
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config.clone()), Some(config)]);
938938
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
939939

940940
// Create a private channel with lots of capacity and a lower value public channel (without

0 commit comments

Comments
 (0)