Skip to content

Commit

Permalink
Avoid startup PeerState entries for peers with unfunded channels
Browse files Browse the repository at this point in the history
If a peer creates a channel with us which never reaches the funding
stage (or never gets any commitment updates after creation), we'll
avoid inserting the `update_id` into
`closed_channel_monitor_update_ids` at runtime to avoid keeping a
`PeerState` entry around for no reason. However, on startup we
still create a `ChannelMonitorUpdate` with a `ChannelForceClosed`
update step to ensure the `ChannelMonitor` is locked and shut down.

This is pretty redundant, and results in a bunch of on-startup
`ChannelMonitorUpdate`s for any old but non-archived
`ChannelMonitor`s. Instead, here, we check if a `ChannelMonitor`
already saw a `ChannelForceClosed` update step before we generate
the on-startup `ChannelMonitorUpdate`.

This also allows us to skip the `closed_channel_monitor_update_ids`
insertion as we can be confident we'll never have a
`ChannelMonitorUpdate` for this channel at all.
  • Loading branch information
TheBlueMatt committed Oct 28, 2024
1 parent f5da14f commit a5f0571
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 65 deletions.
6 changes: 6 additions & 0 deletions lightning/src/chain/channelmonitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1707,6 +1707,12 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitor<Signer> {
self.inner.lock().unwrap().get_cur_holder_commitment_number()
}

/// Gets whether we've been notified that this channel is closed by the `ChannelManager` (i.e.
/// via a [`ChannelMonitorUpdateStep::ChannelForceClosed`]).
pub(crate) fn offchain_closed(&self) -> bool {
self.inner.lock().unwrap().lockdown_from_offchain
}

