Skip to content

Commit a899e38

Browse files
Check UpdateAddHTLC::skimmed_fee_msat on receive
Make sure the penultimate hop took the amount of fee that they claimed to take. Without checking this TLV, we're heavily relying on the receiving wallet code to correctly implement logic to calculate that that the fee is as expected.
1 parent dd21fdb commit a899e38

File tree

1 file changed

+53
-5
lines changed

1 file changed

+53
-5
lines changed

lightning/src/ln/channelmanager.rs

+53-5
Original file line numberDiff line numberDiff line change
@@ -2528,7 +2528,8 @@ where
25282528

25292529
fn construct_recv_pending_htlc_info(
25302530
&self, hop_data: msgs::OnionHopData, shared_secret: [u8; 32], payment_hash: PaymentHash,
2531-
amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool
2531+
amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2532+
counterparty_skimmed_fee_msat: Option<u64>,
25322533
) -> Result<PendingHTLCInfo, ReceiveError> {
25332534
// final_incorrect_cltv_expiry
25342535
if hop_data.outgoing_cltv_value > cltv_expiry {
@@ -2555,7 +2556,10 @@ where
25552556
msg: "The final CLTV expiry is too soon to handle",
25562557
});
25572558
}
2558-
if !allow_underpay && hop_data.amt_to_forward > amt_msat {
2559+
if (!allow_underpay && hop_data.amt_to_forward > amt_msat) ||
2560+
(allow_underpay && hop_data.amt_to_forward >
2561+
amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2562+
{
25592563
return Err(ReceiveError {
25602564
err_code: 19,
25612565
err_data: amt_msat.to_be_bytes().to_vec(),
@@ -2622,7 +2626,7 @@ where
26222626
incoming_amt_msat: Some(amt_msat),
26232627
outgoing_amt_msat: hop_data.amt_to_forward,
26242628
outgoing_cltv_value: hop_data.outgoing_cltv_value,
2625-
skimmed_fee_msat: None,
2629+
skimmed_fee_msat: counterparty_skimmed_fee_msat,
26262630
})
26272631
}
26282632

@@ -2857,7 +2861,7 @@ where
28572861
onion_utils::Hop::Receive(next_hop_data) => {
28582862
// OUR PAYMENT!
28592863
match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
2860-
msg.amount_msat, msg.cltv_expiry, None, allow_underpay)
2864+
msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
28612865
{
28622866
Ok(info) => {
28632867
// Note that we could obviously respond immediately with an update_fulfill_htlc
@@ -3676,7 +3680,7 @@ where
36763680
onion_utils::Hop::Receive(hop_data) => {
36773681
match self.construct_recv_pending_htlc_info(hop_data,
36783682
incoming_shared_secret, payment_hash, outgoing_amt_msat,
3679-
outgoing_cltv_value, Some(phantom_shared_secret), false)
3683+
outgoing_cltv_value, Some(phantom_shared_secret), false, None)
36803684
{
36813685
Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
36823686
Err(ReceiveError { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
@@ -9741,6 +9745,50 @@ mod tests {
97419745
get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
97429746
}
97439747

9748+
#[test]
9749+
fn reject_excessively_underpaying_htlcs() {
9750+
let chanmon_cfg = create_chanmon_cfgs(1);
9751+
let node_cfg = create_node_cfgs(1, &chanmon_cfg);
9752+
let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
9753+
let node = create_network(1, &node_cfg, &node_chanmgr);
9754+
let sender_intended_amt_msat = 100;
9755+
let extra_fee_msat = 10;
9756+
let hop_data = msgs::OnionHopData {
9757+
amt_to_forward: 100,
9758+
outgoing_cltv_value: 42,
9759+
format: msgs::OnionHopDataFormat::FinalNode {
9760+
keysend_preimage: None,
9761+
payment_metadata: None,
9762+
payment_data: Some(msgs::FinalOnionHopData {
9763+
payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
9764+
}),
9765+
}
9766+
};
9767+
// Check that if the amount we received + the penultimate hop extra fee is less than the sender
9768+
// intended amount, we fail the payment.
9769+
if let Err(crate::ln::channelmanager::ReceiveError { err_code, .. }) =
9770+
node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
9771+
sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
9772+
{
9773+
assert_eq!(err_code, 19);
9774+
} else { panic!(); }
9775+
9776+
// If amt_received + extra_fee is equal to the sender intended amount, we're fine.
9777+
let hop_data = msgs::OnionHopData { // This is the same hop_data as above, OnionHopData doesn't implement Clone
9778+
amt_to_forward: 100,
9779+
outgoing_cltv_value: 42,
9780+
format: msgs::OnionHopDataFormat::FinalNode {
9781+
keysend_preimage: None,
9782+
payment_metadata: None,
9783+
payment_data: Some(msgs::FinalOnionHopData {
9784+
payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
9785+
}),
9786+
}
9787+
};
9788+
assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
9789+
sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
9790+
}
9791+
97449792
#[cfg(anchors)]
97459793
#[test]
97469794
fn test_anchors_zero_fee_htlc_tx_fallback() {

0 commit comments

Comments
 (0)