Skip to content

Commit c86657e

Browse files
committed
Fix inbound channel reserve check for removed-outbound-HTLCs
Found by chanmon_fail_consistency fuzzer.
1 parent 558f8da commit c86657e

File tree

2 files changed

+165
-1
lines changed

2 files changed

+165
-1
lines changed

src/ln/channel.rs

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1595,7 +1595,24 @@ impl Channel {
15951595
// Check our_channel_reserve_satoshis (we're getting paid, so they have to at least meet
15961596
// the reserve_satoshis we told them to always have as direct payment so that they lose
15971597
// something if we punish them for broadcasting an old state).
1598-
if htlc_inbound_value_msat + msg.amount_msat + self.value_to_self_msat > (self.channel_value_satoshis - Channel::get_our_channel_reserve_satoshis(self.channel_value_satoshis)) * 1000 {
1598+
// Note that we don't really care about having a small/no to_remote output in our local
1599+
// commitment transactions, as the purpose of the channel reserve is to ensure we can
1600+
// punish *them* if they misbehave, so we discount any outbound HTLCs which will not be
1601+
// present in the next commitment transaction we send them (at least for fulfilled ones,
1602+
// failed ones won't modify value_to_self).
1603+
// Note that we will send HTLCs which another instance of rust-lightning would think
1604+
// violate the reserve value if we do not do this (as we forget inbound HTLCs from the
1605+
// Channel state once they will not be present in the next received commitment
1606+
// transaction).
1607+
let mut removed_outbound_total_msat = 0;
1608+
for ref htlc in self.pending_outbound_htlcs.iter() {
1609+
if let OutboundHTLCState::AwaitingRemoteRevokeToRemove(None) = htlc.state {
1610+
removed_outbound_total_msat += htlc.amount_msat;
1611+
} else if let OutboundHTLCState::AwaitingRemovedRemoteRevoke(None) = htlc.state {
1612+
removed_outbound_total_msat += htlc.amount_msat;
1613+
}
1614+
}
1615+
if htlc_inbound_value_msat + msg.amount_msat + self.value_to_self_msat > (self.channel_value_satoshis - Channel::get_our_channel_reserve_satoshis(self.channel_value_satoshis)) * 1000 + removed_outbound_total_msat {
15991616
return Err(ChannelError::Close("Remote HTLC add would put them over their reserve value"));
16001617
}
16011618
if self.next_remote_htlc_id != msg.htlc_id {

src/ln/functional_tests.rs

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,6 +1450,153 @@ fn channel_reserve_test() {
14501450
do_channel_reserve_test(true);
14511451
}
14521452

1453+
#[test]
1454+
fn channel_reserve_in_flight_removes() {
1455+
// In cases where one side claims an HTLC, it thinks it has additional available funds that it
1456+
// can send to its counterparty, but due to update ordering, the other side may not yet have
1457+
// considered those HTLCs fully removed.
1458+
// This tests that we don't count HTLCs which will not be included in the next remote
1459+
// commitment transaction towards the reserve value (as it implies no commitment transaction
1460+
// will be generated which violates the remote reserve value).
1461+
// This was broken previously, and discovered by the chanmon_fail_consistency fuzz test.
1462+
// To test this we:
1463+
// * route two HTLCs from A to B (note that, at a high level, this test is checking that, when
1464+
// you consider the values of both of these HTLCs, B may not send an HTLC back to A, but if
1465+
// you only consider the value of the first HTLC, it may not),
1466+
// * start routing a third HTLC from A to B,
1467+
// * claim the first two HTLCs (though B will generate an update_fulfill for one, and put
1468+
// the other claim in its holding cell, as it immediately goes into AwaitingRAA),
1469+
// * deliver the first fulfill from B
1470+
// * deliver the update_add and an RAA from A, resulting in B freeing the second holding cell
1471+
// claim,
1472+
// * deliver A's response CS and RAA.
1473+
// This results in A having the second HTLC in AwaitingRemovedRemoteRevoke, but B having
1474+
// removed it fully. B now has the push_msat plus the first two HTLCs in value.
1475+
// * Now B happily sends another HTLC, potentially violating its reserve value from A's point
1476+
// of view (if A counts the AwaitingRemovedRemoteRevoke HTLC).
1477+
let mut nodes = create_network(2);
1478+
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1);
1479+
1480+
let b_chan_values = get_channel_value_stat!(nodes[1], chan_1.2);
1481+
// Route the first two HTLCs.
1482+
let (payment_preimage_1, _) = route_payment(&nodes[0], &[&nodes[1]], b_chan_values.channel_reserve_msat - b_chan_values.value_to_self_msat - 10000);
1483+
let (payment_preimage_2, _) = route_payment(&nodes[0], &[&nodes[1]], 20000);
1484+
1485+
// Start routing the third HTLC (this is just used to get everyone in the right state).
1486+
let (payment_preimage_3, payment_hash_3) = get_payment_preimage_hash!(nodes[0]);
1487+
let send_1 = {
1488+
let route = nodes[0].router.get_route(&nodes[1].node.get_our_node_id(), None, &[], 100000, TEST_FINAL_CLTV).unwrap();
1489+
nodes[0].node.send_payment(route, payment_hash_3).unwrap();
1490+
check_added_monitors!(nodes[0], 1);
1491+
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
1492+
assert_eq!(events.len(), 1);
1493+
SendEvent::from_event(events.remove(0))
1494+
};
1495+
1496+
// Now claim both of the first two HTLCs on B's end, putting B in AwaitingRAA and generating an
1497+
// initial fulfill/CS.
1498+
assert!(nodes[1].node.claim_funds(payment_preimage_1));
1499+
check_added_monitors!(nodes[1], 1);
1500+
let bs_removes = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
1501+
1502+
// This claim goes in B's holding cell, allowing us to have a pending B->A RAA which does not
1503+
// remove the second HTLC when we send the HTLC back from B to A.
1504+
assert!(nodes[1].node.claim_funds(payment_preimage_2));
1505+
check_added_monitors!(nodes[1], 1);
1506+
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
1507+
1508+
nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_removes.update_fulfill_htlcs[0]).unwrap();
1509+
nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_removes.commitment_signed).unwrap();
1510+
check_added_monitors!(nodes[0], 1);
1511+
let as_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
1512+
expect_payment_sent!(nodes[0], payment_preimage_1);
1513+
1514+
nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &send_1.msgs[0]).unwrap();
1515+
nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &send_1.commitment_msg).unwrap();
1516+
check_added_monitors!(nodes[1], 1);
1517+
// B is already AwaitingRAA, so cant generate a CS here
1518+
let bs_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
1519+
1520+
nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_raa).unwrap();
1521+
check_added_monitors!(nodes[1], 1);
1522+
let bs_cs = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
1523+
1524+
nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_raa).unwrap();
1525+
check_added_monitors!(nodes[0], 1);
1526+
let as_cs = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
1527+
1528+
nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_cs.commitment_signed).unwrap();
1529+
check_added_monitors!(nodes[1], 1);
1530+
let bs_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
1531+
1532+
// The second HTLCis removed, but as A is in AwaitingRAA it can't generate a CS here, so the
1533+
// RAA that B generated above doesn't fully resolve the second HTLC from A's point of view.
1534+
// However, the RAA A generates here *does* fully resolve the HTLC from B's point of view (as A
1535+
// can no longer broadcast a commitment transaction with it and B has the preimage so can go
1536+
// on-chain as necessary).
1537+
nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_cs.update_fulfill_htlcs[0]).unwrap();
1538+
nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_cs.commitment_signed).unwrap();
1539+
check_added_monitors!(nodes[0], 1);
1540+
let as_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
1541+
expect_payment_sent!(nodes[0], payment_preimage_2);
1542+
1543+
nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_raa).unwrap();
1544+
check_added_monitors!(nodes[1], 1);
1545+
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
1546+
1547+
expect_pending_htlcs_forwardable!(nodes[1]);
1548+
expect_payment_received!(nodes[1], payment_hash_3, 100000);
1549+
1550+
// Note that as this RAA was generated before the delivery of the update_fulfill it shouldn't
1551+
// resolve the second HTLC from A's point of view.
1552+
nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_raa).unwrap();
1553+
check_added_monitors!(nodes[0], 1);
1554+
let as_cs = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
1555+
1556+
// Now that B doesn't have the second RAA anymore, but A still does, send a payment from B back
1557+
// to A to ensure that A doesn't count the almost-removed HTLC in update_add processing.
1558+
let (payment_preimage_4, payment_hash_4) = get_payment_preimage_hash!(nodes[1]);
1559+
let send_2 = {
1560+
let route = nodes[1].router.get_route(&nodes[0].node.get_our_node_id(), None, &[], 10000, TEST_FINAL_CLTV).unwrap();
1561+
nodes[1].node.send_payment(route, payment_hash_4).unwrap();
1562+
check_added_monitors!(nodes[1], 1);
1563+
let mut events = nodes[1].node.get_and_clear_pending_msg_events();
1564+
assert_eq!(events.len(), 1);
1565+
SendEvent::from_event(events.remove(0))
1566+
};
1567+
1568+
nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &send_2.msgs[0]).unwrap();
1569+
nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &send_2.commitment_msg).unwrap();
1570+
check_added_monitors!(nodes[0], 1);
1571+
let as_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
1572+
1573+
// Now just resolve all the outstanding messages/HTLCs for completeness...
1574+
1575+
nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_cs.commitment_signed).unwrap();
1576+
check_added_monitors!(nodes[1], 1);
1577+
let bs_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
1578+
1579+
nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_raa).unwrap();
1580+
check_added_monitors!(nodes[1], 1);
1581+
1582+
nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_raa).unwrap();
1583+
check_added_monitors!(nodes[0], 1);
1584+
let as_cs = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
1585+
1586+
nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_cs.commitment_signed).unwrap();
1587+
check_added_monitors!(nodes[1], 1);
1588+
let bs_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
1589+
1590+
nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_raa).unwrap();
1591+
check_added_monitors!(nodes[0], 1);
1592+
1593+
expect_pending_htlcs_forwardable!(nodes[0]);
1594+
expect_payment_received!(nodes[0], payment_hash_4, 10000);
1595+
1596+
claim_payment(&nodes[1], &[&nodes[0]], payment_preimage_4);
1597+
claim_payment(&nodes[0], &[&nodes[1]], payment_preimage_3);
1598+
}
1599+
14531600
#[test]
14541601
fn channel_monitor_network_test() {
14551602
// Simple test which builds a network of ChannelManagers, connects them to each other, and

0 commit comments

Comments
 (0)