/// Gets the `node_id` of the counterparty for this channel.
///
/// Will be `None` for channels constructed on LDK versions prior to 0.0.110 and always `Some`
Expand Down
61 changes: 4 additions & 57 deletions lightning/src/ln/channelmanager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7254,8 +7254,6 @@ where
let prev_channel_id = hop_data.channel_id;
let prev_user_channel_id = hop_data.user_channel_id;
let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
#[cfg(debug_assertions)]
let claiming_chan_funding_outpoint = hop_data.outpoint;
self.claim_funds_from_hop(hop_data, payment_preimage, None,
|htlc_claim_value_msat, definitely_duplicate| {
let chan_to_release =
Expand All @@ -7280,61 +7278,6 @@ where
// monitor updates still in flight. In that case, we shouldn't
// immediately free, but instead let that monitor update complete
// in the background.
#[cfg(debug_assertions)] {
let background_events = self.pending_background_events.lock().unwrap();
// There should be a `BackgroundEvent` pending...
assert!(background_events.iter().any(|ev| {
match ev {
BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
funding_txo, update, ..
} => {
if *funding_txo == claiming_chan_funding_outpoint {
// to apply a monitor update that blocked the claiming channel,
assert!(update.updates.iter().any(|upd|
if let ChannelMonitorUpdateStep::PaymentPreimage {
payment_preimage: update_preimage, ..
} = upd {
payment_preimage == *update_preimage
} else {
false
}
), "{:?}", update);
true
} else if *funding_txo == next_channel_outpoint {
// or the channel we'd unblock is already closed,
assert!(update.updates.iter().any(|upd|
if let ChannelMonitorUpdateStep::ChannelForceClosed { .. } = upd {
true
} else {
false
}
), "{:?}", update);
true
} else { false }
},
// or the channel we'd unblock is already closed (for an
// old channel),
BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup(
(funding_txo, _channel_id, monitor_update)
) => {
if *funding_txo == next_channel_outpoint {
assert_eq!(monitor_update.updates.len(), 1);
assert!(matches!(
monitor_update.updates[0],
ChannelMonitorUpdateStep::ChannelForceClosed { .. }
));
true
} else { false }
},
// or the monitor update has completed and will unblock
// immediately once we get going.
BackgroundEvent::MonitorUpdatesComplete {
channel_id, ..
} =>
*channel_id == prev_channel_id,
}
}), "{:?}", *background_events);
}
(None, None)
} else if definitely_duplicate {
if let Some(other_chan) = chan_to_release {
Expand Down Expand Up @@ -12637,6 +12580,10 @@ where
}

for (funding_txo, monitor) in args.channel_monitors.iter() {
if monitor.offchain_closed() {
// We already appled a ChannelForceClosed update.
continue;
}
if !funding_txo_set.contains(funding_txo) {
let logger = WithChannelMonitor::from(&args.logger, monitor, None);
let channel_id = monitor.channel_id();
Expand Down
4 changes: 0 additions & 4 deletions lightning/src/ln/monitor_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2302,9 +2302,6 @@ fn do_test_restored_packages_retry(check_old_monitor_retries_after_upgrade: bool

// Connecting more blocks should result in the HTLC transactions being rebroadcast.
connect_blocks(&nodes[0], crate::chain::package::LOW_FREQUENCY_BUMP_INTERVAL);
if check_old_monitor_retries_after_upgrade {
check_added_monitors(&nodes[0], 1);
}
{
let txn = nodes[0].tx_broadcaster.txn_broadcast();
assert_eq!(txn.len(), 1);
Expand Down Expand Up @@ -3014,7 +3011,6 @@ fn do_test_anchors_monitor_fixes_counterparty_payment_script_on_reload(confirm_c
// If we saw the commitment before our `counterparty_payment_script` was fixed, we'll never
// get the spendable output event for the `to_remote` output, so we'll need to get it
// manually via `get_spendable_outputs`.
check_added_monitors(&nodes[1], 1);
let outputs = get_monitor!(nodes[1], chan_id).get_spendable_outputs(&commitment_tx, commitment_tx_conf_height);
assert_eq!(outputs.len(), 1);
let spend_tx = nodes[1].keys_manager.backing.spend_spendable_outputs(
Expand Down
4 changes: 0 additions & 4 deletions lightning/src/ln/payment_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,6 @@ fn do_test_completed_payment_not_retryable_on_reload(use_dust: bool) {
nodes[1].node.peer_disconnected(nodes[0].node.get_our_node_id());

nodes[0].node.test_process_background_events();
check_added_monitors(&nodes[0], 1);

let mut reconnect_args = ReconnectArgs::new(&nodes[0], &nodes[1]);
reconnect_args.send_channel_ready = (true, true);
Expand Down Expand Up @@ -1023,7 +1022,6 @@ fn do_test_completed_payment_not_retryable_on_reload(use_dust: bool) {
nodes[1].node.peer_disconnected(nodes[0].node.get_our_node_id());

nodes[0].node.test_process_background_events();
check_added_monitors(&nodes[0], 1);

reconnect_nodes(ReconnectArgs::new(&nodes[0], &nodes[1]));

Expand Down Expand Up @@ -1162,7 +1160,6 @@ fn do_test_dup_htlc_onchain_doesnt_fail_on_reload(persist_manager_post_event: bo
let height = nodes[0].blocks.lock().unwrap().len() as u32 - 1;
nodes[0].chain_monitor.chain_monitor.block_connected(&claim_block, height);
assert!(nodes[0].node.get_and_clear_pending_events().is_empty());
check_added_monitors(&nodes[0], 1);
}

#[test]
Expand Down Expand Up @@ -3522,7 +3519,6 @@ fn do_no_missing_sent_on_reload(persist_manager_with_payment: bool, at_midpoint:
reload_node!(nodes[0], test_default_channel_config(), &nodes[0].node.encode(), &[&chan_0_monitor_serialized], persister_c, chain_monitor_c, nodes_0_deserialized_c);
let events = nodes[0].node.get_and_clear_pending_events();
assert!(events.is_empty());
check_added_monitors(&nodes[0], 1);
}

#[test]
Expand Down

0 comments on commit a5f0571

Please sign in to comment.